Skip to content

Commit 3d29da1

Browse files
committed
tty: handle SIGHUP when allocating a tty
When a session is hung up and a tty is allocated SIGHUP will be sent to all processes in the session group. Since we were ignoring SIGHUP this led to bst processes hanging around. Add signal handling for SIGHUP to close the tty master. This will lead to cleanup of the child session.
1 parent 4fb17a9 commit 3d29da1

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

enter.c

+2
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,8 @@ int enter(struct entry_settings *opts)
395395
/* tty_parent_setup handles SIGWINCH to resize the pty */
396396
sigdelset(&mask, SIGWINCH);
397397
tty_parent_setup(&opts->ttyopts, epollfd, socket_fdpass[SOCKET_PARENT]);
398+
/* handle SIGHUP to close the pty master */
399+
sigdelset(&mask, SIGHUP);
398400
}
399401
sig_setup(epollfd, &mask, outer_helper.pid, sig_handler);
400402

tty.c

+13-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,18 @@ static int tty_handle_sig(int epollfd, const struct epoll_event *ev, int fd, pid
189189
siginfo_t siginfo;
190190
sig_read(fd, &siginfo);
191191

192-
assert(siginfo.si_signo == SIGWINCH && "tty_handle_sig can only handle SIGWINCH");
193-
tty_set_winsize();
192+
assert((siginfo.si_signo == SIGWINCH || siginfo.si_signo == SIGHUP) && "tty_handle_sig can only handle SIGWINCH and SIGHUP");
193+
switch (siginfo.si_signo) {
194+
case SIGWINCH:
195+
tty_set_winsize();
196+
break;
197+
case SIGHUP:
198+
if (info.termfd > 0) {
199+
close(info.termfd);
200+
info.termfd = -1;
201+
}
202+
break;
203+
}
194204
return EPOLL_HANDLER_CONTINUE;
195205
}
196206

@@ -398,6 +408,7 @@ void tty_parent_setup(struct tty_opts *opts, int epollfd, int socket)
398408
sigset_t sigmask;
399409
sigemptyset(&sigmask);
400410
sigaddset(&sigmask, SIGWINCH);
411+
sigaddset(&sigmask, SIGHUP);
401412

402413
int sigfd = signalfd(-1, &sigmask, 0);
403414
if (sigfd == -1) {

0 commit comments

Comments
 (0)