2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Copyright 1991 - 1993, Julianne Frances Haugh
|
|
|
|
* 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. Neither the name of Julianne F. Haugh nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JULIE HAUGH 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
|
2007-10-07 17:14:59 +05:30
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL JULIE HAUGH OR CONTRIBUTORS BE LIABLE
|
2007-10-07 17:14:02 +05:30
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-12-28 16:00:39 +05:30
|
|
|
#include <assert.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <ctype.h>
|
|
|
|
#include <fcntl.h>
|
2007-10-07 17:17:01 +05:30
|
|
|
#include <getopt.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
2007-10-07 17:16:34 +05:30
|
|
|
#ifdef USE_PAM
|
2007-10-07 17:17:11 +05:30
|
|
|
#include "pam_defs.h"
|
2007-10-07 17:16:34 +05:30
|
|
|
#include <pwd.h>
|
|
|
|
#endif /* USE_PAM */
|
2007-10-07 17:14:02 +05:30
|
|
|
#include "chkname.h"
|
2007-10-07 17:17:01 +05:30
|
|
|
#include "defines.h"
|
2007-10-07 17:14:02 +05:30
|
|
|
#include "getdef.h"
|
|
|
|
#include "groupio.h"
|
2007-10-07 17:15:23 +05:30
|
|
|
#include "nscd.h"
|
2007-10-07 17:17:01 +05:30
|
|
|
#include "prototypes.h"
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SHADOWGRP
|
|
|
|
#include "sgroupio.h"
|
|
|
|
static int is_shadow_grp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* exit status values
|
|
|
|
*/
|
|
|
|
#define E_SUCCESS 0 /* success */
|
|
|
|
#define E_USAGE 2 /* invalid command syntax */
|
|
|
|
#define E_BAD_ARG 3 /* invalid argument to option */
|
|
|
|
#define E_GID_IN_USE 4 /* gid not unique (when -o not used) */
|
2007-10-07 17:15:23 +05:30
|
|
|
#define E_NAME_IN_USE 9 /* group name not unique */
|
2007-10-07 17:14:02 +05:30
|
|
|
#define E_GRP_UPDATE 10 /* can't update group file */
|
|
|
|
|
2007-10-07 17:17:01 +05:30
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static char *group_name;
|
|
|
|
static gid_t group_id;
|
2008-01-05 19:47:43 +05:30
|
|
|
static char *group_passwd;
|
2007-10-07 17:14:02 +05:30
|
|
|
static char *empty_list = NULL;
|
|
|
|
|
2007-10-07 17:14:59 +05:30
|
|
|
static char *Prog;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:59 +05:30
|
|
|
static int oflg = 0; /* permit non-unique group ID to be specified with -g */
|
|
|
|
static int gflg = 0; /* ID value for the new group */
|
|
|
|
static int fflg = 0; /* if group already exists, do nothing and exit(0) */
|
2008-02-20 02:31:38 +05:30
|
|
|
static int rflg = 0; /* create a system account */
|
2008-01-05 19:47:43 +05:30
|
|
|
static int pflg = 0; /* new encrypted password */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-12-31 03:18:55 +05:30
|
|
|
#ifdef USE_PAM
|
|
|
|
static pam_handle_t *pamh = NULL;
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/* local function prototypes */
|
2007-10-07 17:14:59 +05:30
|
|
|
static void usage (void);
|
2007-12-28 16:52:27 +05:30
|
|
|
static void new_grent (struct group *grent);
|
2007-10-07 17:14:59 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SHADOWGRP
|
2007-12-28 16:52:27 +05:30
|
|
|
static void new_sgent (struct sgrp *sgent);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2007-10-07 17:14:59 +05:30
|
|
|
static void grp_update (void);
|
|
|
|
static void check_new_name (void);
|
|
|
|
static void close_files (void);
|
|
|
|
static void open_files (void);
|
2007-12-28 16:52:27 +05:30
|
|
|
static void fail_exit (int code);
|
2007-10-07 17:17:57 +05:30
|
|
|
static gid_t get_gid (const char *gidstr);
|
2007-12-28 16:52:27 +05:30
|
|
|
static void process_flags (int argc, char **argv);
|
2007-12-29 02:34:04 +05:30
|
|
|
static void check_flags (void);
|
2007-12-29 02:16:24 +05:30
|
|
|
static void check_perms (void);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* usage - display usage message and exit
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void usage (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2008-01-25 02:12:12 +05:30
|
|
|
fputs (_("Usage: groupadd [options] GROUP\n"
|
2008-01-25 02:24:42 +05:30
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
" -f, --force force exit with success status if the\n"
|
|
|
|
" specified group already exists\n"
|
|
|
|
" -g, --gid GID use GID for the new group\n"
|
|
|
|
" -h, --help display this help message and exit\n"
|
|
|
|
" -K, --key KEY=VALUE overrides /etc/login.defs defaults\n"
|
|
|
|
" -o, --non-unique allow create group with duplicate\n"
|
|
|
|
" (non-unique) GID\n"
|
2008-02-20 02:31:38 +05:30
|
|
|
" -r, --system create a system account\n"
|
2008-01-25 02:24:42 +05:30
|
|
|
"\n"), stderr);
|
2007-10-07 17:14:59 +05:30
|
|
|
exit (E_USAGE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* new_grent - initialize the values in a group file entry
|
|
|
|
*
|
2007-10-07 17:14:59 +05:30
|
|
|
* new_grent() takes all of the values that have been entered and fills
|
|
|
|
* in a (struct group) with them.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void new_grent (struct group *grent)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:59 +05:30
|
|
|
memzero (grent, sizeof *grent);
|
2007-10-07 17:14:02 +05:30
|
|
|
grent->gr_name = group_name;
|
2008-01-05 19:47:43 +05:30
|
|
|
if (pflg) {
|
|
|
|
grent->gr_passwd = group_passwd;
|
|
|
|
} else {
|
|
|
|
grent->gr_passwd = SHADOW_PASSWD_STRING; /* XXX warning: const */
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
grent->gr_gid = group_id;
|
|
|
|
grent->gr_mem = &empty_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SHADOWGRP
|
|
|
|
/*
|
|
|
|
* new_sgent - initialize the values in a shadow group file entry
|
|
|
|
*
|
2007-10-07 17:14:59 +05:30
|
|
|
* new_sgent() takes all of the values that have been entered and fills
|
|
|
|
* in a (struct sgrp) with them.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void new_sgent (struct sgrp *sgent)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:59 +05:30
|
|
|
memzero (sgent, sizeof *sgent);
|
2007-10-07 17:14:02 +05:30
|
|
|
sgent->sg_name = group_name;
|
2008-01-05 19:47:43 +05:30
|
|
|
if (pflg) {
|
|
|
|
sgent->sg_passwd = group_passwd;
|
|
|
|
} else {
|
|
|
|
sgent->sg_passwd = "!"; /* XXX warning: const */
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
sgent->sg_adm = &empty_list;
|
|
|
|
sgent->sg_mem = &empty_list;
|
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* grp_update - add new group file entries
|
|
|
|
*
|
|
|
|
* grp_update() writes the new records to the group files.
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void grp_update (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:59 +05:30
|
|
|
struct group grp;
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SHADOWGRP
|
2007-10-07 17:14:59 +05:30
|
|
|
struct sgrp sgrp;
|
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the initial entries for this new group.
|
|
|
|
*/
|
|
|
|
new_grent (&grp);
|
|
|
|
#ifdef SHADOWGRP
|
|
|
|
new_sgent (&sgrp);
|
2008-01-05 19:47:43 +05:30
|
|
|
if (is_shadow_grp && pflg) {
|
2008-01-05 22:14:51 +05:30
|
|
|
grp.gr_passwd = SHADOW_PASSWD_STRING; /* XXX warning: const */
|
2008-01-05 19:47:43 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Write out the new group file entry.
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
if (!gr_update (&grp)) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: error adding new group entry\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
#ifdef SHADOWGRP
|
|
|
|
/*
|
|
|
|
* Write out the new shadow group entries as well.
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
if (is_shadow_grp && !sgr_update (&sgrp)) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: error adding new group entry\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:17:01 +05:30
|
|
|
#ifdef WITH_AUDIT
|
|
|
|
audit_logger (AUDIT_USER_CHAUTHTOK, Prog, "adding group", group_name,
|
2007-12-29 02:05:05 +05:30
|
|
|
group_id, 1);
|
2007-10-07 17:17:01 +05:30
|
|
|
#endif
|
2007-10-07 17:16:25 +05:30
|
|
|
SYSLOG ((LOG_INFO, "new group: name=%s, GID=%u",
|
2007-12-29 02:05:05 +05:30
|
|
|
group_name, (unsigned int) group_id));
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check_new_name - check the new name for validity
|
|
|
|
*
|
2007-10-07 17:14:59 +05:30
|
|
|
* check_new_name() insures that the new name doesn't contain any
|
|
|
|
* illegal characters.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void check_new_name (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-12-28 15:42:09 +05:30
|
|
|
if (check_group_name (group_name)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return;
|
2007-12-28 15:42:09 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* All invalid group names land here.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
fprintf (stderr, _("%s: %s is not a valid group name\n"),
|
2007-12-29 02:05:05 +05:30
|
|
|
Prog, group_name);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:59 +05:30
|
|
|
exit (E_BAD_ARG);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* close_files - close all of the files that were opened
|
|
|
|
*
|
2007-10-07 17:14:59 +05:30
|
|
|
* close_files() closes all of the files that were opened for this new
|
|
|
|
* group. This causes any modified entries to be written out.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void close_files (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:59 +05:30
|
|
|
if (!gr_close ()) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: cannot rewrite group file\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
gr_unlock ();
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SHADOWGRP
|
2007-10-07 17:14:59 +05:30
|
|
|
if (is_shadow_grp && !sgr_close ()) {
|
|
|
|
fprintf (stderr,
|
2007-12-29 02:05:05 +05:30
|
|
|
_("%s: cannot rewrite shadow group file\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-12-28 15:42:09 +05:30
|
|
|
if (is_shadow_grp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
sgr_unlock ();
|
2007-12-28 15:42:09 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* open_files - lock and open the group files
|
|
|
|
*
|
|
|
|
* open_files() opens the two group files.
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void open_files (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:59 +05:30
|
|
|
if (!gr_lock ()) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: unable to lock group file\n"), Prog);
|
2007-10-07 17:17:01 +05:30
|
|
|
#ifdef WITH_AUDIT
|
|
|
|
audit_logger (AUDIT_USER_CHAUTHTOK, Prog, "locking group file",
|
2007-12-29 02:05:05 +05:30
|
|
|
group_name, -1, 0);
|
2007-10-07 17:17:01 +05:30
|
|
|
#endif
|
2007-10-07 17:14:59 +05:30
|
|
|
exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
if (!gr_open (O_RDWR)) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: unable to open group file\n"), Prog);
|
2007-10-07 17:17:01 +05:30
|
|
|
#ifdef WITH_AUDIT
|
|
|
|
audit_logger (AUDIT_USER_CHAUTHTOK, Prog, "opening group file",
|
2007-12-29 02:05:05 +05:30
|
|
|
group_name, -1, 0);
|
2007-10-07 17:17:01 +05:30
|
|
|
#endif
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
#ifdef SHADOWGRP
|
2007-10-07 17:14:59 +05:30
|
|
|
if (is_shadow_grp && !sgr_lock ()) {
|
|
|
|
fprintf (stderr,
|
2007-12-29 02:05:05 +05:30
|
|
|
_("%s: unable to lock shadow group file\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
if (is_shadow_grp && !sgr_open (O_RDWR)) {
|
|
|
|
fprintf (stderr,
|
2007-12-29 02:05:05 +05:30
|
|
|
_("%s: unable to open shadow group file\n"), Prog);
|
2007-10-07 17:14:59 +05:30
|
|
|
fail_exit (E_GRP_UPDATE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* SHADOWGRP */
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fail_exit - exit with an error code after unlocking files
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
static void fail_exit (int code)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
(void) gr_unlock ();
|
|
|
|
#ifdef SHADOWGRP
|
2007-12-28 15:42:09 +05:30
|
|
|
if (is_shadow_grp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
sgr_unlock ();
|
2007-12-28 15:42:09 +05:30
|
|
|
}
|
2007-10-07 17:17:01 +05:30
|
|
|
#endif
|
2007-12-28 16:52:27 +05:30
|
|
|
|
2007-10-07 17:17:01 +05:30
|
|
|
#ifdef WITH_AUDIT
|
2007-12-28 15:42:09 +05:30
|
|
|
if (code != E_SUCCESS) {
|
2007-10-07 17:17:01 +05:30
|
|
|
audit_logger (AUDIT_USER_CHAUTHTOK, Prog, "adding group",
|
2007-12-29 02:05:05 +05:30
|
|
|
group_name, -1, 0);
|
2007-12-28 15:42:09 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2007-12-31 03:18:55 +05:30
|
|
|
|
|
|
|
#ifdef USE_PAM
|
|
|
|
if (NULL != pamh) {
|
|
|
|
/* If there is a PAM error, fail_exit is not called.
|
|
|
|
* We always end the pam transaction with PAM_SUCCESS here.
|
|
|
|
*/
|
|
|
|
pam_end (pamh, PAM_SUCCESS);
|
|
|
|
}
|
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
exit (code);
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:17:57 +05:30
|
|
|
/*
|
|
|
|
* get_id - validate and get group ID
|
|
|
|
*/
|
|
|
|
static gid_t get_gid (const char *gidstr)
|
|
|
|
{
|
|
|
|
long val;
|
|
|
|
char *errptr;
|
|
|
|
|
|
|
|
val = strtol (gidstr, &errptr, 10);
|
2007-12-28 15:42:09 +05:30
|
|
|
if (('\0' != *errptr) || (errno == ERANGE) || (val < 0)) {
|
2007-12-29 02:05:05 +05:30
|
|
|
fprintf (stderr, _("%s: invalid numeric argument '%s'\n"),
|
|
|
|
Prog, gidstr);
|
2007-10-07 17:17:57 +05:30
|
|
|
exit (E_BAD_ARG);
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
2007-12-28 16:52:27 +05:30
|
|
|
* process_flags - parse the command line options
|
2007-12-28 16:11:22 +05:30
|
|
|
*
|
|
|
|
* It will not return if an error is encountered.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2007-12-28 16:52:27 +05:30
|
|
|
static void process_flags (int argc, char **argv)
|
2007-12-28 16:11:22 +05:30
|
|
|
{
|
2007-12-28 16:52:27 +05:30
|
|
|
/*
|
|
|
|
* Parse the command line options.
|
|
|
|
*/
|
2007-12-28 16:11:22 +05:30
|
|
|
char *cp;
|
|
|
|
int option_index = 0;
|
|
|
|
int c;
|
|
|
|
static struct option long_options[] = {
|
|
|
|
{"force", no_argument, NULL, 'f'},
|
|
|
|
{"gid", required_argument, NULL, 'g'},
|
|
|
|
{"help", no_argument, NULL, 'h'},
|
|
|
|
{"key", required_argument, NULL, 'K'},
|
|
|
|
{"non-unique", required_argument, NULL, 'o'},
|
2008-01-05 19:47:43 +05:30
|
|
|
{"password", required_argument, NULL, 'p'},
|
2008-02-20 02:31:38 +05:30
|
|
|
{"system", no_argument, NULL, 'r'},
|
2007-12-28 16:11:22 +05:30
|
|
|
{NULL, 0, NULL, '\0'}
|
|
|
|
};
|
|
|
|
|
|
|
|
while ((c =
|
2008-02-20 02:31:38 +05:30
|
|
|
getopt_long (argc, argv, "fg:hK:or", long_options,
|
2007-12-29 02:05:05 +05:30
|
|
|
&option_index)) != -1) {
|
2007-12-28 16:11:22 +05:30
|
|
|
switch (c) {
|
|
|
|
case 'f':
|
|
|
|
/*
|
|
|
|
* "force" - do nothing, just exit(0), if the
|
|
|
|
* specified group already exists. With -g, if
|
|
|
|
* specified gid already exists, choose another
|
|
|
|
* (unique) gid (turn off -g). Based on the RedHat's
|
|
|
|
* patch from shadow-utils-970616-9.
|
|
|
|
*/
|
|
|
|
fflg++;
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
gflg++;
|
|
|
|
group_id = get_gid (optarg);
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage ();
|
|
|
|
break;
|
|
|
|
case 'K':
|
|
|
|
/*
|
|
|
|
* override login.defs defaults (-K name=value)
|
|
|
|
* example: -K GID_MIN=100 -K GID_MAX=499
|
|
|
|
* note: -K GID_MIN=10,GID_MAX=499 doesn't work yet
|
|
|
|
*/
|
|
|
|
cp = strchr (optarg, '=');
|
2007-12-29 00:38:33 +05:30
|
|
|
if (NULL == cp) {
|
2007-12-28 16:11:22 +05:30
|
|
|
fprintf (stderr,
|
2007-12-29 02:05:05 +05:30
|
|
|
_
|
|
|
|
("%s: -K requires KEY=VALUE\n"),
|
|
|
|
Prog);
|
2007-12-28 16:11:22 +05:30
|
|
|
exit (E_BAD_ARG);
|
|
|
|
}
|
|
|
|
/* terminate name, point to value */
|
|
|
|
*cp++ = '\0';
|
|
|
|
if (putdef_str (optarg, cp) < 0) {
|
|
|
|
exit (E_BAD_ARG);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
oflg++;
|
|
|
|
break;
|
2008-01-05 19:47:43 +05:30
|
|
|
case 'p':
|
2008-01-05 22:14:51 +05:30
|
|
|
pflg++;
|
2008-01-05 19:47:43 +05:30
|
|
|
group_passwd = optarg;
|
|
|
|
break;
|
2008-02-20 02:31:38 +05:30
|
|
|
case 'r':
|
|
|
|
rflg++;
|
|
|
|
break;
|
2007-12-28 16:11:22 +05:30
|
|
|
default:
|
|
|
|
usage ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-28 16:52:27 +05:30
|
|
|
/*
|
|
|
|
* Check the flags consistency
|
|
|
|
*/
|
2007-12-29 02:34:04 +05:30
|
|
|
if (optind != argc - 1) {
|
2007-12-28 16:11:22 +05:30
|
|
|
usage ();
|
|
|
|
}
|
2007-12-29 02:34:04 +05:30
|
|
|
group_name = argv[optind];
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-12-29 02:34:04 +05:30
|
|
|
check_flags ();
|
|
|
|
}
|
|
|
|
|
2007-12-31 03:18:55 +05:30
|
|
|
/*
|
|
|
|
* check_flags - check flags and parameters consistency
|
|
|
|
*
|
|
|
|
* It will not return if an error is encountered.
|
|
|
|
*/
|
2007-12-29 02:34:04 +05:30
|
|
|
static void check_flags (void)
|
|
|
|
{
|
|
|
|
/* -o does not make sense without -g */
|
|
|
|
if (oflg && !gflg) {
|
2007-12-28 16:11:22 +05:30
|
|
|
usage ();
|
|
|
|
}
|
|
|
|
|
|
|
|
check_new_name ();
|
2007-12-28 16:52:27 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the group already exist.
|
|
|
|
*/
|
|
|
|
/* local, no need for xgetgrnam */
|
2007-12-29 00:38:33 +05:30
|
|
|
if (getgrnam (group_name) != NULL) {
|
2007-12-28 16:52:27 +05:30
|
|
|
/* The group already exist */
|
|
|
|
if (fflg) {
|
|
|
|
/* OK, no need to do anything */
|
2007-12-29 00:45:14 +05:30
|
|
|
fail_exit (E_SUCCESS);
|
2007-12-28 16:52:27 +05:30
|
|
|
}
|
|
|
|
fprintf (stderr, _("%s: group %s exists\n"), Prog, group_name);
|
2007-12-29 00:45:14 +05:30
|
|
|
fail_exit (E_NAME_IN_USE);
|
2007-12-28 16:52:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (gflg && (getgrgid (group_id) != NULL)) {
|
|
|
|
/* A GID was specified, and a group already exist with that GID
|
|
|
|
* - either we will use this GID anyway (-o)
|
|
|
|
* - either we ignore the specified GID and
|
|
|
|
* we will use another one(-f)
|
|
|
|
* - either it is a failure
|
|
|
|
*/
|
|
|
|
if (oflg) {
|
|
|
|
/* Continue with this GID */
|
|
|
|
} else if (fflg) {
|
|
|
|
/* Turn off -g, we can use any GID */
|
|
|
|
gflg = 0;
|
|
|
|
} else {
|
|
|
|
fprintf (stderr, _("%s: GID %u is not unique\n"),
|
|
|
|
Prog, (unsigned int) group_id);
|
|
|
|
fail_exit (E_GID_IN_USE);
|
|
|
|
}
|
|
|
|
}
|
2007-12-28 16:11:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-12-29 02:16:24 +05:30
|
|
|
* check_perms - check if the caller is allowed to add a group
|
|
|
|
*
|
|
|
|
* With PAM support, the setuid bit can be set on groupadd to allow
|
|
|
|
* non-root users to groups.
|
|
|
|
* Without PAM support, only users who can write in the group databases
|
|
|
|
* can add groups.
|
2007-12-31 03:18:55 +05:30
|
|
|
*
|
|
|
|
* It will not return if the user is not allowed.
|
2007-12-28 16:11:22 +05:30
|
|
|
*/
|
2007-12-29 02:16:24 +05:30
|
|
|
static void check_perms (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:38 +05:30
|
|
|
#ifdef USE_PAM
|
2007-12-29 02:16:24 +05:30
|
|
|
int retval = PAM_SUCCESS;
|
|
|
|
struct passwd *pampw;
|
2007-10-07 17:14:38 +05:30
|
|
|
|
2007-12-29 02:16:24 +05:30
|
|
|
pampw = getpwuid (getuid ()); /* local, no need for xgetpwuid */
|
|
|
|
if (pampw == NULL) {
|
|
|
|
retval = PAM_USER_UNKNOWN;
|
|
|
|
}
|
2007-10-07 17:14:38 +05:30
|
|
|
|
2007-12-29 02:16:24 +05:30
|
|
|
if (retval == PAM_SUCCESS) {
|
|
|
|
retval = pam_start ("groupadd", pampw->pw_name,
|
|
|
|
&conv, &pamh);
|
2007-10-07 17:14:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (retval == PAM_SUCCESS) {
|
2007-10-07 17:14:59 +05:30
|
|
|
retval = pam_authenticate (pamh, 0);
|
2007-10-07 17:14:38 +05:30
|
|
|
if (retval != PAM_SUCCESS) {
|
2007-10-07 17:14:59 +05:30
|
|
|
pam_end (pamh, retval);
|
2007-10-07 17:14:38 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retval == PAM_SUCCESS) {
|
2007-10-07 17:14:59 +05:30
|
|
|
retval = pam_acct_mgmt (pamh, 0);
|
2007-10-07 17:14:38 +05:30
|
|
|
if (retval != PAM_SUCCESS) {
|
2007-10-07 17:14:59 +05:30
|
|
|
pam_end (pamh, retval);
|
2007-10-07 17:14:38 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (retval != PAM_SUCCESS) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fprintf (stderr, _("%s: PAM authentication failed\n"), Prog);
|
2007-10-07 17:14:38 +05:30
|
|
|
exit (1);
|
|
|
|
}
|
2007-10-07 17:15:40 +05:30
|
|
|
#endif /* USE_PAM */
|
2007-12-29 02:16:24 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* main - groupadd command
|
|
|
|
*/
|
|
|
|
int main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
#ifdef WITH_AUDIT
|
|
|
|
audit_help_open ();
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Get my name so that I can use it to report errors.
|
|
|
|
*/
|
|
|
|
Prog = Basename (argv[0]);
|
|
|
|
|
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
bindtextdomain (PACKAGE, LOCALEDIR);
|
|
|
|
textdomain (PACKAGE);
|
|
|
|
|
|
|
|
OPENLOG ("groupadd");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse the command line options.
|
|
|
|
*/
|
|
|
|
process_flags (argc, argv);
|
|
|
|
|
|
|
|
check_perms ();
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#ifdef SHADOWGRP
|
2007-10-07 17:14:59 +05:30
|
|
|
is_shadow_grp = sgr_file_present ();
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do the hard stuff - open the files, create the group entries,
|
|
|
|
* then close and update the files.
|
|
|
|
*/
|
2007-10-07 17:14:59 +05:30
|
|
|
open_files ();
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-12-28 15:49:21 +05:30
|
|
|
if (!gflg) {
|
2008-02-20 02:31:38 +05:30
|
|
|
if (find_new_gid (rflg, &group_id, NULL) < 0) {
|
2008-02-03 22:26:23 +05:30
|
|
|
fprintf (stderr, _("%s: can't create group\n"), Prog);
|
|
|
|
fail_exit (E_GID_IN_USE);
|
|
|
|
}
|
2007-12-28 15:42:09 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:59 +05:30
|
|
|
grp_update ();
|
|
|
|
close_files ();
|
2007-10-07 17:14:38 +05:30
|
|
|
|
2007-10-07 20:06:51 +05:30
|
|
|
nscd_flush_cache ("group");
|
|
|
|
|
2007-10-07 17:14:38 +05:30
|
|
|
#ifdef USE_PAM
|
2007-12-29 02:10:59 +05:30
|
|
|
pam_end (pamh, PAM_SUCCESS);
|
2007-10-07 17:14:59 +05:30
|
|
|
#endif /* USE_PAM */
|
2007-12-29 02:10:59 +05:30
|
|
|
|
2007-10-07 17:14:59 +05:30
|
|
|
exit (E_SUCCESS);
|
2007-10-07 17:15:23 +05:30
|
|
|
/* NOT REACHED */
|
|
|
|
}
|
2007-12-28 15:42:09 +05:30
|
|
|
|