2 * Copyright (c) 1997-2013 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1982, 1986, 1989, 1993
30 * The Regents of the University of California. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)tty_pty.c 8.4 (Berkeley) 2/20/95
63 /* Common callbacks for the pseudo-teletype driver (pty/tty)
64 * and cloning pseudo-teletype driver (ptmx/pts).
67 #include <sys/param.h>
68 #include <sys/systm.h>
69 #include <sys/ioctl.h>
70 #include <sys/proc_internal.h>
71 #include <sys/kauth.h>
74 #include <sys/file_internal.h>
75 #include <sys/uio_internal.h>
76 #include <sys/kernel.h>
77 #include <sys/vnode.h>
78 #include <sys/vnode_internal.h> /* _devfs_setattr() */
79 #include <sys/stat.h> /* _devfs_setattr() */
81 #include <sys/signalvar.h>
82 #include <sys/sysctl.h>
83 #include <miscfs/devfs/devfs.h>
84 #include <miscfs/devfs/devfsdefs.h> /* DEVFS_LOCK()/DEVFS_UNLOCK() */
87 #include <security/mac_framework.h>
92 /* XXX belongs in devfs somewhere - LATER */
93 static int _devfs_setattr(void *, unsigned short, uid_t
, gid_t
);
96 * Forward declarations
98 static void ptcwakeup(struct tty
*tp
, int flag
);
99 __XNU_PRIVATE_EXTERN d_open_t ptsopen
;
100 __XNU_PRIVATE_EXTERN d_close_t ptsclose
;
101 __XNU_PRIVATE_EXTERN d_read_t ptsread
;
102 __XNU_PRIVATE_EXTERN d_write_t ptswrite
;
103 __XNU_PRIVATE_EXTERN d_ioctl_t ptyioctl
; /* common ioctl */
104 __XNU_PRIVATE_EXTERN d_stop_t ptsstop
;
105 __XNU_PRIVATE_EXTERN d_reset_t ptsreset
;
106 __XNU_PRIVATE_EXTERN d_select_t ptsselect
;
107 __XNU_PRIVATE_EXTERN d_open_t ptcopen
;
108 __XNU_PRIVATE_EXTERN d_close_t ptcclose
;
109 __XNU_PRIVATE_EXTERN d_read_t ptcread
;
110 __XNU_PRIVATE_EXTERN d_write_t ptcwrite
;
111 __XNU_PRIVATE_EXTERN d_stop_t ptcstop
; /* NO-OP */
112 __XNU_PRIVATE_EXTERN d_reset_t ptcreset
;
113 __XNU_PRIVATE_EXTERN d_select_t ptcselect
;
116 * XXX Should be devfs function... and use VATTR mechanisms, per
117 * XXX vnode_setattr2(); only we maybe can't really get back to the
118 * XXX vnode here for cloning devices (but it works for *cloned* devices
119 * XXX that are not themselves cloning).
126 _devfs_setattr(void * handle
, unsigned short mode
, uid_t uid
, gid_t gid
)
128 devdirent_t
*direntp
= (devdirent_t
*)handle
;
131 vfs_context_t ctx
= vfs_context_current();;
132 struct vnode_attr va
;
135 VATTR_SET(&va
, va_uid
, uid
);
136 VATTR_SET(&va
, va_gid
, gid
);
137 VATTR_SET(&va
, va_mode
, mode
& ALLPERMS
);
140 * If the TIOCPTYGRANT loses the race with the clone operation because
141 * this function is not part of devfs, and therefore can't take the
142 * devfs lock to protect the direntp update, then force user space to
143 * redrive the grant request.
145 if (direntp
== NULL
|| (devnodep
= direntp
->de_dnp
) == NULL
) {
151 * Only do this if we are operating on device that doesn't clone
152 * each time it's referenced. We perform a lookup on the device
153 * to insure we get the right instance. We can't just use the call
154 * to devfs_dntovn() to get the vp for the operation, because
155 * dn_dvm may not have been initialized.
157 if (devnodep
->dn_clone
== NULL
) {
161 snprintf(name
, sizeof(name
), "/dev/%s", direntp
->de_name
);
162 NDINIT(&nd
, LOOKUP
, OP_SETATTR
, FOLLOW
, UIO_SYSSPACE
, CAST_USER_ADDR_T(name
), ctx
);
166 error
= vnode_setattr(nd
.ni_vp
, &va
, ctx
);
176 #define BUFSIZ 100 /* Chunk size iomoved to/from user */
178 static struct tty_dev_t
*tty_dev_head
;
180 __private_extern__
void
181 tty_dev_register(struct tty_dev_t
*driver
)
184 driver
->next
= tty_dev_head
;
185 tty_dev_head
= driver
;
190 * Given a minor number, return the corresponding structure for that minor
191 * number. If there isn't one, and the create flag is specified, we create
194 * Parameters: minor Minor number of ptmx device
195 * open_flag PF_OPEN_M First open of master
196 * PF_OPEN_S First open of slave
197 * 0 Just want ioctl struct
199 * Returns: NULL Did not exist/could not create
200 * !NULL structure corresponding minor number
202 * Locks: tty_lock() on ptmx_ioctl->pt_tty NOT held on entry or exit.
205 static struct tty_dev_t
*
206 pty_get_driver(dev_t dev
)
208 int major
= major(dev
);
209 struct tty_dev_t
*driver
;
210 for (driver
= tty_dev_head
; driver
!= NULL
; driver
= driver
->next
) {
211 if ((driver
->master
== major
|| driver
->slave
== major
)) {
218 static struct ptmx_ioctl
*
219 pty_get_ioctl(dev_t dev
, int open_flag
, struct tty_dev_t
**out_driver
)
221 struct tty_dev_t
*driver
= pty_get_driver(dev
);
223 *out_driver
= driver
;
225 if (driver
&& driver
->open
) {
226 return driver
->open(minor(dev
), open_flag
);
232 * Locks: tty_lock() of old_ptmx_ioctl->pt_tty NOT held for this call.
235 pty_free_ioctl(dev_t dev
, int open_flag
)
237 struct tty_dev_t
*driver
= pty_get_driver(dev
);
238 if (driver
&& driver
->free
) {
239 return driver
->free(minor(dev
), open_flag
);
245 pty_get_name(dev_t dev
, char *buffer
, size_t size
)
247 struct tty_dev_t
*driver
= pty_get_driver(dev
);
248 if (driver
&& driver
->name
) {
249 return driver
->name(minor(dev
), buffer
, size
);
254 __private_extern__
int
255 ptsopen(dev_t dev
, int flag
, __unused
int devtype
, __unused
struct proc
*p
)
258 struct tty_dev_t
*driver
;
259 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, PF_OPEN_S
, &driver
);
263 if (!(pti
->pt_flags
& PF_UNLOCKED
)) {
267 struct tty
*tp
= pti
->pt_tty
;
270 if ((tp
->t_state
& TS_ISOPEN
) == 0) {
271 termioschars(&tp
->t_termios
); /* Set up default chars */
272 tp
->t_iflag
= TTYDEF_IFLAG
;
273 tp
->t_oflag
= TTYDEF_OFLAG
;
274 tp
->t_lflag
= TTYDEF_LFLAG
;
275 tp
->t_cflag
= TTYDEF_CFLAG
;
276 tp
->t_ispeed
= tp
->t_ospeed
= TTYDEF_SPEED
;
277 ttsetwater(tp
); /* would be done in xxparam() */
278 } else if ((tp
->t_state
& TS_XCLUDE
) && kauth_cred_issuser(kauth_cred_get())) {
282 if (tp
->t_oproc
) /* Ctrlr still around. */
283 (void)(*linesw
[tp
->t_line
].l_modem
)(tp
, 1);
284 while ((tp
->t_state
& TS_CARR_ON
) == 0) {
287 error
= ttysleep(tp
, TSA_CARR_ON(tp
), TTIPRI
| PCATCH
, __FUNCTION__
, 0);
291 error
= (*linesw
[tp
->t_line
].l_open
)(dev
, tp
);
292 /* Successful open; mark as open by the slave */
294 pti
->pt_flags
|= PF_OPEN_S
;
295 CLR(tp
->t_state
, TS_IOCTL_NOT_OK
);
297 ptcwakeup(tp
, FREAD
|FWRITE
);
304 __private_extern__
int
305 ptsclose(dev_t dev
, int flag
, __unused
int mode
, __unused proc_t p
)
310 * This is temporary until the VSX conformance tests
311 * are fixed. They are hanging with a deadlock
312 * where close() will not complete without t_timeout set
314 #define FIX_VSX_HANG 1
318 struct tty_dev_t
*driver
;
319 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, &driver
);
328 save_timeout
= tp
->t_timeout
;
331 err
= (*linesw
[tp
->t_line
].l_close
)(tp
, flag
);
332 ptsstop(tp
, FREAD
|FWRITE
);
335 tp
->t_timeout
= save_timeout
;
339 if ((flag
& IO_REVOKE
) == IO_REVOKE
&& driver
->revoke
) {
340 driver
->revoke(minor(dev
), tp
);
342 /* unconditional, just like ttyclose() */
343 pty_free_ioctl(dev
, PF_OPEN_S
);
348 __private_extern__
int
349 ptsread(dev_t dev
, struct uio
*uio
, int flag
)
351 proc_t p
= current_proc();
352 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, NULL
);
363 ut
= (struct uthread
*)get_bsdthread_info(current_thread());
365 if (pti
->pt_flags
& PF_REMOTE
) {
366 while (isbackground(p
, tp
)) {
367 if ((p
->p_sigignore
& sigmask(SIGTTIN
)) ||
368 (ut
->uu_sigmask
& sigmask(SIGTTIN
)) ||
369 p
->p_lflag
& P_LPPWAIT
) {
376 if (pg
== PGRP_NULL
) {
381 * SAFE: We about to drop the lock ourselves by
382 * SAFE: erroring out or sleeping anyway.
385 if (pg
->pg_jobc
== 0) {
391 pgsignal(pg
, SIGTTIN
, 1);
395 error
= ttysleep(tp
, &ptsread
, TTIPRI
| PCATCH
| PTTYBLOCK
, __FUNCTION__
, hz
);
399 if (tp
->t_canq
.c_cc
== 0) {
400 if (flag
& IO_NDELAY
) {
404 error
= ttysleep(tp
, TSA_PTS_READ(tp
), TTIPRI
| PCATCH
, __FUNCTION__
, 0);
409 while (tp
->t_canq
.c_cc
> 1 && uio_resid(uio
) > 0) {
413 cc
= MIN((int)uio_resid(uio
), BUFSIZ
);
414 // Don't copy the very last byte
415 cc
= MIN(cc
, tp
->t_canq
.c_cc
- 1);
416 cc
= q_to_b(&tp
->t_canq
, (u_char
*)buf
, cc
);
417 error
= uiomove(buf
, cc
, uio
);
421 if (tp
->t_canq
.c_cc
== 1)
422 (void) getc(&tp
->t_canq
);
427 error
= (*linesw
[tp
->t_line
].l_read
)(tp
, uio
, flag
);
428 ptcwakeup(tp
, FWRITE
);
435 * Write to pseudo-tty.
436 * Wakeups of controlling tty will happen
437 * indirectly, when tty driver calls ptsstart.
439 __private_extern__
int
440 ptswrite(dev_t dev
, struct uio
*uio
, int flag
)
442 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, NULL
);
451 if (tp
->t_oproc
== 0)
454 error
= (*linesw
[tp
->t_line
].l_write
)(tp
, uio
, flag
);
462 * Start output on pseudo-tty.
463 * Wake up process selecting or sleeping for input from controlling tty.
465 * t_oproc for this driver; called from within the line discipline
467 * Locks: Assumes tp is locked on entry, remains locked on exit
470 ptsstart(struct tty
*tp
)
472 struct ptmx_ioctl
*pti
= pty_get_ioctl(tp
->t_dev
, 0, NULL
);
475 if (tp
->t_state
& TS_TTSTOP
)
477 if (pti
->pt_flags
& PF_STOPPED
) {
478 pti
->pt_flags
&= ~PF_STOPPED
;
479 pti
->pt_send
= TIOCPKT_START
;
481 ptcwakeup(tp
, FREAD
);
487 * Locks: Assumes tty_lock() is held over this call.
490 ptcwakeup(struct tty
*tp
, int flag
)
492 struct ptmx_ioctl
*pti
= pty_get_ioctl(tp
->t_dev
, 0, NULL
);
497 selwakeup(&pti
->pt_selr
);
498 wakeup(TSA_PTC_READ(tp
));
501 selwakeup(&pti
->pt_selw
);
502 wakeup(TSA_PTC_WRITE(tp
));
506 __private_extern__
int
507 ptcopen(dev_t dev
, __unused
int flag
, __unused
int devtype
, __unused proc_t p
)
509 struct tty_dev_t
*driver
;
510 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, PF_OPEN_M
, &driver
);
513 } else if (pti
== (struct ptmx_ioctl
*)-1) {
514 return (EREDRIVEOPEN
);
517 struct tty
*tp
= pti
->pt_tty
;
520 /* If master is open OR slave is still draining, pty is still busy */
521 if (tp
->t_oproc
|| (tp
->t_state
& TS_ISOPEN
)) {
524 * If master is closed, we are the only reference, so we
525 * need to clear the master open bit
528 pty_free_ioctl(dev
, PF_OPEN_M
);
532 tp
->t_oproc
= ptsstart
;
533 CLR(tp
->t_state
, TS_ZOMBIE
);
534 SET(tp
->t_state
, TS_IOCTL_NOT_OK
);
536 tp
->t_stop
= ptsstop
;
538 (void)(*linesw
[tp
->t_line
].l_modem
)(tp
, 1);
539 tp
->t_lflag
&= ~EXTPROC
;
541 if (driver
->open_reset
) {
542 pti
->pt_flags
= PF_UNLOCKED
;
551 __private_extern__
int
552 ptcclose(dev_t dev
, __unused
int flags
, __unused
int fmt
, __unused proc_t p
)
554 struct tty_dev_t
*driver
;
555 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, &driver
);
563 (void)(*linesw
[tp
->t_line
].l_modem
)(tp
, 0);
566 * XXX MDMBUF makes no sense for ptys but would inhibit the above
567 * l_modem(). CLOCAL makes sense but isn't supported. Special
568 * l_modem()s that ignore carrier drop make no sense for ptys but
569 * may be in use because other parts of the line discipline make
570 * sense for ptys. Recover by doing everything that a normal
571 * ttymodem() would have done except for sending a SIGHUP.
573 if (tp
->t_state
& TS_ISOPEN
) {
574 tp
->t_state
&= ~(TS_CARR_ON
| TS_CONNECTED
);
575 tp
->t_state
|= TS_ZOMBIE
;
576 ttyflush(tp
, FREAD
| FWRITE
);
579 tp
->t_oproc
= 0; /* mark closed */
583 pty_free_ioctl(dev
, PF_OPEN_M
);
585 if (driver
->mac_notify
) {
586 mac_pty_notify_close(p
, tp
, dev
, NULL
);
593 __private_extern__
int
594 ptcread(dev_t dev
, struct uio
*uio
, int flag
)
596 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, NULL
);
607 * We want to block until the slave
608 * is open, and there's something to read;
609 * but if we lost the slave or we're NBIO,
610 * then return the appropriate error instead.
613 if (tp
->t_state
& TS_ISOPEN
) {
614 if (pti
->pt_flags
& PF_PKT
&& pti
->pt_send
) {
615 error
= ureadc((int)pti
->pt_send
, uio
);
618 if (pti
->pt_send
& TIOCPKT_IOCTL
) {
619 cc
= MIN((int)uio_resid(uio
),
620 (int)sizeof(tp
->t_termios
));
621 uiomove((caddr_t
)&tp
->t_termios
, cc
,
627 if (pti
->pt_flags
& PF_UCNTL
&& pti
->pt_ucntl
) {
628 error
= ureadc((int)pti
->pt_ucntl
, uio
);
634 if (tp
->t_outq
.c_cc
&& (tp
->t_state
&TS_TTSTOP
) == 0)
637 if ((tp
->t_state
& TS_CONNECTED
) == 0)
639 if (flag
& IO_NDELAY
) {
643 error
= ttysleep(tp
, TSA_PTC_READ(tp
), TTIPRI
| PCATCH
, __FUNCTION__
, 0);
647 if (pti
->pt_flags
& (PF_PKT
|PF_UCNTL
))
648 error
= ureadc(0, uio
);
649 while (uio_resid(uio
) > 0 && error
== 0) {
650 cc
= q_to_b(&tp
->t_outq
, (u_char
*)buf
, MIN((int)uio_resid(uio
), BUFSIZ
));
653 error
= uiomove(buf
, cc
, uio
);
655 (*linesw
[tp
->t_line
].l_start
)(tp
);
664 * Line discipline callback
666 * Locks: tty_lock() is assumed held on entry and exit.
668 __private_extern__
int
669 ptsstop(struct tty
* tp
, int flush
)
671 struct ptmx_ioctl
*pti
= pty_get_ioctl(tp
->t_dev
, 0, NULL
);
677 /* note: FLUSHREAD and FLUSHWRITE already ok */
679 flush
= TIOCPKT_STOP
;
680 pti
->pt_flags
|= PF_STOPPED
;
682 pti
->pt_flags
&= ~PF_STOPPED
;
683 pti
->pt_send
|= flush
;
684 /* change of perspective */
694 __private_extern__
int
695 ptsreset(__unused
int uban
)
701 ptsselect(dev_t dev
, int rw
, void *wql
, proc_t p
)
703 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, NULL
);
717 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
722 retval
= ttnread(tp
);
727 selrecord(p
, &tp
->t_rsel
, wql
);
730 if (ISSET(tp
->t_state
, TS_ZOMBIE
)) {
735 if ((tp
->t_outq
.c_cc
<= tp
->t_lowat
) &&
736 ISSET(tp
->t_state
, TS_CONNECTED
)) {
737 retval
= tp
->t_hiwat
- tp
->t_outq
.c_cc
;
741 selrecord(p
, &tp
->t_wsel
, wql
);
749 __private_extern__
int
750 ptcselect(dev_t dev
, int rw
, void *wql
, proc_t p
)
752 struct tty_dev_t
*driver
;
753 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, &driver
);
762 if ((tp
->t_state
& TS_CONNECTED
) == 0) {
770 * Need to block timeouts (ttrstart).
772 if ((tp
->t_state
&TS_ISOPEN
) &&
773 tp
->t_outq
.c_cc
&& (tp
->t_state
&TS_TTSTOP
) == 0) {
774 retval
= (driver
->fix_7828447
) ? tp
->t_outq
.c_cc
: 1;
779 case 0: /* exceptional */
780 if ((tp
->t_state
&TS_ISOPEN
) &&
781 ((pti
->pt_flags
& PF_PKT
&& pti
->pt_send
) ||
782 (pti
->pt_flags
& PF_UCNTL
&& pti
->pt_ucntl
))) {
786 selrecord(p
, &pti
->pt_selr
, wql
);
791 if (tp
->t_state
&TS_ISOPEN
) {
792 if (pti
->pt_flags
& PF_REMOTE
) {
793 if (tp
->t_canq
.c_cc
== 0) {
794 retval
= (driver
->fix_7828447
) ? (TTYHOG
- 1) : 1;
798 retval
= (TTYHOG
- 2) - (tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
);
800 retval
= (driver
->fix_7828447
) ? retval
: 1;
803 if (tp
->t_canq
.c_cc
== 0 && (tp
->t_lflag
&ICANON
)) {
810 selrecord(p
, &pti
->pt_selw
, wql
);
820 __private_extern__
int
821 ptcstop(__unused
struct tty
*tp
, __unused
int flush
)
826 __private_extern__
int
827 ptcreset(__unused
int uban
)
832 __private_extern__
int
833 ptcwrite(dev_t dev
, struct uio
*uio
, int flag
)
835 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, NULL
);
839 u_char locbuf
[BUFSIZ
];
849 if ((tp
->t_state
& TS_ISOPEN
) == 0)
851 if (pti
->pt_flags
& PF_REMOTE
) {
854 while ((uio_resid(uio
) > 0 || cc
> 0) &&
855 tp
->t_canq
.c_cc
< TTYHOG
- 1) {
857 cc
= MIN((int)uio_resid(uio
), BUFSIZ
);
858 cc
= MIN(cc
, TTYHOG
- 1 - tp
->t_canq
.c_cc
);
860 error
= uiomove((caddr_t
)cp
, cc
, uio
);
863 /* check again for safety */
864 if ((tp
->t_state
& TS_ISOPEN
) == 0) {
865 /* adjust as usual */
866 uio_setresid(uio
, (uio_resid(uio
) + cc
));
872 cc
= b_to_q((u_char
*)cp
, cc
, &tp
->t_canq
);
874 * XXX we don't guarantee that the canq size
875 * is >= TTYHOG, so the above b_to_q() may
876 * leave some bytes uncopied. However, space
877 * is guaranteed for the null terminator if
878 * we don't fail here since (TTYHOG - 1) is
879 * not a multiple of CBSIZE.
885 /* adjust for data copied in but not written */
886 uio_setresid(uio
, (uio_resid(uio
) + cc
));
887 (void) putc(0, &tp
->t_canq
);
889 wakeup(TSA_PTS_READ(tp
));
892 while (uio_resid(uio
) > 0 || cc
> 0) {
894 cc
= MIN((int)uio_resid(uio
), BUFSIZ
);
896 error
= uiomove((caddr_t
)cp
, cc
, uio
);
899 /* check again for safety */
900 if ((tp
->t_state
& TS_ISOPEN
) == 0) {
901 /* adjust for data copied in but not written */
902 uio_setresid(uio
, (uio_resid(uio
) + cc
));
908 if ((tp
->t_rawq
.c_cc
+ tp
->t_canq
.c_cc
) >= TTYHOG
- 2 &&
909 (tp
->t_canq
.c_cc
> 0 || !(tp
->t_lflag
&ICANON
))) {
910 wakeup(TSA_HUP_OR_INPUT(tp
));
913 (*linesw
[tp
->t_line
].l_rint
)(*cp
++, tp
);
926 * Come here to wait for slave to open, for space
927 * in outq, or space in rawq, or an empty canq.
929 if ((tp
->t_state
& TS_CONNECTED
) == 0) {
930 /* adjust for data copied in but not written */
931 uio_setresid(uio
, (uio_resid(uio
) + cc
));
935 if (flag
& IO_NDELAY
) {
936 /* adjust for data copied in but not written */
937 uio_setresid(uio
, (uio_resid(uio
) + cc
));
942 error
= ttysleep(tp
, TSA_PTC_WRITE(tp
), TTOPRI
| PCATCH
, __FUNCTION__
, 0);
944 /* adjust for data copied in but not written */
945 uio_setresid(uio
, (uio_resid(uio
) + cc
));
951 __private_extern__
int
952 ptyioctl(dev_t dev
, u_long cmd
, caddr_t data
, int flag
, struct proc
*p
)
954 struct tty_dev_t
*driver
;
955 struct ptmx_ioctl
*pti
= pty_get_ioctl(dev
, 0, &driver
);
958 int allow_ext_ioctl
= 1;
965 u_char
*cc
= tp
->t_cc
;
968 * Do not permit extended ioctls on the master side of the pty unless
969 * the slave side has been successfully opened and initialized.
971 if (major(dev
) == driver
->master
&&
972 driver
->fix_7070978
&&
973 ISSET(tp
->t_state
, TS_IOCTL_NOT_OK
)) {
978 * IF CONTROLLER STTY THEN MUST FLUSH TO PREVENT A HANG.
979 * ttywflush(tp) will hang if there are characters in the outq.
981 if (cmd
== TIOCEXT
&& allow_ext_ioctl
) {
983 * When the EXTPROC bit is being toggled, we need
984 * to send an TIOCPKT_IOCTL if the packet driver
988 if (pti
->pt_flags
& PF_PKT
) {
989 pti
->pt_send
|= TIOCPKT_IOCTL
;
990 ptcwakeup(tp
, FREAD
);
992 tp
->t_lflag
|= EXTPROC
;
994 if ((tp
->t_lflag
& EXTPROC
) &&
995 (pti
->pt_flags
& PF_PKT
)) {
996 pti
->pt_send
|= TIOCPKT_IOCTL
;
997 ptcwakeup(tp
, FREAD
);
999 tp
->t_lflag
&= ~EXTPROC
;
1003 if (cdevsw
[major(dev
)].d_open
== ptcopen
) {
1008 * We aviod calling ttioctl on the controller since,
1009 * in that case, tp must be the controlling terminal.
1011 *(int *)data
= tp
->t_pgrp
? tp
->t_pgrp
->pg_id
: 0;
1016 if (pti
->pt_flags
& PF_UCNTL
) {
1020 pti
->pt_flags
|= PF_PKT
;
1022 pti
->pt_flags
&= ~PF_PKT
;
1027 if (pti
->pt_flags
& PF_PKT
) {
1031 pti
->pt_flags
|= PF_UCNTL
;
1033 pti
->pt_flags
&= ~PF_UCNTL
;
1038 pti
->pt_flags
|= PF_REMOTE
;
1040 pti
->pt_flags
&= ~PF_REMOTE
;
1041 ttyflush(tp
, FREAD
|FWRITE
);
1053 ndflush(&tp
->t_outq
, tp
->t_outq
.c_cc
);
1057 if (*(unsigned int *)data
>= NSIG
||
1058 *(unsigned int *)data
== 0) {
1062 if ((tp
->t_lflag
&NOFLSH
) == 0)
1063 ttyflush(tp
, FREAD
|FWRITE
);
1064 if ((*(unsigned int *)data
== SIGINFO
) &&
1065 ((tp
->t_lflag
&NOKERNINFO
) == 0))
1068 * SAFE: All callers drop the lock on return and
1069 * SAFE: the linesw[] will short circut this call
1070 * SAFE: if the ioctl() is eaten before the lower
1071 * SAFE: level code gets to see it.
1074 tty_pgsignal(tp
, *(unsigned int *)data
, 1);
1078 case TIOCPTYGRANT
: /* grantpt(3) */
1080 * Change the uid of the slave to that of the calling
1081 * thread, change the gid of the slave to GID_TTY,
1082 * change the mode to 0620 (rw--w----).
1085 error
= _devfs_setattr(pti
->pt_devhandle
, 0620, kauth_getuid(), GID_TTY
);
1086 if (major(dev
) == driver
->master
) {
1087 if (driver
->mac_notify
) {
1091 mac_pty_notify_grant(p
, tp
, dev
, NULL
);
1102 case TIOCPTYGNAME
: /* ptsname(3) */
1104 * Report the name of the slave device in *data
1105 * (128 bytes max.). Use the same template string
1106 * used for calling devfs_make_node() to create it.
1108 pty_get_name(dev
, data
, 128);
1112 case TIOCPTYUNLK
: /* unlockpt(3) */
1114 * Unlock the slave device so that it can be opened.
1116 if (major(dev
) == driver
->master
) {
1117 pti
->pt_flags
|= PF_UNLOCKED
;
1124 * Fail all other calls; pty masters are not serial devices;
1125 * we only pretend they are when the slave side of the pty is
1128 if (!allow_ext_ioctl
) {
1133 error
= (*linesw
[tp
->t_line
].l_ioctl
)(tp
, cmd
, data
, flag
, p
);
1134 if (error
== ENOTTY
) {
1135 error
= ttioctl_locked(tp
, cmd
, data
, flag
, p
);
1136 if (error
== ENOTTY
) {
1137 if (pti
->pt_flags
& PF_UCNTL
&& (cmd
& ~0xff) == UIOCCMD(0)) {
1138 /* Process the UIOCMD ioctl group */
1140 pti
->pt_ucntl
= (u_char
)cmd
;
1141 ptcwakeup(tp
, FREAD
);
1145 } else if (cmd
== TIOCSBRK
|| cmd
== TIOCCBRK
) {
1147 * POSIX conformance; rdar://3936338
1149 * Clear ENOTTY in the case of setting or
1150 * clearing a break failing because pty's
1151 * don't support break like real serial
1161 * If external processing and packet mode send ioctl packet.
1163 if ((tp
->t_lflag
&EXTPROC
) && (pti
->pt_flags
& PF_PKT
)) {
1178 pti
->pt_send
|= TIOCPKT_IOCTL
;
1179 ptcwakeup(tp
, FREAD
);
1184 stop
= (tp
->t_iflag
& IXON
) && CCEQ(cc
[VSTOP
], CTRL('s'))
1185 && CCEQ(cc
[VSTART
], CTRL('q'));
1186 if (pti
->pt_flags
& PF_NOSTOP
) {
1188 pti
->pt_send
&= ~TIOCPKT_NOSTOP
;
1189 pti
->pt_send
|= TIOCPKT_DOSTOP
;
1190 pti
->pt_flags
&= ~PF_NOSTOP
;
1191 ptcwakeup(tp
, FREAD
);
1195 pti
->pt_send
&= ~TIOCPKT_DOSTOP
;
1196 pti
->pt_send
|= TIOCPKT_NOSTOP
;
1197 pti
->pt_flags
|= PF_NOSTOP
;
1198 ptcwakeup(tp
, FREAD
);