2 Unix SMB/CIFS implementation.
4 Copyright (C) Tim Potter 2000-2001,
5 Copyright (C) Andrew Tridgell 1992-1997,2000,
6 Copyright (C) Rafal Szczesniak 2002
7 Copyright (C) Jeremy Allison 2005.
8 Copyright (C) Michael Adam 2007.
9 Copyright (C) Guenther Deschner 2008.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "rpc_client/rpc_client.h"
27 #include "../librpc/gen_ndr/ndr_lsa_c.h"
28 #include "rpc_client/cli_lsarpc.h"
29 #include "rpc_client/init_lsa.h"
30 #include "../libcli/security/security.h"
33 /** @defgroup lsa LSA - Local Security Architecture
42 * RPC client routines for the LSA RPC pipe. LSA means "local
43 * security authority", which is half of a password database.
46 NTSTATUS
dcerpc_lsa_open_policy(struct dcerpc_binding_handle
*h
,
50 struct policy_handle
*pol
,
53 struct lsa_ObjectAttribute attr
;
54 struct lsa_QosInfo qos
;
55 uint16_t system_name
= '\\';
63 qos
.impersonation_level
= 2;
65 qos
.effective_only
= 0;
70 return dcerpc_lsa_OpenPolicy(h
,
79 /** Open a LSA policy handle
81 * @param cli Handle on an initialised SMB connection */
83 NTSTATUS
rpccli_lsa_open_policy(struct rpc_pipe_client
*cli
,
85 bool sec_qos
, uint32_t des_access
,
86 struct policy_handle
*pol
)
89 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
91 status
= dcerpc_lsa_open_policy(cli
->binding_handle
,
97 if (!NT_STATUS_IS_OK(status
)) {
104 NTSTATUS
dcerpc_lsa_open_policy2(struct dcerpc_binding_handle
*h
,
106 const char *srv_name_slash
,
109 struct policy_handle
*pol
,
112 struct lsa_ObjectAttribute attr
;
113 struct lsa_QosInfo qos
;
121 qos
.impersonation_level
= 2;
122 qos
.context_mode
= 1;
123 qos
.effective_only
= 0;
128 return dcerpc_lsa_OpenPolicy2(h
,
137 /** Open a LSA policy handle
139 * @param cli Handle on an initialised SMB connection
142 NTSTATUS
rpccli_lsa_open_policy2(struct rpc_pipe_client
*cli
,
143 TALLOC_CTX
*mem_ctx
, bool sec_qos
,
144 uint32_t des_access
, struct policy_handle
*pol
)
147 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
149 status
= dcerpc_lsa_open_policy2(cli
->binding_handle
,
156 if (!NT_STATUS_IS_OK(status
)) {
163 /* Lookup a list of sids
165 * internal version withOUT memory allocation of the target arrays.
166 * this assumes sufficiently sized arrays to store domains, names and types. */
168 static NTSTATUS
dcerpc_lsa_lookup_sids_noalloc(struct dcerpc_binding_handle
*h
,
170 TALLOC_CTX
*domains_ctx
,
171 TALLOC_CTX
*names_ctx
,
172 struct policy_handle
*pol
,
174 const struct dom_sid
*sids
,
175 enum lsa_LookupNamesLevel level
,
178 enum lsa_SidType
*types
,
179 bool use_lookupsids3
,
182 NTSTATUS status
= NT_STATUS_OK
;
183 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
184 struct lsa_SidArray sid_array
;
185 struct lsa_RefDomainList
*ref_domains
= NULL
;
186 struct lsa_TransNameArray lsa_names
;
190 ZERO_STRUCT(lsa_names
);
192 sid_array
.num_sids
= num_sids
;
193 sid_array
.sids
= talloc_array(mem_ctx
, struct lsa_SidPtr
, num_sids
);
194 if (sid_array
.sids
== NULL
) {
195 return NT_STATUS_NO_MEMORY
;
198 for (i
= 0; i
<num_sids
; i
++) {
199 sid_array
.sids
[i
].sid
= dom_sid_dup(mem_ctx
, &sids
[i
]);
200 if (!sid_array
.sids
[i
].sid
) {
201 return NT_STATUS_NO_MEMORY
;
205 if (use_lookupsids3
) {
206 struct lsa_TransNameArray2 lsa_names2
;
209 ZERO_STRUCT(lsa_names2
);
211 status
= dcerpc_lsa_LookupSids3(h
,
218 LSA_LOOKUP_OPTION_SEARCH_ISOLATED_NAMES
,
219 LSA_CLIENT_REVISION_2
,
221 if (!NT_STATUS_IS_OK(status
)) {
225 if (!NT_STATUS_LOOKUP_ERR(result
)) {
226 lsa_names
.count
= lsa_names2
.count
;
227 lsa_names
.names
= talloc_array(mem_ctx
,
228 struct lsa_TranslatedName
,
230 if (lsa_names
.names
== NULL
) {
231 return NT_STATUS_NO_MEMORY
;
233 for (n
=0; n
< lsa_names
.count
; n
++) {
234 lsa_names
.names
[n
].sid_type
= lsa_names2
.names
[n
].sid_type
;
235 lsa_names
.names
[n
].name
= lsa_names2
.names
[n
].name
;
236 lsa_names
.names
[n
].sid_index
= lsa_names2
.names
[n
].sid_index
;
241 status
= dcerpc_lsa_LookupSids(h
,
252 DEBUG(10, ("LSA_LOOKUPSIDS returned status: '%s', result: '%s', "
253 "mapped count = %d'\n",
254 nt_errstr(status
), nt_errstr(result
), count
));
256 if (!NT_STATUS_IS_OK(status
)) {
260 if (NT_STATUS_LOOKUP_ERR(result
)) {
265 /* Return output parameters */
266 if (NT_STATUS_EQUAL(result
, NT_STATUS_NONE_MAPPED
) ||
269 for (i
= 0; i
< num_sids
; i
++) {
272 (types
)[i
] = SID_NAME_UNKNOWN
;
274 *presult
= NT_STATUS_NONE_MAPPED
;
278 for (i
= 0; i
< num_sids
; i
++) {
279 const char *name
, *dom_name
;
282 if (i
>= lsa_names
.count
) {
283 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
287 dom_idx
= lsa_names
.names
[i
].sid_index
;
289 /* Translate optimised name through domain index array */
291 if (dom_idx
!= 0xffffffff) {
292 if (ref_domains
== NULL
) {
293 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
296 if (dom_idx
>= ref_domains
->count
) {
297 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
301 dom_name
= ref_domains
->domains
[dom_idx
].name
.string
;
302 name
= lsa_names
.names
[i
].name
.string
;
305 (names
)[i
] = talloc_strdup(names_ctx
, name
);
306 if ((names
)[i
] == NULL
) {
307 DEBUG(0, ("cli_lsa_lookup_sids_noalloc(): out of memory\n"));
308 *presult
= NT_STATUS_UNSUCCESSFUL
;
314 domains
[i
] = talloc_strdup(domains_ctx
,
315 dom_name
? dom_name
: "");
316 (types
)[i
] = lsa_names
.names
[i
].sid_type
;
317 if ((domains
)[i
] == NULL
) {
318 DEBUG(0, ("cli_lsa_lookup_sids_noalloc(): out of memory\n"));
319 *presult
= NT_STATUS_UNSUCCESSFUL
;
326 (types
)[i
] = SID_NAME_UNKNOWN
;
330 *presult
= NT_STATUS_OK
;
334 /* Lookup a list of sids
336 * do it the right way: there is a limit (of 20480 for w2k3) entries
337 * returned by this call. when the sids list contains more entries,
338 * empty lists are returned. This version of lsa_lookup_sids passes
339 * the list of sids in hunks of LOOKUP_SIDS_HUNK_SIZE to the lsa call. */
341 /* This constant defines the limit of how many sids to look up
342 * in one call (maximum). the limit from the server side is
343 * at 20480 for win2k3, but we keep it at a save 1000 for now. */
344 #define LOOKUP_SIDS_HUNK_SIZE 1000
346 NTSTATUS
dcerpc_lsa_lookup_sids_generic(struct dcerpc_binding_handle
*h
,
348 struct policy_handle
*pol
,
350 const struct dom_sid
*sids
,
351 enum lsa_LookupNamesLevel level
,
354 enum lsa_SidType
**ptypes
,
355 bool use_lookupsids3
,
358 NTSTATUS status
= NT_STATUS_OK
;
359 NTSTATUS result
= NT_STATUS_OK
;
361 int sids_processed
= 0;
362 const struct dom_sid
*hunk_sids
= sids
;
365 enum lsa_SidType
*hunk_types
;
366 char **domains
= NULL
;
368 enum lsa_SidType
*types
= NULL
;
369 bool have_mapped
= false;
370 bool have_unmapped
= false;
373 domains
= talloc_zero_array(mem_ctx
, char *, num_sids
);
374 if (domains
== NULL
) {
375 DEBUG(0, ("rpccli_lsa_lookup_sids(): out of memory\n"));
376 status
= NT_STATUS_NO_MEMORY
;
380 names
= talloc_zero_array(mem_ctx
, char *, num_sids
);
382 DEBUG(0, ("rpccli_lsa_lookup_sids(): out of memory\n"));
383 status
= NT_STATUS_NO_MEMORY
;
387 types
= talloc_zero_array(mem_ctx
, enum lsa_SidType
, num_sids
);
389 DEBUG(0, ("rpccli_lsa_lookup_sids(): out of memory\n"));
390 status
= NT_STATUS_NO_MEMORY
;
395 sids_left
= num_sids
;
396 hunk_domains
= domains
;
400 while (sids_left
> 0) {
402 NTSTATUS hunk_result
= NT_STATUS_UNSUCCESSFUL
;
404 hunk_num_sids
= ((sids_left
> LOOKUP_SIDS_HUNK_SIZE
)
405 ? LOOKUP_SIDS_HUNK_SIZE
408 DEBUG(10, ("rpccli_lsa_lookup_sids: processing items "
411 sids_processed
+ hunk_num_sids
- 1,
414 status
= dcerpc_lsa_lookup_sids_noalloc(h
,
416 (TALLOC_CTX
*)domains
,
427 if (!NT_STATUS_IS_OK(status
)) {
431 if (!NT_STATUS_IS_OK(hunk_result
) &&
432 !NT_STATUS_EQUAL(hunk_result
, STATUS_SOME_UNMAPPED
) &&
433 !NT_STATUS_EQUAL(hunk_result
, NT_STATUS_NONE_MAPPED
))
435 /* An actual error occurred */
436 *presult
= hunk_result
;
440 if (NT_STATUS_IS_OK(hunk_result
)) {
443 if (NT_STATUS_EQUAL(hunk_result
, NT_STATUS_NONE_MAPPED
)) {
444 have_unmapped
= true;
446 if (NT_STATUS_EQUAL(hunk_result
, STATUS_SOME_UNMAPPED
)) {
448 for (i
=0; i
<hunk_num_sids
; i
++) {
449 if (hunk_types
[i
] == SID_NAME_UNKNOWN
) {
450 have_unmapped
= true;
457 sids_left
-= hunk_num_sids
;
458 sids_processed
+= hunk_num_sids
;
459 hunk_sids
+= hunk_num_sids
;
460 hunk_domains
+= hunk_num_sids
;
461 hunk_names
+= hunk_num_sids
;
462 hunk_types
+= hunk_num_sids
;
470 result
= NT_STATUS_NONE_MAPPED
;
473 result
= STATUS_SOME_UNMAPPED
;
480 TALLOC_FREE(domains
);
487 NTSTATUS
dcerpc_lsa_lookup_sids(struct dcerpc_binding_handle
*h
,
489 struct policy_handle
*pol
,
491 const struct dom_sid
*sids
,
494 enum lsa_SidType
**ptypes
,
497 enum lsa_LookupNamesLevel level
= LSA_LOOKUP_NAMES_ALL
;
498 return dcerpc_lsa_lookup_sids_generic(h
,
511 NTSTATUS
rpccli_lsa_lookup_sids(struct rpc_pipe_client
*cli
,
513 struct policy_handle
*pol
,
515 const struct dom_sid
*sids
,
518 enum lsa_SidType
**ptypes
)
521 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
522 enum lsa_LookupNamesLevel level
= LSA_LOOKUP_NAMES_ALL
;
524 status
= dcerpc_lsa_lookup_sids_generic(cli
->binding_handle
,
535 if (!NT_STATUS_IS_OK(status
)) {
542 NTSTATUS
dcerpc_lsa_lookup_sids3(struct dcerpc_binding_handle
*h
,
544 struct policy_handle
*pol
,
546 const struct dom_sid
*sids
,
549 enum lsa_SidType
**ptypes
,
552 enum lsa_LookupNamesLevel level
= LSA_LOOKUP_NAMES_ALL
;
553 return dcerpc_lsa_lookup_sids_generic(h
,
566 /** Lookup a list of names */
568 NTSTATUS
dcerpc_lsa_lookup_names_generic(struct dcerpc_binding_handle
*h
,
570 struct policy_handle
*pol
,
573 const char ***dom_names
,
574 enum lsa_LookupNamesLevel level
,
575 struct dom_sid
**sids
,
576 enum lsa_SidType
**types
,
577 bool use_lookupnames4
,
581 struct lsa_String
*lsa_names
= NULL
;
582 struct lsa_RefDomainList
*domains
= NULL
;
583 struct lsa_TransSidArray sid_array
;
584 struct lsa_TransSidArray3 sid_array3
;
588 ZERO_STRUCT(sid_array
);
589 ZERO_STRUCT(sid_array3
);
591 lsa_names
= talloc_array(mem_ctx
, struct lsa_String
, num_names
);
592 if (lsa_names
== NULL
) {
593 return NT_STATUS_NO_MEMORY
;
596 for (i
= 0; i
< num_names
; i
++) {
597 init_lsa_String(&lsa_names
[i
], names
[i
]);
600 if (use_lookupnames4
) {
601 status
= dcerpc_lsa_LookupNames4(h
,
609 LSA_LOOKUP_OPTION_SEARCH_ISOLATED_NAMES
,
610 LSA_CLIENT_REVISION_2
,
613 status
= dcerpc_lsa_LookupNames(h
,
624 if (!NT_STATUS_IS_OK(status
)) {
628 if (!NT_STATUS_IS_OK(*presult
) &&
629 !NT_STATUS_EQUAL(*presult
, STATUS_SOME_UNMAPPED
)) {
630 /* An actual error occurred */
634 /* Return output parameters */
636 *presult
= NT_STATUS_NONE_MAPPED
;
641 *sids
= talloc_zero_array(mem_ctx
, struct dom_sid
, num_names
);
643 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
644 *presult
= NT_STATUS_NO_MEMORY
;
648 *types
= talloc_zero_array(mem_ctx
, enum lsa_SidType
, num_names
);
649 if (*types
== NULL
) {
650 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
651 *presult
= NT_STATUS_NO_MEMORY
;
655 if (dom_names
!= NULL
) {
656 *dom_names
= talloc_zero_array(mem_ctx
, const char *, num_names
);
657 if (*dom_names
== NULL
) {
658 DEBUG(0, ("cli_lsa_lookup_sids(): out of memory\n"));
659 *presult
= NT_STATUS_NO_MEMORY
;
666 if (dom_names
!= NULL
) {
671 for (i
= 0; i
< num_names
; i
++) {
673 struct dom_sid
*sid
= &(*sids
)[i
];
675 if (use_lookupnames4
) {
676 if (i
>= sid_array3
.count
) {
677 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
681 dom_idx
= sid_array3
.sids
[i
].sid_index
;
682 (*types
)[i
] = sid_array3
.sids
[i
].sid_type
;
684 if (i
>= sid_array
.count
) {
685 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
689 dom_idx
= sid_array
.sids
[i
].sid_index
;
690 (*types
)[i
] = sid_array
.sids
[i
].sid_type
;
693 /* Translate optimised sid through domain index array */
695 if (dom_idx
== 0xffffffff) {
696 /* Nothing to do, this is unknown */
698 (*types
)[i
] = SID_NAME_UNKNOWN
;
701 if (domains
== NULL
) {
702 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
705 if (dom_idx
>= domains
->count
) {
706 *presult
= NT_STATUS_INVALID_NETWORK_RESPONSE
;
710 if (use_lookupnames4
) {
711 sid_copy(sid
, sid_array3
.sids
[i
].sid
);
713 sid_copy(sid
, domains
->domains
[dom_idx
].sid
);
715 if (sid_array
.sids
[i
].rid
!= 0xffffffff) {
716 sid_append_rid(sid
, sid_array
.sids
[i
].rid
);
720 if (dom_names
== NULL
) {
724 (*dom_names
)[i
] = domains
->domains
[dom_idx
].name
.string
;
731 NTSTATUS
dcerpc_lsa_lookup_names(struct dcerpc_binding_handle
*h
,
733 struct policy_handle
*pol
,
736 const char ***dom_names
,
737 enum lsa_LookupNamesLevel level
,
738 struct dom_sid
**sids
,
739 enum lsa_SidType
**types
,
742 return dcerpc_lsa_lookup_names_generic(h
,
755 NTSTATUS
rpccli_lsa_lookup_names(struct rpc_pipe_client
*cli
,
757 struct policy_handle
*pol
,
760 const char ***dom_names
,
762 struct dom_sid
**sids
,
763 enum lsa_SidType
**types
)
766 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
768 status
= dcerpc_lsa_lookup_names(cli
->binding_handle
,
778 if (!NT_STATUS_IS_OK(status
)) {
785 NTSTATUS
dcerpc_lsa_lookup_names4(struct dcerpc_binding_handle
*h
,
787 struct policy_handle
*pol
,
790 const char ***dom_names
,
791 enum lsa_LookupNamesLevel level
,
792 struct dom_sid
**sids
,
793 enum lsa_SidType
**types
,
796 return dcerpc_lsa_lookup_names_generic(h
,