mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 20:15:29 +00:00
Allow fallback to /dev/pts
This commit is contained in:
parent
4b307cad2c
commit
3599384b38
@ -108,6 +108,7 @@ error:
|
||||
int get_pty_num(int fd) {
|
||||
int pty_num = -1;
|
||||
if (ioctl(fd, TIOCGPTN, &pty_num) != 0) {
|
||||
LOGW("get_pty_num failed with %d: %s\n", errno, std::strerror(errno));
|
||||
return -1;
|
||||
}
|
||||
return pty_num;
|
||||
|
@ -240,10 +240,19 @@ void su_daemon_handler(int client, const sock_cred *cred) {
|
||||
ptmx = magiskpts + "/ptmx";
|
||||
}
|
||||
int ptmx_fd = xopen(ptmx.data(), O_RDWR);
|
||||
int unlock = 0;
|
||||
ioctl(ptmx_fd, TIOCSPTLCK, &unlock);
|
||||
send_fd(client, ptmx_fd);
|
||||
grantpt(ptmx_fd);
|
||||
unlockpt(ptmx_fd);
|
||||
int pty_num = get_pty_num(ptmx_fd);
|
||||
if (pty_num < 0) {
|
||||
// Kernel issue? Fallback to /dev/pts
|
||||
close(ptmx_fd);
|
||||
pts = "/dev/pts";
|
||||
ptmx_fd = xopen("/dev/ptmx", O_RDWR);
|
||||
grantpt(ptmx_fd);
|
||||
unlockpt(ptmx_fd);
|
||||
pty_num = get_pty_num(ptmx_fd);
|
||||
}
|
||||
send_fd(client, ptmx_fd);
|
||||
close(ptmx_fd);
|
||||
|
||||
string pts_slave = pts + "/" + to_string(pty_num);
|
||||
|
Loading…
Reference in New Issue
Block a user