r13316: Let the carnage begin....
[metze/samba/wip.git] / source3 / utils / net.c
1 /* 
2    Samba Unix/Linux SMB client library 
3    Distributed SMB/CIFS Server Management Utility 
4    Copyright (C) 2001 Steve French  (sfrench@us.ibm.com)
5    Copyright (C) 2001 Jim McDonough (jmcd@us.ibm.com)
6    Copyright (C) 2001 Andrew Tridgell (tridge@samba.org)
7    Copyright (C) 2001 Andrew Bartlett (abartlet@samba.org)
8
9    Originally written by Steve and Jim. Largely rewritten by tridge in
10    November 2001.
11
12    Reworked again by abartlet in December 2001
13
14    This program is free software; you can redistribute it and/or modify
15    it under the terms of the GNU General Public License as published by
16    the Free Software Foundation; either version 2 of the License, or
17    (at your option) any later version.
18    
19    This program is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22    GNU General Public License for more details.
23    
24    You should have received a copy of the GNU General Public License
25    along with this program; if not, write to the Free Software
26    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
27  
28 /*****************************************************/
29 /*                                                   */
30 /*   Distributed SMB/CIFS Server Management Utility  */
31 /*                                                   */
32 /*   The intent was to make the syntax similar       */
33 /*   to the NET utility (first developed in DOS      */
34 /*   with additional interesting & useful functions  */
35 /*   added in later SMB server network operating     */
36 /*   systems).                                       */
37 /*                                                   */
38 /*****************************************************/
39
40 #include "includes.h"
41 #include "utils/net.h"
42
43 /***********************************************************************/
44 /* Beginning of internationalization section.  Translatable constants  */
45 /* should be kept in this area and referenced in the rest of the code. */
46 /*                                                                     */
47 /* No functions, outside of Samba or LSB (Linux Standards Base) should */
48 /* be used (if possible).                                              */
49 /***********************************************************************/
50
51 #define YES_STRING              "Yes"
52 #define NO_STRING               "No"
53
54 /************************************************************************************/
55 /*                       end of internationalization section                        */
56 /************************************************************************************/
57
58 /* Yes, these buggers are globals.... */
59 const char *opt_requester_name = NULL;
60 const char *opt_host = NULL; 
61 const char *opt_password = NULL;
62 const char *opt_user_name = NULL;
63 BOOL opt_user_specified = False;
64 const char *opt_workgroup = NULL;
65 int opt_long_list_entries = 0;
66 int opt_reboot = 0;
67 int opt_force = 0;
68 int opt_port = 0;
69 int opt_verbose = 0;
70 int opt_maxusers = -1;
71 const char *opt_comment = "";
72 const char *opt_container = NULL;
73 int opt_flags = -1;
74 int opt_timeout = 0;
75 const char *opt_target_workgroup = NULL;
76 int opt_machine_pass = 0;
77 BOOL opt_localgroup = False;
78 BOOL opt_domaingroup = False;
79 const char *opt_newntname = "";
80 int opt_rid = 0;
81 int opt_acls = 0;
82 int opt_attrs = 0;
83 int opt_timestamps = 0;
84 const char *opt_exclude = NULL;
85 const char *opt_destination = NULL;
86
87 BOOL opt_have_ip = False;
88 struct in_addr opt_dest_ip;
89
90 extern struct in_addr loopback_ip;
91 extern BOOL AllowDebugChange;
92
93 uint32 get_sec_channel_type(const char *param) 
94 {
95         if (!(param && *param)) {
96                 return get_default_sec_channel();
97         } else {
98                 if (strequal(param, "PDC")) {
99                         return SEC_CHAN_BDC;
100                 } else if (strequal(param, "BDC")) {
101                         return SEC_CHAN_BDC;
102                 } else if (strequal(param, "MEMBER")) {
103                         return SEC_CHAN_WKSTA;
104 #if 0                   
105                 } else if (strequal(param, "DOMAIN")) {
106                         return SEC_CHAN_DOMAIN;
107 #endif
108                 } else {
109                         return get_default_sec_channel();
110                 }
111         }
112 }
113
114 /*
115   run a function from a function table. If not found then
116   call the specified usage function 
117 */
118 int net_run_function(int argc, const char **argv, struct functable *table, 
119                      int (*usage_fn)(int argc, const char **argv))
120 {
121         int i;
122         
123         if (argc < 1) {
124                 d_printf("\nUsage: \n");
125                 return usage_fn(argc, argv);
126         }
127         for (i=0; table[i].funcname; i++) {
128                 if (StrCaseCmp(argv[0], table[i].funcname) == 0)
129                         return table[i].fn(argc-1, argv+1);
130         }
131         d_fprintf(stderr, "No command: %s\n", argv[0]);
132         return usage_fn(argc, argv);
133 }
134
135 /*
136  * run a function from a function table.
137  */
138 int net_run_function2(int argc, const char **argv, const char *whoami,
139                       struct functable2 *table)
140 {
141         int i;
142
143         if (argc != 0) {
144                 for (i=0; table[i].funcname; i++) {
145                         if (StrCaseCmp(argv[0], table[i].funcname) == 0)
146                                 return table[i].fn(argc-1, argv+1);
147                 }
148         }
149
150         for (i=0; table[i].funcname != NULL; i++) {
151                 d_printf("%s %-15s %s\n", whoami, table[i].funcname,
152                          table[i].helptext);
153         }
154
155         return -1;
156 }
157
158 /****************************************************************************
159 connect to \\server\service 
160 ****************************************************************************/
161 NTSTATUS connect_to_service(struct cli_state **c, struct in_addr *server_ip,
162                                         const char *server_name, 
163                                         const char *service_name, 
164                                         const char *service_type)
165 {
166         NTSTATUS nt_status;
167
168         if (!opt_password && !opt_machine_pass) {
169                 char *pass = getpass("Password:");
170                 if (pass) {
171                         opt_password = SMB_STRDUP(pass);
172                 }
173         }
174         
175         nt_status = cli_full_connection(c, NULL, server_name, 
176                                         server_ip, opt_port,
177                                         service_name, service_type,  
178                                         opt_user_name, opt_workgroup,
179                                         opt_password, 0, Undefined, NULL);
180         
181         if (NT_STATUS_IS_OK(nt_status)) {
182                 return nt_status;
183         } else {
184                 d_fprintf(stderr, "Could not connect to server %s\n", server_name);
185
186                 /* Display a nicer message depending on the result */
187
188                 if (NT_STATUS_V(nt_status) == 
189                     NT_STATUS_V(NT_STATUS_LOGON_FAILURE))
190                         d_fprintf(stderr, "The username or password was not correct.\n");
191
192                 if (NT_STATUS_V(nt_status) == 
193                     NT_STATUS_V(NT_STATUS_ACCOUNT_LOCKED_OUT))
194                         d_fprintf(stderr, "The account was locked out.\n");
195
196                 if (NT_STATUS_V(nt_status) == 
197                     NT_STATUS_V(NT_STATUS_ACCOUNT_DISABLED))
198                         d_fprintf(stderr, "The account was disabled.\n");
199
200                 return nt_status;
201         }
202 }
203
204
205 /****************************************************************************
206 connect to \\server\ipc$  
207 ****************************************************************************/
208 NTSTATUS connect_to_ipc(struct cli_state **c, struct in_addr *server_ip,
209                                         const char *server_name)
210 {
211         return connect_to_service(c, server_ip, server_name, "IPC$", "IPC");
212 }
213
214 /****************************************************************************
215 connect to \\server\ipc$ anonymously
216 ****************************************************************************/
217 NTSTATUS connect_to_ipc_anonymous(struct cli_state **c,
218                         struct in_addr *server_ip, const char *server_name)
219 {
220         NTSTATUS nt_status;
221
222         nt_status = cli_full_connection(c, opt_requester_name, server_name, 
223                                         server_ip, opt_port,
224                                         "IPC$", "IPC",  
225                                         "", "",
226                                         "", 0, Undefined, NULL);
227         
228         if (NT_STATUS_IS_OK(nt_status)) {
229                 return nt_status;
230         } else {
231                 DEBUG(1,("Cannot connect to server (anonymously).  Error was %s\n", nt_errstr(nt_status)));
232                 return nt_status;
233         }
234 }
235
236 /**
237  * Connect a server and open a given pipe
238  *
239  * @param cli_dst               A cli_state 
240  * @param pipe                  The pipe to open
241  * @param got_pipe              boolean that stores if we got a pipe
242  *
243  * @return Normal NTSTATUS return.
244  **/
245 NTSTATUS connect_dst_pipe(struct cli_state **cli_dst, struct rpc_pipe_client **pp_pipe_hnd, int pipe_num)
246 {
247         NTSTATUS nt_status;
248         char *server_name = SMB_STRDUP("127.0.0.1");
249         struct cli_state *cli_tmp = NULL;
250         struct rpc_pipe_client *pipe_hnd = NULL;
251
252         if (opt_destination)
253                 server_name = SMB_STRDUP(opt_destination);
254
255         /* make a connection to a named pipe */
256         nt_status = connect_to_ipc(&cli_tmp, NULL, server_name);
257         if (!NT_STATUS_IS_OK(nt_status)) {
258                 return nt_status;
259         }
260
261         pipe_hnd = cli_rpc_pipe_open_noauth(cli_tmp, pipe_num, &nt_status);
262         if (!pipe_hnd) {
263                 DEBUG(0, ("couldn't not initialize pipe\n"));
264                 cli_shutdown(cli_tmp);
265                 return nt_status;
266         }
267
268         *cli_dst = cli_tmp;
269         *pp_pipe_hnd = pipe_hnd;
270
271         return nt_status;
272 }
273
274 /****************************************************************************
275  Use the local machine's password for this session.
276 ****************************************************************************/
277
278 int net_use_machine_password(void) 
279 {
280         char *user_name = NULL;
281
282         if (!secrets_init()) {
283                 d_fprintf(stderr, "ERROR: Unable to open secrets database\n");
284                 exit(1);
285         }
286
287         user_name = NULL;
288         opt_password = secrets_fetch_machine_password(opt_target_workgroup, NULL, NULL);
289         if (asprintf(&user_name, "%s$@%s", global_myname(), lp_realm()) == -1) {
290                 return -1;
291         }
292         opt_user_name = user_name;
293         return 0;
294 }
295
296 BOOL net_find_server(unsigned flags, struct in_addr *server_ip, char **server_name)
297 {
298
299         if (opt_host) {
300                 *server_name = SMB_STRDUP(opt_host);
301         }               
302
303         if (opt_have_ip) {
304                 *server_ip = opt_dest_ip;
305                 if (!*server_name) {
306                         *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
307                 }
308         } else if (*server_name) {
309                 /* resolve the IP address */
310                 if (!resolve_name(*server_name, server_ip, 0x20))  {
311                         DEBUG(1,("Unable to resolve server name\n"));
312                         return False;
313                 }
314         } else if (flags & NET_FLAGS_PDC) {
315                 struct in_addr pdc_ip;
316
317                 if (get_pdc_ip(opt_target_workgroup, &pdc_ip)) {
318                         fstring dc_name;
319                         
320                         if (is_zero_ip(pdc_ip))
321                                 return False;
322                         
323                         if ( !name_status_find(opt_target_workgroup, 0x1b, 0x20, pdc_ip, dc_name) )
324                                 return False;
325                                 
326                         *server_name = SMB_STRDUP(dc_name);
327                         *server_ip = pdc_ip;
328                 }
329                 
330         } else if (flags & NET_FLAGS_DMB) {
331                 struct in_addr msbrow_ip;
332                 /*  if (!resolve_name(MSBROWSE, &msbrow_ip, 1)) */
333                 if (!resolve_name(opt_target_workgroup, &msbrow_ip, 0x1B))  {
334                         DEBUG(1,("Unable to resolve domain browser via name lookup\n"));
335                         return False;
336                 } else {
337                         *server_ip = msbrow_ip;
338                 }
339                 *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
340         } else if (flags & NET_FLAGS_MASTER) {
341                 struct in_addr brow_ips;
342                 if (!resolve_name(opt_target_workgroup, &brow_ips, 0x1D))  {
343                                 /* go looking for workgroups */
344                         DEBUG(1,("Unable to resolve master browser via name lookup\n"));
345                         return False;
346                 } else {
347                         *server_ip = brow_ips;
348                 }
349                 *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
350         } else if (!(flags & NET_FLAGS_LOCALHOST_DEFAULT_INSANE)) {
351                 *server_ip = loopback_ip;
352                 *server_name = SMB_STRDUP("127.0.0.1");
353         }
354
355         if (!server_name || !*server_name) {
356                 DEBUG(1,("no server to connect to\n"));
357                 return False;
358         }
359
360         return True;
361 }
362
363
364 BOOL net_find_pdc(struct in_addr *server_ip, fstring server_name, const char *domain_name)
365 {
366         if (get_pdc_ip(domain_name, server_ip)) {
367                 if (is_zero_ip(*server_ip))
368                         return False;
369                 
370                 if (!name_status_find(domain_name, 0x1b, 0x20, *server_ip, server_name))
371                         return False;
372                         
373                 return True;    
374         } 
375         else
376                 return False;
377 }
378
379
380 struct cli_state *net_make_ipc_connection(unsigned flags)
381 {
382         char *server_name = NULL;
383         struct in_addr server_ip;
384         struct cli_state *cli = NULL;
385         NTSTATUS nt_status;
386
387         if (!net_find_server(flags, &server_ip, &server_name)) {
388                 d_fprintf(stderr, "\nUnable to find a suitable server\n");
389                 return NULL;
390         }
391
392         if (flags & NET_FLAGS_ANONYMOUS) {
393                 nt_status = connect_to_ipc_anonymous(&cli, &server_ip, server_name);
394         } else {
395                 nt_status = connect_to_ipc(&cli, &server_ip, server_name);
396         }
397
398         SAFE_FREE(server_name);
399         if (NT_STATUS_IS_OK(nt_status)) {
400                 return cli;
401         } else {
402                 d_fprintf(stderr, "Connection failed: %s\n",
403                           nt_errstr(nt_status));
404                 return NULL;
405         }
406 }
407
408 static int net_user(int argc, const char **argv)
409 {
410         if (net_ads_check() == 0)
411                 return net_ads_user(argc, argv);
412
413         /* if server is not specified, default to PDC? */
414         if (net_rpc_check(NET_FLAGS_PDC))
415                 return net_rpc_user(argc, argv);
416
417         return net_rap_user(argc, argv);
418 }
419
420 static int net_group(int argc, const char **argv)
421 {
422         if (net_ads_check() == 0)
423                 return net_ads_group(argc, argv);
424
425         if (argc == 0 && net_rpc_check(NET_FLAGS_PDC))
426                 return net_rpc_group(argc, argv);
427
428         return net_rap_group(argc, argv);
429 }
430
431 static int net_join(int argc, const char **argv)
432 {
433         if (net_ads_check() == 0) {
434                 if (net_ads_join(argc, argv) == 0)
435                         return 0;
436                 else
437                         d_fprintf(stderr, "ADS join did not work, falling back to RPC...\n");
438         }
439         return net_rpc_join(argc, argv);
440 }
441
442 static int net_changetrustpw(int argc, const char **argv)
443 {
444         if (net_ads_check() == 0)
445                 return net_ads_changetrustpw(argc, argv);
446
447         return net_rpc_changetrustpw(argc, argv);
448 }
449
450 static int net_changesecretpw(int argc, const char **argv)
451 {
452         char *trust_pw;
453         uint32 sec_channel_type = SEC_CHAN_WKSTA;
454
455         if(opt_force) {
456                 trust_pw = getpass("Enter machine password: ");
457
458                 if (!secrets_store_machine_password(trust_pw, lp_workgroup(), sec_channel_type)) {
459                             d_fprintf(stderr, "Unable to write the machine account password in the secrets database");
460                             return 1;
461                 }
462                 else {
463                     d_printf("Modified trust account password in secrets database\n");
464                 }
465         }
466         else {
467                 d_printf("Machine account password change requires the -f flag.\n");
468                 d_printf("Do NOT use this function unless you know what it does!\n");
469                 d_printf("This function will change the ADS Domain member machine account password in the secrets.tdb file!\n");
470         }
471
472         return 0;
473 }
474
475 static int net_share(int argc, const char **argv)
476 {
477         if (net_rpc_check(0))
478                 return net_rpc_share(argc, argv);
479         return net_rap_share(argc, argv);
480 }
481
482 static int net_file(int argc, const char **argv)
483 {
484         if (net_rpc_check(0))
485                 return net_rpc_file(argc, argv);
486         return net_rap_file(argc, argv);
487 }
488
489 /*
490  Retrieve our local SID or the SID for the specified name
491  */
492 static int net_getlocalsid(int argc, const char **argv)
493 {
494         DOM_SID sid;
495         const char *name;
496         fstring sid_str;
497
498         if (argc >= 1) {
499                 name = argv[0];
500         }
501         else {
502                 name = global_myname();
503         }
504
505         if(!initialize_password_db(False)) {
506                 DEBUG(0, ("WARNING: Could not open passdb - local sid may not reflect passdb\n"
507                           "backend knowlege (such as the sid stored in LDAP)\n"));
508         }
509
510         /* first check to see if we can even access secrets, so we don't
511            panic when we can't. */
512
513         if (!secrets_init()) {
514                 d_fprintf(stderr, "Unable to open secrets.tdb.  Can't fetch domain SID for name: %s\n", name);
515                 return 1;
516         }
517
518         /* Generate one, if it doesn't exist */
519         get_global_sam_sid();
520
521         if (!secrets_fetch_domain_sid(name, &sid)) {
522                 DEBUG(0, ("Can't fetch domain SID for name: %s\n", name));
523                 return 1;
524         }
525         sid_to_string(sid_str, &sid);
526         d_printf("SID for domain %s is: %s\n", name, sid_str);
527         return 0;
528 }
529
530 static int net_setlocalsid(int argc, const char **argv)
531 {
532         DOM_SID sid;
533
534         if ( (argc != 1)
535              || (strncmp(argv[0], "S-1-5-21-", strlen("S-1-5-21-")) != 0)
536              || (!string_to_sid(&sid, argv[0]))
537              || (sid.num_auths != 4)) {
538                 d_printf("usage: net setlocalsid S-1-5-21-x-y-z\n");
539                 return 1;
540         }
541
542         if (!secrets_store_domain_sid(global_myname(), &sid)) {
543                 DEBUG(0,("Can't store domain SID as a pdc/bdc.\n"));
544                 return 1;
545         }
546
547         return 0;
548 }
549
550 static int net_getdomainsid(int argc, const char **argv)
551 {
552         DOM_SID domain_sid;
553         fstring sid_str;
554
555         if(!initialize_password_db(False)) {
556                 DEBUG(0, ("WARNING: Could not open passdb - domain sid may not reflect passdb\n"
557                           "backend knowlege (such as the sid stored in LDAP)\n"));
558         }
559
560         /* Generate one, if it doesn't exist */
561         get_global_sam_sid();
562
563         if (!secrets_fetch_domain_sid(global_myname(), &domain_sid)) {
564                 d_fprintf(stderr, "Could not fetch local SID\n");
565                 return 1;
566         }
567         sid_to_string(sid_str, &domain_sid);
568         d_printf("SID for domain %s is: %s\n", global_myname(), sid_str);
569
570         if (!secrets_fetch_domain_sid(opt_workgroup, &domain_sid)) {
571                 d_fprintf(stderr, "Could not fetch domain SID\n");
572                 return 1;
573         }
574
575         sid_to_string(sid_str, &domain_sid);
576         d_printf("SID for domain %s is: %s\n", opt_workgroup, sid_str);
577
578         return 0;
579 }
580
581 #ifdef WITH_FAKE_KASERVER
582
583 int net_help_afs(int argc, const char **argv)
584 {
585         d_printf("  net afs key filename\n"
586                  "\tImports a OpenAFS KeyFile into our secrets.tdb\n\n");
587         d_printf("  net afs impersonate <user> <cell>\n"
588                  "\tCreates a token for user@cell\n\n");
589         return -1;
590 }
591
592 static int net_afs_key(int argc, const char **argv)
593 {
594         int fd;
595         struct afs_keyfile keyfile;
596
597         if (argc != 2) {
598                 d_printf("usage: 'net afs key <keyfile> cell'\n");
599                 return -1;
600         }
601
602         if (!secrets_init()) {
603                 d_fprintf(stderr, "Could not open secrets.tdb\n");
604                 return -1;
605         }
606
607         if ((fd = open(argv[0], O_RDONLY, 0)) < 0) {
608                 d_fprintf(stderr, "Could not open %s\n", argv[0]);
609                 return -1;
610         }
611
612         if (read(fd, &keyfile, sizeof(keyfile)) != sizeof(keyfile)) {
613                 d_fprintf(stderr, "Could not read keyfile\n");
614                 return -1;
615         }
616
617         if (!secrets_store_afs_keyfile(argv[1], &keyfile)) {
618                 d_fprintf(stderr, "Could not write keyfile to secrets.tdb\n");
619                 return -1;
620         }
621
622         return 0;
623 }
624
625 static int net_afs_impersonate(int argc, const char **argv)
626 {
627         char *token;
628
629         if (argc != 2) {
630                 fprintf(stderr, "Usage: net afs impersonate <user> <cell>\n");
631                 exit(1);
632         }
633
634         token = afs_createtoken_str(argv[0], argv[1]);
635
636         if (token == NULL) {
637                 fprintf(stderr, "Could not create token\n");
638                 exit(1);
639         }
640
641         if (!afs_settoken_str(token)) {
642                 fprintf(stderr, "Could not set token into kernel\n");
643                 exit(1);
644         }
645
646         printf("Success: %s@%s\n", argv[0], argv[1]);
647         return 0;
648 }
649
650 static int net_afs(int argc, const char **argv)
651 {
652         struct functable func[] = {
653                 {"key", net_afs_key},
654                 {"impersonate", net_afs_impersonate},
655                 {"help", net_help_afs},
656                 {NULL, NULL}
657         };
658         return net_run_function(argc, argv, func, net_help_afs);
659 }
660
661 #endif /* WITH_FAKE_KASERVER */
662
663 static BOOL search_maxrid(struct pdb_search *search, const char *type,
664                           uint32 *max_rid)
665 {
666         struct samr_displayentry *entries;
667         uint32 i, num_entries;
668
669         if (search == NULL) {
670                 d_fprintf(stderr, "get_maxrid: Could not search %s\n", type);
671                 return False;
672         }
673
674         num_entries = pdb_search_entries(search, 0, 0xffffffff, &entries);
675         for (i=0; i<num_entries; i++)
676                 *max_rid = MAX(*max_rid, entries[i].rid);
677         pdb_search_destroy(search);
678         return True;
679 }
680
681 static uint32 get_maxrid(void)
682 {
683         uint32 max_rid = 0;
684
685         if (!search_maxrid(pdb_search_users(0), "users", &max_rid))
686                 return 0;
687
688         if (!search_maxrid(pdb_search_groups(), "groups", &max_rid))
689                 return 0;
690
691         if (!search_maxrid(pdb_search_aliases(get_global_sam_sid()),
692                            "aliases", &max_rid))
693                 return 0;
694         
695         return max_rid;
696 }
697
698 static int net_maxrid(int argc, const char **argv)
699 {
700         uint32 rid;
701
702         if (argc != 0) {
703                 DEBUG(0, ("usage: net maxrid\n"));
704                 return 1;
705         }
706
707         if ((rid = get_maxrid()) == 0) {
708                 DEBUG(0, ("can't get current maximum rid\n"));
709                 return 1;
710         }
711
712         d_printf("Currently used maximum rid: %d\n", rid);
713
714         return 0;
715 }
716
717 /* main function table */
718 static struct functable net_func[] = {
719         {"RPC", net_rpc},
720         {"RAP", net_rap},
721         {"ADS", net_ads},
722
723         /* eventually these should auto-choose the transport ... */
724         {"FILE", net_file},
725         {"SHARE", net_share},
726         {"SESSION", net_rap_session},
727         {"SERVER", net_rap_server},
728         {"DOMAIN", net_rap_domain},
729         {"PRINTQ", net_rap_printq},
730         {"USER", net_user},
731         {"GROUP", net_group},
732         {"GROUPMAP", net_groupmap},
733         {"SAM", net_sam},
734         {"VALIDATE", net_rap_validate},
735         {"GROUPMEMBER", net_rap_groupmember},
736         {"ADMIN", net_rap_admin},
737         {"SERVICE", net_rap_service},   
738         {"PASSWORD", net_rap_password},
739         {"CHANGETRUSTPW", net_changetrustpw},
740         {"CHANGESECRETPW", net_changesecretpw},
741         {"TIME", net_time},
742         {"LOOKUP", net_lookup},
743         {"JOIN", net_join},
744         {"CACHE", net_cache},
745         {"GETLOCALSID", net_getlocalsid},
746         {"SETLOCALSID", net_setlocalsid},
747         {"GETDOMAINSID", net_getdomainsid},
748         {"MAXRID", net_maxrid},
749         {"IDMAP", net_idmap},
750         {"STATUS", net_status},
751         {"USERSHARE", net_usershare},
752         {"USERSIDLIST", net_usersidlist},
753 #ifdef WITH_FAKE_KASERVER
754         {"AFS", net_afs},
755 #endif
756
757         {"HELP", net_help},
758         {NULL, NULL}
759 };
760
761
762 /****************************************************************************
763   main program
764 ****************************************************************************/
765  int main(int argc, const char **argv)
766 {
767         int opt,i;
768         char *p;
769         int rc = 0;
770         int argc_new = 0;
771         const char ** argv_new;
772         poptContext pc;
773
774         struct poptOption long_options[] = {
775                 {"help",        'h', POPT_ARG_NONE,   0, 'h'},
776                 {"workgroup",   'w', POPT_ARG_STRING, &opt_target_workgroup},
777                 {"user",        'U', POPT_ARG_STRING, &opt_user_name, 'U'},
778                 {"ipaddress",   'I', POPT_ARG_STRING, 0,'I'},
779                 {"port",        'p', POPT_ARG_INT,    &opt_port},
780                 {"myname",      'n', POPT_ARG_STRING, &opt_requester_name},
781                 {"server",      'S', POPT_ARG_STRING, &opt_host},
782                 {"container",   'c', POPT_ARG_STRING, &opt_container},
783                 {"comment",     'C', POPT_ARG_STRING, &opt_comment},
784                 {"maxusers",    'M', POPT_ARG_INT,    &opt_maxusers},
785                 {"flags",       'F', POPT_ARG_INT,    &opt_flags},
786                 {"long",        'l', POPT_ARG_NONE,   &opt_long_list_entries},
787                 {"reboot",      'r', POPT_ARG_NONE,   &opt_reboot},
788                 {"force",       'f', POPT_ARG_NONE,   &opt_force},
789                 {"timeout",     't', POPT_ARG_INT,    &opt_timeout},
790                 {"machine-pass",'P', POPT_ARG_NONE,   &opt_machine_pass},
791                 {"myworkgroup", 'W', POPT_ARG_STRING, &opt_workgroup},
792                 {"verbose",     'v', POPT_ARG_NONE,   &opt_verbose},
793                 /* Options for 'net groupmap set' */
794                 {"local",       'L', POPT_ARG_NONE,   &opt_localgroup},
795                 {"domain",      'D', POPT_ARG_NONE,   &opt_domaingroup},
796                 {"ntname",      'N', POPT_ARG_STRING, &opt_newntname},
797                 {"rid",         'R', POPT_ARG_INT,    &opt_rid},
798                 /* Options for 'net rpc share migrate' */
799                 {"acls",        0, POPT_ARG_NONE,     &opt_acls},
800                 {"attrs",       0, POPT_ARG_NONE,     &opt_attrs},
801                 {"timestamps",  0, POPT_ARG_NONE,     &opt_timestamps},
802                 {"exclude",     'e', POPT_ARG_STRING, &opt_exclude},
803                 {"destination", 0, POPT_ARG_STRING,   &opt_destination},
804
805                 POPT_COMMON_SAMBA
806                 { 0, 0, 0, 0}
807         };
808
809         zero_ip(&opt_dest_ip);
810
811         load_case_tables();
812
813         /* set default debug level to 0 regardless of what smb.conf sets */
814         DEBUGLEVEL_CLASS[DBGC_ALL] = 0;
815         dbf = x_stderr;
816         
817         pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 
818                             POPT_CONTEXT_KEEP_FIRST);
819         
820         while((opt = poptGetNextOpt(pc)) != -1) {
821                 switch (opt) {
822                 case 'h':
823                         net_help(argc, argv);
824                         exit(0);
825                         break;
826                 case 'I':
827                         opt_dest_ip = *interpret_addr2(poptGetOptArg(pc));
828                         if (is_zero_ip(opt_dest_ip))
829                                 d_fprintf(stderr, "\nInvalid ip address specified\n");
830                         else
831                                 opt_have_ip = True;
832                         break;
833                 case 'U':
834                         opt_user_specified = True;
835                         opt_user_name = SMB_STRDUP(opt_user_name);
836                         p = strchr(opt_user_name,'%');
837                         if (p) {
838                                 *p = 0;
839                                 opt_password = p+1;
840                         }
841                         break;
842                 default:
843                         d_fprintf(stderr, "\nInvalid option %s: %s\n", 
844                                  poptBadOption(pc, 0), poptStrerror(opt));
845                         net_help(argc, argv);
846                         exit(1);
847                 }
848         }
849         
850         /*
851          * Don't load debug level from smb.conf. It should be
852          * set by cmdline arg or remain default (0)
853          */
854         AllowDebugChange = False;
855         lp_load(dyn_CONFIGFILE,True,False,False,True);
856         
857         argv_new = (const char **)poptGetArgs(pc);
858
859         argc_new = argc;
860         for (i=0; i<argc; i++) {
861                 if (argv_new[i] == NULL) {
862                         argc_new = i;
863                         break;
864                 }
865         }
866
867         if (opt_requester_name) {
868                 set_global_myname(opt_requester_name);
869         }
870
871         if (!opt_user_name && getenv("LOGNAME")) {
872                 opt_user_name = getenv("LOGNAME");
873         }
874
875         if (!opt_workgroup) {
876                 opt_workgroup = smb_xstrdup(lp_workgroup());
877         }
878         
879         if (!opt_target_workgroup) {
880                 opt_target_workgroup = smb_xstrdup(lp_workgroup());
881         }
882         
883         if (!init_names())
884                 exit(1);
885
886         load_interfaces();
887         
888         /* this makes sure that when we do things like call scripts, 
889            that it won't assert becouse we are not root */
890         sec_init();
891
892         if (opt_machine_pass) {
893                 /* it is very useful to be able to make ads queries as the
894                    machine account for testing purposes and for domain leave */
895
896                 net_use_machine_password();
897         }
898
899         if (!opt_password) {
900                 opt_password = getenv("PASSWD");
901         }
902          
903         rc = net_run_function(argc_new-1, argv_new+1, net_func, net_help);
904         
905         DEBUG(2,("return code = %d\n", rc));
906         return rc;
907 }