This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/unix/mbuseradd.c

519 lines
13 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2002-01-11 19:01:00 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: setuid root version of useradd
*
*****************************************************************************
2007-05-28 10:40:24 +00:00
* Copyright (C) 1997-2007
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS 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, or (at your option) any
* later version.
*
* MBSE BBS 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 MBSE BBS; see the file COPYING. If not, write to the Free
2003-08-15 20:05:34 +00:00
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
2001-08-17 05:46:24 +00:00
*****************************************************************************/
#include "../config.h"
#include <stdio.h>
#include <stdlib.h>
#include <pwd.h>
#include <sys/types.h>
2005-08-27 14:17:14 +00:00
#include <grp.h>
2001-08-17 05:46:24 +00:00
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <sys/wait.h>
2001-08-25 19:53:11 +00:00
#include <sys/param.h>
2004-02-09 14:36:34 +00:00
#include <syslog.h>
#include <time.h>
2001-08-17 05:46:24 +00:00
2007-05-28 10:40:24 +00:00
#if (defined(__FreeBSD__) && __FreeBSD_version >= 600000)
#define FreeBSD_sysctl 1
#endif
#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(FreeBSD_sysctl)
2005-08-31 20:16:52 +00:00
#include <sys/sysctl.h>
#endif
2005-08-27 14:17:14 +00:00
#include "xmalloc.h"
2001-08-17 05:46:24 +00:00
#include "mbuseradd.h"
/*
* Milliseconds timer, returns 0 on success.
*/
int msleep(int msecs)
{
int rc;
struct timespec req, rem;
rem.tv_sec = 0;
rem.tv_nsec = 0;
req.tv_sec = msecs / 1000;
req.tv_nsec = (msecs % 1000) * 1000000;
while (1) {
rc = nanosleep(&req, &rem);
if (rc == 0)
break;
if ((errno == EINVAL) || (errno == EFAULT))
break;
/*
* Error was EINTR, run timer again to complete.
*/
req.tv_sec = rem.tv_sec;
req.tv_nsec = rem.tv_nsec;
rem.tv_sec = 0;
rem.tv_nsec = 0;
}
return rc;
}
2001-08-17 05:46:24 +00:00
2004-03-02 20:47:23 +00:00
int execute(char **args, char *in, char *out, char *err)
2001-08-17 05:46:24 +00:00
{
2004-03-02 20:47:23 +00:00
char buf[PATH_MAX];
2004-02-09 14:36:34 +00:00
int i, pid, status = 0, rc = 0;
2005-08-27 14:17:14 +00:00
memset(&buf, 0, sizeof(buf));
2004-03-02 20:47:23 +00:00
for (i = 0; i < 16; i++) {
if (args[i])
2005-08-30 18:38:39 +00:00
snprintf(buf + strlen(buf), PATH_MAX - strlen(buf), " %s", args[i]);
2004-03-02 20:47:23 +00:00
else
break;
}
syslog(LOG_WARNING, "Execute:%s", buf);
2004-02-09 14:36:34 +00:00
fflush(stdout);
fflush(stderr);
if ((pid = fork()) == 0) {
msleep(150);
2004-02-09 14:36:34 +00:00
if (in) {
close(0);
if (open(in, O_RDONLY) != 0) {
syslog(LOG_WARNING, "Reopen of stdin to %s failed", in);
2001-08-25 19:53:11 +00:00
_exit(-1);
2004-02-09 14:36:34 +00:00
}
2001-08-17 05:46:24 +00:00
}
2004-02-09 14:36:34 +00:00
if (out) {
close(1);
if (open(out, O_WRONLY | O_APPEND | O_CREAT,0600) != 1) {
syslog(LOG_WARNING, "Reopen of stdout to %s failed", out);
_exit(-1);
}
}
if (err) {
close(2);
if (open(err, O_WRONLY | O_APPEND | O_CREAT,0600) != 2) {
syslog(LOG_WARNING, "Reopen of stderr to %s failed", err);
_exit(-1);
}
}
2004-03-02 20:47:23 +00:00
rc = execv(args[0],args);
syslog(LOG_WARNING, "Exec \"%s\" returned %d", args[0], rc);
2004-02-09 14:36:34 +00:00
_exit(-1);
}
2001-08-17 05:46:24 +00:00
2004-02-09 14:36:34 +00:00
do {
rc = wait(&status);
} while (((rc > 0) && (rc != pid)) || ((rc == -1) && (errno == EINTR)));
2001-08-17 05:46:24 +00:00
2004-02-09 14:36:34 +00:00
return 0;
2001-08-17 05:46:24 +00:00
}
void makedir(char *path, mode_t mode, uid_t owner, gid_t group)
{
2004-02-09 14:36:34 +00:00
if (mkdir(path, mode) != 0) {
2004-03-16 20:54:51 +00:00
syslog(LOG_WARNING, "Can't create directory %s:%s", path, strerror(errno));
2004-02-09 14:36:34 +00:00
exit(2);
}
if ((chown(path, owner, group)) == -1) {
syslog(LOG_WARNING, "Unable to change ownership of %s", path);
exit(2);
}
2001-08-17 05:46:24 +00:00
}
2005-08-27 14:17:14 +00:00
/*
* Internal version of basename to make this better portable.
*/
char *Basename(char *str)
{
char *cp = strrchr(str, '/');
return cp ? cp+1 : str;
}
2001-08-17 05:46:24 +00:00
/*
* Function will create the users name in the passwd file
* Note that this function must run setuid root!
*/
int main(int argc, char *argv[])
{
2005-08-27 14:17:14 +00:00
char *temp, *shell, *homedir, *args[16], *parent;
2004-02-09 14:36:34 +00:00
int i;
struct passwd *pwent, *pwuser;
2005-08-27 14:17:14 +00:00
struct group *gr;
pid_t ppid;
2005-09-02 19:52:31 +00:00
#if defined(__OpenBSD__)
2005-08-31 20:16:52 +00:00
#define ARG_SIZE 60
2005-08-31 20:22:20 +00:00
static char **s, buf[ARG_SIZE];
size_t siz = 100;
char **p;
int mib[4];
2007-05-28 10:40:24 +00:00
#elif defined(__NetBSD__) || defined(FreeBSD_sysctl)
2005-09-02 19:52:31 +00:00
static char **s;
size_t siz = 100;
int mib[4];
2005-08-31 20:16:52 +00:00
#else
2005-08-27 14:17:14 +00:00
FILE *fp;
2005-08-31 20:16:52 +00:00
#endif
2004-02-09 14:36:34 +00:00
if (argc != 5)
Help();
/*
* First simple check for argument overflow
*/
for (i = 1; i < 5; i++) {
if (strlen(argv[i]) > 80) {
fprintf(stderr, "mbuseradd: Argument %d is too long\n", i);
exit(1);
2001-08-17 05:46:24 +00:00
}
2004-02-09 14:36:34 +00:00
}
2005-08-27 14:17:14 +00:00
/*
* Check calling username
*/
ppid = getuid();
pwent = getpwuid(ppid);
if (!pwent) {
fprintf(stderr, "mbuseradd: Cannot determine your user name.\n");
exit(1);
}
if (strcmp(pwent->pw_name, (char *)"mbse") && strcmp(pwent->pw_name, (char *)"bbs")) {
fprintf(stderr, "mbuseradd: only users `mbse' and `bbs' may do this.\n");
exit(1);
}
/*
* Get my groupname, this must be "bbs", other users may not
* use this program, not even root.
*/
gr = getgrgid(pwent->pw_gid);
if (!gr) {
fprintf(stderr, "mbuseradd: Cannot determine group name.\n");
exit(1);
}
if (strcmp(gr->gr_name, (char *)"bbs")) {
fprintf(stderr, "mbuseradd: You are not a member of group `bbs'.\n");
exit(1);
}
/*
* Find out the name of our parent.
*/
temp = calloc(PATH_MAX, sizeof(char));
2005-08-31 20:16:52 +00:00
ppid = getppid();
2005-08-31 19:48:45 +00:00
2005-09-02 19:52:31 +00:00
#if defined(__OpenBSD__)
2005-08-31 20:16:52 +00:00
/*
* Systems that use sysctl to get process information
*/
2005-08-31 19:48:45 +00:00
mib[0] = CTL_KERN;
mib[1] = KERN_PROC_ARGS;
mib[2] = ppid;
mib[3] = KERN_PROC_ARGV;
2005-08-31 20:16:52 +00:00
if ((s = realloc(s, siz)) == NULL) {
fprintf(stderr, "mbuseradd: no memory\n");
exit(1);
}
if (sysctl(mib, 4, s, &siz, NULL, 0) == -1) {
perror("");
fprintf(stderr, "mbuseradd: sysctl call failed\n");
exit(1);
}
2005-08-31 19:48:45 +00:00
buf[0] = '\0';
2005-09-02 19:52:31 +00:00
for (p = s; *p != NULL; p++) {
if (p != s)
strlcat(buf, " ", sizeof(buf));
strlcat(buf, *p, sizeof(buf));
}
parent = xstrcpy(buf);
#elif defined(__NetBSD__)
/*
* Systems that use sysctl to get process information
*/
mib[0] = CTL_KERN;
mib[1] = KERN_PROC_ARGS;
mib[2] = ppid;
mib[3] = KERN_PROC_ARGV;
if ((s = realloc(s, siz)) == NULL) {
fprintf(stderr, "mbuseradd: no memory\n");
exit(1);
}
if (sysctl(mib, 4, s, &siz, NULL, 0) == -1) {
perror("");
fprintf(stderr, "mbuseradd: sysctl call failed\n");
exit(1);
}
2005-09-02 20:02:16 +00:00
parent = xstrcpy((char *)s);
2007-05-28 10:40:24 +00:00
#elif defined(FreeBSD_sysctl)
/*
* For FreeBSD 6.0 and later.
*/
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_ARGS;
mib[3] = ppid;
if ((s = realloc(s, siz)) == NULL) {
fprintf(stderr, "mbuseradd: no memory\n");
exit(1);
}
if (sysctl(mib, 4, s, &siz, NULL, 0) == -1) {
perror("");
fprintf(stderr, "mbuseradd: sysctl call failed\n");
exit(1);
}
parent = xstrcpy((char *)s);
2005-08-30 21:07:12 +00:00
#else
2005-08-31 20:16:52 +00:00
/*
2007-05-28 10:40:24 +00:00
* Systems with /proc filesystem like Linux, old FreeBSD
2005-08-31 20:16:52 +00:00
*/
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "/proc/%d/cmdline", ppid);
2005-08-27 14:17:14 +00:00
if ((fp = fopen(temp, "r")) == NULL) {
fprintf(stderr, "mbuseradd: can't read %s\n", temp);
exit(1);
}
fgets(temp, PATH_MAX-1, fp);
fclose(fp);
parent = xstrcpy(Basename(temp));
2005-08-31 20:16:52 +00:00
#endif
2005-08-27 14:17:14 +00:00
if (strcmp((char *)"-mbnewusr", parent)) {
2005-09-02 20:02:16 +00:00
fprintf(stderr, "mbuseradd: illegal parent \"%s\"\n", parent);
2005-08-27 14:17:14 +00:00
free(temp);
free(parent);
exit(1);
}
2004-03-02 20:47:23 +00:00
memset(args, 0, sizeof(args));
2004-02-09 14:36:34 +00:00
shell = calloc(PATH_MAX, sizeof(char));
2004-03-02 20:47:23 +00:00
homedir = calloc(PATH_MAX, sizeof(char));
2004-02-09 14:36:34 +00:00
if (setuid(0) == -1 || setgid(1) == -1) {
perror("");
fprintf(stderr, "mbuseradd: Unable to setuid(root) or setgid(root)\n");
fprintf(stderr, "Make sure that this program is set to -rwsr-sr-x\n");
fprintf(stderr, "Owner must be root and group root\n");
exit(1);
}
umask(0000);
/*
* We don't log into MBSE BBS logfiles but to the system logfiles,
* because we are modifying system files not belonging to MBSE BBS.
*/
openlog("mbuseradd", LOG_PID|LOG_CONS|LOG_NOWAIT, LOG_AUTH);
syslog(LOG_WARNING, "mbuseradd %s %s %s %s", argv[1], argv[2], argv[3], argv[4]);
/*
* Build command to add user entry to the /etc/passwd and /etc/shadow
* files. We use the systems own useradd program.
*/
2004-12-28 15:30:52 +00:00
#if defined(__linux__) || defined(__NetBSD__) || defined(__OpenBSD__)
2004-02-09 14:36:34 +00:00
if ((access("/usr/bin/useradd", R_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/usr/bin/useradd";
2004-02-09 14:36:34 +00:00
else if ((access("/bin/useradd", R_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/bin/useradd";
2004-02-09 14:36:34 +00:00
else if ((access("/usr/sbin/useradd", R_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/usr/sbin/useradd";
2004-02-09 14:36:34 +00:00
else if ((access("/sbin/useradd", R_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/sbin/useradd";
2004-02-09 14:36:34 +00:00
else {
syslog(LOG_WARNING, "Can't find useradd");
exit(1);
}
2001-08-25 19:53:11 +00:00
#elif __FreeBSD__
2004-02-09 14:36:34 +00:00
if ((access("/usr/sbin/pw", X_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/usr/sbin/pw";
2004-02-09 14:36:34 +00:00
else if ((access("/sbin/pw", X_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/sbin/pw";
2004-02-09 14:36:34 +00:00
else {
syslog(LOG_WARNING, "Can't find pw");
2001-08-25 19:53:11 +00:00
exit(1);
2004-02-09 14:36:34 +00:00
}
#else
2005-01-07 21:46:24 +00:00
#error "Don't know how to add a user on this OS"
2001-08-25 19:53:11 +00:00
#endif
2001-08-17 05:46:24 +00:00
2005-08-30 17:53:35 +00:00
snprintf(shell, PATH_MAX, "%s/bin/mbsebbs", getenv("MBSE_ROOT"));
snprintf(homedir, PATH_MAX, "%s/%s", argv[4], argv[2]);
2001-08-17 05:46:24 +00:00
#if defined(__linux__)
2004-03-02 20:47:23 +00:00
args[1] = (char *)"-c";
args[2] = argv[3];
args[3] = (char *)"-d";
args[4] = homedir;
args[5] = (char *)"-g";
args[6] = argv[1];
args[7] = (char *)"-s";
args[8] = shell;
args[9] = argv[2];
args[10] = NULL;
2005-01-07 21:46:24 +00:00
#elif defined(__NetBSD__) || defined(__OpenBSD__)
args[1] = (char *)"-c";
args[2] = argv[3];
args[3] = (char *)"-d";
args[4] = homedir;
args[5] = (char *)"-g";
args[6] = argv[1];
args[7] = (char *)"-s";
args[8] = shell;
args[9] = (char *)"-m";
args[10] = argv[2];
args[11] = NULL;
2005-01-07 21:46:24 +00:00
#elif defined(__FreeBSD__)
2004-03-02 20:47:23 +00:00
args[1] = (char *)"useradd";
args[2] = argv[2];
args[3] = (char *)"-c";
args[4] = argv[3];
args[5] = (char *)"-d";
args[6] = homedir;
args[7] = (char *)"-g";
args[8] = argv[1];
args[9] = (char *)"-s";
args[10] = shell;
args[11] = NULL;
2005-01-07 21:46:24 +00:00
#else
#error "Don't know how to add a user on this OS"
2001-08-25 19:53:11 +00:00
#endif
2001-08-17 05:46:24 +00:00
2004-03-02 20:47:23 +00:00
if (execute(args, (char *)"/dev/tty", (char *)"/dev/tty", (char *)"/dev/tty") != 0) {
2004-02-09 14:36:34 +00:00
syslog(LOG_WARNING, "Failed to create unix account");
exit(1);
}
2004-03-02 20:47:23 +00:00
syslog(LOG_WARNING, "Created Unix account");
2004-02-09 14:36:34 +00:00
/*
* Now create directories and files for this user.
*/
if ((pwent = getpwnam((char *)"mbse")) == NULL) {
syslog(LOG_WARNING, "Can't get password entry for \"mbse\"");
exit(2);
}
/*
*
* Check bbs users base home directory
*/
2004-03-02 20:47:23 +00:00
if ((access(argv[4], R_OK)) != 0) {
syslog(LOG_WARNING, "No bbs base homedirectory, creating..");
2004-02-09 14:36:34 +00:00
makedir(argv[4], 0770, pwent->pw_uid, pwent->pw_gid);
2004-03-02 20:47:23 +00:00
}
2004-02-09 14:36:34 +00:00
/*
* Now create users home directory. Check for an existing directory,
* some systems have already created a home directory. If one is found
* it is removed to create a fresh one.
*/
2004-03-16 20:54:51 +00:00
if ((access(homedir, R_OK)) == 0) {
2004-02-09 14:36:34 +00:00
if ((access("/bin/rm", X_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/bin/rm";
2004-02-09 14:36:34 +00:00
else if ((access("/usr/bin/rm", X_OK)) == 0)
2004-03-02 20:47:23 +00:00
args[0] = (char *)"/usr/bin/rm";
2004-02-09 14:36:34 +00:00
else {
syslog(LOG_WARNING, "Can't find rm");
exit(2);
2001-08-17 05:46:24 +00:00
}
2004-03-02 20:47:23 +00:00
args[1] = (char *)"-Rf";
args[2] = homedir;
args[3] = NULL;
i = execute(args, (char *)"/dev/tty", (char *)"/dev/tty", (char *)"/dev/tty");
2004-02-09 14:36:34 +00:00
if (i != 0) {
syslog(LOG_WARNING, "Unable remove old home directory");
exit(2);
}
}
/*
* Create users home directory.
*/
if ((pwuser = getpwnam(argv[2])) == NULL) {
syslog(LOG_WARNING, "Can't get passwd entry for %s", argv[2]);
exit(2);
}
2004-03-02 20:47:23 +00:00
makedir(homedir, 0770, pwuser->pw_uid, pwent->pw_gid);
2004-02-09 14:36:34 +00:00
/*
* Create Maildir and subdirs for Qmail.
*/
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "%s/%s/Maildir", argv[4], argv[2]);
2004-02-09 14:36:34 +00:00
makedir(temp, 0700, pwuser->pw_uid, pwent->pw_gid);
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "%s/%s/Maildir/cur", argv[4], argv[2]);
2004-02-09 14:36:34 +00:00
makedir(temp, 0700, pwuser->pw_uid, pwent->pw_gid);
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "%s/%s/Maildir/new", argv[4], argv[2]);
2004-02-09 14:36:34 +00:00
makedir(temp, 0700, pwuser->pw_uid, pwent->pw_gid);
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "%s/%s/Maildir/tmp", argv[4], argv[2]);
2004-02-09 14:36:34 +00:00
makedir(temp, 0700, pwuser->pw_uid, pwent->pw_gid);
2001-08-17 05:46:24 +00:00
2002-02-24 21:20:25 +00:00
#ifdef _VPOPMAIL_PATH
2005-08-30 17:53:35 +00:00
snprintf(temp, PATH_MAX, "%s/vadduser", _VPOPMAIL_PATH);
2004-03-02 20:47:23 +00:00
args[0] = temp;
args[1] = argv[2];
args[2] = argv[2];
args[3] = NULL;
if (execute(args, (char *)"/dev/tty", (char *)"/dev/tty", (char *)"/dev/tty") != 0) {
2004-02-09 14:36:34 +00:00
syslog(LOG_WARNING, "Failed to create vpopmail account");
2004-03-02 20:47:23 +00:00
} else {
syslog(LOG_WARNING, "Created vpopmail account");
2004-02-09 14:36:34 +00:00
}
2002-02-24 21:20:25 +00:00
#endif
2004-02-09 14:36:34 +00:00
free(shell);
free(temp);
2004-03-02 20:47:23 +00:00
free(homedir);
2004-02-09 14:36:34 +00:00
syslog(LOG_WARNING, "Added system account for user\"%s\"", argv[2]);
exit(0);
2001-08-17 05:46:24 +00:00
}
void Help()
{
2004-02-09 14:36:34 +00:00
fprintf(stderr, "\nmbuseradd commandline:\n\n");
fprintf(stderr, "mbuseradd [gid] [name] [comment] [usersdir]\n");
exit(1);
2001-08-17 05:46:24 +00:00
}