+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
+
2008-07-22 Nicolas François <nicolas.francois@centraliens.net>
* lib/prototypes.h: Fix getrange prototype.
- usermod
* Allow adding LDAP users (or any user not present in the local passwd
file) to local groups
+- groupmems
+ * Check if user exist before they are added to groups.
+ * Avoid segfault in case the specified group does not exist in /etc/group.
shadow-4.1.2 -> shadow-4.1.2.1 26-06-2008
#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
static int purge = FALSE;
static int list = FALSE;
static int exclusive = 0;
+static char *Prog;
static int isroot (void)
{
{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);
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);
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);