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
);
203 sc
->hotchar
= tp
->t_hotchar
= NG_TTY_DFL_HOTCHAR
;
204 mtx_init(&sc
->outq
.ifq_mtx
, "ng_tty node+queue", NULL
, MTX_DEF
);
205 IFQ_SET_MAXLEN(&sc
->outq
, MAX_MBUFQ
);
209 /* Setup netgraph node */
210 error
= ng_make_node_common(&typestruct
, &sc
->node
);
213 FREE(sc
, M_NETGRAPH
);
217 atomic_add_int(&ngt_unit
, 1);
218 snprintf(name
, sizeof(name
), "%s%d", typestruct
.name
, ngt_unit
);
220 /* Assign node its name */
221 if ((error
= ng_name_node(sc
->node
, name
))) {
222 sc
->flags
|= FLG_DIE
;
224 NG_NODE_UNREF(sc
->node
);
225 log(LOG_ERR
, "%s: node name exists?\n", name
);
229 /* Set back pointers */
230 NG_NODE_SET_PRIVATE(sc
->node
, sc
);
233 ng_callout_init(&sc
->chand
);
236 * Pre-allocate cblocks to the an appropriate amount.
237 * I'm not sure what is appropriate.
239 ttyflush(tp
, FREAD
| FWRITE
);
240 clist_alloc_cblocks(&tp
->t_canq
, 0, 0);
241 clist_alloc_cblocks(&tp
->t_rawq
, 0, 0);
242 clist_alloc_cblocks(&tp
->t_outq
,
243 MLEN
+ NGT_HIWATER
, MLEN
+ NGT_HIWATER
);
251 * Line specific close routine, called from device close routine
252 * and from ttioctl. This causes the node to be destroyed as well.
255 ngt_close(struct tty
*tp
, int flag
)
257 const sc_p sc
= (sc_p
) tp
->t_lsc
;
259 ttyflush(tp
, FREAD
| FWRITE
);
260 clist_free_cblocks(&tp
->t_outq
);
263 if (callout_pending(&sc
->chand
))
264 ng_uncallout(&sc
->chand
, sc
->node
);
266 sc
->flags
|= FLG_DIE
;
268 ng_rmnode_self(sc
->node
);
274 * Once the device has been turned into a node, we don't allow reading.
277 ngt_read(struct tty
*tp
, struct uio
*uio
, int flag
)
283 * Once the device has been turned into a node, we don't allow writing.
286 ngt_write(struct tty
*tp
, struct uio
*uio
, int flag
)
292 * We implement the NGIOCGINFO ioctl() defined in ng_message.h.
295 ngt_tioctl(struct tty
*tp
, u_long cmd
, caddr_t data
, int flag
, struct thread
*td
)
297 const sc_p sc
= (sc_p
) tp
->t_lsc
;
300 /* No node attached */
306 struct nodeinfo
*const ni
= (struct nodeinfo
*) data
;
307 const node_p node
= sc
->node
;
309 bzero(ni
, sizeof(*ni
));
311 if (NG_NODE_HAS_NAME(node
))
312 strncpy(ni
->name
, NG_NODE_NAME(node
), sizeof(ni
->name
) - 1);
313 strncpy(ni
->type
, node
->nd_type
->name
, sizeof(ni
->type
) - 1);
314 ni
->id
= (u_int32_t
) ng_node2ID(node
);
315 ni
->hooks
= NG_NODE_NUMHOOKS(node
);
327 * Receive data coming from the device. We get one character at
328 * a time, which is kindof silly.
330 * Full locking of softc is not required, since we are the only
334 ngt_input(int c
, struct tty
*tp
)
341 sc
= (sc_p
) tp
->t_lsc
;
343 /* No node attached */
351 /* Check for error conditions */
352 if ((tp
->t_state
& TS_CONNECTED
) == 0) {
353 if (sc
->flags
& FLG_DEBUG
)
354 log(LOG_DEBUG
, "%s: no carrier\n", NG_NODE_NAME(node
));
357 if (c
& TTY_ERRORMASK
) {
358 /* framing error or overrun on this char */
359 if (sc
->flags
& FLG_DEBUG
)
360 log(LOG_DEBUG
, "%s: line error %x\n",
361 NG_NODE_NAME(node
), c
& TTY_ERRORMASK
);
366 /* Get a new header mbuf if we need one */
368 MGETHDR(m
, MB_DONTWAIT
, MT_DATA
);
370 if (sc
->flags
& FLG_DEBUG
)
372 "%s: can't get mbuf\n", NG_NODE_NAME(node
));
375 m
->m_len
= m
->m_pkthdr
.len
= 0;
376 m
->m_pkthdr
.rcvif
= NULL
;
380 /* Add char to mbuf */
381 *mtod(m
, u_char
*) = c
;
386 /* Ship off mbuf if it's time */
387 if (sc
->hotchar
== -1 || c
== sc
->hotchar
|| m
->m_len
>= MHLEN
) {
388 m
->m_data
= m
->m_pktdat
;
392 * We have built our mbuf without checking that we actually
393 * have a hook to send it. This was done to avoid
394 * acquiring mutex on each character. Check now.
399 if (sc
->hook
== NULL
) {
402 return (0); /* XXX: original behavior */
404 NG_SEND_DATA_ONLY(error
, sc
->hook
, m
); /* Will queue */
412 * This is called when the device driver is ready for more output.
413 * Also called from ngt_rcv_data() when a new mbuf is available for output.
416 ngt_start(struct tty
*tp
)
418 const sc_p sc
= (sc_p
) tp
->t_lsc
;
420 while (tp
->t_outq
.c_cc
< NGT_HIWATER
) { /* XXX 2.2 specific ? */
423 /* Remove first mbuf from queue */
424 IF_DEQUEUE(&sc
->outq
, m
);
428 /* Send as much of it as possible */
433 - b_to_q(mtod(m
, u_char
*), m
->m_len
, &tp
->t_outq
);
437 break; /* device can't take no more */
441 /* Put remainder of mbuf chain (if any) back on queue */
443 IF_PREPEND(&sc
->outq
, m
);
448 /* Call output process whether or not there is any output. We are
449 * being called in lieu of ttstart and must do what it would. */
452 /* This timeout is needed for operation on a pseudo-tty, because the
453 * pty code doesn't call pppstart after it has drained the t_outq. */
454 /* XXX: outq not locked */
455 if (!IFQ_IS_EMPTY(&sc
->outq
) && !callout_pending(&sc
->chand
))
456 ng_callout(&sc
->chand
, sc
->node
, NULL
, 1, ngt_timeout
, NULL
, 0);
462 * We still have data to output to the device, so try sending more.
465 ngt_timeout(node_p node
, hook_p hook
, void *arg1
, int arg2
)
467 const sc_p sc
= NG_NODE_PRIVATE(node
);
474 /******************************************************************
475 NETGRAPH NODE METHODS
476 ******************************************************************/
479 * Initialize a new node of this type.
481 * We only allow nodes to be created as a result of setting
482 * the line discipline on a tty, so always return an error if not.
485 ngt_constructor(node_p node
)
491 * Add a new hook. There can only be one.
494 ngt_newhook(node_p node
, hook_p hook
, const char *name
)
496 const sc_p sc
= NG_NODE_PRIVATE(node
);
498 if (strcmp(name
, NG_TTY_HOOK
))
512 * Set the hook into queueing mode (for outgoing packets),
513 * so that we wont deliver mbuf thru the whole graph holding
517 ngt_connect(hook_p hook
)
519 NG_HOOK_FORCE_QUEUE(NG_HOOK_PEER(hook
));
521 * XXX: While ngt_start() is Giant-locked, queue incoming
522 * packets, too. Otherwise we acquire Giant holding some
523 * IP stack locks, e.g. divinp, and this makes WITNESS scream.
525 NG_HOOK_FORCE_QUEUE(hook
);
530 * Disconnect the hook
533 ngt_disconnect(hook_p hook
)
535 const sc_p sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
537 if (hook
!= sc
->hook
)
548 * Remove this node. The does the netgraph portion of the shutdown.
549 * This should only be called indirectly from ngt_close().
551 * tp->t_lsc is already NULL, so we should be protected from
555 ngt_shutdown(node_p node
)
557 const sc_p sc
= NG_NODE_PRIVATE(node
);
560 if (!(sc
->flags
& FLG_DIE
)) {
567 _IF_DRAIN(&sc
->outq
);
568 mtx_destroy(&(sc
)->outq
.ifq_mtx
);
570 NG_NODE_UNREF(sc
->node
);
571 FREE(sc
, M_NETGRAPH
);
577 * Receive incoming data from netgraph system. Put it on our
578 * output queue and start output if necessary.
581 ngt_rcvdata(hook_p hook
, item_p item
)
583 const sc_p sc
= NG_NODE_PRIVATE(NG_HOOK_NODE(hook
));
587 if (hook
!= sc
->hook
)
594 if (_IF_QFULL(&sc
->outq
)) {
596 IF_UNLOCK(&sc
->outq
);
601 _IF_ENQUEUE(&sc
->outq
, m
);
602 qlen
= sc
->outq
.ifq_len
;
603 IF_UNLOCK(&sc
->outq
);
606 * If qlen > 1, then we should already have a scheduled callout.
618 * Receive control message
621 ngt_rcvmsg(node_p node
, item_p item
, hook_p lasthook
)
623 const sc_p sc
= NG_NODE_PRIVATE(node
);
624 struct ng_mesg
*msg
, *resp
= NULL
;
627 NGI_GET_MSG(item
, msg
);
628 switch (msg
->header
.typecookie
) {
630 switch (msg
->header
.cmd
) {
631 case NGM_TTY_SET_HOTCHAR
:
635 if (msg
->header
.arglen
!= sizeof(int))
637 hotchar
= *((int *) msg
->data
);
638 if (hotchar
!= (u_char
) hotchar
&& hotchar
!= -1)
640 sc
->hotchar
= hotchar
; /* race condition is OK */
643 case NGM_TTY_GET_HOTCHAR
:
644 NG_MKRESPONSE(resp
, msg
, sizeof(int), M_WAITOK
| M_NULLOK
);
647 /* Race condition here is OK */
648 *((int *) resp
->data
) = sc
->hotchar
;
658 NG_RESPOND_MSG(error
, node
, item
, resp
);
663 /******************************************************************
665 ******************************************************************/
668 * Handle loading and unloading for this node type
671 ngt_mod_event(module_t mod
, int event
, void *data
)
678 /* Register line discipline */
680 if ((ngt_ldisc
= ldisc_register(NETGRAPHDISC
, &ngt_disc
)) < 0) {
682 log(LOG_ERR
, "%s: can't register line discipline",
691 /* Unregister line discipline */
693 ldisc_deregister(ngt_ldisc
);