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"
37 #include "../librpc/gen_ndr/srv_samr.h"
40 #define DBGC_CLASS DBGC_RPC_SRV
42 #define SAMR_USR_RIGHTS_WRITE_PW \
43 ( READ_CONTROL_ACCESS | \
44 SAMR_USER_ACCESS_CHANGE_PASSWORD | \
45 SAMR_USER_ACCESS_SET_LOC_COM)
46 #define SAMR_USR_RIGHTS_CANT_WRITE_PW \
47 ( READ_CONTROL_ACCESS | SAMR_USER_ACCESS_SET_LOC_COM )
49 #define DISP_INFO_CACHE_TIMEOUT 10
51 #define MAX_SAM_ENTRIES_W2K 0x400 /* 1024 */
52 #define MAX_SAM_ENTRIES_W95 50
54 struct samr_connect_info
{
58 struct samr_domain_info
{
60 struct disp_info
*disp_info
;
63 struct samr_user_info
{
67 struct samr_group_info
{
71 struct samr_alias_info
{
75 typedef struct disp_info
{
76 DOM_SID sid
; /* identify which domain this is. */
77 struct pdb_search
*users
; /* querydispinfo 1 and 4 */
78 struct pdb_search
*machines
; /* querydispinfo 2 */
79 struct pdb_search
*groups
; /* querydispinfo 3 and 5, enumgroups */
80 struct pdb_search
*aliases
; /* enumaliases */
82 uint32_t enum_acb_mask
;
83 struct pdb_search
*enum_users
; /* enumusers with a mask */
85 struct timed_event
*cache_timeout_event
; /* cache idle timeout
89 static const struct generic_mapping sam_generic_mapping
= {
90 GENERIC_RIGHTS_SAM_READ
,
91 GENERIC_RIGHTS_SAM_WRITE
,
92 GENERIC_RIGHTS_SAM_EXECUTE
,
93 GENERIC_RIGHTS_SAM_ALL_ACCESS
};
94 static const struct generic_mapping dom_generic_mapping
= {
95 GENERIC_RIGHTS_DOMAIN_READ
,
96 GENERIC_RIGHTS_DOMAIN_WRITE
,
97 GENERIC_RIGHTS_DOMAIN_EXECUTE
,
98 GENERIC_RIGHTS_DOMAIN_ALL_ACCESS
};
99 static const struct generic_mapping usr_generic_mapping
= {
100 GENERIC_RIGHTS_USER_READ
,
101 GENERIC_RIGHTS_USER_WRITE
,
102 GENERIC_RIGHTS_USER_EXECUTE
,
103 GENERIC_RIGHTS_USER_ALL_ACCESS
};
104 static const struct generic_mapping usr_nopwchange_generic_mapping
= {
105 GENERIC_RIGHTS_USER_READ
,
106 GENERIC_RIGHTS_USER_WRITE
,
107 GENERIC_RIGHTS_USER_EXECUTE
& ~SAMR_USER_ACCESS_CHANGE_PASSWORD
,
108 GENERIC_RIGHTS_USER_ALL_ACCESS
};
109 static const struct generic_mapping grp_generic_mapping
= {
110 GENERIC_RIGHTS_GROUP_READ
,
111 GENERIC_RIGHTS_GROUP_WRITE
,
112 GENERIC_RIGHTS_GROUP_EXECUTE
,
113 GENERIC_RIGHTS_GROUP_ALL_ACCESS
};
114 static const struct generic_mapping ali_generic_mapping
= {
115 GENERIC_RIGHTS_ALIAS_READ
,
116 GENERIC_RIGHTS_ALIAS_WRITE
,
117 GENERIC_RIGHTS_ALIAS_EXECUTE
,
118 GENERIC_RIGHTS_ALIAS_ALL_ACCESS
};
120 /*******************************************************************
121 *******************************************************************/
123 static NTSTATUS
make_samr_object_sd( TALLOC_CTX
*ctx
, SEC_DESC
**psd
, size_t *sd_size
,
124 const struct generic_mapping
*map
,
125 DOM_SID
*sid
, uint32 sid_access
)
127 DOM_SID domadmin_sid
;
128 SEC_ACE ace
[5]; /* at most 5 entries */
133 /* basic access for Everyone */
135 init_sec_ace(&ace
[i
++], &global_sid_World
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
136 map
->generic_execute
| map
->generic_read
, 0);
138 /* add Full Access 'BUILTIN\Administrators' and 'BUILTIN\Account Operators */
140 init_sec_ace(&ace
[i
++], &global_sid_Builtin_Administrators
,
141 SEC_ACE_TYPE_ACCESS_ALLOWED
, map
->generic_all
, 0);
142 init_sec_ace(&ace
[i
++], &global_sid_Builtin_Account_Operators
,
143 SEC_ACE_TYPE_ACCESS_ALLOWED
, map
->generic_all
, 0);
145 /* Add Full Access for Domain Admins if we are a DC */
148 sid_copy( &domadmin_sid
, get_global_sam_sid() );
149 sid_append_rid( &domadmin_sid
, DOMAIN_GROUP_RID_ADMINS
);
150 init_sec_ace(&ace
[i
++], &domadmin_sid
,
151 SEC_ACE_TYPE_ACCESS_ALLOWED
, map
->generic_all
, 0);
154 /* if we have a sid, give it some special access */
157 init_sec_ace(&ace
[i
++], sid
, SEC_ACE_TYPE_ACCESS_ALLOWED
, sid_access
, 0);
160 /* create the security descriptor */
162 if ((psa
= make_sec_acl(ctx
, NT4_ACL_REVISION
, i
, ace
)) == NULL
)
163 return NT_STATUS_NO_MEMORY
;
165 if ((*psd
= make_sec_desc(ctx
, SECURITY_DESCRIPTOR_REVISION_1
,
166 SEC_DESC_SELF_RELATIVE
, NULL
, NULL
, NULL
,
167 psa
, sd_size
)) == NULL
)
168 return NT_STATUS_NO_MEMORY
;
173 /*******************************************************************
174 Checks if access to an object should be granted, and returns that
175 level of access for further checks.
176 ********************************************************************/
178 NTSTATUS
access_check_object( SEC_DESC
*psd
, NT_USER_TOKEN
*token
,
179 SE_PRIV
*rights
, uint32 rights_mask
,
180 uint32 des_access
, uint32
*acc_granted
,
183 NTSTATUS status
= NT_STATUS_ACCESS_DENIED
;
184 uint32 saved_mask
= 0;
186 /* check privileges; certain SAM access bits should be overridden
187 by privileges (mostly having to do with creating/modifying/deleting
190 if (rights
&& !se_priv_equal(rights
, &se_priv_none
) &&
191 user_has_any_privilege(token
, rights
)) {
193 saved_mask
= (des_access
& rights_mask
);
194 des_access
&= ~saved_mask
;
196 DEBUG(4,("access_check_object: user rights access mask [0x%x]\n",
201 /* check the security descriptor first */
203 status
= se_access_check(psd
, token
, des_access
, acc_granted
);
204 if (NT_STATUS_IS_OK(status
)) {
208 /* give root a free pass */
210 if ( geteuid() == sec_initial_uid() ) {
212 DEBUG(4,("%s: ACCESS should be DENIED (requested: %#010x)\n", debug
, des_access
));
213 DEBUGADD(4,("but overritten by euid == sec_initial_uid()\n"));
215 *acc_granted
= des_access
;
217 status
= NT_STATUS_OK
;
223 /* add in any bits saved during the privilege check (only
224 matters is status is ok) */
226 *acc_granted
|= rights_mask
;
228 DEBUG(4,("%s: access %s (requested: 0x%08x, granted: 0x%08x)\n",
229 debug
, NT_STATUS_IS_OK(status
) ? "GRANTED" : "DENIED",
230 des_access
, *acc_granted
));
236 /*******************************************************************
237 Map any MAXIMUM_ALLOWED_ACCESS request to a valid access set.
238 ********************************************************************/
240 void map_max_allowed_access(const NT_USER_TOKEN
*nt_token
,
241 const struct unix_user_token
*unix_token
,
242 uint32_t *pacc_requested
)
244 if (!((*pacc_requested
) & MAXIMUM_ALLOWED_ACCESS
)) {
247 *pacc_requested
&= ~MAXIMUM_ALLOWED_ACCESS
;
249 /* At least try for generic read|execute - Everyone gets that. */
250 *pacc_requested
= GENERIC_READ_ACCESS
|GENERIC_EXECUTE_ACCESS
;
252 /* root gets anything. */
253 if (unix_token
->uid
== sec_initial_uid()) {
254 *pacc_requested
|= GENERIC_ALL_ACCESS
;
258 /* Full Access for 'BUILTIN\Administrators' and 'BUILTIN\Account Operators */
260 if (is_sid_in_token(nt_token
, &global_sid_Builtin_Administrators
) ||
261 is_sid_in_token(nt_token
, &global_sid_Builtin_Account_Operators
)) {
262 *pacc_requested
|= GENERIC_ALL_ACCESS
;
266 /* Full access for DOMAIN\Domain Admins. */
268 DOM_SID domadmin_sid
;
269 sid_copy( &domadmin_sid
, get_global_sam_sid() );
270 sid_append_rid( &domadmin_sid
, DOMAIN_GROUP_RID_ADMINS
);
271 if (is_sid_in_token(nt_token
, &domadmin_sid
)) {
272 *pacc_requested
|= GENERIC_ALL_ACCESS
;
276 /* TODO ! Check privileges. */
279 /*******************************************************************
280 Fetch or create a dispinfo struct.
281 ********************************************************************/
283 static DISP_INFO
*get_samr_dispinfo_by_sid(const struct dom_sid
*psid
)
286 * We do a static cache for DISP_INFO's here. Explanation can be found
287 * in Jeremy's checkin message to r11793:
289 * Fix the SAMR cache so it works across completely insane
290 * client behaviour (ie.:
291 * open pipe/open SAMR handle/enumerate 0 - 1024
292 * close SAMR handle, close pipe.
293 * open pipe/open SAMR handle/enumerate 1024 - 2048...
294 * close SAMR handle, close pipe.
295 * And on ad-nausium. Amazing.... probably object-oriented
296 * client side programming in action yet again.
297 * This change should *massively* improve performance when
298 * enumerating users from an LDAP database.
301 * "Our" and the builtin domain are the only ones where we ever
302 * enumerate stuff, so just cache 2 entries.
305 static struct disp_info
*builtin_dispinfo
;
306 static struct disp_info
*domain_dispinfo
;
308 /* There are two cases to consider here:
309 1) The SID is a domain SID and we look for an equality match, or
310 2) This is an account SID and so we return the DISP_INFO* for our
317 if (sid_check_is_builtin(psid
) || sid_check_is_in_builtin(psid
)) {
319 * Necessary only once, but it does not really hurt.
321 if (builtin_dispinfo
== NULL
) {
322 builtin_dispinfo
= talloc_zero(
323 talloc_autofree_context(), struct disp_info
);
324 if (builtin_dispinfo
== NULL
) {
328 sid_copy(&builtin_dispinfo
->sid
, &global_sid_Builtin
);
330 return builtin_dispinfo
;
333 if (sid_check_is_domain(psid
) || sid_check_is_in_our_domain(psid
)) {
335 * Necessary only once, but it does not really hurt.
337 if (domain_dispinfo
== NULL
) {
338 domain_dispinfo
= talloc_zero(
339 talloc_autofree_context(), struct disp_info
);
340 if (domain_dispinfo
== NULL
) {
344 sid_copy(&domain_dispinfo
->sid
, get_global_sam_sid());
346 return domain_dispinfo
;
352 /*******************************************************************
353 Function to free the per SID data.
354 ********************************************************************/
356 static void free_samr_cache(DISP_INFO
*disp_info
)
358 DEBUG(10, ("free_samr_cache: deleting cache for SID %s\n",
359 sid_string_dbg(&disp_info
->sid
)));
361 /* We need to become root here because the paged search might have to
362 * tell the LDAP server we're not interested in the rest anymore. */
366 TALLOC_FREE(disp_info
->users
);
367 TALLOC_FREE(disp_info
->machines
);
368 TALLOC_FREE(disp_info
->groups
);
369 TALLOC_FREE(disp_info
->aliases
);
370 TALLOC_FREE(disp_info
->enum_users
);
375 /*******************************************************************
376 Idle event handler. Throw away the disp info cache.
377 ********************************************************************/
379 static void disp_info_cache_idle_timeout_handler(struct event_context
*ev_ctx
,
380 struct timed_event
*te
,
384 DISP_INFO
*disp_info
= (DISP_INFO
*)private_data
;
386 TALLOC_FREE(disp_info
->cache_timeout_event
);
388 DEBUG(10, ("disp_info_cache_idle_timeout_handler: caching timed "
390 free_samr_cache(disp_info
);
393 /*******************************************************************
394 Setup cache removal idle event handler.
395 ********************************************************************/
397 static void set_disp_info_cache_timeout(DISP_INFO
*disp_info
, time_t secs_fromnow
)
399 /* Remove any pending timeout and update. */
401 TALLOC_FREE(disp_info
->cache_timeout_event
);
403 DEBUG(10,("set_disp_info_cache_timeout: caching enumeration for "
404 "SID %s for %u seconds\n", sid_string_dbg(&disp_info
->sid
),
405 (unsigned int)secs_fromnow
));
407 disp_info
->cache_timeout_event
= event_add_timed(
408 smbd_event_context(), NULL
,
409 timeval_current_ofs(secs_fromnow
, 0),
410 disp_info_cache_idle_timeout_handler
, (void *)disp_info
);
413 /*******************************************************************
414 Force flush any cache. We do this on any samr_set_xxx call.
415 We must also remove the timeout handler.
416 ********************************************************************/
418 static void force_flush_samr_cache(const struct dom_sid
*sid
)
420 struct disp_info
*disp_info
= get_samr_dispinfo_by_sid(sid
);
422 if ((disp_info
== NULL
) || (disp_info
->cache_timeout_event
== NULL
)) {
426 DEBUG(10,("force_flush_samr_cache: clearing idle event\n"));
427 TALLOC_FREE(disp_info
->cache_timeout_event
);
428 free_samr_cache(disp_info
);
431 /*******************************************************************
432 Ensure password info is never given out. Paranioa... JRA.
433 ********************************************************************/
435 static void samr_clear_sam_passwd(struct samu
*sam_pass
)
441 /* These now zero out the old password */
443 pdb_set_lanman_passwd(sam_pass
, NULL
, PDB_DEFAULT
);
444 pdb_set_nt_passwd(sam_pass
, NULL
, PDB_DEFAULT
);
447 static uint32
count_sam_users(struct disp_info
*info
, uint32 acct_flags
)
449 struct samr_displayentry
*entry
;
451 if (sid_check_is_builtin(&info
->sid
)) {
452 /* No users in builtin. */
456 if (info
->users
== NULL
) {
457 info
->users
= pdb_search_users(info
, acct_flags
);
458 if (info
->users
== NULL
) {
462 /* Fetch the last possible entry, thus trigger an enumeration */
463 pdb_search_entries(info
->users
, 0xffffffff, 1, &entry
);
465 /* Ensure we cache this enumeration. */
466 set_disp_info_cache_timeout(info
, DISP_INFO_CACHE_TIMEOUT
);
468 return info
->users
->num_entries
;
471 static uint32
count_sam_groups(struct disp_info
*info
)
473 struct samr_displayentry
*entry
;
475 if (sid_check_is_builtin(&info
->sid
)) {
476 /* No groups in builtin. */
480 if (info
->groups
== NULL
) {
481 info
->groups
= pdb_search_groups(info
);
482 if (info
->groups
== NULL
) {
486 /* Fetch the last possible entry, thus trigger an enumeration */
487 pdb_search_entries(info
->groups
, 0xffffffff, 1, &entry
);
489 /* Ensure we cache this enumeration. */
490 set_disp_info_cache_timeout(info
, DISP_INFO_CACHE_TIMEOUT
);
492 return info
->groups
->num_entries
;
495 static uint32
count_sam_aliases(struct disp_info
*info
)
497 struct samr_displayentry
*entry
;
499 if (info
->aliases
== NULL
) {
500 info
->aliases
= pdb_search_aliases(info
, &info
->sid
);
501 if (info
->aliases
== NULL
) {
505 /* Fetch the last possible entry, thus trigger an enumeration */
506 pdb_search_entries(info
->aliases
, 0xffffffff, 1, &entry
);
508 /* Ensure we cache this enumeration. */
509 set_disp_info_cache_timeout(info
, DISP_INFO_CACHE_TIMEOUT
);
511 return info
->aliases
->num_entries
;
514 /*******************************************************************
516 ********************************************************************/
518 NTSTATUS
_samr_Close(pipes_struct
*p
, struct samr_Close
*r
)
520 if (!close_policy_hnd(p
, r
->in
.handle
)) {
521 return NT_STATUS_INVALID_HANDLE
;
524 ZERO_STRUCTP(r
->out
.handle
);
529 /*******************************************************************
531 ********************************************************************/
533 NTSTATUS
_samr_OpenDomain(pipes_struct
*p
,
534 struct samr_OpenDomain
*r
)
536 struct samr_connect_info
*cinfo
;
537 struct samr_domain_info
*dinfo
;
538 SEC_DESC
*psd
= NULL
;
540 uint32 des_access
= r
->in
.access_mask
;
543 uint32_t extra_access
= SAMR_DOMAIN_ACCESS_CREATE_USER
;
546 /* find the connection policy handle. */
548 cinfo
= policy_handle_find(p
, r
->in
.connect_handle
, 0, NULL
,
549 struct samr_connect_info
, &status
);
550 if (!NT_STATUS_IS_OK(status
)) {
554 /*check if access can be granted as requested by client. */
555 map_max_allowed_access(p
->server_info
->ptok
,
556 &p
->server_info
->utok
,
559 make_samr_object_sd( p
->mem_ctx
, &psd
, &sd_size
, &dom_generic_mapping
, NULL
, 0 );
560 se_map_generic( &des_access
, &dom_generic_mapping
);
563 * Users with SeMachineAccount or SeAddUser get additional
564 * SAMR_DOMAIN_ACCESS_CREATE_USER access.
566 se_priv_copy( &se_rights
, &se_machine_account
);
567 se_priv_add( &se_rights
, &se_add_users
);
570 * Users with SeAddUser get the ability to manipulate groups
573 if (user_has_any_privilege(p
->server_info
->ptok
, &se_add_users
)) {
574 extra_access
|= (SAMR_DOMAIN_ACCESS_CREATE_GROUP
|
575 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
|
576 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
|
577 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS
|
578 SAMR_DOMAIN_ACCESS_CREATE_ALIAS
);
581 status
= access_check_object( psd
, p
->server_info
->ptok
,
582 &se_rights
, extra_access
, des_access
,
583 &acc_granted
, "_samr_OpenDomain" );
585 if ( !NT_STATUS_IS_OK(status
) )
588 if (!sid_check_is_domain(r
->in
.sid
) &&
589 !sid_check_is_builtin(r
->in
.sid
)) {
590 return NT_STATUS_NO_SUCH_DOMAIN
;
593 dinfo
= policy_handle_create(p
, r
->out
.domain_handle
, acc_granted
,
594 struct samr_domain_info
, &status
);
595 if (!NT_STATUS_IS_OK(status
)) {
598 dinfo
->sid
= *r
->in
.sid
;
599 dinfo
->disp_info
= get_samr_dispinfo_by_sid(r
->in
.sid
);
601 DEBUG(5,("_samr_OpenDomain: %d\n", __LINE__
));
606 /*******************************************************************
608 ********************************************************************/
610 NTSTATUS
_samr_GetUserPwInfo(pipes_struct
*p
,
611 struct samr_GetUserPwInfo
*r
)
613 struct samr_user_info
*uinfo
;
614 enum lsa_SidType sid_type
;
615 uint32_t min_password_length
= 0;
616 uint32_t password_properties
= 0;
620 DEBUG(5,("_samr_GetUserPwInfo: %d\n", __LINE__
));
622 uinfo
= policy_handle_find(p
, r
->in
.user_handle
,
623 SAMR_USER_ACCESS_GET_ATTRIBUTES
, NULL
,
624 struct samr_user_info
, &status
);
625 if (!NT_STATUS_IS_OK(status
)) {
629 if (!sid_check_is_in_our_domain(&uinfo
->sid
)) {
630 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
634 ret
= lookup_sid(p
->mem_ctx
, &uinfo
->sid
, NULL
, NULL
, &sid_type
);
637 return NT_STATUS_NO_SUCH_USER
;
643 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
,
644 &min_password_length
);
645 pdb_get_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
646 &password_properties
);
649 if (lp_check_password_script() && *lp_check_password_script()) {
650 password_properties
|= DOMAIN_PASSWORD_COMPLEX
;
658 r
->out
.info
->min_password_length
= min_password_length
;
659 r
->out
.info
->password_properties
= password_properties
;
661 DEBUG(5,("_samr_GetUserPwInfo: %d\n", __LINE__
));
666 /*******************************************************************
668 ********************************************************************/
670 NTSTATUS
_samr_SetSecurity(pipes_struct
*p
,
671 struct samr_SetSecurity
*r
)
673 struct samr_user_info
*uinfo
;
677 struct samu
*sampass
=NULL
;
680 uinfo
= policy_handle_find(p
, r
->in
.handle
,
681 SAMR_USER_ACCESS_SET_ATTRIBUTES
, NULL
,
682 struct samr_user_info
, &status
);
683 if (!NT_STATUS_IS_OK(status
)) {
687 if (!(sampass
= samu_new( p
->mem_ctx
))) {
688 DEBUG(0,("No memory!\n"));
689 return NT_STATUS_NO_MEMORY
;
692 /* get the user record */
694 ret
= pdb_getsampwsid(sampass
, &uinfo
->sid
);
698 DEBUG(4, ("User %s not found\n",
699 sid_string_dbg(&uinfo
->sid
)));
700 TALLOC_FREE(sampass
);
701 return NT_STATUS_INVALID_HANDLE
;
704 dacl
= r
->in
.sdbuf
->sd
->dacl
;
705 for (i
=0; i
< dacl
->num_aces
; i
++) {
706 if (sid_equal(&uinfo
->sid
, &dacl
->aces
[i
].trustee
)) {
707 ret
= pdb_set_pass_can_change(sampass
,
708 (dacl
->aces
[i
].access_mask
&
709 SAMR_USER_ACCESS_CHANGE_PASSWORD
) ?
716 TALLOC_FREE(sampass
);
717 return NT_STATUS_ACCESS_DENIED
;
721 status
= pdb_update_sam_account(sampass
);
724 TALLOC_FREE(sampass
);
729 /*******************************************************************
730 build correct perms based on policies and password times for _samr_query_sec_obj
731 *******************************************************************/
732 static bool check_change_pw_access(TALLOC_CTX
*mem_ctx
, DOM_SID
*user_sid
)
734 struct samu
*sampass
=NULL
;
737 if ( !(sampass
= samu_new( mem_ctx
)) ) {
738 DEBUG(0,("No memory!\n"));
743 ret
= pdb_getsampwsid(sampass
, user_sid
);
747 DEBUG(4,("User %s not found\n", sid_string_dbg(user_sid
)));
748 TALLOC_FREE(sampass
);
752 DEBUG(3,("User:[%s]\n", pdb_get_username(sampass
) ));
754 if (pdb_get_pass_can_change(sampass
)) {
755 TALLOC_FREE(sampass
);
758 TALLOC_FREE(sampass
);
763 /*******************************************************************
765 ********************************************************************/
767 NTSTATUS
_samr_QuerySecurity(pipes_struct
*p
,
768 struct samr_QuerySecurity
*r
)
770 struct samr_connect_info
*cinfo
;
771 struct samr_domain_info
*dinfo
;
772 struct samr_user_info
*uinfo
;
773 struct samr_group_info
*ginfo
;
774 struct samr_alias_info
*ainfo
;
776 SEC_DESC
* psd
= NULL
;
779 cinfo
= policy_handle_find(p
, r
->in
.handle
,
780 STD_RIGHT_READ_CONTROL_ACCESS
, NULL
,
781 struct samr_connect_info
, &status
);
782 if (NT_STATUS_IS_OK(status
)) {
783 DEBUG(5,("_samr_QuerySecurity: querying security on SAM\n"));
784 status
= make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
,
785 &sam_generic_mapping
, NULL
, 0);
789 dinfo
= policy_handle_find(p
, r
->in
.handle
,
790 STD_RIGHT_READ_CONTROL_ACCESS
, NULL
,
791 struct samr_domain_info
, &status
);
792 if (NT_STATUS_IS_OK(status
)) {
793 DEBUG(5,("_samr_QuerySecurity: querying security on Domain "
794 "with SID: %s\n", sid_string_dbg(&dinfo
->sid
)));
796 * TODO: Builtin probably needs a different SD with restricted
799 status
= make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
,
800 &dom_generic_mapping
, NULL
, 0);
804 uinfo
= policy_handle_find(p
, r
->in
.handle
,
805 STD_RIGHT_READ_CONTROL_ACCESS
, NULL
,
806 struct samr_user_info
, &status
);
807 if (NT_STATUS_IS_OK(status
)) {
808 DEBUG(10,("_samr_QuerySecurity: querying security on user "
809 "Object with SID: %s\n",
810 sid_string_dbg(&uinfo
->sid
)));
811 if (check_change_pw_access(p
->mem_ctx
, &uinfo
->sid
)) {
812 status
= make_samr_object_sd(
813 p
->mem_ctx
, &psd
, &sd_size
,
814 &usr_generic_mapping
,
815 &uinfo
->sid
, SAMR_USR_RIGHTS_WRITE_PW
);
817 status
= make_samr_object_sd(
818 p
->mem_ctx
, &psd
, &sd_size
,
819 &usr_nopwchange_generic_mapping
,
820 &uinfo
->sid
, SAMR_USR_RIGHTS_CANT_WRITE_PW
);
825 ginfo
= policy_handle_find(p
, r
->in
.handle
,
826 STD_RIGHT_READ_CONTROL_ACCESS
, NULL
,
827 struct samr_group_info
, &status
);
828 if (NT_STATUS_IS_OK(status
)) {
830 * TODO: different SDs have to be generated for aliases groups
831 * and users. Currently all three get a default user SD
833 DEBUG(10,("_samr_QuerySecurity: querying security on group "
834 "Object with SID: %s\n",
835 sid_string_dbg(&ginfo
->sid
)));
836 status
= make_samr_object_sd(
837 p
->mem_ctx
, &psd
, &sd_size
,
838 &usr_nopwchange_generic_mapping
,
839 &ginfo
->sid
, SAMR_USR_RIGHTS_CANT_WRITE_PW
);
843 ainfo
= policy_handle_find(p
, r
->in
.handle
,
844 STD_RIGHT_READ_CONTROL_ACCESS
, NULL
,
845 struct samr_alias_info
, &status
);
846 if (NT_STATUS_IS_OK(status
)) {
848 * TODO: different SDs have to be generated for aliases groups
849 * and users. Currently all three get a default user SD
851 DEBUG(10,("_samr_QuerySecurity: querying security on alias "
852 "Object with SID: %s\n",
853 sid_string_dbg(&ainfo
->sid
)));
854 status
= make_samr_object_sd(
855 p
->mem_ctx
, &psd
, &sd_size
,
856 &usr_nopwchange_generic_mapping
,
857 &ainfo
->sid
, SAMR_USR_RIGHTS_CANT_WRITE_PW
);
861 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
863 if ((*r
->out
.sdbuf
= make_sec_desc_buf(p
->mem_ctx
, sd_size
, psd
)) == NULL
)
864 return NT_STATUS_NO_MEMORY
;
869 /*******************************************************************
870 makes a SAM_ENTRY / UNISTR2* structure from a user list.
871 ********************************************************************/
873 static NTSTATUS
make_user_sam_entry_list(TALLOC_CTX
*ctx
,
874 struct samr_SamEntry
**sam_pp
,
875 uint32_t num_entries
,
877 struct samr_displayentry
*entries
)
880 struct samr_SamEntry
*sam
;
884 if (num_entries
== 0) {
888 sam
= TALLOC_ZERO_ARRAY(ctx
, struct samr_SamEntry
, num_entries
);
890 DEBUG(0, ("make_user_sam_entry_list: TALLOC_ZERO failed!\n"));
891 return NT_STATUS_NO_MEMORY
;
894 for (i
= 0; i
< num_entries
; i
++) {
897 * usrmgr expects a non-NULL terminated string with
898 * trust relationships
900 if (entries
[i
].acct_flags
& ACB_DOMTRUST
) {
901 init_unistr2(&uni_temp_name
, entries
[i
].account_name
,
904 init_unistr2(&uni_temp_name
, entries
[i
].account_name
,
908 init_lsa_String(&sam
[i
].name
, entries
[i
].account_name
);
909 sam
[i
].idx
= entries
[i
].rid
;
917 #define MAX_SAM_ENTRIES MAX_SAM_ENTRIES_W2K
919 /*******************************************************************
920 _samr_EnumDomainUsers
921 ********************************************************************/
923 NTSTATUS
_samr_EnumDomainUsers(pipes_struct
*p
,
924 struct samr_EnumDomainUsers
*r
)
927 struct samr_domain_info
*dinfo
;
929 uint32 enum_context
= *r
->in
.resume_handle
;
930 enum remote_arch_types ra_type
= get_remote_arch();
931 int max_sam_entries
= (ra_type
== RA_WIN95
) ? MAX_SAM_ENTRIES_W95
: MAX_SAM_ENTRIES_W2K
;
932 uint32 max_entries
= max_sam_entries
;
933 struct samr_displayentry
*entries
= NULL
;
934 struct samr_SamArray
*samr_array
= NULL
;
935 struct samr_SamEntry
*samr_entries
= NULL
;
937 DEBUG(5,("_samr_EnumDomainUsers: %d\n", __LINE__
));
939 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
940 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
, NULL
,
941 struct samr_domain_info
, &status
);
942 if (!NT_STATUS_IS_OK(status
)) {
946 samr_array
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_SamArray
);
948 return NT_STATUS_NO_MEMORY
;
950 *r
->out
.sam
= samr_array
;
952 if (sid_check_is_builtin(&dinfo
->sid
)) {
953 /* No users in builtin. */
954 *r
->out
.resume_handle
= *r
->in
.resume_handle
;
955 DEBUG(5,("_samr_EnumDomainUsers: No users in BUILTIN\n"));
963 if ((dinfo
->disp_info
->enum_users
!= NULL
) &&
964 (dinfo
->disp_info
->enum_acb_mask
!= r
->in
.acct_flags
)) {
965 TALLOC_FREE(dinfo
->disp_info
->enum_users
);
968 if (dinfo
->disp_info
->enum_users
== NULL
) {
969 dinfo
->disp_info
->enum_users
= pdb_search_users(
970 dinfo
->disp_info
, r
->in
.acct_flags
);
971 dinfo
->disp_info
->enum_acb_mask
= r
->in
.acct_flags
;
974 if (dinfo
->disp_info
->enum_users
== NULL
) {
975 /* END AS ROOT !!!! */
977 return NT_STATUS_ACCESS_DENIED
;
980 num_account
= pdb_search_entries(dinfo
->disp_info
->enum_users
,
981 enum_context
, max_entries
,
984 /* END AS ROOT !!!! */
988 if (num_account
== 0) {
989 DEBUG(5, ("_samr_EnumDomainUsers: enumeration handle over "
991 *r
->out
.resume_handle
= *r
->in
.resume_handle
;
995 status
= make_user_sam_entry_list(p
->mem_ctx
, &samr_entries
,
996 num_account
, enum_context
,
998 if (!NT_STATUS_IS_OK(status
)) {
1002 if (max_entries
<= num_account
) {
1003 status
= STATUS_MORE_ENTRIES
;
1005 status
= NT_STATUS_OK
;
1008 /* Ensure we cache this enumeration. */
1009 set_disp_info_cache_timeout(dinfo
->disp_info
, DISP_INFO_CACHE_TIMEOUT
);
1011 DEBUG(5, ("_samr_EnumDomainUsers: %d\n", __LINE__
));
1013 samr_array
->count
= num_account
;
1014 samr_array
->entries
= samr_entries
;
1016 *r
->out
.resume_handle
= *r
->in
.resume_handle
+ num_account
;
1017 *r
->out
.num_entries
= num_account
;
1019 DEBUG(5,("_samr_EnumDomainUsers: %d\n", __LINE__
));
1024 /*******************************************************************
1025 makes a SAM_ENTRY / UNISTR2* structure from a group list.
1026 ********************************************************************/
1028 static void make_group_sam_entry_list(TALLOC_CTX
*ctx
,
1029 struct samr_SamEntry
**sam_pp
,
1030 uint32_t num_sam_entries
,
1031 struct samr_displayentry
*entries
)
1033 struct samr_SamEntry
*sam
;
1038 if (num_sam_entries
== 0) {
1042 sam
= TALLOC_ZERO_ARRAY(ctx
, struct samr_SamEntry
, num_sam_entries
);
1047 for (i
= 0; i
< num_sam_entries
; i
++) {
1049 * JRA. I think this should include the null. TNG does not.
1051 init_lsa_String(&sam
[i
].name
, entries
[i
].account_name
);
1052 sam
[i
].idx
= entries
[i
].rid
;
1058 /*******************************************************************
1059 _samr_EnumDomainGroups
1060 ********************************************************************/
1062 NTSTATUS
_samr_EnumDomainGroups(pipes_struct
*p
,
1063 struct samr_EnumDomainGroups
*r
)
1066 struct samr_domain_info
*dinfo
;
1067 struct samr_displayentry
*groups
;
1069 struct samr_SamArray
*samr_array
= NULL
;
1070 struct samr_SamEntry
*samr_entries
= NULL
;
1072 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
1073 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
, NULL
,
1074 struct samr_domain_info
, &status
);
1075 if (!NT_STATUS_IS_OK(status
)) {
1079 DEBUG(5,("_samr_EnumDomainGroups: %d\n", __LINE__
));
1081 samr_array
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_SamArray
);
1083 return NT_STATUS_NO_MEMORY
;
1085 *r
->out
.sam
= samr_array
;
1087 if (sid_check_is_builtin(&dinfo
->sid
)) {
1088 /* No groups in builtin. */
1089 *r
->out
.resume_handle
= *r
->in
.resume_handle
;
1090 DEBUG(5,("_samr_EnumDomainGroups: No groups in BUILTIN\n"));
1094 /* the domain group array is being allocated in the function below */
1098 if (dinfo
->disp_info
->groups
== NULL
) {
1099 dinfo
->disp_info
->groups
= pdb_search_groups(dinfo
->disp_info
);
1101 if (dinfo
->disp_info
->groups
== NULL
) {
1103 return NT_STATUS_ACCESS_DENIED
;
1107 num_groups
= pdb_search_entries(dinfo
->disp_info
->groups
,
1108 *r
->in
.resume_handle
,
1109 MAX_SAM_ENTRIES
, &groups
);
1112 /* Ensure we cache this enumeration. */
1113 set_disp_info_cache_timeout(dinfo
->disp_info
, DISP_INFO_CACHE_TIMEOUT
);
1115 make_group_sam_entry_list(p
->mem_ctx
, &samr_entries
,
1116 num_groups
, groups
);
1118 if (MAX_SAM_ENTRIES
<= num_groups
) {
1119 status
= STATUS_MORE_ENTRIES
;
1121 status
= NT_STATUS_OK
;
1124 samr_array
->count
= num_groups
;
1125 samr_array
->entries
= samr_entries
;
1127 *r
->out
.num_entries
= num_groups
;
1128 *r
->out
.resume_handle
= num_groups
+ *r
->in
.resume_handle
;
1130 DEBUG(5,("_samr_EnumDomainGroups: %d\n", __LINE__
));
1135 /*******************************************************************
1136 _samr_EnumDomainAliases
1137 ********************************************************************/
1139 NTSTATUS
_samr_EnumDomainAliases(pipes_struct
*p
,
1140 struct samr_EnumDomainAliases
*r
)
1143 struct samr_domain_info
*dinfo
;
1144 struct samr_displayentry
*aliases
;
1145 uint32 num_aliases
= 0;
1146 struct samr_SamArray
*samr_array
= NULL
;
1147 struct samr_SamEntry
*samr_entries
= NULL
;
1149 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
1150 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
, NULL
,
1151 struct samr_domain_info
, &status
);
1152 if (!NT_STATUS_IS_OK(status
)) {
1156 DEBUG(5,("_samr_EnumDomainAliases: sid %s\n",
1157 sid_string_dbg(&dinfo
->sid
)));
1159 samr_array
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_SamArray
);
1161 return NT_STATUS_NO_MEMORY
;
1166 if (dinfo
->disp_info
->aliases
== NULL
) {
1167 dinfo
->disp_info
->aliases
= pdb_search_aliases(
1168 dinfo
->disp_info
, &dinfo
->sid
);
1169 if (dinfo
->disp_info
->aliases
== NULL
) {
1171 return NT_STATUS_ACCESS_DENIED
;
1175 num_aliases
= pdb_search_entries(dinfo
->disp_info
->aliases
,
1176 *r
->in
.resume_handle
,
1177 MAX_SAM_ENTRIES
, &aliases
);
1180 /* Ensure we cache this enumeration. */
1181 set_disp_info_cache_timeout(dinfo
->disp_info
, DISP_INFO_CACHE_TIMEOUT
);
1183 make_group_sam_entry_list(p
->mem_ctx
, &samr_entries
,
1184 num_aliases
, aliases
);
1186 DEBUG(5,("_samr_EnumDomainAliases: %d\n", __LINE__
));
1188 if (MAX_SAM_ENTRIES
<= num_aliases
) {
1189 status
= STATUS_MORE_ENTRIES
;
1191 status
= NT_STATUS_OK
;
1194 samr_array
->count
= num_aliases
;
1195 samr_array
->entries
= samr_entries
;
1197 *r
->out
.sam
= samr_array
;
1198 *r
->out
.num_entries
= num_aliases
;
1199 *r
->out
.resume_handle
= num_aliases
+ *r
->in
.resume_handle
;
1204 /*******************************************************************
1205 inits a samr_DispInfoGeneral structure.
1206 ********************************************************************/
1208 static NTSTATUS
init_samr_dispinfo_1(TALLOC_CTX
*ctx
,
1209 struct samr_DispInfoGeneral
*r
,
1210 uint32_t num_entries
,
1212 struct samr_displayentry
*entries
)
1216 DEBUG(10, ("init_samr_dispinfo_1: num_entries: %d\n", num_entries
));
1218 if (num_entries
== 0) {
1219 return NT_STATUS_OK
;
1222 r
->count
= num_entries
;
1224 r
->entries
= TALLOC_ZERO_ARRAY(ctx
, struct samr_DispEntryGeneral
, num_entries
);
1226 return NT_STATUS_NO_MEMORY
;
1229 for (i
= 0; i
< num_entries
; i
++) {
1231 init_lsa_String(&r
->entries
[i
].account_name
,
1232 entries
[i
].account_name
);
1234 init_lsa_String(&r
->entries
[i
].description
,
1235 entries
[i
].description
);
1237 init_lsa_String(&r
->entries
[i
].full_name
,
1238 entries
[i
].fullname
);
1240 r
->entries
[i
].rid
= entries
[i
].rid
;
1241 r
->entries
[i
].acct_flags
= entries
[i
].acct_flags
;
1242 r
->entries
[i
].idx
= start_idx
+i
+1;
1245 return NT_STATUS_OK
;
1248 /*******************************************************************
1249 inits a samr_DispInfoFull structure.
1250 ********************************************************************/
1252 static NTSTATUS
init_samr_dispinfo_2(TALLOC_CTX
*ctx
,
1253 struct samr_DispInfoFull
*r
,
1254 uint32_t num_entries
,
1256 struct samr_displayentry
*entries
)
1260 DEBUG(10, ("init_samr_dispinfo_2: num_entries: %d\n", num_entries
));
1262 if (num_entries
== 0) {
1263 return NT_STATUS_OK
;
1266 r
->count
= num_entries
;
1268 r
->entries
= TALLOC_ZERO_ARRAY(ctx
, struct samr_DispEntryFull
, num_entries
);
1270 return NT_STATUS_NO_MEMORY
;
1273 for (i
= 0; i
< num_entries
; i
++) {
1275 init_lsa_String(&r
->entries
[i
].account_name
,
1276 entries
[i
].account_name
);
1278 init_lsa_String(&r
->entries
[i
].description
,
1279 entries
[i
].description
);
1281 r
->entries
[i
].rid
= entries
[i
].rid
;
1282 r
->entries
[i
].acct_flags
= entries
[i
].acct_flags
;
1283 r
->entries
[i
].idx
= start_idx
+i
+1;
1286 return NT_STATUS_OK
;
1289 /*******************************************************************
1290 inits a samr_DispInfoFullGroups structure.
1291 ********************************************************************/
1293 static NTSTATUS
init_samr_dispinfo_3(TALLOC_CTX
*ctx
,
1294 struct samr_DispInfoFullGroups
*r
,
1295 uint32_t num_entries
,
1297 struct samr_displayentry
*entries
)
1301 DEBUG(5, ("init_samr_dispinfo_3: num_entries: %d\n", num_entries
));
1303 if (num_entries
== 0) {
1304 return NT_STATUS_OK
;
1307 r
->count
= num_entries
;
1309 r
->entries
= TALLOC_ZERO_ARRAY(ctx
, struct samr_DispEntryFullGroup
, num_entries
);
1311 return NT_STATUS_NO_MEMORY
;
1314 for (i
= 0; i
< num_entries
; i
++) {
1316 init_lsa_String(&r
->entries
[i
].account_name
,
1317 entries
[i
].account_name
);
1319 init_lsa_String(&r
->entries
[i
].description
,
1320 entries
[i
].description
);
1322 r
->entries
[i
].rid
= entries
[i
].rid
;
1323 r
->entries
[i
].acct_flags
= entries
[i
].acct_flags
;
1324 r
->entries
[i
].idx
= start_idx
+i
+1;
1327 return NT_STATUS_OK
;
1330 /*******************************************************************
1331 inits a samr_DispInfoAscii structure.
1332 ********************************************************************/
1334 static NTSTATUS
init_samr_dispinfo_4(TALLOC_CTX
*ctx
,
1335 struct samr_DispInfoAscii
*r
,
1336 uint32_t num_entries
,
1338 struct samr_displayentry
*entries
)
1342 DEBUG(5, ("init_samr_dispinfo_4: num_entries: %d\n", num_entries
));
1344 if (num_entries
== 0) {
1345 return NT_STATUS_OK
;
1348 r
->count
= num_entries
;
1350 r
->entries
= TALLOC_ZERO_ARRAY(ctx
, struct samr_DispEntryAscii
, num_entries
);
1352 return NT_STATUS_NO_MEMORY
;
1355 for (i
= 0; i
< num_entries
; i
++) {
1357 init_lsa_AsciiStringLarge(&r
->entries
[i
].account_name
,
1358 entries
[i
].account_name
);
1360 r
->entries
[i
].idx
= start_idx
+i
+1;
1363 return NT_STATUS_OK
;
1366 /*******************************************************************
1367 inits a samr_DispInfoAscii structure.
1368 ********************************************************************/
1370 static NTSTATUS
init_samr_dispinfo_5(TALLOC_CTX
*ctx
,
1371 struct samr_DispInfoAscii
*r
,
1372 uint32_t num_entries
,
1374 struct samr_displayentry
*entries
)
1378 DEBUG(5, ("init_samr_dispinfo_5: num_entries: %d\n", num_entries
));
1380 if (num_entries
== 0) {
1381 return NT_STATUS_OK
;
1384 r
->count
= num_entries
;
1386 r
->entries
= TALLOC_ZERO_ARRAY(ctx
, struct samr_DispEntryAscii
, num_entries
);
1388 return NT_STATUS_NO_MEMORY
;
1391 for (i
= 0; i
< num_entries
; i
++) {
1393 init_lsa_AsciiStringLarge(&r
->entries
[i
].account_name
,
1394 entries
[i
].account_name
);
1396 r
->entries
[i
].idx
= start_idx
+i
+1;
1399 return NT_STATUS_OK
;
1402 /*******************************************************************
1403 _samr_QueryDisplayInfo
1404 ********************************************************************/
1406 NTSTATUS
_samr_QueryDisplayInfo(pipes_struct
*p
,
1407 struct samr_QueryDisplayInfo
*r
)
1410 struct samr_domain_info
*dinfo
;
1411 uint32 struct_size
=0x20; /* W2K always reply that, client doesn't care */
1413 uint32 max_entries
= r
->in
.max_entries
;
1415 union samr_DispInfo
*disp_info
= r
->out
.info
;
1418 NTSTATUS disp_ret
= NT_STATUS_UNSUCCESSFUL
;
1419 uint32 num_account
= 0;
1420 enum remote_arch_types ra_type
= get_remote_arch();
1421 int max_sam_entries
= (ra_type
== RA_WIN95
) ? MAX_SAM_ENTRIES_W95
: MAX_SAM_ENTRIES_W2K
;
1422 struct samr_displayentry
*entries
= NULL
;
1424 DEBUG(5,("_samr_QueryDisplayInfo: %d\n", __LINE__
));
1426 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
1427 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
, NULL
,
1428 struct samr_domain_info
, &status
);
1429 if (!NT_STATUS_IS_OK(status
)) {
1433 if (sid_check_is_builtin(&dinfo
->sid
)) {
1434 DEBUG(5,("_samr_QueryDisplayInfo: no users in BUILTIN\n"));
1435 return NT_STATUS_OK
;
1439 * calculate how many entries we will return.
1441 * - the number of entries the client asked
1442 * - our limit on that
1443 * - the starting point (enumeration context)
1444 * - the buffer size the client will accept
1448 * We are a lot more like W2K. Instead of reading the SAM
1449 * each time to find the records we need to send back,
1450 * we read it once and link that copy to the sam handle.
1451 * For large user list (over the MAX_SAM_ENTRIES)
1452 * it's a definitive win.
1453 * second point to notice: between enumerations
1454 * our sam is now the same as it's a snapshoot.
1455 * third point: got rid of the static SAM_USER_21 struct
1456 * no more intermediate.
1457 * con: it uses much more memory, as a full copy is stored
1460 * If you want to change it, think twice and think
1461 * of the second point , that's really important.
1466 if ((r
->in
.level
< 1) || (r
->in
.level
> 5)) {
1467 DEBUG(0,("_samr_QueryDisplayInfo: Unknown info level (%u)\n",
1468 (unsigned int)r
->in
.level
));
1469 return NT_STATUS_INVALID_INFO_CLASS
;
1472 /* first limit the number of entries we will return */
1473 if (r
->in
.max_entries
> max_sam_entries
) {
1474 DEBUG(5, ("_samr_QueryDisplayInfo: client requested %d "
1475 "entries, limiting to %d\n", r
->in
.max_entries
,
1477 max_entries
= max_sam_entries
;
1480 /* calculate the size and limit on the number of entries we will
1483 temp_size
=max_entries
*struct_size
;
1485 if (temp_size
> r
->in
.buf_size
) {
1486 max_entries
= MIN((r
->in
.buf_size
/ struct_size
),max_entries
);;
1487 DEBUG(5, ("_samr_QueryDisplayInfo: buffer size limits to "
1488 "only %d entries\n", max_entries
));
1493 /* THe following done as ROOT. Don't return without unbecome_root(). */
1495 switch (r
->in
.level
) {
1498 if (dinfo
->disp_info
->users
== NULL
) {
1499 dinfo
->disp_info
->users
= pdb_search_users(
1500 dinfo
->disp_info
, ACB_NORMAL
);
1501 if (dinfo
->disp_info
->users
== NULL
) {
1503 return NT_STATUS_ACCESS_DENIED
;
1505 DEBUG(10,("_samr_QueryDisplayInfo: starting user enumeration at index %u\n",
1506 (unsigned int)r
->in
.start_idx
));
1508 DEBUG(10,("_samr_QueryDisplayInfo: using cached user enumeration at index %u\n",
1509 (unsigned int)r
->in
.start_idx
));
1512 num_account
= pdb_search_entries(dinfo
->disp_info
->users
,
1513 r
->in
.start_idx
, max_entries
,
1517 if (dinfo
->disp_info
->machines
== NULL
) {
1518 dinfo
->disp_info
->machines
= pdb_search_users(
1519 dinfo
->disp_info
, ACB_WSTRUST
|ACB_SVRTRUST
);
1520 if (dinfo
->disp_info
->machines
== NULL
) {
1522 return NT_STATUS_ACCESS_DENIED
;
1524 DEBUG(10,("_samr_QueryDisplayInfo: starting machine enumeration at index %u\n",
1525 (unsigned int)r
->in
.start_idx
));
1527 DEBUG(10,("_samr_QueryDisplayInfo: using cached machine enumeration at index %u\n",
1528 (unsigned int)r
->in
.start_idx
));
1531 num_account
= pdb_search_entries(dinfo
->disp_info
->machines
,
1532 r
->in
.start_idx
, max_entries
,
1537 if (dinfo
->disp_info
->groups
== NULL
) {
1538 dinfo
->disp_info
->groups
= pdb_search_groups(
1540 if (dinfo
->disp_info
->groups
== NULL
) {
1542 return NT_STATUS_ACCESS_DENIED
;
1544 DEBUG(10,("_samr_QueryDisplayInfo: starting group enumeration at index %u\n",
1545 (unsigned int)r
->in
.start_idx
));
1547 DEBUG(10,("_samr_QueryDisplayInfo: using cached group enumeration at index %u\n",
1548 (unsigned int)r
->in
.start_idx
));
1551 num_account
= pdb_search_entries(dinfo
->disp_info
->groups
,
1552 r
->in
.start_idx
, max_entries
,
1557 smb_panic("info class changed");
1563 /* Now create reply structure */
1564 switch (r
->in
.level
) {
1566 disp_ret
= init_samr_dispinfo_1(p
->mem_ctx
, &disp_info
->info1
,
1567 num_account
, r
->in
.start_idx
,
1571 disp_ret
= init_samr_dispinfo_2(p
->mem_ctx
, &disp_info
->info2
,
1572 num_account
, r
->in
.start_idx
,
1576 disp_ret
= init_samr_dispinfo_3(p
->mem_ctx
, &disp_info
->info3
,
1577 num_account
, r
->in
.start_idx
,
1581 disp_ret
= init_samr_dispinfo_4(p
->mem_ctx
, &disp_info
->info4
,
1582 num_account
, r
->in
.start_idx
,
1586 disp_ret
= init_samr_dispinfo_5(p
->mem_ctx
, &disp_info
->info5
,
1587 num_account
, r
->in
.start_idx
,
1591 smb_panic("info class changed");
1595 if (!NT_STATUS_IS_OK(disp_ret
))
1598 if (max_entries
<= num_account
) {
1599 status
= STATUS_MORE_ENTRIES
;
1601 status
= NT_STATUS_OK
;
1604 /* Ensure we cache this enumeration. */
1605 set_disp_info_cache_timeout(dinfo
->disp_info
, DISP_INFO_CACHE_TIMEOUT
);
1607 DEBUG(5, ("_samr_QueryDisplayInfo: %d\n", __LINE__
));
1609 *r
->out
.total_size
= num_account
* struct_size
;
1610 *r
->out
.returned_size
= num_account
? temp_size
: 0;
1615 /****************************************************************
1616 _samr_QueryDisplayInfo2
1617 ****************************************************************/
1619 NTSTATUS
_samr_QueryDisplayInfo2(pipes_struct
*p
,
1620 struct samr_QueryDisplayInfo2
*r
)
1622 struct samr_QueryDisplayInfo q
;
1624 q
.in
.domain_handle
= r
->in
.domain_handle
;
1625 q
.in
.level
= r
->in
.level
;
1626 q
.in
.start_idx
= r
->in
.start_idx
;
1627 q
.in
.max_entries
= r
->in
.max_entries
;
1628 q
.in
.buf_size
= r
->in
.buf_size
;
1630 q
.out
.total_size
= r
->out
.total_size
;
1631 q
.out
.returned_size
= r
->out
.returned_size
;
1632 q
.out
.info
= r
->out
.info
;
1634 return _samr_QueryDisplayInfo(p
, &q
);
1637 /****************************************************************
1638 _samr_QueryDisplayInfo3
1639 ****************************************************************/
1641 NTSTATUS
_samr_QueryDisplayInfo3(pipes_struct
*p
,
1642 struct samr_QueryDisplayInfo3
*r
)
1644 struct samr_QueryDisplayInfo q
;
1646 q
.in
.domain_handle
= r
->in
.domain_handle
;
1647 q
.in
.level
= r
->in
.level
;
1648 q
.in
.start_idx
= r
->in
.start_idx
;
1649 q
.in
.max_entries
= r
->in
.max_entries
;
1650 q
.in
.buf_size
= r
->in
.buf_size
;
1652 q
.out
.total_size
= r
->out
.total_size
;
1653 q
.out
.returned_size
= r
->out
.returned_size
;
1654 q
.out
.info
= r
->out
.info
;
1656 return _samr_QueryDisplayInfo(p
, &q
);
1659 /*******************************************************************
1660 _samr_QueryAliasInfo
1661 ********************************************************************/
1663 NTSTATUS
_samr_QueryAliasInfo(pipes_struct
*p
,
1664 struct samr_QueryAliasInfo
*r
)
1666 struct samr_alias_info
*ainfo
;
1667 struct acct_info info
;
1669 union samr_AliasInfo
*alias_info
= NULL
;
1670 const char *alias_name
= NULL
;
1671 const char *alias_description
= NULL
;
1673 DEBUG(5,("_samr_QueryAliasInfo: %d\n", __LINE__
));
1675 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
1676 SAMR_ALIAS_ACCESS_LOOKUP_INFO
, NULL
,
1677 struct samr_alias_info
, &status
);
1678 if (!NT_STATUS_IS_OK(status
)) {
1682 alias_info
= TALLOC_ZERO_P(p
->mem_ctx
, union samr_AliasInfo
);
1684 return NT_STATUS_NO_MEMORY
;
1688 status
= pdb_get_aliasinfo(&ainfo
->sid
, &info
);
1691 if ( !NT_STATUS_IS_OK(status
))
1694 /* FIXME: info contains fstrings */
1695 alias_name
= talloc_strdup(r
, info
.acct_name
);
1696 alias_description
= talloc_strdup(r
, info
.acct_desc
);
1698 switch (r
->in
.level
) {
1700 alias_info
->all
.name
.string
= alias_name
;
1701 alias_info
->all
.num_members
= 1; /* ??? */
1702 alias_info
->all
.description
.string
= alias_description
;
1705 alias_info
->name
.string
= alias_name
;
1707 case ALIASINFODESCRIPTION
:
1708 alias_info
->description
.string
= alias_description
;
1711 return NT_STATUS_INVALID_INFO_CLASS
;
1714 *r
->out
.info
= alias_info
;
1716 DEBUG(5,("_samr_QueryAliasInfo: %d\n", __LINE__
));
1718 return NT_STATUS_OK
;
1721 /*******************************************************************
1723 ********************************************************************/
1725 NTSTATUS
_samr_LookupNames(pipes_struct
*p
,
1726 struct samr_LookupNames
*r
)
1728 struct samr_domain_info
*dinfo
;
1731 enum lsa_SidType
*type
;
1733 int num_rids
= r
->in
.num_names
;
1734 struct samr_Ids rids
, types
;
1735 uint32_t num_mapped
= 0;
1737 DEBUG(5,("_samr_LookupNames: %d\n", __LINE__
));
1739 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
1740 0 /* Don't know the acc_bits yet */, NULL
,
1741 struct samr_domain_info
, &status
);
1742 if (!NT_STATUS_IS_OK(status
)) {
1746 if (num_rids
> MAX_SAM_ENTRIES
) {
1747 num_rids
= MAX_SAM_ENTRIES
;
1748 DEBUG(5,("_samr_LookupNames: truncating entries to %d\n", num_rids
));
1751 rid
= talloc_array(p
->mem_ctx
, uint32
, num_rids
);
1752 NT_STATUS_HAVE_NO_MEMORY(rid
);
1754 type
= talloc_array(p
->mem_ctx
, enum lsa_SidType
, num_rids
);
1755 NT_STATUS_HAVE_NO_MEMORY(type
);
1757 DEBUG(5,("_samr_LookupNames: looking name on SID %s\n",
1758 sid_string_dbg(&dinfo
->sid
)));
1760 for (i
= 0; i
< num_rids
; i
++) {
1762 status
= NT_STATUS_NONE_MAPPED
;
1763 type
[i
] = SID_NAME_UNKNOWN
;
1765 rid
[i
] = 0xffffffff;
1767 if (sid_check_is_builtin(&dinfo
->sid
)) {
1768 if (lookup_builtin_name(r
->in
.names
[i
].string
,
1771 type
[i
] = SID_NAME_ALIAS
;
1774 lookup_global_sam_name(r
->in
.names
[i
].string
, 0,
1778 if (type
[i
] != SID_NAME_UNKNOWN
) {
1783 if (num_mapped
== num_rids
) {
1784 status
= NT_STATUS_OK
;
1785 } else if (num_mapped
== 0) {
1786 status
= NT_STATUS_NONE_MAPPED
;
1788 status
= STATUS_SOME_UNMAPPED
;
1791 rids
.count
= num_rids
;
1794 types
.count
= num_rids
;
1797 *r
->out
.rids
= rids
;
1798 *r
->out
.types
= types
;
1800 DEBUG(5,("_samr_LookupNames: %d\n", __LINE__
));
1805 /****************************************************************
1806 _samr_ChangePasswordUser
1807 ****************************************************************/
1809 NTSTATUS
_samr_ChangePasswordUser(pipes_struct
*p
,
1810 struct samr_ChangePasswordUser
*r
)
1814 struct samr_user_info
*uinfo
;
1816 struct samr_Password new_lmPwdHash
, new_ntPwdHash
, checkHash
;
1817 struct samr_Password lm_pwd
, nt_pwd
;
1819 uinfo
= policy_handle_find(p
, r
->in
.user_handle
,
1820 SAMR_USER_ACCESS_SET_PASSWORD
, NULL
,
1821 struct samr_user_info
, &status
);
1822 if (!NT_STATUS_IS_OK(status
)) {
1826 DEBUG(5,("_samr_ChangePasswordUser: sid:%s\n",
1827 sid_string_dbg(&uinfo
->sid
)));
1829 if (!(pwd
= samu_new(NULL
))) {
1830 return NT_STATUS_NO_MEMORY
;
1834 ret
= pdb_getsampwsid(pwd
, &uinfo
->sid
);
1839 return NT_STATUS_WRONG_PASSWORD
;
1843 const uint8_t *lm_pass
, *nt_pass
;
1845 lm_pass
= pdb_get_lanman_passwd(pwd
);
1846 nt_pass
= pdb_get_nt_passwd(pwd
);
1848 if (!lm_pass
|| !nt_pass
) {
1849 status
= NT_STATUS_WRONG_PASSWORD
;
1853 memcpy(&lm_pwd
.hash
, lm_pass
, sizeof(lm_pwd
.hash
));
1854 memcpy(&nt_pwd
.hash
, nt_pass
, sizeof(nt_pwd
.hash
));
1857 /* basic sanity checking on parameters. Do this before any database ops */
1858 if (!r
->in
.lm_present
|| !r
->in
.nt_present
||
1859 !r
->in
.old_lm_crypted
|| !r
->in
.new_lm_crypted
||
1860 !r
->in
.old_nt_crypted
|| !r
->in
.new_nt_crypted
) {
1861 /* we should really handle a change with lm not
1863 status
= NT_STATUS_INVALID_PARAMETER_MIX
;
1867 /* decrypt and check the new lm hash */
1868 D_P16(lm_pwd
.hash
, r
->in
.new_lm_crypted
->hash
, new_lmPwdHash
.hash
);
1869 D_P16(new_lmPwdHash
.hash
, r
->in
.old_lm_crypted
->hash
, checkHash
.hash
);
1870 if (memcmp(checkHash
.hash
, lm_pwd
.hash
, 16) != 0) {
1871 status
= NT_STATUS_WRONG_PASSWORD
;
1875 /* decrypt and check the new nt hash */
1876 D_P16(nt_pwd
.hash
, r
->in
.new_nt_crypted
->hash
, new_ntPwdHash
.hash
);
1877 D_P16(new_ntPwdHash
.hash
, r
->in
.old_nt_crypted
->hash
, checkHash
.hash
);
1878 if (memcmp(checkHash
.hash
, nt_pwd
.hash
, 16) != 0) {
1879 status
= NT_STATUS_WRONG_PASSWORD
;
1883 /* The NT Cross is not required by Win2k3 R2, but if present
1884 check the nt cross hash */
1885 if (r
->in
.cross1_present
&& r
->in
.nt_cross
) {
1886 D_P16(lm_pwd
.hash
, r
->in
.nt_cross
->hash
, checkHash
.hash
);
1887 if (memcmp(checkHash
.hash
, new_ntPwdHash
.hash
, 16) != 0) {
1888 status
= NT_STATUS_WRONG_PASSWORD
;
1893 /* The LM Cross is not required by Win2k3 R2, but if present
1894 check the lm cross hash */
1895 if (r
->in
.cross2_present
&& r
->in
.lm_cross
) {
1896 D_P16(nt_pwd
.hash
, r
->in
.lm_cross
->hash
, checkHash
.hash
);
1897 if (memcmp(checkHash
.hash
, new_lmPwdHash
.hash
, 16) != 0) {
1898 status
= NT_STATUS_WRONG_PASSWORD
;
1903 if (!pdb_set_nt_passwd(pwd
, new_ntPwdHash
.hash
, PDB_CHANGED
) ||
1904 !pdb_set_lanman_passwd(pwd
, new_lmPwdHash
.hash
, PDB_CHANGED
)) {
1905 status
= NT_STATUS_ACCESS_DENIED
;
1909 status
= pdb_update_sam_account(pwd
);
1916 /*******************************************************************
1917 _samr_ChangePasswordUser2
1918 ********************************************************************/
1920 NTSTATUS
_samr_ChangePasswordUser2(pipes_struct
*p
,
1921 struct samr_ChangePasswordUser2
*r
)
1923 struct smbd_server_connection
*sconn
= smbd_server_conn
;
1928 DEBUG(5,("_samr_ChangePasswordUser2: %d\n", __LINE__
));
1930 fstrcpy(user_name
, r
->in
.account
->string
);
1931 fstrcpy(wks
, r
->in
.server
->string
);
1933 DEBUG(5,("_samr_ChangePasswordUser2: user: %s wks: %s\n", user_name
, wks
));
1936 * Pass the user through the NT -> unix user mapping
1940 (void)map_username(sconn
, user_name
);
1943 * UNIX username case mangling not required, pass_oem_change
1944 * is case insensitive.
1947 status
= pass_oem_change(user_name
,
1948 r
->in
.lm_password
->data
,
1949 r
->in
.lm_verifier
->hash
,
1950 r
->in
.nt_password
->data
,
1951 r
->in
.nt_verifier
->hash
,
1954 DEBUG(5,("_samr_ChangePasswordUser2: %d\n", __LINE__
));
1956 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
1957 return NT_STATUS_WRONG_PASSWORD
;
1963 /****************************************************************
1964 _samr_OemChangePasswordUser2
1965 ****************************************************************/
1967 NTSTATUS
_samr_OemChangePasswordUser2(pipes_struct
*p
,
1968 struct samr_OemChangePasswordUser2
*r
)
1970 struct smbd_server_connection
*sconn
= smbd_server_conn
;
1973 const char *wks
= NULL
;
1975 DEBUG(5,("_samr_OemChangePasswordUser2: %d\n", __LINE__
));
1977 fstrcpy(user_name
, r
->in
.account
->string
);
1978 if (r
->in
.server
&& r
->in
.server
->string
) {
1979 wks
= r
->in
.server
->string
;
1982 DEBUG(5,("_samr_OemChangePasswordUser2: user: %s wks: %s\n", user_name
, wks
));
1985 * Pass the user through the NT -> unix user mapping
1989 (void)map_username(sconn
, user_name
);
1992 * UNIX username case mangling not required, pass_oem_change
1993 * is case insensitive.
1996 if (!r
->in
.hash
|| !r
->in
.password
) {
1997 return NT_STATUS_INVALID_PARAMETER
;
2000 status
= pass_oem_change(user_name
,
2001 r
->in
.password
->data
,
2007 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
2008 return NT_STATUS_WRONG_PASSWORD
;
2011 DEBUG(5,("_samr_OemChangePasswordUser2: %d\n", __LINE__
));
2016 /*******************************************************************
2017 _samr_ChangePasswordUser3
2018 ********************************************************************/
2020 NTSTATUS
_samr_ChangePasswordUser3(pipes_struct
*p
,
2021 struct samr_ChangePasswordUser3
*r
)
2023 struct smbd_server_connection
*sconn
= smbd_server_conn
;
2026 const char *wks
= NULL
;
2027 uint32 reject_reason
;
2028 struct samr_DomInfo1
*dominfo
= NULL
;
2029 struct samr_ChangeReject
*reject
= NULL
;
2032 DEBUG(5,("_samr_ChangePasswordUser3: %d\n", __LINE__
));
2034 fstrcpy(user_name
, r
->in
.account
->string
);
2035 if (r
->in
.server
&& r
->in
.server
->string
) {
2036 wks
= r
->in
.server
->string
;
2039 DEBUG(5,("_samr_ChangePasswordUser3: user: %s wks: %s\n", user_name
, wks
));
2042 * Pass the user through the NT -> unix user mapping
2046 (void)map_username(sconn
, user_name
);
2049 * UNIX username case mangling not required, pass_oem_change
2050 * is case insensitive.
2053 status
= pass_oem_change(user_name
,
2054 r
->in
.lm_password
->data
,
2055 r
->in
.lm_verifier
->hash
,
2056 r
->in
.nt_password
->data
,
2057 r
->in
.nt_verifier
->hash
,
2059 if (NT_STATUS_EQUAL(status
, NT_STATUS_NO_SUCH_USER
)) {
2060 return NT_STATUS_WRONG_PASSWORD
;
2063 if (NT_STATUS_EQUAL(status
, NT_STATUS_PASSWORD_RESTRICTION
) ||
2064 NT_STATUS_EQUAL(status
, NT_STATUS_ACCOUNT_RESTRICTION
)) {
2066 time_t u_expire
, u_min_age
;
2067 uint32 account_policy_temp
;
2069 dominfo
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_DomInfo1
);
2071 return NT_STATUS_NO_MEMORY
;
2074 reject
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_ChangeReject
);
2076 return NT_STATUS_NO_MEMORY
;
2083 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
, &tmp
);
2084 dominfo
->min_password_length
= tmp
;
2086 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY
, &tmp
);
2087 dominfo
->password_history_length
= tmp
;
2089 pdb_get_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
2090 &dominfo
->password_properties
);
2092 pdb_get_account_policy(PDB_POLICY_MAX_PASSWORD_AGE
, &account_policy_temp
);
2093 u_expire
= account_policy_temp
;
2095 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_AGE
, &account_policy_temp
);
2096 u_min_age
= account_policy_temp
;
2102 unix_to_nt_time_abs((NTTIME
*)&dominfo
->max_password_age
, u_expire
);
2103 unix_to_nt_time_abs((NTTIME
*)&dominfo
->min_password_age
, u_min_age
);
2105 if (lp_check_password_script() && *lp_check_password_script()) {
2106 dominfo
->password_properties
|= DOMAIN_PASSWORD_COMPLEX
;
2109 reject
->reason
= reject_reason
;
2111 *r
->out
.dominfo
= dominfo
;
2112 *r
->out
.reject
= reject
;
2115 DEBUG(5,("_samr_ChangePasswordUser3: %d\n", __LINE__
));
2120 /*******************************************************************
2121 makes a SAMR_R_LOOKUP_RIDS structure.
2122 ********************************************************************/
2124 static bool make_samr_lookup_rids(TALLOC_CTX
*ctx
, uint32 num_names
,
2126 struct lsa_String
**lsa_name_array_p
)
2128 struct lsa_String
*lsa_name_array
= NULL
;
2131 *lsa_name_array_p
= NULL
;
2133 if (num_names
!= 0) {
2134 lsa_name_array
= TALLOC_ZERO_ARRAY(ctx
, struct lsa_String
, num_names
);
2135 if (!lsa_name_array
) {
2140 for (i
= 0; i
< num_names
; i
++) {
2141 DEBUG(10, ("names[%d]:%s\n", i
, names
[i
] && *names
[i
] ? names
[i
] : ""));
2142 init_lsa_String(&lsa_name_array
[i
], names
[i
]);
2145 *lsa_name_array_p
= lsa_name_array
;
2150 /*******************************************************************
2152 ********************************************************************/
2154 NTSTATUS
_samr_LookupRids(pipes_struct
*p
,
2155 struct samr_LookupRids
*r
)
2157 struct samr_domain_info
*dinfo
;
2160 enum lsa_SidType
*attrs
= NULL
;
2161 uint32
*wire_attrs
= NULL
;
2162 int num_rids
= (int)r
->in
.num_rids
;
2164 struct lsa_Strings names_array
;
2165 struct samr_Ids types_array
;
2166 struct lsa_String
*lsa_names
= NULL
;
2168 DEBUG(5,("_samr_LookupRids: %d\n", __LINE__
));
2170 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
2171 0 /* Don't know the acc_bits yet */, NULL
,
2172 struct samr_domain_info
, &status
);
2173 if (!NT_STATUS_IS_OK(status
)) {
2177 if (num_rids
> 1000) {
2178 DEBUG(0, ("Got asked for %d rids (more than 1000) -- according "
2179 "to samba4 idl this is not possible\n", num_rids
));
2180 return NT_STATUS_UNSUCCESSFUL
;
2184 names
= TALLOC_ZERO_ARRAY(p
->mem_ctx
, const char *, num_rids
);
2185 attrs
= TALLOC_ZERO_ARRAY(p
->mem_ctx
, enum lsa_SidType
, num_rids
);
2186 wire_attrs
= TALLOC_ZERO_ARRAY(p
->mem_ctx
, uint32
, num_rids
);
2188 if ((names
== NULL
) || (attrs
== NULL
) || (wire_attrs
==NULL
))
2189 return NT_STATUS_NO_MEMORY
;
2196 become_root(); /* lookup_sid can require root privs */
2197 status
= pdb_lookup_rids(&dinfo
->sid
, num_rids
, r
->in
.rids
,
2201 if (NT_STATUS_EQUAL(status
, NT_STATUS_NONE_MAPPED
) && (num_rids
== 0)) {
2202 status
= NT_STATUS_OK
;
2205 if (!make_samr_lookup_rids(p
->mem_ctx
, num_rids
, names
,
2207 return NT_STATUS_NO_MEMORY
;
2210 /* Convert from enum lsa_SidType to uint32 for wire format. */
2211 for (i
= 0; i
< num_rids
; i
++) {
2212 wire_attrs
[i
] = (uint32
)attrs
[i
];
2215 names_array
.count
= num_rids
;
2216 names_array
.names
= lsa_names
;
2218 types_array
.count
= num_rids
;
2219 types_array
.ids
= wire_attrs
;
2221 *r
->out
.names
= names_array
;
2222 *r
->out
.types
= types_array
;
2224 DEBUG(5,("_samr_LookupRids: %d\n", __LINE__
));
2229 /*******************************************************************
2231 ********************************************************************/
2233 NTSTATUS
_samr_OpenUser(pipes_struct
*p
,
2234 struct samr_OpenUser
*r
)
2236 struct samu
*sampass
=NULL
;
2238 struct samr_domain_info
*dinfo
;
2239 struct samr_user_info
*uinfo
;
2240 SEC_DESC
*psd
= NULL
;
2242 uint32 des_access
= r
->in
.access_mask
;
2243 uint32_t extra_access
= 0;
2250 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
2251 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
, NULL
,
2252 struct samr_domain_info
, &status
);
2253 if (!NT_STATUS_IS_OK(status
)) {
2257 if ( !(sampass
= samu_new( p
->mem_ctx
)) ) {
2258 return NT_STATUS_NO_MEMORY
;
2261 /* append the user's RID to it */
2263 if (!sid_compose(&sid
, &dinfo
->sid
, r
->in
.rid
))
2264 return NT_STATUS_NO_SUCH_USER
;
2266 /* check if access can be granted as requested by client. */
2267 map_max_allowed_access(p
->server_info
->ptok
,
2268 &p
->server_info
->utok
,
2271 make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
, &usr_generic_mapping
, &sid
, SAMR_USR_RIGHTS_WRITE_PW
);
2272 se_map_generic(&des_access
, &usr_generic_mapping
);
2275 * Get the sampass first as we need to check privileges
2276 * based on what kind of user object this is.
2277 * But don't reveal info too early if it didn't exist.
2281 ret
=pdb_getsampwsid(sampass
, &sid
);
2284 se_priv_copy(&se_rights
, &se_priv_none
);
2287 * We do the override access checks on *open*, not at
2291 uint32_t acb_info
= pdb_get_acct_ctrl(sampass
);
2293 if ((acb_info
& ACB_WSTRUST
) &&
2294 user_has_any_privilege(p
->server_info
->ptok
,
2295 &se_machine_account
)) {
2297 * SeMachineAccount is needed to add
2298 * GENERIC_RIGHTS_USER_WRITE to a machine
2301 se_priv_add(&se_rights
, &se_machine_account
);
2302 DEBUG(10,("_samr_OpenUser: adding machine account "
2303 "rights to handle for user %s\n",
2304 pdb_get_username(sampass
) ));
2306 if ((acb_info
& ACB_NORMAL
) &&
2307 user_has_any_privilege(p
->server_info
->ptok
,
2310 * SeAddUsers is needed to add
2311 * GENERIC_RIGHTS_USER_WRITE to a normal
2314 se_priv_add(&se_rights
, &se_add_users
);
2315 DEBUG(10,("_samr_OpenUser: adding add user "
2316 "rights to handle for user %s\n",
2317 pdb_get_username(sampass
) ));
2320 * Cheat - allow GENERIC_RIGHTS_USER_WRITE if pipe user is
2321 * in DOMAIN_GROUP_RID_ADMINS. This is almost certainly not
2322 * what Windows does but is a hack for people who haven't
2323 * set up privileges on groups in Samba.
2325 if (acb_info
& (ACB_SVRTRUST
|ACB_DOMTRUST
)) {
2326 if (lp_enable_privileges() && nt_token_check_domain_rid(p
->server_info
->ptok
,
2327 DOMAIN_GROUP_RID_ADMINS
)) {
2328 des_access
&= ~GENERIC_RIGHTS_USER_WRITE
;
2329 extra_access
= GENERIC_RIGHTS_USER_WRITE
;
2330 DEBUG(4,("_samr_OpenUser: Allowing "
2331 "GENERIC_RIGHTS_USER_WRITE for "
2337 TALLOC_FREE(sampass
);
2339 nt_status
= access_check_object(psd
, p
->server_info
->ptok
,
2340 &se_rights
, GENERIC_RIGHTS_USER_WRITE
, des_access
,
2341 &acc_granted
, "_samr_OpenUser");
2343 if ( !NT_STATUS_IS_OK(nt_status
) )
2346 /* check that the SID exists in our domain. */
2348 return NT_STATUS_NO_SUCH_USER
;
2351 /* If we did the rid admins hack above, allow access. */
2352 acc_granted
|= extra_access
;
2354 uinfo
= policy_handle_create(p
, r
->out
.user_handle
, acc_granted
,
2355 struct samr_user_info
, &nt_status
);
2356 if (!NT_STATUS_IS_OK(nt_status
)) {
2361 return NT_STATUS_OK
;
2364 /*************************************************************************
2365 *************************************************************************/
2367 static NTSTATUS
init_samr_parameters_string(TALLOC_CTX
*mem_ctx
,
2369 struct lsa_BinaryString
**_r
)
2371 struct lsa_BinaryString
*r
;
2374 return NT_STATUS_INVALID_PARAMETER
;
2377 r
= TALLOC_ZERO_P(mem_ctx
, struct lsa_BinaryString
);
2379 return NT_STATUS_NO_MEMORY
;
2382 r
->array
= TALLOC_ZERO_ARRAY(mem_ctx
, uint16_t, blob
->length
/2);
2384 return NT_STATUS_NO_MEMORY
;
2386 memcpy(r
->array
, blob
->data
, blob
->length
);
2387 r
->size
= blob
->length
;
2388 r
->length
= blob
->length
;
2391 return NT_STATUS_NO_MEMORY
;
2396 return NT_STATUS_OK
;
2399 /*************************************************************************
2401 *************************************************************************/
2403 static NTSTATUS
get_user_info_1(TALLOC_CTX
*mem_ctx
,
2404 struct samr_UserInfo1
*r
,
2406 DOM_SID
*domain_sid
)
2408 const DOM_SID
*sid_group
;
2409 uint32_t primary_gid
;
2412 sid_group
= pdb_get_group_sid(pw
);
2415 if (!sid_peek_check_rid(domain_sid
, sid_group
, &primary_gid
)) {
2416 DEBUG(0, ("get_user_info_1: User %s has Primary Group SID %s, \n"
2417 "which conflicts with the domain sid %s. Failing operation.\n",
2418 pdb_get_username(pw
), sid_string_dbg(sid_group
),
2419 sid_string_dbg(domain_sid
)));
2420 return NT_STATUS_UNSUCCESSFUL
;
2423 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(pw
));
2424 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2425 r
->primary_gid
= primary_gid
;
2426 r
->description
.string
= talloc_strdup(mem_ctx
, pdb_get_acct_desc(pw
));
2427 r
->comment
.string
= talloc_strdup(mem_ctx
, pdb_get_comment(pw
));
2429 return NT_STATUS_OK
;
2432 /*************************************************************************
2434 *************************************************************************/
2436 static NTSTATUS
get_user_info_2(TALLOC_CTX
*mem_ctx
,
2437 struct samr_UserInfo2
*r
,
2440 r
->comment
.string
= talloc_strdup(mem_ctx
, pdb_get_comment(pw
));
2441 r
->unknown
.string
= NULL
;
2442 r
->country_code
= 0;
2445 return NT_STATUS_OK
;
2448 /*************************************************************************
2450 *************************************************************************/
2452 static NTSTATUS
get_user_info_3(TALLOC_CTX
*mem_ctx
,
2453 struct samr_UserInfo3
*r
,
2455 DOM_SID
*domain_sid
)
2457 const DOM_SID
*sid_user
, *sid_group
;
2458 uint32_t rid
, primary_gid
;
2460 sid_user
= pdb_get_user_sid(pw
);
2462 if (!sid_peek_check_rid(domain_sid
, sid_user
, &rid
)) {
2463 DEBUG(0, ("get_user_info_3: User %s has SID %s, \nwhich conflicts with "
2464 "the domain sid %s. Failing operation.\n",
2465 pdb_get_username(pw
), sid_string_dbg(sid_user
),
2466 sid_string_dbg(domain_sid
)));
2467 return NT_STATUS_UNSUCCESSFUL
;
2471 sid_group
= pdb_get_group_sid(pw
);
2474 if (!sid_peek_check_rid(domain_sid
, sid_group
, &primary_gid
)) {
2475 DEBUG(0, ("get_user_info_3: User %s has Primary Group SID %s, \n"
2476 "which conflicts with the domain sid %s. Failing operation.\n",
2477 pdb_get_username(pw
), sid_string_dbg(sid_group
),
2478 sid_string_dbg(domain_sid
)));
2479 return NT_STATUS_UNSUCCESSFUL
;
2482 unix_to_nt_time(&r
->last_logon
, pdb_get_logon_time(pw
));
2483 unix_to_nt_time(&r
->last_logoff
, pdb_get_logoff_time(pw
));
2484 unix_to_nt_time(&r
->last_password_change
, pdb_get_pass_last_set_time(pw
));
2485 unix_to_nt_time(&r
->allow_password_change
, pdb_get_pass_can_change_time(pw
));
2486 unix_to_nt_time(&r
->force_password_change
, pdb_get_pass_must_change_time(pw
));
2488 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(pw
));
2489 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2490 r
->home_directory
.string
= talloc_strdup(mem_ctx
, pdb_get_homedir(pw
));
2491 r
->home_drive
.string
= talloc_strdup(mem_ctx
, pdb_get_dir_drive(pw
));
2492 r
->logon_script
.string
= talloc_strdup(mem_ctx
, pdb_get_logon_script(pw
));
2493 r
->profile_path
.string
= talloc_strdup(mem_ctx
, pdb_get_profile_path(pw
));
2494 r
->workstations
.string
= talloc_strdup(mem_ctx
, pdb_get_workstations(pw
));
2496 r
->logon_hours
= get_logon_hours_from_pdb(mem_ctx
, pw
);
2498 r
->primary_gid
= primary_gid
;
2499 r
->acct_flags
= pdb_get_acct_ctrl(pw
);
2500 r
->bad_password_count
= pdb_get_bad_password_count(pw
);
2501 r
->logon_count
= pdb_get_logon_count(pw
);
2503 return NT_STATUS_OK
;
2506 /*************************************************************************
2508 *************************************************************************/
2510 static NTSTATUS
get_user_info_4(TALLOC_CTX
*mem_ctx
,
2511 struct samr_UserInfo4
*r
,
2514 r
->logon_hours
= get_logon_hours_from_pdb(mem_ctx
, pw
);
2516 return NT_STATUS_OK
;
2519 /*************************************************************************
2521 *************************************************************************/
2523 static NTSTATUS
get_user_info_5(TALLOC_CTX
*mem_ctx
,
2524 struct samr_UserInfo5
*r
,
2526 DOM_SID
*domain_sid
)
2528 const DOM_SID
*sid_user
, *sid_group
;
2529 uint32_t rid
, primary_gid
;
2531 sid_user
= pdb_get_user_sid(pw
);
2533 if (!sid_peek_check_rid(domain_sid
, sid_user
, &rid
)) {
2534 DEBUG(0, ("get_user_info_5: User %s has SID %s, \nwhich conflicts with "
2535 "the domain sid %s. Failing operation.\n",
2536 pdb_get_username(pw
), sid_string_dbg(sid_user
),
2537 sid_string_dbg(domain_sid
)));
2538 return NT_STATUS_UNSUCCESSFUL
;
2542 sid_group
= pdb_get_group_sid(pw
);
2545 if (!sid_peek_check_rid(domain_sid
, sid_group
, &primary_gid
)) {
2546 DEBUG(0, ("get_user_info_5: User %s has Primary Group SID %s, \n"
2547 "which conflicts with the domain sid %s. Failing operation.\n",
2548 pdb_get_username(pw
), sid_string_dbg(sid_group
),
2549 sid_string_dbg(domain_sid
)));
2550 return NT_STATUS_UNSUCCESSFUL
;
2553 unix_to_nt_time(&r
->last_logon
, pdb_get_logon_time(pw
));
2554 unix_to_nt_time(&r
->last_logoff
, pdb_get_logoff_time(pw
));
2555 unix_to_nt_time(&r
->acct_expiry
, pdb_get_kickoff_time(pw
));
2556 unix_to_nt_time(&r
->last_password_change
, pdb_get_pass_last_set_time(pw
));
2558 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(pw
));
2559 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2560 r
->home_directory
.string
= talloc_strdup(mem_ctx
, pdb_get_homedir(pw
));
2561 r
->home_drive
.string
= talloc_strdup(mem_ctx
, pdb_get_dir_drive(pw
));
2562 r
->logon_script
.string
= talloc_strdup(mem_ctx
, pdb_get_logon_script(pw
));
2563 r
->profile_path
.string
= talloc_strdup(mem_ctx
, pdb_get_profile_path(pw
));
2564 r
->description
.string
= talloc_strdup(mem_ctx
, pdb_get_acct_desc(pw
));
2565 r
->workstations
.string
= talloc_strdup(mem_ctx
, pdb_get_workstations(pw
));
2567 r
->logon_hours
= get_logon_hours_from_pdb(mem_ctx
, pw
);
2569 r
->primary_gid
= primary_gid
;
2570 r
->acct_flags
= pdb_get_acct_ctrl(pw
);
2571 r
->bad_password_count
= pdb_get_bad_password_count(pw
);
2572 r
->logon_count
= pdb_get_logon_count(pw
);
2574 return NT_STATUS_OK
;
2577 /*************************************************************************
2579 *************************************************************************/
2581 static NTSTATUS
get_user_info_6(TALLOC_CTX
*mem_ctx
,
2582 struct samr_UserInfo6
*r
,
2585 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(pw
));
2586 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2588 return NT_STATUS_OK
;
2591 /*************************************************************************
2592 get_user_info_7. Safe. Only gives out account_name.
2593 *************************************************************************/
2595 static NTSTATUS
get_user_info_7(TALLOC_CTX
*mem_ctx
,
2596 struct samr_UserInfo7
*r
,
2597 struct samu
*smbpass
)
2599 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(smbpass
));
2600 if (!r
->account_name
.string
) {
2601 return NT_STATUS_NO_MEMORY
;
2604 return NT_STATUS_OK
;
2607 /*************************************************************************
2609 *************************************************************************/
2611 static NTSTATUS
get_user_info_8(TALLOC_CTX
*mem_ctx
,
2612 struct samr_UserInfo8
*r
,
2615 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2617 return NT_STATUS_OK
;
2620 /*************************************************************************
2621 get_user_info_9. Only gives out primary group SID.
2622 *************************************************************************/
2624 static NTSTATUS
get_user_info_9(TALLOC_CTX
*mem_ctx
,
2625 struct samr_UserInfo9
*r
,
2626 struct samu
*smbpass
)
2628 r
->primary_gid
= pdb_get_group_rid(smbpass
);
2630 return NT_STATUS_OK
;
2633 /*************************************************************************
2635 *************************************************************************/
2637 static NTSTATUS
get_user_info_10(TALLOC_CTX
*mem_ctx
,
2638 struct samr_UserInfo10
*r
,
2641 r
->home_directory
.string
= talloc_strdup(mem_ctx
, pdb_get_homedir(pw
));
2642 r
->home_drive
.string
= talloc_strdup(mem_ctx
, pdb_get_dir_drive(pw
));
2644 return NT_STATUS_OK
;
2647 /*************************************************************************
2649 *************************************************************************/
2651 static NTSTATUS
get_user_info_11(TALLOC_CTX
*mem_ctx
,
2652 struct samr_UserInfo11
*r
,
2655 r
->logon_script
.string
= talloc_strdup(mem_ctx
, pdb_get_logon_script(pw
));
2657 return NT_STATUS_OK
;
2660 /*************************************************************************
2662 *************************************************************************/
2664 static NTSTATUS
get_user_info_12(TALLOC_CTX
*mem_ctx
,
2665 struct samr_UserInfo12
*r
,
2668 r
->profile_path
.string
= talloc_strdup(mem_ctx
, pdb_get_profile_path(pw
));
2670 return NT_STATUS_OK
;
2673 /*************************************************************************
2675 *************************************************************************/
2677 static NTSTATUS
get_user_info_13(TALLOC_CTX
*mem_ctx
,
2678 struct samr_UserInfo13
*r
,
2681 r
->description
.string
= talloc_strdup(mem_ctx
, pdb_get_acct_desc(pw
));
2683 return NT_STATUS_OK
;
2686 /*************************************************************************
2688 *************************************************************************/
2690 static NTSTATUS
get_user_info_14(TALLOC_CTX
*mem_ctx
,
2691 struct samr_UserInfo14
*r
,
2694 r
->workstations
.string
= talloc_strdup(mem_ctx
, pdb_get_workstations(pw
));
2696 return NT_STATUS_OK
;
2699 /*************************************************************************
2700 get_user_info_16. Safe. Only gives out acb bits.
2701 *************************************************************************/
2703 static NTSTATUS
get_user_info_16(TALLOC_CTX
*mem_ctx
,
2704 struct samr_UserInfo16
*r
,
2705 struct samu
*smbpass
)
2707 r
->acct_flags
= pdb_get_acct_ctrl(smbpass
);
2709 return NT_STATUS_OK
;
2712 /*************************************************************************
2714 *************************************************************************/
2716 static NTSTATUS
get_user_info_17(TALLOC_CTX
*mem_ctx
,
2717 struct samr_UserInfo17
*r
,
2720 unix_to_nt_time(&r
->acct_expiry
, pdb_get_kickoff_time(pw
));
2722 return NT_STATUS_OK
;
2725 /*************************************************************************
2726 get_user_info_18. OK - this is the killer as it gives out password info.
2727 Ensure that this is only allowed on an encrypted connection with a root
2729 *************************************************************************/
2731 static NTSTATUS
get_user_info_18(pipes_struct
*p
,
2732 TALLOC_CTX
*mem_ctx
,
2733 struct samr_UserInfo18
*r
,
2736 struct samu
*smbpass
=NULL
;
2738 const uint8_t *nt_pass
= NULL
;
2739 const uint8_t *lm_pass
= NULL
;
2743 if (p
->auth
.auth_type
!= PIPE_AUTH_TYPE_NTLMSSP
|| p
->auth
.auth_type
!= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
) {
2744 return NT_STATUS_ACCESS_DENIED
;
2747 if (p
->auth
.auth_level
!= DCERPC_AUTH_LEVEL_PRIVACY
) {
2748 return NT_STATUS_ACCESS_DENIED
;
2752 * Do *NOT* do become_root()/unbecome_root() here ! JRA.
2755 if ( !(smbpass
= samu_new( mem_ctx
)) ) {
2756 return NT_STATUS_NO_MEMORY
;
2759 ret
= pdb_getsampwsid(smbpass
, user_sid
);
2762 DEBUG(4, ("User %s not found\n", sid_string_dbg(user_sid
)));
2763 TALLOC_FREE(smbpass
);
2764 return (geteuid() == sec_initial_uid()) ? NT_STATUS_NO_SUCH_USER
: NT_STATUS_ACCESS_DENIED
;
2767 DEBUG(3,("User:[%s] 0x%x\n", pdb_get_username(smbpass
), pdb_get_acct_ctrl(smbpass
) ));
2769 if ( pdb_get_acct_ctrl(smbpass
) & ACB_DISABLED
) {
2770 TALLOC_FREE(smbpass
);
2771 return NT_STATUS_ACCOUNT_DISABLED
;
2774 lm_pass
= pdb_get_lanman_passwd(smbpass
);
2775 if (lm_pass
!= NULL
) {
2776 memcpy(r
->lm_pwd
.hash
, lm_pass
, 16);
2777 r
->lm_pwd_active
= true;
2780 nt_pass
= pdb_get_nt_passwd(smbpass
);
2781 if (nt_pass
!= NULL
) {
2782 memcpy(r
->nt_pwd
.hash
, nt_pass
, 16);
2783 r
->nt_pwd_active
= true;
2785 r
->password_expired
= 0; /* FIXME */
2787 TALLOC_FREE(smbpass
);
2789 return NT_STATUS_OK
;
2792 /*************************************************************************
2794 *************************************************************************/
2796 static NTSTATUS
get_user_info_20(TALLOC_CTX
*mem_ctx
,
2797 struct samr_UserInfo20
*r
,
2798 struct samu
*sampass
)
2800 const char *munged_dial
= NULL
;
2803 struct lsa_BinaryString
*parameters
= NULL
;
2807 munged_dial
= pdb_get_munged_dial(sampass
);
2809 DEBUG(3,("User:[%s] has [%s] (length: %d)\n", pdb_get_username(sampass
),
2810 munged_dial
, (int)strlen(munged_dial
)));
2813 blob
= base64_decode_data_blob(munged_dial
);
2815 blob
= data_blob_string_const_null("");
2818 status
= init_samr_parameters_string(mem_ctx
, &blob
, ¶meters
);
2819 data_blob_free(&blob
);
2820 if (!NT_STATUS_IS_OK(status
)) {
2824 r
->parameters
= *parameters
;
2826 return NT_STATUS_OK
;
2830 /*************************************************************************
2832 *************************************************************************/
2834 static NTSTATUS
get_user_info_21(TALLOC_CTX
*mem_ctx
,
2835 struct samr_UserInfo21
*r
,
2837 DOM_SID
*domain_sid
,
2838 uint32_t acc_granted
)
2841 const DOM_SID
*sid_user
, *sid_group
;
2842 uint32_t rid
, primary_gid
;
2843 NTTIME force_password_change
;
2844 time_t must_change_time
;
2845 struct lsa_BinaryString
*parameters
= NULL
;
2846 const char *munged_dial
= NULL
;
2851 sid_user
= pdb_get_user_sid(pw
);
2853 if (!sid_peek_check_rid(domain_sid
, sid_user
, &rid
)) {
2854 DEBUG(0, ("get_user_info_21: User %s has SID %s, \nwhich conflicts with "
2855 "the domain sid %s. Failing operation.\n",
2856 pdb_get_username(pw
), sid_string_dbg(sid_user
),
2857 sid_string_dbg(domain_sid
)));
2858 return NT_STATUS_UNSUCCESSFUL
;
2862 sid_group
= pdb_get_group_sid(pw
);
2865 if (!sid_peek_check_rid(domain_sid
, sid_group
, &primary_gid
)) {
2866 DEBUG(0, ("get_user_info_21: User %s has Primary Group SID %s, \n"
2867 "which conflicts with the domain sid %s. Failing operation.\n",
2868 pdb_get_username(pw
), sid_string_dbg(sid_group
),
2869 sid_string_dbg(domain_sid
)));
2870 return NT_STATUS_UNSUCCESSFUL
;
2873 unix_to_nt_time(&r
->last_logon
, pdb_get_logon_time(pw
));
2874 unix_to_nt_time(&r
->last_logoff
, pdb_get_logoff_time(pw
));
2875 unix_to_nt_time(&r
->acct_expiry
, pdb_get_kickoff_time(pw
));
2876 unix_to_nt_time(&r
->last_password_change
, pdb_get_pass_last_set_time(pw
));
2877 unix_to_nt_time(&r
->allow_password_change
, pdb_get_pass_can_change_time(pw
));
2879 must_change_time
= pdb_get_pass_must_change_time(pw
);
2880 if (pdb_is_password_change_time_max(must_change_time
)) {
2881 unix_to_nt_time_abs(&force_password_change
, must_change_time
);
2883 unix_to_nt_time(&force_password_change
, must_change_time
);
2886 munged_dial
= pdb_get_munged_dial(pw
);
2888 blob
= base64_decode_data_blob(munged_dial
);
2890 blob
= data_blob_string_const_null("");
2893 status
= init_samr_parameters_string(mem_ctx
, &blob
, ¶meters
);
2894 data_blob_free(&blob
);
2895 if (!NT_STATUS_IS_OK(status
)) {
2899 r
->force_password_change
= force_password_change
;
2901 r
->account_name
.string
= talloc_strdup(mem_ctx
, pdb_get_username(pw
));
2902 r
->full_name
.string
= talloc_strdup(mem_ctx
, pdb_get_fullname(pw
));
2903 r
->home_directory
.string
= talloc_strdup(mem_ctx
, pdb_get_homedir(pw
));
2904 r
->home_drive
.string
= talloc_strdup(mem_ctx
, pdb_get_dir_drive(pw
));
2905 r
->logon_script
.string
= talloc_strdup(mem_ctx
, pdb_get_logon_script(pw
));
2906 r
->profile_path
.string
= talloc_strdup(mem_ctx
, pdb_get_profile_path(pw
));
2907 r
->description
.string
= talloc_strdup(mem_ctx
, pdb_get_acct_desc(pw
));
2908 r
->workstations
.string
= talloc_strdup(mem_ctx
, pdb_get_workstations(pw
));
2909 r
->comment
.string
= talloc_strdup(mem_ctx
, pdb_get_comment(pw
));
2911 r
->logon_hours
= get_logon_hours_from_pdb(mem_ctx
, pw
);
2912 r
->parameters
= *parameters
;
2914 r
->primary_gid
= primary_gid
;
2915 r
->acct_flags
= pdb_get_acct_ctrl(pw
);
2916 r
->bad_password_count
= pdb_get_bad_password_count(pw
);
2917 r
->logon_count
= pdb_get_logon_count(pw
);
2918 r
->fields_present
= pdb_build_fields_present(pw
);
2919 r
->password_expired
= (pdb_get_pass_must_change_time(pw
) == 0) ?
2920 PASS_MUST_CHANGE_AT_NEXT_LOGON
: 0;
2921 r
->country_code
= 0;
2923 r
->lm_password_set
= 0;
2924 r
->nt_password_set
= 0;
2929 Look at a user on a real NT4 PDC with usrmgr, press
2930 'ok'. Then you will see that fields_present is set to
2931 0x08f827fa. Look at the user immediately after that again,
2932 and you will see that 0x00fffff is returned. This solves
2933 the problem that you get access denied after having looked
2941 return NT_STATUS_OK
;
2944 /*******************************************************************
2946 ********************************************************************/
2948 NTSTATUS
_samr_QueryUserInfo(pipes_struct
*p
,
2949 struct samr_QueryUserInfo
*r
)
2952 union samr_UserInfo
*user_info
= NULL
;
2953 struct samr_user_info
*uinfo
;
2957 struct samu
*pwd
= NULL
;
2958 uint32_t acc_required
, acc_granted
;
2960 switch (r
->in
.level
) {
2961 case 1: /* UserGeneralInformation */
2962 /* USER_READ_GENERAL */
2963 acc_required
= SAMR_USER_ACCESS_GET_NAME_ETC
;
2965 case 2: /* UserPreferencesInformation */
2966 /* USER_READ_PREFERENCES | USER_READ_GENERAL */
2967 acc_required
= SAMR_USER_ACCESS_GET_LOCALE
|
2968 SAMR_USER_ACCESS_GET_NAME_ETC
;
2970 case 3: /* UserLogonInformation */
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 4: /* UserLogonHoursInformation */
2978 /* USER_READ_LOGON */
2979 acc_required
= SAMR_USER_ACCESS_GET_LOGONINFO
;
2981 case 5: /* UserAccountInformation */
2982 /* USER_READ_GENERAL | USER_READ_PREFERENCES | USER_READ_LOGON | USER_READ_ACCOUNT */
2983 acc_required
= SAMR_USER_ACCESS_GET_NAME_ETC
|
2984 SAMR_USER_ACCESS_GET_LOCALE
|
2985 SAMR_USER_ACCESS_GET_LOGONINFO
|
2986 SAMR_USER_ACCESS_GET_ATTRIBUTES
;
2988 case 6: /* UserNameInformation */
2989 case 7: /* UserAccountNameInformation */
2990 case 8: /* UserFullNameInformation */
2991 case 9: /* UserPrimaryGroupInformation */
2992 case 13: /* UserAdminCommentInformation */
2993 /* USER_READ_GENERAL */
2994 acc_required
= SAMR_USER_ACCESS_GET_NAME_ETC
;
2996 case 10: /* UserHomeInformation */
2997 case 11: /* UserScriptInformation */
2998 case 12: /* UserProfileInformation */
2999 case 14: /* UserWorkStationsInformation */
3000 /* USER_READ_LOGON */
3001 acc_required
= SAMR_USER_ACCESS_GET_LOGONINFO
;
3003 case 16: /* UserControlInformation */
3004 case 17: /* UserExpiresInformation */
3005 case 20: /* UserParametersInformation */
3006 /* USER_READ_ACCOUNT */
3007 acc_required
= SAMR_USER_ACCESS_GET_ATTRIBUTES
;
3009 case 21: /* UserAllInformation */
3011 acc_required
= SAMR_USER_ACCESS_GET_ATTRIBUTES
;
3013 case 18: /* UserInternal1Information */
3015 acc_required
= SAMR_USER_ACCESS_GET_ATTRIBUTES
;
3017 case 23: /* UserInternal4Information */
3018 case 24: /* UserInternal4InformationNew */
3019 case 25: /* UserInternal4InformationNew */
3020 case 26: /* UserInternal5InformationNew */
3022 return NT_STATUS_INVALID_INFO_CLASS
;
3026 uinfo
= policy_handle_find(p
, r
->in
.user_handle
,
3027 acc_required
, &acc_granted
,
3028 struct samr_user_info
, &status
);
3029 if (!NT_STATUS_IS_OK(status
)) {
3033 domain_sid
= uinfo
->sid
;
3035 sid_split_rid(&domain_sid
, &rid
);
3037 if (!sid_check_is_in_our_domain(&uinfo
->sid
))
3038 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
3040 DEBUG(5,("_samr_QueryUserInfo: sid:%s\n",
3041 sid_string_dbg(&uinfo
->sid
)));
3043 user_info
= TALLOC_ZERO_P(p
->mem_ctx
, union samr_UserInfo
);
3045 return NT_STATUS_NO_MEMORY
;
3048 DEBUG(5,("_samr_QueryUserInfo: user info level: %d\n", r
->in
.level
));
3050 if (!(pwd
= samu_new(p
->mem_ctx
))) {
3051 return NT_STATUS_NO_MEMORY
;
3055 ret
= pdb_getsampwsid(pwd
, &uinfo
->sid
);
3059 DEBUG(4,("User %s not found\n", sid_string_dbg(&uinfo
->sid
)));
3061 return NT_STATUS_NO_SUCH_USER
;
3064 DEBUG(3,("User:[%s]\n", pdb_get_username(pwd
)));
3066 samr_clear_sam_passwd(pwd
);
3068 switch (r
->in
.level
) {
3070 status
= get_user_info_1(p
->mem_ctx
, &user_info
->info1
, pwd
, &domain_sid
);
3073 status
= get_user_info_2(p
->mem_ctx
, &user_info
->info2
, pwd
);
3076 status
= get_user_info_3(p
->mem_ctx
, &user_info
->info3
, pwd
, &domain_sid
);
3079 status
= get_user_info_4(p
->mem_ctx
, &user_info
->info4
, pwd
);
3082 status
= get_user_info_5(p
->mem_ctx
, &user_info
->info5
, pwd
, &domain_sid
);
3085 status
= get_user_info_6(p
->mem_ctx
, &user_info
->info6
, pwd
);
3088 status
= get_user_info_7(p
->mem_ctx
, &user_info
->info7
, pwd
);
3091 status
= get_user_info_8(p
->mem_ctx
, &user_info
->info8
, pwd
);
3094 status
= get_user_info_9(p
->mem_ctx
, &user_info
->info9
, pwd
);
3097 status
= get_user_info_10(p
->mem_ctx
, &user_info
->info10
, pwd
);
3100 status
= get_user_info_11(p
->mem_ctx
, &user_info
->info11
, pwd
);
3103 status
= get_user_info_12(p
->mem_ctx
, &user_info
->info12
, pwd
);
3106 status
= get_user_info_13(p
->mem_ctx
, &user_info
->info13
, pwd
);
3109 status
= get_user_info_14(p
->mem_ctx
, &user_info
->info14
, pwd
);
3112 status
= get_user_info_16(p
->mem_ctx
, &user_info
->info16
, pwd
);
3115 status
= get_user_info_17(p
->mem_ctx
, &user_info
->info17
, pwd
);
3118 /* level 18 is special */
3119 status
= get_user_info_18(p
, p
->mem_ctx
, &user_info
->info18
,
3123 status
= get_user_info_20(p
->mem_ctx
, &user_info
->info20
, pwd
);
3126 status
= get_user_info_21(p
->mem_ctx
, &user_info
->info21
, pwd
, &domain_sid
, acc_granted
);
3129 status
= NT_STATUS_INVALID_INFO_CLASS
;
3133 if (!NT_STATUS_IS_OK(status
)) {
3137 *r
->out
.info
= user_info
;
3142 DEBUG(5,("_samr_QueryUserInfo: %d\n", __LINE__
));
3147 /****************************************************************
3148 ****************************************************************/
3150 NTSTATUS
_samr_QueryUserInfo2(pipes_struct
*p
,
3151 struct samr_QueryUserInfo2
*r
)
3153 struct samr_QueryUserInfo u
;
3155 u
.in
.user_handle
= r
->in
.user_handle
;
3156 u
.in
.level
= r
->in
.level
;
3157 u
.out
.info
= r
->out
.info
;
3159 return _samr_QueryUserInfo(p
, &u
);
3162 /*******************************************************************
3163 _samr_GetGroupsForUser
3164 ********************************************************************/
3166 NTSTATUS
_samr_GetGroupsForUser(pipes_struct
*p
,
3167 struct samr_GetGroupsForUser
*r
)
3169 struct samr_user_info
*uinfo
;
3170 struct samu
*sam_pass
=NULL
;
3172 struct samr_RidWithAttribute dom_gid
;
3173 struct samr_RidWithAttribute
*gids
= NULL
;
3174 uint32 primary_group_rid
;
3175 size_t num_groups
= 0;
3180 bool success
= False
;
3182 struct samr_RidWithAttributeArray
*rids
= NULL
;
3185 * from the SID in the request:
3186 * we should send back the list of DOMAIN GROUPS
3187 * the user is a member of
3189 * and only the DOMAIN GROUPS
3190 * no ALIASES !!! neither aliases of the domain
3191 * nor aliases of the builtin SID
3196 DEBUG(5,("_samr_GetGroupsForUser: %d\n", __LINE__
));
3198 uinfo
= policy_handle_find(p
, r
->in
.user_handle
,
3199 SAMR_USER_ACCESS_GET_GROUPS
, NULL
,
3200 struct samr_user_info
, &result
);
3201 if (!NT_STATUS_IS_OK(result
)) {
3205 rids
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_RidWithAttributeArray
);
3207 return NT_STATUS_NO_MEMORY
;
3210 if (!sid_check_is_in_our_domain(&uinfo
->sid
))
3211 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
3213 if ( !(sam_pass
= samu_new( p
->mem_ctx
)) ) {
3214 return NT_STATUS_NO_MEMORY
;
3218 ret
= pdb_getsampwsid(sam_pass
, &uinfo
->sid
);
3222 DEBUG(10, ("pdb_getsampwsid failed for %s\n",
3223 sid_string_dbg(&uinfo
->sid
)));
3224 return NT_STATUS_NO_SUCH_USER
;
3229 /* make both calls inside the root block */
3231 result
= pdb_enum_group_memberships(p
->mem_ctx
, sam_pass
,
3232 &sids
, &unix_gids
, &num_groups
);
3233 if ( NT_STATUS_IS_OK(result
) ) {
3234 success
= sid_peek_check_rid(get_global_sam_sid(),
3235 pdb_get_group_sid(sam_pass
),
3236 &primary_group_rid
);
3240 if (!NT_STATUS_IS_OK(result
)) {
3241 DEBUG(10, ("pdb_enum_group_memberships failed for %s\n",
3242 sid_string_dbg(&uinfo
->sid
)));
3247 DEBUG(5, ("Group sid %s for user %s not in our domain\n",
3248 sid_string_dbg(pdb_get_group_sid(sam_pass
)),
3249 pdb_get_username(sam_pass
)));
3250 TALLOC_FREE(sam_pass
);
3251 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
3257 dom_gid
.attributes
= (SE_GROUP_MANDATORY
|SE_GROUP_ENABLED_BY_DEFAULT
|
3259 dom_gid
.rid
= primary_group_rid
;
3260 ADD_TO_ARRAY(p
->mem_ctx
, struct samr_RidWithAttribute
, dom_gid
, &gids
, &num_gids
);
3262 for (i
=0; i
<num_groups
; i
++) {
3264 if (!sid_peek_check_rid(get_global_sam_sid(),
3265 &(sids
[i
]), &dom_gid
.rid
)) {
3266 DEBUG(10, ("Found sid %s not in our domain\n",
3267 sid_string_dbg(&sids
[i
])));
3271 if (dom_gid
.rid
== primary_group_rid
) {
3272 /* We added the primary group directly from the
3273 * sam_account. The other SIDs are unique from
3274 * enum_group_memberships */
3278 ADD_TO_ARRAY(p
->mem_ctx
, struct samr_RidWithAttribute
, dom_gid
, &gids
, &num_gids
);
3281 rids
->count
= num_gids
;
3284 *r
->out
.rids
= rids
;
3286 DEBUG(5,("_samr_GetGroupsForUser: %d\n", __LINE__
));
3291 /*******************************************************************
3292 ********************************************************************/
3294 static uint32_t samr_get_server_role(void)
3296 uint32_t role
= ROLE_DOMAIN_PDC
;
3298 if (lp_server_role() == ROLE_DOMAIN_BDC
) {
3299 role
= ROLE_DOMAIN_BDC
;
3305 /*******************************************************************
3306 ********************************************************************/
3308 static NTSTATUS
query_dom_info_1(TALLOC_CTX
*mem_ctx
,
3309 struct samr_DomInfo1
*r
)
3311 uint32_t account_policy_temp
;
3312 time_t u_expire
, u_min_age
;
3318 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
, &account_policy_temp
);
3319 r
->min_password_length
= account_policy_temp
;
3321 pdb_get_account_policy(PDB_POLICY_PASSWORD_HISTORY
, &account_policy_temp
);
3322 r
->password_history_length
= account_policy_temp
;
3324 pdb_get_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
3325 &r
->password_properties
);
3327 pdb_get_account_policy(PDB_POLICY_MAX_PASSWORD_AGE
, &account_policy_temp
);
3328 u_expire
= account_policy_temp
;
3330 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_AGE
, &account_policy_temp
);
3331 u_min_age
= account_policy_temp
;
3337 unix_to_nt_time_abs((NTTIME
*)&r
->max_password_age
, u_expire
);
3338 unix_to_nt_time_abs((NTTIME
*)&r
->min_password_age
, u_min_age
);
3340 if (lp_check_password_script() && *lp_check_password_script()) {
3341 r
->password_properties
|= DOMAIN_PASSWORD_COMPLEX
;
3344 return NT_STATUS_OK
;
3347 /*******************************************************************
3348 ********************************************************************/
3350 static NTSTATUS
query_dom_info_2(TALLOC_CTX
*mem_ctx
,
3351 struct samr_DomGeneralInformation
*r
,
3352 struct samr_domain_info
*dinfo
)
3361 r
->num_users
= count_sam_users(dinfo
->disp_info
, ACB_NORMAL
);
3362 r
->num_groups
= count_sam_groups(dinfo
->disp_info
);
3363 r
->num_aliases
= count_sam_aliases(dinfo
->disp_info
);
3365 pdb_get_account_policy(PDB_POLICY_TIME_TO_LOGOUT
, &u_logout
);
3367 unix_to_nt_time_abs(&r
->force_logoff_time
, u_logout
);
3369 if (!pdb_get_seq_num(&seq_num
)) {
3370 seq_num
= time(NULL
);
3377 r
->oem_information
.string
= lp_serverstring();
3378 r
->domain_name
.string
= lp_workgroup();
3379 r
->primary
.string
= global_myname();
3380 r
->sequence_num
= seq_num
;
3381 r
->domain_server_state
= DOMAIN_SERVER_ENABLED
;
3382 r
->role
= samr_get_server_role();
3385 return NT_STATUS_OK
;
3388 /*******************************************************************
3389 ********************************************************************/
3391 static NTSTATUS
query_dom_info_3(TALLOC_CTX
*mem_ctx
,
3392 struct samr_DomInfo3
*r
)
3402 pdb_get_account_policy(PDB_POLICY_TIME_TO_LOGOUT
, &ul
);
3403 u_logout
= (time_t)ul
;
3410 unix_to_nt_time_abs(&r
->force_logoff_time
, u_logout
);
3412 return NT_STATUS_OK
;
3415 /*******************************************************************
3416 ********************************************************************/
3418 static NTSTATUS
query_dom_info_4(TALLOC_CTX
*mem_ctx
,
3419 struct samr_DomOEMInformation
*r
)
3421 r
->oem_information
.string
= lp_serverstring();
3423 return NT_STATUS_OK
;
3426 /*******************************************************************
3427 ********************************************************************/
3429 static NTSTATUS
query_dom_info_5(TALLOC_CTX
*mem_ctx
,
3430 struct samr_DomInfo5
*r
)
3432 r
->domain_name
.string
= get_global_sam_name();
3434 return NT_STATUS_OK
;
3437 /*******************************************************************
3438 ********************************************************************/
3440 static NTSTATUS
query_dom_info_6(TALLOC_CTX
*mem_ctx
,
3441 struct samr_DomInfo6
*r
)
3443 /* NT returns its own name when a PDC. win2k and later
3444 * only the name of the PDC if itself is a BDC (samba4
3446 r
->primary
.string
= global_myname();
3448 return NT_STATUS_OK
;
3451 /*******************************************************************
3452 ********************************************************************/
3454 static NTSTATUS
query_dom_info_7(TALLOC_CTX
*mem_ctx
,
3455 struct samr_DomInfo7
*r
)
3457 r
->role
= samr_get_server_role();
3459 return NT_STATUS_OK
;
3462 /*******************************************************************
3463 ********************************************************************/
3465 static NTSTATUS
query_dom_info_8(TALLOC_CTX
*mem_ctx
,
3466 struct samr_DomInfo8
*r
)
3474 if (!pdb_get_seq_num(&seq_num
)) {
3475 seq_num
= time(NULL
);
3482 r
->sequence_num
= seq_num
;
3483 r
->domain_create_time
= 0;
3485 return NT_STATUS_OK
;
3488 /*******************************************************************
3489 ********************************************************************/
3491 static NTSTATUS
query_dom_info_9(TALLOC_CTX
*mem_ctx
,
3492 struct samr_DomInfo9
*r
)
3494 r
->domain_server_state
= DOMAIN_SERVER_ENABLED
;
3496 return NT_STATUS_OK
;
3499 /*******************************************************************
3500 ********************************************************************/
3502 static NTSTATUS
query_dom_info_11(TALLOC_CTX
*mem_ctx
,
3503 struct samr_DomGeneralInformation2
*r
,
3504 struct samr_domain_info
*dinfo
)
3507 uint32_t account_policy_temp
;
3508 time_t u_lock_duration
, u_reset_time
;
3510 status
= query_dom_info_2(mem_ctx
, &r
->general
, dinfo
);
3511 if (!NT_STATUS_IS_OK(status
)) {
3519 pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
, &account_policy_temp
);
3520 u_lock_duration
= account_policy_temp
;
3521 if (u_lock_duration
!= -1) {
3522 u_lock_duration
*= 60;
3525 pdb_get_account_policy(PDB_POLICY_RESET_COUNT_TIME
, &account_policy_temp
);
3526 u_reset_time
= account_policy_temp
* 60;
3528 pdb_get_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT
, &account_policy_temp
);
3529 r
->lockout_threshold
= account_policy_temp
;
3535 unix_to_nt_time_abs(&r
->lockout_duration
, u_lock_duration
);
3536 unix_to_nt_time_abs(&r
->lockout_window
, u_reset_time
);
3538 return NT_STATUS_OK
;
3541 /*******************************************************************
3542 ********************************************************************/
3544 static NTSTATUS
query_dom_info_12(TALLOC_CTX
*mem_ctx
,
3545 struct samr_DomInfo12
*r
)
3547 uint32_t account_policy_temp
;
3548 time_t u_lock_duration
, u_reset_time
;
3554 pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
, &account_policy_temp
);
3555 u_lock_duration
= account_policy_temp
;
3556 if (u_lock_duration
!= -1) {
3557 u_lock_duration
*= 60;
3560 pdb_get_account_policy(PDB_POLICY_RESET_COUNT_TIME
, &account_policy_temp
);
3561 u_reset_time
= account_policy_temp
* 60;
3563 pdb_get_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT
, &account_policy_temp
);
3564 r
->lockout_threshold
= account_policy_temp
;
3570 unix_to_nt_time_abs(&r
->lockout_duration
, u_lock_duration
);
3571 unix_to_nt_time_abs(&r
->lockout_window
, u_reset_time
);
3573 return NT_STATUS_OK
;
3576 /*******************************************************************
3577 ********************************************************************/
3579 static NTSTATUS
query_dom_info_13(TALLOC_CTX
*mem_ctx
,
3580 struct samr_DomInfo13
*r
)
3588 if (!pdb_get_seq_num(&seq_num
)) {
3589 seq_num
= time(NULL
);
3596 r
->sequence_num
= seq_num
;
3597 r
->domain_create_time
= 0;
3598 r
->modified_count_at_last_promotion
= 0;
3600 return NT_STATUS_OK
;
3603 /*******************************************************************
3604 _samr_QueryDomainInfo
3605 ********************************************************************/
3607 NTSTATUS
_samr_QueryDomainInfo(pipes_struct
*p
,
3608 struct samr_QueryDomainInfo
*r
)
3610 NTSTATUS status
= NT_STATUS_OK
;
3611 struct samr_domain_info
*dinfo
;
3612 union samr_DomainInfo
*dom_info
;
3614 uint32_t acc_required
;
3616 DEBUG(5,("_samr_QueryDomainInfo: %d\n", __LINE__
));
3618 switch (r
->in
.level
) {
3619 case 1: /* DomainPasswordInformation */
3620 case 12: /* DomainLockoutInformation */
3621 /* DOMAIN_READ_PASSWORD_PARAMETERS */
3622 acc_required
= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1
;
3624 case 11: /* DomainGeneralInformation2 */
3625 /* DOMAIN_READ_PASSWORD_PARAMETERS |
3626 * DOMAIN_READ_OTHER_PARAMETERS */
3627 acc_required
= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1
|
3628 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2
;
3630 case 2: /* DomainGeneralInformation */
3631 case 3: /* DomainLogoffInformation */
3632 case 4: /* DomainOemInformation */
3633 case 5: /* DomainReplicationInformation */
3634 case 6: /* DomainReplicationInformation */
3635 case 7: /* DomainServerRoleInformation */
3636 case 8: /* DomainModifiedInformation */
3637 case 9: /* DomainStateInformation */
3638 case 10: /* DomainUasInformation */
3639 case 13: /* DomainModifiedInformation2 */
3640 /* DOMAIN_READ_OTHER_PARAMETERS */
3641 acc_required
= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2
;
3644 return NT_STATUS_INVALID_INFO_CLASS
;
3647 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
3649 struct samr_domain_info
, &status
);
3650 if (!NT_STATUS_IS_OK(status
)) {
3654 dom_info
= TALLOC_ZERO_P(p
->mem_ctx
, union samr_DomainInfo
);
3656 return NT_STATUS_NO_MEMORY
;
3659 switch (r
->in
.level
) {
3661 status
= query_dom_info_1(p
->mem_ctx
, &dom_info
->info1
);
3664 status
= query_dom_info_2(p
->mem_ctx
, &dom_info
->general
, dinfo
);
3667 status
= query_dom_info_3(p
->mem_ctx
, &dom_info
->info3
);
3670 status
= query_dom_info_4(p
->mem_ctx
, &dom_info
->oem
);
3673 status
= query_dom_info_5(p
->mem_ctx
, &dom_info
->info5
);
3676 status
= query_dom_info_6(p
->mem_ctx
, &dom_info
->info6
);
3679 status
= query_dom_info_7(p
->mem_ctx
, &dom_info
->info7
);
3682 status
= query_dom_info_8(p
->mem_ctx
, &dom_info
->info8
);
3685 status
= query_dom_info_9(p
->mem_ctx
, &dom_info
->info9
);
3688 status
= query_dom_info_11(p
->mem_ctx
, &dom_info
->general2
, dinfo
);
3691 status
= query_dom_info_12(p
->mem_ctx
, &dom_info
->info12
);
3694 status
= query_dom_info_13(p
->mem_ctx
, &dom_info
->info13
);
3697 return NT_STATUS_INVALID_INFO_CLASS
;
3700 if (!NT_STATUS_IS_OK(status
)) {
3704 *r
->out
.info
= dom_info
;
3706 DEBUG(5,("_samr_QueryDomainInfo: %d\n", __LINE__
));
3711 /* W2k3 seems to use the same check for all 3 objects that can be created via
3712 * SAMR, if you try to create for example "Dialup" as an alias it says
3713 * "NT_STATUS_USER_EXISTS". This is racy, but we can't really lock the user
3716 static NTSTATUS
can_create(TALLOC_CTX
*mem_ctx
, const char *new_name
)
3718 enum lsa_SidType type
;
3721 DEBUG(10, ("Checking whether [%s] can be created\n", new_name
));
3724 /* Lookup in our local databases (LOOKUP_NAME_REMOTE not set)
3725 * whether the name already exists */
3726 result
= lookup_name(mem_ctx
, new_name
, LOOKUP_NAME_LOCAL
,
3727 NULL
, NULL
, NULL
, &type
);
3731 DEBUG(10, ("%s does not exist, can create it\n", new_name
));
3732 return NT_STATUS_OK
;
3735 DEBUG(5, ("trying to create %s, exists as %s\n",
3736 new_name
, sid_type_lookup(type
)));
3738 if (type
== SID_NAME_DOM_GRP
) {
3739 return NT_STATUS_GROUP_EXISTS
;
3741 if (type
== SID_NAME_ALIAS
) {
3742 return NT_STATUS_ALIAS_EXISTS
;
3745 /* Yes, the default is NT_STATUS_USER_EXISTS */
3746 return NT_STATUS_USER_EXISTS
;
3749 /*******************************************************************
3751 ********************************************************************/
3753 NTSTATUS
_samr_CreateUser2(pipes_struct
*p
,
3754 struct samr_CreateUser2
*r
)
3756 const char *account
= NULL
;
3758 uint32_t acb_info
= r
->in
.acct_flags
;
3759 struct samr_domain_info
*dinfo
;
3760 struct samr_user_info
*uinfo
;
3765 /* check this, when giving away 'add computer to domain' privs */
3766 uint32 des_access
= GENERIC_RIGHTS_USER_ALL_ACCESS
;
3767 bool can_add_account
= False
;
3770 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
3771 SAMR_DOMAIN_ACCESS_CREATE_USER
, NULL
,
3772 struct samr_domain_info
, &nt_status
);
3773 if (!NT_STATUS_IS_OK(nt_status
)) {
3777 if (sid_check_is_builtin(&dinfo
->sid
)) {
3778 DEBUG(5,("_samr_CreateUser2: Refusing user create in BUILTIN\n"));
3779 return NT_STATUS_ACCESS_DENIED
;
3782 if (!(acb_info
== ACB_NORMAL
|| acb_info
== ACB_DOMTRUST
||
3783 acb_info
== ACB_WSTRUST
|| acb_info
== ACB_SVRTRUST
)) {
3784 /* Match Win2k, and return NT_STATUS_INVALID_PARAMETER if
3785 this parameter is not an account type */
3786 return NT_STATUS_INVALID_PARAMETER
;
3789 account
= r
->in
.account_name
->string
;
3790 if (account
== NULL
) {
3791 return NT_STATUS_NO_MEMORY
;
3794 nt_status
= can_create(p
->mem_ctx
, account
);
3795 if (!NT_STATUS_IS_OK(nt_status
)) {
3799 /* determine which user right we need to check based on the acb_info */
3801 if (geteuid() == sec_initial_uid()) {
3802 se_priv_copy(&se_rights
, &se_priv_none
);
3803 can_add_account
= true;
3804 } else if (acb_info
& ACB_WSTRUST
) {
3805 se_priv_copy(&se_rights
, &se_machine_account
);
3806 can_add_account
= user_has_privileges(
3807 p
->server_info
->ptok
, &se_rights
);
3808 } else if (acb_info
& ACB_NORMAL
&&
3809 (account
[strlen(account
)-1] != '$')) {
3810 /* usrmgr.exe (and net rpc trustdom grant) creates a normal user
3811 account for domain trusts and changes the ACB flags later */
3812 se_priv_copy(&se_rights
, &se_add_users
);
3813 can_add_account
= user_has_privileges(
3814 p
->server_info
->ptok
, &se_rights
);
3815 } else if (lp_enable_privileges()) {
3816 /* implicit assumption of a BDC or domain trust account here
3817 * (we already check the flags earlier) */
3818 /* only Domain Admins can add a BDC or domain trust */
3819 se_priv_copy(&se_rights
, &se_priv_none
);
3820 can_add_account
= nt_token_check_domain_rid(
3821 p
->server_info
->ptok
,
3822 DOMAIN_GROUP_RID_ADMINS
);
3825 DEBUG(5, ("_samr_CreateUser2: %s can add this account : %s\n",
3826 uidtoname(p
->server_info
->utok
.uid
),
3827 can_add_account
? "True":"False" ));
3829 if (!can_add_account
) {
3830 return NT_STATUS_ACCESS_DENIED
;
3833 /********** BEGIN Admin BLOCK **********/
3836 nt_status
= pdb_create_user(p
->mem_ctx
, account
, acb_info
,
3840 /********** END Admin BLOCK **********/
3842 /* now check for failure */
3844 if ( !NT_STATUS_IS_OK(nt_status
) )
3847 /* Get the user's SID */
3849 sid_compose(&sid
, get_global_sam_sid(), *r
->out
.rid
);
3851 map_max_allowed_access(p
->server_info
->ptok
,
3852 &p
->server_info
->utok
,
3855 make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
, &usr_generic_mapping
,
3856 &sid
, SAMR_USR_RIGHTS_WRITE_PW
);
3857 se_map_generic(&des_access
, &usr_generic_mapping
);
3860 * JRA - TESTME. We just created this user so we
3861 * had rights to create them. Do we need to check
3862 * any further access on this object ? Can't we
3863 * just assume we have all the rights we need ?
3866 nt_status
= access_check_object(psd
, p
->server_info
->ptok
,
3867 &se_rights
, GENERIC_RIGHTS_USER_WRITE
, des_access
,
3868 &acc_granted
, "_samr_CreateUser2");
3870 if ( !NT_STATUS_IS_OK(nt_status
) ) {
3874 uinfo
= policy_handle_create(p
, r
->out
.user_handle
, acc_granted
,
3875 struct samr_user_info
, &nt_status
);
3876 if (!NT_STATUS_IS_OK(nt_status
)) {
3881 /* After a "set" ensure we have no cached display info. */
3882 force_flush_samr_cache(&sid
);
3884 *r
->out
.access_granted
= acc_granted
;
3886 return NT_STATUS_OK
;
3889 /****************************************************************
3890 ****************************************************************/
3892 NTSTATUS
_samr_CreateUser(pipes_struct
*p
,
3893 struct samr_CreateUser
*r
)
3895 struct samr_CreateUser2 c
;
3896 uint32_t access_granted
;
3898 c
.in
.domain_handle
= r
->in
.domain_handle
;
3899 c
.in
.account_name
= r
->in
.account_name
;
3900 c
.in
.acct_flags
= ACB_NORMAL
;
3901 c
.in
.access_mask
= r
->in
.access_mask
;
3902 c
.out
.user_handle
= r
->out
.user_handle
;
3903 c
.out
.access_granted
= &access_granted
;
3904 c
.out
.rid
= r
->out
.rid
;
3906 return _samr_CreateUser2(p
, &c
);
3909 /*******************************************************************
3911 ********************************************************************/
3913 NTSTATUS
_samr_Connect(pipes_struct
*p
,
3914 struct samr_Connect
*r
)
3916 struct samr_connect_info
*info
;
3917 uint32_t acc_granted
;
3918 struct policy_handle hnd
;
3919 uint32 des_access
= r
->in
.access_mask
;
3924 if (!pipe_access_check(p
)) {
3925 DEBUG(3, ("access denied to _samr_Connect\n"));
3926 return NT_STATUS_ACCESS_DENIED
;
3929 /* don't give away the farm but this is probably ok. The SAMR_ACCESS_ENUM_DOMAINS
3930 was observed from a win98 client trying to enumerate users (when configured
3931 user level access control on shares) --jerry */
3933 map_max_allowed_access(p
->server_info
->ptok
,
3934 &p
->server_info
->utok
,
3937 se_map_generic( &des_access
, &sam_generic_mapping
);
3939 acc_granted
= des_access
& (SAMR_ACCESS_ENUM_DOMAINS
3940 |SAMR_ACCESS_LOOKUP_DOMAIN
);
3942 /* set up the SAMR connect_anon response */
3944 info
= policy_handle_create(p
, &hnd
, acc_granted
,
3945 struct samr_connect_info
,
3947 if (!NT_STATUS_IS_OK(status
)) {
3951 *r
->out
.connect_handle
= hnd
;
3952 return NT_STATUS_OK
;
3955 /*******************************************************************
3957 ********************************************************************/
3959 NTSTATUS
_samr_Connect2(pipes_struct
*p
,
3960 struct samr_Connect2
*r
)
3962 struct samr_connect_info
*info
= NULL
;
3963 struct policy_handle hnd
;
3964 SEC_DESC
*psd
= NULL
;
3966 uint32 des_access
= r
->in
.access_mask
;
3969 const char *fn
= "_samr_Connect2";
3971 switch (p
->hdr_req
.opnum
) {
3972 case NDR_SAMR_CONNECT2
:
3973 fn
= "_samr_Connect2";
3975 case NDR_SAMR_CONNECT3
:
3976 fn
= "_samr_Connect3";
3978 case NDR_SAMR_CONNECT4
:
3979 fn
= "_samr_Connect4";
3981 case NDR_SAMR_CONNECT5
:
3982 fn
= "_samr_Connect5";
3986 DEBUG(5,("%s: %d\n", fn
, __LINE__
));
3990 if (!pipe_access_check(p
)) {
3991 DEBUG(3, ("access denied to %s\n", fn
));
3992 return NT_STATUS_ACCESS_DENIED
;
3995 map_max_allowed_access(p
->server_info
->ptok
,
3996 &p
->server_info
->utok
,
3999 make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
, &sam_generic_mapping
, NULL
, 0);
4000 se_map_generic(&des_access
, &sam_generic_mapping
);
4002 nt_status
= access_check_object(psd
, p
->server_info
->ptok
,
4003 NULL
, 0, des_access
, &acc_granted
, fn
);
4005 if ( !NT_STATUS_IS_OK(nt_status
) )
4008 info
= policy_handle_create(p
, &hnd
, acc_granted
,
4009 struct samr_connect_info
, &nt_status
);
4010 if (!NT_STATUS_IS_OK(nt_status
)) {
4014 DEBUG(5,("%s: %d\n", fn
, __LINE__
));
4016 *r
->out
.connect_handle
= hnd
;
4017 return NT_STATUS_OK
;
4020 /****************************************************************
4022 ****************************************************************/
4024 NTSTATUS
_samr_Connect3(pipes_struct
*p
,
4025 struct samr_Connect3
*r
)
4027 struct samr_Connect2 c
;
4029 c
.in
.system_name
= r
->in
.system_name
;
4030 c
.in
.access_mask
= r
->in
.access_mask
;
4031 c
.out
.connect_handle
= r
->out
.connect_handle
;
4033 return _samr_Connect2(p
, &c
);
4036 /*******************************************************************
4038 ********************************************************************/
4040 NTSTATUS
_samr_Connect4(pipes_struct
*p
,
4041 struct samr_Connect4
*r
)
4043 struct samr_Connect2 c
;
4045 c
.in
.system_name
= r
->in
.system_name
;
4046 c
.in
.access_mask
= r
->in
.access_mask
;
4047 c
.out
.connect_handle
= r
->out
.connect_handle
;
4049 return _samr_Connect2(p
, &c
);
4052 /*******************************************************************
4054 ********************************************************************/
4056 NTSTATUS
_samr_Connect5(pipes_struct
*p
,
4057 struct samr_Connect5
*r
)
4060 struct samr_Connect2 c
;
4061 struct samr_ConnectInfo1 info1
;
4063 info1
.client_version
= SAMR_CONNECT_AFTER_W2K
;
4066 c
.in
.system_name
= r
->in
.system_name
;
4067 c
.in
.access_mask
= r
->in
.access_mask
;
4068 c
.out
.connect_handle
= r
->out
.connect_handle
;
4070 *r
->out
.level_out
= 1;
4072 status
= _samr_Connect2(p
, &c
);
4073 if (!NT_STATUS_IS_OK(status
)) {
4077 r
->out
.info_out
->info1
= info1
;
4079 return NT_STATUS_OK
;
4082 /**********************************************************************
4084 **********************************************************************/
4086 NTSTATUS
_samr_LookupDomain(pipes_struct
*p
,
4087 struct samr_LookupDomain
*r
)
4090 struct samr_connect_info
*info
;
4091 const char *domain_name
;
4092 DOM_SID
*sid
= NULL
;
4094 /* win9x user manager likes to use SAMR_ACCESS_ENUM_DOMAINS here.
4095 Reverted that change so we will work with RAS servers again */
4097 info
= policy_handle_find(p
, r
->in
.connect_handle
,
4098 SAMR_ACCESS_LOOKUP_DOMAIN
, NULL
,
4099 struct samr_connect_info
,
4101 if (!NT_STATUS_IS_OK(status
)) {
4105 domain_name
= r
->in
.domain_name
->string
;
4107 return NT_STATUS_INVALID_PARAMETER
;
4110 sid
= TALLOC_ZERO_P(p
->mem_ctx
, struct dom_sid2
);
4112 return NT_STATUS_NO_MEMORY
;
4115 if (strequal(domain_name
, builtin_domain_name())) {
4116 sid_copy(sid
, &global_sid_Builtin
);
4118 if (!secrets_fetch_domain_sid(domain_name
, sid
)) {
4119 status
= NT_STATUS_NO_SUCH_DOMAIN
;
4123 DEBUG(2,("Returning domain sid for domain %s -> %s\n", domain_name
,
4124 sid_string_dbg(sid
)));
4131 /**********************************************************************
4133 **********************************************************************/
4135 NTSTATUS
_samr_EnumDomains(pipes_struct
*p
,
4136 struct samr_EnumDomains
*r
)
4139 struct samr_connect_info
*info
;
4140 uint32_t num_entries
= 2;
4141 struct samr_SamEntry
*entry_array
= NULL
;
4142 struct samr_SamArray
*sam
;
4144 info
= policy_handle_find(p
, r
->in
.connect_handle
,
4145 SAMR_ACCESS_ENUM_DOMAINS
, NULL
,
4146 struct samr_connect_info
, &status
);
4147 if (!NT_STATUS_IS_OK(status
)) {
4151 sam
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_SamArray
);
4153 return NT_STATUS_NO_MEMORY
;
4156 entry_array
= TALLOC_ZERO_ARRAY(p
->mem_ctx
,
4157 struct samr_SamEntry
,
4160 return NT_STATUS_NO_MEMORY
;
4163 entry_array
[0].idx
= 0;
4164 init_lsa_String(&entry_array
[0].name
, get_global_sam_name());
4166 entry_array
[1].idx
= 1;
4167 init_lsa_String(&entry_array
[1].name
, "Builtin");
4169 sam
->count
= num_entries
;
4170 sam
->entries
= entry_array
;
4173 *r
->out
.num_entries
= num_entries
;
4178 /*******************************************************************
4180 ********************************************************************/
4182 NTSTATUS
_samr_OpenAlias(pipes_struct
*p
,
4183 struct samr_OpenAlias
*r
)
4186 uint32 alias_rid
= r
->in
.rid
;
4187 struct samr_alias_info
*ainfo
;
4188 struct samr_domain_info
*dinfo
;
4189 SEC_DESC
*psd
= NULL
;
4191 uint32 des_access
= r
->in
.access_mask
;
4196 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
4197 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
, NULL
,
4198 struct samr_domain_info
, &status
);
4199 if (!NT_STATUS_IS_OK(status
)) {
4203 /* append the alias' RID to it */
4205 if (!sid_compose(&sid
, &dinfo
->sid
, alias_rid
))
4206 return NT_STATUS_NO_SUCH_ALIAS
;
4208 /*check if access can be granted as requested by client. */
4210 map_max_allowed_access(p
->server_info
->ptok
,
4211 &p
->server_info
->utok
,
4214 make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
, &ali_generic_mapping
, NULL
, 0);
4215 se_map_generic(&des_access
,&ali_generic_mapping
);
4217 se_priv_copy( &se_rights
, &se_add_users
);
4219 status
= access_check_object(psd
, p
->server_info
->ptok
,
4220 &se_rights
, GENERIC_RIGHTS_ALIAS_ALL_ACCESS
,
4221 des_access
, &acc_granted
, "_samr_OpenAlias");
4223 if ( !NT_STATUS_IS_OK(status
) )
4227 /* Check we actually have the requested alias */
4228 enum lsa_SidType type
;
4233 result
= lookup_sid(NULL
, &sid
, NULL
, NULL
, &type
);
4236 if (!result
|| (type
!= SID_NAME_ALIAS
)) {
4237 return NT_STATUS_NO_SUCH_ALIAS
;
4240 /* make sure there is a mapping */
4242 if ( !sid_to_gid( &sid
, &gid
) ) {
4243 return NT_STATUS_NO_SUCH_ALIAS
;
4248 ainfo
= policy_handle_create(p
, r
->out
.alias_handle
, acc_granted
,
4249 struct samr_alias_info
, &status
);
4250 if (!NT_STATUS_IS_OK(status
)) {
4255 return NT_STATUS_OK
;
4258 /*******************************************************************
4260 ********************************************************************/
4262 static NTSTATUS
set_user_info_2(TALLOC_CTX
*mem_ctx
,
4263 struct samr_UserInfo2
*id2
,
4267 DEBUG(5,("set_user_info_2: NULL id2\n"));
4268 return NT_STATUS_ACCESS_DENIED
;
4271 copy_id2_to_sam_passwd(pwd
, id2
);
4273 return pdb_update_sam_account(pwd
);
4276 /*******************************************************************
4278 ********************************************************************/
4280 static NTSTATUS
set_user_info_4(TALLOC_CTX
*mem_ctx
,
4281 struct samr_UserInfo4
*id4
,
4285 DEBUG(5,("set_user_info_2: NULL id4\n"));
4286 return NT_STATUS_ACCESS_DENIED
;
4289 copy_id4_to_sam_passwd(pwd
, id4
);
4291 return pdb_update_sam_account(pwd
);
4294 /*******************************************************************
4296 ********************************************************************/
4298 static NTSTATUS
set_user_info_6(TALLOC_CTX
*mem_ctx
,
4299 struct samr_UserInfo6
*id6
,
4303 DEBUG(5,("set_user_info_6: NULL id6\n"));
4304 return NT_STATUS_ACCESS_DENIED
;
4307 copy_id6_to_sam_passwd(pwd
, id6
);
4309 return pdb_update_sam_account(pwd
);
4312 /*******************************************************************
4314 ********************************************************************/
4316 static NTSTATUS
set_user_info_7(TALLOC_CTX
*mem_ctx
,
4317 struct samr_UserInfo7
*id7
,
4323 DEBUG(5, ("set_user_info_7: NULL id7\n"));
4324 return NT_STATUS_ACCESS_DENIED
;
4327 if (!id7
->account_name
.string
) {
4328 DEBUG(5, ("set_user_info_7: failed to get new username\n"));
4329 return NT_STATUS_ACCESS_DENIED
;
4332 /* check to see if the new username already exists. Note: we can't
4333 reliably lock all backends, so there is potentially the
4334 possibility that a user can be created in between this check and
4335 the rename. The rename should fail, but may not get the
4336 exact same failure status code. I think this is small enough
4337 of a window for this type of operation and the results are
4338 simply that the rename fails with a slightly different status
4339 code (like UNSUCCESSFUL instead of ALREADY_EXISTS). */
4341 rc
= can_create(mem_ctx
, id7
->account_name
.string
);
4343 /* when there is nothing to change, we're done here */
4344 if (NT_STATUS_EQUAL(rc
, NT_STATUS_USER_EXISTS
) &&
4345 strequal(id7
->account_name
.string
, pdb_get_username(pwd
))) {
4346 return NT_STATUS_OK
;
4348 if (!NT_STATUS_IS_OK(rc
)) {
4352 rc
= pdb_rename_sam_account(pwd
, id7
->account_name
.string
);
4357 /*******************************************************************
4359 ********************************************************************/
4361 static NTSTATUS
set_user_info_8(TALLOC_CTX
*mem_ctx
,
4362 struct samr_UserInfo8
*id8
,
4366 DEBUG(5,("set_user_info_8: NULL id8\n"));
4367 return NT_STATUS_ACCESS_DENIED
;
4370 copy_id8_to_sam_passwd(pwd
, id8
);
4372 return pdb_update_sam_account(pwd
);
4375 /*******************************************************************
4377 ********************************************************************/
4379 static NTSTATUS
set_user_info_10(TALLOC_CTX
*mem_ctx
,
4380 struct samr_UserInfo10
*id10
,
4384 DEBUG(5,("set_user_info_8: NULL id10\n"));
4385 return NT_STATUS_ACCESS_DENIED
;
4388 copy_id10_to_sam_passwd(pwd
, id10
);
4390 return pdb_update_sam_account(pwd
);
4393 /*******************************************************************
4395 ********************************************************************/
4397 static NTSTATUS
set_user_info_11(TALLOC_CTX
*mem_ctx
,
4398 struct samr_UserInfo11
*id11
,
4402 DEBUG(5,("set_user_info_11: NULL id11\n"));
4403 return NT_STATUS_ACCESS_DENIED
;
4406 copy_id11_to_sam_passwd(pwd
, id11
);
4408 return pdb_update_sam_account(pwd
);
4411 /*******************************************************************
4413 ********************************************************************/
4415 static NTSTATUS
set_user_info_12(TALLOC_CTX
*mem_ctx
,
4416 struct samr_UserInfo12
*id12
,
4420 DEBUG(5,("set_user_info_12: NULL id12\n"));
4421 return NT_STATUS_ACCESS_DENIED
;
4424 copy_id12_to_sam_passwd(pwd
, id12
);
4426 return pdb_update_sam_account(pwd
);
4429 /*******************************************************************
4431 ********************************************************************/
4433 static NTSTATUS
set_user_info_13(TALLOC_CTX
*mem_ctx
,
4434 struct samr_UserInfo13
*id13
,
4438 DEBUG(5,("set_user_info_13: NULL id13\n"));
4439 return NT_STATUS_ACCESS_DENIED
;
4442 copy_id13_to_sam_passwd(pwd
, id13
);
4444 return pdb_update_sam_account(pwd
);
4447 /*******************************************************************
4449 ********************************************************************/
4451 static NTSTATUS
set_user_info_14(TALLOC_CTX
*mem_ctx
,
4452 struct samr_UserInfo14
*id14
,
4456 DEBUG(5,("set_user_info_14: NULL id14\n"));
4457 return NT_STATUS_ACCESS_DENIED
;
4460 copy_id14_to_sam_passwd(pwd
, id14
);
4462 return pdb_update_sam_account(pwd
);
4465 /*******************************************************************
4467 ********************************************************************/
4469 static NTSTATUS
set_user_info_16(TALLOC_CTX
*mem_ctx
,
4470 struct samr_UserInfo16
*id16
,
4474 DEBUG(5,("set_user_info_16: NULL id16\n"));
4475 return NT_STATUS_ACCESS_DENIED
;
4478 copy_id16_to_sam_passwd(pwd
, id16
);
4480 return pdb_update_sam_account(pwd
);
4483 /*******************************************************************
4485 ********************************************************************/
4487 static NTSTATUS
set_user_info_17(TALLOC_CTX
*mem_ctx
,
4488 struct samr_UserInfo17
*id17
,
4492 DEBUG(5,("set_user_info_17: NULL id17\n"));
4493 return NT_STATUS_ACCESS_DENIED
;
4496 copy_id17_to_sam_passwd(pwd
, id17
);
4498 return pdb_update_sam_account(pwd
);
4501 /*******************************************************************
4503 ********************************************************************/
4505 static NTSTATUS
set_user_info_18(struct samr_UserInfo18
*id18
,
4506 TALLOC_CTX
*mem_ctx
,
4507 DATA_BLOB
*session_key
,
4511 DEBUG(2, ("set_user_info_18: id18 is NULL\n"));
4512 return NT_STATUS_INVALID_PARAMETER
;
4515 if (id18
->nt_pwd_active
|| id18
->lm_pwd_active
) {
4516 if (!session_key
->length
) {
4517 return NT_STATUS_NO_USER_SESSION_KEY
;
4521 if (id18
->nt_pwd_active
) {
4525 in
= data_blob_const(id18
->nt_pwd
.hash
, 16);
4526 out
= data_blob_talloc_zero(mem_ctx
, 16);
4528 sess_crypt_blob(&out
, &in
, session_key
, false);
4530 if (!pdb_set_nt_passwd(pwd
, out
.data
, PDB_CHANGED
)) {
4531 return NT_STATUS_ACCESS_DENIED
;
4534 pdb_set_pass_last_set_time(pwd
, time(NULL
), PDB_CHANGED
);
4537 if (id18
->lm_pwd_active
) {
4541 in
= data_blob_const(id18
->lm_pwd
.hash
, 16);
4542 out
= data_blob_talloc_zero(mem_ctx
, 16);
4544 sess_crypt_blob(&out
, &in
, session_key
, false);
4546 if (!pdb_set_lanman_passwd(pwd
, out
.data
, PDB_CHANGED
)) {
4547 return NT_STATUS_ACCESS_DENIED
;
4550 pdb_set_pass_last_set_time(pwd
, time(NULL
), PDB_CHANGED
);
4553 copy_id18_to_sam_passwd(pwd
, id18
);
4555 return pdb_update_sam_account(pwd
);
4558 /*******************************************************************
4560 ********************************************************************/
4562 static NTSTATUS
set_user_info_20(TALLOC_CTX
*mem_ctx
,
4563 struct samr_UserInfo20
*id20
,
4567 DEBUG(5,("set_user_info_20: NULL id20\n"));
4568 return NT_STATUS_ACCESS_DENIED
;
4571 copy_id20_to_sam_passwd(pwd
, id20
);
4573 return pdb_update_sam_account(pwd
);
4576 /*******************************************************************
4578 ********************************************************************/
4580 static NTSTATUS
set_user_info_21(struct samr_UserInfo21
*id21
,
4581 TALLOC_CTX
*mem_ctx
,
4582 DATA_BLOB
*session_key
,
4588 DEBUG(5, ("set_user_info_21: NULL id21\n"));
4589 return NT_STATUS_INVALID_PARAMETER
;
4592 if (id21
->fields_present
== 0) {
4593 return NT_STATUS_INVALID_PARAMETER
;
4596 if (id21
->fields_present
& SAMR_FIELD_LAST_PWD_CHANGE
) {
4597 return NT_STATUS_ACCESS_DENIED
;
4600 if (id21
->fields_present
& SAMR_FIELD_NT_PASSWORD_PRESENT
) {
4601 if (id21
->nt_password_set
) {
4604 if ((id21
->nt_owf_password
.length
!= 16) ||
4605 (id21
->nt_owf_password
.size
!= 16)) {
4606 return NT_STATUS_INVALID_PARAMETER
;
4609 if (!session_key
->length
) {
4610 return NT_STATUS_NO_USER_SESSION_KEY
;
4613 in
= data_blob_const(id21
->nt_owf_password
.array
, 16);
4614 out
= data_blob_talloc_zero(mem_ctx
, 16);
4616 sess_crypt_blob(&out
, &in
, session_key
, false);
4618 pdb_set_nt_passwd(pwd
, out
.data
, PDB_CHANGED
);
4619 pdb_set_pass_last_set_time(pwd
, time(NULL
), PDB_CHANGED
);
4623 if (id21
->fields_present
& SAMR_FIELD_LM_PASSWORD_PRESENT
) {
4624 if (id21
->lm_password_set
) {
4627 if ((id21
->lm_owf_password
.length
!= 16) ||
4628 (id21
->lm_owf_password
.size
!= 16)) {
4629 return NT_STATUS_INVALID_PARAMETER
;
4632 if (!session_key
->length
) {
4633 return NT_STATUS_NO_USER_SESSION_KEY
;
4636 in
= data_blob_const(id21
->lm_owf_password
.array
, 16);
4637 out
= data_blob_talloc_zero(mem_ctx
, 16);
4639 sess_crypt_blob(&out
, &in
, session_key
, false);
4641 pdb_set_lanman_passwd(pwd
, out
.data
, PDB_CHANGED
);
4642 pdb_set_pass_last_set_time(pwd
, time(NULL
), PDB_CHANGED
);
4646 /* we need to separately check for an account rename first */
4648 if (id21
->account_name
.string
&&
4649 (!strequal(id21
->account_name
.string
, pdb_get_username(pwd
))))
4652 /* check to see if the new username already exists. Note: we can't
4653 reliably lock all backends, so there is potentially the
4654 possibility that a user can be created in between this check and
4655 the rename. The rename should fail, but may not get the
4656 exact same failure status code. I think this is small enough
4657 of a window for this type of operation and the results are
4658 simply that the rename fails with a slightly different status
4659 code (like UNSUCCESSFUL instead of ALREADY_EXISTS). */
4661 status
= can_create(mem_ctx
, id21
->account_name
.string
);
4662 if (!NT_STATUS_IS_OK(status
)) {
4666 status
= pdb_rename_sam_account(pwd
, id21
->account_name
.string
);
4668 if (!NT_STATUS_IS_OK(status
)) {
4669 DEBUG(0,("set_user_info_21: failed to rename account: %s\n",
4670 nt_errstr(status
)));
4674 /* set the new username so that later
4675 functions can work on the new account */
4676 pdb_set_username(pwd
, id21
->account_name
.string
, PDB_SET
);
4679 copy_id21_to_sam_passwd("INFO_21", pwd
, id21
);
4682 * The funny part about the previous two calls is
4683 * that pwd still has the password hashes from the
4684 * passdb entry. These have not been updated from
4685 * id21. I don't know if they need to be set. --jerry
4688 if ( IS_SAM_CHANGED(pwd
, PDB_GROUPSID
) ) {
4689 status
= pdb_set_unix_primary_group(mem_ctx
, pwd
);
4690 if ( !NT_STATUS_IS_OK(status
) ) {
4695 /* Don't worry about writing out the user account since the
4696 primary group SID is generated solely from the user's Unix
4699 /* write the change out */
4700 if(!NT_STATUS_IS_OK(status
= pdb_update_sam_account(pwd
))) {
4704 return NT_STATUS_OK
;
4707 /*******************************************************************
4709 ********************************************************************/
4711 static NTSTATUS
set_user_info_23(TALLOC_CTX
*mem_ctx
,
4712 struct samr_UserInfo23
*id23
,
4715 char *plaintext_buf
= NULL
;
4721 DEBUG(5, ("set_user_info_23: NULL id23\n"));
4722 return NT_STATUS_INVALID_PARAMETER
;
4725 if (id23
->info
.fields_present
== 0) {
4726 return NT_STATUS_INVALID_PARAMETER
;
4729 if (id23
->info
.fields_present
& SAMR_FIELD_LAST_PWD_CHANGE
) {
4730 return NT_STATUS_ACCESS_DENIED
;
4733 if ((id23
->info
.fields_present
& SAMR_FIELD_NT_PASSWORD_PRESENT
) ||
4734 (id23
->info
.fields_present
& SAMR_FIELD_LM_PASSWORD_PRESENT
)) {
4736 DEBUG(5, ("Attempting administrator password change (level 23) for user %s\n",
4737 pdb_get_username(pwd
)));
4739 if (!decode_pw_buffer(mem_ctx
,
4740 id23
->password
.data
,
4744 return NT_STATUS_WRONG_PASSWORD
;
4747 if (!pdb_set_plaintext_passwd (pwd
, plaintext_buf
)) {
4748 return NT_STATUS_ACCESS_DENIED
;
4752 copy_id23_to_sam_passwd(pwd
, id23
);
4754 acct_ctrl
= pdb_get_acct_ctrl(pwd
);
4756 /* if it's a trust account, don't update /etc/passwd */
4757 if ( ( (acct_ctrl
& ACB_DOMTRUST
) == ACB_DOMTRUST
) ||
4758 ( (acct_ctrl
& ACB_WSTRUST
) == ACB_WSTRUST
) ||
4759 ( (acct_ctrl
& ACB_SVRTRUST
) == ACB_SVRTRUST
) ) {
4760 DEBUG(5, ("Changing trust account. Not updating /etc/passwd\n"));
4761 } else if (plaintext_buf
) {
4762 /* update the UNIX password */
4763 if (lp_unix_password_sync() ) {
4764 struct passwd
*passwd
;
4765 if (pdb_get_username(pwd
) == NULL
) {
4766 DEBUG(1, ("chgpasswd: User without name???\n"));
4767 return NT_STATUS_ACCESS_DENIED
;
4770 passwd
= Get_Pwnam_alloc(pwd
, pdb_get_username(pwd
));
4771 if (passwd
== NULL
) {
4772 DEBUG(1, ("chgpasswd: Username does not exist in system !?!\n"));
4775 if(!chgpasswd(pdb_get_username(pwd
), passwd
, "", plaintext_buf
, True
)) {
4776 return NT_STATUS_ACCESS_DENIED
;
4778 TALLOC_FREE(passwd
);
4782 if (plaintext_buf
) {
4783 memset(plaintext_buf
, '\0', strlen(plaintext_buf
));
4786 if (IS_SAM_CHANGED(pwd
, PDB_GROUPSID
) &&
4787 (!NT_STATUS_IS_OK(status
= pdb_set_unix_primary_group(mem_ctx
,
4792 if(!NT_STATUS_IS_OK(status
= pdb_update_sam_account(pwd
))) {
4796 return NT_STATUS_OK
;
4799 /*******************************************************************
4801 ********************************************************************/
4803 static bool set_user_info_pw(uint8
*pass
, struct samu
*pwd
)
4806 char *plaintext_buf
= NULL
;
4809 DEBUG(5, ("Attempting administrator password change for user %s\n",
4810 pdb_get_username(pwd
)));
4812 acct_ctrl
= pdb_get_acct_ctrl(pwd
);
4814 if (!decode_pw_buffer(talloc_tos(),
4822 if (!pdb_set_plaintext_passwd (pwd
, plaintext_buf
)) {
4826 /* if it's a trust account, don't update /etc/passwd */
4827 if ( ( (acct_ctrl
& ACB_DOMTRUST
) == ACB_DOMTRUST
) ||
4828 ( (acct_ctrl
& ACB_WSTRUST
) == ACB_WSTRUST
) ||
4829 ( (acct_ctrl
& ACB_SVRTRUST
) == ACB_SVRTRUST
) ) {
4830 DEBUG(5, ("Changing trust account or non-unix-user password, not updating /etc/passwd\n"));
4832 /* update the UNIX password */
4833 if (lp_unix_password_sync()) {
4834 struct passwd
*passwd
;
4836 if (pdb_get_username(pwd
) == NULL
) {
4837 DEBUG(1, ("chgpasswd: User without name???\n"));
4841 passwd
= Get_Pwnam_alloc(pwd
, pdb_get_username(pwd
));
4842 if (passwd
== NULL
) {
4843 DEBUG(1, ("chgpasswd: Username does not exist in system !?!\n"));
4846 if(!chgpasswd(pdb_get_username(pwd
), passwd
, "", plaintext_buf
, True
)) {
4849 TALLOC_FREE(passwd
);
4853 memset(plaintext_buf
, '\0', strlen(plaintext_buf
));
4855 DEBUG(5,("set_user_info_pw: pdb_update_pwd()\n"));
4860 /*******************************************************************
4862 ********************************************************************/
4864 static NTSTATUS
set_user_info_24(TALLOC_CTX
*mem_ctx
,
4865 struct samr_UserInfo24
*id24
,
4871 DEBUG(5, ("set_user_info_24: NULL id24\n"));
4872 return NT_STATUS_INVALID_PARAMETER
;
4875 if (!set_user_info_pw(id24
->password
.data
, pwd
)) {
4876 return NT_STATUS_WRONG_PASSWORD
;
4879 copy_id24_to_sam_passwd(pwd
, id24
);
4881 status
= pdb_update_sam_account(pwd
);
4882 if (!NT_STATUS_IS_OK(status
)) {
4886 return NT_STATUS_OK
;
4889 /*******************************************************************
4891 ********************************************************************/
4893 static NTSTATUS
set_user_info_25(TALLOC_CTX
*mem_ctx
,
4894 struct samr_UserInfo25
*id25
,
4900 DEBUG(5, ("set_user_info_25: NULL id25\n"));
4901 return NT_STATUS_INVALID_PARAMETER
;
4904 if (id25
->info
.fields_present
== 0) {
4905 return NT_STATUS_INVALID_PARAMETER
;
4908 if (id25
->info
.fields_present
& SAMR_FIELD_LAST_PWD_CHANGE
) {
4909 return NT_STATUS_ACCESS_DENIED
;
4912 if ((id25
->info
.fields_present
& SAMR_FIELD_NT_PASSWORD_PRESENT
) ||
4913 (id25
->info
.fields_present
& SAMR_FIELD_LM_PASSWORD_PRESENT
)) {
4915 if (!set_user_info_pw(id25
->password
.data
, pwd
)) {
4916 return NT_STATUS_WRONG_PASSWORD
;
4920 copy_id25_to_sam_passwd(pwd
, id25
);
4922 /* write the change out */
4923 if(!NT_STATUS_IS_OK(status
= pdb_update_sam_account(pwd
))) {
4928 * We need to "pdb_update_sam_account" before the unix primary group
4929 * is set, because the idealx scripts would also change the
4930 * sambaPrimaryGroupSid using the ldap replace method. pdb_ldap uses
4931 * the delete explicit / add explicit, which would then fail to find
4932 * the previous primaryGroupSid value.
4935 if ( IS_SAM_CHANGED(pwd
, PDB_GROUPSID
) ) {
4936 status
= pdb_set_unix_primary_group(mem_ctx
, pwd
);
4937 if ( !NT_STATUS_IS_OK(status
) ) {
4942 return NT_STATUS_OK
;
4945 /*******************************************************************
4947 ********************************************************************/
4949 static NTSTATUS
set_user_info_26(TALLOC_CTX
*mem_ctx
,
4950 struct samr_UserInfo26
*id26
,
4956 DEBUG(5, ("set_user_info_26: NULL id26\n"));
4957 return NT_STATUS_INVALID_PARAMETER
;
4960 if (!set_user_info_pw(id26
->password
.data
, pwd
)) {
4961 return NT_STATUS_WRONG_PASSWORD
;
4964 copy_id26_to_sam_passwd(pwd
, id26
);
4966 status
= pdb_update_sam_account(pwd
);
4967 if (!NT_STATUS_IS_OK(status
)) {
4971 return NT_STATUS_OK
;
4974 /*************************************************************
4975 **************************************************************/
4977 static uint32_t samr_set_user_info_map_fields_to_access_mask(uint32_t fields
)
4979 uint32_t acc_required
= 0;
4981 /* USER_ALL_USERNAME */
4982 if (fields
& SAMR_FIELD_ACCOUNT_NAME
)
4983 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4984 /* USER_ALL_FULLNAME */
4985 if (fields
& SAMR_FIELD_FULL_NAME
)
4986 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4987 /* USER_ALL_PRIMARYGROUPID */
4988 if (fields
& SAMR_FIELD_PRIMARY_GID
)
4989 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4990 /* USER_ALL_HOMEDIRECTORY */
4991 if (fields
& SAMR_FIELD_HOME_DIRECTORY
)
4992 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4993 /* USER_ALL_HOMEDIRECTORYDRIVE */
4994 if (fields
& SAMR_FIELD_HOME_DRIVE
)
4995 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4996 /* USER_ALL_SCRIPTPATH */
4997 if (fields
& SAMR_FIELD_LOGON_SCRIPT
)
4998 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
4999 /* USER_ALL_PROFILEPATH */
5000 if (fields
& SAMR_FIELD_PROFILE_PATH
)
5001 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5002 /* USER_ALL_ADMINCOMMENT */
5003 if (fields
& SAMR_FIELD_COMMENT
)
5004 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5005 /* USER_ALL_WORKSTATIONS */
5006 if (fields
& SAMR_FIELD_WORKSTATIONS
)
5007 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5008 /* USER_ALL_LOGONHOURS */
5009 if (fields
& SAMR_FIELD_LOGON_HOURS
)
5010 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5011 /* USER_ALL_ACCOUNTEXPIRES */
5012 if (fields
& SAMR_FIELD_ACCT_EXPIRY
)
5013 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5014 /* USER_ALL_USERACCOUNTCONTROL */
5015 if (fields
& SAMR_FIELD_ACCT_FLAGS
)
5016 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5017 /* USER_ALL_PARAMETERS */
5018 if (fields
& SAMR_FIELD_PARAMETERS
)
5019 acc_required
|= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5020 /* USER_ALL_USERCOMMENT */
5021 if (fields
& SAMR_FIELD_COMMENT
)
5022 acc_required
|= SAMR_USER_ACCESS_SET_LOC_COM
;
5023 /* USER_ALL_COUNTRYCODE */
5024 if (fields
& SAMR_FIELD_COUNTRY_CODE
)
5025 acc_required
|= SAMR_USER_ACCESS_SET_LOC_COM
;
5026 /* USER_ALL_CODEPAGE */
5027 if (fields
& SAMR_FIELD_CODE_PAGE
)
5028 acc_required
|= SAMR_USER_ACCESS_SET_LOC_COM
;
5029 /* USER_ALL_NTPASSWORDPRESENT */
5030 if (fields
& SAMR_FIELD_NT_PASSWORD_PRESENT
)
5031 acc_required
|= SAMR_USER_ACCESS_SET_PASSWORD
;
5032 /* USER_ALL_LMPASSWORDPRESENT */
5033 if (fields
& SAMR_FIELD_LM_PASSWORD_PRESENT
)
5034 acc_required
|= SAMR_USER_ACCESS_SET_PASSWORD
;
5035 /* USER_ALL_PASSWORDEXPIRED */
5036 if (fields
& SAMR_FIELD_EXPIRED_FLAG
)
5037 acc_required
|= SAMR_USER_ACCESS_SET_PASSWORD
;
5039 return acc_required
;
5042 /*******************************************************************
5044 ********************************************************************/
5046 NTSTATUS
_samr_SetUserInfo(pipes_struct
*p
,
5047 struct samr_SetUserInfo
*r
)
5049 struct samr_user_info
*uinfo
;
5051 struct samu
*pwd
= NULL
;
5052 union samr_UserInfo
*info
= r
->in
.info
;
5053 uint32_t acc_required
= 0;
5054 uint32_t fields
= 0;
5057 DEBUG(5,("_samr_SetUserInfo: %d\n", __LINE__
));
5059 /* This is tricky. A WinXP domain join sets
5060 (SAMR_USER_ACCESS_SET_PASSWORD|SAMR_USER_ACCESS_SET_ATTRIBUTES|SAMR_USER_ACCESS_GET_ATTRIBUTES)
5061 The MMC lusrmgr plugin includes these perms and more in the SamrOpenUser(). But the
5062 standard Win32 API calls just ask for SAMR_USER_ACCESS_SET_PASSWORD in the SamrOpenUser().
5063 This should be enough for levels 18, 24, 25,& 26. Info level 23 can set more so
5064 we'll use the set from the WinXP join as the basis. */
5066 switch (r
->in
.level
) {
5067 case 2: /* UserPreferencesInformation */
5068 /* USER_WRITE_ACCOUNT | USER_WRITE_PREFERENCES */
5069 acc_required
= SAMR_USER_ACCESS_SET_ATTRIBUTES
| SAMR_USER_ACCESS_SET_LOC_COM
;
5071 case 4: /* UserLogonHoursInformation */
5072 case 6: /* UserNameInformation */
5073 case 7: /* UserAccountNameInformation */
5074 case 8: /* UserFullNameInformation */
5075 case 9: /* UserPrimaryGroupInformation */
5076 case 10: /* UserHomeInformation */
5077 case 11: /* UserScriptInformation */
5078 case 12: /* UserProfileInformation */
5079 case 13: /* UserAdminCommentInformation */
5080 case 14: /* UserWorkStationsInformation */
5081 case 16: /* UserControlInformation */
5082 case 17: /* UserExpiresInformation */
5083 case 20: /* UserParametersInformation */
5084 /* USER_WRITE_ACCOUNT */
5085 acc_required
= SAMR_USER_ACCESS_SET_ATTRIBUTES
;
5087 case 18: /* UserInternal1Information */
5088 /* FIXME: gd, this is a guess */
5089 acc_required
= SAMR_USER_ACCESS_SET_PASSWORD
;
5091 case 21: /* UserAllInformation */
5092 fields
= info
->info21
.fields_present
;
5093 acc_required
= samr_set_user_info_map_fields_to_access_mask(fields
);
5095 case 23: /* UserInternal4Information */
5096 fields
= info
->info23
.info
.fields_present
;
5097 acc_required
= samr_set_user_info_map_fields_to_access_mask(fields
);
5099 case 25: /* UserInternal4InformationNew */
5100 fields
= info
->info25
.info
.fields_present
;
5101 acc_required
= samr_set_user_info_map_fields_to_access_mask(fields
);
5103 case 24: /* UserInternal5Information */
5104 case 26: /* UserInternal5InformationNew */
5105 acc_required
= SAMR_USER_ACCESS_SET_PASSWORD
;
5108 return NT_STATUS_INVALID_INFO_CLASS
;
5111 uinfo
= policy_handle_find(p
, r
->in
.user_handle
, acc_required
, NULL
,
5112 struct samr_user_info
, &status
);
5113 if (!NT_STATUS_IS_OK(status
)) {
5117 DEBUG(5, ("_samr_SetUserInfo: sid:%s, level:%d\n",
5118 sid_string_dbg(&uinfo
->sid
), r
->in
.level
));
5121 DEBUG(5, ("_samr_SetUserInfo: NULL info level\n"));
5122 return NT_STATUS_INVALID_INFO_CLASS
;
5125 if (!(pwd
= samu_new(NULL
))) {
5126 return NT_STATUS_NO_MEMORY
;
5130 ret
= pdb_getsampwsid(pwd
, &uinfo
->sid
);
5135 return NT_STATUS_NO_SUCH_USER
;
5138 /* ================ BEGIN Privilege BLOCK ================ */
5142 /* ok! user info levels (lots: see MSDEV help), off we go... */
5144 switch (r
->in
.level
) {
5147 status
= set_user_info_2(p
->mem_ctx
,
5152 status
= set_user_info_4(p
->mem_ctx
,
5157 status
= set_user_info_6(p
->mem_ctx
,
5162 status
= set_user_info_7(p
->mem_ctx
,
5167 status
= set_user_info_8(p
->mem_ctx
,
5172 status
= set_user_info_10(p
->mem_ctx
,
5173 &info
->info10
, pwd
);
5177 status
= set_user_info_11(p
->mem_ctx
,
5178 &info
->info11
, pwd
);
5182 status
= set_user_info_12(p
->mem_ctx
,
5183 &info
->info12
, pwd
);
5187 status
= set_user_info_13(p
->mem_ctx
,
5188 &info
->info13
, pwd
);
5192 status
= set_user_info_14(p
->mem_ctx
,
5193 &info
->info14
, pwd
);
5197 status
= set_user_info_16(p
->mem_ctx
,
5198 &info
->info16
, pwd
);
5202 status
= set_user_info_17(p
->mem_ctx
,
5203 &info
->info17
, pwd
);
5207 /* Used by AS/U JRA. */
5208 status
= set_user_info_18(&info
->info18
,
5210 &p
->server_info
->user_session_key
,
5215 status
= set_user_info_20(p
->mem_ctx
,
5216 &info
->info20
, pwd
);
5220 status
= set_user_info_21(&info
->info21
,
5222 &p
->server_info
->user_session_key
,
5227 if (!p
->server_info
->user_session_key
.length
) {
5228 status
= NT_STATUS_NO_USER_SESSION_KEY
;
5230 arcfour_crypt_blob(info
->info23
.password
.data
, 516,
5231 &p
->server_info
->user_session_key
);
5233 dump_data(100, info
->info23
.password
.data
, 516);
5235 status
= set_user_info_23(p
->mem_ctx
,
5236 &info
->info23
, pwd
);
5240 if (!p
->server_info
->user_session_key
.length
) {
5241 status
= NT_STATUS_NO_USER_SESSION_KEY
;
5243 arcfour_crypt_blob(info
->info24
.password
.data
,
5245 &p
->server_info
->user_session_key
);
5247 dump_data(100, info
->info24
.password
.data
, 516);
5249 status
= set_user_info_24(p
->mem_ctx
,
5250 &info
->info24
, pwd
);
5254 if (!p
->server_info
->user_session_key
.length
) {
5255 status
= NT_STATUS_NO_USER_SESSION_KEY
;
5257 encode_or_decode_arc4_passwd_buffer(
5258 info
->info25
.password
.data
,
5259 &p
->server_info
->user_session_key
);
5261 dump_data(100, info
->info25
.password
.data
, 532);
5263 status
= set_user_info_25(p
->mem_ctx
,
5264 &info
->info25
, pwd
);
5268 if (!p
->server_info
->user_session_key
.length
) {
5269 status
= NT_STATUS_NO_USER_SESSION_KEY
;
5271 encode_or_decode_arc4_passwd_buffer(
5272 info
->info26
.password
.data
,
5273 &p
->server_info
->user_session_key
);
5275 dump_data(100, info
->info26
.password
.data
, 516);
5277 status
= set_user_info_26(p
->mem_ctx
,
5278 &info
->info26
, pwd
);
5282 status
= NT_STATUS_INVALID_INFO_CLASS
;
5289 /* ================ END Privilege BLOCK ================ */
5291 if (NT_STATUS_IS_OK(status
)) {
5292 force_flush_samr_cache(&uinfo
->sid
);
5298 /*******************************************************************
5300 ********************************************************************/
5302 NTSTATUS
_samr_SetUserInfo2(pipes_struct
*p
,
5303 struct samr_SetUserInfo2
*r
)
5305 struct samr_SetUserInfo q
;
5307 q
.in
.user_handle
= r
->in
.user_handle
;
5308 q
.in
.level
= r
->in
.level
;
5309 q
.in
.info
= r
->in
.info
;
5311 return _samr_SetUserInfo(p
, &q
);
5314 /*********************************************************************
5315 _samr_GetAliasMembership
5316 *********************************************************************/
5318 NTSTATUS
_samr_GetAliasMembership(pipes_struct
*p
,
5319 struct samr_GetAliasMembership
*r
)
5321 size_t num_alias_rids
;
5323 struct samr_domain_info
*dinfo
;
5330 DEBUG(5,("_samr_GetAliasMembership: %d\n", __LINE__
));
5332 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
5333 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS
5334 | SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
, NULL
,
5335 struct samr_domain_info
, &status
);
5336 if (!NT_STATUS_IS_OK(status
)) {
5340 if (!sid_check_is_domain(&dinfo
->sid
) &&
5341 !sid_check_is_builtin(&dinfo
->sid
))
5342 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
5344 if (r
->in
.sids
->num_sids
) {
5345 members
= TALLOC_ARRAY(p
->mem_ctx
, DOM_SID
, r
->in
.sids
->num_sids
);
5347 if (members
== NULL
)
5348 return NT_STATUS_NO_MEMORY
;
5353 for (i
=0; i
<r
->in
.sids
->num_sids
; i
++)
5354 sid_copy(&members
[i
], r
->in
.sids
->sids
[i
].sid
);
5360 status
= pdb_enum_alias_memberships(p
->mem_ctx
, &dinfo
->sid
, members
,
5361 r
->in
.sids
->num_sids
,
5362 &alias_rids
, &num_alias_rids
);
5365 if (!NT_STATUS_IS_OK(status
)) {
5369 r
->out
.rids
->count
= num_alias_rids
;
5370 r
->out
.rids
->ids
= alias_rids
;
5372 if (r
->out
.rids
->ids
== NULL
) {
5373 /* Windows domain clients don't accept a NULL ptr here */
5374 r
->out
.rids
->ids
= talloc_zero(p
->mem_ctx
, uint32_t);
5376 if (r
->out
.rids
->ids
== NULL
) {
5377 return NT_STATUS_NO_MEMORY
;
5380 return NT_STATUS_OK
;
5383 /*********************************************************************
5384 _samr_GetMembersInAlias
5385 *********************************************************************/
5387 NTSTATUS
_samr_GetMembersInAlias(pipes_struct
*p
,
5388 struct samr_GetMembersInAlias
*r
)
5390 struct samr_alias_info
*ainfo
;
5393 size_t num_sids
= 0;
5394 struct lsa_SidPtr
*sids
= NULL
;
5395 DOM_SID
*pdb_sids
= NULL
;
5397 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
5398 SAMR_ALIAS_ACCESS_GET_MEMBERS
, NULL
,
5399 struct samr_alias_info
, &status
);
5400 if (!NT_STATUS_IS_OK(status
)) {
5404 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ainfo
->sid
)));
5407 status
= pdb_enum_aliasmem(&ainfo
->sid
, talloc_tos(), &pdb_sids
,
5411 if (!NT_STATUS_IS_OK(status
)) {
5416 sids
= TALLOC_ZERO_ARRAY(p
->mem_ctx
, struct lsa_SidPtr
, num_sids
);
5418 TALLOC_FREE(pdb_sids
);
5419 return NT_STATUS_NO_MEMORY
;
5423 for (i
= 0; i
< num_sids
; i
++) {
5424 sids
[i
].sid
= sid_dup_talloc(p
->mem_ctx
, &pdb_sids
[i
]);
5426 TALLOC_FREE(pdb_sids
);
5427 return NT_STATUS_NO_MEMORY
;
5431 r
->out
.sids
->num_sids
= num_sids
;
5432 r
->out
.sids
->sids
= sids
;
5434 TALLOC_FREE(pdb_sids
);
5436 return NT_STATUS_OK
;
5439 /*********************************************************************
5440 _samr_QueryGroupMember
5441 *********************************************************************/
5443 NTSTATUS
_samr_QueryGroupMember(pipes_struct
*p
,
5444 struct samr_QueryGroupMember
*r
)
5446 struct samr_group_info
*ginfo
;
5447 size_t i
, num_members
;
5453 struct samr_RidTypeArray
*rids
= NULL
;
5455 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
5456 SAMR_GROUP_ACCESS_GET_MEMBERS
, NULL
,
5457 struct samr_group_info
, &status
);
5458 if (!NT_STATUS_IS_OK(status
)) {
5462 rids
= TALLOC_ZERO_P(p
->mem_ctx
, struct samr_RidTypeArray
);
5464 return NT_STATUS_NO_MEMORY
;
5467 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ginfo
->sid
)));
5469 if (!sid_check_is_in_our_domain(&ginfo
->sid
)) {
5470 DEBUG(3, ("sid %s is not in our domain\n",
5471 sid_string_dbg(&ginfo
->sid
)));
5472 return NT_STATUS_NO_SUCH_GROUP
;
5475 DEBUG(10, ("lookup on Domain SID\n"));
5478 status
= pdb_enum_group_members(p
->mem_ctx
, &ginfo
->sid
,
5479 &rid
, &num_members
);
5482 if (!NT_STATUS_IS_OK(status
))
5486 attr
=TALLOC_ZERO_ARRAY(p
->mem_ctx
, uint32
, num_members
);
5488 return NT_STATUS_NO_MEMORY
;
5494 for (i
=0; i
<num_members
; i
++)
5495 attr
[i
] = SID_NAME_USER
;
5497 rids
->count
= num_members
;
5501 *r
->out
.rids
= rids
;
5503 return NT_STATUS_OK
;
5506 /*********************************************************************
5507 _samr_AddAliasMember
5508 *********************************************************************/
5510 NTSTATUS
_samr_AddAliasMember(pipes_struct
*p
,
5511 struct samr_AddAliasMember
*r
)
5513 struct samr_alias_info
*ainfo
;
5516 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
5517 SAMR_ALIAS_ACCESS_ADD_MEMBER
, NULL
,
5518 struct samr_alias_info
, &status
);
5519 if (!NT_STATUS_IS_OK(status
)) {
5523 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ainfo
->sid
)));
5525 /******** BEGIN SeAddUsers BLOCK *********/
5528 status
= pdb_add_aliasmem(&ainfo
->sid
, r
->in
.sid
);
5531 /******** END SeAddUsers BLOCK *********/
5533 if (NT_STATUS_IS_OK(status
)) {
5534 force_flush_samr_cache(&ainfo
->sid
);
5540 /*********************************************************************
5541 _samr_DeleteAliasMember
5542 *********************************************************************/
5544 NTSTATUS
_samr_DeleteAliasMember(pipes_struct
*p
,
5545 struct samr_DeleteAliasMember
*r
)
5547 struct samr_alias_info
*ainfo
;
5550 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
5551 SAMR_ALIAS_ACCESS_REMOVE_MEMBER
, NULL
,
5552 struct samr_alias_info
, &status
);
5553 if (!NT_STATUS_IS_OK(status
)) {
5557 DEBUG(10, ("_samr_del_aliasmem:sid is %s\n",
5558 sid_string_dbg(&ainfo
->sid
)));
5560 /******** BEGIN SeAddUsers BLOCK *********/
5563 status
= pdb_del_aliasmem(&ainfo
->sid
, r
->in
.sid
);
5566 /******** END SeAddUsers BLOCK *********/
5568 if (NT_STATUS_IS_OK(status
)) {
5569 force_flush_samr_cache(&ainfo
->sid
);
5575 /*********************************************************************
5576 _samr_AddGroupMember
5577 *********************************************************************/
5579 NTSTATUS
_samr_AddGroupMember(pipes_struct
*p
,
5580 struct samr_AddGroupMember
*r
)
5582 struct samr_group_info
*ginfo
;
5586 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
5587 SAMR_GROUP_ACCESS_ADD_MEMBER
, NULL
,
5588 struct samr_group_info
, &status
);
5589 if (!NT_STATUS_IS_OK(status
)) {
5593 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ginfo
->sid
)));
5595 if (!sid_peek_check_rid(get_global_sam_sid(), &ginfo
->sid
,
5597 return NT_STATUS_INVALID_HANDLE
;
5600 /******** BEGIN SeAddUsers BLOCK *********/
5603 status
= pdb_add_groupmem(p
->mem_ctx
, group_rid
, r
->in
.rid
);
5606 /******** END SeAddUsers BLOCK *********/
5608 force_flush_samr_cache(&ginfo
->sid
);
5613 /*********************************************************************
5614 _samr_DeleteGroupMember
5615 *********************************************************************/
5617 NTSTATUS
_samr_DeleteGroupMember(pipes_struct
*p
,
5618 struct samr_DeleteGroupMember
*r
)
5621 struct samr_group_info
*ginfo
;
5626 * delete the group member named r->in.rid
5627 * who is a member of the sid associated with the handle
5628 * the rid is a user's rid as the group is a domain group.
5631 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
5632 SAMR_GROUP_ACCESS_REMOVE_MEMBER
, NULL
,
5633 struct samr_group_info
, &status
);
5634 if (!NT_STATUS_IS_OK(status
)) {
5638 if (!sid_peek_check_rid(get_global_sam_sid(), &ginfo
->sid
,
5640 return NT_STATUS_INVALID_HANDLE
;
5643 /******** BEGIN SeAddUsers BLOCK *********/
5646 status
= pdb_del_groupmem(p
->mem_ctx
, group_rid
, r
->in
.rid
);
5649 /******** END SeAddUsers BLOCK *********/
5651 force_flush_samr_cache(&ginfo
->sid
);
5656 /*********************************************************************
5658 *********************************************************************/
5660 NTSTATUS
_samr_DeleteUser(pipes_struct
*p
,
5661 struct samr_DeleteUser
*r
)
5663 struct samr_user_info
*uinfo
;
5665 struct samu
*sam_pass
=NULL
;
5668 DEBUG(5, ("_samr_DeleteUser: %d\n", __LINE__
));
5670 uinfo
= policy_handle_find(p
, r
->in
.user_handle
,
5671 STD_RIGHT_DELETE_ACCESS
, NULL
,
5672 struct samr_user_info
, &status
);
5673 if (!NT_STATUS_IS_OK(status
)) {
5677 if (!sid_check_is_in_our_domain(&uinfo
->sid
))
5678 return NT_STATUS_CANNOT_DELETE
;
5680 /* check if the user exists before trying to delete */
5681 if ( !(sam_pass
= samu_new( NULL
)) ) {
5682 return NT_STATUS_NO_MEMORY
;
5686 ret
= pdb_getsampwsid(sam_pass
, &uinfo
->sid
);
5690 DEBUG(5,("_samr_DeleteUser: User %s doesn't exist.\n",
5691 sid_string_dbg(&uinfo
->sid
)));
5692 TALLOC_FREE(sam_pass
);
5693 return NT_STATUS_NO_SUCH_USER
;
5696 /******** BEGIN SeAddUsers BLOCK *********/
5699 status
= pdb_delete_user(p
->mem_ctx
, sam_pass
);
5702 /******** END SeAddUsers BLOCK *********/
5704 if ( !NT_STATUS_IS_OK(status
) ) {
5705 DEBUG(5,("_samr_DeleteUser: Failed to delete entry for "
5706 "user %s: %s.\n", pdb_get_username(sam_pass
),
5707 nt_errstr(status
)));
5708 TALLOC_FREE(sam_pass
);
5713 TALLOC_FREE(sam_pass
);
5715 force_flush_samr_cache(&uinfo
->sid
);
5717 if (!close_policy_hnd(p
, r
->in
.user_handle
))
5718 return NT_STATUS_OBJECT_NAME_INVALID
;
5720 ZERO_STRUCTP(r
->out
.user_handle
);
5722 return NT_STATUS_OK
;
5725 /*********************************************************************
5726 _samr_DeleteDomainGroup
5727 *********************************************************************/
5729 NTSTATUS
_samr_DeleteDomainGroup(pipes_struct
*p
,
5730 struct samr_DeleteDomainGroup
*r
)
5732 struct samr_group_info
*ginfo
;
5736 DEBUG(5, ("samr_DeleteDomainGroup: %d\n", __LINE__
));
5738 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
5739 STD_RIGHT_DELETE_ACCESS
, NULL
,
5740 struct samr_group_info
, &status
);
5741 if (!NT_STATUS_IS_OK(status
)) {
5745 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ginfo
->sid
)));
5747 if (!sid_peek_check_rid(get_global_sam_sid(), &ginfo
->sid
,
5749 return NT_STATUS_NO_SUCH_GROUP
;
5752 /******** BEGIN SeAddUsers BLOCK *********/
5755 status
= pdb_delete_dom_group(p
->mem_ctx
, group_rid
);
5758 /******** END SeAddUsers BLOCK *********/
5760 if ( !NT_STATUS_IS_OK(status
) ) {
5761 DEBUG(5,("_samr_DeleteDomainGroup: Failed to delete mapping "
5762 "entry for group %s: %s\n",
5763 sid_string_dbg(&ginfo
->sid
),
5764 nt_errstr(status
)));
5768 force_flush_samr_cache(&ginfo
->sid
);
5770 if (!close_policy_hnd(p
, r
->in
.group_handle
))
5771 return NT_STATUS_OBJECT_NAME_INVALID
;
5773 return NT_STATUS_OK
;
5776 /*********************************************************************
5777 _samr_DeleteDomAlias
5778 *********************************************************************/
5780 NTSTATUS
_samr_DeleteDomAlias(pipes_struct
*p
,
5781 struct samr_DeleteDomAlias
*r
)
5783 struct samr_alias_info
*ainfo
;
5786 DEBUG(5, ("_samr_DeleteDomAlias: %d\n", __LINE__
));
5788 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
5789 STD_RIGHT_DELETE_ACCESS
, NULL
,
5790 struct samr_alias_info
, &status
);
5791 if (!NT_STATUS_IS_OK(status
)) {
5795 DEBUG(10, ("sid is %s\n", sid_string_dbg(&ainfo
->sid
)));
5797 /* Don't let Windows delete builtin groups */
5799 if ( sid_check_is_in_builtin( &ainfo
->sid
) ) {
5800 return NT_STATUS_SPECIAL_ACCOUNT
;
5803 if (!sid_check_is_in_our_domain(&ainfo
->sid
))
5804 return NT_STATUS_NO_SUCH_ALIAS
;
5806 DEBUG(10, ("lookup on Local SID\n"));
5808 /******** BEGIN SeAddUsers BLOCK *********/
5811 /* Have passdb delete the alias */
5812 status
= pdb_delete_alias(&ainfo
->sid
);
5815 /******** END SeAddUsers BLOCK *********/
5817 if ( !NT_STATUS_IS_OK(status
))
5820 force_flush_samr_cache(&ainfo
->sid
);
5822 if (!close_policy_hnd(p
, r
->in
.alias_handle
))
5823 return NT_STATUS_OBJECT_NAME_INVALID
;
5825 return NT_STATUS_OK
;
5828 /*********************************************************************
5829 _samr_CreateDomainGroup
5830 *********************************************************************/
5832 NTSTATUS
_samr_CreateDomainGroup(pipes_struct
*p
,
5833 struct samr_CreateDomainGroup
*r
)
5838 struct samr_domain_info
*dinfo
;
5839 struct samr_group_info
*ginfo
;
5841 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
5842 SAMR_DOMAIN_ACCESS_CREATE_GROUP
, NULL
,
5843 struct samr_domain_info
, &status
);
5844 if (!NT_STATUS_IS_OK(status
)) {
5848 if (!sid_equal(&dinfo
->sid
, get_global_sam_sid()))
5849 return NT_STATUS_ACCESS_DENIED
;
5851 name
= r
->in
.name
->string
;
5853 return NT_STATUS_NO_MEMORY
;
5856 status
= can_create(p
->mem_ctx
, name
);
5857 if (!NT_STATUS_IS_OK(status
)) {
5861 /******** BEGIN SeAddUsers BLOCK *********/
5864 /* check that we successfully create the UNIX group */
5865 status
= pdb_create_dom_group(p
->mem_ctx
, name
, r
->out
.rid
);
5868 /******** END SeAddUsers BLOCK *********/
5870 /* check if we should bail out here */
5872 if ( !NT_STATUS_IS_OK(status
) )
5875 ginfo
= policy_handle_create(p
, r
->out
.group_handle
,
5876 GENERIC_RIGHTS_GROUP_ALL_ACCESS
,
5877 struct samr_group_info
, &status
);
5878 if (!NT_STATUS_IS_OK(status
)) {
5881 sid_compose(&ginfo
->sid
, &dinfo
->sid
, *r
->out
.rid
);
5883 force_flush_samr_cache(&dinfo
->sid
);
5885 return NT_STATUS_OK
;
5888 /*********************************************************************
5889 _samr_CreateDomAlias
5890 *********************************************************************/
5892 NTSTATUS
_samr_CreateDomAlias(pipes_struct
*p
,
5893 struct samr_CreateDomAlias
*r
)
5896 const char *name
= NULL
;
5897 struct samr_domain_info
*dinfo
;
5898 struct samr_alias_info
*ainfo
;
5902 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
5903 SAMR_DOMAIN_ACCESS_CREATE_ALIAS
, NULL
,
5904 struct samr_domain_info
, &result
);
5905 if (!NT_STATUS_IS_OK(result
)) {
5909 if (!sid_equal(&dinfo
->sid
, get_global_sam_sid()))
5910 return NT_STATUS_ACCESS_DENIED
;
5912 name
= r
->in
.alias_name
->string
;
5914 result
= can_create(p
->mem_ctx
, name
);
5915 if (!NT_STATUS_IS_OK(result
)) {
5919 /******** BEGIN SeAddUsers BLOCK *********/
5922 /* Have passdb create the alias */
5923 result
= pdb_create_alias(name
, r
->out
.rid
);
5926 /******** END SeAddUsers BLOCK *********/
5928 if (!NT_STATUS_IS_OK(result
)) {
5929 DEBUG(10, ("pdb_create_alias failed: %s\n",
5930 nt_errstr(result
)));
5934 sid_compose(&info_sid
, &dinfo
->sid
, *r
->out
.rid
);
5936 if (!sid_to_gid(&info_sid
, &gid
)) {
5937 DEBUG(10, ("Could not find alias just created\n"));
5938 return NT_STATUS_ACCESS_DENIED
;
5941 /* check if the group has been successfully created */
5942 if ( getgrgid(gid
) == NULL
) {
5943 DEBUG(10, ("getgrgid(%u) of just created alias failed\n",
5944 (unsigned int)gid
));
5945 return NT_STATUS_ACCESS_DENIED
;
5948 ainfo
= policy_handle_create(p
, r
->out
.alias_handle
,
5949 GENERIC_RIGHTS_ALIAS_ALL_ACCESS
,
5950 struct samr_alias_info
, &result
);
5951 if (!NT_STATUS_IS_OK(result
)) {
5954 ainfo
->sid
= info_sid
;
5956 force_flush_samr_cache(&info_sid
);
5958 return NT_STATUS_OK
;
5961 /*********************************************************************
5962 _samr_QueryGroupInfo
5963 *********************************************************************/
5965 NTSTATUS
_samr_QueryGroupInfo(pipes_struct
*p
,
5966 struct samr_QueryGroupInfo
*r
)
5968 struct samr_group_info
*ginfo
;
5971 union samr_GroupInfo
*info
= NULL
;
5973 uint32_t attributes
= SE_GROUP_MANDATORY
|
5974 SE_GROUP_ENABLED_BY_DEFAULT
|
5976 const char *group_name
= NULL
;
5977 const char *group_description
= NULL
;
5979 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
5980 SAMR_GROUP_ACCESS_LOOKUP_INFO
, NULL
,
5981 struct samr_group_info
, &status
);
5982 if (!NT_STATUS_IS_OK(status
)) {
5987 ret
= get_domain_group_from_sid(ginfo
->sid
, &map
);
5990 return NT_STATUS_INVALID_HANDLE
;
5992 /* FIXME: map contains fstrings */
5993 group_name
= talloc_strdup(r
, map
.nt_name
);
5994 group_description
= talloc_strdup(r
, map
.comment
);
5996 info
= TALLOC_ZERO_P(p
->mem_ctx
, union samr_GroupInfo
);
5998 return NT_STATUS_NO_MEMORY
;
6001 switch (r
->in
.level
) {
6007 status
= pdb_enum_group_members(
6008 p
->mem_ctx
, &ginfo
->sid
, &members
,
6012 if (!NT_STATUS_IS_OK(status
)) {
6016 info
->all
.name
.string
= group_name
;
6017 info
->all
.attributes
= attributes
;
6018 info
->all
.num_members
= num_members
;
6019 info
->all
.description
.string
= group_description
;
6023 info
->name
.string
= group_name
;
6026 info
->attributes
.attributes
= attributes
;
6029 info
->description
.string
= group_description
;
6039 status = pdb_enum_group_members(
6040 p->mem_ctx, &ginfo->sid, &members,
6044 if (!NT_STATUS_IS_OK(status)) {
6048 info
->all2
.name
.string
= group_name
;
6049 info
->all2
.attributes
= attributes
;
6050 info
->all2
.num_members
= 0; /* num_members - in w2k3 this is always 0 */
6051 info
->all2
.description
.string
= group_description
;
6056 return NT_STATUS_INVALID_INFO_CLASS
;
6059 *r
->out
.info
= info
;
6061 return NT_STATUS_OK
;
6064 /*********************************************************************
6066 *********************************************************************/
6068 NTSTATUS
_samr_SetGroupInfo(pipes_struct
*p
,
6069 struct samr_SetGroupInfo
*r
)
6071 struct samr_group_info
*ginfo
;
6076 ginfo
= policy_handle_find(p
, r
->in
.group_handle
,
6077 SAMR_GROUP_ACCESS_SET_INFO
, NULL
,
6078 struct samr_group_info
, &status
);
6079 if (!NT_STATUS_IS_OK(status
)) {
6084 ret
= get_domain_group_from_sid(ginfo
->sid
, &map
);
6087 return NT_STATUS_NO_SUCH_GROUP
;
6089 switch (r
->in
.level
) {
6091 fstrcpy(map
.nt_name
, r
->in
.info
->name
.string
);
6096 fstrcpy(map
.comment
, r
->in
.info
->description
.string
);
6099 return NT_STATUS_INVALID_INFO_CLASS
;
6102 /******** BEGIN SeAddUsers BLOCK *********/
6105 status
= pdb_update_group_mapping_entry(&map
);
6108 /******** End SeAddUsers BLOCK *********/
6110 if (NT_STATUS_IS_OK(status
)) {
6111 force_flush_samr_cache(&ginfo
->sid
);
6117 /*********************************************************************
6119 *********************************************************************/
6121 NTSTATUS
_samr_SetAliasInfo(pipes_struct
*p
,
6122 struct samr_SetAliasInfo
*r
)
6124 struct samr_alias_info
*ainfo
;
6125 struct acct_info info
;
6128 ainfo
= policy_handle_find(p
, r
->in
.alias_handle
,
6129 SAMR_ALIAS_ACCESS_SET_INFO
, NULL
,
6130 struct samr_alias_info
, &status
);
6131 if (!NT_STATUS_IS_OK(status
)) {
6135 /* get the current group information */
6138 status
= pdb_get_aliasinfo( &ainfo
->sid
, &info
);
6141 if ( !NT_STATUS_IS_OK(status
))
6144 switch (r
->in
.level
) {
6149 /* We currently do not support renaming groups in the
6150 the BUILTIN domain. Refer to util_builtin.c to understand
6151 why. The eventually needs to be fixed to be like Windows
6152 where you can rename builtin groups, just not delete them */
6154 if ( sid_check_is_in_builtin( &ainfo
->sid
) ) {
6155 return NT_STATUS_SPECIAL_ACCOUNT
;
6158 /* There has to be a valid name (and it has to be different) */
6160 if ( !r
->in
.info
->name
.string
)
6161 return NT_STATUS_INVALID_PARAMETER
;
6163 /* If the name is the same just reply "ok". Yes this
6164 doesn't allow you to change the case of a group name. */
6166 if ( strequal( r
->in
.info
->name
.string
, info
.acct_name
) )
6167 return NT_STATUS_OK
;
6169 fstrcpy( info
.acct_name
, r
->in
.info
->name
.string
);
6171 /* make sure the name doesn't already exist as a user
6174 fstr_sprintf( group_name
, "%s\\%s", global_myname(), info
.acct_name
);
6175 status
= can_create( p
->mem_ctx
, group_name
);
6176 if ( !NT_STATUS_IS_OK( status
) )
6180 case ALIASINFODESCRIPTION
:
6181 if (r
->in
.info
->description
.string
) {
6182 fstrcpy(info
.acct_desc
,
6183 r
->in
.info
->description
.string
);
6185 fstrcpy( info
.acct_desc
, "" );
6189 return NT_STATUS_INVALID_INFO_CLASS
;
6192 /******** BEGIN SeAddUsers BLOCK *********/
6195 status
= pdb_set_aliasinfo( &ainfo
->sid
, &info
);
6198 /******** End SeAddUsers BLOCK *********/
6200 if (NT_STATUS_IS_OK(status
))
6201 force_flush_samr_cache(&ainfo
->sid
);
6206 /****************************************************************
6208 ****************************************************************/
6210 NTSTATUS
_samr_GetDomPwInfo(pipes_struct
*p
,
6211 struct samr_GetDomPwInfo
*r
)
6213 uint32_t min_password_length
= 0;
6214 uint32_t password_properties
= 0;
6216 /* Perform access check. Since this rpc does not require a
6217 policy handle it will not be caught by the access checks on
6218 SAMR_CONNECT or SAMR_CONNECT_ANON. */
6220 if (!pipe_access_check(p
)) {
6221 DEBUG(3, ("access denied to _samr_GetDomPwInfo\n"));
6222 return NT_STATUS_ACCESS_DENIED
;
6226 pdb_get_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
,
6227 &min_password_length
);
6228 pdb_get_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
6229 &password_properties
);
6232 if (lp_check_password_script() && *lp_check_password_script()) {
6233 password_properties
|= DOMAIN_PASSWORD_COMPLEX
;
6236 r
->out
.info
->min_password_length
= min_password_length
;
6237 r
->out
.info
->password_properties
= password_properties
;
6239 return NT_STATUS_OK
;
6242 /*********************************************************************
6244 *********************************************************************/
6246 NTSTATUS
_samr_OpenGroup(pipes_struct
*p
,
6247 struct samr_OpenGroup
*r
)
6252 struct samr_domain_info
*dinfo
;
6253 struct samr_group_info
*ginfo
;
6254 SEC_DESC
*psd
= NULL
;
6256 uint32 des_access
= r
->in
.access_mask
;
6262 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
6263 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
, NULL
,
6264 struct samr_domain_info
, &status
);
6265 if (!NT_STATUS_IS_OK(status
)) {
6269 /*check if access can be granted as requested by client. */
6270 map_max_allowed_access(p
->server_info
->ptok
,
6271 &p
->server_info
->utok
,
6274 make_samr_object_sd(p
->mem_ctx
, &psd
, &sd_size
, &grp_generic_mapping
, NULL
, 0);
6275 se_map_generic(&des_access
,&grp_generic_mapping
);
6277 se_priv_copy( &se_rights
, &se_add_users
);
6279 status
= access_check_object(psd
, p
->server_info
->ptok
,
6280 &se_rights
, GENERIC_RIGHTS_GROUP_ALL_ACCESS
,
6281 des_access
, &acc_granted
, "_samr_OpenGroup");
6283 if ( !NT_STATUS_IS_OK(status
) )
6286 /* this should not be hard-coded like this */
6288 if (!sid_equal(&dinfo
->sid
, get_global_sam_sid()))
6289 return NT_STATUS_ACCESS_DENIED
;
6291 sid_compose(&info_sid
, &dinfo
->sid
, r
->in
.rid
);
6293 DEBUG(10, ("_samr_OpenGroup:Opening SID: %s\n",
6294 sid_string_dbg(&info_sid
)));
6296 /* check if that group really exists */
6298 ret
= get_domain_group_from_sid(info_sid
, &map
);
6301 return NT_STATUS_NO_SUCH_GROUP
;
6303 ginfo
= policy_handle_create(p
, r
->out
.group_handle
,
6305 struct samr_group_info
, &status
);
6306 if (!NT_STATUS_IS_OK(status
)) {
6309 ginfo
->sid
= info_sid
;
6311 return NT_STATUS_OK
;
6314 /*********************************************************************
6315 _samr_RemoveMemberFromForeignDomain
6316 *********************************************************************/
6318 NTSTATUS
_samr_RemoveMemberFromForeignDomain(pipes_struct
*p
,
6319 struct samr_RemoveMemberFromForeignDomain
*r
)
6321 struct samr_domain_info
*dinfo
;
6324 DEBUG(5,("_samr_RemoveMemberFromForeignDomain: removing SID [%s]\n",
6325 sid_string_dbg(r
->in
.sid
)));
6327 /* Find the policy handle. Open a policy on it. */
6329 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
6330 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT
, NULL
,
6331 struct samr_domain_info
, &result
);
6332 if (!NT_STATUS_IS_OK(result
)) {
6336 DEBUG(8, ("_samr_RemoveMemberFromForeignDomain: sid is %s\n",
6337 sid_string_dbg(&dinfo
->sid
)));
6339 /* we can only delete a user from a group since we don't have
6340 nested groups anyways. So in the latter case, just say OK */
6342 /* TODO: The above comment nowadays is bogus. Since we have nested
6343 * groups now, and aliases members are never reported out of the unix
6344 * group membership, the "just say OK" makes this call a no-op. For
6345 * us. This needs fixing however. */
6347 /* I've only ever seen this in the wild when deleting a user from
6348 * usrmgr.exe. domain_sid is the builtin domain, and the sid to delete
6349 * is the user about to be deleted. I very much suspect this is the
6350 * only application of this call. To verify this, let people report
6353 if (!sid_check_is_builtin(&dinfo
->sid
)) {
6354 DEBUG(1,("_samr_RemoveMemberFromForeignDomain: domain_sid = %s, "
6355 "global_sam_sid() = %s\n",
6356 sid_string_dbg(&dinfo
->sid
),
6357 sid_string_dbg(get_global_sam_sid())));
6358 DEBUGADD(1,("please report to samba-technical@samba.org!\n"));
6359 return NT_STATUS_OK
;
6362 force_flush_samr_cache(&dinfo
->sid
);
6364 result
= NT_STATUS_OK
;
6369 /*******************************************************************
6370 _samr_QueryDomainInfo2
6371 ********************************************************************/
6373 NTSTATUS
_samr_QueryDomainInfo2(pipes_struct
*p
,
6374 struct samr_QueryDomainInfo2
*r
)
6376 struct samr_QueryDomainInfo q
;
6378 q
.in
.domain_handle
= r
->in
.domain_handle
;
6379 q
.in
.level
= r
->in
.level
;
6381 q
.out
.info
= r
->out
.info
;
6383 return _samr_QueryDomainInfo(p
, &q
);
6386 /*******************************************************************
6387 ********************************************************************/
6389 static NTSTATUS
set_dom_info_1(TALLOC_CTX
*mem_ctx
,
6390 struct samr_DomInfo1
*r
)
6392 time_t u_expire
, u_min_age
;
6394 u_expire
= nt_time_to_unix_abs((NTTIME
*)&r
->max_password_age
);
6395 u_min_age
= nt_time_to_unix_abs((NTTIME
*)&r
->min_password_age
);
6397 pdb_set_account_policy(PDB_POLICY_MIN_PASSWORD_LEN
,
6398 (uint32_t)r
->min_password_length
);
6399 pdb_set_account_policy(PDB_POLICY_PASSWORD_HISTORY
,
6400 (uint32_t)r
->password_history_length
);
6401 pdb_set_account_policy(PDB_POLICY_USER_MUST_LOGON_TO_CHG_PASS
,
6402 (uint32_t)r
->password_properties
);
6403 pdb_set_account_policy(PDB_POLICY_MAX_PASSWORD_AGE
, (int)u_expire
);
6404 pdb_set_account_policy(PDB_POLICY_MIN_PASSWORD_AGE
, (int)u_min_age
);
6406 return NT_STATUS_OK
;
6409 /*******************************************************************
6410 ********************************************************************/
6412 static NTSTATUS
set_dom_info_3(TALLOC_CTX
*mem_ctx
,
6413 struct samr_DomInfo3
*r
)
6417 u_logout
= nt_time_to_unix_abs((NTTIME
*)&r
->force_logoff_time
);
6419 pdb_set_account_policy(PDB_POLICY_TIME_TO_LOGOUT
, (int)u_logout
);
6421 return NT_STATUS_OK
;
6424 /*******************************************************************
6425 ********************************************************************/
6427 static NTSTATUS
set_dom_info_12(TALLOC_CTX
*mem_ctx
,
6428 struct samr_DomInfo12
*r
)
6430 time_t u_lock_duration
, u_reset_time
;
6432 u_lock_duration
= nt_time_to_unix_abs((NTTIME
*)&r
->lockout_duration
);
6433 if (u_lock_duration
!= -1) {
6434 u_lock_duration
/= 60;
6437 u_reset_time
= nt_time_to_unix_abs((NTTIME
*)&r
->lockout_window
)/60;
6439 pdb_set_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
, (int)u_lock_duration
);
6440 pdb_set_account_policy(PDB_POLICY_RESET_COUNT_TIME
, (int)u_reset_time
);
6441 pdb_set_account_policy(PDB_POLICY_BAD_ATTEMPT_LOCKOUT
,
6442 (uint32_t)r
->lockout_threshold
);
6444 return NT_STATUS_OK
;
6447 /*******************************************************************
6449 ********************************************************************/
6451 NTSTATUS
_samr_SetDomainInfo(pipes_struct
*p
,
6452 struct samr_SetDomainInfo
*r
)
6454 struct samr_domain_info
*dinfo
;
6456 uint32_t acc_required
= 0;
6458 DEBUG(5,("_samr_SetDomainInfo: %d\n", __LINE__
));
6460 switch (r
->in
.level
) {
6461 case 1: /* DomainPasswordInformation */
6462 case 12: /* DomainLockoutInformation */
6463 /* DOMAIN_WRITE_PASSWORD_PARAMETERS */
6464 acc_required
= SAMR_DOMAIN_ACCESS_SET_INFO_1
;
6466 case 3: /* DomainLogoffInformation */
6467 case 4: /* DomainOemInformation */
6468 /* DOMAIN_WRITE_OTHER_PARAMETERS */
6469 acc_required
= SAMR_DOMAIN_ACCESS_SET_INFO_2
;
6471 case 6: /* DomainReplicationInformation */
6472 case 9: /* DomainStateInformation */
6473 case 7: /* DomainServerRoleInformation */
6474 /* DOMAIN_ADMINISTER_SERVER */
6475 acc_required
= SAMR_DOMAIN_ACCESS_SET_INFO_3
;
6478 return NT_STATUS_INVALID_INFO_CLASS
;
6481 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
6483 struct samr_domain_info
, &status
);
6484 if (!NT_STATUS_IS_OK(status
)) {
6488 DEBUG(5,("_samr_SetDomainInfo: level: %d\n", r
->in
.level
));
6490 switch (r
->in
.level
) {
6492 status
= set_dom_info_1(p
->mem_ctx
, &r
->in
.info
->info1
);
6495 status
= set_dom_info_3(p
->mem_ctx
, &r
->in
.info
->info3
);
6506 status
= set_dom_info_12(p
->mem_ctx
, &r
->in
.info
->info12
);
6509 return NT_STATUS_INVALID_INFO_CLASS
;
6512 if (!NT_STATUS_IS_OK(status
)) {
6516 DEBUG(5,("_samr_SetDomainInfo: %d\n", __LINE__
));
6518 return NT_STATUS_OK
;
6521 /****************************************************************
6522 _samr_GetDisplayEnumerationIndex
6523 ****************************************************************/
6525 NTSTATUS
_samr_GetDisplayEnumerationIndex(pipes_struct
*p
,
6526 struct samr_GetDisplayEnumerationIndex
*r
)
6528 struct samr_domain_info
*dinfo
;
6529 uint32_t max_entries
= (uint32_t) -1;
6530 uint32_t enum_context
= 0;
6532 uint32_t num_account
= 0;
6533 struct samr_displayentry
*entries
= NULL
;
6536 DEBUG(5,("_samr_GetDisplayEnumerationIndex: %d\n", __LINE__
));
6538 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
6539 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS
, NULL
,
6540 struct samr_domain_info
, &status
);
6541 if (!NT_STATUS_IS_OK(status
)) {
6545 if ((r
->in
.level
< 1) || (r
->in
.level
> 3)) {
6546 DEBUG(0,("_samr_GetDisplayEnumerationIndex: "
6547 "Unknown info level (%u)\n",
6549 return NT_STATUS_INVALID_INFO_CLASS
;
6554 /* The following done as ROOT. Don't return without unbecome_root(). */
6556 switch (r
->in
.level
) {
6558 if (dinfo
->disp_info
->users
== NULL
) {
6559 dinfo
->disp_info
->users
= pdb_search_users(
6560 dinfo
->disp_info
, ACB_NORMAL
);
6561 if (dinfo
->disp_info
->users
== NULL
) {
6563 return NT_STATUS_ACCESS_DENIED
;
6565 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6566 "starting user enumeration at index %u\n",
6567 (unsigned int)enum_context
));
6569 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6570 "using cached user enumeration at index %u\n",
6571 (unsigned int)enum_context
));
6573 num_account
= pdb_search_entries(dinfo
->disp_info
->users
,
6574 enum_context
, max_entries
,
6578 if (dinfo
->disp_info
->machines
== NULL
) {
6579 dinfo
->disp_info
->machines
= pdb_search_users(
6580 dinfo
->disp_info
, ACB_WSTRUST
|ACB_SVRTRUST
);
6581 if (dinfo
->disp_info
->machines
== NULL
) {
6583 return NT_STATUS_ACCESS_DENIED
;
6585 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6586 "starting machine enumeration at index %u\n",
6587 (unsigned int)enum_context
));
6589 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6590 "using cached machine enumeration at index %u\n",
6591 (unsigned int)enum_context
));
6593 num_account
= pdb_search_entries(dinfo
->disp_info
->machines
,
6594 enum_context
, max_entries
,
6598 if (dinfo
->disp_info
->groups
== NULL
) {
6599 dinfo
->disp_info
->groups
= pdb_search_groups(
6601 if (dinfo
->disp_info
->groups
== NULL
) {
6603 return NT_STATUS_ACCESS_DENIED
;
6605 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6606 "starting group enumeration at index %u\n",
6607 (unsigned int)enum_context
));
6609 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6610 "using cached group enumeration at index %u\n",
6611 (unsigned int)enum_context
));
6613 num_account
= pdb_search_entries(dinfo
->disp_info
->groups
,
6614 enum_context
, max_entries
,
6619 smb_panic("info class changed");
6625 /* Ensure we cache this enumeration. */
6626 set_disp_info_cache_timeout(dinfo
->disp_info
, DISP_INFO_CACHE_TIMEOUT
);
6628 DEBUG(10,("_samr_GetDisplayEnumerationIndex: looking for :%s\n",
6629 r
->in
.name
->string
));
6631 for (i
=0; i
<num_account
; i
++) {
6632 if (strequal(entries
[i
].account_name
, r
->in
.name
->string
)) {
6633 DEBUG(10,("_samr_GetDisplayEnumerationIndex: "
6634 "found %s at idx %d\n",
6635 r
->in
.name
->string
, i
));
6637 return NT_STATUS_OK
;
6641 /* assuming account_name lives at the very end */
6642 *r
->out
.idx
= num_account
;
6644 return NT_STATUS_NO_MORE_ENTRIES
;
6647 /****************************************************************
6648 _samr_GetDisplayEnumerationIndex2
6649 ****************************************************************/
6651 NTSTATUS
_samr_GetDisplayEnumerationIndex2(pipes_struct
*p
,
6652 struct samr_GetDisplayEnumerationIndex2
*r
)
6654 struct samr_GetDisplayEnumerationIndex q
;
6656 q
.in
.domain_handle
= r
->in
.domain_handle
;
6657 q
.in
.level
= r
->in
.level
;
6658 q
.in
.name
= r
->in
.name
;
6660 q
.out
.idx
= r
->out
.idx
;
6662 return _samr_GetDisplayEnumerationIndex(p
, &q
);
6665 /****************************************************************
6667 ****************************************************************/
6669 NTSTATUS
_samr_RidToSid(pipes_struct
*p
,
6670 struct samr_RidToSid
*r
)
6672 struct samr_domain_info
*dinfo
;
6676 dinfo
= policy_handle_find(p
, r
->in
.domain_handle
,
6678 struct samr_domain_info
, &status
);
6679 if (!NT_STATUS_IS_OK(status
)) {
6683 if (!sid_compose(&sid
, &dinfo
->sid
, r
->in
.rid
)) {
6684 return NT_STATUS_NO_MEMORY
;
6687 *r
->out
.sid
= sid_dup_talloc(p
->mem_ctx
, &sid
);
6689 return NT_STATUS_NO_MEMORY
;
6692 return NT_STATUS_OK
;
6695 /****************************************************************
6696 ****************************************************************/
6698 NTSTATUS
_samr_Shutdown(pipes_struct
*p
,
6699 struct samr_Shutdown
*r
)
6701 p
->rng_fault_state
= true;
6702 return NT_STATUS_NOT_IMPLEMENTED
;
6705 /****************************************************************
6706 ****************************************************************/
6708 NTSTATUS
_samr_SetMemberAttributesOfGroup(pipes_struct
*p
,
6709 struct samr_SetMemberAttributesOfGroup
*r
)
6711 p
->rng_fault_state
= true;
6712 return NT_STATUS_NOT_IMPLEMENTED
;
6715 /****************************************************************
6716 ****************************************************************/
6718 NTSTATUS
_samr_TestPrivateFunctionsDomain(pipes_struct
*p
,
6719 struct samr_TestPrivateFunctionsDomain
*r
)
6721 return NT_STATUS_NOT_IMPLEMENTED
;
6724 /****************************************************************
6725 ****************************************************************/
6727 NTSTATUS
_samr_TestPrivateFunctionsUser(pipes_struct
*p
,
6728 struct samr_TestPrivateFunctionsUser
*r
)
6730 return NT_STATUS_NOT_IMPLEMENTED
;
6733 /****************************************************************
6734 ****************************************************************/
6736 NTSTATUS
_samr_AddMultipleMembersToAlias(pipes_struct
*p
,
6737 struct samr_AddMultipleMembersToAlias
*r
)
6739 p
->rng_fault_state
= true;
6740 return NT_STATUS_NOT_IMPLEMENTED
;
6743 /****************************************************************
6744 ****************************************************************/
6746 NTSTATUS
_samr_RemoveMultipleMembersFromAlias(pipes_struct
*p
,
6747 struct samr_RemoveMultipleMembersFromAlias
*r
)
6749 p
->rng_fault_state
= true;
6750 return NT_STATUS_NOT_IMPLEMENTED
;
6753 /****************************************************************
6754 ****************************************************************/
6756 NTSTATUS
_samr_SetBootKeyInformation(pipes_struct
*p
,
6757 struct samr_SetBootKeyInformation
*r
)
6759 p
->rng_fault_state
= true;
6760 return NT_STATUS_NOT_IMPLEMENTED
;
6763 /****************************************************************
6764 ****************************************************************/
6766 NTSTATUS
_samr_GetBootKeyInformation(pipes_struct
*p
,
6767 struct samr_GetBootKeyInformation
*r
)
6769 p
->rng_fault_state
= true;
6770 return NT_STATUS_NOT_IMPLEMENTED
;
6773 /****************************************************************
6774 ****************************************************************/
6776 NTSTATUS
_samr_SetDsrmPassword(pipes_struct
*p
,
6777 struct samr_SetDsrmPassword
*r
)
6779 p
->rng_fault_state
= true;
6780 return NT_STATUS_NOT_IMPLEMENTED
;
6783 /****************************************************************
6784 ****************************************************************/
6786 NTSTATUS
_samr_ValidatePassword(pipes_struct
*p
,
6787 struct samr_ValidatePassword
*r
)
6789 p
->rng_fault_state
= true;
6790 return NT_STATUS_NOT_IMPLEMENTED
;