Check if the ttymaj/ttymin match is actually a tty
This commit is contained in:
parent
a5c30abf8f
commit
8a95422ff1
@ -2,6 +2,7 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
#include <fcntl.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -25,6 +26,7 @@ ttytostr(int tty_maj, int tty_min, char *str, size_t n)
|
|||||||
struct dirent *dp;
|
struct dirent *dp;
|
||||||
DIR *dirp;
|
DIR *dirp;
|
||||||
char path[PATH_MAX];
|
char path[PATH_MAX];
|
||||||
|
int fd;
|
||||||
|
|
||||||
switch (tty_maj) {
|
switch (tty_maj) {
|
||||||
case 136:
|
case 136:
|
||||||
@ -60,15 +62,22 @@ ttytostr(int tty_maj, int tty_min, char *str, size_t n)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (stat(path, &sb) < 0) {
|
if (stat(path, &sb) < 0) {
|
||||||
weprintf("stat %s:", dp->d_name);
|
weprintf("stat %s:", path);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((int)major(sb.st_rdev) == tty_maj &&
|
if ((int)major(sb.st_rdev) == tty_maj &&
|
||||||
(int)minor(sb.st_rdev) == tty_min) {
|
(int)minor(sb.st_rdev) == tty_min) {
|
||||||
|
fd = open(path, O_RDONLY);
|
||||||
|
if (fd < 0)
|
||||||
|
continue;
|
||||||
|
if (isatty(fd)) {
|
||||||
strlcpy(str, dp->d_name, n);
|
strlcpy(str, dp->d_name, n);
|
||||||
|
close(fd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
close(fd);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (closedir(dirp) < 0) {
|
if (closedir(dirp) < 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user