Merge from HEAD - save the type of channel used to contact the DC.
[Samba.git] / source / utils / net_ads.c
blob3615fd0e949dbce8d5abb8f2510d87f14a739e82
1 /*
2 Samba Unix/Linux SMB client library
3 net ads commands
4 Copyright (C) 2001 Andrew Tridgell (tridge@samba.org)
5 Copyright (C) 2001 Remus Koos (remuskoos@yahoo.com)
6 Copyright (C) 2002 Jim McDonough (jmcd@us.ibm.com)
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
24 #include "../utils/net.h"
26 #ifdef HAVE_ADS
28 int net_ads_usage(int argc, const char **argv)
30 d_printf(
31 "\nnet ads join <org_unit>"\
32 "\n\tjoins the local machine to a ADS realm\n"\
33 "\nnet ads leave"\
34 "\n\tremoves the local machine from a ADS realm\n"\
35 "\nnet ads testjoin"\
36 "\n\ttests that an exiting join is OK\n"\
37 "\nnet ads user"\
38 "\n\tlist, add, or delete users in the realm\n"\
39 "\nnet ads group"\
40 "\n\tlist, add, or delete groups in the realm\n"\
41 "\nnet ads info"\
42 "\n\tshows some info on the server\n"\
43 "\nnet ads status"\
44 "\n\tdump the machine account details to stdout\n"
45 "\nnet ads lookup"\
46 "\n\tperform a CLDAP search on the server\n"
47 "\nnet ads password <username@realm> -Uadmin_username@realm%%admin_pass"\
48 "\n\tchange a user's password using an admin account"\
49 "\n\t(note: use realm in UPPERCASE)\n"\
50 "\nnet ads changetrustpw"\
51 "\n\tchange the trust account password of this machine in the AD tree\n"\
52 "\nnet ads printer [info | publish | remove] <printername> <servername>"\
53 "\n\t lookup, add, or remove directory entry for a printer\n"\
54 "\nnet ads search"\
55 "\n\tperform a raw LDAP search and dump the results\n"
56 "\nnet ads dn"\
57 "\n\tperform a raw LDAP search and dump attributes of a particular DN\n"
59 return -1;
64 this implements the CLDAP based netlogon lookup requests
65 for finding the domain controller of a ADS domain
67 static int net_ads_lookup(int argc, const char **argv)
69 ADS_STRUCT *ads;
71 ads = ads_init(NULL, NULL, opt_host);
72 if (ads) {
73 ads->auth.flags |= ADS_AUTH_NO_BIND;
76 ads_connect(ads);
78 if (!ads || !ads->config.realm) {
79 d_printf("Didn't find the cldap server!\n");
80 return -1;
83 return ads_cldap_netlogon(ads);
88 static int net_ads_info(int argc, const char **argv)
90 ADS_STRUCT *ads;
92 ads = ads_init(NULL, NULL, opt_host);
94 if (ads) {
95 ads->auth.flags |= ADS_AUTH_NO_BIND;
98 ads_connect(ads);
100 if (!ads || !ads->config.realm) {
101 d_printf("Didn't find the ldap server!\n");
102 return -1;
105 d_printf("LDAP server: %s\n", inet_ntoa(ads->ldap_ip));
106 d_printf("LDAP server name: %s\n", ads->config.ldap_server_name);
107 d_printf("Realm: %s\n", ads->config.realm);
108 d_printf("Bind Path: %s\n", ads->config.bind_path);
109 d_printf("LDAP port: %d\n", ads->ldap_port);
110 d_printf("Server time: %s\n", http_timestring(ads->config.current_time));
112 return 0;
115 static void use_in_memory_ccache(void) {
116 /* Use in-memory credentials cache so we do not interfere with
117 * existing credentials */
118 setenv(KRB5_ENV_CCNAME, "MEMORY:net_ads", 1);
121 static ADS_STRUCT *ads_startup(void)
123 ADS_STRUCT *ads;
124 ADS_STATUS status;
125 BOOL need_password = False;
126 BOOL second_time = False;
128 ads = ads_init(NULL, NULL, opt_host);
130 if (!opt_user_name) {
131 opt_user_name = "administrator";
134 if (opt_user_specified) {
135 need_password = True;
138 retry:
139 if (!opt_password && need_password) {
140 char *prompt;
141 asprintf(&prompt,"%s password: ", opt_user_name);
142 opt_password = getpass(prompt);
143 free(prompt);
146 if (opt_password) {
147 use_in_memory_ccache();
148 ads->auth.password = strdup(opt_password);
151 ads->auth.user_name = strdup(opt_user_name);
153 status = ads_connect(ads);
154 if (!ADS_ERR_OK(status)) {
155 if (!need_password && !second_time) {
156 need_password = True;
157 second_time = True;
158 goto retry;
159 } else {
160 DEBUG(1,("ads_connect: %s\n", ads_errstr(status)));
161 return NULL;
164 return ads;
169 Check to see if connection can be made via ads.
170 ads_startup() stores the password in opt_password if it needs to so
171 that rpc or rap can use it without re-prompting.
173 int net_ads_check(void)
175 ADS_STRUCT *ads;
177 ads = ads_startup();
178 if (!ads)
179 return -1;
180 ads_destroy(&ads);
181 return 0;
185 determine the netbios workgroup name for a domain
187 static int net_ads_workgroup(int argc, const char **argv)
189 ADS_STRUCT *ads;
190 TALLOC_CTX *ctx;
191 char *workgroup;
193 if (!(ads = ads_startup())) return -1;
195 if (!(ctx = talloc_init("net_ads_workgroup"))) {
196 return -1;
199 if (!ADS_ERR_OK(ads_workgroup_name(ads, ctx, &workgroup))) {
200 d_printf("Failed to find workgroup for realm '%s'\n",
201 ads->config.realm);
202 talloc_destroy(ctx);
203 return -1;
206 d_printf("Workgroup: %s\n", workgroup);
208 talloc_destroy(ctx);
210 return 0;
215 static BOOL usergrp_display(char *field, void **values, void *data_area)
217 char **disp_fields = (char **) data_area;
219 if (!field) { /* must be end of record */
220 if (!strchr_m(disp_fields[0], '$')) {
221 if (disp_fields[1])
222 d_printf("%-21.21s %-50.50s\n",
223 disp_fields[0], disp_fields[1]);
224 else
225 d_printf("%s\n", disp_fields[0]);
227 SAFE_FREE(disp_fields[0]);
228 SAFE_FREE(disp_fields[1]);
229 return True;
231 if (!values) /* must be new field, indicate string field */
232 return True;
233 if (StrCaseCmp(field, "sAMAccountName") == 0) {
234 disp_fields[0] = strdup((char *) values[0]);
236 if (StrCaseCmp(field, "description") == 0)
237 disp_fields[1] = strdup((char *) values[0]);
238 return True;
241 static int net_ads_user_usage(int argc, const char **argv)
243 return net_help_user(argc, argv);
246 static int ads_user_add(int argc, const char **argv)
248 ADS_STRUCT *ads;
249 ADS_STATUS status;
250 char *upn, *userdn;
251 void *res=NULL;
252 int rc = -1;
254 if (argc < 1) return net_ads_user_usage(argc, argv);
256 if (!(ads = ads_startup())) return -1;
258 status = ads_find_user_acct(ads, &res, argv[0]);
260 if (!ADS_ERR_OK(status)) {
261 d_printf("ads_user_add: %s\n", ads_errstr(status));
262 goto done;
265 if (ads_count_replies(ads, res)) {
266 d_printf("ads_user_add: User %s already exists\n", argv[0]);
267 goto done;
270 status = ads_add_user_acct(ads, argv[0], opt_container, opt_comment);
272 if (!ADS_ERR_OK(status)) {
273 d_printf("Could not add user %s: %s\n", argv[0],
274 ads_errstr(status));
275 goto done;
278 /* if no password is to be set, we're done */
279 if (argc == 1) {
280 d_printf("User %s added\n", argv[0]);
281 rc = 0;
282 goto done;
285 /* try setting the password */
286 asprintf(&upn, "%s@%s", argv[0], ads->config.realm);
287 status = krb5_set_password(ads->auth.kdc_server, upn, argv[1], ads->auth.time_offset);
288 safe_free(upn);
289 if (ADS_ERR_OK(status)) {
290 d_printf("User %s added\n", argv[0]);
291 rc = 0;
292 goto done;
295 /* password didn't set, delete account */
296 d_printf("Could not add user %s. Error setting password %s\n",
297 argv[0], ads_errstr(status));
298 ads_msgfree(ads, res);
299 status=ads_find_user_acct(ads, &res, argv[0]);
300 if (ADS_ERR_OK(status)) {
301 userdn = ads_get_dn(ads, res);
302 ads_del_dn(ads, userdn);
303 ads_memfree(ads, userdn);
306 done:
307 if (res)
308 ads_msgfree(ads, res);
309 ads_destroy(&ads);
310 return rc;
313 static int ads_user_info(int argc, const char **argv)
315 ADS_STRUCT *ads;
316 ADS_STATUS rc;
317 void *res;
318 const char *attrs[] = {"memberOf", NULL};
319 char *searchstring=NULL;
320 char **grouplist;
321 char *escaped_user = escape_ldap_string_alloc(argv[0]);
323 if (argc < 1) return net_ads_user_usage(argc, argv);
325 if (!(ads = ads_startup())) return -1;
327 if (!escaped_user) {
328 d_printf("ads_user_info: failed to escape user %s\n", argv[0]);
329 return -1;
332 asprintf(&searchstring, "(sAMAccountName=%s)", escaped_user);
333 rc = ads_search(ads, &res, searchstring, attrs);
334 safe_free(searchstring);
336 if (!ADS_ERR_OK(rc)) {
337 d_printf("ads_search: %s\n", ads_errstr(rc));
338 return -1;
341 grouplist = ldap_get_values(ads->ld, res, "memberOf");
343 if (grouplist) {
344 int i;
345 char **groupname;
346 for (i=0;grouplist[i];i++) {
347 groupname = ldap_explode_dn(grouplist[i], 1);
348 d_printf("%s\n", groupname[0]);
349 ldap_value_free(groupname);
351 ldap_value_free(grouplist);
354 ads_msgfree(ads, res);
356 ads_destroy(&ads);
357 return 0;
360 static int ads_user_delete(int argc, const char **argv)
362 ADS_STRUCT *ads;
363 ADS_STATUS rc;
364 void *res;
365 char *userdn;
367 if (argc < 1) return net_ads_user_usage(argc, argv);
369 if (!(ads = ads_startup())) return -1;
371 rc = ads_find_user_acct(ads, &res, argv[0]);
372 if (!ADS_ERR_OK(rc)) {
373 DEBUG(0, ("User %s does not exist\n", argv[0]));
374 return -1;
376 userdn = ads_get_dn(ads, res);
377 ads_msgfree(ads, res);
378 rc = ads_del_dn(ads, userdn);
379 ads_memfree(ads, userdn);
380 if (!ADS_ERR_OK(rc)) {
381 d_printf("User %s deleted\n", argv[0]);
382 return 0;
384 d_printf("Error deleting user %s: %s\n", argv[0],
385 ads_errstr(rc));
386 return -1;
389 int net_ads_user(int argc, const char **argv)
391 struct functable func[] = {
392 {"ADD", ads_user_add},
393 {"INFO", ads_user_info},
394 {"DELETE", ads_user_delete},
395 {NULL, NULL}
397 ADS_STRUCT *ads;
398 ADS_STATUS rc;
399 const char *shortattrs[] = {"sAMAccountName", NULL};
400 const char *longattrs[] = {"sAMAccountName", "description", NULL};
401 char *disp_fields[2] = {NULL, NULL};
403 if (argc == 0) {
404 if (!(ads = ads_startup())) return -1;
406 if (opt_long_list_entries)
407 d_printf("\nUser name Comment"\
408 "\n-----------------------------\n");
410 rc = ads_do_search_all_fn(ads, ads->config.bind_path,
411 LDAP_SCOPE_SUBTREE,
412 "(objectclass=user)",
413 opt_long_list_entries ? longattrs :
414 shortattrs, usergrp_display,
415 disp_fields);
416 ads_destroy(&ads);
417 return 0;
420 return net_run_function(argc, argv, func, net_ads_user_usage);
423 static int net_ads_group_usage(int argc, const char **argv)
425 return net_help_group(argc, argv);
428 static int ads_group_add(int argc, const char **argv)
430 ADS_STRUCT *ads;
431 ADS_STATUS status;
432 void *res=NULL;
433 int rc = -1;
435 if (argc < 1) return net_ads_group_usage(argc, argv);
437 if (!(ads = ads_startup())) return -1;
439 status = ads_find_user_acct(ads, &res, argv[0]);
441 if (!ADS_ERR_OK(status)) {
442 d_printf("ads_group_add: %s\n", ads_errstr(status));
443 goto done;
446 if (ads_count_replies(ads, res)) {
447 d_printf("ads_group_add: Group %s already exists\n", argv[0]);
448 ads_msgfree(ads, res);
449 goto done;
452 status = ads_add_group_acct(ads, argv[0], opt_container, opt_comment);
454 if (ADS_ERR_OK(status)) {
455 d_printf("Group %s added\n", argv[0]);
456 rc = 0;
457 } else {
458 d_printf("Could not add group %s: %s\n", argv[0],
459 ads_errstr(status));
462 done:
463 if (res)
464 ads_msgfree(ads, res);
465 ads_destroy(&ads);
466 return rc;
469 static int ads_group_delete(int argc, const char **argv)
471 ADS_STRUCT *ads;
472 ADS_STATUS rc;
473 void *res;
474 char *groupdn;
476 if (argc < 1) return net_ads_group_usage(argc, argv);
478 if (!(ads = ads_startup())) return -1;
480 rc = ads_find_user_acct(ads, &res, argv[0]);
481 if (!ADS_ERR_OK(rc)) {
482 DEBUG(0, ("Group %s does not exist\n", argv[0]));
483 return -1;
485 groupdn = ads_get_dn(ads, res);
486 ads_msgfree(ads, res);
487 rc = ads_del_dn(ads, groupdn);
488 ads_memfree(ads, groupdn);
489 if (!ADS_ERR_OK(rc)) {
490 d_printf("Group %s deleted\n", argv[0]);
491 return 0;
493 d_printf("Error deleting group %s: %s\n", argv[0],
494 ads_errstr(rc));
495 return -1;
498 int net_ads_group(int argc, const char **argv)
500 struct functable func[] = {
501 {"ADD", ads_group_add},
502 {"DELETE", ads_group_delete},
503 {NULL, NULL}
505 ADS_STRUCT *ads;
506 ADS_STATUS rc;
507 const char *shortattrs[] = {"sAMAccountName", NULL};
508 const char *longattrs[] = {"sAMAccountName", "description", NULL};
509 char *disp_fields[2] = {NULL, NULL};
511 if (argc == 0) {
512 if (!(ads = ads_startup())) return -1;
514 if (opt_long_list_entries)
515 d_printf("\nGroup name Comment"\
516 "\n-----------------------------\n");
517 rc = ads_do_search_all_fn(ads, ads->config.bind_path,
518 LDAP_SCOPE_SUBTREE,
519 "(objectclass=group)",
520 opt_long_list_entries ? longattrs :
521 shortattrs, usergrp_display,
522 disp_fields);
524 ads_destroy(&ads);
525 return 0;
527 return net_run_function(argc, argv, func, net_ads_group_usage);
530 static int net_ads_status(int argc, const char **argv)
532 ADS_STRUCT *ads;
533 ADS_STATUS rc;
534 void *res;
536 if (!(ads = ads_startup())) return -1;
538 rc = ads_find_machine_acct(ads, &res, global_myname());
539 if (!ADS_ERR_OK(rc)) {
540 d_printf("ads_find_machine_acct: %s\n", ads_errstr(rc));
541 return -1;
544 if (ads_count_replies(ads, res) == 0) {
545 d_printf("No machine account for '%s' found\n", global_myname());
546 return -1;
549 ads_dump(ads, res);
551 return 0;
554 static int net_ads_leave(int argc, const char **argv)
556 ADS_STRUCT *ads = NULL;
557 ADS_STATUS rc;
559 if (!secrets_init()) {
560 DEBUG(1,("Failed to initialise secrets database\n"));
561 return -1;
564 if (!opt_password) {
565 char *user_name;
566 asprintf(&user_name, "%s$", global_myname());
567 opt_password = secrets_fetch_machine_password(opt_target_workgroup, NULL, NULL);
568 opt_user_name = user_name;
571 if (!(ads = ads_startup())) {
572 return -1;
575 rc = ads_leave_realm(ads, global_myname());
576 if (!ADS_ERR_OK(rc)) {
577 d_printf("Failed to delete host '%s' from the '%s' realm.\n",
578 global_myname(), ads->config.realm);
579 return -1;
582 d_printf("Removed '%s' from realm '%s'\n", global_myname(), ads->config.realm);
584 return 0;
587 static int net_ads_join_ok(void)
589 char *user_name;
590 ADS_STRUCT *ads = NULL;
592 if (!secrets_init()) {
593 DEBUG(1,("Failed to initialise secrets database\n"));
594 return -1;
597 asprintf(&user_name, "%s$", global_myname());
598 opt_user_name = user_name;
599 opt_password = secrets_fetch_machine_password(opt_target_workgroup, NULL, NULL);
601 if (!(ads = ads_startup())) {
602 return -1;
605 ads_destroy(&ads);
606 return 0;
610 check that an existing join is OK
612 int net_ads_testjoin(int argc, const char **argv)
614 use_in_memory_ccache();
616 /* Display success or failure */
617 if (net_ads_join_ok() != 0) {
618 fprintf(stderr,"Join to domain is not valid\n");
619 return -1;
622 printf("Join is OK\n");
623 return 0;
627 join a domain using ADS
629 int net_ads_join(int argc, const char **argv)
631 ADS_STRUCT *ads;
632 ADS_STATUS rc;
633 char *password;
634 char *tmp_password;
635 const char *org_unit = "Computers";
636 char *dn;
637 void *res;
638 DOM_SID dom_sid;
639 char *ou_str;
640 uint32 sec_channel_type;
641 uint32 account_type = UF_WORKSTATION_TRUST_ACCOUNT;
643 if (argc > 0) org_unit = argv[0];
645 if (!secrets_init()) {
646 DEBUG(1,("Failed to initialise secrets database\n"));
647 return -1;
650 /* check what type of join
651 TODO: make this variable like RPC
653 account_type = UF_WORKSTATION_TRUST_ACCOUNT;
655 tmp_password = generate_random_str(DEFAULT_TRUST_ACCOUNT_PASSWORD_LENGTH);
656 password = strdup(tmp_password);
658 if (!(ads = ads_startup())) return -1;
660 ou_str = ads_ou_string(org_unit);
661 asprintf(&dn, "%s,%s", ou_str, ads->config.bind_path);
662 free(ou_str);
664 rc = ads_search_dn(ads, &res, dn, NULL);
665 ads_msgfree(ads, res);
667 if (rc.error_type == ADS_ERROR_LDAP && rc.err.rc == LDAP_NO_SUCH_OBJECT) {
668 d_printf("ads_join_realm: organizational unit %s does not exist (dn:%s)\n",
669 org_unit, dn);
670 return -1;
672 free(dn);
674 if (!ADS_ERR_OK(rc)) {
675 d_printf("ads_join_realm: %s\n", ads_errstr(rc));
676 return -1;
679 rc = ads_join_realm(ads, global_myname(), account_type, org_unit);
680 if (!ADS_ERR_OK(rc)) {
681 d_printf("ads_join_realm: %s\n", ads_errstr(rc));
682 return -1;
685 rc = ads_domain_sid(ads, &dom_sid);
686 if (!ADS_ERR_OK(rc)) {
687 d_printf("ads_domain_sid: %s\n", ads_errstr(rc));
688 return -1;
691 rc = ads_set_machine_password(ads, global_myname(), password);
692 if (!ADS_ERR_OK(rc)) {
693 d_printf("ads_set_machine_password: %s\n", ads_errstr(rc));
694 return -1;
697 if (!secrets_store_domain_sid(lp_workgroup(), &dom_sid)) {
698 DEBUG(1,("Failed to save domain sid\n"));
699 return -1;
702 if (!secrets_store_machine_password(password, lp_workgroup(), sec_channel_type)) {
703 DEBUG(1,("Failed to save machine password\n"));
704 return -1;
707 d_printf("Joined '%s' to realm '%s'\n", global_myname(), ads->config.realm);
709 free(password);
711 return 0;
714 int net_ads_printer_usage(int argc, const char **argv)
716 d_printf(
717 "\nnet ads printer info <printer> <server>"
718 "\n\tlookup info in directory for printer on server"
719 "\n\t(note: printer defaults to \"*\", server defaults to local)\n"
720 "\nnet ads printer publish <printername>"
721 "\n\tpublish printer in directory"
722 "\n\t(note: printer name is required)\n"
723 "\nnet ads printer remove <printername>"
724 "\n\tremove printer from directory"
725 "\n\t(note: printer name is required)\n");
726 return -1;
729 static int net_ads_printer_info(int argc, const char **argv)
731 ADS_STRUCT *ads;
732 ADS_STATUS rc;
733 const char *servername, *printername;
734 void *res = NULL;
736 if (!(ads = ads_startup())) return -1;
738 if (argc > 0)
739 printername = argv[0];
740 else
741 printername = "*";
743 if (argc > 1)
744 servername = argv[1];
745 else
746 servername = global_myname();
748 rc = ads_find_printer_on_server(ads, &res, printername, servername);
750 if (!ADS_ERR_OK(rc)) {
751 d_printf("ads_find_printer_on_server: %s\n", ads_errstr(rc));
752 ads_msgfree(ads, res);
753 return -1;
756 if (ads_count_replies(ads, res) == 0) {
757 d_printf("Printer '%s' not found\n", printername);
758 ads_msgfree(ads, res);
759 return -1;
762 ads_dump(ads, res);
763 ads_msgfree(ads, res);
765 return 0;
768 void do_drv_upgrade_printer(int msg_type, pid_t src, void *buf, size_t len)
770 return;
773 static int net_ads_printer_publish(int argc, const char **argv)
775 ADS_STRUCT *ads;
776 ADS_STATUS rc;
777 const char *servername;
778 struct cli_state *cli;
779 struct in_addr server_ip;
780 NTSTATUS nt_status;
781 TALLOC_CTX *mem_ctx = talloc_init("net_ads_printer_publish");
782 ADS_MODLIST mods = ads_init_mods(mem_ctx);
783 char *prt_dn, *srv_dn, **srv_cn;
784 void *res = NULL;
786 if (!(ads = ads_startup())) return -1;
788 if (argc < 1)
789 return net_ads_printer_usage(argc, argv);
791 if (argc == 2)
792 servername = argv[1];
793 else
794 servername = global_myname();
796 ads_find_machine_acct(ads, &res, servername);
797 srv_dn = ldap_get_dn(ads->ld, res);
798 srv_cn = ldap_explode_dn(srv_dn, 1);
799 asprintf(&prt_dn, "cn=%s-%s,%s", srv_cn[0], argv[0], srv_dn);
801 resolve_name(servername, &server_ip, 0x20);
803 nt_status = cli_full_connection(&cli, global_myname(), servername,
804 &server_ip, 0,
805 "IPC$", "IPC",
806 opt_user_name, opt_workgroup,
807 opt_password ? opt_password : "",
808 CLI_FULL_CONNECTION_USE_KERBEROS,
809 NULL);
811 cli_nt_session_open(cli, PI_SPOOLSS);
812 get_remote_printer_publishing_data(cli, mem_ctx, &mods, argv[0]);
814 rc = ads_add_printer_entry(ads, prt_dn, mem_ctx, &mods);
815 if (!ADS_ERR_OK(rc)) {
816 d_printf("ads_publish_printer: %s\n", ads_errstr(rc));
817 return -1;
820 d_printf("published printer\n");
822 return 0;
825 static int net_ads_printer_remove(int argc, const char **argv)
827 ADS_STRUCT *ads;
828 ADS_STATUS rc;
829 const char *servername;
830 char *prt_dn;
831 void *res = NULL;
833 if (!(ads = ads_startup())) return -1;
835 if (argc < 1)
836 return net_ads_printer_usage(argc, argv);
838 if (argc > 1)
839 servername = argv[1];
840 else
841 servername = global_myname();
843 rc = ads_find_printer_on_server(ads, &res, argv[0], servername);
845 if (!ADS_ERR_OK(rc)) {
846 d_printf("ads_find_printer_on_server: %s\n", ads_errstr(rc));
847 ads_msgfree(ads, res);
848 return -1;
851 if (ads_count_replies(ads, res) == 0) {
852 d_printf("Printer '%s' not found\n", argv[1]);
853 ads_msgfree(ads, res);
854 return -1;
857 prt_dn = ads_get_dn(ads, res);
858 ads_msgfree(ads, res);
859 rc = ads_del_dn(ads, prt_dn);
860 ads_memfree(ads, prt_dn);
862 if (!ADS_ERR_OK(rc)) {
863 d_printf("ads_del_dn: %s\n", ads_errstr(rc));
864 return -1;
867 return 0;
870 static int net_ads_printer(int argc, const char **argv)
872 struct functable func[] = {
873 {"INFO", net_ads_printer_info},
874 {"PUBLISH", net_ads_printer_publish},
875 {"REMOVE", net_ads_printer_remove},
876 {NULL, NULL}
879 return net_run_function(argc, argv, func, net_ads_printer_usage);
883 static int net_ads_password(int argc, const char **argv)
885 ADS_STRUCT *ads;
886 const char *auth_principal = opt_user_name;
887 const char *auth_password = opt_password;
888 char *realm = NULL;
889 char *new_password = NULL;
890 char *c;
891 char *prompt;
892 ADS_STATUS ret;
895 if ((argc != 1) || (opt_user_name == NULL) ||
896 (opt_password == NULL) || (strchr(opt_user_name, '@') == NULL) ||
897 (strchr(argv[0], '@') == NULL)) {
898 return net_ads_usage(argc, argv);
901 use_in_memory_ccache();
902 c = strchr(auth_principal, '@');
903 realm = ++c;
905 /* use the realm so we can eventually change passwords for users
906 in realms other than default */
907 if (!(ads = ads_init(realm, NULL, NULL))) return -1;
909 /* we don't actually need a full connect, but it's the easy way to
910 fill in the KDC's addresss */
911 ads_connect(ads);
913 if (!ads || !ads->config.realm) {
914 d_printf("Didn't find the kerberos server!\n");
915 return -1;
918 asprintf(&prompt, "Enter new password for %s:", argv[0]);
920 new_password = getpass(prompt);
922 ret = kerberos_set_password(ads->auth.kdc_server, auth_principal,
923 auth_password, argv[0], new_password, ads->auth.time_offset);
924 if (!ADS_ERR_OK(ret)) {
925 d_printf("Password change failed :-( ...\n");
926 ads_destroy(&ads);
927 free(prompt);
928 return -1;
931 d_printf("Password change for %s completed.\n", argv[0]);
932 ads_destroy(&ads);
933 free(prompt);
935 return 0;
939 int net_ads_changetrustpw(int argc, const char **argv)
941 ADS_STRUCT *ads;
942 char *host_principal;
943 char *hostname;
944 ADS_STATUS ret;
945 char *user_name;
947 if (!secrets_init()) {
948 DEBUG(1,("Failed to initialise secrets database\n"));
949 return -1;
952 asprintf(&user_name, "%s$", global_myname());
953 opt_user_name = user_name;
955 opt_password = secrets_fetch_machine_password(opt_target_workgroup, NULL, NULL);
957 use_in_memory_ccache();
959 if (!(ads = ads_startup())) {
960 return -1;
963 hostname = strdup(global_myname());
964 strlower(hostname);
965 asprintf(&host_principal, "%s@%s", hostname, ads->config.realm);
966 SAFE_FREE(hostname);
967 d_printf("Changing password for principal: HOST/%s\n", host_principal);
969 ret = ads_change_trust_account_password(ads, host_principal);
971 if (!ADS_ERR_OK(ret)) {
972 d_printf("Password change failed :-( ...\n");
973 ads_destroy(&ads);
974 SAFE_FREE(host_principal);
975 return -1;
978 d_printf("Password change for principal HOST/%s succeeded.\n", host_principal);
979 ads_destroy(&ads);
980 SAFE_FREE(host_principal);
982 return 0;
986 help for net ads search
988 static int net_ads_search_usage(int argc, const char **argv)
990 d_printf(
991 "\nnet ads search <expression> <attributes...>\n"\
992 "\nperform a raw LDAP search on a ADS server and dump the results\n"\
993 "The expression is a standard LDAP search expression, and the\n"\
994 "attributes are a list of LDAP fields to show in the results\n\n"\
995 "Example: net ads search '(objectCategory=group)' sAMAccountName\n\n"
997 net_common_flags_usage(argc, argv);
998 return -1;
1003 general ADS search function. Useful in diagnosing problems in ADS
1005 static int net_ads_search(int argc, const char **argv)
1007 ADS_STRUCT *ads;
1008 ADS_STATUS rc;
1009 const char *exp;
1010 const char **attrs;
1011 void *res = NULL;
1013 if (argc < 1) {
1014 return net_ads_search_usage(argc, argv);
1017 if (!(ads = ads_startup())) {
1018 return -1;
1021 exp = argv[0];
1022 attrs = (argv + 1);
1024 rc = ads_do_search_all(ads, ads->config.bind_path,
1025 LDAP_SCOPE_SUBTREE,
1026 exp, attrs, &res);
1027 if (!ADS_ERR_OK(rc)) {
1028 d_printf("search failed: %s\n", ads_errstr(rc));
1029 return -1;
1032 d_printf("Got %d replies\n\n", ads_count_replies(ads, res));
1034 /* dump the results */
1035 ads_dump(ads, res);
1037 ads_msgfree(ads, res);
1038 ads_destroy(&ads);
1040 return 0;
1045 help for net ads search
1047 static int net_ads_dn_usage(int argc, const char **argv)
1049 d_printf(
1050 "\nnet ads dn <dn> <attributes...>\n"\
1051 "\nperform a raw LDAP search on a ADS server and dump the results\n"\
1052 "The DN standard LDAP DN, and the attributes are a list of LDAP fields \n"\
1053 "to show in the results\n\n"\
1054 "Example: net ads dn 'CN=administrator,CN=Users,DC=my,DC=domain' sAMAccountName\n\n"
1056 net_common_flags_usage(argc, argv);
1057 return -1;
1062 general ADS search function. Useful in diagnosing problems in ADS
1064 static int net_ads_dn(int argc, const char **argv)
1066 ADS_STRUCT *ads;
1067 ADS_STATUS rc;
1068 const char *dn;
1069 const char **attrs;
1070 void *res = NULL;
1072 if (argc < 1) {
1073 return net_ads_dn_usage(argc, argv);
1076 if (!(ads = ads_startup())) {
1077 return -1;
1080 dn = argv[0];
1081 attrs = (argv + 1);
1083 rc = ads_do_search_all(ads, dn,
1084 LDAP_SCOPE_BASE,
1085 "(objectclass=*)", attrs, &res);
1086 if (!ADS_ERR_OK(rc)) {
1087 d_printf("search failed: %s\n", ads_errstr(rc));
1088 return -1;
1091 d_printf("Got %d replies\n\n", ads_count_replies(ads, res));
1093 /* dump the results */
1094 ads_dump(ads, res);
1096 ads_msgfree(ads, res);
1097 ads_destroy(&ads);
1099 return 0;
1103 int net_ads_help(int argc, const char **argv)
1105 struct functable func[] = {
1106 {"USER", net_ads_user_usage},
1107 {"GROUP", net_ads_group_usage},
1108 {"PRINTER", net_ads_printer_usage},
1109 {"SEARCH", net_ads_search_usage},
1110 #if 0
1111 {"INFO", net_ads_info},
1112 {"JOIN", net_ads_join},
1113 {"LEAVE", net_ads_leave},
1114 {"STATUS", net_ads_status},
1115 {"PASSWORD", net_ads_password},
1116 {"CHANGETRUSTPW", net_ads_changetrustpw},
1117 #endif
1118 {NULL, NULL}
1121 return net_run_function(argc, argv, func, net_ads_usage);
1124 int net_ads(int argc, const char **argv)
1126 struct functable func[] = {
1127 {"INFO", net_ads_info},
1128 {"JOIN", net_ads_join},
1129 {"TESTJOIN", net_ads_testjoin},
1130 {"LEAVE", net_ads_leave},
1131 {"STATUS", net_ads_status},
1132 {"USER", net_ads_user},
1133 {"GROUP", net_ads_group},
1134 {"PASSWORD", net_ads_password},
1135 {"CHANGETRUSTPW", net_ads_changetrustpw},
1136 {"PRINTER", net_ads_printer},
1137 {"SEARCH", net_ads_search},
1138 {"DN", net_ads_dn},
1139 {"WORKGROUP", net_ads_workgroup},
1140 {"LOOKUP", net_ads_lookup},
1141 {"HELP", net_ads_help},
1142 {NULL, NULL}
1145 return net_run_function(argc, argv, func, net_ads_usage);
1148 #else
1150 static int net_ads_noads(void)
1152 d_printf("ADS support not compiled in\n");
1153 return -1;
1156 int net_ads_usage(int argc, const char **argv)
1158 return net_ads_noads();
1161 int net_ads_help(int argc, const char **argv)
1163 return net_ads_noads();
1166 int net_ads_changetrustpw(int argc, const char **argv)
1168 return net_ads_noads();
1171 int net_ads_join(int argc, const char **argv)
1173 return net_ads_noads();
1176 int net_ads_user(int argc, const char **argv)
1178 return net_ads_noads();
1181 int net_ads_group(int argc, const char **argv)
1183 return net_ads_noads();
1186 /* this one shouldn't display a message */
1187 int net_ads_check(void)
1189 return -1;
1192 int net_ads(int argc, const char **argv)
1194 return net_ads_usage(argc, argv);
1197 #endif