2002-06-04 20:45:46 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2007-04-05 13:16:39 +00:00
|
|
|
* addgroup - add groups to /etc/group and /etc/gshadow
|
2002-06-04 20:45:46 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 1999 by Lineo, inc. and John Beppu
|
|
|
|
* Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
|
2007-04-05 13:16:39 +00:00
|
|
|
* Copyright (C) 2007 by Tito Ragusa <farmatito@tiscali.it>
|
2002-06-04 20:45:46 +00:00
|
|
|
*
|
2006-04-04 19:19:53 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2002-06-04 20:45:46 +00:00
|
|
|
*
|
|
|
|
*/
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2002-06-04 20:45:46 +00:00
|
|
|
|
2009-05-13 22:23:34 +00:00
|
|
|
#if CONFIG_LAST_SYSTEM_ID < CONFIG_FIRST_SYSTEM_ID
|
|
|
|
#error Bad LAST_SYSTEM_ID or FIRST_SYSTEM_ID in .config
|
|
|
|
#endif
|
|
|
|
|
2009-04-22 21:35:52 +00:00
|
|
|
#define OPT_GID (1 << 0)
|
|
|
|
#define OPT_SYSTEM_ACCOUNT (1 << 1)
|
|
|
|
|
|
|
|
/* We assume GID_T_MAX == INT_MAX */
|
2007-04-05 13:16:39 +00:00
|
|
|
static void xgroup_study(struct group *g)
|
2002-06-04 20:45:46 +00:00
|
|
|
{
|
2009-04-22 21:35:52 +00:00
|
|
|
unsigned max = INT_MAX;
|
|
|
|
|
2007-04-05 13:16:39 +00:00
|
|
|
/* Make sure gr_name is unused */
|
|
|
|
if (getgrnam(g->gr_name)) {
|
2009-04-22 21:35:52 +00:00
|
|
|
bb_error_msg_and_die("%s '%s' in use", "group", g->gr_name);
|
|
|
|
/* these format strings are reused in adduser and addgroup */
|
2007-04-05 13:16:39 +00:00
|
|
|
}
|
|
|
|
|
2009-04-22 21:35:52 +00:00
|
|
|
/* if a specific gid is requested, the --system switch and */
|
|
|
|
/* min and max values are overriden, and the range of valid */
|
|
|
|
/* gid values is set to [0, INT_MAX] */
|
|
|
|
if (!(option_mask32 & OPT_GID)) {
|
|
|
|
if (option_mask32 & OPT_SYSTEM_ACCOUNT) {
|
2009-05-13 22:23:34 +00:00
|
|
|
g->gr_gid = CONFIG_FIRST_SYSTEM_ID;
|
|
|
|
max = CONFIG_LAST_SYSTEM_ID;
|
2009-04-22 21:35:52 +00:00
|
|
|
} else {
|
2009-05-13 22:23:34 +00:00
|
|
|
g->gr_gid = CONFIG_LAST_SYSTEM_ID + 1;
|
|
|
|
max = 64999;
|
2009-04-22 21:35:52 +00:00
|
|
|
}
|
|
|
|
}
|
2007-07-30 12:32:37 +00:00
|
|
|
/* Check if the desired gid is free
|
|
|
|
* or find the first free one */
|
|
|
|
while (1) {
|
2007-04-05 13:16:39 +00:00
|
|
|
if (!getgrgid(g->gr_gid)) {
|
2007-07-30 12:32:37 +00:00
|
|
|
return; /* found free group: return */
|
2002-06-04 20:45:46 +00:00
|
|
|
}
|
2009-04-22 21:35:52 +00:00
|
|
|
if (option_mask32 & OPT_GID) {
|
2007-07-30 12:32:37 +00:00
|
|
|
/* -g N, cannot pick gid other than N: error */
|
2009-04-22 21:35:52 +00:00
|
|
|
bb_error_msg_and_die("%s '%s' in use", "gid", itoa(g->gr_gid));
|
|
|
|
/* this format strings is reused in adduser and addgroup */
|
2002-06-04 20:45:46 +00:00
|
|
|
}
|
2009-04-22 21:35:52 +00:00
|
|
|
if (g->gr_gid == max) {
|
2007-07-30 12:32:37 +00:00
|
|
|
/* overflowed: error */
|
2009-04-22 21:35:52 +00:00
|
|
|
bb_error_msg_and_die("no %cids left", 'g');
|
|
|
|
/* this format string is reused in adduser and addgroup */
|
2007-07-30 12:32:37 +00:00
|
|
|
}
|
2009-04-22 21:35:52 +00:00
|
|
|
g->gr_gid++;
|
2007-07-30 12:32:37 +00:00
|
|
|
}
|
2002-06-04 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* append a new user to the passwd file */
|
2007-04-05 13:16:39 +00:00
|
|
|
static void new_group(char *group, gid_t gid)
|
2002-06-04 20:45:46 +00:00
|
|
|
{
|
|
|
|
struct group gr;
|
2009-04-14 00:51:05 +00:00
|
|
|
char *p;
|
2002-06-04 20:45:46 +00:00
|
|
|
|
|
|
|
/* make sure gid and group haven't already been allocated */
|
|
|
|
gr.gr_gid = gid;
|
|
|
|
gr.gr_name = group;
|
2007-07-30 12:32:37 +00:00
|
|
|
xgroup_study(&gr);
|
2002-06-04 20:45:46 +00:00
|
|
|
|
|
|
|
/* add entry to group */
|
2009-04-22 21:35:52 +00:00
|
|
|
p = xasprintf("x:%u:", (unsigned) gr.gr_gid);
|
2009-04-14 00:51:05 +00:00
|
|
|
if (update_passwd(bb_path_group_file, group, p, NULL) < 0)
|
|
|
|
exit(EXIT_FAILURE);
|
2007-03-13 13:01:14 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2009-04-14 00:51:05 +00:00
|
|
|
free(p);
|
2006-04-04 19:19:53 +00:00
|
|
|
#if ENABLE_FEATURE_SHADOWPASSWDS
|
2009-04-14 00:51:05 +00:00
|
|
|
/* Ignore errors: if file is missing we suppose admin doesn't want it */
|
|
|
|
update_passwd(bb_path_gshadow_file, group, "!::", NULL);
|
2002-06-04 20:45:46 +00:00
|
|
|
#endif
|
2007-04-05 13:16:39 +00:00
|
|
|
}
|
|
|
|
|
2009-04-22 21:35:52 +00:00
|
|
|
#if ENABLE_FEATURE_ADDGROUP_LONG_OPTIONS
|
|
|
|
static const char addgroup_longopts[] ALIGN1 =
|
|
|
|
"gid\0" Required_argument "g"
|
|
|
|
"system\0" No_argument "S"
|
|
|
|
;
|
|
|
|
#endif
|
|
|
|
|
2002-06-04 20:45:46 +00:00
|
|
|
/*
|
|
|
|
* addgroup will take a login_name as its first parameter.
|
|
|
|
*
|
2007-03-13 13:01:14 +00:00
|
|
|
* gid can be customized via command-line parameters.
|
2007-07-30 12:32:37 +00:00
|
|
|
* If called with two non-option arguments, addgroup
|
2007-04-05 13:16:39 +00:00
|
|
|
* will add an existing user to an existing group.
|
2007-03-13 13:01:14 +00:00
|
|
|
*/
|
2007-10-11 10:05:36 +00:00
|
|
|
int addgroup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int addgroup_main(int argc UNUSED_PARAM, char **argv)
|
2002-06-04 20:45:46 +00:00
|
|
|
{
|
2009-04-22 21:35:52 +00:00
|
|
|
unsigned opts;
|
|
|
|
unsigned gid = 0;
|
2006-09-17 16:28:10 +00:00
|
|
|
|
2007-07-30 12:32:37 +00:00
|
|
|
/* need to be root */
|
|
|
|
if (geteuid()) {
|
|
|
|
bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
|
|
|
|
}
|
2009-04-22 21:35:52 +00:00
|
|
|
#if ENABLE_FEATURE_ADDGROUP_LONG_OPTIONS
|
|
|
|
applet_long_options = addgroup_longopts;
|
|
|
|
#endif
|
2007-07-30 12:32:37 +00:00
|
|
|
/* Syntax:
|
|
|
|
* addgroup group
|
|
|
|
* addgroup -g num group
|
|
|
|
* addgroup user group
|
|
|
|
* Check for min, max and missing args */
|
2009-04-22 21:35:52 +00:00
|
|
|
opt_complementary = "-1:?2:g+";
|
|
|
|
opts = getopt32(argv, "g:S", &gid);
|
2006-04-04 19:19:53 +00:00
|
|
|
/* move past the commandline options */
|
|
|
|
argv += optind;
|
2008-03-17 09:09:09 +00:00
|
|
|
//argc -= optind;
|
2002-06-04 20:45:46 +00:00
|
|
|
|
2007-04-05 13:16:39 +00:00
|
|
|
#if ENABLE_FEATURE_ADDUSER_TO_GROUP
|
2008-03-17 09:09:09 +00:00
|
|
|
if (argv[1]) {
|
2007-04-05 13:16:39 +00:00
|
|
|
struct group *gr;
|
2007-05-30 00:29:55 +00:00
|
|
|
|
2009-04-22 21:35:52 +00:00
|
|
|
if (opts & OPT_GID) {
|
2007-07-30 12:32:37 +00:00
|
|
|
/* -g was there, but "addgroup -g num user group"
|
|
|
|
* is a no-no */
|
|
|
|
bb_show_usage();
|
|
|
|
}
|
|
|
|
|
2007-04-05 13:16:39 +00:00
|
|
|
/* check if group and user exist */
|
|
|
|
xuname2uid(argv[0]); /* unknown user: exit */
|
2008-12-05 16:23:06 +00:00
|
|
|
gr = xgetgrnam(argv[1]); /* unknown group: exit */
|
2007-04-05 13:16:39 +00:00
|
|
|
/* check if user is already in this group */
|
|
|
|
for (; *(gr->gr_mem) != NULL; (gr->gr_mem)++) {
|
|
|
|
if (!strcmp(argv[0], *(gr->gr_mem))) {
|
|
|
|
/* user is already in group: do nothing */
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
}
|
2009-04-14 00:51:05 +00:00
|
|
|
if (update_passwd(bb_path_group_file, argv[1], NULL, argv[0]) < 0) {
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
# if ENABLE_FEATURE_SHADOWPASSWDS
|
|
|
|
update_passwd(bb_path_gshadow_file, argv[1], NULL, argv[0]);
|
|
|
|
# endif
|
2007-04-05 13:16:39 +00:00
|
|
|
} else
|
|
|
|
#endif /* ENABLE_FEATURE_ADDUSER_TO_GROUP */
|
2008-03-19 23:15:26 +00:00
|
|
|
{
|
|
|
|
die_if_bad_username(argv[0]);
|
2007-04-05 13:16:39 +00:00
|
|
|
new_group(argv[0], gid);
|
|
|
|
|
2008-03-19 23:15:26 +00:00
|
|
|
}
|
2007-04-05 13:16:39 +00:00
|
|
|
/* Reached only on success */
|
|
|
|
return EXIT_SUCCESS;
|
2002-06-04 20:45:46 +00:00
|
|
|
}
|