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 */
29 #define DBGC_CLASS DBGC_PASSDB
31 static TDB_CONTEXT
*tdb
;
33 /* Urrrg. global.... */
34 BOOL global_machine_password_needs_changing
;
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();
48 tdb_change_int32_atomic(tdb
, "INFO/random_seed", new_seed
, 1);
52 /* open up the secrets database */
53 BOOL
secrets_init(void)
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);
67 DEBUG(0,("Failed to open %s\n", fname
));
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
));
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
)
94 dbuf
= tdb_fetch(tdb
, string_tdb_data(key
));
100 /* store a secrets entry
102 BOOL
secrets_store(const char *key
, const void *data
, size_t size
)
107 return tdb_trans_store(tdb
, string_tdb_data(key
),
108 make_tdb_data((const char *)data
, size
),
113 /* delete a secets database entry
115 BOOL
secrets_delete(const char *key
)
120 return tdb_delete(tdb
, string_tdb_data(key
)) == 0;
123 BOOL
secrets_store_domain_sid(const char *domain
, const DOM_SID
*sid
)
128 slprintf(key
, sizeof(key
)-1, "%s/%s", SECRETS_DOMAIN_SID
, domain
);
130 ret
= secrets_store(key
, sid
, sizeof(DOM_SID
));
132 /* Force a re-query, in case we modified our domain */
134 reset_global_sam_sid();
138 BOOL
secrets_fetch_domain_sid(const char *domain
, DOM_SID
*sid
)
144 slprintf(key
, sizeof(key
)-1, "%s/%s", SECRETS_DOMAIN_SID
, domain
);
146 dyn_sid
= (DOM_SID
*)secrets_fetch(key
, &size
);
151 if (size
!= sizeof(DOM_SID
)) {
161 BOOL
secrets_store_domain_guid(const char *domain
, struct GUID
*guid
)
165 slprintf(key
, sizeof(key
)-1, "%s/%s", SECRETS_DOMAIN_GUID
, domain
);
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
;
175 struct GUID new_guid
;
177 slprintf(key
, sizeof(key
)-1, "%s/%s", SECRETS_DOMAIN_GUID
, domain
);
179 dyn_guid
= (struct GUID
*)secrets_fetch(key
, &size
);
182 if (lp_server_role() == ROLE_DOMAIN_PDC
) {
183 smb_uuid_generate_random(&new_guid
);
184 if (!secrets_store_domain_guid(domain
, &new_guid
))
186 dyn_guid
= (struct GUID
*)secrets_fetch(key
, &size
);
188 if (dyn_guid
== NULL
) {
193 if (size
!= sizeof(struct GUID
)) {
194 DEBUG(1,("UUID size %d is wrong!\n", (int)size
));
205 * Form a key for fetching the machine trust account password
207 * @param domain domain name
209 * @return stored password's key
211 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
);
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
);
239 /************************************************************************
240 Lock the trust password entry.
241 ************************************************************************/
243 BOOL
secrets_lock_trust_account_password(const char *domain
, BOOL dolock
)
249 return (tdb_lock_bystring(tdb
, trust_keystr(domain
)) == 0);
251 tdb_unlock_bystring(tdb
, trust_keystr(domain
));
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
) {
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
,
279 struct machine_acct_pass
*pass
;
283 plaintext
= secrets_fetch_machine_password(domain
, pass_last_set_time
,
286 DEBUG(4,("Using cleartext machine password\n"));
287 E_md4hash(plaintext
, ret_pwd
);
288 SAFE_FREE(plaintext
);
292 if (!(pass
= (struct machine_acct_pass
*)secrets_fetch(
293 trust_keystr(domain
), &size
))) {
294 DEBUG(5, ("secrets_fetch failed!\n"));
298 if (size
!= sizeof(*pass
)) {
299 DEBUG(0, ("secrets were of incorrect size!\n"));
303 if (pass_last_set_time
) {
304 *pass_last_set_time
= pass
->mod_time
;
306 memcpy(ret_pwd
, pass
->hash
, 16);
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
;
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
)
338 if (!sid
|| !pack_buf
) return -1;
340 len
+= tdb_pack(pack_buf
+ len
, bufsize
- len
, "bb", sid
->sid_rev_num
,
343 for (idx
= 0; idx
< 6; idx
++) {
344 len
+= tdb_pack(pack_buf
+ len
, bufsize
- len
, "b",
348 for (idx
= 0; idx
< MAXSUBAUTHS
; idx
++) {
349 len
+= tdb_pack(pack_buf
+ len
, bufsize
- len
, "d",
350 sid
->sub_auths
[idx
]);
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
)
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",
379 for (idx
= 0; idx
< MAXSUBAUTHS
; idx
++) {
380 len
+= tdb_unpack(pack_buf
+ len
, bufsize
- len
, "d",
381 &sid
->sub_auths
[idx
]);
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
)
401 if (!pack_buf
|| !pass
) return -1;
403 /* packing unicode domain name and password */
404 len
+= tdb_pack(pack_buf
+ len
, bufsize
- len
, "d",
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
);
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 size_t tdb_trusted_dom_pass_unpack(char* pack_buf
, int bufsize
,
431 TRUSTED_DOM_PASS
* pass
)
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
,
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
;
464 /* unpacking structures */
470 /* fetching trusted domain password structure */
471 if (!(pass_buf
= (char *)secrets_fetch(trustdom_keystr(domain
),
473 DEBUG(5, ("secrets_fetch failed!\n"));
477 /* unpack trusted domain password */
478 pass_len
= tdb_trusted_dom_pass_unpack(pass_buf
, size
, &pass
);
481 if (pass_len
!= size
) {
482 DEBUG(5, ("Invalid secrets size. Unpacked data doesn't match trusted_dom_pass structure.\n"));
486 /* the trust's password */
488 *pwd
= SMB_STRDUP(pass
.pass
);
494 /* last change time */
495 if (pass_last_set_time
) *pass_last_set_time
= pass
.mod_time
;
498 if (sid
!= NULL
) sid_copy(sid
, &pass
.domain_sid
);
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
,
530 smb_ucs2_t
*uni_dom_name
;
532 /* packing structures */
535 int pass_buf_len
= sizeof(pass_buf
);
537 struct trusted_dom_pass 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",
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
);
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
)
574 uint32 last_change_time
;
575 uint32 sec_channel_type
;
577 asprintf(&key
, "%s/%s", SECRETS_MACHINE_PASSWORD
, domain
);
582 ret
= secrets_store(key
, pass
, strlen(pass
)+1);
588 asprintf(&key
, "%s/%s", SECRETS_MACHINE_LAST_CHANGE_TIME
, domain
);
593 SIVAL(&last_change_time
, 0, time(NULL
));
594 ret
= secrets_store(key
, &last_change_time
, sizeof(last_change_time
));
597 asprintf(&key
, "%s/%s", SECRETS_MACHINE_SEC_CHANNEL_TYPE
, domain
);
602 SIVAL(&sec_channel_type
, 0, sec_channel
);
603 ret
= secrets_store(key
, &sec_channel_type
, sizeof(sec_channel_type
));
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
,
620 asprintf(&key
, "%s/%s", SECRETS_MACHINE_PASSWORD
, domain
);
622 ret
= (char *)secrets_fetch(key
, NULL
);
625 if (pass_last_set_time
) {
627 uint32
*last_set_time
;
628 asprintf(&key
, "%s/%s", SECRETS_MACHINE_LAST_CHANGE_TIME
, domain
);
630 last_set_time
= (unsigned int *)secrets_fetch(key
, &size
);
632 *pass_last_set_time
= IVAL(last_set_time
,0);
633 SAFE_FREE(last_set_time
);
635 *pass_last_set_time
= 0;
642 uint32
*channel_type
;
643 asprintf(&key
, "%s/%s", SECRETS_MACHINE_SEC_CHANNEL_TYPE
, domain
);
645 channel_type
= (unsigned int *)secrets_fetch(key
, &size
);
647 *channel
= IVAL(channel_type
,0);
648 SAFE_FREE(channel_type
);
650 *channel
= get_default_sec_channel();
658 /*******************************************************************
659 Wrapper around retrieving the trust account password
660 *******************************************************************/
662 BOOL
get_trust_pw(const char *domain
, uint8 ret_pwd
[16], uint32
*channel
)
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
,
674 DEBUG(0, ("get_trust_pw: could not fetch trust "
675 "account password for trusted domain %s\n",
680 *channel
= SEC_CHAN_DOMAIN
;
681 E_md4hash(pwd
, ret_pwd
);
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
))
694 DEBUG(5, ("get_trust_pw: could not fetch trust account "
695 "password for domain %s\n", domain
));
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
)
722 if (asprintf(&key
, "%s/%s", SECRETS_LDAP_BIND_PW
, dn
) < 0) {
723 DEBUG(0, ("secrets_store_ldap_pw: asprintf failed!\n"));
727 ret
= secrets_store(key
, pw
, strlen(pw
)+1);
733 /*******************************************************************
734 Find the ldap password.
735 ******************************************************************/
737 BOOL
fetch_ldap_pw(char **dn
, char** pw
)
742 *dn
= smb_xstrdup(lp_ldap_admin_dn());
744 if (asprintf(&key
, "%s/%s", SECRETS_LDAP_BIND_PW
, *dn
) < 0) {
746 DEBUG(0, ("fetch_ldap_pw: asprintf failed!\n"));
749 *pw
=(char *)secrets_fetch(key
, &size
);
753 /* Upgrade 2.2 style entry */
755 char* old_style_key
= SMB_STRDUP(*dn
);
757 fstring old_style_pw
;
759 if (!old_style_key
) {
760 DEBUG(0, ("fetch_ldap_pw: strdup failed!\n"));
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
);
775 size
= MIN(size
, sizeof(fstring
)-1);
776 strncpy(old_style_pw
, data
, size
);
777 old_style_pw
[size
] = 0;
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
);
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
);
800 * Get trusted domains info from secrets.tdb.
803 NTSTATUS
secrets_trusted_domains(TALLOC_CTX
*mem_ctx
, uint32
*num_domains
,
804 struct trustdom_info
***domains
)
806 TDB_LIST_NODE
*keys
, *k
;
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() "
821 TALLOC_FREE(tmp_ctx
);
822 return NT_STATUS_NO_MEMORY
;
828 * Make sure that a talloc context for the trustdom_info structs
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
) {
843 size_t size
= 0, packed_size
= 0;
844 struct trusted_dom_pass pass
;
846 struct trustdom_info
*dom_info
;
848 /* important: ensure null-termination of the key string */
849 secrets_key
= talloc_strndup(tmp_ctx
,
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
,
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",
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
));
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",
909 /* free the results of searching the keys */
910 tdb_search_list_free(keys
);
911 TALLOC_FREE(tmp_ctx
);
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
)
928 ret
= tdb_lock_bystring_with_timeout(tdb
, name
, timeout
);
930 DEBUG(10,("secrets_named_mutex: got mutex for %s\n", name
));
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
)
953 if ((cell
== NULL
) || (keyfile
== NULL
))
956 if (ntohl(keyfile
->nkeys
) > SECRETS_AFS_MAXKEYS
)
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
)
969 struct afs_keyfile
*keyfile
;
973 slprintf(key
, sizeof(key
)-1, "%s/%s", SECRETS_AFS_KEYFILE
, cell
);
975 keyfile
= (struct afs_keyfile
*)secrets_fetch(key
, &size
);
980 if (size
!= sizeof(struct afs_keyfile
)) {
985 i
= ntohl(keyfile
->nkeys
);
987 if (i
> SECRETS_AFS_MAXKEYS
) {
992 *result
= keyfile
->entry
[i
-1];
994 result
->kvno
= ntohl(result
->kvno
);
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
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
));
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
)
1043 TDB_CONTEXT
*tdb_sc
= NULL
;
1044 char *fname
= talloc_asprintf(mem_ctx
, "%s/schannel_store.tdb", lp_private_dir());
1050 tdb_sc
= tdb_open_log(fname
, 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
1053 DEBUG(0,("open_schannel_session_store: Failed to open %s\n", fname
));
1058 vers
= tdb_fetch_bystring(tdb_sc
, "SCHANNEL_STORE_VERSION");
1059 if (vers
.dptr
== NULL
) {
1060 /* First opener, no version. */
1062 vers
.dptr
= (char *)&ver
;
1064 tdb_store_bystring(tdb_sc
, "SCHANNEL_STORE_VERSION", vers
, TDB_REPLACE
);
1066 } else if (vers
.dsize
== 4) {
1067 ver
= IVAL(vers
.dptr
,0);
1071 DEBUG(0,("open_schannel_session_store: wrong version number %d in %s\n",
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
);
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
;
1099 char *keystr
= talloc_asprintf(mem_ctx
, "%s/%s", SECRETS_SCHANNEL_STATE
,
1107 /* Work out how large the record is. */
1108 value
.dsize
= tdb_pack(NULL
, 0, "dBBBBBfff",
1110 8, pdc
->seed_chal
.data
,
1111 8, pdc
->clnt_chal
.data
,
1112 8, pdc
->srv_chal
.data
,
1116 pdc
->remote_machine
,
1119 value
.dptr
= (char *)TALLOC(mem_ctx
, value
.dsize
);
1121 TALLOC_FREE(keystr
);
1125 value
.dsize
= tdb_pack(value
.dptr
, value
.dsize
, "dBBBBBfff",
1127 8, pdc
->seed_chal
.data
,
1128 8, pdc
->clnt_chal
.data
,
1129 8, pdc
->srv_chal
.data
,
1133 pdc
->remote_machine
,
1136 tdb_sc
= open_schannel_session_store(mem_ctx
);
1138 TALLOC_FREE(keystr
);
1139 TALLOC_FREE(value
.dptr
);
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",
1149 TALLOC_FREE(keystr
);
1150 TALLOC_FREE(value
.dptr
);
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
;
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
;
1172 struct dcinfo
*pdc
= NULL
;
1173 char *keystr
= talloc_asprintf(mem_ctx
, "%s/%s", SECRETS_SCHANNEL_STATE
,
1184 tdb_sc
= open_schannel_session_store(mem_ctx
);
1186 TALLOC_FREE(keystr
);
1190 value
= tdb_fetch_bystring(tdb_sc
, keystr
);
1192 DEBUG(0,("secrets_restore_schannel_session_info: Failed to find entry with key %s\n",
1198 pdc
= TALLOC_ZERO_P(mem_ctx
, struct dcinfo
);
1200 /* Retrieve the record. */
1201 ret
= tdb_unpack(value
.dptr
, value
.dsize
, "dBBBBBfff",
1209 &pdc
->remote_machine
,
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
);
1216 TALLOC_FREE(keystr
);
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
);
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",
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
);