2002-06-05 02:15:46 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* addgroup - add users to /etc/passwd and /etc/shadow
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 by Lineo, inc. and John Beppu
|
|
|
|
* Copyright (C) 1999,2000,2001 by John Beppu <beppu@codepoet.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "busybox.h"
|
2002-07-04 04:49:26 +05:30
|
|
|
#include "pwd_.h"
|
|
|
|
#include "grp_.h"
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
|
|
|
|
/* structs __________________________ */
|
|
|
|
|
|
|
|
/* data _____________________________ */
|
|
|
|
|
|
|
|
/* defaults : should this be in an external file? */
|
|
|
|
static const char default_passwd[] = "x";
|
|
|
|
|
|
|
|
|
|
|
|
/* make sure gr_name isn't taken, make sure gid is kosher
|
|
|
|
* return 1 on failure */
|
|
|
|
static int group_study(const char *filename, struct group *g)
|
|
|
|
{
|
|
|
|
FILE *etc_group;
|
|
|
|
gid_t desired;
|
|
|
|
|
|
|
|
struct group *grp;
|
|
|
|
const int max = 65000;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
etc_group = bb_xfopen(filename, "r");
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
/* make sure gr_name isn't taken, make sure gid is kosher */
|
|
|
|
desired = g->gr_gid;
|
|
|
|
while ((grp = fgetgrent(etc_group))) {
|
|
|
|
if ((strcmp(grp->gr_name, g->gr_name)) == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("%s: group already in use\n", g->gr_name);
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
if ((desired) && grp->gr_gid == desired) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("%d: gid has already been allocated\n",
|
2002-06-05 02:15:46 +05:30
|
|
|
desired);
|
|
|
|
}
|
|
|
|
if ((grp->gr_gid > g->gr_gid) && (grp->gr_gid < max)) {
|
|
|
|
g->gr_gid = grp->gr_gid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(etc_group);
|
|
|
|
|
|
|
|
/* gid */
|
|
|
|
if (desired) {
|
|
|
|
g->gr_gid = desired;
|
|
|
|
} else {
|
|
|
|
g->gr_gid++;
|
|
|
|
}
|
|
|
|
/* return 1; */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* append a new user to the passwd file */
|
2002-12-12 14:27:16 +05:30
|
|
|
static int addgroup(const char *filename, char *group, gid_t gid, const char *user)
|
2002-06-05 02:15:46 +05:30
|
|
|
{
|
|
|
|
FILE *etc_group;
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_SHADOWPASSWDS
|
|
|
|
FILE *etc_gshadow;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct group gr;
|
|
|
|
|
|
|
|
/* group:passwd:gid:userlist */
|
|
|
|
static const char entryfmt[] = "%s:%s:%d:%s\n";
|
|
|
|
|
|
|
|
/* make sure gid and group haven't already been allocated */
|
|
|
|
gr.gr_gid = gid;
|
|
|
|
gr.gr_name = group;
|
|
|
|
if (group_study(filename, &gr))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* add entry to group */
|
2003-03-19 14:43:01 +05:30
|
|
|
etc_group = bb_xfopen(filename, "a");
|
2002-06-05 02:15:46 +05:30
|
|
|
|
2002-12-12 14:27:16 +05:30
|
|
|
fprintf(etc_group, entryfmt, group, default_passwd, gr.gr_gid, user);
|
2002-06-05 02:15:46 +05:30
|
|
|
fclose(etc_group);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_FEATURE_SHADOWPASSWDS
|
|
|
|
/* add entry to gshadow if necessary */
|
2003-03-19 14:43:01 +05:30
|
|
|
if (access(bb_path_gshadow_file, F_OK|W_OK) == 0) {
|
|
|
|
etc_gshadow = bb_xfopen(bb_path_gshadow_file, "a");
|
2002-06-05 02:15:46 +05:30
|
|
|
fprintf(etc_gshadow, "%s:!::\n", group);
|
|
|
|
fclose(etc_gshadow);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* return 1; */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-06-20 14:31:58 +05:30
|
|
|
#ifndef CONFIG_ADDUSER
|
|
|
|
static inline void if_i_am_not_root(void)
|
|
|
|
{
|
|
|
|
if (geteuid()) {
|
|
|
|
bb_error_msg_and_die( "Only root may add a user or group to the system.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
extern void if_i_am_not_root(void);
|
|
|
|
#endif
|
|
|
|
|
2002-06-05 02:15:46 +05:30
|
|
|
/*
|
|
|
|
* addgroup will take a login_name as its first parameter.
|
|
|
|
*
|
|
|
|
* gid
|
|
|
|
*
|
|
|
|
* can be customized via command-line parameters.
|
|
|
|
* ________________________________________________________________________ */
|
|
|
|
int addgroup_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
char *group;
|
2002-12-12 14:27:16 +05:30
|
|
|
char *user;
|
2002-06-05 02:15:46 +05:30
|
|
|
gid_t gid = 0;
|
|
|
|
|
2003-01-10 00:23:53 +05:30
|
|
|
/* get remaining args */
|
2003-06-20 14:31:58 +05:30
|
|
|
if(bb_getopt_ulflags(argc, argv, "g:", &group)) {
|
|
|
|
gid = strtol(group, NULL, 10);
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|
|
|
|
|
2003-01-10 00:23:53 +05:30
|
|
|
if (optind < argc) {
|
|
|
|
group = argv[optind];
|
|
|
|
optind++;
|
2002-11-14 16:40:14 +05:30
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-11-14 16:40:14 +05:30
|
|
|
}
|
2003-01-10 00:23:53 +05:30
|
|
|
|
|
|
|
if (optind < argc) {
|
|
|
|
user = argv[optind];
|
|
|
|
optind++;
|
2002-12-12 14:27:16 +05:30
|
|
|
} else {
|
|
|
|
user = "";
|
|
|
|
}
|
2003-06-20 14:31:58 +05:30
|
|
|
if_i_am_not_root();
|
2002-06-05 02:15:46 +05:30
|
|
|
|
|
|
|
/* werk */
|
2003-03-19 14:43:01 +05:30
|
|
|
return addgroup(bb_path_group_file, group, gid, user);
|
2002-06-05 02:15:46 +05:30
|
|
|
}
|