r14170: Paranioa fix for sesssetup.
[Samba/nascimento.git] / source3 / utils / net.c
blob1389885ba1776b2d0ff9a4fe7903ddaf87896e31
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)
9 Originally written by Steve and Jim. Largely rewritten by tridge in
10 November 2001.
12 Reworked again by abartlet in December 2001
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.
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.
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. */
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 /*****************************************************/
40 #include "includes.h"
41 #include "utils/net.h"
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 /***********************************************************************/
51 #define YES_STRING "Yes"
52 #define NO_STRING "No"
54 /************************************************************************************/
55 /* end of internationalization section */
56 /************************************************************************************/
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;
87 BOOL opt_have_ip = False;
88 struct in_addr opt_dest_ip;
90 extern struct in_addr loopback_ip;
91 extern BOOL AllowDebugChange;
93 uint32 get_sec_channel_type(const char *param)
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();
115 run a function from a function table. If not found then
116 call the specified usage function
118 int net_run_function(int argc, const char **argv, struct functable *table,
119 int (*usage_fn)(int argc, const char **argv))
121 int i;
123 if (argc < 1) {
124 d_printf("\nUsage: \n");
125 return usage_fn(argc, argv);
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);
131 d_fprintf(stderr, "No command: %s\n", argv[0]);
132 return usage_fn(argc, argv);
136 * run a function from a function table.
138 int net_run_function2(int argc, const char **argv, const char *whoami,
139 struct functable2 *table)
141 int i;
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);
150 for (i=0; table[i].funcname != NULL; i++) {
151 d_printf("%s %-15s %s\n", whoami, table[i].funcname,
152 table[i].helptext);
155 return -1;
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)
166 NTSTATUS nt_status;
168 if (!opt_password && !opt_machine_pass) {
169 char *pass = getpass("Password:");
170 if (pass) {
171 opt_password = SMB_STRDUP(pass);
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);
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);
186 /* Display a nicer message depending on the result */
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");
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");
196 if (NT_STATUS_V(nt_status) ==
197 NT_STATUS_V(NT_STATUS_ACCOUNT_DISABLED))
198 d_fprintf(stderr, "The account was disabled.\n");
200 return nt_status;
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)
211 return connect_to_service(c, server_ip, server_name, "IPC$", "IPC");
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)
220 NTSTATUS nt_status;
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);
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;
237 * Connect a server and open a given pipe
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
243 * @return Normal NTSTATUS return.
245 NTSTATUS connect_dst_pipe(struct cli_state **cli_dst, struct rpc_pipe_client **pp_pipe_hnd, int pipe_num)
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;
252 if (server_name == NULL) {
253 return NT_STATUS_NO_MEMORY;
256 if (opt_destination) {
257 SAFE_FREE(server_name);
258 if ((server_name = SMB_STRDUP(opt_destination)) == NULL) {
259 return NT_STATUS_NO_MEMORY;
263 /* make a connection to a named pipe */
264 nt_status = connect_to_ipc(&cli_tmp, NULL, server_name);
265 if (!NT_STATUS_IS_OK(nt_status)) {
266 SAFE_FREE(server_name);
267 return nt_status;
270 pipe_hnd = cli_rpc_pipe_open_noauth(cli_tmp, pipe_num, &nt_status);
271 if (!pipe_hnd) {
272 DEBUG(0, ("couldn't not initialize pipe\n"));
273 cli_shutdown(cli_tmp);
274 SAFE_FREE(server_name);
275 return nt_status;
278 *cli_dst = cli_tmp;
279 *pp_pipe_hnd = pipe_hnd;
280 SAFE_FREE(server_name);
282 return nt_status;
285 /****************************************************************************
286 Use the local machine's password for this session.
287 ****************************************************************************/
289 int net_use_machine_password(void)
291 char *user_name = NULL;
293 if (!secrets_init()) {
294 d_fprintf(stderr, "ERROR: Unable to open secrets database\n");
295 exit(1);
298 user_name = NULL;
299 opt_password = secrets_fetch_machine_password(opt_target_workgroup, NULL, NULL);
300 if (asprintf(&user_name, "%s$@%s", global_myname(), lp_realm()) == -1) {
301 return -1;
303 opt_user_name = user_name;
304 return 0;
307 BOOL net_find_server(unsigned flags, struct in_addr *server_ip, char **server_name)
310 if (opt_host) {
311 *server_name = SMB_STRDUP(opt_host);
314 if (opt_have_ip) {
315 *server_ip = opt_dest_ip;
316 if (!*server_name) {
317 *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
319 } else if (*server_name) {
320 /* resolve the IP address */
321 if (!resolve_name(*server_name, server_ip, 0x20)) {
322 DEBUG(1,("Unable to resolve server name\n"));
323 return False;
325 } else if (flags & NET_FLAGS_PDC) {
326 struct in_addr pdc_ip;
328 if (get_pdc_ip(opt_target_workgroup, &pdc_ip)) {
329 fstring dc_name;
331 if (is_zero_ip(pdc_ip))
332 return False;
334 if ( !name_status_find(opt_target_workgroup, 0x1b, 0x20, pdc_ip, dc_name) )
335 return False;
337 *server_name = SMB_STRDUP(dc_name);
338 *server_ip = pdc_ip;
341 } else if (flags & NET_FLAGS_DMB) {
342 struct in_addr msbrow_ip;
343 /* if (!resolve_name(MSBROWSE, &msbrow_ip, 1)) */
344 if (!resolve_name(opt_target_workgroup, &msbrow_ip, 0x1B)) {
345 DEBUG(1,("Unable to resolve domain browser via name lookup\n"));
346 return False;
347 } else {
348 *server_ip = msbrow_ip;
350 *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
351 } else if (flags & NET_FLAGS_MASTER) {
352 struct in_addr brow_ips;
353 if (!resolve_name(opt_target_workgroup, &brow_ips, 0x1D)) {
354 /* go looking for workgroups */
355 DEBUG(1,("Unable to resolve master browser via name lookup\n"));
356 return False;
357 } else {
358 *server_ip = brow_ips;
360 *server_name = SMB_STRDUP(inet_ntoa(opt_dest_ip));
361 } else if (!(flags & NET_FLAGS_LOCALHOST_DEFAULT_INSANE)) {
362 *server_ip = loopback_ip;
363 *server_name = SMB_STRDUP("127.0.0.1");
366 if (!server_name || !*server_name) {
367 DEBUG(1,("no server to connect to\n"));
368 return False;
371 return True;
375 BOOL net_find_pdc(struct in_addr *server_ip, fstring server_name, const char *domain_name)
377 if (get_pdc_ip(domain_name, server_ip)) {
378 if (is_zero_ip(*server_ip))
379 return False;
381 if (!name_status_find(domain_name, 0x1b, 0x20, *server_ip, server_name))
382 return False;
384 return True;
386 else
387 return False;
391 struct cli_state *net_make_ipc_connection(unsigned flags)
393 char *server_name = NULL;
394 struct in_addr server_ip;
395 struct cli_state *cli = NULL;
396 NTSTATUS nt_status;
398 if (!net_find_server(flags, &server_ip, &server_name)) {
399 d_fprintf(stderr, "\nUnable to find a suitable server\n");
400 return NULL;
403 if (flags & NET_FLAGS_ANONYMOUS) {
404 nt_status = connect_to_ipc_anonymous(&cli, &server_ip, server_name);
405 } else {
406 nt_status = connect_to_ipc(&cli, &server_ip, server_name);
409 /* store the server in the affinity cache if it was a PDC */
411 if ( (flags & NET_FLAGS_PDC) && NT_STATUS_IS_OK(nt_status) )
412 saf_store( cli->server_domain, cli->desthost );
414 SAFE_FREE(server_name);
415 if (NT_STATUS_IS_OK(nt_status)) {
416 return cli;
417 } else {
418 d_fprintf(stderr, "Connection failed: %s\n",
419 nt_errstr(nt_status));
420 return NULL;
424 static int net_user(int argc, const char **argv)
426 if (net_ads_check() == 0)
427 return net_ads_user(argc, argv);
429 /* if server is not specified, default to PDC? */
430 if (net_rpc_check(NET_FLAGS_PDC))
431 return net_rpc_user(argc, argv);
433 return net_rap_user(argc, argv);
436 static int net_group(int argc, const char **argv)
438 if (net_ads_check() == 0)
439 return net_ads_group(argc, argv);
441 if (argc == 0 && net_rpc_check(NET_FLAGS_PDC))
442 return net_rpc_group(argc, argv);
444 return net_rap_group(argc, argv);
447 static int net_join(int argc, const char **argv)
449 if (net_ads_check() == 0) {
450 if (net_ads_join(argc, argv) == 0)
451 return 0;
452 else
453 d_fprintf(stderr, "ADS join did not work, falling back to RPC...\n");
455 return net_rpc_join(argc, argv);
458 static int net_changetrustpw(int argc, const char **argv)
460 if (net_ads_check() == 0)
461 return net_ads_changetrustpw(argc, argv);
463 return net_rpc_changetrustpw(argc, argv);
466 static int net_changesecretpw(int argc, const char **argv)
468 char *trust_pw;
469 uint32 sec_channel_type = SEC_CHAN_WKSTA;
471 if(opt_force) {
472 trust_pw = getpass("Enter machine password: ");
474 if (!secrets_store_machine_password(trust_pw, lp_workgroup(), sec_channel_type)) {
475 d_fprintf(stderr, "Unable to write the machine account password in the secrets database");
476 return 1;
478 else {
479 d_printf("Modified trust account password in secrets database\n");
482 else {
483 d_printf("Machine account password change requires the -f flag.\n");
484 d_printf("Do NOT use this function unless you know what it does!\n");
485 d_printf("This function will change the ADS Domain member machine account password in the secrets.tdb file!\n");
488 return 0;
491 static int net_share(int argc, const char **argv)
493 if (net_rpc_check(0))
494 return net_rpc_share(argc, argv);
495 return net_rap_share(argc, argv);
498 static int net_file(int argc, const char **argv)
500 if (net_rpc_check(0))
501 return net_rpc_file(argc, argv);
502 return net_rap_file(argc, argv);
506 Retrieve our local SID or the SID for the specified name
508 static int net_getlocalsid(int argc, const char **argv)
510 DOM_SID sid;
511 const char *name;
512 fstring sid_str;
514 if (argc >= 1) {
515 name = argv[0];
517 else {
518 name = global_myname();
521 if(!initialize_password_db(False)) {
522 DEBUG(0, ("WARNING: Could not open passdb - local sid may not reflect passdb\n"
523 "backend knowlege (such as the sid stored in LDAP)\n"));
526 /* first check to see if we can even access secrets, so we don't
527 panic when we can't. */
529 if (!secrets_init()) {
530 d_fprintf(stderr, "Unable to open secrets.tdb. Can't fetch domain SID for name: %s\n", name);
531 return 1;
534 /* Generate one, if it doesn't exist */
535 get_global_sam_sid();
537 if (!secrets_fetch_domain_sid(name, &sid)) {
538 DEBUG(0, ("Can't fetch domain SID for name: %s\n", name));
539 return 1;
541 sid_to_string(sid_str, &sid);
542 d_printf("SID for domain %s is: %s\n", name, sid_str);
543 return 0;
546 static int net_setlocalsid(int argc, const char **argv)
548 DOM_SID sid;
550 if ( (argc != 1)
551 || (strncmp(argv[0], "S-1-5-21-", strlen("S-1-5-21-")) != 0)
552 || (!string_to_sid(&sid, argv[0]))
553 || (sid.num_auths != 4)) {
554 d_printf("usage: net setlocalsid S-1-5-21-x-y-z\n");
555 return 1;
558 if (!secrets_store_domain_sid(global_myname(), &sid)) {
559 DEBUG(0,("Can't store domain SID as a pdc/bdc.\n"));
560 return 1;
563 return 0;
566 static int net_getdomainsid(int argc, const char **argv)
568 DOM_SID domain_sid;
569 fstring sid_str;
571 if(!initialize_password_db(False)) {
572 DEBUG(0, ("WARNING: Could not open passdb - domain sid may not reflect passdb\n"
573 "backend knowlege (such as the sid stored in LDAP)\n"));
576 /* Generate one, if it doesn't exist */
577 get_global_sam_sid();
579 if (!secrets_fetch_domain_sid(global_myname(), &domain_sid)) {
580 d_fprintf(stderr, "Could not fetch local SID\n");
581 return 1;
583 sid_to_string(sid_str, &domain_sid);
584 d_printf("SID for domain %s is: %s\n", global_myname(), sid_str);
586 if (!secrets_fetch_domain_sid(opt_workgroup, &domain_sid)) {
587 d_fprintf(stderr, "Could not fetch domain SID\n");
588 return 1;
591 sid_to_string(sid_str, &domain_sid);
592 d_printf("SID for domain %s is: %s\n", opt_workgroup, sid_str);
594 return 0;
597 #ifdef WITH_FAKE_KASERVER
599 int net_help_afs(int argc, const char **argv)
601 d_printf(" net afs key filename\n"
602 "\tImports a OpenAFS KeyFile into our secrets.tdb\n\n");
603 d_printf(" net afs impersonate <user> <cell>\n"
604 "\tCreates a token for user@cell\n\n");
605 return -1;
608 static int net_afs_key(int argc, const char **argv)
610 int fd;
611 struct afs_keyfile keyfile;
613 if (argc != 2) {
614 d_printf("usage: 'net afs key <keyfile> cell'\n");
615 return -1;
618 if (!secrets_init()) {
619 d_fprintf(stderr, "Could not open secrets.tdb\n");
620 return -1;
623 if ((fd = open(argv[0], O_RDONLY, 0)) < 0) {
624 d_fprintf(stderr, "Could not open %s\n", argv[0]);
625 return -1;
628 if (read(fd, &keyfile, sizeof(keyfile)) != sizeof(keyfile)) {
629 d_fprintf(stderr, "Could not read keyfile\n");
630 return -1;
633 if (!secrets_store_afs_keyfile(argv[1], &keyfile)) {
634 d_fprintf(stderr, "Could not write keyfile to secrets.tdb\n");
635 return -1;
638 return 0;
641 static int net_afs_impersonate(int argc, const char **argv)
643 char *token;
645 if (argc != 2) {
646 fprintf(stderr, "Usage: net afs impersonate <user> <cell>\n");
647 exit(1);
650 token = afs_createtoken_str(argv[0], argv[1]);
652 if (token == NULL) {
653 fprintf(stderr, "Could not create token\n");
654 exit(1);
657 if (!afs_settoken_str(token)) {
658 fprintf(stderr, "Could not set token into kernel\n");
659 exit(1);
662 printf("Success: %s@%s\n", argv[0], argv[1]);
663 return 0;
666 static int net_afs(int argc, const char **argv)
668 struct functable func[] = {
669 {"key", net_afs_key},
670 {"impersonate", net_afs_impersonate},
671 {"help", net_help_afs},
672 {NULL, NULL}
674 return net_run_function(argc, argv, func, net_help_afs);
677 #endif /* WITH_FAKE_KASERVER */
679 static BOOL search_maxrid(struct pdb_search *search, const char *type,
680 uint32 *max_rid)
682 struct samr_displayentry *entries;
683 uint32 i, num_entries;
685 if (search == NULL) {
686 d_fprintf(stderr, "get_maxrid: Could not search %s\n", type);
687 return False;
690 num_entries = pdb_search_entries(search, 0, 0xffffffff, &entries);
691 for (i=0; i<num_entries; i++)
692 *max_rid = MAX(*max_rid, entries[i].rid);
693 pdb_search_destroy(search);
694 return True;
697 static uint32 get_maxrid(void)
699 uint32 max_rid = 0;
701 if (!search_maxrid(pdb_search_users(0), "users", &max_rid))
702 return 0;
704 if (!search_maxrid(pdb_search_groups(), "groups", &max_rid))
705 return 0;
707 if (!search_maxrid(pdb_search_aliases(get_global_sam_sid()),
708 "aliases", &max_rid))
709 return 0;
711 return max_rid;
714 static int net_maxrid(int argc, const char **argv)
716 uint32 rid;
718 if (argc != 0) {
719 DEBUG(0, ("usage: net maxrid\n"));
720 return 1;
723 if ((rid = get_maxrid()) == 0) {
724 DEBUG(0, ("can't get current maximum rid\n"));
725 return 1;
728 d_printf("Currently used maximum rid: %d\n", rid);
730 return 0;
733 /* main function table */
734 static struct functable net_func[] = {
735 {"RPC", net_rpc},
736 {"RAP", net_rap},
737 {"ADS", net_ads},
739 /* eventually these should auto-choose the transport ... */
740 {"FILE", net_file},
741 {"SHARE", net_share},
742 {"SESSION", net_rap_session},
743 {"SERVER", net_rap_server},
744 {"DOMAIN", net_rap_domain},
745 {"PRINTQ", net_rap_printq},
746 {"USER", net_user},
747 {"GROUP", net_group},
748 {"GROUPMAP", net_groupmap},
749 {"SAM", net_sam},
750 {"VALIDATE", net_rap_validate},
751 {"GROUPMEMBER", net_rap_groupmember},
752 {"ADMIN", net_rap_admin},
753 {"SERVICE", net_rap_service},
754 {"PASSWORD", net_rap_password},
755 {"CHANGETRUSTPW", net_changetrustpw},
756 {"CHANGESECRETPW", net_changesecretpw},
757 {"TIME", net_time},
758 {"LOOKUP", net_lookup},
759 {"JOIN", net_join},
760 {"CACHE", net_cache},
761 {"GETLOCALSID", net_getlocalsid},
762 {"SETLOCALSID", net_setlocalsid},
763 {"GETDOMAINSID", net_getdomainsid},
764 {"MAXRID", net_maxrid},
765 {"IDMAP", net_idmap},
766 {"STATUS", net_status},
767 {"USERSHARE", net_usershare},
768 {"USERSIDLIST", net_usersidlist},
769 #ifdef WITH_FAKE_KASERVER
770 {"AFS", net_afs},
771 #endif
773 {"HELP", net_help},
774 {NULL, NULL}
778 /****************************************************************************
779 main program
780 ****************************************************************************/
781 int main(int argc, const char **argv)
783 int opt,i;
784 char *p;
785 int rc = 0;
786 int argc_new = 0;
787 const char ** argv_new;
788 poptContext pc;
790 struct poptOption long_options[] = {
791 {"help", 'h', POPT_ARG_NONE, 0, 'h'},
792 {"workgroup", 'w', POPT_ARG_STRING, &opt_target_workgroup},
793 {"user", 'U', POPT_ARG_STRING, &opt_user_name, 'U'},
794 {"ipaddress", 'I', POPT_ARG_STRING, 0,'I'},
795 {"port", 'p', POPT_ARG_INT, &opt_port},
796 {"myname", 'n', POPT_ARG_STRING, &opt_requester_name},
797 {"server", 'S', POPT_ARG_STRING, &opt_host},
798 {"container", 'c', POPT_ARG_STRING, &opt_container},
799 {"comment", 'C', POPT_ARG_STRING, &opt_comment},
800 {"maxusers", 'M', POPT_ARG_INT, &opt_maxusers},
801 {"flags", 'F', POPT_ARG_INT, &opt_flags},
802 {"long", 'l', POPT_ARG_NONE, &opt_long_list_entries},
803 {"reboot", 'r', POPT_ARG_NONE, &opt_reboot},
804 {"force", 'f', POPT_ARG_NONE, &opt_force},
805 {"timeout", 't', POPT_ARG_INT, &opt_timeout},
806 {"machine-pass",'P', POPT_ARG_NONE, &opt_machine_pass},
807 {"myworkgroup", 'W', POPT_ARG_STRING, &opt_workgroup},
808 {"verbose", 'v', POPT_ARG_NONE, &opt_verbose},
809 /* Options for 'net groupmap set' */
810 {"local", 'L', POPT_ARG_NONE, &opt_localgroup},
811 {"domain", 'D', POPT_ARG_NONE, &opt_domaingroup},
812 {"ntname", 'N', POPT_ARG_STRING, &opt_newntname},
813 {"rid", 'R', POPT_ARG_INT, &opt_rid},
814 /* Options for 'net rpc share migrate' */
815 {"acls", 0, POPT_ARG_NONE, &opt_acls},
816 {"attrs", 0, POPT_ARG_NONE, &opt_attrs},
817 {"timestamps", 0, POPT_ARG_NONE, &opt_timestamps},
818 {"exclude", 'e', POPT_ARG_STRING, &opt_exclude},
819 {"destination", 0, POPT_ARG_STRING, &opt_destination},
821 POPT_COMMON_SAMBA
822 { 0, 0, 0, 0}
825 zero_ip(&opt_dest_ip);
827 load_case_tables();
829 /* set default debug level to 0 regardless of what smb.conf sets */
830 DEBUGLEVEL_CLASS[DBGC_ALL] = 0;
831 dbf = x_stderr;
833 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
834 POPT_CONTEXT_KEEP_FIRST);
836 while((opt = poptGetNextOpt(pc)) != -1) {
837 switch (opt) {
838 case 'h':
839 net_help(argc, argv);
840 exit(0);
841 break;
842 case 'I':
843 opt_dest_ip = *interpret_addr2(poptGetOptArg(pc));
844 if (is_zero_ip(opt_dest_ip))
845 d_fprintf(stderr, "\nInvalid ip address specified\n");
846 else
847 opt_have_ip = True;
848 break;
849 case 'U':
850 opt_user_specified = True;
851 opt_user_name = SMB_STRDUP(opt_user_name);
852 p = strchr(opt_user_name,'%');
853 if (p) {
854 *p = 0;
855 opt_password = p+1;
857 break;
858 default:
859 d_fprintf(stderr, "\nInvalid option %s: %s\n",
860 poptBadOption(pc, 0), poptStrerror(opt));
861 net_help(argc, argv);
862 exit(1);
867 * Don't load debug level from smb.conf. It should be
868 * set by cmdline arg or remain default (0)
870 AllowDebugChange = False;
871 lp_load(dyn_CONFIGFILE,True,False,False,True);
873 argv_new = (const char **)poptGetArgs(pc);
875 argc_new = argc;
876 for (i=0; i<argc; i++) {
877 if (argv_new[i] == NULL) {
878 argc_new = i;
879 break;
883 if (opt_requester_name) {
884 set_global_myname(opt_requester_name);
887 if (!opt_user_name && getenv("LOGNAME")) {
888 opt_user_name = getenv("LOGNAME");
891 if (!opt_workgroup) {
892 opt_workgroup = smb_xstrdup(lp_workgroup());
895 if (!opt_target_workgroup) {
896 opt_target_workgroup = smb_xstrdup(lp_workgroup());
899 if (!init_names())
900 exit(1);
902 load_interfaces();
904 /* this makes sure that when we do things like call scripts,
905 that it won't assert becouse we are not root */
906 sec_init();
908 if (opt_machine_pass) {
909 /* it is very useful to be able to make ads queries as the
910 machine account for testing purposes and for domain leave */
912 net_use_machine_password();
915 if (!opt_password) {
916 opt_password = getenv("PASSWD");
919 rc = net_run_function(argc_new-1, argv_new+1, net_func, net_help);
921 DEBUG(2,("return code = %d\n", rc));
922 return rc;