2 * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
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>
28 void fatal(const char *, ...);
29 void fatalx(const char *, ...);
32 forkpty(int *master
, __unused
char *name
, struct termios
*tio
,
35 int slave
= -1, fd
, pipe_fd
[2];
39 if (pipe(pipe_fd
) == -1)
42 if ((*master
= open("/dev/ptc", O_RDWR
|O_NOCTTY
)) == -1)
45 if ((path
= ttyname(*master
)) == NULL
)
49 strlcpy(name
, path
, TTY_NAME_MAX
);
51 if ((slave
= open(path
, O_RDWR
|O_NOCTTY
)) == -1)
54 switch (pid
= fork()) {
61 while (read(pipe_fd
[0], &dummy
, 1) == -1) {
67 fd
= open(_PATH_TTY
, O_RDWR
|O_NOCTTY
);
69 ioctl(fd
, TIOCNOTTY
, NULL
);
76 fd
= open(_PATH_TTY
, O_RDWR
|O_NOCTTY
);
78 fatalx("open succeeded (failed to disconnect)");
80 fd
= open(path
, O_RDWR
);
85 fd
= open("/dev/tty", O_WRONLY
);
90 if (tio
!= NULL
&& tcsetattr(slave
, TCSAFLUSH
, tio
) == -1)
91 fatal("tcsetattr failed");
92 if (ioctl(slave
, TIOCSWINSZ
, ws
) == -1)
93 fatal("ioctl failed");