2008-07-26 Nicolas François <nicolas.francois@centraliens.net>
* src/groupmems.c: Added Prog global variable to indicate the name of the program in error messages. 2008-07-22 Lukáš Kuklínek <lkukline@redhat.com> * NEWS, src/groupmems.c: Check if the user added to group actually exist. RedHat bug #455603 * NEWS, src/groupmems.c: Check if the group exists in the group local database (/etc/group). RedHat bug #456088
This commit is contained in:
@ -54,6 +54,8 @@
|
||||
#define EXIT_NOT_PRIMARY 5 /* not primary owner of group */
|
||||
#define EXIT_NOT_MEMBER 6 /* member of group does not exist */
|
||||
#define EXIT_MEMBER_EXISTS 7 /* member of group already exists */
|
||||
#define EXIT_INVALID_USER 8 /* specified user does not exist */
|
||||
#define EXIT_INVALID_GROUP 9 /* specified group does not exist */
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
@ -67,6 +69,7 @@ static char *thisgroup = NULL;
|
||||
static int purge = FALSE;
|
||||
static int list = FALSE;
|
||||
static int exclusive = 0;
|
||||
static char *Prog;
|
||||
|
||||
static int isroot (void)
|
||||
{
|
||||
@ -187,6 +190,11 @@ int main (int argc, char **argv)
|
||||
{NULL, 0, NULL, '\0'}
|
||||
};
|
||||
|
||||
/*
|
||||
* Get my name so that I can use it to report errors.
|
||||
*/
|
||||
Prog = Basename (argv[0]);
|
||||
|
||||
(void) setlocale (LC_ALL, "");
|
||||
(void) bindtextdomain (PACKAGE, LOCALEDIR);
|
||||
(void) textdomain (PACKAGE);
|
||||
@ -223,6 +231,12 @@ int main (int argc, char **argv)
|
||||
usage ();
|
||||
}
|
||||
|
||||
if (getpwnam(adduser) == NULL) {
|
||||
fprintf (stderr, _("%s: user `%s' does not exist\n")
|
||||
Prog, adduser);
|
||||
exit (EXIT_INVALID_USERNAME);
|
||||
}
|
||||
|
||||
if (!isroot () && NULL != thisgroup) {
|
||||
fputs (_("Only root can add members to different groups\n"),
|
||||
stderr);
|
||||
@ -284,6 +298,12 @@ int main (int argc, char **argv)
|
||||
|
||||
grp = (struct group *) gr_locate (name);
|
||||
|
||||
if (grp == NULL) {
|
||||
fprintf (stderr, _("%s: `%s' not found in /etc/group\n"),
|
||||
Prog, name);
|
||||
exit (EXIT_READ_GROUP);
|
||||
}
|
||||
|
||||
if (NULL != adduser) {
|
||||
addtogroup (adduser, grp->gr_mem);
|
||||
gr_update (grp);
|
||||
|
Reference in New Issue
Block a user