r26183: The idea of a self-seeding secrets.ldb is nice, but in practice we do
[metze/samba/wip.git] / source4 / param / secrets.c
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    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
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 #include "secrets.h"
26 #include "param/param.h"
27 #include "system/filesys.h"
28 #include "tdb_wrap.h"
29 #include "ldb_wrap.h"
30 #include "lib/ldb/include/ldb.h"
31 #include "lib/tdb/include/tdb.h"
32 #include "lib/util/util_tdb.h"
33 #include "lib/util/util_ldb.h"
34 #include "dsdb/samdb/samdb.h"
35
36 static struct tdb_wrap *tdb;
37
38 /**
39  * Use a TDB to store an incrementing random seed.
40  *
41  * Initialised to the current pid, the very first time Samba starts,
42  * and incremented by one each time it is needed.  
43  * 
44  * @note Not called by systems with a working /dev/urandom.
45  */
46 static void get_rand_seed(int *new_seed) 
47 {
48         *new_seed = getpid();
49         if (tdb != NULL) {
50                 tdb_change_int32_atomic(tdb->tdb, "INFO/random_seed", new_seed, 1);
51         }
52 }
53
54 /**
55  * close the secrets database
56  */
57 void secrets_shutdown(void)
58 {
59        talloc_free(tdb);
60 }
61
62 /**
63  * open up the secrets database
64  */
65 bool secrets_init(void)
66 {
67         char *fname;
68         uint8_t dummy;
69
70         if (tdb != NULL)
71                 return true;
72
73         fname = private_path(NULL, global_loadparm,
74                                                  "secrets.tdb");
75
76         tdb = tdb_wrap_open(talloc_autofree_context(), fname, 0, TDB_DEFAULT, 
77                                                 O_RDWR|O_CREAT, 0600);
78
79         if (!tdb) {
80                 DEBUG(0,("Failed to open %s\n", fname));
81                 talloc_free(fname);
82                 return false;
83         }
84         talloc_free(fname);
85
86         /**
87          * Set a reseed function for the crypto random generator 
88          * 
89          * This avoids a problem where systems without /dev/urandom
90          * could send the same challenge to multiple clients
91          */
92         set_rand_reseed_callback(get_rand_seed);
93
94         /* Ensure that the reseed is done now, while we are root, etc */
95         generate_random_buffer(&dummy, sizeof(dummy));
96
97         return true;
98 }
99
100 /**
101   connect to the secrets ldb
102 */
103 struct ldb_context *secrets_db_connect(TALLOC_CTX *mem_ctx)
104 {
105         char *path;
106         const char *url;
107         struct ldb_context *ldb;
108
109         url = lp_secrets_url(global_loadparm);
110         if (!url || !url[0]) {
111                 return NULL;
112         }
113
114         path = private_path(mem_ctx, global_loadparm, url);
115         if (!path) {
116                 return NULL;
117         }
118
119         /* Secrets.ldb *must* always be local.  If we call for a
120          * system_session() we will recurse */
121         ldb = ldb_wrap_connect(mem_ctx, global_loadparm, path, NULL, NULL, 0, NULL);
122         talloc_free(path);
123         if (!ldb) {
124                 return NULL;
125         }
126         
127         return ldb;
128 }
129
130 /**
131  * Retrieve the domain SID from the secrets database.
132  * @return pointer to a SID object if the SID could be obtained, NULL otherwise
133  */
134 struct dom_sid *secrets_get_domain_sid(TALLOC_CTX *mem_ctx,
135                                        const char *domain)
136 {
137         struct ldb_context *ldb;
138         struct ldb_message **msgs;
139         int ldb_ret;
140         const char *attrs[] = { "objectSid", NULL };
141         struct dom_sid *result = NULL;
142
143         ldb = secrets_db_connect(mem_ctx);
144         if (ldb == NULL) {
145                 DEBUG(5, ("secrets_db_connect failed\n"));
146                 return NULL;
147         }
148
149         ldb_ret = gendb_search(ldb, ldb,
150                                ldb_dn_new(mem_ctx, ldb, SECRETS_PRIMARY_DOMAIN_DN), 
151                                &msgs, attrs,
152                                SECRETS_PRIMARY_DOMAIN_FILTER, domain);
153
154         if (ldb_ret == -1) {
155                 DEBUG(5, ("Error searching for domain SID for %s: %s", 
156                           domain, ldb_errstring(ldb))); 
157                 talloc_free(ldb);
158                 return NULL;
159         }
160
161         if (ldb_ret == 0) {
162                 DEBUG(5, ("Did not find domain record for %s\n", domain));
163                 talloc_free(ldb);
164                 return NULL;
165         }
166
167         if (ldb_ret > 1) {
168                 DEBUG(5, ("Found more than one (%d) domain records for %s\n",
169                           ldb_ret, domain));
170                 talloc_free(ldb);
171                 return NULL;
172         }
173
174         result = samdb_result_dom_sid(mem_ctx, msgs[0], "objectSid");
175         if (result == NULL) {
176                 DEBUG(0, ("Domain object for %s does not contain a SID!\n",
177                           domain));
178                 talloc_free(ldb);
179                 return NULL;
180         }
181
182         return result;
183 }