5c2e1b6f01304a93b00e405a9acb6cfbae6b07a2
[amitay/samba.git] / source3 / rpc_server / srv_lsa_nt.c
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.
13  *
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.
18  *  
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.
23  *  
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/>.
26  */
27
28 /* This is the implementation of the lsa server code. */
29
30 #include "includes.h"
31
32 #undef DBGC_CLASS
33 #define DBGC_CLASS DBGC_RPC_SRV
34
35 extern PRIVS privs[];
36
37 struct lsa_info {
38         DOM_SID sid;
39         uint32 access;
40 };
41
42 const struct generic_mapping lsa_generic_mapping = {
43         POLICY_READ,
44         POLICY_WRITE,
45         POLICY_EXECUTE,
46         POLICY_ALL_ACCESS
47 };
48
49 /*******************************************************************
50  Function to free the per handle data.
51  ********************************************************************/
52
53 static void free_lsa_info(void *ptr)
54 {
55         struct lsa_info *lsa = (struct lsa_info *)ptr;
56
57         SAFE_FREE(lsa);
58 }
59
60 /***************************************************************************
61 Init dom_query
62  ***************************************************************************/
63
64 static void init_dom_query_3(DOM_QUERY_3 *d_q, const char *dom_name, DOM_SID *dom_sid)
65 {
66         d_q->buffer_dom_name = (dom_name != NULL) ? 1 : 0; /* domain buffer pointer */
67         d_q->buffer_dom_sid = (dom_sid != NULL) ? 1 : 0;  /* domain sid pointer */
68
69         /* this string is supposed to be non-null terminated. */
70         /* But the maxlen in this UNISTR2 must include the terminating null. */
71         init_unistr2(&d_q->uni_domain_name, dom_name, UNI_BROKEN_NON_NULL);
72
73         /*
74          * I'm not sure why this really odd combination of length
75          * values works, but it does appear to. I need to look at
76          * this *much* more closely - but at the moment leave alone
77          * until it's understood. This allows a W2k client to join
78          * a domain with both odd and even length names... JRA.
79          */
80
81         /*
82          * IMPORTANT NOTE !!!!
83          * The two fields below probably are reversed in meaning, ie.
84          * the first field is probably the str_len, the second the max
85          * len. Both are measured in bytes anyway.
86          */
87
88         d_q->uni_dom_str_len = d_q->uni_domain_name.uni_max_len * 2;
89         d_q->uni_dom_max_len = d_q->uni_domain_name.uni_str_len * 2;
90
91         if (dom_sid != NULL)
92                 init_dom_sid2(&d_q->dom_sid, dom_sid);
93 }
94
95 /***************************************************************************
96 Init dom_query
97  ***************************************************************************/
98
99 static void init_dom_query_5(DOM_QUERY_5 *d_q, const char *dom_name, DOM_SID *dom_sid)
100 {
101         init_dom_query_3(d_q, dom_name, dom_sid);
102 }
103
104 /***************************************************************************
105  init_dom_ref - adds a domain if it's not already in, returns the index.
106 ***************************************************************************/
107
108 static int init_dom_ref(DOM_R_REF *ref, const char *dom_name, DOM_SID *dom_sid)
109 {
110         int num = 0;
111
112         if (dom_name != NULL) {
113                 for (num = 0; num < ref->num_ref_doms_1; num++) {
114                         if (sid_equal(dom_sid, &ref->ref_dom[num].ref_dom.sid))
115                                 return num;
116                 }
117         } else {
118                 num = ref->num_ref_doms_1;
119         }
120
121         if (num >= MAX_REF_DOMAINS) {
122                 /* index not found, already at maximum domain limit */
123                 return -1;
124         }
125
126         ref->num_ref_doms_1 = num+1;
127         ref->ptr_ref_dom  = 1;
128         ref->max_entries = MAX_REF_DOMAINS;
129         ref->num_ref_doms_2 = num+1;
130
131         ref->hdr_ref_dom[num].ptr_dom_sid = 1; /* dom sid cannot be NULL. */
132
133         init_unistr2(&ref->ref_dom[num].uni_dom_name, dom_name, UNI_FLAGS_NONE);
134         init_uni_hdr(&ref->hdr_ref_dom[num].hdr_dom_name, &ref->ref_dom[num].uni_dom_name);
135
136         init_dom_sid2(&ref->ref_dom[num].ref_dom, dom_sid );
137
138         return num;
139 }
140
141 /***************************************************************************
142  lookup_lsa_rids. Must be called as root for lookup_name to work.
143  ***************************************************************************/
144
145 static NTSTATUS lookup_lsa_rids(TALLOC_CTX *mem_ctx,
146                         DOM_R_REF *ref,
147                         DOM_RID *prid,
148                         uint32 num_entries,
149                         const UNISTR2 *name,
150                         int flags,
151                         uint32 *pmapped_count)
152 {
153         uint32 mapped_count, i;
154
155         SMB_ASSERT(num_entries <= MAX_LOOKUP_SIDS);
156
157         mapped_count = 0;
158         *pmapped_count = 0;
159
160         for (i = 0; i < num_entries; i++) {
161                 DOM_SID sid;
162                 uint32 rid;
163                 int dom_idx;
164                 char *full_name;
165                 const char *domain;
166                 enum lsa_SidType type = SID_NAME_UNKNOWN;
167
168                 /* Split name into domain and user component */
169
170                 full_name = rpcstr_pull_unistr2_talloc(mem_ctx, &name[i]);
171                 if (full_name == NULL) {
172                         DEBUG(0, ("pull_ucs2_talloc failed\n"));
173                         return NT_STATUS_NO_MEMORY;
174                 }
175
176                 DEBUG(5, ("lookup_lsa_rids: looking up name %s\n", full_name));
177
178                 /* We can ignore the result of lookup_name, it will not touch
179                    "type" if it's not successful */
180
181                 lookup_name(mem_ctx, full_name, flags, &domain, NULL,
182                             &sid, &type);
183
184                 switch (type) {
185                 case SID_NAME_USER:
186                 case SID_NAME_DOM_GRP:
187                 case SID_NAME_DOMAIN:
188                 case SID_NAME_ALIAS:
189                 case SID_NAME_WKN_GRP:
190                         DEBUG(5, ("init_lsa_rids: %s found\n", full_name));
191                         /* Leave these unchanged */
192                         break;
193                 default:
194                         /* Don't hand out anything but the list above */
195                         DEBUG(5, ("init_lsa_rids: %s not found\n", full_name));
196                         type = SID_NAME_UNKNOWN;
197                         break;
198                 }
199
200                 rid = 0;
201                 dom_idx = -1;
202
203                 if (type != SID_NAME_UNKNOWN) {
204                         sid_split_rid(&sid, &rid);
205                         dom_idx = init_dom_ref(ref, domain, &sid);
206                         mapped_count++;
207                 }
208
209                 init_dom_rid(&prid[i], rid, type, dom_idx);
210         }
211
212         *pmapped_count = mapped_count;
213         return NT_STATUS_OK;
214 }
215
216 /***************************************************************************
217  lookup_lsa_sids. Must be called as root for lookup_name to work.
218  ***************************************************************************/
219
220 static NTSTATUS lookup_lsa_sids(TALLOC_CTX *mem_ctx,
221                         DOM_R_REF *ref,
222                         LSA_TRANSLATED_SID3 *trans_sids,
223                         uint32 num_entries,
224                         const UNISTR2 *name,
225                         int flags,
226                         uint32 *pmapped_count)
227 {
228         uint32 mapped_count, i;
229
230         SMB_ASSERT(num_entries <= MAX_LOOKUP_SIDS);
231
232         mapped_count = 0;
233         *pmapped_count = 0;
234
235         for (i = 0; i < num_entries; i++) {
236                 DOM_SID sid;
237                 uint32 rid;
238                 int dom_idx;
239                 char *full_name;
240                 const char *domain;
241                 enum lsa_SidType type = SID_NAME_UNKNOWN;
242
243                 /* Split name into domain and user component */
244
245                 full_name = rpcstr_pull_unistr2_talloc(mem_ctx, &name[i]);
246                 if (full_name == NULL) {
247                         DEBUG(0, ("pull_ucs2_talloc failed\n"));
248                         return NT_STATUS_NO_MEMORY;
249                 }
250
251                 DEBUG(5, ("init_lsa_sids: looking up name %s\n", full_name));
252
253                 /* We can ignore the result of lookup_name, it will not touch
254                    "type" if it's not successful */
255
256                 lookup_name(mem_ctx, full_name, flags, &domain, NULL,
257                             &sid, &type);
258
259                 switch (type) {
260                 case SID_NAME_USER:
261                 case SID_NAME_DOM_GRP:
262                 case SID_NAME_DOMAIN:
263                 case SID_NAME_ALIAS:
264                 case SID_NAME_WKN_GRP:
265                         DEBUG(5, ("init_lsa_sids: %s found\n", full_name));
266                         /* Leave these unchanged */
267                         break;
268                 default:
269                         /* Don't hand out anything but the list above */
270                         DEBUG(5, ("init_lsa_sids: %s not found\n", full_name));
271                         type = SID_NAME_UNKNOWN;
272                         break;
273                 }
274
275                 rid = 0;
276                 dom_idx = -1;
277
278                 if (type != SID_NAME_UNKNOWN) {
279                         DOM_SID domain_sid;
280                         sid_copy(&domain_sid, &sid);
281                         sid_split_rid(&domain_sid, &rid);
282                         dom_idx = init_dom_ref(ref, domain, &domain_sid);
283                         mapped_count++;
284                 }
285
286                 /* Initialize the LSA_TRANSLATED_SID3 return. */
287                 trans_sids[i].sid_type = type;
288                 trans_sids[i].sid2 = TALLOC_P(mem_ctx, DOM_SID2);
289                 if (trans_sids[i].sid2 == NULL) {
290                         return NT_STATUS_NO_MEMORY;
291                 }
292                 init_dom_sid2(trans_sids[i].sid2, &sid);
293                 trans_sids[i].sid_idx = dom_idx;
294         }
295
296         *pmapped_count = mapped_count;
297         return NT_STATUS_OK;
298 }
299
300 /***************************************************************************
301  init_reply_lookup_names
302  ***************************************************************************/
303
304 static void init_reply_lookup_names(LSA_R_LOOKUP_NAMES *r_l,
305                 DOM_R_REF *ref, uint32 num_entries,
306                 DOM_RID *rid, uint32 mapped_count)
307 {
308         r_l->ptr_dom_ref  = 1;
309         r_l->dom_ref      = ref;
310
311         r_l->num_entries  = num_entries;
312         r_l->ptr_entries  = 1;
313         r_l->num_entries2 = num_entries;
314         r_l->dom_rid      = rid;
315
316         r_l->mapped_count = mapped_count;
317 }
318
319 /***************************************************************************
320  init_reply_lookup_names2
321  ***************************************************************************/
322
323 static void init_reply_lookup_names2(LSA_R_LOOKUP_NAMES2 *r_l,
324                 DOM_R_REF *ref, uint32 num_entries,
325                 DOM_RID2 *rid, uint32 mapped_count)
326 {
327         r_l->ptr_dom_ref  = 1;
328         r_l->dom_ref      = ref;
329
330         r_l->num_entries  = num_entries;
331         r_l->ptr_entries  = 1;
332         r_l->num_entries2 = num_entries;
333         r_l->dom_rid      = rid;
334
335         r_l->mapped_count = mapped_count;
336 }
337
338 /***************************************************************************
339  init_reply_lookup_names3
340  ***************************************************************************/
341
342 static void init_reply_lookup_names3(LSA_R_LOOKUP_NAMES3 *r_l,
343                 DOM_R_REF *ref, uint32 num_entries,
344                 LSA_TRANSLATED_SID3 *trans_sids, uint32 mapped_count)
345 {
346         r_l->ptr_dom_ref  = 1;
347         r_l->dom_ref      = ref;
348
349         r_l->num_entries  = num_entries;
350         r_l->ptr_entries  = 1;
351         r_l->num_entries2 = num_entries;
352         r_l->trans_sids   = trans_sids;
353
354         r_l->mapped_count = mapped_count;
355 }
356
357 /***************************************************************************
358  init_reply_lookup_names4
359  ***************************************************************************/
360
361 static void init_reply_lookup_names4(LSA_R_LOOKUP_NAMES4 *r_l,
362                 DOM_R_REF *ref, uint32 num_entries,
363                 LSA_TRANSLATED_SID3 *trans_sids, uint32 mapped_count)
364 {
365         r_l->ptr_dom_ref  = 1;
366         r_l->dom_ref      = ref;
367
368         r_l->num_entries  = num_entries;
369         r_l->ptr_entries  = 1;
370         r_l->num_entries2 = num_entries;
371         r_l->trans_sids   = trans_sids;
372
373         r_l->mapped_count = mapped_count;
374 }
375
376 /***************************************************************************
377  Init_reply_lookup_sids.
378  ***************************************************************************/
379
380 static void init_reply_lookup_sids2(LSA_R_LOOKUP_SIDS2 *r_l,
381                                 DOM_R_REF *ref,
382                                 uint32 mapped_count)
383 {
384         r_l->ptr_dom_ref  = ref ? 1 : 0;
385         r_l->dom_ref      = ref;
386         r_l->mapped_count = mapped_count;
387 }
388
389 /***************************************************************************
390  Init_reply_lookup_sids.
391  ***************************************************************************/
392
393 static void init_reply_lookup_sids3(LSA_R_LOOKUP_SIDS3 *r_l,
394                                 DOM_R_REF *ref,
395                                 uint32 mapped_count)
396 {
397         r_l->ptr_dom_ref  = ref ? 1 : 0;
398         r_l->dom_ref      = ref;
399         r_l->mapped_count = mapped_count;
400 }
401
402 /***************************************************************************
403  Init_reply_lookup_sids.
404  ***************************************************************************/
405
406 static NTSTATUS init_reply_lookup_sids(TALLOC_CTX *mem_ctx,
407                                 LSA_R_LOOKUP_SIDS *r_l,
408                                 DOM_R_REF *ref,
409                                 LSA_TRANS_NAME_ENUM2 *names,
410                                 uint32 mapped_count)
411 {
412         LSA_TRANS_NAME_ENUM *oldnames = &r_l->names;
413
414         oldnames->num_entries = names->num_entries;
415         oldnames->ptr_trans_names = names->ptr_trans_names;
416         oldnames->num_entries2 = names->num_entries2;
417         oldnames->uni_name = names->uni_name;
418
419         if (names->num_entries) {
420                 int i;
421
422                 oldnames->name = TALLOC_ARRAY(mem_ctx, LSA_TRANS_NAME, names->num_entries);
423
424                 if (!oldnames->name) {
425                         return NT_STATUS_NO_MEMORY;
426                 }
427                 for (i = 0; i < names->num_entries; i++) {
428                         oldnames->name[i].sid_name_use = names->name[i].sid_name_use;
429                         oldnames->name[i].hdr_name = names->name[i].hdr_name;
430                         oldnames->name[i].domain_idx = names->name[i].domain_idx;
431                 }
432         }
433
434         r_l->ptr_dom_ref  = ref ? 1 : 0;
435         r_l->dom_ref      = ref;
436         r_l->mapped_count = mapped_count;
437         return NT_STATUS_OK;
438 }
439
440 static NTSTATUS lsa_get_generic_sd(TALLOC_CTX *mem_ctx, SEC_DESC **sd, size_t *sd_size)
441 {
442         DOM_SID local_adm_sid;
443         DOM_SID adm_sid;
444
445         SEC_ACE ace[3];
446         SEC_ACCESS mask;
447
448         SEC_ACL *psa = NULL;
449
450         init_sec_access(&mask, POLICY_EXECUTE);
451         init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
452
453         sid_copy(&adm_sid, get_global_sam_sid());
454         sid_append_rid(&adm_sid, DOMAIN_GROUP_RID_ADMINS);
455         init_sec_access(&mask, POLICY_ALL_ACCESS);
456         init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
457
458         sid_copy(&local_adm_sid, &global_sid_Builtin);
459         sid_append_rid(&local_adm_sid, BUILTIN_ALIAS_RID_ADMINS);
460         init_sec_access(&mask, POLICY_ALL_ACCESS);
461         init_sec_ace(&ace[2], &local_adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
462
463         if((psa = make_sec_acl(mem_ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
464                 return NT_STATUS_NO_MEMORY;
465
466         if((*sd = make_sec_desc(mem_ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE, &adm_sid, NULL, NULL, psa, sd_size)) == NULL)
467                 return NT_STATUS_NO_MEMORY;
468
469         return NT_STATUS_OK;
470 }
471
472 #if 0   /* AD DC work in ongoing in Samba 4 */
473
474 /***************************************************************************
475  Init_dns_dom_info.
476 ***************************************************************************/
477
478 static void init_dns_dom_info(LSA_DNS_DOM_INFO *r_l, const char *nb_name,
479                               const char *dns_name, const char *forest_name,
480                               struct GUID *dom_guid, DOM_SID *dom_sid)
481 {
482         if (nb_name && *nb_name) {
483                 init_unistr2(&r_l->uni_nb_dom_name, nb_name, UNI_FLAGS_NONE);
484                 init_uni_hdr(&r_l->hdr_nb_dom_name, &r_l->uni_nb_dom_name);
485                 r_l->hdr_nb_dom_name.uni_max_len += 2;
486                 r_l->uni_nb_dom_name.uni_max_len += 1;
487         }
488         
489         if (dns_name && *dns_name) {
490                 init_unistr2(&r_l->uni_dns_dom_name, dns_name, UNI_FLAGS_NONE);
491                 init_uni_hdr(&r_l->hdr_dns_dom_name, &r_l->uni_dns_dom_name);
492                 r_l->hdr_dns_dom_name.uni_max_len += 2;
493                 r_l->uni_dns_dom_name.uni_max_len += 1;
494         }
495
496         if (forest_name && *forest_name) {
497                 init_unistr2(&r_l->uni_forest_name, forest_name, UNI_FLAGS_NONE);
498                 init_uni_hdr(&r_l->hdr_forest_name, &r_l->uni_forest_name);
499                 r_l->hdr_forest_name.uni_max_len += 2;
500                 r_l->uni_forest_name.uni_max_len += 1;
501         }
502
503         /* how do we init the guid ? probably should write an init fn */
504         if (dom_guid) {
505                 memcpy(&r_l->dom_guid, dom_guid, sizeof(struct GUID));
506         }
507         
508         if (dom_sid) {
509                 r_l->ptr_dom_sid = 1;
510                 init_dom_sid2(&r_l->dom_sid, dom_sid);
511         }
512 }
513 #endif  /* AD DC work in ongoing in Samba 4 */
514
515
516 /***************************************************************************
517  _lsa_open_policy2.
518  ***************************************************************************/
519
520 NTSTATUS _lsa_open_policy2(pipes_struct *p, LSA_Q_OPEN_POL2 *q_u, LSA_R_OPEN_POL2 *r_u)
521 {
522         struct lsa_info *info;
523         SEC_DESC *psd = NULL;
524         size_t sd_size;
525         uint32 des_access=q_u->des_access;
526         uint32 acc_granted;
527         NTSTATUS status;
528
529
530         /* map the generic bits to the lsa policy ones */
531         se_map_generic(&des_access, &lsa_generic_mapping);
532
533         /* get the generic lsa policy SD until we store it */
534         lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
535
536         if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
537                 if (p->pipe_user.ut.uid != sec_initial_uid()) {
538                         return status;
539                 }
540                 DEBUG(4,("ACCESS should be DENIED (granted: %#010x;  required: %#010x)\n",
541                          acc_granted, des_access));
542                 DEBUGADD(4,("but overwritten by euid == 0\n"));
543         }
544
545         /* This is needed for lsa_open_account and rpcclient .... :-) */
546
547         if (p->pipe_user.ut.uid == sec_initial_uid())
548                 acc_granted = POLICY_ALL_ACCESS;
549
550         /* associate the domain SID with the (unique) handle. */
551         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
552                 return NT_STATUS_NO_MEMORY;
553
554         ZERO_STRUCTP(info);
555         sid_copy(&info->sid,get_global_sam_sid());
556         info->access = acc_granted;
557
558         /* set up the LSA QUERY INFO response */
559         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
560                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
561
562         return NT_STATUS_OK;
563 }
564
565 /***************************************************************************
566  _lsa_open_policy
567  ***************************************************************************/
568
569 NTSTATUS _lsa_open_policy(pipes_struct *p, LSA_Q_OPEN_POL *q_u, LSA_R_OPEN_POL *r_u)
570 {
571         struct lsa_info *info;
572         SEC_DESC *psd = NULL;
573         size_t sd_size;
574         uint32 des_access=q_u->des_access;
575         uint32 acc_granted;
576         NTSTATUS status;
577
578
579         /* map the generic bits to the lsa policy ones */
580         se_map_generic(&des_access, &lsa_generic_mapping);
581
582         /* get the generic lsa policy SD until we store it */
583         lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
584
585         if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
586                 if (geteuid() != 0) {
587                         return status;
588                 }
589                 DEBUG(4,("ACCESS should be DENIED (granted: %#010x;  required: %#010x)\n",
590                          acc_granted, des_access));
591                 DEBUGADD(4,("but overwritten by euid == 0\n"));
592                 acc_granted = des_access;
593         }
594
595         /* associate the domain SID with the (unique) handle. */
596         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
597                 return NT_STATUS_NO_MEMORY;
598
599         ZERO_STRUCTP(info);
600         sid_copy(&info->sid,get_global_sam_sid());
601         info->access = acc_granted;
602
603         /* set up the LSA QUERY INFO response */
604         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
605                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
606
607         return NT_STATUS_OK;
608 }
609
610 /***************************************************************************
611  _lsa_enum_trust_dom - this needs fixing to do more than return NULL ! JRA.
612  ufff, done :)  mimir
613  ***************************************************************************/
614
615 NTSTATUS _lsa_enum_trust_dom(pipes_struct *p, LSA_Q_ENUM_TRUST_DOM *q_u,
616                              LSA_R_ENUM_TRUST_DOM *r_u)
617 {
618         struct lsa_info *info;
619         uint32 next_idx;
620         struct trustdom_info **domains;
621
622         /*
623          * preferred length is set to 5 as a "our" preferred length
624          * nt sets this parameter to 2
625          * update (20.08.2002): it's not preferred length, but preferred size!
626          * it needs further investigation how to optimally choose this value
627          */
628         uint32 max_num_domains =
629                 q_u->preferred_len < 5 ? q_u->preferred_len : 10;
630         uint32 num_domains;
631         NTSTATUS nt_status;
632         uint32 num_thistime;
633
634         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
635                 return NT_STATUS_INVALID_HANDLE;
636
637         /* check if the user have enough rights */
638         if (!(info->access & POLICY_VIEW_LOCAL_INFORMATION))
639                 return NT_STATUS_ACCESS_DENIED;
640
641         nt_status = pdb_enum_trusteddoms(p->mem_ctx, &num_domains, &domains);
642
643         if (!NT_STATUS_IS_OK(nt_status)) {
644                 return nt_status;
645         }
646
647         if (q_u->enum_context < num_domains) {
648                 num_thistime = MIN(num_domains, max_num_domains);
649
650                 r_u->status = STATUS_MORE_ENTRIES;
651
652                 if (q_u->enum_context + num_thistime > num_domains) {
653                         num_thistime = num_domains - q_u->enum_context;
654                         r_u->status = NT_STATUS_OK;
655                 }
656
657                 next_idx = q_u->enum_context + num_thistime;
658         } else {
659                 num_thistime = 0;
660                 next_idx = 0xffffffff;
661                 r_u->status = NT_STATUS_NO_MORE_ENTRIES;
662         }
663                 
664         /* set up the lsa_enum_trust_dom response */
665
666         init_r_enum_trust_dom(p->mem_ctx, r_u, next_idx,
667                               num_thistime, domains+q_u->enum_context);
668
669         return r_u->status;
670 }
671
672 /***************************************************************************
673  _lsa_query_info. See the POLICY_INFOMATION_CLASS docs at msdn.
674  ***************************************************************************/
675
676 NTSTATUS _lsa_query_info(pipes_struct *p, LSA_Q_QUERY_INFO *q_u, LSA_R_QUERY_INFO *r_u)
677 {
678         struct lsa_info *handle;
679         LSA_INFO_CTR *ctr = &r_u->ctr;
680         DOM_SID domain_sid;
681         const char *name;
682         DOM_SID *sid = NULL;
683
684         r_u->status = NT_STATUS_OK;
685
686         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
687                 return NT_STATUS_INVALID_HANDLE;
688
689         switch (q_u->info_class) {
690         case 0x02:
691                 {
692
693                 uint32 policy_def = LSA_AUDIT_POLICY_ALL;
694                 
695                 /* check if the user have enough rights */
696                 if (!(handle->access & POLICY_VIEW_AUDIT_INFORMATION)) {
697                         DEBUG(10,("_lsa_query_info: insufficient access rights\n"));
698                         return NT_STATUS_ACCESS_DENIED;
699                 }
700
701                 /* fake info: We audit everything. ;) */
702                 ctr->info.id2.ptr = 1;
703                 ctr->info.id2.auditing_enabled = True;
704                 ctr->info.id2.count1 = ctr->info.id2.count2 = LSA_AUDIT_NUM_CATEGORIES;
705
706                 if ((ctr->info.id2.auditsettings = TALLOC_ZERO_ARRAY(p->mem_ctx, uint32, LSA_AUDIT_NUM_CATEGORIES)) == NULL)
707                         return NT_STATUS_NO_MEMORY;
708
709                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_ACCOUNT_MANAGEMENT] = policy_def;
710                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_FILE_AND_OBJECT_ACCESS] = policy_def; 
711                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_LOGON] = policy_def; 
712                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_PROCCESS_TRACKING] = policy_def; 
713                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_SECURITY_POLICY_CHANGES] = policy_def;
714                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_SYSTEM] = policy_def;
715                 ctr->info.id2.auditsettings[LSA_AUDIT_CATEGORY_USE_OF_USER_RIGHTS] = policy_def; 
716
717                 break;
718                 }
719         case 0x03:
720                 /* check if the user have enough rights */
721                 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
722                         return NT_STATUS_ACCESS_DENIED;
723
724                 /* Request PolicyPrimaryDomainInformation. */
725                 switch (lp_server_role()) {
726                         case ROLE_DOMAIN_PDC:
727                         case ROLE_DOMAIN_BDC:
728                                 name = get_global_sam_name();
729                                 sid = get_global_sam_sid();
730                                 break;
731                         case ROLE_DOMAIN_MEMBER:
732                                 name = lp_workgroup();
733                                 /* We need to return the Domain SID here. */
734                                 if (secrets_fetch_domain_sid(lp_workgroup(), &domain_sid))
735                                         sid = &domain_sid;
736                                 else
737                                         return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
738                                 break;
739                         case ROLE_STANDALONE:
740                                 name = lp_workgroup();
741                                 sid = NULL;
742                                 break;
743                         default:
744                                 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
745                 }
746                 init_dom_query_3(&r_u->ctr.info.id3, name, sid);
747                 break;
748         case 0x05:
749                 /* check if the user have enough rights */
750                 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
751                         return NT_STATUS_ACCESS_DENIED;
752
753                 /* Request PolicyAccountDomainInformation. */
754                 name = get_global_sam_name();
755                 sid = get_global_sam_sid();
756                 init_dom_query_5(&r_u->ctr.info.id5, name, sid);
757                 break;
758         case 0x06:
759                 /* check if the user have enough rights */
760                 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
761                         return NT_STATUS_ACCESS_DENIED;
762
763                 switch (lp_server_role()) {
764                         case ROLE_DOMAIN_BDC:
765                                 /*
766                                  * only a BDC is a backup controller
767                                  * of the domain, it controls.
768                                  */
769                                 ctr->info.id6.server_role = 2;
770                                 break;
771                         default:
772                                 /*
773                                  * any other role is a primary
774                                  * of the domain, it controls.
775                                  */
776                                 ctr->info.id6.server_role = 3;
777                                 break; 
778                 }
779                 break;
780         default:
781                 DEBUG(0,("_lsa_query_info: unknown info level in Lsa Query: %d\n", q_u->info_class));
782                 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
783                 break;
784         }
785
786         if (NT_STATUS_IS_OK(r_u->status)) {
787                 r_u->dom_ptr = 0x22000000; /* bizarre */
788                 ctr->info_class = q_u->info_class;
789         }
790
791         return r_u->status;
792 }
793
794 /***************************************************************************
795  _lsa_lookup_sids_internal
796  ***************************************************************************/
797
798 static NTSTATUS _lsa_lookup_sids_internal(pipes_struct *p,
799                                 uint16 level,                           /* input */
800                                 int num_sids,                           /* input */
801                                 const DOM_SID2 *sid,                    /* input */
802                                 DOM_R_REF **pp_ref,                     /* output */
803                                 LSA_TRANS_NAME_ENUM2 *names,            /* input/output */
804                                 uint32 *pp_mapped_count)
805 {
806         NTSTATUS status;
807         int i;
808         const DOM_SID **sids = NULL;
809         DOM_R_REF *ref = NULL;
810         uint32 mapped_count = 0;
811         struct lsa_dom_info *dom_infos = NULL;
812         struct lsa_name_info *name_infos = NULL;
813
814         *pp_mapped_count = 0;
815         *pp_ref = NULL;
816         ZERO_STRUCTP(names);
817
818         if (num_sids == 0) {
819                 return NT_STATUS_OK;
820         }
821
822         sids = TALLOC_ARRAY(p->mem_ctx, const DOM_SID *, num_sids);
823         ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
824
825         if (sids == NULL || ref == NULL) {
826                 return NT_STATUS_NO_MEMORY;
827         }
828
829         for (i=0; i<num_sids; i++) {
830                 sids[i] = &sid[i].sid;
831         }
832
833         status = lookup_sids(p->mem_ctx, num_sids, sids, level,
834                                   &dom_infos, &name_infos);
835
836         if (!NT_STATUS_IS_OK(status)) {
837                 return status;
838         }
839
840         names->name = TALLOC_ARRAY(p->mem_ctx, LSA_TRANS_NAME2, num_sids);
841         names->uni_name = TALLOC_ARRAY(p->mem_ctx, UNISTR2, num_sids);
842         if ((names->name == NULL) || (names->uni_name == NULL)) {
843                 return NT_STATUS_NO_MEMORY;
844         }
845
846         for (i=0; i<MAX_REF_DOMAINS; i++) {
847
848                 if (!dom_infos[i].valid) {
849                         break;
850                 }
851
852                 if (init_dom_ref(ref, dom_infos[i].name,
853                                  &dom_infos[i].sid) != i) {
854                         DEBUG(0, ("Domain %s mentioned twice??\n",
855                                   dom_infos[i].name));
856                         return NT_STATUS_INTERNAL_ERROR;
857                 }
858         }
859
860         for (i=0; i<num_sids; i++) {
861                 struct lsa_name_info *name = &name_infos[i];
862
863                 if (name->type == SID_NAME_UNKNOWN) {
864                         name->dom_idx = -1;
865                         /* Unknown sids should return the string
866                          * representation of the SID. Windows 2003 behaves
867                          * rather erratic here, in many cases it returns the
868                          * RID as 8 bytes hex, in others it returns the full
869                          * SID. We (Jerry/VL) could not figure out which the
870                          * hard cases are, so leave it with the SID.  */
871                         name->name = talloc_asprintf(p->mem_ctx, "%s", 
872                                                      sid_string_static(sids[i]));
873                         if (name->name == NULL) {
874                                 return NT_STATUS_NO_MEMORY;
875                         }
876                 } else {
877                         mapped_count += 1;
878                 }
879                 init_lsa_trans_name2(&names->name[i], &names->uni_name[i],
880                                     name->type, name->name, name->dom_idx);
881         }
882
883         names->num_entries = num_sids;
884         names->ptr_trans_names = 1;
885         names->num_entries2 = num_sids;
886
887         status = NT_STATUS_NONE_MAPPED;
888         if (mapped_count > 0) {
889                 status = (mapped_count < num_sids) ?
890                         STATUS_SOME_UNMAPPED : NT_STATUS_OK;
891         }
892
893         DEBUG(10, ("num_sids %d, mapped_count %d, status %s\n",
894                    num_sids, mapped_count, nt_errstr(status)));
895
896         *pp_mapped_count = mapped_count;
897         *pp_ref = ref;
898
899         return status;
900 }
901
902 /***************************************************************************
903  _lsa_lookup_sids
904  ***************************************************************************/
905
906 NTSTATUS _lsa_lookup_sids(pipes_struct *p,
907                           LSA_Q_LOOKUP_SIDS *q_u,
908                           LSA_R_LOOKUP_SIDS *r_u)
909 {
910         struct lsa_info *handle;
911         int num_sids = q_u->sids.num_entries;
912         uint32 mapped_count = 0;
913         DOM_R_REF *ref = NULL;
914         LSA_TRANS_NAME_ENUM2 names;
915         NTSTATUS status;
916
917         if ((q_u->level < 1) || (q_u->level > 6)) {
918                 return NT_STATUS_INVALID_PARAMETER;
919         }
920
921         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
922                 return NT_STATUS_INVALID_HANDLE;
923         }
924
925         /* check if the user has enough rights */
926         if (!(handle->access & POLICY_LOOKUP_NAMES)) {
927                 return NT_STATUS_ACCESS_DENIED;
928         }
929
930         if (num_sids >  MAX_LOOKUP_SIDS) {
931                 DEBUG(5,("_lsa_lookup_sids: limit of %d exceeded, requested %d\n",
932                          MAX_LOOKUP_SIDS, num_sids));
933                 return NT_STATUS_NONE_MAPPED;
934         }
935
936         r_u->status = _lsa_lookup_sids_internal(p,
937                                                 q_u->level,
938                                                 num_sids, 
939                                                 q_u->sids.sid,
940                                                 &ref,
941                                                 &names,
942                                                 &mapped_count);
943
944         /* Convert from LSA_TRANS_NAME_ENUM2 to LSA_TRANS_NAME_ENUM */
945
946         status = init_reply_lookup_sids(p->mem_ctx, r_u, ref, &names, mapped_count);
947         if (!NT_STATUS_IS_OK(status)) {
948                 return status;
949         }
950         return r_u->status;
951 }
952
953 /***************************************************************************
954  _lsa_lookup_sids2
955  ***************************************************************************/
956
957 NTSTATUS _lsa_lookup_sids2(pipes_struct *p,
958                           LSA_Q_LOOKUP_SIDS2 *q_u,
959                           LSA_R_LOOKUP_SIDS2 *r_u)
960 {
961         struct lsa_info *handle;
962         int num_sids = q_u->sids.num_entries;
963         uint32 mapped_count = 0;
964         DOM_R_REF *ref = NULL;
965
966         if ((q_u->level < 1) || (q_u->level > 6)) {
967                 return NT_STATUS_INVALID_PARAMETER;
968         }
969
970         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
971                 return NT_STATUS_INVALID_HANDLE;
972         }
973
974         /* check if the user have enough rights */
975         if (!(handle->access & POLICY_LOOKUP_NAMES)) {
976                 return NT_STATUS_ACCESS_DENIED;
977         }
978
979         if (num_sids >  MAX_LOOKUP_SIDS) {
980                 DEBUG(5,("_lsa_lookup_sids2: limit of %d exceeded, requested %d\n",
981                          MAX_LOOKUP_SIDS, num_sids));
982                 return NT_STATUS_NONE_MAPPED;
983         }
984
985         r_u->status = _lsa_lookup_sids_internal(p,
986                                                 q_u->level,
987                                                 num_sids, 
988                                                 q_u->sids.sid,
989                                                 &ref,
990                                                 &r_u->names,
991                                                 &mapped_count);
992
993         init_reply_lookup_sids2(r_u, ref, mapped_count);
994         return r_u->status;
995 }
996
997 /***************************************************************************
998  _lsa_lookup_sida3
999  ***************************************************************************/
1000
1001 NTSTATUS _lsa_lookup_sids3(pipes_struct *p,
1002                           LSA_Q_LOOKUP_SIDS3 *q_u,
1003                           LSA_R_LOOKUP_SIDS3 *r_u)
1004 {
1005         int num_sids = q_u->sids.num_entries;
1006         uint32 mapped_count = 0;
1007         DOM_R_REF *ref = NULL;
1008
1009         if ((q_u->level < 1) || (q_u->level > 6)) {
1010                 return NT_STATUS_INVALID_PARAMETER;
1011         }
1012
1013         /* No policy handle on this call. Restrict to crypto connections. */
1014         if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
1015                 DEBUG(0,("_lsa_lookup_sids3: client %s not using schannel for netlogon\n",
1016                         get_remote_machine_name() ));
1017                 return NT_STATUS_INVALID_PARAMETER;
1018         }
1019
1020         if (num_sids >  MAX_LOOKUP_SIDS) {
1021                 DEBUG(5,("_lsa_lookup_sids3: limit of %d exceeded, requested %d\n",
1022                          MAX_LOOKUP_SIDS, num_sids));
1023                 return NT_STATUS_NONE_MAPPED;
1024         }
1025
1026         r_u->status = _lsa_lookup_sids_internal(p,
1027                                                 q_u->level,
1028                                                 num_sids, 
1029                                                 q_u->sids.sid,
1030                                                 &ref,
1031                                                 &r_u->names,
1032                                                 &mapped_count);
1033
1034         init_reply_lookup_sids3(r_u, ref, mapped_count);
1035         return r_u->status;
1036 }
1037
1038 /***************************************************************************
1039 lsa_reply_lookup_names
1040  ***************************************************************************/
1041
1042 NTSTATUS _lsa_lookup_names(pipes_struct *p,LSA_Q_LOOKUP_NAMES *q_u, LSA_R_LOOKUP_NAMES *r_u)
1043 {
1044         struct lsa_info *handle;
1045         UNISTR2 *names = q_u->uni_name;
1046         uint32 num_entries = q_u->num_entries;
1047         DOM_R_REF *ref;
1048         DOM_RID *rids;
1049         uint32 mapped_count = 0;
1050         int flags = 0;
1051
1052         if (num_entries >  MAX_LOOKUP_SIDS) {
1053                 num_entries = MAX_LOOKUP_SIDS;
1054                 DEBUG(5,("_lsa_lookup_names: truncating name lookup list to %d\n", num_entries));
1055         }
1056                 
1057         /* Probably the lookup_level is some sort of bitmask. */
1058         if (q_u->lookup_level == 1) {
1059                 flags = LOOKUP_NAME_ALL;
1060         }
1061
1062         ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1063         if (!ref) {
1064                 return NT_STATUS_NO_MEMORY;
1065         }
1066
1067         if (num_entries) {
1068                 rids = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID, num_entries);
1069                 if (!rids) {
1070                         return NT_STATUS_NO_MEMORY;
1071                 }
1072         } else {
1073                 rids = NULL;
1074         }
1075
1076         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1077                 r_u->status = NT_STATUS_INVALID_HANDLE;
1078                 goto done;
1079         }
1080
1081         /* check if the user have enough rights */
1082         if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1083                 r_u->status = NT_STATUS_ACCESS_DENIED;
1084                 goto done;
1085         }
1086
1087         /* set up the LSA Lookup RIDs response */
1088         become_root(); /* lookup_name can require root privs */
1089         r_u->status = lookup_lsa_rids(p->mem_ctx, ref, rids, num_entries,
1090                                       names, flags, &mapped_count);
1091         unbecome_root();
1092
1093 done:
1094
1095         if (NT_STATUS_IS_OK(r_u->status) && (num_entries != 0) ) {
1096                 if (mapped_count == 0)
1097                         r_u->status = NT_STATUS_NONE_MAPPED;
1098                 else if (mapped_count != num_entries)
1099                         r_u->status = STATUS_SOME_UNMAPPED;
1100         }
1101
1102         init_reply_lookup_names(r_u, ref, num_entries, rids, mapped_count);
1103         return r_u->status;
1104 }
1105
1106 /***************************************************************************
1107 lsa_reply_lookup_names2
1108  ***************************************************************************/
1109
1110 NTSTATUS _lsa_lookup_names2(pipes_struct *p, LSA_Q_LOOKUP_NAMES2 *q_u, LSA_R_LOOKUP_NAMES2 *r_u)
1111 {
1112         struct lsa_info *handle;
1113         UNISTR2 *names = q_u->uni_name;
1114         uint32 num_entries = q_u->num_entries;
1115         DOM_R_REF *ref;
1116         DOM_RID *rids;
1117         DOM_RID2 *rids2;
1118         int i;
1119         uint32 mapped_count = 0;
1120         int flags = 0;
1121
1122         if (num_entries >  MAX_LOOKUP_SIDS) {
1123                 num_entries = MAX_LOOKUP_SIDS;
1124                 DEBUG(5,("_lsa_lookup_names2: truncating name lookup list to %d\n", num_entries));
1125         }
1126                 
1127         /* Probably the lookup_level is some sort of bitmask. */
1128         if (q_u->lookup_level == 1) {
1129                 flags = LOOKUP_NAME_ALL;
1130         }
1131
1132         ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1133         if (ref == NULL) {
1134                 r_u->status = NT_STATUS_NO_MEMORY;
1135                 return NT_STATUS_NO_MEMORY;
1136         }
1137
1138         if (num_entries) {
1139                 rids = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID, num_entries);
1140                 rids2 = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_RID2, num_entries);
1141                 if ((rids == NULL) || (rids2 == NULL)) {
1142                         r_u->status = NT_STATUS_NO_MEMORY;
1143                         return NT_STATUS_NO_MEMORY;
1144                 }
1145         } else {
1146                 rids = NULL;
1147                 rids2 = NULL;
1148         }
1149
1150         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1151                 r_u->status = NT_STATUS_INVALID_HANDLE;
1152                 goto done;
1153         }
1154
1155         /* check if the user have enough rights */
1156         if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1157                 r_u->status = NT_STATUS_ACCESS_DENIED;
1158                 goto done;
1159         }
1160
1161         /* set up the LSA Lookup RIDs response */
1162         become_root(); /* lookup_name can require root privs */
1163         r_u->status = lookup_lsa_rids(p->mem_ctx, ref, rids, num_entries,
1164                                       names, flags, &mapped_count);
1165         unbecome_root();
1166
1167 done:
1168
1169         if (NT_STATUS_IS_OK(r_u->status)) {
1170                 if (mapped_count == 0) {
1171                         r_u->status = NT_STATUS_NONE_MAPPED;
1172                 } else if (mapped_count != num_entries) {
1173                         r_u->status = STATUS_SOME_UNMAPPED;
1174                 }
1175         }
1176
1177         /* Convert the rids array to rids2. */
1178         for (i = 0; i < num_entries; i++) {
1179                 rids2[i].type = rids[i].type;
1180                 rids2[i].rid = rids[i].rid;
1181                 rids2[i].rid_idx = rids[i].rid_idx;
1182                 rids2[i].unknown = 0;
1183         }
1184
1185         init_reply_lookup_names2(r_u, ref, num_entries, rids2, mapped_count);
1186         return r_u->status;
1187 }
1188
1189 /***************************************************************************
1190 lsa_reply_lookup_names3.
1191  ***************************************************************************/
1192
1193 NTSTATUS _lsa_lookup_names3(pipes_struct *p, LSA_Q_LOOKUP_NAMES3 *q_u, LSA_R_LOOKUP_NAMES3 *r_u)
1194 {
1195         struct lsa_info *handle;
1196         UNISTR2 *names = q_u->uni_name;
1197         uint32 num_entries = q_u->num_entries;
1198         DOM_R_REF *ref = NULL;
1199         LSA_TRANSLATED_SID3 *trans_sids = NULL;
1200         uint32 mapped_count = 0;
1201         int flags = 0;
1202
1203         if (num_entries >  MAX_LOOKUP_SIDS) {
1204                 num_entries = MAX_LOOKUP_SIDS;
1205                 DEBUG(5,("_lsa_lookup_names3: truncating name lookup list to %d\n", num_entries));
1206         }
1207                 
1208         /* Probably the lookup_level is some sort of bitmask. */
1209         if (q_u->lookup_level == 1) {
1210                 flags = LOOKUP_NAME_ALL;
1211         }
1212
1213         ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1214         if (ref == NULL) {
1215                 return NT_STATUS_NO_MEMORY;
1216         }
1217         if (num_entries) {
1218                 trans_sids = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_TRANSLATED_SID3, num_entries);
1219                 if (!trans_sids) {
1220                         return NT_STATUS_NO_MEMORY;
1221                 }
1222         } else {
1223                 trans_sids = NULL;
1224         }
1225
1226         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle)) {
1227                 r_u->status = NT_STATUS_INVALID_HANDLE;
1228                 goto done;
1229         }
1230
1231         /* check if the user have enough rights */
1232         if (!(handle->access & POLICY_LOOKUP_NAMES)) {
1233                 r_u->status = NT_STATUS_ACCESS_DENIED;
1234                 goto done;
1235         }
1236
1237         /* set up the LSA Lookup SIDs response */
1238         become_root(); /* lookup_name can require root privs */
1239         r_u->status = lookup_lsa_sids(p->mem_ctx, ref, trans_sids, num_entries,
1240                                       names, flags, &mapped_count);
1241         unbecome_root();
1242
1243 done:
1244
1245         if (NT_STATUS_IS_OK(r_u->status)) {
1246                 if (mapped_count == 0) {
1247                         r_u->status = NT_STATUS_NONE_MAPPED;
1248                 } else if (mapped_count != num_entries) {
1249                         r_u->status = STATUS_SOME_UNMAPPED;
1250                 }
1251         }
1252
1253         init_reply_lookup_names3(r_u, ref, num_entries, trans_sids, mapped_count);
1254         return r_u->status;
1255 }
1256
1257 /***************************************************************************
1258 lsa_reply_lookup_names4.
1259  ***************************************************************************/
1260
1261 NTSTATUS _lsa_lookup_names4(pipes_struct *p, LSA_Q_LOOKUP_NAMES4 *q_u, LSA_R_LOOKUP_NAMES4 *r_u)
1262 {
1263         UNISTR2 *names = q_u->uni_name;
1264         uint32 num_entries = q_u->num_entries;
1265         DOM_R_REF *ref = NULL;
1266         LSA_TRANSLATED_SID3 *trans_sids = NULL;
1267         uint32 mapped_count = 0;
1268         int flags = 0;
1269
1270         if (num_entries >  MAX_LOOKUP_SIDS) {
1271                 num_entries = MAX_LOOKUP_SIDS;
1272                 DEBUG(5,("_lsa_lookup_names4: truncating name lookup list to %d\n", num_entries));
1273         }
1274                 
1275         /* Probably the lookup_level is some sort of bitmask. */
1276         if (q_u->lookup_level == 1) {
1277                 flags = LOOKUP_NAME_ALL;
1278         }
1279
1280         /* No policy handle on this call. Restrict to crypto connections. */
1281         if (p->auth.auth_type != PIPE_AUTH_TYPE_SCHANNEL) {
1282                 DEBUG(0,("_lsa_lookup_names4: client %s not using schannel for netlogon\n",
1283                         get_remote_machine_name() ));
1284                 return NT_STATUS_INVALID_PARAMETER;
1285         }
1286
1287         ref = TALLOC_ZERO_P(p->mem_ctx, DOM_R_REF);
1288         if (!ref) {
1289                 return NT_STATUS_NO_MEMORY;
1290         }
1291
1292         if (num_entries) {
1293                 trans_sids = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_TRANSLATED_SID3, num_entries);
1294                 if (!trans_sids) {
1295                         return NT_STATUS_NO_MEMORY;
1296                 }
1297         } else {
1298                 trans_sids = NULL;
1299         }
1300
1301         /* set up the LSA Lookup SIDs response */
1302         become_root(); /* lookup_name can require root privs */
1303         r_u->status = lookup_lsa_sids(p->mem_ctx, ref, trans_sids, num_entries,
1304                                       names, flags, &mapped_count);
1305         unbecome_root();
1306
1307         if (NT_STATUS_IS_OK(r_u->status)) {
1308                 if (mapped_count == 0) {
1309                         r_u->status = NT_STATUS_NONE_MAPPED;
1310                 } else if (mapped_count != num_entries) {
1311                         r_u->status = STATUS_SOME_UNMAPPED;
1312                 }
1313         }
1314
1315         init_reply_lookup_names4(r_u, ref, num_entries, trans_sids, mapped_count);
1316         return r_u->status;
1317 }
1318
1319 /***************************************************************************
1320  _lsa_close. Also weird - needs to check if lsa handle is correct. JRA.
1321  ***************************************************************************/
1322
1323 NTSTATUS _lsa_Close(pipes_struct *p, struct lsa_Close *r)
1324 {
1325         if (!find_policy_by_hnd(p, r->in.handle, NULL)) {
1326                 return NT_STATUS_INVALID_HANDLE;
1327         }
1328
1329         close_policy_hnd(p, r->in.handle);
1330         return NT_STATUS_OK;
1331 }
1332
1333 /***************************************************************************
1334  ***************************************************************************/
1335
1336 NTSTATUS _lsa_OpenSecret(pipes_struct *p, struct lsa_OpenSecret *r)
1337 {
1338         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1339 }
1340
1341 /***************************************************************************
1342  ***************************************************************************/
1343
1344 NTSTATUS _lsa_OpenTrustedDomain(pipes_struct *p, struct lsa_OpenTrustedDomain *r)
1345 {
1346         return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1347 }
1348
1349 /***************************************************************************
1350  ***************************************************************************/
1351
1352 NTSTATUS _lsa_CreateTrustedDomain(pipes_struct *p, struct lsa_CreateTrustedDomain *r)
1353 {
1354         return NT_STATUS_ACCESS_DENIED;
1355 }
1356
1357 /***************************************************************************
1358  ***************************************************************************/
1359
1360 NTSTATUS _lsa_CreateSecret(pipes_struct *p, struct lsa_CreateSecret *r)
1361 {
1362         return NT_STATUS_ACCESS_DENIED;
1363 }
1364
1365 /***************************************************************************
1366  ***************************************************************************/
1367
1368 NTSTATUS _lsa_SetSecret(pipes_struct *p, struct lsa_SetSecret *r)
1369 {
1370         return NT_STATUS_ACCESS_DENIED;
1371 }
1372
1373 /***************************************************************************
1374  ***************************************************************************/
1375
1376 NTSTATUS _lsa_delete_object(pipes_struct *p, LSA_Q_DELETE_OBJECT *q_u, LSA_R_DELETE_OBJECT *r_u)
1377 {
1378         return NT_STATUS_ACCESS_DENIED;
1379 }
1380
1381 /***************************************************************************
1382 _lsa_enum_privs.
1383  ***************************************************************************/
1384
1385 NTSTATUS _lsa_enum_privs(pipes_struct *p, LSA_Q_ENUM_PRIVS *q_u, LSA_R_ENUM_PRIVS *r_u)
1386 {
1387         struct lsa_info *handle;
1388         uint32 i;
1389         uint32 enum_context = q_u->enum_context;
1390         int num_privs = count_all_privileges();
1391         LSA_PRIV_ENTRY *entries = NULL;
1392         LUID_ATTR luid;
1393
1394         /* remember that the enum_context starts at 0 and not 1 */
1395
1396         if ( enum_context >= num_privs )
1397                 return NT_STATUS_NO_MORE_ENTRIES;
1398                 
1399         DEBUG(10,("_lsa_enum_privs: enum_context:%d total entries:%d\n", 
1400                 enum_context, num_privs));
1401         
1402         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1403                 return NT_STATUS_INVALID_HANDLE;
1404
1405         /* check if the user have enough rights
1406            I don't know if it's the right one. not documented.  */
1407
1408         if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1409                 return NT_STATUS_ACCESS_DENIED;
1410
1411         if (num_privs) {
1412                 if ( !(entries = TALLOC_ZERO_ARRAY(p->mem_ctx, LSA_PRIV_ENTRY, num_privs )) )
1413                         return NT_STATUS_NO_MEMORY;
1414         } else {
1415                 entries = NULL;
1416         }
1417
1418         for (i = 0; i < num_privs; i++) {
1419                 if( i < enum_context) {
1420                         init_unistr2(&entries[i].name, NULL, UNI_FLAGS_NONE);
1421                         init_uni_hdr(&entries[i].hdr_name, &entries[i].name);
1422                         
1423                         entries[i].luid_low = 0;
1424                         entries[i].luid_high = 0;
1425                 } else {
1426                         init_unistr2(&entries[i].name, privs[i].name, UNI_FLAGS_NONE);
1427                         init_uni_hdr(&entries[i].hdr_name, &entries[i].name);
1428                         
1429                         luid = get_privilege_luid( &privs[i].se_priv );
1430                         
1431                         entries[i].luid_low = luid.luid.low;
1432                         entries[i].luid_high = luid.luid.high;
1433                 }
1434         }
1435
1436         enum_context = num_privs;
1437         
1438         init_lsa_r_enum_privs(r_u, enum_context, num_privs, entries);
1439
1440         return NT_STATUS_OK;
1441 }
1442
1443 /***************************************************************************
1444 _lsa_priv_get_dispname.
1445  ***************************************************************************/
1446
1447 NTSTATUS _lsa_priv_get_dispname(pipes_struct *p, LSA_Q_PRIV_GET_DISPNAME *q_u, LSA_R_PRIV_GET_DISPNAME *r_u)
1448 {
1449         struct lsa_info *handle;
1450         fstring name_asc;
1451         const char *description;
1452
1453         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1454                 return NT_STATUS_INVALID_HANDLE;
1455
1456         /* check if the user have enough rights */
1457
1458         /*
1459          * I don't know if it's the right one. not documented.
1460          */
1461         if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1462                 return NT_STATUS_ACCESS_DENIED;
1463
1464         unistr2_to_ascii(name_asc, &q_u->name, sizeof(name_asc));
1465
1466         DEBUG(10,("_lsa_priv_get_dispname: name = %s\n", name_asc));
1467
1468         description = get_privilege_dispname( name_asc );
1469         
1470         if ( description ) {
1471                 DEBUG(10,("_lsa_priv_get_dispname: display name = %s\n", description));
1472                 
1473                 init_unistr2(&r_u->desc, description, UNI_FLAGS_NONE);
1474                 init_uni_hdr(&r_u->hdr_desc, &r_u->desc);
1475
1476                 r_u->ptr_info = 0xdeadbeef;
1477                 r_u->lang_id = q_u->lang_id;
1478                 
1479                 return NT_STATUS_OK;
1480         } else {
1481                 DEBUG(10,("_lsa_priv_get_dispname: doesn't exist\n"));
1482                 
1483                 r_u->ptr_info = 0;
1484                 
1485                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1486         }
1487 }
1488
1489 /***************************************************************************
1490 _lsa_enum_accounts.
1491  ***************************************************************************/
1492
1493 NTSTATUS _lsa_enum_accounts(pipes_struct *p, LSA_Q_ENUM_ACCOUNTS *q_u, LSA_R_ENUM_ACCOUNTS *r_u)
1494 {
1495         struct lsa_info *handle;
1496         DOM_SID *sid_list;
1497         int i, j, num_entries;
1498         LSA_SID_ENUM *sids=&r_u->sids;
1499         NTSTATUS ret;
1500
1501         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1502                 return NT_STATUS_INVALID_HANDLE;
1503
1504         if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1505                 return NT_STATUS_ACCESS_DENIED;
1506
1507         sid_list = NULL;
1508         num_entries = 0;
1509
1510         /* The only way we can currently find out all the SIDs that have been
1511            privileged is to scan all privileges */
1512
1513         if (!NT_STATUS_IS_OK(ret = privilege_enumerate_accounts(&sid_list, &num_entries))) {
1514                 return ret;
1515         }
1516
1517         if (q_u->enum_context >= num_entries)
1518                 return NT_STATUS_NO_MORE_ENTRIES;
1519
1520         if (num_entries-q_u->enum_context) {
1521                 sids->ptr_sid = TALLOC_ZERO_ARRAY(p->mem_ctx, uint32, num_entries-q_u->enum_context);
1522                 sids->sid = TALLOC_ZERO_ARRAY(p->mem_ctx, DOM_SID2, num_entries-q_u->enum_context);
1523
1524                 if (sids->ptr_sid==NULL || sids->sid==NULL) {
1525                         SAFE_FREE(sid_list);
1526                         return NT_STATUS_NO_MEMORY;
1527                 }
1528
1529                 for (i = q_u->enum_context, j = 0; i < num_entries; i++, j++) {
1530                         init_dom_sid2(&(*sids).sid[j], &sid_list[i]);
1531                         (*sids).ptr_sid[j] = 1;
1532                 }
1533         } else {
1534                 sids->ptr_sid = NULL;
1535                 sids->sid = NULL;
1536         }
1537
1538         talloc_free(sid_list);
1539
1540         init_lsa_r_enum_accounts(r_u, num_entries);
1541
1542         return NT_STATUS_OK;
1543 }
1544
1545
1546 NTSTATUS _lsa_unk_get_connuser(pipes_struct *p, LSA_Q_UNK_GET_CONNUSER *q_u, LSA_R_UNK_GET_CONNUSER *r_u)
1547 {
1548         const char *username, *domname;
1549         user_struct *vuser = get_valid_user_struct(p->vuid);
1550   
1551         if (vuser == NULL)
1552                 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1553
1554         if (vuser->guest) {
1555                 /*
1556                  * I'm 99% sure this is not the right place to do this,
1557                  * global_sid_Anonymous should probably be put into the token
1558                  * instead of the guest id -- vl
1559                  */
1560                 if (!lookup_sid(p->mem_ctx, &global_sid_Anonymous,
1561                                 &domname, &username, NULL)) {
1562                         return NT_STATUS_NO_MEMORY;
1563                 }
1564         } else {
1565                 username = vuser->user.smb_name;
1566                 domname = vuser->user.domain;
1567         }
1568   
1569         r_u->ptr_user_name = 1;
1570         init_unistr2(&r_u->uni2_user_name, username, UNI_STR_TERMINATE);
1571         init_uni_hdr(&r_u->hdr_user_name, &r_u->uni2_user_name);
1572
1573         r_u->unk1 = 1;
1574   
1575         r_u->ptr_dom_name = 1;
1576         init_unistr2(&r_u->uni2_dom_name, domname,  UNI_STR_TERMINATE);
1577         init_uni_hdr(&r_u->hdr_dom_name, &r_u->uni2_dom_name);
1578
1579         r_u->status = NT_STATUS_OK;
1580   
1581         return r_u->status;
1582 }
1583
1584 /***************************************************************************
1585  Lsa Create Account 
1586  ***************************************************************************/
1587
1588 NTSTATUS _lsa_create_account(pipes_struct *p, LSA_Q_CREATEACCOUNT *q_u, LSA_R_CREATEACCOUNT *r_u)
1589 {
1590         struct lsa_info *handle;
1591         struct lsa_info *info;
1592
1593         /* find the connection policy handle. */
1594         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1595                 return NT_STATUS_INVALID_HANDLE;
1596
1597         /* check if the user have enough rights */
1598
1599         /*
1600          * I don't know if it's the right one. not documented.
1601          * but guessed with rpcclient.
1602          */
1603         if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1604                 return NT_STATUS_ACCESS_DENIED;
1605
1606         /* check to see if the pipe_user is a Domain Admin since 
1607            account_pol.tdb was already opened as root, this is all we have */
1608            
1609         if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1610                 return NT_STATUS_ACCESS_DENIED;
1611                 
1612         if ( is_privileged_sid( &q_u->sid.sid ) )
1613                 return NT_STATUS_OBJECT_NAME_COLLISION;
1614
1615         /* associate the user/group SID with the (unique) handle. */
1616         
1617         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1618                 return NT_STATUS_NO_MEMORY;
1619
1620         ZERO_STRUCTP(info);
1621         info->sid = q_u->sid.sid;
1622         info->access = q_u->access;
1623
1624         /* get a (unique) handle.  open a policy on it. */
1625         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
1626                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1627
1628         return privilege_create_account( &info->sid );
1629 }
1630
1631
1632 /***************************************************************************
1633  Lsa Open Account
1634  ***************************************************************************/
1635
1636 NTSTATUS _lsa_open_account(pipes_struct *p, LSA_Q_OPENACCOUNT *q_u, LSA_R_OPENACCOUNT *r_u)
1637 {
1638         struct lsa_info *handle;
1639         struct lsa_info *info;
1640
1641         /* find the connection policy handle. */
1642         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1643                 return NT_STATUS_INVALID_HANDLE;
1644
1645         /* check if the user have enough rights */
1646
1647         /*
1648          * I don't know if it's the right one. not documented.
1649          * but guessed with rpcclient.
1650          */
1651         if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1652                 return NT_STATUS_ACCESS_DENIED;
1653
1654         /* TODO: Fis the parsing routine before reenabling this check! */
1655         #if 0
1656         if (!lookup_sid(&handle->sid, dom_name, name, &type))
1657                 return NT_STATUS_ACCESS_DENIED;
1658         #endif
1659         /* associate the user/group SID with the (unique) handle. */
1660         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1661                 return NT_STATUS_NO_MEMORY;
1662
1663         ZERO_STRUCTP(info);
1664         info->sid = q_u->sid.sid;
1665         info->access = q_u->access;
1666
1667         /* get a (unique) handle.  open a policy on it. */
1668         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
1669                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1670
1671         return NT_STATUS_OK;
1672 }
1673
1674 /***************************************************************************
1675  For a given SID, enumerate all the privilege this account has.
1676  ***************************************************************************/
1677
1678 NTSTATUS _lsa_enum_privsaccount(pipes_struct *p, prs_struct *ps, LSA_Q_ENUMPRIVSACCOUNT *q_u, LSA_R_ENUMPRIVSACCOUNT *r_u)
1679 {
1680         struct lsa_info *info=NULL;
1681         SE_PRIV mask;
1682         PRIVILEGE_SET privileges;
1683
1684         /* find the connection policy handle. */
1685         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1686                 return NT_STATUS_INVALID_HANDLE;
1687
1688         if ( !get_privileges_for_sids( &mask, &info->sid, 1 ) ) 
1689                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1690
1691         privilege_set_init( &privileges );
1692
1693         if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
1694
1695                 DEBUG(10,("_lsa_enum_privsaccount: %s has %d privileges\n", 
1696                         sid_string_static(&info->sid), privileges.count));
1697
1698                 r_u->status = init_lsa_r_enum_privsaccount(ps->mem_ctx, r_u, privileges.set, privileges.count, 0);
1699         }
1700         else
1701                 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
1702
1703         privilege_set_free( &privileges );
1704
1705         return r_u->status;
1706 }
1707
1708 /***************************************************************************
1709  
1710  ***************************************************************************/
1711
1712 NTSTATUS _lsa_getsystemaccount(pipes_struct *p, LSA_Q_GETSYSTEMACCOUNT *q_u, LSA_R_GETSYSTEMACCOUNT *r_u)
1713 {
1714         struct lsa_info *info=NULL;
1715
1716         /* find the connection policy handle. */
1717
1718         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1719                 return NT_STATUS_INVALID_HANDLE;
1720
1721         if (!lookup_sid(p->mem_ctx, &info->sid, NULL, NULL, NULL))
1722                 return NT_STATUS_ACCESS_DENIED;
1723
1724         /*
1725           0x01 -> Log on locally
1726           0x02 -> Access this computer from network
1727           0x04 -> Log on as a batch job
1728           0x10 -> Log on as a service
1729           
1730           they can be ORed together
1731         */
1732
1733         r_u->access = PR_LOG_ON_LOCALLY | PR_ACCESS_FROM_NETWORK;
1734
1735         return NT_STATUS_OK;
1736 }
1737
1738 /***************************************************************************
1739   update the systemaccount information
1740  ***************************************************************************/
1741
1742 NTSTATUS _lsa_setsystemaccount(pipes_struct *p, LSA_Q_SETSYSTEMACCOUNT *q_u, LSA_R_SETSYSTEMACCOUNT *r_u)
1743 {
1744         struct lsa_info *info=NULL;
1745         GROUP_MAP map;
1746         r_u->status = NT_STATUS_OK;
1747
1748         /* find the connection policy handle. */
1749         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1750                 return NT_STATUS_INVALID_HANDLE;
1751
1752         /* check to see if the pipe_user is a Domain Admin since 
1753            account_pol.tdb was already opened as root, this is all we have */
1754            
1755         if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1756                 return NT_STATUS_ACCESS_DENIED;
1757
1758         if (!pdb_getgrsid(&map, info->sid))
1759                 return NT_STATUS_NO_SUCH_GROUP;
1760
1761         return pdb_update_group_mapping_entry(&map);
1762 }
1763
1764 /***************************************************************************
1765  For a given SID, add some privileges.
1766  ***************************************************************************/
1767
1768 NTSTATUS _lsa_addprivs(pipes_struct *p, LSA_Q_ADDPRIVS *q_u, LSA_R_ADDPRIVS *r_u)
1769 {
1770         struct lsa_info *info = NULL;
1771         SE_PRIV mask;
1772         PRIVILEGE_SET *set = NULL;
1773
1774         /* find the connection policy handle. */
1775         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1776                 return NT_STATUS_INVALID_HANDLE;
1777                 
1778         /* check to see if the pipe_user is root or a Domain Admin since 
1779            account_pol.tdb was already opened as root, this is all we have */
1780            
1781         if ( p->pipe_user.ut.uid != sec_initial_uid() 
1782                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1783         {
1784                 return NT_STATUS_ACCESS_DENIED;
1785         }
1786
1787         set = &q_u->set;
1788
1789         if ( !privilege_set_to_se_priv( &mask, set ) )
1790                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1791
1792         if ( !grant_privilege( &info->sid, &mask ) ) {
1793                 DEBUG(3,("_lsa_addprivs: grant_privilege(%s) failed!\n",
1794                         sid_string_static(&info->sid) ));
1795                 DEBUG(3,("Privilege mask:\n"));
1796                 dump_se_priv( DBGC_ALL, 3, &mask );
1797                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1798         }
1799
1800         return NT_STATUS_OK;
1801 }
1802
1803 /***************************************************************************
1804  For a given SID, remove some privileges.
1805  ***************************************************************************/
1806
1807 NTSTATUS _lsa_removeprivs(pipes_struct *p, LSA_Q_REMOVEPRIVS *q_u, LSA_R_REMOVEPRIVS *r_u)
1808 {
1809         struct lsa_info *info = NULL;
1810         SE_PRIV mask;
1811         PRIVILEGE_SET *set = NULL;
1812
1813         /* find the connection policy handle. */
1814         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1815                 return NT_STATUS_INVALID_HANDLE;
1816
1817         /* check to see if the pipe_user is root or a Domain Admin since 
1818            account_pol.tdb was already opened as root, this is all we have */
1819            
1820         if ( p->pipe_user.ut.uid != sec_initial_uid()
1821                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) ) 
1822         {
1823                 return NT_STATUS_ACCESS_DENIED;
1824         }
1825
1826         set = &q_u->set;
1827
1828         if ( !privilege_set_to_se_priv( &mask, set ) )
1829                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1830
1831         if ( !revoke_privilege( &info->sid, &mask ) ) {
1832                 DEBUG(3,("_lsa_removeprivs: revoke_privilege(%s) failed!\n",
1833                         sid_string_static(&info->sid) ));
1834                 DEBUG(3,("Privilege mask:\n"));
1835                 dump_se_priv( DBGC_ALL, 3, &mask );
1836                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1837         }
1838
1839         return NT_STATUS_OK;
1840 }
1841
1842 /***************************************************************************
1843  For a given SID, remove some privileges.
1844  ***************************************************************************/
1845
1846 NTSTATUS _lsa_query_secobj(pipes_struct *p, LSA_Q_QUERY_SEC_OBJ *q_u, LSA_R_QUERY_SEC_OBJ *r_u)
1847 {
1848         struct lsa_info *handle=NULL;
1849         SEC_DESC *psd = NULL;
1850         size_t sd_size;
1851         NTSTATUS status;
1852
1853         r_u->status = NT_STATUS_OK;
1854
1855         /* find the connection policy handle. */
1856         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1857                 return NT_STATUS_INVALID_HANDLE;
1858
1859         /* check if the user have enough rights */
1860         if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1861                 return NT_STATUS_ACCESS_DENIED;
1862
1863
1864         switch (q_u->sec_info) {
1865         case 1:
1866                 /* SD contains only the owner */
1867
1868                 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1869                 if(!NT_STATUS_IS_OK(status))
1870                         return NT_STATUS_NO_MEMORY;
1871
1872
1873                 if((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1874                         return NT_STATUS_NO_MEMORY;
1875                 break;
1876         case 4:
1877                 /* SD contains only the ACL */
1878
1879                 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1880                 if(!NT_STATUS_IS_OK(status))
1881                         return NT_STATUS_NO_MEMORY;
1882
1883                 if((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1884                         return NT_STATUS_NO_MEMORY;
1885                 break;
1886         default:
1887                 return NT_STATUS_INVALID_LEVEL;
1888         }
1889
1890         r_u->ptr=1;
1891
1892         return r_u->status;
1893 }
1894
1895 #if 0   /* AD DC work in ongoing in Samba 4 */
1896
1897 /***************************************************************************
1898  ***************************************************************************/
1899
1900 NTSTATUS _lsa_query_info2(pipes_struct *p, LSA_Q_QUERY_INFO2 *q_u, LSA_R_QUERY_INFO2 *r_u)
1901 {
1902         struct lsa_info *handle;
1903         const char *nb_name;
1904         char *dns_name = NULL;
1905         char *forest_name = NULL;
1906         DOM_SID *sid = NULL;
1907         struct GUID guid;
1908         fstring dnsdomname;
1909
1910         ZERO_STRUCT(guid);
1911         r_u->status = NT_STATUS_OK;
1912
1913         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1914                 return NT_STATUS_INVALID_HANDLE;
1915
1916         switch (q_u->info_class) {
1917         case 0x0c:
1918                 /* check if the user have enough rights */
1919                 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1920                         return NT_STATUS_ACCESS_DENIED;
1921
1922                 /* Request PolicyPrimaryDomainInformation. */
1923                 switch (lp_server_role()) {
1924                         case ROLE_DOMAIN_PDC:
1925                         case ROLE_DOMAIN_BDC:
1926                                 nb_name = get_global_sam_name();
1927                                 /* ugly temp hack for these next two */
1928
1929                                 /* This should be a 'netbios domain -> DNS domain' mapping */
1930                                 dnsdomname = get_mydnsdomname(p->mem_ctx);
1931                                 if (!dnsdomname) {
1932                                         return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1933                                 }
1934                                 strlower_m(dnsdomname);
1935
1936                                 dns_name = dnsdomname;
1937                                 forest_name = dnsdomname;
1938
1939                                 sid = get_global_sam_sid();
1940                                 secrets_fetch_domain_guid(lp_workgroup(), &guid);
1941                                 break;
1942                         default:
1943                                 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1944                 }
1945                 init_dns_dom_info(&r_u->info.dns_dom_info, nb_name, dns_name, 
1946                                   forest_name,&guid,sid);
1947                 break;
1948         default:
1949                 DEBUG(0,("_lsa_query_info2: unknown info level in Lsa Query: %d\n", q_u->info_class));
1950                 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
1951                 break;
1952         }
1953
1954         if (NT_STATUS_IS_OK(r_u->status)) {
1955                 r_u->ptr = 0x1;
1956                 r_u->info_class = q_u->info_class;
1957         }
1958
1959         return r_u->status;
1960 }
1961 #endif  /* AD DC work in ongoing in Samba 4 */
1962
1963 /***************************************************************************
1964  ***************************************************************************/
1965
1966 NTSTATUS _lsa_add_acct_rights(pipes_struct *p, LSA_Q_ADD_ACCT_RIGHTS *q_u, LSA_R_ADD_ACCT_RIGHTS *r_u)
1967 {
1968         struct lsa_info *info = NULL;
1969         int i = 0;
1970         DOM_SID sid;
1971         fstring privname;
1972         UNISTR4_ARRAY *uni_privnames = q_u->rights;
1973         
1974
1975         /* find the connection policy handle. */
1976         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1977                 return NT_STATUS_INVALID_HANDLE;
1978                 
1979         /* check to see if the pipe_user is a Domain Admin since 
1980            account_pol.tdb was already opened as root, this is all we have */
1981            
1982         if ( p->pipe_user.ut.uid != sec_initial_uid()
1983                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) ) 
1984         {
1985                 return NT_STATUS_ACCESS_DENIED;
1986         }
1987
1988         /* according to an NT4 PDC, you can add privileges to SIDs even without
1989            call_lsa_create_account() first.  And you can use any arbitrary SID. */
1990            
1991         sid_copy( &sid, &q_u->sid.sid );
1992         
1993         /* just a little sanity check */
1994         
1995         if ( q_u->count != uni_privnames->count ) {
1996                 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
1997                 return NT_STATUS_INVALID_HANDLE;        
1998         }
1999                 
2000         for ( i=0; i<q_u->count; i++ ) {
2001                 UNISTR4 *uni4_str = &uni_privnames->strings[i];
2002
2003                 /* only try to add non-null strings */
2004
2005                 if ( !uni4_str->string )
2006                         continue;
2007
2008                 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
2009                 
2010                 if ( !grant_privilege_by_name( &sid, privname ) ) {
2011                         DEBUG(2,("_lsa_add_acct_rights: Failed to add privilege [%s]\n", privname ));
2012                         return NT_STATUS_NO_SUCH_PRIVILEGE;
2013                 }
2014         }
2015
2016         return NT_STATUS_OK;
2017 }
2018
2019 /***************************************************************************
2020  ***************************************************************************/
2021
2022 NTSTATUS _lsa_remove_acct_rights(pipes_struct *p, LSA_Q_REMOVE_ACCT_RIGHTS *q_u, LSA_R_REMOVE_ACCT_RIGHTS *r_u)
2023 {
2024         struct lsa_info *info = NULL;
2025         int i = 0;
2026         DOM_SID sid;
2027         fstring privname;
2028         UNISTR4_ARRAY *uni_privnames = q_u->rights;
2029         
2030
2031         /* find the connection policy handle. */
2032         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2033                 return NT_STATUS_INVALID_HANDLE;
2034                 
2035         /* check to see if the pipe_user is a Domain Admin since 
2036            account_pol.tdb was already opened as root, this is all we have */
2037            
2038         if ( p->pipe_user.ut.uid != sec_initial_uid()
2039                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
2040         {
2041                 return NT_STATUS_ACCESS_DENIED;
2042         }
2043
2044         sid_copy( &sid, &q_u->sid.sid );
2045
2046         if ( q_u->removeall ) {
2047                 if ( !revoke_all_privileges( &sid ) ) 
2048                         return NT_STATUS_ACCESS_DENIED;
2049         
2050                 return NT_STATUS_OK;
2051         }
2052         
2053         /* just a little sanity check */
2054         
2055         if ( q_u->count != uni_privnames->count ) {
2056                 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
2057                 return NT_STATUS_INVALID_HANDLE;        
2058         }
2059                 
2060         for ( i=0; i<q_u->count; i++ ) {
2061                 UNISTR4 *uni4_str = &uni_privnames->strings[i];
2062
2063                 /* only try to add non-null strings */
2064
2065                 if ( !uni4_str->string )
2066                         continue;
2067
2068                 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
2069                 
2070                 if ( !revoke_privilege_by_name( &sid, privname ) ) {
2071                         DEBUG(2,("_lsa_remove_acct_rights: Failed to revoke privilege [%s]\n", privname ));
2072                         return NT_STATUS_NO_SUCH_PRIVILEGE;
2073                 }
2074         }
2075
2076         return NT_STATUS_OK;
2077 }
2078
2079
2080 /***************************************************************************
2081  ***************************************************************************/
2082
2083 NTSTATUS _lsa_enum_acct_rights(pipes_struct *p, LSA_Q_ENUM_ACCT_RIGHTS *q_u, LSA_R_ENUM_ACCT_RIGHTS *r_u)
2084 {
2085         struct lsa_info *info = NULL;
2086         DOM_SID sid;
2087         PRIVILEGE_SET privileges;
2088         SE_PRIV mask;
2089         
2090
2091         /* find the connection policy handle. */
2092         
2093         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2094                 return NT_STATUS_INVALID_HANDLE;
2095                 
2096         /* according to an NT4 PDC, you can add privileges to SIDs even without
2097            call_lsa_create_account() first.  And you can use any arbitrary SID. */
2098            
2099         sid_copy( &sid, &q_u->sid.sid );
2100         
2101         if ( !get_privileges_for_sids( &mask, &sid, 1 ) )
2102                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2103
2104         privilege_set_init( &privileges );
2105
2106         if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
2107
2108                 DEBUG(10,("_lsa_enum_acct_rights: %s has %d privileges\n", 
2109                         sid_string_static(&sid), privileges.count));
2110
2111                 r_u->status = init_r_enum_acct_rights( r_u, &privileges );
2112         }
2113         else 
2114                 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
2115
2116         privilege_set_free( &privileges );
2117
2118         return r_u->status;
2119 }
2120
2121
2122 /***************************************************************************
2123  ***************************************************************************/
2124
2125 NTSTATUS _lsa_lookup_priv_value(pipes_struct *p, LSA_Q_LOOKUP_PRIV_VALUE *q_u, LSA_R_LOOKUP_PRIV_VALUE *r_u)
2126 {
2127         struct lsa_info *info = NULL;
2128         fstring name;
2129         LUID_ATTR priv_luid;
2130         SE_PRIV mask;
2131         
2132         /* find the connection policy handle. */
2133         
2134         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2135                 return NT_STATUS_INVALID_HANDLE;
2136                 
2137         unistr2_to_ascii(name, &q_u->privname.unistring, sizeof(name));
2138         
2139         DEBUG(10,("_lsa_lookup_priv_value: name = %s\n", name));
2140
2141         if ( !se_priv_from_name( name, &mask ) )
2142                 return NT_STATUS_NO_SUCH_PRIVILEGE;
2143
2144         priv_luid = get_privilege_luid( &mask );
2145
2146         r_u->luid.low  = priv_luid.luid.low;
2147         r_u->luid.high = priv_luid.luid.high;
2148                 
2149
2150         return NT_STATUS_OK;
2151 }
2152
2153
2154 /*
2155  * From here on the server routines are just dummy ones to make smbd link with
2156  * librpc/gen_ndr/srv_lsa.c. These routines are actually never called, we are
2157  * pulling the server stubs across one by one.
2158  */ 
2159
2160 NTSTATUS _lsa_Delete(pipes_struct *p, struct lsa_Delete *r)
2161 {
2162         p->rng_fault_state = True;
2163         return NT_STATUS_NOT_IMPLEMENTED;
2164 }
2165
2166 NTSTATUS _lsa_EnumPrivs(pipes_struct *p, struct lsa_EnumPrivs *r)
2167 {
2168         p->rng_fault_state = True;
2169         return NT_STATUS_NOT_IMPLEMENTED;
2170 }
2171
2172 NTSTATUS _lsa_QuerySecurity(pipes_struct *p, struct lsa_QuerySecurity *r)
2173 {
2174         p->rng_fault_state = True;
2175         return NT_STATUS_NOT_IMPLEMENTED;
2176 }
2177
2178 NTSTATUS _lsa_SetSecObj(pipes_struct *p, struct lsa_SetSecObj *r)
2179 {
2180         p->rng_fault_state = True;
2181         return NT_STATUS_NOT_IMPLEMENTED;
2182 }
2183
2184 NTSTATUS _lsa_ChangePassword(pipes_struct *p, struct lsa_ChangePassword *r)
2185 {
2186         p->rng_fault_state = True;
2187         return NT_STATUS_NOT_IMPLEMENTED;
2188 }
2189
2190 NTSTATUS _lsa_OpenPolicy(pipes_struct *p, struct lsa_OpenPolicy *r)
2191 {
2192         p->rng_fault_state = True;
2193         return NT_STATUS_NOT_IMPLEMENTED;
2194 }
2195
2196 NTSTATUS _lsa_QueryInfoPolicy(pipes_struct *p, struct lsa_QueryInfoPolicy *r)
2197 {
2198         p->rng_fault_state = True;
2199         return NT_STATUS_NOT_IMPLEMENTED;
2200 }
2201
2202 NTSTATUS _lsa_SetInfoPolicy(pipes_struct *p, struct lsa_SetInfoPolicy *r)
2203 {
2204         p->rng_fault_state = True;
2205         return NT_STATUS_NOT_IMPLEMENTED;
2206 }
2207
2208 NTSTATUS _lsa_ClearAuditLog(pipes_struct *p, struct lsa_ClearAuditLog *r)
2209 {
2210         p->rng_fault_state = True;
2211         return NT_STATUS_NOT_IMPLEMENTED;
2212 }
2213
2214 NTSTATUS _lsa_CreateAccount(pipes_struct *p, struct lsa_CreateAccount *r)
2215 {
2216         p->rng_fault_state = True;
2217         return NT_STATUS_NOT_IMPLEMENTED;
2218 }
2219
2220 NTSTATUS _lsa_EnumAccounts(pipes_struct *p, struct lsa_EnumAccounts *r)
2221 {
2222         p->rng_fault_state = True;
2223         return NT_STATUS_NOT_IMPLEMENTED;
2224 }
2225
2226 NTSTATUS _lsa_EnumTrustDom(pipes_struct *p, struct lsa_EnumTrustDom *r)
2227 {
2228         p->rng_fault_state = True;
2229         return NT_STATUS_NOT_IMPLEMENTED;
2230 }
2231
2232 NTSTATUS _lsa_LookupNames(pipes_struct *p, struct lsa_LookupNames *r)
2233 {
2234         p->rng_fault_state = True;
2235         return NT_STATUS_NOT_IMPLEMENTED;
2236 }
2237
2238 NTSTATUS _lsa_LookupSids(pipes_struct *p, struct lsa_LookupSids *r)
2239 {
2240         p->rng_fault_state = True;
2241         return NT_STATUS_NOT_IMPLEMENTED;
2242 }
2243
2244 NTSTATUS _lsa_OpenAccount(pipes_struct *p, struct lsa_OpenAccount *r)
2245 {
2246         p->rng_fault_state = True;
2247         return NT_STATUS_NOT_IMPLEMENTED;
2248 }
2249
2250 NTSTATUS _lsa_EnumPrivsAccount(pipes_struct *p, struct lsa_EnumPrivsAccount *r)
2251 {
2252         p->rng_fault_state = True;
2253         return NT_STATUS_NOT_IMPLEMENTED;
2254 }
2255
2256 NTSTATUS _lsa_AddPrivilegesToAccount(pipes_struct *p, struct lsa_AddPrivilegesToAccount *r)
2257 {
2258         p->rng_fault_state = True;
2259         return NT_STATUS_NOT_IMPLEMENTED;
2260 }
2261
2262 NTSTATUS _lsa_RemovePrivilegesFromAccount(pipes_struct *p, struct lsa_RemovePrivilegesFromAccount *r)
2263 {
2264         p->rng_fault_state = True;
2265         return NT_STATUS_NOT_IMPLEMENTED;
2266 }
2267
2268 NTSTATUS _lsa_GetQuotasForAccount(pipes_struct *p, struct lsa_GetQuotasForAccount *r)
2269 {
2270         p->rng_fault_state = True;
2271         return NT_STATUS_NOT_IMPLEMENTED;
2272 }
2273
2274 NTSTATUS _lsa_SetQuotasForAccount(pipes_struct *p, struct lsa_SetQuotasForAccount *r)
2275 {
2276         p->rng_fault_state = True;
2277         return NT_STATUS_NOT_IMPLEMENTED;
2278 }
2279
2280 NTSTATUS _lsa_GetSystemAccessAccount(pipes_struct *p, struct lsa_GetSystemAccessAccount *r)
2281 {
2282         p->rng_fault_state = True;
2283         return NT_STATUS_NOT_IMPLEMENTED;
2284 }
2285
2286 NTSTATUS _lsa_SetSystemAccessAccount(pipes_struct *p, struct lsa_SetSystemAccessAccount *r)
2287 {
2288         p->rng_fault_state = True;
2289         return NT_STATUS_NOT_IMPLEMENTED;
2290 }
2291
2292 NTSTATUS _lsa_QueryTrustedDomainInfo(pipes_struct *p, struct lsa_QueryTrustedDomainInfo *r)
2293 {
2294         p->rng_fault_state = True;
2295         return NT_STATUS_NOT_IMPLEMENTED;
2296 }
2297
2298 NTSTATUS _lsa_SetInformationTrustedDomain(pipes_struct *p, struct lsa_SetInformationTrustedDomain *r)
2299 {
2300         p->rng_fault_state = True;
2301         return NT_STATUS_NOT_IMPLEMENTED;
2302 }
2303
2304 NTSTATUS _lsa_QuerySecret(pipes_struct *p, struct lsa_QuerySecret *r)
2305 {
2306         p->rng_fault_state = True;
2307         return NT_STATUS_NOT_IMPLEMENTED;
2308 }
2309
2310 NTSTATUS _lsa_LookupPrivValue(pipes_struct *p, struct lsa_LookupPrivValue *r)
2311 {
2312         p->rng_fault_state = True;
2313         return NT_STATUS_NOT_IMPLEMENTED;
2314 }
2315
2316 NTSTATUS _lsa_LookupPrivName(pipes_struct *p, struct lsa_LookupPrivName *r)
2317 {
2318         p->rng_fault_state = True;
2319         return NT_STATUS_NOT_IMPLEMENTED;
2320 }
2321
2322 NTSTATUS _lsa_LookupPrivDisplayName(pipes_struct *p, struct lsa_LookupPrivDisplayName *r)
2323 {
2324         p->rng_fault_state = True;
2325         return NT_STATUS_NOT_IMPLEMENTED;
2326 }
2327
2328 NTSTATUS _lsa_DeleteObject(pipes_struct *p, struct lsa_DeleteObject *r)
2329 {
2330         p->rng_fault_state = True;
2331         return NT_STATUS_NOT_IMPLEMENTED;
2332 }
2333
2334 NTSTATUS _lsa_EnumAccountsWithUserRight(pipes_struct *p, struct lsa_EnumAccountsWithUserRight *r)
2335 {
2336         p->rng_fault_state = True;
2337         return NT_STATUS_NOT_IMPLEMENTED;
2338 }
2339
2340 NTSTATUS _lsa_EnumAccountRights(pipes_struct *p, struct lsa_EnumAccountRights *r)
2341 {
2342         p->rng_fault_state = True;
2343         return NT_STATUS_NOT_IMPLEMENTED;
2344 }
2345
2346 NTSTATUS _lsa_AddAccountRights(pipes_struct *p, struct lsa_AddAccountRights *r)
2347 {
2348         p->rng_fault_state = True;
2349         return NT_STATUS_NOT_IMPLEMENTED;
2350 }
2351
2352 NTSTATUS _lsa_RemoveAccountRights(pipes_struct *p, struct lsa_RemoveAccountRights *r)
2353 {
2354         p->rng_fault_state = True;
2355         return NT_STATUS_NOT_IMPLEMENTED;
2356 }
2357
2358 NTSTATUS _lsa_QueryTrustedDomainInfoBySid(pipes_struct *p, struct lsa_QueryTrustedDomainInfoBySid *r)
2359 {
2360         p->rng_fault_state = True;
2361         return NT_STATUS_NOT_IMPLEMENTED;
2362 }
2363
2364 NTSTATUS _lsa_SetTrustedDomainInfo(pipes_struct *p, struct lsa_SetTrustedDomainInfo *r)
2365 {
2366         p->rng_fault_state = True;
2367         return NT_STATUS_NOT_IMPLEMENTED;
2368 }
2369
2370 NTSTATUS _lsa_DeleteTrustedDomain(pipes_struct *p, struct lsa_DeleteTrustedDomain *r)
2371 {
2372         p->rng_fault_state = True;
2373         return NT_STATUS_NOT_IMPLEMENTED;
2374 }
2375
2376 NTSTATUS _lsa_StorePrivateData(pipes_struct *p, struct lsa_StorePrivateData *r)
2377 {
2378         p->rng_fault_state = True;
2379         return NT_STATUS_NOT_IMPLEMENTED;
2380 }
2381
2382 NTSTATUS _lsa_RetrievePrivateData(pipes_struct *p, struct lsa_RetrievePrivateData *r)
2383 {
2384         p->rng_fault_state = True;
2385         return NT_STATUS_NOT_IMPLEMENTED;
2386 }
2387
2388 NTSTATUS _lsa_OpenPolicy2(pipes_struct *p, struct lsa_OpenPolicy2 *r)
2389 {
2390         p->rng_fault_state = True;
2391         return NT_STATUS_NOT_IMPLEMENTED;
2392 }
2393
2394 NTSTATUS _lsa_GetUserName(pipes_struct *p, struct lsa_GetUserName *r)
2395 {
2396         p->rng_fault_state = True;
2397         return NT_STATUS_NOT_IMPLEMENTED;
2398 }
2399
2400 NTSTATUS _lsa_QueryInfoPolicy2(pipes_struct *p, struct lsa_QueryInfoPolicy2 *r)
2401 {
2402         p->rng_fault_state = True;
2403         return NT_STATUS_NOT_IMPLEMENTED;
2404 }
2405
2406 NTSTATUS _lsa_SetInfoPolicy2(pipes_struct *p, struct lsa_SetInfoPolicy2 *r)
2407 {
2408         p->rng_fault_state = True;
2409         return NT_STATUS_NOT_IMPLEMENTED;
2410 }
2411
2412 NTSTATUS _lsa_QueryTrustedDomainInfoByName(pipes_struct *p, struct lsa_QueryTrustedDomainInfoByName *r)
2413 {
2414         p->rng_fault_state = True;
2415         return NT_STATUS_NOT_IMPLEMENTED;
2416 }
2417
2418 NTSTATUS _lsa_SetTrustedDomainInfoByName(pipes_struct *p, struct lsa_SetTrustedDomainInfoByName *r)
2419 {
2420         p->rng_fault_state = True;
2421         return NT_STATUS_NOT_IMPLEMENTED;
2422 }
2423
2424 NTSTATUS _lsa_EnumTrustedDomainsEx(pipes_struct *p, struct lsa_EnumTrustedDomainsEx *r)
2425 {
2426         p->rng_fault_state = True;
2427         return NT_STATUS_NOT_IMPLEMENTED;
2428 }
2429
2430 NTSTATUS _lsa_CreateTrustedDomainEx(pipes_struct *p, struct lsa_CreateTrustedDomainEx *r)
2431 {
2432         p->rng_fault_state = True;
2433         return NT_STATUS_NOT_IMPLEMENTED;
2434 }
2435
2436 NTSTATUS _lsa_CloseTrustedDomainEx(pipes_struct *p, struct lsa_CloseTrustedDomainEx *r)
2437 {
2438         p->rng_fault_state = True;
2439         return NT_STATUS_NOT_IMPLEMENTED;
2440 }
2441
2442 NTSTATUS _lsa_QueryDomainInformationPolicy(pipes_struct *p, struct lsa_QueryDomainInformationPolicy *r)
2443 {
2444         p->rng_fault_state = True;
2445         return NT_STATUS_NOT_IMPLEMENTED;
2446 }
2447
2448 NTSTATUS _lsa_SetDomainInformationPolicy(pipes_struct *p, struct lsa_SetDomainInformationPolicy *r)
2449 {
2450         p->rng_fault_state = True;
2451         return NT_STATUS_NOT_IMPLEMENTED;
2452 }
2453
2454 NTSTATUS _lsa_OpenTrustedDomainByName(pipes_struct *p, struct lsa_OpenTrustedDomainByName *r)
2455 {
2456         p->rng_fault_state = True;
2457         return NT_STATUS_NOT_IMPLEMENTED;
2458 }
2459
2460 NTSTATUS _lsa_TestCall(pipes_struct *p, struct lsa_TestCall *r)
2461 {
2462         p->rng_fault_state = True;
2463         return NT_STATUS_NOT_IMPLEMENTED;
2464 }
2465
2466 NTSTATUS _lsa_LookupSids2(pipes_struct *p, struct lsa_LookupSids2 *r)
2467 {
2468         p->rng_fault_state = True;
2469         return NT_STATUS_NOT_IMPLEMENTED;
2470 }
2471
2472 NTSTATUS _lsa_LookupNames2(pipes_struct *p, struct lsa_LookupNames2 *r)
2473 {
2474         p->rng_fault_state = True;
2475         return NT_STATUS_NOT_IMPLEMENTED;
2476 }
2477
2478 NTSTATUS _lsa_CreateTrustedDomainEx2(pipes_struct *p, struct lsa_CreateTrustedDomainEx2 *r)
2479 {
2480         p->rng_fault_state = True;
2481         return NT_STATUS_NOT_IMPLEMENTED;
2482 }
2483
2484 NTSTATUS _lsa_CREDRWRITE(pipes_struct *p, struct lsa_CREDRWRITE *r)
2485 {
2486         p->rng_fault_state = True;
2487         return NT_STATUS_NOT_IMPLEMENTED;
2488 }
2489
2490 NTSTATUS _lsa_CREDRREAD(pipes_struct *p, struct lsa_CREDRREAD *r)
2491 {
2492         p->rng_fault_state = True;
2493         return NT_STATUS_NOT_IMPLEMENTED;
2494 }
2495
2496 NTSTATUS _lsa_CREDRENUMERATE(pipes_struct *p, struct lsa_CREDRENUMERATE *r)
2497 {
2498         p->rng_fault_state = True;
2499         return NT_STATUS_NOT_IMPLEMENTED;
2500 }
2501
2502 NTSTATUS _lsa_CREDRWRITEDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRWRITEDOMAINCREDENTIALS *r)
2503 {
2504         p->rng_fault_state = True;
2505         return NT_STATUS_NOT_IMPLEMENTED;
2506 }
2507
2508 NTSTATUS _lsa_CREDRREADDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRREADDOMAINCREDENTIALS *r)
2509 {
2510         p->rng_fault_state = True;
2511         return NT_STATUS_NOT_IMPLEMENTED;
2512 }
2513
2514 NTSTATUS _lsa_CREDRDELETE(pipes_struct *p, struct lsa_CREDRDELETE *r)
2515 {
2516         p->rng_fault_state = True;
2517         return NT_STATUS_NOT_IMPLEMENTED;
2518 }
2519
2520 NTSTATUS _lsa_CREDRGETTARGETINFO(pipes_struct *p, struct lsa_CREDRGETTARGETINFO *r)
2521 {
2522         p->rng_fault_state = True;
2523         return NT_STATUS_NOT_IMPLEMENTED;
2524 }
2525
2526 NTSTATUS _lsa_CREDRPROFILELOADED(pipes_struct *p, struct lsa_CREDRPROFILELOADED *r)
2527 {
2528         p->rng_fault_state = True;
2529         return NT_STATUS_NOT_IMPLEMENTED;
2530 }
2531
2532 NTSTATUS _lsa_LookupNames3(pipes_struct *p, struct lsa_LookupNames3 *r)
2533 {
2534         p->rng_fault_state = True;
2535         return NT_STATUS_NOT_IMPLEMENTED;
2536 }
2537
2538 NTSTATUS _lsa_CREDRGETSESSIONTYPES(pipes_struct *p, struct lsa_CREDRGETSESSIONTYPES *r)
2539 {
2540         p->rng_fault_state = True;
2541         return NT_STATUS_NOT_IMPLEMENTED;
2542 }
2543
2544 NTSTATUS _lsa_LSARREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARREGISTERAUDITEVENT *r)
2545 {
2546         p->rng_fault_state = True;
2547         return NT_STATUS_NOT_IMPLEMENTED;
2548 }
2549
2550 NTSTATUS _lsa_LSARGENAUDITEVENT(pipes_struct *p, struct lsa_LSARGENAUDITEVENT *r)
2551 {
2552         p->rng_fault_state = True;
2553         return NT_STATUS_NOT_IMPLEMENTED;
2554 }
2555
2556 NTSTATUS _lsa_LSARUNREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARUNREGISTERAUDITEVENT *r)
2557 {
2558         p->rng_fault_state = True;
2559         return NT_STATUS_NOT_IMPLEMENTED;
2560 }
2561
2562 NTSTATUS _lsa_LSARQUERYFORESTTRUSTINFORMATION(pipes_struct *p, struct lsa_LSARQUERYFORESTTRUSTINFORMATION *r)
2563 {
2564         p->rng_fault_state = True;
2565         return NT_STATUS_NOT_IMPLEMENTED;
2566 }
2567
2568 NTSTATUS _lsa_LSARSETFORESTTRUSTINFORMATION(pipes_struct *p, struct lsa_LSARSETFORESTTRUSTINFORMATION *r)
2569 {
2570         p->rng_fault_state = True;
2571         return NT_STATUS_NOT_IMPLEMENTED;
2572 }
2573
2574 NTSTATUS _lsa_CREDRRENAME(pipes_struct *p, struct lsa_CREDRRENAME *r)
2575 {
2576         p->rng_fault_state = True;
2577         return NT_STATUS_NOT_IMPLEMENTED;
2578 }
2579
2580 NTSTATUS _lsa_LookupSids3(pipes_struct *p, struct lsa_LookupSids3 *r)
2581 {
2582         p->rng_fault_state = True;
2583         return NT_STATUS_NOT_IMPLEMENTED;
2584 }
2585
2586 NTSTATUS _lsa_LookupNames4(pipes_struct *p, struct lsa_LookupNames4 *r)
2587 {
2588         p->rng_fault_state = True;
2589         return NT_STATUS_NOT_IMPLEMENTED;
2590 }
2591
2592 NTSTATUS _lsa_LSAROPENPOLICYSCE(pipes_struct *p, struct lsa_LSAROPENPOLICYSCE *r)
2593 {
2594         p->rng_fault_state = True;
2595         return NT_STATUS_NOT_IMPLEMENTED;
2596 }
2597
2598 NTSTATUS _lsa_LSARADTREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTREGISTERSECURITYEVENTSOURCE *r)
2599 {
2600         p->rng_fault_state = True;
2601         return NT_STATUS_NOT_IMPLEMENTED;
2602 }
2603
2604 NTSTATUS _lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE *r)
2605 {
2606         p->rng_fault_state = True;
2607         return NT_STATUS_NOT_IMPLEMENTED;
2608 }
2609
2610 NTSTATUS _lsa_LSARADTREPORTSECURITYEVENT(pipes_struct *p, struct lsa_LSARADTREPORTSECURITYEVENT *r)
2611 {
2612         p->rng_fault_state = True;
2613         return NT_STATUS_NOT_IMPLEMENTED;
2614 }