Skip to content
Snippets Groups Projects
Commit 76c031e9 authored by Danny Auble's avatar Danny Auble
Browse files

Fix regression in 06b41cdc that would

throw away initialized variable.
parent 06b41cdc
No related branches found
No related tags found
No related merge requests found
...@@ -1141,6 +1141,7 @@ _pre_task_privileged(slurmd_job_t *job, int taskid, struct priv_state *sp) ...@@ -1141,6 +1141,7 @@ _pre_task_privileged(slurmd_job_t *job, int taskid, struct priv_state *sp)
if (pre_launch_priv(job) < 0) if (pre_launch_priv(job) < 0)
return error("pre_launch_priv failed"); return error("pre_launch_priv failed");
/* sp->get_list should already be initialized */
return(_drop_privileges (job, true, sp, false)); return(_drop_privileges (job, true, sp, false));
} }
...@@ -1444,7 +1445,9 @@ _fork_all_tasks(slurmd_job_t *job, bool *io_initialized) ...@@ -1444,7 +1445,9 @@ _fork_all_tasks(slurmd_job_t *job, bool *io_initialized)
/* /*
* Reclaim privileges and call any plugin hooks * Reclaim privileges and call any plugin hooks
* that may require elevated privs * that may require elevated privs
* sprivs.get_list is already set from the
* _drop_privileges call above, no not reinitialize.
*/ */
if (_pre_task_privileged(job, i, &sprivs) < 0) if (_pre_task_privileged(job, i, &sprivs) < 0)
exit(1); exit(1);
...@@ -2127,7 +2130,9 @@ _send_complete_batch_script_msg(slurmd_job_t *job, int err, int status) ...@@ -2127,7 +2130,9 @@ _send_complete_batch_script_msg(slurmd_job_t *job, int err, int status)
return SLURM_SUCCESS; return SLURM_SUCCESS;
} }
/* If get_list is false make sure ps->gid_list is initialized before
* hand to prevent xfree.
*/
static int static int
_drop_privileges(slurmd_job_t *job, bool do_setuid, _drop_privileges(slurmd_job_t *job, bool do_setuid,
struct priv_state *ps, bool get_list) struct priv_state *ps, bool get_list)
...@@ -2150,8 +2155,6 @@ _drop_privileges(slurmd_job_t *job, bool do_setuid, ...@@ -2150,8 +2155,6 @@ _drop_privileges(slurmd_job_t *job, bool do_setuid,
xfree(ps->gid_list); xfree(ps->gid_list);
return -1; return -1;
} }
} else {
ps->gid_list = NULL; /* initialize to prevent xfree */
} }
/* /*
...@@ -2443,6 +2446,7 @@ _run_script_as_user(const char *name, const char *path, slurmd_job_t *job, ...@@ -2443,6 +2446,7 @@ _run_script_as_user(const char *name, const char *path, slurmd_job_t *job,
argv[0] = (char *)xstrdup(path); argv[0] = (char *)xstrdup(path);
argv[1] = NULL; argv[1] = NULL;
sprivs.gid_list = NULL; /* initialize to prevent xfree */
if (_drop_privileges(job, true, &sprivs, false) < 0) { if (_drop_privileges(job, true, &sprivs, false) < 0) {
error("run_script_as_user _drop_privileges: %m"); error("run_script_as_user _drop_privileges: %m");
/* child process, should not return */ /* child process, should not return */
......
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