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