kernel - Refactor tty_token, fix SMP performance issues
[dragonfly.git] / sys / netgraph7 / tty / ng_tty.c
1 /*-
2  * (MPSAFE)
3  *
4  * ng_tty.c
5  *
6  * Copyright (c) 1996-1999 Whistle Communications, Inc.
7  * All rights reserved.
8  * 
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.
19  * 
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
36  * OF SUCH DAMAGE.
37  *
38  * Author: Archie Cobbs <archie@freebsd.org>
39  *
40  * $FreeBSD: src/sys/netgraph/ng_tty.c,v 1.37 2006/11/06 13:42:03 rwatson Exp $
41  * $Whistle: ng_tty.c,v 1.21 1999/11/01 09:24:52 julian Exp $
42  */
43
44 /*
45  * This file implements a terminal line discipline that is also a
46  * netgraph node. Installing this line discipline on a terminal device
47  * instantiates a new netgraph node of this type, which allows access
48  * to the device via the "hook" hook of the node.
49  *
50  * Once the line discipline is installed, you can find out the name
51  * of the corresponding netgraph node via a NGIOCGINFO ioctl().
52  *
53  * Incoming characters are delievered to the hook one at a time, each
54  * in its own mbuf. You may optionally define a ``hotchar,'' which causes
55  * incoming characters to be buffered up until either the hotchar is
56  * seen or the mbuf is full (MHLEN bytes). Then all buffered characters
57  * are immediately delivered.
58  */
59
60 #include <sys/param.h>
61 #include <sys/systm.h>
62 #include <sys/conf.h>
63 #include <sys/errno.h>
64 #include <sys/fcntl.h>
65 #include <sys/kernel.h>
66 #include <sys/malloc.h>
67 #include <sys/mbuf.h>
68 #include <sys/priv.h>
69 #include <sys/socket.h>
70 #include <sys/syslog.h>
71 #include <sys/tty.h>
72 #include <sys/ttycom.h>
73
74 #include <net/if.h>
75 #include <net/if_var.h>
76
77 #include <netgraph7/netgraph.h>
78 #include <netgraph7/ng_message.h>
79 #include "ng_tty.h"
80
81 /* Misc defs */
82 #define MAX_MBUFQ               3       /* Max number of queued mbufs */
83 #define NGT_HIWATER             400     /* High water mark on output */
84
85 /* Per-node private info */
86 struct ngt_sc {
87         struct  tty *tp;                /* Terminal device */
88         node_p  node;                   /* Netgraph node */
89         hook_p  hook;                   /* Netgraph hook */
90         struct  ifqueue outq;           /* Queue of outgoing data */
91         struct  mbuf *m;                /* Incoming data buffer */
92         short   hotchar;                /* Hotchar, or -1 if none */
93         u_int   flags;                  /* Flags */
94         struct  callout chand;          /* See man timeout(9) */
95 };
96 typedef struct ngt_sc *sc_p;
97
98 /* Flags */
99 #define FLG_DEBUG               0x0002
100 #define FLG_DIE                 0x0004
101
102 /* Line discipline methods */
103 static int      ngt_open(struct cdev *dev, struct tty *tp);
104 static int      ngt_close(struct tty *tp, int flag);
105 static int      ngt_read(struct tty *tp, struct uio *uio, int flag);
106 static int      ngt_write(struct tty *tp, struct uio *uio, int flag);
107 static int      ngt_tioctl(struct tty *tp,
108                     u_long cmd, caddr_t data, int flag, struct ucred *cred);
109 static int      ngt_input(int c, struct tty *tp);
110 static int      ngt_start(struct tty *tp);
111
112 /* Netgraph methods */
113 static ng_constructor_t ngt_constructor;
114 static ng_rcvmsg_t      ngt_rcvmsg;
115 static ng_shutdown_t    ngt_shutdown;
116 static ng_newhook_t     ngt_newhook;
117 static ng_connect_t     ngt_connect;
118 static ng_rcvdata_t     ngt_rcvdata;
119 static ng_disconnect_t  ngt_disconnect;
120 static int              ngt_mod_event(module_t mod, int event, void *data);
121
122 /* Other stuff */
123 static void     ngt_timeout(node_p node, hook_p hook, void *arg1, int arg2);
124
125 #define ERROUT(x)               do { error = (x); goto done; } while (0)
126
127 /* Line discipline descriptor */
128 static struct linesw ngt_disc = {
129         .l_open =       ngt_open,
130         .l_close =      ngt_close,
131         .l_read =       ngt_read,
132         .l_write =      ngt_write,
133         .l_ioctl =      ngt_tioctl,
134         .l_rint =       ngt_input,
135         .l_start =      ngt_start,
136         .l_modem =      ttymodem,
137 };
138
139 /* Netgraph node type descriptor */
140 static struct ng_type typestruct = {
141         .version =      NG_ABI_VERSION,
142         .name =         NG_TTY_NODE_TYPE,
143         .mod_event =    ngt_mod_event,
144         .constructor =  ngt_constructor,
145         .rcvmsg =       ngt_rcvmsg,
146         .shutdown =     ngt_shutdown,
147         .newhook =      ngt_newhook,
148         .connect =      ngt_connect,
149         .rcvdata =      ngt_rcvdata,
150         .disconnect =   ngt_disconnect,
151 };
152 NETGRAPH_INIT(tty, &typestruct);
153
154 /*
155  * Locking:
156  *
157  * - node private data and tp->t_lsc is protected by mutex in struct
158  *   ifqueue, locking is done using IF_XXX() macros.
159  * - in all tty methods we should acquire node ifqueue mutex, when accessing
160  *   private data.
161  * - in _rcvdata() we should use locked versions of IF_{EN,DE}QUEUE() since
162  *   we may have multiple _rcvdata() threads.
163  * - when calling any of tty methods from netgraph methods, we should
164  *   acquire tty locking (now Giant).
165  *
166  * - ngt_unit is incremented atomically.
167  */
168
169 static int ngt_unit;
170 static int ngt_ldisc;
171
172 /******************************************************************
173                     LINE DISCIPLINE METHODS
174 ******************************************************************/
175
176 /*
177  * Set our line discipline on the tty.
178  * Called from device open routine or ttioctl()
179  */
180 static int
181 ngt_open(struct cdev *dev, struct tty *tp)
182 {
183         struct thread *const td = curthread;    /* XXX */
184         char name[sizeof(NG_TTY_NODE_TYPE) + 8];
185         sc_p sc;
186         int error;
187
188         /* Super-user only */
189         error = priv_check(td, PRIV_NETGRAPH_TTY);
190         if (error)
191                 return (error);
192
193         /* Initialize private struct */
194         sc = kmalloc(sizeof(*sc), M_NETGRAPH, M_WAITOK | M_ZERO);
195
196         lwkt_gettoken(&tp->t_token);
197         sc->tp = tp;
198         sc->hotchar = NG_TTY_DFL_HOTCHAR;
199         sc->outq.ifq_maxlen = MAX_MBUFQ;
200
201         /* Setup netgraph node */
202         error = ng_make_node_common(&typestruct, &sc->node);
203         if (error) {
204                 kfree(sc, M_NETGRAPH);
205                 lwkt_reltoken(&tp->t_token);
206                 return (error);
207         }
208
209         atomic_add_int(&ngt_unit, 1);
210         ksnprintf(name, sizeof(name), "%s%d", typestruct.name, ngt_unit);
211
212         /* Assign node its name */
213         if ((error = ng_name_node(sc->node, name))) {
214                 sc->flags |= FLG_DIE;
215                 NG_NODE_UNREF(sc->node);
216                 log(LOG_ERR, "%s: node name exists?\n", name);
217                 lwkt_reltoken(&tp->t_token);
218                 return (error);
219         }
220
221         /* Set back pointers */
222         NG_NODE_SET_PRIVATE(sc->node, sc);
223         tp->t_sc = sc;
224
225         callout_init_mp(&sc->chand);
226
227         /*
228          * Pre-allocate cblocks to the an appropriate amount.
229          * I'm not sure what is appropriate.
230          */
231         ttyflush(tp, FREAD | FWRITE);
232         clist_alloc_cblocks(&tp->t_canq, 0, 0);
233         clist_alloc_cblocks(&tp->t_rawq, 0, 0);
234         clist_alloc_cblocks(&tp->t_outq,
235             MLEN + NGT_HIWATER, MLEN + NGT_HIWATER);
236
237         lwkt_reltoken(&tp->t_token);
238         return (error);
239 }
240
241 /*
242  * Line specific close routine, called from device close routine
243  * and from ttioctl. This causes the node to be destroyed as well.
244  */
245 static int
246 ngt_close(struct tty *tp, int flag)
247 {
248         const sc_p sc = (sc_p) tp->t_sc;
249
250         lwkt_gettoken(&tp->t_token);
251         ttyflush(tp, FREAD | FWRITE);
252         clist_free_cblocks(&tp->t_outq);
253         if (sc != NULL) {
254                 if (callout_pending(&sc->chand))
255                         ng_uncallout(&sc->chand, sc->node);
256                 tp->t_sc = NULL;
257                 sc->flags |= FLG_DIE;
258                 ng_rmnode_self(sc->node);
259         }
260         lwkt_reltoken(&tp->t_token);
261         return (0);
262 }
263
264 /*
265  * Once the device has been turned into a node, we don't allow reading.
266  */
267 static int
268 ngt_read(struct tty *tp, struct uio *uio, int flag)
269 {
270         return (EIO);
271 }
272
273 /*
274  * Once the device has been turned into a node, we don't allow writing.
275  */
276 static int
277 ngt_write(struct tty *tp, struct uio *uio, int flag)
278 {
279         return (EIO);
280 }
281
282 /*
283  * We implement the NGIOCGINFO ioctl() defined in ng_message.h.
284  */
285 static int
286 ngt_tioctl(struct tty *tp, u_long cmd, caddr_t data, int flag, struct ucred *cred)
287 {
288         const sc_p sc = (sc_p) tp->t_sc;
289
290         if (sc == NULL) {
291                 /* No node attached */
292                 return (0);
293         }
294
295         lwkt_gettoken(&tp->t_token);
296         switch (cmd) {
297         case NGIOCGINFO:
298             {
299                 struct nodeinfo *const ni = (struct nodeinfo *) data;
300                 const node_p node = sc->node;
301
302                 bzero(ni, sizeof(*ni));
303                 if (NG_NODE_HAS_NAME(node))
304                         strncpy(ni->name, NG_NODE_NAME(node), sizeof(ni->name) - 1);
305                 strncpy(ni->type, node->nd_type->name, sizeof(ni->type) - 1);
306                 ni->id = (u_int32_t) ng_node2ID(node);
307                 ni->hooks = NG_NODE_NUMHOOKS(node);
308                 break;
309             }
310         default:
311                 lwkt_reltoken(&tp->t_token);
312                 return (ENOIOCTL);
313         }
314
315         lwkt_reltoken(&tp->t_token);
316         return (0);
317 }
318
319 /*
320  * Receive data coming from the device. We get one character at
321  * a time, which is kindof silly.
322  *
323  * Full locking of softc is not required, since we are the only
324  * user of sc->m.
325  */
326 static int
327 ngt_input(int c, struct tty *tp)
328 {
329         sc_p sc;
330         node_p node;
331         struct mbuf *m;
332         int error = 0;
333
334         lwkt_gettoken(&tp->t_token);
335         sc = (sc_p) tp->t_sc;
336         if (sc == NULL) {
337                 /* No node attached */
338                 lwkt_reltoken(&tp->t_token);
339                 return (0);
340         }
341
342         node = sc->node;
343
344         if (tp != sc->tp)
345                 panic("ngt_input");
346
347         /* Check for error conditions */
348         if ((tp->t_state & TS_CONNECTED) == 0) {
349                 if (sc->flags & FLG_DEBUG)
350                         log(LOG_DEBUG, "%s: no carrier\n", NG_NODE_NAME(node));
351                 lwkt_reltoken(&tp->t_token);
352                 return (0);
353         }
354         if (c & TTY_ERRORMASK) {
355                 /* framing error or overrun on this char */
356                 if (sc->flags & FLG_DEBUG)
357                         log(LOG_DEBUG, "%s: line error %x\n",
358                             NG_NODE_NAME(node), c & TTY_ERRORMASK);
359                 lwkt_reltoken(&tp->t_token);
360                 return (0);
361         }
362         c &= TTY_CHARMASK;
363
364         /* Get a new header mbuf if we need one */
365         if (!(m = sc->m)) {
366                 MGETHDR(m, M_NOWAIT, MT_DATA);
367                 if (!m) {
368                         if (sc->flags & FLG_DEBUG)
369                                 log(LOG_ERR,
370                                     "%s: can't get mbuf\n", NG_NODE_NAME(node));
371                         lwkt_reltoken(&tp->t_token);
372                         return (ENOBUFS);
373                 }
374                 m->m_len = m->m_pkthdr.len = 0;
375                 m->m_pkthdr.rcvif = NULL;
376                 sc->m = m;
377         }
378
379         /* Add char to mbuf */
380         *mtod(m, u_char *) = c;
381         m->m_data++;
382         m->m_len++;
383         m->m_pkthdr.len++;
384
385         /* Ship off mbuf if it's time */
386         if (sc->hotchar == -1 || c == sc->hotchar || m->m_len >= MHLEN) {
387                 m->m_data = m->m_pktdat;
388                 sc->m = NULL;
389
390                 /*
391                  * We have built our mbuf without checking that we actually
392                  * have a hook to send it. This was done to avoid
393                  * acquiring mutex on each character. Check now.
394                  *
395                  */
396
397                 if (sc->hook == NULL) {
398                         m_freem(m);
399                         lwkt_reltoken(&tp->t_token);
400                         return (0);             /* XXX: original behavior */
401                 }
402                 NG_SEND_DATA_ONLY(error, sc->hook, m);  /* Will queue */
403         }
404
405         lwkt_reltoken(&tp->t_token);
406         return (error);
407 }
408
409 /*
410  * This is called when the device driver is ready for more output.
411  * Also called from ngt_rcv_data() when a new mbuf is available for output.
412  */
413 static int
414 ngt_start(struct tty *tp)
415 {
416         const sc_p sc = (sc_p) tp->t_sc;
417
418         lwkt_gettoken(&tp->t_token);
419         while (tp->t_outq.c_cc < NGT_HIWATER) { /* XXX 2.2 specific ? */
420                 struct mbuf *m;
421
422                 /* Remove first mbuf from queue */
423                 IF_DEQUEUE(&sc->outq, m);
424                 if (m == NULL)
425                         break;
426
427                 /* Send as much of it as possible */
428                 while (m != NULL) {
429                         int     sent;
430
431                         sent = m->m_len
432                             - b_to_q(mtod(m, u_char *), m->m_len, &tp->t_outq);
433                         m->m_data += sent;
434                         m->m_len -= sent;
435                         if (m->m_len > 0)
436                                 break;  /* device can't take no more */
437                         m = m_free(m);
438                 }
439
440                 /* Put remainder of mbuf chain (if any) back on queue */
441                 if (m != NULL) {
442                         IF_PREPEND(&sc->outq, m);
443                         break;
444                 }
445         }
446
447         /* Call output process whether or not there is any output. We are
448          * being called in lieu of ttstart and must do what it would. */
449         if (tp->t_oproc != NULL)
450                 (*tp->t_oproc) (tp);
451
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 (!IF_QEMPTY(&sc->outq) && !callout_pending(&sc->chand))
456                 ng_callout(&sc->chand, sc->node, NULL, 1, ngt_timeout, NULL, 0);
457
458         lwkt_reltoken(&tp->t_token);
459         return (0);
460 }
461
462 /*
463  * We still have data to output to the device, so try sending more.
464  */
465 static void
466 ngt_timeout(node_p node, hook_p hook, void *arg1, int arg2)
467 {
468         const sc_p sc = NG_NODE_PRIVATE(node);
469         struct tty *tp = sc->tp;
470
471         lwkt_gettoken(&tp->t_token);
472         ngt_start(sc->tp);
473         lwkt_reltoken(&tp->t_token);
474 }
475
476 /******************************************************************
477                     NETGRAPH NODE METHODS
478 ******************************************************************/
479
480 /*
481  * Initialize a new node of this type.
482  *
483  * We only allow nodes to be created as a result of setting
484  * the line discipline on a tty, so always return an error if not.
485  */
486 static int
487 ngt_constructor(node_p node)
488 {
489         return (EOPNOTSUPP);
490 }
491
492 /*
493  * Add a new hook. There can only be one.
494  */
495 static int
496 ngt_newhook(node_p node, hook_p hook, const char *name)
497 {
498         const sc_p sc = NG_NODE_PRIVATE(node);
499         struct tty *tp = sc->tp;
500
501         if (strcmp(name, NG_TTY_HOOK))
502                 return (EINVAL);
503         lwkt_gettoken(&tp->t_token);
504         if (sc->hook) {
505                 lwkt_reltoken(&tp->t_token);
506                 return (EISCONN);
507         }
508         sc->hook = hook;
509         lwkt_reltoken(&tp->t_token);
510         return (0);
511 }
512
513 /*
514  * Set the hook into queueing mode (for outgoing packets),
515  * so that we wont deliver mbuf thru the whole graph holding
516  * tty locks.
517  */
518 static int
519 ngt_connect(hook_p hook)
520 {
521         NG_HOOK_FORCE_QUEUE(NG_HOOK_PEER(hook));
522         /*
523          * XXX: While ngt_start() is Giant-locked, queue incoming
524          * packets, too. Otherwise we acquire Giant holding some
525          * IP stack locks, e.g. divinp, and this makes WITNESS scream.
526          */
527         NG_HOOK_FORCE_QUEUE(hook);
528         return (0);
529 }
530
531 /*
532  * Disconnect the hook
533  */
534 static int
535 ngt_disconnect(hook_p hook)
536 {
537         const sc_p sc = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
538         struct tty *tp = sc->tp;
539
540         lwkt_gettoken(&tp->t_token);
541         if (hook != sc->hook)
542                 panic(__func__);
543         sc->hook = NULL;
544         lwkt_reltoken(&tp->t_token);
545         return (0);
546 }
547
548 /*
549  * Remove this node. The does the netgraph portion of the shutdown.
550  * This should only be called indirectly from ngt_close().
551  *
552  * tp->t_lsc is already NULL, so we should be protected from
553  * tty calls now.
554  */
555 static int
556 ngt_shutdown(node_p node)
557 {
558         const sc_p sc = NG_NODE_PRIVATE(node);
559         struct tty *tp = sc->tp;
560
561         lwkt_gettoken(&tp->t_token);
562         if (!(sc->flags & FLG_DIE)) {
563                 lwkt_reltoken(&tp->t_token);
564                 return (EOPNOTSUPP);
565         }
566
567         /* Free resources */
568         IF_DRAIN(&sc->outq);
569         m_freem(sc->m);
570         kfree(sc, M_NETGRAPH);
571         lwkt_reltoken(&tp->t_token);
572         return (0);
573 }
574
575 /*
576  * Receive incoming data from netgraph system. Put it on our
577  * output queue and start output if necessary.
578  */
579 static int
580 ngt_rcvdata(hook_p hook, item_p item)
581 {
582         const sc_p sc = NG_NODE_PRIVATE(NG_HOOK_NODE(hook));
583         struct tty *tp = sc->tp;
584         struct mbuf *m;
585         int qlen;
586
587         if (hook != sc->hook)
588                 panic(__func__);
589
590         NGI_GET_M(item, m);
591         NG_FREE_ITEM(item);
592
593         if (IF_QFULL(&sc->outq)) {
594                 IF_DROP(&sc->outq);
595                 NG_FREE_M(m);
596                 return (ENOBUFS);
597         }
598
599         IF_ENQUEUE(&sc->outq, m);
600         qlen = sc->outq.ifq_len;
601
602         /*
603          * If qlen > 1, then we should already have a scheduled callout.
604          */
605         if (qlen == 1) {
606                 lwkt_gettoken(&tp->t_token);
607                 ngt_start(sc->tp);
608                 lwkt_reltoken(&tp->t_token);
609         }
610
611         return (0);
612 }
613
614 /*
615  * Receive control message
616  */
617 static int
618 ngt_rcvmsg(node_p node, item_p item, hook_p lasthook)
619 {
620         const sc_p sc = NG_NODE_PRIVATE(node);
621         struct ng_mesg *msg, *resp = NULL;
622         int error = 0;
623
624         NGI_GET_MSG(item, msg);
625         switch (msg->header.typecookie) {
626         case NGM_TTY_COOKIE:
627                 switch (msg->header.cmd) {
628                 case NGM_TTY_SET_HOTCHAR:
629                     {
630                         int     hotchar;
631
632                         if (msg->header.arglen != sizeof(int))
633                                 ERROUT(EINVAL);
634                         hotchar = *((int *) msg->data);
635                         if (hotchar != (u_char) hotchar && hotchar != -1)
636                                 ERROUT(EINVAL);
637                         sc->hotchar = hotchar;  /* race condition is OK */
638                         break;
639                     }
640                 case NGM_TTY_GET_HOTCHAR:
641                         NG_MKRESPONSE(resp, msg, sizeof(int), M_WAITOK | M_NULLOK);
642                         if (!resp)
643                                 ERROUT(ENOMEM);
644                         /* Race condition here is OK */
645                         *((int *) resp->data) = sc->hotchar;
646                         break;
647                 default:
648                         ERROUT(EINVAL);
649                 }
650                 break;
651         default:
652                 ERROUT(EINVAL);
653         }
654 done:
655         NG_RESPOND_MSG(error, node, item, resp);
656         NG_FREE_MSG(msg);
657         return (error);
658 }
659
660 /******************************************************************
661                         INITIALIZATION
662 ******************************************************************/
663
664 /*
665  * Handle loading and unloading for this node type
666  */
667 static int
668 ngt_mod_event(module_t mod, int event, void *data)
669 {
670         int error = 0;
671
672         switch (event) {
673         case MOD_LOAD:
674                 /* Register line discipline */
675                 if ((ngt_ldisc = ldisc_register(NETGRAPHDISC, &ngt_disc)) < 0) {
676                         log(LOG_ERR, "%s: can't register line discipline",
677                             __func__);
678                         return (EIO);
679                 }
680                 break;
681
682         case MOD_UNLOAD:
683
684                 /* Unregister line discipline */
685                 ldisc_deregister(ngt_ldisc);
686                 break;
687
688         default:
689                 error = EOPNOTSUPP;
690                 break;
691         }
692         return (error);
693 }