gensec: Cast data for MIT Kerberos correctly
[Samba.git] / source3 / winbindd / idmap_autorid.c
blob786f83965d468db5db915472fb0d60ff4efae4bb
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"
81 #include "libsmb/samlogon_cache.h"
82 #include "passdb/machine_sid.h"
84 #undef DBGC_CLASS
85 #define DBGC_CLASS DBGC_IDMAP
87 #define IDMAP_AUTORID_ALLOC_RESERVED 500
89 /* handle to the tdb storing domain <-> range assignments */
90 static struct db_context *autorid_db;
92 static bool ignore_builtin = false;
94 static NTSTATUS idmap_autorid_get_alloc_range(struct idmap_domain *dom,
95 struct autorid_range_config *range)
97 NTSTATUS status;
99 ZERO_STRUCT(*range);
101 fstrcpy(range->domsid, ALLOC_RANGE);
103 status = idmap_autorid_get_domainrange(autorid_db,
104 range,
105 dom->read_only);
107 return status;
110 static NTSTATUS idmap_autorid_allocate_id(struct idmap_domain *dom,
111 struct unixid *xid) {
113 NTSTATUS ret;
114 struct autorid_range_config range;
116 if (dom->read_only) {
117 DEBUG(3, ("Backend is read-only, refusing "
118 "new allocation request\n"));
119 return NT_STATUS_UNSUCCESSFUL;
122 /* fetch the range for the allocation pool */
124 ret = idmap_autorid_get_alloc_range(dom, &range);
125 if (!NT_STATUS_IS_OK(ret)) {
126 DEBUG(3, ("Could not determine range for allocation pool, "
127 "check previous messages for reason\n"));
128 return ret;
131 ret = idmap_tdb_common_get_new_id(dom, xid);
133 if (!NT_STATUS_IS_OK(ret)) {
134 DEBUG(1, ("Fatal error while allocating new ID!\n"));
135 return ret;
138 xid->id = xid->id + range.low_id;
140 DEBUG(10, ("Returned new %s %d from allocation range\n",
141 (xid->type==ID_TYPE_UID)?"uid":"gid", xid->id));
143 return ret;
147 * map a xid to SID using the idmap_tdb like pool
149 static NTSTATUS idmap_autorid_id_to_sid_alloc(struct idmap_domain *dom,
150 struct id_map *map)
152 NTSTATUS ret;
154 /* look out for the mapping */
155 ret = idmap_tdb_common_unixid_to_sid(dom, map);
157 if (NT_STATUS_IS_OK(ret)) {
158 map->status = ID_MAPPED;
159 return ret;
162 map->status = ID_UNKNOWN;
164 DEBUG(10, ("no ID->SID mapping for %d could be found\n", map->xid.id));
166 return ret;
169 static NTSTATUS idmap_autorid_id_to_sid(struct autorid_global_config *cfg,
170 struct idmap_domain *dom,
171 struct id_map *map)
173 uint32_t range_number;
174 uint32_t domain_range_index;
175 uint32_t normalized_id;
176 uint32_t reduced_rid;
177 uint32_t rid;
178 TDB_DATA data = tdb_null;
179 char *keystr;
180 struct dom_sid domsid;
181 NTSTATUS status;
182 bool ok;
183 const char *q = NULL;
185 /* can this be one of our ids? */
186 if (map->xid.id < cfg->minvalue) {
187 DEBUG(10, ("id %d is lower than minimum value, "
188 "ignoring mapping request\n", map->xid.id));
189 map->status = ID_UNKNOWN;
190 return NT_STATUS_OK;
193 if (map->xid.id > (cfg->minvalue + cfg->rangesize * cfg->maxranges)) {
194 DEBUG(10, ("id %d is outside of maximum id value, "
195 "ignoring mapping request\n", map->xid.id));
196 map->status = ID_UNKNOWN;
197 return NT_STATUS_OK;
200 /* determine the range of this uid */
202 normalized_id = map->xid.id - cfg->minvalue;
203 range_number = normalized_id / cfg->rangesize;
205 keystr = talloc_asprintf(talloc_tos(), "%u", range_number);
206 if (!keystr) {
207 return NT_STATUS_NO_MEMORY;
210 status = dbwrap_fetch_bystring(autorid_db, talloc_tos(), keystr, &data);
211 TALLOC_FREE(keystr);
213 if (!NT_STATUS_IS_OK(status)) {
214 DEBUG(4, ("id %d belongs to range %d which does not have "
215 "domain mapping, ignoring mapping request\n",
216 map->xid.id, range_number));
217 TALLOC_FREE(data.dptr);
218 map->status = ID_UNKNOWN;
219 return NT_STATUS_OK;
222 if ((data.dsize == 0) || (data.dptr[data.dsize-1] != '\0')) {
223 DBG_WARNING("Invalid range %"PRIu32"\n", range_number);
224 TALLOC_FREE(data.dptr);
225 map->status = ID_UNKNOWN;
226 return NT_STATUS_OK;
229 if (strncmp((const char *)data.dptr,
230 ALLOC_RANGE,
231 strlen(ALLOC_RANGE)) == 0) {
233 * this is from the alloc range, check if there is a mapping
235 DEBUG(5, ("id %d belongs to allocation range, "
236 "checking for mapping\n",
237 map->xid.id));
238 TALLOC_FREE(data.dptr);
239 return idmap_autorid_id_to_sid_alloc(dom, map);
242 ok = dom_sid_parse_endp((const char *)data.dptr, &domsid, &q);
243 if (!ok) {
244 TALLOC_FREE(data.dptr);
245 map->status = ID_UNKNOWN;
246 return NT_STATUS_OK;
250 * Allow for sid#range_index, just sid is range index 0
253 switch (*q) {
254 case '\0':
255 domain_range_index = 0;
256 break;
257 case '#':
258 if (sscanf(q+1, "%"SCNu32, &domain_range_index) == 1) {
259 break;
261 /* If we end up here, something weird is in the record. */
263 /* FALL THROUGH */
264 default:
265 DBG_DEBUG("SID/domain range: %s\n",
266 (const char *)data.dptr);
267 TALLOC_FREE(data.dptr);
268 map->status = ID_UNKNOWN;
269 return NT_STATUS_OK;
272 TALLOC_FREE(data.dptr);
274 reduced_rid = normalized_id % cfg->rangesize;
275 rid = reduced_rid + domain_range_index * cfg->rangesize;
277 sid_compose(map->sid, &domsid, rid);
279 /* We **really** should have some way of validating
280 the SID exists and is the correct type here. But
281 that is a deficiency in the idmap_rid design. */
283 map->status = ID_MAPPED;
284 map->xid.type = ID_TYPE_BOTH;
286 return NT_STATUS_OK;
289 /**********************************
290 Single sid to id lookup function.
291 **********************************/
293 static NTSTATUS idmap_autorid_sid_to_id_rid(
294 uint32_t rangesize,
295 uint32_t low_id,
296 struct id_map *map)
298 uint32_t rid;
299 uint32_t reduced_rid;
301 sid_peek_rid(map->sid, &rid);
303 reduced_rid = rid % rangesize;
305 map->xid.id = reduced_rid + low_id;
306 map->xid.type = ID_TYPE_BOTH;
307 map->status = ID_MAPPED;
309 return NT_STATUS_OK;
312 /**********************************
313 lookup a set of unix ids.
314 **********************************/
316 static NTSTATUS idmap_autorid_unixids_to_sids(struct idmap_domain *dom,
317 struct id_map **ids)
319 struct idmap_tdb_common_context *commoncfg;
320 struct autorid_global_config *globalcfg;
321 NTSTATUS ret;
322 int i;
323 int num_tomap = 0;
324 int num_mapped = 0;
326 /* initialize the status to avoid surprise */
327 for (i = 0; ids[i]; i++) {
328 ids[i]->status = ID_UNKNOWN;
329 num_tomap++;
332 commoncfg =
333 talloc_get_type_abort(dom->private_data,
334 struct idmap_tdb_common_context);
336 globalcfg = talloc_get_type(commoncfg->private_data,
337 struct autorid_global_config);
339 for (i = 0; ids[i]; i++) {
341 ret = idmap_autorid_id_to_sid(globalcfg, dom, ids[i]);
343 if ((!NT_STATUS_IS_OK(ret)) &&
344 (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
345 /* some fatal error occurred, log it */
346 DBG_NOTICE("Unexpected error resolving an ID "
347 "(%d): %s\n", ids[i]->xid.id,
348 nt_errstr(ret));
349 goto failure;
352 if (NT_STATUS_IS_OK(ret) && ids[i]->status == ID_MAPPED) {
353 num_mapped++;
358 if (num_tomap == num_mapped) {
359 return NT_STATUS_OK;
361 if (num_mapped == 0) {
362 return NT_STATUS_NONE_MAPPED;
365 return STATUS_SOME_UNMAPPED;
368 failure:
369 return ret;
372 static bool idmap_autorid_sid_is_special(struct dom_sid *sid)
374 bool match;
376 match = sid_check_is_in_wellknown_domain(sid);
377 if (match) {
378 return true;
381 return false;
384 static NTSTATUS idmap_autorid_sid_to_id_special(struct idmap_domain *dom,
385 struct id_map *map)
387 struct idmap_tdb_common_context *common =
388 talloc_get_type_abort(dom->private_data,
389 struct idmap_tdb_common_context);
390 uint32_t count;
391 struct autorid_range_config range;
392 NTSTATUS status;
393 uint32_t free_id;
395 status = idmap_autorid_get_alloc_range(dom, &range);
396 if (!NT_STATUS_IS_OK(status)) {
397 return status;
400 /* Take the next free ID, counting from the top */
401 free_id = 0;
402 for (count = 0; count < IDMAP_AUTORID_ALLOC_RESERVED; count++) {
403 struct id_map test_map;
404 struct dom_sid sid;
406 test_map.sid = &sid;
407 test_map.xid.type = map->xid.type;
408 test_map.xid.id = range.high_id - count;
409 test_map.status = ID_UNKNOWN;
411 status = idmap_tdb_common_unixid_to_sid(dom, &test_map);
412 if (NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, status)) {
413 free_id = test_map.xid.id;
414 break;
417 if (!NT_STATUS_IS_OK(status)) {
418 /* error - get out */
419 return status;
422 /* mapping exists - try next ID */
425 if (free_id == 0) {
426 return NT_STATUS_NONE_MAPPED;
429 map->status = ID_MAPPED;
430 map->xid.id = free_id;
432 status = common->rw_ops->set_mapping(dom, map);
433 if (!NT_STATUS_IS_OK(status)) {
434 DEBUG(2, ("Error storing new mapping: %s\n",
435 nt_errstr(status)));
436 return status;
439 return NT_STATUS_OK;
442 struct idmap_autorid_sid_to_id_alloc_ctx {
443 struct idmap_domain *dom;
444 struct id_map *map;
447 static NTSTATUS idmap_autorid_sid_to_id_alloc_action(
448 struct db_context *db,
449 void *private_data)
451 struct idmap_autorid_sid_to_id_alloc_ctx *ctx;
453 ctx = (struct idmap_autorid_sid_to_id_alloc_ctx *)private_data;
455 if (idmap_autorid_sid_is_special(ctx->map->sid)) {
456 NTSTATUS ret;
458 ret = idmap_autorid_sid_to_id_special(ctx->dom, ctx->map);
459 if (NT_STATUS_IS_OK(ret)) {
460 return NT_STATUS_OK;
462 if (!NT_STATUS_EQUAL(NT_STATUS_NONE_MAPPED, ret)) {
463 return ret;
466 DEBUG(10, ("Sepecial sid %s not mapped. falling back to "
467 "regular allocation\n",
468 sid_string_dbg(ctx->map->sid)));
471 return idmap_tdb_common_new_mapping(ctx->dom, ctx->map);
475 * map a SID to xid using the idmap_tdb like pool
477 static NTSTATUS idmap_autorid_sid_to_id_alloc(
478 struct idmap_tdb_common_context *ctx,
479 struct idmap_domain *dom,
480 struct id_map *map)
482 NTSTATUS ret;
483 struct idmap_autorid_sid_to_id_alloc_ctx alloc_ctx;
485 map->status = ID_UNKNOWN;
487 /* see if we already have a mapping */
488 ret = idmap_tdb_common_sid_to_unixid(dom, map);
490 if (NT_STATUS_IS_OK(ret)) {
491 map->status = ID_MAPPED;
492 return ret;
495 /* bad things happened */
496 if (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
497 DEBUG(1, ("Looking up SID->ID mapping for %s failed: %s\n",
498 sid_string_dbg(map->sid), nt_errstr(ret)));
499 return ret;
502 if (dom->read_only) {
503 DEBUG(3, ("Not allocating new mapping for %s, because backend "
504 "is read-only\n", sid_string_dbg(map->sid)));
505 map->status = ID_UNMAPPED;
506 return NT_STATUS_NONE_MAPPED;
509 DEBUG(10, ("Creating new mapping in pool for %s\n",
510 sid_string_dbg(map->sid)));
512 alloc_ctx.dom = dom;
513 alloc_ctx.map = map;
515 ret = dbwrap_trans_do(ctx->db, idmap_autorid_sid_to_id_alloc_action,
516 &alloc_ctx);
517 if (!NT_STATUS_IS_OK(ret)) {
518 DEBUG(1, ("Failed to create a new mapping in alloc range: %s\n",
519 nt_errstr(ret)));
520 return NT_STATUS_INTERNAL_DB_CORRUPTION;
523 map->status = ID_MAPPED;
524 return NT_STATUS_OK;
527 static bool idmap_autorid_domsid_is_for_alloc(struct dom_sid *sid)
529 bool match;
531 match = sid_check_is_wellknown_domain(sid, NULL);
532 if (match) {
533 return true;
536 return false;
539 static NTSTATUS idmap_autorid_sid_to_id(struct idmap_tdb_common_context *common,
540 struct idmap_domain *dom,
541 struct id_map *map)
543 struct autorid_global_config *global =
544 talloc_get_type_abort(common->private_data,
545 struct autorid_global_config);
546 struct autorid_range_config range;
547 uint32_t rid;
548 struct dom_sid domainsid;
549 NTSTATUS ret;
551 ZERO_STRUCT(range);
552 map->status = ID_UNKNOWN;
554 DEBUG(10, ("Trying to map %s\n", sid_string_dbg(map->sid)));
556 sid_copy(&domainsid, map->sid);
557 if (!sid_split_rid(&domainsid, &rid)) {
558 DEBUG(4, ("Could not determine domain SID from %s, "
559 "ignoring mapping request\n",
560 sid_string_dbg(map->sid)));
561 map->status = ID_UNMAPPED;
562 return NT_STATUS_NONE_MAPPED;
565 if (idmap_autorid_domsid_is_for_alloc(&domainsid)) {
566 DEBUG(10, ("SID %s is for ALLOC range.\n",
567 sid_string_dbg(map->sid)));
569 return idmap_autorid_sid_to_id_alloc(common, dom, map);
572 if (dom_sid_equal(&domainsid, &global_sid_Builtin) && ignore_builtin) {
573 DEBUG(10, ("Ignoring request for BUILTIN domain\n"));
574 map->status = ID_UNMAPPED;
575 return NT_STATUS_NONE_MAPPED;
578 sid_to_fstring(range.domsid, &domainsid);
580 range.domain_range_index = rid / (global->rangesize);
582 ret = idmap_autorid_getrange(autorid_db, range.domsid,
583 range.domain_range_index,
584 &range.rangenum, &range.low_id);
585 if (NT_STATUS_IS_OK(ret)) {
586 return idmap_autorid_sid_to_id_rid(
587 global->rangesize, range.low_id, map);
590 if (dom->read_only) {
591 DBG_DEBUG("read-only is enabled, did not allocate "
592 "new range for domain %s\n", range.domsid);
593 map->status = ID_UNMAPPED;
594 return NT_STATUS_NONE_MAPPED;
598 * Check if we should allocate a domain range. We need to
599 * protect against unknown domains to not fill our ranges
600 * needlessly.
603 if (sid_check_is_builtin(&domainsid) ||
604 sid_check_is_our_sam(&domainsid)) {
605 goto allocate;
609 struct winbindd_domain *domain;
612 * Deterministic check for domain members: We can be
613 * sure that the domain we are member of is worth to
614 * add a mapping for.
617 domain = find_our_domain();
618 if ((domain != NULL) &&
619 dom_sid_equal(&domain->sid, &domainsid)) {
620 goto allocate;
625 * If we have already allocated range index 0, this domain is
626 * worth allocating for in higher ranges.
628 if (range.domain_range_index != 0) {
629 uint32_t zero_rangenum, zero_low_id;
631 ret = idmap_autorid_getrange(autorid_db, range.domsid, 0,
632 &zero_rangenum, &zero_low_id);
633 if (NT_STATUS_IS_OK(ret)) {
634 goto allocate;
639 * Check of last resort: A domain is valid if a user from that
640 * domain has recently logged in. The samlogon_cache these
641 * days also stores the domain sid.
643 * We used to check the list of trusted domains we received
644 * from "our" dc, but this is not reliable enough.
646 if (netsamlogon_cache_have(&domainsid)) {
647 goto allocate;
651 * Nobody knows this domain, so refuse to allocate a fresh
652 * range.
655 DBG_NOTICE("Allocating range for domain %s refused\n", range.domsid);
656 map->status = ID_UNMAPPED;
657 return NT_STATUS_NONE_MAPPED;
659 allocate:
660 ret = idmap_autorid_acquire_range(autorid_db, &range);
661 if (!NT_STATUS_IS_OK(ret)) {
662 DBG_NOTICE("Could not determine range for domain: %s, "
663 "check previous messages for reason\n",
664 nt_errstr(ret));
665 return ret;
668 return idmap_autorid_sid_to_id_rid(global->rangesize, range.low_id,
669 map);
672 /**********************************
673 lookup a set of sids.
674 **********************************/
676 static NTSTATUS idmap_autorid_sids_to_unixids(struct idmap_domain *dom,
677 struct id_map **ids)
679 struct idmap_tdb_common_context *commoncfg;
680 NTSTATUS ret;
681 int i;
682 int num_tomap = 0;
683 int num_mapped = 0;
685 /* initialize the status to avoid surprise */
686 for (i = 0; ids[i]; i++) {
687 ids[i]->status = ID_UNKNOWN;
688 num_tomap++;
691 commoncfg =
692 talloc_get_type_abort(dom->private_data,
693 struct idmap_tdb_common_context);
695 for (i = 0; ids[i]; i++) {
696 ret = idmap_autorid_sid_to_id(commoncfg, dom, ids[i]);
697 if ((!NT_STATUS_IS_OK(ret)) &&
698 (!NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
699 /* some fatal error occurred, log it */
700 DEBUG(3, ("Unexpected error resolving a SID (%s)\n",
701 sid_string_dbg(ids[i]->sid)));
702 return ret;
705 if (NT_STATUS_IS_OK(ret) && ids[i]->status == ID_MAPPED) {
706 num_mapped++;
710 if (num_tomap == num_mapped) {
711 return NT_STATUS_OK;
712 } else if (num_mapped == 0) {
713 return NT_STATUS_NONE_MAPPED;
716 return STATUS_SOME_UNMAPPED;
719 static NTSTATUS idmap_autorid_preallocate_wellknown(struct idmap_domain *dom)
721 const char *groups[] = { "S-1-1-0", "S-1-2-0", "S-1-2-1",
722 "S-1-3-0", "S-1-3-1", "S-1-3-2", "S-1-3-3", "S-1-3-4",
723 "S-1-5-1", "S-1-5-2", "S-1-5-3", "S-1-5-4", "S-1-5-6",
724 "S-1-5-7", "S-1-5-8", "S-1-5-9", "S-1-5-10", "S-1-5-11",
725 "S-1-5-12", "S-1-5-13", "S-1-5-14", "S-1-5-15",
726 "S-1-5-17", "S-1-5-18", "S-1-5-19", "S-1-5-20"
729 struct id_map **maps;
730 int i, num;
731 NTSTATUS status;
733 if (dom->read_only) {
734 return NT_STATUS_OK;
737 num = ARRAY_SIZE(groups);
739 maps = talloc_array(talloc_tos(), struct id_map*, num+1);
740 if (!maps) {
741 return NT_STATUS_NO_MEMORY;
744 for (i = 0; i < num; i++) {
745 maps[i] = talloc(maps, struct id_map);
746 if (maps[i] == NULL) {
747 talloc_free(maps);
748 return NT_STATUS_NO_MEMORY;
750 maps[i]->xid.type = ID_TYPE_GID;
751 maps[i]->sid = dom_sid_parse_talloc(maps, groups[i]);
754 maps[num] = NULL;
756 status = idmap_autorid_sids_to_unixids(dom, maps);
758 DEBUG(10,("Preallocation run finished with status %s\n",
759 nt_errstr(status)));
761 talloc_free(maps);
763 return NT_STATUS_IS_OK(status)?NT_STATUS_OK:NT_STATUS_UNSUCCESSFUL;
766 static NTSTATUS idmap_autorid_initialize_action(struct db_context *db,
767 void *private_data)
769 struct idmap_domain *dom;
770 struct idmap_tdb_common_context *common;
771 struct autorid_global_config *config;
772 NTSTATUS status;
774 dom = (struct idmap_domain *)private_data;
775 common = (struct idmap_tdb_common_context *)dom->private_data;
776 config = (struct autorid_global_config *)common->private_data;
778 status = idmap_autorid_init_hwms(db);
779 if (!NT_STATUS_IS_OK(status)) {
780 return status;
783 status = idmap_autorid_saveconfig(db, config);
784 if (!NT_STATUS_IS_OK(status)) {
785 DEBUG(1, ("Failed to store configuration data!\n"));
786 return status;
789 status = idmap_autorid_preallocate_wellknown(dom);
790 if (!NT_STATUS_IS_OK(status)) {
791 DEBUG(1, ("Failed to preallocate wellknown sids: %s\n",
792 nt_errstr(status)));
793 return status;
796 return NT_STATUS_OK;
799 static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom)
801 struct idmap_tdb_common_context *commonconfig;
802 struct autorid_global_config *config;
803 NTSTATUS status;
804 char *db_path;
806 if (!strequal(dom->name, "*")) {
807 DEBUG(0, ("idmap_autorid_initialize: Error: autorid configured "
808 "for domain '%s'. But autorid can only be used for "
809 "the default idmap configuration.\n", dom->name));
810 return NT_STATUS_INVALID_PARAMETER;
813 commonconfig = talloc_zero(dom, struct idmap_tdb_common_context);
814 if (!commonconfig) {
815 DEBUG(0, ("Out of memory!\n"));
816 return NT_STATUS_NO_MEMORY;
818 dom->private_data = commonconfig;
820 commonconfig->rw_ops = talloc_zero(commonconfig, struct idmap_rw_ops);
821 if (commonconfig->rw_ops == NULL) {
822 DEBUG(0, ("Out of memory!\n"));
823 return NT_STATUS_NO_MEMORY;
826 config = talloc_zero(commonconfig, struct autorid_global_config);
827 if (!config) {
828 DEBUG(0, ("Out of memory!\n"));
829 return NT_STATUS_NO_MEMORY;
831 commonconfig->private_data = config;
833 config->minvalue = dom->low_id;
834 config->rangesize = lp_parm_int(-1, "idmap config *",
835 "rangesize", 100000);
837 config->maxranges = (dom->high_id - dom->low_id + 1) /
838 config->rangesize;
840 if (config->maxranges == 0) {
841 DEBUG(1, ("Allowed uid range is smaller than rangesize. "
842 "Increase uid range or decrease rangesize.\n"));
843 status = NT_STATUS_INVALID_PARAMETER;
844 goto error;
847 /* check if the high-low limit is a multiple of the rangesize */
848 if ((dom->high_id - dom->low_id + 1) % config->rangesize != 0) {
849 DEBUG(5, ("High uid-low uid difference of %d "
850 "is not a multiple of the rangesize %d, "
851 "limiting ranges to lower boundary number of %d\n",
852 (dom->high_id - dom->low_id + 1), config->rangesize,
853 config->maxranges));
856 DEBUG(5, ("%d domain ranges with a size of %d are available\n",
857 config->maxranges, config->rangesize));
859 ignore_builtin = lp_parm_bool(-1, "idmap config *",
860 "ignore builtin", false);
862 /* fill the TDB common configuration */
864 commonconfig->max_id = config->rangesize - 1
865 - IDMAP_AUTORID_ALLOC_RESERVED;
866 commonconfig->hwmkey_uid = ALLOC_HWM_UID;
867 commonconfig->hwmkey_gid = ALLOC_HWM_GID;
868 commonconfig->rw_ops->get_new_id = idmap_autorid_allocate_id;
869 commonconfig->rw_ops->set_mapping = idmap_tdb_common_set_mapping;
871 db_path = state_path("autorid.tdb");
872 if (db_path == NULL) {
873 status = NT_STATUS_NO_MEMORY;
874 goto error;
877 status = idmap_autorid_db_open(db_path,
878 NULL, /* TALLOC_CTX */
879 &autorid_db);
880 TALLOC_FREE(db_path);
881 if (!NT_STATUS_IS_OK(status)) {
882 goto error;
885 commonconfig->db = autorid_db;
887 status = dbwrap_trans_do(autorid_db,
888 idmap_autorid_initialize_action,
889 dom);
890 if (!NT_STATUS_IS_OK(status)) {
891 DEBUG(1, ("Failed to init the idmap database: %s\n",
892 nt_errstr(status)));
893 goto error;
896 goto done;
898 error:
899 talloc_free(config);
901 done:
902 return status;
906 Close the idmap tdb instance
908 static struct idmap_methods autorid_methods = {
909 .init = idmap_autorid_initialize,
910 .unixids_to_sids = idmap_autorid_unixids_to_sids,
911 .sids_to_unixids = idmap_autorid_sids_to_unixids,
912 .allocate_id = idmap_autorid_allocate_id
915 static_decl_idmap;
916 NTSTATUS idmap_autorid_init(void)
918 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION,
919 "autorid", &autorid_methods);