updated the 3.0 branch from the head branch - ready for alpha18
[jra/samba/.git] / source3 / utils / pdbedit.c
1 /* 
2    Unix SMB/CIFS implementation.
3    passdb editing frontend
4    
5    Copyright (C) Simo Sorce      2000
6    Copyright (C) Andrew Bartlett 2001   
7    Copyright (C) Jelmer Vernooij 2002
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 extern pstring global_myname;
27 extern BOOL AllowDebugChange;
28
29 /*********************************************************
30  Add all currently available users to another db
31  ********************************************************/
32
33 int export_database (struct pdb_context *in, char *db){
34         struct pdb_context *context;
35         SAM_ACCOUNT *user = NULL;
36
37         if (!NT_STATUS_IS_OK(make_pdb_context_string(&context, db))){
38                 fprintf(stderr, "Can't initialize %s.\n", db);
39                 return 1;
40         }
41
42         if (!in->pdb_setsampwent(in, 0)){
43                 fprintf(stderr, "Can't sampwent!\n");
44                 return 1;
45         }
46
47         if (!NT_STATUS_IS_OK(pdb_init_sam(&user))){
48                 fprintf(stderr, "Can't initialize new SAM_ACCOUNT!\n");
49                 return 1;
50         }
51
52         while (in->pdb_getsampwent(in,user)){
53                 context->pdb_add_sam_account(context,user);
54                 if (!NT_STATUS_IS_OK(pdb_reset_sam(user))){
55                         fprintf(stderr, "Can't reset SAM_ACCOUNT!\n");
56                         return 1;
57                 }
58         }
59
60         in->pdb_endsampwent(in);
61
62         return 0;
63 }
64
65 /*********************************************************
66  Print info from sam structure
67 **********************************************************/
68
69 static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdstyle)
70 {
71         uid_t uid;
72         gid_t gid;
73         time_t tmp;
74
75         /* TODO: chaeck if entry is a user or a workstation */
76         if (!sam_pwent) return -1;
77         
78         if (verbosity) {
79                 printf ("Unix username:        %s\n", pdb_get_username(sam_pwent));
80                 printf ("NT username:          %s\n", pdb_get_nt_username(sam_pwent));
81                 printf ("Account Flags:        %s\n", pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent), NEW_PW_FORMAT_SPACE_PADDED_LEN));
82                 
83                 if (IS_SAM_UNIX_USER(sam_pwent)) {
84                         uid = pdb_get_uid(sam_pwent);
85                         gid = pdb_get_gid(sam_pwent);
86                         printf ("User ID/Group ID:     %d/%d\n", uid, gid);
87                 }
88                 printf ("User SID:             %s\n",
89                         sid_string_static(pdb_get_user_sid(sam_pwent)));
90                 printf ("Primary Group SID:    %s\n",
91                         sid_string_static(pdb_get_group_sid(sam_pwent)));
92                 printf ("Full Name:            %s\n", pdb_get_fullname(sam_pwent));
93                 printf ("Home Directory:       %s\n", pdb_get_homedir(sam_pwent));
94                 printf ("HomeDir Drive:        %s\n", pdb_get_dirdrive(sam_pwent));
95                 printf ("Logon Script:         %s\n", pdb_get_logon_script(sam_pwent));
96                 printf ("Profile Path:         %s\n", pdb_get_profile_path(sam_pwent));
97                 printf ("Domain:               %s\n", pdb_get_domain(sam_pwent));
98                 printf ("Account desc:         %s\n", pdb_get_acct_desc(sam_pwent));
99                 printf ("Workstations:         %s\n", pdb_get_workstations(sam_pwent));
100                 printf ("Munged dial:          %s\n", pdb_get_munged_dial(sam_pwent));
101                 
102                 tmp = pdb_get_logon_time(sam_pwent);
103                 printf ("Logon time:           %s\n", tmp ? http_timestring(tmp) : "0");
104                 
105                 tmp = pdb_get_logoff_time(sam_pwent);
106                 printf ("Logoff time:          %s\n", tmp ? http_timestring(tmp) : "0");
107                 
108                 tmp = pdb_get_kickoff_time(sam_pwent);
109                 printf ("Kickoff time:         %s\n", tmp ? http_timestring(tmp) : "0");
110                 
111                 tmp = pdb_get_pass_last_set_time(sam_pwent);
112                 printf ("Password last set:    %s\n", tmp ? http_timestring(tmp) : "0");
113                 
114                 tmp = pdb_get_pass_can_change_time(sam_pwent);
115                 printf ("Password can change:  %s\n", tmp ? http_timestring(tmp) : "0");
116                 
117                 tmp = pdb_get_pass_must_change_time(sam_pwent);
118                 printf ("Password must change: %s\n", tmp ? http_timestring(tmp) : "0");
119                 
120         } else if (smbpwdstyle) {
121                 if (IS_SAM_UNIX_USER(sam_pwent)) {
122                         char lm_passwd[33];
123                         char nt_passwd[33];
124
125                         uid = pdb_get_uid(sam_pwent);
126                         pdb_sethexpwd(lm_passwd, 
127                                       pdb_get_lanman_passwd(sam_pwent), 
128                                       pdb_get_acct_ctrl(sam_pwent));
129                         pdb_sethexpwd(nt_passwd, 
130                                       pdb_get_nt_passwd(sam_pwent), 
131                                       pdb_get_acct_ctrl(sam_pwent));
132                         
133                         printf("%s:%d:%s:%s:%s:LCT-%08X:\n",
134                                pdb_get_username(sam_pwent),
135                                uid,
136                                lm_passwd,
137                                nt_passwd,
138                                pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent),NEW_PW_FORMAT_SPACE_PADDED_LEN),
139                                (uint32)pdb_get_pass_last_set_time(sam_pwent));
140                 } else {
141                         fprintf(stderr, "Can't output in smbpasswd format, no uid on this record.\n");
142                 }
143         } else {
144                 if (IS_SAM_UNIX_USER(sam_pwent)) {
145                         printf ("%s:%d:%s\n", pdb_get_username(sam_pwent), pdb_get_uid(sam_pwent), 
146                                 pdb_get_fullname(sam_pwent));
147                 } else {        
148                         printf ("%s:(null):%s\n", pdb_get_username(sam_pwent), pdb_get_fullname(sam_pwent));
149                 }
150         }
151
152         return 0;       
153 }
154
155 /*********************************************************
156  Get an Print User Info
157 **********************************************************/
158
159 static int print_user_info (struct pdb_context *in, char *username, BOOL verbosity, BOOL smbpwdstyle)
160 {
161         SAM_ACCOUNT *sam_pwent=NULL;
162         BOOL ret;
163         
164         if (!NT_STATUS_IS_OK(pdb_init_sam (&sam_pwent))) {
165                 return -1;
166         }
167         
168         ret = in->pdb_getsampwnam (in, sam_pwent, username);
169
170         if (ret==False) {
171                 fprintf (stderr, "Username not found!\n");
172                 pdb_free_sam(&sam_pwent);
173                 return -1;
174         }
175         
176         ret=print_sam_info (sam_pwent, verbosity, smbpwdstyle);
177         pdb_free_sam(&sam_pwent);
178         
179         return ret;
180 }
181         
182 /*********************************************************
183  List Users
184 **********************************************************/
185 static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwdstyle)
186 {
187         SAM_ACCOUNT *sam_pwent=NULL;
188         BOOL check, ret;
189         
190         check = in->pdb_setsampwent(in, False);
191         if (!check) {
192                 return 1;
193         }
194
195         check = True;
196         if (!(NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent)))) return 1;
197
198         while (check && (ret = in->pdb_getsampwent (in, sam_pwent))) {
199                 if (verbosity)
200                         printf ("---------------\n");
201                 print_sam_info (sam_pwent, verbosity, smbpwdstyle);
202                 pdb_free_sam(&sam_pwent);
203                 check = NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent));
204         }
205         if (check) pdb_free_sam(&sam_pwent);
206         
207         in->pdb_endsampwent(in);
208         return 0;
209 }
210
211 /*********************************************************
212  Set User Info
213 **********************************************************/
214
215 static int set_user_info (struct pdb_context *in, char *username, char *fullname, char *homedir, char *drive, char *script, char *profile)
216 {
217         SAM_ACCOUNT *sam_pwent=NULL;
218         BOOL ret;
219         
220         pdb_init_sam(&sam_pwent);
221         
222         ret = in->pdb_getsampwnam (in, sam_pwent, username);
223         if (ret==False) {
224                 fprintf (stderr, "Username not found!\n");
225                 pdb_free_sam(&sam_pwent);
226                 return -1;
227         }
228         
229         if (fullname)
230                 pdb_set_fullname(sam_pwent, fullname);
231         if (homedir)
232                 pdb_set_homedir(sam_pwent, homedir, True);
233         if (drive)
234                 pdb_set_dir_drive(sam_pwent,drive, True);
235         if (script)
236                 pdb_set_logon_script(sam_pwent, script, True);
237         if (profile)
238                 pdb_set_profile_path (sam_pwent, profile, True);
239         
240         if (in->pdb_update_sam_account (in, sam_pwent))
241                 print_user_info (in, username, True, False);
242         else {
243                 fprintf (stderr, "Unable to modify entry!\n");
244                 pdb_free_sam(&sam_pwent);
245                 return -1;
246         }
247         pdb_free_sam(&sam_pwent);
248         return 0;
249 }
250
251 /*********************************************************
252  Add New User
253 **********************************************************/
254 static int new_user (struct pdb_context *in, char *username, char *fullname, char *homedir, char *drive, char *script, char *profile)
255 {
256         SAM_ACCOUNT *sam_pwent=NULL;
257         struct passwd  *pwd = NULL;
258         char *password1, *password2;
259         
260         ZERO_STRUCT(sam_pwent);
261
262         if ((pwd = getpwnam_alloc(username))) {
263                 pdb_init_sam_pw (&sam_pwent, pwd);
264                 passwd_free(&pwd);
265         } else {
266                 fprintf (stderr, "WARNING: user %s does not exist in system passwd\n", username);
267                 pdb_init_sam(&sam_pwent);
268                 if (!pdb_set_username(sam_pwent, username)) {
269                         return False;
270                 }
271         }
272
273         password1 = getpass("new password:");
274         password2 = getpass("retype new password:");
275         if (strcmp (password1, password2)) {
276                  fprintf (stderr, "Passwords does not match!\n");
277                  pdb_free_sam (&sam_pwent);
278                  return -1;
279         }
280
281         pdb_set_plaintext_passwd(sam_pwent, password1);
282
283         if (fullname)
284                 pdb_set_fullname(sam_pwent, fullname);
285         if (homedir)
286                 pdb_set_homedir (sam_pwent, homedir, True);
287         if (drive)
288                 pdb_set_dir_drive (sam_pwent, drive, True);
289         if (script)
290                 pdb_set_logon_script(sam_pwent, script, True);
291         if (profile)
292                 pdb_set_profile_path (sam_pwent, profile, True);
293         
294         pdb_set_acct_ctrl (sam_pwent, ACB_NORMAL);
295         
296         if (in->pdb_add_sam_account (in, sam_pwent)) { 
297                 print_user_info (in, username, True, False);
298         } else {
299                 fprintf (stderr, "Unable to add user! (does it alredy exist?)\n");
300                 pdb_free_sam (&sam_pwent);
301                 return -1;
302         }
303         pdb_free_sam (&sam_pwent);
304         return 0;
305 }
306
307 /*********************************************************
308  Add New Machine
309 **********************************************************/
310
311 static int new_machine (struct pdb_context *in, char *machinename)
312 {
313         SAM_ACCOUNT *sam_pwent=NULL;
314         char name[16];
315         char *password = NULL;
316         
317         if (!NT_STATUS_IS_OK(pdb_init_sam (&sam_pwent))) {
318                 return -1;
319         }
320
321         if (machinename[strlen (machinename) -1] == '$')
322                 machinename[strlen (machinename) -1] = '\0';
323         
324         safe_strcpy (name, machinename, 16);
325         safe_strcat (name, "$", 16);
326         
327         string_set (&password, machinename);
328         strlower_m(password);
329         
330         pdb_set_plaintext_passwd (sam_pwent, password);
331
332         pdb_set_username (sam_pwent, name);
333         
334         pdb_set_acct_ctrl (sam_pwent, ACB_WSTRUST);
335         
336         pdb_set_group_sid_from_rid(sam_pwent, DOMAIN_GROUP_RID_COMPUTERS);
337         
338         if (in->pdb_add_sam_account (in, sam_pwent)) {
339                 print_user_info (in, name, True, False);
340         } else {
341                 fprintf (stderr, "Unable to add machine! (does it already exist?)\n");
342                 pdb_free_sam (&sam_pwent);
343                 return -1;
344         }
345         pdb_free_sam (&sam_pwent);
346         return 0;
347 }
348
349 /*********************************************************
350  Delete user entry
351 **********************************************************/
352
353 static int delete_user_entry (struct pdb_context *in, char *username)
354 {
355         SAM_ACCOUNT *samaccount = NULL;
356
357         if (!NT_STATUS_IS_OK(pdb_init_sam (&samaccount))) {
358                 return -1;
359         }
360
361         if (!in->pdb_getsampwnam(in, samaccount, username)) {
362                 fprintf (stderr, "user %s does not exist in the passdb\n", username);
363                 return -1;
364         }
365
366         return in->pdb_delete_sam_account (in, samaccount);
367 }
368
369 /*********************************************************
370  Delete machine entry
371 **********************************************************/
372
373 static int delete_machine_entry (struct pdb_context *in, char *machinename)
374 {
375         char name[16];
376         SAM_ACCOUNT *samaccount = NULL;
377         
378         safe_strcpy (name, machinename, 16);
379         if (name[strlen(name)] != '$')
380                 safe_strcat (name, "$", 16);
381
382         if (!NT_STATUS_IS_OK(pdb_init_sam (&samaccount))) {
383                 return -1;
384         }
385
386         if (!in->pdb_getsampwnam(in, samaccount, name)) {
387                 fprintf (stderr, "user %s does not exist in the passdb\n", name);
388                 return -1;
389         }
390
391         return in->pdb_delete_sam_account (in, samaccount);
392 }
393
394 /*********************************************************
395  Start here.
396 **********************************************************/
397
398 int main (int argc, char **argv)
399 {
400         static BOOL list_users = False;
401         static BOOL verbose = False;
402         static BOOL spstyle = False;
403         static BOOL setparms = False;
404         static BOOL machine = False;
405         static BOOL add_user = False;
406         static BOOL delete_user = False;
407         static BOOL import = False;
408         int opt;
409         static char *full_name = NULL;
410         static char *user_name = NULL;
411         static char *home_dir = NULL;
412         static char *home_drive = NULL;
413         static char *backend_in = NULL;
414         static char *backend_out = NULL;
415         static char *logon_script = NULL;
416         static char *profile_path = NULL;
417         static char *config_file = dyn_CONFIGFILE;
418         static char *new_debuglevel = NULL;
419
420         struct pdb_context *in;
421         poptContext pc;
422         struct poptOption long_options[] = {
423                 POPT_AUTOHELP
424                 {"list",        'l',POPT_ARG_VAL, &list_users, 1, "list all users", NULL},
425                 {"verbose",     'v',POPT_ARG_VAL, &verbose, 1, "be verbose", NULL },
426                 {"smbpasswd-style",     'w',POPT_ARG_VAL, &spstyle, 1, "give output in smbpasswd style", NULL},
427                 {"user",        'u',POPT_ARG_STRING,&user_name, 0, "use username", "USER" },
428                 {"fullname",    'f',POPT_ARG_STRING,&full_name, 0, "set full name", NULL},
429                 {"homedir",     'h',POPT_ARG_STRING,&home_dir, 0, "set home directory", NULL},
430                 {"drive",       'd',POPT_ARG_STRING,&home_drive, 0, "set home drive", NULL},
431                 {"script",      's',POPT_ARG_STRING,&logon_script, 0, "set logon script", NULL},
432                 {"profile",     'p',POPT_ARG_STRING,&profile_path, 0, "set profile path", NULL},
433                 {"create",      'a',POPT_ARG_VAL,&add_user, 1, "create user", NULL},
434                 {"machine",     'm',POPT_ARG_VAL,&machine, 1,"account is a machine account",NULL},
435                 {"delete",      'x',POPT_ARG_VAL,&delete_user,1,"delete user",NULL},
436                 {"import",      'i',POPT_ARG_STRING,&backend_in,0,"use different passdb backend",NULL},
437                 {"export",      'e',POPT_ARG_STRING,&backend_out,0,"export user accounts to backend", NULL},
438                 {"debuglevel",'D', POPT_ARG_STRING, &new_debuglevel,0,"set debuglevel",NULL},
439                 {"configfile",'c',POPT_ARG_STRING, &config_file,0,"use different configuration file",NULL},
440                 {0,0,0,0}
441         };
442
443         setup_logging("pdbedit", True);
444
445         pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
446                                                 POPT_CONTEXT_KEEP_FIRST);
447
448         while((opt = poptGetNextOpt(pc)) != -1);
449
450         if (new_debuglevel){
451                 debug_parse_levels(new_debuglevel);
452                 AllowDebugChange = False;
453         }
454
455         if (!lp_load(config_file,True,False,False)) {
456                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", 
457                                 config_file);
458                 exit(1);
459         }
460
461
462         setparms = (full_name || home_dir || home_drive || logon_script || profile_path);
463
464         if (((add_user?1:0) + (delete_user?1:0) + (list_users?1:0) + (import?1:0) + (setparms?1:0)) + (backend_out?1:0) > 1) {
465                 fprintf (stderr, "Incompatible options on command line!\n");
466                 exit(1);
467         }
468
469         if (!backend_in) {
470                 if (!NT_STATUS_IS_OK(make_pdb_context_list(&in, lp_passdb_backend()))){
471                         fprintf(stderr, "Can't initialize passdb backend.\n");
472                         return 1;
473                 }
474         } else {
475                 if (!NT_STATUS_IS_OK(make_pdb_context_string(&in, backend_in))){
476                         fprintf(stderr, "Can't initialize passdb backend.\n");
477                         return 1;
478                 }
479         }
480
481         if (add_user) {
482                 if (!user_name) {
483                         fprintf (stderr, "Username not specified! (use -u option)\n");
484                         return -1;
485                 }
486                 if (machine)
487                         return new_machine (in, user_name);
488                 else
489                         return new_user (in, user_name, full_name, home_dir, 
490                                          home_drive, logon_script, 
491                                          profile_path);
492         }
493
494         if (delete_user) {
495                 if (!user_name) {
496                         fprintf (stderr, "Username not specified! (use -u option)\n");
497                         return -1;
498                 }
499                 if (machine)
500                         return delete_machine_entry (in, user_name);
501                 else
502                         return delete_user_entry (in, user_name);
503         }
504
505         if (user_name) {
506                 if (setparms)
507                         return set_user_info (in, user_name, full_name,
508                                               home_dir,
509                                               home_drive,
510                                               logon_script,
511                                               profile_path);
512                 else
513                         return print_user_info (in, user_name, verbose, 
514                                                 spstyle);
515         }
516
517         if (list_users) 
518                 return print_users_list (in, verbose, spstyle);
519
520         if (backend_out)
521                 return export_database(in, backend_out);
522
523         poptPrintHelp(pc, stderr, 0);
524
525         return 1;
526 }
527
528