2 Samba Unix/Linux SMB client library
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)
7 Copyright (C) 2006 Gerald (Jerry) Carter (jerry@samba.org)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "utils/net.h"
25 #include "librpc/gen_ndr/ndr_krb5pac.h"
29 /* when we do not have sufficient input parameters to contact a remote domain
30 * we always fall back to our own realm - Guenther*/
32 static const char *assume_own_realm(struct net_context
*c
)
34 if (!c
->opt_host
&& strequal(lp_workgroup(), c
->opt_target_workgroup
)) {
42 do a cldap netlogon query
44 static int net_ads_cldap_netlogon(struct net_context
*c
, ADS_STRUCT
*ads
)
46 char addr
[INET6_ADDRSTRLEN
];
47 struct NETLOGON_SAM_LOGON_RESPONSE_EX reply
;
49 print_sockaddr(addr
, sizeof(addr
), &ads
->ldap
.ss
);
50 if ( !ads_cldap_netlogon_5(talloc_tos(), addr
, ads
->server
.realm
, &reply
) ) {
51 d_fprintf(stderr
, "CLDAP query failed!\n");
55 d_printf("Information for Domain Controller: %s\n\n",
58 d_printf("Response Type: ");
59 switch (reply
.command
) {
60 case LOGON_SAM_LOGON_USER_UNKNOWN_EX
:
61 d_printf("LOGON_SAM_LOGON_USER_UNKNOWN_EX\n");
63 case LOGON_SAM_LOGON_RESPONSE_EX
:
64 d_printf("LOGON_SAM_LOGON_RESPONSE_EX\n");
67 d_printf("0x%x\n", reply
.command
);
71 d_printf("GUID: %s\n", GUID_string(talloc_tos(), &reply
.domain_uuid
));
75 "\tIs a GC of the forest: %s\n"
76 "\tIs an LDAP server: %s\n"
78 "\tIs running a KDC: %s\n"
79 "\tIs running time services: %s\n"
80 "\tIs the closest DC: %s\n"
82 "\tHas a hardware clock: %s\n"
83 "\tIs a non-domain NC serviced by LDAP server: %s\n"
84 "\tIs NT6 DC that has some secrets: %s\n"
85 "\tIs NT6 DC that has all secrets: %s\n",
86 (reply
.server_type
& NBT_SERVER_PDC
) ? "yes" : "no",
87 (reply
.server_type
& NBT_SERVER_GC
) ? "yes" : "no",
88 (reply
.server_type
& NBT_SERVER_LDAP
) ? "yes" : "no",
89 (reply
.server_type
& NBT_SERVER_DS
) ? "yes" : "no",
90 (reply
.server_type
& NBT_SERVER_KDC
) ? "yes" : "no",
91 (reply
.server_type
& NBT_SERVER_TIMESERV
) ? "yes" : "no",
92 (reply
.server_type
& NBT_SERVER_CLOSEST
) ? "yes" : "no",
93 (reply
.server_type
& NBT_SERVER_WRITABLE
) ? "yes" : "no",
94 (reply
.server_type
& NBT_SERVER_GOOD_TIMESERV
) ? "yes" : "no",
95 (reply
.server_type
& NBT_SERVER_NDNC
) ? "yes" : "no",
96 (reply
.server_type
& NBT_SERVER_SELECT_SECRET_DOMAIN_6
) ? "yes" : "no",
97 (reply
.server_type
& NBT_SERVER_FULL_SECRET_DOMAIN_6
) ? "yes" : "no");
100 printf("Forest:\t\t\t%s\n", reply
.forest
);
101 printf("Domain:\t\t\t%s\n", reply
.dns_domain
);
102 printf("Domain Controller:\t%s\n", reply
.pdc_dns_name
);
104 printf("Pre-Win2k Domain:\t%s\n", reply
.domain
);
105 printf("Pre-Win2k Hostname:\t%s\n", reply
.pdc_name
);
107 if (*reply
.user_name
) printf("User name:\t%s\n", reply
.user_name
);
109 printf("Server Site Name :\t\t%s\n", reply
.server_site
);
110 printf("Client Site Name :\t\t%s\n", reply
.client_site
);
112 d_printf("NT Version: %d\n", reply
.nt_version
);
113 d_printf("LMNT Token: %.2x\n", reply
.lmnt_token
);
114 d_printf("LM20 Token: %.2x\n", reply
.lm20_token
);
120 this implements the CLDAP based netlogon lookup requests
121 for finding the domain controller of a ADS domain
123 static int net_ads_lookup(struct net_context
*c
, int argc
, const char **argv
)
128 if (c
->display_usage
) {
131 " Find the ADS DC using CLDAP lookup.\n");
135 if (!ADS_ERR_OK(ads_startup_nobind(c
, false, &ads
))) {
136 d_fprintf(stderr
, "Didn't find the cldap server!\n");
141 if (!ads
->config
.realm
) {
142 ads
->config
.realm
= CONST_DISCARD(char *, c
->opt_target_workgroup
);
143 ads
->ldap
.port
= 389;
146 ret
= net_ads_cldap_netlogon(c
, ads
);
153 static int net_ads_info(struct net_context
*c
, int argc
, const char **argv
)
156 char addr
[INET6_ADDRSTRLEN
];
158 if (c
->display_usage
) {
161 " Display information about an Active Directory "
166 if (!ADS_ERR_OK(ads_startup_nobind(c
, false, &ads
))) {
167 d_fprintf(stderr
, "Didn't find the ldap server!\n");
171 if (!ads
|| !ads
->config
.realm
) {
172 d_fprintf(stderr
, "Didn't find the ldap server!\n");
177 /* Try to set the server's current time since we didn't do a full
178 TCP LDAP session initially */
180 if ( !ADS_ERR_OK(ads_current_time( ads
)) ) {
181 d_fprintf( stderr
, "Failed to get server's current time!\n");
184 print_sockaddr(addr
, sizeof(addr
), &ads
->ldap
.ss
);
186 d_printf("LDAP server: %s\n", addr
);
187 d_printf("LDAP server name: %s\n", ads
->config
.ldap_server_name
);
188 d_printf("Realm: %s\n", ads
->config
.realm
);
189 d_printf("Bind Path: %s\n", ads
->config
.bind_path
);
190 d_printf("LDAP port: %d\n", ads
->ldap
.port
);
191 d_printf("Server time: %s\n",
192 http_timestring(talloc_tos(), ads
->config
.current_time
));
194 d_printf("KDC server: %s\n", ads
->auth
.kdc_server
);
195 d_printf("Server time offset: %d\n", ads
->auth
.time_offset
);
201 static void use_in_memory_ccache(void) {
202 /* Use in-memory credentials cache so we do not interfere with
203 * existing credentials */
204 setenv(KRB5_ENV_CCNAME
, "MEMORY:net_ads", 1);
207 static ADS_STATUS
ads_startup_int(struct net_context
*c
, bool only_own_domain
,
208 uint32 auth_flags
, ADS_STRUCT
**ads_ret
)
210 ADS_STRUCT
*ads
= NULL
;
212 bool need_password
= false;
213 bool second_time
= false;
215 const char *realm
= NULL
;
216 bool tried_closest_dc
= false;
218 /* lp_realm() should be handled by a command line param,
219 However, the join requires that realm be set in smb.conf
220 and compares our realm with the remote server's so this is
221 ok until someone needs more flexibility */
226 if (only_own_domain
) {
229 realm
= assume_own_realm(c
);
232 ads
= ads_init(realm
, c
->opt_target_workgroup
, c
->opt_host
);
234 if (!c
->opt_user_name
) {
235 c
->opt_user_name
= "administrator";
238 if (c
->opt_user_specified
) {
239 need_password
= true;
243 if (!c
->opt_password
&& need_password
&& !c
->opt_machine_pass
) {
244 c
->opt_password
= net_prompt_pass(c
, c
->opt_user_name
);
245 if (!c
->opt_password
) {
247 return ADS_ERROR(LDAP_NO_MEMORY
);
251 if (c
->opt_password
) {
252 use_in_memory_ccache();
253 SAFE_FREE(ads
->auth
.password
);
254 ads
->auth
.password
= smb_xstrdup(c
->opt_password
);
257 ads
->auth
.flags
|= auth_flags
;
258 SAFE_FREE(ads
->auth
.user_name
);
259 ads
->auth
.user_name
= smb_xstrdup(c
->opt_user_name
);
262 * If the username is of the form "name@realm",
263 * extract the realm and convert to upper case.
264 * This is only used to establish the connection.
266 if ((cp
= strchr_m(ads
->auth
.user_name
, '@'))!=0) {
268 SAFE_FREE(ads
->auth
.realm
);
269 ads
->auth
.realm
= smb_xstrdup(cp
);
270 strupper_m(ads
->auth
.realm
);
273 status
= ads_connect(ads
);
275 if (!ADS_ERR_OK(status
)) {
277 if (NT_STATUS_EQUAL(ads_ntstatus(status
),
278 NT_STATUS_NO_LOGON_SERVERS
)) {
279 DEBUG(0,("ads_connect: %s\n", ads_errstr(status
)));
284 if (!need_password
&& !second_time
&& !(auth_flags
& ADS_AUTH_NO_BIND
)) {
285 need_password
= true;
294 /* when contacting our own domain, make sure we use the closest DC.
295 * This is done by reconnecting to ADS because only the first call to
296 * ads_connect will give us our own sitename */
298 if ((only_own_domain
|| !c
->opt_host
) && !tried_closest_dc
) {
300 tried_closest_dc
= true; /* avoid loop */
302 if (!ads_closest_dc(ads
)) {
304 namecache_delete(ads
->server
.realm
, 0x1C);
305 namecache_delete(ads
->server
.workgroup
, 0x1C);
318 ADS_STATUS
ads_startup(struct net_context
*c
, bool only_own_domain
, ADS_STRUCT
**ads
)
320 return ads_startup_int(c
, only_own_domain
, 0, ads
);
323 ADS_STATUS
ads_startup_nobind(struct net_context
*c
, bool only_own_domain
, ADS_STRUCT
**ads
)
325 return ads_startup_int(c
, only_own_domain
, ADS_AUTH_NO_BIND
, ads
);
329 Check to see if connection can be made via ads.
330 ads_startup() stores the password in opt_password if it needs to so
331 that rpc or rap can use it without re-prompting.
333 static int net_ads_check_int(const char *realm
, const char *workgroup
, const char *host
)
338 if ( (ads
= ads_init( realm
, workgroup
, host
)) == NULL
) {
342 ads
->auth
.flags
|= ADS_AUTH_NO_BIND
;
344 status
= ads_connect(ads
);
345 if ( !ADS_ERR_OK(status
) ) {
353 int net_ads_check_our_domain(struct net_context
*c
)
355 return net_ads_check_int(lp_realm(), lp_workgroup(), NULL
);
358 int net_ads_check(struct net_context
*c
)
360 return net_ads_check_int(NULL
, c
->opt_workgroup
, c
->opt_host
);
364 determine the netbios workgroup name for a domain
366 static int net_ads_workgroup(struct net_context
*c
, int argc
, const char **argv
)
369 char addr
[INET6_ADDRSTRLEN
];
370 struct NETLOGON_SAM_LOGON_RESPONSE_EX reply
;
372 if (c
->display_usage
) {
374 "net ads workgroup\n"
375 " Print the workgroup name\n");
379 if (!ADS_ERR_OK(ads_startup_nobind(c
, false, &ads
))) {
380 d_fprintf(stderr
, "Didn't find the cldap server!\n");
384 if (!ads
->config
.realm
) {
385 ads
->config
.realm
= CONST_DISCARD(char *, c
->opt_target_workgroup
);
386 ads
->ldap
.port
= 389;
389 print_sockaddr(addr
, sizeof(addr
), &ads
->ldap
.ss
);
390 if ( !ads_cldap_netlogon_5(talloc_tos(), addr
, ads
->server
.realm
, &reply
) ) {
391 d_fprintf(stderr
, "CLDAP query failed!\n");
396 d_printf("Workgroup: %s\n", reply
.domain
);
405 static bool usergrp_display(ADS_STRUCT
*ads
, char *field
, void **values
, void *data_area
)
407 char **disp_fields
= (char **) data_area
;
409 if (!field
) { /* must be end of record */
410 if (disp_fields
[0]) {
411 if (!strchr_m(disp_fields
[0], '$')) {
413 d_printf("%-21.21s %s\n",
414 disp_fields
[0], disp_fields
[1]);
416 d_printf("%s\n", disp_fields
[0]);
419 SAFE_FREE(disp_fields
[0]);
420 SAFE_FREE(disp_fields
[1]);
423 if (!values
) /* must be new field, indicate string field */
425 if (StrCaseCmp(field
, "sAMAccountName") == 0) {
426 disp_fields
[0] = SMB_STRDUP((char *) values
[0]);
428 if (StrCaseCmp(field
, "description") == 0)
429 disp_fields
[1] = SMB_STRDUP((char *) values
[0]);
433 static int net_ads_user_usage(struct net_context
*c
, int argc
, const char **argv
)
435 return net_user_usage(c
, argc
, argv
);
438 static int ads_user_add(struct net_context
*c
, int argc
, const char **argv
)
443 LDAPMessage
*res
=NULL
;
447 if (argc
< 1 || c
->display_usage
)
448 return net_ads_user_usage(c
, argc
, argv
);
450 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
454 status
= ads_find_user_acct(ads
, &res
, argv
[0]);
456 if (!ADS_ERR_OK(status
)) {
457 d_fprintf(stderr
, "ads_user_add: %s\n", ads_errstr(status
));
461 if (ads_count_replies(ads
, res
)) {
462 d_fprintf(stderr
, "ads_user_add: User %s already exists\n", argv
[0]);
466 if (c
->opt_container
) {
467 ou_str
= SMB_STRDUP(c
->opt_container
);
469 ou_str
= ads_default_ou_string(ads
, WELL_KNOWN_GUID_USERS
);
472 status
= ads_add_user_acct(ads
, argv
[0], ou_str
, c
->opt_comment
);
474 if (!ADS_ERR_OK(status
)) {
475 d_fprintf(stderr
, "Could not add user %s: %s\n", argv
[0],
480 /* if no password is to be set, we're done */
482 d_printf("User %s added\n", argv
[0]);
487 /* try setting the password */
488 if (asprintf(&upn
, "%s@%s", argv
[0], ads
->config
.realm
) == -1) {
491 status
= ads_krb5_set_password(ads
->auth
.kdc_server
, upn
, argv
[1],
492 ads
->auth
.time_offset
);
494 if (ADS_ERR_OK(status
)) {
495 d_printf("User %s added\n", argv
[0]);
500 /* password didn't set, delete account */
501 d_fprintf(stderr
, "Could not add user %s. Error setting password %s\n",
502 argv
[0], ads_errstr(status
));
503 ads_msgfree(ads
, res
);
504 status
=ads_find_user_acct(ads
, &res
, argv
[0]);
505 if (ADS_ERR_OK(status
)) {
506 userdn
= ads_get_dn(ads
, talloc_tos(), res
);
507 ads_del_dn(ads
, userdn
);
513 ads_msgfree(ads
, res
);
519 static int ads_user_info(struct net_context
*c
, int argc
, const char **argv
)
524 const char *attrs
[] = {"memberOf", NULL
};
525 char *searchstring
=NULL
;
529 if (argc
< 1 || c
->display_usage
) {
530 return net_ads_user_usage(c
, argc
, argv
);
533 escaped_user
= escape_ldap_string_alloc(argv
[0]);
536 d_fprintf(stderr
, "ads_user_info: failed to escape user %s\n", argv
[0]);
540 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
541 SAFE_FREE(escaped_user
);
545 if (asprintf(&searchstring
, "(sAMAccountName=%s)", escaped_user
) == -1) {
546 SAFE_FREE(escaped_user
);
549 rc
= ads_search(ads
, &res
, searchstring
, attrs
);
550 SAFE_FREE(searchstring
);
552 if (!ADS_ERR_OK(rc
)) {
553 d_fprintf(stderr
, "ads_search: %s\n", ads_errstr(rc
));
555 SAFE_FREE(escaped_user
);
559 grouplist
= ldap_get_values((LDAP
*)ads
->ldap
.ld
,
560 (LDAPMessage
*)res
, "memberOf");
565 for (i
=0;grouplist
[i
];i
++) {
566 groupname
= ldap_explode_dn(grouplist
[i
], 1);
567 d_printf("%s\n", groupname
[0]);
568 ldap_value_free(groupname
);
570 ldap_value_free(grouplist
);
573 ads_msgfree(ads
, res
);
575 SAFE_FREE(escaped_user
);
579 static int ads_user_delete(struct net_context
*c
, int argc
, const char **argv
)
583 LDAPMessage
*res
= NULL
;
587 return net_ads_user_usage(c
, argc
, argv
);
590 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
594 rc
= ads_find_user_acct(ads
, &res
, argv
[0]);
595 if (!ADS_ERR_OK(rc
) || ads_count_replies(ads
, res
) != 1) {
596 d_printf("User %s does not exist.\n", argv
[0]);
597 ads_msgfree(ads
, res
);
601 userdn
= ads_get_dn(ads
, talloc_tos(), res
);
602 ads_msgfree(ads
, res
);
603 rc
= ads_del_dn(ads
, userdn
);
605 if (ADS_ERR_OK(rc
)) {
606 d_printf("User %s deleted\n", argv
[0]);
610 d_fprintf(stderr
, "Error deleting user %s: %s\n", argv
[0],
616 int net_ads_user(struct net_context
*c
, int argc
, const char **argv
)
618 struct functable func
[] = {
631 "Display information about an AD user",
632 "net ads user info\n"
633 " Display information about an AD user"
640 "net ads user delete\n"
643 {NULL
, NULL
, 0, NULL
, NULL
}
647 const char *shortattrs
[] = {"sAMAccountName", NULL
};
648 const char *longattrs
[] = {"sAMAccountName", "description", NULL
};
649 char *disp_fields
[2] = {NULL
, NULL
};
652 if (c
->display_usage
) {
653 d_printf("Usage:\n");
654 d_printf("net ads user\n"
656 net_display_usage_from_functable(func
);
660 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
664 if (c
->opt_long_list_entries
)
665 d_printf("\nUser name Comment"
666 "\n-----------------------------\n");
668 rc
= ads_do_search_all_fn(ads
, ads
->config
.bind_path
,
670 "(objectCategory=user)",
671 c
->opt_long_list_entries
? longattrs
:
672 shortattrs
, usergrp_display
,
675 return ADS_ERR_OK(rc
) ? 0 : -1;
678 return net_run_function(c
, argc
, argv
, "net ads user", func
);
681 static int net_ads_group_usage(struct net_context
*c
, int argc
, const char **argv
)
683 return net_group_usage(c
, argc
, argv
);
686 static int ads_group_add(struct net_context
*c
, int argc
, const char **argv
)
690 LDAPMessage
*res
=NULL
;
694 if (argc
< 1 || c
->display_usage
) {
695 return net_ads_group_usage(c
, argc
, argv
);
698 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
702 status
= ads_find_user_acct(ads
, &res
, argv
[0]);
704 if (!ADS_ERR_OK(status
)) {
705 d_fprintf(stderr
, "ads_group_add: %s\n", ads_errstr(status
));
709 if (ads_count_replies(ads
, res
)) {
710 d_fprintf(stderr
, "ads_group_add: Group %s already exists\n", argv
[0]);
714 if (c
->opt_container
) {
715 ou_str
= SMB_STRDUP(c
->opt_container
);
717 ou_str
= ads_default_ou_string(ads
, WELL_KNOWN_GUID_USERS
);
720 status
= ads_add_group_acct(ads
, argv
[0], ou_str
, c
->opt_comment
);
722 if (ADS_ERR_OK(status
)) {
723 d_printf("Group %s added\n", argv
[0]);
726 d_fprintf(stderr
, "Could not add group %s: %s\n", argv
[0],
732 ads_msgfree(ads
, res
);
738 static int ads_group_delete(struct net_context
*c
, int argc
, const char **argv
)
742 LDAPMessage
*res
= NULL
;
745 if (argc
< 1 || c
->display_usage
) {
746 return net_ads_group_usage(c
, argc
, argv
);
749 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
753 rc
= ads_find_user_acct(ads
, &res
, argv
[0]);
754 if (!ADS_ERR_OK(rc
) || ads_count_replies(ads
, res
) != 1) {
755 d_printf("Group %s does not exist.\n", argv
[0]);
756 ads_msgfree(ads
, res
);
760 groupdn
= ads_get_dn(ads
, talloc_tos(), res
);
761 ads_msgfree(ads
, res
);
762 rc
= ads_del_dn(ads
, groupdn
);
763 TALLOC_FREE(groupdn
);
764 if (ADS_ERR_OK(rc
)) {
765 d_printf("Group %s deleted\n", argv
[0]);
769 d_fprintf(stderr
, "Error deleting group %s: %s\n", argv
[0],
775 int net_ads_group(struct net_context
*c
, int argc
, const char **argv
)
777 struct functable func
[] = {
783 "net ads group add\n"
790 "Delete an AD group",
791 "net ads group delete\n"
792 " Delete an AD group"
794 {NULL
, NULL
, 0, NULL
, NULL
}
798 const char *shortattrs
[] = {"sAMAccountName", NULL
};
799 const char *longattrs
[] = {"sAMAccountName", "description", NULL
};
800 char *disp_fields
[2] = {NULL
, NULL
};
803 if (c
->display_usage
) {
804 d_printf("Usage:\n");
805 d_printf("net ads group\n"
806 " List AD groups\n");
807 net_display_usage_from_functable(func
);
811 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
815 if (c
->opt_long_list_entries
)
816 d_printf("\nGroup name Comment"
817 "\n-----------------------------\n");
818 rc
= ads_do_search_all_fn(ads
, ads
->config
.bind_path
,
820 "(objectCategory=group)",
821 c
->opt_long_list_entries
? longattrs
:
822 shortattrs
, usergrp_display
,
826 return ADS_ERR_OK(rc
) ? 0 : -1;
828 return net_run_function(c
, argc
, argv
, "net ads group", func
);
831 static int net_ads_status(struct net_context
*c
, int argc
, const char **argv
)
837 if (c
->display_usage
) {
840 " Display machine account details\n");
844 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
848 rc
= ads_find_machine_acct(ads
, &res
, global_myname());
849 if (!ADS_ERR_OK(rc
)) {
850 d_fprintf(stderr
, "ads_find_machine_acct: %s\n", ads_errstr(rc
));
855 if (ads_count_replies(ads
, res
) == 0) {
856 d_fprintf(stderr
, "No machine account for '%s' found\n", global_myname());
866 /*******************************************************************
867 Leave an AD domain. Windows XP disables the machine account.
868 We'll try the same. The old code would do an LDAP delete.
869 That only worked using the machine creds because added the machine
870 with full control to the computer object's ACL.
871 *******************************************************************/
873 static int net_ads_leave(struct net_context
*c
, int argc
, const char **argv
)
876 struct libnet_UnjoinCtx
*r
= NULL
;
879 if (c
->display_usage
) {
882 " Leave an AD domain\n");
887 d_fprintf(stderr
, "No realm set, are we joined ?\n");
891 if (!(ctx
= talloc_init("net_ads_leave"))) {
892 d_fprintf(stderr
, "Could not initialise talloc context.\n");
896 if (!c
->opt_kerberos
) {
897 use_in_memory_ccache();
900 werr
= libnet_init_UnjoinCtx(ctx
, &r
);
901 if (!W_ERROR_IS_OK(werr
)) {
902 d_fprintf(stderr
, "Could not initialise unjoin context.\n");
907 r
->in
.use_kerberos
= c
->opt_kerberos
;
908 r
->in
.dc_name
= c
->opt_host
;
909 r
->in
.domain_name
= lp_realm();
910 r
->in
.admin_account
= c
->opt_user_name
;
911 r
->in
.admin_password
= net_prompt_pass(c
, c
->opt_user_name
);
912 r
->in
.modify_config
= lp_config_backend_is_registry();
913 r
->in
.unjoin_flags
= WKSSVC_JOIN_FLAGS_JOIN_TYPE
|
914 WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE
;
916 werr
= libnet_Unjoin(ctx
, r
);
917 if (!W_ERROR_IS_OK(werr
)) {
918 d_printf("Failed to leave domain: %s\n",
919 r
->out
.error_string
? r
->out
.error_string
:
920 get_friendly_werror_msg(werr
));
924 if (W_ERROR_IS_OK(werr
)) {
925 d_printf("Deleted account for '%s' in realm '%s'\n",
926 r
->in
.machine_name
, r
->out
.dns_domain_name
);
930 /* We couldn't delete it - see if the disable succeeded. */
931 if (r
->out
.disabled_machine_account
) {
932 d_printf("Disabled account for '%s' in realm '%s'\n",
933 r
->in
.machine_name
, r
->out
.dns_domain_name
);
938 d_fprintf(stderr
, "Failed to disable machine account for '%s' in realm '%s'\n",
939 r
->in
.machine_name
, r
->out
.dns_domain_name
);
945 if (W_ERROR_IS_OK(werr
)) {
952 static NTSTATUS
net_ads_join_ok(struct net_context
*c
)
954 ADS_STRUCT
*ads
= NULL
;
957 if (!secrets_init()) {
958 DEBUG(1,("Failed to initialise secrets database\n"));
959 return NT_STATUS_ACCESS_DENIED
;
962 net_use_krb_machine_account(c
);
964 status
= ads_startup(c
, true, &ads
);
965 if (!ADS_ERR_OK(status
)) {
966 return ads_ntstatus(status
);
974 check that an existing join is OK
976 int net_ads_testjoin(struct net_context
*c
, int argc
, const char **argv
)
979 use_in_memory_ccache();
981 if (c
->display_usage
) {
984 " Test if the existing join is ok\n");
988 /* Display success or failure */
989 status
= net_ads_join_ok(c
);
990 if (!NT_STATUS_IS_OK(status
)) {
991 fprintf(stderr
,"Join to domain is not valid: %s\n",
992 get_friendly_nt_error_msg(status
));
996 printf("Join is OK\n");
1000 /*******************************************************************
1001 Simple configu checks before beginning the join
1002 ********************************************************************/
1004 static WERROR
check_ads_config( void )
1006 if (lp_server_role() != ROLE_DOMAIN_MEMBER
) {
1007 d_printf("Host is not configured as a member server.\n");
1008 return WERR_INVALID_DOMAIN_ROLE
;
1011 if (strlen(global_myname()) > 15) {
1012 d_printf("Our netbios name can be at most 15 chars long, "
1013 "\"%s\" is %u chars long\n", global_myname(),
1014 (unsigned int)strlen(global_myname()));
1015 return WERR_INVALID_COMPUTERNAME
;
1018 if ( lp_security() == SEC_ADS
&& !*lp_realm()) {
1019 d_fprintf(stderr
, "realm must be set in in %s for ADS "
1020 "join to succeed.\n", get_dyn_CONFIGFILE());
1021 return WERR_INVALID_PARAM
;
1027 /*******************************************************************
1028 Send a DNS update request
1029 *******************************************************************/
1031 #if defined(WITH_DNS_UPDATES)
1033 DNS_ERROR
DoDNSUpdate(char *pszServerName
,
1034 const char *pszDomainName
, const char *pszHostName
,
1035 const struct sockaddr_storage
*sslist
,
1038 static NTSTATUS
net_update_dns_internal(TALLOC_CTX
*ctx
, ADS_STRUCT
*ads
,
1039 const char *machine_name
,
1040 const struct sockaddr_storage
*addrs
,
1043 struct dns_rr_ns
*nameservers
= NULL
;
1045 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
1048 const char *dnsdomain
= NULL
;
1049 char *root_domain
= NULL
;
1051 if ( (dnsdomain
= strchr_m( machine_name
, '.')) == NULL
) {
1052 d_printf("No DNS domain configured for %s. "
1053 "Unable to perform DNS Update.\n", machine_name
);
1054 status
= NT_STATUS_INVALID_PARAMETER
;
1059 status
= ads_dns_lookup_ns( ctx
, dnsdomain
, &nameservers
, &ns_count
);
1060 if ( !NT_STATUS_IS_OK(status
) || (ns_count
== 0)) {
1061 /* Child domains often do not have NS records. Look
1062 for the NS record for the forest root domain
1063 (rootDomainNamingContext in therootDSE) */
1065 const char *rootname_attrs
[] = { "rootDomainNamingContext", NULL
};
1066 LDAPMessage
*msg
= NULL
;
1068 ADS_STATUS ads_status
;
1070 if ( !ads
->ldap
.ld
) {
1071 ads_status
= ads_connect( ads
);
1072 if ( !ADS_ERR_OK(ads_status
) ) {
1073 DEBUG(0,("net_update_dns_internal: Failed to connect to our DC!\n"));
1078 ads_status
= ads_do_search(ads
, "", LDAP_SCOPE_BASE
,
1079 "(objectclass=*)", rootname_attrs
, &msg
);
1080 if (!ADS_ERR_OK(ads_status
)) {
1084 root_dn
= ads_pull_string(ads
, ctx
, msg
, "rootDomainNamingContext");
1086 ads_msgfree( ads
, msg
);
1090 root_domain
= ads_build_domain( root_dn
);
1093 ads_msgfree( ads
, msg
);
1095 /* try again for NS servers */
1097 status
= ads_dns_lookup_ns( ctx
, root_domain
, &nameservers
, &ns_count
);
1099 if ( !NT_STATUS_IS_OK(status
) || (ns_count
== 0)) {
1100 DEBUG(3,("net_ads_join: Failed to find name server for the %s "
1101 "realm\n", ads
->config
.realm
));
1105 dnsdomain
= root_domain
;
1109 /* Now perform the dns update - we'll try non-secure and if we fail,
1110 we'll follow it up with a secure update */
1112 fstrcpy( dns_server
, nameservers
[0].hostname
);
1114 dns_err
= DoDNSUpdate(dns_server
, dnsdomain
, machine_name
, addrs
, num_addrs
);
1115 if (!ERR_DNS_IS_OK(dns_err
)) {
1116 status
= NT_STATUS_UNSUCCESSFUL
;
1121 SAFE_FREE( root_domain
);
1126 static NTSTATUS
net_update_dns(TALLOC_CTX
*mem_ctx
, ADS_STRUCT
*ads
)
1129 struct sockaddr_storage
*iplist
= NULL
;
1130 fstring machine_name
;
1133 name_to_fqdn( machine_name
, global_myname() );
1134 strlower_m( machine_name
);
1136 /* Get our ip address (not the 127.0.0.x address but a real ip
1139 num_addrs
= get_my_ip_address( &iplist
);
1140 if ( num_addrs
<= 0 ) {
1141 DEBUG(4,("net_update_dns: Failed to find my non-loopback IP "
1143 return NT_STATUS_INVALID_PARAMETER
;
1146 status
= net_update_dns_internal(mem_ctx
, ads
, machine_name
,
1148 SAFE_FREE( iplist
);
1154 /*******************************************************************
1155 ********************************************************************/
1157 static int net_ads_join_usage(struct net_context
*c
, int argc
, const char **argv
)
1159 d_printf("net ads join [options]\n");
1160 d_printf("Valid options:\n");
1161 d_printf(" createupn[=UPN] Set the userPrincipalName attribute during the join.\n");
1162 d_printf(" The deault UPN is in the form host/netbiosname@REALM.\n");
1163 d_printf(" createcomputer=OU Precreate the computer account in a specific OU.\n");
1164 d_printf(" The OU string read from top to bottom without RDNs and delimited by a '/'.\n");
1165 d_printf(" E.g. \"createcomputer=Computers/Servers/Unix\"\n");
1166 d_printf(" NB: A backslash '\\' is used as escape at multiple levels and may\n");
1167 d_printf(" need to be doubled or even quadrupled. It is not used as a separator.\n");
1168 d_printf(" osName=string Set the operatingSystem attribute during the join.\n");
1169 d_printf(" osVer=string Set the operatingSystemVersion attribute during the join.\n");
1170 d_printf(" NB: osName and osVer must be specified together for either to take effect.\n");
1171 d_printf(" Also, the operatingSystemService attribute is also set when along with\n");
1172 d_printf(" the two other attributes.\n");
1177 /*******************************************************************
1178 ********************************************************************/
1180 int net_ads_join(struct net_context
*c
, int argc
, const char **argv
)
1182 TALLOC_CTX
*ctx
= NULL
;
1183 struct libnet_JoinCtx
*r
= NULL
;
1184 const char *domain
= lp_realm();
1185 WERROR werr
= WERR_SETUP_NOT_JOINED
;
1186 bool createupn
= false;
1187 const char *machineupn
= NULL
;
1188 const char *create_in_ou
= NULL
;
1190 const char *os_name
= NULL
;
1191 const char *os_version
= NULL
;
1192 bool modify_config
= lp_config_backend_is_registry();
1194 if (c
->display_usage
)
1195 return net_ads_join_usage(c
, argc
, argv
);
1197 if (!modify_config
) {
1199 werr
= check_ads_config();
1200 if (!W_ERROR_IS_OK(werr
)) {
1201 d_fprintf(stderr
, "Invalid configuration. Exiting....\n");
1206 if (!(ctx
= talloc_init("net_ads_join"))) {
1207 d_fprintf(stderr
, "Could not initialise talloc context.\n");
1212 if (!c
->opt_kerberos
) {
1213 use_in_memory_ccache();
1216 werr
= libnet_init_JoinCtx(ctx
, &r
);
1217 if (!W_ERROR_IS_OK(werr
)) {
1221 /* process additional command line args */
1223 for ( i
=0; i
<argc
; i
++ ) {
1224 if ( !StrnCaseCmp(argv
[i
], "createupn", strlen("createupn")) ) {
1226 machineupn
= get_string_param(argv
[i
]);
1228 else if ( !StrnCaseCmp(argv
[i
], "createcomputer", strlen("createcomputer")) ) {
1229 if ( (create_in_ou
= get_string_param(argv
[i
])) == NULL
) {
1230 d_fprintf(stderr
, "Please supply a valid OU path.\n");
1231 werr
= WERR_INVALID_PARAM
;
1235 else if ( !StrnCaseCmp(argv
[i
], "osName", strlen("osName")) ) {
1236 if ( (os_name
= get_string_param(argv
[i
])) == NULL
) {
1237 d_fprintf(stderr
, "Please supply a operating system name.\n");
1238 werr
= WERR_INVALID_PARAM
;
1242 else if ( !StrnCaseCmp(argv
[i
], "osVer", strlen("osVer")) ) {
1243 if ( (os_version
= get_string_param(argv
[i
])) == NULL
) {
1244 d_fprintf(stderr
, "Please supply a valid operating system version.\n");
1245 werr
= WERR_INVALID_PARAM
;
1255 d_fprintf(stderr
, "Please supply a valid domain name\n");
1256 werr
= WERR_INVALID_PARAM
;
1260 /* Do the domain join here */
1262 r
->in
.domain_name
= domain
;
1263 r
->in
.create_upn
= createupn
;
1264 r
->in
.upn
= machineupn
;
1265 r
->in
.account_ou
= create_in_ou
;
1266 r
->in
.os_name
= os_name
;
1267 r
->in
.os_version
= os_version
;
1268 r
->in
.dc_name
= c
->opt_host
;
1269 r
->in
.admin_account
= c
->opt_user_name
;
1270 r
->in
.admin_password
= net_prompt_pass(c
, c
->opt_user_name
);
1272 r
->in
.use_kerberos
= c
->opt_kerberos
;
1273 r
->in
.modify_config
= modify_config
;
1274 r
->in
.join_flags
= WKSSVC_JOIN_FLAGS_JOIN_TYPE
|
1275 WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE
|
1276 WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED
;
1278 werr
= libnet_Join(ctx
, r
);
1279 if (!W_ERROR_IS_OK(werr
)) {
1283 /* Check the short name of the domain */
1285 if (!modify_config
&& !strequal(lp_workgroup(), r
->out
.netbios_domain_name
)) {
1286 d_printf("The workgroup in %s does not match the short\n", get_dyn_CONFIGFILE());
1287 d_printf("domain name obtained from the server.\n");
1288 d_printf("Using the name [%s] from the server.\n", r
->out
.netbios_domain_name
);
1289 d_printf("You should set \"workgroup = %s\" in %s.\n",
1290 r
->out
.netbios_domain_name
, get_dyn_CONFIGFILE());
1293 d_printf("Using short domain name -- %s\n", r
->out
.netbios_domain_name
);
1295 if (r
->out
.dns_domain_name
) {
1296 d_printf("Joined '%s' to realm '%s'\n", r
->in
.machine_name
,
1297 r
->out
.dns_domain_name
);
1299 d_printf("Joined '%s' to domain '%s'\n", r
->in
.machine_name
,
1300 r
->out
.netbios_domain_name
);
1303 #if defined(WITH_DNS_UPDATES)
1304 if (r
->out
.domain_is_ad
) {
1305 /* We enter this block with user creds */
1306 ADS_STRUCT
*ads_dns
= NULL
;
1308 if ( (ads_dns
= ads_init( lp_realm(), NULL
, NULL
)) != NULL
) {
1309 /* kinit with the machine password */
1311 use_in_memory_ccache();
1312 if (asprintf( &ads_dns
->auth
.user_name
, "%s$", global_myname()) == -1) {
1315 ads_dns
->auth
.password
= secrets_fetch_machine_password(
1316 r
->out
.netbios_domain_name
, NULL
, NULL
);
1317 ads_dns
->auth
.realm
= SMB_STRDUP( r
->out
.dns_domain_name
);
1318 strupper_m(ads_dns
->auth
.realm
);
1319 ads_kinit_password( ads_dns
);
1322 if ( !ads_dns
|| !NT_STATUS_IS_OK(net_update_dns( ctx
, ads_dns
)) ) {
1323 d_fprintf( stderr
, "DNS update failed!\n" );
1326 /* exit from this block using machine creds */
1327 ads_destroy(&ads_dns
);
1336 /* issue an overall failure message at the end. */
1337 d_printf("Failed to join domain: %s\n",
1338 r
&& r
->out
.error_string
? r
->out
.error_string
:
1339 get_friendly_werror_msg(werr
));
1345 /*******************************************************************
1346 ********************************************************************/
1348 static int net_ads_dns_register(struct net_context
*c
, int argc
, const char **argv
)
1350 #if defined(WITH_DNS_UPDATES)
1356 talloc_enable_leak_report();
1359 if (argc
> 0 || c
->display_usage
) {
1361 "net ads dns register\n"
1362 " Register hostname with DNS\n");
1366 if (!(ctx
= talloc_init("net_ads_dns"))) {
1367 d_fprintf(stderr
, "Could not initialise talloc context\n");
1371 status
= ads_startup(c
, true, &ads
);
1372 if ( !ADS_ERR_OK(status
) ) {
1373 DEBUG(1, ("error on ads_startup: %s\n", ads_errstr(status
)));
1378 if ( !NT_STATUS_IS_OK(net_update_dns(ctx
, ads
)) ) {
1379 d_fprintf( stderr
, "DNS update failed!\n" );
1380 ads_destroy( &ads
);
1385 d_fprintf( stderr
, "Successfully registered hostname with DNS\n" );
1392 d_fprintf(stderr
, "DNS update support not enabled at compile time!\n");
1397 #if defined(WITH_DNS_UPDATES)
1398 DNS_ERROR
do_gethostbyname(const char *server
, const char *host
);
1401 static int net_ads_dns_gethostbyname(struct net_context
*c
, int argc
, const char **argv
)
1403 #if defined(WITH_DNS_UPDATES)
1407 talloc_enable_leak_report();
1410 if (argc
!= 2 || c
->display_usage
) {
1412 "net ads dns gethostbyname <server> <name>\n"
1413 " Look up hostname from the AD\n"
1414 " server\tName server to use\n"
1415 " name\tName to look up\n");
1419 err
= do_gethostbyname(argv
[0], argv
[1]);
1421 d_printf("do_gethostbyname returned %d\n", ERROR_DNS_V(err
));
1426 static int net_ads_dns(struct net_context
*c
, int argc
, const char *argv
[])
1428 struct functable func
[] = {
1431 net_ads_dns_register
,
1433 "Add host dns entry to AD",
1434 "net ads dns register\n"
1435 " Add host dns entry to AD"
1439 net_ads_dns_gethostbyname
,
1442 "net ads dns gethostbyname\n"
1445 {NULL
, NULL
, 0, NULL
, NULL
}
1448 return net_run_function(c
, argc
, argv
, "net ads dns", func
);
1451 /*******************************************************************
1452 ********************************************************************/
1454 int net_ads_printer_usage(struct net_context
*c
, int argc
, const char **argv
)
1457 "\nnet ads printer search <printer>"
1458 "\n\tsearch for a printer in the directory\n"
1459 "\nnet ads printer info <printer> <server>"
1460 "\n\tlookup info in directory for printer on server"
1461 "\n\t(note: printer defaults to \"*\", server defaults to local)\n"
1462 "\nnet ads printer publish <printername>"
1463 "\n\tpublish printer in directory"
1464 "\n\t(note: printer name is required)\n"
1465 "\nnet ads printer remove <printername>"
1466 "\n\tremove printer from directory"
1467 "\n\t(note: printer name is required)\n");
1471 /*******************************************************************
1472 ********************************************************************/
1474 static int net_ads_printer_search(struct net_context
*c
, int argc
, const char **argv
)
1478 LDAPMessage
*res
= NULL
;
1480 if (c
->display_usage
) {
1482 "net ads printer search\n"
1483 " List printers in the AD\n");
1487 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
1491 rc
= ads_find_printers(ads
, &res
);
1493 if (!ADS_ERR_OK(rc
)) {
1494 d_fprintf(stderr
, "ads_find_printer: %s\n", ads_errstr(rc
));
1495 ads_msgfree(ads
, res
);
1500 if (ads_count_replies(ads
, res
) == 0) {
1501 d_fprintf(stderr
, "No results found\n");
1502 ads_msgfree(ads
, res
);
1508 ads_msgfree(ads
, res
);
1513 static int net_ads_printer_info(struct net_context
*c
, int argc
, const char **argv
)
1517 const char *servername
, *printername
;
1518 LDAPMessage
*res
= NULL
;
1520 if (c
->display_usage
) {
1522 "net ads printer info [printername [servername]]\n"
1523 " Display printer info from AD\n"
1524 " printername\tPrinter name or wildcard\n"
1525 " servername\tName of the print server\n");
1529 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
1534 printername
= argv
[0];
1540 servername
= argv
[1];
1542 servername
= global_myname();
1545 rc
= ads_find_printer_on_server(ads
, &res
, printername
, servername
);
1547 if (!ADS_ERR_OK(rc
)) {
1548 d_fprintf(stderr
, "Server '%s' not found: %s\n",
1549 servername
, ads_errstr(rc
));
1550 ads_msgfree(ads
, res
);
1555 if (ads_count_replies(ads
, res
) == 0) {
1556 d_fprintf(stderr
, "Printer '%s' not found\n", printername
);
1557 ads_msgfree(ads
, res
);
1563 ads_msgfree(ads
, res
);
1569 static int net_ads_printer_publish(struct net_context
*c
, int argc
, const char **argv
)
1573 const char *servername
, *printername
;
1574 struct cli_state
*cli
;
1575 struct rpc_pipe_client
*pipe_hnd
;
1576 struct sockaddr_storage server_ss
;
1578 TALLOC_CTX
*mem_ctx
= talloc_init("net_ads_printer_publish");
1579 ADS_MODLIST mods
= ads_init_mods(mem_ctx
);
1580 char *prt_dn
, *srv_dn
, **srv_cn
;
1581 char *srv_cn_escaped
= NULL
, *printername_escaped
= NULL
;
1582 LDAPMessage
*res
= NULL
;
1584 if (argc
< 1 || c
->display_usage
) {
1586 "net ads printer publish <printername> [servername]\n"
1587 " Publish printer in AD\n"
1588 " printername\tName of the printer\n"
1589 " servername\tName of the print server\n");
1590 talloc_destroy(mem_ctx
);
1594 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
1595 talloc_destroy(mem_ctx
);
1599 printername
= argv
[0];
1602 servername
= argv
[1];
1604 servername
= global_myname();
1607 /* Get printer data from SPOOLSS */
1609 resolve_name(servername
, &server_ss
, 0x20);
1611 nt_status
= cli_full_connection(&cli
, global_myname(), servername
,
1614 c
->opt_user_name
, c
->opt_workgroup
,
1615 c
->opt_password
? c
->opt_password
: "",
1616 CLI_FULL_CONNECTION_USE_KERBEROS
,
1619 if (NT_STATUS_IS_ERR(nt_status
)) {
1620 d_fprintf(stderr
, "Unable to open a connnection to %s to obtain data "
1621 "for %s\n", servername
, printername
);
1623 talloc_destroy(mem_ctx
);
1627 /* Publish on AD server */
1629 ads_find_machine_acct(ads
, &res
, servername
);
1631 if (ads_count_replies(ads
, res
) == 0) {
1632 d_fprintf(stderr
, "Could not find machine account for server %s\n",
1635 talloc_destroy(mem_ctx
);
1639 srv_dn
= ldap_get_dn((LDAP
*)ads
->ldap
.ld
, (LDAPMessage
*)res
);
1640 srv_cn
= ldap_explode_dn(srv_dn
, 1);
1642 srv_cn_escaped
= escape_rdn_val_string_alloc(srv_cn
[0]);
1643 printername_escaped
= escape_rdn_val_string_alloc(printername
);
1644 if (!srv_cn_escaped
|| !printername_escaped
) {
1645 SAFE_FREE(srv_cn_escaped
);
1646 SAFE_FREE(printername_escaped
);
1647 d_fprintf(stderr
, "Internal error, out of memory!");
1649 talloc_destroy(mem_ctx
);
1653 if (asprintf(&prt_dn
, "cn=%s-%s,%s", srv_cn_escaped
, printername_escaped
, srv_dn
) == -1) {
1654 SAFE_FREE(srv_cn_escaped
);
1655 SAFE_FREE(printername_escaped
);
1656 d_fprintf(stderr
, "Internal error, out of memory!");
1658 talloc_destroy(mem_ctx
);
1662 SAFE_FREE(srv_cn_escaped
);
1663 SAFE_FREE(printername_escaped
);
1665 nt_status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_spoolss
.syntax_id
, &pipe_hnd
);
1666 if (!NT_STATUS_IS_OK(nt_status
)) {
1667 d_fprintf(stderr
, "Unable to open a connnection to the spoolss pipe on %s\n",
1671 talloc_destroy(mem_ctx
);
1675 if (!W_ERROR_IS_OK(get_remote_printer_publishing_data(pipe_hnd
, mem_ctx
, &mods
,
1679 talloc_destroy(mem_ctx
);
1683 rc
= ads_add_printer_entry(ads
, prt_dn
, mem_ctx
, &mods
);
1684 if (!ADS_ERR_OK(rc
)) {
1685 d_fprintf(stderr
, "ads_publish_printer: %s\n", ads_errstr(rc
));
1688 talloc_destroy(mem_ctx
);
1692 d_printf("published printer\n");
1695 talloc_destroy(mem_ctx
);
1700 static int net_ads_printer_remove(struct net_context
*c
, int argc
, const char **argv
)
1704 const char *servername
;
1706 LDAPMessage
*res
= NULL
;
1708 if (argc
< 1 || c
->display_usage
) {
1710 "net ads printer remove <printername> [servername]\n"
1711 " Remove a printer from the AD\n"
1712 " printername\tName of the printer\n"
1713 " servername\tName of the print server\n");
1717 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
1722 servername
= argv
[1];
1724 servername
= global_myname();
1727 rc
= ads_find_printer_on_server(ads
, &res
, argv
[0], servername
);
1729 if (!ADS_ERR_OK(rc
)) {
1730 d_fprintf(stderr
, "ads_find_printer_on_server: %s\n", ads_errstr(rc
));
1731 ads_msgfree(ads
, res
);
1736 if (ads_count_replies(ads
, res
) == 0) {
1737 d_fprintf(stderr
, "Printer '%s' not found\n", argv
[1]);
1738 ads_msgfree(ads
, res
);
1743 prt_dn
= ads_get_dn(ads
, talloc_tos(), res
);
1744 ads_msgfree(ads
, res
);
1745 rc
= ads_del_dn(ads
, prt_dn
);
1746 TALLOC_FREE(prt_dn
);
1748 if (!ADS_ERR_OK(rc
)) {
1749 d_fprintf(stderr
, "ads_del_dn: %s\n", ads_errstr(rc
));
1758 static int net_ads_printer(struct net_context
*c
, int argc
, const char **argv
)
1760 struct functable func
[] = {
1763 net_ads_printer_search
,
1765 "Search for a printer",
1766 "net ads printer search\n"
1767 " Search for a printer"
1771 net_ads_printer_info
,
1773 "Display printer information",
1774 "net ads printer info\n"
1775 " Display printer information"
1779 net_ads_printer_publish
,
1781 "Publish a printer",
1782 "net ads printer publish\n"
1783 " Publish a printer"
1787 net_ads_printer_remove
,
1790 "net ads printer remove\n"
1793 {NULL
, NULL
, 0, NULL
, NULL
}
1796 return net_run_function(c
, argc
, argv
, "net ads printer", func
);
1800 static int net_ads_password(struct net_context
*c
, int argc
, const char **argv
)
1803 const char *auth_principal
= c
->opt_user_name
;
1804 const char *auth_password
= c
->opt_password
;
1806 char *new_password
= NULL
;
1811 if (c
->display_usage
) {
1813 "net ads password <username>\n"
1814 " Change password for user\n"
1815 " username\tName of user to change password for\n");
1819 if (c
->opt_user_name
== NULL
|| c
->opt_password
== NULL
) {
1820 d_fprintf(stderr
, "You must supply an administrator username/password\n");
1825 d_fprintf(stderr
, "ERROR: You must say which username to change password for\n");
1830 if (!strchr_m(user
, '@')) {
1831 if (asprintf(&chr
, "%s@%s", argv
[0], lp_realm()) == -1) {
1837 use_in_memory_ccache();
1838 chr
= strchr_m(auth_principal
, '@');
1845 /* use the realm so we can eventually change passwords for users
1846 in realms other than default */
1847 if (!(ads
= ads_init(realm
, c
->opt_workgroup
, c
->opt_host
))) {
1851 /* we don't actually need a full connect, but it's the easy way to
1852 fill in the KDC's addresss */
1855 if (!ads
->config
.realm
) {
1856 d_fprintf(stderr
, "Didn't find the kerberos server!\n");
1862 new_password
= (char *)argv
[1];
1864 if (asprintf(&prompt
, "Enter new password for %s:", user
) == -1) {
1867 new_password
= getpass(prompt
);
1871 ret
= kerberos_set_password(ads
->auth
.kdc_server
, auth_principal
,
1872 auth_password
, user
, new_password
, ads
->auth
.time_offset
);
1873 if (!ADS_ERR_OK(ret
)) {
1874 d_fprintf(stderr
, "Password change failed: %s\n", ads_errstr(ret
));
1879 d_printf("Password change for %s completed.\n", user
);
1885 int net_ads_changetrustpw(struct net_context
*c
, int argc
, const char **argv
)
1888 char *host_principal
;
1892 if (c
->display_usage
) {
1894 "net ads changetrustpw\n"
1895 " Change the machine account's trust password\n");
1899 if (!secrets_init()) {
1900 DEBUG(1,("Failed to initialise secrets database\n"));
1904 net_use_krb_machine_account(c
);
1906 use_in_memory_ccache();
1908 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
1912 fstrcpy(my_name
, global_myname());
1913 strlower_m(my_name
);
1914 if (asprintf(&host_principal
, "%s$@%s", my_name
, ads
->config
.realm
) == -1) {
1918 d_printf("Changing password for principal: %s\n", host_principal
);
1920 ret
= ads_change_trust_account_password(ads
, host_principal
);
1922 if (!ADS_ERR_OK(ret
)) {
1923 d_fprintf(stderr
, "Password change failed: %s\n", ads_errstr(ret
));
1925 SAFE_FREE(host_principal
);
1929 d_printf("Password change for principal %s succeeded.\n", host_principal
);
1931 if (USE_SYSTEM_KEYTAB
) {
1932 d_printf("Attempting to update system keytab with new password.\n");
1933 if (ads_keytab_create_default(ads
)) {
1934 d_printf("Failed to update system keytab.\n");
1939 SAFE_FREE(host_principal
);
1945 help for net ads search
1947 static int net_ads_search_usage(struct net_context
*c
, int argc
, const char **argv
)
1950 "\nnet ads search <expression> <attributes...>\n"
1951 "\nPerform a raw LDAP search on a ADS server and dump the results.\n"
1952 "The expression is a standard LDAP search expression, and the\n"
1953 "attributes are a list of LDAP fields to show in the results.\n\n"
1954 "Example: net ads search '(objectCategory=group)' sAMAccountName\n\n"
1956 net_common_flags_usage(c
, argc
, argv
);
1962 general ADS search function. Useful in diagnosing problems in ADS
1964 static int net_ads_search(struct net_context
*c
, int argc
, const char **argv
)
1968 const char *ldap_exp
;
1970 LDAPMessage
*res
= NULL
;
1972 if (argc
< 1 || c
->display_usage
) {
1973 return net_ads_search_usage(c
, argc
, argv
);
1976 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
1983 rc
= ads_do_search_all(ads
, ads
->config
.bind_path
,
1985 ldap_exp
, attrs
, &res
);
1986 if (!ADS_ERR_OK(rc
)) {
1987 d_fprintf(stderr
, "search failed: %s\n", ads_errstr(rc
));
1992 d_printf("Got %d replies\n\n", ads_count_replies(ads
, res
));
1994 /* dump the results */
1997 ads_msgfree(ads
, res
);
2005 help for net ads search
2007 static int net_ads_dn_usage(struct net_context
*c
, int argc
, const char **argv
)
2010 "\nnet ads dn <dn> <attributes...>\n"
2011 "\nperform a raw LDAP search on a ADS server and dump the results\n"
2012 "The DN standard LDAP DN, and the attributes are a list of LDAP fields \n"
2013 "to show in the results\n\n"
2014 "Example: net ads dn 'CN=administrator,CN=Users,DC=my,DC=domain' sAMAccountName\n\n"
2015 "Note: the DN must be provided properly escaped. See RFC 4514 for details\n\n"
2017 net_common_flags_usage(c
, argc
, argv
);
2023 general ADS search function. Useful in diagnosing problems in ADS
2025 static int net_ads_dn(struct net_context
*c
, int argc
, const char **argv
)
2031 LDAPMessage
*res
= NULL
;
2033 if (argc
< 1 || c
->display_usage
) {
2034 return net_ads_dn_usage(c
, argc
, argv
);
2037 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
2044 rc
= ads_do_search_all(ads
, dn
,
2046 "(objectclass=*)", attrs
, &res
);
2047 if (!ADS_ERR_OK(rc
)) {
2048 d_fprintf(stderr
, "search failed: %s\n", ads_errstr(rc
));
2053 d_printf("Got %d replies\n\n", ads_count_replies(ads
, res
));
2055 /* dump the results */
2058 ads_msgfree(ads
, res
);
2065 help for net ads sid search
2067 static int net_ads_sid_usage(struct net_context
*c
, int argc
, const char **argv
)
2070 "\nnet ads sid <sid> <attributes...>\n"
2071 "\nperform a raw LDAP search on a ADS server and dump the results\n"
2072 "The SID is in string format, and the attributes are a list of LDAP fields \n"
2073 "to show in the results\n\n"
2074 "Example: net ads sid 'S-1-5-32' distinguishedName\n\n"
2076 net_common_flags_usage(c
, argc
, argv
);
2082 general ADS search function. Useful in diagnosing problems in ADS
2084 static int net_ads_sid(struct net_context
*c
, int argc
, const char **argv
)
2088 const char *sid_string
;
2090 LDAPMessage
*res
= NULL
;
2093 if (argc
< 1 || c
->display_usage
) {
2094 return net_ads_sid_usage(c
, argc
, argv
);
2097 if (!ADS_ERR_OK(ads_startup(c
, false, &ads
))) {
2101 sid_string
= argv
[0];
2104 if (!string_to_sid(&sid
, sid_string
)) {
2105 d_fprintf(stderr
, "could not convert sid\n");
2110 rc
= ads_search_retry_sid(ads
, &res
, &sid
, attrs
);
2111 if (!ADS_ERR_OK(rc
)) {
2112 d_fprintf(stderr
, "search failed: %s\n", ads_errstr(rc
));
2117 d_printf("Got %d replies\n\n", ads_count_replies(ads
, res
));
2119 /* dump the results */
2122 ads_msgfree(ads
, res
);
2128 static int net_ads_keytab_flush(struct net_context
*c
, int argc
, const char **argv
)
2133 if (c
->display_usage
) {
2135 "net ads keytab flush\n"
2136 " Delete the whole keytab\n");
2140 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
2143 ret
= ads_keytab_flush(ads
);
2148 static int net_ads_keytab_add(struct net_context
*c
, int argc
, const char **argv
)
2154 if (c
->display_usage
) {
2156 "net ads keytab add <principal> [principal ...]\n"
2157 " Add principals to local keytab\n"
2158 " principal\tKerberos principal to add to "
2163 d_printf("Processing principals to add...\n");
2164 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
2167 for (i
= 0; i
< argc
; i
++) {
2168 ret
|= ads_keytab_add_entry(ads
, argv
[i
]);
2174 static int net_ads_keytab_create(struct net_context
*c
, int argc
, const char **argv
)
2179 if (c
->display_usage
) {
2181 "net ads keytab create\n"
2182 " Create new default keytab\n");
2186 if (!ADS_ERR_OK(ads_startup(c
, true, &ads
))) {
2189 ret
= ads_keytab_create_default(ads
);
2194 static int net_ads_keytab_list(struct net_context
*c
, int argc
, const char **argv
)
2196 const char *keytab
= NULL
;
2198 if (c
->display_usage
) {
2200 "net ads keytab list [keytab]\n"
2201 " List a local keytab\n"
2202 " keytab\tKeytab to list\n");
2210 return ads_keytab_list(keytab
);
2214 int net_ads_keytab(struct net_context
*c
, int argc
, const char **argv
)
2216 struct functable func
[] = {
2221 "Add a service principal",
2222 "net ads keytab add\n"
2223 " Add a service principal"
2227 net_ads_keytab_create
,
2229 "Create a fresh keytab",
2230 "net ads keytab create\n"
2231 " Create a fresh keytab"
2235 net_ads_keytab_flush
,
2237 "Remove all keytab entries",
2238 "net ads keytab flush\n"
2239 " Remove all keytab entries"
2243 net_ads_keytab_list
,
2246 "net ads keytab list\n"
2249 {NULL
, NULL
, 0, NULL
, NULL
}
2252 if (!USE_KERBEROS_KEYTAB
) {
2253 d_printf("\nWarning: \"kerberos method\" must be set to a "
2254 "keytab method to use keytab functions.\n");
2257 return net_run_function(c
, argc
, argv
, "net ads keytab", func
);
2260 static int net_ads_kerberos_renew(struct net_context
*c
, int argc
, const char **argv
)
2264 if (c
->display_usage
) {
2266 "net ads kerberos renew\n"
2267 " Renew TGT from existing credential cache\n");
2271 ret
= smb_krb5_renew_ticket(NULL
, NULL
, NULL
, NULL
);
2273 d_printf("failed to renew kerberos ticket: %s\n",
2274 error_message(ret
));
2279 static int net_ads_kerberos_pac(struct net_context
*c
, int argc
, const char **argv
)
2281 struct PAC_DATA
*pac
= NULL
;
2282 struct PAC_LOGON_INFO
*info
= NULL
;
2283 TALLOC_CTX
*mem_ctx
= NULL
;
2287 if (c
->display_usage
) {
2289 "net ads kerberos pac\n"
2290 " Dump the Kerberos PAC\n");
2294 mem_ctx
= talloc_init("net_ads_kerberos_pac");
2299 c
->opt_password
= net_prompt_pass(c
, c
->opt_user_name
);
2301 status
= kerberos_return_pac(mem_ctx
,
2310 2592000, /* one month */
2312 if (!NT_STATUS_IS_OK(status
)) {
2313 d_printf("failed to query kerberos PAC: %s\n",
2318 info
= get_logon_info_from_pac(pac
);
2321 s
= NDR_PRINT_STRUCT_STRING(mem_ctx
, PAC_LOGON_INFO
, info
);
2322 d_printf("The Pac: %s\n", s
);
2327 TALLOC_FREE(mem_ctx
);
2331 static int net_ads_kerberos_kinit(struct net_context
*c
, int argc
, const char **argv
)
2333 TALLOC_CTX
*mem_ctx
= NULL
;
2337 if (c
->display_usage
) {
2339 "net ads kerberos kinit\n"
2340 " Get Ticket Granting Ticket (TGT) for the user\n");
2344 mem_ctx
= talloc_init("net_ads_kerberos_kinit");
2349 c
->opt_password
= net_prompt_pass(c
, c
->opt_user_name
);
2351 ret
= kerberos_kinit_password_ext(c
->opt_user_name
,
2359 2592000, /* one month */
2362 d_printf("failed to kinit password: %s\n",
2369 int net_ads_kerberos(struct net_context
*c
, int argc
, const char **argv
)
2371 struct functable func
[] = {
2374 net_ads_kerberos_kinit
,
2376 "Retrieve Ticket Granting Ticket (TGT)",
2377 "net ads kerberos kinit\n"
2378 " Receive Ticket Granting Ticket (TGT)"
2382 net_ads_kerberos_renew
,
2384 "Renew Ticket Granting Ticket from credential cache"
2385 "net ads kerberos renew\n"
2386 " Renew Ticket Granting Ticket from credential cache"
2390 net_ads_kerberos_pac
,
2392 "Dump Kerberos PAC",
2393 "net ads kerberos pac\n"
2394 " Dump Kerberos PAC"
2396 {NULL
, NULL
, 0, NULL
, NULL
}
2399 return net_run_function(c
, argc
, argv
, "net ads kerberos", func
);
2402 int net_ads(struct net_context
*c
, int argc
, const char **argv
)
2404 struct functable func
[] = {
2409 "Display details on remote ADS server",
2411 " Display details on remote ADS server"
2417 "Join the local machine to ADS realm",
2419 " Join the local machine to ADS realm"
2425 "Validate machine account",
2426 "net ads testjoin\n"
2427 " Validate machine account"
2433 "Remove the local machine from ADS",
2435 " Remove the local machine from ADS"
2441 "Display machine account details",
2443 " Display machine account details"
2449 "List/modify users",
2451 " List/modify users"
2457 "List/modify groups",
2459 " List/modify groups"
2465 "Issue dynamic DNS update",
2467 " Issue dynamic DNS update"
2473 "Change user passwords",
2474 "net ads password\n"
2475 " Change user passwords"
2479 net_ads_changetrustpw
,
2481 "Change trust account password",
2482 "net ads changetrustpw\n"
2483 " Change trust account password"
2489 "List/modify printer entries",
2491 " List/modify printer entries"
2497 "Issue LDAP search using filter",
2499 " Issue LDAP search using filter"
2505 "Issue LDAP search by DN",
2507 " Issue LDAP search by DN"
2513 "Issue LDAP search by SID",
2515 " Issue LDAP search by SID"
2521 "Display workgroup name",
2522 "net ads workgroup\n"
2523 " Display the workgroup name"
2529 "Perfom CLDAP query on DC",
2531 " Find the ADS DC using CLDAP lookups"
2537 "Manage local keytab file",
2539 " Manage local keytab file"
2545 "Manage group policy objects",
2547 " Manage group policy objects"
2553 "Manage kerberos keytab",
2554 "net ads kerberos\n"
2555 " Manage kerberos keytab"
2557 {NULL
, NULL
, 0, NULL
, NULL
}
2560 return net_run_function(c
, argc
, argv
, "net ads", func
);
2565 static int net_ads_noads(void)
2567 d_fprintf(stderr
, "ADS support not compiled in\n");
2571 int net_ads_keytab(struct net_context
*c
, int argc
, const char **argv
)
2573 return net_ads_noads();
2576 int net_ads_kerberos(struct net_context
*c
, int argc
, const char **argv
)
2578 return net_ads_noads();
2581 int net_ads_changetrustpw(struct net_context
*c
, int argc
, const char **argv
)
2583 return net_ads_noads();
2586 int net_ads_join(struct net_context
*c
, int argc
, const char **argv
)
2588 return net_ads_noads();
2591 int net_ads_user(struct net_context
*c
, int argc
, const char **argv
)
2593 return net_ads_noads();
2596 int net_ads_group(struct net_context
*c
, int argc
, const char **argv
)
2598 return net_ads_noads();
2601 /* this one shouldn't display a message */
2602 int net_ads_check(struct net_context
*c
)
2607 int net_ads_check_our_domain(struct net_context
*c
)
2612 int net_ads(struct net_context
*c
, int argc
, const char **argv
)
2614 return net_ads_noads();
2617 #endif /* WITH_ADS */