Change smbd_aio_complete_mid() -> smbd_aio_complete_aio_ex(). Simplifies
[Samba/ekacnet.git] / source3 / winbindd / idmap_tdb2.c
blobf39969d1f84e295342b57be9e56ac4f83943ed25
1 /*
2 Unix SMB/CIFS implementation.
4 idmap TDB2 backend, used for clustered Samba setups.
6 This uses dbwrap to access tdb files. The location can be set
7 using tdb:idmap2.tdb =" in smb.conf
9 Copyright (C) Andrew Tridgell 2007
11 This is heavily based upon idmap_tdb.c, which is:
13 Copyright (C) Tim Potter 2000
14 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
15 Copyright (C) Jeremy Allison 2006
16 Copyright (C) Simo Sorce 2003-2006
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or
21 (at your option) any later version.
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
30 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 #include "includes.h"
34 #include "winbindd.h"
36 #undef DBGC_CLASS
37 #define DBGC_CLASS DBGC_IDMAP
39 /* High water mark keys */
40 #define HWM_GROUP "GROUP HWM"
41 #define HWM_USER "USER HWM"
43 static struct idmap_tdb2_state {
44 /* User and group id pool */
45 uid_t low_uid, high_uid; /* Range of uids to allocate */
46 gid_t low_gid, high_gid; /* Range of gids to allocate */
47 const char *idmap_script;
48 } idmap_tdb2_state;
52 /* handle to the permanent tdb */
53 static struct db_context *idmap_tdb2;
55 static NTSTATUS idmap_tdb2_alloc_load(void);
57 static NTSTATUS idmap_tdb2_load_ranges(void)
59 uid_t low_uid = 0;
60 uid_t high_uid = 0;
61 gid_t low_gid = 0;
62 gid_t high_gid = 0;
64 if (!lp_idmap_uid(&low_uid, &high_uid)) {
65 DEBUG(1, ("idmap uid missing\n"));
66 return NT_STATUS_UNSUCCESSFUL;
69 if (!lp_idmap_gid(&low_gid, &high_gid)) {
70 DEBUG(1, ("idmap gid missing\n"));
71 return NT_STATUS_UNSUCCESSFUL;
74 idmap_tdb2_state.low_uid = low_uid;
75 idmap_tdb2_state.high_uid = high_uid;
76 idmap_tdb2_state.low_gid = low_gid;
77 idmap_tdb2_state.high_gid = high_gid;
79 if (idmap_tdb2_state.high_uid <= idmap_tdb2_state.low_uid) {
80 DEBUG(1, ("idmap uid range missing or invalid\n"));
81 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
82 return NT_STATUS_UNSUCCESSFUL;
85 if (idmap_tdb2_state.high_gid <= idmap_tdb2_state.low_gid) {
86 DEBUG(1, ("idmap gid range missing or invalid\n"));
87 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
88 return NT_STATUS_UNSUCCESSFUL;
91 return NT_STATUS_OK;
95 open the permanent tdb
97 static NTSTATUS idmap_tdb2_open_db(void)
99 char *db_path;
101 if (idmap_tdb2) {
102 /* its already open */
103 return NT_STATUS_OK;
106 db_path = lp_parm_talloc_string(-1, "tdb", "idmap2.tdb", NULL);
107 if (db_path == NULL) {
108 /* fall back to the private directory, which, despite
109 its name, is usually on shared storage */
110 db_path = talloc_asprintf(NULL, "%s/idmap2.tdb", lp_private_dir());
112 NT_STATUS_HAVE_NO_MEMORY(db_path);
114 /* Open idmap repository */
115 idmap_tdb2 = db_open(NULL, db_path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0644);
116 TALLOC_FREE(db_path);
118 if (idmap_tdb2 == NULL) {
119 DEBUG(0, ("Unable to open idmap_tdb2 database '%s'\n",
120 db_path));
121 return NT_STATUS_UNSUCCESSFUL;
124 /* load the ranges and high/low water marks */
125 return idmap_tdb2_alloc_load();
130 load the idmap allocation ranges and high/low water marks
132 static NTSTATUS idmap_tdb2_alloc_load(void)
134 NTSTATUS status;
135 uint32 low_id;
137 /* see if a idmap script is configured */
138 idmap_tdb2_state.idmap_script = lp_parm_const_string(-1, "idmap",
139 "script", NULL);
141 if (idmap_tdb2_state.idmap_script) {
142 DEBUG(1, ("using idmap script '%s'\n",
143 idmap_tdb2_state.idmap_script));
146 /* load ranges */
148 status = idmap_tdb2_load_ranges();
149 if (!NT_STATUS_IS_OK(status)) {
150 return status;
153 /* Create high water marks for group and user id */
155 low_id = dbwrap_fetch_int32(idmap_tdb2, HWM_USER);
156 if ((low_id == -1) || (low_id < idmap_tdb2_state.low_uid)) {
157 if (!NT_STATUS_IS_OK(dbwrap_trans_store_int32(
158 idmap_tdb2, HWM_USER,
159 idmap_tdb2_state.low_uid))) {
160 DEBUG(0, ("Unable to initialise user hwm in idmap "
161 "database\n"));
162 return NT_STATUS_INTERNAL_DB_ERROR;
166 low_id = dbwrap_fetch_int32(idmap_tdb2, HWM_GROUP);
167 if ((low_id == -1) || (low_id < idmap_tdb2_state.low_gid)) {
168 if (!NT_STATUS_IS_OK(dbwrap_trans_store_int32(
169 idmap_tdb2, HWM_GROUP,
170 idmap_tdb2_state.low_gid))) {
171 DEBUG(0, ("Unable to initialise group hwm in idmap "
172 "database\n"));
173 return NT_STATUS_INTERNAL_DB_ERROR;
177 return NT_STATUS_OK;
182 Initialise idmap alloc database.
184 static NTSTATUS idmap_tdb2_alloc_init(const char *params)
186 /* nothing to do - we want to avoid opening the permanent
187 database if possible. Instead we load the params when we
188 first need it. */
189 return NT_STATUS_OK;
194 Allocate a new id.
197 struct idmap_tdb2_allocate_id_context {
198 const char *hwmkey;
199 const char *hwmtype;
200 uint32_t high_hwm;
201 uint32_t hwm;
204 static NTSTATUS idmap_tdb2_allocate_id_action(struct db_context *db,
205 void *private_data)
207 NTSTATUS ret;
208 struct idmap_tdb2_allocate_id_context *state;
209 uint32_t hwm;
211 state = (struct idmap_tdb2_allocate_id_context *)private_data;
213 hwm = dbwrap_fetch_int32(db, state->hwmkey);
214 if (hwm == -1) {
215 ret = NT_STATUS_INTERNAL_DB_ERROR;
216 goto done;
219 /* check it is in the range */
220 if (hwm > state->high_hwm) {
221 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
222 state->hwmtype, (unsigned long)state->high_hwm));
223 ret = NT_STATUS_UNSUCCESSFUL;
224 goto done;
227 /* fetch a new id and increment it */
228 ret = dbwrap_trans_change_uint32_atomic(db, state->hwmkey, &hwm, 1);
229 if (!NT_STATUS_IS_OK(ret)) {
230 DEBUG(1, ("Fatal error while fetching a new %s value\n!",
231 state->hwmtype));
232 goto done;
235 /* recheck it is in the range */
236 if (hwm > state->high_hwm) {
237 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
238 state->hwmtype, (unsigned long)state->high_hwm));
239 ret = NT_STATUS_UNSUCCESSFUL;
240 goto done;
243 ret = NT_STATUS_OK;
244 state->hwm = hwm;
246 done:
247 return ret;
250 static NTSTATUS idmap_tdb2_allocate_id(struct unixid *xid)
252 const char *hwmkey;
253 const char *hwmtype;
254 uint32_t high_hwm;
255 uint32_t hwm = 0;
256 NTSTATUS status;
257 struct idmap_tdb2_allocate_id_context state;
259 status = idmap_tdb2_open_db();
260 NT_STATUS_NOT_OK_RETURN(status);
262 /* Get current high water mark */
263 switch (xid->type) {
265 case ID_TYPE_UID:
266 hwmkey = HWM_USER;
267 hwmtype = "UID";
268 high_hwm = idmap_tdb2_state.high_uid;
269 break;
271 case ID_TYPE_GID:
272 hwmkey = HWM_GROUP;
273 hwmtype = "GID";
274 high_hwm = idmap_tdb2_state.high_gid;
275 break;
277 default:
278 DEBUG(2, ("Invalid ID type (0x%x)\n", xid->type));
279 return NT_STATUS_INVALID_PARAMETER;
282 state.hwm = hwm;
283 state.high_hwm = high_hwm;
284 state.hwmtype = hwmtype;
285 state.hwmkey = hwmkey;
287 status = dbwrap_trans_do(idmap_tdb2, idmap_tdb2_allocate_id_action,
288 &state);
290 if (NT_STATUS_IS_OK(status)) {
291 xid->id = state.hwm;
292 DEBUG(10,("New %s = %d\n", hwmtype, hwm));
293 } else {
294 DEBUG(1, ("Error allocating a new %s\n", hwmtype));
297 return status;
301 Get current highest id.
303 static NTSTATUS idmap_tdb2_get_hwm(struct unixid *xid)
305 const char *hwmkey;
306 const char *hwmtype;
307 uint32_t hwm;
308 uint32_t high_hwm;
309 NTSTATUS status;
311 status = idmap_tdb2_open_db();
312 NT_STATUS_NOT_OK_RETURN(status);
314 /* Get current high water mark */
315 switch (xid->type) {
317 case ID_TYPE_UID:
318 hwmkey = HWM_USER;
319 hwmtype = "UID";
320 high_hwm = idmap_tdb2_state.high_uid;
321 break;
323 case ID_TYPE_GID:
324 hwmkey = HWM_GROUP;
325 hwmtype = "GID";
326 high_hwm = idmap_tdb2_state.high_gid;
327 break;
329 default:
330 return NT_STATUS_INVALID_PARAMETER;
333 if ((hwm = dbwrap_fetch_int32(idmap_tdb2, hwmkey)) == -1) {
334 return NT_STATUS_INTERNAL_DB_ERROR;
337 xid->id = hwm;
339 /* Warn if it is out of range */
340 if (hwm >= high_hwm) {
341 DEBUG(0, ("Warning: %s range full!! (max: %lu)\n",
342 hwmtype, (unsigned long)high_hwm));
345 return NT_STATUS_OK;
349 Set high id.
351 static NTSTATUS idmap_tdb2_set_hwm(struct unixid *xid)
353 /* not supported, or we would invalidate the cache tdb on
354 other nodes */
355 DEBUG(0,("idmap_tdb2_set_hwm not supported\n"));
356 return NT_STATUS_NOT_SUPPORTED;
360 Close the alloc tdb
362 static NTSTATUS idmap_tdb2_alloc_close(void)
364 /* don't actually close it */
365 return NT_STATUS_OK;
369 IDMAP MAPPING TDB BACKEND
371 struct idmap_tdb2_context {
372 uint32_t filter_low_id;
373 uint32_t filter_high_id;
377 Initialise idmap database.
379 static NTSTATUS idmap_tdb2_db_init(struct idmap_domain *dom,
380 const char *params)
382 NTSTATUS ret;
383 struct idmap_tdb2_context *ctx;
384 NTSTATUS status;
386 status = idmap_tdb2_open_db();
387 NT_STATUS_NOT_OK_RETURN(status);
389 ctx = talloc(dom, struct idmap_tdb2_context);
390 if ( ! ctx) {
391 DEBUG(0, ("Out of memory!\n"));
392 return NT_STATUS_NO_MEMORY;
395 if (strequal(dom->name, "*")) {
396 uid_t low_uid = 0;
397 uid_t high_uid = 0;
398 gid_t low_gid = 0;
399 gid_t high_gid = 0;
401 ctx->filter_low_id = 0;
402 ctx->filter_high_id = 0;
404 if (lp_idmap_uid(&low_uid, &high_uid)) {
405 ctx->filter_low_id = low_uid;
406 ctx->filter_high_id = high_uid;
407 } else {
408 DEBUG(3, ("Warning: 'idmap uid' not set!\n"));
411 if (lp_idmap_gid(&low_gid, &high_gid)) {
412 if ((low_gid != low_uid) || (high_gid != high_uid)) {
413 DEBUG(1, ("Warning: 'idmap uid' and 'idmap gid'"
414 " ranges do not agree -- building "
415 "intersection\n"));
416 ctx->filter_low_id = MAX(ctx->filter_low_id,
417 low_gid);
418 ctx->filter_high_id = MIN(ctx->filter_high_id,
419 high_gid);
421 } else {
422 DEBUG(3, ("Warning: 'idmap gid' not set!\n"));
424 } else {
425 char *config_option = NULL;
426 const char *range;
427 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
428 if ( ! config_option) {
429 DEBUG(0, ("Out of memory!\n"));
430 ret = NT_STATUS_NO_MEMORY;
431 goto failed;
434 range = lp_parm_const_string(-1, config_option, "range", NULL);
435 if (( ! range) ||
436 (sscanf(range, "%u - %u", &ctx->filter_low_id, &ctx->filter_high_id) != 2))
438 ctx->filter_low_id = 0;
439 ctx->filter_high_id = 0;
442 talloc_free(config_option);
445 if (ctx->filter_low_id > ctx->filter_high_id) {
446 ctx->filter_low_id = 0;
447 ctx->filter_high_id = 0;
450 dom->private_data = ctx;
452 return NT_STATUS_OK;
454 failed:
455 talloc_free(ctx);
456 return ret;
459 struct idmap_tdb2_set_mapping_context {
460 const char *ksidstr;
461 const char *kidstr;
464 static NTSTATUS idmap_tdb2_set_mapping_action(struct db_context *db,
465 void *private_data)
467 TDB_DATA data;
468 NTSTATUS ret;
469 struct idmap_tdb2_set_mapping_context *state;
470 TALLOC_CTX *tmp_ctx = talloc_stackframe();
472 state = (struct idmap_tdb2_set_mapping_context *)private_data;
474 DEBUG(10, ("Storing %s <-> %s map\n", state->ksidstr, state->kidstr));
476 /* check wheter sid mapping is already present in db */
477 data = dbwrap_fetch_bystring(db, tmp_ctx, state->ksidstr);
478 if (data.dptr) {
479 ret = NT_STATUS_OBJECT_NAME_COLLISION;
480 goto done;
483 ret = dbwrap_store_bystring(db, state->ksidstr,
484 string_term_tdb_data(state->kidstr),
485 TDB_INSERT);
486 if (!NT_STATUS_IS_OK(ret)) {
487 DEBUG(0, ("Error storing SID -> ID: %s\n", nt_errstr(ret)));
488 goto done;
491 ret = dbwrap_store_bystring(db, state->kidstr,
492 string_term_tdb_data(state->ksidstr),
493 TDB_INSERT);
494 if (!NT_STATUS_IS_OK(ret)) {
495 DEBUG(0, ("Error storing ID -> SID: %s\n", nt_errstr(ret)));
496 /* try to remove the previous stored SID -> ID map */
497 dbwrap_delete_bystring(db, state->ksidstr);
498 goto done;
501 DEBUG(10,("Stored %s <-> %s\n", state->ksidstr, state->kidstr));
503 done:
504 talloc_free(tmp_ctx);
505 return ret;
510 run a script to perform a mapping
512 The script should the following command lines:
514 SIDTOID S-1-xxxx
515 IDTOSID UID xxxx
516 IDTOSID GID xxxx
518 and should return one of the following as a single line of text
519 UID:xxxx
520 GID:xxxx
521 SID:xxxx
522 ERR:xxxx
524 static NTSTATUS idmap_tdb2_script(struct idmap_tdb2_context *ctx, struct id_map *map,
525 const char *fmt, ...)
527 va_list ap;
528 char *cmd;
529 FILE *p;
530 char line[64];
531 unsigned long v;
533 cmd = talloc_asprintf(ctx, "%s ", idmap_tdb2_state.idmap_script);
534 NT_STATUS_HAVE_NO_MEMORY(cmd);
536 va_start(ap, fmt);
537 cmd = talloc_vasprintf_append(cmd, fmt, ap);
538 va_end(ap);
539 NT_STATUS_HAVE_NO_MEMORY(cmd);
541 p = popen(cmd, "r");
542 talloc_free(cmd);
543 if (p == NULL) {
544 return NT_STATUS_NONE_MAPPED;
547 if (fgets(line, sizeof(line)-1, p) == NULL) {
548 pclose(p);
549 return NT_STATUS_NONE_MAPPED;
551 pclose(p);
553 DEBUG(10,("idmap script gave: %s\n", line));
555 if (sscanf(line, "UID:%lu", &v) == 1) {
556 map->xid.id = v;
557 map->xid.type = ID_TYPE_UID;
558 } else if (sscanf(line, "GID:%lu", &v) == 1) {
559 map->xid.id = v;
560 map->xid.type = ID_TYPE_GID;
561 } else if (strncmp(line, "SID:S-", 6) == 0) {
562 if (!string_to_sid(map->sid, &line[4])) {
563 DEBUG(0,("Bad SID in '%s' from idmap script %s\n",
564 line, idmap_tdb2_state.idmap_script));
565 return NT_STATUS_NONE_MAPPED;
567 } else {
568 DEBUG(0,("Bad reply '%s' from idmap script %s\n",
569 line, idmap_tdb2_state.idmap_script));
570 return NT_STATUS_NONE_MAPPED;
573 return NT_STATUS_OK;
579 Single id to sid lookup function.
581 static NTSTATUS idmap_tdb2_id_to_sid(struct idmap_tdb2_context *ctx, struct id_map *map)
583 NTSTATUS ret;
584 TDB_DATA data;
585 char *keystr;
586 NTSTATUS status;
588 status = idmap_tdb2_open_db();
589 NT_STATUS_NOT_OK_RETURN(status);
591 if (!ctx || !map) {
592 return NT_STATUS_INVALID_PARAMETER;
595 /* apply filters before checking */
596 if ((ctx->filter_low_id && (map->xid.id < ctx->filter_low_id)) ||
597 (ctx->filter_high_id && (map->xid.id > ctx->filter_high_id))) {
598 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
599 map->xid.id, ctx->filter_low_id, ctx->filter_high_id));
600 return NT_STATUS_NONE_MAPPED;
603 switch (map->xid.type) {
605 case ID_TYPE_UID:
606 keystr = talloc_asprintf(ctx, "UID %lu", (unsigned long)map->xid.id);
607 break;
609 case ID_TYPE_GID:
610 keystr = talloc_asprintf(ctx, "GID %lu", (unsigned long)map->xid.id);
611 break;
613 default:
614 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
615 return NT_STATUS_INVALID_PARAMETER;
618 /* final SAFE_FREE safe */
619 data.dptr = NULL;
621 if (keystr == NULL) {
622 DEBUG(0, ("Out of memory!\n"));
623 ret = NT_STATUS_NO_MEMORY;
624 goto done;
627 DEBUG(10,("Fetching record %s\n", keystr));
629 /* Check if the mapping exists */
630 data = dbwrap_fetch_bystring(idmap_tdb2, keystr, keystr);
632 if (!data.dptr) {
633 char *sidstr;
634 struct idmap_tdb2_set_mapping_context store_state;
636 DEBUG(10,("Record %s not found\n", keystr));
637 if (idmap_tdb2_state.idmap_script == NULL) {
638 ret = NT_STATUS_NONE_MAPPED;
639 goto done;
642 ret = idmap_tdb2_script(ctx, map, "IDTOSID %s", keystr);
644 /* store it on shared storage */
645 if (!NT_STATUS_IS_OK(ret)) {
646 goto done;
649 sidstr = sid_string_talloc(keystr, map->sid);
650 if (!sidstr) {
651 ret = NT_STATUS_NO_MEMORY;
652 goto done;
655 store_state.ksidstr = sidstr;
656 store_state.kidstr = keystr;
658 ret = dbwrap_trans_do(idmap_tdb2, idmap_tdb2_set_mapping_action,
659 &store_state);
660 goto done;
663 if (!string_to_sid(map->sid, (const char *)data.dptr)) {
664 DEBUG(10,("INVALID SID (%s) in record %s\n",
665 (const char *)data.dptr, keystr));
666 ret = NT_STATUS_INTERNAL_DB_ERROR;
667 goto done;
670 DEBUG(10,("Found record %s -> %s\n", keystr, (const char *)data.dptr));
671 ret = NT_STATUS_OK;
673 done:
674 talloc_free(keystr);
675 return ret;
680 Single sid to id lookup function.
682 static NTSTATUS idmap_tdb2_sid_to_id(struct idmap_tdb2_context *ctx, struct id_map *map)
684 NTSTATUS ret;
685 TDB_DATA data;
686 char *keystr;
687 unsigned long rec_id = 0;
688 TALLOC_CTX *tmp_ctx = talloc_stackframe();
690 ret = idmap_tdb2_open_db();
691 NT_STATUS_NOT_OK_RETURN(ret);
693 keystr = sid_string_talloc(tmp_ctx, map->sid);
694 if (keystr == NULL) {
695 DEBUG(0, ("Out of memory!\n"));
696 ret = NT_STATUS_NO_MEMORY;
697 goto done;
700 DEBUG(10,("Fetching record %s\n", keystr));
702 /* Check if sid is present in database */
703 data = dbwrap_fetch_bystring(idmap_tdb2, tmp_ctx, keystr);
704 if (!data.dptr) {
705 char *idstr;
706 struct idmap_tdb2_set_mapping_context store_state;
708 DEBUG(10,(__location__ " Record %s not found\n", keystr));
710 if (idmap_tdb2_state.idmap_script == NULL) {
711 ret = NT_STATUS_NONE_MAPPED;
712 goto done;
715 ret = idmap_tdb2_script(ctx, map, "SIDTOID %s", keystr);
716 /* store it on shared storage */
717 if (!NT_STATUS_IS_OK(ret)) {
718 goto done;
721 /* apply filters before returning result */
722 if ((ctx->filter_low_id
723 && (map->xid.id < ctx->filter_low_id)) ||
724 (ctx->filter_high_id
725 && (map->xid.id > ctx->filter_high_id))) {
726 DEBUG(5, ("Script returned id (%u) out of range "
727 "(%u - %u). Filtered!\n",
728 map->xid.id,
729 ctx->filter_low_id, ctx->filter_high_id));
730 ret = NT_STATUS_NONE_MAPPED;
731 goto done;
734 idstr = talloc_asprintf(tmp_ctx, "%cID %lu",
735 map->xid.type == ID_TYPE_UID?'U':'G',
736 (unsigned long)map->xid.id);
737 if (idstr == NULL) {
738 ret = NT_STATUS_NO_MEMORY;
739 goto done;
742 store_state.ksidstr = keystr;
743 store_state.kidstr = idstr;
745 ret = dbwrap_trans_do(idmap_tdb2, idmap_tdb2_set_mapping_action,
746 &store_state);
747 goto done;
750 /* What type of record is this ? */
751 if (sscanf((const char *)data.dptr, "UID %lu", &rec_id) == 1) { /* Try a UID record. */
752 map->xid.id = rec_id;
753 map->xid.type = ID_TYPE_UID;
754 DEBUG(10,("Found uid record %s -> %s \n", keystr, (const char *)data.dptr ));
755 ret = NT_STATUS_OK;
757 } else if (sscanf((const char *)data.dptr, "GID %lu", &rec_id) == 1) { /* Try a GID record. */
758 map->xid.id = rec_id;
759 map->xid.type = ID_TYPE_GID;
760 DEBUG(10,("Found gid record %s -> %s \n", keystr, (const char *)data.dptr ));
761 ret = NT_STATUS_OK;
763 } else { /* Unknown record type ! */
764 DEBUG(2, ("Found INVALID record %s -> %s\n", keystr, (const char *)data.dptr));
765 ret = NT_STATUS_INTERNAL_DB_ERROR;
766 goto done;
769 /* apply filters before returning result */
770 if ((ctx->filter_low_id && (map->xid.id < ctx->filter_low_id)) ||
771 (ctx->filter_high_id && (map->xid.id > ctx->filter_high_id))) {
772 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
773 map->xid.id, ctx->filter_low_id, ctx->filter_high_id));
774 ret = NT_STATUS_NONE_MAPPED;
777 done:
778 talloc_free(tmp_ctx);
779 return ret;
783 lookup a set of unix ids.
785 static NTSTATUS idmap_tdb2_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
787 struct idmap_tdb2_context *ctx;
788 NTSTATUS ret;
789 int i;
791 /* initialize the status to avoid suprise */
792 for (i = 0; ids[i]; i++) {
793 ids[i]->status = ID_UNKNOWN;
796 ctx = talloc_get_type(dom->private_data, struct idmap_tdb2_context);
798 for (i = 0; ids[i]; i++) {
799 ret = idmap_tdb2_id_to_sid(ctx, ids[i]);
800 if ( ! NT_STATUS_IS_OK(ret)) {
802 /* if it is just a failed mapping continue */
803 if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
805 /* make sure it is marked as unmapped */
806 ids[i]->status = ID_UNMAPPED;
807 continue;
810 /* some fatal error occurred, return immediately */
811 goto done;
814 /* all ok, id is mapped */
815 ids[i]->status = ID_MAPPED;
818 ret = NT_STATUS_OK;
820 done:
821 return ret;
825 lookup a set of sids.
827 static NTSTATUS idmap_tdb2_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
829 struct idmap_tdb2_context *ctx;
830 NTSTATUS ret;
831 int i;
833 /* initialize the status to avoid suprise */
834 for (i = 0; ids[i]; i++) {
835 ids[i]->status = ID_UNKNOWN;
838 ctx = talloc_get_type(dom->private_data, struct idmap_tdb2_context);
840 for (i = 0; ids[i]; i++) {
841 ret = idmap_tdb2_sid_to_id(ctx, ids[i]);
842 if ( ! NT_STATUS_IS_OK(ret)) {
844 /* if it is just a failed mapping continue */
845 if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
847 /* make sure it is marked as unmapped */
848 ids[i]->status = ID_UNMAPPED;
849 continue;
852 /* some fatal error occurred, return immediately */
853 goto done;
856 /* all ok, id is mapped */
857 ids[i]->status = ID_MAPPED;
860 ret = NT_STATUS_OK;
862 done:
863 return ret;
868 set a mapping.
871 static NTSTATUS idmap_tdb2_set_mapping(struct idmap_domain *dom, const struct id_map *map)
873 struct idmap_tdb2_context *ctx;
874 NTSTATUS ret;
875 char *ksidstr, *kidstr;
876 struct idmap_tdb2_set_mapping_context state;
878 if (!map || !map->sid) {
879 return NT_STATUS_INVALID_PARAMETER;
882 ksidstr = kidstr = NULL;
884 /* TODO: should we filter a set_mapping using low/high filters ? */
886 ctx = talloc_get_type(dom->private_data, struct idmap_tdb2_context);
888 switch (map->xid.type) {
890 case ID_TYPE_UID:
891 kidstr = talloc_asprintf(ctx, "UID %lu", (unsigned long)map->xid.id);
892 break;
894 case ID_TYPE_GID:
895 kidstr = talloc_asprintf(ctx, "GID %lu", (unsigned long)map->xid.id);
896 break;
898 default:
899 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
900 return NT_STATUS_INVALID_PARAMETER;
903 if (kidstr == NULL) {
904 DEBUG(0, ("ERROR: Out of memory!\n"));
905 ret = NT_STATUS_NO_MEMORY;
906 goto done;
909 ksidstr = sid_string_talloc(ctx, map->sid);
910 if (ksidstr == NULL) {
911 DEBUG(0, ("Out of memory!\n"));
912 ret = NT_STATUS_NO_MEMORY;
913 goto done;
916 state.ksidstr = ksidstr;
917 state.kidstr = kidstr;
919 ret = dbwrap_trans_do(idmap_tdb2, idmap_tdb2_set_mapping_action,
920 &state);
922 done:
923 talloc_free(ksidstr);
924 talloc_free(kidstr);
925 return ret;
929 remove a mapping.
931 static NTSTATUS idmap_tdb2_remove_mapping(struct idmap_domain *dom, const struct id_map *map)
933 /* not supported as it would invalidate the cache tdb on other
934 nodes */
935 DEBUG(0,("idmap_tdb2_remove_mapping not supported\n"));
936 return NT_STATUS_NOT_SUPPORTED;
940 Close the idmap tdb instance
942 static NTSTATUS idmap_tdb2_close(struct idmap_domain *dom)
944 /* don't do anything */
945 return NT_STATUS_OK;
950 Dump all mappings out
952 static NTSTATUS idmap_tdb2_dump_data(struct idmap_domain *dom, struct id_map **maps, int *num_maps)
954 DEBUG(0,("idmap_tdb2_dump_data not supported\n"));
955 return NT_STATUS_NOT_SUPPORTED;
958 static struct idmap_methods db_methods = {
959 .init = idmap_tdb2_db_init,
960 .unixids_to_sids = idmap_tdb2_unixids_to_sids,
961 .sids_to_unixids = idmap_tdb2_sids_to_unixids,
962 .set_mapping = idmap_tdb2_set_mapping,
963 .remove_mapping = idmap_tdb2_remove_mapping,
964 .dump_data = idmap_tdb2_dump_data,
965 .close_fn = idmap_tdb2_close
968 static struct idmap_alloc_methods db_alloc_methods = {
969 .init = idmap_tdb2_alloc_init,
970 .allocate_id = idmap_tdb2_allocate_id,
971 .get_id_hwm = idmap_tdb2_get_hwm,
972 .set_id_hwm = idmap_tdb2_set_hwm,
973 .close_fn = idmap_tdb2_alloc_close
976 NTSTATUS idmap_tdb2_init(void)
978 NTSTATUS ret;
980 /* register both backends */
981 ret = smb_register_idmap_alloc(SMB_IDMAP_INTERFACE_VERSION, "tdb2", &db_alloc_methods);
982 if (! NT_STATUS_IS_OK(ret)) {
983 DEBUG(0, ("Unable to register idmap alloc tdb2 module: %s\n", get_friendly_nt_error_msg(ret)));
984 return ret;
987 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "tdb2", &db_methods);