Add net getlocalsid [name]
[Samba/gbeck.git] / source / utils / net.c
blob800aeded0a607bb4ee8693fa7af964105d215e34
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 char *opt_requester_name = NULL;
60 char *opt_host = NULL;
61 char *opt_password = NULL;
62 char *opt_user_name = NULL;
63 BOOL opt_user_specified = False;
64 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_maxusers = -1;
70 char *opt_comment = "";
71 int opt_flags = -1;
72 int opt_jobid = 0;
73 int opt_timeout = 0;
74 char *opt_target_workgroup = NULL;
75 static int opt_machine_pass = 0;
77 BOOL opt_have_ip = False;
78 struct in_addr opt_dest_ip;
80 extern pstring global_myname;
81 extern BOOL AllowDebugChange;
84 run a function from a function table. If not found then
85 call the specified usage function
87 int net_run_function(int argc, const char **argv, struct functable *table,
88 int (*usage_fn)(int argc, const char **argv))
90 int i;
92 if (argc < 1) {
93 d_printf("\nUsage: \n");
94 return usage_fn(argc, argv);
96 for (i=0; table[i].funcname; i++) {
97 if (StrCaseCmp(argv[0], table[i].funcname) == 0)
98 return table[i].fn(argc-1, argv+1);
100 d_printf("No command: %s\n", argv[0]);
101 return usage_fn(argc, argv);
105 /****************************************************************************
106 connect to \\server\ipc$
107 ****************************************************************************/
108 NTSTATUS connect_to_ipc(struct cli_state **c, struct in_addr *server_ip,
109 const char *server_name)
111 NTSTATUS nt_status;
113 if (!opt_password) {
114 char *pass = getpass("Password:");
115 if (pass) {
116 opt_password = strdup(pass);
120 nt_status = cli_full_connection(c, opt_requester_name, server_name,
121 server_ip, opt_port,
122 "IPC$", "IPC",
123 opt_user_name, opt_workgroup,
124 opt_password, 0);
126 if (NT_STATUS_IS_OK(nt_status)) {
127 return nt_status;
128 } else {
129 DEBUG(1,("Cannot connect to server. Error was %s\n",
130 nt_errstr(nt_status)));
132 /* Display a nicer message depending on the result */
134 if (NT_STATUS_V(nt_status) ==
135 NT_STATUS_V(NT_STATUS_LOGON_FAILURE))
136 d_printf("The username or password was not correct.\n");
138 return nt_status;
142 /****************************************************************************
143 connect to \\server\ipc$ anonymously
144 ****************************************************************************/
145 NTSTATUS connect_to_ipc_anonymous(struct cli_state **c,
146 struct in_addr *server_ip, const char *server_name)
148 NTSTATUS nt_status;
150 nt_status = cli_full_connection(c, opt_requester_name, server_name,
151 server_ip, opt_port,
152 "IPC$", "IPC",
153 "", "",
154 "", 0);
156 if (NT_STATUS_IS_OK(nt_status)) {
157 return nt_status;
158 } else {
159 DEBUG(1,("Cannot connect to server (anonymously). Error was %s\n", nt_errstr(nt_status)));
160 return nt_status;
164 BOOL net_find_server(unsigned flags, struct in_addr *server_ip, char **server_name)
167 if (opt_host) {
168 *server_name = strdup(opt_host);
171 if (opt_have_ip) {
172 *server_ip = opt_dest_ip;
173 if (!*server_name) {
174 *server_name = strdup(inet_ntoa(opt_dest_ip));
176 } else if (*server_name) {
177 /* resolve the IP address */
178 if (!resolve_name(*server_name, server_ip, 0x20)) {
179 DEBUG(1,("Unable to resolve server name\n"));
180 return False;
182 } else if (flags & NET_FLAGS_PDC) {
183 struct in_addr *ip_list;
184 int addr_count;
185 if (get_dc_list(True /* PDC only*/, opt_target_workgroup, &ip_list, &addr_count)) {
186 fstring dc_name;
187 if (addr_count < 1) {
188 return False;
191 *server_ip = *ip_list;
193 if (is_zero_ip(*server_ip))
194 return False;
196 if (!lookup_dc_name(global_myname, opt_target_workgroup, server_ip, dc_name))
197 return False;
199 *server_name = strdup(dc_name);
202 } else if (flags & NET_FLAGS_DMB) {
203 struct in_addr msbrow_ip;
204 /* if (!resolve_name(MSBROWSE, &msbrow_ip, 1)) */
205 if (!resolve_name(opt_target_workgroup, &msbrow_ip, 0x1B)) {
206 DEBUG(1,("Unable to resolve domain browser via name lookup\n"));
207 return False;
208 } else {
209 *server_ip = msbrow_ip;
211 *server_name = strdup(inet_ntoa(opt_dest_ip));
212 } else if (flags & NET_FLAGS_MASTER) {
213 struct in_addr brow_ips;
214 if (!resolve_name(opt_target_workgroup, &brow_ips, 0x1D)) {
215 /* go looking for workgroups */
216 DEBUG(1,("Unable to resolve master browser via name lookup\n"));
217 return False;
218 } else {
219 *server_ip = brow_ips;
221 *server_name = strdup(inet_ntoa(opt_dest_ip));
222 } else if (!(flags & NET_FLAGS_LOCALHOST_DEFAULT_INSANE)) {
223 extern struct in_addr loopback_ip;
224 *server_ip = loopback_ip;
225 *server_name = strdup("127.0.0.1");
228 if (!server_name || !*server_name) {
229 DEBUG(1,("no server to connect to\n"));
230 return False;
233 return True;
237 BOOL net_find_dc(struct in_addr *server_ip, fstring server_name, const char *domain_name)
239 struct in_addr *ip_list;
240 int addr_count;
242 if (get_dc_list(True /* PDC only*/, domain_name, &ip_list, &addr_count)) {
243 fstring dc_name;
244 if (addr_count < 1) {
245 return False;
248 *server_ip = *ip_list;
250 if (is_zero_ip(*server_ip))
251 return False;
253 if (!lookup_dc_name(global_myname, domain_name, server_ip, dc_name))
254 return False;
256 safe_strcpy(server_name, dc_name, FSTRING_LEN);
257 return True;
258 } else
259 return False;
263 struct cli_state *net_make_ipc_connection(unsigned flags)
265 char *server_name = NULL;
266 struct in_addr server_ip;
267 struct cli_state *cli = NULL;
268 NTSTATUS nt_status;
270 if (!net_find_server(flags, &server_ip, &server_name)) {
271 d_printf("\nUnable to find a suitable server\n");
272 return NULL;
275 if (flags & NET_FLAGS_ANONYMOUS) {
276 nt_status = connect_to_ipc_anonymous(&cli, &server_ip, server_name);
277 } else {
278 nt_status = connect_to_ipc(&cli, &server_ip, server_name);
280 SAFE_FREE(server_name);
281 return cli;
284 static int net_user(int argc, const char **argv)
286 if (net_ads_check() == 0)
287 return net_ads_user(argc, argv);
289 /* if server is not specified, default to PDC? */
290 if (net_rpc_check(NET_FLAGS_PDC))
291 return net_rpc_user(argc, argv);
293 return net_rap_user(argc, argv);
296 static int net_group(int argc, const char **argv)
298 if (net_ads_check() == 0)
299 return net_ads_group(argc, argv);
301 if (argc == 0 && net_rpc_check(NET_FLAGS_PDC))
302 return net_rpc_group(argc, argv);
304 return net_rap_group(argc, argv);
307 static int net_join(int argc, const char **argv)
309 if (net_ads_check() == 0) {
310 if (net_ads_join(argc, argv) == 0)
311 return 0;
312 else
313 d_printf("ADS join did not work, trying RPC...\n");
315 return net_rpc_join(argc, argv);
318 static int net_share(int argc, const char **argv)
320 if (net_rpc_check(0))
321 return net_rpc_share(argc, argv);
322 return net_rap_share(argc, argv);
325 static int net_file(int argc, const char **argv)
327 if (net_rpc_check(0))
328 return net_rpc_file(argc, argv);
329 return net_rap_file(argc, argv);
333 Retrieve our local SID or the SID for the specified name
335 static int net_getlocalsid(int argc, const char **argv)
337 DOM_SID sid;
338 const char *name;
339 fstring sid_str;
341 if (argc >= 1) {
342 name = argv[0];
344 else {
345 name = global_myname;
348 if (!secrets_fetch_domain_sid(name, &sid)) {
349 DEBUG(0, ("Can't fetch domain SID for name: %s\n", name));
350 return 1;
352 sid_to_string(sid_str, &sid);
353 d_printf("SID for domain %s is: %s\n", name, sid_str);
354 return 0;
357 static int net_setlocalsid(int argc, const char **argv)
359 DOM_SID sid;
361 if ( (argc != 1)
362 || (strncmp(argv[0], "S-1-5-21-", strlen("S-1-5-21-")) != 0)
363 || (!string_to_sid(&sid, argv[0]))
364 || (sid.num_auths != 4)) {
365 d_printf("usage: net setlocalsid S-1-5-21-x-y-z\n");
366 return 1;
369 if (!secrets_store_domain_sid(global_myname, &sid)) {
370 DEBUG(0,("Can't store domain SID as a pdc/bdc.\n"));
371 return 1;
374 return 0;
377 static int net_getdomainsid(int argc, const char **argv)
379 DOM_SID domain_sid;
380 fstring sid_str;
382 if (!secrets_fetch_domain_sid(global_myname, &domain_sid)) {
383 d_printf("Could not fetch local SID\n");
384 return 1;
386 sid_to_string(sid_str, &domain_sid);
387 d_printf("SID for domain %s is: %s\n", global_myname, sid_str);
389 if (!secrets_fetch_domain_sid(lp_workgroup(), &domain_sid)) {
390 d_printf("Could not fetch domain SID\n");
391 return 1;
394 sid_to_string(sid_str, &domain_sid);
395 d_printf("SID for domain %s is: %s\n", lp_workgroup(), sid_str);
397 return 0;
400 /* main function table */
401 static struct functable net_func[] = {
402 {"RPC", net_rpc},
403 {"RAP", net_rap},
404 {"ADS", net_ads},
406 /* eventually these should auto-choose the transport ... */
407 {"FILE", net_file},
408 {"SHARE", net_share},
409 {"SESSION", net_rap_session},
410 {"SERVER", net_rap_server},
411 {"DOMAIN", net_rap_domain},
412 {"PRINTQ", net_rap_printq},
413 {"USER", net_user},
414 {"GROUP", net_group},
415 {"VALIDATE", net_rap_validate},
416 {"GROUPMEMBER", net_rap_groupmember},
417 {"ADMIN", net_rap_admin},
418 {"SERVICE", net_rap_service},
419 {"PASSWORD", net_rap_password},
420 {"TIME", net_time},
421 {"LOOKUP", net_lookup},
422 {"JOIN", net_join},
423 {"CACHE", net_cache},
424 {"GETLOCALSID", net_getlocalsid},
425 {"SETLOCALSID", net_setlocalsid},
426 {"GETDOMAINSID", net_getdomainsid},
428 {"HELP", net_help},
429 {NULL, NULL}
433 /****************************************************************************
434 main program
435 ****************************************************************************/
436 int main(int argc, const char **argv)
438 int opt,i;
439 char *p;
440 int rc = 0;
441 int argc_new = 0;
442 const char ** argv_new;
443 poptContext pc;
444 static char *servicesf = dyn_CONFIGFILE;
445 static char *debuglevel = NULL;
447 struct poptOption long_options[] = {
448 {"help", 'h', POPT_ARG_NONE, 0, 'h'},
449 {"workgroup", 'w', POPT_ARG_STRING, &opt_target_workgroup},
450 {"myworkgroup", 'W', POPT_ARG_STRING, &opt_workgroup},
451 {"user", 'U', POPT_ARG_STRING, &opt_user_name, 'U'},
452 {"ipaddress", 'I', POPT_ARG_STRING, 0,'I'},
453 {"port", 'p', POPT_ARG_INT, &opt_port},
454 {"myname", 'n', POPT_ARG_STRING, &opt_requester_name},
455 {"conf", 's', POPT_ARG_STRING, &servicesf},
456 {"server", 'S', POPT_ARG_STRING, &opt_host},
457 {"comment", 'C', POPT_ARG_STRING, &opt_comment},
458 {"maxusers", 'M', POPT_ARG_INT, &opt_maxusers},
459 {"flags", 'F', POPT_ARG_INT, &opt_flags},
460 {"jobid", 'j', POPT_ARG_INT, &opt_jobid},
461 {"long", 'l', POPT_ARG_NONE, &opt_long_list_entries},
462 {"reboot", 'r', POPT_ARG_NONE, &opt_reboot},
463 {"force", 'f', POPT_ARG_NONE, &opt_force},
464 {"timeout", 't', POPT_ARG_INT, &opt_timeout},
465 {"machine-pass",'P', POPT_ARG_NONE, &opt_machine_pass},
466 {"debuglevel", 'D', POPT_ARG_STRING, &debuglevel},
467 { 0, 0, 0, 0}
470 zero_ip(&opt_dest_ip);
472 dbf = x_stderr;
474 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
475 POPT_CONTEXT_KEEP_FIRST);
477 while((opt = poptGetNextOpt(pc)) != -1) {
478 switch (opt) {
479 case 'h':
480 net_help(argc, argv);
481 exit(0);
482 break;
483 case 'I':
484 opt_dest_ip = *interpret_addr2(poptGetOptArg(pc));
485 if (is_zero_ip(opt_dest_ip))
486 d_printf("\nInvalid ip address specified\n");
487 else
488 opt_have_ip = True;
489 break;
490 case 'U':
491 opt_user_specified = True;
492 opt_user_name = strdup(opt_user_name);
493 p = strchr(opt_user_name,'%');
494 if (p) {
495 *p = 0;
496 opt_password = p+1;
498 break;
499 default:
500 d_printf("\nInvalid option %c (%d)\n", (char)opt, opt);
501 net_help(argc, argv);
502 exit(1);
506 if (debuglevel) {
507 debug_parse_levels(debuglevel);
508 AllowDebugChange = False;
511 lp_load(servicesf,True,False,False);
513 argv_new = (const char **)poptGetArgs(pc);
515 argc_new = argc;
516 for (i=0; i<argc; i++) {
517 if (argv_new[i] == NULL) {
518 argc_new = i;
519 break;
523 if (!opt_requester_name) {
524 static fstring myname;
525 get_myname(myname);
526 opt_requester_name = myname;
529 if (!opt_user_name && getenv("LOGNAME")) {
530 opt_user_name = getenv("LOGNAME");
533 if (!opt_workgroup) {
534 opt_workgroup = lp_workgroup();
537 if (!opt_target_workgroup) {
538 opt_target_workgroup = lp_workgroup();
541 if (!*global_myname) {
542 char *p2;
544 pstrcpy(global_myname, myhostname());
545 p2 = strchr_m(global_myname, '.');
546 if (p2)
547 *p2 = 0;
550 strupper(global_myname);
552 load_interfaces();
554 if (opt_machine_pass) {
555 /* it is very useful to be able to make ads queries as the
556 machine account for testing purposes and for domain leave */
558 if (!secrets_init()) {
559 d_printf("ERROR: Unable to open secrets database\n");
560 exit(1);
563 asprintf(&opt_user_name,"%s$", global_myname);
564 opt_password = secrets_fetch_machine_password();
565 if (!opt_password) {
566 d_printf("ERROR: Unable to fetch machine password\n");
567 exit(1);
571 rc = net_run_function(argc_new-1, argv_new+1, net_func, net_help);
573 DEBUG(2,("return code = %d\n", rc));
574 return rc;