2 * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/types.h>
18 #include <sys/ioctl.h>
26 #define TTY_NAME_MAX TTYNAME_MAX
29 pid_t
forkpty(int *master
, char *name
, struct termios
*tio
, struct winsize
*ws
)
35 if ((*master
= open("/dev/ptmx", O_RDWR
|O_NOCTTY
)) == -1)
37 if (grantpt(*master
) != 0)
39 if (unlockpt(*master
) != 0)
42 if ((path
= ptsname(*master
)) == NULL
)
45 strlcpy(name
, path
, TTY_NAME_MAX
);
46 if ((slave
= open(path
, O_RDWR
|O_NOCTTY
)) == -1)
49 switch (pid
= fork()) {
57 if (ioctl(slave
, TIOCSCTTY
, NULL
) == -1)
61 if (ioctl(slave
, I_PUSH
, "ptem") == -1)
63 if (ioctl(slave
, I_PUSH
, "ldterm") == -1)
66 if (tio
!= NULL
&& tcsetattr(slave
, TCSAFLUSH
, tio
) == -1)
68 if (ioctl(slave
, TIOCSWINSZ
, ws
) == -1)