Nuke huge mbuf macros stage 2/2: Cleanup the MCL*() cluster inlines by
[dragonfly.git] / sys / kern / tty_pty.c
1 /*
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)tty_pty.c   8.4 (Berkeley) 2/20/95
34  * $FreeBSD: src/sys/kern/tty_pty.c,v 1.74.2.4 2002/02/20 19:58:13 dillon Exp $
35  * $DragonFly: src/sys/kern/tty_pty.c,v 1.5 2003/07/19 21:14:39 dillon Exp $
36  */
37
38 /*
39  * Pseudo-teletype Driver
40  * (Actually two drivers, requiring two entries in 'cdevsw')
41  */
42 #include "pty.h"                /* XXX */
43 #include "opt_compat.h"
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
47 #include <sys/ioctl_compat.h>
48 #endif
49 #include <sys/proc.h>
50 #include <sys/tty.h>
51 #include <sys/conf.h>
52 #include <sys/fcntl.h>
53 #include <sys/poll.h>
54 #include <sys/kernel.h>
55 #include <sys/vnode.h>
56 #include <sys/signalvar.h>
57 #include <sys/malloc.h>
58
59 MALLOC_DEFINE(M_PTY, "ptys", "pty data structures");
60
61 static void ptsstart __P((struct tty *tp));
62 static void ptsstop __P((struct tty *tp, int rw));
63 static void ptcwakeup __P((struct tty *tp, int flag));
64 static void ptyinit __P((int n));
65
66 static  d_open_t        ptsopen;
67 static  d_close_t       ptsclose;
68 static  d_read_t        ptsread;
69 static  d_write_t       ptswrite;
70 static  d_ioctl_t       ptyioctl;
71 static  d_open_t        ptcopen;
72 static  d_close_t       ptcclose;
73 static  d_read_t        ptcread;
74 static  d_write_t       ptcwrite;
75 static  d_poll_t        ptcpoll;
76
77 #define CDEV_MAJOR_S    5
78 static struct cdevsw pts_cdevsw = {
79         /* open */      ptsopen,
80         /* close */     ptsclose,
81         /* read */      ptsread,
82         /* write */     ptswrite,
83         /* ioctl */     ptyioctl,
84         /* poll */      ttypoll,
85         /* mmap */      nommap,
86         /* strategy */  nostrategy,
87         /* name */      "pts",
88         /* maj */       CDEV_MAJOR_S,
89         /* dump */      nodump,
90         /* psize */     nopsize,
91         /* flags */     D_TTY | D_KQFILTER,
92         /* bmaj */      -1,
93         /* kqfilter */  ttykqfilter,
94 };
95
96 #define CDEV_MAJOR_C    6
97 static struct cdevsw ptc_cdevsw = {
98         /* open */      ptcopen,
99         /* close */     ptcclose,
100         /* read */      ptcread,
101         /* write */     ptcwrite,
102         /* ioctl */     ptyioctl,
103         /* poll */      ptcpoll,
104         /* mmap */      nommap,
105         /* strategy */  nostrategy,
106         /* name */      "ptc",
107         /* maj */       CDEV_MAJOR_C,
108         /* dump */      nodump,
109         /* psize */     nopsize,
110         /* flags */     D_TTY | D_KQFILTER,
111         /* bmaj */      -1,
112         /* kqfilter */  ttykqfilter,
113 };
114
115 #define BUFSIZ 100              /* Chunk size iomoved to/from user */
116
117 struct  pt_ioctl {
118         int     pt_flags;
119         struct  selinfo pt_selr, pt_selw;
120         u_char  pt_send;
121         u_char  pt_ucntl;
122         struct tty pt_tty;
123         dev_t   devs, devc;
124         struct  prison *pt_prison;
125 };
126
127 #define PF_PKT          0x08            /* packet mode */
128 #define PF_STOPPED      0x10            /* user told stopped */
129 #define PF_REMOTE       0x20            /* remote and flow controlled input */
130 #define PF_NOSTOP       0x40
131 #define PF_UCNTL        0x80            /* user control mode */
132
133 /*
134  * This function creates and initializes a pts/ptc pair
135  *
136  * pts == /dev/tty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv]
137  * ptc == /dev/pty[pqrsPQRS][0123456789abcdefghijklmnopqrstuv]
138  *
139  * XXX: define and add mapping of upper minor bits to allow more 
140  *      than 256 ptys.
141  */
142 static void
143 ptyinit(n)
144         int n;
145 {
146         dev_t devs, devc;
147         char *names = "pqrsPQRS";
148         struct pt_ioctl *pt;
149
150         /* For now we only map the lower 8 bits of the minor */
151         if (n & ~0xff)
152                 return;
153
154         pt = malloc(sizeof(*pt), M_PTY, M_WAITOK);
155         bzero(pt, sizeof(*pt));
156         pt->devs = devs = make_dev(&pts_cdevsw, n,
157             0, 0, 0666, "tty%c%r", names[n / 32], n % 32);
158         pt->devc = devc = make_dev(&ptc_cdevsw, n,
159             0, 0, 0666, "pty%c%r", names[n / 32], n % 32);
160
161         devs->si_drv1 = devc->si_drv1 = pt;
162         devs->si_tty = devc->si_tty = &pt->pt_tty;
163         pt->pt_tty.t_dev = devs;
164         ttyregister(&pt->pt_tty);
165 }
166
167 /*ARGSUSED*/
168 static  int
169 ptsopen(dev_t dev, int flag, int devtype, struct thread *td)
170 {
171         register struct tty *tp;
172         int error;
173         int minr;
174         dev_t nextdev;
175         struct pt_ioctl *pti;
176         struct proc *p;
177
178         p = td->td_proc;
179         KKASSERT(p != NULL);
180
181         /*
182          * XXX: Gross hack for DEVFS:
183          * XXX: DEVFS is no more, should this be removed?
184          * If we openned this device, ensure we have the
185          * next one too, so people can open it.
186          */
187         minr = lminor(dev);
188         if (minr < 255) {
189                 nextdev = makedev(major(dev), minr + 1);
190                 if (!nextdev->si_drv1) {
191                         ptyinit(minr + 1);
192                 }
193         }
194         if (!dev->si_drv1)
195                 ptyinit(minor(dev));
196         if (!dev->si_drv1)
197                 return(ENXIO);  
198         pti = dev->si_drv1;
199         tp = dev->si_tty;
200         if ((tp->t_state & TS_ISOPEN) == 0) {
201                 ttychars(tp);           /* Set up default chars */
202                 tp->t_iflag = TTYDEF_IFLAG;
203                 tp->t_oflag = TTYDEF_OFLAG;
204                 tp->t_lflag = TTYDEF_LFLAG;
205                 tp->t_cflag = TTYDEF_CFLAG;
206                 tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
207         } else if (tp->t_state & TS_XCLUDE && suser(td)) {
208                 return (EBUSY);
209         } else if (pti->pt_prison != p->p_ucred->cr_prison) {
210                 return (EBUSY);
211         }
212         if (tp->t_oproc)                        /* Ctrlr still around. */
213                 (void)(*linesw[tp->t_line].l_modem)(tp, 1);
214         while ((tp->t_state & TS_CARR_ON) == 0) {
215                 if (flag&FNONBLOCK)
216                         break;
217                 error = ttysleep(tp, TSA_CARR_ON(tp), PCATCH, "ptsopn", 0);
218                 if (error)
219                         return (error);
220         }
221         error = (*linesw[tp->t_line].l_open)(dev, tp);
222         if (error == 0)
223                 ptcwakeup(tp, FREAD|FWRITE);
224         return (error);
225 }
226
227 static  int
228 ptsclose(dev, flag, mode, td)
229         dev_t dev;
230         int flag, mode;
231         struct thread *td;
232 {
233         register struct tty *tp;
234         int err;
235
236         tp = dev->si_tty;
237         err = (*linesw[tp->t_line].l_close)(tp, flag);
238         ptsstop(tp, FREAD|FWRITE);
239         (void) ttyclose(tp);
240         return (err);
241 }
242
243 static  int
244 ptsread(dev, uio, flag)
245         dev_t dev;
246         struct uio *uio;
247         int flag;
248 {
249         struct proc *p = curproc;
250         register struct tty *tp = dev->si_tty;
251         register struct pt_ioctl *pti = dev->si_drv1;
252         int error = 0;
253
254 again:
255         if (pti->pt_flags & PF_REMOTE) {
256                 while (isbackground(p, tp)) {
257                         if (SIGISMEMBER(p->p_sigignore, SIGTTIN) ||
258                             SIGISMEMBER(p->p_sigmask, SIGTTIN) ||
259                             p->p_pgrp->pg_jobc == 0 || p->p_flag & P_PPWAIT)
260                                 return (EIO);
261                         pgsignal(p->p_pgrp, SIGTTIN, 1);
262                         error = ttysleep(tp, &lbolt, PCATCH, "ptsbg", 0);
263                         if (error)
264                                 return (error);
265                 }
266                 if (tp->t_canq.c_cc == 0) {
267                         if (flag & IO_NDELAY)
268                                 return (EWOULDBLOCK);
269                         error = ttysleep(tp, TSA_PTS_READ(tp), PCATCH,
270                                          "ptsin", 0);
271                         if (error)
272                                 return (error);
273                         goto again;
274                 }
275                 while (tp->t_canq.c_cc > 1 && uio->uio_resid > 0)
276                         if (ureadc(getc(&tp->t_canq), uio) < 0) {
277                                 error = EFAULT;
278                                 break;
279                         }
280                 if (tp->t_canq.c_cc == 1)
281                         (void) getc(&tp->t_canq);
282                 if (tp->t_canq.c_cc)
283                         return (error);
284         } else
285                 if (tp->t_oproc)
286                         error = (*linesw[tp->t_line].l_read)(tp, uio, flag);
287         ptcwakeup(tp, FWRITE);
288         return (error);
289 }
290
291 /*
292  * Write to pseudo-tty.
293  * Wakeups of controlling tty will happen
294  * indirectly, when tty driver calls ptsstart.
295  */
296 static  int
297 ptswrite(dev, uio, flag)
298         dev_t dev;
299         struct uio *uio;
300         int flag;
301 {
302         register struct tty *tp;
303
304         tp = dev->si_tty;
305         if (tp->t_oproc == 0)
306                 return (EIO);
307         return ((*linesw[tp->t_line].l_write)(tp, uio, flag));
308 }
309
310 /*
311  * Start output on pseudo-tty.
312  * Wake up process selecting or sleeping for input from controlling tty.
313  */
314 static void
315 ptsstart(tp)
316         struct tty *tp;
317 {
318         register struct pt_ioctl *pti = tp->t_dev->si_drv1;
319
320         if (tp->t_state & TS_TTSTOP)
321                 return;
322         if (pti->pt_flags & PF_STOPPED) {
323                 pti->pt_flags &= ~PF_STOPPED;
324                 pti->pt_send = TIOCPKT_START;
325         }
326         ptcwakeup(tp, FREAD);
327 }
328
329 static void
330 ptcwakeup(tp, flag)
331         struct tty *tp;
332         int flag;
333 {
334         struct pt_ioctl *pti = tp->t_dev->si_drv1;
335
336         if (flag & FREAD) {
337                 selwakeup(&pti->pt_selr);
338                 wakeup(TSA_PTC_READ(tp));
339         }
340         if (flag & FWRITE) {
341                 selwakeup(&pti->pt_selw);
342                 wakeup(TSA_PTC_WRITE(tp));
343         }
344 }
345
346 static  int
347 ptcopen(dev, flag, devtype, td)
348         dev_t dev;
349         int flag, devtype;
350         struct thread *td;
351 {
352         register struct tty *tp;
353         struct pt_ioctl *pti;
354
355         if (!dev->si_drv1)
356                 ptyinit(minor(dev));
357         if (!dev->si_drv1)
358                 return(ENXIO);  
359         tp = dev->si_tty;
360         if (tp->t_oproc)
361                 return (EIO);
362         KKASSERT(td->td_proc != NULL);
363         tp->t_oproc = ptsstart;
364         tp->t_stop = ptsstop;
365         (void)(*linesw[tp->t_line].l_modem)(tp, 1);
366         tp->t_lflag &= ~EXTPROC;
367         pti = dev->si_drv1;
368         pti->pt_prison = td->td_proc->p_ucred->cr_prison;
369         pti->pt_flags = 0;
370         pti->pt_send = 0;
371         pti->pt_ucntl = 0;
372         return (0);
373 }
374
375 static  int
376 ptcclose(dev, flags, fmt, td)
377         dev_t dev;
378         int flags;
379         int fmt;
380         struct thread *td;
381 {
382         register struct tty *tp;
383
384         tp = dev->si_tty;
385         (void)(*linesw[tp->t_line].l_modem)(tp, 0);
386
387         /*
388          * XXX MDMBUF makes no sense for ptys but would inhibit the above
389          * l_modem().  CLOCAL makes sense but isn't supported.   Special
390          * l_modem()s that ignore carrier drop make no sense for ptys but
391          * may be in use because other parts of the line discipline make
392          * sense for ptys.  Recover by doing everything that a normal
393          * ttymodem() would have done except for sending a SIGHUP.
394          */
395         if (tp->t_state & TS_ISOPEN) {
396                 tp->t_state &= ~(TS_CARR_ON | TS_CONNECTED);
397                 tp->t_state |= TS_ZOMBIE;
398                 ttyflush(tp, FREAD | FWRITE);
399         }
400
401         tp->t_oproc = 0;                /* mark closed */
402         return (0);
403 }
404
405 static  int
406 ptcread(dev, uio, flag)
407         dev_t dev;
408         struct uio *uio;
409         int flag;
410 {
411         register struct tty *tp = dev->si_tty;
412         struct pt_ioctl *pti = dev->si_drv1;
413         char buf[BUFSIZ];
414         int error = 0, cc;
415
416         /*
417          * We want to block until the slave
418          * is open, and there's something to read;
419          * but if we lost the slave or we're NBIO,
420          * then return the appropriate error instead.
421          */
422         for (;;) {
423                 if (tp->t_state&TS_ISOPEN) {
424                         if (pti->pt_flags&PF_PKT && pti->pt_send) {
425                                 error = ureadc((int)pti->pt_send, uio);
426                                 if (error)
427                                         return (error);
428                                 if (pti->pt_send & TIOCPKT_IOCTL) {
429                                         cc = min(uio->uio_resid,
430                                                 sizeof(tp->t_termios));
431                                         uiomove((caddr_t)&tp->t_termios, cc,
432                                                 uio);
433                                 }
434                                 pti->pt_send = 0;
435                                 return (0);
436                         }
437                         if (pti->pt_flags&PF_UCNTL && pti->pt_ucntl) {
438                                 error = ureadc((int)pti->pt_ucntl, uio);
439                                 if (error)
440                                         return (error);
441                                 pti->pt_ucntl = 0;
442                                 return (0);
443                         }
444                         if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
445                                 break;
446                 }
447                 if ((tp->t_state & TS_CONNECTED) == 0)
448                         return (0);     /* EOF */
449                 if (flag & IO_NDELAY)
450                         return (EWOULDBLOCK);
451                 error = tsleep(TSA_PTC_READ(tp), PCATCH, "ptcin", 0);
452                 if (error)
453                         return (error);
454         }
455         if (pti->pt_flags & (PF_PKT|PF_UCNTL))
456                 error = ureadc(0, uio);
457         while (uio->uio_resid > 0 && error == 0) {
458                 cc = q_to_b(&tp->t_outq, buf, min(uio->uio_resid, BUFSIZ));
459                 if (cc <= 0)
460                         break;
461                 error = uiomove(buf, cc, uio);
462         }
463         ttwwakeup(tp);
464         return (error);
465 }
466
467 static  void
468 ptsstop(tp, flush)
469         register struct tty *tp;
470         int flush;
471 {
472         struct pt_ioctl *pti = tp->t_dev->si_drv1;
473         int flag;
474
475         /* note: FLUSHREAD and FLUSHWRITE already ok */
476         if (flush == 0) {
477                 flush = TIOCPKT_STOP;
478                 pti->pt_flags |= PF_STOPPED;
479         } else
480                 pti->pt_flags &= ~PF_STOPPED;
481         pti->pt_send |= flush;
482         /* change of perspective */
483         flag = 0;
484         if (flush & FREAD)
485                 flag |= FWRITE;
486         if (flush & FWRITE)
487                 flag |= FREAD;
488         ptcwakeup(tp, flag);
489 }
490
491 static  int
492 ptcpoll(dev, events, td)
493         dev_t dev;
494         int events;
495         struct thread *td;
496 {
497         register struct tty *tp = dev->si_tty;
498         struct pt_ioctl *pti = dev->si_drv1;
499         int revents = 0;
500         int s;
501
502         if ((tp->t_state & TS_CONNECTED) == 0)
503                 return (seltrue(dev, events, td) | POLLHUP);
504
505         /*
506          * Need to block timeouts (ttrstart).
507          */
508         s = spltty();
509
510         if (events & (POLLIN | POLLRDNORM))
511                 if ((tp->t_state & TS_ISOPEN) &&
512                     ((tp->t_outq.c_cc && (tp->t_state & TS_TTSTOP) == 0) ||
513                      ((pti->pt_flags & PF_PKT) && pti->pt_send) ||
514                      ((pti->pt_flags & PF_UCNTL) && pti->pt_ucntl)))
515                         revents |= events & (POLLIN | POLLRDNORM);
516
517         if (events & (POLLOUT | POLLWRNORM))
518                 if (tp->t_state & TS_ISOPEN &&
519                     ((pti->pt_flags & PF_REMOTE) ?
520                      (tp->t_canq.c_cc == 0) : 
521                      ((tp->t_rawq.c_cc + tp->t_canq.c_cc < TTYHOG - 2) ||
522                       (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON)))))
523                         revents |= events & (POLLOUT | POLLWRNORM);
524
525         if (events & POLLHUP)
526                 if ((tp->t_state & TS_CARR_ON) == 0)
527                         revents |= POLLHUP;
528
529         if (revents == 0) {
530                 if (events & (POLLIN | POLLRDNORM))
531                         selrecord(td, &pti->pt_selr);
532
533                 if (events & (POLLOUT | POLLWRNORM)) 
534                         selrecord(td, &pti->pt_selw);
535         }
536         splx(s);
537
538         return (revents);
539 }
540
541 static  int
542 ptcwrite(dev, uio, flag)
543         dev_t dev;
544         register struct uio *uio;
545         int flag;
546 {
547         register struct tty *tp = dev->si_tty;
548         register u_char *cp = 0;
549         register int cc = 0;
550         u_char locbuf[BUFSIZ];
551         int cnt = 0;
552         struct pt_ioctl *pti = dev->si_drv1;
553         int error = 0;
554
555 again:
556         if ((tp->t_state&TS_ISOPEN) == 0)
557                 goto block;
558         if (pti->pt_flags & PF_REMOTE) {
559                 if (tp->t_canq.c_cc)
560                         goto block;
561                 while ((uio->uio_resid > 0 || cc > 0) &&
562                        tp->t_canq.c_cc < TTYHOG - 1) {
563                         if (cc == 0) {
564                                 cc = min(uio->uio_resid, BUFSIZ);
565                                 cc = min(cc, TTYHOG - 1 - tp->t_canq.c_cc);
566                                 cp = locbuf;
567                                 error = uiomove((caddr_t)cp, cc, uio);
568                                 if (error)
569                                         return (error);
570                                 /* check again for safety */
571                                 if ((tp->t_state & TS_ISOPEN) == 0) {
572                                         /* adjust as usual */
573                                         uio->uio_resid += cc;
574                                         return (EIO);
575                                 }
576                         }
577                         if (cc > 0) {
578                                 cc = b_to_q((char *)cp, cc, &tp->t_canq);
579                                 /*
580                                  * XXX we don't guarantee that the canq size
581                                  * is >= TTYHOG, so the above b_to_q() may
582                                  * leave some bytes uncopied.  However, space
583                                  * is guaranteed for the null terminator if
584                                  * we don't fail here since (TTYHOG - 1) is
585                                  * not a multiple of CBSIZE.
586                                  */
587                                 if (cc > 0)
588                                         break;
589                         }
590                 }
591                 /* adjust for data copied in but not written */
592                 uio->uio_resid += cc;
593                 (void) putc(0, &tp->t_canq);
594                 ttwakeup(tp);
595                 wakeup(TSA_PTS_READ(tp));
596                 return (0);
597         }
598         while (uio->uio_resid > 0 || cc > 0) {
599                 if (cc == 0) {
600                         cc = min(uio->uio_resid, BUFSIZ);
601                         cp = locbuf;
602                         error = uiomove((caddr_t)cp, cc, uio);
603                         if (error)
604                                 return (error);
605                         /* check again for safety */
606                         if ((tp->t_state & TS_ISOPEN) == 0) {
607                                 /* adjust for data copied in but not written */
608                                 uio->uio_resid += cc;
609                                 return (EIO);
610                         }
611                 }
612                 while (cc > 0) {
613                         if ((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= TTYHOG - 2 &&
614                            (tp->t_canq.c_cc > 0 || !(tp->t_lflag&ICANON))) {
615                                 wakeup(TSA_HUP_OR_INPUT(tp));
616                                 goto block;
617                         }
618                         (*linesw[tp->t_line].l_rint)(*cp++, tp);
619                         cnt++;
620                         cc--;
621                 }
622                 cc = 0;
623         }
624         return (0);
625 block:
626         /*
627          * Come here to wait for slave to open, for space
628          * in outq, or space in rawq, or an empty canq.
629          */
630         if ((tp->t_state & TS_CONNECTED) == 0) {
631                 /* adjust for data copied in but not written */
632                 uio->uio_resid += cc;
633                 return (EIO);
634         }
635         if (flag & IO_NDELAY) {
636                 /* adjust for data copied in but not written */
637                 uio->uio_resid += cc;
638                 if (cnt == 0)
639                         return (EWOULDBLOCK);
640                 return (0);
641         }
642         error = tsleep(TSA_PTC_WRITE(tp), PCATCH, "ptcout", 0);
643         if (error) {
644                 /* adjust for data copied in but not written */
645                 uio->uio_resid += cc;
646                 return (error);
647         }
648         goto again;
649 }
650
651 /*ARGSUSED*/
652 static  int
653 ptyioctl(dev, cmd, data, flag, td)
654         dev_t dev;
655         u_long cmd;
656         caddr_t data;
657         int flag;
658         struct thread *td;
659 {
660         register struct tty *tp = dev->si_tty;
661         register struct pt_ioctl *pti = dev->si_drv1;
662         register u_char *cc = tp->t_cc;
663         int stop, error;
664
665         if (devsw(dev)->d_open == ptcopen) {
666                 switch (cmd) {
667
668                 case TIOCGPGRP:
669                         /*
670                          * We avoid calling ttioctl on the controller since,
671                          * in that case, tp must be the controlling terminal.
672                          */
673                         *(int *)data = tp->t_pgrp ? tp->t_pgrp->pg_id : 0;
674                         return (0);
675
676                 case TIOCPKT:
677                         if (*(int *)data) {
678                                 if (pti->pt_flags & PF_UCNTL)
679                                         return (EINVAL);
680                                 pti->pt_flags |= PF_PKT;
681                         } else
682                                 pti->pt_flags &= ~PF_PKT;
683                         return (0);
684
685                 case TIOCUCNTL:
686                         if (*(int *)data) {
687                                 if (pti->pt_flags & PF_PKT)
688                                         return (EINVAL);
689                                 pti->pt_flags |= PF_UCNTL;
690                         } else
691                                 pti->pt_flags &= ~PF_UCNTL;
692                         return (0);
693
694                 case TIOCREMOTE:
695                         if (*(int *)data)
696                                 pti->pt_flags |= PF_REMOTE;
697                         else
698                                 pti->pt_flags &= ~PF_REMOTE;
699                         ttyflush(tp, FREAD|FWRITE);
700                         return (0);
701                 }
702
703                 /*
704                  * The rest of the ioctls shouldn't be called until 
705                  * the slave is open.
706                  */
707                 if ((tp->t_state & TS_ISOPEN) == 0)
708                         return (EAGAIN);
709
710                 switch (cmd) {
711 #ifdef COMPAT_43
712                 case TIOCSETP:
713                 case TIOCSETN:
714 #endif
715                 case TIOCSETD:
716                 case TIOCSETA:
717                 case TIOCSETAW:
718                 case TIOCSETAF:
719                         /*
720                          * IF CONTROLLER STTY THEN MUST FLUSH TO PREVENT A HANG.
721                          * ttywflush(tp) will hang if there are characters in
722                          * the outq.
723                          */
724                         ndflush(&tp->t_outq, tp->t_outq.c_cc);
725                         break;
726
727                 case TIOCSIG:
728                         if (*(unsigned int *)data >= NSIG ||
729                             *(unsigned int *)data == 0)
730                                 return(EINVAL);
731                         if ((tp->t_lflag&NOFLSH) == 0)
732                                 ttyflush(tp, FREAD|FWRITE);
733                         pgsignal(tp->t_pgrp, *(unsigned int *)data, 1);
734                         if ((*(unsigned int *)data == SIGINFO) &&
735                             ((tp->t_lflag&NOKERNINFO) == 0))
736                                 ttyinfo(tp);
737                         return(0);
738                 }
739         }
740         if (cmd == TIOCEXT) {
741                 /*
742                  * When the EXTPROC bit is being toggled, we need
743                  * to send an TIOCPKT_IOCTL if the packet driver
744                  * is turned on.
745                  */
746                 if (*(int *)data) {
747                         if (pti->pt_flags & PF_PKT) {
748                                 pti->pt_send |= TIOCPKT_IOCTL;
749                                 ptcwakeup(tp, FREAD);
750                         }
751                         tp->t_lflag |= EXTPROC;
752                 } else {
753                         if ((tp->t_lflag & EXTPROC) &&
754                             (pti->pt_flags & PF_PKT)) {
755                                 pti->pt_send |= TIOCPKT_IOCTL;
756                                 ptcwakeup(tp, FREAD);
757                         }
758                         tp->t_lflag &= ~EXTPROC;
759                 }
760                 return(0);
761         }
762         error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, td);
763         if (error == ENOIOCTL)
764                  error = ttioctl(tp, cmd, data, flag);
765         if (error == ENOIOCTL) {
766                 if (pti->pt_flags & PF_UCNTL &&
767                     (cmd & ~0xff) == UIOCCMD(0)) {
768                         if (cmd & 0xff) {
769                                 pti->pt_ucntl = (u_char)cmd;
770                                 ptcwakeup(tp, FREAD);
771                         }
772                         return (0);
773                 }
774                 error = ENOTTY;
775         }
776         /*
777          * If external processing and packet mode send ioctl packet.
778          */
779         if ((tp->t_lflag&EXTPROC) && (pti->pt_flags & PF_PKT)) {
780                 switch(cmd) {
781                 case TIOCSETA:
782                 case TIOCSETAW:
783                 case TIOCSETAF:
784 #ifdef COMPAT_43
785                 case TIOCSETP:
786                 case TIOCSETN:
787 #endif
788 #if defined(COMPAT_43) || defined(COMPAT_SUNOS)
789                 case TIOCSETC:
790                 case TIOCSLTC:
791                 case TIOCLBIS:
792                 case TIOCLBIC:
793                 case TIOCLSET:
794 #endif
795                         pti->pt_send |= TIOCPKT_IOCTL;
796                         ptcwakeup(tp, FREAD);
797                 default:
798                         break;
799                 }
800         }
801         stop = (tp->t_iflag & IXON) && CCEQ(cc[VSTOP], CTRL('s'))
802                 && CCEQ(cc[VSTART], CTRL('q'));
803         if (pti->pt_flags & PF_NOSTOP) {
804                 if (stop) {
805                         pti->pt_send &= ~TIOCPKT_NOSTOP;
806                         pti->pt_send |= TIOCPKT_DOSTOP;
807                         pti->pt_flags &= ~PF_NOSTOP;
808                         ptcwakeup(tp, FREAD);
809                 }
810         } else {
811                 if (!stop) {
812                         pti->pt_send &= ~TIOCPKT_DOSTOP;
813                         pti->pt_send |= TIOCPKT_NOSTOP;
814                         pti->pt_flags |= PF_NOSTOP;
815                         ptcwakeup(tp, FREAD);
816                 }
817         }
818         return (error);
819 }
820
821
822 static void ptc_drvinit __P((void *unused));
823
824 static void
825 ptc_drvinit(unused)
826         void *unused;
827 {
828         cdevsw_add(&pts_cdevsw);
829         cdevsw_add(&ptc_cdevsw);
830         /* XXX: Gross hack for DEVFS */
831         /* XXX: DEVFS is no more, should this be removed? */
832         ptyinit(0);
833 }
834
835 SYSINIT(ptcdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR_C,ptc_drvinit,NULL)