#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2008\
The NetBSD Foundation, inc. All rights reserved.");
__RCSID("$NetBSD: t_ptm.c,v 1.3 2025/08/05 23:59:42 gutteridge Exp $");
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <atf-c.h>
#define REQUIRE_ERRNO(x, v) \
ATF_REQUIRE_MSG(x != v, "%s: %s", #x, strerror(errno))
ATF_TC(ptm);
ATF_TC_HEAD(ptm, tc)
{
atf_tc_set_md_var(tc, "descr", "Checks /dev/ptm device");
}
ATF_TC_BODY(ptm, tc)
{
struct stat stm, sts;
struct ptmget ptm;
int fdm;
struct group *gp;
if ((fdm = open("/dev/ptm", O_RDWR)) == -1) {
if (errno == ENOENT || errno == ENODEV)
atf_tc_skip("/dev/ptm: %s", strerror(errno));
atf_tc_fail("/dev/ptm: %s", strerror(errno));
}
REQUIRE_ERRNO(fstat(fdm, &stm), -1);
ATF_REQUIRE_EQ(major(stm.st_rdev), 165);
REQUIRE_ERRNO(ioctl(fdm, TIOCPTMGET, &ptm), -1);
ATF_REQUIRE_MSG(strncmp(ptm.cn, "/dev/pty", 8) == 0
|| strncmp(ptm.cn, "/dev/null", 9) == 0,
"bad master name: %s", ptm.cn);
ATF_REQUIRE_MSG(strncmp(ptm.sn, "/dev/tty", 8) == 0
|| strncmp(ptm.sn, "/dev/pts/", 9) == 0,
"bad slave name: %s", ptm.sn);
if (strncmp(ptm.cn, "/dev/null", 9) != 0) {
REQUIRE_ERRNO(fstat(ptm.cfd, &stm), -1);
REQUIRE_ERRNO(stat(ptm.cn, &sts), -1);
ATF_REQUIRE_EQ(stm.st_rdev, sts.st_rdev);
}
REQUIRE_ERRNO(fstat(ptm.sfd, &stm), -1);
REQUIRE_ERRNO(stat(ptm.sn, &sts), -1);
ATF_REQUIRE_EQ(stm.st_rdev, sts.st_rdev);
ATF_REQUIRE_EQ_MSG(sts.st_uid, getuid(), "bad slave uid");
ATF_REQUIRE_MSG((gp = getgrnam("tty")) != NULL,
"cannot find `tty' group");
ATF_REQUIRE_EQ_MSG(sts.st_gid, gp->gr_gid, "bad slave grid");
(void)close(ptm.sfd);
(void)close(ptm.cfd);
(void)close(fdm);
}
ATF_TC(ptmx);
ATF_TC_HEAD(ptmx, tc)
{
atf_tc_set_md_var(tc, "descr", "Checks /dev/ptmx device");
}
ATF_TC_BODY(ptmx, tc)
{
struct stat stm, sts;
char *pty;
int fdm, fds;
struct group *gp;
if ((fdm = posix_openpt(O_RDWR|O_NOCTTY)) == -1) {
if (errno == ENOENT || errno == ENODEV)
atf_tc_skip("/dev/ptmx: %s", strerror(errno));
atf_tc_fail("/dev/ptmx: %s", strerror(errno));
}
REQUIRE_ERRNO(fstat(fdm, &stm), -1);
#ifdef PTY_DEVNO_CHECK
REQUIRE_ERRNO(stat("/dev/ptyp0", &sts), -1);
ATF_REQUIRE_EQ_MSG(major(stm.st_rdev), major(sts.st_rdev),
"bad master major number");
#endif
REQUIRE_ERRNO(grantpt(fdm), -1);
REQUIRE_ERRNO(unlockpt(fdm), -1);
REQUIRE_ERRNO((pty = ptsname(fdm)), NULL);
REQUIRE_ERRNO((fds = open(pty, O_RDWR|O_NOCTTY)), -1);
REQUIRE_ERRNO(fstat(fds, &sts), -1);
#ifdef PTY_DEVNO_CHECK
ATF_REQUIRE_EQ_MSG(minor(stm.st_rdev), minor(sts.st_rdev),
"bad slave minor number");
#endif
ATF_REQUIRE_EQ_MSG(sts.st_uid, getuid(), "bad slave uid");
ATF_REQUIRE_MSG((gp = getgrnam("tty")) != NULL,
"cannot find `tty' group");
ATF_REQUIRE_EQ_MSG(sts.st_gid, gp->gr_gid, "bad slave gid");
}
ATF_TC(ptmx_extra);
ATF_TC_HEAD(ptmx_extra, tc)
{
atf_tc_set_md_var(tc, "descr", "Checks /dev/ptmx device "
"applies O_NONBLOCK, O_CLOEXEC, and O_CLOFORK");
}
ATF_TC_BODY(ptmx_extra, tc)
{
int fdm;
if ((fdm = posix_openpt(O_RDWR|O_NONBLOCK|O_CLOEXEC|O_CLOFORK)) == -1) {
if (errno == ENOENT || errno == ENODEV)
atf_tc_skip("/dev/ptmx: %s", strerror(errno));
atf_tc_fail("/dev/ptmx: %s", strerror(errno));
}
ATF_CHECK_EQ(O_RDWR|O_NONBLOCK, fcntl(fdm, F_GETFL));
ATF_CHECK_EQ(FD_CLOEXEC|FD_CLOFORK, fcntl(fdm, F_GETFD));
}
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, ptm);
ATF_TP_ADD_TC(tp, ptmx);
ATF_TP_ADD_TC(tp, ptmx_extra);
return atf_no_error();
}