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-2008,
9 * Copyright (C) Jean François Micouleau 1998-2001,
10 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002,
11 * Copyright (C) Gerald (Jerry) Carter 2003-2004,
12 * Copyright (C) Simo Sorce 2003.
13 * Copyright (C) Volker Lendecke 2005.
14 * Copyright (C) Guenther Deschner 2008.
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 3 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, see <http://www.gnu.org/licenses/>.
31 * This is the implementation of the SAMR code.
35 #include "smbd/globals.h"
36 #include "../libcli/auth/libcli_auth.h"
39 #define DBGC_CLASS DBGC_RPC_SRV
41 #define SAMR_USR_RIGHTS_WRITE_PW \
42 ( READ_CONTROL_ACCESS | \
43 SAMR_USER_ACCESS_CHANGE_PASSWORD | \
44 SAMR_USER_ACCESS_SET_LOC_COM)
45 #define SAMR_USR_RIGHTS_CANT_WRITE_PW \
46 ( READ_CONTROL_ACCESS | SAMR_USER_ACCESS_SET_LOC_COM )
48 #define DISP_INFO_CACHE_TIMEOUT 10
50 #define MAX_SAM_ENTRIES_W2K 0x400 /* 1024 */
51 #define MAX_SAM_ENTRIES_W95 50
53 struct samr_connect_info {
57 struct samr_domain_info {
59 struct disp_info *disp_info;
62 struct samr_user_info {
66 struct samr_group_info {
70 struct samr_alias_info {
74 typedef struct disp_info {
75 DOM_SID sid; /* identify which domain this is. */
76 struct pdb_search *users; /* querydispinfo 1 and 4 */
77 struct pdb_search *machines; /* querydispinfo 2 */
78 struct pdb_search *groups; /* querydispinfo 3 and 5, enumgroups */
79 struct pdb_search *aliases; /* enumaliases */
82 struct pdb_search *enum_users; /* enumusers with a mask */
84 struct timed_event *cache_timeout_event; /* cache idle timeout
88 static const struct generic_mapping sam_generic_mapping = {
89 GENERIC_RIGHTS_SAM_READ,
90 GENERIC_RIGHTS_SAM_WRITE,
91 GENERIC_RIGHTS_SAM_EXECUTE,
92 GENERIC_RIGHTS_SAM_ALL_ACCESS};
93 static const struct generic_mapping dom_generic_mapping = {
94 GENERIC_RIGHTS_DOMAIN_READ,
95 GENERIC_RIGHTS_DOMAIN_WRITE,
96 GENERIC_RIGHTS_DOMAIN_EXECUTE,
97 GENERIC_RIGHTS_DOMAIN_ALL_ACCESS};
98 static const struct generic_mapping usr_generic_mapping = {
99 GENERIC_RIGHTS_USER_READ,
100 GENERIC_RIGHTS_USER_WRITE,
101 GENERIC_RIGHTS_USER_EXECUTE,
102 GENERIC_RIGHTS_USER_ALL_ACCESS};
103 static const struct generic_mapping usr_nopwchange_generic_mapping = {
104 GENERIC_RIGHTS_USER_READ,
105 GENERIC_RIGHTS_USER_WRITE,
106 GENERIC_RIGHTS_USER_EXECUTE & ~SAMR_USER_ACCESS_CHANGE_PASSWORD,
107 GENERIC_RIGHTS_USER_ALL_ACCESS};
108 static const struct generic_mapping grp_generic_mapping = {
109 GENERIC_RIGHTS_GROUP_READ,
110 GENERIC_RIGHTS_GROUP_WRITE,
111 GENERIC_RIGHTS_GROUP_EXECUTE,
112 GENERIC_RIGHTS_GROUP_ALL_ACCESS};
113 static const struct generic_mapping ali_generic_mapping = {
114 GENERIC_RIGHTS_ALIAS_READ,
115 GENERIC_RIGHTS_ALIAS_WRITE,
116 GENERIC_RIGHTS_ALIAS_EXECUTE,
117 GENERIC_RIGHTS_ALIAS_ALL_ACCESS};
119 /*******************************************************************
120 *******************************************************************/
122 static NTSTATUS make_samr_object_sd( TALLOC_CTX *ctx, SEC_DESC **psd, size_t *sd_size,
123 const struct generic_mapping *map,
124 DOM_SID *sid, uint32 sid_access )
126 DOM_SID domadmin_sid;
127 SEC_ACE ace[5]; /* at most 5 entries */
132 /* basic access for Everyone */
134 init_sec_ace(&ace[i++], &global_sid_World, SEC_ACE_TYPE_ACCESS_ALLOWED,
135 map->generic_execute | map->generic_read, 0);
137 /* add Full Access 'BUILTIN\Administrators' and 'BUILTIN\Account Operators */
139 init_sec_ace(&ace[i++], &global_sid_Builtin_Administrators,
140 SEC_ACE_TYPE_ACCESS_ALLOWED, map->generic_all, 0);
141 init_sec_ace(&ace[i++], &global_sid_Builtin_Account_Operators,
142 SEC_ACE_TYPE_ACCESS_ALLOWED, map->generic_all, 0);
144 /* Add Full Access for Domain Admins if we are a DC */
147 sid_copy( &domadmin_sid, get_global_sam_sid() );
148 sid_append_rid( &domadmin_sid, DOMAIN_GROUP_RID_ADMINS );
149 init_sec_ace(&ace[i++], &domadmin_sid,
150 SEC_ACE_TYPE_ACCESS_ALLOWED, map->generic_all, 0);
153 /* if we have a sid, give it some special access */
156 init_sec_ace(&ace[i++], sid, SEC_ACE_TYPE_ACCESS_ALLOWED, sid_access, 0);
159 /* create the security descriptor */
161 if ((psa = make_sec_acl(ctx, NT4_ACL_REVISION, i, ace)) == NULL)
162 return NT_STATUS_NO_MEMORY;
164 if ((*psd = make_sec_desc(ctx, SECURITY_DESCRIPTOR_REVISION_1,
165 SEC_DESC_SELF_RELATIVE, NULL, NULL, NULL,
166 psa, sd_size)) == NULL)
167 return NT_STATUS_NO_MEMORY;
172 /*******************************************************************
173 Checks if access to an object should be granted, and returns that
174 level of access for further checks.
175 ********************************************************************/
177 NTSTATUS access_check_object( SEC_DESC *psd, NT_USER_TOKEN *token,
178 SE_PRIV *rights, uint32 rights_mask,
179 uint32 des_access, uint32 *acc_granted,
182 NTSTATUS status = NT_STATUS_ACCESS_DENIED;
183 uint32 saved_mask = 0;
185 /* check privileges; certain SAM access bits should be overridden
186 by privileges (mostly having to do with creating/modifying/deleting
189 if (rights && !se_priv_equal(rights, &se_priv_none) &&
190 user_has_any_privilege(token, rights)) {
192 saved_mask = (des_access & rights_mask);
193 des_access &= ~saved_mask;
195 DEBUG(4,("access_check_object: user rights access mask [0x%x]\n",
200 /* check the security descriptor first */
202 status = se_access_check(psd, token, des_access, acc_granted);
203 if (NT_STATUS_IS_OK(status)) {
207 /* give root a free pass */
209 if ( geteuid() == sec_initial_uid() ) {
211 DEBUG(4,("%s: ACCESS should be DENIED (requested: %#010x)\n", debug, des_access));
212 DEBUGADD(4,("but overritten by euid == sec_initial_uid()\n"));
214 *acc_granted = des_access;
216 status = NT_STATUS_OK;
222 /* add in any bits saved during the privilege check (only
223 matters is status is ok) */
225 *acc_granted |= rights_mask;
227 DEBUG(4,("%s: access %s (requested: 0x%08x, granted: 0x%08x)\n",
228 debug, NT_STATUS_IS_OK(status) ? "GRANTED" : "DENIED",
229 des_access, *acc_granted));
235 /*******************************************************************
236 Map any MAXIMUM_ALLOWED_ACCESS request to a valid access set.
237 ********************************************************************/
239 void map_max_allowed_access(const NT_USER_TOKEN *token,
240 uint32_t *pacc_requested)
242 if (!((*pacc_requested) & MAXIMUM_ALLOWED_ACCESS)) {
245 *pacc_requested &= ~MAXIMUM_ALLOWED_ACCESS;
247 /* At least try for generic read|execute - Everyone gets that. */
248 *pacc_requested = GENERIC_READ_ACCESS|GENERIC_EXECUTE_ACCESS;
250 /* root gets anything. */
251 if (geteuid() == sec_initial_uid()) {
252 *pacc_requested |= GENERIC_ALL_ACCESS;
256 /* Full Access for 'BUILTIN\Administrators' and 'BUILTIN\Account Operators */
258 if (is_sid_in_token(token, &global_sid_Builtin_Administrators) ||
259 is_sid_in_token(token, &global_sid_Builtin_Account_Operators)) {
260 *pacc_requested |= GENERIC_ALL_ACCESS;
264 /* Full access for DOMAIN\Domain Admins. */
266 DOM_SID domadmin_sid;
267 sid_copy( &domadmin_sid, get_global_sam_sid() );
268 sid_append_rid( &domadmin_sid, DOMAIN_GROUP_RID_ADMINS );
269 if (is_sid_in_token(token, &domadmin_sid)) {
270 *pacc_requested |= GENERIC_ALL_ACCESS;
274 /* TODO ! Check privileges. */
277 /*******************************************************************
278 Fetch or create a dispinfo struct.
279 ********************************************************************/
281 static DISP_INFO *get_samr_dispinfo_by_sid(const struct dom_sid *psid)
284 * We do a static cache for DISP_INFO's here. Explanation can be found
285 * in Jeremy's checkin message to r11793:
287 * Fix the SAMR cache so it works across completely insane
288 * client behaviour (ie.:
289 * open pipe/open SAMR handle/enumerate 0 - 1024
290 * close SAMR handle, close pipe.
291 * open pipe/open SAMR handle/enumerate 1024 - 2048...
292 * close SAMR handle, close pipe.
293 * And on ad-nausium. Amazing.... probably object-oriented
294 * client side programming in action yet again.
295 * This change should *massively* improve performance when
296 * enumerating users from an LDAP database.
299 * "Our" and the builtin domain are the only ones where we ever
300 * enumerate stuff, so just cache 2 entries.
303 static struct disp_info *builtin_dispinfo;
304 static struct disp_info *domain_dispinfo;
306 /* There are two cases to consider here:
307 1) The SID is a domain SID and we look for an equality match, or
308 2) This is an account SID and so we return the DISP_INFO* for our
315 if (sid_check_is_builtin(psid) || sid_check_is_in_builtin(psid)) {
317 * Necessary only once, but it does not really hurt.
319 if (builtin_dispinfo == NULL) {
320 builtin_dispinfo = talloc_zero(
321 talloc_autofree_context(), struct disp_info);
322 if (builtin_dispinfo == NULL) {
326 sid_copy(&builtin_dispinfo->sid, &global_sid_Builtin);
328 return builtin_dispinfo;
331 if (sid_check_is_domain(psid) || sid_check_is_in_our_domain(psid)) {
333 * Necessary only once, but it does not really hurt.
335 if (domain_dispinfo == NULL) {
336 domain_dispinfo = talloc_zero(
337 talloc_autofree_context(), struct disp_info);
338 if (domain_dispinfo == NULL) {
342 sid_copy(&domain_dispinfo->sid, get_global_sam_sid());
344 return domain_dispinfo;
350 /*******************************************************************
351 Function to free the per SID data.
352 ********************************************************************/
354 static void free_samr_cache(DISP_INFO *disp_info)
356 DEBUG(10, ("free_samr_cache: deleting cache for SID %s\n",
357 sid_string_dbg(&disp_info->sid)));
359 /* We need to become root here because the paged search might have to
360 * tell the LDAP server we're not interested in the rest anymore. */
364 TALLOC_FREE(disp_info->users);
365 TALLOC_FREE(disp_info->machines);
366 TALLOC_FREE(disp_info->groups);
367 TALLOC_FREE(disp_info->aliases);
368 TALLOC_FREE(disp_info->enum_users);
373 /*******************************************************************
374 Idle event handler. Throw away the disp info cache.
375 ********************************************************************/
377 static void disp_info_cache_idle_timeout_handler(struct event_context *ev_ctx,
378 struct timed_event *te,
382 DISP_INFO *disp_info = (DISP_INFO *)private_data;
384 TALLOC_FREE(disp_info->cache_timeout_event);
386 DEBUG(10, ("disp_info_cache_idle_timeout_handler: caching timed "
388 free_samr_cache(disp_info);
391 /*******************************************************************
392 Setup cache removal idle event handler.
393 ********************************************************************/
395 static void set_disp_info_cache_timeout(DISP_INFO *disp_info, time_t secs_fromnow)
397 /* Remove any pending timeout and update. */
399 TALLOC_FREE(disp_info->cache_timeout_event);
401 DEBUG(10,("set_disp_info_cache_timeout: caching enumeration for "
402 "SID %s for %u seconds\n", sid_string_dbg(&disp_info->sid),
403 (unsigned int)secs_fromnow ));
405 disp_info->cache_timeout_event = event_add_timed(
406 smbd_event_context(), NULL,
407 timeval_current_ofs(secs_fromnow, 0),
408 disp_info_cache_idle_timeout_handler, (void *)disp_info);
411 /*******************************************************************
412 Force flush any cache. We do this on any samr_set_xxx call.
413 We must also remove the timeout handler.
414 ********************************************************************/
416 static void force_flush_samr_cache(const struct dom_sid *sid)
418 struct disp_info *disp_info = get_samr_dispinfo_by_sid(sid);
420 if ((disp_info == NULL) || (disp_info->cache_timeout_event == NULL)) {
424 DEBUG(10,("force_flush_samr_cache: clearing idle event\n"));
425 TALLOC_FREE(disp_info->cache_timeout_event);
426 free_samr_cache(disp_info);
429 /*******************************************************************
430 Ensure password info is never given out. Paranioa... JRA.
431 ********************************************************************/
433 static void samr_clear_sam_passwd(struct samu *sam_pass)
439 /* These now zero out the old password */
441 pdb_set_lanman_passwd(sam_pass, NULL, PDB_DEFAULT);
442 pdb_set_nt_passwd(sam_pass, NULL, PDB_DEFAULT);
445 static uint32 count_sam_users(struct disp_info *info, uint32 acct_flags)
447 struct samr_displayentry *entry;
449 if (sid_check_is_builtin(&info->sid)) {
450 /* No users in builtin. */
454 if (info->users == NULL) {
455 info->users = pdb_search_users(info, acct_flags);
456 if (info->users == NULL) {
460 /* Fetch the last possible entry, thus trigger an enumeration */
461 pdb_search_entries(info->users, 0xffffffff, 1, &entry);
463 /* Ensure we cache this enumeration. */
464 set_disp_info_cache_timeout(info, DISP_INFO_CACHE_TIMEOUT);
466 return info->users->num_entries;
469 static uint32 count_sam_groups(struct disp_info *info)
471 struct samr_displayentry *entry;
473 if (sid_check_is_builtin(&info->sid)) {
474 /* No groups in builtin. */
478 if (info->groups == NULL) {
479 info->groups = pdb_search_groups(info);
480 if (info->groups == NULL) {
484 /* Fetch the last possible entry, thus trigger an enumeration */
485 pdb_search_entries(info->groups, 0xffffffff, 1, &entry);
487 /* Ensure we cache this enumeration. */
488 set_disp_info_cache_timeout(info, DISP_INFO_CACHE_TIMEOUT);
490 return info->groups->num_entries;
493 static uint32 count_sam_aliases(struct disp_info *info)
495 struct samr_displayentry *entry;
497 if (info->aliases == NULL) {
498 info->aliases = pdb_search_aliases(info, &info->sid);
499 if (info->aliases == NULL) {
503 /* Fetch the last possible entry, thus trigger an enumeration */
504 pdb_search_entries(info->aliases, 0xffffffff, 1, &entry);
506 /* Ensure we cache this enumeration. */
507 set_disp_info_cache_timeout(info, DISP_INFO_CACHE_TIMEOUT);
509 return info->aliases->num_entries;
512 /*******************************************************************
514 ********************************************************************/
516 NTSTATUS _samr_Close(pipes_struct *p, struct samr_Close *r)
518 if (!close_policy_hnd(p, r->in.handle)) {
519 return NT_STATUS_INVALID_HANDLE;
522 ZERO_STRUCTP(r->out.handle);
527 /*******************************************************************
529 ********************************************************************/
531 NTSTATUS _samr_OpenDomain(pipes_struct *p,
532 struct samr_OpenDomain *r)
534 struct samr_connect_info *cinfo;
535 struct samr_domain_info *dinfo;
536 SEC_DESC *psd = NULL;
538 uint32 des_access = r->in.access_mask;
541 uint32_t extra_access = SAMR_DOMAIN_ACCESS_CREATE_USER;
544 /* find the connection policy handle. */
546 cinfo = policy_handle_find(p, r->in.connect_handle, 0, NULL,
547 struct samr_connect_info, &status);
548 if (!NT_STATUS_IS_OK(status)) {
552 /*check if access can be granted as requested by client. */
553 map_max_allowed_access(p->server_info->ptok, &des_access);
555 make_samr_object_sd( p->mem_ctx, &psd, &sd_size, &dom_generic_mapping, NULL, 0 );
556 se_map_generic( &des_access, &dom_generic_mapping );
559 * Users with SeMachineAccount or SeAddUser get additional
560 * SAMR_DOMAIN_ACCESS_CREATE_USER access.
562 se_priv_copy( &se_rights, &se_machine_account );
563 se_priv_add( &se_rights, &se_add_users );
566 * Users with SeAddUser get the ability to manipulate groups
569 if (user_has_any_privilege(p->server_info->ptok, &se_add_users)) {
570 extra_access |= (SAMR_DOMAIN_ACCESS_CREATE_GROUP |
571 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS |
572 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
573 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS |
574 SAMR_DOMAIN_ACCESS_CREATE_ALIAS);
577 status = access_check_object( psd, p->server_info->ptok,
578 &se_rights, extra_access, des_access,
579 &acc_granted, "_samr_OpenDomain" );
581 if ( !NT_STATUS_IS_OK(status) )
584 if (!sid_check_is_domain(r->in.sid) &&
585 !sid_check_is_builtin(r->in.sid)) {
586 return NT_STATUS_NO_SUCH_DOMAIN;
589 dinfo = policy_handle_create(p, r->out.domain_handle, acc_granted,
590 struct samr_domain_info, &status);
591 if (!NT_STATUS_IS_OK(status)) {
594 dinfo->sid = *r->in.sid;
595 dinfo->disp_info = get_samr_dispinfo_by_sid(r->in.sid);
597 DEBUG(5,("_samr_OpenDomain: %d\n", __LINE__));
602 /*******************************************************************
604 ********************************************************************/
606 NTSTATUS _samr_GetUserPwInfo(pipes_struct *p,
607 struct samr_GetUserPwInfo *r)
609 struct samr_user_info *uinfo;
610 enum lsa_SidType sid_type;
611 uint32_t min_password_length = 0;
612 uint32_t password_properties = 0;
616 DEBUG(5,("_samr_GetUserPwInfo: %d\n", __LINE__));
618 uinfo = policy_handle_find(p, r->in.user_handle,
619 SAMR_USER_ACCESS_GET_ATTRIBUTES, NULL,
620 struct samr_user_info, &status);
621 if (!NT_STATUS_IS_OK(status)) {
625 if (!sid_check_is_in_our_domain(&uinfo->sid)) {
626 return NT_STATUS_OBJECT_TYPE_MISMATCH;
630 ret = lookup_sid(p->mem_ctx, &uinfo->sid, NULL, NULL, &sid_type);
633 return NT_STATUS_NO_SUCH_USER;
639 pdb_get_account_policy(AP_MIN_PASSWORD_LEN,
640 &min_password_length);
641 pdb_get_account_policy(AP_USER_MUST_LOGON_TO_CHG_PASS,
642 &password_properties);
645 if (lp_check_password_script() && *lp_check_password_script()) {
646 password_properties |= DOMAIN_PASSWORD_COMPLEX;
654 r->out.info->min_password_length = min_password_length;
655 r->out.info->password_properties = password_properties;
657 DEBUG(5,("_samr_GetUserPwInfo: %d\n", __LINE__));
662 /*******************************************************************
664 ********************************************************************/
666 NTSTATUS _samr_SetSecurity(pipes_struct *p,
667 struct samr_SetSecurity *r)
669 struct samr_user_info *uinfo;
673 struct samu *sampass=NULL;
676 uinfo = policy_handle_find(p, r->in.handle,
677 SAMR_USER_ACCESS_SET_ATTRIBUTES, NULL,
678 struct samr_user_info, &status);
679 if (!NT_STATUS_IS_OK(status)) {
683 if (!(sampass = samu_new( p->mem_ctx))) {
684 DEBUG(0,("No memory!\n"));
685 return NT_STATUS_NO_MEMORY;
688 /* get the user record */
690 ret = pdb_getsampwsid(sampass, &uinfo->sid);
694 DEBUG(4, ("User %s not found\n",
695 sid_string_dbg(&uinfo->sid)));
696 TALLOC_FREE(sampass);
697 return NT_STATUS_INVALID_HANDLE;
700 dacl = r->in.sdbuf->sd->dacl;
701 for (i=0; i < dacl->num_aces; i++) {
702 if (sid_equal(&uinfo->sid, &dacl->aces[i].trustee)) {
703 ret = pdb_set_pass_can_change(sampass,
704 (dacl->aces[i].access_mask &
705 SAMR_USER_ACCESS_CHANGE_PASSWORD) ?
712 TALLOC_FREE(sampass);
713 return NT_STATUS_ACCESS_DENIED;
717 status = pdb_update_sam_account(sampass);
720 TALLOC_FREE(sampass);
725 /*******************************************************************
726 build correct perms based on policies and password times for _samr_query_sec_obj
727 *******************************************************************/
728 static bool check_change_pw_access(TALLOC_CTX *mem_ctx, DOM_SID *user_sid)
730 struct samu *sampass=NULL;
733 if ( !(sampass = samu_new( mem_ctx )) ) {
734 DEBUG(0,("No memory!\n"));
739 ret = pdb_getsampwsid(sampass, user_sid);
743 DEBUG(4,("User %s not found\n", sid_string_dbg(user_sid)));
744 TALLOC_FREE(sampass);
748 DEBUG(3,("User:[%s]\n", pdb_get_username(sampass) ));
750 if (pdb_get_pass_can_change(sampass)) {
751 TALLOC_FREE(sampass);
754 TALLOC_FREE(sampass);
759 /*******************************************************************
761 ********************************************************************/
763 NTSTATUS _samr_QuerySecurity(pipes_struct *p,
764 struct samr_QuerySecurity *r)
766 struct samr_connect_info *cinfo;
767 struct samr_domain_info *dinfo;
768 struct samr_user_info *uinfo;
769 struct samr_group_info *ginfo;
770 struct samr_alias_info *ainfo;
772 SEC_DESC * psd = NULL;
775 cinfo = policy_handle_find(p, r->in.handle,
776 STD_RIGHT_READ_CONTROL_ACCESS, NULL,
777 struct samr_connect_info, &status);
778 if (NT_STATUS_IS_OK(status)) {
779 DEBUG(5,("_samr_QuerySecurity: querying security on SAM\n"));
780 status = make_samr_object_sd(p->mem_ctx, &psd, &sd_size,
781 &sam_generic_mapping, NULL, 0);
785 dinfo = policy_handle_find(p, r->in.handle,
786 STD_RIGHT_READ_CONTROL_ACCESS, NULL,
787 struct samr_domain_info, &status);
788 if (NT_STATUS_IS_OK(status)) {
789 DEBUG(5,("_samr_QuerySecurity: querying security on Domain "
790 "with SID: %s\n", sid_string_dbg(&dinfo->sid)));
792 * TODO: Builtin probably needs a different SD with restricted
795 status = make_samr_object_sd(p->mem_ctx, &psd, &sd_size,
796 &dom_generic_mapping, NULL, 0);
800 uinfo = policy_handle_find(p, r->in.handle,
801 STD_RIGHT_READ_CONTROL_ACCESS, NULL,
802 struct samr_user_info, &status);
803 if (NT_STATUS_IS_OK(status)) {
804 DEBUG(10,("_samr_QuerySecurity: querying security on user "
805 "Object with SID: %s\n",
806 sid_string_dbg(&uinfo->sid)));
807 if (check_change_pw_access(p->mem_ctx, &uinfo->sid)) {
808 status = make_samr_object_sd(
809 p->mem_ctx, &psd, &sd_size,
810 &usr_generic_mapping,
811 &uinfo->sid, SAMR_USR_RIGHTS_WRITE_PW);
813 status = make_samr_object_sd(
814 p->mem_ctx, &psd, &sd_size,
815 &usr_nopwchange_generic_mapping,
816 &uinfo->sid, SAMR_USR_RIGHTS_CANT_WRITE_PW);
821 ginfo = policy_handle_find(p, r->in.handle,
822 STD_RIGHT_READ_CONTROL_ACCESS, NULL,
823 struct samr_group_info, &status);
824 if (NT_STATUS_IS_OK(status)) {
826 * TODO: different SDs have to be generated for aliases groups
827 * and users. Currently all three get a default user SD
829 DEBUG(10,("_samr_QuerySecurity: querying security on group "
830 "Object with SID: %s\n",
831 sid_string_dbg(&ginfo->sid)));
832 status = make_samr_object_sd(
833 p->mem_ctx, &psd, &sd_size,
834 &usr_nopwchange_generic_mapping,
835 &ginfo->sid, SAMR_USR_RIGHTS_CANT_WRITE_PW);
839 ainfo = policy_handle_find(p, r->in.handle,
840 STD_RIGHT_READ_CONTROL_ACCESS, NULL,
841 struct samr_alias_info, &status);
842 if (NT_STATUS_IS_OK(status)) {
844 * TODO: different SDs have to be generated for aliases groups
845 * and users. Currently all three get a default user SD
847 DEBUG(10,("_samr_QuerySecurity: querying security on alias "
848 "Object with SID: %s\n",
849 sid_string_dbg(&ainfo->sid)));
850 status = make_samr_object_sd(
851 p->mem_ctx, &psd, &sd_size,
852 &usr_nopwchange_generic_mapping,
853 &ainfo->sid, SAMR_USR_RIGHTS_CANT_WRITE_PW);
857 return NT_STATUS_OBJECT_TYPE_MISMATCH;
859 if ((*r->out.sdbuf = make_sec_desc_buf(p->mem_ctx, sd_size, psd)) == NULL)
860 return NT_STATUS_NO_MEMORY;
865 /*******************************************************************
866 makes a SAM_ENTRY / UNISTR2* structure from a user list.
867 ********************************************************************/
869 static NTSTATUS make_user_sam_entry_list(TALLOC_CTX *ctx,
870 struct samr_SamEntry **sam_pp,
871 uint32_t num_entries,
873 struct samr_displayentry *entries)
876 struct samr_SamEntry *sam;
880 if (num_entries == 0) {
884 sam = TALLOC_ZERO_ARRAY(ctx, struct samr_SamEntry, num_entries);
886 DEBUG(0, ("make_user_sam_entry_list: TALLOC_ZERO failed!\n"));
887 return NT_STATUS_NO_MEMORY;
890 for (i = 0; i < num_entries; i++) {
893 * usrmgr expects a non-NULL terminated string with
894 * trust relationships
896 if (entries[i].acct_flags & ACB_DOMTRUST) {
897 init_unistr2(&uni_temp_name, entries[i].account_name,
900 init_unistr2(&uni_temp_name, entries[i].account_name,
904 init_lsa_String(&sam[i].name, entries[i].account_name);
905 sam[i].idx = entries[i].rid;
913 #define MAX_SAM_ENTRIES MAX_SAM_ENTRIES_W2K
915 /*******************************************************************
916 _samr_EnumDomainUsers
917 ********************************************************************/
919 NTSTATUS _samr_EnumDomainUsers(pipes_struct *p,
920 struct samr_EnumDomainUsers *r)
923 struct samr_domain_info *dinfo;
925 uint32 enum_context = *r->in.resume_handle;
926 enum remote_arch_types ra_type = get_remote_arch();
927 int max_sam_entries = (ra_type == RA_WIN95) ? MAX_SAM_ENTRIES_W95 : MAX_SAM_ENTRIES_W2K;
928 uint32 max_entries = max_sam_entries;
929 struct samr_displayentry *entries = NULL;
930 struct samr_SamArray *samr_array = NULL;
931 struct samr_SamEntry *samr_entries = NULL;
933 DEBUG(5,("_samr_EnumDomainUsers: %d\n", __LINE__));
935 dinfo = policy_handle_find(p, r->in.domain_handle,
936 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS, NULL,
937 struct samr_domain_info, &status);
938 if (!NT_STATUS_IS_OK(status)) {
942 if (sid_check_is_builtin(&dinfo->sid)) {
943 /* No users in builtin. */
944 *r->out.resume_handle = *r->in.resume_handle;
945 DEBUG(5,("_samr_EnumDomainUsers: No users in BUILTIN\n"));
949 samr_array = TALLOC_ZERO_P(p->mem_ctx, struct samr_SamArray);
951 return NT_STATUS_NO_MEMORY;
953 *r->out.sam = samr_array;
959 if ((dinfo->disp_info->enum_users != NULL) &&
960 (dinfo->disp_info->enum_acb_mask != r->in.acct_flags)) {
961 TALLOC_FREE(dinfo->disp_info->enum_users);
964 if (dinfo->disp_info->enum_users == NULL) {
965 dinfo->disp_info->enum_users = pdb_search_users(
966 dinfo->disp_info, r->in.acct_flags);
967 dinfo->disp_info->enum_acb_mask = r->in.acct_flags;
970 if (dinfo->disp_info->enum_users == NULL) {
971 /* END AS ROOT !!!! */
973 return NT_STATUS_ACCESS_DENIED;
976 num_account = pdb_search_entries(dinfo->disp_info->enum_users,
977 enum_context, max_entries,
980 /* END AS ROOT !!!! */
984 if (num_account == 0) {
985 DEBUG(5, ("_samr_EnumDomainUsers: enumeration handle over "
987 *r->out.resume_handle = *r->in.resume_handle;
991 status = make_user_sam_entry_list(p->mem_ctx, &samr_entries,
992 num_account, enum_context,
994 if (!NT_STATUS_IS_OK(status)) {
998 if (max_entries <= num_account) {
999 status = STATUS_MORE_ENTRIES;
1001 status = NT_STATUS_OK;
1004 /* Ensure we cache this enumeration. */
1005 set_disp_info_cache_timeout(dinfo->disp_info, DISP_INFO_CACHE_TIMEOUT);
1007 DEBUG(5, ("_samr_EnumDomainUsers: %d\n", __LINE__));
1009 samr_array->count = num_account;
1010 samr_array->entries = samr_entries;
1012 *r->out.resume_handle = *r->in.resume_handle + num_account;
1013 *r->out.num_entries = num_account;
1015 DEBUG(5,("_samr_EnumDomainUsers: %d\n", __LINE__));
1020 /*******************************************************************
1021 makes a SAM_ENTRY / UNISTR2* structure from a group list.
1022 ********************************************************************/
1024 static void make_group_sam_entry_list(TALLOC_CTX *ctx,
1025 struct samr_SamEntry **sam_pp,
1026 uint32_t num_sam_entries,
1027 struct samr_displayentry *entries)
1029 struct samr_SamEntry *sam;
1034 if (num_sam_entries == 0) {
1038 sam = TALLOC_ZERO_ARRAY(ctx, struct samr_SamEntry, num_sam_entries);
1043 for (i = 0; i < num_sam_entries; i++) {
1045 * JRA. I think this should include the null. TNG does not.
1047 init_lsa_String(&sam[i].name, entries[i].account_name);
1048 sam[i].idx = entries[i].rid;
1054 /*******************************************************************
1055 _samr_EnumDomainGroups
1056 ********************************************************************/
1058 NTSTATUS _samr_EnumDomainGroups(pipes_struct *p,
1059 struct samr_EnumDomainGroups *r)
1062 struct samr_domain_info *dinfo;
1063 struct samr_displayentry *groups;
1065 struct samr_SamArray *samr_array = NULL;
1066 struct samr_SamEntry *samr_entries = NULL;
1068 dinfo = policy_handle_find(p, r->in.domain_handle,
1069 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS, NULL,
1070 struct samr_domain_info, &status);
1071 if (!NT_STATUS_IS_OK(status)) {
1075 DEBUG(5,("_samr_EnumDomainGroups: %d\n", __LINE__));
1077 if (sid_check_is_builtin(&dinfo->sid)) {
1078 /* No groups in builtin. */
1079 *r->out.resume_handle = *r->in.resume_handle;
1080 DEBUG(5,("_samr_EnumDomainGroups: No groups in BUILTIN\n"));
1084 samr_array = TALLOC_ZERO_P(p->mem_ctx, struct samr_SamArray);
1086 return NT_STATUS_NO_MEMORY;
1089 /* the domain group array is being allocated in the function below */
1093 if (dinfo->disp_info->groups == NULL) {
1094 dinfo->disp_info->groups = pdb_search_groups(dinfo->disp_info);
1096 if (dinfo->disp_info->groups == NULL) {
1098 return NT_STATUS_ACCESS_DENIED;
1102 num_groups = pdb_search_entries(dinfo->disp_info->groups,
1103 *r->in.resume_handle,
1104 MAX_SAM_ENTRIES, &groups);
1107 /* Ensure we cache this enumeration. */
1108 set_disp_info_cache_timeout(dinfo->disp_info, DISP_INFO_CACHE_TIMEOUT);
1110 make_group_sam_entry_list(p->mem_ctx, &samr_entries,
1111 num_groups, groups);
1113 if (MAX_SAM_ENTRIES <= num_groups) {
1114 status = STATUS_MORE_ENTRIES;
1116 status = NT_STATUS_OK;
1119 samr_array->count = num_groups;
1120 samr_array->entries = samr_entries;
1122 *r->out.sam = samr_array;
1123 *r->out.num_entries = num_groups;
1124 *r->out.resume_handle = num_groups + *r->in.resume_handle;
1126 DEBUG(5,("_samr_EnumDomainGroups: %d\n", __LINE__));
1131 /*******************************************************************
1132 _samr_EnumDomainAliases
1133 ********************************************************************/
1135 NTSTATUS _samr_EnumDomainAliases(pipes_struct *p,
1136 struct samr_EnumDomainAliases *r)
1139 struct samr_domain_info *dinfo;
1140 struct samr_displayentry *aliases;
1141 uint32 num_aliases = 0;
1142 struct samr_SamArray *samr_array = NULL;
1143 struct samr_SamEntry *samr_entries = NULL;
1145 dinfo = policy_handle_find(p, r->in.domain_handle,
1146 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS, NULL,
1147 struct samr_domain_info, &status);
1148 if (!NT_STATUS_IS_OK(status)) {
1152 DEBUG(5,("_samr_EnumDomainAliases: sid %s\n",
1153 sid_string_dbg(&dinfo->sid)));
1155 samr_array = TALLOC_ZERO_P(p->mem_ctx, struct samr_SamArray);
1157 return NT_STATUS_NO_MEMORY;
1162 if (dinfo->disp_info->aliases == NULL) {
1163 dinfo->disp_info->aliases = pdb_search_aliases(
1164 dinfo->disp_info, &dinfo->sid);
1165 if (dinfo->disp_info->aliases == NULL) {
1167 return NT_STATUS_ACCESS_DENIED;
1171 num_aliases = pdb_search_entries(dinfo->disp_info->aliases,
1172 *r->in.resume_handle,
1173 MAX_SAM_ENTRIES, &aliases);
1176 /* Ensure we cache this enumeration. */
1177 set_disp_info_cache_timeout(dinfo->disp_info, DISP_INFO_CACHE_TIMEOUT);
1179 make_group_sam_entry_list(p->mem_ctx, &samr_entries,
1180 num_aliases, aliases);
1182 DEBUG(5,("_samr_EnumDomainAliases: %d\n", __LINE__));
1184 if (MAX_SAM_ENTRIES <= num_aliases) {
1185 status = STATUS_MORE_ENTRIES;
1187 status = NT_STATUS_OK;
1190 samr_array->count = num_aliases;
1191 samr_array->entries = samr_entries;
1193 *r->out.sam = samr_array;
1194 *r->out.num_entries = num_aliases;
1195 *r->out.resume_handle = num_aliases + *r->in.resume_handle;
1200 /*******************************************************************
1201 inits a samr_DispInfoGeneral structure.
1202 ********************************************************************/
1204 static NTSTATUS init_samr_dispinfo_1(TALLOC_CTX *ctx,
1205 struct samr_DispInfoGeneral *r,
1206 uint32_t num_entries,
1208 struct samr_displayentry *entries)
1212 DEBUG(10, ("init_samr_dispinfo_1: num_entries: %d\n", num_entries));
1214 if (num_entries == 0) {
1215 return NT_STATUS_OK;
1218 r->count = num_entries;
1220 r->entries = TALLOC_ZERO_ARRAY(ctx, struct samr_DispEntryGeneral, num_entries);
1222 return NT_STATUS_NO_MEMORY;
1225 for (i = 0; i < num_entries ; i++) {
1227 init_lsa_String(&r->entries[i].account_name,
1228 entries[i].account_name);
1230 init_lsa_String(&r->entries[i].description,
1231 entries[i].description);
1233 init_lsa_String(&r->entries[i].full_name,
1234 entries[i].fullname);
1236 r->entries[i].rid = entries[i].rid;
1237 r->entries[i].acct_flags = entries[i].acct_flags;
1238 r->entries[i].idx = start_idx+i+1;
1241 return NT_STATUS_OK;
1244 /*******************************************************************
1245 inits a samr_DispInfoFull structure.
1246 ********************************************************************/
1248 static NTSTATUS init_samr_dispinfo_2(TALLOC_CTX *ctx,
1249 struct samr_DispInfoFull *r,
1250 uint32_t num_entries,
1252 struct samr_displayentry *entries)
1256 DEBUG(10, ("init_samr_dispinfo_2: num_entries: %d\n", num_entries));
1258 if (num_entries == 0) {
1259 return NT_STATUS_OK;
1262 r->count = num_entries;
1264 r->entries = TALLOC_ZERO_ARRAY(ctx, struct samr_DispEntryFull, num_entries);
1266 return NT_STATUS_NO_MEMORY;
1269 for (i = 0; i < num_entries ; i++) {
1271 init_lsa_String(&r->entries[i].account_name,
1272 entries[i].account_name);
1274 init_lsa_String(&r->entries[i].description,
1275 entries[i].description);
1277 r->entries[i].rid = entries[i].rid;
1278 r->entries[i].acct_flags = entries[i].acct_flags;
1279 r->entries[i].idx = start_idx+i+1;
1282 return NT_STATUS_OK;
1285 /*******************************************************************
1286 inits a samr_DispInfoFullGroups structure.
1287 ********************************************************************/
1289 static NTSTATUS init_samr_dispinfo_3(TALLOC_CTX *ctx,
1290 struct samr_DispInfoFullGroups *r,
1291 uint32_t num_entries,
1293 struct samr_displayentry *entries)
1297 DEBUG(5, ("init_samr_dispinfo_3: num_entries: %d\n", num_entries));
1299 if (num_entries == 0) {
1300 return NT_STATUS_OK;
1303 r->count = num_entries;
1305 r->entries = TALLOC_ZERO_ARRAY(ctx, struct samr_DispEntryFullGroup, num_entries);
1307 return NT_STATUS_NO_MEMORY;
1310 for (i = 0; i < num_entries ; i++) {
1312 init_lsa_String(&r->entries[i].account_name,
1313 entries[i].account_name);
1315 init_lsa_String(&r->entries[i].description,
1316 entries[i].description);
1318 r->entries[i].rid = entries[i].rid;
1319 r->entries[i].acct_flags = entries[i].acct_flags;
1320 r->entries[i].idx = start_idx+i+1;
1323 return NT_STATUS_OK;
1326 /*******************************************************************
1327 inits a samr_DispInfoAscii structure.
1328 ********************************************************************/
1330 static NTSTATUS init_samr_dispinfo_4(TALLOC_CTX *ctx,
1331 struct samr_DispInfoAscii *r,
1332 uint32_t num_entries,
1334 struct samr_displayentry *entries)
1338 DEBUG(5, ("init_samr_dispinfo_4: num_entries: %d\n", num_entries));
1340 if (num_entries == 0) {
1341 return NT_STATUS_OK;
1344 r->count = num_entries;
1346 r->entries = TALLOC_ZERO_ARRAY(ctx, struct samr_DispEntryAscii, num_entries);
1348 return NT_STATUS_NO_MEMORY;
1351 for (i = 0; i < num_entries ; i++) {
1353 init_lsa_AsciiStringLarge(&r->entries[i].account_name,
1354 entries[i].account_name);
1356 r->entries[i].idx = start_idx+i+1;
1359 return NT_STATUS_OK;
1362 /*******************************************************************
1363 inits a samr_DispInfoAscii structure.
1364 ********************************************************************/
1366 static NTSTATUS init_samr_dispinfo_5(TALLOC_CTX *ctx,
1367 struct samr_DispInfoAscii *r,
1368 uint32_t num_entries,
1370 struct samr_displayentry *entries)
1374 DEBUG(5, ("init_samr_dispinfo_5: num_entries: %d\n", num_entries));
1376 if (num_entries == 0) {
1377 return NT_STATUS_OK;
1380 r->count = num_entries;
1382 r->entries = TALLOC_ZERO_ARRAY(ctx, struct samr_DispEntryAscii, num_entries);
1384 return NT_STATUS_NO_MEMORY;
1387 for (i = 0; i < num_entries ; i++) {
1389 init_lsa_AsciiStringLarge(&r->entries[i].account_name,
1390 entries[i].account_name);
1392 r->entries[i].idx = start_idx+i+1;
1395 return NT_STATUS_OK;
1398 /*******************************************************************
1399 _samr_QueryDisplayInfo
1400 ********************************************************************/
1402 NTSTATUS _samr_QueryDisplayInfo(pipes_struct *p,
1403 struct samr_QueryDisplayInfo *r)
1406 struct samr_domain_info *dinfo;
1407 uint32 struct_size=0x20; /* W2K always reply that, client doesn't care */
1409 uint32 max_entries = r->in.max_entries;
1411 union samr_DispInfo *disp_info = r->out.info;
1413 uint32 temp_size=0, total_data_size=0;
1414 NTSTATUS disp_ret = NT_STATUS_UNSUCCESSFUL;
1415 uint32 num_account = 0;
1416 enum remote_arch_types ra_type = get_remote_arch();
1417 int max_sam_entries = (ra_type == RA_WIN95) ? MAX_SAM_ENTRIES_W95 : MAX_SAM_ENTRIES_W2K;
1418 struct samr_displayentry *entries = NULL;
1420 DEBUG(5,("_samr_QueryDisplayInfo: %d\n", __LINE__));
1422 dinfo = policy_handle_find(p, r->in.domain_handle,
1423 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS, NULL,
1424 struct samr_domain_info, &status);
1425 if (!NT_STATUS_IS_OK(status)) {
1429 if (sid_check_is_builtin(&dinfo->sid)) {
1430 DEBUG(5,("_samr_QueryDisplayInfo: no users in BUILTIN\n"));
1431 return NT_STATUS_OK;
1435 * calculate how many entries we will return.
1437 * - the number of entries the client asked
1438 * - our limit on that
1439 * - the starting point (enumeration context)
1440 * - the buffer size the client will accept
1444 * We are a lot more like W2K. Instead of reading the SAM
1445 * each time to find the records we need to send back,
1446 * we read it once and link that copy to the sam handle.
1447 * For large user list (over the MAX_SAM_ENTRIES)
1448 * it's a definitive win.
1449 * second point to notice: between enumerations
1450 * our sam is now the same as it's a snapshoot.
1451 * third point: got rid of the static SAM_USER_21 struct
1452 * no more intermediate.
1453 * con: it uses much more memory, as a full copy is stored
1456 * If you want to change it, think twice and think
1457 * of the second point , that's really important.
1462 if ((r->in.level < 1) || (r->in.level > 5)) {
1463 DEBUG(0,("_samr_QueryDisplayInfo: Unknown info level (%u)\n",
1464 (unsigned int)r->in.level ));
1465 return NT_STATUS_INVALID_INFO_CLASS;
1468 /* first limit the number of entries we will return */
1469 if (r->in.max_entries > max_sam_entries) {
1470 DEBUG(5, ("_samr_QueryDisplayInfo: client requested %d "
1471 "entries, limiting to %d\n", r->in.max_entries,
1473 max_entries = max_sam_entries;
1476 /* calculate the size and limit on the number of entries we will
1479 temp_size=max_entries*struct_size;
1481 if (temp_size > r->in.buf_size) {
1482 max_entries = MIN((r->in.buf_size / struct_size),max_entries);;
1483 DEBUG(5, ("_samr_QueryDisplayInfo: buffer size limits to "
1484 "only %d entries\n", max_entries));
1489 /* THe following done as ROOT. Don't return without unbecome_root(). */
1491 switch (r->in.level) {
1494 if (dinfo->disp_info->users == NULL) {
1495 dinfo->disp_info->users = pdb_search_users(
1496 dinfo->disp_info, ACB_NORMAL);
1497 if (dinfo->disp_info->users == NULL) {
1499 return NT_STATUS_ACCESS_DENIED;
1501 DEBUG(10,("_samr_QueryDisplayInfo: starting user enumeration at index %u\n",
1502 (unsigned int)r->in.start_idx));
1504 DEBUG(10,("_samr_QueryDisplayInfo: using cached user enumeration at index %u\n",
1505 (unsigned int)r->in.start_idx));
1508 num_account = pdb_search_entries(dinfo->disp_info->users,
1509 r->in.start_idx, max_entries,
1513 if (dinfo->disp_info->machines == NULL) {
1514 dinfo->disp_info->machines = pdb_search_users(
1515 dinfo->disp_info, ACB_WSTRUST|ACB_SVRTRUST);
1516 if (dinfo->disp_info->machines == NULL) {
1518 return NT_STATUS_ACCESS_DENIED;
1520 DEBUG(10,("_samr_QueryDisplayInfo: starting machine enumeration at index %u\n",
1521 (unsigned int)r->in.start_idx));
1523 DEBUG(10,("_samr_QueryDisplayInfo: using cached machine enumeration at index %u\n",
1524 (unsigned int)r->in.start_idx));
1527 num_account = pdb_search_entries(dinfo->disp_info->machines,
1528 r->in.start_idx, max_entries,
1533 if (dinfo->disp_info->groups == NULL) {
1534 dinfo->disp_info->groups = pdb_search_groups(
1536 if (dinfo->disp_info->groups == NULL) {
1538 return NT_STATUS_ACCESS_DENIED;
1540 DEBUG(10,("_samr_QueryDisplayInfo: starting group enumeration at index %u\n",
1541 (unsigned int)r->in.start_idx));
1543 DEBUG(10,("_samr_QueryDisplayInfo: using cached group enumeration at index %u\n",
1544 (unsigned int)r->in.start_idx));
1547 num_account = pdb_search_entries(dinfo->disp_info->groups,
1548 r->in.start_idx, max_entries,
1553 smb_panic("info class changed");
1559 /* Now create reply structure */
1560 switch (r->in.level) {
1562 disp_ret = init_samr_dispinfo_1(p->mem_ctx, &disp_info->info1,
1563 num_account, r->in.start_idx,
1567 disp_ret = init_samr_dispinfo_2(p->mem_ctx, &disp_info->info2,
1568 num_account, r->in.start_idx,
1572 disp_ret = init_samr_dispinfo_3(p->mem_ctx, &disp_info->info3,
1573 num_account, r->in.start_idx,
1577 disp_ret = init_samr_dispinfo_4(p->mem_ctx, &disp_info->info4,
1578 num_account, r->in.start_idx,
1582 disp_ret = init_samr_dispinfo_5(p->mem_ctx, &disp_info->info5,
1583 num_account, r->in.start_idx,
1587 smb_panic("info class changed");
1591 if (!NT_STATUS_IS_OK(disp_ret))
1594 /* calculate the total size */
1595 total_data_size=num_account*struct_size;
1597 if (max_entries <= num_account) {
1598 status = STATUS_MORE_ENTRIES;
1600 status = NT_STATUS_OK;
1603 /* Ensure we cache this enumeration. */
1604 set_disp_info_cache_timeout(dinfo->disp_info, DISP_INFO_CACHE_TIMEOUT);
1606 DEBUG(5, ("_samr_QueryDisplayInfo: %d\n", __LINE__));
1608 *r->out.total_size = total_data_size;
1609 *r->out.returned_size = temp_size;
1614 /****************************************************************
1615 _samr_QueryDisplayInfo2
1616 ****************************************************************/
1618 NTSTATUS _samr_QueryDisplayInfo2(pipes_struct *p,
1619 struct samr_QueryDisplayInfo2 *r)
1621 struct samr_QueryDisplayInfo q;
1623 q.in.domain_handle = r->in.domain_handle;
1624 q.in.level = r->in.level;
1625 q.in.start_idx = r->in.start_idx;
1626 q.in.max_entries = r->in.max_entries;
1627 q.in.buf_size = r->in.buf_size;
1629 q.out.total_size = r->out.total_size;
1630 q.out.returned_size = r->out.returned_size;
1631 q.out.info = r->out.info;
1633 return _samr_QueryDisplayInfo(p, &q);
1636 /****************************************************************
1637 _samr_QueryDisplayInfo3
1638 ****************************************************************/
1640 NTSTATUS _samr_QueryDisplayInfo3(pipes_struct *p,
1641 struct samr_QueryDisplayInfo3 *r)
1643 struct samr_QueryDisplayInfo q;
1645 q.in.domain_handle = r->in.domain_handle;
1646 q.in.level = r->in.level;
1647 q.in.start_idx = r->in.start_idx;
1648 q.in.max_entries = r->in.max_entries;
1649 q.in.buf_size = r->in.buf_size;
1651 q.out.total_size = r->out.total_size;
1652 q.out.returned_size = r->out.returned_size;
1653 q.out.info = r->out.info;
1655 return _samr_QueryDisplayInfo(p, &q);
1658 /*******************************************************************
1659 _samr_QueryAliasInfo
1660 ********************************************************************/
1662 NTSTATUS _samr_QueryAliasInfo(pipes_struct *p,
1663 struct samr_QueryAliasInfo *r)
1665 struct samr_alias_info *ainfo;
1666 struct acct_info info;
1668 union samr_AliasInfo *alias_info = NULL;
1669 const char *alias_name = NULL;
1670 const char *alias_description = NULL;
1672 DEBUG(5,("_samr_QueryAliasInfo: %d\n", __LINE__));
1674 ainfo = policy_handle_find(p, r->in.alias_handle,
1675 SAMR_ALIAS_ACCESS_LOOKUP_INFO, NULL,
1676 struct samr_alias_info, &status);
1677 if (!NT_STATUS_IS_OK(status)) {
1681 alias_info = TALLOC_ZERO_P(p->mem_ctx, union samr_AliasInfo);
1683 return NT_STATUS_NO_MEMORY;
1687 status = pdb_get_aliasinfo(&ainfo->sid, &info);
1690 if ( !NT_STATUS_IS_OK(status))
1693 /* FIXME: info contains fstrings */
1694 alias_name = talloc_strdup(r, info.acct_name);
1695 alias_description = talloc_strdup(r, info.acct_desc);
1697 switch (r->in.level) {
1699 alias_info->all.name.string = alias_name;
1700 alias_info->all.num_members = 1; /* ??? */
1701 alias_info->all.description.string = alias_description;
1704 alias_info->name.string = alias_name;
1706 case ALIASINFODESCRIPTION:
1707 alias_info->description.string = alias_description;
1710 return NT_STATUS_INVALID_INFO_CLASS;
1713 *r->out.info = alias_info;
1715 DEBUG(5,("_samr_QueryAliasInfo: %d\n", __LINE__));
1717 return NT_STATUS_OK;
1720 /*******************************************************************
1722 ********************************************************************/
1724 NTSTATUS _samr_LookupNames(pipes_struct *p,
1725 struct samr_LookupNames *r)
1727 struct samr_domain_info *dinfo;
1730 enum lsa_SidType *type;
1732 int num_rids = r->in.num_names;
1733 struct samr_Ids rids, types;
1734 uint32_t num_mapped = 0;
1736 DEBUG(5,("_samr_LookupNames: %d\n", __LINE__));
1738 dinfo = policy_handle_find(p, r->in.domain_handle,
1739 0 /* Don't know the acc_bits yet */, NULL,
1740 struct samr_domain_info, &status);
1741 if (!NT_STATUS_IS_OK(status)) {
1745 if (num_rids > MAX_SAM_ENTRIES) {
1746 num_rids = MAX_SAM_ENTRIES;
1747 DEBUG(5,("_samr_LookupNames: truncating entries to %d\n", num_rids));
1750 rid = talloc_array(p->mem_ctx, uint32, num_rids);
1751 NT_STATUS_HAVE_NO_MEMORY(rid);
1753 type = talloc_array(p->mem_ctx, enum lsa_SidType, num_rids);
1754 NT_STATUS_HAVE_NO_MEMORY(type);
1756 DEBUG(5,("_samr_LookupNames: looking name on SID %s\n",
1757 sid_string_dbg(&dinfo->sid)));
1759 for (i = 0; i < num_rids; i++) {
1761 status = NT_STATUS_NONE_MAPPED;
1762 type[i] = SID_NAME_UNKNOWN;
1764 rid[i] = 0xffffffff;
1766 if (sid_check_is_builtin(&dinfo->sid)) {
1767 if (lookup_builtin_name(r->in.names[i].string,
1770 type[i] = SID_NAME_ALIAS;
1773 lookup_global_sam_name(r->in.names[i].string, 0,
1777 if (type[i] != SID_NAME_UNKNOWN) {
1782 if (num_mapped == num_rids) {
1783 status = NT_STATUS_OK;
1784 } else if (num_mapped == 0) {
1785 status = NT_STATUS_NONE_MAPPED;
1787 status = STATUS_SOME_UNMAPPED;
1790 rids.count = num_rids;
1793 types.count = num_rids;
1796 *r->out.rids = rids;
1797 *r->out.types = types;
1799 DEBUG(5,("_samr_LookupNames: %d\n", __LINE__));
1804 /****************************************************************
1805 _samr_ChangePasswordUser
1806 ****************************************************************/
1808 NTSTATUS _samr_ChangePasswordUser(pipes_struct *p,
1809 struct samr_ChangePasswordUser *r)
1813 struct samr_user_info *uinfo;
1815 struct samr_Password new_lmPwdHash, new_ntPwdHash, checkHash;
1816 struct samr_Password lm_pwd, nt_pwd;
1818 uinfo = policy_handle_find(p, r->in.user_handle,
1819 SAMR_USER_ACCESS_SET_PASSWORD, NULL,
1820 struct samr_user_info, &status);
1821 if (!NT_STATUS_IS_OK(status)) {
1825 DEBUG(5,("_samr_ChangePasswordUser: sid:%s\n",
1826 sid_string_dbg(&uinfo->sid)));
1828 if (!(pwd = samu_new(NULL))) {
1829 return NT_STATUS_NO_MEMORY;
1833 ret = pdb_getsampwsid(pwd, &uinfo->sid);
1838 return NT_STATUS_WRONG_PASSWORD;
1842 const uint8_t *lm_pass, *nt_pass;
1844 lm_pass = pdb_get_lanman_passwd(pwd);
1845 nt_pass = pdb_get_nt_passwd(pwd);
1847 if (!lm_pass || !nt_pass) {
1848 status = NT_STATUS_WRONG_PASSWORD;
1852 memcpy(&lm_pwd.hash, lm_pass, sizeof(lm_pwd.hash));
1853 memcpy(&nt_pwd.hash, nt_pass, sizeof(nt_pwd.hash));
1856 /* basic sanity checking on parameters. Do this before any database ops */
1857 if (!r->in.lm_present || !r->in.nt_present ||
1858 !r->in.old_lm_crypted || !r->in.new_lm_crypted ||
1859 !r->in.old_nt_crypted || !r->in.new_nt_crypted) {
1860 /* we should really handle a change with lm not
1862 status = NT_STATUS_INVALID_PARAMETER_MIX;
1866 /* decrypt and check the new lm hash */
1867 D_P16(lm_pwd.hash, r->in.new_lm_crypted->hash, new_lmPwdHash.hash);
1868 D_P16(new_lmPwdHash.hash, r->in.old_lm_crypted->hash, checkHash.hash);
1869 if (memcmp(checkHash.hash, lm_pwd.hash, 16) != 0) {
1870 status = NT_STATUS_WRONG_PASSWORD;
1874 /* decrypt and check the new nt hash */
1875 D_P16(nt_pwd.hash, r->in.new_nt_crypted->hash, new_ntPwdHash.hash);
1876 D_P16(new_ntPwdHash.hash, r->in.old_nt_crypted->hash, checkHash.hash);
1877 if (memcmp(checkHash.hash, nt_pwd.hash, 16) != 0) {
1878 status = NT_STATUS_WRONG_PASSWORD;
1882 /* The NT Cross is not required by Win2k3 R2, but if present
1883 check the nt cross hash */
1884 if (r->in.cross1_present && r->in.nt_cross) {
1885 D_P16(lm_pwd.hash, r->in.nt_cross->hash, checkHash.hash);
1886 if (memcmp(checkHash.hash, new_ntPwdHash.hash, 16) != 0) {
1887 status = NT_STATUS_WRONG_PASSWORD;
1892 /* The LM Cross is not required by Win2k3 R2, but if present
1893 check the lm cross hash */
1894 if (r->in.cross2_present && r->in.lm_cross) {
1895 D_P16(nt_pwd.hash, r->in.lm_cross->hash, checkHash.hash);
1896 if (memcmp(checkHash.hash, new_lmPwdHash.hash, 16) != 0) {
1897 status = NT_STATUS_WRONG_PASSWORD;
1902 if (!pdb_set_nt_passwd(pwd, new_ntPwdHash.hash, PDB_CHANGED) ||
1903 !pdb_set_lanman_passwd(pwd, new_lmPwdHash.hash, PDB_CHANGED)) {
1904 status = NT_STATUS_ACCESS_DENIED;
1908 status = pdb_update_sam_account(pwd);
1915 /*******************************************************************
1916 _samr_ChangePasswordUser2
1917 ********************************************************************/
1919 NTSTATUS _samr_ChangePasswordUser2(pipes_struct *p,
1920 struct samr_ChangePasswordUser2 *r)
1922 struct smbd_server_connection *sconn = smbd_server_conn;
1927 DEBUG(5,("_samr_ChangePasswordUser2: %d\n", __LINE__));
1929 fstrcpy(user_name, r->in.account->string);
1930 fstrcpy(wks, r->in.server->string);
1932 DEBUG(5,("_samr_ChangePasswordUser2: user: %s wks: %s\n", user_name, wks));
1935 * Pass the user through the NT -> unix user mapping
1939 (void)map_username(sconn, user_name);
1942 * UNIX username case mangling not required, pass_oem_change
1943 * is case insensitive.
1946 status = pass_oem_change(user_name,
1947 r->in.lm_password->data,
1948 r->in.lm_verifier->hash,
1949 r->in.nt_password->data,
1950 r->in.nt_verifier->hash,
1953 DEBUG(5,("_samr_ChangePasswordUser2: %d\n", __LINE__));
1955 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_SUCH_USER)) {
1956 return NT_STATUS_WRONG_PASSWORD;
1962 /****************************************************************
1963 _samr_OemChangePasswordUser2
1964 ****************************************************************/
1966 NTSTATUS _samr_OemChangePasswordUser2(pipes_struct *p,
1967 struct samr_OemChangePasswordUser2 *r)
1969 struct smbd_server_connection *sconn = smbd_server_conn;
1972 const char *wks = NULL;
1974 DEBUG(5,("_samr_OemChangePasswordUser2: %d\n", __LINE__));
1976 fstrcpy(user_name, r->in.account->string);
1977 if (r->in.server && r->in.server->string) {
1978 wks = r->in.server->string;
1981 DEBUG(5,("_samr_OemChangePasswordUser2: user: %s wks: %s\n", user_name, wks));
1984 * Pass the user through the NT -> unix user mapping
1988 (void)map_username(sconn, user_name);
1991 * UNIX username case mangling not required, pass_oem_change
1992 * is case insensitive.
1995 if (!r->in.hash || !r->in.password) {
1996 return NT_STATUS_INVALID_PARAMETER;
1999 status = pass_oem_change(user_name,
2000 r->in.password->data,
2006 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_SUCH_USER)) {
2007 return NT_STATUS_WRONG_PASSWORD;
2010 DEBUG(5,("_samr_OemChangePasswordUser2: %d\n", __LINE__));
2015 /*******************************************************************
2016 _samr_ChangePasswordUser3
2017 ********************************************************************/
2019 NTSTATUS _samr_ChangePasswordUser3(pipes_struct *p,
2020 struct samr_ChangePasswordUser3 *r)
2022 struct smbd_server_connection *sconn = smbd_server_conn;
2025 const char *wks = NULL;
2026 uint32 reject_reason;
2027 struct samr_DomInfo1 *dominfo = NULL;
2028 struct samr_ChangeReject *reject = NULL;
2031 DEBUG(5,("_samr_ChangePasswordUser3: %d\n", __LINE__));
2033 fstrcpy(user_name, r->in.account->string);
2034 if (r->in.server && r->in.server->string) {
2035 wks = r->in.server->string;
2038 DEBUG(5,("_samr_ChangePasswordUser3: user: %s wks: %s\n", user_name, wks));
2041 * Pass the user through the NT -> unix user mapping
2045 (void)map_username(sconn, user_name);
2048 * UNIX username case mangling not required, pass_oem_change
2049 * is case insensitive.
2052 status = pass_oem_change(user_name,
2053 r->in.lm_password->data,
2054 r->in.lm_verifier->hash,
2055 r->in.nt_password->data,
2056 r->in.nt_verifier->hash,
2058 if (NT_STATUS_EQUAL(status, NT_STATUS_NO_SUCH_USER)) {
2059 return NT_STATUS_WRONG_PASSWORD;
2062 if (NT_STATUS_EQUAL(status, NT_STATUS_PASSWORD_RESTRICTION) ||
2063 NT_STATUS_EQUAL(status, NT_STATUS_ACCOUNT_RESTRICTION)) {
2065 time_t u_expire, u_min_age;
2066 uint32 account_policy_temp;
2068 dominfo = TALLOC_ZERO_P(p->mem_ctx, struct samr_DomInfo1);
2070 return NT_STATUS_NO_MEMORY;
2073 reject = TALLOC_ZERO_P(p->mem_ctx, struct samr_ChangeReject);
2075 return NT_STATUS_NO_MEMORY;
2082 pdb_get_account_policy(AP_MIN_PASSWORD_LEN, &tmp);
2083 dominfo->min_password_length = tmp;
2085 pdb_get_account_policy(AP_PASSWORD_HISTORY, &tmp);
2086 dominfo->password_history_length = tmp;
2088 pdb_get_account_policy(AP_USER_MUST_LOGON_TO_CHG_PASS,
2089 &dominfo->password_properties);
2091 pdb_get_account_policy(AP_MAX_PASSWORD_AGE, &account_policy_temp);
2092 u_expire = account_policy_temp;
2094 pdb_get_account_policy(AP_MIN_PASSWORD_AGE, &account_policy_temp);
2095 u_min_age = account_policy_temp;
2101 unix_to_nt_time_abs((NTTIME *)&dominfo->max_password_age, u_expire);
2102 unix_to_nt_time_abs((NTTIME *)&dominfo->min_password_age, u_min_age);
2104 if (lp_check_password_script() && *lp_check_password_script()) {
2105 dominfo->password_properties |= DOMAIN_PASSWORD_COMPLEX;
2108 reject->reason = reject_reason;
2110 *r->out.dominfo = dominfo;
2111 *r->out.reject = reject;
2114 DEBUG(5,("_samr_ChangePasswordUser3: %d\n", __LINE__));
2119 /*******************************************************************
2120 makes a SAMR_R_LOOKUP_RIDS structure.
2121 ********************************************************************/
2123 static bool make_samr_lookup_rids(TALLOC_CTX *ctx, uint32 num_names,
2125 struct lsa_String **lsa_name_array_p)
2127 struct lsa_String *lsa_name_array = NULL;
2130 *lsa_name_array_p = NULL;
2132 if (num_names != 0) {
2133 lsa_name_array = TALLOC_ZERO_ARRAY(ctx, struct lsa_String, num_names);
2134 if (!lsa_name_array) {
2139 for (i = 0; i < num_names; i++) {
2140 DEBUG(10, ("names[%d]:%s\n", i, names[i] && *names[i] ? names[i] : ""));
2141 init_lsa_String(&lsa_name_array[i], names[i]);
2144 *lsa_name_array_p = lsa_name_array;
2149 /*******************************************************************
2151 ********************************************************************/
2153 NTSTATUS _samr_LookupRids(pipes_struct *p,
2154 struct samr_LookupRids *r)
2156 struct samr_domain_info *dinfo;
2159 enum lsa_SidType *attrs = NULL;
2160 uint32 *wire_attrs = NULL;
2161 int num_rids = (int)r->in.num_rids;
2163 struct lsa_Strings names_array;
2164 struct samr_Ids types_array;
2165 struct lsa_String *lsa_names = NULL;
2167 DEBUG(5,("_samr_LookupRids: %d\n", __LINE__));
2169 dinfo = policy_handle_find(p, r->in.domain_handle,
2170 0 /* Don't know the acc_bits yet */, NULL,
2171 struct samr_domain_info, &status);
2172 if (!NT_STATUS_IS_OK(status)) {
2176 if (num_rids > 1000) {
2177 DEBUG(0, ("Got asked for %d rids (more than 1000) -- according "
2178 "to samba4 idl this is not possible\n", num_rids));
2179 return NT_STATUS_UNSUCCESSFUL;
2183 names = TALLOC_ZERO_ARRAY(p->mem_ctx, const char *, num_rids);
2184 attrs = TALLOC_ZERO_ARRAY(p->mem_ctx, enum lsa_SidType, num_rids);
2185 wire_attrs = TALLOC_ZERO_ARRAY(p->mem_ctx, uint32, num_rids);
2187 if ((names == NULL) || (attrs == NULL) || (wire_attrs==NULL))
2188 return NT_STATUS_NO_MEMORY;
2195 become_root(); /* lookup_sid can require root privs */
2196 status = pdb_lookup_rids(&dinfo->sid, num_rids, r->in.rids,
2200 if (NT_STATUS_EQUAL(status, NT_STATUS_NONE_MAPPED) && (num_rids == 0)) {
2201 status = NT_STATUS_OK;
2204 if (!make_samr_lookup_rids(p->mem_ctx, num_rids, names,
2206 return NT_STATUS_NO_MEMORY;
2209 /* Convert from enum lsa_SidType to uint32 for wire format. */
2210 for (i = 0; i < num_rids; i++) {
2211 wire_attrs[i] = (uint32)attrs[i];
2214 names_array.count = num_rids;
2215 names_array.names = lsa_names;
2217 types_array.count = num_rids;
2218 types_array.ids = wire_attrs;
2220 *r->out.names = names_array;
2221 *r->out.types = types_array;
2223 DEBUG(5,("_samr_LookupRids: %d\n", __LINE__));
2228 /*******************************************************************
2230 ********************************************************************/
2232 NTSTATUS _samr_OpenUser(pipes_struct *p,
2233 struct samr_OpenUser *r)
2235 struct samu *sampass=NULL;
2237 struct samr_domain_info *dinfo;
2238 struct samr_user_info *uinfo;
2239 SEC_DESC *psd = NULL;
2241 uint32 des_access = r->in.access_mask;
2242 uint32_t extra_access = 0;
2249 dinfo = policy_handle_find(p, r->in.domain_handle,
2250 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT, NULL,
2251 struct samr_domain_info, &status);
2252 if (!NT_STATUS_IS_OK(status)) {
2256 if ( !(sampass = samu_new( p->mem_ctx )) ) {
2257 return NT_STATUS_NO_MEMORY;
2260 /* append the user's RID to it */
2262 if (!sid_compose(&sid, &dinfo->sid, r->in.rid))
2263 return NT_STATUS_NO_SUCH_USER;
2265 /* check if access can be granted as requested by client. */
2267 map_max_allowed_access(p->server_info->ptok, &des_access);
2269 make_samr_object_sd(p->mem_ctx, &psd, &sd_size, &usr_generic_mapping, &sid, SAMR_USR_RIGHTS_WRITE_PW);
2270 se_map_generic(&des_access, &usr_generic_mapping);
2273 * Get the sampass first as we need to check privilages
2274 * based on what kind of user object this is.
2275 * But don't reveal info too early if it didn't exist.
2279 ret=pdb_getsampwsid(sampass, &sid);
2282 se_priv_copy(&se_rights, &se_priv_none);
2285 * We do the override access checks on *open*, not at
2289 uint32_t acb_info = pdb_get_acct_ctrl(sampass);
2291 if ((acb_info & ACB_WSTRUST) &&
2292 user_has_any_privilege(p->server_info->ptok,
2293 &se_machine_account)) {
2295 * SeMachineAccount is needed to add
2296 * GENERIC_RIGHTS_USER_WRITE to a machine
2299 se_priv_add(&se_rights, &se_machine_account);
2300 DEBUG(10,("_samr_OpenUser: adding machine account "
2301 "rights to handle for user %s\n",
2302 pdb_get_username(sampass) ));
2304 if ((acb_info & ACB_NORMAL) &&
2305 user_has_any_privilege(p->server_info->ptok,
2308 * SeAddUsers is needed to add
2309 * GENERIC_RIGHTS_USER_WRITE to a normal
2312 se_priv_add(&se_rights, &se_add_users);
2313 DEBUG(10,("_samr_OpenUser: adding add user "
2314 "rights to handle for user %s\n",
2315 pdb_get_username(sampass) ));
2318 * Cheat - allow GENERIC_RIGHTS_USER_WRITE if pipe user is
2319 * in DOMAIN_GROUP_RID_ADMINS. This is almost certainly not
2320 * what Windows does but is a hack for people who haven't
2321 * set up privilages on groups in Samba.
2323 if (acb_info & (ACB_SVRTRUST|ACB_DOMTRUST)) {
2324 if (lp_enable_privileges() && nt_token_check_domain_rid(p->server_info->ptok,
2325 DOMAIN_GROUP_RID_ADMINS)) {
2326 des_access &= ~GENERIC_RIGHTS_USER_WRITE;
2327 extra_access = GENERIC_RIGHTS_USER_WRITE;
2328 DEBUG(4,("_samr_OpenUser: Allowing "
2329 "GENERIC_RIGHTS_USER_WRITE for "
2335 TALLOC_FREE(sampass);
2337 nt_status = access_check_object(psd, p->server_info->ptok,
2338 &se_rights, GENERIC_RIGHTS_USER_WRITE, des_access,
2339 &acc_granted, "_samr_OpenUser");
2341 if ( !NT_STATUS_IS_OK(nt_status) )
2344 /* check that the SID exists in our domain. */
2346 return NT_STATUS_NO_SUCH_USER;
2349 /* If we did the rid admins hack above, allow access. */
2350 acc_granted |= extra_access;
2352 uinfo = policy_handle_create(p, r->out.user_handle, acc_granted,
2353 struct samr_user_info, &nt_status);
2354 if (!NT_STATUS_IS_OK(nt_status)) {
2359 return NT_STATUS_OK;
2362 /*************************************************************************
2363 *************************************************************************/
2365 static NTSTATUS init_samr_parameters_string(TALLOC_CTX *mem_ctx,
2367 struct lsa_BinaryString **_r)
2369 struct lsa_BinaryString *r;
2372 return NT_STATUS_INVALID_PARAMETER;
2375 r = TALLOC_ZERO_P(mem_ctx, struct lsa_BinaryString);
2377 return NT_STATUS_NO_MEMORY;
2380 r->array = TALLOC_ZERO_ARRAY(mem_ctx, uint16_t, blob->length/2);
2382 return NT_STATUS_NO_MEMORY;
2384 memcpy(r->array, blob->data, blob->length);
2385 r->size = blob->length;
2386 r->length = blob->length;
2389 return NT_STATUS_NO_MEMORY;
2394 return NT_STATUS_OK;
2397 /*************************************************************************
2399 *************************************************************************/
2401 static NTSTATUS get_user_info_1(TALLOC_CTX *mem_ctx,
2402 struct samr_UserInfo1 *r,
2404 DOM_SID *domain_sid)
2406 const DOM_SID *sid_group;
2407 uint32_t primary_gid;
2410 sid_group = pdb_get_group_sid(pw);
2413 if (!sid_peek_check_rid(domain_sid, sid_group, &primary_gid)) {
2414 DEBUG(0, ("get_user_info_1: User %s has Primary Group SID %s, \n"
2415 "which conflicts with the domain sid %s. Failing operation.\n",
2416 pdb_get_username(pw), sid_string_dbg(sid_group),
2417 sid_string_dbg(domain_sid)));
2418 return NT_STATUS_UNSUCCESSFUL;
2421 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(pw));
2422 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2423 r->primary_gid = primary_gid;
2424 r->description.string = talloc_strdup(mem_ctx, pdb_get_acct_desc(pw));
2425 r->comment.string = talloc_strdup(mem_ctx, pdb_get_comment(pw));
2427 return NT_STATUS_OK;
2430 /*************************************************************************
2432 *************************************************************************/
2434 static NTSTATUS get_user_info_2(TALLOC_CTX *mem_ctx,
2435 struct samr_UserInfo2 *r,
2438 r->comment.string = talloc_strdup(mem_ctx, pdb_get_comment(pw));
2439 r->unknown.string = NULL;
2440 r->country_code = 0;
2443 return NT_STATUS_OK;
2446 /*************************************************************************
2448 *************************************************************************/
2450 static NTSTATUS get_user_info_3(TALLOC_CTX *mem_ctx,
2451 struct samr_UserInfo3 *r,
2453 DOM_SID *domain_sid)
2455 const DOM_SID *sid_user, *sid_group;
2456 uint32_t rid, primary_gid;
2458 sid_user = pdb_get_user_sid(pw);
2460 if (!sid_peek_check_rid(domain_sid, sid_user, &rid)) {
2461 DEBUG(0, ("get_user_info_3: User %s has SID %s, \nwhich conflicts with "
2462 "the domain sid %s. Failing operation.\n",
2463 pdb_get_username(pw), sid_string_dbg(sid_user),
2464 sid_string_dbg(domain_sid)));
2465 return NT_STATUS_UNSUCCESSFUL;
2469 sid_group = pdb_get_group_sid(pw);
2472 if (!sid_peek_check_rid(domain_sid, sid_group, &primary_gid)) {
2473 DEBUG(0, ("get_user_info_3: User %s has Primary Group SID %s, \n"
2474 "which conflicts with the domain sid %s. Failing operation.\n",
2475 pdb_get_username(pw), sid_string_dbg(sid_group),
2476 sid_string_dbg(domain_sid)));
2477 return NT_STATUS_UNSUCCESSFUL;
2480 unix_to_nt_time(&r->last_logon, pdb_get_logon_time(pw));
2481 unix_to_nt_time(&r->last_logoff, pdb_get_logoff_time(pw));
2482 unix_to_nt_time(&r->last_password_change, pdb_get_pass_last_set_time(pw));
2483 unix_to_nt_time(&r->allow_password_change, pdb_get_pass_can_change_time(pw));
2484 unix_to_nt_time(&r->force_password_change, pdb_get_pass_must_change_time(pw));
2486 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(pw));
2487 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2488 r->home_directory.string= talloc_strdup(mem_ctx, pdb_get_homedir(pw));
2489 r->home_drive.string = talloc_strdup(mem_ctx, pdb_get_dir_drive(pw));
2490 r->logon_script.string = talloc_strdup(mem_ctx, pdb_get_logon_script(pw));
2491 r->profile_path.string = talloc_strdup(mem_ctx, pdb_get_profile_path(pw));
2492 r->workstations.string = talloc_strdup(mem_ctx, pdb_get_workstations(pw));
2494 r->logon_hours = get_logon_hours_from_pdb(mem_ctx, pw);
2496 r->primary_gid = primary_gid;
2497 r->acct_flags = pdb_get_acct_ctrl(pw);
2498 r->bad_password_count = pdb_get_bad_password_count(pw);
2499 r->logon_count = pdb_get_logon_count(pw);
2501 return NT_STATUS_OK;
2504 /*************************************************************************
2506 *************************************************************************/
2508 static NTSTATUS get_user_info_4(TALLOC_CTX *mem_ctx,
2509 struct samr_UserInfo4 *r,
2512 r->logon_hours = get_logon_hours_from_pdb(mem_ctx, pw);
2514 return NT_STATUS_OK;
2517 /*************************************************************************
2519 *************************************************************************/
2521 static NTSTATUS get_user_info_5(TALLOC_CTX *mem_ctx,
2522 struct samr_UserInfo5 *r,
2524 DOM_SID *domain_sid)
2526 const DOM_SID *sid_user, *sid_group;
2527 uint32_t rid, primary_gid;
2529 sid_user = pdb_get_user_sid(pw);
2531 if (!sid_peek_check_rid(domain_sid, sid_user, &rid)) {
2532 DEBUG(0, ("get_user_info_5: User %s has SID %s, \nwhich conflicts with "
2533 "the domain sid %s. Failing operation.\n",
2534 pdb_get_username(pw), sid_string_dbg(sid_user),
2535 sid_string_dbg(domain_sid)));
2536 return NT_STATUS_UNSUCCESSFUL;
2540 sid_group = pdb_get_group_sid(pw);
2543 if (!sid_peek_check_rid(domain_sid, sid_group, &primary_gid)) {
2544 DEBUG(0, ("get_user_info_5: User %s has Primary Group SID %s, \n"
2545 "which conflicts with the domain sid %s. Failing operation.\n",
2546 pdb_get_username(pw), sid_string_dbg(sid_group),
2547 sid_string_dbg(domain_sid)));
2548 return NT_STATUS_UNSUCCESSFUL;
2551 unix_to_nt_time(&r->last_logon, pdb_get_logon_time(pw));
2552 unix_to_nt_time(&r->last_logoff, pdb_get_logoff_time(pw));
2553 unix_to_nt_time(&r->acct_expiry, pdb_get_kickoff_time(pw));
2554 unix_to_nt_time(&r->last_password_change, pdb_get_pass_last_set_time(pw));
2556 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(pw));
2557 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2558 r->home_directory.string= talloc_strdup(mem_ctx, pdb_get_homedir(pw));
2559 r->home_drive.string = talloc_strdup(mem_ctx, pdb_get_dir_drive(pw));
2560 r->logon_script.string = talloc_strdup(mem_ctx, pdb_get_logon_script(pw));
2561 r->profile_path.string = talloc_strdup(mem_ctx, pdb_get_profile_path(pw));
2562 r->description.string = talloc_strdup(mem_ctx, pdb_get_acct_desc(pw));
2563 r->workstations.string = talloc_strdup(mem_ctx, pdb_get_workstations(pw));
2565 r->logon_hours = get_logon_hours_from_pdb(mem_ctx, pw);
2567 r->primary_gid = primary_gid;
2568 r->acct_flags = pdb_get_acct_ctrl(pw);
2569 r->bad_password_count = pdb_get_bad_password_count(pw);
2570 r->logon_count = pdb_get_logon_count(pw);
2572 return NT_STATUS_OK;
2575 /*************************************************************************
2577 *************************************************************************/
2579 static NTSTATUS get_user_info_6(TALLOC_CTX *mem_ctx,
2580 struct samr_UserInfo6 *r,
2583 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(pw));
2584 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2586 return NT_STATUS_OK;
2589 /*************************************************************************
2590 get_user_info_7. Safe. Only gives out account_name.
2591 *************************************************************************/
2593 static NTSTATUS get_user_info_7(TALLOC_CTX *mem_ctx,
2594 struct samr_UserInfo7 *r,
2595 struct samu *smbpass)
2597 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(smbpass));
2598 if (!r->account_name.string) {
2599 return NT_STATUS_NO_MEMORY;
2602 return NT_STATUS_OK;
2605 /*************************************************************************
2607 *************************************************************************/
2609 static NTSTATUS get_user_info_8(TALLOC_CTX *mem_ctx,
2610 struct samr_UserInfo8 *r,
2613 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2615 return NT_STATUS_OK;
2618 /*************************************************************************
2619 get_user_info_9. Only gives out primary group SID.
2620 *************************************************************************/
2622 static NTSTATUS get_user_info_9(TALLOC_CTX *mem_ctx,
2623 struct samr_UserInfo9 *r,
2624 struct samu *smbpass)
2626 r->primary_gid = pdb_get_group_rid(smbpass);
2628 return NT_STATUS_OK;
2631 /*************************************************************************
2633 *************************************************************************/
2635 static NTSTATUS get_user_info_10(TALLOC_CTX *mem_ctx,
2636 struct samr_UserInfo10 *r,
2639 r->home_directory.string= talloc_strdup(mem_ctx, pdb_get_homedir(pw));
2640 r->home_drive.string = talloc_strdup(mem_ctx, pdb_get_dir_drive(pw));
2642 return NT_STATUS_OK;
2645 /*************************************************************************
2647 *************************************************************************/
2649 static NTSTATUS get_user_info_11(TALLOC_CTX *mem_ctx,
2650 struct samr_UserInfo11 *r,
2653 r->logon_script.string = talloc_strdup(mem_ctx, pdb_get_logon_script(pw));
2655 return NT_STATUS_OK;
2658 /*************************************************************************
2660 *************************************************************************/
2662 static NTSTATUS get_user_info_12(TALLOC_CTX *mem_ctx,
2663 struct samr_UserInfo12 *r,
2666 r->profile_path.string = talloc_strdup(mem_ctx, pdb_get_profile_path(pw));
2668 return NT_STATUS_OK;
2671 /*************************************************************************
2673 *************************************************************************/
2675 static NTSTATUS get_user_info_13(TALLOC_CTX *mem_ctx,
2676 struct samr_UserInfo13 *r,
2679 r->description.string = talloc_strdup(mem_ctx, pdb_get_acct_desc(pw));
2681 return NT_STATUS_OK;
2684 /*************************************************************************
2686 *************************************************************************/
2688 static NTSTATUS get_user_info_14(TALLOC_CTX *mem_ctx,
2689 struct samr_UserInfo14 *r,
2692 r->workstations.string = talloc_strdup(mem_ctx, pdb_get_workstations(pw));
2694 return NT_STATUS_OK;
2697 /*************************************************************************
2698 get_user_info_16. Safe. Only gives out acb bits.
2699 *************************************************************************/
2701 static NTSTATUS get_user_info_16(TALLOC_CTX *mem_ctx,
2702 struct samr_UserInfo16 *r,
2703 struct samu *smbpass)
2705 r->acct_flags = pdb_get_acct_ctrl(smbpass);
2707 return NT_STATUS_OK;
2710 /*************************************************************************
2712 *************************************************************************/
2714 static NTSTATUS get_user_info_17(TALLOC_CTX *mem_ctx,
2715 struct samr_UserInfo17 *r,
2718 unix_to_nt_time(&r->acct_expiry, pdb_get_kickoff_time(pw));
2720 return NT_STATUS_OK;
2723 /*************************************************************************
2724 get_user_info_18. OK - this is the killer as it gives out password info.
2725 Ensure that this is only allowed on an encrypted connection with a root
2727 *************************************************************************/
2729 static NTSTATUS get_user_info_18(pipes_struct *p,
2730 TALLOC_CTX *mem_ctx,
2731 struct samr_UserInfo18 *r,
2734 struct samu *smbpass=NULL;
2739 if (p->auth.auth_type != PIPE_AUTH_TYPE_NTLMSSP || p->auth.auth_type != PIPE_AUTH_TYPE_SPNEGO_NTLMSSP) {
2740 return NT_STATUS_ACCESS_DENIED;
2743 if (p->auth.auth_level != PIPE_AUTH_LEVEL_PRIVACY) {
2744 return NT_STATUS_ACCESS_DENIED;
2748 * Do *NOT* do become_root()/unbecome_root() here ! JRA.
2751 if ( !(smbpass = samu_new( mem_ctx )) ) {
2752 return NT_STATUS_NO_MEMORY;
2755 ret = pdb_getsampwsid(smbpass, user_sid);
2758 DEBUG(4, ("User %s not found\n", sid_string_dbg(user_sid)));
2759 TALLOC_FREE(smbpass);
2760 return (geteuid() == sec_initial_uid()) ? NT_STATUS_NO_SUCH_USER : NT_STATUS_ACCESS_DENIED;
2763 DEBUG(3,("User:[%s] 0x%x\n", pdb_get_username(smbpass), pdb_get_acct_ctrl(smbpass) ));
2765 if ( pdb_get_acct_ctrl(smbpass) & ACB_DISABLED) {
2766 TALLOC_FREE(smbpass);
2767 return NT_STATUS_ACCOUNT_DISABLED;
2770 r->lm_pwd_active = true;
2771 r->nt_pwd_active = true;
2772 memcpy(r->lm_pwd.hash, pdb_get_lanman_passwd(smbpass), 16);
2773 memcpy(r->nt_pwd.hash, pdb_get_nt_passwd(smbpass), 16);
2774 r->password_expired = 0; /* FIXME */
2776 TALLOC_FREE(smbpass);
2778 return NT_STATUS_OK;
2781 /*************************************************************************
2783 *************************************************************************/
2785 static NTSTATUS get_user_info_20(TALLOC_CTX *mem_ctx,
2786 struct samr_UserInfo20 *r,
2787 struct samu *sampass)
2789 const char *munged_dial = NULL;
2792 struct lsa_BinaryString *parameters = NULL;
2796 munged_dial = pdb_get_munged_dial(sampass);
2798 DEBUG(3,("User:[%s] has [%s] (length: %d)\n", pdb_get_username(sampass),
2799 munged_dial, (int)strlen(munged_dial)));
2802 blob = base64_decode_data_blob(munged_dial);
2804 blob = data_blob_string_const_null("");
2807 status = init_samr_parameters_string(mem_ctx, &blob, ¶meters);
2808 data_blob_free(&blob);
2809 if (!NT_STATUS_IS_OK(status)) {
2813 r->parameters = *parameters;
2815 return NT_STATUS_OK;
2819 /*************************************************************************
2821 *************************************************************************/
2823 static NTSTATUS get_user_info_21(TALLOC_CTX *mem_ctx,
2824 struct samr_UserInfo21 *r,
2826 DOM_SID *domain_sid,
2827 uint32_t acc_granted)
2830 const DOM_SID *sid_user, *sid_group;
2831 uint32_t rid, primary_gid;
2832 NTTIME force_password_change;
2833 time_t must_change_time;
2834 struct lsa_BinaryString *parameters = NULL;
2835 const char *munged_dial = NULL;
2840 sid_user = pdb_get_user_sid(pw);
2842 if (!sid_peek_check_rid(domain_sid, sid_user, &rid)) {
2843 DEBUG(0, ("get_user_info_21: User %s has SID %s, \nwhich conflicts with "
2844 "the domain sid %s. Failing operation.\n",
2845 pdb_get_username(pw), sid_string_dbg(sid_user),
2846 sid_string_dbg(domain_sid)));
2847 return NT_STATUS_UNSUCCESSFUL;
2851 sid_group = pdb_get_group_sid(pw);
2854 if (!sid_peek_check_rid(domain_sid, sid_group, &primary_gid)) {
2855 DEBUG(0, ("get_user_info_21: User %s has Primary Group SID %s, \n"
2856 "which conflicts with the domain sid %s. Failing operation.\n",
2857 pdb_get_username(pw), sid_string_dbg(sid_group),
2858 sid_string_dbg(domain_sid)));
2859 return NT_STATUS_UNSUCCESSFUL;
2862 unix_to_nt_time(&r->last_logon, pdb_get_logon_time(pw));
2863 unix_to_nt_time(&r->last_logoff, pdb_get_logoff_time(pw));
2864 unix_to_nt_time(&r->acct_expiry, pdb_get_kickoff_time(pw));
2865 unix_to_nt_time(&r->last_password_change, pdb_get_pass_last_set_time(pw));
2866 unix_to_nt_time(&r->allow_password_change, pdb_get_pass_can_change_time(pw));
2868 must_change_time = pdb_get_pass_must_change_time(pw);
2869 if (must_change_time == get_time_t_max()) {
2870 unix_to_nt_time_abs(&force_password_change, must_change_time);
2872 unix_to_nt_time(&force_password_change, must_change_time);
2875 munged_dial = pdb_get_munged_dial(pw);
2877 blob = base64_decode_data_blob(munged_dial);
2879 blob = data_blob_string_const_null("");
2882 status = init_samr_parameters_string(mem_ctx, &blob, ¶meters);
2883 data_blob_free(&blob);
2884 if (!NT_STATUS_IS_OK(status)) {
2888 r->force_password_change = force_password_change;
2890 r->account_name.string = talloc_strdup(mem_ctx, pdb_get_username(pw));
2891 r->full_name.string = talloc_strdup(mem_ctx, pdb_get_fullname(pw));
2892 r->home_directory.string = talloc_strdup(mem_ctx, pdb_get_homedir(pw));
2893 r->home_drive.string = talloc_strdup(mem_ctx, pdb_get_dir_drive(pw));
2894 r->logon_script.string = talloc_strdup(mem_ctx, pdb_get_logon_script(pw));
2895 r->profile_path.string = talloc_strdup(mem_ctx, pdb_get_profile_path(pw));
2896 r->description.string = talloc_strdup(mem_ctx, pdb_get_acct_desc(pw));
2897 r->workstations.string = talloc_strdup(mem_ctx, pdb_get_workstations(pw));
2898 r->comment.string = talloc_strdup(mem_ctx, pdb_get_comment(pw));
2900 r->logon_hours = get_logon_hours_from_pdb(mem_ctx, pw);
2901 r->parameters = *parameters;
2903 r->primary_gid = primary_gid;
2904 r->acct_flags = pdb_get_acct_ctrl(pw);
2905 r->bad_password_count = pdb_get_bad_password_count(pw);
2906 r->logon_count = pdb_get_logon_count(pw);
2907 r->fields_present = pdb_build_fields_present(pw);
2908 r->password_expired = (pdb_get_pass_must_change_time(pw) == 0) ?
2909 PASS_MUST_CHANGE_AT_NEXT_LOGON : 0;
2910 r->country_code = 0;
2912 r->lm_password_set = 0;
2913 r->nt_password_set = 0;
2918 Look at a user on a real NT4 PDC with usrmgr, press
2919 'ok'. Then you will see that fields_present is set to
2920 0x08f827fa. Look at the user immediately after that again,
2921 and you will see that 0x00fffff is returned. This solves
2922 the problem that you get access denied after having looked
2930 return NT_STATUS_OK;
2933 /*******************************************************************
2935 ********************************************************************/
2937 NTSTATUS _samr_QueryUserInfo(pipes_struct *p,
2938 struct samr_QueryUserInfo *r)
2941 union samr_UserInfo *user_info = NULL;
2942 struct samr_user_info *uinfo;
2946 struct samu *pwd = NULL;
2947 uint32_t acc_required, acc_granted;
2949 switch (r->in.level) {
2950 case 1: /* UserGeneralInformation */
2951 /* USER_READ_GENERAL */
2952 acc_required = SAMR_USER_ACCESS_GET_NAME_ETC;
2954 case 2: /* UserPreferencesInformation */
2955 /* USER_READ_PREFERENCES | USER_READ_GENERAL */
2956 acc_required = SAMR_USER_ACCESS_GET_LOCALE |
2957 SAMR_USER_ACCESS_GET_NAME_ETC;
2959 case 3: /* UserLogonInformation */
2960 /* USER_READ_GENERAL | USER_READ_PREFERENCES | USER_READ_LOGON | USER_READ_ACCOUNT */
2961 acc_required = SAMR_USER_ACCESS_GET_NAME_ETC |
2962 SAMR_USER_ACCESS_GET_LOCALE |
2963 SAMR_USER_ACCESS_GET_LOGONINFO |
2964 SAMR_USER_ACCESS_GET_ATTRIBUTES;
2966 case 4: /* UserLogonHoursInformation */
2967 /* USER_READ_LOGON */
2968 acc_required = SAMR_USER_ACCESS_GET_LOGONINFO;
2970 case 5: /* UserAccountInformation */
2971 /* USER_READ_GENERAL | USER_READ_PREFERENCES | USER_READ_LOGON | USER_READ_ACCOUNT */
2972 acc_required = SAMR_USER_ACCESS_GET_NAME_ETC |
2973 SAMR_USER_ACCESS_GET_LOCALE |
2974 SAMR_USER_ACCESS_GET_LOGONINFO |
2975 SAMR_USER_ACCESS_GET_ATTRIBUTES;
2977 case 6: /* UserNameInformation */
2978 case 7: /* UserAccountNameInformation */
2979 case 8: /* UserFullNameInformation */
2980 case 9: /* UserPrimaryGroupInformation */
2981 case 13: /* UserAdminCommentInformation */
2982 /* USER_READ_GENERAL */
2983 acc_required = SAMR_USER_ACCESS_GET_NAME_ETC;
2985 case 10: /* UserHomeInformation */
2986 case 11: /* UserScriptInformation */
2987 case 12: /* UserProfileInformation */
2988 case 14: /* UserWorkStationsInformation */
2989 /* USER_READ_LOGON */
2990 acc_required = SAMR_USER_ACCESS_GET_LOGONINFO;
2992 case 16: /* UserControlInformation */
2993 case 17: /* UserExpiresInformation */
2994 case 20: /* UserParametersInformation */
2995 /* USER_READ_ACCOUNT */
2996 acc_required = SAMR_USER_ACCESS_GET_ATTRIBUTES;
2998 case 21: /* UserAllInformation */
3000 acc_required = SAMR_USER_ACCESS_GET_ATTRIBUTES;
3002 case 18: /* UserInternal1Information */
3004 acc_required = SAMR_USER_ACCESS_GET_ATTRIBUTES;
3006 case 23: /* UserInternal4Information */
3007 case 24: /* UserInternal4InformationNew */
3008 case 25: /* UserInternal4InformationNew */
3009 case 26: /* UserInternal5InformationNew */
3011 return NT_STATUS_INVALID_INFO_CLASS;
3015 uinfo = policy_handle_find(p, r->in.user_handle,
3016 acc_required, &acc_granted,
3017 struct samr_user_info, &status);
3018 if (!NT_STATUS_IS_OK(status)) {
3022 domain_sid = uinfo->sid;
3024 sid_split_rid(&domain_sid, &rid);
3026 if (!sid_check_is_in_our_domain(&uinfo->sid))
3027 return NT_STATUS_OBJECT_TYPE_MISMATCH;
3029 DEBUG(5,("_samr_QueryUserInfo: sid:%s\n",
3030 sid_string_dbg(&uinfo->sid)));
3032 user_info = TALLOC_ZERO_P(p->mem_ctx, union samr_UserInfo);
3034 return NT_STATUS_NO_MEMORY;
3037 DEBUG(5,("_samr_QueryUserInfo: user info level: %d\n", r->in.level));
3039 if (!(pwd = samu_new(p->mem_ctx))) {
3040 return NT_STATUS_NO_MEMORY;
3044 ret = pdb_getsampwsid(pwd, &uinfo->sid);
3048 DEBUG(4,("User %s not found\n", sid_string_dbg(&uinfo->sid)));
3050 return NT_STATUS_NO_SUCH_USER;
3053 DEBUG(3,("User:[%s]\n", pdb_get_username(pwd)));
3055 samr_clear_sam_passwd(pwd);
3057 switch (r->in.level) {
3059 status = get_user_info_1(p->mem_ctx, &user_info->info1, pwd, &domain_sid);
3062 status = get_user_info_2(p->mem_ctx, &user_info->info2, pwd);
3065 status = get_user_info_3(p->mem_ctx, &user_info->info3, pwd, &domain_sid);
3068 status = get_user_info_4(p->mem_ctx, &user_info->info4, pwd);
3071 status = get_user_info_5(p->mem_ctx, &user_info->info5, pwd, &domain_sid);
3074 status = get_user_info_6(p->mem_ctx, &user_info->info6, pwd);
3077 status = get_user_info_7(p->mem_ctx, &user_info->info7, pwd);
3080 status = get_user_info_8(p->mem_ctx, &user_info->info8, pwd);
3083 status = get_user_info_9(p->mem_ctx, &user_info->info9, pwd);
3086 status = get_user_info_10(p->mem_ctx, &user_info->info10, pwd);
3089 status = get_user_info_11(p->mem_ctx, &user_info->info11, pwd);
3092 status = get_user_info_12(p->mem_ctx, &user_info->info12, pwd);
3095 status = get_user_info_13(p->mem_ctx, &user_info->info13, pwd);
3098 status = get_user_info_14(p->mem_ctx, &user_info->info14, pwd);
3101 status = get_user_info_16(p->mem_ctx, &user_info->info16, pwd);
3104 status = get_user_info_17(p->mem_ctx, &user_info->info17, pwd);
3107 /* level 18 is special */
3108 status = get_user_info_18(p, p->mem_ctx, &user_info->info18,
3112 status = get_user_info_20(p->mem_ctx, &user_info->info20, pwd);
3115 status = get_user_info_21(p->mem_ctx, &user_info->info21, pwd, &domain_sid, acc_granted);
3118 status = NT_STATUS_INVALID_INFO_CLASS;
3122 if (!NT_STATUS_IS_OK(status)) {
3126 *r->out.info = user_info;
3131 DEBUG(5,("_samr_QueryUserInfo: %d\n", __LINE__));
3136 /****************************************************************
3137 ****************************************************************/
3139 NTSTATUS _samr_QueryUserInfo2(pipes_struct *p,
3140 struct samr_QueryUserInfo2 *r)
3142 struct samr_QueryUserInfo u;
3144 u.in.user_handle = r->in.user_handle;
3145 u.in.level = r->in.level;
3146 u.out.info = r->out.info;
3148 return _samr_QueryUserInfo(p, &u);
3151 /*******************************************************************
3152 _samr_GetGroupsForUser
3153 ********************************************************************/
3155 NTSTATUS _samr_GetGroupsForUser(pipes_struct *p,
3156 struct samr_GetGroupsForUser *r)
3158 struct samr_user_info *uinfo;
3159 struct samu *sam_pass=NULL;
3161 struct samr_RidWithAttribute dom_gid;
3162 struct samr_RidWithAttribute *gids = NULL;
3163 uint32 primary_group_rid;
3164 size_t num_groups = 0;
3169 bool success = False;
3171 struct samr_RidWithAttributeArray *rids = NULL;
3174 * from the SID in the request:
3175 * we should send back the list of DOMAIN GROUPS
3176 * the user is a member of
3178 * and only the DOMAIN GROUPS
3179 * no ALIASES !!! neither aliases of the domain
3180 * nor aliases of the builtin SID
3185 DEBUG(5,("_samr_GetGroupsForUser: %d\n", __LINE__));
3187 uinfo = policy_handle_find(p, r->in.user_handle,
3188 SAMR_USER_ACCESS_GET_GROUPS, NULL,
3189 struct samr_user_info, &result);
3190 if (!NT_STATUS_IS_OK(result)) {
3194 rids = TALLOC_ZERO_P(p->mem_ctx, struct samr_RidWithAttributeArray);
3196 return NT_STATUS_NO_MEMORY;
3199 if (!sid_check_is_in_our_domain(&uinfo->sid))
3200 return NT_STATUS_OBJECT_TYPE_MISMATCH;
3202 if ( !(sam_pass = samu_new( p->mem_ctx )) ) {
3203 return NT_STATUS_NO_MEMORY;
3207 ret = pdb_getsampwsid(sam_pass, &uinfo->sid);
3211 DEBUG(10, ("pdb_getsampwsid failed for %s\n",
3212 sid_string_dbg(&uinfo->sid)));
3213 return NT_STATUS_NO_SUCH_USER;
3218 /* make both calls inside the root block */