autorid: introduce idmap_autorid_domsid_is_for_alloc()
[Samba/wip.git] / source3 / winbindd / idmap_autorid.c
blob530a7201974a8416175844639b16b9df85d9287f
1 /*
2 * idmap_autorid: static map between Active Directory/NT RIDs
3 * and RFC 2307 accounts
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
8 * Copyright (C) Christian Ambach, 2010-2012
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.
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.
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/>.
26 * This module allocates ranges for domains to be used in a
27 * algorithmic mode like idmap_rid. Multiple ranges are supported
28 * for a single domain: If a rid exceeds the range size, a matching
29 * range is allocated to hold the rid's id.
31 * Here are the formulas applied:
34 * For a sid of the form domain_sid-rid, we have
36 * rid = reduced_rid + domain_range_index * range_size
38 * with
39 * reduced_rid := rid % range_size
40 * domain_range_index := rid / range_size
42 * And reduced_rid fits into a range.
44 * In the database, we associate a range_number to
45 * the pair domain_sid,domain_range_index.
47 * Now the unix id for the given sid calculates as:
49 * id = reduced_rid + range_low_id
51 * with
53 * range_low_id = low_id + range_number * range_size
56 * The inverse calculation goes like this:
58 * Given a unix id, let
60 * normalized_id := id - low_id
61 * reduced_rid := normalized_id % range_size
62 * range_number = normalized_id / range_size
64 * Then we have
66 * id = reduced_rid + low_id + range_number * range_size
68 * From the database, get the domain_sid,domain_range_index pair
69 * belonging to the range_number (if there is already one).
71 * Then the rid for the unix id calculates as:
73 * rid = reduced_rid + domain_range_index * range_size
76 #include "idmap_autorid_tdb.h"
77 #include "winbindd.h"
78 #include "idmap.h"
79 #include "idmap_rw.h"
80 #include "../libcli/security/dom_sid.h"
82 #undef DBGC_CLASS
83 #define DBGC_CLASS DBGC_IDMAP
85 /* handle to the tdb storing domain <-> range assignments */
86 static struct db_context *autorid_db;
88 static bool ignore_builtin = false;
90 static NTSTATUS idmap_autorid_get_alloc_range(struct idmap_domain *dom,
91 struct autorid_range_config *range)
93 NTSTATUS status;
95 ZERO_STRUCT(*range);
97 fstrcpy(range->domsid, ALLOC_RANGE);
99 status = idmap_autorid_get_domainrange(autorid_db,
100 range,
101 dom->read_only);
103 return status;
106 static NTSTATUS idmap_autorid_allocate_id(struct idmap_domain *dom,
107 struct unixid *xid) {
109 NTSTATUS ret;
110 struct autorid_range_config range;
112 if (dom->read_only) {
113 DEBUG(3, ("Backend is read-only, refusing "
114 "new allocation request\n"));
115 return NT_STATUS_UNSUCCESSFUL;
118 /* fetch the range for the allocation pool */
120 ret = idmap_autorid_get_alloc_range(dom, &range);
121 if (!NT_STATUS_IS_OK(ret)) {
122 DEBUG(3, ("Could not determine range for allocation pool, "
123 "check previous messages for reason\n"));
124 return ret;
127 ret = idmap_tdb_common_get_new_id(dom, xid);
129 if (!NT_STATUS_IS_OK(ret)) {
130 DEBUG(1, ("Fatal error while allocating new ID!\n"));
131 return ret;
134 xid->id = xid->id + range.low_id;
136 DEBUG(10, ("Returned new %s %d from allocation range\n",
137 (xid->type==ID_TYPE_UID)?"uid":"gid", xid->id));
139 return ret;
143 * map a SID to xid using the idmap_tdb like pool
145 static NTSTATUS idmap_autorid_id_to_sid_alloc(struct idmap_domain *dom,
146 struct id_map *map)
148 NTSTATUS ret;
150 /* look out for the mapping */
151 ret = idmap_tdb_common_unixid_to_sid(dom, map);
153 if (NT_STATUS_IS_OK(ret)) {
154 map->status = ID_MAPPED;
155 return ret;
158 map->status = ID_UNKNOWN;
160 DEBUG(10, ("no ID->SID mapping for %d could be found\n", map->xid.id));
162 return ret;
165 static NTSTATUS idmap_autorid_id_to_sid(struct autorid_global_config *cfg,
166 struct idmap_domain *dom,
167 struct id_map *map)
169 uint32_t range_number;
170 uint32_t domain_range_index = 0;
171 uint32_t normalized_id;
172 uint32_t reduced_rid;
173 uint32_t rid;
174 TDB_DATA data = tdb_null;
175 char *keystr;
176 struct dom_sid domsid;
177 NTSTATUS status;
178 bool ok;
179 const char *q = NULL;
181 /* can this be one of our ids? */
182 if (map->xid.id < cfg->minvalue) {
183 DEBUG(10, ("id %d is lower than minimum value, "
184 "ignoring mapping request\n", map->xid.id));
185 map->status = ID_UNKNOWN;
186 return NT_STATUS_OK;
189 if (map->xid.id > (cfg->minvalue + cfg->rangesize * cfg->maxranges)) {
190 DEBUG(10, ("id %d is outside of maximum id value, "
191 "ignoring mapping request\n", map->xid.id));
192 map->status = ID_UNKNOWN;
193 return NT_STATUS_OK;
196 /* determine the range of this uid */
198 normalized_id = map->xid.id - cfg->minvalue;
199 range_number = normalized_id / cfg->rangesize;
201 keystr = talloc_asprintf(talloc_tos(), "%u", range_number);
202 if (!keystr) {
203 return NT_STATUS_NO_MEMORY;
206 status = dbwrap_fetch_bystring(autorid_db, talloc_tos(), keystr, &data);
207 TALLOC_FREE(keystr);
209 if (!NT_STATUS_IS_OK(status)) {
210 DEBUG(4, ("id %d belongs to range %d which does not have "
211 "domain mapping, ignoring mapping request\n",
212 map->xid.id, range_number));
213 TALLOC_FREE(data.dptr);
214 map->status = ID_UNKNOWN;
215 return NT_STATUS_OK;
218 if (strncmp((const char *)data.dptr,
219 ALLOC_RANGE,
220 strlen(ALLOC_RANGE)) == 0) {
222 * this is from the alloc range, check if there is a mapping
224 DEBUG(5, ("id %d belongs to allocation range, "
225 "checking for mapping\n",
226 map->xid.id));
227 TALLOC_FREE(data.dptr);
228 return idmap_autorid_id_to_sid_alloc(dom, map);
231 ok = dom_sid_parse_endp((const char *)data.dptr, &domsid, &q);
232 TALLOC_FREE(data.dptr);
233 if (!ok) {
234 map->status = ID_UNKNOWN;
235 return NT_STATUS_OK;
237 if ((q != NULL) && (*q != '\0'))
238 if (sscanf(q+1, "%"SCNu32, &domain_range_index) != 1) {
239 DEBUG(10, ("Domain range index not found, "
240 "ignoring mapping request\n"));
241 map->status = ID_UNKNOWN;
242 return NT_STATUS_OK;
245 reduced_rid = normalized_id % cfg->rangesize;
246 rid = reduced_rid + domain_range_index * cfg->rangesize;
248 sid_compose(map->sid, &domsid, rid);
250 /* We **really** should have some way of validating
251 the SID exists and is the correct type here. But
252 that is a deficiency in the idmap_rid design. */
254 map->status = ID_MAPPED;
255 map->xid.type = ID_TYPE_BOTH;
257 return NT_STATUS_OK;
260 /**********************************
261 Single sid to id lookup function.
262 **********************************/
264 static NTSTATUS idmap_autorid_sid_to_id_rid(
265 struct autorid_global_config *global,
266 struct autorid_range_config *range,
267 struct id_map *map)
269 uint32_t rid;
270 uint32_t reduced_rid;
272 sid_peek_rid(map->sid, &rid);
274 reduced_rid = rid % global->rangesize;
276 map->xid.id = reduced_rid + range->low_id;
277 map->xid.type = ID_TYPE_BOTH;
278 map->status = ID_MAPPED;
280 return NT_STATUS_OK;
283 /**********************************
284 lookup a set of unix ids.
285 **********************************/
287 static NTSTATUS idmap_autorid_unixids_to_sids(struct idmap_domain *dom,
288 struct id_map **ids)
290 struct idmap_tdb_common_context *commoncfg;
291 struct autorid_global_config *globalcfg;
292 NTSTATUS ret;
293 int i;
294 int num_tomap = 0;
295 int num_mapped = 0;
297 /* initialize the status to avoid surprise */
298 for (i = 0; ids[i]; i++) {
299 ids[i]->status = ID_UNKNOWN;
300 num_tomap++;
303 commoncfg =
304 talloc_get_type_abort(dom->private_data,
305 struct idmap_tdb_common_context);
307 globalcfg = talloc_get_type(commoncfg->private_data,
308 struct autorid_global_config);
310 for (i = 0; ids[i]; i++) {
312 ret = idmap_autorid_id_to_sid(globalcfg, dom, ids[i]);
314 if ((!NT_STATUS_IS_OK(ret)) &&
315 (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
316 /* some fatal error occurred, log it */
317 DEBUG(3, ("Unexpected error resolving an ID "
318 " (%d)\n", ids[i]->xid.id));
319 goto failure;
322 if (NT_STATUS_IS_OK(ret) && ids[i]->status == ID_MAPPED) {
323 num_mapped++;
328 if (num_tomap == num_mapped) {
329 return NT_STATUS_OK;
330 } else if (num_mapped == 0) {
331 return NT_STATUS_NONE_MAPPED;
334 return STATUS_SOME_UNMAPPED;
337 failure:
338 return ret;
342 * map a SID to xid using the idmap_tdb like pool
344 static NTSTATUS idmap_autorid_sid_to_id_alloc(struct idmap_domain *dom,
345 struct id_map *map,
346 struct idmap_tdb_common_context *ctx)
348 NTSTATUS ret;
349 int res;
351 map->status = ID_UNKNOWN;
353 /* see if we already have a mapping */
354 ret = idmap_tdb_common_sid_to_unixid(dom, map);
356 if (NT_STATUS_IS_OK(ret)) {
357 map->status = ID_MAPPED;
358 return ret;
361 /* bad things happened */
362 if (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
363 DEBUG(1, ("Looking up SID->ID mapping for %s failed: %s\n",
364 sid_string_dbg(map->sid), nt_errstr(ret)));
365 return ret;
368 if (dom->read_only) {
369 DEBUG(3, ("Not allocating new mapping for %s, because backend "
370 "is read-only\n", sid_string_dbg(map->sid)));
371 map->status = ID_UNMAPPED;
372 return NT_STATUS_NONE_MAPPED;
375 DEBUG(10, ("Creating new mapping in pool for %s\n",
376 sid_string_dbg(map->sid)));
378 /* create new mapping */
379 res = dbwrap_transaction_start(ctx->db);
380 if (res != 0) {
381 DEBUG(2, ("transaction_start failed\n"));
382 return NT_STATUS_INTERNAL_DB_CORRUPTION;
385 ret = idmap_tdb_common_new_mapping(dom, map);
386 if (!NT_STATUS_IS_OK(ret)) {
387 if (dbwrap_transaction_cancel(ctx->db) != 0) {
388 smb_panic("Cancelling transaction failed");
390 map->status = ID_UNMAPPED;
391 return ret;
394 res = dbwrap_transaction_commit(ctx->db);
395 if (res == 0) {
396 map->status = ID_MAPPED;
397 return NT_STATUS_OK;
400 DEBUG(2, ("transaction_commit failed\n"));
401 return NT_STATUS_INTERNAL_DB_CORRUPTION;
405 static bool idmap_autorid_domsid_is_for_alloc(struct dom_sid *sid)
407 bool match;
409 match = sid_check_is_wellknown_domain(sid, NULL);
410 if (match) {
411 return true;
414 return false;
417 static NTSTATUS idmap_autorid_sid_to_id(struct idmap_tdb_common_context *common,
418 struct idmap_domain *dom,
419 struct id_map *map)
421 struct autorid_global_config *global =
422 talloc_get_type_abort(common->private_data,
423 struct autorid_global_config);
424 struct winbindd_tdc_domain *domain;
425 struct autorid_range_config range;
426 uint32_t rid;
427 struct dom_sid domainsid;
428 NTSTATUS ret;
430 ZERO_STRUCT(range);
431 map->status = ID_UNKNOWN;
433 DEBUG(10, ("Trying to map %s\n", sid_string_dbg(map->sid)));
435 sid_copy(&domainsid, map->sid);
436 if (!sid_split_rid(&domainsid, &rid)) {
437 DEBUG(4, ("Could not determine domain SID from %s, "
438 "ignoring mapping request\n",
439 sid_string_dbg(map->sid)));
440 map->status = ID_UNMAPPED;
441 return NT_STATUS_NONE_MAPPED;
444 if (idmap_autorid_domsid_is_for_alloc(&domainsid)) {
445 DEBUG(10, ("SID %s is for ALLOC range.\n",
446 sid_string_dbg(map->sid)));
448 return idmap_autorid_sid_to_id_alloc(dom, map, common);
451 if (dom_sid_equal(&domainsid, &global_sid_Builtin) && ignore_builtin) {
452 DEBUG(10, ("Ignoring request for BUILTIN domain\n"));
453 map->status = ID_UNMAPPED;
454 return NT_STATUS_NONE_MAPPED;
458 * Check if the domain is around
460 domain = wcache_tdc_fetch_domainbysid(talloc_tos(),
461 &domainsid);
462 if (domain == NULL) {
463 DEBUG(10, ("Ignoring unknown domain sid %s\n",
464 sid_string_dbg(&domainsid)));
465 map->status = ID_UNMAPPED;
466 return NT_STATUS_NONE_MAPPED;
468 TALLOC_FREE(domain);
470 sid_to_fstring(range.domsid, &domainsid);
472 range.domain_range_index = rid / (global->rangesize);
474 ret = idmap_autorid_get_domainrange(autorid_db, &range, dom->read_only);
475 if (NT_STATUS_EQUAL(ret, NT_STATUS_NOT_FOUND) && dom->read_only) {
476 DEBUG(10, ("read-only is enabled, did not allocate "
477 "new range for domain %s\n",
478 sid_string_dbg(&domainsid)));
479 map->status = ID_UNMAPPED;
480 return NT_STATUS_NONE_MAPPED;
482 if (!NT_STATUS_IS_OK(ret)) {
483 DEBUG(3, ("Could not determine range for domain, "
484 "check previous messages for reason\n"));
485 return ret;
488 return idmap_autorid_sid_to_id_rid(global, &range, map);
491 /**********************************
492 lookup a set of sids.
493 **********************************/
495 static NTSTATUS idmap_autorid_sids_to_unixids(struct idmap_domain *dom,
496 struct id_map **ids)
498 struct idmap_tdb_common_context *commoncfg;
499 NTSTATUS ret;
500 int i;
501 int num_tomap = 0;
502 int num_mapped = 0;
504 /* initialize the status to avoid surprise */
505 for (i = 0; ids[i]; i++) {
506 ids[i]->status = ID_UNKNOWN;
507 num_tomap++;
510 commoncfg =
511 talloc_get_type_abort(dom->private_data,
512 struct idmap_tdb_common_context);
514 for (i = 0; ids[i]; i++) {
515 ret = idmap_autorid_sid_to_id(commoncfg, dom, ids[i]);
516 if ((!NT_STATUS_IS_OK(ret)) &&
517 (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
518 /* some fatal error occurred, log it */
519 DEBUG(3, ("Unexpected error resolving a SID (%s)\n",
520 sid_string_dbg(ids[i]->sid)));
521 return ret;
524 if (NT_STATUS_IS_OK(ret) && ids[i]->status == ID_MAPPED) {
525 num_mapped++;
529 if (num_tomap == num_mapped) {
530 return NT_STATUS_OK;
531 } else if (num_mapped == 0) {
532 return NT_STATUS_NONE_MAPPED;
535 return STATUS_SOME_UNMAPPED;
538 static NTSTATUS idmap_autorid_preallocate_wellknown(struct idmap_domain *dom)
540 const char *groups[] = { "S-1-1-0", "S-1-2-0", "S-1-2-1",
541 "S-1-3-0", "S-1-3-1", "S-1-3-2", "S-1-3-3", "S-1-3-4",
542 "S-1-5-1", "S-1-5-2", "S-1-5-3", "S-1-5-4", "S-1-5-6",
543 "S-1-5-7", "S-1-5-8", "S-1-5-9", "S-1-5-10", "S-1-5-11",
544 "S-1-5-12", "S-1-5-13", "S-1-5-14", "S-1-5-15",
545 "S-1-5-17", "S-1-5-18", "S-1-5-19", "S-1-5-20"
548 struct id_map **maps;
549 int i, num;
550 NTSTATUS status;
552 if (dom->read_only) {
553 return NT_STATUS_OK;
556 num = ARRAY_SIZE(groups);
558 maps = talloc_array(talloc_tos(), struct id_map*, num+1);
559 if (!maps) {
560 return NT_STATUS_NO_MEMORY;
563 for (i = 0; i < num; i++) {
564 maps[i] = talloc(maps, struct id_map);
565 if (maps[i] == NULL) {
566 talloc_free(maps);
567 return NT_STATUS_NO_MEMORY;
569 maps[i]->xid.type = ID_TYPE_GID;
570 maps[i]->sid = dom_sid_parse_talloc(maps, groups[i]);
573 maps[num] = NULL;
575 status = idmap_autorid_sids_to_unixids(dom, maps);
577 DEBUG(10,("Preallocation run finished with status %s\n",
578 nt_errstr(status)));
580 talloc_free(maps);
582 return NT_STATUS_IS_OK(status)?NT_STATUS_OK:NT_STATUS_UNSUCCESSFUL;
585 static NTSTATUS idmap_autorid_initialize_action(struct db_context *db,
586 void *private_data)
588 struct idmap_domain *dom;
589 struct idmap_tdb_common_context *common;
590 struct autorid_global_config *config;
591 NTSTATUS status;
593 dom = (struct idmap_domain *)private_data;
594 common = (struct idmap_tdb_common_context *)dom->private_data;
595 config = (struct autorid_global_config *)common->private_data;
597 status = idmap_autorid_init_hwms(db);
598 if (!NT_STATUS_IS_OK(status)) {
599 return status;
602 status = idmap_autorid_saveconfig(db, config);
603 if (!NT_STATUS_IS_OK(status)) {
604 DEBUG(1, ("Failed to store configuration data!\n"));
605 return status;
608 status = idmap_autorid_preallocate_wellknown(dom);
609 if (!NT_STATUS_IS_OK(status)) {
610 DEBUG(1, ("Failed to preallocate wellknown sids: %s\n",
611 nt_errstr(status)));
612 return status;
615 return NT_STATUS_OK;
618 static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom)
620 struct idmap_tdb_common_context *commonconfig;
621 struct autorid_global_config *config;
622 NTSTATUS status;
624 if (!strequal(dom->name, "*")) {
625 DEBUG(0, ("idmap_autorid_initialize: Error: autorid configured "
626 "for domain '%s'. But autorid can only be used for "
627 "the default idmap configuration.\n", dom->name));
628 return NT_STATUS_INVALID_PARAMETER;
631 commonconfig = talloc_zero(dom, struct idmap_tdb_common_context);
632 if (!commonconfig) {
633 DEBUG(0, ("Out of memory!\n"));
634 return NT_STATUS_NO_MEMORY;
636 dom->private_data = commonconfig;
638 commonconfig->rw_ops = talloc_zero(commonconfig, struct idmap_rw_ops);
639 if (commonconfig->rw_ops == NULL) {
640 DEBUG(0, ("Out of memory!\n"));
641 return NT_STATUS_NO_MEMORY;
644 config = talloc_zero(commonconfig, struct autorid_global_config);
645 if (!config) {
646 DEBUG(0, ("Out of memory!\n"));
647 return NT_STATUS_NO_MEMORY;
649 commonconfig->private_data = config;
651 config->minvalue = dom->low_id;
652 config->rangesize = lp_parm_int(-1, "idmap config *",
653 "rangesize", 100000);
655 config->maxranges = (dom->high_id - dom->low_id + 1) /
656 config->rangesize;
658 if (config->maxranges == 0) {
659 DEBUG(1, ("Allowed uid range is smaller than rangesize. "
660 "Increase uid range or decrease rangesize.\n"));
661 status = NT_STATUS_INVALID_PARAMETER;
662 goto error;
665 /* check if the high-low limit is a multiple of the rangesize */
666 if ((dom->high_id - dom->low_id + 1) % config->rangesize != 0) {
667 DEBUG(5, ("High uid-low uid difference of %d "
668 "is not a multiple of the rangesize %d, "
669 "limiting ranges to lower boundary number of %d\n",
670 (dom->high_id - dom->low_id + 1), config->rangesize,
671 config->maxranges));
674 DEBUG(5, ("%d domain ranges with a size of %d are available\n",
675 config->maxranges, config->rangesize));
677 ignore_builtin = lp_parm_bool(-1, "idmap config *",
678 "ignore builtin", false);
680 /* fill the TDB common configuration */
682 commonconfig->max_id = config->rangesize -1;
683 commonconfig->hwmkey_uid = ALLOC_HWM_UID;
684 commonconfig->hwmkey_gid = ALLOC_HWM_GID;
685 commonconfig->rw_ops->get_new_id = idmap_autorid_allocate_id;
686 commonconfig->rw_ops->set_mapping = idmap_tdb_common_set_mapping;
688 status = idmap_autorid_db_open(state_path("autorid.tdb"),
689 NULL, /* TALLOC_CTX */
690 &autorid_db);
691 if (!NT_STATUS_IS_OK(status)) {
692 goto error;
695 commonconfig->db = autorid_db;
697 status = dbwrap_trans_do(autorid_db,
698 idmap_autorid_initialize_action,
699 dom);
700 if (!NT_STATUS_IS_OK(status)) {
701 DEBUG(1, ("Failed to init the idmap database: %s\n",
702 nt_errstr(status)));
703 goto error;
706 goto done;
708 error:
709 talloc_free(config);
711 done:
712 return status;
716 Close the idmap tdb instance
718 static struct idmap_methods autorid_methods = {
719 .init = idmap_autorid_initialize,
720 .unixids_to_sids = idmap_autorid_unixids_to_sids,
721 .sids_to_unixids = idmap_autorid_sids_to_unixids,
722 .allocate_id = idmap_autorid_allocate_id
725 NTSTATUS idmap_autorid_init(void)
727 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION,
728 "autorid", &autorid_methods);