6 * Copyright (c) 1996-1999 Whistle Communications, Inc.
9 * Subject to the following obligations and disclaimer of warranty, use and
10 * redistribution of this software, in source or object code forms, with or
11 * without modifications are expressly permitted by Whistle Communications;
12 * provided, however, that:
13 * 1. Any and all reproductions of the source or object code must include the
14 * copyright notice above and the following disclaimer of warranties; and
15 * 2. No rights are granted, in any manner or form, to use Whistle
16 * Communications, Inc. trademarks, including the mark "WHISTLE
17 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as
18 * such appears in the above copyright notice or in the software.
20 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
21 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
22 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
23 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
25 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
26 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
27 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
28 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
29 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
30 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
31 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
32 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
38 * Author: Archie Cobbs <archie@freebsd.org>
40 * $FreeBSD: src/sys/netgraph/ng_tty.c,v 1.37 2006/11/06 13:42:03 rwatson Exp $
41 * $DragonFly: src/sys/netgraph7/ng_tty.c,v 1.2 2008/06/26 23:05:35 dillon Exp $
42 * $Whistle: ng_tty.c,v 1.21 1999/11/01 09:24:52 julian Exp $
46 * This file implements a terminal line discipline that is also a
47 * netgraph node. Installing this line discipline on a terminal device
48 * instantiates a new netgraph node of this type, which allows access
49 * to the device via the "hook" hook of the node.
51 * Once the line discipline is installed, you can find out the name
52 * of the corresponding netgraph node via a NGIOCGINFO ioctl().
54 * Incoming characters are delievered to the hook one at a time, each
55 * in its own mbuf. You may optionally define a ``hotchar,'' which causes
56 * incoming characters to be buffered up until either the hotchar is
57 * seen or the mbuf is full (MHLEN bytes). Then all buffered characters
58 * are immediately delivered.
61 #include <sys/param.h>
62 #include <sys/systm.h>
64 #include <sys/errno.h>
65 #include <sys/fcntl.h>
66 #include <sys/kernel.h>
67 #include <sys/malloc.h>
70 #include <sys/socket.h>
71 #include <sys/syslog.h>
73 #include <sys/ttycom.h>
76 #include <net/if_var.h>
78 #include "ng_message.h"
83 #define MAX_MBUFQ 3 /* Max number of queued mbufs */
84 #define NGT_HIWATER 400 /* High water mark on output */
86 /* Per-node private info */
88 struct tty
*tp
; /* Terminal device */
89 node_p node
; /* Netgraph node */
90 hook_p hook
; /* Netgraph hook */
91 struct ifqueue outq
; /* Queue of outgoing data */
92 struct mbuf
*m
; /* Incoming data buffer */
93 short hotchar
; /* Hotchar, or -1 if none */
94 u_int flags
; /* Flags */
95 struct callout chand
; /* See man timeout(9) */
97 typedef struct ngt_sc
*sc_p
;
100 #define FLG_DEBUG 0x0002
101 #define FLG_DIE 0x0004
103 /* Line discipline methods */
104 static int ngt_open(struct cdev
*dev
, struct tty
*tp
);
105 static int ngt_close(struct tty
*tp
, int flag
);
106 static int ngt_read(struct tty
*tp
, struct uio
*uio
, int flag
);
107 static int ngt_write(struct tty
*tp
, struct uio
*uio
, int flag
);
108 static int ngt_tioctl(struct tty
*tp
,
109 u_long cmd
, caddr_t data
, int flag
, struct thread
*);
110 static int ngt_input(int c
, struct tty
*tp
);
111 static int ngt_start(struct tty
*tp
);
113 /* Netgraph methods */
114 static ng_constructor_t ngt_constructor
;
115 static ng_rcvmsg_t ngt_rcvmsg
;
116 static ng_shutdown_t ngt_shutdown
;
117 static ng_newhook_t ngt_newhook
;
118 static ng_connect_t ngt_connect
;
119 static ng_rcvdata_t ngt_rcvdata
;
120 static ng_disconnect_t ngt_disconnect
;
121 static int ngt_mod_event(module_t mod
, int event
, void *data
);
124 static void ngt_timeout(node_p node
, hook_p hook
, void *arg1
, int arg2
);
126 #define ERROUT(x) do { error = (x); goto done; } while (0)
128 /* Line discipline descriptor */
129 static struct linesw ngt_disc
= {
131 .l_close
= ngt_close
,
133 .l_write
= ngt_write
,
134 .l_ioctl
= ngt_tioctl
,
136 .l_start
= ngt_start
,
140 /* Netgraph node type descriptor */
141 static struct ng_type typestruct
= {
142 .version
= NG_ABI_VERSION
,
143 .name
= NG_TTY_NODE_TYPE
,
144 .mod_event
= ngt_mod_event
,
145 .constructor
= ngt_constructor
,
146 .rcvmsg
= ngt_rcvmsg
,
147 .shutdown
= ngt_shutdown
,
148 .newhook
= ngt_newhook
,
149 .connect
= ngt_connect
,
150 .rcvdata
= ngt_rcvdata
,
151 .disconnect
= ngt_disconnect
,
153 NETGRAPH_INIT(tty
, &typestruct
);
158 * - node private data and tp->t_lsc is protected by mutex in struct
159 * ifqueue, locking is done using IF_XXX() macros.
160 * - in all tty methods we should acquire node ifqueue mutex, when accessing
162 * - in _rcvdata() we should use locked versions of IF_{EN,DE}QUEUE() since
163 * we may have multiple _rcvdata() threads.
164 * - when calling any of tty methods from netgraph methods, we should
165 * acquire tty locking (now Giant).
167 * - ngt_unit is incremented atomically.
170 #define NGTLOCK(sc) IF_LOCK(&sc->outq)
171 #define NGTUNLOCK(sc) IF_UNLOCK(&sc->outq)
174 static int ngt_ldisc
;
176 /******************************************************************
177 LINE DISCIPLINE METHODS
178 ******************************************************************/
181 * Set our line discipline on the tty.
182 * Called from device open routine or ttioctl()
185 ngt_open(struct cdev
*dev
, struct tty
*tp
)
187 struct thread
*const td
= curthread
; /* XXX */
188 char name
[sizeof(NG_TTY_NODE_TYPE
) + 8];
192 /* Super-user only */
193 error
= priv_check(td
, PRIV_NETGRAPH_TTY
);
197 /* Initialize private struct */
198 MALLOC(sc
, sc_p
, sizeof(*sc
), M_NETGRAPH
, M_WAITOK
| M_ZERO
);
202 lwkt_gettoken(&tty_token
);
204 sc
->hotchar
= tp
->t_hotchar
= NG_TTY_DFL_HOTCHAR
;
205 mtx_init(&sc
->outq
.ifq_mtx
, "ng_tty node+queue", NULL
, MTX_DEF
);
206 IFQ_SET_MAXLEN(&sc
->outq
, MAX_MBUFQ
);
210 /* Setup netgraph node */
211 error
= ng_make_node_common(&typestruct
, &sc
->node
);
214 FREE(sc
, M_NETGRAPH
);
215 lwkt_reltoken(&tty_token
);
219 atomic_add_int(&ngt_unit
, 1);
220 snprintf(name
, sizeof(name
), "%s%d", typestruct
.name
, ngt_unit
);
222 /* Assign node its name */
223 if ((error
= ng_name_node(sc
->node
, name
))) {
224 sc
->flags
|= FLG_DIE
;
226 NG_NODE_UNREF(sc
->node
);
227 log(LOG_ERR
, "%s: node name exists?\n", name
);
228 lwkt_reltoken(&tty_token
);
232 /* Set back pointers */
233 NG_NODE_SET_PRIVATE(sc
->node
, sc
);
236 ng_callout_init_mp(&sc
->chand
);
239 * Pre-allocate cblocks to the an appropriate amount.
240 * I'm not sure what is appropriate.
242 ttyflush(tp
, FREAD
| FWRITE
);
243 clist_alloc_cblocks(&tp
->t_canq
, 0, 0);
244 clist_alloc_cblocks(&tp
->t_rawq
, 0, 0);
245 clist_alloc_cblocks(&tp
->t_outq
,
246 MLEN
+ NGT_HIWATER
, MLEN
+ NGT_HIWATER
);
250 lwkt_reltoken(&tty_token
);
255 * Line specific close routine, called from device close routine
256 * and from ttioctl. This causes the node to be destroyed as well.
259 ngt_close(struct tty
*tp
, int flag
)
261 const sc_p sc
= (sc_p
) tp
->t_lsc
;
263 lwkt_gettoken(&tty_token
);
264 ttyflush(tp
, FREAD
| FWRITE
);
265 clist_free_cblocks(&tp
->t_outq
);
268 if (callout_pending(&sc
->chand
))
269 ng_uncallout(&sc
->chand
, sc
->node
);
271 sc
->flags
|= FLG_DIE
;
273 ng_rmnode_self(sc
->node
);
275 lwkt_reltoken(&tty_token
);
280 * Once the device has been turned into a node, we don't allow reading.
283 ngt_read(struct tty
*tp
, struct uio
*uio
, int flag
)
289 * Once the device has been turned into a node, we don't allow writing.
292 ngt_write(struct tty
*tp
, struct uio
*uio
, int flag
)
298 * We implement the NGIOCGINFO ioctl() defined in ng_message.h.
301 ngt_tioctl(struct tty
*tp
, u_long cmd
, caddr_t data
, int flag
, struct thread
*td
)
303 const sc_p sc
= (sc_p
) tp
->t_lsc
;
306 /* No node attached */
309 lwkt_gettoken(&tty_token
);
313 struct nodeinfo
*const ni
= (struct nodeinfo
*) data
;
314 const node_p node
= sc
->node
;
316 bzero(ni
, sizeof(*ni
));
318 if (NG_NODE_HAS_NAME(node
))
319 strncpy(ni
->name
, NG_NODE_NAME(node
), sizeof(ni
->name
) - 1);
320 strncpy(ni
->type
, node
->nd_type
->name
, sizeof(ni
->type
) - 1);
321 ni
->id
= (u_int32_t
) ng_node2ID(node
);
322 ni
->hooks
= NG_NODE_NUMHOOKS(node
);
327 lwkt_reltoken(&tty_token
);
331 lwkt_reltoken(&tty_token
);
336 * Receive data coming from the device. We get one character at
337 * a time, which is kindof silly.
339 * Full locking of softc is not required, since we are the only
343 ngt_input(int c
, struct tty
*tp
)
350 lwkt_gettoken(&tty_token
);
351 sc
= (sc_p
) tp
->t_lsc
;
353 /* No node attached */
354 lwkt_reltoken(&tty_token
);
363 /* Check for error conditions */
364 if ((tp
->t_state
& TS_CONNECTED
) == 0) {
365 if (sc
->flags
& FLG_DEBUG
)
366 log(LOG_DEBUG
, "%s: no carrier\n", NG_NODE_NAME(node
));
367 lwkt_reltoken(&tty_token
);
370 if (c
& TTY_ERRORMASK
) {
371 /* framing error or overrun on this char */
372 if (sc
->flags
& FLG_DEBUG
)
373 log(LOG_DEBUG
, "%s: line error %x\n",
374 NG_NODE_NAME(node
), c
& TTY_ERRORMASK
);
375 lwkt_reltoken(&tty_token
);
380 /* Get a new header mbuf if we need one */
382 MGETHDR(m
, MB_DONTWAIT
, MT_DATA
);
384 if (sc
->flags
& FLG_DEBUG
)
386 "%s: can't get mbuf\n", NG_NODE_NAME(node
));
387 lwkt_reltoken(&tty_token
);
390 m
->m_len
= m
->m_pkthdr
.len
= 0;
391 m
->m_pkthdr
.rcvif
= NULL
;
395 /* Add char to mbuf */
396 *mtod(m
, u_char
*) = c
;
401 /* Ship off mbuf if it's time */
402 if (sc
->hotchar
== -1 || c
== sc
->hotchar
|| m
->m_len
>= MHLEN
) {
403 m
->m_data
= m
->m_pktdat
;
407 * We have built our mbuf without checking that we actually
408 * have a hook to send it. This was done to avoid
409 * acquiring mutex on each character. Check now.
414 if (sc
->hook
== NULL
) {
417 lwkt_reltoken(&tty_token
);
418 return (0); /* XXX: original behavior */
420 NG_SEND_DATA_ONLY(error
, sc
->hook
, m
); /* Will queue */
424 lwkt_reltoken(&tty_token
);
429 * This is called when the device driver is ready for more output.
430 * Also called from ngt_rcv_data() when a new mbuf is available for output.
433 ngt_start(struct tty
*tp
)
435 const sc_p sc
= (sc_p
) tp
->t_lsc
;
437 lwkt_gettoken(&tty_token
);
438 while (tp
->t_outq
.c_cc
< NGT_HIWATER
) { /* XXX 2.2 specific ? */
441 /* Remove first mbuf from queue */
442 IF_DEQUEUE(&sc
->outq
, m
);
446 /* Send as much of it as possible */
451 - b_to_q(mtod(m
, u_char
*), m
->m_len
, &tp
->t_outq
);
455 break; /* device can't take no more */
459 /* Put remainder of mbuf chain (if any) back on queue */
461 IF_PREPEND(&sc
->outq
, m
);
466 /* Call output process whether or not there is any output. We are
467 * being called in lieu of ttstart and must do what it would. */
470 /* This timeout is needed for operation on a pseudo-tty, because the
471 * pty code doesn't call pppstart after it has drained the t_outq. */
472 /* XXX: outq not locked */
473 if (!IFQ_IS_EMPTY(&sc
->outq
) && !callout_pending(&sc
->chand
))
474 ng_callout(&sc
->chand
, sc
->node
, NULL
, 1, ngt_timeout
, NULL
, 0);
476 lwkt_reltoken(&tty_token
);
481 * We still have data to output to the device, so try sending more.
484 ngt_timeout(node_p node
, hook_p hook
, void *arg1
, int arg2
)
486 const sc_p sc
= NG_NODE_PRIVATE(node
);
493 /******************************************************************
494 NETGRAPH NODE METHODS
495 ******************************************************************/
498 * Initialize a new node of this type.
500 * We only allow nodes to be created as a result of setting
501 * the line discipline on a tty, so always return an error if not.
504 ngt_constructor(node_p node
)
510 * Add a new hook. There can only be one.
513 ngt_newhook(node_p node
, hook_p hook
, const char *name
)
515 const sc_p sc
= NG_NODE_PRIVATE(node
);
517 if (strcmp(name
, NG_TTY_HOOK
))
531 * Set the hook into queueing mode (for outgoing packets),
532 * so that we wont deliver mbuf thru the whole graph holding
536 ngt_connect(hook_p hook
)
538 NG_HOOK_FORCE_QUEUE(NG_HOOK_PEER(hook
));
540 * XXX: While ngt_start() is Giant-locked, queue incoming
541 * packets, too. Otherwise we acquire Giant holding some
542 * IP stack locks, e.g. divinp, and this makes WITNESS scream.
544 NG_HOOK_FORCE_QUEUE(hook
);
549 * Disconnect the hook
552 ngt_disconnect(hook_p hook
)
554 const sc_p sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
556 if (hook
!= sc
->hook
)
567 * Remove this node. The does the netgraph portion of the shutdown.
568 * This should only be called indirectly from ngt_close().
570 * tp->t_lsc is already NULL, so we should be protected from
574 ngt_shutdown(node_p node
)
576 const sc_p sc
= NG_NODE_PRIVATE(node
);
579 if (!(sc
->flags
& FLG_DIE
)) {
586 _IF_DRAIN(&sc
->outq
);
587 mtx_destroy(&(sc
)->outq
.ifq_mtx
);
589 NG_NODE_UNREF(sc
->node
);
590 FREE(sc
, M_NETGRAPH
);
596 * Receive incoming data from netgraph system. Put it on our
597 * output queue and start output if necessary.
600 ngt_rcvdata(hook_p hook
, item_p item
)
602 const sc_p sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
606 if (hook
!= sc
->hook
)
613 if (_IF_QFULL(&sc
->outq
)) {
615 IF_UNLOCK(&sc
->outq
);
620 _IF_ENQUEUE(&sc
->outq
, m
);
621 qlen
= sc
->outq
.ifq_len
;
622 IF_UNLOCK(&sc
->outq
);
625 * If qlen > 1, then we should already have a scheduled callout.
637 * Receive control message
640 ngt_rcvmsg(node_p node
, item_p item
, hook_p lasthook
)
642 const sc_p sc
= NG_NODE_PRIVATE(node
);
643 struct ng_mesg
*msg
, *resp
= NULL
;
646 NGI_GET_MSG(item
, msg
);
647 switch (msg
->header
.typecookie
) {
649 switch (msg
->header
.cmd
) {
650 case NGM_TTY_SET_HOTCHAR
:
654 if (msg
->header
.arglen
!= sizeof(int))
656 hotchar
= *((int *) msg
->data
);
657 if (hotchar
!= (u_char
) hotchar
&& hotchar
!= -1)
659 sc
->hotchar
= hotchar
; /* race condition is OK */
662 case NGM_TTY_GET_HOTCHAR
:
663 NG_MKRESPONSE(resp
, msg
, sizeof(int), M_WAITOK
| M_NULLOK
);
666 /* Race condition here is OK */
667 *((int *) resp
->data
) = sc
->hotchar
;
677 NG_RESPOND_MSG(error
, node
, item
, resp
);
682 /******************************************************************
684 ******************************************************************/
687 * Handle loading and unloading for this node type
690 ngt_mod_event(module_t mod
, int event
, void *data
)
697 /* Register line discipline */
699 if ((ngt_ldisc
= ldisc_register(NETGRAPHDISC
, &ngt_disc
)) < 0) {
701 log(LOG_ERR
, "%s: can't register line discipline",
710 /* Unregister line discipline */
712 ldisc_deregister(ngt_ldisc
);