2 Unix SMB/CIFS implementation.
5 Copyright (C) Guenther Deschner 2008
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "rpcclient.h"
23 #include "../librpc/gen_ndr/cli_drsuapi.h"
25 static WERROR
cracknames(struct rpc_pipe_client
*cli
,
27 struct policy_handle
*bind_handle
,
28 enum drsuapi_DsNameFormat format_offered
,
29 enum drsuapi_DsNameFormat format_desired
,
32 union drsuapi_DsNameCtr
*ctr
)
38 union drsuapi_DsNameRequest req
;
40 struct drsuapi_DsNameString
*names
;
42 names
= TALLOC_ZERO_ARRAY(mem_ctx
, struct drsuapi_DsNameString
, argc
);
43 W_ERROR_HAVE_NO_MEMORY(names
);
45 for (i
=0; i
<argc
; i
++) {
46 names
[i
].str
= argv
[i
];
49 req
.req1
.codepage
= 1252; /* german */
50 req
.req1
.language
= 0x00000407; /* german */
51 req
.req1
.count
= argc
;
52 req
.req1
.names
= names
;
53 req
.req1
.format_flags
= DRSUAPI_DS_NAME_FLAG_NO_FLAGS
;
54 req
.req1
.format_offered
= format_offered
;
55 req
.req1
.format_desired
= format_desired
;
57 status
= rpccli_drsuapi_DsCrackNames(cli
, mem_ctx
,
64 if (!NT_STATUS_IS_OK(status
)) {
65 return ntstatus_to_werror(status
);
68 if (!W_ERROR_IS_OK(werr
)) {
75 static WERROR
cmd_drsuapi_cracknames(struct rpc_pipe_client
*cli
,
76 TALLOC_CTX
*mem_ctx
, int argc
,
83 struct GUID bind_guid
;
84 struct policy_handle bind_handle
;
86 union drsuapi_DsNameCtr ctr
;
89 printf("usage: %s name\n", argv
[0]);
93 GUID_from_string(DRSUAPI_DS_BIND_GUID
, &bind_guid
);
95 status
= rpccli_drsuapi_DsBind(cli
, mem_ctx
,
101 if (!NT_STATUS_IS_OK(status
)) {
102 return ntstatus_to_werror(status
);
105 werr
= cracknames(cli
, mem_ctx
,
107 DRSUAPI_DS_NAME_FORMAT_UNKNOWN
,
108 DRSUAPI_DS_NAME_FORMAT_FQDN_1779
,
113 if (!W_ERROR_IS_OK(werr
)) {
117 for (i
=0; i
< ctr
.ctr1
->count
; i
++) {
118 printf("status: %d\n",
119 ctr
.ctr1
->array
[i
].status
);
120 printf("dns_domain_name: %s\n",
121 ctr
.ctr1
->array
[i
].dns_domain_name
);
122 printf("result_name: %s\n",
123 ctr
.ctr1
->array
[i
].result_name
);
127 if (is_valid_policy_hnd(&bind_handle
)) {
128 rpccli_drsuapi_DsUnbind(cli
, mem_ctx
, &bind_handle
, &werr
);
134 static void display_domain_controller_info_01(struct drsuapi_DsGetDCConnection01
*r
)
136 printf("client_ip_address:\t%s\n", r
->client_ip_address
);
137 printf("unknown2:\t%d\n", r
->unknown2
);
138 printf("connection_time:\t%d\n", r
->connection_time
);
139 printf("unknown4:\t%d\n", r
->unknown4
);
140 printf("unknown5:\t%d\n", r
->unknown5
);
141 printf("unknown6:\t%d\n", r
->unknown6
);
142 printf("client_account:\t%s\n", r
->client_account
);
145 static void display_domain_controller_info_1(struct drsuapi_DsGetDCInfo1
*r
)
147 printf("netbios_name:\t%s\n", r
->netbios_name
);
148 printf("dns_name:\t%s\n", r
->dns_name
);
149 printf("site_name:\t%s\n", r
->site_name
);
150 printf("computer_dn:\t%s\n", r
->computer_dn
);
151 printf("server_dn:\t%s\n", r
->server_dn
);
152 printf("is_pdc:\t\t%s\n", r
->is_pdc
? "true" : "false");
153 printf("is_enabled:\t%s\n", r
->is_enabled
? "true" : "false");
156 static void display_domain_controller_info_2(struct drsuapi_DsGetDCInfo2
*r
)
158 printf("netbios_name:\t%s\n", r
->netbios_name
);
159 printf("dns_name:\t%s\n", r
->dns_name
);
160 printf("site_name:\t%s\n", r
->site_name
);
161 printf("site_dn:\t%s\n", r
->site_dn
);
162 printf("computer_dn:\t%s\n", r
->computer_dn
);
163 printf("server_dn:\t%s\n", r
->server_dn
);
164 printf("ntds_dn:\t%s\n", r
->ntds_dn
);
165 printf("is_pdc:\t\t%s\n", r
->is_pdc
? "true" : "false");
166 printf("is_enabled:\t%s\n", r
->is_enabled
? "true" : "false");
167 printf("is_gc:\t\t%s\n", r
->is_gc
? "true" : "false");
168 printf("site_guid:\t%s\n", GUID_string(talloc_tos(), &r
->site_guid
));
169 printf("computer_guid:\t%s\n", GUID_string(talloc_tos(), &r
->computer_guid
));
170 printf("server_guid:\t%s\n", GUID_string(talloc_tos(), &r
->server_guid
));
171 printf("ntds_guid:\t%s\n", GUID_string(talloc_tos(), &r
->ntds_guid
));
174 static void display_domain_controller_info_3(struct drsuapi_DsGetDCInfo3
*r
)
176 printf("netbios_name:\t%s\n", r
->netbios_name
);
177 printf("dns_name:\t%s\n", r
->dns_name
);
178 printf("site_name:\t%s\n", r
->site_name
);
179 printf("site_dn:\t%s\n", r
->site_dn
);
180 printf("computer_dn:\t%s\n", r
->computer_dn
);
181 printf("server_dn:\t%s\n", r
->server_dn
);
182 printf("ntds_dn:\t%s\n", r
->ntds_dn
);
183 printf("is_pdc:\t\t%s\n", r
->is_pdc
? "true" : "false");
184 printf("is_enabled:\t%s\n", r
->is_enabled
? "true" : "false");
185 printf("is_gc:\t\t%s\n", r
->is_gc
? "true" : "false");
186 printf("is_rodc:\t%s\n", r
->is_rodc
? "true" : "false");
187 printf("site_guid:\t%s\n", GUID_string(talloc_tos(), &r
->site_guid
));
188 printf("computer_guid:\t%s\n", GUID_string(talloc_tos(), &r
->computer_guid
));
189 printf("server_guid:\t%s\n", GUID_string(talloc_tos(), &r
->server_guid
));
190 printf("ntds_guid:\t%s\n", GUID_string(talloc_tos(), &r
->ntds_guid
));
193 static void display_domain_controller_info(int32_t level
,
194 union drsuapi_DsGetDCInfoCtr
*ctr
)
199 case DRSUAPI_DC_CONNECTION_CTR_01
:
200 for (i
=0; i
<ctr
->ctr01
.count
; i
++) {
201 printf("----------\n");
202 display_domain_controller_info_01(&ctr
->ctr01
.array
[i
]);
205 case DRSUAPI_DC_INFO_CTR_1
:
206 for (i
=0; i
<ctr
->ctr1
.count
; i
++) {
207 printf("----------\n");
208 display_domain_controller_info_1(&ctr
->ctr1
.array
[i
]);
211 case DRSUAPI_DC_INFO_CTR_2
:
212 for (i
=0; i
<ctr
->ctr2
.count
; i
++) {
213 printf("----------\n");
214 display_domain_controller_info_2(&ctr
->ctr2
.array
[i
]);
217 case DRSUAPI_DC_INFO_CTR_3
:
218 for (i
=0; i
<ctr
->ctr3
.count
; i
++) {
219 printf("----------\n");
220 display_domain_controller_info_3(&ctr
->ctr3
.array
[i
]);
228 static WERROR
cmd_drsuapi_getdcinfo(struct rpc_pipe_client
*cli
,
229 TALLOC_CTX
*mem_ctx
, int argc
,
235 struct GUID bind_guid
;
236 struct policy_handle bind_handle
;
238 const char *domain
= NULL
;
241 union drsuapi_DsGetDCInfoRequest req
;
242 union drsuapi_DsGetDCInfoCtr ctr
;
245 printf("usage: %s domain [level]\n", argv
[0]);
251 level
= atoi(argv
[2]);
254 GUID_from_string(DRSUAPI_DS_BIND_GUID
, &bind_guid
);
256 status
= rpccli_drsuapi_DsBind(cli
, mem_ctx
,
262 if (!NT_STATUS_IS_OK(status
)) {
263 return ntstatus_to_werror(status
);
266 req
.req1
.domain_name
= domain
;
267 req
.req1
.level
= level
;
269 status
= rpccli_drsuapi_DsGetDomainControllerInfo(cli
, mem_ctx
,
276 if (!NT_STATUS_IS_OK(status
)) {
277 werr
= ntstatus_to_werror(status
);
281 if (!W_ERROR_IS_OK(werr
)) {
285 display_domain_controller_info(level_out
, &ctr
);
287 if (is_valid_policy_hnd(&bind_handle
)) {
288 rpccli_drsuapi_DsUnbind(cli
, mem_ctx
, &bind_handle
, &werr
);
294 static WERROR
cmd_drsuapi_getncchanges(struct rpc_pipe_client
*cli
,
295 TALLOC_CTX
*mem_ctx
, int argc
,
301 struct policy_handle bind_handle
;
303 struct GUID bind_guid
;
304 struct drsuapi_DsBindInfoCtr bind_info
;
305 struct drsuapi_DsBindInfo28 info28
;
307 const char *nc_dn
= NULL
;
309 DATA_BLOB session_key
;
313 uint32_t level_out
= 0;
314 union drsuapi_DsGetNCChangesRequest req
;
315 union drsuapi_DsGetNCChangesCtr ctr
;
316 struct drsuapi_DsReplicaObjectIdentifier nc
;
317 struct dom_sid null_sid
;
319 struct drsuapi_DsGetNCChangesCtr1
*ctr1
= NULL
;
320 struct drsuapi_DsGetNCChangesCtr6
*ctr6
= NULL
;
321 uint32_t out_level
= 0;
324 uint32_t supported_extensions
= 0;
325 uint32_t replica_flags
= DRSUAPI_DRS_WRIT_REP
|
326 DRSUAPI_DRS_INIT_SYNC
|
327 DRSUAPI_DRS_PER_SYNC
|
328 DRSUAPI_DRS_GET_ANC
|
329 DRSUAPI_DRS_NEVER_SYNCED
;
332 printf("usage: %s [naming_context_or_object_dn [single]]\n", argv
[0]);
341 if (strequal(argv
[2], "single")) {
344 printf("warning: ignoring unknown argument '%s'\n",
351 ZERO_STRUCT(null_sid
);
354 GUID_from_string(DRSUAPI_DS_BIND_GUID
, &bind_guid
);
356 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_BASE
;
357 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION
;
358 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI
;
359 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2
;
360 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS
;
361 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1
;
362 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION
;
363 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE
;
364 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2
;
365 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION
;
366 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2
;
367 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD
;
368 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND
;
369 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO
;
370 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION
;
371 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01
;
372 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP
;
373 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY
;
374 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3
;
375 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2
;
376 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6
;
377 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS
;
378 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8
;
379 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5
;
380 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6
;
381 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3
;
382 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7
;
383 info28
.supported_extensions
|= DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT
;
384 info28
.site_guid
= GUID_zero();
386 info28
.repl_epoch
= 0;
388 bind_info
.length
= 28;
389 bind_info
.info
.info28
= info28
;
391 status
= rpccli_drsuapi_DsBind(cli
, mem_ctx
,
397 if (!NT_STATUS_IS_OK(status
)) {
398 return ntstatus_to_werror(status
);
401 if (!W_ERROR_IS_OK(werr
)) {
405 if (bind_info
.length
== 24) {
406 supported_extensions
= bind_info
.info
.info24
.supported_extensions
;
407 } else if (bind_info
.length
== 28) {
408 supported_extensions
= bind_info
.info
.info28
.supported_extensions
;
409 } else if (bind_info
.length
== 48) {
410 supported_extensions
= bind_info
.info
.info48
.supported_extensions
;
415 union drsuapi_DsNameCtr crack_ctr
;
418 name
= talloc_asprintf(mem_ctx
, "%s\\", lp_workgroup());
419 W_ERROR_HAVE_NO_MEMORY(name
);
421 werr
= cracknames(cli
, mem_ctx
,
423 DRSUAPI_DS_NAME_FORMAT_UNKNOWN
,
424 DRSUAPI_DS_NAME_FORMAT_FQDN_1779
,
428 if (!W_ERROR_IS_OK(werr
)) {
432 if (crack_ctr
.ctr1
->count
!= 1) {
433 return WERR_NO_SUCH_DOMAIN
;
436 if (crack_ctr
.ctr1
->array
[0].status
!= DRSUAPI_DS_NAME_STATUS_OK
) {
437 return WERR_NO_SUCH_DOMAIN
;
440 nc_dn
= talloc_strdup(mem_ctx
, crack_ctr
.ctr1
->array
[0].result_name
);
441 W_ERROR_HAVE_NO_MEMORY(nc_dn
);
443 printf("using: %s\n", nc_dn
);
447 nc
.guid
= GUID_zero();
450 if (supported_extensions
& DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8
) {
452 req
.req8
.naming_context
= &nc
;
453 req
.req8
.replica_flags
= replica_flags
;
454 req
.req8
.max_object_count
= 402;
455 req
.req8
.max_ndr_size
= 402116;
457 req
.req8
.extended_op
= DRSUAPI_EXOP_REPL_OBJ
;
461 req
.req5
.naming_context
= &nc
;
462 req
.req5
.replica_flags
= replica_flags
;
463 req
.req5
.max_object_count
= 402;
464 req
.req5
.max_ndr_size
= 402116;
466 req
.req5
.extended_op
= DRSUAPI_EXOP_REPL_OBJ
;
473 DEBUG(1,("start[%d] tmp_higest_usn: %llu , highest_usn: %llu\n",y
,
474 (long long)req
.req8
.highwatermark
.tmp_highest_usn
,
475 (long long)req
.req8
.highwatermark
.highest_usn
));
478 status
= rpccli_drsuapi_DsGetNCChanges(cli
, mem_ctx
,
485 if (!NT_STATUS_IS_OK(status
)) {
486 printf("Failed to get NC Changes: %s",
487 get_friendly_werror_msg(werr
));
491 if (!W_ERROR_IS_OK(werr
)) {
492 status
= werror_to_ntstatus(werr
);
496 if (level_out
== 1) {
499 } else if (level_out
== 2 && ctr
.ctr2
.mszip1
.ts
) {
501 ctr1
= &ctr
.ctr2
.mszip1
.ts
->ctr1
;
504 status
= cli_get_session_key(mem_ctx
, cli
, &session_key
);
505 if (!NT_STATUS_IS_OK(status
)) {
506 printf("Failed to get Session Key: %s",
508 return ntstatus_to_werror(status
);
511 if (out_level
== 1) {
512 DEBUG(1,("end[%d] tmp_highest_usn: %llu , highest_usn: %llu\n",y
,
513 (long long)ctr1
->new_highwatermark
.tmp_highest_usn
,
514 (long long)ctr1
->new_highwatermark
.highest_usn
));
516 libnet_dssync_decrypt_attributes(mem_ctx
,
520 if (ctr1
->more_data
) {
521 req
.req5
.highwatermark
= ctr1
->new_highwatermark
;
526 if (level_out
== 6) {
529 } else if (level_out
== 7
530 && ctr
.ctr7
.level
== 6
531 && ctr
.ctr7
.type
== DRSUAPI_COMPRESSION_TYPE_MSZIP
532 && ctr
.ctr7
.ctr
.mszip6
.ts
) {
534 ctr6
= &ctr
.ctr7
.ctr
.mszip6
.ts
->ctr6
;
535 } else if (level_out
== 7
536 && ctr
.ctr7
.level
== 6
537 && ctr
.ctr7
.type
== DRSUAPI_COMPRESSION_TYPE_XPRESS
538 && ctr
.ctr7
.ctr
.xpress6
.ts
) {
540 ctr6
= &ctr
.ctr7
.ctr
.xpress6
.ts
->ctr6
;
543 if (out_level
== 6) {
544 DEBUG(1,("end[%d] tmp_highest_usn: %llu , highest_usn: %llu\n",y
,
545 (long long)ctr6
->new_highwatermark
.tmp_highest_usn
,
546 (long long)ctr6
->new_highwatermark
.highest_usn
));
548 libnet_dssync_decrypt_attributes(mem_ctx
,
552 if (ctr6
->more_data
) {
553 req
.req8
.highwatermark
= ctr6
->new_highwatermark
;
565 /* List of commands exported by this module */
567 struct cmd_set drsuapi_commands
[] = {
570 { "dscracknames", RPC_RTYPE_WERROR
, NULL
, cmd_drsuapi_cracknames
, &ndr_table_drsuapi
.syntax_id
, NULL
, "Crack Name", "" },
571 { "dsgetdcinfo", RPC_RTYPE_WERROR
, NULL
, cmd_drsuapi_getdcinfo
, &ndr_table_drsuapi
.syntax_id
, NULL
, "Get Domain Controller Info", "" },
572 { "dsgetncchanges", RPC_RTYPE_WERROR
, NULL
, cmd_drsuapi_getncchanges
, &ndr_table_drsuapi
.syntax_id
, NULL
, "Get NC Changes", "" },