This comment no longer applies.
[ira/wip.git] / source3 / passdb / secrets.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0.
4    Copyright (C) Andrew Tridgell 1992-2001
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /* the Samba secrets database stores any generated, private information
22    such as the local SID and machine trust password */
23
24 #include "includes.h"
25
26 static TDB_CONTEXT *tdb;
27
28 /* open up the secrets database */
29 BOOL secrets_init(void)
30 {
31         pstring fname;
32
33         if (tdb)
34                 return True;
35
36         pstrcpy(fname, lp_private_dir());
37         pstrcat(fname,"/secrets.tdb");
38
39         tdb = tdb_open_log(fname, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
40
41         if (!tdb) {
42                 DEBUG(0,("Failed to open %s\n", fname));
43                 return False;
44         }
45         return True;
46 }
47
48 /* read a entry from the secrets database - the caller must free the result
49    if size is non-null then the size of the entry is put in there
50  */
51 void *secrets_fetch(char *key, size_t *size)
52 {
53         TDB_DATA kbuf, dbuf;
54         if (!tdb)
55                 return NULL;
56         kbuf.dptr = key;
57         kbuf.dsize = strlen(key);
58         dbuf = tdb_fetch(tdb, kbuf);
59         if (size)
60                 *size = dbuf.dsize;
61         return dbuf.dptr;
62 }
63
64 /* store a secrets entry 
65  */
66 BOOL secrets_store(char *key, void *data, size_t size)
67 {
68         TDB_DATA kbuf, dbuf;
69         if (!tdb)
70                 return False;
71         kbuf.dptr = key;
72         kbuf.dsize = strlen(key);
73         dbuf.dptr = data;
74         dbuf.dsize = size;
75         return tdb_store(tdb, kbuf, dbuf, TDB_REPLACE) == 0;
76 }
77
78
79 /* delete a secets database entry
80  */
81 BOOL secrets_delete(char *key)
82 {
83         TDB_DATA kbuf;
84         if (!tdb)
85                 return False;
86         kbuf.dptr = key;
87         kbuf.dsize = strlen(key);
88         return tdb_delete(tdb, kbuf) == 0;
89 }
90
91 BOOL secrets_store_domain_sid(char *domain, DOM_SID *sid)
92 {
93         fstring key;
94
95         slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_SID, domain);
96         return secrets_store(key, sid, sizeof(DOM_SID));
97 }
98
99 BOOL secrets_fetch_domain_sid(char *domain, DOM_SID *sid)
100 {
101         DOM_SID *dyn_sid;
102         fstring key;
103         size_t size;
104
105         slprintf(key, sizeof(key)-1, "%s/%s", SECRETS_DOMAIN_SID, domain);
106         dyn_sid = (DOM_SID *)secrets_fetch(key, &size);
107
108         if (dyn_sid == NULL)
109                 return False;
110
111         if (size != sizeof(DOM_SID))
112         { 
113                 SAFE_FREE(dyn_sid);
114                 return False;
115         }
116
117         *sid = *dyn_sid;
118         SAFE_FREE(dyn_sid);
119         return True;
120 }
121
122
123 /************************************************************************
124 form a key for fetching a domain trust password
125 ************************************************************************/
126 char *trust_keystr(char *domain)
127 {
128         static fstring keystr;
129
130         slprintf(keystr,sizeof(keystr)-1,"%s/%s", 
131                  SECRETS_MACHINE_ACCT_PASS, domain);
132
133         return keystr;
134 }
135
136 /************************************************************************
137  Routine to get the trust account password for a domain.
138 ************************************************************************/
139 BOOL secrets_fetch_trust_account_password(char *domain, uint8 ret_pwd[16],
140                                           time_t *pass_last_set_time)
141 {
142         struct machine_acct_pass *pass;
143         char *plaintext;
144         size_t size;
145
146         plaintext = secrets_fetch_machine_password();
147         if (plaintext) {
148                 /* we have an ADS password - use that */
149                 DEBUG(4,("Using ADS machine password\n"));
150                 E_md4hash((uchar *)plaintext, ret_pwd);
151                 SAFE_FREE(plaintext);
152                 return True;
153         }
154
155         if (!(pass = secrets_fetch(trust_keystr(domain), &size)) || 
156             size != sizeof(*pass))
157                 return False;
158
159         if (pass_last_set_time) *pass_last_set_time = pass->mod_time;
160         memcpy(ret_pwd, pass->hash, 16);
161         SAFE_FREE(pass);
162         return True;
163 }
164
165
166 /************************************************************************
167  Routine to set the trust account password for a domain.
168 ************************************************************************/
169 BOOL secrets_store_trust_account_password(char *domain, uint8 new_pwd[16])
170 {
171         struct machine_acct_pass pass;
172
173         pass.mod_time = time(NULL);
174         memcpy(pass.hash, new_pwd, 16);
175
176         return secrets_store(trust_keystr(domain), (void *)&pass, sizeof(pass));
177 }
178
179 /************************************************************************
180  Routine to set the plaintext machine account password for a realm
181 the password is assumed to be a null terminated ascii string
182 ************************************************************************/
183 BOOL secrets_store_machine_password(char *pass)
184 {
185         return secrets_store(SECRETS_MACHINE_PASSWORD, pass, strlen(pass)+1);
186 }
187
188
189 /************************************************************************
190  Routine to fetch the plaintext machine account password for a realm
191 the password is assumed to be a null terminated ascii string
192 ************************************************************************/
193 char *secrets_fetch_machine_password(void)
194 {
195         return (char *)secrets_fetch(SECRETS_MACHINE_PASSWORD, NULL);
196 }
197
198
199
200 /************************************************************************
201  Routine to delete the trust account password file for a domain.
202 ************************************************************************/
203
204 BOOL trust_password_delete(char *domain)
205 {
206         return secrets_delete(trust_keystr(domain));
207 }
208
209 /*******************************************************************
210  Reset the 'done' variables so after a client process is created
211  from a fork call these calls will be re-done. This should be
212  expanded if more variables need reseting.
213  ******************************************************************/
214
215 void reset_globals_after_fork(void)
216 {
217         unsigned char dummy;
218
219         /*
220          * Increment the global seed value to ensure every smbd starts
221          * with a new random seed.
222          */
223
224         if (tdb) {
225                 uint32 initial_val = sys_getpid();
226                 tdb_change_int_atomic(tdb, "INFO/random_seed", (int *)&initial_val, 1);
227                 set_rand_reseed_data((unsigned char *)&initial_val, sizeof(initial_val));
228         }
229
230         /*
231          * Re-seed the random crypto generator, so all smbd's
232          * started from the same parent won't generate the same
233          * sequence.
234          */
235         generate_random_buffer( &dummy, 1, True);
236 }