docs: man oLschema2ldif: Add missing meta data.
[Samba/gebeck_regimport.git] / source3 / passdb / pdb_interface.c
blob767808c851281e4894d659047bc1a29dbe3dd4a2
1 /*
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/>.
23 #include "includes.h"
24 #include "system/passwd.h"
25 #include "passdb.h"
26 #include "secrets.h"
27 #include "messages.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 "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"
38 #undef DBGC_CLASS
39 #define DBGC_CLASS DBGC_PASSDB
41 static_decl_pdb;
43 static struct pdb_init_function_entry *backends = NULL;
45 static void lazy_initialize_passdb(void)
47 static bool initialized = False;
48 if(initialized) {
49 return;
51 static_init_pdb;
52 initialized = True;
55 static bool lookup_global_sam_rid(TALLOC_CTX *mem_ctx, uint32 rid,
56 const char **name,
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;
72 if (!name || !init) {
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);
86 entry->init = init;
88 DLIST_ADD(backends, entry);
89 DEBUG(5,("Successfully added passdb backend '%s'\n", name));
90 return NT_STATUS_OK;
93 struct pdb_init_function_entry *pdb_find_backend_entry(const char *name)
95 struct pdb_init_function_entry *entry = backends;
97 while(entry) {
98 if (strcmp(entry->name, name)==0) return entry;
99 entry = entry->next;
102 return NULL;
105 const struct pdb_init_function_entry *pdb_get_backends(void)
107 return backends;
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
115 * added later.
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, ':');
143 if (p) {
144 *p = 0;
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 */
157 if (!entry) {
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 */
167 if(!entry) {
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);
179 return nt_status;
182 SAFE_FREE(module_name);
184 DEBUG(5,("pdb backend %s has a valid init\n", selected));
186 return nt_status;
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() ) ) ) {
202 return NULL;
206 if ( !pdb ) {
207 if ( !NT_STATUS_IS_OK( make_pdb_method_name( &pdb, lp_passdb_backend() ) ) ) {
208 return NULL;
212 return pdb;
215 static struct pdb_methods *pdb_get_methods(void)
217 struct pdb_methods *pdb;
219 pdb = pdb_get_methods_reload(false);
220 if (!pdb) {
221 char *msg = NULL;
222 if (asprintf(&msg, "pdb_get_methods: "
223 "failed to get pdb methods for backend %s\n",
224 lp_passdb_backend()) > 0) {
225 smb_panic(msg);
226 } else {
227 smb_panic("pdb_get_methods");
231 return pdb;
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);
258 bool ok;
260 ok = pdb_get_account_policy(PDB_POLICY_LOCK_ACCOUNT_DURATION,
261 &lockout_duration);
262 if (!ok) {
263 DEBUG(0, ("pdb_try_account_unlock: "
264 "pdb_get_account_policy failed.\n"));
265 return false;
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"));
272 return false;
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)));
283 return true;
286 if ((bad_password_time +
287 convert_uint32_t_to_time_t(lockout_duration)) < now) {
288 NTSTATUS status;
290 pdb_set_acct_ctrl(sampass, acb_info & ~ACB_AUTOLOCK,
291 PDB_CHANGED);
292 pdb_set_bad_password_count(sampass, 0, PDB_CHANGED);
293 pdb_set_bad_password_time(sampass, 0, PDB_CHANGED);
295 become_root();
296 status = pdb_update_sam_account(sampass);
297 unbecome_root();
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),
302 nt_errstr(status)));
303 return false;
308 return true;
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
316 * elapsed.
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;
329 NTSTATUS status;
330 bool ok;
332 status = pdb->getsampwnam(pdb, sam_acct, username);
333 if (!NT_STATUS_IS_OK(status)) {
334 return false;
337 ok = pdb_try_account_unlock(sam_acct);
338 if (!ok) {
339 DEBUG(1, ("pdb_getsampwnam: Failed to unlock account %s\n",
340 username));
343 for_cache = samu_new(NULL);
344 if (for_cache == NULL) {
345 return False;
348 if (!pdb_copy_sam_account(for_cache, sam_acct)) {
349 TALLOC_FREE(for_cache);
350 return False;
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)),
357 &for_cache);
359 return True;
362 /**********************************************************************
363 **********************************************************************/
365 static bool guest_user_info( struct samu *user )
367 struct passwd *pwd;
368 NTSTATUS result;
369 const char *guestname = lp_guestaccount();
371 pwd = Get_Pwnam_alloc(talloc_tos(), guestname);
372 if (pwd == NULL) {
373 DEBUG(0,("guest_user_info: Unable to locate guest account [%s]!\n",
374 guestname));
375 return False;
378 result = samu_set_unix(user, pwd );
380 TALLOC_FREE( 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
390 * elapsed.
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();
402 uint32_t rid;
403 void *cache_data;
404 bool ok = false;
406 /* hard code the Guest RID of 501 */
408 if ( !sid_peek_check_rid( get_global_sam_sid(), sid, &rid ) )
409 return False;
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);
426 } else {
427 ok = NT_STATUS_IS_OK(pdb->getsampwsid(pdb, sam_acct, sid));
430 if (!ok) {
431 return false;
434 ok = pdb_try_account_unlock(sam_acct);
435 if (!ok) {
436 DEBUG(1, ("pdb_getsampwsid: Failed to unlock account %s\n",
437 sam_acct->username));
440 return true;
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;
448 NTSTATUS status;
449 struct passwd *pwd;
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;
457 int add_ret;
458 fstring name2;
460 if ((acb_info & ACB_NORMAL) && name[strlen(name)-1] != '$') {
461 add_script = lp_adduser_script(tmp_ctx);
462 } else {
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 "
468 "defined\n", name));
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,
479 add_script,
480 "%u",
481 name2);
482 if (!add_script) {
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));
488 if (add_ret == 0) {
489 smb_nscd_flush_user_cache();
492 flush_pwnam_cache();
494 pwd = Get_Pwnam_alloc(tmp_ctx, name);
496 if(pwd == NULL) {
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);
506 TALLOC_FREE( 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)));
510 return 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);
533 return status;
536 NTSTATUS pdb_create_user(TALLOC_CTX *mem_ctx, const char *name, uint32_t flags,
537 uint32_t *rid)
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;
550 int ret;
552 /* safety check */
554 if ( strequal( unix_user, "root" ) ) {
555 DEBUG(0,("smb_delete_user: Refusing to delete local system root account!\n"));
556 return -1;
559 del_script = lp_deluser_script(talloc_tos());
560 if (!del_script || !*del_script) {
561 return -1;
563 del_script = talloc_all_string_sub(talloc_tos(),
564 del_script,
565 "%u",
566 unix_user);
567 if (!del_script) {
568 return -1;
570 ret = smbrun(del_script,NULL);
571 flush_pwnam_cache();
572 if (ret == 0) {
573 smb_nscd_flush_user_cache();
575 DEBUG(ret ? 0 : 3,("smb_delete_user: Running the command `%s' gave %d\n",del_script,ret));
577 return ret;
580 static NTSTATUS pdb_default_delete_user(struct pdb_methods *methods,
581 TALLOC_CTX *mem_ctx,
582 struct samu *sam_acct)
584 NTSTATUS status;
585 fstring username;
587 status = methods->delete_sam_account(methods, sam_acct);
588 if (!NT_STATUS_IS_OK(status)) {
589 return 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
596 * the unix side
599 /* always lower case the username before handing it off to
600 external scripts */
602 fstrcpy( username, pdb_get_username(sam_acct) );
603 if (!strlower_m( username )) {
604 return status;
607 smb_delete_user( username );
609 return status;
612 NTSTATUS pdb_delete_user(TALLOC_CTX *mem_ctx, struct samu *sam_acct)
614 struct pdb_methods *pdb = pdb_get_methods();
615 uid_t uid = -1;
616 NTSTATUS status;
617 const struct dom_sid *user_sid;
618 char *msg_data;
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;
628 if ( uid == 0 ) {
629 return NT_STATUS_ACCESS_DENIED;
632 memcache_delete(NULL,
633 PDB_GETPWSID_CACHE,
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)) {
638 return status;
641 msg_data = talloc_asprintf(mem_ctx, "USER %s",
642 pdb_get_username(sam_acct));
643 if (!msg_data) {
644 /* not fatal, and too late to rollback,
645 * just return */
646 return status;
648 message_send_all(server_messaging_context(),
649 ID_CACHE_DELETE,
650 msg_data,
651 strlen(msg_data) + 1,
652 NULL);
654 TALLOC_FREE(msg_data);
655 return status;
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,
679 PDB_GETPWSID_CACHE,
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();
688 uid_t uid;
689 NTSTATUS status;
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;
699 if ( uid == 0 ) {
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 */
706 flush_pwnam_cache();
708 return status;
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,
736 TALLOC_CTX *mem_ctx,
737 const char *name,
738 uint32_t *rid)
740 struct dom_sid group_sid;
741 struct group *grp;
742 fstring tmp;
744 grp = getgrnam(name);
746 if (grp == NULL) {
747 gid_t gid;
749 if (smb_create_group(name, &gid) != 0) {
750 return NT_STATUS_ACCESS_DENIED;
753 grp = getgrgid(gid);
756 if (grp == NULL) {
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;
764 } else {
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,
775 uint32_t *rid)
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,
782 TALLOC_CTX *mem_ctx,
783 uint32_t rid)
785 struct dom_sid group_sid;
786 GROUP_MAP *map;
787 NTSTATUS status;
788 struct group *grp;
789 const char *grp_name;
791 map = talloc_zero(mem_ctx, GROUP_MAP);
792 if (!map) {
793 return NT_STATUS_NO_MEMORY;
796 /* coverity */
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);
813 if (grp == NULL) {
814 return NT_STATUS_NO_SUCH_GROUP;
817 TALLOC_FREE(map);
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)) {
829 return status;
832 /* Don't check the result of smb_delete_group */
834 smb_delete_group(grp_name);
836 return NT_STATUS_OK;
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,
867 bool unix_only)
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();
880 NTSTATUS result;
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 ) ) {
888 uint32_t rid;
890 sid_peek_rid( sid, &rid );
892 if ( rid == DOMAIN_RID_USERS ) {
893 *p_num_members = 0;
894 *pp_member_rids = NULL;
896 return NT_STATUS_OK;
900 return result;
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(
909 pdb, mem_ctx, user,
910 pp_sids, pp_gids, p_num_groups);
913 static NTSTATUS pdb_default_set_unix_primary_group(struct pdb_methods *methods,
914 TALLOC_CTX *mem_ctx,
915 struct samu *sampass)
917 struct group *grp;
918 gid_t gid;
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;
930 return NT_STATUS_OK;
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
942 * fulfil.
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;
949 gid_t *gids;
950 uint32_t i, num_groups;
952 if (!NT_STATUS_IS_OK(pdb_enum_group_memberships(mem_ctx, account,
953 &sids, &gids,
954 &num_groups))) {
955 return False;
958 for (i=0; i<num_groups; i++) {
959 if (dom_sid_equal(group_sid, &sids[i])) {
960 return True;
963 return False;
966 static NTSTATUS pdb_default_add_groupmem(struct pdb_methods *methods,
967 TALLOC_CTX *mem_ctx,
968 uint32_t group_rid,
969 uint32_t member_rid)
971 struct dom_sid group_sid, member_sid;
972 struct samu *account = NULL;
973 GROUP_MAP *map;
974 struct group *grp;
975 struct passwd *pwd;
976 const char *group_name;
977 uid_t uid;
979 map = talloc_zero(mem_ctx, GROUP_MAP);
980 if (!map) {
981 return NT_STATUS_NO_MEMORY;
984 /* coverity */
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;
996 TALLOC_FREE(map);
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,
1040 uint32_t group_rid,
1041 uint32_t member_rid)
1043 struct dom_sid group_sid, member_sid;
1044 struct samu *account = NULL;
1045 GROUP_MAP *map;
1046 struct group *grp;
1047 struct passwd *pwd;
1048 const char *group_name;
1049 uid_t uid;
1051 map = talloc_zero(mem_ctx, GROUP_MAP);
1052 if (!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;
1065 TALLOC_FREE(map);
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,
1148 p_num_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,
1159 domain_sid,
1160 members, num_members,
1161 pp_alias_rids,
1162 p_num_alias_rids);
1165 NTSTATUS pdb_lookup_rids(const struct dom_sid *domain_sid,
1166 int num_rids,
1167 uint32_t *rids,
1168 const char **names,
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();
1178 NTSTATUS status;
1180 become_root();
1181 status = pdb->get_account_policy(pdb, type, value);
1182 unbecome_root();
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();
1190 NTSTATUS status;
1192 become_root();
1193 status = pdb->set_account_policy(pdb, type, value);
1194 unbecome_root();
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;
1242 int i;
1243 TALLOC_CTX *ctx;
1245 if ((pdb_capabilities() & PDB_CAP_STORE_RIDS) == 0) {
1246 DEBUG(0, ("Trying to allocate a RID when algorithmic RIDs "
1247 "are active\n"));
1248 return False;
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"));
1257 return False;
1260 if ( (ctx = talloc_init("pdb_new_rid")) == NULL ) {
1261 DEBUG(0,("pdb_new_rid: Talloc initialization failure\n"));
1262 return False;
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++ ) {
1269 /* get a new RID */
1271 if ( !pdb->new_rid(pdb, &allocated_rid) ) {
1272 return False;
1275 /* validate that the RID is not in use */
1277 if (lookup_global_sam_rid(ctx, allocated_rid, &name, &type, NULL, NULL)) {
1278 allocated_rid = 0;
1282 TALLOC_FREE( ctx );
1284 if ( allocated_rid == 0 ) {
1285 DEBUG(0,("pdb_new_rid: Failed to find unused RID\n"));
1286 return False;
1289 *rid = allocated_rid;
1291 return True;
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)
1302 if (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;
1370 bool ret;
1372 unix_pw = getpwuid( uid );
1374 if ( !unix_pw ) {
1375 DEBUG(4,("pdb_default_uid_to_sid: host has no idea of uid "
1376 "%lu\n", (unsigned long)uid));
1377 return False;
1380 if ( !(sampw = samu_new( NULL )) ) {
1381 DEBUG(0,("pdb_default_uid_to_sid: samu_new() failed!\n"));
1382 return False;
1385 become_root();
1386 ret = NT_STATUS_IS_OK(
1387 methods->getsampwnam(methods, sampw, unix_pw->pw_name ));
1388 unbecome_root();
1390 if (!ret) {
1391 DEBUG(5, ("pdb_default_uid_to_sid: Did not find user "
1392 "%s (%u)\n", unix_pw->pw_name, (unsigned int)uid));
1393 TALLOC_FREE(sampw);
1394 return False;
1397 sid_copy(sid, pdb_get_user_sid(sampw));
1399 TALLOC_FREE(sampw);
1401 return True;
1404 static bool pdb_default_gid_to_sid(struct pdb_methods *methods, gid_t gid,
1405 struct dom_sid *sid)
1407 GROUP_MAP *map;
1409 map = talloc_zero(NULL, GROUP_MAP);
1410 if (!map) {
1411 return false;
1414 if (!NT_STATUS_IS_OK(methods->getgrgid(methods, map, gid))) {
1415 TALLOC_FREE(map);
1416 return false;
1419 sid_copy(sid, &map->sid);
1420 TALLOC_FREE(map);
1421 return true;
1424 static bool pdb_default_sid_to_id(struct pdb_methods *methods,
1425 const struct dom_sid *sid,
1426 struct unixid *id)
1428 TALLOC_CTX *mem_ctx;
1429 bool ret = False;
1430 uint32_t rid;
1431 id->id = -1;
1433 if (!sid_check_is_in_our_sam(sid)) {
1434 /* Not our SID */
1435 return False;
1438 mem_ctx = talloc_new(NULL);
1440 if (mem_ctx == NULL) {
1441 DEBUG(0, ("talloc_new failed\n"));
1442 return False;
1445 if (sid_peek_check_rid(get_global_sam_sid(), sid, &rid)) {
1446 const char *name;
1447 enum lsa_SidType type;
1448 uid_t uid;
1449 gid_t gid;
1450 /* Here we might have users as well as groups and aliases */
1451 ret = lookup_global_sam_rid(mem_ctx, rid, &name, &type, &uid, &gid);
1452 if (ret) {
1453 switch (type) {
1454 case SID_NAME_DOM_GRP:
1455 case SID_NAME_ALIAS:
1456 id->type = ID_TYPE_GID;
1457 id->id = gid;
1458 break;
1459 case SID_NAME_USER:
1460 id->type = ID_TYPE_UID;
1461 id->id = uid;
1462 break;
1463 default:
1464 DEBUG(5, ("SID %s is our domain, but is not mapped to a user or group (got %d)\n",
1465 sid_string_dbg(sid), type));
1466 ret = false;
1468 } else {
1469 DEBUG(5, ("SID %s is or domain, but is unmapped\n",
1470 sid_string_dbg(sid)));
1472 goto done;
1475 /* check for "Unix User" */
1477 if ( sid_peek_check_rid(&global_sid_Unix_Users, sid, &rid) ) {
1478 id->id = rid;
1479 id->type = ID_TYPE_UID;
1480 ret = True;
1481 goto done;
1484 /* check for "Unix Group" */
1486 if ( sid_peek_check_rid(&global_sid_Unix_Groups, sid, &rid) ) {
1487 id->id = rid;
1488 id->type = ID_TYPE_GID;
1489 ret = True;
1490 goto done;
1493 /* BUILTIN */
1495 if (sid_check_is_in_builtin(sid) ||
1496 sid_check_is_in_wellknown_domain(sid)) {
1497 /* Here we only have aliases */
1498 GROUP_MAP *map;
1500 map = talloc_zero(mem_ctx, GROUP_MAP);
1501 if (!map) {
1502 ret = false;
1503 goto done;
1506 if (!NT_STATUS_IS_OK(methods->getgrsid(methods, map, *sid))) {
1507 DEBUG(10, ("Could not find map for sid %s\n",
1508 sid_string_dbg(sid)));
1509 goto done;
1511 if ((map->sid_name_use != SID_NAME_ALIAS) &&
1512 (map->sid_name_use != SID_NAME_WKN_GRP)) {
1513 DEBUG(10, ("Map for sid %s is a %s, expected an "
1514 "alias\n", sid_string_dbg(sid),
1515 sid_type_lookup(map->sid_name_use)));
1516 goto done;
1519 id->id = map->gid;
1520 id->type = ID_TYPE_GID;
1521 ret = True;
1522 goto done;
1525 DEBUG(5, ("Sid %s is neither ours, a Unix SID, nor builtin\n",
1526 sid_string_dbg(sid)));
1528 done:
1530 TALLOC_FREE(mem_ctx);
1531 return ret;
1534 static bool get_memberuids(TALLOC_CTX *mem_ctx, gid_t gid, uid_t **pp_uids, uint32_t *p_num)
1536 struct group *grp;
1537 char **gr;
1538 struct passwd *pwd;
1539 bool winbind_env;
1540 bool ret = False;
1542 *pp_uids = NULL;
1543 *p_num = 0;
1545 /* We only look at our own sam, so don't care about imported stuff */
1546 winbind_env = winbind_env_set();
1547 (void)winbind_off();
1549 if ((grp = getgrgid(gid)) == NULL) {
1550 /* allow winbindd lookups, but only if they weren't already disabled */
1551 goto done;
1554 /* Primary group members */
1555 setpwent();
1556 while ((pwd = getpwent()) != NULL) {
1557 if (pwd->pw_gid == gid) {
1558 if (!add_uid_to_array_unique(mem_ctx, pwd->pw_uid,
1559 pp_uids, p_num)) {
1560 goto done;
1564 endpwent();
1566 /* Secondary group members */
1567 for (gr = grp->gr_mem; (*gr != NULL) && ((*gr)[0] != '\0'); gr += 1) {
1568 struct passwd *pw = getpwnam(*gr);
1570 if (pw == NULL)
1571 continue;
1572 if (!add_uid_to_array_unique(mem_ctx, pw->pw_uid, pp_uids, p_num)) {
1573 goto done;
1577 ret = True;
1579 done:
1581 /* allow winbindd lookups, but only if they weren't already disabled */
1582 if (!winbind_env) {
1583 (void)winbind_on();
1586 return ret;
1589 static NTSTATUS pdb_default_enum_group_members(struct pdb_methods *methods,
1590 TALLOC_CTX *mem_ctx,
1591 const struct dom_sid *group,
1592 uint32_t **pp_member_rids,
1593 size_t *p_num_members)
1595 gid_t gid;
1596 uid_t *uids;
1597 uint32_t i, num_uids;
1599 *pp_member_rids = NULL;
1600 *p_num_members = 0;
1602 if (!sid_to_gid(group, &gid))
1603 return NT_STATUS_NO_SUCH_GROUP;
1605 if(!get_memberuids(mem_ctx, gid, &uids, &num_uids))
1606 return NT_STATUS_NO_SUCH_GROUP;
1608 if (num_uids == 0)
1609 return NT_STATUS_OK;
1611 *pp_member_rids = talloc_zero_array(mem_ctx, uint32_t, num_uids);
1613 for (i=0; i<num_uids; i++) {
1614 struct dom_sid sid;
1616 uid_to_sid(&sid, uids[i]);
1618 if (!sid_check_is_in_our_sam(&sid)) {
1619 DEBUG(5, ("Inconsistent SAM -- group member uid not "
1620 "in our domain\n"));
1621 continue;
1624 sid_peek_rid(&sid, &(*pp_member_rids)[*p_num_members]);
1625 *p_num_members += 1;
1628 return NT_STATUS_OK;
1631 static NTSTATUS pdb_default_enum_group_memberships(struct pdb_methods *methods,
1632 TALLOC_CTX *mem_ctx,
1633 struct samu *user,
1634 struct dom_sid **pp_sids,
1635 gid_t **pp_gids,
1636 uint32_t *p_num_groups)
1638 size_t i;
1639 gid_t gid;
1640 struct passwd *pw;
1641 const char *username = pdb_get_username(user);
1644 /* Ignore the primary group SID. Honor the real Unix primary group.
1645 The primary group SID is only of real use to Windows clients */
1647 if ( !(pw = Get_Pwnam_alloc(mem_ctx, username)) ) {
1648 return NT_STATUS_NO_SUCH_USER;
1651 gid = pw->pw_gid;
1653 TALLOC_FREE( pw );
1655 if (!getgroups_unix_user(mem_ctx, username, gid, pp_gids, p_num_groups)) {
1656 return NT_STATUS_NO_SUCH_USER;
1659 if (*p_num_groups == 0) {
1660 smb_panic("primary group missing");
1663 *pp_sids = talloc_array(mem_ctx, struct dom_sid, *p_num_groups);
1665 if (*pp_sids == NULL) {
1666 TALLOC_FREE(*pp_gids);
1667 return NT_STATUS_NO_MEMORY;
1670 for (i=0; i<*p_num_groups; i++) {
1671 gid_to_sid(&(*pp_sids)[i], (*pp_gids)[i]);
1674 return NT_STATUS_OK;
1677 /*******************************************************************
1678 Look up a rid in the SAM we're responsible for (i.e. passdb)
1679 ********************************************************************/
1681 static bool lookup_global_sam_rid(TALLOC_CTX *mem_ctx, uint32_t rid,
1682 const char **name,
1683 enum lsa_SidType *psid_name_use,
1684 uid_t *uid, gid_t *gid)
1686 struct samu *sam_account = NULL;
1687 GROUP_MAP *map = NULL;
1688 bool ret;
1689 struct dom_sid sid;
1691 *psid_name_use = SID_NAME_UNKNOWN;
1693 DEBUG(5,("lookup_global_sam_rid: looking up RID %u.\n",
1694 (unsigned int)rid));
1696 sid_compose(&sid, get_global_sam_sid(), rid);
1698 /* see if the passdb can help us with the name of the user */
1700 if ( !(sam_account = samu_new( NULL )) ) {
1701 return False;
1704 map = talloc_zero(mem_ctx, GROUP_MAP);
1705 if (!map) {
1706 return false;
1709 /* BEING ROOT BLOCK */
1710 become_root();
1711 ret = pdb_getsampwsid(sam_account, &sid);
1712 if (!ret) {
1713 TALLOC_FREE(sam_account);
1714 ret = pdb_getgrsid(map, sid);
1716 unbecome_root();
1717 /* END BECOME_ROOT BLOCK */
1719 if (sam_account || !ret) {
1720 TALLOC_FREE(map);
1723 if (sam_account) {
1724 struct passwd *pw;
1726 *name = talloc_strdup(mem_ctx, pdb_get_username(sam_account));
1727 if (!*name) {
1728 TALLOC_FREE(sam_account);
1729 return False;
1732 *psid_name_use = SID_NAME_USER;
1734 TALLOC_FREE(sam_account);
1736 if (uid == NULL) {
1737 return True;
1740 pw = Get_Pwnam_alloc(talloc_tos(), *name);
1741 if (pw == NULL) {
1742 return False;
1744 *uid = pw->pw_uid;
1745 TALLOC_FREE(pw);
1746 return True;
1748 } else if (map && (map->gid != (gid_t)-1)) {
1750 /* do not resolve SIDs to a name unless there is a valid
1751 gid associated with it */
1753 *name = talloc_steal(mem_ctx, map->nt_name);
1754 *psid_name_use = map->sid_name_use;
1756 if (gid) {
1757 *gid = map->gid;
1760 TALLOC_FREE(map);
1761 return True;
1764 TALLOC_FREE(map);
1766 /* Windows will always map RID 513 to something. On a non-domain
1767 controller, this gets mapped to SERVER\None. */
1769 if (uid || gid) {
1770 DEBUG(5, ("Can't find a unix id for an unmapped group\n"));
1771 return False;
1774 if ( rid == DOMAIN_RID_USERS ) {
1775 *name = talloc_strdup(mem_ctx, "None" );
1776 *psid_name_use = SID_NAME_DOM_GRP;
1778 return True;
1781 return False;
1784 static NTSTATUS pdb_default_lookup_rids(struct pdb_methods *methods,
1785 const struct dom_sid *domain_sid,
1786 int num_rids,
1787 uint32_t *rids,
1788 const char **names,
1789 enum lsa_SidType *attrs)
1791 int i;
1792 NTSTATUS result;
1793 bool have_mapped = False;
1794 bool have_unmapped = False;
1796 if (sid_check_is_builtin(domain_sid)) {
1798 for (i=0; i<num_rids; i++) {
1799 const char *name;
1801 if (lookup_builtin_rid(names, rids[i], &name)) {
1802 attrs[i] = SID_NAME_ALIAS;
1803 names[i] = name;
1804 DEBUG(5,("lookup_rids: %s:%d\n",
1805 names[i], attrs[i]));
1806 have_mapped = True;
1807 } else {
1808 have_unmapped = True;
1809 attrs[i] = SID_NAME_UNKNOWN;
1812 goto done;
1815 /* Should not happen, but better check once too many */
1816 if (!sid_check_is_our_sam(domain_sid)) {
1817 return NT_STATUS_INVALID_HANDLE;
1820 for (i = 0; i < num_rids; i++) {
1821 const char *name;
1823 if (lookup_global_sam_rid(names, rids[i], &name, &attrs[i],
1824 NULL, NULL)) {
1825 if (name == NULL) {
1826 return NT_STATUS_NO_MEMORY;
1828 names[i] = name;
1829 DEBUG(5,("lookup_rids: %s:%d\n", names[i], attrs[i]));
1830 have_mapped = True;
1831 } else {
1832 have_unmapped = True;
1833 attrs[i] = SID_NAME_UNKNOWN;
1837 done:
1839 result = NT_STATUS_NONE_MAPPED;
1841 if (have_mapped)
1842 result = have_unmapped ? STATUS_SOME_UNMAPPED : NT_STATUS_OK;
1844 return result;
1847 static int pdb_search_destructor(struct pdb_search *search)
1849 if ((!search->search_ended) && (search->search_end != NULL)) {
1850 search->search_end(search);
1852 return 0;
1855 struct pdb_search *pdb_search_init(TALLOC_CTX *mem_ctx,
1856 enum pdb_search_type type)
1858 struct pdb_search *result;
1860 result = talloc(mem_ctx, struct pdb_search);
1861 if (result == NULL) {
1862 DEBUG(0, ("talloc failed\n"));
1863 return NULL;
1866 result->type = type;
1867 result->cache = NULL;
1868 result->num_entries = 0;
1869 result->cache_size = 0;
1870 result->search_ended = False;
1871 result->search_end = NULL;
1873 /* Segfault appropriately if not initialized */
1874 result->next_entry = NULL;
1875 result->search_end = NULL;
1877 talloc_set_destructor(result, pdb_search_destructor);
1879 return result;
1882 static void fill_displayentry(TALLOC_CTX *mem_ctx, uint32_t rid,
1883 uint16_t acct_flags,
1884 const char *account_name,
1885 const char *fullname,
1886 const char *description,
1887 struct samr_displayentry *entry)
1889 entry->rid = rid;
1890 entry->acct_flags = acct_flags;
1892 if (account_name != NULL)
1893 entry->account_name = talloc_strdup(mem_ctx, account_name);
1894 else
1895 entry->account_name = "";
1897 if (fullname != NULL)
1898 entry->fullname = talloc_strdup(mem_ctx, fullname);
1899 else
1900 entry->fullname = "";
1902 if (description != NULL)
1903 entry->description = talloc_strdup(mem_ctx, description);
1904 else
1905 entry->description = "";
1908 struct group_search {
1909 GROUP_MAP **groups;
1910 size_t num_groups, current_group;
1913 static bool next_entry_groups(struct pdb_search *s,
1914 struct samr_displayentry *entry)
1916 struct group_search *state = (struct group_search *)s->private_data;
1917 uint32_t rid;
1918 GROUP_MAP *map;
1920 if (state->current_group == state->num_groups)
1921 return False;
1923 map = state->groups[state->current_group];
1925 sid_peek_rid(&map->sid, &rid);
1927 fill_displayentry(s, rid, 0, map->nt_name, NULL, map->comment, entry);
1929 state->current_group += 1;
1930 return True;
1933 static void search_end_groups(struct pdb_search *search)
1935 struct group_search *state =
1936 (struct group_search *)search->private_data;
1937 TALLOC_FREE(state->groups);
1940 static bool pdb_search_grouptype(struct pdb_methods *methods,
1941 struct pdb_search *search,
1942 const struct dom_sid *sid, enum lsa_SidType type)
1944 struct group_search *state;
1946 state = talloc_zero(search, struct group_search);
1947 if (state == NULL) {
1948 DEBUG(0, ("talloc failed\n"));
1949 return False;
1952 if (!NT_STATUS_IS_OK(methods->enum_group_mapping(methods, sid, type,
1953 &state->groups, &state->num_groups,
1954 True))) {
1955 DEBUG(0, ("Could not enum groups\n"));
1956 return False;
1959 state->current_group = 0;
1960 search->private_data = state;
1961 search->next_entry = next_entry_groups;
1962 search->search_end = search_end_groups;
1963 return True;
1966 static bool pdb_default_search_groups(struct pdb_methods *methods,
1967 struct pdb_search *search)
1969 return pdb_search_grouptype(methods, search, get_global_sam_sid(), SID_NAME_DOM_GRP);
1972 static bool pdb_default_search_aliases(struct pdb_methods *methods,
1973 struct pdb_search *search,
1974 const struct dom_sid *sid)
1977 return pdb_search_grouptype(methods, search, sid, SID_NAME_ALIAS);
1980 static struct samr_displayentry *pdb_search_getentry(struct pdb_search *search,
1981 uint32_t idx)
1983 if (idx < search->num_entries)
1984 return &search->cache[idx];
1986 if (search->search_ended)
1987 return NULL;
1989 while (idx >= search->num_entries) {
1990 struct samr_displayentry entry;
1992 if (!search->next_entry(search, &entry)) {
1993 search->search_end(search);
1994 search->search_ended = True;
1995 break;
1998 ADD_TO_LARGE_ARRAY(search, struct samr_displayentry,
1999 entry, &search->cache, &search->num_entries,
2000 &search->cache_size);
2003 return (search->num_entries > idx) ? &search->cache[idx] : NULL;
2006 struct pdb_search *pdb_search_users(TALLOC_CTX *mem_ctx, uint32_t acct_flags)
2008 struct pdb_methods *pdb = pdb_get_methods();
2009 struct pdb_search *result;
2011 result = pdb_search_init(mem_ctx, PDB_USER_SEARCH);
2012 if (result == NULL) {
2013 return NULL;
2016 if (!pdb->search_users(pdb, result, acct_flags)) {
2017 TALLOC_FREE(result);
2018 return NULL;
2020 return result;
2023 struct pdb_search *pdb_search_groups(TALLOC_CTX *mem_ctx)
2025 struct pdb_methods *pdb = pdb_get_methods();
2026 struct pdb_search *result;
2028 result = pdb_search_init(mem_ctx, PDB_GROUP_SEARCH);
2029 if (result == NULL) {
2030 return NULL;
2033 if (!pdb->search_groups(pdb, result)) {
2034 TALLOC_FREE(result);
2035 return NULL;
2037 return result;
2040 struct pdb_search *pdb_search_aliases(TALLOC_CTX *mem_ctx, const struct dom_sid *sid)
2042 struct pdb_methods *pdb = pdb_get_methods();
2043 struct pdb_search *result;
2045 if (pdb == NULL) return NULL;
2047 result = pdb_search_init(mem_ctx, PDB_ALIAS_SEARCH);
2048 if (result == NULL) {
2049 return NULL;
2052 if (!pdb->search_aliases(pdb, result, sid)) {
2053 TALLOC_FREE(result);
2054 return NULL;
2056 return result;
2059 uint32_t pdb_search_entries(struct pdb_search *search,
2060 uint32_t start_idx, uint32_t max_entries,
2061 struct samr_displayentry **result)
2063 struct samr_displayentry *end_entry;
2064 uint32_t end_idx = start_idx+max_entries-1;
2066 /* The first entry needs to be searched after the last. Otherwise the
2067 * first entry might have moved due to a realloc during the search for
2068 * the last entry. */
2070 end_entry = pdb_search_getentry(search, end_idx);
2071 *result = pdb_search_getentry(search, start_idx);
2073 if (end_entry != NULL)
2074 return max_entries;
2076 if (start_idx >= search->num_entries)
2077 return 0;
2079 return search->num_entries - start_idx;
2082 /*******************************************************************
2083 trustdom methods
2084 *******************************************************************/
2086 bool pdb_get_trusteddom_pw(const char *domain, char** pwd, struct dom_sid *sid,
2087 time_t *pass_last_set_time)
2089 struct pdb_methods *pdb = pdb_get_methods();
2090 return pdb->get_trusteddom_pw(pdb, domain, pwd, sid,
2091 pass_last_set_time);
2094 bool pdb_set_trusteddom_pw(const char* domain, const char* pwd,
2095 const struct dom_sid *sid)
2097 struct pdb_methods *pdb = pdb_get_methods();
2098 return pdb->set_trusteddom_pw(pdb, domain, pwd, sid);
2101 bool pdb_del_trusteddom_pw(const char *domain)
2103 struct pdb_methods *pdb = pdb_get_methods();
2104 return pdb->del_trusteddom_pw(pdb, domain);
2107 NTSTATUS pdb_enum_trusteddoms(TALLOC_CTX *mem_ctx, uint32_t *num_domains,
2108 struct trustdom_info ***domains)
2110 struct pdb_methods *pdb = pdb_get_methods();
2111 return pdb->enum_trusteddoms(pdb, mem_ctx, num_domains, domains);
2114 /*******************************************************************
2115 the defaults for trustdom methods:
2116 these simply call the original passdb/secrets.c actions,
2117 to be replaced by pdb_ldap.
2118 *******************************************************************/
2120 static bool pdb_default_get_trusteddom_pw(struct pdb_methods *methods,
2121 const char *domain,
2122 char** pwd,
2123 struct dom_sid *sid,
2124 time_t *pass_last_set_time)
2126 return secrets_fetch_trusted_domain_password(domain, pwd,
2127 sid, pass_last_set_time);
2131 static bool pdb_default_set_trusteddom_pw(struct pdb_methods *methods,
2132 const char* domain,
2133 const char* pwd,
2134 const struct dom_sid *sid)
2136 return secrets_store_trusted_domain_password(domain, pwd, sid);
2139 static bool pdb_default_del_trusteddom_pw(struct pdb_methods *methods,
2140 const char *domain)
2142 return trusted_domain_password_delete(domain);
2145 static NTSTATUS pdb_default_enum_trusteddoms(struct pdb_methods *methods,
2146 TALLOC_CTX *mem_ctx,
2147 uint32_t *num_domains,
2148 struct trustdom_info ***domains)
2150 return secrets_trusted_domains(mem_ctx, num_domains, domains);
2153 /*******************************************************************
2154 trusted_domain methods
2155 *******************************************************************/
2157 NTSTATUS pdb_get_trusted_domain(TALLOC_CTX *mem_ctx, const char *domain,
2158 struct pdb_trusted_domain **td)
2160 struct pdb_methods *pdb = pdb_get_methods();
2161 return pdb->get_trusted_domain(pdb, mem_ctx, domain, td);
2164 NTSTATUS pdb_get_trusted_domain_by_sid(TALLOC_CTX *mem_ctx, struct dom_sid *sid,
2165 struct pdb_trusted_domain **td)
2167 struct pdb_methods *pdb = pdb_get_methods();
2168 return pdb->get_trusted_domain_by_sid(pdb, mem_ctx, sid, td);
2171 NTSTATUS pdb_set_trusted_domain(const char* domain,
2172 const struct pdb_trusted_domain *td)
2174 struct pdb_methods *pdb = pdb_get_methods();
2175 return pdb->set_trusted_domain(pdb, domain, td);
2178 NTSTATUS pdb_del_trusted_domain(const char *domain)
2180 struct pdb_methods *pdb = pdb_get_methods();
2181 return pdb->del_trusted_domain(pdb, domain);
2184 NTSTATUS pdb_enum_trusted_domains(TALLOC_CTX *mem_ctx, uint32_t *num_domains,
2185 struct pdb_trusted_domain ***domains)
2187 struct pdb_methods *pdb = pdb_get_methods();
2188 return pdb->enum_trusted_domains(pdb, mem_ctx, num_domains, domains);
2191 static NTSTATUS pdb_default_get_trusted_domain(struct pdb_methods *methods,
2192 TALLOC_CTX *mem_ctx,
2193 const char *domain,
2194 struct pdb_trusted_domain **td)
2196 struct trustAuthInOutBlob taiob;
2197 struct AuthenticationInformation aia;
2198 struct pdb_trusted_domain *tdom;
2199 enum ndr_err_code ndr_err;
2200 time_t last_set_time;
2201 char *pwd;
2202 bool ok;
2204 tdom = talloc(mem_ctx, struct pdb_trusted_domain);
2205 if (!tdom) {
2206 return NT_STATUS_NO_MEMORY;
2209 tdom->domain_name = talloc_strdup(tdom, domain);
2210 tdom->netbios_name = talloc_strdup(tdom, domain);
2211 if (!tdom->domain_name || !tdom->netbios_name) {
2212 talloc_free(tdom);
2213 return NT_STATUS_NO_MEMORY;
2216 tdom->trust_auth_incoming = data_blob_null;
2218 ok = pdb_get_trusteddom_pw(domain, &pwd, &tdom->security_identifier,
2219 &last_set_time);
2220 if (!ok) {
2221 talloc_free(tdom);
2222 return NT_STATUS_UNSUCCESSFUL;
2225 ZERO_STRUCT(taiob);
2226 ZERO_STRUCT(aia);
2227 taiob.count = 1;
2228 taiob.current.count = 1;
2229 taiob.current.array = &aia;
2230 unix_to_nt_time(&aia.LastUpdateTime, last_set_time);
2231 aia.AuthType = TRUST_AUTH_TYPE_CLEAR;
2232 aia.AuthInfo.clear.password = (uint8_t *) pwd;
2233 aia.AuthInfo.clear.size = strlen(pwd);
2234 taiob.previous.count = 0;
2235 taiob.previous.array = NULL;
2237 ndr_err = ndr_push_struct_blob(&tdom->trust_auth_outgoing,
2238 tdom, &taiob,
2239 (ndr_push_flags_fn_t)ndr_push_trustAuthInOutBlob);
2240 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2241 talloc_free(tdom);
2242 return NT_STATUS_UNSUCCESSFUL;
2245 tdom->trust_direction = LSA_TRUST_DIRECTION_OUTBOUND;
2246 tdom->trust_type = LSA_TRUST_TYPE_DOWNLEVEL;
2247 tdom->trust_attributes = 0;
2248 tdom->trust_forest_trust_info = data_blob_null;
2250 *td = tdom;
2251 return NT_STATUS_OK;
2254 static NTSTATUS pdb_default_get_trusted_domain_by_sid(struct pdb_methods *methods,
2255 TALLOC_CTX *mem_ctx,
2256 struct dom_sid *sid,
2257 struct pdb_trusted_domain **td)
2259 return NT_STATUS_NOT_IMPLEMENTED;
2262 #define IS_NULL_DATA_BLOB(d) ((d).data == NULL && (d).length == 0)
2264 static NTSTATUS pdb_default_set_trusted_domain(struct pdb_methods *methods,
2265 const char* domain,
2266 const struct pdb_trusted_domain *td)
2268 struct trustAuthInOutBlob taiob;
2269 struct AuthenticationInformation *aia;
2270 enum ndr_err_code ndr_err;
2271 char *pwd;
2272 bool ok;
2274 if (td->trust_attributes != 0 ||
2275 td->trust_type != LSA_TRUST_TYPE_DOWNLEVEL ||
2276 td->trust_direction != LSA_TRUST_DIRECTION_OUTBOUND ||
2277 !IS_NULL_DATA_BLOB(td->trust_auth_incoming) ||
2278 !IS_NULL_DATA_BLOB(td->trust_forest_trust_info)) {
2279 return NT_STATUS_NOT_IMPLEMENTED;
2282 ZERO_STRUCT(taiob);
2283 ndr_err = ndr_pull_struct_blob(&td->trust_auth_outgoing, talloc_tos(),
2284 &taiob,
2285 (ndr_pull_flags_fn_t)ndr_pull_trustAuthInOutBlob);
2286 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2287 return NT_STATUS_UNSUCCESSFUL;
2290 aia = (struct AuthenticationInformation *) taiob.current.array;
2292 if (taiob.count != 1 || taiob.current.count != 1 ||
2293 taiob.previous.count != 0 ||
2294 aia->AuthType != TRUST_AUTH_TYPE_CLEAR) {
2295 return NT_STATUS_NOT_IMPLEMENTED;
2298 pwd = talloc_strndup(talloc_tos(), (char *) aia->AuthInfo.clear.password,
2299 aia->AuthInfo.clear.size);
2300 if (!pwd) {
2301 return NT_STATUS_NO_MEMORY;
2304 ok = pdb_set_trusteddom_pw(domain, pwd, &td->security_identifier);
2305 if (!ok) {
2306 return NT_STATUS_UNSUCCESSFUL;
2309 return NT_STATUS_OK;
2312 static NTSTATUS pdb_default_del_trusted_domain(struct pdb_methods *methods,
2313 const char *domain)
2315 return NT_STATUS_NOT_IMPLEMENTED;
2318 static NTSTATUS pdb_default_enum_trusted_domains(struct pdb_methods *methods,
2319 TALLOC_CTX *mem_ctx,
2320 uint32_t *num_domains,
2321 struct pdb_trusted_domain ***domains)
2323 return NT_STATUS_NOT_IMPLEMENTED;
2326 static struct pdb_domain_info *pdb_default_get_domain_info(
2327 struct pdb_methods *m, TALLOC_CTX *mem_ctx)
2329 return NULL;
2332 /*******************************************************************
2333 secret methods
2334 *******************************************************************/
2336 NTSTATUS pdb_get_secret(TALLOC_CTX *mem_ctx,
2337 const char *secret_name,
2338 DATA_BLOB *secret_current,
2339 NTTIME *secret_current_lastchange,
2340 DATA_BLOB *secret_old,
2341 NTTIME *secret_old_lastchange,
2342 struct security_descriptor **sd)
2344 struct pdb_methods *pdb = pdb_get_methods();
2345 return pdb->get_secret(pdb, mem_ctx, secret_name,
2346 secret_current, secret_current_lastchange,
2347 secret_old, secret_old_lastchange,
2348 sd);
2351 NTSTATUS pdb_set_secret(const char *secret_name,
2352 DATA_BLOB *secret_current,
2353 DATA_BLOB *secret_old,
2354 struct security_descriptor *sd)
2356 struct pdb_methods *pdb = pdb_get_methods();
2357 return pdb->set_secret(pdb, secret_name,
2358 secret_current,
2359 secret_old,
2360 sd);
2363 NTSTATUS pdb_delete_secret(const char *secret_name)
2365 struct pdb_methods *pdb = pdb_get_methods();
2366 return pdb->delete_secret(pdb, secret_name);
2369 static NTSTATUS pdb_default_get_secret(struct pdb_methods *methods,
2370 TALLOC_CTX *mem_ctx,
2371 const char *secret_name,
2372 DATA_BLOB *secret_current,
2373 NTTIME *secret_current_lastchange,
2374 DATA_BLOB *secret_old,
2375 NTTIME *secret_old_lastchange,
2376 struct security_descriptor **sd)
2378 return lsa_secret_get(mem_ctx, secret_name,
2379 secret_current,
2380 secret_current_lastchange,
2381 secret_old,
2382 secret_old_lastchange,
2383 sd);
2386 static NTSTATUS pdb_default_set_secret(struct pdb_methods *methods,
2387 const char *secret_name,
2388 DATA_BLOB *secret_current,
2389 DATA_BLOB *secret_old,
2390 struct security_descriptor *sd)
2392 return lsa_secret_set(secret_name,
2393 secret_current,
2394 secret_old,
2395 sd);
2398 static NTSTATUS pdb_default_delete_secret(struct pdb_methods *methods,
2399 const char *secret_name)
2401 return lsa_secret_delete(secret_name);
2404 /*******************************************************************
2405 Create a pdb_methods structure and initialize it with the default
2406 operations. In this way a passdb module can simply implement
2407 the functionality it cares about. However, normally this is done
2408 in groups of related functions.
2409 *******************************************************************/
2411 NTSTATUS make_pdb_method( struct pdb_methods **methods )
2413 /* allocate memory for the structure as its own talloc CTX */
2415 *methods = talloc_zero(NULL, struct pdb_methods);
2416 if (*methods == NULL) {
2417 return NT_STATUS_NO_MEMORY;
2420 (*methods)->get_domain_info = pdb_default_get_domain_info;
2421 (*methods)->getsampwnam = pdb_default_getsampwnam;
2422 (*methods)->getsampwsid = pdb_default_getsampwsid;
2423 (*methods)->create_user = pdb_default_create_user;
2424 (*methods)->delete_user = pdb_default_delete_user;
2425 (*methods)->add_sam_account = pdb_default_add_sam_account;
2426 (*methods)->update_sam_account = pdb_default_update_sam_account;
2427 (*methods)->delete_sam_account = pdb_default_delete_sam_account;
2428 (*methods)->rename_sam_account = pdb_default_rename_sam_account;
2429 (*methods)->update_login_attempts = pdb_default_update_login_attempts;
2431 (*methods)->getgrsid = pdb_default_getgrsid;
2432 (*methods)->getgrgid = pdb_default_getgrgid;
2433 (*methods)->getgrnam = pdb_default_getgrnam;
2434 (*methods)->create_dom_group = pdb_default_create_dom_group;
2435 (*methods)->delete_dom_group = pdb_default_delete_dom_group;
2436 (*methods)->add_group_mapping_entry = pdb_default_add_group_mapping_entry;
2437 (*methods)->update_group_mapping_entry = pdb_default_update_group_mapping_entry;
2438 (*methods)->delete_group_mapping_entry = pdb_default_delete_group_mapping_entry;
2439 (*methods)->enum_group_mapping = pdb_default_enum_group_mapping;
2440 (*methods)->enum_group_members = pdb_default_enum_group_members;
2441 (*methods)->enum_group_memberships = pdb_default_enum_group_memberships;
2442 (*methods)->set_unix_primary_group = pdb_default_set_unix_primary_group;
2443 (*methods)->add_groupmem = pdb_default_add_groupmem;
2444 (*methods)->del_groupmem = pdb_default_del_groupmem;
2445 (*methods)->create_alias = pdb_default_create_alias;
2446 (*methods)->delete_alias = pdb_default_delete_alias;
2447 (*methods)->get_aliasinfo = pdb_default_get_aliasinfo;
2448 (*methods)->set_aliasinfo = pdb_default_set_aliasinfo;
2449 (*methods)->add_aliasmem = pdb_default_add_aliasmem;
2450 (*methods)->del_aliasmem = pdb_default_del_aliasmem;
2451 (*methods)->enum_aliasmem = pdb_default_enum_aliasmem;
2452 (*methods)->enum_alias_memberships = pdb_default_alias_memberships;
2453 (*methods)->lookup_rids = pdb_default_lookup_rids;
2454 (*methods)->get_account_policy = pdb_default_get_account_policy;
2455 (*methods)->set_account_policy = pdb_default_set_account_policy;
2456 (*methods)->get_seq_num = pdb_default_get_seq_num;
2457 (*methods)->uid_to_sid = pdb_default_uid_to_sid;
2458 (*methods)->gid_to_sid = pdb_default_gid_to_sid;
2459 (*methods)->sid_to_id = pdb_default_sid_to_id;
2461 (*methods)->search_groups = pdb_default_search_groups;
2462 (*methods)->search_aliases = pdb_default_search_aliases;
2464 (*methods)->get_trusteddom_pw = pdb_default_get_trusteddom_pw;
2465 (*methods)->set_trusteddom_pw = pdb_default_set_trusteddom_pw;
2466 (*methods)->del_trusteddom_pw = pdb_default_del_trusteddom_pw;
2467 (*methods)->enum_trusteddoms = pdb_default_enum_trusteddoms;
2469 (*methods)->get_trusted_domain = pdb_default_get_trusted_domain;
2470 (*methods)->get_trusted_domain_by_sid = pdb_default_get_trusted_domain_by_sid;
2471 (*methods)->set_trusted_domain = pdb_default_set_trusted_domain;
2472 (*methods)->del_trusted_domain = pdb_default_del_trusted_domain;
2473 (*methods)->enum_trusted_domains = pdb_default_enum_trusted_domains;
2475 (*methods)->get_secret = pdb_default_get_secret;
2476 (*methods)->set_secret = pdb_default_set_secret;
2477 (*methods)->delete_secret = pdb_default_delete_secret;
2479 return NT_STATUS_OK;