Initial import
[samba] / source / utils / smbpasswd.c
1 /*
2  * Unix SMB/CIFS implementation. 
3  * Copyright (C) Jeremy Allison 1995-1998
4  * Copyright (C) Tim Potter     2001
5  * 
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 2 of the License, or (at your
9  * option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with
17  * this program; if not, write to the Free Software Foundation, Inc., 675
18  * Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include "includes.h"
21
22 extern BOOL AllowDebugChange;
23
24 /*
25  * Next two lines needed for SunOS and don't
26  * hurt anything else...
27  */
28 extern char *optarg;
29 extern int optind;
30
31 /* forced running in root-mode */
32 static BOOL got_username = False;
33 static BOOL stdin_passwd_get = False;
34 static fstring user_name;
35 static char *new_passwd = NULL;
36 static const char *remote_machine = NULL;
37
38 static fstring ldap_secret;
39
40
41 /*********************************************************
42  Print command usage on stderr and die.
43 **********************************************************/
44 static void usage(void)
45 {
46         printf("When run by root:\n");
47         printf("    smbpasswd [options] [username]\n");
48         printf("otherwise:\n");
49         printf("    smbpasswd [options]\n\n");
50
51         printf("options:\n");
52         printf("  -L                   local mode (must be first option)\n");
53         printf("  -h                   print this usage message\n");
54         printf("  -s                   use stdin for password prompt\n");
55         printf("  -c smb.conf file     Use the given path to the smb.conf file\n");
56         printf("  -D LEVEL             debug level\n");
57         printf("  -r MACHINE           remote machine\n");
58         printf("  -U USER              remote username\n");
59
60         printf("extra options when run by root or in local mode:\n");
61         printf("  -a                   add user\n");
62         printf("  -d                   disable user\n");
63         printf("  -e                   enable user\n");
64         printf("  -i                   interdomain trust account\n");
65         printf("  -m                   machine trust account\n");
66         printf("  -n                   set no password\n");
67         printf("  -w PASSWORD          ldap admin password\n");
68         printf("  -x                   delete user\n");
69         printf("  -R ORDER             name resolve order\n");
70
71         exit(1);
72 }
73
74 static void set_line_buffering(FILE *f)
75 {
76         setvbuf(f, NULL, _IOLBF, 0);
77 }
78
79 /*******************************************************************
80  Process command line options
81  ******************************************************************/
82
83 static int process_options(int argc, char **argv, int local_flags)
84 {
85         int ch;
86         pstring configfile;
87         pstrcpy(configfile, dyn_CONFIGFILE);
88
89         local_flags |= LOCAL_SET_PASSWORD;
90
91         ZERO_STRUCT(user_name);
92
93         user_name[0] = '\0';
94
95         while ((ch = getopt(argc, argv, "c:axdehminjr:sw:R:D:U:LW")) != EOF) {
96                 switch(ch) {
97                 case 'L':
98                         local_flags |= LOCAL_AM_ROOT;
99                         break;
100                 case 'c':
101                         pstrcpy(configfile,optarg);
102                         break;
103                 case 'a':
104                         local_flags |= LOCAL_ADD_USER;
105                         break;
106                 case 'x':
107                         local_flags |= LOCAL_DELETE_USER;
108                         local_flags &= ~LOCAL_SET_PASSWORD;
109                         break;
110                 case 'd':
111                         local_flags |= LOCAL_DISABLE_USER;
112                         local_flags &= ~LOCAL_SET_PASSWORD;
113                         break;
114                 case 'e':
115                         local_flags |= LOCAL_ENABLE_USER;
116                         local_flags &= ~LOCAL_SET_PASSWORD;
117                         break;
118                 case 'm':
119                         local_flags |= LOCAL_TRUST_ACCOUNT;
120                         break;
121                 case 'i':
122                         local_flags |= LOCAL_INTERDOM_ACCOUNT;
123                         break;
124                 case 'j':
125                         d_printf("See 'net join' for this functionality\n");
126                         exit(1);
127                         break;
128                 case 'n':
129                         local_flags |= LOCAL_SET_NO_PASSWORD;
130                         local_flags &= ~LOCAL_SET_PASSWORD;
131                         new_passwd = smb_xstrdup("NO PASSWORD");
132                         break;
133                 case 'r':
134                         remote_machine = optarg;
135                         break;
136                 case 's':
137                         set_line_buffering(stdin);
138                         set_line_buffering(stdout);
139                         set_line_buffering(stderr);
140                         stdin_passwd_get = True;
141                         break;
142                 case 'w':
143                         local_flags |= LOCAL_SET_LDAP_ADMIN_PW;
144                         fstrcpy(ldap_secret, optarg);
145                         break;
146                 case 'R':
147                         lp_set_name_resolve_order(optarg);
148                         break;
149                 case 'D':
150                         DEBUGLEVEL = atoi(optarg);
151                         break;
152                 case 'U': {
153                         got_username = True;
154                         fstrcpy(user_name, optarg);
155                         break;
156                 case 'W':
157                         local_flags |= LOCAL_SET_LDAP_ADMIN_PW;
158                         *ldap_secret = '\0';
159                         break;
160                 }
161                 case 'h':
162                 default:
163                         usage();
164                 }
165         }
166         
167         argc -= optind;
168         argv += optind;
169
170         switch(argc) {
171         case 0:
172                 if (!got_username)
173                         fstrcpy(user_name, "");
174                 break;
175         case 1:
176                 if (!(local_flags & LOCAL_AM_ROOT)) {
177                         usage();
178                 } else {
179                         if (got_username) {
180                                 usage();
181                         } else {
182                                 fstrcpy(user_name, argv[0]);
183                         }
184                 }
185                 break;
186         default:
187                 usage();
188         }
189
190         if (!lp_load(configfile,True,False,False)) {
191                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", 
192                         dyn_CONFIGFILE);
193                 exit(1);
194         }
195
196         return local_flags;
197 }
198
199 /*************************************************************
200  Utility function to prompt for new password.
201 *************************************************************/
202 static char *prompt_for_new_password(BOOL stdin_get)
203 {
204         char *p;
205         fstring new_pw;
206
207         ZERO_ARRAY(new_pw);
208  
209         p = get_pass("New SMB password:", stdin_get);
210
211         fstrcpy(new_pw, p);
212         SAFE_FREE(p);
213
214         p = get_pass("Retype new SMB password:", stdin_get);
215
216         if (strcmp(p, new_pw)) {
217                 fprintf(stderr, "Mismatch - password unchanged.\n");
218                 ZERO_ARRAY(new_pw);
219                 SAFE_FREE(p);
220                 return NULL;
221         }
222
223         return p;
224 }
225
226
227 /*************************************************************
228  Change a password either locally or remotely.
229 *************************************************************/
230
231 static BOOL password_change(const char *remote_mach, char *username, 
232                             char *old_passwd, char *new_pw, int local_flags)
233 {
234         BOOL ret;
235         pstring err_str;
236         pstring msg_str;
237
238         if (remote_mach != NULL) {
239                 if (local_flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER|LOCAL_DISABLE_USER|LOCAL_ENABLE_USER|
240                                                         LOCAL_TRUST_ACCOUNT|LOCAL_SET_NO_PASSWORD)) {
241                         /* these things can't be done remotely yet */
242                         return False;
243                 }
244                 ret = remote_password_change(remote_mach, username, 
245                                              old_passwd, new_pw, err_str, sizeof(err_str));
246                 if(*err_str)
247                         fprintf(stderr, "%s", err_str);
248                 return ret;
249         }
250         
251         ret = local_password_change(username, local_flags, new_pw, 
252                                      err_str, sizeof(err_str), msg_str, sizeof(msg_str));
253
254         if(*msg_str)
255                 printf("%s", msg_str);
256         if(*err_str)
257                 fprintf(stderr, "%s", err_str);
258
259         return ret;
260 }
261
262 /*******************************************************************
263  Store the LDAP admin password in secrets.tdb
264  ******************************************************************/
265 static BOOL store_ldap_admin_pw (char* pw)
266 {       
267         if (!pw) 
268                 return False;
269
270         if (!secrets_init())
271                 return False;
272         
273         return secrets_store_ldap_pw(lp_ldap_admin_dn(), pw);
274 }
275
276
277 /*************************************************************
278  Handle password changing for root.
279 *************************************************************/
280
281 static int process_root(int local_flags)
282 {
283         struct passwd  *pwd;
284         int result = 0;
285         char *old_passwd = NULL;
286
287         if (local_flags & LOCAL_SET_LDAP_ADMIN_PW) {
288                 printf("Setting stored password for \"%s\" in secrets.tdb\n", 
289                         lp_ldap_admin_dn());
290                 if ( ! *ldap_secret ) {
291                         new_passwd = prompt_for_new_password(stdin_passwd_get);
292                         fstrcpy(ldap_secret, new_passwd);
293                 }
294                 if (!store_ldap_admin_pw(ldap_secret))
295                         DEBUG(0,("ERROR: Failed to store the ldap admin password!\n"));
296                 goto done;
297         }
298
299         /* Ensure passdb startup(). */
300         if(!initialize_password_db(False)) {
301                 DEBUG(0, ("Failed to open passdb!\n"));
302                 exit(1);
303         }
304                 
305         /* Ensure we have a SAM sid. */
306         get_global_sam_sid();
307
308         /*
309          * Ensure both add/delete user are not set
310          * Ensure add/delete user and either remote machine or join domain are
311          * not both set.
312          */     
313         if(((local_flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER)) == (LOCAL_ADD_USER|LOCAL_DELETE_USER)) || 
314            ((local_flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER)) && 
315                 (remote_machine != NULL))) {
316                 usage();
317         }
318         
319         /* Only load interfaces if we are doing network operations. */
320
321         if (remote_machine) {
322                 load_interfaces();
323         }
324
325         if (!user_name[0] && (pwd = getpwuid_alloc(geteuid()))) {
326                 fstrcpy(user_name, pwd->pw_name);
327                 passwd_free(&pwd);
328         } 
329
330         if (!user_name[0]) {
331                 fprintf(stderr,"You must specify a username\n");
332                 exit(1);
333         }
334
335         if (local_flags & LOCAL_TRUST_ACCOUNT) {
336                 /* add the $ automatically */
337                 static fstring buf;
338
339                 /*
340                  * Remove any trailing '$' before we
341                  * generate the initial machine password.
342                  */
343
344                 if (user_name[strlen(user_name)-1] == '$') {
345                         user_name[strlen(user_name)-1] = 0;
346                 }
347
348                 if (local_flags & LOCAL_ADD_USER) {
349                         SAFE_FREE(new_passwd);
350                         new_passwd = smb_xstrdup(user_name);
351                         strlower_m(new_passwd);
352                 }
353
354                 /*
355                  * Now ensure the username ends in '$' for
356                  * the machine add.
357                  */
358
359                 slprintf(buf, sizeof(buf)-1, "%s$", user_name);
360                 fstrcpy(user_name, buf);
361         } else if (local_flags & LOCAL_INTERDOM_ACCOUNT) {
362                 static fstring buf;
363
364                 if ((local_flags & LOCAL_ADD_USER) && (new_passwd == NULL)) {
365                         /*
366                          * Prompt for trusting domain's account password
367                          */
368                         new_passwd = prompt_for_new_password(stdin_passwd_get);
369                         if(!new_passwd) {
370                                 fprintf(stderr, "Unable to get newpassword.\n");
371                                 exit(1);
372                         }
373                 }
374                 
375                 /* prepare uppercased and '$' terminated username */
376                 slprintf(buf, sizeof(buf) - 1, "%s$", user_name);
377                 fstrcpy(user_name, buf);
378                 
379         } else {
380                 
381                 if (remote_machine != NULL) {
382                         old_passwd = get_pass("Old SMB password:",stdin_passwd_get);
383                 }
384                 
385                 if (!(local_flags & LOCAL_SET_PASSWORD)) {
386                         
387                         /*
388                          * If we are trying to enable a user, first we need to find out
389                          * if they are using a modern version of the smbpasswd file that
390                          * disables a user by just writing a flag into the file. If so
391                          * then we can re-enable a user without prompting for a new
392                          * password. If not (ie. they have a no stored password in the
393                          * smbpasswd file) then we need to prompt for a new password.
394                          */
395                         
396                         if(local_flags & LOCAL_ENABLE_USER) {
397                                 SAM_ACCOUNT *sampass = NULL;
398                                 BOOL ret;
399                                 
400                                 pdb_init_sam(&sampass);
401                                 ret = pdb_getsampwnam(sampass, user_name);
402                                 if((ret) &&
403                                    (pdb_get_lanman_passwd(sampass) == NULL)) {
404                                         local_flags |= LOCAL_SET_PASSWORD;
405                                 }
406                                 pdb_free_sam(&sampass);
407                         }
408                 }
409                 
410                 if((local_flags & LOCAL_SET_PASSWORD) && (new_passwd == NULL)) {
411                         new_passwd = prompt_for_new_password(stdin_passwd_get);
412                         
413                         if(!new_passwd) {
414                                 fprintf(stderr, "Unable to get new password.\n");
415                                 exit(1);
416                         }
417                 }
418         }
419
420         if (!password_change(remote_machine, user_name, old_passwd, new_passwd, local_flags)) {
421                 fprintf(stderr,"Failed to modify password entry for user %s\n", user_name);
422                 result = 1;
423                 goto done;
424         } 
425
426         if(remote_machine) {
427                 printf("Password changed for user %s on %s.\n", user_name, remote_machine );
428         } else if(!(local_flags & (LOCAL_ADD_USER|LOCAL_DISABLE_USER|LOCAL_ENABLE_USER|LOCAL_DELETE_USER|LOCAL_SET_NO_PASSWORD|LOCAL_SET_PASSWORD))) {
429                 SAM_ACCOUNT *sampass = NULL;
430                 BOOL ret;
431                 
432                 pdb_init_sam(&sampass);
433                 ret = pdb_getsampwnam(sampass, user_name);
434
435                 printf("Password changed for user %s.", user_name );
436                 if( (ret != False) && (pdb_get_acct_ctrl(sampass)&ACB_DISABLED) )
437                         printf(" User has disabled flag set.");
438                 if((ret != False) && (pdb_get_acct_ctrl(sampass) & ACB_PWNOTREQ) )
439                         printf(" User has no password flag set.");
440                 printf("\n");
441                 pdb_free_sam(&sampass);
442         }
443
444  done:
445         SAFE_FREE(new_passwd);
446         return result;
447 }
448
449
450 /*************************************************************
451  Handle password changing for non-root.
452 *************************************************************/
453
454 static int process_nonroot(int local_flags)
455 {
456         struct passwd  *pwd = NULL;
457         int result = 0;
458         char *old_pw = NULL;
459         char *new_pw = NULL;
460
461         if (local_flags & ~(LOCAL_AM_ROOT | LOCAL_SET_PASSWORD)) {
462                 /* Extra flags that we can't honor non-root */
463                 usage();
464         }
465
466         if (!user_name[0]) {
467                 pwd = getpwuid_alloc(getuid());
468                 if (pwd) {
469                         fstrcpy(user_name,pwd->pw_name);
470                         passwd_free(&pwd);
471                 } else {
472                         fprintf(stderr, "smbpasswd: cannot lookup user name for uid %u\n", (unsigned int)getuid());
473                         exit(1);
474                 }
475         }
476         
477         /*
478          * A non-root user is always setting a password
479          * via a remote machine (even if that machine is
480          * localhost).
481          */     
482
483         load_interfaces(); /* Delayed from main() */
484
485         if (remote_machine == NULL) {
486                 remote_machine = "127.0.0.1";
487         }
488
489         if (remote_machine != NULL) {
490                 old_pw = get_pass("Old SMB password:",stdin_passwd_get);
491         }
492         
493         if (!new_passwd) {
494                 new_pw = prompt_for_new_password(stdin_passwd_get);
495         }
496         else
497                 new_pw = smb_xstrdup(new_passwd);
498         
499         if (!new_pw) {
500                 fprintf(stderr, "Unable to get new password.\n");
501                 exit(1);
502         }
503
504         if (!password_change(remote_machine, user_name, old_pw, new_pw, 0)) {
505                 fprintf(stderr,"Failed to change password for %s\n", user_name);
506                 result = 1;
507                 goto done;
508         }
509
510         printf("Password changed for user %s\n", user_name);
511
512  done:
513         SAFE_FREE(old_pw);
514         SAFE_FREE(new_pw);
515
516         return result;
517 }
518
519
520
521 /*********************************************************
522  Start here.
523 **********************************************************/
524 int main(int argc, char **argv)
525 {       
526         int local_flags = 0;
527         
528         AllowDebugChange = False;
529
530 #if defined(HAVE_SET_AUTH_PARAMETERS)
531         set_auth_parameters(argc, argv);
532 #endif /* HAVE_SET_AUTH_PARAMETERS */
533
534         if (getuid() == 0) {
535                 local_flags = LOCAL_AM_ROOT;
536         }
537
538         load_case_tables();
539
540         local_flags = process_options(argc, argv, local_flags);
541
542         setup_logging("smbpasswd", True);
543         
544         /*
545          * Set the machine NETBIOS name if not already
546          * set from the config file. 
547          */ 
548     
549         if (!init_names())
550                 return 1;
551
552         /* Check the effective uid - make sure we are not setuid */
553         if (is_setuid_root()) {
554                 fprintf(stderr, "smbpasswd must *NOT* be setuid root.\n");
555                 exit(1);
556         }
557
558         if (local_flags & LOCAL_AM_ROOT) {
559                 secrets_init();
560                 return process_root(local_flags);
561         } 
562
563         return process_nonroot(local_flags);
564 }