2007-07-21 02:59:49 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* update_passwd
|
|
|
|
*
|
|
|
|
* update_passwd is a common function for passwd and chpasswd applets;
|
|
|
|
* it is responsible for updating password file (i.e. /etc/passwd or
|
|
|
|
* /etc/shadow) for a given user and password.
|
|
|
|
*
|
|
|
|
* Moved from loginutils/passwd.c by Alexander Shishkin <virtuoso@slind.org>
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
2009-04-14 06:21:05 +05:30
|
|
|
* Modified to be able to add or delete users, groups and users to/from groups
|
|
|
|
* by Tito Ragusa <farmatito@tiscali.it>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2007-07-21 02:59:49 +05:30
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2007-10-20 07:30:49 +05:30
|
|
|
#if ENABLE_SELINUX
|
|
|
|
static void check_selinux_update_passwd(const char *username)
|
|
|
|
{
|
|
|
|
security_context_t context;
|
|
|
|
char *seuser;
|
|
|
|
|
|
|
|
if (getuid() != (uid_t)0 || is_selinux_enabled() == 0)
|
2010-10-28 22:27:19 +05:30
|
|
|
return; /* No need to check */
|
2007-10-20 07:30:49 +05:30
|
|
|
|
|
|
|
if (getprevcon_raw(&context) < 0)
|
|
|
|
bb_perror_msg_and_die("getprevcon failed");
|
|
|
|
seuser = strtok(context, ":");
|
|
|
|
if (!seuser)
|
|
|
|
bb_error_msg_and_die("invalid context '%s'", context);
|
|
|
|
if (strcmp(seuser, username) != 0) {
|
|
|
|
if (checkPasswdAccess(PASSWD__PASSWD) != 0)
|
|
|
|
bb_error_msg_and_die("SELinux: access denied");
|
|
|
|
}
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
freecon(context);
|
|
|
|
}
|
|
|
|
#else
|
2009-04-14 06:21:05 +05:30
|
|
|
# define check_selinux_update_passwd(username) ((void)0)
|
2007-10-20 07:30:49 +05:30
|
|
|
#endif
|
|
|
|
|
2009-04-14 06:21:05 +05:30
|
|
|
/*
|
|
|
|
1) add a user: update_passwd(FILE, USER, REMAINING_PWLINE, NULL)
|
|
|
|
only if CONFIG_ADDUSER=y and applet_name[0] == 'a' like in adduser
|
|
|
|
|
|
|
|
2) add a group: update_passwd(FILE, GROUP, REMAINING_GRLINE, NULL)
|
|
|
|
only if CONFIG_ADDGROUP=y and applet_name[0] == 'a' like in addgroup
|
|
|
|
|
|
|
|
3) add a user to a group: update_passwd(FILE, GROUP, NULL, MEMBER)
|
|
|
|
only if CONFIG_FEATURE_ADDUSER_TO_GROUP=y, applet_name[0] == 'a'
|
|
|
|
like in addgroup and member != NULL
|
|
|
|
|
|
|
|
4) delete a user: update_passwd(FILE, USER, NULL, NULL)
|
|
|
|
|
|
|
|
5) delete a group: update_passwd(FILE, GROUP, NULL, NULL)
|
|
|
|
|
|
|
|
6) delete a user from a group: update_passwd(FILE, GROUP, NULL, MEMBER)
|
|
|
|
only if CONFIG_FEATURE_DEL_USER_FROM_GROUP=y and member != NULL
|
|
|
|
|
2010-11-03 07:18:43 +05:30
|
|
|
7) change user's password: update_passwd(FILE, USER, NEW_PASSWD, NULL)
|
2009-04-14 06:21:05 +05:30
|
|
|
only if CONFIG_PASSWD=y and applet_name[0] == 'p' like in passwd
|
|
|
|
or if CONFIG_CHPASSWD=y and applet_name[0] == 'c' like in chpasswd
|
|
|
|
|
2015-03-12 20:00:46 +05:30
|
|
|
8) delete a user from all groups: update_passwd(FILE, NULL, NULL, MEMBER)
|
|
|
|
|
2009-04-14 06:21:05 +05:30
|
|
|
This function does not validate the arguments fed to it
|
|
|
|
so the calling program should take care of that.
|
|
|
|
|
|
|
|
Returns number of lines changed, or -1 on error.
|
|
|
|
*/
|
|
|
|
int FAST_FUNC update_passwd(const char *filename,
|
|
|
|
const char *name,
|
|
|
|
const char *new_passwd,
|
|
|
|
const char *member)
|
2007-07-21 02:59:49 +05:30
|
|
|
{
|
2009-04-14 06:21:05 +05:30
|
|
|
#if !(ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP)
|
|
|
|
#define member NULL
|
|
|
|
#endif
|
2007-07-21 02:59:49 +05:30
|
|
|
struct stat sb;
|
|
|
|
struct flock lock;
|
|
|
|
FILE *old_fp;
|
|
|
|
FILE *new_fp;
|
2007-07-21 18:55:28 +05:30
|
|
|
char *fnamesfx;
|
|
|
|
char *sfx_char;
|
2010-01-10 01:27:06 +05:30
|
|
|
char *name_colon;
|
2007-07-21 02:59:49 +05:30
|
|
|
int old_fd;
|
|
|
|
int new_fd;
|
|
|
|
int i;
|
2009-04-14 06:21:05 +05:30
|
|
|
int changed_lines;
|
2007-07-21 18:55:28 +05:30
|
|
|
int ret = -1; /* failure */
|
2009-07-13 04:45:30 +05:30
|
|
|
/* used as a bool: "are we modifying /etc/shadow?" */
|
|
|
|
#if ENABLE_FEATURE_SHADOWPASSWDS
|
|
|
|
const char *shadow = strstr(filename, "shadow");
|
|
|
|
#else
|
|
|
|
# define shadow NULL
|
|
|
|
#endif
|
2007-07-21 02:59:49 +05:30
|
|
|
|
2007-11-09 01:30:36 +05:30
|
|
|
filename = xmalloc_follow_symlinks(filename);
|
2007-11-08 06:42:38 +05:30
|
|
|
if (filename == NULL)
|
2009-04-14 06:21:05 +05:30
|
|
|
return ret;
|
2007-11-08 06:42:38 +05:30
|
|
|
|
2015-03-12 20:00:46 +05:30
|
|
|
if (name)
|
|
|
|
check_selinux_update_passwd(name);
|
2007-10-20 07:30:49 +05:30
|
|
|
|
2007-07-21 02:59:49 +05:30
|
|
|
/* New passwd file, "/etc/passwd+" for now */
|
2007-07-21 18:55:28 +05:30
|
|
|
fnamesfx = xasprintf("%s+", filename);
|
|
|
|
sfx_char = &fnamesfx[strlen(fnamesfx)-1];
|
2015-03-12 20:00:46 +05:30
|
|
|
name_colon = xasprintf("%s:", name ? name : "");
|
2007-07-21 02:59:49 +05:30
|
|
|
|
2009-07-13 04:45:30 +05:30
|
|
|
if (shadow)
|
2009-04-14 06:21:05 +05:30
|
|
|
old_fp = fopen(filename, "r+");
|
|
|
|
else
|
|
|
|
old_fp = fopen_or_warn(filename, "r+");
|
2009-11-02 23:48:49 +05:30
|
|
|
if (!old_fp) {
|
|
|
|
if (shadow)
|
|
|
|
ret = 0; /* missing shadow is not an error */
|
2007-07-21 02:59:49 +05:30
|
|
|
goto free_mem;
|
2009-11-02 23:48:49 +05:30
|
|
|
}
|
2007-07-21 02:59:49 +05:30
|
|
|
old_fd = fileno(old_fp);
|
|
|
|
|
2007-10-20 07:30:49 +05:30
|
|
|
selinux_preserve_fcontext(old_fd);
|
|
|
|
|
2007-07-21 02:59:49 +05:30
|
|
|
/* Try to create "/etc/passwd+". Wait if it exists. */
|
|
|
|
i = 30;
|
|
|
|
do {
|
|
|
|
// FIXME: on last iteration try w/o O_EXCL but with O_TRUNC?
|
2007-07-21 18:55:28 +05:30
|
|
|
new_fd = open(fnamesfx, O_WRONLY|O_CREAT|O_EXCL, 0600);
|
2007-07-21 02:59:49 +05:30
|
|
|
if (new_fd >= 0) goto created;
|
|
|
|
if (errno != EEXIST) break;
|
|
|
|
usleep(100000); /* 0.1 sec */
|
|
|
|
} while (--i);
|
2009-04-14 06:21:05 +05:30
|
|
|
bb_perror_msg("can't create '%s'", fnamesfx);
|
2007-07-21 02:59:49 +05:30
|
|
|
goto close_old_fp;
|
|
|
|
|
|
|
|
created:
|
2010-08-31 16:12:06 +05:30
|
|
|
if (fstat(old_fd, &sb) == 0) {
|
2007-07-21 02:59:49 +05:30
|
|
|
fchmod(new_fd, sb.st_mode & 0777); /* ignore errors */
|
|
|
|
fchown(new_fd, sb.st_uid, sb.st_gid);
|
|
|
|
}
|
2009-04-14 06:21:05 +05:30
|
|
|
errno = 0;
|
2009-11-16 03:58:11 +05:30
|
|
|
new_fp = xfdopen_for_write(new_fd);
|
2007-07-21 02:59:49 +05:30
|
|
|
|
|
|
|
/* Backup file is "/etc/passwd-" */
|
2007-07-21 18:55:28 +05:30
|
|
|
*sfx_char = '-';
|
|
|
|
/* Delete old backup */
|
|
|
|
i = (unlink(fnamesfx) && errno != ENOENT);
|
|
|
|
/* Create backup as a hardlink to current */
|
|
|
|
if (i || link(filename, fnamesfx))
|
2009-04-14 06:21:05 +05:30
|
|
|
bb_perror_msg("warning: can't create backup copy '%s'",
|
|
|
|
fnamesfx);
|
2007-07-21 18:55:28 +05:30
|
|
|
*sfx_char = '+';
|
2007-07-21 02:59:49 +05:30
|
|
|
|
|
|
|
/* Lock the password file before updating */
|
|
|
|
lock.l_type = F_WRLCK;
|
|
|
|
lock.l_whence = SEEK_SET;
|
|
|
|
lock.l_start = 0;
|
|
|
|
lock.l_len = 0;
|
|
|
|
if (fcntl(old_fd, F_SETLK, &lock) < 0)
|
2009-04-14 06:21:05 +05:30
|
|
|
bb_perror_msg("warning: can't lock '%s'", filename);
|
2007-07-21 02:59:49 +05:30
|
|
|
lock.l_type = F_UNLCK;
|
|
|
|
|
2007-07-21 18:55:28 +05:30
|
|
|
/* Read current password file, write updated /etc/passwd+ */
|
2009-04-14 06:21:05 +05:30
|
|
|
changed_lines = 0;
|
2007-07-21 02:59:49 +05:30
|
|
|
while (1) {
|
2009-04-14 06:21:05 +05:30
|
|
|
char *cp, *line;
|
|
|
|
|
|
|
|
line = xmalloc_fgetline(old_fp);
|
|
|
|
if (!line) /* EOF/error */
|
|
|
|
break;
|
2015-03-12 20:00:46 +05:30
|
|
|
|
|
|
|
if (!name && member) {
|
|
|
|
/* Delete member from all groups */
|
|
|
|
/* line is "GROUP:PASSWD:[member1[,member2]...]" */
|
|
|
|
unsigned member_len = strlen(member);
|
|
|
|
char *list = strrchr(line, ':');
|
|
|
|
while (list) {
|
|
|
|
list++;
|
|
|
|
next_list_element:
|
2015-03-12 22:18:34 +05:30
|
|
|
if (is_prefixed_with(list, member)) {
|
2015-03-12 20:00:46 +05:30
|
|
|
char c;
|
|
|
|
changed_lines++;
|
|
|
|
c = list[member_len];
|
|
|
|
if (c == '\0') {
|
|
|
|
if (list[-1] == ',')
|
|
|
|
list--;
|
|
|
|
*list = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (c == ',') {
|
|
|
|
overlapping_strcpy(list, list + member_len + 1);
|
|
|
|
goto next_list_element;
|
|
|
|
}
|
|
|
|
changed_lines--;
|
|
|
|
}
|
|
|
|
list = strchr(list, ',');
|
|
|
|
}
|
|
|
|
fprintf(new_fp, "%s\n", line);
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
2015-03-12 22:18:34 +05:30
|
|
|
cp = is_prefixed_with(line, name_colon);
|
|
|
|
if (!cp) {
|
2009-04-14 06:21:05 +05:30
|
|
|
fprintf(new_fp, "%s\n", line);
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have a match with "name:"... */
|
2015-03-12 22:18:34 +05:30
|
|
|
/* cp points past "name:" */
|
2009-04-14 06:21:05 +05:30
|
|
|
|
|
|
|
#if ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP
|
|
|
|
if (member) {
|
|
|
|
/* It's actually /etc/group+, not /etc/passwd+ */
|
|
|
|
if (ENABLE_FEATURE_ADDUSER_TO_GROUP
|
|
|
|
&& applet_name[0] == 'a'
|
|
|
|
) {
|
|
|
|
/* Add user to group */
|
|
|
|
fprintf(new_fp, "%s%s%s\n", line,
|
|
|
|
last_char_is(line, ':') ? "" : ",",
|
|
|
|
member);
|
|
|
|
changed_lines++;
|
|
|
|
} else if (ENABLE_FEATURE_DEL_USER_FROM_GROUP
|
|
|
|
/* && applet_name[0] == 'd' */
|
|
|
|
) {
|
|
|
|
/* Delete user from group */
|
|
|
|
char *tmp;
|
|
|
|
const char *fmt = "%s";
|
|
|
|
|
|
|
|
/* find the start of the member list: last ':' */
|
|
|
|
cp = strrchr(line, ':');
|
|
|
|
/* cut it */
|
|
|
|
*cp++ = '\0';
|
|
|
|
/* write the cut line name:passwd:gid:
|
|
|
|
* or name:!:: */
|
|
|
|
fprintf(new_fp, "%s:", line);
|
|
|
|
/* parse the tokens of the member list */
|
|
|
|
tmp = cp;
|
|
|
|
while ((cp = strsep(&tmp, ",")) != NULL) {
|
|
|
|
if (strcmp(member, cp) != 0) {
|
|
|
|
fprintf(new_fp, fmt, cp);
|
|
|
|
fmt = ",%s";
|
|
|
|
} else {
|
|
|
|
/* found member, skip it */
|
|
|
|
changed_lines++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(new_fp, "\n");
|
|
|
|
}
|
2007-07-21 02:59:49 +05:30
|
|
|
} else
|
2009-04-14 06:21:05 +05:30
|
|
|
#endif
|
|
|
|
if ((ENABLE_PASSWD && applet_name[0] == 'p')
|
|
|
|
|| (ENABLE_CHPASSWD && applet_name[0] == 'c')
|
|
|
|
) {
|
|
|
|
/* Change passwd */
|
|
|
|
cp = strchrnul(cp, ':'); /* move past old passwd */
|
2009-07-13 04:45:30 +05:30
|
|
|
|
|
|
|
if (shadow && *cp == ':') {
|
|
|
|
/* /etc/shadow's field 3 (passwd change date) needs updating */
|
|
|
|
/* move past old change date */
|
|
|
|
cp = strchrnul(cp + 1, ':');
|
|
|
|
/* "name:" + "new_passwd" + ":" + "change date" + ":rest of line" */
|
2010-01-10 01:27:06 +05:30
|
|
|
fprintf(new_fp, "%s%s:%u%s\n", name_colon, new_passwd,
|
2009-07-13 04:45:30 +05:30
|
|
|
(unsigned)(time(NULL)) / (24*60*60), cp);
|
|
|
|
} else {
|
|
|
|
/* "name:" + "new_passwd" + ":rest of line" */
|
2010-01-10 01:27:06 +05:30
|
|
|
fprintf(new_fp, "%s%s%s\n", name_colon, new_passwd, cp);
|
2009-07-13 04:45:30 +05:30
|
|
|
}
|
2009-04-14 06:21:05 +05:30
|
|
|
changed_lines++;
|
|
|
|
} /* else delete user or group: skip the line */
|
|
|
|
next:
|
2007-07-21 02:59:49 +05:30
|
|
|
free(line);
|
|
|
|
}
|
2009-04-14 06:21:05 +05:30
|
|
|
|
|
|
|
if (changed_lines == 0) {
|
2010-01-10 01:27:06 +05:30
|
|
|
#if ENABLE_FEATURE_ADDUSER_TO_GROUP || ENABLE_FEATURE_DEL_USER_FROM_GROUP
|
|
|
|
if (member) {
|
|
|
|
if (ENABLE_ADDGROUP && applet_name[0] == 'a')
|
|
|
|
bb_error_msg("can't find %s in %s", name, filename);
|
|
|
|
if (ENABLE_DELGROUP && applet_name[0] == 'd')
|
|
|
|
bb_error_msg("can't find %s in %s", member, filename);
|
|
|
|
}
|
2009-04-14 13:36:59 +05:30
|
|
|
#endif
|
2009-04-14 06:21:05 +05:30
|
|
|
if ((ENABLE_ADDUSER || ENABLE_ADDGROUP)
|
|
|
|
&& applet_name[0] == 'a' && !member
|
|
|
|
) {
|
|
|
|
/* add user or group */
|
2010-01-10 01:27:06 +05:30
|
|
|
fprintf(new_fp, "%s%s\n", name_colon, new_passwd);
|
2009-04-14 06:21:05 +05:30
|
|
|
changed_lines++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-21 02:59:49 +05:30
|
|
|
fcntl(old_fd, F_SETLK, &lock);
|
|
|
|
|
|
|
|
/* We do want all of them to execute, thus | instead of || */
|
2009-04-14 06:21:05 +05:30
|
|
|
errno = 0;
|
2007-07-21 02:59:49 +05:30
|
|
|
if ((ferror(old_fp) | fflush(new_fp) | fsync(new_fd) | fclose(new_fp))
|
2007-07-21 18:55:28 +05:30
|
|
|
|| rename(fnamesfx, filename)
|
2007-07-21 02:59:49 +05:30
|
|
|
) {
|
|
|
|
/* At least one of those failed */
|
2009-04-14 06:21:05 +05:30
|
|
|
bb_perror_nomsg();
|
2007-07-21 02:59:49 +05:30
|
|
|
goto unlink_new;
|
|
|
|
}
|
2009-04-14 06:21:05 +05:30
|
|
|
/* Success: ret >= 0 */
|
|
|
|
ret = changed_lines;
|
2007-07-21 02:59:49 +05:30
|
|
|
|
|
|
|
unlink_new:
|
2009-04-14 06:21:05 +05:30
|
|
|
if (ret < 0)
|
|
|
|
unlink(fnamesfx);
|
2007-07-21 02:59:49 +05:30
|
|
|
|
|
|
|
close_old_fp:
|
|
|
|
fclose(old_fp);
|
|
|
|
|
|
|
|
free_mem:
|
2007-07-21 18:55:28 +05:30
|
|
|
free(fnamesfx);
|
2007-11-08 06:42:38 +05:30
|
|
|
free((char *)filename);
|
2010-01-10 01:27:06 +05:30
|
|
|
free(name_colon);
|
2007-07-21 02:59:49 +05:30
|
|
|
return ret;
|
|
|
|
}
|