Initial public busybox upstream commit
[busybox4maemo] / loginutils / passwd.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4  */
5
6 #include "libbb.h"
7 #include <syslog.h>
8
9 static void nuke_str(char *str)
10 {
11         if (str) memset(str, 0, strlen(str));
12 }
13
14 static char* new_password(const struct passwd *pw, uid_t myuid, int algo)
15 {
16         char salt[sizeof("$N$XXXXXXXX")]; /* "$N$XXXXXXXX" or "XX" */
17         char *orig = (char*)"";
18         char *newp = NULL;
19         char *cipher = NULL;
20         char *cp = NULL;
21         char *ret = NULL; /* failure so far */
22
23         if (myuid && pw->pw_passwd[0]) {
24                 orig = bb_askpass(0, "Old password:"); /* returns ptr to static */
25                 if (!orig)
26                         goto err_ret;
27                 cipher = pw_encrypt(orig, pw->pw_passwd); /* returns ptr to static */
28                 if (strcmp(cipher, pw->pw_passwd) != 0) {
29                         syslog(LOG_WARNING, "incorrect password for '%s'",
30                                 pw->pw_name);
31                         bb_do_delay(FAIL_DELAY);
32                         puts("Incorrect password");
33                         goto err_ret;
34                 }
35         }
36         orig = xstrdup(orig); /* or else bb_askpass() will destroy it */
37         newp = bb_askpass(0, "New password:"); /* returns ptr to static */
38         if (!newp)
39                 goto err_ret;
40         newp = xstrdup(newp); /* we are going to bb_askpass() again, so save it */
41         if (ENABLE_FEATURE_PASSWD_WEAK_CHECK
42          && obscure(orig, newp, pw) && myuid)
43                 goto err_ret; /* non-root is not allowed to have weak passwd */
44
45         cp = bb_askpass(0, "Retype password:");
46         if (!cp)
47                 goto err_ret;
48         if (strcmp(cp, newp)) {
49                 puts("Passwords don't match");
50                 goto err_ret;
51         }
52
53         crypt_make_salt(salt, 1, 0); /* des */
54         if (algo) { /* MD5 */
55                 strcpy(salt, "$1$");
56                 crypt_make_salt(salt + 3, 4, 0);
57         }
58         /* pw_encrypt returns ptr to static */
59         ret = xstrdup(pw_encrypt(newp, salt));
60         /* whee, success! */
61
62  err_ret:
63         nuke_str(orig);
64         if (ENABLE_FEATURE_CLEAN_UP) free(orig);
65         nuke_str(newp);
66         if (ENABLE_FEATURE_CLEAN_UP) free(newp);
67         nuke_str(cipher);
68         nuke_str(cp);
69         return ret;
70 }
71
72 int passwd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
73 int passwd_main(int argc ATTRIBUTE_UNUSED, char **argv)
74 {
75         enum {
76                 OPT_algo = 0x1, /* -a - password algorithm */
77                 OPT_lock = 0x2, /* -l - lock account */
78                 OPT_unlock = 0x4, /* -u - unlock account */
79                 OPT_delete = 0x8, /* -d - delete password */
80                 OPT_lud = 0xe,
81                 STATE_ALGO_md5 = 0x10,
82                 //STATE_ALGO_des = 0x20, not needed yet
83         };
84         unsigned opt;
85         int rc;
86         const char *opt_a = "";
87         const char *filename;
88         char *myname;
89         char *name;
90         char *newp;
91         struct passwd *pw;
92         uid_t myuid;
93         struct rlimit rlimit_fsize;
94         char c;
95 #if ENABLE_FEATURE_SHADOWPASSWDS
96         /* Using _r function to avoid pulling in static buffers */
97         struct spwd spw;
98         char buffer[256];
99 #endif
100
101         logmode = LOGMODE_BOTH;
102         openlog(applet_name, LOG_NOWAIT, LOG_AUTH);
103         opt = getopt32(argv, "a:lud", &opt_a);
104         //argc -= optind;
105         argv += optind;
106
107         if (strcasecmp(opt_a, "des") != 0) /* -a */
108                 opt |= STATE_ALGO_md5;
109         //else
110         //      opt |= STATE_ALGO_des;
111         myuid = getuid();
112         /* -l, -u, -d require root priv and username argument */
113         if ((opt & OPT_lud) && (myuid || !argv[0]))
114                 bb_show_usage();
115
116         /* Will complain and die if username not found */
117         myname = xstrdup(bb_getpwuid(NULL, -1, myuid));
118         name = argv[0] ? argv[0] : myname;
119
120         pw = getpwnam(name);
121         if (!pw) bb_error_msg_and_die("unknown user %s", name);
122         if (myuid && pw->pw_uid != myuid) {
123                 /* LOGMODE_BOTH */
124                 bb_error_msg_and_die("%s can't change password for %s", myname, name);
125         }
126
127 #if ENABLE_FEATURE_SHADOWPASSWDS
128         {
129                 /* getspnam_r may return 0 yet set result to NULL.
130                  * At least glibc 2.4 does this. Be extra paranoid here. */
131                 struct spwd *result = NULL;
132                 if (getspnam_r(pw->pw_name, &spw, buffer, sizeof(buffer), &result)
133                  || !result || strcmp(result->sp_namp, pw->pw_name) != 0) {
134                         /* LOGMODE_BOTH */
135                         bb_error_msg("no record of %s in %s, using %s",
136                                         name, bb_path_shadow_file,
137                                         bb_path_passwd_file);
138                 } else {
139                         pw->pw_passwd = result->sp_pwdp;
140                 }
141         }
142 #endif
143
144         /* Decide what the new password will be */
145         newp = NULL;
146         c = pw->pw_passwd[0] - '!';
147         if (!(opt & OPT_lud)) {
148                 if (myuid && !c) { /* passwd starts with '!' */
149                         /* LOGMODE_BOTH */
150                         bb_error_msg_and_die("cannot change "
151                                         "locked password for %s", name);
152                 }
153                 printf("Changing password for %s\n", name);
154                 newp = new_password(pw, myuid, opt & STATE_ALGO_md5);
155                 if (!newp) {
156                         logmode = LOGMODE_STDIO;
157                         bb_error_msg_and_die("password for %s is unchanged", name);
158                 }
159         } else if (opt & OPT_lock) {
160                 if (!c) goto skip; /* passwd starts with '!' */
161                 newp = xasprintf("!%s", pw->pw_passwd);
162         } else if (opt & OPT_unlock) {
163                 if (c) goto skip; /* not '!' */
164                 /* pw->pw_passwd points to static storage,
165                  * strdup'ing to avoid nasty surprizes */
166                 newp = xstrdup(&pw->pw_passwd[1]);
167         } else if (opt & OPT_delete) {
168                 //newp = xstrdup("");
169                 newp = (char*)"";
170         }
171
172         rlimit_fsize.rlim_cur = rlimit_fsize.rlim_max = 512L * 30000;
173         setrlimit(RLIMIT_FSIZE, &rlimit_fsize);
174         bb_signals(0
175                 + (1 << SIGHUP)
176                 + (1 << SIGINT)
177                 + (1 << SIGQUIT)
178                 , SIG_IGN);
179         umask(077);
180         xsetuid(0);
181
182 #if ENABLE_FEATURE_SHADOWPASSWDS
183         filename = bb_path_shadow_file;
184         rc = update_passwd(bb_path_shadow_file, name, newp);
185         if (rc == 0) /* no lines updated, no errors detected */
186 #endif
187         {
188                 filename = bb_path_passwd_file;
189                 rc = update_passwd(bb_path_passwd_file, name, newp);
190         }
191         /* LOGMODE_BOTH */
192         if (rc < 0)
193                 bb_error_msg_and_die("cannot update password file %s",
194                                 filename);
195         bb_info_msg("Password for %s changed by %s", name, myname);
196
197         //if (ENABLE_FEATURE_CLEAN_UP) free(newp);
198  skip:
199         if (!newp) {
200                 bb_error_msg_and_die("password for %s is already %slocked",
201                         name, (opt & OPT_unlock) ? "un" : "");
202         }
203         if (ENABLE_FEATURE_CLEAN_UP) free(myname);
204         return 0;
205 }