Testing revealed some errors, reverting some of the lsa changes.
[Samba.git] / source / rpc_server / srv_lsa_nt.c
blob6e25a64236787d0f8b8e7d9391b3b2f718f0b252
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-1997,
5 * Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6 * Copyright (C) Paul Ashton 1997,
7 * Copyright (C) Jeremy Allison 2001, 2006.
8 * Copyright (C) Rafal Szczesniak 2002,
9 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002,
10 * Copyright (C) Simo Sorce 2003.
11 * Copyright (C) Gerald (Jerry) Carter 2005.
12 * Copyright (C) Volker Lendecke 2005.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, see <http://www.gnu.org/licenses/>.
28 /* This is the implementation of the lsa server code. */
30 #include "includes.h"
32 #undef DBGC_CLASS
33 #define DBGC_CLASS DBGC_RPC_SRV
35 extern PRIVS privs[];
37 struct lsa_info {
38 DOM_SID sid;
39 uint32 access;
42 const struct generic_mapping lsa_generic_mapping = {
43 POLICY_READ,
44 POLICY_WRITE,
45 POLICY_EXECUTE,
46 POLICY_ALL_ACCESS
49 /*******************************************************************
50 inits a structure.
51 ********************************************************************/
53 static void init_lsa_StringLarge(struct lsa_StringLarge *name, const char *s)
55 name->string = s;
59 /*******************************************************************
60 Function to free the per handle data.
61 ********************************************************************/
63 static void free_lsa_info(void *ptr)
65 struct lsa_info *lsa = (struct lsa_info *)ptr;
67 SAFE_FREE(lsa);
70 /***************************************************************************
71 initialize a lsa_DomainInfo structure.
72 ***************************************************************************/
74 static void init_dom_query_3(struct lsa_DomainInfo *r,
75 const char *name,
76 DOM_SID *sid)
78 init_lsa_StringLarge(&r->name, name);
79 r->sid = sid;
82 /***************************************************************************
83 initialize a lsa_DomainInfo structure.
84 ***************************************************************************/
86 static void init_dom_query_5(struct lsa_DomainInfo *r,
87 const char *name,
88 DOM_SID *sid)
90 init_lsa_StringLarge(&r->name, name);
91 r->sid = sid;
94 /***************************************************************************
95 init_dom_ref - adds a domain if it's not already in, returns the index.
96 ***************************************************************************/
98 static int init_dom_ref(DOM_R_REF *ref, const char *dom_name, DOM_SID *dom_sid)
100 int num = 0;
102 if (dom_name != NULL) {
103 for (num = 0; num < ref->num_ref_doms_1; num++) {
104 if (sid_equal(dom_sid, &ref->ref_dom[num].ref_dom.sid))
105 return num;
107 } else {
108 num = ref->num_ref_doms_1;
111 if (num >= MAX_REF_DOMAINS) {
112 /* index not found, already at maximum domain limit */
113 return -1;
116 ref->num_ref_doms_1 = num+1;
117 ref->ptr_ref_dom = 1;
118 ref->max_entries = MAX_REF_DOMAINS;
119 ref->num_ref_doms_2 = num+1;
121 ref->hdr_ref_dom[num].ptr_dom_sid = 1; /* dom sid cannot be NULL. */
123 init_unistr2(&ref->ref_dom[num].uni_dom_name, dom_name, UNI_FLAGS_NONE);
124 init_uni_hdr(&ref->hdr_ref_dom[num].hdr_dom_name, &ref->ref_dom[num].uni_dom_name);
126 init_dom_sid2(&ref->ref_dom[num].ref_dom, dom_sid );
128 return num;
131 /***************************************************************************
132 lookup_lsa_rids. Must be called as root for lookup_name to work.
133 ***************************************************************************/
135 static NTSTATUS lookup_lsa_rids(TALLOC_CTX *mem_ctx,
136 DOM_R_REF *ref,
137 DOM_RID *prid,
138 uint32 num_entries,
139 const UNISTR2 *name,
140 int flags,
141 uint32 *pmapped_count)
143 uint32 mapped_count, i;
145 SMB_ASSERT(num_entries <= MAX_LOOKUP_SIDS);
147 mapped_count = 0;
148 *pmapped_count = 0;
150 for (i = 0; i < num_entries; i++) {
151 DOM_SID sid;
152 uint32 rid;
153 int dom_idx;
154 char *full_name;
155 const char *domain;
156 enum lsa_SidType type = SID_NAME_UNKNOWN;
158 /* Split name into domain and user component */
160 full_name = rpcstr_pull_unistr2_talloc(mem_ctx, &name[i]);
161 if (full_name == NULL) {
162 DEBUG(0, ("pull_ucs2_talloc failed\n"));
163 return NT_STATUS_NO_MEMORY;
166 DEBUG(5, ("lookup_lsa_rids: looking up name %s\n", full_name));
168 /* We can ignore the result of lookup_name, it will not touch
169 "type" if it's not successful */
171 lookup_name(mem_ctx, full_name, flags, &domain, NULL,
172 &sid, &type);
174 switch (type) {
175 case SID_NAME_USER:
176 case SID_NAME_DOM_GRP:
177 case SID_NAME_DOMAIN:
178 case SID_NAME_ALIAS:
179 case SID_NAME_WKN_GRP:
180 DEBUG(5, ("init_lsa_rids: %s found\n", full_name));
181 /* Leave these unchanged */
182 break;
183 default:
184 /* Don't hand out anything but the list above */
185 DEBUG(5, ("init_lsa_rids: %s not found\n", full_name));
186 type = SID_NAME_UNKNOWN;
187 break;
190 rid = 0;
191 dom_idx = -1;
193 if (type != SID_NAME_UNKNOWN) {
194 sid_split_rid(&sid, &rid);
195 dom_idx = init_dom_ref(ref, domain, &sid);
196 mapped_count++;
199 init_dom_rid(&prid[i], rid, type, dom_idx);
202 *pmapped_count = mapped_count;
203 return NT_STATUS_OK;
206 /***************************************************************************
207 lookup_lsa_sids. Must be called as root for lookup_name to work.
208 ***************************************************************************/
210 static NTSTATUS lookup_lsa_sids(TALLOC_CTX *mem_ctx,
211 DOM_R_REF *ref,
212 LSA_TRANSLATED_SID3 *trans_sids,
213 uint32 num_entries,
214 const UNISTR2 *name,
215 int flags,
216 uint32 *pmapped_count)
218 uint32 mapped_count, i;
220 SMB_ASSERT(num_entries <= MAX_LOOKUP_SIDS);
222 mapped_count = 0;
223 *pmapped_count = 0;
225 for (i = 0; i < num_entries; i++) {
226 DOM_SID sid;
227 uint32 rid;
228 int dom_idx;
229 char *full_name;
230 const char *domain;
231 enum lsa_SidType type = SID_NAME_UNKNOWN;
233 /* Split name into domain and user component */
235 full_name = rpcstr_pull_unistr2_talloc(mem_ctx, &name[i]);
236 if (full_name == NULL) {
237 DEBUG(0, ("pull_ucs2_talloc failed\n"));
238 return NT_STATUS_NO_MEMORY;
241 DEBUG(5, ("init_lsa_sids: looking up name %s\n", full_name));
243 /* We can ignore the result of lookup_name, it will not touch
244 "type" if it's not successful */
246 lookup_name(mem_ctx, full_name, flags, &domain, NULL,
247 &sid, &type);
249 switch (type) {
250 case SID_NAME_USER:
251 case SID_NAME_DOM_GRP:
252 case SID_NAME_DOMAIN:
253 case SID_NAME_ALIAS:
254 case SID_NAME_WKN_GRP:
255 DEBUG(5, ("init_lsa_sids: %s found\n", full_name));
256 /* Leave these unchanged */
257 break;
258 default:
259 /* Don't hand out anything but the list above */
260 DEBUG(5, ("init_lsa_sids: %s not found\n", full_name));
261 type = SID_NAME_UNKNOWN;
262 break;
265 rid = 0;
266 dom_idx = -1;
268 if (type != SID_NAME_UNKNOWN) {
269 DOM_SID domain_sid;
270 sid_copy(&domain_sid, &sid);
271 sid_split_rid(&domain_sid, &rid);
272 dom_idx = init_dom_ref(ref, domain, &domain_sid);
273 mapped_count++;
276 /* Initialize the LSA_TRANSLATED_SID3 return. */
277 trans_sids[i].sid_type = type;
278 trans_sids[i].sid2 = TALLOC_P(mem_ctx, DOM_SID2);
279 if (trans_sids[i].sid2 == NULL) {
280 return NT_STATUS_NO_MEMORY;
282 init_dom_sid2(trans_sids[i].sid2, &sid);
283 trans_sids[i].sid_idx = dom_idx;
286 *pmapped_count = mapped_count;
287 return NT_STATUS_OK;
290 /***************************************************************************
291 init_reply_lookup_names
292 ***************************************************************************/
294 static void init_reply_lookup_names(LSA_R_LOOKUP_NAMES *r_l,
295 DOM_R_REF *ref, uint32 num_entries,
296 DOM_RID *rid, uint32 mapped_count)
298 r_l->ptr_dom_ref = 1;
299 r_l->dom_ref = ref;
301 r_l->num_entries = num_entries;
302 r_l->ptr_entries = 1;
303 r_l->num_entries2 = num_entries;
304 r_l->dom_rid = rid;
306 r_l->mapped_count = mapped_count;
309 /***************************************************************************
310 init_reply_lookup_names2
311 ***************************************************************************/
313 static void init_reply_lookup_names2(LSA_R_LOOKUP_NAMES2 *r_l,
314 DOM_R_REF *ref, uint32 num_entries,
315 DOM_RID2 *rid, uint32 mapped_count)
317 r_l->ptr_dom_ref = 1;
318 r_l->dom_ref = ref;
320 r_l->num_entries = num_entries;
321 r_l->ptr_entries = 1;
322 r_l->num_entries2 = num_entries;
323 r_l->dom_rid = rid;
325 r_l->mapped_count = mapped_count;
328 /***************************************************************************
329 init_reply_lookup_names3
330 ***************************************************************************/
332 static void init_reply_lookup_names3(LSA_R_LOOKUP_NAMES3 *r_l,
333 DOM_R_REF *ref, uint32 num_entries,
334 LSA_TRANSLATED_SID3 *trans_sids, uint32 mapped_count)
336 r_l->ptr_dom_ref = 1;
337 r_l->dom_ref = ref;
339 r_l->num_entries = num_entries;
340 r_l->ptr_entries = 1;
341 r_l->num_entries2 = num_entries;
342 r_l->trans_sids = trans_sids;
344 r_l->mapped_count = mapped_count;
347 /***************************************************************************
348 init_reply_lookup_names4
349 ***************************************************************************/
351 static void init_reply_lookup_names4(LSA_R_LOOKUP_NAMES4 *r_l,
352 DOM_R_REF *ref, uint32 num_entries,
353 LSA_TRANSLATED_SID3 *trans_sids, uint32 mapped_count)
355 r_l->ptr_dom_ref = 1;
356 r_l->dom_ref = ref;
358 r_l->num_entries = num_entries;
359 r_l->ptr_entries = 1;
360 r_l->num_entries2 = num_entries;
361 r_l->trans_sids = trans_sids;
363 r_l->mapped_count = mapped_count;
366 /***************************************************************************
367 Init_reply_lookup_sids.
368 ***************************************************************************/
370 static void init_reply_lookup_sids2(LSA_R_LOOKUP_SIDS2 *r_l,
371 DOM_R_REF *ref,
372 uint32 mapped_count)
374 r_l->ptr_dom_ref = ref ? 1 : 0;
375 r_l->dom_ref = ref;
376 r_l->mapped_count = mapped_count;
379 /***************************************************************************
380 Init_reply_lookup_sids.
381 ***************************************************************************/
383 static void init_reply_lookup_sids3(LSA_R_LOOKUP_SIDS3 *r_l,
384 DOM_R_REF *ref,
385 uint32 mapped_count)
387 r_l->ptr_dom_ref = ref ? 1 : 0;
388 r_l->dom_ref = ref;
389 r_l->mapped_count = mapped_count;
392 /***************************************************************************
393 Init_reply_lookup_sids.
394 ***************************************************************************/
396 static NTSTATUS init_reply_lookup_sids(TALLOC_CTX *mem_ctx,
397 LSA_R_LOOKUP_SIDS *r_l,
398 DOM_R_REF *ref,
399 LSA_TRANS_NAME_ENUM2 *names,
400 uint32 mapped_count)
402 LSA_TRANS_NAME_ENUM *oldnames = &r_l->names;
404 oldnames->num_entries = names->num_entries;
405 oldnames->ptr_trans_names = names->ptr_trans_names;
406 oldnames->num_entries2 = names->num_entries2;
407 oldnames->uni_name = names->uni_name;
409 if (names->num_entries) {
410 int i;
412 oldnames->name = TALLOC_ARRAY(mem_ctx, LSA_TRANS_NAME, names->num_entries);
414 if (!oldnames->name) {
415 return NT_STATUS_NO_MEMORY;
417 for (i = 0; i < names->num_entries; i++) {
418 oldnames->name[i].sid_name_use = names->name[i].sid_name_use;
419 oldnames->name[i].hdr_name = names->name[i].hdr_name;
420 oldnames->name[i].domain_idx = names->name[i].domain_idx;
424 r_l->ptr_dom_ref = ref ? 1 : 0;
425 r_l->dom_ref = ref;
426 r_l->mapped_count = mapped_count;
427 return NT_STATUS_OK;
430 static NTSTATUS lsa_get_generic_sd(TALLOC_CTX *mem_ctx, SEC_DESC **sd, size_t *sd_size)
432 DOM_SID local_adm_sid;
433 DOM_SID adm_sid;
435 SEC_ACE ace[3];
436 SEC_ACCESS mask;
438 SEC_ACL *psa = NULL;
440 init_sec_access(&mask, POLICY_EXECUTE);
441 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
443 sid_copy(&adm_sid, get_global_sam_sid());
444 sid_append_rid(&adm_sid, DOMAIN_GROUP_RID_ADMINS);
445 init_sec_access(&mask, POLICY_ALL_ACCESS);
446 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
448 sid_copy(&local_adm_sid, &global_sid_Builtin);
449 sid_append_rid(&local_adm_sid, BUILTIN_ALIAS_RID_ADMINS);
450 init_sec_access(&mask, POLICY_ALL_ACCESS);
451 init_sec_ace(&ace[2], &local_adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
453 if((psa = make_sec_acl(mem_ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
454 return NT_STATUS_NO_MEMORY;
456 if((*sd = make_sec_desc(mem_ctx, SECURITY_DESCRIPTOR_REVISION_1,
457 SEC_DESC_SELF_RELATIVE, &adm_sid, NULL, NULL,
458 psa, sd_size)) == NULL)
459 return NT_STATUS_NO_MEMORY;
461 return NT_STATUS_OK;
464 #if 0 /* AD DC work in ongoing in Samba 4 */
466 /***************************************************************************
467 Init_dns_dom_info.
468 ***************************************************************************/
470 static void init_dns_dom_info(LSA_DNS_DOM_INFO *r_l, const char *nb_name,
471 const char *dns_name, const char *forest_name,
472 struct GUID *dom_guid, DOM_SID *dom_sid)
474 if (nb_name && *nb_name) {
475 init_unistr2(&r_l->uni_nb_dom_name, nb_name, UNI_FLAGS_NONE);
476 init_uni_hdr(&r_l->hdr_nb_dom_name, &r_l->uni_nb_dom_name);
477 r_l->hdr_nb_dom_name.uni_max_len += 2;
478 r_l->uni_nb_dom_name.uni_max_len += 1;
481 if (dns_name && *dns_name) {
482 init_unistr2(&r_l->uni_dns_dom_name, dns_name, UNI_FLAGS_NONE);
483 init_uni_hdr(&r_l->hdr_dns_dom_name, &r_l->uni_dns_dom_name);
484 r_l->hdr_dns_dom_name.uni_max_len += 2;
485 r_l->uni_dns_dom_name.uni_max_len += 1;
488 if (forest_name && *forest_name) {
489 init_unistr2(&r_l->uni_forest_name, forest_name, UNI_FLAGS_NONE);
490 init_uni_hdr(&r_l->hdr_forest_name, &r_l->uni_forest_name);
491 r_l->hdr_forest_name.uni_max_len += 2;
492 r_l->uni_forest_name.uni_max_len += 1;
495 /* how do we init the guid ? probably should write an init fn */
496 if (dom_guid) {
497 memcpy(&r_l->dom_guid, dom_guid, sizeof(struct GUID));
500 if (dom_sid) {
501 r_l->ptr_dom_sid = 1;
502 init_dom_sid2(&r_l->dom_sid, dom_sid);
505 #endif /* AD DC work in ongoing in Samba 4 */
508 /***************************************************************************
509 _lsa_OpenPolicy2
510 ***************************************************************************/
512 NTSTATUS _lsa_OpenPolicy2(pipes_struct *p,
513 struct lsa_OpenPolicy2 *r)
515 struct lsa_info *info;
516 SEC_DESC *psd = NULL;
517 size_t sd_size;
518 uint32 des_access = r->in.access_mask;
519 uint32 acc_granted;
520 NTSTATUS status;
523 /* map the generic bits to the lsa policy ones */
524 se_map_generic(&des_access, &lsa_generic_mapping);
526 /* get the generic lsa policy SD until we store it */
527 lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
529 if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
530 if (p->pipe_user.ut.uid != sec_initial_uid()) {
531 return status;
533 DEBUG(4,("ACCESS should be DENIED (granted: %#010x; required: %#010x)\n",
534 acc_granted, des_access));
535 DEBUGADD(4,("but overwritten by euid == 0\n"));
538 /* This is needed for lsa_open_account and rpcclient .... :-) */
540 if (p->pipe_user.ut.uid == sec_initial_uid())
541 acc_granted = POLICY_ALL_ACCESS;
543 /* associate the domain SID with the (unique) handle. */
544 if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
545 return NT_STATUS_NO_MEMORY;
547 ZERO_STRUCTP(info);
548 sid_copy(&info->sid,get_global_sam_sid());
549 info->access = acc_granted;
551 /* set up the LSA QUERY INFO response */
552 if (!create_policy_hnd(p, r->out.handle, free_lsa_info, (void *)info))
553 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
555 return NT_STATUS_OK;
558 /***************************************************************************
559 _lsa_OpenPolicy
560 ***************************************************************************/
562 NTSTATUS _lsa_OpenPolicy(pipes_struct *p,
563 struct lsa_OpenPolicy *r)
565 struct lsa_info *info;
566 SEC_DESC *psd = NULL;
567 size_t sd_size;
568 uint32 des_access= r->in.access_mask;
569 uint32 acc_granted;
570 NTSTATUS status;
573 /* map the generic bits to the lsa policy ones */
574 se_map_generic(&des_access, &lsa_generic_mapping);
576 /* get the generic lsa policy SD until we store it */
577 lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
579 if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
580 if (geteuid() != 0) {
581 return status;
583 DEBUG(4,("ACCESS should be DENIED (granted: %#010x; required: %#010x)\n",
584 acc_granted, des_access));
585 DEBUGADD(4,("but overwritten by euid == 0\n"));
586 acc_granted = des_access;
589 /* associate the domain SID with the (unique) handle. */
590 if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
591 return NT_STATUS_NO_MEMORY;
593 ZERO_STRUCTP(info);
594 sid_copy(&info->sid,get_global_sam_sid());
595 info->access = acc_granted;
597 /* set up the LSA QUERY INFO response */
598 if (!create_policy_hnd(p, r->out.handle, free_lsa_info, (void *)info))
599 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
601 return NT_STATUS_OK;
604 /***************************************************************************
605 _lsa_enum_trust_dom - this needs fixing to do more than return NULL ! JRA.
606 ufff, done :) mimir
607 ***************************************************************************/
609 NTSTATUS _lsa_enum_trust_dom(pipes_struct *p, LSA_Q_ENUM_TRUST_DOM *q_u,
610 LSA_R_ENUM_TRUST_DOM *r_u)
612 struct lsa_info *info;
613 uint32 next_idx;
614 struct trustdom_info **domains;
617 * preferred length is set to 5 as a "our" preferred length
618 * nt sets this parameter to 2
619 * update (20.08.2002): it's not preferred length, but preferred size!
620 * it needs further investigation how to optimally choose this value
622 uint32 max_num_domains =
623 q_u->preferred_len < 5 ? q_u->preferred_len : 10;
624 uint32 num_domains;
625 NTSTATUS nt_status;
626 uint32 num_thistime;
628 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
629 return NT_STATUS_INVALID_HANDLE;
631 /* check if the user have enough rights */
632 if (!(info->access & POLICY_VIEW_LOCAL_INFORMATION))
633 return NT_STATUS_ACCESS_DENIED;
635 nt_status = pdb_enum_trusteddoms(p->mem_ctx, &num_domains, &domains);
637 if (!NT_STATUS_IS_OK(nt_status)) {
638 return nt_status;
641 if (q_u->enum_context < num_domains) {
642 num_thistime = MIN(num_domains, max_num_domains);
644 r_u->status = STATUS_MORE_ENTRIES;
646 if (q_u->enum_context + num_thistime > num_domains) {
647 num_thistime = num_domains - q_u->enum_context;
648 r_u->status = NT_STATUS_OK;
651 next_idx = q_u->enum_context + num_thistime;
652 } else {
653 num_thistime = 0;
654 next_idx = 0xffffffff;
655 r_u->status = NT_STATUS_NO_MORE_ENTRIES;
658 /* set up the lsa_enum_trust_dom response */
660 init_r_enum_trust_dom(p->mem_ctx, r_u, next_idx,
661 num_thistime, domains+q_u->enum_context);
663 return r_u->status;
666 /***************************************************************************
667 _lsa_QueryInfoPolicy
668 ***************************************************************************/
670 NTSTATUS _lsa_QueryInfoPolicy(pipes_struct *p,
671 struct lsa_QueryInfoPolicy *r)
673 NTSTATUS status = NT_STATUS_OK;
674 struct lsa_info *handle;
675 DOM_SID domain_sid;
676 const char *name;
677 DOM_SID *sid = NULL;
678 union lsa_PolicyInformation *info = NULL;
680 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&handle))
681 return NT_STATUS_INVALID_HANDLE;
683 info = TALLOC_ZERO_P(p->mem_ctx, union lsa_PolicyInformation);
684 if (!info) {
685 return NT_STATUS_NO_MEMORY;
688 switch (r->in.level) {
689 case 0x02:
692 uint32 policy_def = LSA_AUDIT_POLICY_ALL;
694 /* check if the user have enough rights */
695 if (!(handle->access & POLICY_VIEW_AUDIT_INFORMATION)) {
696 DEBUG(10,("_lsa_QueryInfoPolicy: insufficient access rights\n"));
697 return NT_STATUS_ACCESS_DENIED;
700 /* fake info: We audit everything. ;) */
702 info->audit_events.auditing_mode = true;
703 info->audit_events.count = LSA_AUDIT_NUM_CATEGORIES;
704 info->audit_events.settings = TALLOC_ZERO_ARRAY(p->mem_ctx,
705 enum lsa_PolicyAuditPolicy,
706 info->audit_events.count);
707 if (!info->audit_events.settings) {
708 return NT_STATUS_NO_MEMORY;
711 info->audit_events.settings[LSA_AUDIT_CATEGORY_ACCOUNT_MANAGEMENT] = policy_def;
712 info->audit_events.settings[LSA_AUDIT_CATEGORY_FILE_AND_OBJECT_ACCESS] = policy_def;
713 info->audit_events.settings[LSA_AUDIT_CATEGORY_LOGON] = policy_def;
714 info->audit_events.settings[LSA_AUDIT_CATEGORY_PROCCESS_TRACKING] = policy_def;
715 info->audit_events.settings[LSA_AUDIT_CATEGORY_SECURITY_POLICY_CHANGES] = policy_def;
716 info->audit_events.settings[LSA_AUDIT_CATEGORY_SYSTEM] = policy_def;
717 info->audit_events.settings[LSA_AUDIT_CATEGORY_USE_OF_USER_RIGHTS] = policy_def;
719 break;
721 case 0x03:
722 /* check if the user have enough rights */
723 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
724 return NT_STATUS_ACCESS_DENIED;
726 /* Request PolicyPrimaryDomainInformation. */
727 switch (lp_server_role()) {
728 case ROLE_DOMAIN_PDC:
729 case ROLE_DOMAIN_BDC:
730 name = get_global_sam_name();
731 sid = get_global_sam_sid();
732 break;
733 case ROLE_DOMAIN_MEMBER:
734 name = lp_workgroup();
735 /* We need to return the Domain SID here. */
736 if (secrets_fetch_domain_sid(lp_workgroup(), &domain_sid))
737 sid = &domain_sid;
738 else
739 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
740 break;
741 case ROLE_STANDALONE:
742 name = lp_workgroup();
743 sid = NULL;
744 break;
745 default:
746 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
748 init_dom_query_3(&info->domain, name, sid);
749 break;
750 case 0x05:
751 /* check if the user have enough rights */
752 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
753 return NT_STATUS_ACCESS_DENIED;
755 /* Request PolicyAccountDomainInformation. */
756 name = get_global_sam_name();
757 sid = get_global_sam_sid();
759 init_dom_query_5(&info->account_domain, name, sid);
760 break;
761 case 0x06:
762 /* check if the user have enough rights */
763 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
764 return NT_STATUS_ACCESS_DENIED;
766 switch (lp_server_role()) {
767 case ROLE_DOMAIN_BDC:
769 * only a BDC is a backup controller
770 * of the domain, it controls.
772 info->role.role = 2;
773 break;
774 default:
776 * any other role is a primary
777 * of the domain, it controls.
779 info->role.role = 3;
780 break;
782 break;
783 default:
784 DEBUG(0,("_lsa_QueryInfoPolicy: unknown info level in Lsa Query: %d\n",
785 r->in.level));
786 status = NT_STATUS_INVALID_INFO_CLASS;
787 break;
790 *r->out.info = info;
792 return status;
795 /***************************************************************************
796 _lsa_lookup_sids_internal
797 ***************************************************************************/
799 static NTSTATUS _lsa_lookup_sids_internal(pipes_struct *p,
800 uint16 level, /* input */
801 int num_sids, /* input */
802 const DOM_SID2 *sid, /* input */
803 DOM_R_REF **pp_ref, /* output */
804 LSA_TRANS_NAME_ENUM2 *names, /* input/output */
805 uint32 *pp_mapped_count)
807 NTSTATUS status;
808 int i;
809 const DOM_SID **sids = NULL;
810 DOM_R_REF *ref = NULL;
811 uint32 mapped_count = 0;
812 struct lsa_dom_info *dom_infos = NULL;
813 struct lsa_name_info *name_infos = NULL;
815 *pp_mapped_count = 0;
816 *pp_ref = NULL;
817 ZERO_STRUCTP(names);
819 if (num_sids == 0) {
820 return NT_STATUS_OK;
823 sids = TALLOC_ARRAY(p->mem_ctx, const DOM_SID *, num_sids);
824 ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
826 if (sids == NULL || ref == NULL) {
827 return NT_STATUS_NO_MEMORY;
830 for (i=0; i<num_sids; i++) {
831 sids[i] = &sid[i].sid;
834 status = lookup_sids(p->mem_ctx, num_sids, sids, level,
835 &dom_infos, &name_infos);
837 if (!NT_STATUS_IS_OK(status)) {
838 return status;
841 names->name = TALLOC_ARRAY(p->mem_ctx, LSA_TRANS_NAME2, num_sids);
842 names->uni_name = TALLOC_ARRAY(p->mem_ctx, UNISTR2, num_sids);
843 if ((names->name == NULL) || (names->uni_name == NULL)) {
844 return NT_STATUS_NO_MEMORY;
847 for (i=0; i<MAX_REF_DOMAINS; i++) {
849 if (!dom_infos[i].valid) {
850 break;
853 if (init_dom_ref(ref, dom_infos[i].name,
854 &dom_infos[i].sid) != i) {
855 DEBUG(0, ("Domain %s mentioned twice??\n",
856 dom_infos[i].name));
857 return NT_STATUS_INTERNAL_ERROR;
861 for (i=0; i<num_sids; i++) {
862 struct lsa_name_info *name = &name_infos[i];
864 if (name->type == SID_NAME_UNKNOWN) {
865 fstring tmp;
866 name->dom_idx = -1;
867 /* Unknown sids should return the string
868 * representation of the SID. Windows 2003 behaves
869 * rather erratic here, in many cases it returns the
870 * RID as 8 bytes hex, in others it returns the full
871 * SID. We (Jerry/VL) could not figure out which the
872 * hard cases are, so leave it with the SID. */
873 name->name = talloc_asprintf(p->mem_ctx, "%s",
874 sid_to_fstring(tmp,
875 sids[i]));
876 if (name->name == NULL) {
877 return NT_STATUS_NO_MEMORY;
879 } else {
880 mapped_count += 1;
882 init_lsa_trans_name2(&names->name[i], &names->uni_name[i],
883 name->type, name->name, name->dom_idx);
886 names->num_entries = num_sids;
887 names->ptr_trans_names = 1;
888 names->num_entries2 = num_sids;
890 status = NT_STATUS_NONE_MAPPED;
891 if (mapped_count > 0) {
892 status = (mapped_count < num_sids) ?
893 STATUS_SOME_UNMAPPED : NT_STATUS_OK;
896 DEBUG(10, ("num_sids %d, mapped_count %d, status %s\n",
897 num_sids, mapped_count, nt_errstr(status)));
899 *pp_mapped_count = mapped_count;
900 *pp_ref = ref;
902 return status;
905 /***************************************************************************
906 _lsa_lookup_sids
907 ***************************************************************************/
909 NTSTATUS _lsa_lookup_sids(pipes_struct *p,
910 LSA_Q_LOOKUP_SIDS *q_u,
911 LSA_R_LOOKUP_SIDS *r_u)
913 struct lsa_info *handle;
914 int num_sids = q_u->sids.num_entries;
915 uint32 mapped_count = 0;
916 DOM_R_REF *ref = NULL;
917 LSA_TRANS_NAME_ENUM2 names;
918 NTSTATUS status;
920 if ((q_u->level < 1) || (q_u->level > 6)) {
921 return NT_STATUS_INVALID_PARAMETER;
924 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
925 return NT_STATUS_INVALID_HANDLE;
928 /* check if the user has enough rights */
929 if (!(handle->access & POLICY_LOOKUP_NAMES)) {
930 return NT_STATUS_ACCESS_DENIED;
933 if (num_sids > MAX_LOOKUP_SIDS) {
934 DEBUG(5,("_lsa_lookup_sids: limit of %d exceeded, requested %d\n",
935 MAX_LOOKUP_SIDS, num_sids));
936 return NT_STATUS_NONE_MAPPED;
939 r_u->status = _lsa_lookup_sids_internal(p,
940 q_u->level,
941 num_sids,
942 q_u->sids.sid,
943 &ref,
944 &names,
945 &mapped_count);
947 /* Convert from LSA_TRANS_NAME_ENUM2 to LSA_TRANS_NAME_ENUM */
949 status = init_reply_lookup_sids(p->mem_ctx, r_u, ref, &names, mapped_count);
950 if (!NT_STATUS_IS_OK(status)) {
951 return status;
953 return r_u->status;
956 /***************************************************************************
957 _lsa_lookup_sids2
958 ***************************************************************************/
960 NTSTATUS _lsa_lookup_sids2(pipes_struct *p,
961 LSA_Q_LOOKUP_SIDS2 *q_u,
962 LSA_R_LOOKUP_SIDS2 *r_u)
964 struct lsa_info *handle;
965 int num_sids = q_u->sids.num_entries;
966 uint32 mapped_count = 0;
967 DOM_R_REF *ref = NULL;
969 if ((q_u->level < 1) || (q_u->level > 6)) {
970 return NT_STATUS_INVALID_PARAMETER;
973 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
974 return NT_STATUS_INVALID_HANDLE;
977 /* check if the user have enough rights */
978 if (!(handle->access & POLICY_LOOKUP_NAMES)) {
979 return NT_STATUS_ACCESS_DENIED;
982 if (num_sids > MAX_LOOKUP_SIDS) {
983 DEBUG(5,("_lsa_lookup_sids2: limit of %d exceeded, requested %d\n",
984 MAX_LOOKUP_SIDS, num_sids));
985 return NT_STATUS_NONE_MAPPED;
988 r_u->status = _lsa_lookup_sids_internal(p,
989 q_u->level,
990 num_sids,
991 q_u->sids.sid,
992 &ref,
993 &r_u->names,
994 &mapped_count);
996 init_reply_lookup_sids2(r_u, ref, mapped_count);
997 return r_u->status;
1000 /***************************************************************************
1001 _lsa_lookup_sida3
1002 ***************************************************************************/
1004 NTSTATUS _lsa_lookup_sids3(pipes_struct *p,
1005 LSA_Q_LOOKUP_SIDS3 *q_u,
1006 LSA_R_LOOKUP_SIDS3 *r_u)
1008 int num_sids = q_u->sids.num_entries;
1009 uint32 mapped_count = 0;
1010 DOM_R_REF *ref = NULL;
1012 if ((q_u->level < 1) || (q_u->level > 6)) {
1013 return NT_STATUS_INVALID_PARAMETER;
1016 /* No policy handle on this call. Restrict to crypto connections. */
1017 if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
1018 DEBUG(0,("_lsa_lookup_sids3: client %s not using schannel for netlogon\n",
1019 get_remote_machine_name() ));
1020 return NT_STATUS_INVALID_PARAMETER;
1023 if (num_sids > MAX_LOOKUP_SIDS) {
1024 DEBUG(5,("_lsa_lookup_sids3: limit of %d exceeded, requested %d\n",
1025 MAX_LOOKUP_SIDS, num_sids));
1026 return NT_STATUS_NONE_MAPPED;
1029 r_u->status = _lsa_lookup_sids_internal(p,
1030 q_u->level,
1031 num_sids,
1032 q_u->sids.sid,
1033 &ref,
1034 &r_u->names,
1035 &mapped_count);
1037 init_reply_lookup_sids3(r_u, ref, mapped_count);
1038 return r_u->status;
1041 static int lsa_lookup_level_to_flags(uint16 level)
1043 int flags;
1045 switch (level) {
1046 case 1:
1047 flags = LOOKUP_NAME_ALL;
1048 break;
1049 case 2:
1050 flags = LOOKUP_NAME_DOMAIN|LOOKUP_NAME_REMOTE|LOOKUP_NAME_ISOLATED;
1051 break;
1052 case 3:
1053 flags = LOOKUP_NAME_DOMAIN|LOOKUP_NAME_ISOLATED;
1054 break;
1055 case 4:
1056 case 5:
1057 case 6:
1058 default:
1059 flags = LOOKUP_NAME_NONE;
1060 break;
1063 return flags;
1066 /***************************************************************************
1067 lsa_reply_lookup_names
1068 ***************************************************************************/
1070 NTSTATUS _lsa_lookup_names(pipes_struct *p,LSA_Q_LOOKUP_NAMES *q_u, LSA_R_LOOKUP_NAMES *r_u)
1072 struct lsa_info *handle;
1073 UNISTR2 *names = q_u->uni_name;
1074 uint32 num_entries = q_u->num_entries;
1075 DOM_R_REF *ref;
1076 DOM_RID *rids;
1077 uint32 mapped_count = 0;
1078 int flags = 0;
1080 if (num_entries > MAX_LOOKUP_SIDS) {
1081 num_entries = MAX_LOOKUP_SIDS;
1082 DEBUG(5,("_lsa_lookup_names: truncating name lookup list to %d\n", num_entries));
1085 flags = lsa_lookup_level_to_flags(q_u->lookup_level);
1087 ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1088 if (!ref) {
1089 return NT_STATUS_NO_MEMORY;
1092 if (num_entries) {
1093 rids = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID, num_entries);
1094 if (!rids) {
1095 return NT_STATUS_NO_MEMORY;
1097 } else {
1098 rids = NULL;
1101 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1102 r_u->status = NT_STATUS_INVALID_HANDLE;
1103 goto done;
1106 /* check if the user have enough rights */
1107 if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1108 r_u->status = NT_STATUS_ACCESS_DENIED;
1109 goto done;
1112 /* set up the LSA Lookup RIDs response */
1113 become_root(); /* lookup_name can require root privs */
1114 r_u->status = lookup_lsa_rids(p->mem_ctx, ref, rids, num_entries,
1115 names, flags, &mapped_count);
1116 unbecome_root();
1118 done:
1120 if (NT_STATUS_IS_OK(r_u->status) && (num_entries != 0) ) {
1121 if (mapped_count == 0)
1122 r_u->status = NT_STATUS_NONE_MAPPED;
1123 else if (mapped_count != num_entries)
1124 r_u->status = STATUS_SOME_UNMAPPED;
1127 init_reply_lookup_names(r_u, ref, num_entries, rids, mapped_count);
1128 return r_u->status;
1131 /***************************************************************************
1132 lsa_reply_lookup_names2
1133 ***************************************************************************/
1135 NTSTATUS _lsa_lookup_names2(pipes_struct *p, LSA_Q_LOOKUP_NAMES2 *q_u, LSA_R_LOOKUP_NAMES2 *r_u)
1137 struct lsa_info *handle;
1138 UNISTR2 *names = q_u->uni_name;
1139 uint32 num_entries = q_u->num_entries;
1140 DOM_R_REF *ref;
1141 DOM_RID *rids;
1142 DOM_RID2 *rids2;
1143 int i;
1144 uint32 mapped_count = 0;
1145 int flags = 0;
1147 if (num_entries > MAX_LOOKUP_SIDS) {
1148 num_entries = MAX_LOOKUP_SIDS;
1149 DEBUG(5,("_lsa_lookup_names2: truncating name lookup list to %d\n", num_entries));
1152 flags = lsa_lookup_level_to_flags(q_u->lookup_level);
1154 ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1155 if (ref == NULL) {
1156 r_u->status = NT_STATUS_NO_MEMORY;
1157 return NT_STATUS_NO_MEMORY;
1160 if (num_entries) {
1161 rids = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID, num_entries);
1162 rids2 = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID2, num_entries);
1163 if ((rids == NULL) || (rids2 == NULL)) {
1164 r_u->status = NT_STATUS_NO_MEMORY;
1165 return NT_STATUS_NO_MEMORY;
1167 } else {
1168 rids = NULL;
1169 rids2 = NULL;
1172 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1173 r_u->status = NT_STATUS_INVALID_HANDLE;
1174 goto done;
1177 /* check if the user have enough rights */
1178 if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1179 r_u->status = NT_STATUS_ACCESS_DENIED;
1180 goto done;
1183 /* set up the LSA Lookup RIDs response */
1184 become_root(); /* lookup_name can require root privs */
1185 r_u->status = lookup_lsa_rids(p->mem_ctx, ref, rids, num_entries,
1186 names, flags, &mapped_count);
1187 unbecome_root();
1189 done:
1191 if (NT_STATUS_IS_OK(r_u->status)) {
1192 if (mapped_count == 0) {
1193 r_u->status = NT_STATUS_NONE_MAPPED;
1194 } else if (mapped_count != num_entries) {
1195 r_u->status = STATUS_SOME_UNMAPPED;
1199 /* Convert the rids array to rids2. */
1200 for (i = 0; i < num_entries; i++) {
1201 rids2[i].type = rids[i].type;
1202 rids2[i].rid = rids[i].rid;
1203 rids2[i].rid_idx = rids[i].rid_idx;
1204 rids2[i].unknown = 0;
1207 init_reply_lookup_names2(r_u, ref, num_entries, rids2, mapped_count);
1208 return r_u->status;
1211 /***************************************************************************
1212 lsa_reply_lookup_names3.
1213 ***************************************************************************/
1215 NTSTATUS _lsa_lookup_names3(pipes_struct *p, LSA_Q_LOOKUP_NAMES3 *q_u, LSA_R_LOOKUP_NAMES3 *r_u)
1217 struct lsa_info *handle;
1218 UNISTR2 *names = q_u->uni_name;
1219 uint32 num_entries = q_u->num_entries;
1220 DOM_R_REF *ref = NULL;
1221 LSA_TRANSLATED_SID3 *trans_sids = NULL;
1222 uint32 mapped_count = 0;
1223 int flags = 0;
1225 if (num_entries > MAX_LOOKUP_SIDS) {
1226 num_entries = MAX_LOOKUP_SIDS;
1227 DEBUG(5,("_lsa_lookup_names3: truncating name lookup list to %d\n", num_entries));
1230 /* Probably the lookup_level is some sort of bitmask. */
1231 if (q_u->lookup_level == 1) {
1232 flags = LOOKUP_NAME_ALL;
1235 ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1236 if (ref == NULL) {
1237 return NT_STATUS_NO_MEMORY;
1239 if (num_entries) {
1240 trans_sids = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_TRANSLATED_SID3, num_entries);
1241 if (!trans_sids) {
1242 return NT_STATUS_NO_MEMORY;
1244 } else {
1245 trans_sids = NULL;
1248 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1249 r_u->status = NT_STATUS_INVALID_HANDLE;
1250 goto done;
1253 /* check if the user have enough rights */
1254 if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1255 r_u->status = NT_STATUS_ACCESS_DENIED;
1256 goto done;
1259 /* set up the LSA Lookup SIDs response */
1260 become_root(); /* lookup_name can require root privs */
1261 r_u->status = lookup_lsa_sids(p->mem_ctx, ref, trans_sids, num_entries,
1262 names, flags, &mapped_count);
1263 unbecome_root();
1265 done:
1267 if (NT_STATUS_IS_OK(r_u->status)) {
1268 if (mapped_count == 0) {
1269 r_u->status = NT_STATUS_NONE_MAPPED;
1270 } else if (mapped_count != num_entries) {
1271 r_u->status = STATUS_SOME_UNMAPPED;
1275 init_reply_lookup_names3(r_u, ref, num_entries, trans_sids, mapped_count);
1276 return r_u->status;
1279 /***************************************************************************
1280 lsa_reply_lookup_names4.
1281 ***************************************************************************/
1283 NTSTATUS _lsa_lookup_names4(pipes_struct *p, LSA_Q_LOOKUP_NAMES4 *q_u, LSA_R_LOOKUP_NAMES4 *r_u)
1285 UNISTR2 *names = q_u->uni_name;
1286 uint32 num_entries = q_u->num_entries;
1287 DOM_R_REF *ref = NULL;
1288 LSA_TRANSLATED_SID3 *trans_sids = NULL;
1289 uint32 mapped_count = 0;
1290 int flags = 0;
1292 if (num_entries > MAX_LOOKUP_SIDS) {
1293 num_entries = MAX_LOOKUP_SIDS;
1294 DEBUG(5,("_lsa_lookup_names4: truncating name lookup list to %d\n", num_entries));
1297 /* Probably the lookup_level is some sort of bitmask. */
1298 if (q_u->lookup_level == 1) {
1299 flags = LOOKUP_NAME_ALL;
1302 /* No policy handle on this call. Restrict to crypto connections. */
1303 if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
1304 DEBUG(0,("_lsa_lookup_names4: client %s not using schannel for netlogon\n",
1305 get_remote_machine_name() ));
1306 return NT_STATUS_INVALID_PARAMETER;
1309 ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1310 if (!ref) {
1311 return NT_STATUS_NO_MEMORY;
1314 if (num_entries) {
1315 trans_sids = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_TRANSLATED_SID3, num_entries);
1316 if (!trans_sids) {
1317 return NT_STATUS_NO_MEMORY;
1319 } else {
1320 trans_sids = NULL;
1323 /* set up the LSA Lookup SIDs response */
1324 become_root(); /* lookup_name can require root privs */
1325 r_u->status = lookup_lsa_sids(p->mem_ctx, ref, trans_sids, num_entries,
1326 names, flags, &mapped_count);
1327 unbecome_root();
1329 if (NT_STATUS_IS_OK(r_u->status)) {
1330 if (mapped_count == 0) {
1331 r_u->status = NT_STATUS_NONE_MAPPED;
1332 } else if (mapped_count != num_entries) {
1333 r_u->status = STATUS_SOME_UNMAPPED;
1337 init_reply_lookup_names4(r_u, ref, num_entries, trans_sids, mapped_count);
1338 return r_u->status;
1341 /***************************************************************************
1342 _lsa_close. Also weird - needs to check if lsa handle is correct. JRA.
1343 ***************************************************************************/
1345 NTSTATUS _lsa_Close(pipes_struct *p, struct lsa_Close *r)
1347 if (!find_policy_by_hnd(p, r->in.handle, NULL)) {
1348 return NT_STATUS_INVALID_HANDLE;
1351 close_policy_hnd(p, r->in.handle);
1352 return NT_STATUS_OK;
1355 /***************************************************************************
1356 ***************************************************************************/
1358 NTSTATUS _lsa_OpenSecret(pipes_struct *p, struct lsa_OpenSecret *r)
1360 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1363 /***************************************************************************
1364 ***************************************************************************/
1366 NTSTATUS _lsa_OpenTrustedDomain(pipes_struct *p, struct lsa_OpenTrustedDomain *r)
1368 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1371 /***************************************************************************
1372 ***************************************************************************/
1374 NTSTATUS _lsa_CreateTrustedDomain(pipes_struct *p, struct lsa_CreateTrustedDomain *r)
1376 return NT_STATUS_ACCESS_DENIED;
1379 /***************************************************************************
1380 ***************************************************************************/
1382 NTSTATUS _lsa_CreateSecret(pipes_struct *p, struct lsa_CreateSecret *r)
1384 return NT_STATUS_ACCESS_DENIED;
1387 /***************************************************************************
1388 ***************************************************************************/
1390 NTSTATUS _lsa_SetSecret(pipes_struct *p, struct lsa_SetSecret *r)
1392 return NT_STATUS_ACCESS_DENIED;
1395 /***************************************************************************
1396 _lsa_DeleteObject
1397 ***************************************************************************/
1399 NTSTATUS _lsa_DeleteObject(pipes_struct *p,
1400 struct lsa_DeleteObject *r)
1402 return NT_STATUS_ACCESS_DENIED;
1405 /***************************************************************************
1406 _lsa_enum_privs.
1407 ***************************************************************************/
1409 NTSTATUS _lsa_enum_privs(pipes_struct *p, LSA_Q_ENUM_PRIVS *q_u, LSA_R_ENUM_PRIVS *r_u)
1411 struct lsa_info *handle;
1412 uint32 i;
1413 uint32 enum_context = q_u->enum_context;
1414 int num_privs = count_all_privileges();
1415 LSA_PRIV_ENTRY *entries = NULL;
1416 LUID_ATTR luid;
1418 /* remember that the enum_context starts at 0 and not 1 */
1420 if ( enum_context >= num_privs )
1421 return NT_STATUS_NO_MORE_ENTRIES;
1423 DEBUG(10,("_lsa_enum_privs: enum_context:%d total entries:%d\n",
1424 enum_context, num_privs));
1426 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1427 return NT_STATUS_INVALID_HANDLE;
1429 /* check if the user have enough rights
1430 I don't know if it's the right one. not documented. */
1432 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1433 return NT_STATUS_ACCESS_DENIED;
1435 if (num_privs) {
1436 if ( !(entries = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_PRIV_ENTRY, num_privs )) )
1437 return NT_STATUS_NO_MEMORY;
1438 } else {
1439 entries = NULL;
1442 for (i = 0; i < num_privs; i++) {
1443 if( i < enum_context) {
1444 init_unistr2(&entries[i].name, NULL, UNI_FLAGS_NONE);
1445 init_uni_hdr(&entries[i].hdr_name, &entries[i].name);
1447 entries[i].luid_low = 0;
1448 entries[i].luid_high = 0;
1449 } else {
1450 init_unistr2(&entries[i].name, privs[i].name, UNI_FLAGS_NONE);
1451 init_uni_hdr(&entries[i].hdr_name, &entries[i].name);
1453 luid = get_privilege_luid( &privs[i].se_priv );
1455 entries[i].luid_low = luid.luid.low;
1456 entries[i].luid_high = luid.luid.high;
1460 enum_context = num_privs;
1462 init_lsa_r_enum_privs(r_u, enum_context, num_privs, entries);
1464 return NT_STATUS_OK;
1467 /***************************************************************************
1468 _lsa_priv_get_dispname.
1469 ***************************************************************************/
1471 NTSTATUS _lsa_priv_get_dispname(pipes_struct *p, LSA_Q_PRIV_GET_DISPNAME *q_u, LSA_R_PRIV_GET_DISPNAME *r_u)
1473 struct lsa_info *handle;
1474 fstring name_asc;
1475 const char *description;
1477 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1478 return NT_STATUS_INVALID_HANDLE;
1480 /* check if the user have enough rights */
1483 * I don't know if it's the right one. not documented.
1485 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1486 return NT_STATUS_ACCESS_DENIED;
1488 unistr2_to_ascii(name_asc, &q_u->name, sizeof(name_asc));
1490 DEBUG(10,("_lsa_priv_get_dispname: name = %s\n", name_asc));
1492 description = get_privilege_dispname( name_asc );
1494 if ( description ) {
1495 DEBUG(10,("_lsa_priv_get_dispname: display name = %s\n", description));
1497 init_unistr2(&r_u->desc, description, UNI_FLAGS_NONE);
1498 init_uni_hdr(&r_u->hdr_desc, &r_u->desc);
1500 r_u->ptr_info = 0xdeadbeef;
1501 r_u->lang_id = q_u->lang_id;
1503 return NT_STATUS_OK;
1504 } else {
1505 DEBUG(10,("_lsa_priv_get_dispname: doesn't exist\n"));
1507 r_u->ptr_info = 0;
1509 return NT_STATUS_NO_SUCH_PRIVILEGE;
1513 /***************************************************************************
1514 _lsa_enum_accounts.
1515 ***************************************************************************/
1517 NTSTATUS _lsa_enum_accounts(pipes_struct *p, LSA_Q_ENUM_ACCOUNTS *q_u, LSA_R_ENUM_ACCOUNTS *r_u)
1519 struct lsa_info *handle;
1520 DOM_SID *sid_list;
1521 int i, j, num_entries;
1522 LSA_SID_ENUM *sids=&r_u->sids;
1523 NTSTATUS ret;
1525 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1526 return NT_STATUS_INVALID_HANDLE;
1528 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1529 return NT_STATUS_ACCESS_DENIED;
1531 sid_list = NULL;
1532 num_entries = 0;
1534 /* The only way we can currently find out all the SIDs that have been
1535 privileged is to scan all privileges */
1537 if (!NT_STATUS_IS_OK(ret = privilege_enumerate_accounts(&sid_list, &num_entries))) {
1538 return ret;
1541 if (q_u->enum_context >= num_entries)
1542 return NT_STATUS_NO_MORE_ENTRIES;
1544 if (num_entries-q_u->enum_context) {
1545 sids->ptr_sid = TALLOC_ZERO_ARRAY(p->mem_ctx, uint32, num_entries-q_u->enum_context);
1546 sids->sid = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_SID2, num_entries-q_u->enum_context);
1548 if (sids->ptr_sid==NULL || sids->sid==NULL) {
1549 SAFE_FREE(sid_list);
1550 return NT_STATUS_NO_MEMORY;
1553 for (i = q_u->enum_context, j = 0; i < num_entries; i++, j++) {
1554 init_dom_sid2(&(*sids).sid[j], &sid_list[i]);
1555 (*sids).ptr_sid[j] = 1;
1557 } else {
1558 sids->ptr_sid = NULL;
1559 sids->sid = NULL;
1562 talloc_free(sid_list);
1564 init_lsa_r_enum_accounts(r_u, num_entries);
1566 return NT_STATUS_OK;
1570 NTSTATUS _lsa_unk_get_connuser(pipes_struct *p, LSA_Q_UNK_GET_CONNUSER *q_u, LSA_R_UNK_GET_CONNUSER *r_u)
1572 const char *username, *domname;
1573 user_struct *vuser = get_valid_user_struct(p->vuid);
1575 if (vuser == NULL)
1576 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1578 if (vuser->guest) {
1580 * I'm 99% sure this is not the right place to do this,
1581 * global_sid_Anonymous should probably be put into the token
1582 * instead of the guest id -- vl
1584 if (!lookup_sid(p->mem_ctx, &global_sid_Anonymous,
1585 &domname, &username, NULL)) {
1586 return NT_STATUS_NO_MEMORY;
1588 } else {
1589 username = vuser->user.smb_name;
1590 domname = vuser->user.domain;
1593 r_u->ptr_user_name = 1;
1594 init_unistr2(&r_u->uni2_user_name, username, UNI_STR_TERMINATE);
1595 init_uni_hdr(&r_u->hdr_user_name, &r_u->uni2_user_name);
1597 r_u->unk1 = 1;
1599 r_u->ptr_dom_name = 1;
1600 init_unistr2(&r_u->uni2_dom_name, domname, UNI_STR_TERMINATE);
1601 init_uni_hdr(&r_u->hdr_dom_name, &r_u->uni2_dom_name);
1603 r_u->status = NT_STATUS_OK;
1605 return r_u->status;
1608 /***************************************************************************
1609 _lsa_CreateAccount
1610 ***************************************************************************/
1612 NTSTATUS _lsa_CreateAccount(pipes_struct *p,
1613 struct lsa_CreateAccount *r)
1615 struct lsa_info *handle;
1616 struct lsa_info *info;
1618 /* find the connection policy handle. */
1619 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&handle))
1620 return NT_STATUS_INVALID_HANDLE;
1622 /* check if the user have enough rights */
1625 * I don't know if it's the right one. not documented.
1626 * but guessed with rpcclient.
1628 if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1629 return NT_STATUS_ACCESS_DENIED;
1631 /* check to see if the pipe_user is a Domain Admin since
1632 account_pol.tdb was already opened as root, this is all we have */
1634 if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1635 return NT_STATUS_ACCESS_DENIED;
1637 if ( is_privileged_sid( r->in.sid ) )
1638 return NT_STATUS_OBJECT_NAME_COLLISION;
1640 /* associate the user/group SID with the (unique) handle. */
1642 if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1643 return NT_STATUS_NO_MEMORY;
1645 ZERO_STRUCTP(info);
1646 info->sid = *r->in.sid;
1647 info->access = r->in.access_mask;
1649 /* get a (unique) handle. open a policy on it. */
1650 if (!create_policy_hnd(p, r->out.acct_handle, free_lsa_info, (void *)info))
1651 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1653 return privilege_create_account( &info->sid );
1657 /***************************************************************************
1658 _lsa_OpenAccount
1659 ***************************************************************************/
1661 NTSTATUS _lsa_OpenAccount(pipes_struct *p,
1662 struct lsa_OpenAccount *r)
1664 struct lsa_info *handle;
1665 struct lsa_info *info;
1667 /* find the connection policy handle. */
1668 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&handle))
1669 return NT_STATUS_INVALID_HANDLE;
1671 /* check if the user have enough rights */
1674 * I don't know if it's the right one. not documented.
1675 * but guessed with rpcclient.
1677 if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1678 return NT_STATUS_ACCESS_DENIED;
1680 /* TODO: Fis the parsing routine before reenabling this check! */
1681 #if 0
1682 if (!lookup_sid(&handle->sid, dom_name, name, &type))
1683 return NT_STATUS_ACCESS_DENIED;
1684 #endif
1685 /* associate the user/group SID with the (unique) handle. */
1686 if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1687 return NT_STATUS_NO_MEMORY;
1689 ZERO_STRUCTP(info);
1690 info->sid = *r->in.sid;
1691 info->access = r->in.access_mask;
1693 /* get a (unique) handle. open a policy on it. */
1694 if (!create_policy_hnd(p, r->out.acct_handle, free_lsa_info, (void *)info))
1695 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1697 return NT_STATUS_OK;
1700 /***************************************************************************
1701 For a given SID, enumerate all the privilege this account has.
1702 ***************************************************************************/
1704 NTSTATUS _lsa_enum_privsaccount(pipes_struct *p, prs_struct *ps, LSA_Q_ENUMPRIVSACCOUNT *q_u, LSA_R_ENUMPRIVSACCOUNT *r_u)
1706 struct lsa_info *info=NULL;
1707 SE_PRIV mask;
1708 PRIVILEGE_SET privileges;
1710 /* find the connection policy handle. */
1711 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1712 return NT_STATUS_INVALID_HANDLE;
1714 if ( !get_privileges_for_sids( &mask, &info->sid, 1 ) )
1715 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1717 privilege_set_init( &privileges );
1719 if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
1721 DEBUG(10,("_lsa_enum_privsaccount: %s has %d privileges\n",
1722 sid_string_dbg(&info->sid),
1723 privileges.count));
1725 r_u->status = init_lsa_r_enum_privsaccount(ps->mem_ctx, r_u, privileges.set, privileges.count, 0);
1727 else
1728 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
1730 privilege_set_free( &privileges );
1732 return r_u->status;
1735 /***************************************************************************
1736 _lsa_GetSystemAccessAccount
1737 ***************************************************************************/
1739 NTSTATUS _lsa_GetSystemAccessAccount(pipes_struct *p,
1740 struct lsa_GetSystemAccessAccount *r)
1742 struct lsa_info *info=NULL;
1744 /* find the connection policy handle. */
1746 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&info))
1747 return NT_STATUS_INVALID_HANDLE;
1749 if (!lookup_sid(p->mem_ctx, &info->sid, NULL, NULL, NULL))
1750 return NT_STATUS_ACCESS_DENIED;
1753 0x01 -> Log on locally
1754 0x02 -> Access this computer from network
1755 0x04 -> Log on as a batch job
1756 0x10 -> Log on as a service
1758 they can be ORed together
1761 *r->out.access_mask = PR_LOG_ON_LOCALLY | PR_ACCESS_FROM_NETWORK;
1763 return NT_STATUS_OK;
1766 /***************************************************************************
1767 update the systemaccount information
1768 ***************************************************************************/
1770 NTSTATUS _lsa_SetSystemAccessAccount(pipes_struct *p,
1771 struct lsa_SetSystemAccessAccount *r)
1773 struct lsa_info *info=NULL;
1774 GROUP_MAP map;
1776 /* find the connection policy handle. */
1777 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&info))
1778 return NT_STATUS_INVALID_HANDLE;
1780 /* check to see if the pipe_user is a Domain Admin since
1781 account_pol.tdb was already opened as root, this is all we have */
1783 if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1784 return NT_STATUS_ACCESS_DENIED;
1786 if (!pdb_getgrsid(&map, info->sid))
1787 return NT_STATUS_NO_SUCH_GROUP;
1789 return pdb_update_group_mapping_entry(&map);
1792 /***************************************************************************
1793 For a given SID, add some privileges.
1794 ***************************************************************************/
1796 NTSTATUS _lsa_addprivs(pipes_struct *p, LSA_Q_ADDPRIVS *q_u, LSA_R_ADDPRIVS *r_u)
1798 struct lsa_info *info = NULL;
1799 SE_PRIV mask;
1800 PRIVILEGE_SET *set = NULL;
1802 /* find the connection policy handle. */
1803 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1804 return NT_STATUS_INVALID_HANDLE;
1806 /* check to see if the pipe_user is root or a Domain Admin since
1807 account_pol.tdb was already opened as root, this is all we have */
1809 if ( p->pipe_user.ut.uid != sec_initial_uid()
1810 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1812 return NT_STATUS_ACCESS_DENIED;
1815 set = &q_u->set;
1817 if ( !privilege_set_to_se_priv( &mask, set ) )
1818 return NT_STATUS_NO_SUCH_PRIVILEGE;
1820 if ( !grant_privilege( &info->sid, &mask ) ) {
1821 DEBUG(3,("_lsa_addprivs: grant_privilege(%s) failed!\n",
1822 sid_string_dbg(&info->sid) ));
1823 DEBUG(3,("Privilege mask:\n"));
1824 dump_se_priv( DBGC_ALL, 3, &mask );
1825 return NT_STATUS_NO_SUCH_PRIVILEGE;
1828 return NT_STATUS_OK;
1831 /***************************************************************************
1832 For a given SID, remove some privileges.
1833 ***************************************************************************/
1835 NTSTATUS _lsa_removeprivs(pipes_struct *p, LSA_Q_REMOVEPRIVS *q_u, LSA_R_REMOVEPRIVS *r_u)
1837 struct lsa_info *info = NULL;
1838 SE_PRIV mask;
1839 PRIVILEGE_SET *set = NULL;
1841 /* find the connection policy handle. */
1842 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1843 return NT_STATUS_INVALID_HANDLE;
1845 /* check to see if the pipe_user is root or a Domain Admin since
1846 account_pol.tdb was already opened as root, this is all we have */
1848 if ( p->pipe_user.ut.uid != sec_initial_uid()
1849 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1851 return NT_STATUS_ACCESS_DENIED;
1854 set = &q_u->set;
1856 if ( !privilege_set_to_se_priv( &mask, set ) )
1857 return NT_STATUS_NO_SUCH_PRIVILEGE;
1859 if ( !revoke_privilege( &info->sid, &mask ) ) {
1860 DEBUG(3,("_lsa_removeprivs: revoke_privilege(%s) failed!\n",
1861 sid_string_dbg(&info->sid) ));
1862 DEBUG(3,("Privilege mask:\n"));
1863 dump_se_priv( DBGC_ALL, 3, &mask );
1864 return NT_STATUS_NO_SUCH_PRIVILEGE;
1867 return NT_STATUS_OK;
1870 /***************************************************************************
1871 _lsa_QuerySecurity
1872 ***************************************************************************/
1874 NTSTATUS _lsa_QuerySecurity(pipes_struct *p,
1875 struct lsa_QuerySecurity *r)
1877 struct lsa_info *handle=NULL;
1878 SEC_DESC *psd = NULL;
1879 size_t sd_size;
1880 NTSTATUS status;
1882 /* find the connection policy handle. */
1883 if (!find_policy_by_hnd(p, r->in.handle, (void **)(void *)&handle))
1884 return NT_STATUS_INVALID_HANDLE;
1886 /* check if the user have enough rights */
1887 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1888 return NT_STATUS_ACCESS_DENIED;
1891 switch (r->in.sec_info) {
1892 case 1:
1893 /* SD contains only the owner */
1895 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1896 if(!NT_STATUS_IS_OK(status))
1897 return NT_STATUS_NO_MEMORY;
1900 if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1901 return NT_STATUS_NO_MEMORY;
1902 break;
1903 case 4:
1904 /* SD contains only the ACL */
1906 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1907 if(!NT_STATUS_IS_OK(status))
1908 return NT_STATUS_NO_MEMORY;
1910 if((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1911 return NT_STATUS_NO_MEMORY;
1912 break;
1913 default:
1914 return NT_STATUS_INVALID_LEVEL;
1917 return status;
1920 #if 0 /* AD DC work in ongoing in Samba 4 */
1922 /***************************************************************************
1923 ***************************************************************************/
1925 NTSTATUS _lsa_query_info2(pipes_struct *p, LSA_Q_QUERY_INFO2 *q_u, LSA_R_QUERY_INFO2 *r_u)
1927 struct lsa_info *handle;
1928 const char *nb_name;
1929 char *dns_name = NULL;
1930 char *forest_name = NULL;
1931 DOM_SID *sid = NULL;
1932 struct GUID guid;
1933 fstring dnsdomname;
1935 ZERO_STRUCT(guid);
1936 r_u->status = NT_STATUS_OK;
1938 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1939 return NT_STATUS_INVALID_HANDLE;
1941 switch (q_u->info_class) {
1942 case 0x0c:
1943 /* check if the user have enough rights */
1944 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1945 return NT_STATUS_ACCESS_DENIED;
1947 /* Request PolicyPrimaryDomainInformation. */
1948 switch (lp_server_role()) {
1949 case ROLE_DOMAIN_PDC:
1950 case ROLE_DOMAIN_BDC:
1951 nb_name = get_global_sam_name();
1952 /* ugly temp hack for these next two */
1954 /* This should be a 'netbios domain -> DNS domain' mapping */
1955 dnsdomname = get_mydnsdomname(p->mem_ctx);
1956 if (!dnsdomname || !*dnsdomname) {
1957 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1959 strlower_m(dnsdomname);
1961 dns_name = dnsdomname;
1962 forest_name = dnsdomname;
1964 sid = get_global_sam_sid();
1965 secrets_fetch_domain_guid(lp_workgroup(), &guid);
1966 break;
1967 default:
1968 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1970 init_dns_dom_info(&r_u->info.dns_dom_info, nb_name, dns_name,
1971 forest_name,&guid,sid);
1972 break;
1973 default:
1974 DEBUG(0,("_lsa_query_info2: unknown info level in Lsa Query: %d\n", q_u->info_class));
1975 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
1976 break;
1979 if (NT_STATUS_IS_OK(r_u->status)) {
1980 r_u->ptr = 0x1;
1981 r_u->info_class = q_u->info_class;
1984 return r_u->status;
1986 #endif /* AD DC work in ongoing in Samba 4 */
1988 /***************************************************************************
1989 ***************************************************************************/
1991 NTSTATUS _lsa_add_acct_rights(pipes_struct *p, LSA_Q_ADD_ACCT_RIGHTS *q_u, LSA_R_ADD_ACCT_RIGHTS *r_u)
1993 struct lsa_info *info = NULL;
1994 int i = 0;
1995 DOM_SID sid;
1996 fstring privname;
1997 UNISTR4_ARRAY *uni_privnames = q_u->rights;
2000 /* find the connection policy handle. */
2001 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2002 return NT_STATUS_INVALID_HANDLE;
2004 /* check to see if the pipe_user is a Domain Admin since
2005 account_pol.tdb was already opened as root, this is all we have */
2007 if ( p->pipe_user.ut.uid != sec_initial_uid()
2008 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
2010 return NT_STATUS_ACCESS_DENIED;
2013 /* according to an NT4 PDC, you can add privileges to SIDs even without
2014 call_lsa_create_account() first. And you can use any arbitrary SID. */
2016 sid_copy( &sid, &q_u->sid.sid );
2018 /* just a little sanity check */
2020 if ( q_u->count != uni_privnames->count ) {
2021 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
2022 return NT_STATUS_INVALID_HANDLE;
2025 for ( i=0; i<q_u->count; i++ ) {
2026 UNISTR4 *uni4_str = &uni_privnames->strings[i];
2028 /* only try to add non-null strings */
2030 if ( !uni4_str->string )
2031 continue;
2033 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
2035 if ( !grant_privilege_by_name( &sid, privname ) ) {
2036 DEBUG(2,("_lsa_add_acct_rights: Failed to add privilege [%s]\n", privname ));
2037 return NT_STATUS_NO_SUCH_PRIVILEGE;
2041 return NT_STATUS_OK;
2044 /***************************************************************************
2045 ***************************************************************************/
2047 NTSTATUS _lsa_remove_acct_rights(pipes_struct *p, LSA_Q_REMOVE_ACCT_RIGHTS *q_u, LSA_R_REMOVE_ACCT_RIGHTS *r_u)
2049 struct lsa_info *info = NULL;
2050 int i = 0;
2051 DOM_SID sid;
2052 fstring privname;
2053 UNISTR4_ARRAY *uni_privnames = q_u->rights;
2056 /* find the connection policy handle. */
2057 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2058 return NT_STATUS_INVALID_HANDLE;
2060 /* check to see if the pipe_user is a Domain Admin since
2061 account_pol.tdb was already opened as root, this is all we have */
2063 if ( p->pipe_user.ut.uid != sec_initial_uid()
2064 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
2066 return NT_STATUS_ACCESS_DENIED;
2069 sid_copy( &sid, &q_u->sid.sid );
2071 if ( q_u->removeall ) {
2072 if ( !revoke_all_privileges( &sid ) )
2073 return NT_STATUS_ACCESS_DENIED;
2075 return NT_STATUS_OK;
2078 /* just a little sanity check */
2080 if ( q_u->count != uni_privnames->count ) {
2081 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
2082 return NT_STATUS_INVALID_HANDLE;
2085 for ( i=0; i<q_u->count; i++ ) {
2086 UNISTR4 *uni4_str = &uni_privnames->strings[i];
2088 /* only try to add non-null strings */
2090 if ( !uni4_str->string )
2091 continue;
2093 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
2095 if ( !revoke_privilege_by_name( &sid, privname ) ) {
2096 DEBUG(2,("_lsa_remove_acct_rights: Failed to revoke privilege [%s]\n", privname ));
2097 return NT_STATUS_NO_SUCH_PRIVILEGE;
2101 return NT_STATUS_OK;
2105 /***************************************************************************
2106 ***************************************************************************/
2108 NTSTATUS _lsa_enum_acct_rights(pipes_struct *p, LSA_Q_ENUM_ACCT_RIGHTS *q_u, LSA_R_ENUM_ACCT_RIGHTS *r_u)
2110 struct lsa_info *info = NULL;
2111 DOM_SID sid;
2112 PRIVILEGE_SET privileges;
2113 SE_PRIV mask;
2116 /* find the connection policy handle. */
2118 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2119 return NT_STATUS_INVALID_HANDLE;
2121 /* according to an NT4 PDC, you can add privileges to SIDs even without
2122 call_lsa_create_account() first. And you can use any arbitrary SID. */
2124 sid_copy( &sid, &q_u->sid.sid );
2126 if ( !get_privileges_for_sids( &mask, &sid, 1 ) )
2127 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2129 privilege_set_init( &privileges );
2131 if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
2133 DEBUG(10,("_lsa_enum_acct_rights: %s has %d privileges\n",
2134 sid_string_dbg(&sid), privileges.count));
2136 r_u->status = init_r_enum_acct_rights( r_u, &privileges );
2138 else
2139 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
2141 privilege_set_free( &privileges );
2143 return r_u->status;
2147 /***************************************************************************
2148 ***************************************************************************/
2150 NTSTATUS _lsa_lookup_priv_value(pipes_struct *p, LSA_Q_LOOKUP_PRIV_VALUE *q_u, LSA_R_LOOKUP_PRIV_VALUE *r_u)
2152 struct lsa_info *info = NULL;
2153 fstring name;
2154 LUID_ATTR priv_luid;
2155 SE_PRIV mask;
2157 /* find the connection policy handle. */
2159 if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2160 return NT_STATUS_INVALID_HANDLE;
2162 unistr2_to_ascii(name, &q_u->privname.unistring, sizeof(name));
2164 DEBUG(10,("_lsa_lookup_priv_value: name = %s\n", name));
2166 if ( !se_priv_from_name( name, &mask ) )
2167 return NT_STATUS_NO_SUCH_PRIVILEGE;
2169 priv_luid = get_privilege_luid( &mask );
2171 r_u->luid.low = priv_luid.luid.low;
2172 r_u->luid.high = priv_luid.luid.high;
2175 return NT_STATUS_OK;
2180 * From here on the server routines are just dummy ones to make smbd link with
2181 * librpc/gen_ndr/srv_lsa.c. These routines are actually never called, we are
2182 * pulling the server stubs across one by one.
2185 NTSTATUS _lsa_Delete(pipes_struct *p, struct lsa_Delete *r)
2187 p->rng_fault_state = True;
2188 return NT_STATUS_NOT_IMPLEMENTED;
2191 NTSTATUS _lsa_EnumPrivs(pipes_struct *p, struct lsa_EnumPrivs *r)
2193 p->rng_fault_state = True;
2194 return NT_STATUS_NOT_IMPLEMENTED;
2197 NTSTATUS _lsa_SetSecObj(pipes_struct *p, struct lsa_SetSecObj *r)
2199 p->rng_fault_state = True;
2200 return NT_STATUS_NOT_IMPLEMENTED;
2203 NTSTATUS _lsa_ChangePassword(pipes_struct *p, struct lsa_ChangePassword *r)
2205 p->rng_fault_state = True;
2206 return NT_STATUS_NOT_IMPLEMENTED;
2209 NTSTATUS _lsa_SetInfoPolicy(pipes_struct *p, struct lsa_SetInfoPolicy *r)
2211 p->rng_fault_state = True;
2212 return NT_STATUS_NOT_IMPLEMENTED;
2215 NTSTATUS _lsa_ClearAuditLog(pipes_struct *p, struct lsa_ClearAuditLog *r)
2217 p->rng_fault_state = True;
2218 return NT_STATUS_NOT_IMPLEMENTED;
2221 NTSTATUS _lsa_EnumAccounts(pipes_struct *p, struct lsa_EnumAccounts *r)
2223 p->rng_fault_state = True;
2224 return NT_STATUS_NOT_IMPLEMENTED;
2227 NTSTATUS _lsa_EnumTrustDom(pipes_struct *p, struct lsa_EnumTrustDom *r)
2229 p->rng_fault_state = True;
2230 return NT_STATUS_NOT_IMPLEMENTED;
2233 NTSTATUS _lsa_LookupNames(pipes_struct *p, struct lsa_LookupNames *r)
2235 p->rng_fault_state = True;
2236 return NT_STATUS_NOT_IMPLEMENTED;
2239 NTSTATUS _lsa_LookupSids(pipes_struct *p, struct lsa_LookupSids *r)
2241 p->rng_fault_state = True;
2242 return NT_STATUS_NOT_IMPLEMENTED;
2245 NTSTATUS _lsa_EnumPrivsAccount(pipes_struct *p, struct lsa_EnumPrivsAccount *r)
2247 p->rng_fault_state = True;
2248 return NT_STATUS_NOT_IMPLEMENTED;
2251 NTSTATUS _lsa_AddPrivilegesToAccount(pipes_struct *p, struct lsa_AddPrivilegesToAccount *r)
2253 p->rng_fault_state = True;
2254 return NT_STATUS_NOT_IMPLEMENTED;
2257 NTSTATUS _lsa_RemovePrivilegesFromAccount(pipes_struct *p, struct lsa_RemovePrivilegesFromAccount *r)
2259 p->rng_fault_state = True;
2260 return NT_STATUS_NOT_IMPLEMENTED;
2263 NTSTATUS _lsa_GetQuotasForAccount(pipes_struct *p, struct lsa_GetQuotasForAccount *r)
2265 p->rng_fault_state = True;
2266 return NT_STATUS_NOT_IMPLEMENTED;
2269 NTSTATUS _lsa_SetQuotasForAccount(pipes_struct *p, struct lsa_SetQuotasForAccount *r)
2271 p->rng_fault_state = True;
2272 return NT_STATUS_NOT_IMPLEMENTED;
2275 NTSTATUS _lsa_QueryTrustedDomainInfo(pipes_struct *p, struct lsa_QueryTrustedDomainInfo *r)
2277 p->rng_fault_state = True;
2278 return NT_STATUS_NOT_IMPLEMENTED;
2281 NTSTATUS _lsa_SetInformationTrustedDomain(pipes_struct *p, struct lsa_SetInformationTrustedDomain *r)
2283 p->rng_fault_state = True;
2284 return NT_STATUS_NOT_IMPLEMENTED;
2287 NTSTATUS _lsa_QuerySecret(pipes_struct *p, struct lsa_QuerySecret *r)
2289 p->rng_fault_state = True;
2290 return NT_STATUS_NOT_IMPLEMENTED;
2293 NTSTATUS _lsa_LookupPrivValue(pipes_struct *p, struct lsa_LookupPrivValue *r)
2295 p->rng_fault_state = True;
2296 return NT_STATUS_NOT_IMPLEMENTED;
2299 NTSTATUS _lsa_LookupPrivName(pipes_struct *p, struct lsa_LookupPrivName *r)
2301 p->rng_fault_state = True;
2302 return NT_STATUS_NOT_IMPLEMENTED;
2305 NTSTATUS _lsa_LookupPrivDisplayName(pipes_struct *p, struct lsa_LookupPrivDisplayName *r)
2307 p->rng_fault_state = True;
2308 return NT_STATUS_NOT_IMPLEMENTED;
2311 NTSTATUS _lsa_EnumAccountsWithUserRight(pipes_struct *p, struct lsa_EnumAccountsWithUserRight *r)
2313 p->rng_fault_state = True;
2314 return NT_STATUS_NOT_IMPLEMENTED;
2317 NTSTATUS _lsa_EnumAccountRights(pipes_struct *p, struct lsa_EnumAccountRights *r)
2319 p->rng_fault_state = True;
2320 return NT_STATUS_NOT_IMPLEMENTED;
2323 NTSTATUS _lsa_AddAccountRights(pipes_struct *p, struct lsa_AddAccountRights *r)
2325 p->rng_fault_state = True;
2326 return NT_STATUS_NOT_IMPLEMENTED;
2329 NTSTATUS _lsa_RemoveAccountRights(pipes_struct *p, struct lsa_RemoveAccountRights *r)
2331 p->rng_fault_state = True;
2332 return NT_STATUS_NOT_IMPLEMENTED;
2335 NTSTATUS _lsa_QueryTrustedDomainInfoBySid(pipes_struct *p, struct lsa_QueryTrustedDomainInfoBySid *r)
2337 p->rng_fault_state = True;
2338 return NT_STATUS_NOT_IMPLEMENTED;
2341 NTSTATUS _lsa_SetTrustedDomainInfo(pipes_struct *p, struct lsa_SetTrustedDomainInfo *r)
2343 p->rng_fault_state = True;
2344 return NT_STATUS_NOT_IMPLEMENTED;
2347 NTSTATUS _lsa_DeleteTrustedDomain(pipes_struct *p, struct lsa_DeleteTrustedDomain *r)
2349 p->rng_fault_state = True;
2350 return NT_STATUS_NOT_IMPLEMENTED;
2353 NTSTATUS _lsa_StorePrivateData(pipes_struct *p, struct lsa_StorePrivateData *r)
2355 p->rng_fault_state = True;
2356 return NT_STATUS_NOT_IMPLEMENTED;
2359 NTSTATUS _lsa_RetrievePrivateData(pipes_struct *p, struct lsa_RetrievePrivateData *r)
2361 p->rng_fault_state = True;
2362 return NT_STATUS_NOT_IMPLEMENTED;
2365 NTSTATUS _lsa_GetUserName(pipes_struct *p, struct lsa_GetUserName *r)
2367 p->rng_fault_state = True;
2368 return NT_STATUS_NOT_IMPLEMENTED;
2371 NTSTATUS _lsa_QueryInfoPolicy2(pipes_struct *p, struct lsa_QueryInfoPolicy2 *r)
2373 p->rng_fault_state = True;
2374 return NT_STATUS_NOT_IMPLEMENTED;
2377 NTSTATUS _lsa_SetInfoPolicy2(pipes_struct *p, struct lsa_SetInfoPolicy2 *r)
2379 p->rng_fault_state = True;
2380 return NT_STATUS_NOT_IMPLEMENTED;
2383 NTSTATUS _lsa_QueryTrustedDomainInfoByName(pipes_struct *p, struct lsa_QueryTrustedDomainInfoByName *r)
2385 p->rng_fault_state = True;
2386 return NT_STATUS_NOT_IMPLEMENTED;
2389 NTSTATUS _lsa_SetTrustedDomainInfoByName(pipes_struct *p, struct lsa_SetTrustedDomainInfoByName *r)
2391 p->rng_fault_state = True;
2392 return NT_STATUS_NOT_IMPLEMENTED;
2395 NTSTATUS _lsa_EnumTrustedDomainsEx(pipes_struct *p, struct lsa_EnumTrustedDomainsEx *r)
2397 p->rng_fault_state = True;
2398 return NT_STATUS_NOT_IMPLEMENTED;
2401 NTSTATUS _lsa_CreateTrustedDomainEx(pipes_struct *p, struct lsa_CreateTrustedDomainEx *r)
2403 p->rng_fault_state = True;
2404 return NT_STATUS_NOT_IMPLEMENTED;
2407 NTSTATUS _lsa_CloseTrustedDomainEx(pipes_struct *p, struct lsa_CloseTrustedDomainEx *r)
2409 p->rng_fault_state = True;
2410 return NT_STATUS_NOT_IMPLEMENTED;
2413 NTSTATUS _lsa_QueryDomainInformationPolicy(pipes_struct *p, struct lsa_QueryDomainInformationPolicy *r)
2415 p->rng_fault_state = True;
2416 return NT_STATUS_NOT_IMPLEMENTED;
2419 NTSTATUS _lsa_SetDomainInformationPolicy(pipes_struct *p, struct lsa_SetDomainInformationPolicy *r)
2421 p->rng_fault_state = True;
2422 return NT_STATUS_NOT_IMPLEMENTED;
2425 NTSTATUS _lsa_OpenTrustedDomainByName(pipes_struct *p, struct lsa_OpenTrustedDomainByName *r)
2427 p->rng_fault_state = True;
2428 return NT_STATUS_NOT_IMPLEMENTED;
2431 NTSTATUS _lsa_TestCall(pipes_struct *p, struct lsa_TestCall *r)
2433 p->rng_fault_state = True;
2434 return NT_STATUS_NOT_IMPLEMENTED;
2437 NTSTATUS _lsa_LookupSids2(pipes_struct *p, struct lsa_LookupSids2 *r)
2439 p->rng_fault_state = True;
2440 return NT_STATUS_NOT_IMPLEMENTED;
2443 NTSTATUS _lsa_LookupNames2(pipes_struct *p, struct lsa_LookupNames2 *r)
2445 p->rng_fault_state = True;
2446 return NT_STATUS_NOT_IMPLEMENTED;
2449 NTSTATUS _lsa_CreateTrustedDomainEx2(pipes_struct *p, struct lsa_CreateTrustedDomainEx2 *r)
2451 p->rng_fault_state = True;
2452 return NT_STATUS_NOT_IMPLEMENTED;
2455 NTSTATUS _lsa_CREDRWRITE(pipes_struct *p, struct lsa_CREDRWRITE *r)
2457 p->rng_fault_state = True;
2458 return NT_STATUS_NOT_IMPLEMENTED;
2461 NTSTATUS _lsa_CREDRREAD(pipes_struct *p, struct lsa_CREDRREAD *r)
2463 p->rng_fault_state = True;
2464 return NT_STATUS_NOT_IMPLEMENTED;
2467 NTSTATUS _lsa_CREDRENUMERATE(pipes_struct *p, struct lsa_CREDRENUMERATE *r)
2469 p->rng_fault_state = True;
2470 return NT_STATUS_NOT_IMPLEMENTED;
2473 NTSTATUS _lsa_CREDRWRITEDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRWRITEDOMAINCREDENTIALS *r)
2475 p->rng_fault_state = True;
2476 return NT_STATUS_NOT_IMPLEMENTED;
2479 NTSTATUS _lsa_CREDRREADDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRREADDOMAINCREDENTIALS *r)
2481 p->rng_fault_state = True;
2482 return NT_STATUS_NOT_IMPLEMENTED;
2485 NTSTATUS _lsa_CREDRDELETE(pipes_struct *p, struct lsa_CREDRDELETE *r)
2487 p->rng_fault_state = True;
2488 return NT_STATUS_NOT_IMPLEMENTED;
2491 NTSTATUS _lsa_CREDRGETTARGETINFO(pipes_struct *p, struct lsa_CREDRGETTARGETINFO *r)
2493 p->rng_fault_state = True;
2494 return NT_STATUS_NOT_IMPLEMENTED;
2497 NTSTATUS _lsa_CREDRPROFILELOADED(pipes_struct *p, struct lsa_CREDRPROFILELOADED *r)
2499 p->rng_fault_state = True;
2500 return NT_STATUS_NOT_IMPLEMENTED;
2503 NTSTATUS _lsa_LookupNames3(pipes_struct *p, struct lsa_LookupNames3 *r)
2505 p->rng_fault_state = True;
2506 return NT_STATUS_NOT_IMPLEMENTED;
2509 NTSTATUS _lsa_CREDRGETSESSIONTYPES(pipes_struct *p, struct lsa_CREDRGETSESSIONTYPES *r)
2511 p->rng_fault_state = True;
2512 return NT_STATUS_NOT_IMPLEMENTED;
2515 NTSTATUS _lsa_LSARREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARREGISTERAUDITEVENT *r)
2517 p->rng_fault_state = True;
2518 return NT_STATUS_NOT_IMPLEMENTED;
2521 NTSTATUS _lsa_LSARGENAUDITEVENT(pipes_struct *p, struct lsa_LSARGENAUDITEVENT *r)
2523 p->rng_fault_state = True;
2524 return NT_STATUS_NOT_IMPLEMENTED;
2527 NTSTATUS _lsa_LSARUNREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARUNREGISTERAUDITEVENT *r)
2529 p->rng_fault_state = True;
2530 return NT_STATUS_NOT_IMPLEMENTED;
2533 NTSTATUS _lsa_lsaRQueryForestTrustInformation(pipes_struct *p, struct lsa_lsaRQueryForestTrustInformation *r)
2535 p->rng_fault_state = True;
2536 return NT_STATUS_NOT_IMPLEMENTED;
2539 NTSTATUS _lsa_LSARSETFORESTTRUSTINFORMATION(pipes_struct *p, struct lsa_LSARSETFORESTTRUSTINFORMATION *r)
2541 p->rng_fault_state = True;
2542 return NT_STATUS_NOT_IMPLEMENTED;
2545 NTSTATUS _lsa_CREDRRENAME(pipes_struct *p, struct lsa_CREDRRENAME *r)
2547 p->rng_fault_state = True;
2548 return NT_STATUS_NOT_IMPLEMENTED;
2551 NTSTATUS _lsa_LookupSids3(pipes_struct *p, struct lsa_LookupSids3 *r)
2553 p->rng_fault_state = True;
2554 return NT_STATUS_NOT_IMPLEMENTED;
2557 NTSTATUS _lsa_LookupNames4(pipes_struct *p, struct lsa_LookupNames4 *r)
2559 p->rng_fault_state = True;
2560 return NT_STATUS_NOT_IMPLEMENTED;
2563 NTSTATUS _lsa_LSAROPENPOLICYSCE(pipes_struct *p, struct lsa_LSAROPENPOLICYSCE *r)
2565 p->rng_fault_state = True;
2566 return NT_STATUS_NOT_IMPLEMENTED;
2569 NTSTATUS _lsa_LSARADTREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTREGISTERSECURITYEVENTSOURCE *r)
2571 p->rng_fault_state = True;
2572 return NT_STATUS_NOT_IMPLEMENTED;
2575 NTSTATUS _lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE *r)
2577 p->rng_fault_state = True;
2578 return NT_STATUS_NOT_IMPLEMENTED;
2581 NTSTATUS _lsa_LSARADTREPORTSECURITYEVENT(pipes_struct *p, struct lsa_LSARADTREPORTSECURITYEVENT *r)
2583 p->rng_fault_state = True;
2584 return NT_STATUS_NOT_IMPLEMENTED;