Skip to content
Snippets Groups Projects
Commit b33cd7c8 authored by Mark A. Grondona's avatar Mark A. Grondona
Browse files

slurmstepd: move tty setup into fork_all_tasks

tty setup needs to occur before child tasks block waiting from signal
to the parent, so move this code out of exec_task() into fork_all_tasks()
so that the wait-for-signal-from-parent code can also later move out
of exec_task().
parent 9d8ae0f7
No related branches found
No related tags found
No related merge requests found
...@@ -75,6 +75,13 @@ ...@@ -75,6 +75,13 @@
# include <stdlib.h> # include <stdlib.h>
#endif #endif
#ifdef HAVE_PTY_H
# include <pty.h>
# ifdef HAVE_UTMP_H
# include <utmp.h>
# endif
#endif
#include "slurm/slurm_errno.h" #include "slurm/slurm_errno.h"
#include "src/common/cbuf.h" #include "src/common/cbuf.h"
...@@ -1180,7 +1187,18 @@ static int exec_wait_signal (struct exec_wait_info *e, slurmd_job_t *job) ...@@ -1180,7 +1187,18 @@ static int exec_wait_signal (struct exec_wait_info *e, slurmd_job_t *job)
return (0); return (0);
} }
static void prepare_tty (slurmd_job_t *job, slurmd_task_info_t *task)
{
#ifdef HAVE_PTY_H
if (job->pty && (task->gtid == 0)) {
if (login_tty(task->stdin_fd))
error("login_tty: %m");
else
debug3("login_tty good");
}
#endif
return;
}
/* fork and exec N tasks /* fork and exec N tasks
*/ */
...@@ -1296,6 +1314,11 @@ _fork_all_tasks(slurmd_job_t *job) ...@@ -1296,6 +1314,11 @@ _fork_all_tasks(slurmd_job_t *job)
xsignal_unblock(slurmstepd_blocked_signals); xsignal_unblock(slurmstepd_blocked_signals);
/*
* Setup tty before any setpgid() calls
*/
prepare_tty (job, job->task[i]);
exec_task(job, i, ei->childfd); exec_task(job, i, ei->childfd);
} }
......
...@@ -65,14 +65,6 @@ ...@@ -65,14 +65,6 @@
# include <sys/checkpnt.h> # include <sys/checkpnt.h>
#endif #endif
#ifdef HAVE_PTY_H
# include <pty.h>
#endif
#ifdef HAVE_UTMP_H
# include <utmp.h>
#endif
#include <sys/resource.h> #include <sys/resource.h>
#include "slurm/slurm_errno.h" #include "slurm/slurm_errno.h"
...@@ -345,16 +337,6 @@ exec_task(slurmd_job_t *job, int i, int waitfd) ...@@ -345,16 +337,6 @@ exec_task(slurmd_job_t *job, int i, int waitfd)
int rc; int rc;
slurmd_task_info_t *task = job->task[i]; slurmd_task_info_t *task = job->task[i];
#ifdef HAVE_PTY_H
/* Execute login_tty() before setpgid() calls */
if (job->pty && (task->gtid == 0)) {
if (login_tty(task->stdin_fd))
error("login_tty: %m");
else
debug3("login_tty good");
}
#endif
if (i == 0) if (i == 0)
_make_tmpdir(job); _make_tmpdir(job);
...@@ -422,14 +404,7 @@ exec_task(slurmd_job_t *job, int i, int waitfd) ...@@ -422,14 +404,7 @@ exec_task(slurmd_job_t *job, int i, int waitfd)
} }
} }
#ifdef HAVE_PTY_H io_dup_stdio(task);
if (job->pty && (task->gtid == 0)) {
/* Need to perform the login_tty() before all tasks
* register and the process groups are reset, otherwise
* login_tty() gets disabled */
} else
#endif
io_dup_stdio(task);
/* task-specific pre-launch activities */ /* task-specific pre-launch activities */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment