net: Split out "net share"
[Samba.git] / source3 / utils / net.c
blob99e1e0c8890746a514fbf2aff10db519c1ff48d3
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 Copyright (C) 2008 Kai Blin (kai@samba.org)
10 Originally written by Steve and Jim. Largely rewritten by tridge in
11 November 2001.
13 Reworked again by abartlet in December 2001
15 Another overhaul, moving functionality into plug-ins loaded on demand by Kai
16 in May 2008.
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 3 of the License, or
21 (at your option) any later version.
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with this program. If not, see <http://www.gnu.org/licenses/>. */
31 /*****************************************************/
32 /* */
33 /* Distributed SMB/CIFS Server Management Utility */
34 /* */
35 /* The intent was to make the syntax similar */
36 /* to the NET utility (first developed in DOS */
37 /* with additional interesting & useful functions */
38 /* added in later SMB server network operating */
39 /* systems). */
40 /* */
41 /*****************************************************/
43 #include "includes.h"
44 #include "utils/net.h"
46 #ifdef WITH_FAKE_KASERVER
47 #include "utils/net_afs.h"
48 #endif
50 /***********************************************************************/
51 /* Beginning of internationalization section. Translatable constants */
52 /* should be kept in this area and referenced in the rest of the code. */
53 /* */
54 /* No functions, outside of Samba or LSB (Linux Standards Base) should */
55 /* be used (if possible). */
56 /***********************************************************************/
58 #define YES_STRING "Yes"
59 #define NO_STRING "No"
61 /***********************************************************************/
62 /* end of internationalization section */
63 /***********************************************************************/
65 uint32 get_sec_channel_type(const char *param)
67 if (!(param && *param)) {
68 return get_default_sec_channel();
69 } else {
70 if (strequal(param, "PDC")) {
71 return SEC_CHAN_BDC;
72 } else if (strequal(param, "BDC")) {
73 return SEC_CHAN_BDC;
74 } else if (strequal(param, "MEMBER")) {
75 return SEC_CHAN_WKSTA;
76 #if 0
77 } else if (strequal(param, "DOMAIN")) {
78 return SEC_CHAN_DOMAIN;
79 #endif
80 } else {
81 return get_default_sec_channel();
87 run a function from a function table. If not found then
88 call the specified usage function
90 int net_run_function(struct net_context *c, int argc, const char **argv,
91 struct functable *table,
92 int (*usage_fn)(struct net_context *c,
93 int argc, const char **argv))
95 int i;
97 if (argc < 1) {
98 d_printf("\nUsage: \n");
99 return usage_fn(c, argc, argv);
101 for (i=0; table[i].funcname; i++) {
102 if (StrCaseCmp(argv[0], table[i].funcname) == 0)
103 return table[i].fn(c, argc-1, argv+1);
105 d_fprintf(stderr, "No command: %s\n", argv[0]);
106 return usage_fn(c, argc, argv);
110 * run a function from a function table.
112 int net_run_function2(struct net_context *c, int argc, const char **argv,
113 const char *whoami, struct functable2 *table)
115 int i;
117 if (argc != 0) {
118 for (i=0; table[i].funcname; i++) {
119 if (StrCaseCmp(argv[0], table[i].funcname) == 0)
120 return table[i].fn(c, argc-1, argv+1);
124 for (i=0; table[i].funcname != NULL; i++) {
125 d_printf("%s %-15s %s\n", whoami, table[i].funcname,
126 table[i].helptext);
129 return -1;
132 static int net_changetrustpw(struct net_context *c, int argc, const char **argv)
134 if (net_ads_check_our_domain(c) == 0)
135 return net_ads_changetrustpw(c, argc, argv);
137 return net_rpc_changetrustpw(c, argc, argv);
140 static void set_line_buffering(FILE *f)
142 setvbuf(f, NULL, _IOLBF, 0);
145 static int net_changesecretpw(struct net_context *c, int argc,
146 const char **argv)
148 char *trust_pw;
149 uint32 sec_channel_type = SEC_CHAN_WKSTA;
151 if(c->opt_force) {
152 if (c->opt_stdin) {
153 set_line_buffering(stdin);
154 set_line_buffering(stdout);
155 set_line_buffering(stderr);
158 trust_pw = get_pass("Enter machine password: ", c->opt_stdin);
160 if (!secrets_store_machine_password(trust_pw, lp_workgroup(), sec_channel_type)) {
161 d_fprintf(stderr, "Unable to write the machine account password in the secrets database");
162 return 1;
164 else {
165 d_printf("Modified trust account password in secrets database\n");
168 else {
169 d_printf("Machine account password change requires the -f flag.\n");
170 d_printf("Do NOT use this function unless you know what it does!\n");
171 d_printf("This function will change the ADS Domain member machine account password in the secrets.tdb file!\n");
174 return 0;
178 Retrieve our local SID or the SID for the specified name
180 static int net_getlocalsid(struct net_context *c, int argc, const char **argv)
182 DOM_SID sid;
183 const char *name;
184 fstring sid_str;
186 if (argc >= 1) {
187 name = argv[0];
189 else {
190 name = global_myname();
193 if(!initialize_password_db(false, NULL)) {
194 DEBUG(0, ("WARNING: Could not open passdb - local sid may not reflect passdb\n"
195 "backend knowledge (such as the sid stored in LDAP)\n"));
198 /* first check to see if we can even access secrets, so we don't
199 panic when we can't. */
201 if (!secrets_init()) {
202 d_fprintf(stderr, "Unable to open secrets.tdb. Can't fetch domain SID for name: %s\n", name);
203 return 1;
206 /* Generate one, if it doesn't exist */
207 get_global_sam_sid();
209 if (!secrets_fetch_domain_sid(name, &sid)) {
210 DEBUG(0, ("Can't fetch domain SID for name: %s\n", name));
211 return 1;
213 sid_to_fstring(sid_str, &sid);
214 d_printf("SID for domain %s is: %s\n", name, sid_str);
215 return 0;
218 static int net_setlocalsid(struct net_context *c, int argc, const char **argv)
220 DOM_SID sid;
222 if ( (argc != 1)
223 || (strncmp(argv[0], "S-1-5-21-", strlen("S-1-5-21-")) != 0)
224 || (!string_to_sid(&sid, argv[0]))
225 || (sid.num_auths != 4)) {
226 d_printf("usage: net setlocalsid S-1-5-21-x-y-z\n");
227 return 1;
230 if (!secrets_store_domain_sid(global_myname(), &sid)) {
231 DEBUG(0,("Can't store domain SID as a pdc/bdc.\n"));
232 return 1;
235 return 0;
238 static int net_setdomainsid(struct net_context *c, int argc, const char **argv)
240 DOM_SID sid;
242 if ( (argc != 1)
243 || (strncmp(argv[0], "S-1-5-21-", strlen("S-1-5-21-")) != 0)
244 || (!string_to_sid(&sid, argv[0]))
245 || (sid.num_auths != 4)) {
246 d_printf("usage: net setdomainsid S-1-5-21-x-y-z\n");
247 return 1;
250 if (!secrets_store_domain_sid(lp_workgroup(), &sid)) {
251 DEBUG(0,("Can't store domain SID.\n"));
252 return 1;
255 return 0;
258 static int net_getdomainsid(struct net_context *c, int argc, const char **argv)
260 DOM_SID domain_sid;
261 fstring sid_str;
263 if (argc > 0) {
264 d_printf("usage: net getdomainsid\n");
265 return 1;
268 if(!initialize_password_db(false, NULL)) {
269 DEBUG(0, ("WARNING: Could not open passdb - domain SID may "
270 "not reflect passdb\n"
271 "backend knowledge (such as the SID stored in "
272 "LDAP)\n"));
275 /* first check to see if we can even access secrets, so we don't
276 panic when we can't. */
278 if (!secrets_init()) {
279 d_fprintf(stderr, "Unable to open secrets.tdb. Can't fetch domain"
280 "SID for name: %s\n", get_global_sam_name());
281 return 1;
284 /* Generate one, if it doesn't exist */
285 get_global_sam_sid();
287 if (!secrets_fetch_domain_sid(global_myname(), &domain_sid)) {
288 d_fprintf(stderr, "Could not fetch local SID\n");
289 return 1;
291 sid_to_fstring(sid_str, &domain_sid);
292 d_printf("SID for local machine %s is: %s\n", global_myname(), sid_str);
294 if (!secrets_fetch_domain_sid(c->opt_workgroup, &domain_sid)) {
295 d_fprintf(stderr, "Could not fetch domain SID\n");
296 return 1;
299 sid_to_fstring(sid_str, &domain_sid);
300 d_printf("SID for domain %s is: %s\n", c->opt_workgroup, sid_str);
302 return 0;
305 static bool search_maxrid(struct pdb_search *search, const char *type,
306 uint32 *max_rid)
308 struct samr_displayentry *entries;
309 uint32 i, num_entries;
311 if (search == NULL) {
312 d_fprintf(stderr, "get_maxrid: Could not search %s\n", type);
313 return false;
316 num_entries = pdb_search_entries(search, 0, 0xffffffff, &entries);
317 for (i=0; i<num_entries; i++)
318 *max_rid = MAX(*max_rid, entries[i].rid);
319 pdb_search_destroy(search);
320 return true;
323 static uint32 get_maxrid(void)
325 uint32 max_rid = 0;
327 if (!search_maxrid(pdb_search_users(0), "users", &max_rid))
328 return 0;
330 if (!search_maxrid(pdb_search_groups(), "groups", &max_rid))
331 return 0;
333 if (!search_maxrid(pdb_search_aliases(get_global_sam_sid()),
334 "aliases", &max_rid))
335 return 0;
337 return max_rid;
340 static int net_maxrid(struct net_context *c, int argc, const char **argv)
342 uint32 rid;
344 if (argc != 0) {
345 DEBUG(0, ("usage: net maxrid\n"));
346 return 1;
349 if ((rid = get_maxrid()) == 0) {
350 DEBUG(0, ("can't get current maximum rid\n"));
351 return 1;
354 d_printf("Currently used maximum rid: %d\n", rid);
356 return 0;
359 /* main function table */
360 static struct functable net_func[] = {
361 {"RPC", net_rpc},
362 {"RAP", net_rap},
363 {"ADS", net_ads},
365 /* eventually these should auto-choose the transport ... */
366 {"FILE", net_file},
367 {"SHARE", net_share},
368 {"SESSION", net_rap_session},
369 {"SERVER", net_rap_server},
370 {"DOMAIN", net_rap_domain},
371 {"PRINTQ", net_rap_printq},
372 {"USER", net_user},
373 {"GROUP", net_group},
374 {"GROUPMAP", net_groupmap},
375 {"SAM", net_sam},
376 {"VALIDATE", net_rap_validate},
377 {"GROUPMEMBER", net_rap_groupmember},
378 {"ADMIN", net_rap_admin},
379 {"SERVICE", net_rap_service},
380 {"PASSWORD", net_rap_password},
381 {"CHANGETRUSTPW", net_changetrustpw},
382 {"CHANGESECRETPW", net_changesecretpw},
383 {"TIME", net_time},
384 {"LOOKUP", net_lookup},
385 {"JOIN", net_join},
386 {"DOM", net_dom},
387 {"CACHE", net_cache},
388 {"GETLOCALSID", net_getlocalsid},
389 {"SETLOCALSID", net_setlocalsid},
390 {"SETDOMAINSID", net_setdomainsid},
391 {"GETDOMAINSID", net_getdomainsid},
392 {"MAXRID", net_maxrid},
393 {"IDMAP", net_idmap},
394 {"STATUS", net_status},
395 {"USERSHARE", net_usershare},
396 {"USERSIDLIST", net_usersidlist},
397 {"CONF", net_conf},
398 {"REGISTRY", net_registry},
399 #ifdef WITH_FAKE_KASERVER
400 {"AFS", net_afs},
401 #endif
403 {"HELP", net_help},
404 {NULL, NULL}
408 /****************************************************************************
409 main program
410 ****************************************************************************/
411 int main(int argc, const char **argv)
413 int opt,i;
414 char *p;
415 int rc = 0;
416 int argc_new = 0;
417 const char ** argv_new;
418 poptContext pc;
419 TALLOC_CTX *frame = talloc_stackframe();
420 struct net_context *c = talloc_zero(frame, struct net_context);
422 struct poptOption long_options[] = {
423 {"help", 'h', POPT_ARG_NONE, 0, 'h'},
424 {"workgroup", 'w', POPT_ARG_STRING, &c->opt_target_workgroup},
425 {"user", 'U', POPT_ARG_STRING, &c->opt_user_name, 'U'},
426 {"ipaddress", 'I', POPT_ARG_STRING, 0,'I'},
427 {"port", 'p', POPT_ARG_INT, &c->opt_port},
428 {"myname", 'n', POPT_ARG_STRING, &c->opt_requester_name},
429 {"server", 'S', POPT_ARG_STRING, &c->opt_host},
430 {"encrypt", 'e', POPT_ARG_NONE, NULL, 'e', "Encrypt SMB transport (UNIX extended servers only)" },
431 {"container", 'c', POPT_ARG_STRING, &c->opt_container},
432 {"comment", 'C', POPT_ARG_STRING, &c->opt_comment},
433 {"maxusers", 'M', POPT_ARG_INT, &c->opt_maxusers},
434 {"flags", 'F', POPT_ARG_INT, &c->opt_flags},
435 {"long", 'l', POPT_ARG_NONE, &c->opt_long_list_entries},
436 {"reboot", 'r', POPT_ARG_NONE, &c->opt_reboot},
437 {"force", 'f', POPT_ARG_NONE, &c->opt_force},
438 {"stdin", 'i', POPT_ARG_NONE, &c->opt_stdin},
439 {"timeout", 't', POPT_ARG_INT, &c->opt_timeout},
440 {"machine-pass",'P', POPT_ARG_NONE, &c->opt_machine_pass},
441 {"myworkgroup", 'W', POPT_ARG_STRING, &c->opt_workgroup},
442 {"verbose", 'v', POPT_ARG_NONE, &c->opt_verbose},
443 {"test", 'T', POPT_ARG_NONE, &c->opt_testmode},
444 /* Options for 'net groupmap set' */
445 {"local", 'L', POPT_ARG_NONE, &c->opt_localgroup},
446 {"domain", 'D', POPT_ARG_NONE, &c->opt_domaingroup},
447 {"ntname", 'N', POPT_ARG_STRING, &c->opt_newntname},
448 {"rid", 'R', POPT_ARG_INT, &c->opt_rid},
449 /* Options for 'net rpc share migrate' */
450 {"acls", 0, POPT_ARG_NONE, &c->opt_acls},
451 {"attrs", 0, POPT_ARG_NONE, &c->opt_attrs},
452 {"timestamps", 0, POPT_ARG_NONE, &c->opt_timestamps},
453 {"exclude", 'X', POPT_ARG_STRING, &c->opt_exclude},
454 {"destination", 0, POPT_ARG_STRING, &c->opt_destination},
455 {"tallocreport", 0, POPT_ARG_NONE, &c->do_talloc_report},
457 POPT_COMMON_SAMBA
458 { 0, 0, 0, 0}
462 zero_addr(&c->opt_dest_ip);
464 load_case_tables();
466 /* set default debug level to 0 regardless of what smb.conf sets */
467 DEBUGLEVEL_CLASS[DBGC_ALL] = 0;
468 dbf = x_stderr;
470 pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
471 POPT_CONTEXT_KEEP_FIRST);
473 while((opt = poptGetNextOpt(pc)) != -1) {
474 switch (opt) {
475 case 'h':
476 net_help(c, argc, argv);
477 exit(0);
478 break;
479 case 'e':
480 c->smb_encrypt = true;
481 break;
482 case 'I':
483 if (!interpret_string_addr(&c->opt_dest_ip,
484 poptGetOptArg(pc), 0)) {
485 d_fprintf(stderr, "\nInvalid ip address specified\n");
486 } else {
487 c->opt_have_ip = true;
489 break;
490 case 'U':
491 c->opt_user_specified = true;
492 c->opt_user_name = SMB_STRDUP(c->opt_user_name);
493 p = strchr(c->opt_user_name,'%');
494 if (p) {
495 *p = 0;
496 c->opt_password = p+1;
498 break;
499 default:
500 d_fprintf(stderr, "\nInvalid option %s: %s\n",
501 poptBadOption(pc, 0), poptStrerror(opt));
502 net_help(c, argc, argv);
503 exit(1);
508 * Don't load debug level from smb.conf. It should be
509 * set by cmdline arg or remain default (0)
511 c->AllowDebugChange = false;
512 lp_load(get_dyn_CONFIGFILE(), true, false, false, true);
514 argv_new = (const char **)poptGetArgs(pc);
516 argc_new = argc;
517 for (i=0; i<argc; i++) {
518 if (argv_new[i] == NULL) {
519 argc_new = i;
520 break;
524 if (c->do_talloc_report) {
525 talloc_enable_leak_report();
528 if (c->opt_requester_name) {
529 set_global_myname(c->opt_requester_name);
532 if (!c->opt_user_name && getenv("LOGNAME")) {
533 c->opt_user_name = getenv("LOGNAME");
536 if (!c->opt_workgroup) {
537 c->opt_workgroup = smb_xstrdup(lp_workgroup());
540 if (!c->opt_target_workgroup) {
541 c->opt_target_workgroup = smb_xstrdup(lp_workgroup());
544 if (!init_names())
545 exit(1);
547 load_interfaces();
549 /* this makes sure that when we do things like call scripts,
550 that it won't assert becouse we are not root */
551 sec_init();
553 if (c->opt_machine_pass) {
554 /* it is very useful to be able to make ads queries as the
555 machine account for testing purposes and for domain leave */
557 net_use_krb_machine_account(c);
560 if (!c->opt_password) {
561 c->opt_password = getenv("PASSWD");
564 rc = net_run_function(c, argc_new-1, argv_new+1, net_func, net_help);
566 DEBUG(2,("return code = %d\n", rc));
568 libnetapi_free(c->netapi_ctx);
570 TALLOC_FREE(frame);
571 return rc;