2 Unix SMB/CIFS implementation.
3 Password and authentication handling
4 Copyright (C) Andrew Bartlett 2002
5 Copyright (C) Jelmer Vernooij 2002
6 Copyright (C) Simo Sorce 2003
7 Copyright (C) Volker Lendecke 2006
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "system/passwd.h"
28 #include "../librpc/gen_ndr/samr.h"
29 #include "../librpc/gen_ndr/drsblobs.h"
30 #include "../librpc/gen_ndr/ndr_drsblobs.h"
31 #include "../librpc/gen_ndr/idmap.h"
33 #include "nsswitch/winbind_client.h"
34 #include "../libcli/security/security.h"
35 #include "../lib/util/util_pw.h"
36 #include "passdb/pdb_secrets.h"
39 #define DBGC_CLASS DBGC_PASSDB
43 static struct pdb_init_function_entry
*backends
= NULL
;
45 static void lazy_initialize_passdb(void)
47 static bool initialized
= False
;
55 static bool lookup_global_sam_rid(TALLOC_CTX
*mem_ctx
, uint32 rid
,
57 enum lsa_SidType
*psid_name_use
,
58 uid_t
*uid
, gid_t
*gid
);
60 NTSTATUS
smb_register_passdb(int version
, const char *name
, pdb_init_function init
)
62 struct pdb_init_function_entry
*entry
= backends
;
64 if(version
!= PASSDB_INTERFACE_VERSION
) {
65 DEBUG(0,("Can't register passdb backend!\n"
66 "You tried to register a passdb module with PASSDB_INTERFACE_VERSION %d, "
67 "while this version of samba uses version %d\n",
68 version
,PASSDB_INTERFACE_VERSION
));
69 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
73 return NT_STATUS_INVALID_PARAMETER
;
76 DEBUG(5,("Attempting to register passdb backend %s\n", name
));
78 /* Check for duplicates */
79 if (pdb_find_backend_entry(name
)) {
80 DEBUG(0,("There already is a passdb backend registered with the name %s!\n", name
));
81 return NT_STATUS_OBJECT_NAME_COLLISION
;
84 entry
= SMB_XMALLOC_P(struct pdb_init_function_entry
);
85 entry
->name
= smb_xstrdup(name
);
88 DLIST_ADD(backends
, entry
);
89 DEBUG(5,("Successfully added passdb backend '%s'\n", name
));
93 struct pdb_init_function_entry
*pdb_find_backend_entry(const char *name
)
95 struct pdb_init_function_entry
*entry
= backends
;
98 if (strcmp(entry
->name
, name
)==0) return entry
;
105 const struct pdb_init_function_entry
*pdb_get_backends(void)
112 * The event context for the passdb backend. I know this is a bad hack and yet
113 * another static variable, but our pdb API is a global thing per
114 * definition. The first use for this is the LDAP idle function, more might be
117 * I don't feel too bad about this static variable, it replaces the
118 * smb_idle_event_list that used to exist in lib/module.c. -- VL
121 static struct tevent_context
*pdb_tevent_ctx
;
123 struct tevent_context
*pdb_get_tevent_context(void)
125 return pdb_tevent_ctx
;
128 /******************************************************************
129 Make a pdb_methods from scratch
130 *******************************************************************/
132 NTSTATUS
make_pdb_method_name(struct pdb_methods
**methods
, const char *selected
)
134 char *module_name
= smb_xstrdup(selected
);
135 char *module_location
= NULL
, *p
;
136 struct pdb_init_function_entry
*entry
;
137 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
139 lazy_initialize_passdb();
141 p
= strchr(module_name
, ':');
145 module_location
= p
+1;
146 trim_char(module_location
, ' ', ' ');
149 trim_char(module_name
, ' ', ' ');
152 DEBUG(5,("Attempting to find a passdb backend to match %s (%s)\n", selected
, module_name
));
154 entry
= pdb_find_backend_entry(module_name
);
156 /* Try to find a module that contains this module */
158 DEBUG(2,("No builtin backend found, trying to load plugin\n"));
159 if(NT_STATUS_IS_OK(smb_probe_module("pdb", module_name
)) && !(entry
= pdb_find_backend_entry(module_name
))) {
160 DEBUG(0,("Plugin is available, but doesn't register passdb backend %s\n", module_name
));
161 SAFE_FREE(module_name
);
162 return NT_STATUS_UNSUCCESSFUL
;
166 /* No such backend found */
168 DEBUG(0,("No builtin nor plugin backend for %s found\n", module_name
));
169 SAFE_FREE(module_name
);
170 return NT_STATUS_INVALID_PARAMETER
;
173 DEBUG(5,("Found pdb backend %s\n", module_name
));
175 if ( !NT_STATUS_IS_OK( nt_status
= entry
->init(methods
, module_location
) ) ) {
176 DEBUG(0,("pdb backend %s did not correctly init (error was %s)\n",
177 selected
, nt_errstr(nt_status
)));
178 SAFE_FREE(module_name
);
182 SAFE_FREE(module_name
);
184 DEBUG(5,("pdb backend %s has a valid init\n", selected
));
189 /******************************************************************
190 Return an already initialized pdb_methods structure
191 *******************************************************************/
193 static struct pdb_methods
*pdb_get_methods_reload( bool reload
)
195 static struct pdb_methods
*pdb
= NULL
;
197 if ( pdb
&& reload
) {
198 if (pdb
->free_private_data
!= NULL
) {
199 pdb
->free_private_data( &(pdb
->private_data
) );
201 if ( !NT_STATUS_IS_OK( make_pdb_method_name( &pdb
, lp_passdb_backend() ) ) ) {
207 if ( !NT_STATUS_IS_OK( make_pdb_method_name( &pdb
, lp_passdb_backend() ) ) ) {
215 static struct pdb_methods
*pdb_get_methods(void)
217 struct pdb_methods
*pdb
;
219 pdb
= pdb_get_methods_reload(false);
222 if (asprintf(&msg
, "pdb_get_methods: "
223 "failed to get pdb methods for backend %s\n",
224 lp_passdb_backend()) > 0) {
227 smb_panic("pdb_get_methods");
234 struct pdb_domain_info
*pdb_get_domain_info(TALLOC_CTX
*mem_ctx
)
236 struct pdb_methods
*pdb
= pdb_get_methods();
237 return pdb
->get_domain_info(pdb
, mem_ctx
);
241 * @brief Check if the user account has been locked out and try to unlock it.
243 * If the user has been automatically locked out and a lockout duration is set,
244 * then check if we can unlock the account and reset the bad password values.
246 * @param[in] sampass The sam user to check.
248 * @return True if the function was successfull, false on an error.
250 static bool pdb_try_account_unlock(struct samu
*sampass
)
252 uint32_t acb_info
= pdb_get_acct_ctrl(sampass
);
254 if ((acb_info
& ACB_NORMAL
) && (acb_info
& ACB_AUTOLOCK
)) {
255 uint32_t lockout_duration
;
256 time_t bad_password_time
;
257 time_t now
= time(NULL
);
260 ok
= pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
,
263 DEBUG(0, ("pdb_try_account_unlock: "
264 "pdb_get_account_policy failed.\n"));
268 if (lockout_duration
== (uint32_t) -1 ||
269 lockout_duration
== 0) {
270 DEBUG(9, ("pdb_try_account_unlock: No reset duration, "
271 "can't reset autolock\n"));
274 lockout_duration
*= 60;
276 bad_password_time
= pdb_get_bad_password_time(sampass
);
277 if (bad_password_time
== (time_t) 0) {
278 DEBUG(2, ("pdb_try_account_unlock: Account %s "
279 "administratively locked out "
280 "with no bad password "
281 "time. Leaving locked out.\n",
282 pdb_get_username(sampass
)));
286 if ((bad_password_time
+
287 convert_uint32_t_to_time_t(lockout_duration
)) < now
) {
290 pdb_set_acct_ctrl(sampass
, acb_info
& ~ACB_AUTOLOCK
,
292 pdb_set_bad_password_count(sampass
, 0, PDB_CHANGED
);
293 pdb_set_bad_password_time(sampass
, 0, PDB_CHANGED
);
296 status
= pdb_update_sam_account(sampass
);
298 if (!NT_STATUS_IS_OK(status
)) {
299 DEBUG(0, ("_samr_OpenUser: Couldn't "
300 "update account %s - %s\n",
301 pdb_get_username(sampass
),
312 * @brief Get a sam user structure by the given username.
314 * This functions also checks if the account has been automatically locked out
315 * and unlocks it if a lockout duration time has been defined and the time has
318 * @param[in] sam_acct The sam user structure to fill.
320 * @param[in] username The username to look for.
322 * @return True on success, false on error.
324 bool pdb_getsampwnam(struct samu
*sam_acct
, const char *username
)
326 struct pdb_methods
*pdb
= pdb_get_methods();
327 struct samu
*for_cache
;
328 const struct dom_sid
*user_sid
;
332 status
= pdb
->getsampwnam(pdb
, sam_acct
, username
);
333 if (!NT_STATUS_IS_OK(status
)) {
337 ok
= pdb_try_account_unlock(sam_acct
);
339 DEBUG(1, ("pdb_getsampwnam: Failed to unlock account %s\n",
343 for_cache
= samu_new(NULL
);
344 if (for_cache
== NULL
) {
348 if (!pdb_copy_sam_account(for_cache
, sam_acct
)) {
349 TALLOC_FREE(for_cache
);
353 user_sid
= pdb_get_user_sid(for_cache
);
355 memcache_add_talloc(NULL
, PDB_GETPWSID_CACHE
,
356 data_blob_const(user_sid
, sizeof(*user_sid
)),
362 /**********************************************************************
363 **********************************************************************/
365 static bool guest_user_info( struct samu
*user
)
369 const char *guestname
= lp_guestaccount();
371 pwd
= Get_Pwnam_alloc(talloc_tos(), guestname
);
373 DEBUG(0,("guest_user_info: Unable to locate guest account [%s]!\n",
378 result
= samu_set_unix(user
, pwd
);
382 return NT_STATUS_IS_OK( result
);
386 * @brief Get a sam user structure by the given username.
388 * This functions also checks if the account has been automatically locked out
389 * and unlocks it if a lockout duration time has been defined and the time has
393 * @param[in] sam_acct The sam user structure to fill.
395 * @param[in] sid The user SDI to look up.
397 * @return True on success, false on error.
399 bool pdb_getsampwsid(struct samu
*sam_acct
, const struct dom_sid
*sid
)
401 struct pdb_methods
*pdb
= pdb_get_methods();
406 /* hard code the Guest RID of 501 */
408 if ( !sid_peek_check_rid( get_global_sam_sid(), sid
, &rid
) )
411 if ( rid
== DOMAIN_RID_GUEST
) {
412 DEBUG(6,("pdb_getsampwsid: Building guest account\n"));
413 return guest_user_info( sam_acct
);
416 /* check the cache first */
418 cache_data
= memcache_lookup_talloc(
419 NULL
, PDB_GETPWSID_CACHE
, data_blob_const(sid
, sizeof(*sid
)));
421 if (cache_data
!= NULL
) {
422 struct samu
*cache_copy
= talloc_get_type_abort(
423 cache_data
, struct samu
);
425 ok
= pdb_copy_sam_account(sam_acct
, cache_copy
);
427 ok
= NT_STATUS_IS_OK(pdb
->getsampwsid(pdb
, sam_acct
, sid
));
434 ok
= pdb_try_account_unlock(sam_acct
);
436 DEBUG(1, ("pdb_getsampwsid: Failed to unlock account %s\n",
437 sam_acct
->username
));
443 static NTSTATUS
pdb_default_create_user(struct pdb_methods
*methods
,
444 TALLOC_CTX
*tmp_ctx
, const char *name
,
445 uint32_t acb_info
, uint32_t *rid
)
447 struct samu
*sam_pass
;
451 if ((sam_pass
= samu_new(tmp_ctx
)) == NULL
) {
452 return NT_STATUS_NO_MEMORY
;
455 if ( !(pwd
= Get_Pwnam_alloc(tmp_ctx
, name
)) ) {
456 char *add_script
= NULL
;
460 if ((acb_info
& ACB_NORMAL
) && name
[strlen(name
)-1] != '$') {
461 add_script
= lp_adduser_script(tmp_ctx
);
463 add_script
= lp_addmachine_script(tmp_ctx
);
466 if (!add_script
|| add_script
[0] == '\0') {
467 DEBUG(3, ("Could not find user %s and no add script "
469 return NT_STATUS_NO_SUCH_USER
;
472 /* lowercase the username before creating the Unix account for
473 compatibility with previous Samba releases */
474 fstrcpy( name2
, name
);
475 if (!strlower_m( name2
)) {
476 return NT_STATUS_INVALID_PARAMETER
;
478 add_script
= talloc_all_string_sub(tmp_ctx
,
483 return NT_STATUS_NO_MEMORY
;
485 add_ret
= smbrun(add_script
,NULL
);
486 DEBUG(add_ret
? 0 : 3, ("_samr_create_user: Running the command `%s' gave %d\n",
487 add_script
, add_ret
));
489 smb_nscd_flush_user_cache();
494 pwd
= Get_Pwnam_alloc(tmp_ctx
, name
);
497 DEBUG(3, ("Could not find user %s, add script did not work\n", name
));
498 return NT_STATUS_NO_SUCH_USER
;
502 /* we have a valid SID coming out of this call */
504 status
= samu_alloc_rid_unix(methods
, sam_pass
, pwd
);
508 if (!NT_STATUS_IS_OK(status
)) {
509 DEBUG(3, ("pdb_default_create_user: failed to create a new user structure: %s\n", nt_errstr(status
)));
513 if (!sid_peek_check_rid(get_global_sam_sid(),
514 pdb_get_user_sid(sam_pass
), rid
)) {
515 DEBUG(0, ("Could not get RID of fresh user\n"));
516 return NT_STATUS_INTERNAL_ERROR
;
519 /* Use the username case specified in the original request */
521 pdb_set_username( sam_pass
, name
, PDB_SET
);
523 /* Disable the account on creation, it does not have a reasonable password yet. */
525 acb_info
|= ACB_DISABLED
;
527 pdb_set_acct_ctrl(sam_pass
, acb_info
, PDB_CHANGED
);
529 status
= methods
->add_sam_account(methods
, sam_pass
);
531 TALLOC_FREE(sam_pass
);
536 NTSTATUS
pdb_create_user(TALLOC_CTX
*mem_ctx
, const char *name
, uint32_t flags
,
539 struct pdb_methods
*pdb
= pdb_get_methods();
540 return pdb
->create_user(pdb
, mem_ctx
, name
, flags
, rid
);
543 /****************************************************************************
544 Delete a UNIX user on demand.
545 ****************************************************************************/
547 static int smb_delete_user(const char *unix_user
)
549 char *del_script
= NULL
;
554 if ( strequal( unix_user
, "root" ) ) {
555 DEBUG(0,("smb_delete_user: Refusing to delete local system root account!\n"));
559 del_script
= lp_deluser_script(talloc_tos());
560 if (!del_script
|| !*del_script
) {
563 del_script
= talloc_all_string_sub(talloc_tos(),
570 ret
= smbrun(del_script
,NULL
);
573 smb_nscd_flush_user_cache();
575 DEBUG(ret
? 0 : 3,("smb_delete_user: Running the command `%s' gave %d\n",del_script
,ret
));
580 static NTSTATUS
pdb_default_delete_user(struct pdb_methods
*methods
,
582 struct samu
*sam_acct
)
587 status
= methods
->delete_sam_account(methods
, sam_acct
);
588 if (!NT_STATUS_IS_OK(status
)) {
593 * Now delete the unix side ....
594 * note: we don't check if the delete really happened as the script is
595 * not necessary present and maybe the sysadmin doesn't want to delete
599 /* always lower case the username before handing it off to
602 fstrcpy( username
, pdb_get_username(sam_acct
) );
603 if (!strlower_m( username
)) {
607 smb_delete_user( username
);
612 NTSTATUS
pdb_delete_user(TALLOC_CTX
*mem_ctx
, struct samu
*sam_acct
)
614 struct pdb_methods
*pdb
= pdb_get_methods();
617 const struct dom_sid
*user_sid
;
620 user_sid
= pdb_get_user_sid(sam_acct
);
622 /* sanity check to make sure we don't delete root */
624 if ( !sid_to_uid(user_sid
, &uid
) ) {
625 return NT_STATUS_NO_SUCH_USER
;
629 return NT_STATUS_ACCESS_DENIED
;
632 memcache_delete(NULL
,
634 data_blob_const(user_sid
, sizeof(*user_sid
)));
636 status
= pdb
->delete_user(pdb
, mem_ctx
, sam_acct
);
637 if (!NT_STATUS_IS_OK(status
)) {
641 msg_data
= talloc_asprintf(mem_ctx
, "USER %s",
642 pdb_get_username(sam_acct
));
644 /* not fatal, and too late to rollback,
648 message_send_all(server_messaging_context(),
651 strlen(msg_data
) + 1,
654 TALLOC_FREE(msg_data
);
658 NTSTATUS
pdb_add_sam_account(struct samu
*sam_acct
)
660 struct pdb_methods
*pdb
= pdb_get_methods();
661 return pdb
->add_sam_account(pdb
, sam_acct
);
664 NTSTATUS
pdb_update_sam_account(struct samu
*sam_acct
)
666 struct pdb_methods
*pdb
= pdb_get_methods();
668 memcache_flush(NULL
, PDB_GETPWSID_CACHE
);
670 return pdb
->update_sam_account(pdb
, sam_acct
);
673 NTSTATUS
pdb_delete_sam_account(struct samu
*sam_acct
)
675 struct pdb_methods
*pdb
= pdb_get_methods();
676 const struct dom_sid
*user_sid
= pdb_get_user_sid(sam_acct
);
678 memcache_delete(NULL
,
680 data_blob_const(user_sid
, sizeof(*user_sid
)));
682 return pdb
->delete_sam_account(pdb
, sam_acct
);
685 NTSTATUS
pdb_rename_sam_account(struct samu
*oldname
, const char *newname
)
687 struct pdb_methods
*pdb
= pdb_get_methods();
691 memcache_flush(NULL
, PDB_GETPWSID_CACHE
);
693 /* sanity check to make sure we don't rename root */
695 if ( !sid_to_uid( pdb_get_user_sid(oldname
), &uid
) ) {
696 return NT_STATUS_NO_SUCH_USER
;
700 return NT_STATUS_ACCESS_DENIED
;
703 status
= pdb
->rename_sam_account(pdb
, oldname
, newname
);
705 /* always flush the cache here just to be safe */
711 NTSTATUS
pdb_update_login_attempts(struct samu
*sam_acct
, bool success
)
713 struct pdb_methods
*pdb
= pdb_get_methods();
714 return pdb
->update_login_attempts(pdb
, sam_acct
, success
);
717 bool pdb_getgrsid(GROUP_MAP
*map
, struct dom_sid sid
)
719 struct pdb_methods
*pdb
= pdb_get_methods();
720 return NT_STATUS_IS_OK(pdb
->getgrsid(pdb
, map
, sid
));
723 bool pdb_getgrgid(GROUP_MAP
*map
, gid_t gid
)
725 struct pdb_methods
*pdb
= pdb_get_methods();
726 return NT_STATUS_IS_OK(pdb
->getgrgid(pdb
, map
, gid
));
729 bool pdb_getgrnam(GROUP_MAP
*map
, const char *name
)
731 struct pdb_methods
*pdb
= pdb_get_methods();
732 return NT_STATUS_IS_OK(pdb
->getgrnam(pdb
, map
, name
));
735 static NTSTATUS
pdb_default_create_dom_group(struct pdb_methods
*methods
,
740 struct dom_sid group_sid
;
744 grp
= getgrnam(name
);
749 if (smb_create_group(name
, &gid
) != 0) {
750 return NT_STATUS_ACCESS_DENIED
;
757 return NT_STATUS_ACCESS_DENIED
;
760 if (pdb_capabilities() & PDB_CAP_STORE_RIDS
) {
761 if (!pdb_new_rid(rid
)) {
762 return NT_STATUS_ACCESS_DENIED
;
765 *rid
= algorithmic_pdb_gid_to_group_rid( grp
->gr_gid
);
768 sid_compose(&group_sid
, get_global_sam_sid(), *rid
);
770 return add_initial_entry(grp
->gr_gid
, sid_to_fstring(tmp
, &group_sid
),
771 SID_NAME_DOM_GRP
, name
, NULL
);
774 NTSTATUS
pdb_create_dom_group(TALLOC_CTX
*mem_ctx
, const char *name
,
777 struct pdb_methods
*pdb
= pdb_get_methods();
778 return pdb
->create_dom_group(pdb
, mem_ctx
, name
, rid
);
781 static NTSTATUS
pdb_default_delete_dom_group(struct pdb_methods
*methods
,
785 struct dom_sid group_sid
;
789 const char *grp_name
;
791 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
793 return NT_STATUS_NO_MEMORY
;
797 map
->gid
= (gid_t
) -1;
799 sid_compose(&group_sid
, get_global_sam_sid(), rid
);
801 if (!get_domain_group_from_sid(group_sid
, map
)) {
802 DEBUG(10, ("Could not find group for rid %d\n", rid
));
803 return NT_STATUS_NO_SUCH_GROUP
;
806 /* We need the group name for the smb_delete_group later on */
808 if (map
->gid
== (gid_t
)-1) {
809 return NT_STATUS_NO_SUCH_GROUP
;
812 grp
= getgrgid(map
->gid
);
814 return NT_STATUS_NO_SUCH_GROUP
;
819 /* Copy the name, no idea what pdb_delete_group_mapping_entry does.. */
821 grp_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
822 if (grp_name
== NULL
) {
823 return NT_STATUS_NO_MEMORY
;
826 status
= pdb_delete_group_mapping_entry(group_sid
);
828 if (!NT_STATUS_IS_OK(status
)) {
832 /* Don't check the result of smb_delete_group */
834 smb_delete_group(grp_name
);
839 NTSTATUS
pdb_delete_dom_group(TALLOC_CTX
*mem_ctx
, uint32_t rid
)
841 struct pdb_methods
*pdb
= pdb_get_methods();
842 return pdb
->delete_dom_group(pdb
, mem_ctx
, rid
);
845 NTSTATUS
pdb_add_group_mapping_entry(GROUP_MAP
*map
)
847 struct pdb_methods
*pdb
= pdb_get_methods();
848 return pdb
->add_group_mapping_entry(pdb
, map
);
851 NTSTATUS
pdb_update_group_mapping_entry(GROUP_MAP
*map
)
853 struct pdb_methods
*pdb
= pdb_get_methods();
854 return pdb
->update_group_mapping_entry(pdb
, map
);
857 NTSTATUS
pdb_delete_group_mapping_entry(struct dom_sid sid
)
859 struct pdb_methods
*pdb
= pdb_get_methods();
860 return pdb
->delete_group_mapping_entry(pdb
, sid
);
863 bool pdb_enum_group_mapping(const struct dom_sid
*sid
,
864 enum lsa_SidType sid_name_use
,
865 GROUP_MAP
***pp_rmap
,
866 size_t *p_num_entries
,
869 struct pdb_methods
*pdb
= pdb_get_methods();
870 return NT_STATUS_IS_OK(pdb
-> enum_group_mapping(pdb
, sid
, sid_name_use
,
871 pp_rmap
, p_num_entries
, unix_only
));
874 NTSTATUS
pdb_enum_group_members(TALLOC_CTX
*mem_ctx
,
875 const struct dom_sid
*sid
,
876 uint32_t **pp_member_rids
,
877 size_t *p_num_members
)
879 struct pdb_methods
*pdb
= pdb_get_methods();
882 result
= pdb
->enum_group_members(pdb
, mem_ctx
,
883 sid
, pp_member_rids
, p_num_members
);
885 /* special check for rid 513 */
887 if ( !NT_STATUS_IS_OK( result
) ) {
890 sid_peek_rid( sid
, &rid
);
892 if ( rid
== DOMAIN_RID_USERS
) {
894 *pp_member_rids
= NULL
;
903 NTSTATUS
pdb_enum_group_memberships(TALLOC_CTX
*mem_ctx
, struct samu
*user
,
904 struct dom_sid
**pp_sids
, gid_t
**pp_gids
,
905 uint32_t *p_num_groups
)
907 struct pdb_methods
*pdb
= pdb_get_methods();
908 return pdb
->enum_group_memberships(
910 pp_sids
, pp_gids
, p_num_groups
);
913 static NTSTATUS
pdb_default_set_unix_primary_group(struct pdb_methods
*methods
,
915 struct samu
*sampass
)
920 if (!sid_to_gid(pdb_get_group_sid(sampass
), &gid
) ||
921 (grp
= getgrgid(gid
)) == NULL
) {
922 return NT_STATUS_INVALID_PRIMARY_GROUP
;
925 if (smb_set_primary_group(grp
->gr_name
,
926 pdb_get_username(sampass
)) != 0) {
927 return NT_STATUS_ACCESS_DENIED
;
933 NTSTATUS
pdb_set_unix_primary_group(TALLOC_CTX
*mem_ctx
, struct samu
*user
)
935 struct pdb_methods
*pdb
= pdb_get_methods();
936 return pdb
->set_unix_primary_group(pdb
, mem_ctx
, user
);
940 * Helper function to see whether a user is in a group. We can't use
941 * user_in_group_sid here because this creates dependencies only smbd can
945 static bool pdb_user_in_group(TALLOC_CTX
*mem_ctx
, struct samu
*account
,
946 const struct dom_sid
*group_sid
)
948 struct dom_sid
*sids
;
950 uint32_t i
, num_groups
;
952 if (!NT_STATUS_IS_OK(pdb_enum_group_memberships(mem_ctx
, account
,
958 for (i
=0; i
<num_groups
; i
++) {
959 if (dom_sid_equal(group_sid
, &sids
[i
])) {
966 static NTSTATUS
pdb_default_add_groupmem(struct pdb_methods
*methods
,
971 struct dom_sid group_sid
, member_sid
;
972 struct samu
*account
= NULL
;
976 const char *group_name
;
979 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
981 return NT_STATUS_NO_MEMORY
;
985 map
->gid
= (gid_t
) -1;
987 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
988 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
990 if (!get_domain_group_from_sid(group_sid
, map
) ||
991 (map
->gid
== (gid_t
)-1) ||
992 ((grp
= getgrgid(map
->gid
)) == NULL
)) {
993 return NT_STATUS_NO_SUCH_GROUP
;
998 group_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
999 if (group_name
== NULL
) {
1000 return NT_STATUS_NO_MEMORY
;
1003 if ( !(account
= samu_new( NULL
)) ) {
1004 return NT_STATUS_NO_MEMORY
;
1007 if (!pdb_getsampwsid(account
, &member_sid
) ||
1008 !sid_to_uid(&member_sid
, &uid
) ||
1009 ((pwd
= getpwuid_alloc(mem_ctx
, uid
)) == NULL
)) {
1010 return NT_STATUS_NO_SUCH_USER
;
1013 if (pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1014 return NT_STATUS_MEMBER_IN_GROUP
;
1018 * ok, the group exist, the user exist, the user is not in the group,
1019 * we can (finally) add it to the group !
1022 smb_add_user_group(group_name
, pwd
->pw_name
);
1024 if (!pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1025 return NT_STATUS_ACCESS_DENIED
;
1028 return NT_STATUS_OK
;
1031 NTSTATUS
pdb_add_groupmem(TALLOC_CTX
*mem_ctx
, uint32_t group_rid
,
1032 uint32_t member_rid
)
1034 struct pdb_methods
*pdb
= pdb_get_methods();
1035 return pdb
->add_groupmem(pdb
, mem_ctx
, group_rid
, member_rid
);
1038 static NTSTATUS
pdb_default_del_groupmem(struct pdb_methods
*methods
,
1039 TALLOC_CTX
*mem_ctx
,
1041 uint32_t member_rid
)
1043 struct dom_sid group_sid
, member_sid
;
1044 struct samu
*account
= NULL
;
1048 const char *group_name
;
1051 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1053 return NT_STATUS_NO_MEMORY
;
1056 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
1057 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
1059 if (!get_domain_group_from_sid(group_sid
, map
) ||
1060 (map
->gid
== (gid_t
)-1) ||
1061 ((grp
= getgrgid(map
->gid
)) == NULL
)) {
1062 return NT_STATUS_NO_SUCH_GROUP
;
1067 group_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
1068 if (group_name
== NULL
) {
1069 return NT_STATUS_NO_MEMORY
;
1072 if ( !(account
= samu_new( NULL
)) ) {
1073 return NT_STATUS_NO_MEMORY
;
1076 if (!pdb_getsampwsid(account
, &member_sid
) ||
1077 !sid_to_uid(&member_sid
, &uid
) ||
1078 ((pwd
= getpwuid_alloc(mem_ctx
, uid
)) == NULL
)) {
1079 return NT_STATUS_NO_SUCH_USER
;
1082 if (!pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1083 return NT_STATUS_MEMBER_NOT_IN_GROUP
;
1087 * ok, the group exist, the user exist, the user is in the group,
1088 * we can (finally) delete it from the group!
1091 smb_delete_user_group(group_name
, pwd
->pw_name
);
1093 if (pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1094 return NT_STATUS_ACCESS_DENIED
;
1097 return NT_STATUS_OK
;
1100 NTSTATUS
pdb_del_groupmem(TALLOC_CTX
*mem_ctx
, uint32_t group_rid
,
1101 uint32_t member_rid
)
1103 struct pdb_methods
*pdb
= pdb_get_methods();
1104 return pdb
->del_groupmem(pdb
, mem_ctx
, group_rid
, member_rid
);
1107 NTSTATUS
pdb_create_alias(const char *name
, uint32_t *rid
)
1109 struct pdb_methods
*pdb
= pdb_get_methods();
1110 return pdb
->create_alias(pdb
, name
, rid
);
1113 NTSTATUS
pdb_delete_alias(const struct dom_sid
*sid
)
1115 struct pdb_methods
*pdb
= pdb_get_methods();
1116 return pdb
->delete_alias(pdb
, sid
);
1119 NTSTATUS
pdb_get_aliasinfo(const struct dom_sid
*sid
, struct acct_info
*info
)
1121 struct pdb_methods
*pdb
= pdb_get_methods();
1122 return pdb
->get_aliasinfo(pdb
, sid
, info
);
1125 NTSTATUS
pdb_set_aliasinfo(const struct dom_sid
*sid
, struct acct_info
*info
)
1127 struct pdb_methods
*pdb
= pdb_get_methods();
1128 return pdb
->set_aliasinfo(pdb
, sid
, info
);
1131 NTSTATUS
pdb_add_aliasmem(const struct dom_sid
*alias
, const struct dom_sid
*member
)
1133 struct pdb_methods
*pdb
= pdb_get_methods();
1134 return pdb
->add_aliasmem(pdb
, alias
, member
);
1137 NTSTATUS
pdb_del_aliasmem(const struct dom_sid
*alias
, const struct dom_sid
*member
)
1139 struct pdb_methods
*pdb
= pdb_get_methods();
1140 return pdb
->del_aliasmem(pdb
, alias
, member
);
1143 NTSTATUS
pdb_enum_aliasmem(const struct dom_sid
*alias
, TALLOC_CTX
*mem_ctx
,
1144 struct dom_sid
**pp_members
, size_t *p_num_members
)
1146 struct pdb_methods
*pdb
= pdb_get_methods();
1147 return pdb
->enum_aliasmem(pdb
, alias
, mem_ctx
, pp_members
,
1151 NTSTATUS
pdb_enum_alias_memberships(TALLOC_CTX
*mem_ctx
,
1152 const struct dom_sid
*domain_sid
,
1153 const struct dom_sid
*members
, size_t num_members
,
1154 uint32_t **pp_alias_rids
,
1155 size_t *p_num_alias_rids
)
1157 struct pdb_methods
*pdb
= pdb_get_methods();
1158 return pdb
->enum_alias_memberships(pdb
, mem_ctx
,
1160 members
, num_members
,
1165 NTSTATUS
pdb_lookup_rids(const struct dom_sid
*domain_sid
,
1169 enum lsa_SidType
*attrs
)
1171 struct pdb_methods
*pdb
= pdb_get_methods();
1172 return pdb
->lookup_rids(pdb
, domain_sid
, num_rids
, rids
, names
, attrs
);
1175 bool pdb_get_account_policy(enum pdb_policy_type type
, uint32_t *value
)
1177 struct pdb_methods
*pdb
= pdb_get_methods();
1181 status
= pdb
->get_account_policy(pdb
, type
, value
);
1184 return NT_STATUS_IS_OK(status
);
1187 bool pdb_set_account_policy(enum pdb_policy_type type
, uint32_t value
)
1189 struct pdb_methods
*pdb
= pdb_get_methods();
1193 status
= pdb
->set_account_policy(pdb
, type
, value
);
1196 return NT_STATUS_IS_OK(status
);
1199 bool pdb_get_seq_num(time_t *seq_num
)
1201 struct pdb_methods
*pdb
= pdb_get_methods();
1202 return NT_STATUS_IS_OK(pdb
->get_seq_num(pdb
, seq_num
));
1205 bool pdb_uid_to_sid(uid_t uid
, struct dom_sid
*sid
)
1207 struct pdb_methods
*pdb
= pdb_get_methods();
1208 return pdb
->uid_to_sid(pdb
, uid
, sid
);
1211 bool pdb_gid_to_sid(gid_t gid
, struct dom_sid
*sid
)
1213 struct pdb_methods
*pdb
= pdb_get_methods();
1214 return pdb
->gid_to_sid(pdb
, gid
, sid
);
1217 bool pdb_sid_to_id(const struct dom_sid
*sid
, struct unixid
*id
)
1219 struct pdb_methods
*pdb
= pdb_get_methods();
1220 return pdb
->sid_to_id(pdb
, sid
, id
);
1223 uint32_t pdb_capabilities(void)
1225 struct pdb_methods
*pdb
= pdb_get_methods();
1226 return pdb
->capabilities(pdb
);
1229 /********************************************************************
1230 Allocate a new RID from the passdb backend. Verify that it is free
1231 by calling lookup_global_sam_rid() to verify that the RID is not
1232 in use. This handles servers that have existing users or groups
1233 with add RIDs (assigned from previous algorithmic mappings)
1234 ********************************************************************/
1236 bool pdb_new_rid(uint32_t *rid
)
1238 struct pdb_methods
*pdb
= pdb_get_methods();
1239 const char *name
= NULL
;
1240 enum lsa_SidType type
;
1241 uint32_t allocated_rid
= 0;
1245 if ((pdb_capabilities() & PDB_CAP_STORE_RIDS
) == 0) {
1246 DEBUG(0, ("Trying to allocate a RID when algorithmic RIDs "
1251 if (algorithmic_rid_base() != BASE_RID
) {
1252 DEBUG(0, ("'algorithmic rid base' is set but a passdb backend "
1253 "without algorithmic RIDs is chosen.\n"));
1254 DEBUGADD(0, ("Please map all used groups using 'net groupmap "
1255 "add', set the maximum used RID\n"));
1256 DEBUGADD(0, ("and remove the parameter\n"));
1260 if ( (ctx
= talloc_init("pdb_new_rid")) == NULL
) {
1261 DEBUG(0,("pdb_new_rid: Talloc initialization failure\n"));
1265 /* Attempt to get an unused RID (max tires is 250...yes that it is
1266 and arbitrary number I pulkled out of my head). -- jerry */
1268 for ( i
=0; allocated_rid
==0 && i
<250; i
++ ) {
1271 if ( !pdb
->new_rid(pdb
, &allocated_rid
) ) {
1275 /* validate that the RID is not in use */
1277 if (lookup_global_sam_rid(ctx
, allocated_rid
, &name
, &type
, NULL
, NULL
)) {
1284 if ( allocated_rid
== 0 ) {
1285 DEBUG(0,("pdb_new_rid: Failed to find unused RID\n"));
1289 *rid
= allocated_rid
;
1294 /***************************************************************
1295 Initialize the static context (at smbd startup etc).
1297 If uninitialised, context will auto-init on first use.
1298 ***************************************************************/
1300 bool initialize_password_db(bool reload
, struct tevent_context
*tevent_ctx
)
1303 pdb_tevent_ctx
= tevent_ctx
;
1305 return (pdb_get_methods_reload(reload
) != NULL
);
1308 /***************************************************************************
1309 Default implementations of some functions.
1310 ****************************************************************************/
1312 static NTSTATUS
pdb_default_getsampwnam (struct pdb_methods
*methods
, struct samu
*user
, const char *sname
)
1314 return NT_STATUS_NO_SUCH_USER
;
1317 static NTSTATUS
pdb_default_getsampwsid(struct pdb_methods
*my_methods
, struct samu
* user
, const struct dom_sid
*sid
)
1319 return NT_STATUS_NO_SUCH_USER
;
1322 static NTSTATUS
pdb_default_add_sam_account (struct pdb_methods
*methods
, struct samu
*newpwd
)
1324 return NT_STATUS_NOT_IMPLEMENTED
;
1327 static NTSTATUS
pdb_default_update_sam_account (struct pdb_methods
*methods
, struct samu
*newpwd
)
1329 return NT_STATUS_NOT_IMPLEMENTED
;
1332 static NTSTATUS
pdb_default_delete_sam_account (struct pdb_methods
*methods
, struct samu
*pwd
)
1334 return NT_STATUS_NOT_IMPLEMENTED
;
1337 static NTSTATUS
pdb_default_rename_sam_account (struct pdb_methods
*methods
, struct samu
*pwd
, const char *newname
)
1339 return NT_STATUS_NOT_IMPLEMENTED
;
1342 static NTSTATUS
pdb_default_update_login_attempts (struct pdb_methods
*methods
, struct samu
*newpwd
, bool success
)
1344 /* Only the pdb_nds backend implements this, by
1345 * default just return ok. */
1346 return NT_STATUS_OK
;
1349 static NTSTATUS
pdb_default_get_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t *value
)
1351 return account_policy_get(type
, value
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1354 static NTSTATUS
pdb_default_set_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t value
)
1356 return account_policy_set(type
, value
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1359 static NTSTATUS
pdb_default_get_seq_num(struct pdb_methods
*methods
, time_t *seq_num
)
1361 *seq_num
= time(NULL
);
1362 return NT_STATUS_OK
;
1365 static bool pdb_default_uid_to_sid(struct pdb_methods
*methods
, uid_t uid
,
1366 struct dom_sid
*sid
)
1368 struct samu
*sampw
= NULL
;
1369 struct passwd
*unix_pw
;
1372 unix_pw
= getpwuid( uid
);
1375 DEBUG(4,("pdb_default_uid_to_sid: host has no idea of uid "
1376 "%lu\n", (unsigned long)uid
));
1380 if ( !(sampw
= samu_new( NULL
)) ) {
1381 DEBUG(0,("pdb_default_uid_to_sid: samu_new() failed!\n"));
1386 ret
= NT_STATUS_IS_OK(
1387 methods
->getsampwnam(methods
, sampw
, unix_pw
->pw_name
));
1391 DEBUG(5, ("pdb_default_uid_to_sid: Did not find user "
1392 "%s (%u)\n", unix_pw
->pw_name
, (unsigned int)uid
));
1397 sid_copy(sid
, pdb_get_user_sid(sampw
));
1404 static bool pdb_default_gid_to_sid(struct pdb_methods
*methods
, gid_t gid
,
1405 struct dom_sid
*sid
)
1409 map
= talloc_zero(NULL
, GROUP_MAP
);
1414 if (!NT_STATUS_IS_OK(methods
->getgrgid(methods
, map
, gid
))) {
1419 sid_copy(sid
, &map
->sid
);
1425 * The "Unix User" and "Unix Group" domains have a special
1426 * id mapping that is a rid-algorithm with range starting at 0.
1428 bool pdb_sid_to_id_unix_users_and_groups(const struct dom_sid
*sid
,
1435 if (sid_peek_check_rid(&global_sid_Unix_Users
, sid
, &rid
)) {
1437 id
->type
= ID_TYPE_UID
;
1441 if (sid_peek_check_rid(&global_sid_Unix_Groups
, sid
, &rid
)) {
1443 id
->type
= ID_TYPE_GID
;
1450 static bool pdb_default_sid_to_id(struct pdb_methods
*methods
,
1451 const struct dom_sid
*sid
,
1454 TALLOC_CTX
*mem_ctx
;
1459 mem_ctx
= talloc_new(NULL
);
1461 if (mem_ctx
== NULL
) {
1462 DEBUG(0, ("talloc_new failed\n"));
1466 if (sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
)) {
1468 enum lsa_SidType type
;
1471 /* Here we might have users as well as groups and aliases */
1472 ret
= lookup_global_sam_rid(mem_ctx
, rid
, &name
, &type
, &uid
, &gid
);
1475 case SID_NAME_DOM_GRP
:
1476 case SID_NAME_ALIAS
:
1477 id
->type
= ID_TYPE_GID
;
1481 id
->type
= ID_TYPE_UID
;
1485 DEBUG(5, ("SID %s is our domain, but is not mapped to a user or group (got %d)\n",
1486 sid_string_dbg(sid
), type
));
1490 DEBUG(5, ("SID %s is or domain, but is unmapped\n",
1491 sid_string_dbg(sid
)));
1497 * "Unix User" and "Unix Group"
1499 ret
= pdb_sid_to_id_unix_users_and_groups(sid
, id
);
1506 if (sid_check_is_in_builtin(sid
) ||
1507 sid_check_is_in_wellknown_domain(sid
)) {
1508 /* Here we only have aliases */
1511 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1517 if (!NT_STATUS_IS_OK(methods
->getgrsid(methods
, map
, *sid
))) {
1518 DEBUG(10, ("Could not find map for sid %s\n",
1519 sid_string_dbg(sid
)));
1522 if ((map
->sid_name_use
!= SID_NAME_ALIAS
) &&
1523 (map
->sid_name_use
!= SID_NAME_WKN_GRP
)) {
1524 DEBUG(10, ("Map for sid %s is a %s, expected an "
1525 "alias\n", sid_string_dbg(sid
),
1526 sid_type_lookup(map
->sid_name_use
)));
1531 id
->type
= ID_TYPE_GID
;
1536 DEBUG(5, ("Sid %s is neither ours, a Unix SID, nor builtin\n",
1537 sid_string_dbg(sid
)));
1541 TALLOC_FREE(mem_ctx
);
1545 static bool get_memberuids(TALLOC_CTX
*mem_ctx
, gid_t gid
, uid_t
**pp_uids
, uint32_t *p_num
)
1556 /* We only look at our own sam, so don't care about imported stuff */
1557 winbind_env
= winbind_env_set();
1558 (void)winbind_off();
1560 if ((grp
= getgrgid(gid
)) == NULL
) {
1561 /* allow winbindd lookups, but only if they weren't already disabled */
1565 /* Primary group members */
1567 while ((pwd
= getpwent()) != NULL
) {
1568 if (pwd
->pw_gid
== gid
) {
1569 if (!add_uid_to_array_unique(mem_ctx
, pwd
->pw_uid
,
1577 /* Secondary group members */
1578 for (gr
= grp
->gr_mem
; (*gr
!= NULL
) && ((*gr
)[0] != '\0'); gr
+= 1) {
1579 struct passwd
*pw
= getpwnam(*gr
);
1583 if (!add_uid_to_array_unique(mem_ctx
, pw
->pw_uid
, pp_uids
, p_num
)) {
1592 /* allow winbindd lookups, but only if they weren't already disabled */
1600 static NTSTATUS
pdb_default_enum_group_members(struct pdb_methods
*methods
,
1601 TALLOC_CTX
*mem_ctx
,
1602 const struct dom_sid
*group
,
1603 uint32_t **pp_member_rids
,
1604 size_t *p_num_members
)
1608 uint32_t i
, num_uids
;
1610 *pp_member_rids
= NULL
;
1613 if (!sid_to_gid(group
, &gid
))
1614 return NT_STATUS_NO_SUCH_GROUP
;
1616 if(!get_memberuids(mem_ctx
, gid
, &uids
, &num_uids
))
1617 return NT_STATUS_NO_SUCH_GROUP
;
1620 return NT_STATUS_OK
;
1622 *pp_member_rids
= talloc_zero_array(mem_ctx
, uint32_t, num_uids
);
1624 for (i
=0; i
<num_uids
; i
++) {
1627 uid_to_sid(&sid
, uids
[i
]);
1629 if (!sid_check_is_in_our_sam(&sid
)) {
1630 DEBUG(5, ("Inconsistent SAM -- group member uid not "
1631 "in our domain\n"));
1635 sid_peek_rid(&sid
, &(*pp_member_rids
)[*p_num_members
]);
1636 *p_num_members
+= 1;
1639 return NT_STATUS_OK
;
1642 static NTSTATUS
pdb_default_enum_group_memberships(struct pdb_methods
*methods
,
1643 TALLOC_CTX
*mem_ctx
,
1645 struct dom_sid
**pp_sids
,
1647 uint32_t *p_num_groups
)
1652 const char *username
= pdb_get_username(user
);
1655 /* Ignore the primary group SID. Honor the real Unix primary group.
1656 The primary group SID is only of real use to Windows clients */
1658 if ( !(pw
= Get_Pwnam_alloc(mem_ctx
, username
)) ) {
1659 return NT_STATUS_NO_SUCH_USER
;
1666 if (!getgroups_unix_user(mem_ctx
, username
, gid
, pp_gids
, p_num_groups
)) {
1667 return NT_STATUS_NO_SUCH_USER
;
1670 if (*p_num_groups
== 0) {
1671 smb_panic("primary group missing");
1674 *pp_sids
= talloc_array(mem_ctx
, struct dom_sid
, *p_num_groups
);
1676 if (*pp_sids
== NULL
) {
1677 TALLOC_FREE(*pp_gids
);
1678 return NT_STATUS_NO_MEMORY
;
1681 for (i
=0; i
<*p_num_groups
; i
++) {
1682 gid_to_sid(&(*pp_sids
)[i
], (*pp_gids
)[i
]);
1685 return NT_STATUS_OK
;
1688 /*******************************************************************
1689 Look up a rid in the SAM we're responsible for (i.e. passdb)
1690 ********************************************************************/
1692 static bool lookup_global_sam_rid(TALLOC_CTX
*mem_ctx
, uint32_t rid
,
1694 enum lsa_SidType
*psid_name_use
,
1695 uid_t
*uid
, gid_t
*gid
)
1697 struct samu
*sam_account
= NULL
;
1698 GROUP_MAP
*map
= NULL
;
1702 *psid_name_use
= SID_NAME_UNKNOWN
;
1704 DEBUG(5,("lookup_global_sam_rid: looking up RID %u.\n",
1705 (unsigned int)rid
));
1707 sid_compose(&sid
, get_global_sam_sid(), rid
);
1709 /* see if the passdb can help us with the name of the user */
1711 if ( !(sam_account
= samu_new( NULL
)) ) {
1715 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1720 /* BEING ROOT BLOCK */
1722 ret
= pdb_getsampwsid(sam_account
, &sid
);
1724 TALLOC_FREE(sam_account
);
1725 ret
= pdb_getgrsid(map
, sid
);
1728 /* END BECOME_ROOT BLOCK */
1730 if (sam_account
|| !ret
) {
1737 *name
= talloc_strdup(mem_ctx
, pdb_get_username(sam_account
));
1739 TALLOC_FREE(sam_account
);
1743 *psid_name_use
= SID_NAME_USER
;
1745 TALLOC_FREE(sam_account
);
1751 pw
= Get_Pwnam_alloc(talloc_tos(), *name
);
1759 } else if (map
&& (map
->gid
!= (gid_t
)-1)) {
1761 /* do not resolve SIDs to a name unless there is a valid
1762 gid associated with it */
1764 *name
= talloc_steal(mem_ctx
, map
->nt_name
);
1765 *psid_name_use
= map
->sid_name_use
;
1777 /* Windows will always map RID 513 to something. On a non-domain
1778 controller, this gets mapped to SERVER\None. */
1781 DEBUG(5, ("Can't find a unix id for an unmapped group\n"));
1785 if ( rid
== DOMAIN_RID_USERS
) {
1786 *name
= talloc_strdup(mem_ctx
, "None" );
1787 *psid_name_use
= SID_NAME_DOM_GRP
;
1795 static NTSTATUS
pdb_default_lookup_rids(struct pdb_methods
*methods
,
1796 const struct dom_sid
*domain_sid
,
1800 enum lsa_SidType
*attrs
)
1804 bool have_mapped
= False
;
1805 bool have_unmapped
= False
;
1807 if (sid_check_is_builtin(domain_sid
)) {
1809 for (i
=0; i
<num_rids
; i
++) {
1812 if (lookup_builtin_rid(names
, rids
[i
], &name
)) {
1813 attrs
[i
] = SID_NAME_ALIAS
;
1815 DEBUG(5,("lookup_rids: %s:%d\n",
1816 names
[i
], attrs
[i
]));
1819 have_unmapped
= True
;
1820 attrs
[i
] = SID_NAME_UNKNOWN
;
1826 /* Should not happen, but better check once too many */
1827 if (!sid_check_is_our_sam(domain_sid
)) {
1828 return NT_STATUS_INVALID_HANDLE
;
1831 for (i
= 0; i
< num_rids
; i
++) {
1834 if (lookup_global_sam_rid(names
, rids
[i
], &name
, &attrs
[i
],
1837 return NT_STATUS_NO_MEMORY
;
1840 DEBUG(5,("lookup_rids: %s:%d\n", names
[i
], attrs
[i
]));
1843 have_unmapped
= True
;
1844 attrs
[i
] = SID_NAME_UNKNOWN
;
1850 result
= NT_STATUS_NONE_MAPPED
;
1853 result
= have_unmapped
? STATUS_SOME_UNMAPPED
: NT_STATUS_OK
;
1858 static int pdb_search_destructor(struct pdb_search
*search
)
1860 if ((!search
->search_ended
) && (search
->search_end
!= NULL
)) {
1861 search
->search_end(search
);
1866 struct pdb_search
*pdb_search_init(TALLOC_CTX
*mem_ctx
,
1867 enum pdb_search_type type
)
1869 struct pdb_search
*result
;
1871 result
= talloc(mem_ctx
, struct pdb_search
);
1872 if (result
== NULL
) {
1873 DEBUG(0, ("talloc failed\n"));
1877 result
->type
= type
;
1878 result
->cache
= NULL
;
1879 result
->num_entries
= 0;
1880 result
->cache_size
= 0;
1881 result
->search_ended
= False
;
1882 result
->search_end
= NULL
;
1884 /* Segfault appropriately if not initialized */
1885 result
->next_entry
= NULL
;
1886 result
->search_end
= NULL
;
1888 talloc_set_destructor(result
, pdb_search_destructor
);
1893 static void fill_displayentry(TALLOC_CTX
*mem_ctx
, uint32_t rid
,
1894 uint16_t acct_flags
,
1895 const char *account_name
,
1896 const char *fullname
,
1897 const char *description
,
1898 struct samr_displayentry
*entry
)
1901 entry
->acct_flags
= acct_flags
;
1903 if (account_name
!= NULL
)
1904 entry
->account_name
= talloc_strdup(mem_ctx
, account_name
);
1906 entry
->account_name
= "";
1908 if (fullname
!= NULL
)
1909 entry
->fullname
= talloc_strdup(mem_ctx
, fullname
);
1911 entry
->fullname
= "";
1913 if (description
!= NULL
)
1914 entry
->description
= talloc_strdup(mem_ctx
, description
);
1916 entry
->description
= "";
1919 struct group_search
{
1921 size_t num_groups
, current_group
;
1924 static bool next_entry_groups(struct pdb_search
*s
,
1925 struct samr_displayentry
*entry
)
1927 struct group_search
*state
= (struct group_search
*)s
->private_data
;
1931 if (state
->current_group
== state
->num_groups
)
1934 map
= state
->groups
[state
->current_group
];
1936 sid_peek_rid(&map
->sid
, &rid
);
1938 fill_displayentry(s
, rid
, 0, map
->nt_name
, NULL
, map
->comment
, entry
);
1940 state
->current_group
+= 1;
1944 static void search_end_groups(struct pdb_search
*search
)
1946 struct group_search
*state
=
1947 (struct group_search
*)search
->private_data
;
1948 TALLOC_FREE(state
->groups
);
1951 static bool pdb_search_grouptype(struct pdb_methods
*methods
,
1952 struct pdb_search
*search
,
1953 const struct dom_sid
*sid
, enum lsa_SidType type
)
1955 struct group_search
*state
;
1957 state
= talloc_zero(search
, struct group_search
);
1958 if (state
== NULL
) {
1959 DEBUG(0, ("talloc failed\n"));
1963 if (!NT_STATUS_IS_OK(methods
->enum_group_mapping(methods
, sid
, type
,
1964 &state
->groups
, &state
->num_groups
,
1966 DEBUG(0, ("Could not enum groups\n"));
1970 state
->current_group
= 0;
1971 search
->private_data
= state
;
1972 search
->next_entry
= next_entry_groups
;
1973 search
->search_end
= search_end_groups
;
1977 static bool pdb_default_search_groups(struct pdb_methods
*methods
,
1978 struct pdb_search
*search
)
1980 return pdb_search_grouptype(methods
, search
, get_global_sam_sid(), SID_NAME_DOM_GRP
);
1983 static bool pdb_default_search_aliases(struct pdb_methods
*methods
,
1984 struct pdb_search
*search
,
1985 const struct dom_sid
*sid
)
1988 return pdb_search_grouptype(methods
, search
, sid
, SID_NAME_ALIAS
);
1991 static struct samr_displayentry
*pdb_search_getentry(struct pdb_search
*search
,
1994 if (idx
< search
->num_entries
)
1995 return &search
->cache
[idx
];
1997 if (search
->search_ended
)
2000 while (idx
>= search
->num_entries
) {
2001 struct samr_displayentry entry
;
2003 if (!search
->next_entry(search
, &entry
)) {
2004 search
->search_end(search
);
2005 search
->search_ended
= True
;
2009 ADD_TO_LARGE_ARRAY(search
, struct samr_displayentry
,
2010 entry
, &search
->cache
, &search
->num_entries
,
2011 &search
->cache_size
);
2014 return (search
->num_entries
> idx
) ? &search
->cache
[idx
] : NULL
;
2017 struct pdb_search
*pdb_search_users(TALLOC_CTX
*mem_ctx
, uint32_t acct_flags
)
2019 struct pdb_methods
*pdb
= pdb_get_methods();
2020 struct pdb_search
*result
;
2022 result
= pdb_search_init(mem_ctx
, PDB_USER_SEARCH
);
2023 if (result
== NULL
) {
2027 if (!pdb
->search_users(pdb
, result
, acct_flags
)) {
2028 TALLOC_FREE(result
);
2034 struct pdb_search
*pdb_search_groups(TALLOC_CTX
*mem_ctx
)
2036 struct pdb_methods
*pdb
= pdb_get_methods();
2037 struct pdb_search
*result
;
2039 result
= pdb_search_init(mem_ctx
, PDB_GROUP_SEARCH
);
2040 if (result
== NULL
) {
2044 if (!pdb
->search_groups(pdb
, result
)) {
2045 TALLOC_FREE(result
);
2051 struct pdb_search
*pdb_search_aliases(TALLOC_CTX
*mem_ctx
, const struct dom_sid
*sid
)
2053 struct pdb_methods
*pdb
= pdb_get_methods();
2054 struct pdb_search
*result
;
2056 if (pdb
== NULL
) return NULL
;
2058 result
= pdb_search_init(mem_ctx
, PDB_ALIAS_SEARCH
);
2059 if (result
== NULL
) {
2063 if (!pdb
->search_aliases(pdb
, result
, sid
)) {
2064 TALLOC_FREE(result
);
2070 uint32_t pdb_search_entries(struct pdb_search
*search
,
2071 uint32_t start_idx
, uint32_t max_entries
,
2072 struct samr_displayentry
**result
)
2074 struct samr_displayentry
*end_entry
;
2075 uint32_t end_idx
= start_idx
+max_entries
-1;
2077 /* The first entry needs to be searched after the last. Otherwise the
2078 * first entry might have moved due to a realloc during the search for
2079 * the last entry. */
2081 end_entry
= pdb_search_getentry(search
, end_idx
);
2082 *result
= pdb_search_getentry(search
, start_idx
);
2084 if (end_entry
!= NULL
)
2087 if (start_idx
>= search
->num_entries
)
2090 return search
->num_entries
- start_idx
;
2093 /*******************************************************************
2095 *******************************************************************/
2097 bool pdb_get_trusteddom_pw(const char *domain
, char** pwd
, struct dom_sid
*sid
,
2098 time_t *pass_last_set_time
)
2100 struct pdb_methods
*pdb
= pdb_get_methods();
2101 return pdb
->get_trusteddom_pw(pdb
, domain
, pwd
, sid
,
2102 pass_last_set_time
);
2105 bool pdb_set_trusteddom_pw(const char* domain
, const char* pwd
,
2106 const struct dom_sid
*sid
)
2108 struct pdb_methods
*pdb
= pdb_get_methods();
2109 return pdb
->set_trusteddom_pw(pdb
, domain
, pwd
, sid
);
2112 bool pdb_del_trusteddom_pw(const char *domain
)
2114 struct pdb_methods
*pdb
= pdb_get_methods();
2115 return pdb
->del_trusteddom_pw(pdb
, domain
);
2118 NTSTATUS
pdb_enum_trusteddoms(TALLOC_CTX
*mem_ctx
, uint32_t *num_domains
,
2119 struct trustdom_info
***domains
)
2121 struct pdb_methods
*pdb
= pdb_get_methods();
2122 return pdb
->enum_trusteddoms(pdb
, mem_ctx
, num_domains
, domains
);
2125 /*******************************************************************
2126 the defaults for trustdom methods:
2127 these simply call the original passdb/secrets.c actions,
2128 to be replaced by pdb_ldap.
2129 *******************************************************************/
2131 static bool pdb_default_get_trusteddom_pw(struct pdb_methods
*methods
,
2134 struct dom_sid
*sid
,
2135 time_t *pass_last_set_time
)
2137 return secrets_fetch_trusted_domain_password(domain
, pwd
,
2138 sid
, pass_last_set_time
);
2142 static bool pdb_default_set_trusteddom_pw(struct pdb_methods
*methods
,
2145 const struct dom_sid
*sid
)
2147 return secrets_store_trusted_domain_password(domain
, pwd
, sid
);
2150 static bool pdb_default_del_trusteddom_pw(struct pdb_methods
*methods
,
2153 return trusted_domain_password_delete(domain
);
2156 static NTSTATUS
pdb_default_enum_trusteddoms(struct pdb_methods
*methods
,
2157 TALLOC_CTX
*mem_ctx
,
2158 uint32_t *num_domains
,
2159 struct trustdom_info
***domains
)
2161 return secrets_trusted_domains(mem_ctx
, num_domains
, domains
);
2164 /*******************************************************************
2165 trusted_domain methods
2166 *******************************************************************/
2168 NTSTATUS
pdb_get_trusted_domain(TALLOC_CTX
*mem_ctx
, const char *domain
,
2169 struct pdb_trusted_domain
**td
)
2171 struct pdb_methods
*pdb
= pdb_get_methods();
2172 return pdb
->get_trusted_domain(pdb
, mem_ctx
, domain
, td
);
2175 NTSTATUS
pdb_get_trusted_domain_by_sid(TALLOC_CTX
*mem_ctx
, struct dom_sid
*sid
,
2176 struct pdb_trusted_domain
**td
)
2178 struct pdb_methods
*pdb
= pdb_get_methods();
2179 return pdb
->get_trusted_domain_by_sid(pdb
, mem_ctx
, sid
, td
);
2182 NTSTATUS
pdb_set_trusted_domain(const char* domain
,
2183 const struct pdb_trusted_domain
*td
)
2185 struct pdb_methods
*pdb
= pdb_get_methods();
2186 return pdb
->set_trusted_domain(pdb
, domain
, td
);
2189 NTSTATUS
pdb_del_trusted_domain(const char *domain
)
2191 struct pdb_methods
*pdb
= pdb_get_methods();
2192 return pdb
->del_trusted_domain(pdb
, domain
);
2195 NTSTATUS
pdb_enum_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32_t *num_domains
,
2196 struct pdb_trusted_domain
***domains
)
2198 struct pdb_methods
*pdb
= pdb_get_methods();
2199 return pdb
->enum_trusted_domains(pdb
, mem_ctx
, num_domains
, domains
);
2202 static NTSTATUS
pdb_default_get_trusted_domain(struct pdb_methods
*methods
,
2203 TALLOC_CTX
*mem_ctx
,
2205 struct pdb_trusted_domain
**td
)
2207 struct trustAuthInOutBlob taiob
;
2208 struct AuthenticationInformation aia
;
2209 struct pdb_trusted_domain
*tdom
;
2210 enum ndr_err_code ndr_err
;
2211 time_t last_set_time
;
2215 tdom
= talloc(mem_ctx
, struct pdb_trusted_domain
);
2217 return NT_STATUS_NO_MEMORY
;
2220 tdom
->domain_name
= talloc_strdup(tdom
, domain
);
2221 tdom
->netbios_name
= talloc_strdup(tdom
, domain
);
2222 if (!tdom
->domain_name
|| !tdom
->netbios_name
) {
2224 return NT_STATUS_NO_MEMORY
;
2227 tdom
->trust_auth_incoming
= data_blob_null
;
2229 ok
= pdb_get_trusteddom_pw(domain
, &pwd
, &tdom
->security_identifier
,
2233 return NT_STATUS_UNSUCCESSFUL
;
2239 taiob
.current
.count
= 1;
2240 taiob
.current
.array
= &aia
;
2241 unix_to_nt_time(&aia
.LastUpdateTime
, last_set_time
);
2242 aia
.AuthType
= TRUST_AUTH_TYPE_CLEAR
;
2243 aia
.AuthInfo
.clear
.password
= (uint8_t *) pwd
;
2244 aia
.AuthInfo
.clear
.size
= strlen(pwd
);
2245 taiob
.previous
.count
= 0;
2246 taiob
.previous
.array
= NULL
;
2248 ndr_err
= ndr_push_struct_blob(&tdom
->trust_auth_outgoing
,
2250 (ndr_push_flags_fn_t
)ndr_push_trustAuthInOutBlob
);
2251 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
2253 return NT_STATUS_UNSUCCESSFUL
;
2256 tdom
->trust_direction
= LSA_TRUST_DIRECTION_OUTBOUND
;
2257 tdom
->trust_type
= LSA_TRUST_TYPE_DOWNLEVEL
;
2258 tdom
->trust_attributes
= 0;
2259 tdom
->trust_forest_trust_info
= data_blob_null
;
2262 return NT_STATUS_OK
;
2265 static NTSTATUS
pdb_default_get_trusted_domain_by_sid(struct pdb_methods
*methods
,
2266 TALLOC_CTX
*mem_ctx
,
2267 struct dom_sid
*sid
,
2268 struct pdb_trusted_domain
**td
)
2270 return NT_STATUS_NOT_IMPLEMENTED
;
2273 #define IS_NULL_DATA_BLOB(d) ((d).data == NULL && (d).length == 0)
2275 static NTSTATUS
pdb_default_set_trusted_domain(struct pdb_methods
*methods
,
2277 const struct pdb_trusted_domain
*td
)
2279 struct trustAuthInOutBlob taiob
;
2280 struct AuthenticationInformation
*aia
;
2281 enum ndr_err_code ndr_err
;
2285 if (td
->trust_attributes
!= 0 ||
2286 td
->trust_type
!= LSA_TRUST_TYPE_DOWNLEVEL
||
2287 td
->trust_direction
!= LSA_TRUST_DIRECTION_OUTBOUND
||
2288 !IS_NULL_DATA_BLOB(td
->trust_auth_incoming
) ||
2289 !IS_NULL_DATA_BLOB(td
->trust_forest_trust_info
)) {
2290 return NT_STATUS_NOT_IMPLEMENTED
;
2294 ndr_err
= ndr_pull_struct_blob(&td
->trust_auth_outgoing
, talloc_tos(),
2296 (ndr_pull_flags_fn_t
)ndr_pull_trustAuthInOutBlob
);
2297 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
2298 return NT_STATUS_UNSUCCESSFUL
;
2301 aia
= (struct AuthenticationInformation
*) taiob
.current
.array
;
2303 if (taiob
.count
!= 1 || taiob
.current
.count
!= 1 ||
2304 taiob
.previous
.count
!= 0 ||
2305 aia
->AuthType
!= TRUST_AUTH_TYPE_CLEAR
) {
2306 return NT_STATUS_NOT_IMPLEMENTED
;
2309 pwd
= talloc_strndup(talloc_tos(), (char *) aia
->AuthInfo
.clear
.password
,
2310 aia
->AuthInfo
.clear
.size
);
2312 return NT_STATUS_NO_MEMORY
;
2315 ok
= pdb_set_trusteddom_pw(domain
, pwd
, &td
->security_identifier
);
2317 return NT_STATUS_UNSUCCESSFUL
;
2320 return NT_STATUS_OK
;
2323 static NTSTATUS
pdb_default_del_trusted_domain(struct pdb_methods
*methods
,
2326 return NT_STATUS_NOT_IMPLEMENTED
;
2329 static NTSTATUS
pdb_default_enum_trusted_domains(struct pdb_methods
*methods
,
2330 TALLOC_CTX
*mem_ctx
,
2331 uint32_t *num_domains
,
2332 struct pdb_trusted_domain
***domains
)
2334 return NT_STATUS_NOT_IMPLEMENTED
;
2337 static struct pdb_domain_info
*pdb_default_get_domain_info(
2338 struct pdb_methods
*m
, TALLOC_CTX
*mem_ctx
)
2343 /*******************************************************************
2345 *******************************************************************/
2347 NTSTATUS
pdb_get_secret(TALLOC_CTX
*mem_ctx
,
2348 const char *secret_name
,
2349 DATA_BLOB
*secret_current
,
2350 NTTIME
*secret_current_lastchange
,
2351 DATA_BLOB
*secret_old
,
2352 NTTIME
*secret_old_lastchange
,
2353 struct security_descriptor
**sd
)
2355 struct pdb_methods
*pdb
= pdb_get_methods();
2356 return pdb
->get_secret(pdb
, mem_ctx
, secret_name
,
2357 secret_current
, secret_current_lastchange
,
2358 secret_old
, secret_old_lastchange
,
2362 NTSTATUS
pdb_set_secret(const char *secret_name
,
2363 DATA_BLOB
*secret_current
,
2364 DATA_BLOB
*secret_old
,
2365 struct security_descriptor
*sd
)
2367 struct pdb_methods
*pdb
= pdb_get_methods();
2368 return pdb
->set_secret(pdb
, secret_name
,
2374 NTSTATUS
pdb_delete_secret(const char *secret_name
)
2376 struct pdb_methods
*pdb
= pdb_get_methods();
2377 return pdb
->delete_secret(pdb
, secret_name
);
2380 static NTSTATUS
pdb_default_get_secret(struct pdb_methods
*methods
,
2381 TALLOC_CTX
*mem_ctx
,
2382 const char *secret_name
,
2383 DATA_BLOB
*secret_current
,
2384 NTTIME
*secret_current_lastchange
,
2385 DATA_BLOB
*secret_old
,
2386 NTTIME
*secret_old_lastchange
,
2387 struct security_descriptor
**sd
)
2389 return lsa_secret_get(mem_ctx
, secret_name
,
2391 secret_current_lastchange
,
2393 secret_old_lastchange
,
2397 static NTSTATUS
pdb_default_set_secret(struct pdb_methods
*methods
,
2398 const char *secret_name
,
2399 DATA_BLOB
*secret_current
,
2400 DATA_BLOB
*secret_old
,
2401 struct security_descriptor
*sd
)
2403 return lsa_secret_set(secret_name
,
2409 static NTSTATUS
pdb_default_delete_secret(struct pdb_methods
*methods
,
2410 const char *secret_name
)
2412 return lsa_secret_delete(secret_name
);
2415 /*******************************************************************
2416 Create a pdb_methods structure and initialize it with the default
2417 operations. In this way a passdb module can simply implement
2418 the functionality it cares about. However, normally this is done
2419 in groups of related functions.
2420 *******************************************************************/
2422 NTSTATUS
make_pdb_method( struct pdb_methods
**methods
)
2424 /* allocate memory for the structure as its own talloc CTX */
2426 *methods
= talloc_zero(NULL
, struct pdb_methods
);
2427 if (*methods
== NULL
) {
2428 return NT_STATUS_NO_MEMORY
;
2431 (*methods
)->get_domain_info
= pdb_default_get_domain_info
;
2432 (*methods
)->getsampwnam
= pdb_default_getsampwnam
;
2433 (*methods
)->getsampwsid
= pdb_default_getsampwsid
;
2434 (*methods
)->create_user
= pdb_default_create_user
;
2435 (*methods
)->delete_user
= pdb_default_delete_user
;
2436 (*methods
)->add_sam_account
= pdb_default_add_sam_account
;
2437 (*methods
)->update_sam_account
= pdb_default_update_sam_account
;
2438 (*methods
)->delete_sam_account
= pdb_default_delete_sam_account
;
2439 (*methods
)->rename_sam_account
= pdb_default_rename_sam_account
;
2440 (*methods
)->update_login_attempts
= pdb_default_update_login_attempts
;
2442 (*methods
)->getgrsid
= pdb_default_getgrsid
;
2443 (*methods
)->getgrgid
= pdb_default_getgrgid
;
2444 (*methods
)->getgrnam
= pdb_default_getgrnam
;
2445 (*methods
)->create_dom_group
= pdb_default_create_dom_group
;
2446 (*methods
)->delete_dom_group
= pdb_default_delete_dom_group
;
2447 (*methods
)->add_group_mapping_entry
= pdb_default_add_group_mapping_entry
;
2448 (*methods
)->update_group_mapping_entry
= pdb_default_update_group_mapping_entry
;
2449 (*methods
)->delete_group_mapping_entry
= pdb_default_delete_group_mapping_entry
;
2450 (*methods
)->enum_group_mapping
= pdb_default_enum_group_mapping
;
2451 (*methods
)->enum_group_members
= pdb_default_enum_group_members
;
2452 (*methods
)->enum_group_memberships
= pdb_default_enum_group_memberships
;
2453 (*methods
)->set_unix_primary_group
= pdb_default_set_unix_primary_group
;
2454 (*methods
)->add_groupmem
= pdb_default_add_groupmem
;
2455 (*methods
)->del_groupmem
= pdb_default_del_groupmem
;
2456 (*methods
)->create_alias
= pdb_default_create_alias
;
2457 (*methods
)->delete_alias
= pdb_default_delete_alias
;
2458 (*methods
)->get_aliasinfo
= pdb_default_get_aliasinfo
;
2459 (*methods
)->set_aliasinfo
= pdb_default_set_aliasinfo
;
2460 (*methods
)->add_aliasmem
= pdb_default_add_aliasmem
;
2461 (*methods
)->del_aliasmem
= pdb_default_del_aliasmem
;
2462 (*methods
)->enum_aliasmem
= pdb_default_enum_aliasmem
;
2463 (*methods
)->enum_alias_memberships
= pdb_default_alias_memberships
;
2464 (*methods
)->lookup_rids
= pdb_default_lookup_rids
;
2465 (*methods
)->get_account_policy
= pdb_default_get_account_policy
;
2466 (*methods
)->set_account_policy
= pdb_default_set_account_policy
;
2467 (*methods
)->get_seq_num
= pdb_default_get_seq_num
;
2468 (*methods
)->uid_to_sid
= pdb_default_uid_to_sid
;
2469 (*methods
)->gid_to_sid
= pdb_default_gid_to_sid
;
2470 (*methods
)->sid_to_id
= pdb_default_sid_to_id
;
2472 (*methods
)->search_groups
= pdb_default_search_groups
;
2473 (*methods
)->search_aliases
= pdb_default_search_aliases
;
2475 (*methods
)->get_trusteddom_pw
= pdb_default_get_trusteddom_pw
;
2476 (*methods
)->set_trusteddom_pw
= pdb_default_set_trusteddom_pw
;
2477 (*methods
)->del_trusteddom_pw
= pdb_default_del_trusteddom_pw
;
2478 (*methods
)->enum_trusteddoms
= pdb_default_enum_trusteddoms
;
2480 (*methods
)->get_trusted_domain
= pdb_default_get_trusted_domain
;
2481 (*methods
)->get_trusted_domain_by_sid
= pdb_default_get_trusted_domain_by_sid
;
2482 (*methods
)->set_trusted_domain
= pdb_default_set_trusted_domain
;
2483 (*methods
)->del_trusted_domain
= pdb_default_del_trusted_domain
;
2484 (*methods
)->enum_trusted_domains
= pdb_default_enum_trusted_domains
;
2486 (*methods
)->get_secret
= pdb_default_get_secret
;
2487 (*methods
)->set_secret
= pdb_default_set_secret
;
2488 (*methods
)->delete_secret
= pdb_default_delete_secret
;
2490 return NT_STATUS_OK
;