1 /* vi: set sw=4 ts=4: */
12 #include <sys/resource.h>
17 static char crypt_passwd[128];
19 static int create_backup(const char *backup, FILE * fp);
20 static int new_password(const struct passwd *pw, int amroot, int algo);
21 static void set_filesize_limit(int blocks);
24 static int get_algo(char *a)
26 int x = 1; /* standard: MD5 */
28 if (strcasecmp(a, "des") == 0)
34 static int update_passwd(const struct passwd *pw, char *crypt_pw)
48 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
49 if (access(bb_path_shadow_file, F_OK) == 0) {
50 snprintf(filename, sizeof filename, "%s", bb_path_shadow_file);
54 snprintf(filename, sizeof filename, "%s", bb_path_passwd_file);
57 if (((fp = fopen(filename, "r+")) == 0) || (fstat(fileno(fp), &sb))) {
62 /* Lock the password file before updating */
63 lock.l_type = F_WRLCK;
64 lock.l_whence = SEEK_SET;
67 if (fcntl(fileno(fp), F_SETLK, &lock) < 0) {
68 fprintf(stderr, "%s: %s\n", filename, strerror(errno));
71 lock.l_type = F_UNLCK;
73 snprintf(buf, sizeof buf, "%s-", filename);
74 if (create_backup(buf, fp)) {
75 fcntl(fileno(fp), F_SETLK, &lock);
79 snprintf(buf, sizeof buf, "%s+", filename);
81 out_fp = fopen(buf, "w");
83 if ((!out_fp) || (fchmod(fileno(out_fp), sb.st_mode & 0777))
84 || (fchown(fileno(out_fp), sb.st_uid, sb.st_gid))) {
85 fcntl(fileno(fp), F_SETLK, &lock);
92 snprintf(username, sizeof username, "%s:", pw->pw_name);
95 fgets(buffer, sizeof buffer, fp);
96 if (!continued) { // Check to see if we're updating this line.
97 if (strncmp(username, buffer, strlen(username)) == 0) { // we have a match.
98 pw_rest = strchr(buffer, ':');
100 pw_rest = strchr(pw_rest, ':');
101 fprintf(out_fp, "%s:%s%s", buffer, crypt_pw, pw_rest);
103 fputs(buffer, out_fp);
106 fputs(buffer, out_fp);
108 if (buffer[strlen(buffer) - 1] == '\n') {
113 bzero(buffer, sizeof buffer);
116 if (fflush(out_fp) || fsync(fileno(out_fp)) || fclose(out_fp)) {
118 fcntl(fileno(fp), F_SETLK, &lock);
122 if (rename(buf, filename) < 0) {
123 fcntl(fileno(fp), F_SETLK, &lock);
127 fcntl(fileno(fp), F_SETLK, &lock);
134 extern int passwd_main(int argc, char **argv)
142 int algo = 1; /* -a - password algorithm */
143 int lflg = 0; /* -l - lock account */
144 int uflg = 0; /* -u - unlock account */
145 int dflg = 0; /* -d - delete password */
146 const struct passwd *pw;
148 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
149 const struct spwd *sp;
150 #endif /* CONFIG_FEATURE_SHADOWPASSWDS */
151 amroot = (getuid() == 0);
152 openlog("passwd", LOG_PID | LOG_CONS | LOG_NOWAIT, LOG_AUTH);
153 while ((flag = getopt(argc, argv, "a:dlu")) != EOF) {
156 algo = get_algo(optarg);
171 myname = (char *) bb_xstrdup(bb_getpwuid(NULL, getuid(), -1));
178 if ((lflg || uflg || dflg) && (optind >= argc || !amroot)) {
183 bb_error_msg_and_die("Unknown user %s\n", name);
185 if (!amroot && pw->pw_uid != getuid()) {
186 syslog(LOG_WARNING, "can't change pwd for `%s'", name);
187 bb_error_msg_and_die("Permission denied.\n");
189 #ifdef CONFIG_FEATURE_SHADOWPASSWDS
192 sp = (struct spwd *) pwd_to_spwd(pw);
199 #endif /* CONFIG_FEATURE_SHADOWPASSWDS */
201 safe_strncpy(crypt_passwd, cp, sizeof(crypt_passwd));
202 if (!(dflg || lflg || uflg)) {
205 syslog(LOG_WARNING, "password locked for `%s'", np);
206 bb_error_msg_and_die( "The password for `%s' cannot be changed.\n", np);
209 printf("Changing password for %s\n", name);
210 if (new_password(pw, amroot, algo)) {
211 bb_error_msg_and_die( "The password for %s is unchanged.\n", name);
214 if (crypt_passwd[0] != '!') {
215 memmove(&crypt_passwd[1], crypt_passwd,
216 sizeof crypt_passwd - 1);
217 crypt_passwd[sizeof crypt_passwd - 1] = '\0';
218 crypt_passwd[0] = '!';
221 if (crypt_passwd[0] == '!') {
222 memmove(crypt_passwd, &crypt_passwd[1],
223 sizeof crypt_passwd - 1);
226 crypt_passwd[0] = '\0';
228 set_filesize_limit(30000);
229 signal(SIGHUP, SIG_IGN);
230 signal(SIGINT, SIG_IGN);
231 signal(SIGQUIT, SIG_IGN);
234 syslog(LOG_ERR, "can't setuid(0)");
235 bb_error_msg_and_die( "Cannot change ID to root.\n");
237 if (!update_passwd(pw, crypt_passwd)) {
238 syslog(LOG_INFO, "password for `%s' changed by user `%s'", name,
240 printf("Password changed.\n");
242 syslog(LOG_WARNING, "an error occurred updating the password file");
243 bb_error_msg_and_die("An error occurred updating the password file.\n");
250 static int create_backup(const char *backup, FILE * fp)
257 if (fstat(fileno(fp), &sb))
262 bkfp = fopen(backup, "w");
268 /* TODO: faster copy, not one-char-at-a-time. --marekm */
270 while ((c = getc(fp)) != EOF) {
271 if (putc(c, bkfp) == EOF)
274 if (c != EOF || fflush(bkfp)) {
283 ub.actime = sb.st_atime;
284 ub.modtime = sb.st_mtime;
289 static int i64c(int i)
295 if (i >= 2 && i < 12)
296 return ('0' - 2 + i);
297 if (i >= 12 && i < 38)
298 return ('A' - 12 + i);
299 if (i >= 38 && i < 63)
300 return ('a' - 38 + i);
304 static char *crypt_make_salt(void)
307 static unsigned long x;
308 static char result[3];
311 x += now + getpid() + clock();
312 result[0] = i64c(((x >> 18) ^ (x >> 6)) & 077);
313 result[1] = i64c(((x >> 12) ^ x) & 077);
319 static int new_password(const struct passwd *pw, int amroot, int algo)
328 if (!amroot && crypt_passwd[0]) {
329 if (!(clear = bb_askpass(0, "Old password:"))) {
333 cipher = pw_encrypt(clear, crypt_passwd);
334 if (strcmp(cipher, crypt_passwd) != 0) {
335 syslog(LOG_WARNING, "incorrect password for `%s'",
339 while (difftime(now, start) < FAIL_DELAY) {
343 fprintf(stderr, "Incorrect password.\n");
347 safe_strncpy(orig, clear, sizeof(orig));
348 bzero(clear, strlen(clear));
349 bzero(cipher, strlen(cipher));
353 if (! (cp=bb_askpass(0, "Enter the new password (minimum of 5, maximum of 8 characters)\n"
354 "Please use a combination of upper and lower case letters and numbers.\n"
355 "Enter new password: ")))
357 bzero(orig, sizeof orig);
361 safe_strncpy(pass, cp, sizeof(pass));
362 bzero(cp, strlen(cp));
363 /* if (!obscure(orig, pass, pw)) { */
364 if (obscure(orig, pass, pw)) {
366 printf("\nWarning: weak password (continuing).\n");
372 if (!(cp = bb_askpass(0, "Re-enter new password: "))) {
373 bzero(orig, sizeof orig);
377 if (strcmp(cp, pass)) {
378 fprintf(stderr, "Passwords do not match.\n");
382 bzero(cp, strlen(cp));
383 bzero(orig, sizeof(orig));
386 cp = pw_encrypt(pass, "$1$");
388 cp = pw_encrypt(pass, crypt_make_salt());
389 bzero(pass, sizeof pass);
390 safe_strncpy(crypt_passwd, cp, sizeof(crypt_passwd));
394 static void set_filesize_limit(int blocks)
396 struct rlimit rlimit_fsize;
398 rlimit_fsize.rlim_cur = rlimit_fsize.rlim_max = 512L * blocks;
399 setrlimit(RLIMIT_FSIZE, &rlimit_fsize);