more compile fixes for become/unbecome_root()
[ira/wip.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 #define BIT_BACKEND     0x00000004
27 #define BIT_VERBOSE     0x00000008
28 #define BIT_SPSTYLE     0x00000010
29 #define BIT_RESERV_1    0x00000020
30 #define BIT_RESERV_2    0x00000040
31 #define BIT_RESERV_3    0x00000080
32 #define BIT_FULLNAME    0x00000100
33 #define BIT_HOMEDIR     0x00000200
34 #define BIT_HDIRDRIVE   0x00000400
35 #define BIT_LOGSCRIPT   0x00000800
36 #define BIT_PROFILE     0x00001000
37 #define BIT_MACHINE     0x00002000
38 #define BIT_RESERV_4    0x00004000
39 #define BIT_USER        0x00008000
40 #define BIT_LIST        0x00010000
41 #define BIT_MODIFY      0x00020000
42 #define BIT_CREATE      0x00040000
43 #define BIT_DELETE      0x00080000
44 #define BIT_ACCPOLICY   0x00100000
45 #define BIT_ACCPOLVAL   0x00200000
46 #define BIT_ACCTCTRL    0x00400000
47 #define BIT_RESERV_7    0x00800000
48 #define BIT_IMPORT      0x01000000
49 #define BIT_EXPORT      0x02000000
50
51 #define MASK_ALWAYS_GOOD        0x0000001F
52 #define MASK_USER_GOOD          0x00401F00
53
54 /*****************************************************************************
55  stubb functions
56 ****************************************************************************/
57
58 void become_root( void )
59 {
60         return;
61 }
62
63 void unbecome_root( void )
64 {
65         return;
66 }
67
68
69 /*********************************************************
70  Add all currently available users to another db
71  ********************************************************/
72
73 static int export_database (struct pdb_context *in, struct pdb_context *out) {
74         SAM_ACCOUNT *user = NULL;
75
76         if (NT_STATUS_IS_ERR(in->pdb_setsampwent(in, 0))) {
77                 fprintf(stderr, "Can't sampwent!\n");
78                 return 1;
79         }
80
81         if (!NT_STATUS_IS_OK(pdb_init_sam(&user))) {
82                 fprintf(stderr, "Can't initialize new SAM_ACCOUNT!\n");
83                 return 1;
84         }
85
86         while (NT_STATUS_IS_OK(in->pdb_getsampwent(in, user))) {
87                 out->pdb_add_sam_account(out, user);
88                 if (!NT_STATUS_IS_OK(pdb_reset_sam(user))){
89                         fprintf(stderr, "Can't reset SAM_ACCOUNT!\n");
90                         return 1;
91                 }
92         }
93
94         in->pdb_endsampwent(in);
95
96         return 0;
97 }
98
99 /*********************************************************
100  Add all currently available group mappings to another db
101  ********************************************************/
102
103 static int export_groups (struct pdb_context *in, struct pdb_context *out) {
104         GROUP_MAP *maps = NULL;
105         int i, entries = 0;
106
107         if (NT_STATUS_IS_ERR(in->pdb_enum_group_mapping(in, SID_NAME_UNKNOWN,
108                                                         &maps, &entries,
109                                                         False))) {
110                 fprintf(stderr, "Can't get group mappings!\n");
111                 return 1;
112         }
113
114         for (i=0; i<entries; i++) {
115                 out->pdb_add_group_mapping_entry(out, &(maps[i]));
116         }
117
118         SAFE_FREE(maps);
119
120         return 0;
121 }
122
123 /*********************************************************
124  Print info from sam structure
125 **********************************************************/
126
127 static int print_sam_info (SAM_ACCOUNT *sam_pwent, BOOL verbosity, BOOL smbpwdstyle)
128 {
129         uid_t uid;
130         time_t tmp;
131
132         /* TODO: chaeck if entry is a user or a workstation */
133         if (!sam_pwent) return -1;
134         
135         if (verbosity) {
136                 printf ("Unix username:        %s\n", pdb_get_username(sam_pwent));
137                 printf ("NT username:          %s\n", pdb_get_nt_username(sam_pwent));
138                 printf ("Account Flags:        %s\n", pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent), NEW_PW_FORMAT_SPACE_PADDED_LEN));
139                 printf ("User SID:             %s\n",
140                         sid_string_static(pdb_get_user_sid(sam_pwent)));
141                 printf ("Primary Group SID:    %s\n",
142                         sid_string_static(pdb_get_group_sid(sam_pwent)));
143                 printf ("Full Name:            %s\n", pdb_get_fullname(sam_pwent));
144                 printf ("Home Directory:       %s\n", pdb_get_homedir(sam_pwent));
145                 printf ("HomeDir Drive:        %s\n", pdb_get_dir_drive(sam_pwent));
146                 printf ("Logon Script:         %s\n", pdb_get_logon_script(sam_pwent));
147                 printf ("Profile Path:         %s\n", pdb_get_profile_path(sam_pwent));
148                 printf ("Domain:               %s\n", pdb_get_domain(sam_pwent));
149                 printf ("Account desc:         %s\n", pdb_get_acct_desc(sam_pwent));
150                 printf ("Workstations:         %s\n", pdb_get_workstations(sam_pwent));
151                 printf ("Munged dial:          %s\n", pdb_get_munged_dial(sam_pwent));
152                 
153                 tmp = pdb_get_logon_time(sam_pwent);
154                 printf ("Logon time:           %s\n", tmp ? http_timestring(tmp) : "0");
155                 
156                 tmp = pdb_get_logoff_time(sam_pwent);
157                 printf ("Logoff time:          %s\n", tmp ? http_timestring(tmp) : "0");
158                 
159                 tmp = pdb_get_kickoff_time(sam_pwent);
160                 printf ("Kickoff time:         %s\n", tmp ? http_timestring(tmp) : "0");
161                 
162                 tmp = pdb_get_pass_last_set_time(sam_pwent);
163                 printf ("Password last set:    %s\n", tmp ? http_timestring(tmp) : "0");
164                 
165                 tmp = pdb_get_pass_can_change_time(sam_pwent);
166                 printf ("Password can change:  %s\n", tmp ? http_timestring(tmp) : "0");
167                 
168                 tmp = pdb_get_pass_must_change_time(sam_pwent);
169                 printf ("Password must change: %s\n", tmp ? http_timestring(tmp) : "0");
170                 
171         } else if (smbpwdstyle) {
172                 char lm_passwd[33];
173                 char nt_passwd[33];
174
175                 uid = -1;
176                 idmap_sid_to_uid(pdb_get_user_sid(sam_pwent), &uid, 0);
177                 pdb_sethexpwd(lm_passwd, pdb_get_lanman_passwd(sam_pwent), pdb_get_acct_ctrl(sam_pwent));
178                 pdb_sethexpwd(nt_passwd, pdb_get_nt_passwd(sam_pwent), pdb_get_acct_ctrl(sam_pwent));
179                         
180                 printf("%s:%d:%s:%s:%s:LCT-%08X:\n",
181                        pdb_get_username(sam_pwent),
182                        uid,
183                        lm_passwd,
184                        nt_passwd,
185                        pdb_encode_acct_ctrl(pdb_get_acct_ctrl(sam_pwent),NEW_PW_FORMAT_SPACE_PADDED_LEN),
186                        (uint32)pdb_get_pass_last_set_time(sam_pwent));
187         } else {
188                 uid = -1;
189                 idmap_sid_to_uid(pdb_get_user_sid(sam_pwent), &uid, 0);
190                 printf ("%s:%d:%s\n", pdb_get_username(sam_pwent), uid, pdb_get_fullname(sam_pwent));
191         }
192
193         return 0;       
194 }
195
196 /*********************************************************
197  Get an Print User Info
198 **********************************************************/
199
200 static int print_user_info (struct pdb_context *in, const char *username, BOOL verbosity, BOOL smbpwdstyle)
201 {
202         SAM_ACCOUNT *sam_pwent=NULL;
203         BOOL ret;
204         
205         if (!NT_STATUS_IS_OK(pdb_init_sam (&sam_pwent))) {
206                 return -1;
207         }
208         
209         ret = NT_STATUS_IS_OK(in->pdb_getsampwnam (in, sam_pwent, username));
210
211         if (ret==False) {
212                 fprintf (stderr, "Username not found!\n");
213                 pdb_free_sam(&sam_pwent);
214                 return -1;
215         }
216         
217         ret=print_sam_info (sam_pwent, verbosity, smbpwdstyle);
218         pdb_free_sam(&sam_pwent);
219         
220         return ret;
221 }
222         
223 /*********************************************************
224  List Users
225 **********************************************************/
226 static int print_users_list (struct pdb_context *in, BOOL verbosity, BOOL smbpwdstyle)
227 {
228         SAM_ACCOUNT *sam_pwent=NULL;
229         BOOL check, ret;
230         
231         check = NT_STATUS_IS_OK(in->pdb_setsampwent(in, False));
232         if (!check) {
233                 return 1;
234         }
235
236         check = True;
237         if (!(NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent)))) return 1;
238
239         while (check && (ret = NT_STATUS_IS_OK(in->pdb_getsampwent (in, sam_pwent)))) {
240                 if (verbosity)
241                         printf ("---------------\n");
242                 print_sam_info (sam_pwent, verbosity, smbpwdstyle);
243                 pdb_free_sam(&sam_pwent);
244                 check = NT_STATUS_IS_OK(pdb_init_sam(&sam_pwent));
245         }
246         if (check) pdb_free_sam(&sam_pwent);
247         
248         in->pdb_endsampwent(in);
249         return 0;
250 }
251
252 /*********************************************************
253  Set User Info
254 **********************************************************/
255
256 static int set_user_info (struct pdb_context *in, const char *username, 
257                           const char *fullname, const char *homedir, 
258                           const char *drive, const char *script, 
259                           const char *profile, const char *account_control,
260                           const char *user_sid, const char *group_sid)
261 {
262         SAM_ACCOUNT *sam_pwent=NULL;
263         BOOL ret;
264         
265         pdb_init_sam(&sam_pwent);
266         
267         ret = NT_STATUS_IS_OK(in->pdb_getsampwnam (in, sam_pwent, username));
268         if (ret==False) {
269                 fprintf (stderr, "Username not found!\n");
270                 pdb_free_sam(&sam_pwent);
271                 return -1;
272         }
273         
274         if (fullname)
275                 pdb_set_fullname(sam_pwent, fullname, PDB_CHANGED);
276         if (homedir)
277                 pdb_set_homedir(sam_pwent, homedir, PDB_CHANGED);
278         if (drive)
279                 pdb_set_dir_drive(sam_pwent,drive, PDB_CHANGED);
280         if (script)
281                 pdb_set_logon_script(sam_pwent, script, PDB_CHANGED);
282         if (profile)
283                 pdb_set_profile_path (sam_pwent, profile, PDB_CHANGED);
284
285         if (account_control) {
286                 uint16 not_settable = ~(ACB_DISABLED|ACB_HOMDIRREQ|ACB_PWNOTREQ|
287                                         ACB_PWNOEXP|ACB_AUTOLOCK);
288
289                 uint16 newflag = pdb_decode_acct_ctrl(account_control);
290
291                 if (newflag & not_settable) {
292                         fprintf(stderr, "Can only set [NDHLX] flags\n");
293                         pdb_free_sam(&sam_pwent);
294                         return -1;
295                 }
296
297                 pdb_set_acct_ctrl(sam_pwent,
298                                   (pdb_get_acct_ctrl(sam_pwent) & not_settable) | newflag,
299                                   PDB_CHANGED);
300         }
301         if (user_sid) {
302                 DOM_SID u_sid;
303                 if (!string_to_sid(&u_sid, user_sid)) {
304                         /* not a complete sid, may be a RID, try building a SID */
305                         int u_rid;
306                         
307                         if (sscanf(user_sid, "%d", &u_rid) != 1) {
308                                 fprintf(stderr, "Error passed string is not a complete user SID or RID!\n");
309                                 return -1;
310                         }
311                         sid_copy(&u_sid, get_global_sam_sid());
312                         sid_append_rid(&u_sid, u_rid);
313                 }
314                 pdb_set_user_sid (sam_pwent, &u_sid, PDB_CHANGED);
315         }
316         if (group_sid) {
317                 DOM_SID g_sid;
318                 if (!string_to_sid(&g_sid, group_sid)) {
319                         /* not a complete sid, may be a RID, try building a SID */
320                         int g_rid;
321                         
322                         if (sscanf(group_sid, "%d", &g_rid) != 1) {
323                                 fprintf(stderr, "Error passed string is not a complete group SID or RID!\n");
324                                 return -1;
325                         }
326                         sid_copy(&g_sid, get_global_sam_sid());
327                         sid_append_rid(&g_sid, g_rid);
328                 }
329                 pdb_set_group_sid (sam_pwent, &g_sid, PDB_CHANGED);
330         }
331         
332         if (NT_STATUS_IS_OK(in->pdb_update_sam_account (in, sam_pwent)))
333                 print_user_info (in, username, True, False);
334         else {
335                 fprintf (stderr, "Unable to modify entry!\n");
336                 pdb_free_sam(&sam_pwent);
337                 return -1;
338         }
339         pdb_free_sam(&sam_pwent);
340         return 0;
341 }
342
343 /*********************************************************
344  Add New User
345 **********************************************************/
346 static int new_user (struct pdb_context *in, const char *username,
347                         const char *fullname, const char *homedir,
348                         const char *drive, const char *script,
349                         const char *profile, char *user_sid, char *group_sid)
350 {
351         SAM_ACCOUNT *sam_pwent=NULL;
352         NTSTATUS nt_status;
353         char *password1, *password2, *staticpass;
354         
355         if (!NT_STATUS_IS_OK(nt_status = pdb_init_sam_new(&sam_pwent, username))) {
356                 DEBUG(0, ("could not create account to add new user %s\n", username));
357                 return -1;
358         }
359
360         staticpass = getpass("new password:");
361         password1 = strdup(staticpass);
362         memset(staticpass, 0, strlen(staticpass));
363         staticpass = getpass("retype new password:");
364         password2 = strdup(staticpass);
365         memset(staticpass, 0, strlen(staticpass));
366         if (strcmp (password1, password2)) {
367                 fprintf (stderr, "Passwords does not match!\n");
368                 memset(password1, 0, strlen(password1));
369                 SAFE_FREE(password1);
370                 memset(password2, 0, strlen(password2));
371                 SAFE_FREE(password2);
372                 pdb_free_sam (&sam_pwent);
373                 return -1;
374         }
375
376         pdb_set_plaintext_passwd(sam_pwent, password1);
377         memset(password1, 0, strlen(password1));
378         SAFE_FREE(password1);
379         memset(password2, 0, strlen(password2));
380         SAFE_FREE(password2);
381
382         if (fullname)
383                 pdb_set_fullname(sam_pwent, fullname, PDB_CHANGED);
384         if (homedir)
385                 pdb_set_homedir (sam_pwent, homedir, PDB_CHANGED);
386         if (drive)
387                 pdb_set_dir_drive (sam_pwent, drive, PDB_CHANGED);
388         if (script)
389                 pdb_set_logon_script(sam_pwent, script, PDB_CHANGED);
390         if (profile)
391                 pdb_set_profile_path (sam_pwent, profile, PDB_CHANGED);
392         if (user_sid) {
393                 DOM_SID u_sid;
394                 if (!string_to_sid(&u_sid, user_sid)) {
395                         /* not a complete sid, may be a RID, try building a SID */
396                         int u_rid;
397                         
398                         if (sscanf(user_sid, "%d", &u_rid) != 1) {
399                                 fprintf(stderr, "Error passed string is not a complete user SID or RID!\n");
400                                 return -1;
401                         }
402                         sid_copy(&u_sid, get_global_sam_sid());
403                         sid_append_rid(&u_sid, u_rid);
404                 }
405                 pdb_set_user_sid (sam_pwent, &u_sid, PDB_CHANGED);
406         }
407         if (group_sid) {
408                 DOM_SID g_sid;
409                 if (!string_to_sid(&g_sid, group_sid)) {
410                         /* not a complete sid, may be a RID, try building a SID */
411                         int g_rid;
412                         
413                         if (sscanf(group_sid, "%d", &g_rid) != 1) {
414                                 fprintf(stderr, "Error passed string is not a complete group SID or RID!\n");
415                                 return -1;
416                         }
417                         sid_copy(&g_sid, get_global_sam_sid());
418                         sid_append_rid(&g_sid, g_rid);
419                 }
420                 pdb_set_group_sid (sam_pwent, &g_sid, PDB_CHANGED);
421         }
422         
423         pdb_set_acct_ctrl (sam_pwent, ACB_NORMAL, PDB_CHANGED);
424         
425         if (NT_STATUS_IS_OK(in->pdb_add_sam_account (in, sam_pwent))) { 
426                 print_user_info (in, username, True, False);
427         } else {
428                 fprintf (stderr, "Unable to add user! (does it alredy exist?)\n");
429                 pdb_free_sam (&sam_pwent);
430                 return -1;
431         }
432         pdb_free_sam (&sam_pwent);
433         return 0;
434 }
435
436 /*********************************************************
437  Add New Machine
438 **********************************************************/
439
440 static int new_machine (struct pdb_context *in, const char *machine_in)
441 {
442         SAM_ACCOUNT *sam_pwent=NULL;
443         fstring machinename;
444         fstring machineaccount;
445         struct passwd  *pwd = NULL;
446         
447         fstrcpy(machinename, machine_in); 
448         machinename[15]= '\0';
449
450         if (machinename[strlen (machinename) -1] == '$')
451                 machinename[strlen (machinename) -1] = '\0';
452         
453         strlower_m(machinename);
454         
455         fstrcpy(machineaccount, machinename);
456         fstrcat(machineaccount, "$");
457
458         if ((pwd = getpwnam_alloc(machineaccount))) {
459                 if (!NT_STATUS_IS_OK(pdb_init_sam_pw( &sam_pwent, pwd))) {
460                         fprintf(stderr, "Could not init sam from pw\n");
461                         passwd_free(&pwd);
462                         return -1;
463                 }
464                 passwd_free(&pwd);
465         } else {
466                 if (!NT_STATUS_IS_OK(pdb_init_sam (&sam_pwent))) {
467                         fprintf(stderr, "Could not init sam from pw\n");
468                         return -1;
469                 }
470         }
471
472         pdb_set_plaintext_passwd (sam_pwent, machinename);
473
474         pdb_set_username (sam_pwent, machineaccount, PDB_CHANGED);
475         
476         pdb_set_acct_ctrl (sam_pwent, ACB_WSTRUST, PDB_CHANGED);
477         
478         pdb_set_group_sid_from_rid(sam_pwent, DOMAIN_GROUP_RID_COMPUTERS, PDB_CHANGED);
479         
480         if (NT_STATUS_IS_OK(in->pdb_add_sam_account (in, sam_pwent))) {
481                 print_user_info (in, machineaccount, True, False);
482         } else {
483                 fprintf (stderr, "Unable to add machine! (does it already exist?)\n");
484                 pdb_free_sam (&sam_pwent);
485                 return -1;
486         }
487         pdb_free_sam (&sam_pwent);
488         return 0;
489 }
490
491 /*********************************************************
492  Delete user entry
493 **********************************************************/
494
495 static int delete_user_entry (struct pdb_context *in, const char *username)
496 {
497         SAM_ACCOUNT *samaccount = NULL;
498
499         if (!NT_STATUS_IS_OK(pdb_init_sam (&samaccount))) {
500                 return -1;
501         }
502
503         if (!NT_STATUS_IS_OK(in->pdb_getsampwnam(in, samaccount, username))) {
504                 fprintf (stderr, "user %s does not exist in the passdb\n", username);
505                 return -1;
506         }
507
508         return NT_STATUS_IS_OK(in->pdb_delete_sam_account (in, samaccount));
509 }
510
511 /*********************************************************
512  Delete machine entry
513 **********************************************************/
514
515 static int delete_machine_entry (struct pdb_context *in, const char *machinename)
516 {
517         fstring name;
518         SAM_ACCOUNT *samaccount = NULL;
519         
520         fstrcpy(name, machinename);
521         name[15] = '\0';
522         if (name[strlen(name)-1] != '$')
523                 fstrcat (name, "$");
524
525         if (!NT_STATUS_IS_OK(pdb_init_sam (&samaccount))) {
526                 return -1;
527         }
528
529         if (!NT_STATUS_IS_OK(in->pdb_getsampwnam(in, samaccount, name))) {
530                 fprintf (stderr, "machine %s does not exist in the passdb\n", name);
531                 return -1;
532         }
533
534         return NT_STATUS_IS_OK(in->pdb_delete_sam_account (in, samaccount));
535 }
536
537 /*********************************************************
538  Start here.
539 **********************************************************/
540
541 int main (int argc, char **argv)
542 {
543         static BOOL list_users = False;
544         static BOOL verbose = False;
545         static BOOL spstyle = False;
546         static BOOL machine = False;
547         static BOOL add_user = False;
548         static BOOL delete_user = False;
549         static BOOL modify_user = False;
550         uint32  setparms, checkparms;
551         int opt;
552         static char *full_name = NULL;
553         static const char *user_name = NULL;
554         static char *home_dir = NULL;
555         static char *home_drive = NULL;
556         static char *backend = NULL;
557         static char *backend_in = NULL;
558         static char *backend_out = NULL;
559         static BOOL transfer_groups = False;
560         static char *logon_script = NULL;
561         static char *profile_path = NULL;
562         static char *account_control = NULL;
563         static char *account_policy = NULL;
564         static char *user_sid = NULL;
565         static char *group_sid = NULL;
566         static long int account_policy_value = 0;
567         BOOL account_policy_value_set = False;
568
569         struct pdb_context *bin;
570         struct pdb_context *bout;
571         struct pdb_context *bdef;
572         poptContext pc;
573         struct poptOption long_options[] = {
574                 POPT_AUTOHELP
575                 {"list",        'L', POPT_ARG_NONE, &list_users, 0, "list all users", NULL},
576                 {"verbose",     'v', POPT_ARG_NONE, &verbose, 0, "be verbose", NULL },
577                 {"smbpasswd-style",     'w',POPT_ARG_NONE, &spstyle, 0, "give output in smbpasswd style", NULL},
578                 {"user",        'u', POPT_ARG_STRING, &user_name, 0, "use username", "USER" },
579                 {"fullname",    'f', POPT_ARG_STRING, &full_name, 0, "set full name", NULL},
580                 {"homedir",     'h', POPT_ARG_STRING, &home_dir, 0, "set home directory", NULL},
581                 {"drive",       'D', POPT_ARG_STRING, &home_drive, 0, "set home drive", NULL},
582                 {"script",      'S', POPT_ARG_STRING, &logon_script, 0, "set logon script", NULL},
583                 {"profile",     'p', POPT_ARG_STRING, &profile_path, 0, "set profile path", NULL},
584                 {"user SID",    'U', POPT_ARG_STRING, &user_sid, 0, "set user SID or RID", NULL},
585                 {"group SID",   'G', POPT_ARG_STRING, &group_sid, 0, "set group SID or RID", NULL},
586                 {"create",      'a', POPT_ARG_NONE, &add_user, 0, "create user", NULL},
587                 {"modify",      'r', POPT_ARG_NONE, &modify_user, 0, "modify user", NULL},
588                 {"machine",     'm', POPT_ARG_NONE, &machine, 0, "account is a machine account", NULL},
589                 {"delete",      'x', POPT_ARG_NONE, &delete_user, 0, "delete user", NULL},
590                 {"backend",     'b', POPT_ARG_STRING, &backend, 0, "use different passdb backend as default backend", NULL},
591                 {"import",      'i', POPT_ARG_STRING, &backend_in, 0, "import user accounts from this backend", NULL},
592                 {"export",      'e', POPT_ARG_STRING, &backend_out, 0, "export user accounts to this backend", NULL},
593                 {"group",       'g', POPT_ARG_NONE, &transfer_groups, 0, "use -i and -e for groups", NULL},
594                 {"account-policy",      'P', POPT_ARG_STRING, &account_policy, 0,"value of an account policy (like maximum password age)",NULL},
595                 {"value",       'C', POPT_ARG_LONG, &account_policy_value, 'C',"set the account policy to this value", NULL},
596                 {"account-control",     'c', POPT_ARG_STRING, &account_control, 0, "Values of account control", NULL},
597                 POPT_COMMON_SAMBA
598                 POPT_TABLEEND
599         };
600         
601         setup_logging("pdbedit", True);
602         
603         pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
604                             POPT_CONTEXT_KEEP_FIRST);
605         
606         while((opt = poptGetNextOpt(pc)) != -1) {
607                 switch (opt) {
608                 case 'C':
609                         account_policy_value_set = True;
610                         break;
611                 }
612         }
613
614         poptGetArg(pc); /* Drop argv[0], the program name */
615
616         if (user_name == NULL)
617                 user_name = poptGetArg(pc);
618
619         if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
620                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", dyn_CONFIGFILE);
621                 exit(1);
622         }
623
624         /* Initialise the password backed before idmap and the global_sam_sid
625            to ensure that we fetch from ldap before we make a domain sid up */
626         
627         if(!initialize_password_db(False))
628                 exit(1);
629
630         if (!init_names())
631                 exit(1);
632
633         if (!idmap_init(lp_idmap_backend()))
634                 exit(1);
635
636         if (!idmap_init_wellknown_sids())
637                 exit(1);
638
639         setparms =      (backend ? BIT_BACKEND : 0) +
640                         (verbose ? BIT_VERBOSE : 0) +
641                         (spstyle ? BIT_SPSTYLE : 0) +
642                         (full_name ? BIT_FULLNAME : 0) +
643                         (home_dir ? BIT_HOMEDIR : 0) +
644                         (home_drive ? BIT_HDIRDRIVE : 0) +
645                         (logon_script ? BIT_LOGSCRIPT : 0) +
646                         (profile_path ? BIT_PROFILE : 0) +
647                         (machine ? BIT_MACHINE : 0) +
648                         (user_name ? BIT_USER : 0) +
649                         (list_users ? BIT_LIST : 0) +
650                         (modify_user ? BIT_MODIFY : 0) +
651                         (add_user ? BIT_CREATE : 0) +
652                         (delete_user ? BIT_DELETE : 0) +
653                         (account_control ? BIT_ACCTCTRL : 0) +
654                         (account_policy ? BIT_ACCPOLICY : 0) +
655                         (account_policy_value_set ? BIT_ACCPOLVAL : 0) +
656                         (backend_in ? BIT_IMPORT : 0) +
657                         (backend_out ? BIT_EXPORT : 0);
658
659         if (setparms & BIT_BACKEND) {
660                 if (!NT_STATUS_IS_OK(make_pdb_context_string(&bdef, backend))) {
661                         fprintf(stderr, "Can't initialize passdb backend.\n");
662                         return 1;
663                 }
664         } else {
665                 if (!NT_STATUS_IS_OK(make_pdb_context_list(&bdef, lp_passdb_backend()))) {
666                         fprintf(stderr, "Can't initialize passdb backend.\n");
667                         return 1;
668                 }
669         }
670         
671         /* the lowest bit options are always accepted */
672         checkparms = setparms & ~MASK_ALWAYS_GOOD;
673
674         /* account policy operations */
675         if ((checkparms & BIT_ACCPOLICY) && !(checkparms & ~(BIT_ACCPOLICY + BIT_ACCPOLVAL))) {
676                 uint32 value;
677                 int field = account_policy_name_to_fieldnum(account_policy);
678                 if (field == 0) {
679                         fprintf(stderr, "No account policy by that name\n");
680                         exit(1);
681                 }
682                 if (!account_policy_get(field, &value)) {
683                         fprintf(stderr, "valid account policy, but unable to fetch value!\n");
684                         exit(1);
685                 }
686                 if (account_policy_value_set) {
687                         printf("account policy value for %s was %u\n", account_policy, value);
688                         if (!account_policy_set(field, account_policy_value)) {
689                                 fprintf(stderr, "valid account policy, but unable to set value!\n");
690                                 exit(1);
691                         }
692                         printf("account policy value for %s is now %lu\n", account_policy, account_policy_value);
693                         exit(0);
694                 } else {
695                         printf("account policy value for %s is %u\n", account_policy, value);
696                         exit(0);
697                 }
698         }
699
700         /* import and export operations */
701         if (((checkparms & BIT_IMPORT) || (checkparms & BIT_EXPORT))
702                         && !(checkparms & ~(BIT_IMPORT +BIT_EXPORT))) {
703                 if (backend_in) {
704                         if (!NT_STATUS_IS_OK(make_pdb_context_string(&bin, backend_in))) {
705                                 fprintf(stderr, "Can't initialize passdb backend.\n");
706                                 return 1;
707                         }
708                 } else {
709                         bin = bdef;
710                 }
711                 if (backend_out) {
712                         if (!NT_STATUS_IS_OK(make_pdb_context_string(&bout, backend_out))) {
713                                 fprintf(stderr, "Can't initialize %s.\n", backend_out);
714                                 return 1;
715                         }
716                 } else {
717                         bout = bdef;
718                 }
719                 if (transfer_groups) {
720                         return export_groups(bin, bout);
721                 } else {
722                         return export_database(bin, bout);
723                 }
724         }
725
726         /* if BIT_USER is defined but nothing else then threat it as -l -u for compatibility */
727         /* fake up BIT_LIST if only BIT_USER is defined */
728         if ((checkparms & BIT_USER) && !(checkparms & ~BIT_USER)) {
729                 checkparms += BIT_LIST;
730         }
731         
732         /* modify flag is optional to maintain backwards compatibility */
733         /* fake up BIT_MODIFY if BIT_USER  and at least one of MASK_USER_GOOD is defined */
734         if (!((checkparms & ~MASK_USER_GOOD) & ~BIT_USER) && (checkparms & MASK_USER_GOOD)) {
735                 checkparms += BIT_MODIFY;
736         }
737
738         /* list users operations */
739         if (checkparms & BIT_LIST) {
740                 if (!(checkparms & ~BIT_LIST)) {
741                         return print_users_list (bdef, verbose, spstyle);
742                 }
743                 if (!(checkparms & ~(BIT_USER + BIT_LIST))) {
744                         return print_user_info (bdef, user_name, verbose, spstyle);
745                 }
746         }
747         
748         /* mask out users options */
749         checkparms &= ~MASK_USER_GOOD;
750         
751         /* account operation */
752         if ((checkparms & BIT_CREATE) || (checkparms & BIT_MODIFY) || (checkparms & BIT_DELETE)) {
753                 /* check use of -u option */
754                 if (!(checkparms & BIT_USER)) {
755                         fprintf (stderr, "Username not specified! (use -u option)\n");
756                         return -1;
757                 }
758
759                 /* account creation operations */
760                 if (!(checkparms & ~(BIT_CREATE + BIT_USER + BIT_MACHINE))) {
761                         if (checkparms & BIT_MACHINE) {
762                                 return new_machine (bdef, user_name);
763                         } else {
764                                 return new_user (bdef, user_name, full_name, home_dir, 
765                                                  home_drive, logon_script, 
766                                                  profile_path, user_sid, group_sid);
767                         }
768                 }
769
770                 /* account deletion operations */
771                 if (!(checkparms & ~(BIT_DELETE + BIT_USER + BIT_MACHINE))) {
772                         if (checkparms & BIT_MACHINE) {
773                                 return delete_machine_entry (bdef, user_name);
774                         } else {
775                                 return delete_user_entry (bdef, user_name);
776                         }
777                 }
778
779                 /* account modification operations */
780                 if (!(checkparms & ~(BIT_MODIFY + BIT_USER))) {
781                         return set_user_info (bdef, user_name, full_name,
782                                               home_dir,
783                                               home_drive,
784                                               logon_script,
785                                               profile_path, account_control,
786                                               user_sid, group_sid);
787                 }
788         }
789
790         if (setparms >= 0x20) {
791                 fprintf (stderr, "Incompatible or insufficient options on command line!\n");
792         }
793         poptPrintHelp(pc, stderr, 0);
794
795         return 1;
796 }