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"
32 #include "../lib/util/memcache.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"
37 #include "lib/util_sid_passdb.h"
38 #include "idmap_cache.h"
41 #define DBGC_CLASS DBGC_PASSDB
45 static struct pdb_init_function_entry
*backends
= NULL
;
47 static void lazy_initialize_passdb(void)
49 static bool initialized
= False
;
57 static bool lookup_global_sam_rid(TALLOC_CTX
*mem_ctx
, uint32 rid
,
59 enum lsa_SidType
*psid_name_use
,
60 uid_t
*uid
, gid_t
*gid
);
62 NTSTATUS
smb_register_passdb(int version
, const char *name
, pdb_init_function init
)
64 struct pdb_init_function_entry
*entry
= backends
;
66 if(version
!= PASSDB_INTERFACE_VERSION
) {
67 DEBUG(0,("Can't register passdb backend!\n"
68 "You tried to register a passdb module with PASSDB_INTERFACE_VERSION %d, "
69 "while this version of samba uses version %d\n",
70 version
,PASSDB_INTERFACE_VERSION
));
71 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
75 return NT_STATUS_INVALID_PARAMETER
;
78 DEBUG(5,("Attempting to register passdb backend %s\n", name
));
80 /* Check for duplicates */
81 if (pdb_find_backend_entry(name
)) {
82 DEBUG(0,("There already is a passdb backend registered with the name %s!\n", name
));
83 return NT_STATUS_OBJECT_NAME_COLLISION
;
86 entry
= SMB_XMALLOC_P(struct pdb_init_function_entry
);
87 entry
->name
= smb_xstrdup(name
);
90 DLIST_ADD(backends
, entry
);
91 DEBUG(5,("Successfully added passdb backend '%s'\n", name
));
95 struct pdb_init_function_entry
*pdb_find_backend_entry(const char *name
)
97 struct pdb_init_function_entry
*entry
= backends
;
100 if (strcmp(entry
->name
, name
)==0) return entry
;
107 const struct pdb_init_function_entry
*pdb_get_backends(void)
114 * The event context for the passdb backend. I know this is a bad hack and yet
115 * another static variable, but our pdb API is a global thing per
116 * definition. The first use for this is the LDAP idle function, more might be
119 * I don't feel too bad about this static variable, it replaces the
120 * smb_idle_event_list that used to exist in lib/module.c. -- VL
123 static struct tevent_context
*pdb_tevent_ctx
;
125 struct tevent_context
*pdb_get_tevent_context(void)
127 return pdb_tevent_ctx
;
130 /******************************************************************
131 Make a pdb_methods from scratch
132 *******************************************************************/
134 NTSTATUS
make_pdb_method_name(struct pdb_methods
**methods
, const char *selected
)
136 char *module_name
= smb_xstrdup(selected
);
137 char *module_location
= NULL
, *p
;
138 struct pdb_init_function_entry
*entry
;
139 NTSTATUS nt_status
= NT_STATUS_UNSUCCESSFUL
;
141 lazy_initialize_passdb();
143 p
= strchr(module_name
, ':');
147 module_location
= p
+1;
148 trim_char(module_location
, ' ', ' ');
151 trim_char(module_name
, ' ', ' ');
154 DEBUG(5,("Attempting to find a passdb backend to match %s (%s)\n", selected
, module_name
));
156 entry
= pdb_find_backend_entry(module_name
);
158 /* Try to find a module that contains this module */
160 DEBUG(2,("No builtin backend found, trying to load plugin\n"));
161 if(NT_STATUS_IS_OK(smb_probe_module("pdb", module_name
)) && !(entry
= pdb_find_backend_entry(module_name
))) {
162 DEBUG(0,("Plugin is available, but doesn't register passdb backend %s\n", module_name
));
163 SAFE_FREE(module_name
);
164 return NT_STATUS_UNSUCCESSFUL
;
168 /* No such backend found */
170 DEBUG(0,("No builtin nor plugin backend for %s found\n", module_name
));
171 SAFE_FREE(module_name
);
172 return NT_STATUS_INVALID_PARAMETER
;
175 DEBUG(5,("Found pdb backend %s\n", module_name
));
177 if ( !NT_STATUS_IS_OK( nt_status
= entry
->init(methods
, module_location
) ) ) {
178 DEBUG(0,("pdb backend %s did not correctly init (error was %s)\n",
179 selected
, nt_errstr(nt_status
)));
180 SAFE_FREE(module_name
);
184 SAFE_FREE(module_name
);
186 DEBUG(5,("pdb backend %s has a valid init\n", selected
));
191 /******************************************************************
192 Return an already initialized pdb_methods structure
193 *******************************************************************/
195 static struct pdb_methods
*pdb_get_methods_reload( bool reload
)
197 static struct pdb_methods
*pdb
= NULL
;
199 if ( pdb
&& reload
) {
200 if (pdb
->free_private_data
!= NULL
) {
201 pdb
->free_private_data( &(pdb
->private_data
) );
203 if ( !NT_STATUS_IS_OK( make_pdb_method_name( &pdb
, lp_passdb_backend() ) ) ) {
209 if ( !NT_STATUS_IS_OK( make_pdb_method_name( &pdb
, lp_passdb_backend() ) ) ) {
217 static struct pdb_methods
*pdb_get_methods(void)
219 struct pdb_methods
*pdb
;
221 pdb
= pdb_get_methods_reload(false);
224 if (asprintf(&msg
, "pdb_get_methods: "
225 "failed to get pdb methods for backend %s\n",
226 lp_passdb_backend()) > 0) {
229 smb_panic("pdb_get_methods");
236 struct pdb_domain_info
*pdb_get_domain_info(TALLOC_CTX
*mem_ctx
)
238 struct pdb_methods
*pdb
= pdb_get_methods();
239 return pdb
->get_domain_info(pdb
, mem_ctx
);
243 * @brief Check if the user account has been locked out and try to unlock it.
245 * If the user has been automatically locked out and a lockout duration is set,
246 * then check if we can unlock the account and reset the bad password values.
248 * @param[in] sampass The sam user to check.
250 * @return True if the function was successfull, false on an error.
252 static bool pdb_try_account_unlock(struct samu
*sampass
)
254 uint32_t acb_info
= pdb_get_acct_ctrl(sampass
);
256 if ((acb_info
& ACB_NORMAL
) && (acb_info
& ACB_AUTOLOCK
)) {
257 uint32_t lockout_duration
;
258 time_t bad_password_time
;
259 time_t now
= time(NULL
);
262 ok
= pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION
,
265 DEBUG(0, ("pdb_try_account_unlock: "
266 "pdb_get_account_policy failed.\n"));
270 if (lockout_duration
== (uint32_t) -1 ||
271 lockout_duration
== 0) {
272 DEBUG(9, ("pdb_try_account_unlock: No reset duration, "
273 "can't reset autolock\n"));
276 lockout_duration
*= 60;
278 bad_password_time
= pdb_get_bad_password_time(sampass
);
279 if (bad_password_time
== (time_t) 0) {
280 DEBUG(2, ("pdb_try_account_unlock: Account %s "
281 "administratively locked out "
282 "with no bad password "
283 "time. Leaving locked out.\n",
284 pdb_get_username(sampass
)));
288 if ((bad_password_time
+
289 convert_uint32_t_to_time_t(lockout_duration
)) < now
) {
292 pdb_set_acct_ctrl(sampass
, acb_info
& ~ACB_AUTOLOCK
,
294 pdb_set_bad_password_count(sampass
, 0, PDB_CHANGED
);
295 pdb_set_bad_password_time(sampass
, 0, PDB_CHANGED
);
298 status
= pdb_update_sam_account(sampass
);
300 if (!NT_STATUS_IS_OK(status
)) {
301 DEBUG(0, ("_samr_OpenUser: Couldn't "
302 "update account %s - %s\n",
303 pdb_get_username(sampass
),
314 * @brief Get a sam user structure by the given username.
316 * This functions also checks if the account has been automatically locked out
317 * and unlocks it if a lockout duration time has been defined and the time has
320 * @param[in] sam_acct The sam user structure to fill.
322 * @param[in] username The username to look for.
324 * @return True on success, false on error.
326 bool pdb_getsampwnam(struct samu
*sam_acct
, const char *username
)
328 struct pdb_methods
*pdb
= pdb_get_methods();
329 struct samu
*for_cache
;
330 const struct dom_sid
*user_sid
;
334 status
= pdb
->getsampwnam(pdb
, sam_acct
, username
);
335 if (!NT_STATUS_IS_OK(status
)) {
339 ok
= pdb_try_account_unlock(sam_acct
);
341 DEBUG(1, ("pdb_getsampwnam: Failed to unlock account %s\n",
345 for_cache
= samu_new(NULL
);
346 if (for_cache
== NULL
) {
350 if (!pdb_copy_sam_account(for_cache
, sam_acct
)) {
351 TALLOC_FREE(for_cache
);
355 user_sid
= pdb_get_user_sid(for_cache
);
357 memcache_add_talloc(NULL
, PDB_GETPWSID_CACHE
,
358 data_blob_const(user_sid
, sizeof(*user_sid
)),
364 /**********************************************************************
365 **********************************************************************/
367 static bool guest_user_info( struct samu
*user
)
371 const char *guestname
= lp_guest_account();
373 pwd
= Get_Pwnam_alloc(talloc_tos(), guestname
);
375 DEBUG(0,("guest_user_info: Unable to locate guest account [%s]!\n",
380 result
= samu_set_unix(user
, pwd
);
384 return NT_STATUS_IS_OK( result
);
388 * @brief Get a sam user structure by the given username.
390 * This functions also checks if the account has been automatically locked out
391 * and unlocks it if a lockout duration time has been defined and the time has
395 * @param[in] sam_acct The sam user structure to fill.
397 * @param[in] sid The user SDI to look up.
399 * @return True on success, false on error.
401 bool pdb_getsampwsid(struct samu
*sam_acct
, const struct dom_sid
*sid
)
403 struct pdb_methods
*pdb
= pdb_get_methods();
408 /* hard code the Guest RID of 501 */
410 if ( !sid_peek_check_rid( get_global_sam_sid(), sid
, &rid
) )
413 if ( rid
== DOMAIN_RID_GUEST
) {
414 DEBUG(6,("pdb_getsampwsid: Building guest account\n"));
415 return guest_user_info( sam_acct
);
418 /* check the cache first */
420 cache_data
= memcache_lookup_talloc(
421 NULL
, PDB_GETPWSID_CACHE
, data_blob_const(sid
, sizeof(*sid
)));
423 if (cache_data
!= NULL
) {
424 struct samu
*cache_copy
= talloc_get_type_abort(
425 cache_data
, struct samu
);
427 ok
= pdb_copy_sam_account(sam_acct
, cache_copy
);
429 ok
= NT_STATUS_IS_OK(pdb
->getsampwsid(pdb
, sam_acct
, sid
));
436 ok
= pdb_try_account_unlock(sam_acct
);
438 DEBUG(1, ("pdb_getsampwsid: Failed to unlock account %s\n",
439 sam_acct
->username
));
445 static NTSTATUS
pdb_default_create_user(struct pdb_methods
*methods
,
446 TALLOC_CTX
*tmp_ctx
, const char *name
,
447 uint32_t acb_info
, uint32_t *rid
)
449 struct samu
*sam_pass
;
453 if ((sam_pass
= samu_new(tmp_ctx
)) == NULL
) {
454 return NT_STATUS_NO_MEMORY
;
457 if ( !(pwd
= Get_Pwnam_alloc(tmp_ctx
, name
)) ) {
458 char *add_script
= NULL
;
462 if ((acb_info
& ACB_NORMAL
) && name
[strlen(name
)-1] != '$') {
463 add_script
= lp_add_user_script(tmp_ctx
);
465 add_script
= lp_add_machine_script(tmp_ctx
);
468 if (!add_script
|| add_script
[0] == '\0') {
469 DEBUG(3, ("Could not find user %s and no add script "
471 return NT_STATUS_NO_SUCH_USER
;
474 /* lowercase the username before creating the Unix account for
475 compatibility with previous Samba releases */
476 fstrcpy( name2
, name
);
477 if (!strlower_m( name2
)) {
478 return NT_STATUS_INVALID_PARAMETER
;
480 add_script
= talloc_all_string_sub(tmp_ctx
,
485 return NT_STATUS_NO_MEMORY
;
487 add_ret
= smbrun(add_script
,NULL
);
488 DEBUG(add_ret
? 0 : 3, ("_samr_create_user: Running the command `%s' gave %d\n",
489 add_script
, add_ret
));
491 smb_nscd_flush_user_cache();
496 pwd
= Get_Pwnam_alloc(tmp_ctx
, name
);
499 DEBUG(3, ("Could not find user %s, add script did not work\n", name
));
500 return NT_STATUS_NO_SUCH_USER
;
504 /* we have a valid SID coming out of this call */
506 status
= samu_alloc_rid_unix(methods
, sam_pass
, pwd
);
510 if (!NT_STATUS_IS_OK(status
)) {
511 DEBUG(3, ("pdb_default_create_user: failed to create a new user structure: %s\n", nt_errstr(status
)));
515 if (!sid_peek_check_rid(get_global_sam_sid(),
516 pdb_get_user_sid(sam_pass
), rid
)) {
517 DEBUG(0, ("Could not get RID of fresh user\n"));
518 return NT_STATUS_INTERNAL_ERROR
;
521 /* Use the username case specified in the original request */
523 pdb_set_username( sam_pass
, name
, PDB_SET
);
525 /* Disable the account on creation, it does not have a reasonable password yet. */
527 acb_info
|= ACB_DISABLED
;
529 pdb_set_acct_ctrl(sam_pass
, acb_info
, PDB_CHANGED
);
531 status
= methods
->add_sam_account(methods
, sam_pass
);
533 TALLOC_FREE(sam_pass
);
538 NTSTATUS
pdb_create_user(TALLOC_CTX
*mem_ctx
, const char *name
, uint32_t flags
,
541 struct pdb_methods
*pdb
= pdb_get_methods();
542 return pdb
->create_user(pdb
, mem_ctx
, name
, flags
, rid
);
545 /****************************************************************************
546 Delete a UNIX user on demand.
547 ****************************************************************************/
549 static int smb_delete_user(const char *unix_user
)
551 char *del_script
= NULL
;
556 if ( strequal( unix_user
, "root" ) ) {
557 DEBUG(0,("smb_delete_user: Refusing to delete local system root account!\n"));
561 del_script
= lp_delete_user_script(talloc_tos());
562 if (!del_script
|| !*del_script
) {
565 del_script
= talloc_all_string_sub(talloc_tos(),
572 ret
= smbrun(del_script
,NULL
);
575 smb_nscd_flush_user_cache();
577 DEBUG(ret
? 0 : 3,("smb_delete_user: Running the command `%s' gave %d\n",del_script
,ret
));
582 static NTSTATUS
pdb_default_delete_user(struct pdb_methods
*methods
,
584 struct samu
*sam_acct
)
589 status
= methods
->delete_sam_account(methods
, sam_acct
);
590 if (!NT_STATUS_IS_OK(status
)) {
595 * Now delete the unix side ....
596 * note: we don't check if the delete really happened as the script is
597 * not necessary present and maybe the sysadmin doesn't want to delete
601 /* always lower case the username before handing it off to
604 fstrcpy( username
, pdb_get_username(sam_acct
) );
605 if (!strlower_m( username
)) {
609 smb_delete_user( username
);
614 NTSTATUS
pdb_delete_user(TALLOC_CTX
*mem_ctx
, struct samu
*sam_acct
)
616 struct pdb_methods
*pdb
= pdb_get_methods();
619 const struct dom_sid
*user_sid
;
622 user_sid
= pdb_get_user_sid(sam_acct
);
624 /* sanity check to make sure we don't delete root */
626 if ( !sid_to_uid(user_sid
, &uid
) ) {
627 return NT_STATUS_NO_SUCH_USER
;
631 return NT_STATUS_ACCESS_DENIED
;
634 memcache_delete(NULL
,
636 data_blob_const(user_sid
, sizeof(*user_sid
)));
638 status
= pdb
->delete_user(pdb
, mem_ctx
, sam_acct
);
639 if (!NT_STATUS_IS_OK(status
)) {
643 msg_data
= talloc_asprintf(mem_ctx
, "USER %s",
644 pdb_get_username(sam_acct
));
646 /* not fatal, and too late to rollback,
650 message_send_all(server_messaging_context(),
653 strlen(msg_data
) + 1,
656 TALLOC_FREE(msg_data
);
660 NTSTATUS
pdb_add_sam_account(struct samu
*sam_acct
)
662 struct pdb_methods
*pdb
= pdb_get_methods();
663 return pdb
->add_sam_account(pdb
, sam_acct
);
666 NTSTATUS
pdb_update_sam_account(struct samu
*sam_acct
)
668 struct pdb_methods
*pdb
= pdb_get_methods();
670 memcache_flush(NULL
, PDB_GETPWSID_CACHE
);
672 return pdb
->update_sam_account(pdb
, sam_acct
);
675 NTSTATUS
pdb_delete_sam_account(struct samu
*sam_acct
)
677 struct pdb_methods
*pdb
= pdb_get_methods();
678 const struct dom_sid
*user_sid
= pdb_get_user_sid(sam_acct
);
680 memcache_delete(NULL
,
682 data_blob_const(user_sid
, sizeof(*user_sid
)));
684 return pdb
->delete_sam_account(pdb
, sam_acct
);
687 NTSTATUS
pdb_rename_sam_account(struct samu
*oldname
, const char *newname
)
689 struct pdb_methods
*pdb
= pdb_get_methods();
693 memcache_flush(NULL
, PDB_GETPWSID_CACHE
);
695 /* sanity check to make sure we don't rename root */
697 if ( !sid_to_uid( pdb_get_user_sid(oldname
), &uid
) ) {
698 return NT_STATUS_NO_SUCH_USER
;
702 return NT_STATUS_ACCESS_DENIED
;
705 status
= pdb
->rename_sam_account(pdb
, oldname
, newname
);
707 /* always flush the cache here just to be safe */
713 NTSTATUS
pdb_update_login_attempts(struct samu
*sam_acct
, bool success
)
715 struct pdb_methods
*pdb
= pdb_get_methods();
716 return pdb
->update_login_attempts(pdb
, sam_acct
, success
);
719 bool pdb_getgrsid(GROUP_MAP
*map
, struct dom_sid sid
)
721 struct pdb_methods
*pdb
= pdb_get_methods();
722 return NT_STATUS_IS_OK(pdb
->getgrsid(pdb
, map
, sid
));
725 bool pdb_getgrgid(GROUP_MAP
*map
, gid_t gid
)
727 struct pdb_methods
*pdb
= pdb_get_methods();
728 return NT_STATUS_IS_OK(pdb
->getgrgid(pdb
, map
, gid
));
731 bool pdb_getgrnam(GROUP_MAP
*map
, const char *name
)
733 struct pdb_methods
*pdb
= pdb_get_methods();
734 return NT_STATUS_IS_OK(pdb
->getgrnam(pdb
, map
, name
));
737 static NTSTATUS
pdb_default_create_dom_group(struct pdb_methods
*methods
,
742 struct dom_sid group_sid
;
746 grp
= getgrnam(name
);
751 if (smb_create_group(name
, &gid
) != 0) {
752 return NT_STATUS_ACCESS_DENIED
;
759 return NT_STATUS_ACCESS_DENIED
;
762 if (pdb_capabilities() & PDB_CAP_STORE_RIDS
) {
763 if (!pdb_new_rid(rid
)) {
764 return NT_STATUS_ACCESS_DENIED
;
767 *rid
= algorithmic_pdb_gid_to_group_rid( grp
->gr_gid
);
770 sid_compose(&group_sid
, get_global_sam_sid(), *rid
);
772 return add_initial_entry(grp
->gr_gid
, sid_to_fstring(tmp
, &group_sid
),
773 SID_NAME_DOM_GRP
, name
, NULL
);
776 NTSTATUS
pdb_create_dom_group(TALLOC_CTX
*mem_ctx
, const char *name
,
779 struct pdb_methods
*pdb
= pdb_get_methods();
780 return pdb
->create_dom_group(pdb
, mem_ctx
, name
, rid
);
783 static NTSTATUS
pdb_default_delete_dom_group(struct pdb_methods
*methods
,
787 struct dom_sid group_sid
;
791 const char *grp_name
;
793 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
795 return NT_STATUS_NO_MEMORY
;
799 map
->gid
= (gid_t
) -1;
801 sid_compose(&group_sid
, get_global_sam_sid(), rid
);
803 if (!get_domain_group_from_sid(group_sid
, map
)) {
804 DEBUG(10, ("Could not find group for rid %d\n", rid
));
805 return NT_STATUS_NO_SUCH_GROUP
;
808 /* We need the group name for the smb_delete_group later on */
810 if (map
->gid
== (gid_t
)-1) {
811 return NT_STATUS_NO_SUCH_GROUP
;
814 grp
= getgrgid(map
->gid
);
816 return NT_STATUS_NO_SUCH_GROUP
;
821 /* Copy the name, no idea what pdb_delete_group_mapping_entry does.. */
823 grp_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
824 if (grp_name
== NULL
) {
825 return NT_STATUS_NO_MEMORY
;
828 status
= pdb_delete_group_mapping_entry(group_sid
);
830 if (!NT_STATUS_IS_OK(status
)) {
834 /* Don't check the result of smb_delete_group */
836 smb_delete_group(grp_name
);
841 NTSTATUS
pdb_delete_dom_group(TALLOC_CTX
*mem_ctx
, uint32_t rid
)
843 struct pdb_methods
*pdb
= pdb_get_methods();
844 return pdb
->delete_dom_group(pdb
, mem_ctx
, rid
);
847 NTSTATUS
pdb_add_group_mapping_entry(GROUP_MAP
*map
)
849 struct pdb_methods
*pdb
= pdb_get_methods();
850 return pdb
->add_group_mapping_entry(pdb
, map
);
853 NTSTATUS
pdb_update_group_mapping_entry(GROUP_MAP
*map
)
855 struct pdb_methods
*pdb
= pdb_get_methods();
856 return pdb
->update_group_mapping_entry(pdb
, map
);
859 NTSTATUS
pdb_delete_group_mapping_entry(struct dom_sid sid
)
861 struct pdb_methods
*pdb
= pdb_get_methods();
862 return pdb
->delete_group_mapping_entry(pdb
, sid
);
865 bool pdb_enum_group_mapping(const struct dom_sid
*sid
,
866 enum lsa_SidType sid_name_use
,
867 GROUP_MAP
***pp_rmap
,
868 size_t *p_num_entries
,
871 struct pdb_methods
*pdb
= pdb_get_methods();
872 return NT_STATUS_IS_OK(pdb
-> enum_group_mapping(pdb
, sid
, sid_name_use
,
873 pp_rmap
, p_num_entries
, unix_only
));
876 NTSTATUS
pdb_enum_group_members(TALLOC_CTX
*mem_ctx
,
877 const struct dom_sid
*sid
,
878 uint32_t **pp_member_rids
,
879 size_t *p_num_members
)
881 struct pdb_methods
*pdb
= pdb_get_methods();
884 result
= pdb
->enum_group_members(pdb
, mem_ctx
,
885 sid
, pp_member_rids
, p_num_members
);
887 /* special check for rid 513 */
889 if ( !NT_STATUS_IS_OK( result
) ) {
892 sid_peek_rid( sid
, &rid
);
894 if ( rid
== DOMAIN_RID_USERS
) {
896 *pp_member_rids
= NULL
;
905 NTSTATUS
pdb_enum_group_memberships(TALLOC_CTX
*mem_ctx
, struct samu
*user
,
906 struct dom_sid
**pp_sids
, gid_t
**pp_gids
,
907 uint32_t *p_num_groups
)
909 struct pdb_methods
*pdb
= pdb_get_methods();
910 return pdb
->enum_group_memberships(
912 pp_sids
, pp_gids
, p_num_groups
);
915 static NTSTATUS
pdb_default_set_unix_primary_group(struct pdb_methods
*methods
,
917 struct samu
*sampass
)
922 if (!sid_to_gid(pdb_get_group_sid(sampass
), &gid
) ||
923 (grp
= getgrgid(gid
)) == NULL
) {
924 return NT_STATUS_INVALID_PRIMARY_GROUP
;
927 if (smb_set_primary_group(grp
->gr_name
,
928 pdb_get_username(sampass
)) != 0) {
929 return NT_STATUS_ACCESS_DENIED
;
935 NTSTATUS
pdb_set_unix_primary_group(TALLOC_CTX
*mem_ctx
, struct samu
*user
)
937 struct pdb_methods
*pdb
= pdb_get_methods();
938 return pdb
->set_unix_primary_group(pdb
, mem_ctx
, user
);
942 * Helper function to see whether a user is in a group. We can't use
943 * user_in_group_sid here because this creates dependencies only smbd can
947 static bool pdb_user_in_group(TALLOC_CTX
*mem_ctx
, struct samu
*account
,
948 const struct dom_sid
*group_sid
)
950 struct dom_sid
*sids
;
952 uint32_t i
, num_groups
;
954 if (!NT_STATUS_IS_OK(pdb_enum_group_memberships(mem_ctx
, account
,
960 for (i
=0; i
<num_groups
; i
++) {
961 if (dom_sid_equal(group_sid
, &sids
[i
])) {
968 static NTSTATUS
pdb_default_add_groupmem(struct pdb_methods
*methods
,
973 struct dom_sid group_sid
, member_sid
;
974 struct samu
*account
= NULL
;
978 const char *group_name
;
981 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
983 return NT_STATUS_NO_MEMORY
;
987 map
->gid
= (gid_t
) -1;
989 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
990 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
992 if (!get_domain_group_from_sid(group_sid
, map
) ||
993 (map
->gid
== (gid_t
)-1) ||
994 ((grp
= getgrgid(map
->gid
)) == NULL
)) {
995 return NT_STATUS_NO_SUCH_GROUP
;
1000 group_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
1001 if (group_name
== NULL
) {
1002 return NT_STATUS_NO_MEMORY
;
1005 if ( !(account
= samu_new( NULL
)) ) {
1006 return NT_STATUS_NO_MEMORY
;
1009 if (!pdb_getsampwsid(account
, &member_sid
) ||
1010 !sid_to_uid(&member_sid
, &uid
) ||
1011 ((pwd
= getpwuid_alloc(mem_ctx
, uid
)) == NULL
)) {
1012 return NT_STATUS_NO_SUCH_USER
;
1015 if (pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1016 return NT_STATUS_MEMBER_IN_GROUP
;
1020 * ok, the group exist, the user exist, the user is not in the group,
1021 * we can (finally) add it to the group !
1024 smb_add_user_group(group_name
, pwd
->pw_name
);
1026 if (!pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1027 return NT_STATUS_ACCESS_DENIED
;
1030 return NT_STATUS_OK
;
1033 NTSTATUS
pdb_add_groupmem(TALLOC_CTX
*mem_ctx
, uint32_t group_rid
,
1034 uint32_t member_rid
)
1036 struct pdb_methods
*pdb
= pdb_get_methods();
1037 return pdb
->add_groupmem(pdb
, mem_ctx
, group_rid
, member_rid
);
1040 static NTSTATUS
pdb_default_del_groupmem(struct pdb_methods
*methods
,
1041 TALLOC_CTX
*mem_ctx
,
1043 uint32_t member_rid
)
1045 struct dom_sid group_sid
, member_sid
;
1046 struct samu
*account
= NULL
;
1050 const char *group_name
;
1053 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1055 return NT_STATUS_NO_MEMORY
;
1058 sid_compose(&group_sid
, get_global_sam_sid(), group_rid
);
1059 sid_compose(&member_sid
, get_global_sam_sid(), member_rid
);
1061 if (!get_domain_group_from_sid(group_sid
, map
) ||
1062 (map
->gid
== (gid_t
)-1) ||
1063 ((grp
= getgrgid(map
->gid
)) == NULL
)) {
1064 return NT_STATUS_NO_SUCH_GROUP
;
1069 group_name
= talloc_strdup(mem_ctx
, grp
->gr_name
);
1070 if (group_name
== NULL
) {
1071 return NT_STATUS_NO_MEMORY
;
1074 if ( !(account
= samu_new( NULL
)) ) {
1075 return NT_STATUS_NO_MEMORY
;
1078 if (!pdb_getsampwsid(account
, &member_sid
) ||
1079 !sid_to_uid(&member_sid
, &uid
) ||
1080 ((pwd
= getpwuid_alloc(mem_ctx
, uid
)) == NULL
)) {
1081 return NT_STATUS_NO_SUCH_USER
;
1084 if (!pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1085 return NT_STATUS_MEMBER_NOT_IN_GROUP
;
1089 * ok, the group exist, the user exist, the user is in the group,
1090 * we can (finally) delete it from the group!
1093 smb_delete_user_group(group_name
, pwd
->pw_name
);
1095 if (pdb_user_in_group(mem_ctx
, account
, &group_sid
)) {
1096 return NT_STATUS_ACCESS_DENIED
;
1099 return NT_STATUS_OK
;
1102 NTSTATUS
pdb_del_groupmem(TALLOC_CTX
*mem_ctx
, uint32_t group_rid
,
1103 uint32_t member_rid
)
1105 struct pdb_methods
*pdb
= pdb_get_methods();
1106 return pdb
->del_groupmem(pdb
, mem_ctx
, group_rid
, member_rid
);
1109 NTSTATUS
pdb_create_alias(const char *name
, uint32_t *rid
)
1111 struct pdb_methods
*pdb
= pdb_get_methods();
1112 return pdb
->create_alias(pdb
, name
, rid
);
1115 NTSTATUS
pdb_delete_alias(const struct dom_sid
*sid
)
1117 struct pdb_methods
*pdb
= pdb_get_methods();
1118 return pdb
->delete_alias(pdb
, sid
);
1121 NTSTATUS
pdb_get_aliasinfo(const struct dom_sid
*sid
, struct acct_info
*info
)
1123 struct pdb_methods
*pdb
= pdb_get_methods();
1124 return pdb
->get_aliasinfo(pdb
, sid
, info
);
1127 NTSTATUS
pdb_set_aliasinfo(const struct dom_sid
*sid
, struct acct_info
*info
)
1129 struct pdb_methods
*pdb
= pdb_get_methods();
1130 return pdb
->set_aliasinfo(pdb
, sid
, info
);
1133 NTSTATUS
pdb_add_aliasmem(const struct dom_sid
*alias
, const struct dom_sid
*member
)
1135 struct pdb_methods
*pdb
= pdb_get_methods();
1136 return pdb
->add_aliasmem(pdb
, alias
, member
);
1139 NTSTATUS
pdb_del_aliasmem(const struct dom_sid
*alias
, const struct dom_sid
*member
)
1141 struct pdb_methods
*pdb
= pdb_get_methods();
1142 return pdb
->del_aliasmem(pdb
, alias
, member
);
1145 NTSTATUS
pdb_enum_aliasmem(const struct dom_sid
*alias
, TALLOC_CTX
*mem_ctx
,
1146 struct dom_sid
**pp_members
, size_t *p_num_members
)
1148 struct pdb_methods
*pdb
= pdb_get_methods();
1149 return pdb
->enum_aliasmem(pdb
, alias
, mem_ctx
, pp_members
,
1153 NTSTATUS
pdb_enum_alias_memberships(TALLOC_CTX
*mem_ctx
,
1154 const struct dom_sid
*domain_sid
,
1155 const struct dom_sid
*members
, size_t num_members
,
1156 uint32_t **pp_alias_rids
,
1157 size_t *p_num_alias_rids
)
1159 struct pdb_methods
*pdb
= pdb_get_methods();
1160 return pdb
->enum_alias_memberships(pdb
, mem_ctx
,
1162 members
, num_members
,
1167 NTSTATUS
pdb_lookup_rids(const struct dom_sid
*domain_sid
,
1171 enum lsa_SidType
*attrs
)
1173 struct pdb_methods
*pdb
= pdb_get_methods();
1174 return pdb
->lookup_rids(pdb
, domain_sid
, num_rids
, rids
, names
, attrs
);
1177 bool pdb_get_account_policy(enum pdb_policy_type type
, uint32_t *value
)
1179 struct pdb_methods
*pdb
= pdb_get_methods();
1183 status
= pdb
->get_account_policy(pdb
, type
, value
);
1186 return NT_STATUS_IS_OK(status
);
1189 bool pdb_set_account_policy(enum pdb_policy_type type
, uint32_t value
)
1191 struct pdb_methods
*pdb
= pdb_get_methods();
1195 status
= pdb
->set_account_policy(pdb
, type
, value
);
1198 return NT_STATUS_IS_OK(status
);
1201 bool pdb_get_seq_num(time_t *seq_num
)
1203 struct pdb_methods
*pdb
= pdb_get_methods();
1204 return NT_STATUS_IS_OK(pdb
->get_seq_num(pdb
, seq_num
));
1207 bool pdb_uid_to_sid(uid_t uid
, struct dom_sid
*sid
)
1209 struct pdb_methods
*pdb
= pdb_get_methods();
1212 ret
= pdb
->uid_to_sid(pdb
, uid
, sid
);
1217 id
.type
= ID_TYPE_UID
;
1218 idmap_cache_set_sid2unixid(sid
, &id
);
1224 bool pdb_gid_to_sid(gid_t gid
, struct dom_sid
*sid
)
1226 struct pdb_methods
*pdb
= pdb_get_methods();
1229 ret
= pdb
->gid_to_sid(pdb
, gid
, sid
);
1234 id
.type
= ID_TYPE_GID
;
1235 idmap_cache_set_sid2unixid(sid
, &id
);
1241 bool pdb_sid_to_id(const struct dom_sid
*sid
, struct unixid
*id
)
1243 struct pdb_methods
*pdb
= pdb_get_methods();
1246 /* only ask the backend if it is responsible */
1247 if (!sid_check_object_is_for_passdb(sid
)) {
1251 ret
= pdb
->sid_to_id(pdb
, sid
, id
);
1254 idmap_cache_set_sid2unixid(sid
, id
);
1260 uint32_t pdb_capabilities(void)
1262 struct pdb_methods
*pdb
= pdb_get_methods();
1263 return pdb
->capabilities(pdb
);
1266 /********************************************************************
1267 Allocate a new RID from the passdb backend. Verify that it is free
1268 by calling lookup_global_sam_rid() to verify that the RID is not
1269 in use. This handles servers that have existing users or groups
1270 with add RIDs (assigned from previous algorithmic mappings)
1271 ********************************************************************/
1273 bool pdb_new_rid(uint32_t *rid
)
1275 struct pdb_methods
*pdb
= pdb_get_methods();
1276 const char *name
= NULL
;
1277 enum lsa_SidType type
;
1278 uint32_t allocated_rid
= 0;
1282 if ((pdb_capabilities() & PDB_CAP_STORE_RIDS
) == 0) {
1283 DEBUG(0, ("Trying to allocate a RID when algorithmic RIDs "
1288 if (algorithmic_rid_base() != BASE_RID
) {
1289 DEBUG(0, ("'algorithmic rid base' is set but a passdb backend "
1290 "without algorithmic RIDs is chosen.\n"));
1291 DEBUGADD(0, ("Please map all used groups using 'net groupmap "
1292 "add', set the maximum used RID\n"));
1293 DEBUGADD(0, ("and remove the parameter\n"));
1297 if ( (ctx
= talloc_init("pdb_new_rid")) == NULL
) {
1298 DEBUG(0,("pdb_new_rid: Talloc initialization failure\n"));
1302 /* Attempt to get an unused RID (max tires is 250...yes that it is
1303 and arbitrary number I pulkled out of my head). -- jerry */
1305 for ( i
=0; allocated_rid
==0 && i
<250; i
++ ) {
1308 if ( !pdb
->new_rid(pdb
, &allocated_rid
) ) {
1312 /* validate that the RID is not in use */
1314 if (lookup_global_sam_rid(ctx
, allocated_rid
, &name
, &type
, NULL
, NULL
)) {
1321 if ( allocated_rid
== 0 ) {
1322 DEBUG(0,("pdb_new_rid: Failed to find unused RID\n"));
1326 *rid
= allocated_rid
;
1331 /***************************************************************
1332 Initialize the static context (at smbd startup etc).
1334 If uninitialised, context will auto-init on first use.
1335 ***************************************************************/
1337 bool initialize_password_db(bool reload
, struct tevent_context
*tevent_ctx
)
1340 pdb_tevent_ctx
= tevent_ctx
;
1342 return (pdb_get_methods_reload(reload
) != NULL
);
1345 /***************************************************************************
1346 Default implementations of some functions.
1347 ****************************************************************************/
1349 static NTSTATUS
pdb_default_getsampwnam (struct pdb_methods
*methods
, struct samu
*user
, const char *sname
)
1351 return NT_STATUS_NO_SUCH_USER
;
1354 static NTSTATUS
pdb_default_getsampwsid(struct pdb_methods
*my_methods
, struct samu
* user
, const struct dom_sid
*sid
)
1356 return NT_STATUS_NO_SUCH_USER
;
1359 static NTSTATUS
pdb_default_add_sam_account (struct pdb_methods
*methods
, struct samu
*newpwd
)
1361 return NT_STATUS_NOT_IMPLEMENTED
;
1364 static NTSTATUS
pdb_default_update_sam_account (struct pdb_methods
*methods
, struct samu
*newpwd
)
1366 return NT_STATUS_NOT_IMPLEMENTED
;
1369 static NTSTATUS
pdb_default_delete_sam_account (struct pdb_methods
*methods
, struct samu
*pwd
)
1371 return NT_STATUS_NOT_IMPLEMENTED
;
1374 static NTSTATUS
pdb_default_rename_sam_account (struct pdb_methods
*methods
, struct samu
*pwd
, const char *newname
)
1376 return NT_STATUS_NOT_IMPLEMENTED
;
1379 static NTSTATUS
pdb_default_update_login_attempts (struct pdb_methods
*methods
, struct samu
*newpwd
, bool success
)
1381 /* Only the pdb_nds backend implements this, by
1382 * default just return ok. */
1383 return NT_STATUS_OK
;
1386 static NTSTATUS
pdb_default_get_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t *value
)
1388 return account_policy_get(type
, value
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1391 static NTSTATUS
pdb_default_set_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t value
)
1393 return account_policy_set(type
, value
) ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1396 static NTSTATUS
pdb_default_get_seq_num(struct pdb_methods
*methods
, time_t *seq_num
)
1398 *seq_num
= time(NULL
);
1399 return NT_STATUS_OK
;
1402 static bool pdb_default_uid_to_sid(struct pdb_methods
*methods
, uid_t uid
,
1403 struct dom_sid
*sid
)
1405 struct samu
*sampw
= NULL
;
1406 struct passwd
*unix_pw
;
1409 unix_pw
= getpwuid( uid
);
1412 DEBUG(4,("pdb_default_uid_to_sid: host has no idea of uid "
1413 "%lu\n", (unsigned long)uid
));
1417 if ( !(sampw
= samu_new( NULL
)) ) {
1418 DEBUG(0,("pdb_default_uid_to_sid: samu_new() failed!\n"));
1423 ret
= NT_STATUS_IS_OK(
1424 methods
->getsampwnam(methods
, sampw
, unix_pw
->pw_name
));
1428 DEBUG(5, ("pdb_default_uid_to_sid: Did not find user "
1429 "%s (%u)\n", unix_pw
->pw_name
, (unsigned int)uid
));
1434 sid_copy(sid
, pdb_get_user_sid(sampw
));
1441 static bool pdb_default_gid_to_sid(struct pdb_methods
*methods
, gid_t gid
,
1442 struct dom_sid
*sid
)
1446 map
= talloc_zero(NULL
, GROUP_MAP
);
1451 if (!NT_STATUS_IS_OK(methods
->getgrgid(methods
, map
, gid
))) {
1456 sid_copy(sid
, &map
->sid
);
1462 * The "Unix User" and "Unix Group" domains have a special
1463 * id mapping that is a rid-algorithm with range starting at 0.
1465 bool pdb_sid_to_id_unix_users_and_groups(const struct dom_sid
*sid
,
1472 if (sid_peek_check_rid(&global_sid_Unix_Users
, sid
, &rid
)) {
1474 id
->type
= ID_TYPE_UID
;
1478 if (sid_peek_check_rid(&global_sid_Unix_Groups
, sid
, &rid
)) {
1480 id
->type
= ID_TYPE_GID
;
1487 static bool pdb_default_sid_to_id(struct pdb_methods
*methods
,
1488 const struct dom_sid
*sid
,
1491 TALLOC_CTX
*mem_ctx
;
1496 mem_ctx
= talloc_new(NULL
);
1498 if (mem_ctx
== NULL
) {
1499 DEBUG(0, ("talloc_new failed\n"));
1503 if (sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
)) {
1505 enum lsa_SidType type
;
1508 /* Here we might have users as well as groups and aliases */
1509 ret
= lookup_global_sam_rid(mem_ctx
, rid
, &name
, &type
, &uid
, &gid
);
1512 case SID_NAME_DOM_GRP
:
1513 case SID_NAME_ALIAS
:
1514 id
->type
= ID_TYPE_GID
;
1518 id
->type
= ID_TYPE_UID
;
1522 DEBUG(5, ("SID %s belongs to our domain, and "
1523 "an object exists in the database, "
1524 "but it is neither a user nor a "
1525 "group (got type %d).\n",
1526 sid_string_dbg(sid
), type
));
1530 DEBUG(5, ("SID %s belongs to our domain, but there is "
1531 "no corresponding object in the database.\n",
1532 sid_string_dbg(sid
)));
1538 * "Unix User" and "Unix Group"
1540 ret
= pdb_sid_to_id_unix_users_and_groups(sid
, id
);
1547 if (sid_check_is_in_builtin(sid
) ||
1548 sid_check_is_in_wellknown_domain(sid
)) {
1549 /* Here we only have aliases */
1552 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1558 if (!NT_STATUS_IS_OK(methods
->getgrsid(methods
, map
, *sid
))) {
1559 DEBUG(10, ("Could not find map for sid %s\n",
1560 sid_string_dbg(sid
)));
1563 if ((map
->sid_name_use
!= SID_NAME_ALIAS
) &&
1564 (map
->sid_name_use
!= SID_NAME_WKN_GRP
)) {
1565 DEBUG(10, ("Map for sid %s is a %s, expected an "
1566 "alias\n", sid_string_dbg(sid
),
1567 sid_type_lookup(map
->sid_name_use
)));
1572 id
->type
= ID_TYPE_GID
;
1577 DEBUG(5, ("Sid %s is neither ours, a Unix SID, nor builtin\n",
1578 sid_string_dbg(sid
)));
1582 TALLOC_FREE(mem_ctx
);
1586 static bool get_memberuids(TALLOC_CTX
*mem_ctx
, gid_t gid
, uid_t
**pp_uids
, uint32_t *p_num
)
1597 /* We only look at our own sam, so don't care about imported stuff */
1598 winbind_env
= winbind_env_set();
1599 (void)winbind_off();
1601 if ((grp
= getgrgid(gid
)) == NULL
) {
1602 /* allow winbindd lookups, but only if they weren't already disabled */
1606 /* Primary group members */
1608 while ((pwd
= getpwent()) != NULL
) {
1609 if (pwd
->pw_gid
== gid
) {
1610 if (!add_uid_to_array_unique(mem_ctx
, pwd
->pw_uid
,
1618 /* Secondary group members */
1619 for (gr
= grp
->gr_mem
; (*gr
!= NULL
) && ((*gr
)[0] != '\0'); gr
+= 1) {
1620 struct passwd
*pw
= getpwnam(*gr
);
1624 if (!add_uid_to_array_unique(mem_ctx
, pw
->pw_uid
, pp_uids
, p_num
)) {
1633 /* allow winbindd lookups, but only if they weren't already disabled */
1641 static NTSTATUS
pdb_default_enum_group_members(struct pdb_methods
*methods
,
1642 TALLOC_CTX
*mem_ctx
,
1643 const struct dom_sid
*group
,
1644 uint32_t **pp_member_rids
,
1645 size_t *p_num_members
)
1649 uint32_t i
, num_uids
;
1651 *pp_member_rids
= NULL
;
1654 if (!sid_to_gid(group
, &gid
))
1655 return NT_STATUS_NO_SUCH_GROUP
;
1657 if(!get_memberuids(mem_ctx
, gid
, &uids
, &num_uids
))
1658 return NT_STATUS_NO_SUCH_GROUP
;
1661 return NT_STATUS_OK
;
1663 *pp_member_rids
= talloc_zero_array(mem_ctx
, uint32_t, num_uids
);
1665 for (i
=0; i
<num_uids
; i
++) {
1668 uid_to_sid(&sid
, uids
[i
]);
1670 if (!sid_check_is_in_our_sam(&sid
)) {
1671 DEBUG(5, ("Inconsistent SAM -- group member uid not "
1672 "in our domain\n"));
1676 sid_peek_rid(&sid
, &(*pp_member_rids
)[*p_num_members
]);
1677 *p_num_members
+= 1;
1680 return NT_STATUS_OK
;
1683 static NTSTATUS
pdb_default_enum_group_memberships(struct pdb_methods
*methods
,
1684 TALLOC_CTX
*mem_ctx
,
1686 struct dom_sid
**pp_sids
,
1688 uint32_t *p_num_groups
)
1693 const char *username
= pdb_get_username(user
);
1696 /* Ignore the primary group SID. Honor the real Unix primary group.
1697 The primary group SID is only of real use to Windows clients */
1699 if ( !(pw
= Get_Pwnam_alloc(mem_ctx
, username
)) ) {
1700 return NT_STATUS_NO_SUCH_USER
;
1707 if (!getgroups_unix_user(mem_ctx
, username
, gid
, pp_gids
, p_num_groups
)) {
1708 return NT_STATUS_NO_SUCH_USER
;
1711 if (*p_num_groups
== 0) {
1712 smb_panic("primary group missing");
1715 *pp_sids
= talloc_array(mem_ctx
, struct dom_sid
, *p_num_groups
);
1717 if (*pp_sids
== NULL
) {
1718 TALLOC_FREE(*pp_gids
);
1719 return NT_STATUS_NO_MEMORY
;
1722 for (i
=0; i
<*p_num_groups
; i
++) {
1723 gid_to_sid(&(*pp_sids
)[i
], (*pp_gids
)[i
]);
1726 return NT_STATUS_OK
;
1729 /*******************************************************************
1730 Look up a rid in the SAM we're responsible for (i.e. passdb)
1731 ********************************************************************/
1733 static bool lookup_global_sam_rid(TALLOC_CTX
*mem_ctx
, uint32_t rid
,
1735 enum lsa_SidType
*psid_name_use
,
1736 uid_t
*uid
, gid_t
*gid
)
1738 struct samu
*sam_account
= NULL
;
1739 GROUP_MAP
*map
= NULL
;
1743 *psid_name_use
= SID_NAME_UNKNOWN
;
1745 DEBUG(5,("lookup_global_sam_rid: looking up RID %u.\n",
1746 (unsigned int)rid
));
1748 sid_compose(&sid
, get_global_sam_sid(), rid
);
1750 /* see if the passdb can help us with the name of the user */
1752 if ( !(sam_account
= samu_new( NULL
)) ) {
1756 map
= talloc_zero(mem_ctx
, GROUP_MAP
);
1761 /* BEING ROOT BLOCK */
1763 ret
= pdb_getsampwsid(sam_account
, &sid
);
1765 TALLOC_FREE(sam_account
);
1766 ret
= pdb_getgrsid(map
, sid
);
1769 /* END BECOME_ROOT BLOCK */
1771 if (sam_account
|| !ret
) {
1778 *name
= talloc_strdup(mem_ctx
, pdb_get_username(sam_account
));
1780 TALLOC_FREE(sam_account
);
1784 *psid_name_use
= SID_NAME_USER
;
1786 TALLOC_FREE(sam_account
);
1792 pw
= Get_Pwnam_alloc(talloc_tos(), *name
);
1800 } else if (map
&& (map
->gid
!= (gid_t
)-1)) {
1802 /* do not resolve SIDs to a name unless there is a valid
1803 gid associated with it */
1805 *name
= talloc_steal(mem_ctx
, map
->nt_name
);
1806 *psid_name_use
= map
->sid_name_use
;
1818 /* Windows will always map RID 513 to something. On a non-domain
1819 controller, this gets mapped to SERVER\None. */
1822 DEBUG(5, ("Can't find a unix id for an unmapped group\n"));
1826 if ( rid
== DOMAIN_RID_USERS
) {
1827 *name
= talloc_strdup(mem_ctx
, "None" );
1828 *psid_name_use
= SID_NAME_DOM_GRP
;
1836 static NTSTATUS
pdb_default_lookup_rids(struct pdb_methods
*methods
,
1837 const struct dom_sid
*domain_sid
,
1841 enum lsa_SidType
*attrs
)
1845 bool have_mapped
= False
;
1846 bool have_unmapped
= False
;
1848 if (sid_check_is_builtin(domain_sid
)) {
1850 for (i
=0; i
<num_rids
; i
++) {
1853 if (lookup_builtin_rid(names
, rids
[i
], &name
)) {
1854 attrs
[i
] = SID_NAME_ALIAS
;
1856 DEBUG(5,("lookup_rids: %s:%d\n",
1857 names
[i
], attrs
[i
]));
1860 have_unmapped
= True
;
1861 attrs
[i
] = SID_NAME_UNKNOWN
;
1867 /* Should not happen, but better check once too many */
1868 if (!sid_check_is_our_sam(domain_sid
)) {
1869 return NT_STATUS_INVALID_HANDLE
;
1872 for (i
= 0; i
< num_rids
; i
++) {
1875 if (lookup_global_sam_rid(names
, rids
[i
], &name
, &attrs
[i
],
1878 return NT_STATUS_NO_MEMORY
;
1881 DEBUG(5,("lookup_rids: %s:%d\n", names
[i
], attrs
[i
]));
1884 have_unmapped
= True
;
1885 attrs
[i
] = SID_NAME_UNKNOWN
;
1891 result
= NT_STATUS_NONE_MAPPED
;
1894 result
= have_unmapped
? STATUS_SOME_UNMAPPED
: NT_STATUS_OK
;
1899 static int pdb_search_destructor(struct pdb_search
*search
)
1901 if ((!search
->search_ended
) && (search
->search_end
!= NULL
)) {
1902 search
->search_end(search
);
1907 struct pdb_search
*pdb_search_init(TALLOC_CTX
*mem_ctx
,
1908 enum pdb_search_type type
)
1910 struct pdb_search
*result
;
1912 result
= talloc(mem_ctx
, struct pdb_search
);
1913 if (result
== NULL
) {
1914 DEBUG(0, ("talloc failed\n"));
1918 result
->type
= type
;
1919 result
->cache
= NULL
;
1920 result
->num_entries
= 0;
1921 result
->cache_size
= 0;
1922 result
->search_ended
= False
;
1923 result
->search_end
= NULL
;
1925 /* Segfault appropriately if not initialized */
1926 result
->next_entry
= NULL
;
1927 result
->search_end
= NULL
;
1929 talloc_set_destructor(result
, pdb_search_destructor
);
1934 static void fill_displayentry(TALLOC_CTX
*mem_ctx
, uint32_t rid
,
1935 uint16_t acct_flags
,
1936 const char *account_name
,
1937 const char *fullname
,
1938 const char *description
,
1939 struct samr_displayentry
*entry
)
1942 entry
->acct_flags
= acct_flags
;
1944 if (account_name
!= NULL
)
1945 entry
->account_name
= talloc_strdup(mem_ctx
, account_name
);
1947 entry
->account_name
= "";
1949 if (fullname
!= NULL
)
1950 entry
->fullname
= talloc_strdup(mem_ctx
, fullname
);
1952 entry
->fullname
= "";
1954 if (description
!= NULL
)
1955 entry
->description
= talloc_strdup(mem_ctx
, description
);
1957 entry
->description
= "";
1960 struct group_search
{
1962 size_t num_groups
, current_group
;
1965 static bool next_entry_groups(struct pdb_search
*s
,
1966 struct samr_displayentry
*entry
)
1968 struct group_search
*state
= (struct group_search
*)s
->private_data
;
1972 if (state
->current_group
== state
->num_groups
)
1975 map
= state
->groups
[state
->current_group
];
1977 sid_peek_rid(&map
->sid
, &rid
);
1979 fill_displayentry(s
, rid
, 0, map
->nt_name
, NULL
, map
->comment
, entry
);
1981 state
->current_group
+= 1;
1985 static void search_end_groups(struct pdb_search
*search
)
1987 struct group_search
*state
=
1988 (struct group_search
*)search
->private_data
;
1989 TALLOC_FREE(state
->groups
);
1992 static bool pdb_search_grouptype(struct pdb_methods
*methods
,
1993 struct pdb_search
*search
,
1994 const struct dom_sid
*sid
, enum lsa_SidType type
)
1996 struct group_search
*state
;
1998 state
= talloc_zero(search
, struct group_search
);
1999 if (state
== NULL
) {
2000 DEBUG(0, ("talloc failed\n"));
2004 if (!NT_STATUS_IS_OK(methods
->enum_group_mapping(methods
, sid
, type
,
2005 &state
->groups
, &state
->num_groups
,
2007 DEBUG(0, ("Could not enum groups\n"));
2011 state
->current_group
= 0;
2012 search
->private_data
= state
;
2013 search
->next_entry
= next_entry_groups
;
2014 search
->search_end
= search_end_groups
;
2018 static bool pdb_default_search_groups(struct pdb_methods
*methods
,
2019 struct pdb_search
*search
)
2021 return pdb_search_grouptype(methods
, search
, get_global_sam_sid(), SID_NAME_DOM_GRP
);
2024 static bool pdb_default_search_aliases(struct pdb_methods
*methods
,
2025 struct pdb_search
*search
,
2026 const struct dom_sid
*sid
)
2029 return pdb_search_grouptype(methods
, search
, sid
, SID_NAME_ALIAS
);
2032 static struct samr_displayentry
*pdb_search_getentry(struct pdb_search
*search
,
2035 if (idx
< search
->num_entries
)
2036 return &search
->cache
[idx
];
2038 if (search
->search_ended
)
2041 while (idx
>= search
->num_entries
) {
2042 struct samr_displayentry entry
;
2044 if (!search
->next_entry(search
, &entry
)) {
2045 search
->search_end(search
);
2046 search
->search_ended
= True
;
2050 ADD_TO_LARGE_ARRAY(search
, struct samr_displayentry
,
2051 entry
, &search
->cache
, &search
->num_entries
,
2052 &search
->cache_size
);
2055 return (search
->num_entries
> idx
) ? &search
->cache
[idx
] : NULL
;
2058 struct pdb_search
*pdb_search_users(TALLOC_CTX
*mem_ctx
, uint32_t acct_flags
)
2060 struct pdb_methods
*pdb
= pdb_get_methods();
2061 struct pdb_search
*result
;
2063 result
= pdb_search_init(mem_ctx
, PDB_USER_SEARCH
);
2064 if (result
== NULL
) {
2068 if (!pdb
->search_users(pdb
, result
, acct_flags
)) {
2069 TALLOC_FREE(result
);
2075 struct pdb_search
*pdb_search_groups(TALLOC_CTX
*mem_ctx
)
2077 struct pdb_methods
*pdb
= pdb_get_methods();
2078 struct pdb_search
*result
;
2080 result
= pdb_search_init(mem_ctx
, PDB_GROUP_SEARCH
);
2081 if (result
== NULL
) {
2085 if (!pdb
->search_groups(pdb
, result
)) {
2086 TALLOC_FREE(result
);
2092 struct pdb_search
*pdb_search_aliases(TALLOC_CTX
*mem_ctx
, const struct dom_sid
*sid
)
2094 struct pdb_methods
*pdb
= pdb_get_methods();
2095 struct pdb_search
*result
;
2097 if (pdb
== NULL
) return NULL
;
2099 result
= pdb_search_init(mem_ctx
, PDB_ALIAS_SEARCH
);
2100 if (result
== NULL
) {
2104 if (!pdb
->search_aliases(pdb
, result
, sid
)) {
2105 TALLOC_FREE(result
);
2111 uint32_t pdb_search_entries(struct pdb_search
*search
,
2112 uint32_t start_idx
, uint32_t max_entries
,
2113 struct samr_displayentry
**result
)
2115 struct samr_displayentry
*end_entry
;
2116 uint32_t end_idx
= start_idx
+max_entries
-1;
2118 /* The first entry needs to be searched after the last. Otherwise the
2119 * first entry might have moved due to a realloc during the search for
2120 * the last entry. */
2122 end_entry
= pdb_search_getentry(search
, end_idx
);
2123 *result
= pdb_search_getentry(search
, start_idx
);
2125 if (end_entry
!= NULL
)
2128 if (start_idx
>= search
->num_entries
)
2131 return search
->num_entries
- start_idx
;
2134 /*******************************************************************
2136 *******************************************************************/
2138 bool pdb_get_trusteddom_pw(const char *domain
, char** pwd
, struct dom_sid
*sid
,
2139 time_t *pass_last_set_time
)
2141 struct pdb_methods
*pdb
= pdb_get_methods();
2142 return pdb
->get_trusteddom_pw(pdb
, domain
, pwd
, sid
,
2143 pass_last_set_time
);
2146 bool pdb_set_trusteddom_pw(const char* domain
, const char* pwd
,
2147 const struct dom_sid
*sid
)
2149 struct pdb_methods
*pdb
= pdb_get_methods();
2150 return pdb
->set_trusteddom_pw(pdb
, domain
, pwd
, sid
);
2153 bool pdb_del_trusteddom_pw(const char *domain
)
2155 struct pdb_methods
*pdb
= pdb_get_methods();
2156 return pdb
->del_trusteddom_pw(pdb
, domain
);
2159 NTSTATUS
pdb_enum_trusteddoms(TALLOC_CTX
*mem_ctx
, uint32_t *num_domains
,
2160 struct trustdom_info
***domains
)
2162 struct pdb_methods
*pdb
= pdb_get_methods();
2163 return pdb
->enum_trusteddoms(pdb
, mem_ctx
, num_domains
, domains
);
2166 /*******************************************************************
2167 the defaults for trustdom methods:
2168 these simply call the original passdb/secrets.c actions,
2169 to be replaced by pdb_ldap.
2170 *******************************************************************/
2172 static bool pdb_default_get_trusteddom_pw(struct pdb_methods
*methods
,
2175 struct dom_sid
*sid
,
2176 time_t *pass_last_set_time
)
2178 return secrets_fetch_trusted_domain_password(domain
, pwd
,
2179 sid
, pass_last_set_time
);
2183 static bool pdb_default_set_trusteddom_pw(struct pdb_methods
*methods
,
2186 const struct dom_sid
*sid
)
2188 return secrets_store_trusted_domain_password(domain
, pwd
, sid
);
2191 static bool pdb_default_del_trusteddom_pw(struct pdb_methods
*methods
,
2194 return trusted_domain_password_delete(domain
);
2197 static NTSTATUS
pdb_default_enum_trusteddoms(struct pdb_methods
*methods
,
2198 TALLOC_CTX
*mem_ctx
,
2199 uint32_t *num_domains
,
2200 struct trustdom_info
***domains
)
2202 return secrets_trusted_domains(mem_ctx
, num_domains
, domains
);
2205 /*******************************************************************
2206 trusted_domain methods
2207 *******************************************************************/
2209 NTSTATUS
pdb_get_trusted_domain(TALLOC_CTX
*mem_ctx
, const char *domain
,
2210 struct pdb_trusted_domain
**td
)
2212 struct pdb_methods
*pdb
= pdb_get_methods();
2213 return pdb
->get_trusted_domain(pdb
, mem_ctx
, domain
, td
);
2216 NTSTATUS
pdb_get_trusted_domain_by_sid(TALLOC_CTX
*mem_ctx
, struct dom_sid
*sid
,
2217 struct pdb_trusted_domain
**td
)
2219 struct pdb_methods
*pdb
= pdb_get_methods();
2220 return pdb
->get_trusted_domain_by_sid(pdb
, mem_ctx
, sid
, td
);
2223 NTSTATUS
pdb_set_trusted_domain(const char* domain
,
2224 const struct pdb_trusted_domain
*td
)
2226 struct pdb_methods
*pdb
= pdb_get_methods();
2227 return pdb
->set_trusted_domain(pdb
, domain
, td
);
2230 NTSTATUS
pdb_del_trusted_domain(const char *domain
)
2232 struct pdb_methods
*pdb
= pdb_get_methods();
2233 return pdb
->del_trusted_domain(pdb
, domain
);
2236 NTSTATUS
pdb_enum_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32_t *num_domains
,
2237 struct pdb_trusted_domain
***domains
)
2239 struct pdb_methods
*pdb
= pdb_get_methods();
2240 return pdb
->enum_trusted_domains(pdb
, mem_ctx
, num_domains
, domains
);
2243 static NTSTATUS
pdb_default_get_trusted_domain(struct pdb_methods
*methods
,
2244 TALLOC_CTX
*mem_ctx
,
2246 struct pdb_trusted_domain
**td
)
2248 struct trustAuthInOutBlob taiob
;
2249 struct AuthenticationInformation aia
;
2250 struct pdb_trusted_domain
*tdom
;
2251 enum ndr_err_code ndr_err
;
2252 time_t last_set_time
;
2256 tdom
= talloc(mem_ctx
, struct pdb_trusted_domain
);
2258 return NT_STATUS_NO_MEMORY
;
2261 tdom
->domain_name
= talloc_strdup(tdom
, domain
);
2262 tdom
->netbios_name
= talloc_strdup(tdom
, domain
);
2263 if (!tdom
->domain_name
|| !tdom
->netbios_name
) {
2265 return NT_STATUS_NO_MEMORY
;
2268 tdom
->trust_auth_incoming
= data_blob_null
;
2270 ok
= pdb_get_trusteddom_pw(domain
, &pwd
, &tdom
->security_identifier
,
2274 return NT_STATUS_UNSUCCESSFUL
;
2280 taiob
.current
.count
= 1;
2281 taiob
.current
.array
= &aia
;
2282 unix_to_nt_time(&aia
.LastUpdateTime
, last_set_time
);
2283 aia
.AuthType
= TRUST_AUTH_TYPE_CLEAR
;
2284 aia
.AuthInfo
.clear
.password
= (uint8_t *) pwd
;
2285 aia
.AuthInfo
.clear
.size
= strlen(pwd
);
2286 taiob
.previous
.count
= 0;
2287 taiob
.previous
.array
= NULL
;
2289 ndr_err
= ndr_push_struct_blob(&tdom
->trust_auth_outgoing
,
2291 (ndr_push_flags_fn_t
)ndr_push_trustAuthInOutBlob
);
2292 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
2294 return NT_STATUS_UNSUCCESSFUL
;
2297 tdom
->trust_direction
= LSA_TRUST_DIRECTION_OUTBOUND
;
2298 tdom
->trust_type
= LSA_TRUST_TYPE_DOWNLEVEL
;
2299 tdom
->trust_attributes
= 0;
2300 tdom
->trust_forest_trust_info
= data_blob_null
;
2303 return NT_STATUS_OK
;
2306 static NTSTATUS
pdb_default_get_trusted_domain_by_sid(struct pdb_methods
*methods
,
2307 TALLOC_CTX
*mem_ctx
,
2308 struct dom_sid
*sid
,
2309 struct pdb_trusted_domain
**td
)
2311 return NT_STATUS_NOT_IMPLEMENTED
;
2314 #define IS_NULL_DATA_BLOB(d) ((d).data == NULL && (d).length == 0)
2316 static NTSTATUS
pdb_default_set_trusted_domain(struct pdb_methods
*methods
,
2318 const struct pdb_trusted_domain
*td
)
2320 struct trustAuthInOutBlob taiob
;
2321 struct AuthenticationInformation
*aia
;
2322 enum ndr_err_code ndr_err
;
2326 if (td
->trust_attributes
!= 0 ||
2327 td
->trust_type
!= LSA_TRUST_TYPE_DOWNLEVEL
||
2328 td
->trust_direction
!= LSA_TRUST_DIRECTION_OUTBOUND
||
2329 !IS_NULL_DATA_BLOB(td
->trust_auth_incoming
) ||
2330 !IS_NULL_DATA_BLOB(td
->trust_forest_trust_info
)) {
2331 return NT_STATUS_NOT_IMPLEMENTED
;
2335 ndr_err
= ndr_pull_struct_blob(&td
->trust_auth_outgoing
, talloc_tos(),
2337 (ndr_pull_flags_fn_t
)ndr_pull_trustAuthInOutBlob
);
2338 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
2339 return NT_STATUS_UNSUCCESSFUL
;
2342 aia
= (struct AuthenticationInformation
*) taiob
.current
.array
;
2344 if (taiob
.count
!= 1 || taiob
.current
.count
!= 1 ||
2345 taiob
.previous
.count
!= 0 ||
2346 aia
->AuthType
!= TRUST_AUTH_TYPE_CLEAR
) {
2347 return NT_STATUS_NOT_IMPLEMENTED
;
2350 pwd
= talloc_strndup(talloc_tos(), (char *) aia
->AuthInfo
.clear
.password
,
2351 aia
->AuthInfo
.clear
.size
);
2353 return NT_STATUS_NO_MEMORY
;
2356 ok
= pdb_set_trusteddom_pw(domain
, pwd
, &td
->security_identifier
);
2358 return NT_STATUS_UNSUCCESSFUL
;
2361 return NT_STATUS_OK
;
2364 static NTSTATUS
pdb_default_del_trusted_domain(struct pdb_methods
*methods
,
2367 return NT_STATUS_NOT_IMPLEMENTED
;
2370 static NTSTATUS
pdb_default_enum_trusted_domains(struct pdb_methods
*methods
,
2371 TALLOC_CTX
*mem_ctx
,
2372 uint32_t *num_domains
,
2373 struct pdb_trusted_domain
***domains
)
2375 return NT_STATUS_NOT_IMPLEMENTED
;
2378 static struct pdb_domain_info
*pdb_default_get_domain_info(
2379 struct pdb_methods
*m
, TALLOC_CTX
*mem_ctx
)
2384 /*****************************************************************
2386 *****************************************************************/
2387 static NTSTATUS
pdb_default_enum_upn_suffixes(struct pdb_methods
*pdb
,
2388 TALLOC_CTX
*mem_ctx
,
2389 uint32_t *num_suffixes
,
2392 return NT_STATUS_NOT_IMPLEMENTED
;
2395 static NTSTATUS
pdb_default_set_upn_suffixes(struct pdb_methods
*pdb
,
2396 uint32_t num_suffixes
,
2397 const char **suffixes
)
2399 return NT_STATUS_NOT_IMPLEMENTED
;
2402 NTSTATUS
pdb_enum_upn_suffixes(TALLOC_CTX
*mem_ctx
,
2403 uint32_t *num_suffixes
,
2406 struct pdb_methods
*pdb
= pdb_get_methods();
2407 return pdb
->enum_upn_suffixes(pdb
, mem_ctx
, num_suffixes
, suffixes
);
2410 NTSTATUS
pdb_set_upn_suffixes(uint32_t num_suffixes
,
2411 const char **suffixes
)
2413 struct pdb_methods
*pdb
= pdb_get_methods();
2414 return pdb
->set_upn_suffixes(pdb
, num_suffixes
, suffixes
);
2417 /*******************************************************************
2418 idmap control methods
2419 *******************************************************************/
2420 static bool pdb_default_is_responsible_for_our_sam(
2421 struct pdb_methods
*methods
)
2426 static bool pdb_default_is_responsible_for_builtin(
2427 struct pdb_methods
*methods
)
2432 static bool pdb_default_is_responsible_for_wellknown(
2433 struct pdb_methods
*methods
)
2438 static bool pdb_default_is_responsible_for_unix_users(
2439 struct pdb_methods
*methods
)
2444 static bool pdb_default_is_responsible_for_unix_groups(
2445 struct pdb_methods
*methods
)
2450 static bool pdb_default_is_responsible_for_everything_else(
2451 struct pdb_methods
*methods
)
2456 bool pdb_is_responsible_for_our_sam(void)
2458 struct pdb_methods
*pdb
= pdb_get_methods();
2459 return pdb
->is_responsible_for_our_sam(pdb
);
2462 bool pdb_is_responsible_for_builtin(void)
2464 struct pdb_methods
*pdb
= pdb_get_methods();
2465 return pdb
->is_responsible_for_builtin(pdb
);
2468 bool pdb_is_responsible_for_wellknown(void)
2470 struct pdb_methods
*pdb
= pdb_get_methods();
2471 return pdb
->is_responsible_for_wellknown(pdb
);
2474 bool pdb_is_responsible_for_unix_users(void)
2476 struct pdb_methods
*pdb
= pdb_get_methods();
2477 return pdb
->is_responsible_for_unix_users(pdb
);
2480 bool pdb_is_responsible_for_unix_groups(void)
2482 struct pdb_methods
*pdb
= pdb_get_methods();
2483 return pdb
->is_responsible_for_unix_groups(pdb
);
2486 bool pdb_is_responsible_for_everything_else(void)
2488 struct pdb_methods
*pdb
= pdb_get_methods();
2489 return pdb
->is_responsible_for_everything_else(pdb
);
2492 /*******************************************************************
2494 *******************************************************************/
2496 NTSTATUS
pdb_get_secret(TALLOC_CTX
*mem_ctx
,
2497 const char *secret_name
,
2498 DATA_BLOB
*secret_current
,
2499 NTTIME
*secret_current_lastchange
,
2500 DATA_BLOB
*secret_old
,
2501 NTTIME
*secret_old_lastchange
,
2502 struct security_descriptor
**sd
)
2504 struct pdb_methods
*pdb
= pdb_get_methods();
2505 return pdb
->get_secret(pdb
, mem_ctx
, secret_name
,
2506 secret_current
, secret_current_lastchange
,
2507 secret_old
, secret_old_lastchange
,
2511 NTSTATUS
pdb_set_secret(const char *secret_name
,
2512 DATA_BLOB
*secret_current
,
2513 DATA_BLOB
*secret_old
,
2514 struct security_descriptor
*sd
)
2516 struct pdb_methods
*pdb
= pdb_get_methods();
2517 return pdb
->set_secret(pdb
, secret_name
,
2523 NTSTATUS
pdb_delete_secret(const char *secret_name
)
2525 struct pdb_methods
*pdb
= pdb_get_methods();
2526 return pdb
->delete_secret(pdb
, secret_name
);
2529 static NTSTATUS
pdb_default_get_secret(struct pdb_methods
*methods
,
2530 TALLOC_CTX
*mem_ctx
,
2531 const char *secret_name
,
2532 DATA_BLOB
*secret_current
,
2533 NTTIME
*secret_current_lastchange
,
2534 DATA_BLOB
*secret_old
,
2535 NTTIME
*secret_old_lastchange
,
2536 struct security_descriptor
**sd
)
2538 return lsa_secret_get(mem_ctx
, secret_name
,
2540 secret_current_lastchange
,
2542 secret_old_lastchange
,
2546 static NTSTATUS
pdb_default_set_secret(struct pdb_methods
*methods
,
2547 const char *secret_name
,
2548 DATA_BLOB
*secret_current
,
2549 DATA_BLOB
*secret_old
,
2550 struct security_descriptor
*sd
)
2552 return lsa_secret_set(secret_name
,
2558 static NTSTATUS
pdb_default_delete_secret(struct pdb_methods
*methods
,
2559 const char *secret_name
)
2561 return lsa_secret_delete(secret_name
);
2564 /*******************************************************************
2565 Create a pdb_methods structure and initialize it with the default
2566 operations. In this way a passdb module can simply implement
2567 the functionality it cares about. However, normally this is done
2568 in groups of related functions.
2569 *******************************************************************/
2571 NTSTATUS
make_pdb_method( struct pdb_methods
**methods
)
2573 /* allocate memory for the structure as its own talloc CTX */
2575 *methods
= talloc_zero(NULL
, struct pdb_methods
);
2576 if (*methods
== NULL
) {
2577 return NT_STATUS_NO_MEMORY
;
2580 (*methods
)->get_domain_info
= pdb_default_get_domain_info
;
2581 (*methods
)->getsampwnam
= pdb_default_getsampwnam
;
2582 (*methods
)->getsampwsid
= pdb_default_getsampwsid
;
2583 (*methods
)->create_user
= pdb_default_create_user
;
2584 (*methods
)->delete_user
= pdb_default_delete_user
;
2585 (*methods
)->add_sam_account
= pdb_default_add_sam_account
;
2586 (*methods
)->update_sam_account
= pdb_default_update_sam_account
;
2587 (*methods
)->delete_sam_account
= pdb_default_delete_sam_account
;
2588 (*methods
)->rename_sam_account
= pdb_default_rename_sam_account
;
2589 (*methods
)->update_login_attempts
= pdb_default_update_login_attempts
;
2591 (*methods
)->getgrsid
= pdb_default_getgrsid
;
2592 (*methods
)->getgrgid
= pdb_default_getgrgid
;
2593 (*methods
)->getgrnam
= pdb_default_getgrnam
;
2594 (*methods
)->create_dom_group
= pdb_default_create_dom_group
;
2595 (*methods
)->delete_dom_group
= pdb_default_delete_dom_group
;
2596 (*methods
)->add_group_mapping_entry
= pdb_default_add_group_mapping_entry
;
2597 (*methods
)->update_group_mapping_entry
= pdb_default_update_group_mapping_entry
;
2598 (*methods
)->delete_group_mapping_entry
= pdb_default_delete_group_mapping_entry
;
2599 (*methods
)->enum_group_mapping
= pdb_default_enum_group_mapping
;
2600 (*methods
)->enum_group_members
= pdb_default_enum_group_members
;
2601 (*methods
)->enum_group_memberships
= pdb_default_enum_group_memberships
;
2602 (*methods
)->set_unix_primary_group
= pdb_default_set_unix_primary_group
;
2603 (*methods
)->add_groupmem
= pdb_default_add_groupmem
;
2604 (*methods
)->del_groupmem
= pdb_default_del_groupmem
;
2605 (*methods
)->create_alias
= pdb_default_create_alias
;
2606 (*methods
)->delete_alias
= pdb_default_delete_alias
;
2607 (*methods
)->get_aliasinfo
= pdb_default_get_aliasinfo
;
2608 (*methods
)->set_aliasinfo
= pdb_default_set_aliasinfo
;
2609 (*methods
)->add_aliasmem
= pdb_default_add_aliasmem
;
2610 (*methods
)->del_aliasmem
= pdb_default_del_aliasmem
;
2611 (*methods
)->enum_aliasmem
= pdb_default_enum_aliasmem
;
2612 (*methods
)->enum_alias_memberships
= pdb_default_alias_memberships
;
2613 (*methods
)->lookup_rids
= pdb_default_lookup_rids
;
2614 (*methods
)->get_account_policy
= pdb_default_get_account_policy
;
2615 (*methods
)->set_account_policy
= pdb_default_set_account_policy
;
2616 (*methods
)->get_seq_num
= pdb_default_get_seq_num
;
2617 (*methods
)->uid_to_sid
= pdb_default_uid_to_sid
;
2618 (*methods
)->gid_to_sid
= pdb_default_gid_to_sid
;
2619 (*methods
)->sid_to_id
= pdb_default_sid_to_id
;
2621 (*methods
)->search_groups
= pdb_default_search_groups
;
2622 (*methods
)->search_aliases
= pdb_default_search_aliases
;
2624 (*methods
)->get_trusteddom_pw
= pdb_default_get_trusteddom_pw
;
2625 (*methods
)->set_trusteddom_pw
= pdb_default_set_trusteddom_pw
;
2626 (*methods
)->del_trusteddom_pw
= pdb_default_del_trusteddom_pw
;
2627 (*methods
)->enum_trusteddoms
= pdb_default_enum_trusteddoms
;
2629 (*methods
)->get_trusted_domain
= pdb_default_get_trusted_domain
;
2630 (*methods
)->get_trusted_domain_by_sid
= pdb_default_get_trusted_domain_by_sid
;
2631 (*methods
)->set_trusted_domain
= pdb_default_set_trusted_domain
;
2632 (*methods
)->del_trusted_domain
= pdb_default_del_trusted_domain
;
2633 (*methods
)->enum_trusted_domains
= pdb_default_enum_trusted_domains
;
2635 (*methods
)->get_secret
= pdb_default_get_secret
;
2636 (*methods
)->set_secret
= pdb_default_set_secret
;
2637 (*methods
)->delete_secret
= pdb_default_delete_secret
;
2639 (*methods
)->enum_upn_suffixes
= pdb_default_enum_upn_suffixes
;
2640 (*methods
)->set_upn_suffixes
= pdb_default_set_upn_suffixes
;
2642 (*methods
)->is_responsible_for_our_sam
=
2643 pdb_default_is_responsible_for_our_sam
;
2644 (*methods
)->is_responsible_for_builtin
=
2645 pdb_default_is_responsible_for_builtin
;
2646 (*methods
)->is_responsible_for_wellknown
=
2647 pdb_default_is_responsible_for_wellknown
;
2648 (*methods
)->is_responsible_for_unix_users
=
2649 pdb_default_is_responsible_for_unix_users
;
2650 (*methods
)->is_responsible_for_unix_groups
=
2651 pdb_default_is_responsible_for_unix_groups
;
2652 (*methods
)->is_responsible_for_everything_else
=
2653 pdb_default_is_responsible_for_everything_else
;
2655 return NT_STATUS_OK
;