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
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 /*****************************************************/
30 /* Distributed SMB/CIFS Server Management Utility */
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 */
38 /*****************************************************/
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. */
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;
70 int opt_maxusers
= -1;
71 const char *opt_comment
= "";
72 const char *opt_container
= NULL
;
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
= "";
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();
98 if (strequal(param
, "PDC")) {
100 } else if (strequal(param
, "BDC")) {
102 } else if (strequal(param
, "MEMBER")) {
103 return SEC_CHAN_WKSTA
;
105 } else if (strequal(param
, "DOMAIN")) {
106 return SEC_CHAN_DOMAIN
;
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
))
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
)
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
,
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
)
168 if (!opt_password
&& !opt_machine_pass
) {
169 char *pass
= getpass("Password:");
171 opt_password
= SMB_STRDUP(pass
);
175 nt_status
= cli_full_connection(c
, NULL
, server_name
,
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
)) {
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");
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
)
222 nt_status
= cli_full_connection(c
, opt_requester_name
, server_name
,
226 "", 0, Undefined
, NULL
);
228 if (NT_STATUS_IS_OK(nt_status
)) {
231 DEBUG(1,("Cannot connect to server (anonymously). Error was %s\n", nt_errstr(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
)
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
);
270 pipe_hnd
= cli_rpc_pipe_open_noauth(cli_tmp
, pipe_num
, &nt_status
);
272 DEBUG(0, ("couldn't not initialize pipe\n"));
273 cli_shutdown(cli_tmp
);
274 SAFE_FREE(server_name
);
279 *pp_pipe_hnd
= pipe_hnd
;
280 SAFE_FREE(server_name
);
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");
299 opt_password
= secrets_fetch_machine_password(opt_target_workgroup
, NULL
, NULL
);
300 if (asprintf(&user_name
, "%s$@%s", global_myname(), lp_realm()) == -1) {
303 opt_user_name
= user_name
;
307 BOOL
net_find_server(unsigned flags
, struct in_addr
*server_ip
, char **server_name
)
311 *server_name
= SMB_STRDUP(opt_host
);
315 *server_ip
= opt_dest_ip
;
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"));
325 } else if (flags
& NET_FLAGS_PDC
) {
326 struct in_addr pdc_ip
;
328 if (get_pdc_ip(opt_target_workgroup
, &pdc_ip
)) {
331 if (is_zero_ip(pdc_ip
))
334 if ( !name_status_find(opt_target_workgroup
, 0x1b, 0x20, pdc_ip
, dc_name
) )
337 *server_name
= SMB_STRDUP(dc_name
);
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"));
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"));
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"));
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
))
381 if (!name_status_find(domain_name
, 0x1b, 0x20, *server_ip
, server_name
))
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
;
398 if (!net_find_server(flags
, &server_ip
, &server_name
)) {
399 d_fprintf(stderr
, "\nUnable to find a suitable server\n");
403 if (flags
& NET_FLAGS_ANONYMOUS
) {
404 nt_status
= connect_to_ipc_anonymous(&cli
, &server_ip
, server_name
);
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
)) {
418 d_fprintf(stderr
, "Connection failed: %s\n",
419 nt_errstr(nt_status
));
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)
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
)
469 uint32 sec_channel_type
= SEC_CHAN_WKSTA
;
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");
479 d_printf("Modified trust account password in secrets database\n");
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");
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
)
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
);
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
));
541 sid_to_string(sid_str
, &sid
);
542 d_printf("SID for domain %s is: %s\n", name
, sid_str
);
546 static int net_setlocalsid(int argc
, const char **argv
)
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");
558 if (!secrets_store_domain_sid(global_myname(), &sid
)) {
559 DEBUG(0,("Can't store domain SID as a pdc/bdc.\n"));
566 static int net_getdomainsid(int argc
, const char **argv
)
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");
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");
591 sid_to_string(sid_str
, &domain_sid
);
592 d_printf("SID for domain %s is: %s\n", opt_workgroup
, sid_str
);
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");
608 static int net_afs_key(int argc
, const char **argv
)
611 struct afs_keyfile keyfile
;
614 d_printf("usage: 'net afs key <keyfile> cell'\n");
618 if (!secrets_init()) {
619 d_fprintf(stderr
, "Could not open secrets.tdb\n");
623 if ((fd
= open(argv
[0], O_RDONLY
, 0)) < 0) {
624 d_fprintf(stderr
, "Could not open %s\n", argv
[0]);
628 if (read(fd
, &keyfile
, sizeof(keyfile
)) != sizeof(keyfile
)) {
629 d_fprintf(stderr
, "Could not read keyfile\n");
633 if (!secrets_store_afs_keyfile(argv
[1], &keyfile
)) {
634 d_fprintf(stderr
, "Could not write keyfile to secrets.tdb\n");
641 static int net_afs_impersonate(int argc
, const char **argv
)
646 fprintf(stderr
, "Usage: net afs impersonate <user> <cell>\n");
650 token
= afs_createtoken_str(argv
[0], argv
[1]);
653 fprintf(stderr
, "Could not create token\n");
657 if (!afs_settoken_str(token
)) {
658 fprintf(stderr
, "Could not set token into kernel\n");
662 printf("Success: %s@%s\n", argv
[0], argv
[1]);
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
},
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
,
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
);
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
);
697 static uint32
get_maxrid(void)
701 if (!search_maxrid(pdb_search_users(0), "users", &max_rid
))
704 if (!search_maxrid(pdb_search_groups(), "groups", &max_rid
))
707 if (!search_maxrid(pdb_search_aliases(get_global_sam_sid()),
708 "aliases", &max_rid
))
714 static int net_maxrid(int argc
, const char **argv
)
719 DEBUG(0, ("usage: net maxrid\n"));
723 if ((rid
= get_maxrid()) == 0) {
724 DEBUG(0, ("can't get current maximum rid\n"));
728 d_printf("Currently used maximum rid: %d\n", rid
);
733 /* main function table */
734 static struct functable net_func
[] = {
739 /* eventually these should auto-choose the transport ... */
741 {"SHARE", net_share
},
742 {"SESSION", net_rap_session
},
743 {"SERVER", net_rap_server
},
744 {"DOMAIN", net_rap_domain
},
745 {"PRINTQ", net_rap_printq
},
747 {"GROUP", net_group
},
748 {"GROUPMAP", net_groupmap
},
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
},
758 {"LOOKUP", net_lookup
},
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
778 /****************************************************************************
780 ****************************************************************************/
781 int main(int argc
, const char **argv
)
787 const char ** argv_new
;
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
},
825 zero_ip(&opt_dest_ip
);
829 /* set default debug level to 0 regardless of what smb.conf sets */
830 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 0;
833 pc
= poptGetContext(NULL
, argc
, (const char **) argv
, long_options
,
834 POPT_CONTEXT_KEEP_FIRST
);
836 while((opt
= poptGetNextOpt(pc
)) != -1) {
839 net_help(argc
, argv
);
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");
850 opt_user_specified
= True
;
851 opt_user_name
= SMB_STRDUP(opt_user_name
);
852 p
= strchr(opt_user_name
,'%');
859 d_fprintf(stderr
, "\nInvalid option %s: %s\n",
860 poptBadOption(pc
, 0), poptStrerror(opt
));
861 net_help(argc
, argv
);
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
);
876 for (i
=0; i
<argc
; i
++) {
877 if (argv_new
[i
] == NULL
) {
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());
904 /* this makes sure that when we do things like call scripts,
905 that it won't assert becouse we are not root */
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();
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
));