Skip to content
Snippets Groups Projects
Commit 2d392fbc authored by Jason Coverston's avatar Jason Coverston Committed by Danny Auble
Browse files

Fix check of getgrouplist to check the original size of array instead

of the size returned.

This check is redundant though since getgrouplist will return -1 if it
tries to use more than ngroups_max.  Perhaps we should just take the check
out.
parent 7bcc6814
No related branches found
No related tags found
No related merge requests found
...@@ -2583,7 +2583,9 @@ _initgroups(stepd_step_rec_t *job) ...@@ -2583,7 +2583,9 @@ _initgroups(stepd_step_rec_t *job)
if (primary_gid != job->gid) { if (primary_gid != job->gid) {
int ngroups_max = sysconf(_SC_NGROUPS_MAX); int ngroups_max = sysconf(_SC_NGROUPS_MAX);
gid_t grps[ngroups_max]; gid_t grps[ngroups_max];
int size; int size, max;
max = ngroups_max;
size = getgrouplist(job->user_name, size = getgrouplist(job->user_name,
job->gid, job->gid,
...@@ -2593,7 +2595,7 @@ _initgroups(stepd_step_rec_t *job) ...@@ -2593,7 +2595,7 @@ _initgroups(stepd_step_rec_t *job)
error("%s: getgrouplist() failed: %m", __func__); error("%s: getgrouplist() failed: %m", __func__);
return -1; return -1;
} }
if (size > ngroups_max - 1) { if (size > max - 1) {
error("%s: too many groups %d for user %s\n", error("%s: too many groups %d for user %s\n",
__func__, size, job->user_name); __func__, size, job->user_name);
} }
......
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