ubase/libutil/tty.c
Markus Rudy a015607af0 Explicitly include sys/sysmacros.h for makedev etc
This header used to be included by sys/types.h in glibc, and musl
adopted the behaviour. However, this dependency was never desired, so
glibc deprecated it in 2016 and finally removed it in 2019, and so did
musl. Explicitly including the header should be a no-op on older libc
versions and fixes the build on newer versions.

https://sourceware.org/bugzilla/show_bug.cgi?id=19239
https://git.musl-libc.org/cgit/musl/commit/?id=f552c79
2023-09-26 09:22:32 +02:00

99 lines
1.7 KiB
C

/* See LICENSE file for copyright and license details. */
#include <sys/sysmacros.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <dirent.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "../util.h"
void
devtotty(int dev, int *tty_maj, int *tty_min)
{
*tty_maj = (dev >> 8) & 0xfff;
*tty_min = (dev & 0xff) | ((dev >> 12) & 0xfff00);
}
int
ttytostr(int tty_maj, int tty_min, char *str, size_t n)
{
struct stat sb;
struct dirent *dp;
DIR *dirp;
char path[PATH_MAX];
int fd;
int r = 0;
switch (tty_maj) {
case 136:
snprintf(str, n, "pts/%d", tty_min);
return 0;
case 4:
snprintf(str, n, "tty%d", tty_min);
return 0;
default:
str[0] = '?';
str[1] = '\0';
break;
}
dirp = opendir("/dev");
if (!dirp) {
weprintf("opendir /dev:");
return -1;
}
while ((dp = readdir(dirp))) {
if (!strcmp(dp->d_name, ".") ||
!strcmp(dp->d_name, ".."))
continue;
if (strlcpy(path, "/dev/", sizeof(path)) >= sizeof(path)) {
weprintf("path too long\n");
r = -1;
goto err0;
}
if (strlcat(path, dp->d_name, sizeof(path)) >= sizeof(path)) {
weprintf("path too long\n");
r = -1;
goto err0;
}
if (stat(path, &sb) < 0) {
weprintf("stat %s:", path);
r = -1;
goto err0;
}
if ((int)major(sb.st_rdev) == tty_maj &&
(int)minor(sb.st_rdev) == tty_min) {
fd = open(path, O_RDONLY | O_NONBLOCK);
if (fd < 0)
continue;
if (isatty(fd)) {
strlcpy(str, dp->d_name, n);
close(fd);
break;
} else {
close(fd);
r = -1;
goto err0;
}
}
}
err0:
if (closedir(dirp) < 0) {
weprintf("closedir /dev:");
r = -1;
}
return r;
}