Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
76c031e9
Commit
76c031e9
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
Fix regression in
06b41cdc
that would
throw away initialized variable.
parent
06b41cdc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmd/slurmstepd/mgr.c
+8
-4
8 additions, 4 deletions
src/slurmd/slurmstepd/mgr.c
with
8 additions
and
4 deletions
src/slurmd/slurmstepd/mgr.c
+
8
−
4
View file @
76c031e9
...
@@ -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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment