2008-04-27 06:10:09 +05:30
|
|
|
/*
|
|
|
|
* Copyright (c) 1991 - 1994, Julianne Frances Haugh
|
2009-04-23 23:13:27 +05:30
|
|
|
* Copyright (c) 2008 - 2009, Nicolas François
|
2008-04-27 06:10:09 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2008-02-03 22:23:07 +05:30
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "groupio.h"
|
|
|
|
#include "getdef.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find_new_gid - Find a new unused GID.
|
|
|
|
*
|
|
|
|
* If successful, find_new_gid provides an unused group ID in the
|
|
|
|
* [GID_MIN:GID_MAX] range.
|
|
|
|
* This ID should be higher than all the used GID, but if not possible,
|
|
|
|
* the lowest unused ID in the range will be returned.
|
|
|
|
*
|
|
|
|
* Return 0 on success, -1 if no unused GIDs are available.
|
|
|
|
*/
|
2009-04-23 23:13:27 +05:30
|
|
|
int find_new_gid (bool sys_group,
|
|
|
|
gid_t *gid,
|
|
|
|
/*@null@*/gid_t const *preferred_gid)
|
2008-02-03 22:23:07 +05:30
|
|
|
{
|
|
|
|
const struct group *grp;
|
2010-03-23 14:26:52 +05:30
|
|
|
gid_t gid_min, gid_max, group_id;
|
2009-04-23 16:46:38 +05:30
|
|
|
bool *used_gids;
|
2008-02-03 22:23:07 +05:30
|
|
|
|
|
|
|
assert (gid != NULL);
|
|
|
|
|
2008-06-09 23:43:09 +05:30
|
|
|
if (!sys_group) {
|
2009-04-23 16:46:38 +05:30
|
|
|
gid_min = (gid_t) getdef_ulong ("GID_MIN", 1000UL);
|
|
|
|
gid_max = (gid_t) getdef_ulong ("GID_MAX", 60000UL);
|
2010-03-21 06:50:50 +05:30
|
|
|
if (gid_max < gid_min) {
|
|
|
|
(void) fprintf (stderr,
|
|
|
|
_("%s: Invalid configuration: GID_MIN (%lu), GID_MAX (%lu)\n"),
|
|
|
|
Prog, (unsigned long) gid_min, (unsigned long) gid_max);
|
|
|
|
}
|
2008-02-20 02:31:38 +05:30
|
|
|
} else {
|
2009-07-18 06:05:35 +05:30
|
|
|
gid_min = (gid_t) getdef_ulong ("SYS_GID_MIN", 101UL);
|
2009-04-23 16:46:38 +05:30
|
|
|
gid_max = (gid_t) getdef_ulong ("GID_MIN", 1000UL) - 1;
|
|
|
|
gid_max = (gid_t) getdef_ulong ("SYS_GID_MAX", (unsigned long) gid_max);
|
2010-03-21 06:50:50 +05:30
|
|
|
if (gid_max < gid_min) {
|
|
|
|
(void) fprintf (stderr,
|
|
|
|
_("%s: Invalid configuration: SYS_GID_MIN (%lu), GID_MIN (%lu), SYS_GID_MAX (%lu)\n"),
|
|
|
|
Prog, (unsigned long) gid_min, getdef_ulong ("GID_MIN", 1000UL), (unsigned long) gid_max);
|
|
|
|
}
|
2008-02-20 02:31:38 +05:30
|
|
|
}
|
2009-04-23 16:46:38 +05:30
|
|
|
used_gids = alloca (sizeof (bool) * (gid_max +1));
|
|
|
|
memset (used_gids, false, sizeof (bool) * (gid_max + 1));
|
2008-02-03 22:23:07 +05:30
|
|
|
|
|
|
|
if ( (NULL != preferred_gid)
|
|
|
|
&& (*preferred_gid >= gid_min)
|
|
|
|
&& (*preferred_gid <= gid_max)
|
|
|
|
/* Check if the user exists according to NSS */
|
|
|
|
&& (getgrgid (*preferred_gid) == NULL)
|
|
|
|
/* Check also the local database in case of uncommitted
|
|
|
|
* changes */
|
|
|
|
&& (gr_locate_gid (*preferred_gid) == NULL)) {
|
|
|
|
*gid = *preferred_gid;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search the entire group file,
|
|
|
|
* looking for the largest unused value.
|
|
|
|
*
|
2008-09-13 17:24:49 +05:30
|
|
|
* We check the list of groups according to NSS (setgrent/getgrent),
|
|
|
|
* but we also check the local database (gr_rewind/gr_next) in case
|
2008-02-03 22:23:07 +05:30
|
|
|
* some groups were created but the changes were not committed yet.
|
|
|
|
*/
|
2009-07-18 06:05:35 +05:30
|
|
|
if (sys_group) {
|
2010-03-23 14:26:52 +05:30
|
|
|
gid_t id;
|
2009-07-18 04:24:23 +05:30
|
|
|
/* setgrent / getgrent / endgrent can be very slow with
|
|
|
|
* LDAP configurations (and many accounts).
|
|
|
|
* Since there is a limited amount of IDs to be tested
|
|
|
|
* for system accounts, we just check the existence
|
|
|
|
* of IDs with getgrgid.
|
|
|
|
*/
|
2009-07-18 06:05:35 +05:30
|
|
|
group_id = gid_max;
|
|
|
|
for (id = gid_max; id >= gid_min; id--) {
|
|
|
|
if (getgrgid (id) != NULL) {
|
|
|
|
group_id = id - 1;
|
|
|
|
used_gids[id] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* libmisc/limits.c: Avoid implicit conversion of integer to
boolean.
* libmisc/basename.c: Avoid implicit conversion of pointer to
boolean.
* libmisc/basename.c, lib/prototypes.h (Basename): Return a
constant string.
* libmisc/basename.c, libmisc/obscure.c, lib/prototypes.h,
libmisc/xmalloc.c, libmisc/getdate.h, libmisc/system.c,
libmisc/getgr_nam_gid.c, libmisc/failure.c, libmisc/valid.c: Add
splint annotations.
* libmisc/chowndir.c: Avoid memory leak.
* libmisc/chowndir.c: Do not check *printf/*puts return value.
* libmisc/chowntty.c: Avoid implicit conversion between integer
types.
* libmisc/obscure.c: Return a bool when possible instead of int.
* libmisc/shell.c: Do not check *printf/*puts return value.
* libmisc/shell.c: Do not check execle return value.
* libmisc/setupenv.c: Avoid implicit conversion between integer
types.
* libmisc/xmalloc.c: size should not be zero to avoid returning
NULL pointers.
* libmisc/hushed.c: Do not check *printf/*puts return value.
* libmisc/system.c: Avoid implicit conversion of integer to
boolean. safe_system last argument is a boolean.
* libmisc/system.c: Check return value of dup2.
* libmisc/system.c: Do not check *printf/*puts return value.
* libmisc/system.c: Do not check execve return value.
* libmisc/salt.c: Do not check *printf/*puts return value.
* libmisc/loginprompt.c: Do not check gethostname return value.
* libmisc/find_new_gid.c, libmisc/find_new_uid.c: Do not check
gr_rewind/pw_rewind return value.
* libmisc/ttytype.c: Limit the number of parsed characters in the
sscanf format.
* libmisc/ttytype.c: Test if a type was really read.
* libmisc/sub.c: Do not check *printf/*puts return value.
* libmisc/sub.c: Avoid implicit conversion of integer to boolean.
* src/userdel.c: Fix typo in comment.
* src/userdel.c: Avoid implicit conversion of boolean to integer.
* src/userdel.c: safe_system last argument is a boolean.
* src/newusers.c: Avoid implicit conversion of boolean to integer.
* src/newusers.c: Avoid implicit conversion of integer to boolean.
* src/usermod.c: Add brackets.
* src/usermod.c: Avoid implicit conversion of characters or
integers to booleans.
* src/vipw.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Add brackets.
* src/useradd.c: Avoid implicit conversion of characters or
integers to booleans.
2010-08-23 00:43:53 +05:30
|
|
|
(void) gr_rewind ();
|
2009-07-18 06:05:35 +05:30
|
|
|
while ((grp = gr_next ()) != NULL) {
|
|
|
|
if ((grp->gr_gid <= group_id) && (grp->gr_gid >= gid_min)) {
|
|
|
|
group_id = grp->gr_gid - 1;
|
|
|
|
}
|
|
|
|
/* create index of used GIDs */
|
|
|
|
if (grp->gr_gid <= gid_max) {
|
2009-07-18 04:24:23 +05:30
|
|
|
used_gids[grp->gr_gid] = true;
|
|
|
|
}
|
2008-02-03 22:23:07 +05:30
|
|
|
}
|
2009-07-18 04:24:23 +05:30
|
|
|
} else {
|
2009-07-18 06:05:35 +05:30
|
|
|
group_id = gid_min;
|
2009-07-18 04:24:23 +05:30
|
|
|
setgrent ();
|
|
|
|
while ((grp = getgrent ()) != NULL) {
|
|
|
|
if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) {
|
|
|
|
group_id = grp->gr_gid + 1;
|
|
|
|
}
|
|
|
|
/* create index of used GIDs */
|
|
|
|
if (grp->gr_gid <= gid_max) {
|
|
|
|
used_gids[grp->gr_gid] = true;
|
|
|
|
}
|
2008-09-13 17:24:49 +05:30
|
|
|
}
|
2009-07-18 04:24:23 +05:30
|
|
|
endgrent ();
|
2008-02-03 22:23:07 +05:30
|
|
|
|
* libmisc/limits.c: Avoid implicit conversion of integer to
boolean.
* libmisc/basename.c: Avoid implicit conversion of pointer to
boolean.
* libmisc/basename.c, lib/prototypes.h (Basename): Return a
constant string.
* libmisc/basename.c, libmisc/obscure.c, lib/prototypes.h,
libmisc/xmalloc.c, libmisc/getdate.h, libmisc/system.c,
libmisc/getgr_nam_gid.c, libmisc/failure.c, libmisc/valid.c: Add
splint annotations.
* libmisc/chowndir.c: Avoid memory leak.
* libmisc/chowndir.c: Do not check *printf/*puts return value.
* libmisc/chowntty.c: Avoid implicit conversion between integer
types.
* libmisc/obscure.c: Return a bool when possible instead of int.
* libmisc/shell.c: Do not check *printf/*puts return value.
* libmisc/shell.c: Do not check execle return value.
* libmisc/setupenv.c: Avoid implicit conversion between integer
types.
* libmisc/xmalloc.c: size should not be zero to avoid returning
NULL pointers.
* libmisc/hushed.c: Do not check *printf/*puts return value.
* libmisc/system.c: Avoid implicit conversion of integer to
boolean. safe_system last argument is a boolean.
* libmisc/system.c: Check return value of dup2.
* libmisc/system.c: Do not check *printf/*puts return value.
* libmisc/system.c: Do not check execve return value.
* libmisc/salt.c: Do not check *printf/*puts return value.
* libmisc/loginprompt.c: Do not check gethostname return value.
* libmisc/find_new_gid.c, libmisc/find_new_uid.c: Do not check
gr_rewind/pw_rewind return value.
* libmisc/ttytype.c: Limit the number of parsed characters in the
sscanf format.
* libmisc/ttytype.c: Test if a type was really read.
* libmisc/sub.c: Do not check *printf/*puts return value.
* libmisc/sub.c: Avoid implicit conversion of integer to boolean.
* src/userdel.c: Fix typo in comment.
* src/userdel.c: Avoid implicit conversion of boolean to integer.
* src/userdel.c: safe_system last argument is a boolean.
* src/newusers.c: Avoid implicit conversion of boolean to integer.
* src/newusers.c: Avoid implicit conversion of integer to boolean.
* src/usermod.c: Add brackets.
* src/usermod.c: Avoid implicit conversion of characters or
integers to booleans.
* src/vipw.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Add brackets.
* src/useradd.c: Avoid implicit conversion of characters or
integers to booleans.
2010-08-23 00:43:53 +05:30
|
|
|
(void) gr_rewind ();
|
2009-07-18 06:05:35 +05:30
|
|
|
while ((grp = gr_next ()) != NULL) {
|
|
|
|
if ((grp->gr_gid >= group_id) && (grp->gr_gid <= gid_max)) {
|
|
|
|
group_id = grp->gr_gid + 1;
|
|
|
|
}
|
|
|
|
/* create index of used GIDs */
|
|
|
|
if (grp->gr_gid <= gid_max) {
|
|
|
|
used_gids[grp->gr_gid] = true;
|
2009-04-11 21:30:45 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-03 22:23:07 +05:30
|
|
|
/*
|
|
|
|
* If a group with GID equal to GID_MAX exists, the above algorithm
|
|
|
|
* will give us GID_MAX+1 even if not unique. Search for the first
|
2008-09-13 17:24:49 +05:30
|
|
|
* free GID starting with GID_MIN.
|
2008-02-03 22:23:07 +05:30
|
|
|
*/
|
2009-07-18 06:05:35 +05:30
|
|
|
if (sys_group) {
|
|
|
|
if (group_id == gid_min - 1) {
|
|
|
|
for (group_id = gid_max; group_id >= gid_min; group_id--) {
|
|
|
|
if (false == used_gids[group_id]) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( group_id < gid_min ) {
|
|
|
|
fprintf (stderr,
|
|
|
|
_("%s: Can't get unique system GID (no more available GIDs)\n"),
|
|
|
|
Prog);
|
|
|
|
SYSLOG ((LOG_WARN,
|
|
|
|
"no more available GID on the system"));
|
|
|
|
return -1;
|
2008-02-03 22:23:07 +05:30
|
|
|
}
|
|
|
|
}
|
2009-07-18 06:05:35 +05:30
|
|
|
} else {
|
|
|
|
if (group_id == gid_max + 1) {
|
|
|
|
for (group_id = gid_min; group_id < gid_max; group_id++) {
|
|
|
|
if (false == used_gids[group_id]) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (group_id == gid_max) {
|
|
|
|
fprintf (stderr,
|
|
|
|
_("%s: Can't get unique GID (no more available GIDs)\n"),
|
|
|
|
Prog);
|
|
|
|
SYSLOG ((LOG_WARN, "no more available GID on the system"));
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-03 22:23:07 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*gid = group_id;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|