5747a0b0c832ff57d9af21aae40e514aafd4aa32
[samba.git] / source3 / winbindd / idmap_autorid.c
1 /*
2  *  idmap_autorid: static map between Active Directory/NT RIDs
3  *  and RFC 2307 accounts
4  *
5  *  based on the idmap_rid module, but this module defines the ranges
6  *  for the domains by automatically allocating a range for each domain
7  *
8  *  Copyright (C) Christian Ambach, 2010-2011
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 3 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 #include "includes.h"
26 #include "winbindd.h"
27 #include "dbwrap.h"
28 #include "idmap.h"
29 #include "../libcli/security/dom_sid.h"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_IDMAP
33
34 #define HWM "NEXT RANGE"
35 #define CONFIGKEY "CONFIG"
36
37 struct autorid_global_config {
38         uint32_t minvalue;
39         uint32_t rangesize;
40         uint32_t maxranges;
41 };
42
43 struct autorid_domain_config {
44         struct dom_sid sid;
45         uint32_t domainnum;
46         struct autorid_global_config *globalcfg;
47 };
48
49 /* handle to the tdb storing domain <-> range assignments */
50 static struct db_context *autorid_db;
51
52 static NTSTATUS idmap_autorid_get_domainrange(struct db_context *db,
53                                               void *private_data)
54 {
55         NTSTATUS ret;
56         uint32_t domainnum, hwm;
57         char *sidstr, *numstr;
58         struct autorid_domain_config *cfg;
59
60         cfg = (struct autorid_domain_config *)private_data;
61         sidstr = dom_sid_string(talloc_tos(), &(cfg->sid));
62
63         if (!sidstr) {
64                 return NT_STATUS_NO_MEMORY;
65         }
66
67         if (!dbwrap_fetch_uint32(db, sidstr, &domainnum)) {
68                 DEBUG(10, ("Acquiring new range for domain %s\n", sidstr));
69
70                 /* fetch the current HWM */
71                 if (!dbwrap_fetch_uint32(db, HWM, &hwm)) {
72                         DEBUG(1, ("Fatal error while fetching current "
73                                   "HWM value!\n"));
74                         ret = NT_STATUS_INTERNAL_ERROR;
75                         goto error;
76                 }
77
78                 /* do we have a range left? */
79                 if (hwm >= cfg->globalcfg->maxranges) {
80                         DEBUG(1, ("No more domain ranges available!\n"));
81                         ret = NT_STATUS_NO_MEMORY;
82                         goto error;
83                 }
84
85                 /* increase the HWM */
86                 ret = dbwrap_change_uint32_atomic(db, HWM, &domainnum, 1);
87                 if (!NT_STATUS_IS_OK(ret)) {
88                         DEBUG(1, ("Fatal error while fetching a new "
89                                   "domain range value!\n"));
90                         goto error;
91                 }
92
93                 /* store away the new mapping in both directions */
94                 ret = dbwrap_trans_store_uint32(db, sidstr, domainnum);
95                 if (!NT_STATUS_IS_OK(ret)) {
96                         DEBUG(1, ("Fatal error while storing new "
97                                   "domain->range assignment!\n"));
98                         goto error;
99                 }
100
101                 numstr = talloc_asprintf(db, "%u", domainnum);
102                 if (!numstr) {
103                         ret = NT_STATUS_NO_MEMORY;
104                         goto error;
105                 }
106
107                 ret = dbwrap_trans_store_bystring(db, numstr,
108                                                   string_term_tdb_data(sidstr),
109                                                   TDB_INSERT);
110                 if (!NT_STATUS_IS_OK(ret)) {
111                         talloc_free(numstr);
112                         DEBUG(1, ("Fatal error while storing "
113                                   "new domain->range assignment!\n"));
114                         goto error;
115                 }
116                 talloc_free(numstr);
117                 DEBUG(5, ("Acquired new range #%d for domain %s\n",
118                           domainnum, sidstr));
119         }
120
121         DEBUG(10, ("Using range #%d for domain %s\n", domainnum, sidstr));
122         cfg->domainnum = domainnum;
123
124         talloc_free(sidstr);
125         return NT_STATUS_OK;
126
127       error:
128         talloc_free(sidstr);
129         return ret;
130
131 }
132
133 static NTSTATUS idmap_autorid_id_to_sid(TALLOC_CTX * memctx,
134                                         struct autorid_global_config *cfg,
135                                         struct id_map *map)
136 {
137         uint32_t range;
138         TDB_DATA data;
139         char *keystr;
140         struct dom_sid sid;
141
142         /* can this be one of our ids? */
143         if (map->xid.id < cfg->minvalue) {
144                 DEBUG(10, ("id %d is lower than minimum value, "
145                            "ignoring mapping request\n", map->xid.id));
146                 map->status = ID_UNKNOWN;
147                 return NT_STATUS_OK;
148         }
149
150         if (map->xid.id > (cfg->minvalue + cfg->rangesize * cfg->maxranges)) {
151                 DEBUG(10, ("id %d is outside of maximum id value, "
152                            "ignoring mapping request\n", map->xid.id));
153                 map->status = ID_UNKNOWN;
154                 return NT_STATUS_OK;
155         }
156
157         /* determine the range of this uid */
158         range = ((map->xid.id - cfg->minvalue) / cfg->rangesize);
159
160         keystr = talloc_asprintf(memctx, "%u", range);
161         if (!keystr) {
162                 return NT_STATUS_NO_MEMORY;
163         }
164
165         data = dbwrap_fetch_bystring(autorid_db, memctx, keystr);
166
167         if (!data.dptr) {
168                 DEBUG(4, ("id %d belongs to range %d which does not have "
169                           "domain mapping, ignoring mapping request\n",
170                           map->xid.id, range));
171                 return NT_STATUS_OK;
172         }
173
174         string_to_sid(&sid, (const char *)data.dptr);
175
176         sid_compose(map->sid, &sid,
177                     (map->xid.id - cfg->minvalue -
178                      range * cfg->rangesize));
179
180         /* We **really** should have some way of validating
181            the SID exists and is the correct type here.  But
182            that is a deficiency in the idmap_rid design. */
183
184         map->status = ID_MAPPED;
185         return NT_STATUS_OK;
186 }
187
188 /**********************************
189  Single sid to id lookup function.
190 **********************************/
191
192 static NTSTATUS idmap_autorid_sid_to_id(struct autorid_global_config *global,
193                                         struct autorid_domain_config *domain,
194                                         struct id_map *map)
195 {
196         uint32_t rid;
197
198         sid_peek_rid(map->sid, &rid);
199
200         /* if the rid is higher than the size of the range, we cannot map it */
201         if (rid >= global->rangesize) {
202                 map->status = ID_UNKNOWN;
203                 DEBUG(2, ("RID %d is larger then size of range (%d), "
204                           "user cannot be mapped\n", rid, global->rangesize));
205                 return NT_STATUS_UNSUCCESSFUL;
206         }
207         map->xid.id = global->minvalue +
208             (global->rangesize * domain->domainnum)+rid;
209
210         /* We **really** should have some way of validating
211            the SID exists and is the correct type here.  But
212            that is a deficiency in the idmap_rid design. */
213
214         map->status = ID_MAPPED;
215
216         return NT_STATUS_OK;
217 }
218
219 /**********************************
220  lookup a set of unix ids.
221 **********************************/
222
223 static NTSTATUS idmap_autorid_unixids_to_sids(struct idmap_domain *dom,
224                                               struct id_map **ids)
225 {
226         struct autorid_global_config *globalcfg;
227         TALLOC_CTX *ctx;
228         NTSTATUS ret;
229         int i;
230
231         /* initialize the status to avoid surprise */
232         for (i = 0; ids[i]; i++) {
233                 ids[i]->status = ID_UNKNOWN;
234         }
235
236         globalcfg = talloc_get_type(dom->private_data,
237                                     struct autorid_global_config);
238
239         ctx = talloc_new(dom);
240         if (!ctx) {
241                 DEBUG(0, ("Out of memory!\n"));
242                 return NT_STATUS_NO_MEMORY;
243         }
244
245         for (i = 0; ids[i]; i++) {
246
247                 ret = idmap_autorid_id_to_sid(ctx, globalcfg, ids[i]);
248
249                 if ((!NT_STATUS_IS_OK(ret)) &&
250                     (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
251                         /* some fatal error occurred, log it */
252                         DEBUG(3, ("Unexpected error resolving an ID "
253                                   " (%d)\n", ids[i]->xid.id));
254                         goto failure;
255                 }
256         }
257
258         talloc_free(ctx);
259         return NT_STATUS_OK;
260
261       failure:
262         talloc_free(ctx);
263         return ret;
264
265 }
266
267 /**********************************
268  lookup a set of sids.
269 **********************************/
270
271 static NTSTATUS idmap_autorid_sids_to_unixids(struct idmap_domain *dom,
272                                               struct id_map **ids)
273 {
274         struct autorid_global_config *global;
275         NTSTATUS ret;
276         int i;
277
278         /* initialize the status to avoid surprise */
279         for (i = 0; ids[i]; i++) {
280                 ids[i]->status = ID_UNKNOWN;
281         }
282
283         global = talloc_get_type(dom->private_data,
284                                  struct autorid_global_config);
285
286         for (i = 0; ids[i]; i++) {
287                 struct winbindd_tdc_domain *domain;
288                 struct autorid_domain_config domaincfg;
289                 uint32_t rid;
290
291                 ZERO_STRUCT(domaincfg);
292
293                 sid_copy(&domaincfg.sid, ids[i]->sid);
294                 if (!sid_split_rid(&domaincfg.sid, &rid)) {
295                         DEBUG(4, ("Could not determine domain SID from %s, "
296                                   "ignoring mapping request\n",
297                                   sid_string_dbg(ids[i]->sid)));
298                         continue;
299                 }
300
301                 /*
302                  * Check if the domain is around
303                  */
304                 domain = wcache_tdc_fetch_domainbysid(talloc_tos(),
305                                                       &domaincfg.sid);
306                 if (domain == NULL) {
307                         DEBUG(10, ("Ignoring unknown domain sid %s\n",
308                                    sid_string_dbg(&domaincfg.sid)));
309                         continue;
310                 }
311                 TALLOC_FREE(domain);
312
313                 domaincfg.globalcfg = global;
314
315                 ret = dbwrap_trans_do(autorid_db,
316                                       idmap_autorid_get_domainrange,
317                                       &domaincfg);
318
319                 if (!NT_STATUS_IS_OK(ret)) {
320                         DEBUG(3, ("Could not determine range for domain, "
321                                   "check previous messages for reason\n"));
322                         goto failure;
323                 }
324
325                 ret = idmap_autorid_sid_to_id(global, &domaincfg, ids[i]);
326
327                 if ((!NT_STATUS_IS_OK(ret)) &&
328                     (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
329                         /* some fatal error occurred, log it */
330                         DEBUG(3, ("Unexpected error resolving a SID (%s)\n",
331                                   sid_string_dbg(ids[i]->sid)));
332                         goto failure;
333                 }
334         }
335         return NT_STATUS_OK;
336
337       failure:
338         return ret;
339
340 }
341
342 /*
343  * open and initialize the database which stores the ranges for the domains
344  */
345 static NTSTATUS idmap_autorid_db_init(void)
346 {
347         int32_t hwm;
348
349         if (autorid_db) {
350                 /* its already open */
351                 return NT_STATUS_OK;
352         }
353
354         /* Open idmap repository */
355         autorid_db = db_open(NULL, state_path("autorid.tdb"), 0,
356                              TDB_DEFAULT, O_RDWR | O_CREAT, 0644);
357
358         if (!autorid_db) {
359                 DEBUG(0, ("Unable to open idmap_autorid database '%s'\n",
360                           state_path("autorid.tdb")));
361                 return NT_STATUS_UNSUCCESSFUL;
362         }
363
364         /* Initialize high water mark for the currently used range to 0 */
365         hwm = dbwrap_fetch_int32(autorid_db, HWM);
366         if ((hwm < 0)) {
367                 if (!NT_STATUS_IS_OK
368                     (dbwrap_trans_store_int32(autorid_db, HWM, 0))) {
369                         DEBUG(0,
370                               ("Unable to initialise HWM in autorid "
371                                "database\n"));
372                         return NT_STATUS_INTERNAL_DB_ERROR;
373                 }
374         }
375
376         return NT_STATUS_OK;
377 }
378
379 static struct autorid_global_config *idmap_autorid_loadconfig(TALLOC_CTX * ctx)
380 {
381
382         TDB_DATA data;
383         struct autorid_global_config *cfg;
384         unsigned long minvalue, rangesize, maxranges;
385
386         data = dbwrap_fetch_bystring(autorid_db, ctx, CONFIGKEY);
387
388         if (!data.dptr) {
389                 DEBUG(10, ("No saved config found\n"));
390                 return NULL;
391         }
392
393         cfg = TALLOC_ZERO_P(ctx, struct autorid_global_config);
394         if (!cfg) {
395                 return NULL;
396         }
397
398         if (sscanf((char *)data.dptr,
399                    "minvalue:%lu rangesize:%lu maxranges:%lu",
400                    &minvalue, &rangesize, &maxranges) != 3) {
401                 DEBUG(1,
402                       ("Found invalid configuration data"
403                        "creating new config\n"));
404                 return NULL;
405         }
406
407         cfg->minvalue = minvalue;
408         cfg->rangesize = rangesize;
409         cfg->maxranges = maxranges;
410
411         DEBUG(10, ("Loaded previously stored configuration "
412                    "minvalue:%d rangesize:%d\n",
413                    cfg->minvalue, cfg->rangesize));
414
415         return cfg;
416
417 }
418
419 static NTSTATUS idmap_autorid_saveconfig(struct autorid_global_config *cfg)
420 {
421
422         NTSTATUS status;
423         TDB_DATA data;
424         char *cfgstr;
425
426         cfgstr =
427             talloc_asprintf(talloc_tos(),
428                             "minvalue:%u rangesize:%u maxranges:%u",
429                             cfg->minvalue, cfg->rangesize, cfg->maxranges);
430
431         if (!cfgstr) {
432                 return NT_STATUS_NO_MEMORY;
433         }
434
435         data = string_tdb_data(cfgstr);
436
437         status = dbwrap_trans_store_bystring(autorid_db, CONFIGKEY,
438                                              data, TDB_REPLACE);
439
440         talloc_free(cfgstr);
441
442         return status;
443 }
444
445 static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom,
446                                          const char *params)
447 {
448         struct autorid_global_config *config;
449         struct autorid_global_config *storedconfig = NULL;
450         NTSTATUS status;
451         uint32_t hwm;
452
453         config = TALLOC_ZERO_P(dom, struct autorid_global_config);
454         if (!config) {
455                 DEBUG(0, ("Out of memory!\n"));
456                 return NT_STATUS_NO_MEMORY;
457         }
458
459         status = idmap_autorid_db_init();
460         if (!NT_STATUS_IS_OK(status)) {
461                 goto error;
462         }
463
464         config->minvalue = dom->low_id;
465         config->rangesize = lp_parm_int(-1, "autorid", "rangesize", 100000);
466
467         if (config->rangesize < 2000) {
468                 DEBUG(1, ("autorid rangesize must be at least 2000\n"));
469                 status = NT_STATUS_INVALID_PARAMETER;
470                 goto error;
471         }
472
473         config->maxranges = (dom->high_id - dom->low_id + 1) /
474             config->rangesize;
475
476         if (config->maxranges == 0) {
477                 DEBUG(1, ("allowed uid range is smaller then rangesize, "
478                           "increase uid range or decrease rangesize\n"));
479                 status = NT_STATUS_INVALID_PARAMETER;
480                 goto error;
481         }
482
483         /* check if the high-low limit is a multiple of the rangesize */
484         if ((dom->high_id - dom->low_id + 1) % config->rangesize != 0) {
485                 DEBUG(5, ("High uid-low uid difference of %d "
486                           "is not a multiple of the rangesize %d, "
487                           "limiting ranges to lower boundary number of %d\n",
488                           (dom->high_id - dom->low_id + 1), config->rangesize,
489                           config->maxranges));
490         }
491
492         DEBUG(10, ("Current configuration in config is "
493                    "minvalue:%d rangesize:%d maxranges:%d\n",
494                    config->minvalue, config->rangesize, config->maxranges));
495
496         /* read previously stored config and current HWM */
497         storedconfig = idmap_autorid_loadconfig(talloc_tos());
498
499         if (!dbwrap_fetch_uint32(autorid_db, HWM, &hwm)) {
500                 DEBUG(1, ("Fatal error while fetching current "
501                           "HWM value!\n"));
502                 status = NT_STATUS_INTERNAL_ERROR;
503                 goto error;
504         }
505
506         /* did the minimum value or rangesize change? */
507         if (storedconfig &&
508             ((storedconfig->minvalue != config->minvalue) ||
509              (storedconfig->rangesize != config->rangesize))) {
510                 DEBUG(1, ("New configuration values for rangesize or "
511                           "minimum uid value conflict with previously "
512                           "used values! Aborting initialization\n"));
513                 status = NT_STATUS_INVALID_PARAMETER;
514                 goto error;
515         }
516
517         /*
518          * has the highest uid value been reduced to setting that is not
519          * sufficient any more for already existing ranges?
520          */
521         if (hwm > config->maxranges) {
522                 DEBUG(1, ("New upper uid limit is too low to cover "
523                           "existing mappings! Aborting initialization\n"));
524                 status = NT_STATUS_INVALID_PARAMETER;
525                 goto error;
526         }
527
528         status = idmap_autorid_saveconfig(config);
529
530         if (!NT_STATUS_IS_OK(status)) {
531                 DEBUG(1, ("Failed to store configuration data!\n"));
532                 goto error;
533         }
534
535         DEBUG(5, ("%d domain ranges with a size of %d are available\n",
536                   config->maxranges, config->rangesize));
537
538         dom->private_data = config;
539
540         if (!NT_STATUS_IS_OK(status)) {
541                 goto error;
542         }
543
544         return NT_STATUS_OK;
545
546       error:
547         talloc_free(config);
548         talloc_free(storedconfig);
549
550         return status;
551 }
552
553 /*
554   Close the idmap tdb instance
555 */
556 static struct idmap_methods autorid_methods = {
557         .init = idmap_autorid_initialize,
558         .unixids_to_sids = idmap_autorid_unixids_to_sids,
559         .sids_to_unixids = idmap_autorid_sids_to_unixids,
560 };
561
562 NTSTATUS idmap_autorid_init(void)
563 {
564         return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION,
565                                   "autorid", &autorid_methods);
566 }