* small formatting fixes
[Samba.git] / source / rpc_server / srv_samr_nt.c
bloba30622c600823786cf45c0b960ad80626466ff09
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) Marc Jacobsen 1999,
8 * Copyright (C) Jeremy Allison 2001-2002,
9 * Copyright (C) Jean François Micouleau 1998-2001,
10 * Copyright (C) Anthony Liguori 2002,
11 * Copyright (C) Jim McDonough 2002.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 * This is the implementation of the SAMR code.
32 #include "includes.h"
34 #undef DBGC_CLASS
35 #define DBGC_CLASS DBGC_RPC_SRV
37 extern fstring global_myworkgroup;
38 extern pstring global_myname;
39 extern DOM_SID global_sid_Builtin;
41 extern rid_name domain_group_rids[];
42 extern rid_name domain_alias_rids[];
43 extern rid_name builtin_alias_rids[];
46 typedef struct _disp_info {
47 BOOL user_dbloaded;
48 uint32 num_user_account;
49 DISP_USER_INFO *disp_user_info;
50 BOOL group_dbloaded;
51 uint32 num_group_account;
52 DISP_GROUP_INFO *disp_group_info;
53 } DISP_INFO;
55 struct samr_info {
56 /* for use by the \PIPE\samr policy */
57 DOM_SID sid;
58 uint32 status; /* some sort of flag. best to record it. comes from opnum 0x39 */
59 uint32 acc_granted;
60 DISP_INFO disp_info;
62 TALLOC_CTX *mem_ctx;
65 struct generic_mapping sam_generic_mapping = {SAMR_READ, SAMR_WRITE, SAMR_EXECUTE, SAMR_ALL_ACCESS};
66 struct generic_mapping dom_generic_mapping = {DOMAIN_READ, DOMAIN_WRITE, DOMAIN_EXECUTE, DOMAIN_ALL_ACCESS};
67 struct generic_mapping usr_generic_mapping = {USER_READ, USER_WRITE, USER_EXECUTE, USER_ALL_ACCESS};
68 struct generic_mapping grp_generic_mapping = {GROUP_READ, GROUP_WRITE, GROUP_EXECUTE, GROUP_ALL_ACCESS};
69 struct generic_mapping ali_generic_mapping = {ALIAS_READ, ALIAS_WRITE, ALIAS_EXECUTE, ALIAS_ALL_ACCESS};
71 static NTSTATUS samr_make_dom_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *d_size);
74 /*******************************************************************
75 Checks if access to an object should be granted, and returns that
76 level of access for further checks.
77 ********************************************************************/
79 NTSTATUS access_check_samr_object(SEC_DESC *psd, NT_USER_TOKEN *nt_user_token, uint32 des_access,
80 uint32 *acc_granted, const char *debug)
82 NTSTATUS status = NT_STATUS_ACCESS_DENIED;
84 if (!se_access_check(psd, nt_user_token, des_access, acc_granted, &status)) {
85 if (geteuid() == sec_initial_uid()) {
86 DEBUG(4,("%s: ACCESS should be DENIED (requested: %#010x)\n",
87 debug, des_access));
88 DEBUGADD(4,("but overritten by euid == sec_initial_uid()\n"));
89 status = NT_STATUS_OK;
91 else {
92 DEBUG(2,("%s: ACCESS DENIED (requested: %#010x)\n",
93 debug, des_access));
96 return status;
99 /*******************************************************************
100 Checks if access to a function can be granted
101 ********************************************************************/
103 NTSTATUS access_check_samr_function(uint32 acc_granted, uint32 acc_required, const char *debug)
105 DEBUG(5,("%s: access check ((granted: %#010x; required: %#010x)\n",
106 debug, acc_granted, acc_required));
107 if ((acc_granted & acc_required) != acc_required) {
108 if (geteuid() == sec_initial_uid()) {
109 DEBUG(4,("%s: ACCESS should be DENIED (granted: %#010x; required: %#010x)\n",
110 debug, acc_granted, acc_required));
111 DEBUGADD(4,("but overwritten by euid == 0\n"));
112 return NT_STATUS_OK;
114 DEBUG(2,("%s: ACCESS DENIED (granted: %#010x; required: %#010x)\n",
115 debug, acc_granted, acc_required));
116 return NT_STATUS_ACCESS_DENIED;
118 return NT_STATUS_OK;
122 /*******************************************************************
123 Create a samr_info struct.
124 ********************************************************************/
126 static struct samr_info *get_samr_info_by_sid(DOM_SID *psid)
128 struct samr_info *info;
129 fstring sid_str;
130 TALLOC_CTX *mem_ctx;
132 if (psid) {
133 sid_to_string(sid_str, psid);
134 } else {
135 fstrcpy(sid_str,"(NULL)");
138 mem_ctx = talloc_init_named("samr_info for domain sid %s", sid_str);
140 if ((info = (struct samr_info *)talloc(mem_ctx, sizeof(struct samr_info))) == NULL)
141 return NULL;
143 ZERO_STRUCTP(info);
144 DEBUG(10,("get_samr_info_by_sid: created new info for sid %s\n", sid_str));
145 if (psid) {
146 sid_copy( &info->sid, psid);
147 } else {
148 DEBUG(10,("get_samr_info_by_sid: created new info for NULL sid.\n"));
150 info->mem_ctx = mem_ctx;
151 return info;
154 /*******************************************************************
155 Function to free the per handle data.
156 ********************************************************************/
157 static void free_samr_db(struct samr_info *info)
159 int i;
161 /* Groups are talloced */
163 if (info->disp_info.user_dbloaded){
164 for (i=0; i<info->disp_info.num_user_account; i++) {
165 /* Not really a free, actually a 'clear' */
166 pdb_free_sam(&info->disp_info.disp_user_info[i].sam);
170 info->disp_info.user_dbloaded=False;
171 info->disp_info.group_dbloaded=False;
172 info->disp_info.num_group_account=0;
173 info->disp_info.num_user_account=0;
177 static void free_samr_info(void *ptr)
179 struct samr_info *info=(struct samr_info *) ptr;
181 free_samr_db(info);
182 talloc_destroy(info->mem_ctx);
185 /*******************************************************************
186 Ensure password info is never given out. Paranioa... JRA.
187 ********************************************************************/
189 static void samr_clear_sam_passwd(SAM_ACCOUNT *sam_pass)
192 if (!sam_pass)
193 return;
195 /* These now zero out the old password */
197 pdb_set_lanman_passwd(sam_pass, NULL);
198 pdb_set_nt_passwd(sam_pass, NULL);
202 static NTSTATUS load_sampwd_entries(struct samr_info *info, uint16 acb_mask)
204 SAM_ACCOUNT *pwd = NULL;
205 DISP_USER_INFO *pwd_array = NULL;
206 NTSTATUS nt_status = NT_STATUS_OK;
207 TALLOC_CTX *mem_ctx = info->mem_ctx;
209 DEBUG(10,("load_sampwd_entries\n"));
211 /* if the snapshoot is already loaded, return */
212 if (info->disp_info.user_dbloaded==True) {
213 DEBUG(10,("load_sampwd_entries: already in memory\n"));
214 return NT_STATUS_OK;
217 if (!pdb_setsampwent(False)) {
218 DEBUG(0, ("load_sampwd_entries: Unable to open passdb.\n"));
219 return NT_STATUS_ACCESS_DENIED;
222 for (; (NT_STATUS_IS_OK(nt_status = pdb_init_sam_talloc(mem_ctx, &pwd)))
223 && pdb_getsampwent(pwd) == True; pwd=NULL) {
225 if (acb_mask != 0 && !(pdb_get_acct_ctrl(pwd) & acb_mask)) {
226 pdb_free_sam(&pwd);
227 DEBUG(5,(" acb_mask %x reject\n", acb_mask));
228 continue;
231 /* Realloc some memory for the array of ptr to the SAM_ACCOUNT structs */
232 if (info->disp_info.num_user_account % MAX_SAM_ENTRIES == 0) {
234 DEBUG(10,("load_sampwd_entries: allocating more memory\n"));
235 pwd_array=(DISP_USER_INFO *)talloc_realloc(mem_ctx, info->disp_info.disp_user_info,
236 (info->disp_info.num_user_account+MAX_SAM_ENTRIES)*sizeof(DISP_USER_INFO));
238 if (pwd_array==NULL)
239 return NT_STATUS_NO_MEMORY;
241 info->disp_info.disp_user_info=pwd_array;
244 /* link the SAM_ACCOUNT to the array */
245 info->disp_info.disp_user_info[info->disp_info.num_user_account].sam=pwd;
247 DEBUG(10,("load_sampwd_entries: entry: %d\n", info->disp_info.num_user_account));
249 info->disp_info.num_user_account++;
252 pdb_endsampwent();
254 /* the snapshoot is in memory, we're ready to enumerate fast */
256 info->disp_info.user_dbloaded=True;
258 DEBUG(12,("load_sampwd_entries: done\n"));
260 return nt_status;
263 static NTSTATUS load_group_domain_entries(struct samr_info *info, DOM_SID *sid)
265 GROUP_MAP *map=NULL;
266 DISP_GROUP_INFO *grp_array = NULL;
267 uint32 group_entries = 0;
268 uint32 i;
269 TALLOC_CTX *mem_ctx = info->mem_ctx;
271 DEBUG(10,("load_group_domain_entries\n"));
273 /* if the snapshoot is already loaded, return */
274 if (info->disp_info.group_dbloaded==True) {
275 DEBUG(10,("load_group_domain_entries: already in memory\n"));
276 return NT_STATUS_OK;
279 if (!enum_group_mapping(SID_NAME_DOM_GRP, &map, (int *)&group_entries, ENUM_ONLY_MAPPED, MAPPING_WITHOUT_PRIV)) {
280 return NT_STATUS_NO_MEMORY;
283 info->disp_info.num_group_account=group_entries;
285 grp_array=(DISP_GROUP_INFO *)talloc(mem_ctx, info->disp_info.num_group_account*sizeof(DISP_GROUP_INFO));
287 if (group_entries!=0 && grp_array==NULL) {
288 SAFE_FREE(map);
289 return NT_STATUS_NO_MEMORY;
292 info->disp_info.disp_group_info=grp_array;
294 for (i=0; i<group_entries; i++) {
296 grp_array[i].grp=(DOMAIN_GRP *)talloc(mem_ctx, sizeof(DOMAIN_GRP));
298 fstrcpy(grp_array[i].grp->name, map[i].nt_name);
299 fstrcpy(grp_array[i].grp->comment, map[i].comment);
300 sid_split_rid(&map[i].sid, &grp_array[i].grp->rid);
301 grp_array[i].grp->attr=SID_NAME_DOM_GRP;
304 SAFE_FREE(map);
306 /* the snapshoot is in memory, we're ready to enumerate fast */
308 info->disp_info.group_dbloaded=True;
310 DEBUG(12,("load_group_domain_entries: done\n"));
312 return NT_STATUS_OK;
316 /*******************************************************************
317 _samr_close_hnd
318 ********************************************************************/
320 NTSTATUS _samr_close_hnd(pipes_struct *p, SAMR_Q_CLOSE_HND *q_u, SAMR_R_CLOSE_HND *r_u)
322 r_u->status = NT_STATUS_OK;
324 /* close the policy handle */
325 if (!close_policy_hnd(p, &q_u->pol))
326 return NT_STATUS_OBJECT_NAME_INVALID;
328 DEBUG(5,("samr_reply_close_hnd: %d\n", __LINE__));
330 return r_u->status;
333 /*******************************************************************
334 samr_reply_open_domain
335 ********************************************************************/
337 NTSTATUS _samr_open_domain(pipes_struct *p, SAMR_Q_OPEN_DOMAIN *q_u, SAMR_R_OPEN_DOMAIN *r_u)
339 struct samr_info *info;
340 SEC_DESC *psd = NULL;
341 uint32 acc_granted;
342 uint32 des_access = q_u->flags;
343 size_t sd_size;
344 NTSTATUS status;
346 r_u->status = NT_STATUS_OK;
348 /* find the connection policy handle. */
349 if (!find_policy_by_hnd(p, &q_u->pol, (void**)&info))
350 return NT_STATUS_INVALID_HANDLE;
352 if (!NT_STATUS_IS_OK(status = access_check_samr_function(info->acc_granted, SAMR_ACCESS_OPEN_DOMAIN,"_samr_open_domain"))) {
353 return status;
356 /*check if access can be granted as requested by client. */
357 samr_make_dom_obj_sd(p->mem_ctx, &psd, &sd_size);
358 se_map_generic(&des_access,&dom_generic_mapping);
360 if (!NT_STATUS_IS_OK(status =
361 access_check_samr_object(psd, p->pipe_user.nt_user_token,
362 des_access, &acc_granted, "_samr_open_domain"))) {
363 return status;
366 /* associate the domain SID with the (unique) handle. */
367 if ((info = get_samr_info_by_sid(&q_u->dom_sid.sid))==NULL)
368 return NT_STATUS_NO_MEMORY;
369 info->acc_granted = acc_granted;
371 /* get a (unique) handle. open a policy on it. */
372 if (!create_policy_hnd(p, &r_u->domain_pol, free_samr_info, (void *)info))
373 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
375 DEBUG(5,("samr_open_domain: %d\n", __LINE__));
377 return r_u->status;
380 /*******************************************************************
381 _samr_get_usrdom_pwinfo
382 ********************************************************************/
384 NTSTATUS _samr_get_usrdom_pwinfo(pipes_struct *p, SAMR_Q_GET_USRDOM_PWINFO *q_u, SAMR_R_GET_USRDOM_PWINFO *r_u)
386 struct samr_info *info = NULL;
388 r_u->status = NT_STATUS_OK;
390 /* find the policy handle. open a policy on it. */
391 if (!find_policy_by_hnd(p, &q_u->user_pol, (void **)&info))
392 return NT_STATUS_INVALID_HANDLE;
394 if (!sid_check_is_in_our_domain(&info->sid))
395 return NT_STATUS_OBJECT_TYPE_MISMATCH;
397 init_samr_r_get_usrdom_pwinfo(r_u, NT_STATUS_OK);
399 DEBUG(5,("_samr_get_usrdom_pwinfo: %d\n", __LINE__));
402 * NT sometimes return NT_STATUS_ACCESS_DENIED
403 * I don't know yet why.
406 return r_u->status;
410 /*******************************************************************
411 samr_make_sam_obj_sd
412 ********************************************************************/
414 static NTSTATUS samr_make_sam_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size)
416 extern DOM_SID global_sid_World;
417 DOM_SID adm_sid;
418 DOM_SID act_sid;
420 SEC_ACE ace[3];
421 SEC_ACCESS mask;
423 SEC_ACL *psa = NULL;
425 sid_copy(&adm_sid, &global_sid_Builtin);
426 sid_append_rid(&adm_sid, BUILTIN_ALIAS_RID_ADMINS);
428 sid_copy(&act_sid, &global_sid_Builtin);
429 sid_append_rid(&act_sid, BUILTIN_ALIAS_RID_ACCOUNT_OPS);
431 /*basic access for every one*/
432 init_sec_access(&mask, SAMR_EXECUTE | SAMR_READ);
433 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
435 /*full access for builtin aliases Administrators and Account Operators*/
436 init_sec_access(&mask, SAMR_ALL_ACCESS);
437 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
438 init_sec_ace(&ace[2], &act_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
440 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
441 return NT_STATUS_NO_MEMORY;
443 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, NULL, NULL, NULL, psa, sd_size)) == NULL)
444 return NT_STATUS_NO_MEMORY;
446 return NT_STATUS_OK;
449 /*******************************************************************
450 samr_make_dom_obj_sd
451 ********************************************************************/
453 static NTSTATUS samr_make_dom_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size)
455 extern DOM_SID global_sid_World;
456 DOM_SID adm_sid;
457 DOM_SID act_sid;
459 SEC_ACE ace[3];
460 SEC_ACCESS mask;
462 SEC_ACL *psa = NULL;
464 sid_copy(&adm_sid, &global_sid_Builtin);
465 sid_append_rid(&adm_sid, BUILTIN_ALIAS_RID_ADMINS);
467 sid_copy(&act_sid, &global_sid_Builtin);
468 sid_append_rid(&act_sid, BUILTIN_ALIAS_RID_ACCOUNT_OPS);
470 /*basic access for every one*/
471 init_sec_access(&mask, DOMAIN_EXECUTE | DOMAIN_READ);
472 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
474 /*full access for builtin aliases Administrators and Account Operators*/
475 init_sec_access(&mask, DOMAIN_ALL_ACCESS);
476 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
477 init_sec_ace(&ace[2], &act_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
479 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
480 return NT_STATUS_NO_MEMORY;
482 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, NULL, NULL, NULL, psa, sd_size)) == NULL)
483 return NT_STATUS_NO_MEMORY;
485 return NT_STATUS_OK;
488 /*******************************************************************
489 samr_make_usr_obj_sd
490 ********************************************************************/
492 static NTSTATUS samr_make_usr_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size, DOM_SID *usr_sid)
494 extern DOM_SID global_sid_World;
495 DOM_SID adm_sid;
496 DOM_SID act_sid;
498 SEC_ACE ace[4];
499 SEC_ACCESS mask;
501 SEC_ACL *psa = NULL;
503 sid_copy(&adm_sid, &global_sid_Builtin);
504 sid_append_rid(&adm_sid, BUILTIN_ALIAS_RID_ADMINS);
506 sid_copy(&act_sid, &global_sid_Builtin);
507 sid_append_rid(&act_sid, BUILTIN_ALIAS_RID_ACCOUNT_OPS);
509 /*basic access for every one*/
510 init_sec_access(&mask, USER_EXECUTE | USER_READ);
511 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
513 /*full access for builtin aliases Administrators and Account Operators*/
514 init_sec_access(&mask, USER_ALL_ACCESS);
515 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
516 init_sec_ace(&ace[2], &act_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
518 /*extended access for the user*/
519 init_sec_access(&mask,READ_CONTROL_ACCESS | USER_ACCESS_CHANGE_PASSWORD | USER_ACCESS_SET_LOC_COM);
520 init_sec_ace(&ace[3], usr_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
522 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, 4, ace)) == NULL)
523 return NT_STATUS_NO_MEMORY;
525 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, NULL, NULL, NULL, psa, sd_size)) == NULL)
526 return NT_STATUS_NO_MEMORY;
528 return NT_STATUS_OK;
531 /*******************************************************************
532 samr_make_grp_obj_sd
533 ********************************************************************/
535 static NTSTATUS samr_make_grp_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size)
537 extern DOM_SID global_sid_World;
538 DOM_SID adm_sid;
539 DOM_SID act_sid;
541 SEC_ACE ace[3];
542 SEC_ACCESS mask;
544 SEC_ACL *psa = NULL;
546 sid_copy(&adm_sid, &global_sid_Builtin);
547 sid_append_rid(&adm_sid, BUILTIN_ALIAS_RID_ADMINS);
549 sid_copy(&act_sid, &global_sid_Builtin);
550 sid_append_rid(&act_sid, BUILTIN_ALIAS_RID_ACCOUNT_OPS);
552 /*basic access for every one*/
553 init_sec_access(&mask, GROUP_EXECUTE | GROUP_READ);
554 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
556 /*full access for builtin aliases Administrators and Account Operators*/
557 init_sec_access(&mask, GROUP_ALL_ACCESS);
558 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
559 init_sec_ace(&ace[2], &act_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
561 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
562 return NT_STATUS_NO_MEMORY;
564 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, NULL, NULL, NULL, psa, sd_size)) == NULL)
565 return NT_STATUS_NO_MEMORY;
567 return NT_STATUS_OK;
570 /*******************************************************************
571 samr_make_ali_obj_sd
572 ********************************************************************/
574 static NTSTATUS samr_make_ali_obj_sd(TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size)
576 extern DOM_SID global_sid_World;
577 DOM_SID adm_sid;
578 DOM_SID act_sid;
580 SEC_ACE ace[3];
581 SEC_ACCESS mask;
583 SEC_ACL *psa = NULL;
585 sid_copy(&adm_sid, &global_sid_Builtin);
586 sid_append_rid(&adm_sid, BUILTIN_ALIAS_RID_ADMINS);
588 sid_copy(&act_sid, &global_sid_Builtin);
589 sid_append_rid(&act_sid, BUILTIN_ALIAS_RID_ACCOUNT_OPS);
591 /*basic access for every one*/
592 init_sec_access(&mask, ALIAS_EXECUTE | ALIAS_READ);
593 init_sec_ace(&ace[0], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
595 /*full access for builtin aliases Administrators and Account Operators*/
596 init_sec_access(&mask, ALIAS_ALL_ACCESS);
597 init_sec_ace(&ace[1], &adm_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
598 init_sec_ace(&ace[2], &act_sid, SEC_ACE_TYPE_ACCESS_ALLOWED, mask, 0);
600 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, 3, ace)) == NULL)
601 return NT_STATUS_NO_MEMORY;
603 if ((*psd = make_sec_desc(ctx, SEC_DESC_REVISION, NULL, NULL, NULL, psa, sd_size)) == NULL)
604 return NT_STATUS_NO_MEMORY;
606 return NT_STATUS_OK;
609 static BOOL get_lsa_policy_samr_sid(pipes_struct *p, POLICY_HND *pol, DOM_SID *sid, uint32 *acc_granted)
611 struct samr_info *info = NULL;
613 /* find the policy handle. open a policy on it. */
614 if (!find_policy_by_hnd(p, pol, (void **)&info))
615 return False;
617 if (!info)
618 return False;
620 *sid = info->sid;
621 *acc_granted = info->acc_granted;
622 return True;
625 /*******************************************************************
626 _samr_set_sec_obj
627 ********************************************************************/
629 NTSTATUS _samr_set_sec_obj(pipes_struct *p, SAMR_Q_SET_SEC_OBJ *q_u, SAMR_R_SET_SEC_OBJ *r_u)
631 DEBUG(0,("_samr_set_sec_obj: Not yet implemented!\n"));
632 return NT_STATUS_NOT_IMPLEMENTED;
636 /*******************************************************************
637 _samr_query_sec_obj
638 ********************************************************************/
640 NTSTATUS _samr_query_sec_obj(pipes_struct *p, SAMR_Q_QUERY_SEC_OBJ *q_u, SAMR_R_QUERY_SEC_OBJ *r_u)
642 DOM_SID pol_sid;
643 fstring str_sid;
644 SEC_DESC * psd = NULL;
645 size_t sd_size;
646 uint32 acc_granted;
648 r_u->status = NT_STATUS_OK;
650 /* Get the SID. */
651 if (!get_lsa_policy_samr_sid(p, &q_u->user_pol, &pol_sid, &acc_granted))
652 return NT_STATUS_INVALID_HANDLE;
656 DEBUG(10,("_samr_query_sec_obj: querying security on SID: %s\n", sid_to_string(str_sid, &pol_sid)));
658 /* Check what typ of SID is beeing queried (e.g Domain SID, User SID, Group SID) */
660 /* To query the security of the SAM it self an invalid SID with S-0-0 is passed to this function */
661 if (pol_sid.sid_rev_num == 0)
663 DEBUG(5,("_samr_query_sec_obj: querying security on SAM\n"));
664 r_u->status = samr_make_sam_obj_sd(p->mem_ctx, &psd, &sd_size);
666 else if (sid_equal(&pol_sid,get_global_sam_sid())) /* check if it is our domain SID */
669 DEBUG(5,("_samr_query_sec_obj: querying security on Domain with SID: %s\n", sid_to_string(str_sid, &pol_sid)));
670 r_u->status = samr_make_dom_obj_sd(p->mem_ctx, &psd, &sd_size);
672 else if (sid_equal(&pol_sid,&global_sid_Builtin)) /* check if it is the Builtin Domain */
674 /* TODO: Builtin probably needs a different SD with restricted write access*/
675 DEBUG(5,("_samr_query_sec_obj: querying security on Builtin Domain with SID: %s\n", sid_to_string(str_sid, &pol_sid)));
676 r_u->status = samr_make_dom_obj_sd(p->mem_ctx, &psd, &sd_size);
678 else if (sid_check_is_in_our_domain(&pol_sid) ||
679 sid_check_is_in_builtin(&pol_sid))
681 /* TODO: different SDs have to be generated for aliases groups and users.
682 Currently all three get a default user SD */
683 DEBUG(10,("_samr_query_sec_obj: querying security on Object with SID: %s\n", sid_to_string(str_sid, &pol_sid)));
684 r_u->status = samr_make_usr_obj_sd(p->mem_ctx, &psd,&sd_size, &pol_sid);
686 else return NT_STATUS_OBJECT_TYPE_MISMATCH;
688 if ((r_u->buf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
689 return NT_STATUS_NO_MEMORY;
691 if (NT_STATUS_IS_OK(r_u->status))
692 r_u->ptr = 1;
694 return r_u->status;
697 /*******************************************************************
698 makes a SAM_ENTRY / UNISTR2* structure from a user list.
699 ********************************************************************/
701 static NTSTATUS make_user_sam_entry_list(TALLOC_CTX *ctx, SAM_ENTRY **sam_pp, UNISTR2 **uni_name_pp,
702 uint32 num_entries, uint32 start_idx, DISP_USER_INFO *disp_user_info,
703 DOM_SID *domain_sid)
705 uint32 i;
706 SAM_ENTRY *sam;
707 UNISTR2 *uni_name;
708 SAM_ACCOUNT *pwd = NULL;
709 UNISTR2 uni_temp_name;
710 const char *temp_name;
711 const DOM_SID *user_sid;
712 uint32 user_rid;
713 fstring user_sid_string;
714 fstring domain_sid_string;
716 *sam_pp = NULL;
717 *uni_name_pp = NULL;
719 if (num_entries == 0)
720 return NT_STATUS_OK;
722 sam = (SAM_ENTRY *)talloc_zero(ctx, sizeof(SAM_ENTRY)*num_entries);
724 uni_name = (UNISTR2 *)talloc_zero(ctx, sizeof(UNISTR2)*num_entries);
726 if (sam == NULL || uni_name == NULL) {
727 DEBUG(0, ("make_user_sam_entry_list: talloc_zero failed!\n"));
728 return NT_STATUS_NO_MEMORY;
731 for (i = 0; i < num_entries; i++) {
732 pwd = disp_user_info[i+start_idx].sam;
733 temp_name = pdb_get_username(pwd);
734 init_unistr2(&uni_temp_name, temp_name, strlen(temp_name)+1);
735 user_sid = pdb_get_user_sid(pwd);
737 if (!sid_peek_check_rid(domain_sid, user_sid, &user_rid)) {
738 DEBUG(0, ("make_user_sam_entry_list: User %s has SID %s, which conflicts with "
739 "the domain sid %s. Failing operation.\n",
740 temp_name,
741 sid_to_string(user_sid_string, user_sid),
742 sid_to_string(domain_sid_string, domain_sid)));
743 return NT_STATUS_UNSUCCESSFUL;
746 init_sam_entry(&sam[i], uni_temp_name.uni_str_len, user_rid);
747 copy_unistr2(&uni_name[i], &uni_temp_name);
750 *sam_pp = sam;
751 *uni_name_pp = uni_name;
752 return NT_STATUS_OK;
755 /*******************************************************************
756 samr_reply_enum_dom_users
757 ********************************************************************/
759 NTSTATUS _samr_enum_dom_users(pipes_struct *p, SAMR_Q_ENUM_DOM_USERS *q_u,
760 SAMR_R_ENUM_DOM_USERS *r_u)
762 struct samr_info *info = NULL;
763 uint32 struct_size=0x20; /* W2K always reply that, client doesn't care */
764 int num_account;
765 uint32 enum_context=q_u->start_idx;
766 uint32 max_size=q_u->max_size;
767 uint32 temp_size;
768 enum remote_arch_types ra_type = get_remote_arch();
769 int max_sam_entries = (ra_type == RA_WIN95) ? MAX_SAM_ENTRIES_W95 : MAX_SAM_ENTRIES_W2K;
770 uint32 max_entries = max_sam_entries;
771 DOM_SID domain_sid;
773 r_u->status = NT_STATUS_OK;
775 /* find the policy handle. open a policy on it. */
776 if (!find_policy_by_hnd(p, &q_u->pol, (void **)&info))
777 return NT_STATUS_INVALID_HANDLE;
779 domain_sid = info->sid;
781 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(info->acc_granted,
782 DOMAIN_ACCESS_ENUM_ACCOUNTS,
783 "_samr_enum_dom_users"))) {
784 return r_u->status;
787 DEBUG(5,("_samr_enum_dom_users: %d\n", __LINE__));
789 become_root();
790 r_u->status=load_sampwd_entries(info, q_u->acb_mask);
791 unbecome_root();
793 if (!NT_STATUS_IS_OK(r_u->status))
794 return r_u->status;
796 num_account = info->disp_info.num_user_account;
798 if (enum_context > num_account) {
799 DEBUG(5, ("_samr_enum_dom_users: enumeration handle over total entries\n"));
800 return NT_STATUS_OK;
803 /* verify we won't overflow */
804 if (max_entries > num_account-enum_context) {
805 max_entries = num_account-enum_context;
806 DEBUG(5, ("_samr_enum_dom_users: only %d entries to return\n", max_entries));
809 /* calculate the size and limit on the number of entries we will return */
810 temp_size=max_entries*struct_size;
812 if (temp_size>max_size) {
813 max_entries=MIN((max_size/struct_size),max_entries);;
814 DEBUG(5, ("_samr_enum_dom_users: buffer size limits to only %d entries\n", max_entries));
818 * Note from JRA. total_entries is not being used here. Currently if there is a
819 * large user base then it looks like NT will enumerate until get_sampwd_entries
820 * returns False due to num_entries being zero. This will cause an access denied
821 * return. I don't think this is right and needs further investigation. Note that
822 * this is also the same in the TNG code (I don't think that has been tested with
823 * a very large user list as MAX_SAM_ENTRIES is set to 600).
825 * I also think that one of the 'num_entries' return parameters is probably
826 * the "max entries" parameter - but in the TNG code they're all currently set to the same
827 * value (again I think this is wrong).
830 r_u->status = make_user_sam_entry_list(p->mem_ctx, &r_u->sam, &r_u->uni_acct_name,
831 max_entries, enum_context,
832 info->disp_info.disp_user_info,
833 &domain_sid);
835 if (!NT_STATUS_IS_OK(r_u->status))
836 return r_u->status;
838 if (enum_context+max_entries < num_account)
839 r_u->status = STATUS_MORE_ENTRIES;
841 DEBUG(5, ("_samr_enum_dom_users: %d\n", __LINE__));
843 init_samr_r_enum_dom_users(r_u, q_u->start_idx + max_entries, max_entries);
845 DEBUG(5,("_samr_enum_dom_users: %d\n", __LINE__));
847 return r_u->status;
850 /*******************************************************************
851 makes a SAM_ENTRY / UNISTR2* structure from a group list.
852 ********************************************************************/
854 static void make_group_sam_entry_list(TALLOC_CTX *ctx, SAM_ENTRY **sam_pp, UNISTR2 **uni_name_pp,
855 uint32 num_sam_entries, DOMAIN_GRP *grp)
857 uint32 i;
858 SAM_ENTRY *sam;
859 UNISTR2 *uni_name;
861 *sam_pp = NULL;
862 *uni_name_pp = NULL;
864 if (num_sam_entries == 0)
865 return;
867 sam = (SAM_ENTRY *)talloc_zero(ctx, sizeof(SAM_ENTRY)*num_sam_entries);
869 uni_name = (UNISTR2 *)talloc_zero(ctx, sizeof(UNISTR2)*num_sam_entries);
871 if (sam == NULL || uni_name == NULL) {
872 DEBUG(0, ("NULL pointers in SAMR_R_QUERY_DISPINFO\n"));
873 return;
876 for (i = 0; i < num_sam_entries; i++) {
878 * JRA. I think this should include the null. TNG does not.
880 int len = strlen(grp[i].name)+1;
882 init_sam_entry(&sam[i], len, grp[i].rid);
883 init_unistr2(&uni_name[i], grp[i].name, len);
886 *sam_pp = sam;
887 *uni_name_pp = uni_name;
890 /*******************************************************************
891 Get the group entries - similar to get_sampwd_entries().
892 ********************************************************************/
894 static NTSTATUS get_group_alias_entries(TALLOC_CTX *ctx, DOMAIN_GRP **d_grp, DOM_SID *sid, uint32 start_idx,
895 uint32 *p_num_entries, uint32 max_entries)
897 fstring sid_str;
898 uint32 num_entries = 0;
899 int i;
900 GROUP_MAP smap;
901 GROUP_MAP *map;
903 sid_to_string(sid_str, sid);
904 DEBUG(5, ("get_group_alias_entries: enumerating aliases on SID: %s\n", sid_str));
906 *p_num_entries = 0;
908 /* well-known aliases */
909 if (sid_equal(sid, &global_sid_Builtin) && !lp_hide_local_users()) {
911 enum_group_mapping(SID_NAME_ALIAS, &map, (int *)&num_entries, ENUM_ONLY_MAPPED, MAPPING_WITHOUT_PRIV);
913 if (num_entries != 0) {
914 *d_grp=(DOMAIN_GRP *)talloc_zero(ctx, num_entries*sizeof(DOMAIN_GRP));
915 if (*d_grp==NULL)
916 return NT_STATUS_NO_MEMORY;
918 for(i=0; i<num_entries && i<max_entries; i++) {
919 fstrcpy((*d_grp)[i].name, map[i+start_idx].nt_name);
920 sid_split_rid(&map[i+start_idx].sid, &(*d_grp)[i].rid);
924 SAFE_FREE(map);
926 } else if (sid_equal(sid, get_global_sam_sid()) && !lp_hide_local_users()) {
927 struct sys_grent *glist;
928 struct sys_grent *grp;
929 struct passwd *pw;
930 gid_t winbind_gid_low, winbind_gid_high;
931 BOOL winbind_groups_exist = lp_winbind_gid(&winbind_gid_low, &winbind_gid_high);
933 /* local aliases */
934 /* we return the UNIX groups here. This seems to be the right */
935 /* thing to do, since NT member servers return their local */
936 /* groups in the same situation. */
938 /* use getgrent_list() to retrieve the list of groups to avoid
939 * problems with getgrent possible infinite loop by internal
940 * libc grent structures overwrites by called functions */
941 grp = glist = getgrent_list();
942 if (grp == NULL)
943 return NT_STATUS_NO_MEMORY;
945 for (; (num_entries < max_entries) && (grp != NULL); grp = grp->next) {
946 uint32 trid;
948 if(!get_group_from_gid(grp->gr_gid, &smap, MAPPING_WITHOUT_PRIV))
949 continue;
951 if (smap.sid_name_use!=SID_NAME_ALIAS) {
952 continue;
955 sid_split_rid(&smap.sid, &trid);
957 if (!sid_equal(sid, &smap.sid))
958 continue;
960 /* Don't return winbind groups as they are not local! */
961 if (winbind_groups_exist && (grp->gr_gid >= winbind_gid_low)&&(grp->gr_gid <= winbind_gid_high)) {
962 DEBUG(10,("get_group_alias_entries: not returing %s, not local.\n", smap.nt_name ));
963 continue;
966 /* Don't return user private groups... */
968 if ((pw = Get_Pwnam(smap.nt_name)) != 0) {
969 DEBUG(10,("get_group_alias_entries: not returing %s, clashes with user.\n", smap.nt_name ));
970 continue;
973 for( i = 0; i < num_entries; i++)
974 if ( (*d_grp)[i].rid == trid )
975 break;
977 if ( i < num_entries ) {
978 continue; /* rid was there, dup! */
981 /* JRA - added this for large group db enumeration... */
983 if (start_idx > 0) {
984 /* skip the requested number of entries.
985 not very efficient, but hey...
987 start_idx--;
988 continue;
991 *d_grp=talloc_realloc(ctx,*d_grp, (num_entries+1)*sizeof(DOMAIN_GRP));
992 if (*d_grp==NULL) {
993 grent_free(glist);
994 return NT_STATUS_NO_MEMORY;
997 fstrcpy((*d_grp)[num_entries].name, smap.nt_name);
998 (*d_grp)[num_entries].rid = trid;
999 num_entries++;
1000 DEBUG(10,("get_group_alias_entries: added entry %d, rid:%d\n", num_entries, trid));
1003 grent_free(glist);
1006 *p_num_entries = num_entries;
1008 DEBUG(10,("get_group_alias_entries: returning %d entries\n", *p_num_entries));
1010 if (num_entries >= max_entries)
1011 return STATUS_MORE_ENTRIES;
1012 return NT_STATUS_OK;
1015 /*******************************************************************
1016 Get the group entries - similar to get_sampwd_entries().
1017 ********************************************************************/
1019 static NTSTATUS get_group_domain_entries(TALLOC_CTX *ctx, DOMAIN_GRP **d_grp, DOM_SID *sid, uint32 start_idx,
1020 uint32 *p_num_entries, uint32 max_entries)
1022 GROUP_MAP *map=NULL;
1023 int i;
1024 uint32 group_entries = 0;
1025 uint32 num_entries = 0;
1027 *p_num_entries = 0;
1029 enum_group_mapping(SID_NAME_DOM_GRP, &map, (int *)&group_entries, ENUM_ONLY_MAPPED, MAPPING_WITHOUT_PRIV);
1031 num_entries=group_entries-start_idx;
1033 /* limit the number of entries */
1034 if (num_entries>max_entries) {
1035 DEBUG(5,("Limiting to %d entries\n", max_entries));
1036 num_entries=max_entries;
1039 *d_grp=(DOMAIN_GRP *)talloc_zero(ctx, num_entries*sizeof(DOMAIN_GRP));
1040 if (num_entries!=0 && *d_grp==NULL){
1041 SAFE_FREE(map);
1042 return NT_STATUS_NO_MEMORY;
1045 for (i=0; i<num_entries; i++) {
1046 fstrcpy((*d_grp)[i].name, map[i+start_idx].nt_name);
1047 fstrcpy((*d_grp)[i].comment, map[i+start_idx].comment);
1048 sid_split_rid(&map[i+start_idx].sid, &(*d_grp)[i].rid);
1049 (*d_grp)[i].attr=SID_NAME_DOM_GRP;
1052 SAFE_FREE(map);
1054 *p_num_entries = num_entries;
1056 return NT_STATUS_OK;
1059 /*******************************************************************
1060 samr_reply_enum_dom_groups
1061 Only reply with one group - domain admins. This must be fixed for
1062 a real PDC. JRA.
1063 ********************************************************************/
1065 NTSTATUS _samr_enum_dom_groups(pipes_struct *p, SAMR_Q_ENUM_DOM_GROUPS *q_u, SAMR_R_ENUM_DOM_GROUPS *r_u)
1067 DOMAIN_GRP *grp=NULL;
1068 uint32 num_entries;
1069 DOM_SID sid;
1070 uint32 acc_granted;
1072 r_u->status = NT_STATUS_OK;
1074 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &sid, &acc_granted))
1075 return NT_STATUS_INVALID_HANDLE;
1077 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_ENUM_ACCOUNTS, "_samr_enum_dom_groups"))) {
1078 return r_u->status;
1081 DEBUG(5,("samr_reply_enum_dom_groups: %d\n", __LINE__));
1083 /* the domain group array is being allocated in the function below */
1084 if (!NT_STATUS_IS_OK(r_u->status = get_group_domain_entries(p->mem_ctx, &grp, &sid, q_u->start_idx, &num_entries, MAX_SAM_ENTRIES))) {
1085 return r_u->status;
1088 make_group_sam_entry_list(p->mem_ctx, &r_u->sam, &r_u->uni_grp_name, num_entries, grp);
1090 init_samr_r_enum_dom_groups(r_u, q_u->start_idx, num_entries);
1092 DEBUG(5,("samr_enum_dom_groups: %d\n", __LINE__));
1094 return r_u->status;
1098 /*******************************************************************
1099 samr_reply_enum_dom_aliases
1100 ********************************************************************/
1102 NTSTATUS _samr_enum_dom_aliases(pipes_struct *p, SAMR_Q_ENUM_DOM_ALIASES *q_u, SAMR_R_ENUM_DOM_ALIASES *r_u)
1104 DOMAIN_GRP *grp=NULL;
1105 uint32 num_entries = 0;
1106 fstring sid_str;
1107 DOM_SID sid;
1108 NTSTATUS status;
1109 uint32 acc_granted;
1111 r_u->status = NT_STATUS_OK;
1113 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &sid, &acc_granted))
1114 return NT_STATUS_INVALID_HANDLE;
1116 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_ENUM_ACCOUNTS, "_samr_enum_dom_aliases"))) {
1117 return r_u->status;
1120 sid_to_string(sid_str, &sid);
1121 DEBUG(5,("samr_reply_enum_dom_aliases: sid %s\n", sid_str));
1123 status = get_group_alias_entries(p->mem_ctx, &grp, &sid, q_u->start_idx,
1124 &num_entries, MAX_SAM_ENTRIES);
1125 if (NT_STATUS_IS_ERR(status)) return status;
1127 make_group_sam_entry_list(p->mem_ctx, &r_u->sam, &r_u->uni_grp_name, num_entries, grp);
1129 /*safe_free(grp);*/
1131 init_samr_r_enum_dom_aliases(r_u, q_u->start_idx + num_entries, num_entries);
1133 DEBUG(5,("samr_enum_dom_aliases: %d\n", __LINE__));
1135 return r_u->status;
1138 /*******************************************************************
1139 samr_reply_query_dispinfo
1140 ********************************************************************/
1141 NTSTATUS _samr_query_dispinfo(pipes_struct *p, SAMR_Q_QUERY_DISPINFO *q_u,
1142 SAMR_R_QUERY_DISPINFO *r_u)
1144 struct samr_info *info = NULL;
1145 uint32 struct_size=0x20; /* W2K always reply that, client doesn't care */
1146 uint16 acb_mask;
1148 uint32 max_entries=q_u->max_entries;
1149 uint32 enum_context=q_u->start_idx;
1150 uint32 max_size=q_u->max_size;
1152 SAM_DISPINFO_CTR *ctr;
1153 uint32 temp_size=0, total_data_size=0;
1154 NTSTATUS disp_ret;
1155 uint32 num_account = 0;
1156 enum remote_arch_types ra_type = get_remote_arch();
1157 int max_sam_entries = (ra_type == RA_WIN95) ? MAX_SAM_ENTRIES_W95 : MAX_SAM_ENTRIES_W2K;
1158 DOM_SID domain_sid;
1160 DEBUG(5, ("samr_reply_query_dispinfo: %d\n", __LINE__));
1161 r_u->status = NT_STATUS_OK;
1163 /* find the policy handle. open a policy on it. */
1164 if (!find_policy_by_hnd(p, &q_u->domain_pol, (void **)&info))
1165 return NT_STATUS_INVALID_HANDLE;
1167 domain_sid = info->sid;
1170 * calculate how many entries we will return.
1171 * based on
1172 * - the number of entries the client asked
1173 * - our limit on that
1174 * - the starting point (enumeration context)
1175 * - the buffer size the client will accept
1179 * We are a lot more like W2K. Instead of reading the SAM
1180 * each time to find the records we need to send back,
1181 * we read it once and link that copy to the sam handle.
1182 * For large user list (over the MAX_SAM_ENTRIES)
1183 * it's a definitive win.
1184 * second point to notice: between enumerations
1185 * our sam is now the same as it's a snapshoot.
1186 * third point: got rid of the static SAM_USER_21 struct
1187 * no more intermediate.
1188 * con: it uses much more memory, as a full copy is stored
1189 * in memory.
1191 * If you want to change it, think twice and think
1192 * of the second point , that's really important.
1194 * JFM, 12/20/2001
1197 /* Get what we need from the password database */
1199 if (q_u->switch_level==2)
1200 acb_mask = ACB_WSTRUST;
1201 else
1202 acb_mask = ACB_NORMAL;
1204 /* Get what we need from the password database */
1205 switch (q_u->switch_level) {
1206 case 0x1:
1207 case 0x2:
1208 case 0x4:
1209 become_root();
1210 r_u->status=load_sampwd_entries(info, acb_mask);
1211 unbecome_root();
1212 if (!NT_STATUS_IS_OK(r_u->status)) {
1213 DEBUG(5, ("_samr_query_dispinfo: load_sampwd_entries failed\n"));
1214 return r_u->status;
1216 num_account = info->disp_info.num_user_account;
1217 break;
1218 case 0x3:
1219 case 0x5:
1220 r_u->status = load_group_domain_entries(info, &info->sid);
1221 if (!NT_STATUS_IS_OK(r_u->status))
1222 return r_u->status;
1223 num_account = info->disp_info.num_group_account;
1224 break;
1225 default:
1226 DEBUG(0,("_samr_query_dispinfo: Unknown info level (%u)\n", (unsigned int)q_u->switch_level ));
1227 return NT_STATUS_INVALID_INFO_CLASS;
1230 /* first limit the number of entries we will return */
1231 if(max_entries > max_sam_entries) {
1232 DEBUG(5, ("samr_reply_query_dispinfo: client requested %d entries, limiting to %d\n", max_entries, max_sam_entries));
1233 max_entries = max_sam_entries;
1236 if (enum_context > num_account) {
1237 DEBUG(5, ("samr_reply_query_dispinfo: enumeration handle over total entries\n"));
1238 return NT_STATUS_NO_MORE_ENTRIES;
1241 /* verify we won't overflow */
1242 if (max_entries > num_account-enum_context) {
1243 max_entries = num_account-enum_context;
1244 DEBUG(5, ("samr_reply_query_dispinfo: only %d entries to return\n", max_entries));
1247 /* calculate the size and limit on the number of entries we will return */
1248 temp_size=max_entries*struct_size;
1250 if (temp_size>max_size) {
1251 max_entries=MIN((max_size/struct_size),max_entries);;
1252 DEBUG(5, ("samr_reply_query_dispinfo: buffer size limits to only %d entries\n", max_entries));
1255 if (!(ctr = (SAM_DISPINFO_CTR *)talloc_zero(p->mem_ctx,sizeof(SAM_DISPINFO_CTR))))
1256 return NT_STATUS_NO_MEMORY;
1258 ZERO_STRUCTP(ctr);
1260 /* Now create reply structure */
1261 switch (q_u->switch_level) {
1262 case 0x1:
1263 if (max_entries) {
1264 if (!(ctr->sam.info1 = (SAM_DISPINFO_1 *)talloc_zero(p->mem_ctx,max_entries*sizeof(SAM_DISPINFO_1))))
1265 return NT_STATUS_NO_MEMORY;
1267 disp_ret = init_sam_dispinfo_1(p->mem_ctx, ctr->sam.info1, max_entries, enum_context,
1268 info->disp_info.disp_user_info, &domain_sid);
1269 if (!NT_STATUS_IS_OK(disp_ret))
1270 return disp_ret;
1271 break;
1272 case 0x2:
1273 if (max_entries) {
1274 if (!(ctr->sam.info2 = (SAM_DISPINFO_2 *)talloc_zero(p->mem_ctx,max_entries*sizeof(SAM_DISPINFO_2))))
1275 return NT_STATUS_NO_MEMORY;
1277 disp_ret = init_sam_dispinfo_2(p->mem_ctx, ctr->sam.info2, max_entries, enum_context,
1278 info->disp_info.disp_user_info, &domain_sid);
1279 if (!NT_STATUS_IS_OK(disp_ret))
1280 return disp_ret;
1281 break;
1282 case 0x3:
1283 if (max_entries) {
1284 if (!(ctr->sam.info3 = (SAM_DISPINFO_3 *)talloc_zero(p->mem_ctx,max_entries*sizeof(SAM_DISPINFO_3))))
1285 return NT_STATUS_NO_MEMORY;
1287 disp_ret = init_sam_dispinfo_3(p->mem_ctx, ctr->sam.info3, max_entries, enum_context, info->disp_info.disp_group_info);
1288 if (!NT_STATUS_IS_OK(disp_ret))
1289 return disp_ret;
1290 break;
1291 case 0x4:
1292 if (max_entries) {
1293 if (!(ctr->sam.info4 = (SAM_DISPINFO_4 *)talloc_zero(p->mem_ctx,max_entries*sizeof(SAM_DISPINFO_4))))
1294 return NT_STATUS_NO_MEMORY;
1296 disp_ret = init_sam_dispinfo_4(p->mem_ctx, ctr->sam.info4, max_entries, enum_context, info->disp_info.disp_user_info);
1297 if (!NT_STATUS_IS_OK(disp_ret))
1298 return disp_ret;
1299 break;
1300 case 0x5:
1301 if (max_entries) {
1302 if (!(ctr->sam.info5 = (SAM_DISPINFO_5 *)talloc_zero(p->mem_ctx,max_entries*sizeof(SAM_DISPINFO_5))))
1303 return NT_STATUS_NO_MEMORY;
1305 disp_ret = init_sam_dispinfo_5(p->mem_ctx, ctr->sam.info5, max_entries, enum_context, info->disp_info.disp_group_info);
1306 if (!NT_STATUS_IS_OK(disp_ret))
1307 return disp_ret;
1308 break;
1310 default:
1311 ctr->sam.info = NULL;
1312 return NT_STATUS_INVALID_INFO_CLASS;
1315 /* calculate the total size */
1316 total_data_size=num_account*struct_size;
1318 if (enum_context+max_entries < num_account)
1319 r_u->status = STATUS_MORE_ENTRIES;
1321 DEBUG(5, ("_samr_query_dispinfo: %d\n", __LINE__));
1323 init_samr_r_query_dispinfo(r_u, max_entries, total_data_size, temp_size, q_u->switch_level, ctr, r_u->status);
1325 return r_u->status;
1329 /*******************************************************************
1330 samr_reply_query_aliasinfo
1331 ********************************************************************/
1333 NTSTATUS _samr_query_aliasinfo(pipes_struct *p, SAMR_Q_QUERY_ALIASINFO *q_u, SAMR_R_QUERY_ALIASINFO *r_u)
1335 DOM_SID sid;
1336 GROUP_MAP map;
1337 uint32 acc_granted;
1339 r_u->status = NT_STATUS_OK;
1341 DEBUG(5,("_samr_query_aliasinfo: %d\n", __LINE__));
1343 /* find the policy handle. open a policy on it. */
1344 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &sid, &acc_granted))
1345 return NT_STATUS_INVALID_HANDLE;
1346 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, ALIAS_ACCESS_LOOKUP_INFO, "_samr_query_aliasinfo"))) {
1347 return r_u->status;
1350 if (!sid_check_is_in_our_domain(&sid) &&
1351 !sid_check_is_in_builtin(&sid))
1352 return NT_STATUS_OBJECT_TYPE_MISMATCH;
1354 if (!get_local_group_from_sid(sid, &map, MAPPING_WITHOUT_PRIV))
1355 return NT_STATUS_NO_SUCH_ALIAS;
1357 switch (q_u->switch_level) {
1358 case 1:
1359 r_u->ptr = 1;
1360 r_u->ctr.switch_value1 = 1;
1361 init_samr_alias_info1(&r_u->ctr.alias.info1, map.nt_name, 1, map.comment);
1362 break;
1363 case 3:
1364 r_u->ptr = 1;
1365 r_u->ctr.switch_value1 = 3;
1366 init_samr_alias_info3(&r_u->ctr.alias.info3, map.comment);
1367 break;
1368 default:
1369 return NT_STATUS_INVALID_INFO_CLASS;
1372 DEBUG(5,("_samr_query_aliasinfo: %d\n", __LINE__));
1374 return r_u->status;
1377 #if 0
1378 /*******************************************************************
1379 samr_reply_lookup_ids
1380 ********************************************************************/
1382 uint32 _samr_lookup_ids(pipes_struct *p, SAMR_Q_LOOKUP_IDS *q_u, SAMR_R_LOOKUP_IDS *r_u)
1384 uint32 rid[MAX_SAM_ENTRIES];
1385 int num_rids = q_u->num_sids1;
1387 r_u->status = NT_STATUS_OK;
1389 DEBUG(5,("_samr_lookup_ids: %d\n", __LINE__));
1391 if (num_rids > MAX_SAM_ENTRIES) {
1392 num_rids = MAX_SAM_ENTRIES;
1393 DEBUG(5,("_samr_lookup_ids: truncating entries to %d\n", num_rids));
1396 #if 0
1397 int i;
1398 SMB_ASSERT_ARRAY(q_u->uni_user_name, num_rids);
1400 for (i = 0; i < num_rids && status == 0; i++)
1402 struct sam_passwd *sam_pass;
1403 fstring user_name;
1406 fstrcpy(user_name, unistrn2(q_u->uni_user_name[i].buffer,
1407 q_u->uni_user_name[i].uni_str_len));
1409 /* find the user account */
1410 become_root();
1411 sam_pass = get_smb21pwd_entry(user_name, 0);
1412 unbecome_root();
1414 if (sam_pass == NULL)
1416 status = 0xC0000000 | NT_STATUS_NO_SUCH_USER;
1417 rid[i] = 0;
1419 else
1421 rid[i] = sam_pass->user_rid;
1424 #endif
1426 num_rids = 1;
1427 rid[0] = BUILTIN_ALIAS_RID_USERS;
1429 init_samr_r_lookup_ids(&r_u, num_rids, rid, NT_STATUS_OK);
1431 DEBUG(5,("_samr_lookup_ids: %d\n", __LINE__));
1433 return r_u->status;
1435 #endif
1437 /*******************************************************************
1438 _samr_lookup_names
1439 ********************************************************************/
1441 NTSTATUS _samr_lookup_names(pipes_struct *p, SAMR_Q_LOOKUP_NAMES *q_u, SAMR_R_LOOKUP_NAMES *r_u)
1443 uint32 rid[MAX_SAM_ENTRIES];
1444 uint32 local_rid;
1445 enum SID_NAME_USE type[MAX_SAM_ENTRIES];
1446 enum SID_NAME_USE local_type;
1447 int i;
1448 int num_rids = q_u->num_names2;
1449 DOM_SID pol_sid;
1450 fstring sid_str;
1451 uint32 acc_granted;
1453 r_u->status = NT_STATUS_OK;
1455 DEBUG(5,("_samr_lookup_names: %d\n", __LINE__));
1457 ZERO_ARRAY(rid);
1458 ZERO_ARRAY(type);
1460 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &pol_sid, &acc_granted)) {
1461 init_samr_r_lookup_names(p->mem_ctx, r_u, 0, NULL, NULL, NT_STATUS_OBJECT_TYPE_MISMATCH);
1462 return r_u->status;
1465 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, 0, "_samr_lookup_names"))) { /* Don't know the acc_bits yet */
1466 return r_u->status;
1469 if (num_rids > MAX_SAM_ENTRIES) {
1470 num_rids = MAX_SAM_ENTRIES;
1471 DEBUG(5,("_samr_lookup_names: truncating entries to %d\n", num_rids));
1474 DEBUG(5,("_samr_lookup_names: looking name on SID %s\n", sid_to_string(sid_str, &pol_sid)));
1476 become_root(); /* local_lookup_name can require root privs */
1478 for (i = 0; i < num_rids; i++) {
1479 fstring name;
1480 DOM_SID sid;
1482 r_u->status = NT_STATUS_NONE_MAPPED;
1484 rid [i] = 0xffffffff;
1485 type[i] = SID_NAME_UNKNOWN;
1487 rpcstr_pull(name, q_u->uni_name[i].buffer, sizeof(name), q_u->uni_name[i].uni_str_len*2, 0);
1490 * we are only looking for a name
1491 * the SID we get back can be outside
1492 * the scope of the pol_sid
1494 * in clear: it prevents to reply to domain\group: yes
1495 * when only builtin\group exists.
1497 * a cleaner code is to add the sid of the domain we're looking in
1498 * to the local_lookup_name function.
1500 if(local_lookup_name(name, &sid, &local_type)) {
1501 sid_split_rid(&sid, &local_rid);
1503 if (sid_equal(&sid, &pol_sid)) {
1504 rid[i]=local_rid;
1505 type[i]=local_type;
1506 r_u->status = NT_STATUS_OK;
1511 unbecome_root();
1513 init_samr_r_lookup_names(p->mem_ctx, r_u, num_rids, rid, (uint32 *)type, r_u->status);
1515 DEBUG(5,("_samr_lookup_names: %d\n", __LINE__));
1517 return r_u->status;
1520 /*******************************************************************
1521 _samr_chgpasswd_user
1522 ********************************************************************/
1524 NTSTATUS _samr_chgpasswd_user(pipes_struct *p, SAMR_Q_CHGPASSWD_USER *q_u, SAMR_R_CHGPASSWD_USER *r_u)
1526 fstring user_name;
1527 fstring wks;
1529 DEBUG(5,("_samr_chgpasswd_user: %d\n", __LINE__));
1531 r_u->status = NT_STATUS_OK;
1533 rpcstr_pull(user_name, q_u->uni_user_name.buffer, sizeof(user_name), q_u->uni_user_name.uni_str_len*2, 0);
1534 rpcstr_pull(wks, q_u->uni_dest_host.buffer, sizeof(wks), q_u->uni_dest_host.uni_str_len*2,0);
1536 DEBUG(5,("samr_chgpasswd_user: user: %s wks: %s\n", user_name, wks));
1539 * Pass the user through the NT -> unix user mapping
1540 * function.
1543 (void)map_username(user_name);
1546 * UNIX username case mangling not required, pass_oem_change
1547 * is case insensitive.
1550 if (!pass_oem_change(user_name, q_u->lm_newpass.pass, q_u->lm_oldhash.hash,
1551 q_u->nt_newpass.pass, q_u->nt_oldhash.hash))
1552 r_u->status = NT_STATUS_WRONG_PASSWORD;
1554 init_samr_r_chgpasswd_user(r_u, r_u->status);
1556 DEBUG(5,("_samr_chgpasswd_user: %d\n", __LINE__));
1558 return r_u->status;
1561 /*******************************************************************
1562 makes a SAMR_R_LOOKUP_RIDS structure.
1563 ********************************************************************/
1565 static BOOL make_samr_lookup_rids(TALLOC_CTX *ctx, uint32 num_names, fstring names[],
1566 UNIHDR **pp_hdr_name, UNISTR2 **pp_uni_name)
1568 uint32 i;
1569 UNIHDR *hdr_name=NULL;
1570 UNISTR2 *uni_name=NULL;
1572 *pp_uni_name = NULL;
1573 *pp_hdr_name = NULL;
1575 if (num_names != 0) {
1576 hdr_name = (UNIHDR *)talloc_zero(ctx, sizeof(UNIHDR)*num_names);
1577 if (hdr_name == NULL)
1578 return False;
1580 uni_name = (UNISTR2 *)talloc_zero(ctx,sizeof(UNISTR2)*num_names);
1581 if (uni_name == NULL)
1582 return False;
1585 for (i = 0; i < num_names; i++) {
1586 int len = names[i] != NULL ? strlen(names[i]) : 0;
1587 DEBUG(10, ("names[%d]:%s\n", i, names[i]));
1588 init_uni_hdr(&hdr_name[i], len);
1589 init_unistr2(&uni_name[i], names[i], len);
1592 *pp_uni_name = uni_name;
1593 *pp_hdr_name = hdr_name;
1595 return True;
1598 /*******************************************************************
1599 _samr_lookup_rids
1600 ********************************************************************/
1602 NTSTATUS _samr_lookup_rids(pipes_struct *p, SAMR_Q_LOOKUP_RIDS *q_u, SAMR_R_LOOKUP_RIDS *r_u)
1604 fstring group_names[MAX_SAM_ENTRIES];
1605 uint32 *group_attrs = NULL;
1606 UNIHDR *hdr_name = NULL;
1607 UNISTR2 *uni_name = NULL;
1608 DOM_SID pol_sid;
1609 int num_rids = q_u->num_rids1;
1610 int i;
1611 uint32 acc_granted;
1613 r_u->status = NT_STATUS_OK;
1615 DEBUG(5,("_samr_lookup_rids: %d\n", __LINE__));
1617 /* find the policy handle. open a policy on it. */
1618 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &pol_sid, &acc_granted))
1619 return NT_STATUS_INVALID_HANDLE;
1621 if (num_rids > MAX_SAM_ENTRIES) {
1622 num_rids = MAX_SAM_ENTRIES;
1623 DEBUG(5,("_samr_lookup_rids: truncating entries to %d\n", num_rids));
1626 if (num_rids) {
1627 if ((group_attrs = (uint32 *)talloc_zero(p->mem_ctx, num_rids * sizeof(uint32))) == NULL)
1628 return NT_STATUS_NO_MEMORY;
1631 r_u->status = NT_STATUS_NONE_MAPPED;
1633 become_root(); /* lookup_sid can require root privs */
1635 for (i = 0; i < num_rids; i++) {
1636 fstring tmpname;
1637 fstring domname;
1638 DOM_SID sid;
1639 enum SID_NAME_USE type;
1641 group_attrs[i] = SID_NAME_UNKNOWN;
1642 *group_names[i] = '\0';
1644 if (sid_equal(&pol_sid, get_global_sam_sid())) {
1645 sid_copy(&sid, &pol_sid);
1646 sid_append_rid(&sid, q_u->rid[i]);
1648 if (lookup_sid(&sid, domname, tmpname, &type)) {
1649 r_u->status = NT_STATUS_OK;
1650 group_attrs[i] = (uint32)type;
1651 fstrcpy(group_names[i],tmpname);
1652 DEBUG(5,("_samr_lookup_rids: %s:%d\n", group_names[i], group_attrs[i]));
1657 unbecome_root();
1659 if(!make_samr_lookup_rids(p->mem_ctx, num_rids, group_names, &hdr_name, &uni_name))
1660 return NT_STATUS_NO_MEMORY;
1662 init_samr_r_lookup_rids(r_u, num_rids, hdr_name, uni_name, group_attrs);
1664 DEBUG(5,("_samr_lookup_rids: %d\n", __LINE__));
1666 return r_u->status;
1669 /*******************************************************************
1670 _api_samr_open_user. Safe - gives out no passwd info.
1671 ********************************************************************/
1673 NTSTATUS _api_samr_open_user(pipes_struct *p, SAMR_Q_OPEN_USER *q_u, SAMR_R_OPEN_USER *r_u)
1675 SAM_ACCOUNT *sampass=NULL;
1676 DOM_SID sid;
1677 POLICY_HND domain_pol = q_u->domain_pol;
1678 POLICY_HND *user_pol = &r_u->user_pol;
1679 struct samr_info *info = NULL;
1680 SEC_DESC *psd = NULL;
1681 uint32 acc_granted;
1682 uint32 des_access = q_u->access_mask;
1683 size_t sd_size;
1684 BOOL ret;
1685 NTSTATUS nt_status;
1687 r_u->status = NT_STATUS_OK;
1689 /* find the domain policy handle and get domain SID / access bits in the domain policy. */
1690 if (!get_lsa_policy_samr_sid(p, &domain_pol, &sid, &acc_granted))
1691 return NT_STATUS_INVALID_HANDLE;
1693 if (!NT_STATUS_IS_OK(nt_status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_OPEN_ACCOUNT, "_samr_open_user"))) {
1694 return nt_status;
1697 nt_status = pdb_init_sam_talloc(p->mem_ctx, &sampass);
1698 if (!NT_STATUS_IS_OK(nt_status)) {
1699 return nt_status;
1702 /* append the user's RID to it */
1703 if (!sid_append_rid(&sid, q_u->user_rid))
1704 return NT_STATUS_NO_SUCH_USER;
1706 /* check if access can be granted as requested by client. */
1707 samr_make_usr_obj_sd(p->mem_ctx, &psd, &sd_size, &sid);
1708 se_map_generic(&des_access, &usr_generic_mapping);
1709 if (!NT_STATUS_IS_OK(nt_status =
1710 access_check_samr_object(psd, p->pipe_user.nt_user_token,
1711 des_access, &acc_granted, "_samr_open_user"))) {
1712 return nt_status;
1715 become_root();
1716 ret=pdb_getsampwsid(sampass, &sid);
1717 unbecome_root();
1719 /* check that the SID exists in our domain. */
1720 if (ret == False) {
1721 return NT_STATUS_NO_SUCH_USER;
1724 pdb_free_sam(&sampass);
1726 /* associate the user's SID and access bits with the new handle. */
1727 if ((info = get_samr_info_by_sid(&sid)) == NULL)
1728 return NT_STATUS_NO_MEMORY;
1729 info->acc_granted = acc_granted;
1731 /* get a (unique) handle. open a policy on it. */
1732 if (!create_policy_hnd(p, user_pol, free_samr_info, (void *)info))
1733 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1735 return r_u->status;
1738 /*************************************************************************
1739 get_user_info_10. Safe. Only gives out acb bits.
1740 *************************************************************************/
1742 static NTSTATUS get_user_info_10(TALLOC_CTX *mem_ctx, SAM_USER_INFO_10 *id10, DOM_SID *user_sid)
1744 SAM_ACCOUNT *smbpass=NULL;
1745 BOOL ret;
1746 NTSTATUS nt_status;
1748 nt_status = pdb_init_sam_talloc(mem_ctx, &smbpass);
1750 if (!NT_STATUS_IS_OK(nt_status)) {
1751 return nt_status;
1754 become_root();
1755 ret = pdb_getsampwsid(smbpass, user_sid);
1756 unbecome_root();
1758 if (ret==False) {
1759 DEBUG(4,("User %s not found\n", sid_string_static(user_sid)));
1760 return NT_STATUS_NO_SUCH_USER;
1763 DEBUG(3,("User:[%s]\n", pdb_get_username(smbpass) ));
1765 ZERO_STRUCTP(id10);
1766 init_sam_user_info10(id10, pdb_get_acct_ctrl(smbpass) );
1768 pdb_free_sam(&smbpass);
1770 return NT_STATUS_OK;
1773 /*************************************************************************
1774 get_user_info_12. OK - this is the killer as it gives out password info.
1775 Ensure that this is only allowed on an encrypted connection with a root
1776 user. JRA.
1777 *************************************************************************/
1779 static NTSTATUS get_user_info_12(pipes_struct *p, TALLOC_CTX *mem_ctx, SAM_USER_INFO_12 * id12, DOM_SID *user_sid)
1781 SAM_ACCOUNT *smbpass=NULL;
1782 BOOL ret;
1783 NTSTATUS nt_status;
1785 if (!p->ntlmssp_auth_validated)
1786 return NT_STATUS_ACCESS_DENIED;
1788 if (!(p->ntlmssp_chal_flags & NTLMSSP_NEGOTIATE_SIGN) || !(p->ntlmssp_chal_flags & NTLMSSP_NEGOTIATE_SEAL))
1789 return NT_STATUS_ACCESS_DENIED;
1792 * Do *NOT* do become_root()/unbecome_root() here ! JRA.
1795 nt_status = pdb_init_sam_talloc(mem_ctx, &smbpass);
1797 if (!NT_STATUS_IS_OK(nt_status)) {
1798 return nt_status;
1801 ret = pdb_getsampwsid(smbpass, user_sid);
1803 if (ret == False) {
1804 DEBUG(4, ("User %s not found\n", sid_string_static(user_sid)));
1805 pdb_free_sam(&smbpass);
1806 return (geteuid() == (uid_t)0) ? NT_STATUS_NO_SUCH_USER : NT_STATUS_ACCESS_DENIED;
1809 DEBUG(3,("User:[%s] 0x%x\n", pdb_get_username(smbpass), pdb_get_acct_ctrl(smbpass) ));
1811 if ( pdb_get_acct_ctrl(smbpass) & ACB_DISABLED) {
1812 pdb_free_sam(&smbpass);
1813 return NT_STATUS_ACCOUNT_DISABLED;
1816 ZERO_STRUCTP(id12);
1817 init_sam_user_info12(id12, pdb_get_lanman_passwd(smbpass), pdb_get_nt_passwd(smbpass));
1819 pdb_free_sam(&smbpass);
1821 return NT_STATUS_OK;
1824 /*************************************************************************
1825 get_user_info_20
1826 *************************************************************************/
1828 static NTSTATUS get_user_info_20(TALLOC_CTX *mem_ctx, SAM_USER_INFO_20 *id20, DOM_SID *user_sid)
1830 SAM_ACCOUNT *sampass=NULL;
1831 BOOL ret;
1833 pdb_init_sam_talloc(mem_ctx, &sampass);
1835 become_root();
1836 ret = pdb_getsampwsid(sampass, user_sid);
1837 unbecome_root();
1839 if (ret == False) {
1840 DEBUG(4,("User %s not found\n", sid_string_static(user_sid)));
1841 return NT_STATUS_NO_SUCH_USER;
1844 samr_clear_sam_passwd(sampass);
1846 DEBUG(3,("User:[%s]\n", pdb_get_username(sampass) ));
1848 ZERO_STRUCTP(id20);
1849 init_sam_user_info20A(id20, sampass);
1851 pdb_free_sam(&sampass);
1853 return NT_STATUS_OK;
1856 /*************************************************************************
1857 get_user_info_21
1858 *************************************************************************/
1860 static NTSTATUS get_user_info_21(TALLOC_CTX *mem_ctx, SAM_USER_INFO_21 *id21,
1861 DOM_SID *user_sid, DOM_SID *domain_sid)
1863 SAM_ACCOUNT *sampass=NULL;
1864 BOOL ret;
1865 NTSTATUS nt_status;
1867 nt_status = pdb_init_sam_talloc(mem_ctx, &sampass);
1868 if (!NT_STATUS_IS_OK(nt_status)) {
1869 return nt_status;
1872 become_root();
1873 ret = pdb_getsampwsid(sampass, user_sid);
1874 unbecome_root();
1876 if (ret == False) {
1877 DEBUG(4,("User %s not found\n", sid_string_static(user_sid)));
1878 return NT_STATUS_NO_SUCH_USER;
1881 samr_clear_sam_passwd(sampass);
1883 DEBUG(3,("User:[%s]\n", pdb_get_username(sampass) ));
1885 ZERO_STRUCTP(id21);
1886 nt_status = init_sam_user_info21A(id21, sampass, domain_sid);
1888 pdb_free_sam(&sampass);
1890 return NT_STATUS_OK;
1893 /*******************************************************************
1894 _samr_query_userinfo
1895 ********************************************************************/
1897 NTSTATUS _samr_query_userinfo(pipes_struct *p, SAMR_Q_QUERY_USERINFO *q_u, SAMR_R_QUERY_USERINFO *r_u)
1899 SAM_USERINFO_CTR *ctr;
1900 struct samr_info *info = NULL;
1901 DOM_SID domain_sid;
1902 uint32 rid;
1904 r_u->status=NT_STATUS_OK;
1906 /* search for the handle */
1907 if (!find_policy_by_hnd(p, &q_u->pol, (void **)&info))
1908 return NT_STATUS_INVALID_HANDLE;
1910 domain_sid = info->sid;
1912 sid_split_rid(&domain_sid, &rid);
1914 if (!sid_check_is_in_our_domain(&info->sid))
1915 return NT_STATUS_OBJECT_TYPE_MISMATCH;
1917 DEBUG(5,("_samr_query_userinfo: sid:%s\n", sid_string_static(&info->sid)));
1919 ctr = (SAM_USERINFO_CTR *)talloc_zero(p->mem_ctx, sizeof(SAM_USERINFO_CTR));
1920 if (!ctr)
1921 return NT_STATUS_NO_MEMORY;
1923 ZERO_STRUCTP(ctr);
1925 /* ok! user info levels (lots: see MSDEV help), off we go... */
1926 ctr->switch_value = q_u->switch_value;
1928 switch (q_u->switch_value) {
1929 case 0x10:
1930 ctr->info.id10 = (SAM_USER_INFO_10 *)talloc_zero(p->mem_ctx, sizeof(SAM_USER_INFO_10));
1931 if (ctr->info.id10 == NULL)
1932 return NT_STATUS_NO_MEMORY;
1934 if (!NT_STATUS_IS_OK(r_u->status = get_user_info_10(p->mem_ctx, ctr->info.id10, &info->sid)))
1935 return r_u->status;
1936 break;
1938 #if 0
1939 /* whoops - got this wrong. i think. or don't understand what's happening. */
1940 case 0x11:
1942 NTTIME expire;
1943 info = (void *)&id11;
1945 expire.low = 0xffffffff;
1946 expire.high = 0x7fffffff;
1948 ctr->info.id = (SAM_USER_INFO_11 *)talloc_zero(p->mem_ctx,
1949 sizeof
1950 (*ctr->
1951 info.
1952 id11));
1953 ZERO_STRUCTP(ctr->info.id11);
1954 init_sam_user_info11(ctr->info.id11, &expire,
1955 "BROOKFIELDS$", /* name */
1956 0x03ef, /* user rid */
1957 0x201, /* group rid */
1958 0x0080); /* acb info */
1960 break;
1962 #endif
1964 case 0x12:
1965 ctr->info.id12 = (SAM_USER_INFO_12 *)talloc_zero(p->mem_ctx, sizeof(SAM_USER_INFO_12));
1966 if (ctr->info.id12 == NULL)
1967 return NT_STATUS_NO_MEMORY;
1969 if (!NT_STATUS_IS_OK(r_u->status = get_user_info_12(p, p->mem_ctx, ctr->info.id12, &info->sid)))
1970 return r_u->status;
1971 break;
1973 case 20:
1974 ctr->info.id20 = (SAM_USER_INFO_20 *)talloc_zero(p->mem_ctx,sizeof(SAM_USER_INFO_20));
1975 if (ctr->info.id20 == NULL)
1976 return NT_STATUS_NO_MEMORY;
1977 if (!NT_STATUS_IS_OK(r_u->status = get_user_info_20(p->mem_ctx, ctr->info.id20, &info->sid)))
1978 return r_u->status;
1979 break;
1981 case 21:
1982 ctr->info.id21 = (SAM_USER_INFO_21 *)talloc_zero(p->mem_ctx,sizeof(SAM_USER_INFO_21));
1983 if (ctr->info.id21 == NULL)
1984 return NT_STATUS_NO_MEMORY;
1985 if (!NT_STATUS_IS_OK(r_u->status = get_user_info_21(p->mem_ctx, ctr->info.id21,
1986 &info->sid, &domain_sid)))
1987 return r_u->status;
1988 break;
1990 default:
1991 return NT_STATUS_INVALID_INFO_CLASS;
1994 init_samr_r_query_userinfo(r_u, ctr, r_u->status);
1996 DEBUG(5,("_samr_query_userinfo: %d\n", __LINE__));
1998 return r_u->status;
2001 /*******************************************************************
2002 samr_reply_query_usergroups
2003 ********************************************************************/
2005 NTSTATUS _samr_query_usergroups(pipes_struct *p, SAMR_Q_QUERY_USERGROUPS *q_u, SAMR_R_QUERY_USERGROUPS *r_u)
2007 SAM_ACCOUNT *sam_pass=NULL;
2008 DOM_SID sid;
2009 DOM_GID *gids = NULL;
2010 int num_groups = 0;
2011 uint32 acc_granted;
2012 BOOL ret;
2015 * from the SID in the request:
2016 * we should send back the list of DOMAIN GROUPS
2017 * the user is a member of
2019 * and only the DOMAIN GROUPS
2020 * no ALIASES !!! neither aliases of the domain
2021 * nor aliases of the builtin SID
2023 * JFM, 12/2/2001
2026 r_u->status = NT_STATUS_OK;
2028 DEBUG(5,("_samr_query_usergroups: %d\n", __LINE__));
2030 /* find the policy handle. open a policy on it. */
2031 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &sid, &acc_granted))
2032 return NT_STATUS_INVALID_HANDLE;
2034 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, USER_ACCESS_GET_GROUPS, "_samr_query_usergroups"))) {
2035 return r_u->status;
2038 if (!sid_check_is_in_our_domain(&sid))
2039 return NT_STATUS_OBJECT_TYPE_MISMATCH;
2041 pdb_init_sam(&sam_pass);
2043 become_root();
2044 ret = pdb_getsampwsid(sam_pass, &sid);
2045 unbecome_root();
2047 if (ret == False) {
2048 pdb_free_sam(&sam_pass);
2049 return NT_STATUS_NO_SUCH_USER;
2052 if(!get_domain_user_groups(p->mem_ctx, &num_groups, &gids, sam_pass)) {
2053 pdb_free_sam(&sam_pass);
2054 return NT_STATUS_NO_SUCH_GROUP;
2057 /* construct the response. lkclXXXX: gids are not copied! */
2058 init_samr_r_query_usergroups(r_u, num_groups, gids, r_u->status);
2060 DEBUG(5,("_samr_query_usergroups: %d\n", __LINE__));
2062 pdb_free_sam(&sam_pass);
2064 return r_u->status;
2067 /*******************************************************************
2068 _samr_query_dom_info
2069 ********************************************************************/
2071 NTSTATUS _samr_query_dom_info(pipes_struct *p, SAMR_Q_QUERY_DOMAIN_INFO *q_u, SAMR_R_QUERY_DOMAIN_INFO *r_u)
2073 struct samr_info *info = NULL;
2074 SAM_UNK_CTR *ctr;
2075 uint32 min_pass_len,pass_hist,flag;
2076 time_t u_expire, u_min_age;
2077 NTTIME nt_expire, nt_min_age;
2079 time_t u_lock_duration, u_reset_time;
2080 NTTIME nt_lock_duration, nt_reset_time;
2081 uint32 lockout;
2083 time_t u_logout;
2084 NTTIME nt_logout;
2086 uint32 account_policy_temp;
2088 uint32 num_users=0, num_groups=0, num_aliases=0;
2090 if ((ctr = (SAM_UNK_CTR *)talloc_zero(p->mem_ctx, sizeof(SAM_UNK_CTR))) == NULL)
2091 return NT_STATUS_NO_MEMORY;
2093 ZERO_STRUCTP(ctr);
2095 r_u->status = NT_STATUS_OK;
2097 DEBUG(5,("_samr_query_dom_info: %d\n", __LINE__));
2099 /* find the policy handle. open a policy on it. */
2100 if (!find_policy_by_hnd(p, &q_u->domain_pol, (void **)&info))
2101 return NT_STATUS_INVALID_HANDLE;
2103 switch (q_u->switch_value) {
2104 case 0x01:
2106 account_policy_get(AP_MIN_PASSWORD_LEN, &account_policy_temp);
2107 min_pass_len = account_policy_temp;
2109 account_policy_get(AP_PASSWORD_HISTORY, &account_policy_temp);
2110 pass_hist = account_policy_temp;
2112 account_policy_get(AP_USER_MUST_LOGON_TO_CHG_PASS, &account_policy_temp);
2113 flag = account_policy_temp;
2115 account_policy_get(AP_MAX_PASSWORD_AGE, &account_policy_temp);
2116 u_expire = account_policy_temp;
2118 account_policy_get(AP_MIN_PASSWORD_AGE, &account_policy_temp);
2119 u_min_age = account_policy_temp;
2121 unix_to_nt_time_abs(&nt_expire, u_expire);
2122 unix_to_nt_time_abs(&nt_min_age, u_min_age);
2124 init_unk_info1(&ctr->info.inf1, (uint16)min_pass_len, (uint16)pass_hist,
2125 flag, nt_expire, nt_min_age);
2126 break;
2127 case 0x02:
2128 become_root();
2129 r_u->status=load_sampwd_entries(info, ACB_NORMAL);
2130 unbecome_root();
2131 if (!NT_STATUS_IS_OK(r_u->status)) {
2132 DEBUG(5, ("_samr_query_dispinfo: load_sampwd_entries failed\n"));
2133 return r_u->status;
2135 num_users=info->disp_info.num_user_account;
2136 free_samr_db(info);
2138 r_u->status=load_group_domain_entries(info, get_global_sam_sid());
2139 if (!NT_STATUS_IS_OK(r_u->status)) {
2140 DEBUG(5, ("_samr_query_dispinfo: load_group_domain_entries failed\n"));
2141 return r_u->status;
2143 num_groups=info->disp_info.num_group_account;
2144 free_samr_db(info);
2146 /* The time call below is to get a sequence number for the sam. FIXME !!! JRA. */
2147 init_unk_info2(&ctr->info.inf2, global_myworkgroup, global_myname, (uint32) time(NULL),
2148 num_users, num_groups, num_aliases);
2149 break;
2150 case 0x03:
2151 account_policy_get(AP_TIME_TO_LOGOUT, (int *)&u_logout);
2152 unix_to_nt_time_abs(&nt_logout, u_logout);
2154 init_unk_info3(&ctr->info.inf3, nt_logout);
2155 break;
2156 case 0x05:
2157 init_unk_info5(&ctr->info.inf5, global_myname);
2158 break;
2159 case 0x06:
2160 init_unk_info6(&ctr->info.inf6);
2161 break;
2162 case 0x07:
2163 init_unk_info7(&ctr->info.inf7);
2164 break;
2165 case 0x0c:
2166 account_policy_get(AP_LOCK_ACCOUNT_DURATION, &account_policy_temp);
2167 u_lock_duration = account_policy_temp;
2169 account_policy_get(AP_RESET_COUNT_TIME, &account_policy_temp);
2170 u_reset_time = account_policy_temp;
2172 account_policy_get(AP_BAD_ATTEMPT_LOCKOUT, &account_policy_temp);
2173 lockout = account_policy_temp;
2175 unix_to_nt_time_abs(&nt_lock_duration, u_lock_duration);
2176 unix_to_nt_time_abs(&nt_reset_time, u_reset_time);
2178 init_unk_info12(&ctr->info.inf12, nt_lock_duration, nt_reset_time, (uint16)lockout);
2179 break;
2180 default:
2181 return NT_STATUS_INVALID_INFO_CLASS;
2184 init_samr_r_query_dom_info(r_u, q_u->switch_value, ctr, NT_STATUS_OK);
2186 DEBUG(5,("_samr_query_dom_info: %d\n", __LINE__));
2188 return r_u->status;
2191 /*******************************************************************
2192 _api_samr_create_user
2193 Create an account, can be either a normal user or a machine.
2194 This funcion will need to be updated for bdc/domain trusts.
2195 ********************************************************************/
2197 NTSTATUS _api_samr_create_user(pipes_struct *p, SAMR_Q_CREATE_USER *q_u, SAMR_R_CREATE_USER *r_u)
2199 SAM_ACCOUNT *sam_pass=NULL;
2200 fstring account;
2201 DOM_SID sid;
2202 pstring add_script;
2203 POLICY_HND dom_pol = q_u->domain_pol;
2204 UNISTR2 user_account = q_u->uni_name;
2205 uint16 acb_info = q_u->acb_info;
2206 POLICY_HND *user_pol = &r_u->user_pol;
2207 struct samr_info *info = NULL;
2208 BOOL ret;
2209 NTSTATUS nt_status;
2210 struct passwd *pw;
2211 uint32 acc_granted;
2212 SEC_DESC *psd;
2213 size_t sd_size;
2214 uint32 des_access;
2216 /* Get the domain SID stored in the domain policy */
2217 if (!get_lsa_policy_samr_sid(p, &dom_pol, &sid, &acc_granted))
2218 return NT_STATUS_INVALID_HANDLE;
2220 if (!NT_STATUS_IS_OK(nt_status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_CREATE_USER, "_samr_create_user"))) {
2221 return nt_status;
2224 /* find the account: tell the caller if it exists.
2225 lkclXXXX i have *no* idea if this is a problem or not
2226 or even if you are supposed to construct a different
2227 reply if the account already exists...
2230 rpcstr_pull(account, user_account.buffer, sizeof(account), user_account.uni_str_len*2, 0);
2231 strlower(account);
2233 pdb_init_sam(&sam_pass);
2235 become_root();
2236 ret = pdb_getsampwnam(sam_pass, account);
2237 unbecome_root();
2238 if (ret == True) {
2239 /* this account exists: say so */
2240 pdb_free_sam(&sam_pass);
2241 return NT_STATUS_USER_EXISTS;
2244 pdb_free_sam(&sam_pass);
2247 * NB. VERY IMPORTANT ! This call must be done as the current pipe user,
2248 * *NOT* surrounded by a become_root()/unbecome_root() call. This ensures
2249 * that only people with write access to the smbpasswd file will be able
2250 * to create a user. JRA.
2254 * add the user in the /etc/passwd file or the unix authority system.
2255 * We don't check if the smb_create_user() function succed or not for 2 reasons:
2256 * a) local_password_change() checks for us if the /etc/passwd account really exists
2257 * b) smb_create_user() would return an error if the account already exists
2258 * and as it could return an error also if it can't create the account, it would be tricky.
2260 * So we go the easy way, only check after if the account exists.
2261 * JFM (2/3/2001), to clear any possible bad understanding (-:
2263 * We now have seperate script paramaters for adding users/machines so we
2264 * now have some sainity-checking to match.
2267 DEBUG(10,("checking account %s at pos %d for $ termination\n",account, strlen(account)-1));
2268 #if 0
2269 if ((acb_info & ACB_WSTRUST) && (account[strlen(account)-1] == '$')) {
2270 pstrcpy(add_script, lp_addmachine_script());
2271 } else if ((!(acb_info & ACB_WSTRUST)) && (account[strlen(account)-1] != '$')) {
2272 pstrcpy(add_script, lp_adduser_script());
2273 } else {
2274 DEBUG(0, ("_api_samr_create_user: mismatch between trust flags and $ termination\n"));
2275 pdb_free_sam(&sam_pass);
2276 return NT_STATUS_UNSUCCESSFUL;
2278 #endif
2281 * we can't check both the ending $ and the acb_info.
2283 * UserManager creates trust accounts (ending in $,
2284 * normal that hidden accounts) with the acb_info equals to ACB_NORMAL.
2285 * JFM, 11/29/2001
2287 if (account[strlen(account)-1] == '$')
2288 pstrcpy(add_script, lp_addmachine_script());
2289 else
2290 pstrcpy(add_script, lp_adduser_script());
2292 if (*add_script) {
2293 int add_ret;
2294 all_string_sub(add_script, "%u", account, sizeof(account));
2295 add_ret = smbrun(add_script,NULL);
2296 DEBUG(3,("_api_samr_create_user: Running the command `%s' gave %d\n", add_script, add_ret));
2299 pw = getpwnam_alloc(account);
2301 if (pw) {
2302 if (!NT_STATUS_IS_OK(nt_status = pdb_init_sam_pw(&sam_pass, pw))) {
2303 passwd_free(&pw);
2304 return nt_status;
2306 passwd_free(&pw); /* done with this now */
2307 } else {
2308 DEBUG(3,("attempting to create non-unix account %s\n", account));
2310 if (!NT_STATUS_IS_OK(nt_status = pdb_init_sam(&sam_pass))) {
2311 return nt_status;
2314 if (!pdb_set_username(sam_pass, account)) {
2315 pdb_free_sam(&sam_pass);
2316 return NT_STATUS_NO_MEMORY;
2320 pdb_set_acct_ctrl(sam_pass, acb_info);
2322 if (!pdb_add_sam_account(sam_pass)) {
2323 pdb_free_sam(&sam_pass);
2324 DEBUG(0, ("could not add user/computer %s to passdb. Check permissions?\n",
2325 account));
2326 return NT_STATUS_ACCESS_DENIED;
2329 pdb_reset_sam(sam_pass);
2331 if (!pdb_getsampwnam(sam_pass, account)) {
2332 pdb_free_sam(&sam_pass);
2333 DEBUG(0, ("could not find user/computer %s just added to passdb?!?\n",
2334 account));
2335 return NT_STATUS_ACCESS_DENIED;
2338 /* Get the user's SID */
2339 sid_copy(&sid, pdb_get_user_sid(sam_pass));
2341 samr_make_usr_obj_sd(p->mem_ctx, &psd, &sd_size, &sid);
2342 se_map_generic(&des_access, &usr_generic_mapping);
2343 if (!NT_STATUS_IS_OK(nt_status =
2344 access_check_samr_object(psd, p->pipe_user.nt_user_token,
2345 des_access, &acc_granted, "_samr_create_user"))) {
2346 return nt_status;
2349 /* associate the user's SID with the new handle. */
2350 if ((info = get_samr_info_by_sid(&sid)) == NULL) {
2351 pdb_free_sam(&sam_pass);
2352 return NT_STATUS_NO_MEMORY;
2355 ZERO_STRUCTP(info);
2356 info->sid = sid;
2357 info->acc_granted = acc_granted;
2359 /* get a (unique) handle. open a policy on it. */
2360 if (!create_policy_hnd(p, user_pol, free_samr_info, (void *)info)) {
2361 pdb_free_sam(&sam_pass);
2362 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2365 r_u->user_rid=pdb_get_user_rid(sam_pass);
2367 r_u->access_granted = acc_granted;
2369 pdb_free_sam(&sam_pass);
2371 return NT_STATUS_OK;
2374 /*******************************************************************
2375 samr_reply_connect_anon
2376 ********************************************************************/
2378 NTSTATUS _samr_connect_anon(pipes_struct *p, SAMR_Q_CONNECT_ANON *q_u, SAMR_R_CONNECT_ANON *r_u)
2380 struct samr_info *info = NULL;
2382 /* Access check */
2384 if (!pipe_access_check(p)) {
2385 DEBUG(3, ("access denied to samr_connect_anon\n"));
2386 r_u->status = NT_STATUS_ACCESS_DENIED;
2387 return r_u->status;
2390 /* set up the SAMR connect_anon response */
2392 r_u->status = NT_STATUS_OK;
2394 /* associate the user's SID with the new handle. */
2395 if ((info = get_samr_info_by_sid(NULL)) == NULL)
2396 return NT_STATUS_NO_MEMORY;
2398 info->status = q_u->unknown_0;
2400 /* get a (unique) handle. open a policy on it. */
2401 if (!create_policy_hnd(p, &r_u->connect_pol, free_samr_info, (void *)info))
2402 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2404 return r_u->status;
2407 /*******************************************************************
2408 samr_reply_connect
2409 ********************************************************************/
2411 NTSTATUS _samr_connect(pipes_struct *p, SAMR_Q_CONNECT *q_u, SAMR_R_CONNECT *r_u)
2413 struct samr_info *info = NULL;
2414 SEC_DESC *psd = NULL;
2415 uint32 acc_granted;
2416 uint32 des_access = q_u->access_mask;
2417 size_t sd_size;
2418 NTSTATUS nt_status;
2421 DEBUG(5,("_samr_connect: %d\n", __LINE__));
2423 /* Access check */
2425 if (!pipe_access_check(p)) {
2426 DEBUG(3, ("access denied to samr_connect\n"));
2427 r_u->status = NT_STATUS_ACCESS_DENIED;
2428 return r_u->status;
2431 samr_make_sam_obj_sd(p->mem_ctx, &psd, &sd_size);
2432 se_map_generic(&des_access, &sam_generic_mapping);
2433 if (!NT_STATUS_IS_OK(nt_status =
2434 access_check_samr_object(psd, p->pipe_user.nt_user_token,
2435 des_access, &acc_granted, "_samr_connect"))) {
2436 return nt_status;
2439 r_u->status = NT_STATUS_OK;
2441 /* associate the user's SID and access granted with the new handle. */
2442 if ((info = get_samr_info_by_sid(NULL)) == NULL)
2443 return NT_STATUS_NO_MEMORY;
2445 info->acc_granted = acc_granted;
2446 info->status = q_u->access_mask;
2448 /* get a (unique) handle. open a policy on it. */
2449 if (!create_policy_hnd(p, &r_u->connect_pol, free_samr_info, (void *)info))
2450 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2452 DEBUG(5,("_samr_connect: %d\n", __LINE__));
2454 return r_u->status;
2457 /*******************************************************************
2458 samr_connect4
2459 ********************************************************************/
2461 NTSTATUS _samr_connect4(pipes_struct *p, SAMR_Q_CONNECT4 *q_u, SAMR_R_CONNECT4 *r_u)
2463 struct samr_info *info = NULL;
2464 SEC_DESC *psd = NULL;
2465 uint32 acc_granted;
2466 uint32 des_access = q_u->access_mask;
2467 size_t sd_size;
2468 NTSTATUS nt_status;
2471 DEBUG(5,("_samr_connect4: %d\n", __LINE__));
2473 /* Access check */
2475 if (!pipe_access_check(p)) {
2476 DEBUG(3, ("access denied to samr_connect4\n"));
2477 r_u->status = NT_STATUS_ACCESS_DENIED;
2478 return r_u->status;
2481 samr_make_sam_obj_sd(p->mem_ctx, &psd, &sd_size);
2482 se_map_generic(&des_access, &sam_generic_mapping);
2483 if (!NT_STATUS_IS_OK(nt_status =
2484 access_check_samr_object(psd, p->pipe_user.nt_user_token,
2485 des_access, &acc_granted, "_samr_connect"))) {
2486 return nt_status;
2489 r_u->status = NT_STATUS_OK;
2491 /* associate the user's SID and access granted with the new handle. */
2492 if ((info = get_samr_info_by_sid(NULL)) == NULL)
2493 return NT_STATUS_NO_MEMORY;
2495 info->acc_granted = acc_granted;
2496 info->status = q_u->access_mask;
2498 /* get a (unique) handle. open a policy on it. */
2499 if (!create_policy_hnd(p, &r_u->connect_pol, free_samr_info, (void *)info))
2500 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2502 DEBUG(5,("_samr_connect: %d\n", __LINE__));
2504 return r_u->status;
2507 /**********************************************************************
2508 api_samr_lookup_domain
2509 **********************************************************************/
2511 NTSTATUS _samr_lookup_domain(pipes_struct *p, SAMR_Q_LOOKUP_DOMAIN *q_u, SAMR_R_LOOKUP_DOMAIN *r_u)
2513 struct samr_info *info;
2514 fstring domain_name;
2515 DOM_SID sid;
2517 r_u->status = NT_STATUS_OK;
2519 if (!find_policy_by_hnd(p, &q_u->connect_pol, (void**)&info))
2520 return NT_STATUS_INVALID_HANDLE;
2522 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(info->acc_granted, SAMR_ACCESS_OPEN_DOMAIN, "_samr_lookup_domain"))) {
2523 return r_u->status;
2526 rpcstr_pull(domain_name, q_u->uni_domain.buffer, sizeof(domain_name), q_u->uni_domain.uni_str_len*2, 0);
2528 ZERO_STRUCT(sid);
2530 if (!secrets_fetch_domain_sid(domain_name, &sid)) {
2531 r_u->status = NT_STATUS_NO_SUCH_DOMAIN;
2534 DEBUG(2,("Returning domain sid for domain %s -> %s\n", domain_name, sid_string_static(&sid)));
2536 init_samr_r_lookup_domain(r_u, &sid, r_u->status);
2538 return r_u->status;
2541 /******************************************************************
2542 makes a SAMR_R_ENUM_DOMAINS structure.
2543 ********************************************************************/
2545 static BOOL make_enum_domains(TALLOC_CTX *ctx, SAM_ENTRY **pp_sam,
2546 UNISTR2 **pp_uni_name, uint32 num_sam_entries, fstring doms[])
2548 uint32 i;
2549 SAM_ENTRY *sam;
2550 UNISTR2 *uni_name;
2552 DEBUG(5, ("make_enum_domains\n"));
2554 *pp_sam = NULL;
2555 *pp_uni_name = NULL;
2557 if (num_sam_entries == 0)
2558 return True;
2560 sam = (SAM_ENTRY *)talloc_zero(ctx, sizeof(SAM_ENTRY)*num_sam_entries);
2561 uni_name = (UNISTR2 *)talloc_zero(ctx, sizeof(UNISTR2)*num_sam_entries);
2563 if (sam == NULL || uni_name == NULL)
2564 return False;
2566 for (i = 0; i < num_sam_entries; i++) {
2567 int len = doms[i] != NULL ? strlen(doms[i]) : 0;
2569 init_sam_entry(&sam[i], len, 0);
2570 init_unistr2(&uni_name[i], doms[i], len);
2573 *pp_sam = sam;
2574 *pp_uni_name = uni_name;
2576 return True;
2579 /**********************************************************************
2580 api_samr_enum_domains
2581 **********************************************************************/
2583 NTSTATUS _samr_enum_domains(pipes_struct *p, SAMR_Q_ENUM_DOMAINS *q_u, SAMR_R_ENUM_DOMAINS *r_u)
2585 struct samr_info *info;
2586 uint32 num_entries = 2;
2587 fstring dom[2];
2588 char *name;
2590 r_u->status = NT_STATUS_OK;
2592 if (!find_policy_by_hnd(p, &q_u->pol, (void**)&info))
2593 return NT_STATUS_INVALID_HANDLE;
2595 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(info->acc_granted, SAMR_ACCESS_ENUM_DOMAINS, "_samr_enum_domains"))) {
2596 return r_u->status;
2599 switch (lp_server_role()) {
2600 case ROLE_DOMAIN_PDC:
2601 case ROLE_DOMAIN_BDC:
2602 name = global_myworkgroup;
2603 break;
2604 default:
2605 name = global_myname;
2608 fstrcpy(dom[0],name);
2609 strupper(dom[0]);
2610 fstrcpy(dom[1],"Builtin");
2612 if (!make_enum_domains(p->mem_ctx, &r_u->sam, &r_u->uni_dom_name, num_entries, dom))
2613 return NT_STATUS_NO_MEMORY;
2615 init_samr_r_enum_domains(r_u, q_u->start_idx + num_entries, num_entries);
2617 return r_u->status;
2620 /*******************************************************************
2621 api_samr_open_alias
2622 ********************************************************************/
2624 NTSTATUS _api_samr_open_alias(pipes_struct *p, SAMR_Q_OPEN_ALIAS *q_u, SAMR_R_OPEN_ALIAS *r_u)
2626 DOM_SID sid;
2627 POLICY_HND domain_pol = q_u->dom_pol;
2628 uint32 alias_rid = q_u->rid_alias;
2629 POLICY_HND *alias_pol = &r_u->pol;
2630 struct samr_info *info = NULL;
2631 SEC_DESC *psd = NULL;
2632 uint32 acc_granted;
2633 uint32 des_access = q_u->access_mask;
2634 size_t sd_size;
2635 NTSTATUS status;
2637 r_u->status = NT_STATUS_OK;
2639 /* find the domain policy and get the SID / access bits stored in the domain policy */
2640 if (!get_lsa_policy_samr_sid(p, &domain_pol, &sid, &acc_granted))
2641 return NT_STATUS_INVALID_HANDLE;
2643 if (!NT_STATUS_IS_OK(status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_OPEN_ACCOUNT, "_samr_open_alias"))) {
2644 return status;
2647 /* append the alias' RID to it */
2648 if (!sid_append_rid(&sid, alias_rid))
2649 return NT_STATUS_NO_SUCH_USER;
2651 /*check if access can be granted as requested by client. */
2652 samr_make_ali_obj_sd(p->mem_ctx, &psd, &sd_size);
2653 se_map_generic(&des_access,&ali_generic_mapping);
2654 if (!NT_STATUS_IS_OK(status =
2655 access_check_samr_object(psd, p->pipe_user.nt_user_token,
2656 des_access, &acc_granted, "_samr_open_alias"))) {
2657 return status;
2661 * we should check if the rid really exist !!!
2662 * JFM.
2665 /* associate the user's SID with the new handle. */
2666 if ((info = get_samr_info_by_sid(&sid)) == NULL)
2667 return NT_STATUS_NO_MEMORY;
2669 info->acc_granted = acc_granted;
2671 /* get a (unique) handle. open a policy on it. */
2672 if (!create_policy_hnd(p, alias_pol, free_samr_info, (void *)info))
2673 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2675 return r_u->status;
2678 /*******************************************************************
2679 set_user_info_10
2680 ********************************************************************/
2682 static BOOL set_user_info_10(const SAM_USER_INFO_10 *id10, DOM_SID *sid)
2684 SAM_ACCOUNT *pwd =NULL;
2685 BOOL ret;
2687 pdb_init_sam(&pwd);
2689 ret = pdb_getsampwsid(pwd, sid);
2691 if(ret==False) {
2692 pdb_free_sam(&pwd);
2693 return False;
2696 if (id10 == NULL) {
2697 DEBUG(5, ("set_user_info_10: NULL id10\n"));
2698 pdb_free_sam(&pwd);
2699 return False;
2702 if (!pdb_set_acct_ctrl(pwd, id10->acb_info)) {
2703 pdb_free_sam(&pwd);
2704 return False;
2707 if(!pdb_update_sam_account(pwd)) {
2708 pdb_free_sam(&pwd);
2709 return False;
2712 pdb_free_sam(&pwd);
2714 return True;
2717 /*******************************************************************
2718 set_user_info_12
2719 ********************************************************************/
2721 static BOOL set_user_info_12(SAM_USER_INFO_12 *id12, DOM_SID *sid)
2723 SAM_ACCOUNT *pwd = NULL;
2725 pdb_init_sam(&pwd);
2727 if(!pdb_getsampwsid(pwd, sid)) {
2728 pdb_free_sam(&pwd);
2729 return False;
2732 if (id12 == NULL) {
2733 DEBUG(2, ("set_user_info_12: id12 is NULL\n"));
2734 pdb_free_sam(&pwd);
2735 return False;
2738 if (!pdb_set_lanman_passwd (pwd, id12->lm_pwd)) {
2739 pdb_free_sam(&pwd);
2740 return False;
2742 if (!pdb_set_nt_passwd (pwd, id12->nt_pwd)) {
2743 pdb_free_sam(&pwd);
2744 return False;
2746 if (!pdb_set_pass_changed_now (pwd)) {
2747 pdb_free_sam(&pwd);
2748 return False;
2751 if(!pdb_update_sam_account(pwd)) {
2752 pdb_free_sam(&pwd);
2753 return False;
2756 pdb_free_sam(&pwd);
2757 return True;
2760 /*******************************************************************
2761 set_user_info_21
2762 ********************************************************************/
2764 static BOOL set_user_info_21(SAM_USER_INFO_21 *id21, DOM_SID *sid)
2766 SAM_ACCOUNT *pwd = NULL;
2768 if (id21 == NULL) {
2769 DEBUG(5, ("set_user_info_21: NULL id21\n"));
2770 return False;
2773 pdb_init_sam(&pwd);
2775 if (!pdb_getsampwsid(pwd, sid)) {
2776 pdb_free_sam(&pwd);
2777 return False;
2780 copy_id21_to_sam_passwd(pwd, id21);
2783 * The funny part about the previous two calls is
2784 * that pwd still has the password hashes from the
2785 * passdb entry. These have not been updated from
2786 * id21. I don't know if they need to be set. --jerry
2789 /* write the change out */
2790 if(!pdb_update_sam_account(pwd)) {
2791 pdb_free_sam(&pwd);
2792 return False;
2795 pdb_free_sam(&pwd);
2797 return True;
2800 /*******************************************************************
2801 set_user_info_23
2802 ********************************************************************/
2804 static BOOL set_user_info_23(SAM_USER_INFO_23 *id23, DOM_SID *sid)
2806 SAM_ACCOUNT *pwd = NULL;
2807 pstring plaintext_buf;
2808 uint32 len;
2809 uint16 acct_ctrl;
2811 if (id23 == NULL) {
2812 DEBUG(5, ("set_user_info_23: NULL id23\n"));
2813 return False;
2816 pdb_init_sam(&pwd);
2818 if (!pdb_getsampwsid(pwd, sid)) {
2819 pdb_free_sam(&pwd);
2820 return False;
2823 DEBUG(5, ("Attempting administrator password change (level 23) for user %s\n",
2824 pdb_get_username(pwd)));
2826 acct_ctrl = pdb_get_acct_ctrl(pwd);
2828 copy_id23_to_sam_passwd(pwd, id23);
2830 if (!decode_pw_buffer((char*)id23->pass, plaintext_buf, 256, &len)) {
2831 pdb_free_sam(&pwd);
2832 return False;
2835 if (!pdb_set_plaintext_passwd (pwd, plaintext_buf)) {
2836 pdb_free_sam(&pwd);
2837 return False;
2840 /* if it's a trust account, don't update /etc/passwd */
2841 if ( (!IS_SAM_UNIX_USER(pwd)) ||
2842 ( (acct_ctrl & ACB_DOMTRUST) == ACB_DOMTRUST ) ||
2843 ( (acct_ctrl & ACB_WSTRUST) == ACB_WSTRUST) ||
2844 ( (acct_ctrl & ACB_SVRTRUST) == ACB_SVRTRUST) ) {
2845 DEBUG(5, ("Changing trust account or non-unix-user password, not updating /etc/passwd\n"));
2846 } else {
2847 /* update the UNIX password */
2848 if (lp_unix_password_sync() )
2849 if(!chgpasswd(pdb_get_username(pwd), "", plaintext_buf, True)) {
2850 pdb_free_sam(&pwd);
2851 return False;
2855 ZERO_STRUCT(plaintext_buf);
2857 if(!pdb_update_sam_account(pwd)) {
2858 pdb_free_sam(&pwd);
2859 return False;
2862 pdb_free_sam(&pwd);
2864 return True;
2867 /*******************************************************************
2868 set_user_info_pw
2869 ********************************************************************/
2871 static BOOL set_user_info_pw(char *pass, DOM_SID *sid)
2873 SAM_ACCOUNT *pwd = NULL;
2874 uint32 len;
2875 pstring plaintext_buf;
2876 uint16 acct_ctrl;
2878 pdb_init_sam(&pwd);
2880 if (!pdb_getsampwsid(pwd, sid)) {
2881 pdb_free_sam(&pwd);
2882 return False;
2885 DEBUG(5, ("Attempting administrator password change for user %s\n",
2886 pdb_get_username(pwd)));
2888 acct_ctrl = pdb_get_acct_ctrl(pwd);
2890 ZERO_STRUCT(plaintext_buf);
2892 if (!decode_pw_buffer(pass, plaintext_buf, 256, &len)) {
2893 pdb_free_sam(&pwd);
2894 return False;
2897 if (!pdb_set_plaintext_passwd (pwd, plaintext_buf)) {
2898 pdb_free_sam(&pwd);
2899 return False;
2902 /* if it's a trust account, don't update /etc/passwd */
2903 if ( (!IS_SAM_UNIX_USER(pwd)) ||
2904 ( (acct_ctrl & ACB_DOMTRUST) == ACB_DOMTRUST ) ||
2905 ( (acct_ctrl & ACB_WSTRUST) == ACB_WSTRUST) ||
2906 ( (acct_ctrl & ACB_SVRTRUST) == ACB_SVRTRUST) ) {
2907 DEBUG(5, ("Changing trust account or non-unix-user password, not updating /etc/passwd\n"));
2908 } else {
2909 /* update the UNIX password */
2910 if (lp_unix_password_sync()) {
2911 if(!chgpasswd(pdb_get_username(pwd), "", plaintext_buf, True)) {
2912 pdb_free_sam(&pwd);
2913 return False;
2918 ZERO_STRUCT(plaintext_buf);
2920 DEBUG(5,("set_user_info_pw: pdb_update_pwd()\n"));
2922 /* update the SAMBA password */
2923 if(!pdb_update_sam_account(pwd)) {
2924 pdb_free_sam(&pwd);
2925 return False;
2928 pdb_free_sam(&pwd);
2930 return True;
2933 /*******************************************************************
2934 samr_reply_set_userinfo
2935 ********************************************************************/
2937 NTSTATUS _samr_set_userinfo(pipes_struct *p, SAMR_Q_SET_USERINFO *q_u, SAMR_R_SET_USERINFO *r_u)
2939 DOM_SID sid;
2940 POLICY_HND *pol = &q_u->pol;
2941 uint16 switch_value = q_u->switch_value;
2942 SAM_USERINFO_CTR *ctr = q_u->ctr;
2943 uint32 acc_granted;
2944 uint32 acc_required;
2946 DEBUG(5, ("_samr_set_userinfo: %d\n", __LINE__));
2948 r_u->status = NT_STATUS_OK;
2950 /* find the policy handle. open a policy on it. */
2951 if (!get_lsa_policy_samr_sid(p, pol, &sid, &acc_granted))
2952 return NT_STATUS_INVALID_HANDLE;
2954 acc_required = USER_ACCESS_SET_LOC_COM | USER_ACCESS_SET_ATTRIBUTES; /* This is probably wrong */
2955 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, acc_required, "_samr_set_userinfo"))) {
2956 return r_u->status;
2959 DEBUG(5, ("_samr_set_userinfo: sid:%s, level:%d\n", sid_string_static(&sid), switch_value));
2961 if (ctr == NULL) {
2962 DEBUG(5, ("_samr_set_userinfo: NULL info level\n"));
2963 return NT_STATUS_INVALID_INFO_CLASS;
2966 /* ok! user info levels (lots: see MSDEV help), off we go... */
2967 switch (switch_value) {
2968 case 0x12:
2969 if (!set_user_info_12(ctr->info.id12, &sid))
2970 return NT_STATUS_ACCESS_DENIED;
2971 break;
2973 case 24:
2974 SamOEMhash(ctr->info.id24->pass, p->session_key, 516);
2976 dump_data(100, (char *)ctr->info.id24->pass, 516);
2978 if (!set_user_info_pw((char *)ctr->info.id24->pass, &sid))
2979 return NT_STATUS_ACCESS_DENIED;
2980 break;
2982 case 25:
2983 #if 0
2985 * Currently we don't really know how to unmarshall
2986 * the level 25 struct, and the password encryption
2987 * is different. This is a placeholder for when we
2988 * do understand it. In the meantime just return INVALID
2989 * info level and W2K SP2 drops down to level 23... JRA.
2992 SamOEMhash(ctr->info.id25->pass, p->session_key, 532);
2994 dump_data(100, (char *)ctr->info.id25->pass, 532);
2996 if (!set_user_info_pw(ctr->info.id25->pass, &sid))
2997 return NT_STATUS_ACCESS_DENIED;
2998 break;
2999 #endif
3000 return NT_STATUS_INVALID_INFO_CLASS;
3002 case 23:
3003 SamOEMhash(ctr->info.id23->pass, p->session_key, 516);
3005 dump_data(100, (char *)ctr->info.id23->pass, 516);
3007 if (!set_user_info_23(ctr->info.id23, &sid))
3008 return NT_STATUS_ACCESS_DENIED;
3009 break;
3011 default:
3012 return NT_STATUS_INVALID_INFO_CLASS;
3015 return r_u->status;
3018 /*******************************************************************
3019 samr_reply_set_userinfo2
3020 ********************************************************************/
3022 NTSTATUS _samr_set_userinfo2(pipes_struct *p, SAMR_Q_SET_USERINFO2 *q_u, SAMR_R_SET_USERINFO2 *r_u)
3024 DOM_SID sid;
3025 SAM_USERINFO_CTR *ctr = q_u->ctr;
3026 POLICY_HND *pol = &q_u->pol;
3027 uint16 switch_value = q_u->switch_value;
3028 uint32 acc_granted;
3029 uint32 acc_required;
3031 DEBUG(5, ("samr_reply_set_userinfo2: %d\n", __LINE__));
3033 r_u->status = NT_STATUS_OK;
3035 /* find the policy handle. open a policy on it. */
3036 if (!get_lsa_policy_samr_sid(p, pol, &sid, &acc_granted))
3037 return NT_STATUS_INVALID_HANDLE;
3039 acc_required = USER_ACCESS_SET_LOC_COM | USER_ACCESS_SET_ATTRIBUTES; /* This is probably wrong */
3040 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, acc_required, "_samr_set_userinfo2"))) {
3041 return r_u->status;
3044 DEBUG(5, ("samr_reply_set_userinfo2: sid:%s\n", sid_string_static(&sid)));
3046 if (ctr == NULL) {
3047 DEBUG(5, ("samr_reply_set_userinfo2: NULL info level\n"));
3048 return NT_STATUS_INVALID_INFO_CLASS;
3051 switch_value=ctr->switch_value;
3053 /* ok! user info levels (lots: see MSDEV help), off we go... */
3054 switch (switch_value) {
3055 case 21:
3056 if (!set_user_info_21(ctr->info.id21, &sid))
3057 return NT_STATUS_ACCESS_DENIED;
3058 break;
3059 case 16:
3060 if (!set_user_info_10(ctr->info.id10, &sid))
3061 return NT_STATUS_ACCESS_DENIED;
3062 break;
3063 case 18:
3064 /* Used by AS/U JRA. */
3065 if (!set_user_info_12(ctr->info.id12, &sid))
3066 return NT_STATUS_ACCESS_DENIED;
3067 break;
3068 default:
3069 return NT_STATUS_INVALID_INFO_CLASS;
3072 return r_u->status;
3075 /*********************************************************************
3076 _samr_query_aliasmem
3077 *********************************************************************/
3079 NTSTATUS _samr_query_useraliases(pipes_struct *p, SAMR_Q_QUERY_USERALIASES *q_u, SAMR_R_QUERY_USERALIASES *r_u)
3081 int num_groups = 0, tmp_num_groups=0;
3082 uint32 *rids=NULL, *new_rids=NULL, *tmp_rids=NULL;
3083 struct samr_info *info = NULL;
3084 int i,j;
3085 /* until i see a real useraliases query, we fack one up */
3087 /* I have seen one, JFM 2/12/2001 */
3089 * Explanation of what this call does:
3090 * for all the SID given in the request:
3091 * return a list of alias (local groups)
3092 * that have those SID as members.
3094 * and that's the alias in the domain specified
3095 * in the policy_handle
3097 * if the policy handle is on an incorrect sid
3098 * for example a user's sid
3099 * we should reply NT_STATUS_OBJECT_TYPE_MISMATCH
3102 r_u->status = NT_STATUS_OK;
3104 DEBUG(5,("_samr_query_useraliases: %d\n", __LINE__));
3106 /* find the policy handle. open a policy on it. */
3107 if (!find_policy_by_hnd(p, &q_u->pol, (void **)&info))
3108 return NT_STATUS_INVALID_HANDLE;
3110 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(info->acc_granted, USER_ACCESS_GET_GROUPS, "_samr_query_useraliases"))) {
3111 return r_u->status;
3114 if (!sid_check_is_domain(&info->sid) &&
3115 !sid_check_is_builtin(&info->sid))
3116 return NT_STATUS_OBJECT_TYPE_MISMATCH;
3119 for (i=0; i<q_u->num_sids1; i++) {
3121 r_u->status=get_alias_user_groups(p->mem_ctx, &info->sid, &tmp_num_groups, &tmp_rids, &(q_u->sid[i].sid));
3124 * if there is an error, we just continue as
3125 * it can be an unfound user or group
3127 if (!NT_STATUS_IS_OK(r_u->status)) {
3128 DEBUG(10,("_samr_query_useraliases: an error occured while getting groups\n"));
3129 continue;
3132 if (tmp_num_groups==0) {
3133 DEBUG(10,("_samr_query_useraliases: no groups found\n"));
3134 continue;
3137 new_rids=(uint32 *)talloc_realloc(p->mem_ctx, rids, (num_groups+tmp_num_groups)*sizeof(uint32));
3138 if (new_rids==NULL) {
3139 DEBUG(0,("_samr_query_useraliases: could not realloc memory\n"));
3140 return NT_STATUS_NO_MEMORY;
3142 rids=new_rids;
3144 for (j=0; j<tmp_num_groups; j++)
3145 rids[j+num_groups]=tmp_rids[j];
3147 safe_free(tmp_rids);
3149 num_groups+=tmp_num_groups;
3152 init_samr_r_query_useraliases(r_u, num_groups, rids, NT_STATUS_OK);
3153 return NT_STATUS_OK;
3156 /*********************************************************************
3157 _samr_query_aliasmem
3158 *********************************************************************/
3160 NTSTATUS _samr_query_aliasmem(pipes_struct *p, SAMR_Q_QUERY_ALIASMEM *q_u, SAMR_R_QUERY_ALIASMEM *r_u)
3162 int i;
3164 GROUP_MAP map;
3165 int num_uids = 0;
3166 DOM_SID2 *sid;
3167 uid_t *uid=NULL;
3169 DOM_SID alias_sid;
3170 DOM_SID als_sid;
3171 uint32 alias_rid;
3172 fstring alias_sid_str;
3173 DOM_SID temp_sid;
3175 SAM_ACCOUNT *sam_user = NULL;
3176 BOOL check;
3177 uint32 acc_granted;
3179 /* find the policy handle. open a policy on it. */
3180 if (!get_lsa_policy_samr_sid(p, &q_u->alias_pol, &alias_sid, &acc_granted))
3181 return NT_STATUS_INVALID_HANDLE;
3183 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, ALIAS_ACCESS_GET_MEMBERS, "_samr_query_aliasmem"))) {
3184 return r_u->status;
3187 sid_copy(&als_sid, &alias_sid);
3188 sid_to_string(alias_sid_str, &alias_sid);
3189 sid_split_rid(&alias_sid, &alias_rid);
3191 DEBUG(10, ("sid is %s\n", alias_sid_str));
3193 if (sid_equal(&alias_sid, &global_sid_Builtin)) {
3194 DEBUG(10, ("lookup on Builtin SID (S-1-5-32)\n"));
3195 if(!get_local_group_from_sid(als_sid, &map, MAPPING_WITHOUT_PRIV))
3196 return NT_STATUS_NO_SUCH_ALIAS;
3197 } else {
3198 if (sid_equal(&alias_sid, get_global_sam_sid())) {
3199 DEBUG(10, ("lookup on Server SID\n"));
3200 if(!get_local_group_from_sid(als_sid, &map, MAPPING_WITHOUT_PRIV))
3201 return NT_STATUS_NO_SUCH_ALIAS;
3205 if(!get_uid_list_of_group(map.gid, &uid, &num_uids))
3206 return NT_STATUS_NO_SUCH_ALIAS;
3208 DEBUG(10, ("sid is %s\n", alias_sid_str));
3209 sid = (DOM_SID2 *)talloc_zero(p->mem_ctx, sizeof(DOM_SID2) * num_uids);
3210 if (num_uids!=0 && sid == NULL)
3211 return NT_STATUS_NO_MEMORY;
3213 for (i = 0; i < num_uids; i++) {
3214 struct passwd *pass;
3215 uint32 rid;
3217 sid_copy(&temp_sid, get_global_sam_sid());
3219 pass = getpwuid_alloc(uid[i]);
3220 if (!pass) continue;
3222 if (!NT_STATUS_IS_OK(pdb_init_sam(&sam_user))) {
3223 passwd_free(&pass);
3224 continue;
3227 become_root();
3228 check = pdb_getsampwnam(sam_user, pass->pw_name);
3229 unbecome_root();
3231 if (check != True) {
3232 pdb_free_sam(&sam_user);
3233 passwd_free(&pass);
3234 continue;
3237 rid = pdb_get_user_rid(sam_user);
3238 if (rid == 0) {
3239 pdb_free_sam(&sam_user);
3240 passwd_free(&pass);
3241 continue;
3244 pdb_free_sam(&sam_user);
3245 passwd_free(&pass);
3247 sid_append_rid(&temp_sid, rid);
3249 init_dom_sid2(&sid[i], &temp_sid);
3252 DEBUG(10, ("sid is %s\n", alias_sid_str));
3253 init_samr_r_query_aliasmem(r_u, num_uids, sid, NT_STATUS_OK);
3255 return NT_STATUS_OK;
3258 /*********************************************************************
3259 _samr_query_groupmem
3260 *********************************************************************/
3262 NTSTATUS _samr_query_groupmem(pipes_struct *p, SAMR_Q_QUERY_GROUPMEM *q_u, SAMR_R_QUERY_GROUPMEM *r_u)
3264 int num_uids = 0;
3265 int i;
3266 DOM_SID group_sid;
3267 uint32 group_rid;
3268 fstring group_sid_str;
3269 uid_t *uid=NULL;
3271 GROUP_MAP map;
3273 uint32 *rid=NULL;
3274 uint32 *attr=NULL;
3276 SAM_ACCOUNT *sam_user = NULL;
3277 BOOL check;
3278 uint32 acc_granted;
3280 /* find the policy handle. open a policy on it. */
3281 if (!get_lsa_policy_samr_sid(p, &q_u->group_pol, &group_sid, &acc_granted))
3282 return NT_STATUS_INVALID_HANDLE;
3284 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, GROUP_ACCESS_GET_MEMBERS, "_samr_query_groupmem"))) {
3285 return r_u->status;
3288 /* todo: change to use sid_compare_front */
3290 sid_split_rid(&group_sid, &group_rid);
3291 sid_to_string(group_sid_str, &group_sid);
3292 DEBUG(10, ("sid is %s\n", group_sid_str));
3294 /* can we get a query for an SID outside our domain ? */
3295 if (!sid_equal(&group_sid, get_global_sam_sid()))
3296 return NT_STATUS_NO_SUCH_GROUP;
3298 sid_append_rid(&group_sid, group_rid);
3299 DEBUG(10, ("lookup on Domain SID\n"));
3301 if(!get_domain_group_from_sid(group_sid, &map, MAPPING_WITHOUT_PRIV))
3302 return NT_STATUS_NO_SUCH_GROUP;
3304 if(!get_uid_list_of_group(map.gid, &uid, &num_uids))
3305 return NT_STATUS_NO_SUCH_GROUP;
3307 rid=talloc_zero(p->mem_ctx, sizeof(uint32)*num_uids);
3308 attr=talloc_zero(p->mem_ctx, sizeof(uint32)*num_uids);
3310 if (num_uids!=0 && (rid==NULL || attr==NULL))
3311 return NT_STATUS_NO_MEMORY;
3313 for (i=0; i<num_uids; i++) {
3314 struct passwd *pass;
3315 uint32 urid;
3317 pass = getpwuid_alloc(uid[i]);
3318 if (!pass) continue;
3320 if (!NT_STATUS_IS_OK(pdb_init_sam(&sam_user))) {
3321 passwd_free(&pass);
3322 continue;
3325 become_root();
3326 check = pdb_getsampwnam(sam_user, pass->pw_name);
3327 unbecome_root();
3329 if (check != True) {
3330 pdb_free_sam(&sam_user);
3331 passwd_free(&pass);
3332 continue;
3335 urid = pdb_get_user_rid(sam_user);
3336 if (urid == 0) {
3337 pdb_free_sam(&sam_user);
3338 passwd_free(&pass);
3339 continue;
3342 pdb_free_sam(&sam_user);
3343 passwd_free(&pass);
3345 rid[i] = urid;
3346 attr[i] = SID_NAME_USER;
3349 init_samr_r_query_groupmem(r_u, num_uids, rid, attr, NT_STATUS_OK);
3351 return NT_STATUS_OK;
3354 /*********************************************************************
3355 _samr_add_aliasmem
3356 *********************************************************************/
3358 NTSTATUS _samr_add_aliasmem(pipes_struct *p, SAMR_Q_ADD_ALIASMEM *q_u, SAMR_R_ADD_ALIASMEM *r_u)
3360 DOM_SID alias_sid;
3361 fstring alias_sid_str;
3362 uid_t uid;
3363 struct passwd *pwd;
3364 struct group *grp;
3365 fstring grp_name;
3366 GROUP_MAP map;
3367 NTSTATUS ret;
3368 SAM_ACCOUNT *sam_user = NULL;
3369 BOOL check;
3370 uint32 acc_granted;
3372 /* Find the policy handle. Open a policy on it. */
3373 if (!get_lsa_policy_samr_sid(p, &q_u->alias_pol, &alias_sid, &acc_granted))
3374 return NT_STATUS_INVALID_HANDLE;
3376 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, ALIAS_ACCESS_ADD_MEMBER, "_samr_add_aliasmem"))) {
3377 return r_u->status;
3380 sid_to_string(alias_sid_str, &alias_sid);
3381 DEBUG(10, ("sid is %s\n", alias_sid_str));
3383 if (sid_compare(&alias_sid, get_global_sam_sid())>0) {
3384 DEBUG(10, ("adding member on Server SID\n"));
3385 if(!get_local_group_from_sid(alias_sid, &map, MAPPING_WITHOUT_PRIV))
3386 return NT_STATUS_NO_SUCH_ALIAS;
3388 } else {
3389 if (sid_compare(&alias_sid, &global_sid_Builtin)>0) {
3390 DEBUG(10, ("adding member on BUILTIN SID\n"));
3391 if( !get_local_group_from_sid(alias_sid, &map, MAPPING_WITHOUT_PRIV))
3392 return NT_STATUS_NO_SUCH_ALIAS;
3394 } else
3395 return NT_STATUS_NO_SUCH_ALIAS;
3398 ret = pdb_init_sam(&sam_user);
3399 if (!NT_STATUS_IS_OK(ret))
3400 return ret;
3402 check = pdb_getsampwsid(sam_user, &q_u->sid.sid);
3404 if (check != True) {
3405 pdb_free_sam(&sam_user);
3406 return NT_STATUS_NO_SUCH_USER;
3409 uid = pdb_get_uid(sam_user);
3410 if (uid == -1) {
3411 pdb_free_sam(&sam_user);
3412 return NT_STATUS_NO_SUCH_USER;
3415 pdb_free_sam(&sam_user);
3417 if ((pwd=getpwuid_alloc(uid)) == NULL) {
3418 return NT_STATUS_NO_SUCH_USER;
3419 } else {
3420 passwd_free(&pwd);
3423 if ((grp=getgrgid(map.gid)) == NULL)
3424 return NT_STATUS_NO_SUCH_ALIAS;
3426 /* we need to copy the name otherwise it's overloaded in user_in_group_list */
3427 fstrcpy(grp_name, grp->gr_name);
3429 /* if the user is already in the group */
3430 if(user_in_group_list(pwd->pw_name, grp_name))
3431 return NT_STATUS_MEMBER_IN_ALIAS;
3434 * ok, the group exist, the user exist, the user is not in the group,
3435 * we can (finally) add it to the group !
3437 smb_add_user_group(grp_name, pwd->pw_name);
3439 /* check if the user has been added then ... */
3440 if(!user_in_group_list(pwd->pw_name, grp_name))
3441 return NT_STATUS_MEMBER_NOT_IN_ALIAS; /* don't know what to reply else */
3443 return NT_STATUS_OK;
3446 /*********************************************************************
3447 _samr_del_aliasmem
3448 *********************************************************************/
3450 NTSTATUS _samr_del_aliasmem(pipes_struct *p, SAMR_Q_DEL_ALIASMEM *q_u, SAMR_R_DEL_ALIASMEM *r_u)
3452 DOM_SID alias_sid;
3453 fstring alias_sid_str;
3454 struct group *grp;
3455 fstring grp_name;
3456 GROUP_MAP map;
3457 SAM_ACCOUNT *sam_pass=NULL;
3458 uint32 acc_granted;
3460 /* Find the policy handle. Open a policy on it. */
3461 if (!get_lsa_policy_samr_sid(p, &q_u->alias_pol, &alias_sid, &acc_granted))
3462 return NT_STATUS_INVALID_HANDLE;
3464 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, ALIAS_ACCESS_REMOVE_MEMBER, "_samr_del_aliasmem"))) {
3465 return r_u->status;
3468 sid_to_string(alias_sid_str, &alias_sid);
3469 DEBUG(10, ("_samr_del_aliasmem:sid is %s\n", alias_sid_str));
3471 if (!sid_check_is_in_our_domain(&alias_sid) &&
3472 !sid_check_is_in_builtin(&alias_sid)) {
3473 DEBUG(10, ("_samr_del_aliasmem:invalid alias group\n"));
3474 return NT_STATUS_NO_SUCH_ALIAS;
3477 if( !get_local_group_from_sid(alias_sid, &map, MAPPING_WITHOUT_PRIV))
3478 return NT_STATUS_NO_SUCH_ALIAS;
3480 if ((grp=getgrgid(map.gid)) == NULL)
3481 return NT_STATUS_NO_SUCH_ALIAS;
3483 /* we need to copy the name otherwise it's overloaded in user_in_group_list */
3484 fstrcpy(grp_name, grp->gr_name);
3486 /* check if the user exists before trying to remove it from the group */
3487 pdb_init_sam(&sam_pass);
3488 if(!pdb_getsampwsid(sam_pass, &q_u->sid.sid)) {
3489 DEBUG(5,("_samr_del_aliasmem:User %s doesn't exist.\n", pdb_get_username(sam_pass)));
3490 pdb_free_sam(&sam_pass);
3491 return NT_STATUS_NO_SUCH_USER;
3494 /* if the user is not in the group */
3495 if(!user_in_group_list(pdb_get_username(sam_pass), grp_name)) {
3496 pdb_free_sam(&sam_pass);
3497 return NT_STATUS_MEMBER_IN_ALIAS;
3500 smb_delete_user_group(grp_name, pdb_get_username(sam_pass));
3502 /* check if the user has been removed then ... */
3503 if(user_in_group_list(pdb_get_username(sam_pass), grp_name)) {
3504 pdb_free_sam(&sam_pass);
3505 return NT_STATUS_MEMBER_NOT_IN_ALIAS; /* don't know what to reply else */
3508 pdb_free_sam(&sam_pass);
3509 return NT_STATUS_OK;
3512 /*********************************************************************
3513 _samr_add_groupmem
3514 *********************************************************************/
3516 NTSTATUS _samr_add_groupmem(pipes_struct *p, SAMR_Q_ADD_GROUPMEM *q_u, SAMR_R_ADD_GROUPMEM *r_u)
3518 DOM_SID group_sid;
3519 DOM_SID user_sid;
3520 fstring group_sid_str;
3521 struct passwd *pwd;
3522 struct group *grp;
3523 fstring grp_name;
3524 GROUP_MAP map;
3525 uid_t uid;
3526 NTSTATUS ret;
3527 SAM_ACCOUNT *sam_user;
3528 BOOL check;
3529 uint32 acc_granted;
3531 /* Find the policy handle. Open a policy on it. */
3532 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &group_sid, &acc_granted))
3533 return NT_STATUS_INVALID_HANDLE;
3535 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, GROUP_ACCESS_ADD_MEMBER, "_samr_add_groupmem"))) {
3536 return r_u->status;
3539 sid_to_string(group_sid_str, &group_sid);
3540 DEBUG(10, ("sid is %s\n", group_sid_str));
3542 if (sid_compare(&group_sid, get_global_sam_sid())<=0)
3543 return NT_STATUS_NO_SUCH_GROUP;
3545 DEBUG(10, ("lookup on Domain SID\n"));
3547 if(!get_domain_group_from_sid(group_sid, &map, MAPPING_WITHOUT_PRIV))
3548 return NT_STATUS_NO_SUCH_GROUP;
3550 sid_copy(&user_sid, get_global_sam_sid());
3551 sid_append_rid(&user_sid, q_u->rid);
3553 ret = pdb_init_sam(&sam_user);
3554 if (!NT_STATUS_IS_OK(ret))
3555 return ret;
3557 check = pdb_getsampwsid(sam_user, &user_sid);
3559 if (check != True) {
3560 pdb_free_sam(&sam_user);
3561 return NT_STATUS_NO_SUCH_USER;
3564 uid = pdb_get_uid(sam_user);
3565 if (uid == -1) {
3566 pdb_free_sam(&sam_user);
3567 return NT_STATUS_NO_SUCH_USER;
3570 pdb_free_sam(&sam_user);
3572 if ((pwd=getpwuid_alloc(uid)) == NULL) {
3573 return NT_STATUS_NO_SUCH_USER;
3574 } else {
3575 passwd_free(&pwd);
3578 if ((grp=getgrgid(map.gid)) == NULL)
3579 return NT_STATUS_NO_SUCH_GROUP;
3581 /* we need to copy the name otherwise it's overloaded in user_in_group_list */
3582 fstrcpy(grp_name, grp->gr_name);
3584 /* if the user is already in the group */
3585 if(user_in_group_list(pwd->pw_name, grp_name))
3586 return NT_STATUS_MEMBER_IN_GROUP;
3589 * ok, the group exist, the user exist, the user is not in the group,
3591 * we can (finally) add it to the group !
3594 smb_add_user_group(grp_name, pwd->pw_name);
3596 /* check if the user has been added then ... */
3597 if(!user_in_group_list(pwd->pw_name, grp_name))
3598 return NT_STATUS_MEMBER_NOT_IN_GROUP; /* don't know what to reply else */
3600 return NT_STATUS_OK;
3603 /*********************************************************************
3604 _samr_del_groupmem
3605 *********************************************************************/
3607 NTSTATUS _samr_del_groupmem(pipes_struct *p, SAMR_Q_DEL_GROUPMEM *q_u, SAMR_R_DEL_GROUPMEM *r_u)
3609 DOM_SID group_sid;
3610 DOM_SID user_sid;
3611 SAM_ACCOUNT *sam_pass=NULL;
3612 GROUP_MAP map;
3613 fstring grp_name;
3614 struct group *grp;
3615 uint32 acc_granted;
3618 * delete the group member named q_u->rid
3619 * who is a member of the sid associated with the handle
3620 * the rid is a user's rid as the group is a domain group.
3623 /* Find the policy handle. Open a policy on it. */
3624 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &group_sid, &acc_granted))
3625 return NT_STATUS_INVALID_HANDLE;
3627 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, GROUP_ACCESS_REMOVE_MEMBER, "_samr_del_groupmem"))) {
3628 return r_u->status;
3631 if (!sid_check_is_in_our_domain(&group_sid))
3632 return NT_STATUS_NO_SUCH_GROUP;
3634 sid_copy(&user_sid, get_global_sam_sid());
3635 sid_append_rid(&user_sid, q_u->rid);
3637 if (!get_domain_group_from_sid(group_sid, &map, MAPPING_WITHOUT_PRIV))
3638 return NT_STATUS_NO_SUCH_GROUP;
3640 if ((grp=getgrgid(map.gid)) == NULL)
3641 return NT_STATUS_NO_SUCH_GROUP;
3643 /* we need to copy the name otherwise it's overloaded in user_in_group_list */
3644 fstrcpy(grp_name, grp->gr_name);
3646 /* check if the user exists before trying to remove it from the group */
3647 pdb_init_sam(&sam_pass);
3648 if (!pdb_getsampwsid(sam_pass, &user_sid)) {
3649 DEBUG(5,("User %s doesn't exist.\n", pdb_get_username(sam_pass)));
3650 pdb_free_sam(&sam_pass);
3651 return NT_STATUS_NO_SUCH_USER;
3654 /* if the user is not in the group */
3655 if (!user_in_group_list(pdb_get_username(sam_pass), grp_name)) {
3656 pdb_free_sam(&sam_pass);
3657 return NT_STATUS_MEMBER_NOT_IN_GROUP;
3660 smb_delete_user_group(grp_name, pdb_get_username(sam_pass));
3662 /* check if the user has been removed then ... */
3663 if (user_in_group_list(pdb_get_username(sam_pass), grp_name)) {
3664 pdb_free_sam(&sam_pass);
3665 return NT_STATUS_ACCESS_DENIED; /* don't know what to reply else */
3668 pdb_free_sam(&sam_pass);
3669 return NT_STATUS_OK;
3673 /****************************************************************************
3674 Delete a UNIX user on demand.
3675 ****************************************************************************/
3677 static int smb_delete_user(const char *unix_user)
3679 pstring del_script;
3680 int ret;
3682 pstrcpy(del_script, lp_deluser_script());
3683 if (! *del_script)
3684 return -1;
3685 all_string_sub(del_script, "%u", unix_user, sizeof(pstring));
3686 ret = smbrun(del_script,NULL);
3687 DEBUG(3,("smb_delete_user: Running the command `%s' gave %d\n",del_script,ret));
3688 return ret;
3691 /*********************************************************************
3692 _samr_delete_dom_user
3693 *********************************************************************/
3695 NTSTATUS _samr_delete_dom_user(pipes_struct *p, SAMR_Q_DELETE_DOM_USER *q_u, SAMR_R_DELETE_DOM_USER *r_u )
3697 DOM_SID user_sid;
3698 SAM_ACCOUNT *sam_pass=NULL;
3699 uint32 acc_granted;
3701 DEBUG(5, ("_samr_delete_dom_user: %d\n", __LINE__));
3703 /* Find the policy handle. Open a policy on it. */
3704 if (!get_lsa_policy_samr_sid(p, &q_u->user_pol, &user_sid, &acc_granted))
3705 return NT_STATUS_INVALID_HANDLE;
3707 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DELETE_ACCESS, "_samr_delete_dom_user"))) {
3708 return r_u->status;
3711 if (!sid_check_is_in_our_domain(&user_sid))
3712 return NT_STATUS_CANNOT_DELETE;
3714 /* check if the user exists before trying to delete */
3715 pdb_init_sam(&sam_pass);
3716 if(!pdb_getsampwsid(sam_pass, &user_sid)) {
3717 DEBUG(5,("_samr_delete_dom_user:User %s doesn't exist.\n", pdb_get_username(sam_pass)));
3718 pdb_free_sam(&sam_pass);
3719 return NT_STATUS_NO_SUCH_USER;
3722 /* delete the unix side */
3724 * note: we don't check if the delete really happened
3725 * as the script is not necessary present
3726 * and maybe the sysadmin doesn't want to delete the unix side
3728 smb_delete_user(pdb_get_username(sam_pass));
3730 /* and delete the samba side */
3731 if (!pdb_delete_sam_account(sam_pass)) {
3732 DEBUG(5,("_samr_delete_dom_user:Failed to delete entry for user %s.\n", pdb_get_username(sam_pass)));
3733 pdb_free_sam(&sam_pass);
3734 return NT_STATUS_CANNOT_DELETE;
3737 pdb_free_sam(&sam_pass);
3739 if (!close_policy_hnd(p, &q_u->user_pol))
3740 return NT_STATUS_OBJECT_NAME_INVALID;
3742 return NT_STATUS_OK;
3745 /*********************************************************************
3746 _samr_delete_dom_group
3747 *********************************************************************/
3749 NTSTATUS _samr_delete_dom_group(pipes_struct *p, SAMR_Q_DELETE_DOM_GROUP *q_u, SAMR_R_DELETE_DOM_GROUP *r_u)
3751 DOM_SID group_sid;
3752 DOM_SID dom_sid;
3753 uint32 group_rid;
3754 fstring group_sid_str;
3755 gid_t gid;
3756 struct group *grp;
3757 GROUP_MAP map;
3758 uint32 acc_granted;
3760 DEBUG(5, ("samr_delete_dom_group: %d\n", __LINE__));
3762 /* Find the policy handle. Open a policy on it. */
3763 if (!get_lsa_policy_samr_sid(p, &q_u->group_pol, &group_sid, &acc_granted))
3764 return NT_STATUS_INVALID_HANDLE;
3766 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DELETE_ACCESS, "_samr_delete_dom_group"))) {
3767 return r_u->status;
3770 sid_copy(&dom_sid, &group_sid);
3771 sid_to_string(group_sid_str, &dom_sid);
3772 sid_split_rid(&dom_sid, &group_rid);
3774 DEBUG(10, ("sid is %s\n", group_sid_str));
3776 /* we check if it's our SID before deleting */
3777 if (!sid_equal(&dom_sid, get_global_sam_sid()))
3778 return NT_STATUS_NO_SUCH_GROUP;
3780 DEBUG(10, ("lookup on Domain SID\n"));
3782 if(!get_domain_group_from_sid(group_sid, &map, MAPPING_WITHOUT_PRIV))
3783 return NT_STATUS_NO_SUCH_GROUP;
3785 gid=map.gid;
3787 /* check if group really exists */
3788 if ( (grp=getgrgid(gid)) == NULL)
3789 return NT_STATUS_NO_SUCH_GROUP;
3791 /* we can delete the UNIX group */
3792 smb_delete_group(grp->gr_name);
3794 /* check if the group has been successfully deleted */
3795 if ( (grp=getgrgid(gid)) != NULL)
3796 return NT_STATUS_ACCESS_DENIED;
3798 if(!group_map_remove(group_sid))
3799 return NT_STATUS_ACCESS_DENIED;
3801 if (!close_policy_hnd(p, &q_u->group_pol))
3802 return NT_STATUS_OBJECT_NAME_INVALID;
3804 return NT_STATUS_OK;
3807 /*********************************************************************
3808 _samr_delete_dom_alias
3809 *********************************************************************/
3811 NTSTATUS _samr_delete_dom_alias(pipes_struct *p, SAMR_Q_DELETE_DOM_ALIAS *q_u, SAMR_R_DELETE_DOM_ALIAS *r_u)
3813 DOM_SID alias_sid;
3814 DOM_SID dom_sid;
3815 uint32 alias_rid;
3816 fstring alias_sid_str;
3817 gid_t gid;
3818 struct group *grp;
3819 GROUP_MAP map;
3820 uint32 acc_granted;
3822 DEBUG(5, ("_samr_delete_dom_alias: %d\n", __LINE__));
3824 /* Find the policy handle. Open a policy on it. */
3825 if (!get_lsa_policy_samr_sid(p, &q_u->alias_pol, &alias_sid, &acc_granted))
3826 return NT_STATUS_INVALID_HANDLE;
3828 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DELETE_ACCESS, "_samr_delete_dom_alias"))) {
3829 return r_u->status;
3832 sid_copy(&dom_sid, &alias_sid);
3833 sid_to_string(alias_sid_str, &dom_sid);
3834 sid_split_rid(&dom_sid, &alias_rid);
3836 DEBUG(10, ("sid is %s\n", alias_sid_str));
3838 /* we check if it's our SID before deleting */
3839 if (!sid_equal(&dom_sid, get_global_sam_sid()))
3840 return NT_STATUS_NO_SUCH_ALIAS;
3842 DEBUG(10, ("lookup on Local SID\n"));
3844 if(!get_local_group_from_sid(alias_sid, &map, MAPPING_WITHOUT_PRIV))
3845 return NT_STATUS_NO_SUCH_ALIAS;
3847 gid=map.gid;
3849 /* check if group really exists */
3850 if ( (grp=getgrgid(gid)) == NULL)
3851 return NT_STATUS_NO_SUCH_ALIAS;
3853 /* we can delete the UNIX group */
3854 smb_delete_group(grp->gr_name);
3856 /* check if the group has been successfully deleted */
3857 if ( (grp=getgrgid(gid)) != NULL)
3858 return NT_STATUS_ACCESS_DENIED;
3860 /* don't check if we removed it as it could be an un-mapped group */
3861 group_map_remove(alias_sid);
3863 if (!close_policy_hnd(p, &q_u->alias_pol))
3864 return NT_STATUS_OBJECT_NAME_INVALID;
3866 return NT_STATUS_OK;
3869 /*********************************************************************
3870 _samr_create_dom_group
3871 *********************************************************************/
3873 NTSTATUS _samr_create_dom_group(pipes_struct *p, SAMR_Q_CREATE_DOM_GROUP *q_u, SAMR_R_CREATE_DOM_GROUP *r_u)
3875 DOM_SID dom_sid;
3876 DOM_SID info_sid;
3877 fstring name;
3878 fstring sid_string;
3879 struct group *grp;
3880 struct samr_info *info;
3881 PRIVILEGE_SET priv_set;
3882 uint32 acc_granted;
3884 init_privilege(&priv_set);
3886 /* Find the policy handle. Open a policy on it. */
3887 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &dom_sid, &acc_granted))
3888 return NT_STATUS_INVALID_HANDLE;
3890 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_CREATE_GROUP, "_samr_create_dom_group"))) {
3891 return r_u->status;
3894 if (!sid_equal(&dom_sid, get_global_sam_sid()))
3895 return NT_STATUS_ACCESS_DENIED;
3897 /* TODO: check if allowed to create group and add a become_root/unbecome_root pair.*/
3899 unistr2_to_ascii(name, &q_u->uni_acct_desc, sizeof(name)-1);
3901 /* check if group already exist */
3902 if ((grp=getgrnam(name)) != NULL)
3903 return NT_STATUS_GROUP_EXISTS;
3905 /* we can create the UNIX group */
3906 smb_create_group(name);
3908 /* check if the group has been successfully created */
3909 if ((grp=getgrnam(name)) == NULL)
3910 return NT_STATUS_ACCESS_DENIED;
3912 r_u->rid=pdb_gid_to_group_rid(grp->gr_gid);
3914 /* add the group to the mapping table */
3915 sid_copy(&info_sid, get_global_sam_sid());
3916 sid_append_rid(&info_sid, r_u->rid);
3917 sid_to_string(sid_string, &info_sid);
3919 if(!add_initial_entry(grp->gr_gid, sid_string, SID_NAME_DOM_GRP, name, NULL, priv_set, PR_ACCESS_FROM_NETWORK))
3920 return NT_STATUS_ACCESS_DENIED;
3922 if ((info = get_samr_info_by_sid(&info_sid)) == NULL)
3923 return NT_STATUS_NO_MEMORY;
3925 /* get a (unique) handle. open a policy on it. */
3926 if (!create_policy_hnd(p, &r_u->pol, free_samr_info, (void *)info))
3927 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3929 return NT_STATUS_OK;
3932 /*********************************************************************
3933 _samr_create_dom_alias
3934 *********************************************************************/
3936 NTSTATUS _samr_create_dom_alias(pipes_struct *p, SAMR_Q_CREATE_DOM_ALIAS *q_u, SAMR_R_CREATE_DOM_ALIAS *r_u)
3938 DOM_SID dom_sid;
3939 DOM_SID info_sid;
3940 fstring name;
3941 fstring sid_string;
3942 struct group *grp;
3943 struct samr_info *info;
3944 PRIVILEGE_SET priv_set;
3945 uint32 acc_granted;
3947 init_privilege(&priv_set);
3949 /* Find the policy handle. Open a policy on it. */
3950 if (!get_lsa_policy_samr_sid(p, &q_u->dom_pol, &dom_sid, &acc_granted))
3951 return NT_STATUS_INVALID_HANDLE;
3953 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_CREATE_ALIAS, "_samr_create_alias"))) {
3954 return r_u->status;
3957 if (!sid_equal(&dom_sid, get_global_sam_sid()))
3958 return NT_STATUS_ACCESS_DENIED;
3960 /* TODO: check if allowed to create group and add a become_root/unbecome_root pair.*/
3962 unistr2_to_ascii(name, &q_u->uni_acct_desc, sizeof(name)-1);
3964 /* check if group already exists */
3965 if ( (grp=getgrnam(name)) != NULL)
3966 return NT_STATUS_GROUP_EXISTS;
3968 /* we can create the UNIX group */
3969 smb_create_group(name);
3971 /* check if the group has been successfully created */
3972 if ((grp=getgrnam(name)) == NULL)
3973 return NT_STATUS_ACCESS_DENIED;
3975 r_u->rid=pdb_gid_to_group_rid(grp->gr_gid);
3977 sid_copy(&info_sid, get_global_sam_sid());
3978 sid_append_rid(&info_sid, r_u->rid);
3979 sid_to_string(sid_string, &info_sid);
3981 /* add the group to the mapping table */
3982 if(!add_initial_entry(grp->gr_gid, sid_string, SID_NAME_ALIAS, name, NULL, priv_set, PR_ACCESS_FROM_NETWORK))
3983 return NT_STATUS_ACCESS_DENIED;
3985 if ((info = get_samr_info_by_sid(&info_sid)) == NULL)
3986 return NT_STATUS_NO_MEMORY;
3988 /* get a (unique) handle. open a policy on it. */
3989 if (!create_policy_hnd(p, &r_u->alias_pol, free_samr_info, (void *)info))
3990 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3992 return NT_STATUS_OK;
3995 /*********************************************************************
3996 _samr_query_groupinfo
3998 sends the name/comment pair of a domain group
3999 level 1 send also the number of users of that group
4000 *********************************************************************/
4002 NTSTATUS _samr_query_groupinfo(pipes_struct *p, SAMR_Q_QUERY_GROUPINFO *q_u, SAMR_R_QUERY_GROUPINFO *r_u)
4004 DOM_SID group_sid;
4005 GROUP_MAP map;
4006 uid_t *uid=NULL;
4007 int num_uids=0;
4008 GROUP_INFO_CTR *ctr;
4009 uint32 acc_granted;
4011 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &group_sid, &acc_granted))
4012 return NT_STATUS_INVALID_HANDLE;
4014 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, GROUP_ACCESS_LOOKUP_INFO, "_samr_query_groupinfo"))) {
4015 return r_u->status;
4018 if (!get_domain_group_from_sid(group_sid, &map, MAPPING_WITHOUT_PRIV))
4019 return NT_STATUS_INVALID_HANDLE;
4021 ctr=(GROUP_INFO_CTR *)talloc_zero(p->mem_ctx, sizeof(GROUP_INFO_CTR));
4022 if (ctr==NULL)
4023 return NT_STATUS_NO_MEMORY;
4025 switch (q_u->switch_level) {
4026 case 1:
4027 ctr->switch_value1 = 1;
4028 if(!get_uid_list_of_group(map.gid, &uid, &num_uids))
4029 return NT_STATUS_NO_SUCH_GROUP;
4030 init_samr_group_info1(&ctr->group.info1, map.nt_name, map.comment, num_uids);
4031 SAFE_FREE(uid);
4032 break;
4033 case 3:
4034 ctr->switch_value1 = 3;
4035 init_samr_group_info3(&ctr->group.info3);
4036 break;
4037 case 4:
4038 ctr->switch_value1 = 4;
4039 init_samr_group_info4(&ctr->group.info4, map.comment);
4040 break;
4041 default:
4042 return NT_STATUS_INVALID_INFO_CLASS;
4045 init_samr_r_query_groupinfo(r_u, ctr, NT_STATUS_OK);
4047 return NT_STATUS_OK;
4050 /*********************************************************************
4051 _samr_set_groupinfo
4053 update a domain group's comment.
4054 *********************************************************************/
4056 NTSTATUS _samr_set_groupinfo(pipes_struct *p, SAMR_Q_SET_GROUPINFO *q_u, SAMR_R_SET_GROUPINFO *r_u)
4058 DOM_SID group_sid;
4059 GROUP_MAP map;
4060 GROUP_INFO_CTR *ctr;
4061 uint32 acc_granted;
4063 if (!get_lsa_policy_samr_sid(p, &q_u->pol, &group_sid, &acc_granted))
4064 return NT_STATUS_INVALID_HANDLE;
4066 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, GROUP_ACCESS_SET_INFO, "_samr_set_groupinfo"))) {
4067 return r_u->status;
4070 if (!get_domain_group_from_sid(group_sid, &map, MAPPING_WITH_PRIV))
4071 return NT_STATUS_NO_SUCH_GROUP;
4073 ctr=q_u->ctr;
4075 switch (ctr->switch_value1) {
4076 case 1:
4077 unistr2_to_ascii(map.comment, &(ctr->group.info1.uni_acct_desc), sizeof(map.comment)-1);
4078 break;
4079 case 4:
4080 unistr2_to_ascii(map.comment, &(ctr->group.info4.uni_acct_desc), sizeof(map.comment)-1);
4081 break;
4082 default:
4083 free_privilege(&map.priv_set);
4084 return NT_STATUS_INVALID_INFO_CLASS;
4087 if(!add_mapping_entry(&map, TDB_REPLACE)) {
4088 free_privilege(&map.priv_set);
4089 return NT_STATUS_NO_SUCH_GROUP;
4092 free_privilege(&map.priv_set);
4094 return NT_STATUS_OK;
4097 /*********************************************************************
4098 _samr_set_groupinfo
4100 update a domain group's comment.
4101 *********************************************************************/
4103 NTSTATUS _samr_set_aliasinfo(pipes_struct *p, SAMR_Q_SET_ALIASINFO *q_u, SAMR_R_SET_ALIASINFO *r_u)
4105 DOM_SID group_sid;
4106 GROUP_MAP map;
4107 ALIAS_INFO_CTR *ctr;
4108 uint32 acc_granted;
4110 if (!get_lsa_policy_samr_sid(p, &q_u->alias_pol, &group_sid, &acc_granted))
4111 return NT_STATUS_INVALID_HANDLE;
4113 if (!NT_STATUS_IS_OK(r_u->status = access_check_samr_function(acc_granted, ALIAS_ACCESS_SET_INFO, "_samr_set_aliasinfo"))) {
4114 return r_u->status;
4117 if (!get_local_group_from_sid(group_sid, &map, MAPPING_WITH_PRIV))
4118 return NT_STATUS_NO_SUCH_GROUP;
4120 ctr=&q_u->ctr;
4122 switch (ctr->switch_value1) {
4123 case 3:
4124 unistr2_to_ascii(map.comment, &(ctr->alias.info3.uni_acct_desc), sizeof(map.comment)-1);
4125 break;
4126 default:
4127 free_privilege(&map.priv_set);
4128 return NT_STATUS_INVALID_INFO_CLASS;
4131 if(!add_mapping_entry(&map, TDB_REPLACE)) {
4132 free_privilege(&map.priv_set);
4133 return NT_STATUS_NO_SUCH_GROUP;
4136 free_privilege(&map.priv_set);
4138 return NT_STATUS_OK;
4141 /*********************************************************************
4142 _samr_get_dom_pwinfo
4143 *********************************************************************/
4145 NTSTATUS _samr_get_dom_pwinfo(pipes_struct *p, SAMR_Q_GET_DOM_PWINFO *q_u, SAMR_R_GET_DOM_PWINFO *r_u)
4147 /* Perform access check. Since this rpc does not require a
4148 policy handle it will not be caught by the access checks on
4149 SAMR_CONNECT or SAMR_CONNECT_ANON. */
4151 if (!pipe_access_check(p)) {
4152 DEBUG(3, ("access denied to samr_get_dom_pwinfo\n"));
4153 r_u->status = NT_STATUS_ACCESS_DENIED;
4154 return r_u->status;
4157 /* Actually, returning zeros here works quite well :-). */
4159 return NT_STATUS_OK;
4162 /*********************************************************************
4163 _samr_open_group
4164 *********************************************************************/
4166 NTSTATUS _samr_open_group(pipes_struct *p, SAMR_Q_OPEN_GROUP *q_u, SAMR_R_OPEN_GROUP *r_u)
4168 DOM_SID sid;
4169 DOM_SID info_sid;
4170 GROUP_MAP map;
4171 struct samr_info *info;
4172 SEC_DESC *psd = NULL;
4173 uint32 acc_granted;
4174 uint32 des_access;
4175 size_t sd_size;
4176 NTSTATUS status;
4177 fstring sid_string;
4179 if (!get_lsa_policy_samr_sid(p, &q_u->domain_pol, &sid, &acc_granted))
4180 return NT_STATUS_INVALID_HANDLE;
4182 if (!NT_STATUS_IS_OK(status = access_check_samr_function(acc_granted, DOMAIN_ACCESS_OPEN_ACCOUNT, "_samr_open_group"))) {
4183 return status;
4186 /*check if access can be granted as requested by client. */
4187 samr_make_grp_obj_sd(p->mem_ctx, &psd, &sd_size);
4188 se_map_generic(&des_access,&grp_generic_mapping);
4189 if (!NT_STATUS_IS_OK(status =
4190 access_check_samr_object(psd, p->pipe_user.nt_user_token,
4191 des_access, &acc_granted, "_samr_open_group"))) {
4192 return status;
4196 /* this should not be hard-coded like this */
4197 if (!sid_equal(&sid, get_global_sam_sid()))
4198 return NT_STATUS_ACCESS_DENIED;
4200 sid_copy(&info_sid, get_global_sam_sid());
4201 sid_append_rid(&info_sid, q_u->rid_group);
4202 sid_to_string(sid_string, &info_sid);
4204 if ((info = get_samr_info_by_sid(&info_sid)) == NULL)
4205 return NT_STATUS_NO_MEMORY;
4207 info->acc_granted = acc_granted;
4209 DEBUG(10, ("_samr_open_group:Opening SID: %s\n", sid_string));
4211 /* check if that group really exists */
4212 if (!get_domain_group_from_sid(info->sid, &map, MAPPING_WITHOUT_PRIV))
4213 return NT_STATUS_NO_SUCH_GROUP;
4215 /* get a (unique) handle. open a policy on it. */
4216 if (!create_policy_hnd(p, &r_u->pol, free_samr_info, (void *)info))
4217 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4219 return NT_STATUS_OK;
4222 /*********************************************************************
4223 _samr_unknown_2d
4224 *********************************************************************/
4226 NTSTATUS _samr_unknown_2d(pipes_struct *p, SAMR_Q_UNKNOWN_2D *q_u, SAMR_R_UNKNOWN_2D *r_u)
4228 DEBUG(0,("_samr_unknown_2d: Not yet implemented.\n"));
4229 return NT_STATUS_NOT_IMPLEMENTED;
4232 /*******************************************************************
4233 _samr_unknown_2e
4234 ********************************************************************/
4236 NTSTATUS _samr_unknown_2e(pipes_struct *p, SAMR_Q_UNKNOWN_2E *q_u, SAMR_R_UNKNOWN_2E *r_u)
4238 struct samr_info *info = NULL;
4239 SAM_UNK_CTR *ctr;
4240 uint32 min_pass_len,pass_hist,flag;
4241 time_t u_expire, u_min_age;
4242 NTTIME nt_expire, nt_min_age;
4244 time_t u_lock_duration, u_reset_time;
4245 NTTIME nt_lock_duration, nt_reset_time;
4246 uint32 lockout;
4248 time_t u_logout;
4249 NTTIME nt_logout;
4251 uint32 num_users=0, num_groups=0, num_aliases=0;
4253 uint32 account_policy_temp;
4255 if ((ctr = (SAM_UNK_CTR *)talloc_zero(p->mem_ctx, sizeof(SAM_UNK_CTR))) == NULL)
4256 return NT_STATUS_NO_MEMORY;
4258 ZERO_STRUCTP(ctr);
4260 r_u->status = NT_STATUS_OK;
4262 DEBUG(5,("_samr_unknown_2e: %d\n", __LINE__));
4264 /* find the policy handle. open a policy on it. */
4265 if (!find_policy_by_hnd(p, &q_u->domain_pol, (void **)&info))
4266 return NT_STATUS_INVALID_HANDLE;
4268 switch (q_u->switch_value) {
4269 case 0x01:
4270 account_policy_get(AP_MIN_PASSWORD_LEN, &account_policy_temp);
4271 min_pass_len = account_policy_temp;
4273 account_policy_get(AP_PASSWORD_HISTORY, &account_policy_temp);
4274 pass_hist = account_policy_temp;
4276 account_policy_get(AP_USER_MUST_LOGON_TO_CHG_PASS, &account_policy_temp);
4277 flag = account_policy_temp;
4279 account_policy_get(AP_MAX_PASSWORD_AGE, &account_policy_temp);
4280 u_expire = account_policy_temp;
4282 account_policy_get(AP_MIN_PASSWORD_AGE, &account_policy_temp);
4283 u_min_age = account_policy_temp;
4285 unix_to_nt_time_abs(&nt_expire, u_expire);
4286 unix_to_nt_time_abs(&nt_min_age, u_min_age);
4288 init_unk_info1(&ctr->info.inf1, (uint16)min_pass_len, (uint16)pass_hist,
4289 flag, nt_expire, nt_min_age);
4290 break;
4291 case 0x02:
4292 become_root();
4293 r_u->status=load_sampwd_entries(info, ACB_NORMAL);
4294 unbecome_root();
4295 if (!NT_STATUS_IS_OK(r_u->status)) {
4296 DEBUG(5, ("_samr_query_dispinfo: load_sampwd_entries failed\n"));
4297 return r_u->status;
4299 num_users=info->disp_info.num_user_account;
4300 free_samr_db(info);
4302 r_u->status=load_group_domain_entries(info, get_global_sam_sid());
4303 if (NT_STATUS_IS_ERR(r_u->status)) {
4304 DEBUG(5, ("_samr_query_dispinfo: load_group_domain_entries failed\n"));
4305 return r_u->status;
4307 num_groups=info->disp_info.num_group_account;
4308 free_samr_db(info);
4310 /* The time call below is to get a sequence number for the sam. FIXME !!! JRA. */
4311 init_unk_info2(&ctr->info.inf2, global_myworkgroup, global_myname, (uint32) time(NULL),
4312 num_users, num_groups, num_aliases);
4313 break;
4314 case 0x03:
4315 account_policy_get(AP_TIME_TO_LOGOUT, &account_policy_temp);
4316 u_logout = account_policy_temp;
4318 unix_to_nt_time_abs(&nt_logout, u_logout);
4320 init_unk_info3(&ctr->info.inf3, nt_logout);
4321 break;
4322 case 0x05:
4323 init_unk_info5(&ctr->info.inf5, global_myname);
4324 break;
4325 case 0x06:
4326 init_unk_info6(&ctr->info.inf6);
4327 break;
4328 case 0x07:
4329 init_unk_info7(&ctr->info.inf7);
4330 break;
4331 case 0x0c:
4332 account_policy_get(AP_LOCK_ACCOUNT_DURATION, &account_policy_temp);
4333 u_lock_duration = account_policy_temp;
4335 account_policy_get(AP_RESET_COUNT_TIME, &account_policy_temp);
4336 u_reset_time = account_policy_temp;
4338 account_policy_get(AP_BAD_ATTEMPT_LOCKOUT, &account_policy_temp);
4339 lockout = account_policy_temp;
4341 unix_to_nt_time_abs(&nt_lock_duration, u_lock_duration);
4342 unix_to_nt_time_abs(&nt_reset_time, u_reset_time);
4344 init_unk_info12(&ctr->info.inf12, nt_lock_duration, nt_reset_time, (uint16)lockout);
4345 break;
4346 default:
4347 return NT_STATUS_INVALID_INFO_CLASS;
4350 init_samr_r_samr_unknown_2e(r_u, q_u->switch_value, ctr, NT_STATUS_OK);
4352 DEBUG(5,("_samr_unknown_2e: %d\n", __LINE__));
4354 return r_u->status;
4357 /*******************************************************************
4358 _samr_
4359 ********************************************************************/
4361 NTSTATUS _samr_set_dom_info(pipes_struct *p, SAMR_Q_SET_DOMAIN_INFO *q_u, SAMR_R_SET_DOMAIN_INFO *r_u)
4363 time_t u_expire, u_min_age;
4364 time_t u_logout;
4365 time_t u_lock_duration, u_reset_time;
4367 r_u->status = NT_STATUS_OK;
4369 DEBUG(5,("_samr_set_dom_info: %d\n", __LINE__));
4371 /* find the policy handle. open a policy on it. */
4372 if (!find_policy_by_hnd(p, &q_u->domain_pol, NULL))
4373 return NT_STATUS_INVALID_HANDLE;
4375 DEBUG(5,("_samr_set_dom_info: switch_value: %d\n", q_u->switch_value));
4377 switch (q_u->switch_value) {
4378 case 0x01:
4379 u_expire=nt_time_to_unix_abs(&q_u->ctr->info.inf1.expire);
4380 u_min_age=nt_time_to_unix_abs(&q_u->ctr->info.inf1.min_passwordage);
4382 account_policy_set(AP_MIN_PASSWORD_LEN, (uint32)q_u->ctr->info.inf1.min_length_password);
4383 account_policy_set(AP_PASSWORD_HISTORY, (uint32)q_u->ctr->info.inf1.password_history);
4384 account_policy_set(AP_USER_MUST_LOGON_TO_CHG_PASS, (uint32)q_u->ctr->info.inf1.flag);
4385 account_policy_set(AP_MAX_PASSWORD_AGE, (int)u_expire);
4386 account_policy_set(AP_MIN_PASSWORD_AGE, (int)u_min_age);
4387 break;
4388 case 0x02:
4389 break;
4390 case 0x03:
4391 u_logout=nt_time_to_unix_abs(&q_u->ctr->info.inf3.logout);
4392 account_policy_set(AP_TIME_TO_LOGOUT, (int)u_logout);
4393 break;
4394 case 0x05:
4395 break;
4396 case 0x06:
4397 break;
4398 case 0x07:
4399 break;
4400 case 0x0c:
4401 u_lock_duration=nt_time_to_unix_abs(&q_u->ctr->info.inf12.duration);
4402 u_reset_time=nt_time_to_unix_abs(&q_u->ctr->info.inf12.reset_count);
4404 account_policy_set(AP_LOCK_ACCOUNT_DURATION, (int)u_lock_duration);
4405 account_policy_set(AP_RESET_COUNT_TIME, (int)u_reset_time);
4406 account_policy_set(AP_BAD_ATTEMPT_LOCKOUT, (uint32)q_u->ctr->info.inf12.bad_attempt_lockout);
4407 break;
4408 default:
4409 return NT_STATUS_INVALID_INFO_CLASS;
4412 init_samr_r_set_domain_info(r_u, NT_STATUS_OK);
4414 DEBUG(5,("_samr_set_dom_info: %d\n", __LINE__));
4416 return r_u->status;