[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / passdb / secrets.c
blob3ac3a93233877c1035a4d6bc810fef4184f16678
1 /*
2 Unix SMB/CIFS implementation.
3 Copyright (C) Andrew Tridgell 1992-2001
4 Copyright (C) Andrew Bartlett 2002
5 Copyright (C) Rafal Szczesniak 2002
6 Copyright (C) Tim Potter 2001
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 /* the Samba secrets database stores any generated, private information
24 such as the local SID and machine trust password */
26 #include "includes.h"
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_PASSDB
31 static TDB_CONTEXT *tdb;
33 /* Urrrg. global.... */
34 BOOL global_machine_password_needs_changing;
36 /**
37 * Use a TDB to store an incrementing random seed.
39 * Initialised to the current pid, the very first time Samba starts,
40 * and incremented by one each time it is needed.
42 * @note Not called by systems with a working /dev/urandom.
44 static void get_rand_seed(int *new_seed)
46 *new_seed = sys_getpid();
47 if (tdb) {
48 tdb_change_int32_atomic(tdb, "INFO/random_seed", new_seed, 1);
52 /* open up the secrets database */
53 BOOL secrets_init(void)
55 pstring fname;
56 unsigned char dummy;
58 if (tdb)
59 return True;
61 pstrcpy(fname, lp_private_dir());
62 pstrcat(fname,"/secrets.tdb");
64 tdb = tdb_open_log(fname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
66 if (!tdb) {
67 DEBUG(0,("Failed to open %s\n", fname));
68 return False;
71 /**
72 * Set a reseed function for the crypto random generator
74 * This avoids a problem where systems without /dev/urandom
75 * could send the same challenge to multiple clients
77 set_rand_reseed_callback(get_rand_seed);
79 /* Ensure that the reseed is done now, while we are root, etc */
80 generate_random_buffer(&dummy, sizeof(dummy));
82 return True;
85 /* read a entry from the secrets database - the caller must free the result
86 if size is non-null then the size of the entry is put in there
88 void *secrets_fetch(const char *key, size_t *size)
90 TDB_DATA dbuf;
91 secrets_init();
92 if (!tdb)
93 return NULL;
94 dbuf = tdb_fetch(tdb, string_tdb_data(key));
95 if (size)
96 *size = dbuf.dsize;
97 return dbuf.dptr;
100 /* store a secrets entry
102 BOOL secrets_store(const char *key, const void *data, size_t size)
104 secrets_init();
105 if (!tdb)
106 return False;
107 return tdb_trans_store(tdb, string_tdb_data(key),
108 make_tdb_data((const char *)data, size),
109 TDB_REPLACE) == 0;
113 /* delete a secets database entry
115 BOOL secrets_delete(const char *key)
117 secrets_init();
118 if (!tdb)
119 return False;
120 return tdb_delete(tdb, string_tdb_data(key)) == 0;
123 BOOL secrets_store_domain_sid(const char *domain, const DOM_SID *sid)
125 fstring key;
126 BOOL ret;
128 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_SID, domain);
129 strupper_m(key);
130 ret = secrets_store(key, sid, sizeof(DOM_SID));
132 /* Force a re-query, in case we modified our domain */
133 if (ret)
134 reset_global_sam_sid();
135 return ret;
138 BOOL secrets_fetch_domain_sid(const char *domain, DOM_SID *sid)
140 DOM_SID *dyn_sid;
141 fstring key;
142 size_t size = 0;
144 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_SID, domain);
145 strupper_m(key);
146 dyn_sid = (DOM_SID *)secrets_fetch(key, &size);
148 if (dyn_sid == NULL)
149 return False;
151 if (size != sizeof(DOM_SID)) {
152 SAFE_FREE(dyn_sid);
153 return False;
156 *sid = *dyn_sid;
157 SAFE_FREE(dyn_sid);
158 return True;
161 BOOL secrets_store_domain_guid(const char *domain, struct GUID *guid)
163 fstring key;
165 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_GUID, domain);
166 strupper_m(key);
167 return secrets_store(key, guid, sizeof(struct GUID));
170 BOOL secrets_fetch_domain_guid(const char *domain, struct GUID *guid)
172 struct GUID *dyn_guid;
173 fstring key;
174 size_t size = 0;
175 struct GUID new_guid;
177 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_GUID, domain);
178 strupper_m(key);
179 dyn_guid = (struct GUID *)secrets_fetch(key, &size);
181 if (!dyn_guid) {
182 if (lp_server_role() == ROLE_DOMAIN_PDC) {
183 smb_uuid_generate_random(&new_guid);
184 if (!secrets_store_domain_guid(domain, &new_guid))
185 return False;
186 dyn_guid = (struct GUID *)secrets_fetch(key, &size);
188 if (dyn_guid == NULL) {
189 return False;
193 if (size != sizeof(struct GUID)) {
194 DEBUG(1,("UUID size %d is wrong!\n", (int)size));
195 SAFE_FREE(dyn_guid);
196 return False;
199 *guid = *dyn_guid;
200 SAFE_FREE(dyn_guid);
201 return True;
205 * Form a key for fetching the machine trust account password
207 * @param domain domain name
209 * @return stored password's key
211 static const char *trust_keystr(const char *domain)
213 static fstring keystr;
215 slprintf(keystr,sizeof(keystr)-1,"%s/%s",
216 SECRETS_MACHINE_ACCT_PASS, domain);
217 strupper_m(keystr);
219 return keystr;
223 * Form a key for fetching a trusted domain password
225 * @param domain trusted domain name
227 * @return stored password's key
229 static char *trustdom_keystr(const char *domain)
231 static pstring keystr;
233 pstr_sprintf(keystr, "%s/%s", SECRETS_DOMTRUST_ACCT_PASS, domain);
234 strupper_m(keystr);
236 return keystr;
239 /************************************************************************
240 Lock the trust password entry.
241 ************************************************************************/
243 BOOL secrets_lock_trust_account_password(const char *domain, BOOL dolock)
245 if (!tdb)
246 return False;
248 if (dolock)
249 return (tdb_lock_bystring(tdb, trust_keystr(domain)) == 0);
250 else
251 tdb_unlock_bystring(tdb, trust_keystr(domain));
252 return True;
255 /************************************************************************
256 Routine to get the default secure channel type for trust accounts
257 ************************************************************************/
259 uint32 get_default_sec_channel(void)
261 if (lp_server_role() == ROLE_DOMAIN_BDC ||
262 lp_server_role() == ROLE_DOMAIN_PDC) {
263 return SEC_CHAN_BDC;
264 } else {
265 return SEC_CHAN_WKSTA;
269 /************************************************************************
270 Routine to get the trust account password for a domain.
271 The user of this function must have locked the trust password file using
272 the above secrets_lock_trust_account_password().
273 ************************************************************************/
275 BOOL secrets_fetch_trust_account_password(const char *domain, uint8 ret_pwd[16],
276 time_t *pass_last_set_time,
277 uint32 *channel)
279 struct machine_acct_pass *pass;
280 char *plaintext;
281 size_t size = 0;
283 plaintext = secrets_fetch_machine_password(domain, pass_last_set_time,
284 channel);
285 if (plaintext) {
286 DEBUG(4,("Using cleartext machine password\n"));
287 E_md4hash(plaintext, ret_pwd);
288 SAFE_FREE(plaintext);
289 return True;
292 if (!(pass = (struct machine_acct_pass *)secrets_fetch(
293 trust_keystr(domain), &size))) {
294 DEBUG(5, ("secrets_fetch failed!\n"));
295 return False;
298 if (size != sizeof(*pass)) {
299 DEBUG(0, ("secrets were of incorrect size!\n"));
300 return False;
303 if (pass_last_set_time) {
304 *pass_last_set_time = pass->mod_time;
306 memcpy(ret_pwd, pass->hash, 16);
308 if (channel) {
309 *channel = get_default_sec_channel();
312 /* Test if machine password has expired and needs to be changed */
313 if (lp_machine_password_timeout()) {
314 if (pass->mod_time > 0 && time(NULL) > (pass->mod_time +
315 (time_t)lp_machine_password_timeout())) {
316 global_machine_password_needs_changing = True;
320 SAFE_FREE(pass);
321 return True;
325 * Pack SID passed by pointer
327 * @param pack_buf pointer to buffer which is to be filled with packed data
328 * @param bufsize size of packing buffer
329 * @param sid pointer to sid to be packed
331 * @return length of the packed representation of the whole structure
333 static size_t tdb_sid_pack(char* pack_buf, int bufsize, DOM_SID* sid)
335 int idx;
336 size_t len = 0;
338 if (!sid || !pack_buf) return -1;
340 len += tdb_pack(pack_buf + len, bufsize - len, "bb", sid->sid_rev_num,
341 sid->num_auths);
343 for (idx = 0; idx < 6; idx++) {
344 len += tdb_pack(pack_buf + len, bufsize - len, "b",
345 sid->id_auth[idx]);
348 for (idx = 0; idx < MAXSUBAUTHS; idx++) {
349 len += tdb_pack(pack_buf + len, bufsize - len, "d",
350 sid->sub_auths[idx]);
353 return len;
357 * Unpack SID into a pointer
359 * @param pack_buf pointer to buffer with packed representation
360 * @param bufsize size of the buffer
361 * @param sid pointer to sid structure to be filled with unpacked data
363 * @return size of structure unpacked from buffer
365 static size_t tdb_sid_unpack(char* pack_buf, int bufsize, DOM_SID* sid)
367 int idx, len = 0;
369 if (!sid || !pack_buf) return -1;
371 len += tdb_unpack(pack_buf + len, bufsize - len, "bb",
372 &sid->sid_rev_num, &sid->num_auths);
374 for (idx = 0; idx < 6; idx++) {
375 len += tdb_unpack(pack_buf + len, bufsize - len, "b",
376 &sid->id_auth[idx]);
379 for (idx = 0; idx < MAXSUBAUTHS; idx++) {
380 len += tdb_unpack(pack_buf + len, bufsize - len, "d",
381 &sid->sub_auths[idx]);
384 return len;
388 * Pack TRUSTED_DOM_PASS passed by pointer
390 * @param pack_buf pointer to buffer which is to be filled with packed data
391 * @param bufsize size of the buffer
392 * @param pass pointer to trusted domain password to be packed
394 * @return length of the packed representation of the whole structure
396 static size_t tdb_trusted_dom_pass_pack(char* pack_buf, int bufsize,
397 TRUSTED_DOM_PASS* pass)
399 int idx, len = 0;
401 if (!pack_buf || !pass) return -1;
403 /* packing unicode domain name and password */
404 len += tdb_pack(pack_buf + len, bufsize - len, "d",
405 pass->uni_name_len);
407 for (idx = 0; idx < 32; idx++)
408 len += tdb_pack(pack_buf + len, bufsize - len, "w",
409 pass->uni_name[idx]);
411 len += tdb_pack(pack_buf + len, bufsize - len, "dPd", pass->pass_len,
412 pass->pass, pass->mod_time);
414 /* packing SID structure */
415 len += tdb_sid_pack(pack_buf + len, bufsize - len, &pass->domain_sid);
417 return len;
422 * Unpack TRUSTED_DOM_PASS passed by pointer
424 * @param pack_buf pointer to buffer with packed representation
425 * @param bufsize size of the buffer
426 * @param pass pointer to trusted domain password to be filled with unpacked data
428 * @return size of structure unpacked from buffer
430 static size_t tdb_trusted_dom_pass_unpack(char* pack_buf, int bufsize,
431 TRUSTED_DOM_PASS* pass)
433 int idx, len = 0;
435 if (!pack_buf || !pass) return -1;
437 /* unpack unicode domain name and plaintext password */
438 len += tdb_unpack(pack_buf, bufsize - len, "d", &pass->uni_name_len);
440 for (idx = 0; idx < 32; idx++)
441 len += tdb_unpack(pack_buf + len, bufsize - len, "w",
442 &pass->uni_name[idx]);
444 len += tdb_unpack(pack_buf + len, bufsize - len, "dPd",
445 &pass->pass_len, &pass->pass, &pass->mod_time);
447 /* unpack domain sid */
448 len += tdb_sid_unpack(pack_buf + len, bufsize - len,
449 &pass->domain_sid);
451 return len;
454 /************************************************************************
455 Routine to get account password to trusted domain
456 ************************************************************************/
458 BOOL secrets_fetch_trusted_domain_password(const char *domain, char** pwd,
459 DOM_SID *sid, time_t *pass_last_set_time)
461 struct trusted_dom_pass pass;
462 size_t size = 0;
464 /* unpacking structures */
465 char* pass_buf;
466 int pass_len = 0;
468 ZERO_STRUCT(pass);
470 /* fetching trusted domain password structure */
471 if (!(pass_buf = (char *)secrets_fetch(trustdom_keystr(domain),
472 &size))) {
473 DEBUG(5, ("secrets_fetch failed!\n"));
474 return False;
477 /* unpack trusted domain password */
478 pass_len = tdb_trusted_dom_pass_unpack(pass_buf, size, &pass);
479 SAFE_FREE(pass_buf);
481 if (pass_len != size) {
482 DEBUG(5, ("Invalid secrets size. Unpacked data doesn't match trusted_dom_pass structure.\n"));
483 return False;
486 /* the trust's password */
487 if (pwd) {
488 *pwd = SMB_STRDUP(pass.pass);
489 if (!*pwd) {
490 return False;
494 /* last change time */
495 if (pass_last_set_time) *pass_last_set_time = pass.mod_time;
497 /* domain sid */
498 if (sid != NULL) sid_copy(sid, &pass.domain_sid);
500 return True;
503 /************************************************************************
504 Routine to set the trust account password for a domain.
505 ************************************************************************/
507 BOOL secrets_store_trust_account_password(const char *domain, uint8 new_pwd[16])
509 struct machine_acct_pass pass;
511 pass.mod_time = time(NULL);
512 memcpy(pass.hash, new_pwd, 16);
514 return secrets_store(trust_keystr(domain), (void *)&pass, sizeof(pass));
518 * Routine to store the password for trusted domain
520 * @param domain remote domain name
521 * @param pwd plain text password of trust relationship
522 * @param sid remote domain sid
524 * @return true if succeeded
527 BOOL secrets_store_trusted_domain_password(const char* domain, const char* pwd,
528 const DOM_SID *sid)
530 smb_ucs2_t *uni_dom_name;
532 /* packing structures */
533 pstring pass_buf;
534 int pass_len = 0;
535 int pass_buf_len = sizeof(pass_buf);
537 struct trusted_dom_pass pass;
538 ZERO_STRUCT(pass);
540 if (push_ucs2_allocate(&uni_dom_name, domain) == (size_t)-1) {
541 DEBUG(0, ("Could not convert domain name %s to unicode\n",
542 domain));
543 return False;
546 strncpy_w(pass.uni_name, uni_dom_name, sizeof(pass.uni_name) - 1);
547 pass.uni_name_len = strlen_w(uni_dom_name)+1;
548 SAFE_FREE(uni_dom_name);
550 /* last change time */
551 pass.mod_time = time(NULL);
553 /* password of the trust */
554 pass.pass_len = strlen(pwd);
555 fstrcpy(pass.pass, pwd);
557 /* domain sid */
558 sid_copy(&pass.domain_sid, sid);
560 pass_len = tdb_trusted_dom_pass_pack(pass_buf, pass_buf_len, &pass);
562 return secrets_store(trustdom_keystr(domain), (void *)&pass_buf, pass_len);
565 /************************************************************************
566 Routine to set the plaintext machine account password for a realm
567 the password is assumed to be a null terminated ascii string
568 ************************************************************************/
570 BOOL secrets_store_machine_password(const char *pass, const char *domain, uint32 sec_channel)
572 char *key = NULL;
573 BOOL ret;
574 uint32 last_change_time;
575 uint32 sec_channel_type;
577 asprintf(&key, "%s/%s", SECRETS_MACHINE_PASSWORD, domain);
578 if (!key)
579 return False;
580 strupper_m(key);
582 ret = secrets_store(key, pass, strlen(pass)+1);
583 SAFE_FREE(key);
585 if (!ret)
586 return ret;
588 asprintf(&key, "%s/%s", SECRETS_MACHINE_LAST_CHANGE_TIME, domain);
589 if (!key)
590 return False;
591 strupper_m(key);
593 SIVAL(&last_change_time, 0, time(NULL));
594 ret = secrets_store(key, &last_change_time, sizeof(last_change_time));
595 SAFE_FREE(key);
597 asprintf(&key, "%s/%s", SECRETS_MACHINE_SEC_CHANNEL_TYPE, domain);
598 if (!key)
599 return False;
600 strupper_m(key);
602 SIVAL(&sec_channel_type, 0, sec_channel);
603 ret = secrets_store(key, &sec_channel_type, sizeof(sec_channel_type));
604 SAFE_FREE(key);
606 return ret;
609 /************************************************************************
610 Routine to fetch the plaintext machine account password for a realm
611 the password is assumed to be a null terminated ascii string.
612 ************************************************************************/
614 char *secrets_fetch_machine_password(const char *domain,
615 time_t *pass_last_set_time,
616 uint32 *channel)
618 char *key = NULL;
619 char *ret;
620 asprintf(&key, "%s/%s", SECRETS_MACHINE_PASSWORD, domain);
621 strupper_m(key);
622 ret = (char *)secrets_fetch(key, NULL);
623 SAFE_FREE(key);
625 if (pass_last_set_time) {
626 size_t size;
627 uint32 *last_set_time;
628 asprintf(&key, "%s/%s", SECRETS_MACHINE_LAST_CHANGE_TIME, domain);
629 strupper_m(key);
630 last_set_time = (unsigned int *)secrets_fetch(key, &size);
631 if (last_set_time) {
632 *pass_last_set_time = IVAL(last_set_time,0);
633 SAFE_FREE(last_set_time);
634 } else {
635 *pass_last_set_time = 0;
637 SAFE_FREE(key);
640 if (channel) {
641 size_t size;
642 uint32 *channel_type;
643 asprintf(&key, "%s/%s", SECRETS_MACHINE_SEC_CHANNEL_TYPE, domain);
644 strupper_m(key);
645 channel_type = (unsigned int *)secrets_fetch(key, &size);
646 if (channel_type) {
647 *channel = IVAL(channel_type,0);
648 SAFE_FREE(channel_type);
649 } else {
650 *channel = get_default_sec_channel();
652 SAFE_FREE(key);
655 return ret;
658 /*******************************************************************
659 Wrapper around retrieving the trust account password
660 *******************************************************************/
662 BOOL get_trust_pw(const char *domain, uint8 ret_pwd[16], uint32 *channel)
664 DOM_SID sid;
665 char *pwd;
666 time_t last_set_time;
668 /* if we are a DC and this is not our domain, then lookup an account
669 for the domain trust */
671 if ( IS_DC && !strequal(domain, lp_workgroup()) && lp_allow_trusted_domains() ) {
672 if (!secrets_fetch_trusted_domain_password(domain, &pwd, &sid,
673 &last_set_time)) {
674 DEBUG(0, ("get_trust_pw: could not fetch trust "
675 "account password for trusted domain %s\n",
676 domain));
677 return False;
680 *channel = SEC_CHAN_DOMAIN;
681 E_md4hash(pwd, ret_pwd);
682 SAFE_FREE(pwd);
684 return True;
687 /* Just get the account for the requested domain. In the future this
688 * might also cover to be member of more than one domain. */
690 if (secrets_fetch_trust_account_password(domain, ret_pwd,
691 &last_set_time, channel))
692 return True;
694 DEBUG(5, ("get_trust_pw: could not fetch trust account "
695 "password for domain %s\n", domain));
696 return False;
699 /************************************************************************
700 Routine to delete the machine trust account password file for a domain.
701 ************************************************************************/
703 BOOL trust_password_delete(const char *domain)
705 return secrets_delete(trust_keystr(domain));
708 /************************************************************************
709 Routine to delete the password for trusted domain
710 ************************************************************************/
712 BOOL trusted_domain_password_delete(const char *domain)
714 return secrets_delete(trustdom_keystr(domain));
717 BOOL secrets_store_ldap_pw(const char* dn, char* pw)
719 char *key = NULL;
720 BOOL ret;
722 if (asprintf(&key, "%s/%s", SECRETS_LDAP_BIND_PW, dn) < 0) {
723 DEBUG(0, ("secrets_store_ldap_pw: asprintf failed!\n"));
724 return False;
727 ret = secrets_store(key, pw, strlen(pw)+1);
729 SAFE_FREE(key);
730 return ret;
733 /*******************************************************************
734 Find the ldap password.
735 ******************************************************************/
737 BOOL fetch_ldap_pw(char **dn, char** pw)
739 char *key = NULL;
740 size_t size = 0;
742 *dn = smb_xstrdup(lp_ldap_admin_dn());
744 if (asprintf(&key, "%s/%s", SECRETS_LDAP_BIND_PW, *dn) < 0) {
745 SAFE_FREE(*dn);
746 DEBUG(0, ("fetch_ldap_pw: asprintf failed!\n"));
749 *pw=(char *)secrets_fetch(key, &size);
750 SAFE_FREE(key);
752 if (!size) {
753 /* Upgrade 2.2 style entry */
754 char *p;
755 char* old_style_key = SMB_STRDUP(*dn);
756 char *data;
757 fstring old_style_pw;
759 if (!old_style_key) {
760 DEBUG(0, ("fetch_ldap_pw: strdup failed!\n"));
761 return False;
764 for (p=old_style_key; *p; p++)
765 if (*p == ',') *p = '/';
767 data=(char *)secrets_fetch(old_style_key, &size);
768 if (!size && size < sizeof(old_style_pw)) {
769 DEBUG(0,("fetch_ldap_pw: neither ldap secret retrieved!\n"));
770 SAFE_FREE(old_style_key);
771 SAFE_FREE(*dn);
772 return False;
775 size = MIN(size, sizeof(fstring)-1);
776 strncpy(old_style_pw, data, size);
777 old_style_pw[size] = 0;
779 SAFE_FREE(data);
781 if (!secrets_store_ldap_pw(*dn, old_style_pw)) {
782 DEBUG(0,("fetch_ldap_pw: ldap secret could not be upgraded!\n"));
783 SAFE_FREE(old_style_key);
784 SAFE_FREE(*dn);
785 return False;
787 if (!secrets_delete(old_style_key)) {
788 DEBUG(0,("fetch_ldap_pw: old ldap secret could not be deleted!\n"));
791 SAFE_FREE(old_style_key);
793 *pw = smb_xstrdup(old_style_pw);
796 return True;
800 * Get trusted domains info from secrets.tdb.
801 **/
803 NTSTATUS secrets_trusted_domains(TALLOC_CTX *mem_ctx, uint32 *num_domains,
804 struct trustdom_info ***domains)
806 TDB_LIST_NODE *keys, *k;
807 char *pattern;
808 TALLOC_CTX *tmp_ctx;
810 if (!(tmp_ctx = talloc_new(mem_ctx))) {
811 return NT_STATUS_NO_MEMORY;
814 if (!secrets_init()) return NT_STATUS_ACCESS_DENIED;
816 /* generate searching pattern */
817 pattern = talloc_asprintf(tmp_ctx, "%s/*", SECRETS_DOMTRUST_ACCT_PASS);
818 if (pattern == NULL) {
819 DEBUG(0, ("secrets_trusted_domains: talloc_asprintf() "
820 "failed!\n"));
821 TALLOC_FREE(tmp_ctx);
822 return NT_STATUS_NO_MEMORY;
825 *num_domains = 0;
828 * Make sure that a talloc context for the trustdom_info structs
829 * exists
832 if (!(*domains = TALLOC_ARRAY(mem_ctx, struct trustdom_info *, 1))) {
833 TALLOC_FREE(tmp_ctx);
834 return NT_STATUS_NO_MEMORY;
837 /* fetching trusted domains' data and collecting them in a list */
838 keys = tdb_search_keys(tdb, pattern);
840 /* searching for keys in secrets db -- way to go ... */
841 for (k = keys; k; k = k->next) {
842 char *packed_pass;
843 size_t size = 0, packed_size = 0;
844 struct trusted_dom_pass pass;
845 char *secrets_key;
846 struct trustdom_info *dom_info;
848 /* important: ensure null-termination of the key string */
849 secrets_key = talloc_strndup(tmp_ctx,
850 k->node_key.dptr,
851 k->node_key.dsize);
852 if (!secrets_key) {
853 DEBUG(0, ("strndup failed!\n"));
854 tdb_search_list_free(keys);
855 TALLOC_FREE(tmp_ctx);
856 return NT_STATUS_NO_MEMORY;
859 packed_pass = (char *)secrets_fetch(secrets_key, &size);
860 packed_size = tdb_trusted_dom_pass_unpack(packed_pass, size,
861 &pass);
862 /* packed representation isn't needed anymore */
863 SAFE_FREE(packed_pass);
865 if (size != packed_size) {
866 DEBUG(2, ("Secrets record %s is invalid!\n",
867 secrets_key));
868 continue;
871 if (pass.domain_sid.num_auths != 4) {
872 DEBUG(0, ("SID %s is not a domain sid, has %d "
873 "auths instead of 4\n",
874 sid_string_static(&pass.domain_sid),
875 pass.domain_sid.num_auths));
876 continue;
879 if (!(dom_info = TALLOC_P(*domains, struct trustdom_info))) {
880 DEBUG(0, ("talloc failed\n"));
881 tdb_search_list_free(keys);
882 TALLOC_FREE(tmp_ctx);
883 return NT_STATUS_NO_MEMORY;
886 if (pull_ucs2_talloc(dom_info, &dom_info->name,
887 pass.uni_name) == (size_t)-1) {
888 DEBUG(2, ("pull_ucs2_talloc failed\n"));
889 tdb_search_list_free(keys);
890 TALLOC_FREE(tmp_ctx);
891 return NT_STATUS_NO_MEMORY;
894 sid_copy(&dom_info->sid, &pass.domain_sid);
896 ADD_TO_ARRAY(*domains, struct trustdom_info *, dom_info,
897 domains, num_domains);
899 if (*domains == NULL) {
900 tdb_search_list_free(keys);
901 TALLOC_FREE(tmp_ctx);
902 return NT_STATUS_NO_MEMORY;
906 DEBUG(5, ("secrets_get_trusted_domains: got %d domains\n",
907 *num_domains));
909 /* free the results of searching the keys */
910 tdb_search_list_free(keys);
911 TALLOC_FREE(tmp_ctx);
913 return NT_STATUS_OK;
916 /*******************************************************************************
917 Lock the secrets tdb based on a string - this is used as a primitive form of mutex
918 between smbd instances.
919 *******************************************************************************/
921 BOOL secrets_named_mutex(const char *name, unsigned int timeout)
923 int ret = 0;
925 if (!secrets_init())
926 return False;
928 ret = tdb_lock_bystring_with_timeout(tdb, name, timeout);
929 if (ret == 0)
930 DEBUG(10,("secrets_named_mutex: got mutex for %s\n", name ));
932 return (ret == 0);
935 /*******************************************************************************
936 Unlock a named mutex.
937 *******************************************************************************/
939 void secrets_named_mutex_release(const char *name)
941 tdb_unlock_bystring(tdb, name);
942 DEBUG(10,("secrets_named_mutex: released mutex for %s\n", name ));
945 /*******************************************************************************
946 Store a complete AFS keyfile into secrets.tdb.
947 *******************************************************************************/
949 BOOL secrets_store_afs_keyfile(const char *cell, const struct afs_keyfile *keyfile)
951 fstring key;
953 if ((cell == NULL) || (keyfile == NULL))
954 return False;
956 if (ntohl(keyfile->nkeys) > SECRETS_AFS_MAXKEYS)
957 return False;
959 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_AFS_KEYFILE, cell);
960 return secrets_store(key, keyfile, sizeof(struct afs_keyfile));
963 /*******************************************************************************
964 Fetch the current (highest) AFS key from secrets.tdb
965 *******************************************************************************/
966 BOOL secrets_fetch_afs_key(const char *cell, struct afs_key *result)
968 fstring key;
969 struct afs_keyfile *keyfile;
970 size_t size = 0;
971 uint32 i;
973 slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_AFS_KEYFILE, cell);
975 keyfile = (struct afs_keyfile *)secrets_fetch(key, &size);
977 if (keyfile == NULL)
978 return False;
980 if (size != sizeof(struct afs_keyfile)) {
981 SAFE_FREE(keyfile);
982 return False;
985 i = ntohl(keyfile->nkeys);
987 if (i > SECRETS_AFS_MAXKEYS) {
988 SAFE_FREE(keyfile);
989 return False;
992 *result = keyfile->entry[i-1];
994 result->kvno = ntohl(result->kvno);
996 return True;
999 /******************************************************************************
1000 When kerberos is not available, choose between anonymous or
1001 authenticated connections.
1003 We need to use an authenticated connection if DCs have the
1004 RestrictAnonymous registry entry set > 0, or the "Additional
1005 restrictions for anonymous connections" set in the win2k Local
1006 Security Policy.
1008 Caller to free() result in domain, username, password
1009 *******************************************************************************/
1010 void secrets_fetch_ipc_userpass(char **username, char **domain, char **password)
1012 *username = (char *)secrets_fetch(SECRETS_AUTH_USER, NULL);
1013 *domain = (char *)secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
1014 *password = (char *)secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
1016 if (*username && **username) {
1018 if (!*domain || !**domain)
1019 *domain = smb_xstrdup(lp_workgroup());
1021 if (!*password || !**password)
1022 *password = smb_xstrdup("");
1024 DEBUG(3, ("IPC$ connections done by user %s\\%s\n",
1025 *domain, *username));
1027 } else {
1028 DEBUG(3, ("IPC$ connections done anonymously\n"));
1029 *username = smb_xstrdup("");
1030 *domain = smb_xstrdup("");
1031 *password = smb_xstrdup("");
1035 /******************************************************************************
1036 Open or create the schannel session store tdb.
1037 *******************************************************************************/
1039 static TDB_CONTEXT *open_schannel_session_store(TALLOC_CTX *mem_ctx)
1041 TDB_DATA vers;
1042 uint32 ver;
1043 TDB_CONTEXT *tdb_sc = NULL;
1044 char *fname = talloc_asprintf(mem_ctx, "%s/schannel_store.tdb", lp_private_dir());
1046 if (!fname) {
1047 return NULL;
1050 tdb_sc = tdb_open_log(fname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
1052 if (!tdb_sc) {
1053 DEBUG(0,("open_schannel_session_store: Failed to open %s\n", fname));
1054 TALLOC_FREE(fname);
1055 return NULL;
1058 vers = tdb_fetch_bystring(tdb_sc, "SCHANNEL_STORE_VERSION");
1059 if (vers.dptr == NULL) {
1060 /* First opener, no version. */
1061 SIVAL(&ver,0,1);
1062 vers.dptr = (char *)&ver;
1063 vers.dsize = 4;
1064 tdb_store_bystring(tdb_sc, "SCHANNEL_STORE_VERSION", vers, TDB_REPLACE);
1065 vers.dptr = NULL;
1066 } else if (vers.dsize == 4) {
1067 ver = IVAL(vers.dptr,0);
1068 if (ver != 1) {
1069 tdb_close(tdb_sc);
1070 tdb_sc = NULL;
1071 DEBUG(0,("open_schannel_session_store: wrong version number %d in %s\n",
1072 (int)ver, fname ));
1074 } else {
1075 tdb_close(tdb_sc);
1076 tdb_sc = NULL;
1077 DEBUG(0,("open_schannel_session_store: wrong version number size %d in %s\n",
1078 (int)vers.dsize, fname ));
1081 SAFE_FREE(vers.dptr);
1082 TALLOC_FREE(fname);
1084 return tdb_sc;
1087 /******************************************************************************
1088 Store the schannel state after an AUTH2 call.
1089 Note we must be root here.
1090 *******************************************************************************/
1092 BOOL secrets_store_schannel_session_info(TALLOC_CTX *mem_ctx,
1093 const char *remote_machine,
1094 const struct dcinfo *pdc)
1096 TDB_CONTEXT *tdb_sc = NULL;
1097 TDB_DATA value;
1098 BOOL ret;
1099 char *keystr = talloc_asprintf(mem_ctx, "%s/%s", SECRETS_SCHANNEL_STATE,
1100 remote_machine);
1101 if (!keystr) {
1102 return False;
1105 strupper_m(keystr);
1107 /* Work out how large the record is. */
1108 value.dsize = tdb_pack(NULL, 0, "dBBBBBfff",
1109 pdc->sequence,
1110 8, pdc->seed_chal.data,
1111 8, pdc->clnt_chal.data,
1112 8, pdc->srv_chal.data,
1113 16, pdc->sess_key,
1114 16, pdc->mach_pw,
1115 pdc->mach_acct,
1116 pdc->remote_machine,
1117 pdc->domain);
1119 value.dptr = (char *)TALLOC(mem_ctx, value.dsize);
1120 if (!value.dptr) {
1121 TALLOC_FREE(keystr);
1122 return False;
1125 value.dsize = tdb_pack(value.dptr, value.dsize, "dBBBBBfff",
1126 pdc->sequence,
1127 8, pdc->seed_chal.data,
1128 8, pdc->clnt_chal.data,
1129 8, pdc->srv_chal.data,
1130 16, pdc->sess_key,
1131 16, pdc->mach_pw,
1132 pdc->mach_acct,
1133 pdc->remote_machine,
1134 pdc->domain);
1136 tdb_sc = open_schannel_session_store(mem_ctx);
1137 if (!tdb_sc) {
1138 TALLOC_FREE(keystr);
1139 TALLOC_FREE(value.dptr);
1140 return False;
1143 ret = (tdb_store_bystring(tdb_sc, keystr, value, TDB_REPLACE) == 0 ? True : False);
1145 DEBUG(3,("secrets_store_schannel_session_info: stored schannel info with key %s\n",
1146 keystr ));
1148 tdb_close(tdb_sc);
1149 TALLOC_FREE(keystr);
1150 TALLOC_FREE(value.dptr);
1151 return ret;
1154 /******************************************************************************
1155 Restore the schannel state on a client reconnect.
1156 Note we must be root here.
1157 *******************************************************************************/
1159 BOOL secrets_restore_schannel_session_info(TALLOC_CTX *mem_ctx,
1160 const char *remote_machine,
1161 struct dcinfo **ppdc)
1163 TDB_CONTEXT *tdb_sc = NULL;
1164 TDB_DATA value;
1165 unsigned char *pseed_chal = NULL;
1166 unsigned char *pclnt_chal = NULL;
1167 unsigned char *psrv_chal = NULL;
1168 unsigned char *psess_key = NULL;
1169 unsigned char *pmach_pw = NULL;
1170 uint32 l1, l2, l3, l4, l5;
1171 int ret;
1172 struct dcinfo *pdc = NULL;
1173 char *keystr = talloc_asprintf(mem_ctx, "%s/%s", SECRETS_SCHANNEL_STATE,
1174 remote_machine);
1176 *ppdc = NULL;
1178 if (!keystr) {
1179 return False;
1182 strupper_m(keystr);
1184 tdb_sc = open_schannel_session_store(mem_ctx);
1185 if (!tdb_sc) {
1186 TALLOC_FREE(keystr);
1187 return False;
1190 value = tdb_fetch_bystring(tdb_sc, keystr);
1191 if (!value.dptr) {
1192 DEBUG(0,("secrets_restore_schannel_session_info: Failed to find entry with key %s\n",
1193 keystr ));
1194 tdb_close(tdb_sc);
1195 return False;
1198 pdc = TALLOC_ZERO_P(mem_ctx, struct dcinfo);
1200 /* Retrieve the record. */
1201 ret = tdb_unpack(value.dptr, value.dsize, "dBBBBBfff",
1202 &pdc->sequence,
1203 &l1, &pseed_chal,
1204 &l2, &pclnt_chal,
1205 &l3, &psrv_chal,
1206 &l4, &psess_key,
1207 &l5, &pmach_pw,
1208 &pdc->mach_acct,
1209 &pdc->remote_machine,
1210 &pdc->domain);
1212 if (ret == -1 || l1 != 8 || l2 != 8 || l3 != 8 || l4 != 16 || l5 != 16) {
1213 /* Bad record - delete it. */
1214 tdb_delete_bystring(tdb_sc, keystr);
1215 tdb_close(tdb_sc);
1216 TALLOC_FREE(keystr);
1217 TALLOC_FREE(pdc);
1218 SAFE_FREE(pseed_chal);
1219 SAFE_FREE(pclnt_chal);
1220 SAFE_FREE(psrv_chal);
1221 SAFE_FREE(psess_key);
1222 SAFE_FREE(pmach_pw);
1223 SAFE_FREE(value.dptr);
1224 return False;
1227 tdb_close(tdb_sc);
1229 memcpy(pdc->seed_chal.data, pseed_chal, 8);
1230 memcpy(pdc->clnt_chal.data, pclnt_chal, 8);
1231 memcpy(pdc->srv_chal.data, psrv_chal, 8);
1232 memcpy(pdc->sess_key, psess_key, 16);
1233 memcpy(pdc->mach_pw, pmach_pw, 16);
1235 /* We know these are true so didn't bother to store them. */
1236 pdc->challenge_sent = True;
1237 pdc->authenticated = True;
1239 DEBUG(3,("secrets_restore_schannel_session_info: restored schannel info key %s\n",
1240 keystr ));
1242 SAFE_FREE(pseed_chal);
1243 SAFE_FREE(pclnt_chal);
1244 SAFE_FREE(psrv_chal);
1245 SAFE_FREE(psess_key);
1246 SAFE_FREE(pmach_pw);
1248 TALLOC_FREE(keystr);
1249 SAFE_FREE(value.dptr);
1251 *ppdc = pdc;
1253 return True;
1256 BOOL secrets_store_generic(const char *owner, const char *key, const char *secret)
1258 char *tdbkey = NULL;
1259 BOOL ret;
1261 if (asprintf(&tdbkey, "SECRETS/GENERIC/%s/%s", owner, key) < 0) {
1262 DEBUG(0, ("asprintf failed!\n"));
1263 return False;
1266 ret = secrets_store(tdbkey, secret, strlen(secret)+1);
1268 SAFE_FREE(tdbkey);
1269 return ret;
1272 /*******************************************************************
1273 Find the ldap password.
1274 ******************************************************************/
1276 char *secrets_fetch_generic(const char *owner, const char *key)
1278 char *secret = NULL;
1279 char *tdbkey = NULL;
1281 if (( ! owner) || ( ! key)) {
1282 DEBUG(1, ("Invalid Paramters"));
1283 return NULL;
1286 if (asprintf(&tdbkey, "SECRETS/GENERIC/%s/%s", owner, key) < 0) {
1287 DEBUG(0, ("Out of memory!\n"));
1288 return NULL;
1291 secret = (char *)secrets_fetch(tdbkey, NULL);
1292 SAFE_FREE(tdbkey);
1294 return secret;