#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2008\
The NetBSD Foundation, inc. All rights reserved.");
__RCSID("$NetBSD: t_ttyio.c,v 1.3 2017/01/10 01:31:40 christos Exp $");
#include <sys/types.h>
#include <sys/wait.h>
#include <err.h>
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>
#if defined(__NetBSD__)
#include <util.h>
#elif defined(__bsdi__)
int openpty(int *, int *, char *, struct termios *, struct winsize *);
#elif defined(__FreeBSD__)
#include <libutil.h>
#else
#error where openpty?
#endif
#include <atf-c.h>
#define REQUIRE_ERRNO(x, v) ATF_REQUIRE_MSG(x != v, "%s: %s", #x, strerror(errno))
ATF_TC(ioctl);
ATF_TC_HEAD(ioctl, tc)
{
atf_tc_set_md_var(tc, "descr",
"Checks that ioctl calls are restarted "
"properly after being interrupted");
}
static void
sigchld(int nsig)
{
REQUIRE_ERRNO(wait(NULL), -1);
}
ATF_TC_BODY(ioctl, tc)
{
int m, s, rc;
char name[128], buf[128];
struct termios term;
struct sigaction sa;
setbuf(stdout, NULL);
memset(&term, 0, sizeof(term));
term.c_iflag = TTYDEF_IFLAG;
term.c_oflag = TTYDEF_OFLAG;
term.c_cflag = TTYDEF_CFLAG;
term.c_lflag = TTYDEF_LFLAG;
cfsetspeed(&term, TTYDEF_SPEED);
REQUIRE_ERRNO(openpty(&m, &s, name, &term, NULL), -1);
switch (fork()) {
case -1:
atf_tc_fail("fork(): %s", strerror(errno));
case 0:
(void)sleep(1);
(void)printf("child1: exiting\n");
exit(0);
default:
(void)printf("parent: spawned child1\n");
break;
}
switch (fork()) {
case -1:
atf_tc_fail("fork(): %s", strerror(errno));
case 0:
(void)sleep(2);
if (read(m, buf, sizeof(buf)) == -1)
err(1, "read");
(void)printf("child2: exiting\n");
exit(0);
default:
(void)printf("parent: spawned child2\n");
break;
}
(void)sigemptyset(&sa.sa_mask);
sa.sa_handler = sigchld;
sa.sa_flags = SA_RESTART;
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
REQUIRE_ERRNO(write(s, "Hello world\n", 12), -1);
rc = 0;
if (tcsetattr(s, TCSADRAIN, &term) == -1) {
(void)printf("parent: tcsetattr: %s\n", strerror(errno));
rc = 1;
}
sa.sa_handler = SIG_DFL;
REQUIRE_ERRNO(sigaction(SIGCHLD, &sa, NULL), -1);
(void)wait(NULL);
(void)close(s);
ATF_REQUIRE_EQ(rc, 0);
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, ioctl);
return atf_no_error();
}