[GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.
[jra/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         fstring 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         fstrcpy(username, vuser->user.smb_name);
1555         fstrcpy(domname, vuser->user.domain);
1556   
1557         r_u->ptr_user_name = 1;
1558         init_unistr2(&r_u->uni2_user_name, username, UNI_STR_TERMINATE);
1559         init_uni_hdr(&r_u->hdr_user_name, &r_u->uni2_user_name);
1560
1561         r_u->unk1 = 1;
1562   
1563         r_u->ptr_dom_name = 1;
1564         init_unistr2(&r_u->uni2_dom_name, domname,  UNI_STR_TERMINATE);
1565         init_uni_hdr(&r_u->hdr_dom_name, &r_u->uni2_dom_name);
1566
1567         r_u->status = NT_STATUS_OK;
1568   
1569         return r_u->status;
1570 }
1571
1572 /***************************************************************************
1573  Lsa Create Account 
1574  ***************************************************************************/
1575
1576 NTSTATUS _lsa_create_account(pipes_struct *p, LSA_Q_CREATEACCOUNT *q_u, LSA_R_CREATEACCOUNT *r_u)
1577 {
1578         struct lsa_info *handle;
1579         struct lsa_info *info;
1580
1581         /* find the connection policy handle. */
1582         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1583                 return NT_STATUS_INVALID_HANDLE;
1584
1585         /* check if the user have enough rights */
1586
1587         /*
1588          * I don't know if it's the right one. not documented.
1589          * but guessed with rpcclient.
1590          */
1591         if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1592                 return NT_STATUS_ACCESS_DENIED;
1593
1594         /* check to see if the pipe_user is a Domain Admin since 
1595            account_pol.tdb was already opened as root, this is all we have */
1596            
1597         if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1598                 return NT_STATUS_ACCESS_DENIED;
1599                 
1600         if ( is_privileged_sid( &q_u->sid.sid ) )
1601                 return NT_STATUS_OBJECT_NAME_COLLISION;
1602
1603         /* associate the user/group SID with the (unique) handle. */
1604         
1605         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1606                 return NT_STATUS_NO_MEMORY;
1607
1608         ZERO_STRUCTP(info);
1609         info->sid = q_u->sid.sid;
1610         info->access = q_u->access;
1611
1612         /* get a (unique) handle.  open a policy on it. */
1613         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
1614                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1615
1616         return privilege_create_account( &info->sid );
1617 }
1618
1619
1620 /***************************************************************************
1621  Lsa Open Account
1622  ***************************************************************************/
1623
1624 NTSTATUS _lsa_open_account(pipes_struct *p, LSA_Q_OPENACCOUNT *q_u, LSA_R_OPENACCOUNT *r_u)
1625 {
1626         struct lsa_info *handle;
1627         struct lsa_info *info;
1628
1629         /* find the connection policy handle. */
1630         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1631                 return NT_STATUS_INVALID_HANDLE;
1632
1633         /* check if the user have enough rights */
1634
1635         /*
1636          * I don't know if it's the right one. not documented.
1637          * but guessed with rpcclient.
1638          */
1639         if (!(handle->access & POLICY_GET_PRIVATE_INFORMATION))
1640                 return NT_STATUS_ACCESS_DENIED;
1641
1642         /* TODO: Fis the parsing routine before reenabling this check! */
1643         #if 0
1644         if (!lookup_sid(&handle->sid, dom_name, name, &type))
1645                 return NT_STATUS_ACCESS_DENIED;
1646         #endif
1647         /* associate the user/group SID with the (unique) handle. */
1648         if ((info = SMB_MALLOC_P(struct lsa_info)) == NULL)
1649                 return NT_STATUS_NO_MEMORY;
1650
1651         ZERO_STRUCTP(info);
1652         info->sid = q_u->sid.sid;
1653         info->access = q_u->access;
1654
1655         /* get a (unique) handle.  open a policy on it. */
1656         if (!create_policy_hnd(p, &r_u->pol, free_lsa_info, (void *)info))
1657                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1658
1659         return NT_STATUS_OK;
1660 }
1661
1662 /***************************************************************************
1663  For a given SID, enumerate all the privilege this account has.
1664  ***************************************************************************/
1665
1666 NTSTATUS _lsa_enum_privsaccount(pipes_struct *p, prs_struct *ps, LSA_Q_ENUMPRIVSACCOUNT *q_u, LSA_R_ENUMPRIVSACCOUNT *r_u)
1667 {
1668         struct lsa_info *info=NULL;
1669         SE_PRIV mask;
1670         PRIVILEGE_SET privileges;
1671
1672         /* find the connection policy handle. */
1673         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1674                 return NT_STATUS_INVALID_HANDLE;
1675
1676         if ( !get_privileges_for_sids( &mask, &info->sid, 1 ) ) 
1677                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1678
1679         privilege_set_init( &privileges );
1680
1681         if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
1682
1683                 DEBUG(10,("_lsa_enum_privsaccount: %s has %d privileges\n", 
1684                         sid_string_static(&info->sid), privileges.count));
1685
1686                 r_u->status = init_lsa_r_enum_privsaccount(ps->mem_ctx, r_u, privileges.set, privileges.count, 0);
1687         }
1688         else
1689                 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
1690
1691         privilege_set_free( &privileges );
1692
1693         return r_u->status;
1694 }
1695
1696 /***************************************************************************
1697  
1698  ***************************************************************************/
1699
1700 NTSTATUS _lsa_getsystemaccount(pipes_struct *p, LSA_Q_GETSYSTEMACCOUNT *q_u, LSA_R_GETSYSTEMACCOUNT *r_u)
1701 {
1702         struct lsa_info *info=NULL;
1703
1704         /* find the connection policy handle. */
1705
1706         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1707                 return NT_STATUS_INVALID_HANDLE;
1708
1709         if (!lookup_sid(p->mem_ctx, &info->sid, NULL, NULL, NULL))
1710                 return NT_STATUS_ACCESS_DENIED;
1711
1712         /*
1713           0x01 -> Log on locally
1714           0x02 -> Access this computer from network
1715           0x04 -> Log on as a batch job
1716           0x10 -> Log on as a service
1717           
1718           they can be ORed together
1719         */
1720
1721         r_u->access = PR_LOG_ON_LOCALLY | PR_ACCESS_FROM_NETWORK;
1722
1723         return NT_STATUS_OK;
1724 }
1725
1726 /***************************************************************************
1727   update the systemaccount information
1728  ***************************************************************************/
1729
1730 NTSTATUS _lsa_setsystemaccount(pipes_struct *p, LSA_Q_SETSYSTEMACCOUNT *q_u, LSA_R_SETSYSTEMACCOUNT *r_u)
1731 {
1732         struct lsa_info *info=NULL;
1733         GROUP_MAP map;
1734         r_u->status = NT_STATUS_OK;
1735
1736         /* find the connection policy handle. */
1737         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1738                 return NT_STATUS_INVALID_HANDLE;
1739
1740         /* check to see if the pipe_user is a Domain Admin since 
1741            account_pol.tdb was already opened as root, this is all we have */
1742            
1743         if ( !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1744                 return NT_STATUS_ACCESS_DENIED;
1745
1746         if (!pdb_getgrsid(&map, info->sid))
1747                 return NT_STATUS_NO_SUCH_GROUP;
1748
1749         return pdb_update_group_mapping_entry(&map);
1750 }
1751
1752 /***************************************************************************
1753  For a given SID, add some privileges.
1754  ***************************************************************************/
1755
1756 NTSTATUS _lsa_addprivs(pipes_struct *p, LSA_Q_ADDPRIVS *q_u, LSA_R_ADDPRIVS *r_u)
1757 {
1758         struct lsa_info *info = NULL;
1759         SE_PRIV mask;
1760         PRIVILEGE_SET *set = NULL;
1761
1762         /* find the connection policy handle. */
1763         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1764                 return NT_STATUS_INVALID_HANDLE;
1765                 
1766         /* check to see if the pipe_user is root or a Domain Admin since 
1767            account_pol.tdb was already opened as root, this is all we have */
1768            
1769         if ( p->pipe_user.ut.uid != sec_initial_uid() 
1770                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
1771         {
1772                 return NT_STATUS_ACCESS_DENIED;
1773         }
1774
1775         set = &q_u->set;
1776
1777         if ( !privilege_set_to_se_priv( &mask, set ) )
1778                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1779
1780         if ( !grant_privilege( &info->sid, &mask ) ) {
1781                 DEBUG(3,("_lsa_addprivs: grant_privilege(%s) failed!\n",
1782                         sid_string_static(&info->sid) ));
1783                 DEBUG(3,("Privilege mask:\n"));
1784                 dump_se_priv( DBGC_ALL, 3, &mask );
1785                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1786         }
1787
1788         return NT_STATUS_OK;
1789 }
1790
1791 /***************************************************************************
1792  For a given SID, remove some privileges.
1793  ***************************************************************************/
1794
1795 NTSTATUS _lsa_removeprivs(pipes_struct *p, LSA_Q_REMOVEPRIVS *q_u, LSA_R_REMOVEPRIVS *r_u)
1796 {
1797         struct lsa_info *info = NULL;
1798         SE_PRIV mask;
1799         PRIVILEGE_SET *set = NULL;
1800
1801         /* find the connection policy handle. */
1802         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1803                 return NT_STATUS_INVALID_HANDLE;
1804
1805         /* check to see if the pipe_user is root or a Domain Admin since 
1806            account_pol.tdb was already opened as root, this is all we have */
1807            
1808         if ( p->pipe_user.ut.uid != sec_initial_uid()
1809                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) ) 
1810         {
1811                 return NT_STATUS_ACCESS_DENIED;
1812         }
1813
1814         set = &q_u->set;
1815
1816         if ( !privilege_set_to_se_priv( &mask, set ) )
1817                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1818
1819         if ( !revoke_privilege( &info->sid, &mask ) ) {
1820                 DEBUG(3,("_lsa_removeprivs: revoke_privilege(%s) failed!\n",
1821                         sid_string_static(&info->sid) ));
1822                 DEBUG(3,("Privilege mask:\n"));
1823                 dump_se_priv( DBGC_ALL, 3, &mask );
1824                 return NT_STATUS_NO_SUCH_PRIVILEGE;
1825         }
1826
1827         return NT_STATUS_OK;
1828 }
1829
1830 /***************************************************************************
1831  For a given SID, remove some privileges.
1832  ***************************************************************************/
1833
1834 NTSTATUS _lsa_query_secobj(pipes_struct *p, LSA_Q_QUERY_SEC_OBJ *q_u, LSA_R_QUERY_SEC_OBJ *r_u)
1835 {
1836         struct lsa_info *handle=NULL;
1837         SEC_DESC *psd = NULL;
1838         size_t sd_size;
1839         NTSTATUS status;
1840
1841         r_u->status = NT_STATUS_OK;
1842
1843         /* find the connection policy handle. */
1844         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1845                 return NT_STATUS_INVALID_HANDLE;
1846
1847         /* check if the user have enough rights */
1848         if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1849                 return NT_STATUS_ACCESS_DENIED;
1850
1851
1852         switch (q_u->sec_info) {
1853         case 1:
1854                 /* SD contains only the owner */
1855
1856                 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1857                 if(!NT_STATUS_IS_OK(status))
1858                         return NT_STATUS_NO_MEMORY;
1859
1860
1861                 if((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1862                         return NT_STATUS_NO_MEMORY;
1863                 break;
1864         case 4:
1865                 /* SD contains only the ACL */
1866
1867                 status=lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
1868                 if(!NT_STATUS_IS_OK(status))
1869                         return NT_STATUS_NO_MEMORY;
1870
1871                 if((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
1872                         return NT_STATUS_NO_MEMORY;
1873                 break;
1874         default:
1875                 return NT_STATUS_INVALID_LEVEL;
1876         }
1877
1878         r_u->ptr=1;
1879
1880         return r_u->status;
1881 }
1882
1883 #if 0   /* AD DC work in ongoing in Samba 4 */
1884
1885 /***************************************************************************
1886  ***************************************************************************/
1887
1888 NTSTATUS _lsa_query_info2(pipes_struct *p, LSA_Q_QUERY_INFO2 *q_u, LSA_R_QUERY_INFO2 *r_u)
1889 {
1890         struct lsa_info *handle;
1891         const char *nb_name;
1892         char *dns_name = NULL;
1893         char *forest_name = NULL;
1894         DOM_SID *sid = NULL;
1895         struct GUID guid;
1896         fstring dnsdomname;
1897
1898         ZERO_STRUCT(guid);
1899         r_u->status = NT_STATUS_OK;
1900
1901         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&handle))
1902                 return NT_STATUS_INVALID_HANDLE;
1903
1904         switch (q_u->info_class) {
1905         case 0x0c:
1906                 /* check if the user have enough rights */
1907                 if (!(handle->access & POLICY_VIEW_LOCAL_INFORMATION))
1908                         return NT_STATUS_ACCESS_DENIED;
1909
1910                 /* Request PolicyPrimaryDomainInformation. */
1911                 switch (lp_server_role()) {
1912                         case ROLE_DOMAIN_PDC:
1913                         case ROLE_DOMAIN_BDC:
1914                                 nb_name = get_global_sam_name();
1915                                 /* ugly temp hack for these next two */
1916
1917                                 /* This should be a 'netbios domain -> DNS domain' mapping */
1918                                 dnsdomname[0] = '\0';
1919                                 get_mydnsdomname(dnsdomname);
1920                                 strlower_m(dnsdomname);
1921                                 
1922                                 dns_name = dnsdomname;
1923                                 forest_name = dnsdomname;
1924
1925                                 sid = get_global_sam_sid();
1926                                 secrets_fetch_domain_guid(lp_workgroup(), &guid);
1927                                 break;
1928                         default:
1929                                 return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
1930                 }
1931                 init_dns_dom_info(&r_u->info.dns_dom_info, nb_name, dns_name, 
1932                                   forest_name,&guid,sid);
1933                 break;
1934         default:
1935                 DEBUG(0,("_lsa_query_info2: unknown info level in Lsa Query: %d\n", q_u->info_class));
1936                 r_u->status = NT_STATUS_INVALID_INFO_CLASS;
1937                 break;
1938         }
1939
1940         if (NT_STATUS_IS_OK(r_u->status)) {
1941                 r_u->ptr = 0x1;
1942                 r_u->info_class = q_u->info_class;
1943         }
1944
1945         return r_u->status;
1946 }
1947 #endif  /* AD DC work in ongoing in Samba 4 */
1948
1949 /***************************************************************************
1950  ***************************************************************************/
1951
1952 NTSTATUS _lsa_add_acct_rights(pipes_struct *p, LSA_Q_ADD_ACCT_RIGHTS *q_u, LSA_R_ADD_ACCT_RIGHTS *r_u)
1953 {
1954         struct lsa_info *info = NULL;
1955         int i = 0;
1956         DOM_SID sid;
1957         fstring privname;
1958         UNISTR4_ARRAY *uni_privnames = q_u->rights;
1959         
1960
1961         /* find the connection policy handle. */
1962         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
1963                 return NT_STATUS_INVALID_HANDLE;
1964                 
1965         /* check to see if the pipe_user is a Domain Admin since 
1966            account_pol.tdb was already opened as root, this is all we have */
1967            
1968         if ( p->pipe_user.ut.uid != sec_initial_uid()
1969                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) ) 
1970         {
1971                 return NT_STATUS_ACCESS_DENIED;
1972         }
1973
1974         /* according to an NT4 PDC, you can add privileges to SIDs even without
1975            call_lsa_create_account() first.  And you can use any arbitrary SID. */
1976            
1977         sid_copy( &sid, &q_u->sid.sid );
1978         
1979         /* just a little sanity check */
1980         
1981         if ( q_u->count != uni_privnames->count ) {
1982                 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
1983                 return NT_STATUS_INVALID_HANDLE;        
1984         }
1985                 
1986         for ( i=0; i<q_u->count; i++ ) {
1987                 UNISTR4 *uni4_str = &uni_privnames->strings[i];
1988
1989                 /* only try to add non-null strings */
1990
1991                 if ( !uni4_str->string )
1992                         continue;
1993
1994                 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
1995                 
1996                 if ( !grant_privilege_by_name( &sid, privname ) ) {
1997                         DEBUG(2,("_lsa_add_acct_rights: Failed to add privilege [%s]\n", privname ));
1998                         return NT_STATUS_NO_SUCH_PRIVILEGE;
1999                 }
2000         }
2001
2002         return NT_STATUS_OK;
2003 }
2004
2005 /***************************************************************************
2006  ***************************************************************************/
2007
2008 NTSTATUS _lsa_remove_acct_rights(pipes_struct *p, LSA_Q_REMOVE_ACCT_RIGHTS *q_u, LSA_R_REMOVE_ACCT_RIGHTS *r_u)
2009 {
2010         struct lsa_info *info = NULL;
2011         int i = 0;
2012         DOM_SID sid;
2013         fstring privname;
2014         UNISTR4_ARRAY *uni_privnames = q_u->rights;
2015         
2016
2017         /* find the connection policy handle. */
2018         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2019                 return NT_STATUS_INVALID_HANDLE;
2020                 
2021         /* check to see if the pipe_user is a Domain Admin since 
2022            account_pol.tdb was already opened as root, this is all we have */
2023            
2024         if ( p->pipe_user.ut.uid != sec_initial_uid()
2025                 && !nt_token_check_domain_rid( p->pipe_user.nt_user_token, DOMAIN_GROUP_RID_ADMINS ) )
2026         {
2027                 return NT_STATUS_ACCESS_DENIED;
2028         }
2029
2030         sid_copy( &sid, &q_u->sid.sid );
2031
2032         if ( q_u->removeall ) {
2033                 if ( !revoke_all_privileges( &sid ) ) 
2034                         return NT_STATUS_ACCESS_DENIED;
2035         
2036                 return NT_STATUS_OK;
2037         }
2038         
2039         /* just a little sanity check */
2040         
2041         if ( q_u->count != uni_privnames->count ) {
2042                 DEBUG(0,("_lsa_add_acct_rights: count != number of UNISTR2 elements!\n"));
2043                 return NT_STATUS_INVALID_HANDLE;        
2044         }
2045                 
2046         for ( i=0; i<q_u->count; i++ ) {
2047                 UNISTR4 *uni4_str = &uni_privnames->strings[i];
2048
2049                 /* only try to add non-null strings */
2050
2051                 if ( !uni4_str->string )
2052                         continue;
2053
2054                 rpcstr_pull( privname, uni4_str->string->buffer, sizeof(privname), -1, STR_TERMINATE );
2055                 
2056                 if ( !revoke_privilege_by_name( &sid, privname ) ) {
2057                         DEBUG(2,("_lsa_remove_acct_rights: Failed to revoke privilege [%s]\n", privname ));
2058                         return NT_STATUS_NO_SUCH_PRIVILEGE;
2059                 }
2060         }
2061
2062         return NT_STATUS_OK;
2063 }
2064
2065
2066 /***************************************************************************
2067  ***************************************************************************/
2068
2069 NTSTATUS _lsa_enum_acct_rights(pipes_struct *p, LSA_Q_ENUM_ACCT_RIGHTS *q_u, LSA_R_ENUM_ACCT_RIGHTS *r_u)
2070 {
2071         struct lsa_info *info = NULL;
2072         DOM_SID sid;
2073         PRIVILEGE_SET privileges;
2074         SE_PRIV mask;
2075         
2076
2077         /* find the connection policy handle. */
2078         
2079         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2080                 return NT_STATUS_INVALID_HANDLE;
2081                 
2082         /* according to an NT4 PDC, you can add privileges to SIDs even without
2083            call_lsa_create_account() first.  And you can use any arbitrary SID. */
2084            
2085         sid_copy( &sid, &q_u->sid.sid );
2086         
2087         if ( !get_privileges_for_sids( &mask, &sid, 1 ) )
2088                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2089
2090         privilege_set_init( &privileges );
2091
2092         if ( se_priv_to_privilege_set( &privileges, &mask ) ) {
2093
2094                 DEBUG(10,("_lsa_enum_acct_rights: %s has %d privileges\n", 
2095                         sid_string_static(&sid), privileges.count));
2096
2097                 r_u->status = init_r_enum_acct_rights( r_u, &privileges );
2098         }
2099         else 
2100                 r_u->status = NT_STATUS_NO_SUCH_PRIVILEGE;
2101
2102         privilege_set_free( &privileges );
2103
2104         return r_u->status;
2105 }
2106
2107
2108 /***************************************************************************
2109  ***************************************************************************/
2110
2111 NTSTATUS _lsa_lookup_priv_value(pipes_struct *p, LSA_Q_LOOKUP_PRIV_VALUE *q_u, LSA_R_LOOKUP_PRIV_VALUE *r_u)
2112 {
2113         struct lsa_info *info = NULL;
2114         fstring name;
2115         LUID_ATTR priv_luid;
2116         SE_PRIV mask;
2117         
2118         /* find the connection policy handle. */
2119         
2120         if (!find_policy_by_hnd(p, &q_u->pol, (void **)(void *)&info))
2121                 return NT_STATUS_INVALID_HANDLE;
2122                 
2123         unistr2_to_ascii(name, &q_u->privname.unistring, sizeof(name));
2124         
2125         DEBUG(10,("_lsa_lookup_priv_value: name = %s\n", name));
2126
2127         if ( !se_priv_from_name( name, &mask ) )
2128                 return NT_STATUS_NO_SUCH_PRIVILEGE;
2129
2130         priv_luid = get_privilege_luid( &mask );
2131
2132         r_u->luid.low  = priv_luid.luid.low;
2133         r_u->luid.high = priv_luid.luid.high;
2134                 
2135
2136         return NT_STATUS_OK;
2137 }
2138
2139
2140 /*
2141  * From here on the server routines are just dummy ones to make smbd link with
2142  * librpc/gen_ndr/srv_lsa.c. These routines are actually never called, we are
2143  * pulling the server stubs across one by one.
2144  */ 
2145
2146 NTSTATUS _lsa_Delete(pipes_struct *p, struct lsa_Delete *r)
2147 {
2148         p->rng_fault_state = True;
2149         return NT_STATUS_NOT_IMPLEMENTED;
2150 }
2151
2152 NTSTATUS _lsa_EnumPrivs(pipes_struct *p, struct lsa_EnumPrivs *r)
2153 {
2154         p->rng_fault_state = True;
2155         return NT_STATUS_NOT_IMPLEMENTED;
2156 }
2157
2158 NTSTATUS _lsa_QuerySecurity(pipes_struct *p, struct lsa_QuerySecurity *r)
2159 {
2160         p->rng_fault_state = True;
2161         return NT_STATUS_NOT_IMPLEMENTED;
2162 }
2163
2164 NTSTATUS _lsa_SetSecObj(pipes_struct *p, struct lsa_SetSecObj *r)
2165 {
2166         p->rng_fault_state = True;
2167         return NT_STATUS_NOT_IMPLEMENTED;
2168 }
2169
2170 NTSTATUS _lsa_ChangePassword(pipes_struct *p, struct lsa_ChangePassword *r)
2171 {
2172         p->rng_fault_state = True;
2173         return NT_STATUS_NOT_IMPLEMENTED;
2174 }
2175
2176 NTSTATUS _lsa_OpenPolicy(pipes_struct *p, struct lsa_OpenPolicy *r)
2177 {
2178         p->rng_fault_state = True;
2179         return NT_STATUS_NOT_IMPLEMENTED;
2180 }
2181
2182 NTSTATUS _lsa_QueryInfoPolicy(pipes_struct *p, struct lsa_QueryInfoPolicy *r)
2183 {
2184         p->rng_fault_state = True;
2185         return NT_STATUS_NOT_IMPLEMENTED;
2186 }
2187
2188 NTSTATUS _lsa_SetInfoPolicy(pipes_struct *p, struct lsa_SetInfoPolicy *r)
2189 {
2190         p->rng_fault_state = True;
2191         return NT_STATUS_NOT_IMPLEMENTED;
2192 }
2193
2194 NTSTATUS _lsa_ClearAuditLog(pipes_struct *p, struct lsa_ClearAuditLog *r)
2195 {
2196         p->rng_fault_state = True;
2197         return NT_STATUS_NOT_IMPLEMENTED;
2198 }
2199
2200 NTSTATUS _lsa_CreateAccount(pipes_struct *p, struct lsa_CreateAccount *r)
2201 {
2202         p->rng_fault_state = True;
2203         return NT_STATUS_NOT_IMPLEMENTED;
2204 }
2205
2206 NTSTATUS _lsa_EnumAccounts(pipes_struct *p, struct lsa_EnumAccounts *r)
2207 {
2208         p->rng_fault_state = True;
2209         return NT_STATUS_NOT_IMPLEMENTED;
2210 }
2211
2212 NTSTATUS _lsa_EnumTrustDom(pipes_struct *p, struct lsa_EnumTrustDom *r)
2213 {
2214         p->rng_fault_state = True;
2215         return NT_STATUS_NOT_IMPLEMENTED;
2216 }
2217
2218 NTSTATUS _lsa_LookupNames(pipes_struct *p, struct lsa_LookupNames *r)
2219 {
2220         p->rng_fault_state = True;
2221         return NT_STATUS_NOT_IMPLEMENTED;
2222 }
2223
2224 NTSTATUS _lsa_LookupSids(pipes_struct *p, struct lsa_LookupSids *r)
2225 {
2226         p->rng_fault_state = True;
2227         return NT_STATUS_NOT_IMPLEMENTED;
2228 }
2229
2230 NTSTATUS _lsa_OpenAccount(pipes_struct *p, struct lsa_OpenAccount *r)
2231 {
2232         p->rng_fault_state = True;
2233         return NT_STATUS_NOT_IMPLEMENTED;
2234 }
2235
2236 NTSTATUS _lsa_EnumPrivsAccount(pipes_struct *p, struct lsa_EnumPrivsAccount *r)
2237 {
2238         p->rng_fault_state = True;
2239         return NT_STATUS_NOT_IMPLEMENTED;
2240 }
2241
2242 NTSTATUS _lsa_AddPrivilegesToAccount(pipes_struct *p, struct lsa_AddPrivilegesToAccount *r)
2243 {
2244         p->rng_fault_state = True;
2245         return NT_STATUS_NOT_IMPLEMENTED;
2246 }
2247
2248 NTSTATUS _lsa_RemovePrivilegesFromAccount(pipes_struct *p, struct lsa_RemovePrivilegesFromAccount *r)
2249 {
2250         p->rng_fault_state = True;
2251         return NT_STATUS_NOT_IMPLEMENTED;
2252 }
2253
2254 NTSTATUS _lsa_GetQuotasForAccount(pipes_struct *p, struct lsa_GetQuotasForAccount *r)
2255 {
2256         p->rng_fault_state = True;
2257         return NT_STATUS_NOT_IMPLEMENTED;
2258 }
2259
2260 NTSTATUS _lsa_SetQuotasForAccount(pipes_struct *p, struct lsa_SetQuotasForAccount *r)
2261 {
2262         p->rng_fault_state = True;
2263         return NT_STATUS_NOT_IMPLEMENTED;
2264 }
2265
2266 NTSTATUS _lsa_GetSystemAccessAccount(pipes_struct *p, struct lsa_GetSystemAccessAccount *r)
2267 {
2268         p->rng_fault_state = True;
2269         return NT_STATUS_NOT_IMPLEMENTED;
2270 }
2271
2272 NTSTATUS _lsa_SetSystemAccessAccount(pipes_struct *p, struct lsa_SetSystemAccessAccount *r)
2273 {
2274         p->rng_fault_state = True;
2275         return NT_STATUS_NOT_IMPLEMENTED;
2276 }
2277
2278 NTSTATUS _lsa_QueryTrustedDomainInfo(pipes_struct *p, struct lsa_QueryTrustedDomainInfo *r)
2279 {
2280         p->rng_fault_state = True;
2281         return NT_STATUS_NOT_IMPLEMENTED;
2282 }
2283
2284 NTSTATUS _lsa_SetInformationTrustedDomain(pipes_struct *p, struct lsa_SetInformationTrustedDomain *r)
2285 {
2286         p->rng_fault_state = True;
2287         return NT_STATUS_NOT_IMPLEMENTED;
2288 }
2289
2290 NTSTATUS _lsa_QuerySecret(pipes_struct *p, struct lsa_QuerySecret *r)
2291 {
2292         p->rng_fault_state = True;
2293         return NT_STATUS_NOT_IMPLEMENTED;
2294 }
2295
2296 NTSTATUS _lsa_LookupPrivValue(pipes_struct *p, struct lsa_LookupPrivValue *r)
2297 {
2298         p->rng_fault_state = True;
2299         return NT_STATUS_NOT_IMPLEMENTED;
2300 }
2301
2302 NTSTATUS _lsa_LookupPrivName(pipes_struct *p, struct lsa_LookupPrivName *r)
2303 {
2304         p->rng_fault_state = True;
2305         return NT_STATUS_NOT_IMPLEMENTED;
2306 }
2307
2308 NTSTATUS _lsa_LookupPrivDisplayName(pipes_struct *p, struct lsa_LookupPrivDisplayName *r)
2309 {
2310         p->rng_fault_state = True;
2311         return NT_STATUS_NOT_IMPLEMENTED;
2312 }
2313
2314 NTSTATUS _lsa_DeleteObject(pipes_struct *p, struct lsa_DeleteObject *r)
2315 {
2316         p->rng_fault_state = True;
2317         return NT_STATUS_NOT_IMPLEMENTED;
2318 }
2319
2320 NTSTATUS _lsa_EnumAccountsWithUserRight(pipes_struct *p, struct lsa_EnumAccountsWithUserRight *r)
2321 {
2322         p->rng_fault_state = True;
2323         return NT_STATUS_NOT_IMPLEMENTED;
2324 }
2325
2326 NTSTATUS _lsa_EnumAccountRights(pipes_struct *p, struct lsa_EnumAccountRights *r)
2327 {
2328         p->rng_fault_state = True;
2329         return NT_STATUS_NOT_IMPLEMENTED;
2330 }
2331
2332 NTSTATUS _lsa_AddAccountRights(pipes_struct *p, struct lsa_AddAccountRights *r)
2333 {
2334         p->rng_fault_state = True;
2335         return NT_STATUS_NOT_IMPLEMENTED;
2336 }
2337
2338 NTSTATUS _lsa_RemoveAccountRights(pipes_struct *p, struct lsa_RemoveAccountRights *r)
2339 {
2340         p->rng_fault_state = True;
2341         return NT_STATUS_NOT_IMPLEMENTED;
2342 }
2343
2344 NTSTATUS _lsa_QueryTrustedDomainInfoBySid(pipes_struct *p, struct lsa_QueryTrustedDomainInfoBySid *r)
2345 {
2346         p->rng_fault_state = True;
2347         return NT_STATUS_NOT_IMPLEMENTED;
2348 }
2349
2350 NTSTATUS _lsa_SetTrustedDomainInfo(pipes_struct *p, struct lsa_SetTrustedDomainInfo *r)
2351 {
2352         p->rng_fault_state = True;
2353         return NT_STATUS_NOT_IMPLEMENTED;
2354 }
2355
2356 NTSTATUS _lsa_DeleteTrustedDomain(pipes_struct *p, struct lsa_DeleteTrustedDomain *r)
2357 {
2358         p->rng_fault_state = True;
2359         return NT_STATUS_NOT_IMPLEMENTED;
2360 }
2361
2362 NTSTATUS _lsa_StorePrivateData(pipes_struct *p, struct lsa_StorePrivateData *r)
2363 {
2364         p->rng_fault_state = True;
2365         return NT_STATUS_NOT_IMPLEMENTED;
2366 }
2367
2368 NTSTATUS _lsa_RetrievePrivateData(pipes_struct *p, struct lsa_RetrievePrivateData *r)
2369 {
2370         p->rng_fault_state = True;
2371         return NT_STATUS_NOT_IMPLEMENTED;
2372 }
2373
2374 NTSTATUS _lsa_OpenPolicy2(pipes_struct *p, struct lsa_OpenPolicy2 *r)
2375 {
2376         p->rng_fault_state = True;
2377         return NT_STATUS_NOT_IMPLEMENTED;
2378 }
2379
2380 NTSTATUS _lsa_GetUserName(pipes_struct *p, struct lsa_GetUserName *r)
2381 {
2382         p->rng_fault_state = True;
2383         return NT_STATUS_NOT_IMPLEMENTED;
2384 }
2385
2386 NTSTATUS _lsa_QueryInfoPolicy2(pipes_struct *p, struct lsa_QueryInfoPolicy2 *r)
2387 {
2388         p->rng_fault_state = True;
2389         return NT_STATUS_NOT_IMPLEMENTED;
2390 }
2391
2392 NTSTATUS _lsa_SetInfoPolicy2(pipes_struct *p, struct lsa_SetInfoPolicy2 *r)
2393 {
2394         p->rng_fault_state = True;
2395         return NT_STATUS_NOT_IMPLEMENTED;
2396 }
2397
2398 NTSTATUS _lsa_QueryTrustedDomainInfoByName(pipes_struct *p, struct lsa_QueryTrustedDomainInfoByName *r)
2399 {
2400         p->rng_fault_state = True;
2401         return NT_STATUS_NOT_IMPLEMENTED;
2402 }
2403
2404 NTSTATUS _lsa_SetTrustedDomainInfoByName(pipes_struct *p, struct lsa_SetTrustedDomainInfoByName *r)
2405 {
2406         p->rng_fault_state = True;
2407         return NT_STATUS_NOT_IMPLEMENTED;
2408 }
2409
2410 NTSTATUS _lsa_EnumTrustedDomainsEx(pipes_struct *p, struct lsa_EnumTrustedDomainsEx *r)
2411 {
2412         p->rng_fault_state = True;
2413         return NT_STATUS_NOT_IMPLEMENTED;
2414 }
2415
2416 NTSTATUS _lsa_CreateTrustedDomainEx(pipes_struct *p, struct lsa_CreateTrustedDomainEx *r)
2417 {
2418         p->rng_fault_state = True;
2419         return NT_STATUS_NOT_IMPLEMENTED;
2420 }
2421
2422 NTSTATUS _lsa_CloseTrustedDomainEx(pipes_struct *p, struct lsa_CloseTrustedDomainEx *r)
2423 {
2424         p->rng_fault_state = True;
2425         return NT_STATUS_NOT_IMPLEMENTED;
2426 }
2427
2428 NTSTATUS _lsa_QueryDomainInformationPolicy(pipes_struct *p, struct lsa_QueryDomainInformationPolicy *r)
2429 {
2430         p->rng_fault_state = True;
2431         return NT_STATUS_NOT_IMPLEMENTED;
2432 }
2433
2434 NTSTATUS _lsa_SetDomainInformationPolicy(pipes_struct *p, struct lsa_SetDomainInformationPolicy *r)
2435 {
2436         p->rng_fault_state = True;
2437         return NT_STATUS_NOT_IMPLEMENTED;
2438 }
2439
2440 NTSTATUS _lsa_OpenTrustedDomainByName(pipes_struct *p, struct lsa_OpenTrustedDomainByName *r)
2441 {
2442         p->rng_fault_state = True;
2443         return NT_STATUS_NOT_IMPLEMENTED;
2444 }
2445
2446 NTSTATUS _lsa_TestCall(pipes_struct *p, struct lsa_TestCall *r)
2447 {
2448         p->rng_fault_state = True;
2449         return NT_STATUS_NOT_IMPLEMENTED;
2450 }
2451
2452 NTSTATUS _lsa_LookupSids2(pipes_struct *p, struct lsa_LookupSids2 *r)
2453 {
2454         p->rng_fault_state = True;
2455         return NT_STATUS_NOT_IMPLEMENTED;
2456 }
2457
2458 NTSTATUS _lsa_LookupNames2(pipes_struct *p, struct lsa_LookupNames2 *r)
2459 {
2460         p->rng_fault_state = True;
2461         return NT_STATUS_NOT_IMPLEMENTED;
2462 }
2463
2464 NTSTATUS _lsa_CreateTrustedDomainEx2(pipes_struct *p, struct lsa_CreateTrustedDomainEx2 *r)
2465 {
2466         p->rng_fault_state = True;
2467         return NT_STATUS_NOT_IMPLEMENTED;
2468 }
2469
2470 NTSTATUS _lsa_CREDRWRITE(pipes_struct *p, struct lsa_CREDRWRITE *r)
2471 {
2472         p->rng_fault_state = True;
2473         return NT_STATUS_NOT_IMPLEMENTED;
2474 }
2475
2476 NTSTATUS _lsa_CREDRREAD(pipes_struct *p, struct lsa_CREDRREAD *r)
2477 {
2478         p->rng_fault_state = True;
2479         return NT_STATUS_NOT_IMPLEMENTED;
2480 }
2481
2482 NTSTATUS _lsa_CREDRENUMERATE(pipes_struct *p, struct lsa_CREDRENUMERATE *r)
2483 {
2484         p->rng_fault_state = True;
2485         return NT_STATUS_NOT_IMPLEMENTED;
2486 }
2487
2488 NTSTATUS _lsa_CREDRWRITEDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRWRITEDOMAINCREDENTIALS *r)
2489 {
2490         p->rng_fault_state = True;
2491         return NT_STATUS_NOT_IMPLEMENTED;
2492 }
2493
2494 NTSTATUS _lsa_CREDRREADDOMAINCREDENTIALS(pipes_struct *p, struct lsa_CREDRREADDOMAINCREDENTIALS *r)
2495 {
2496         p->rng_fault_state = True;
2497         return NT_STATUS_NOT_IMPLEMENTED;
2498 }
2499
2500 NTSTATUS _lsa_CREDRDELETE(pipes_struct *p, struct lsa_CREDRDELETE *r)
2501 {
2502         p->rng_fault_state = True;
2503         return NT_STATUS_NOT_IMPLEMENTED;
2504 }
2505
2506 NTSTATUS _lsa_CREDRGETTARGETINFO(pipes_struct *p, struct lsa_CREDRGETTARGETINFO *r)
2507 {
2508         p->rng_fault_state = True;
2509         return NT_STATUS_NOT_IMPLEMENTED;
2510 }
2511
2512 NTSTATUS _lsa_CREDRPROFILELOADED(pipes_struct *p, struct lsa_CREDRPROFILELOADED *r)
2513 {
2514         p->rng_fault_state = True;
2515         return NT_STATUS_NOT_IMPLEMENTED;
2516 }
2517
2518 NTSTATUS _lsa_LookupNames3(pipes_struct *p, struct lsa_LookupNames3 *r)
2519 {
2520         p->rng_fault_state = True;
2521         return NT_STATUS_NOT_IMPLEMENTED;
2522 }
2523
2524 NTSTATUS _lsa_CREDRGETSESSIONTYPES(pipes_struct *p, struct lsa_CREDRGETSESSIONTYPES *r)
2525 {
2526         p->rng_fault_state = True;
2527         return NT_STATUS_NOT_IMPLEMENTED;
2528 }
2529
2530 NTSTATUS _lsa_LSARREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARREGISTERAUDITEVENT *r)
2531 {
2532         p->rng_fault_state = True;
2533         return NT_STATUS_NOT_IMPLEMENTED;
2534 }
2535
2536 NTSTATUS _lsa_LSARGENAUDITEVENT(pipes_struct *p, struct lsa_LSARGENAUDITEVENT *r)
2537 {
2538         p->rng_fault_state = True;
2539         return NT_STATUS_NOT_IMPLEMENTED;
2540 }
2541
2542 NTSTATUS _lsa_LSARUNREGISTERAUDITEVENT(pipes_struct *p, struct lsa_LSARUNREGISTERAUDITEVENT *r)
2543 {
2544         p->rng_fault_state = True;
2545         return NT_STATUS_NOT_IMPLEMENTED;
2546 }
2547
2548 NTSTATUS _lsa_LSARQUERYFORESTTRUSTINFORMATION(pipes_struct *p, struct lsa_LSARQUERYFORESTTRUSTINFORMATION *r)
2549 {
2550         p->rng_fault_state = True;
2551         return NT_STATUS_NOT_IMPLEMENTED;
2552 }
2553
2554 NTSTATUS _lsa_LSARSETFORESTTRUSTINFORMATION(pipes_struct *p, struct lsa_LSARSETFORESTTRUSTINFORMATION *r)
2555 {
2556         p->rng_fault_state = True;
2557         return NT_STATUS_NOT_IMPLEMENTED;
2558 }
2559
2560 NTSTATUS _lsa_CREDRRENAME(pipes_struct *p, struct lsa_CREDRRENAME *r)
2561 {
2562         p->rng_fault_state = True;
2563         return NT_STATUS_NOT_IMPLEMENTED;
2564 }
2565
2566 NTSTATUS _lsa_LookupSids3(pipes_struct *p, struct lsa_LookupSids3 *r)
2567 {
2568         p->rng_fault_state = True;
2569         return NT_STATUS_NOT_IMPLEMENTED;
2570 }
2571
2572 NTSTATUS _lsa_LookupNames4(pipes_struct *p, struct lsa_LookupNames4 *r)
2573 {
2574         p->rng_fault_state = True;
2575         return NT_STATUS_NOT_IMPLEMENTED;
2576 }
2577
2578 NTSTATUS _lsa_LSAROPENPOLICYSCE(pipes_struct *p, struct lsa_LSAROPENPOLICYSCE *r)
2579 {
2580         p->rng_fault_state = True;
2581         return NT_STATUS_NOT_IMPLEMENTED;
2582 }
2583
2584 NTSTATUS _lsa_LSARADTREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTREGISTERSECURITYEVENTSOURCE *r)
2585 {
2586         p->rng_fault_state = True;
2587         return NT_STATUS_NOT_IMPLEMENTED;
2588 }
2589
2590 NTSTATUS _lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE(pipes_struct *p, struct lsa_LSARADTUNREGISTERSECURITYEVENTSOURCE *r)
2591 {
2592         p->rng_fault_state = True;
2593         return NT_STATUS_NOT_IMPLEMENTED;
2594 }
2595
2596 NTSTATUS _lsa_LSARADTREPORTSECURITYEVENT(pipes_struct *p, struct lsa_LSARADTREPORTSECURITYEVENT *r)
2597 {
2598         p->rng_fault_state = True;
2599         return NT_STATUS_NOT_IMPLEMENTED;
2600 }