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.
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
;
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)
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
;
95 open the permanent tdb
97 static NTSTATUS
idmap_tdb2_open_db(void)
102 /* its already open */
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",
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)
137 /* see if a idmap script is configured */
138 idmap_tdb2_state
.idmap_script
= lp_parm_const_string(-1, "idmap",
141 if (idmap_tdb2_state
.idmap_script
) {
142 DEBUG(1, ("using idmap script '%s'\n",
143 idmap_tdb2_state
.idmap_script
));
148 status
= idmap_tdb2_load_ranges();
149 if (!NT_STATUS_IS_OK(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 "
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 "
173 return NT_STATUS_INTERNAL_DB_ERROR
;
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
197 struct idmap_tdb2_allocate_id_context
{
204 static NTSTATUS
idmap_tdb2_allocate_id_action(struct db_context
*db
,
208 struct idmap_tdb2_allocate_id_context
*state
;
211 state
= (struct idmap_tdb2_allocate_id_context
*)private_data
;
213 hwm
= dbwrap_fetch_int32(db
, state
->hwmkey
);
215 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
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
;
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!",
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
;
250 static NTSTATUS
idmap_tdb2_allocate_id(struct unixid
*xid
)
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 */
268 high_hwm
= idmap_tdb2_state
.high_uid
;
274 high_hwm
= idmap_tdb2_state
.high_gid
;
278 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
279 return NT_STATUS_INVALID_PARAMETER
;
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
,
290 if (NT_STATUS_IS_OK(status
)) {
292 DEBUG(10,("New %s = %d\n", hwmtype
, hwm
));
294 DEBUG(1, ("Error allocating a new %s\n", hwmtype
));
301 Get current highest id.
303 static NTSTATUS
idmap_tdb2_get_hwm(struct unixid
*xid
)
311 status
= idmap_tdb2_open_db();
312 NT_STATUS_NOT_OK_RETURN(status
);
314 /* Get current high water mark */
320 high_hwm
= idmap_tdb2_state
.high_uid
;
326 high_hwm
= idmap_tdb2_state
.high_gid
;
330 return NT_STATUS_INVALID_PARAMETER
;
333 if ((hwm
= dbwrap_fetch_int32(idmap_tdb2
, hwmkey
)) == -1) {
334 return NT_STATUS_INTERNAL_DB_ERROR
;
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
));
351 static NTSTATUS
idmap_tdb2_set_hwm(struct unixid
*xid
)
353 /* not supported, or we would invalidate the cache tdb on
355 DEBUG(0,("idmap_tdb2_set_hwm not supported\n"));
356 return NT_STATUS_NOT_SUPPORTED
;
362 static NTSTATUS
idmap_tdb2_alloc_close(void)
364 /* don't actually close it */
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
,
383 struct idmap_tdb2_context
*ctx
;
386 status
= idmap_tdb2_open_db();
387 NT_STATUS_NOT_OK_RETURN(status
);
389 ctx
= talloc(dom
, struct idmap_tdb2_context
);
391 DEBUG(0, ("Out of memory!\n"));
392 return NT_STATUS_NO_MEMORY
;
395 if (strequal(dom
->name
, "*")) {
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
;
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 "
416 ctx
->filter_low_id
= MAX(ctx
->filter_low_id
,
418 ctx
->filter_high_id
= MIN(ctx
->filter_high_id
,
422 DEBUG(3, ("Warning: 'idmap gid' not set!\n"));
425 char *config_option
= NULL
;
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
;
434 range
= lp_parm_const_string(-1, config_option
, "range", NULL
);
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
;
459 struct idmap_tdb2_set_mapping_context
{
464 static NTSTATUS
idmap_tdb2_set_mapping_action(struct db_context
*db
,
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
);
479 ret
= NT_STATUS_OBJECT_NAME_COLLISION
;
483 ret
= dbwrap_store_bystring(db
, state
->ksidstr
,
484 string_term_tdb_data(state
->kidstr
),
486 if (!NT_STATUS_IS_OK(ret
)) {
487 DEBUG(0, ("Error storing SID -> ID: %s\n", nt_errstr(ret
)));
491 ret
= dbwrap_store_bystring(db
, state
->kidstr
,
492 string_term_tdb_data(state
->ksidstr
),
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
);
501 DEBUG(10,("Stored %s <-> %s\n", state
->ksidstr
, state
->kidstr
));
504 talloc_free(tmp_ctx
);
510 run a script to perform a mapping
512 The script should the following command lines:
518 and should return one of the following as a single line of text
524 static NTSTATUS
idmap_tdb2_script(struct idmap_tdb2_context
*ctx
, struct id_map
*map
,
525 const char *fmt
, ...)
533 cmd
= talloc_asprintf(ctx
, "%s ", idmap_tdb2_state
.idmap_script
);
534 NT_STATUS_HAVE_NO_MEMORY(cmd
);
537 cmd
= talloc_vasprintf_append(cmd
, fmt
, ap
);
539 NT_STATUS_HAVE_NO_MEMORY(cmd
);
544 return NT_STATUS_NONE_MAPPED
;
547 if (fgets(line
, sizeof(line
)-1, p
) == NULL
) {
549 return NT_STATUS_NONE_MAPPED
;
553 DEBUG(10,("idmap script gave: %s\n", line
));
555 if (sscanf(line
, "UID:%lu", &v
) == 1) {
557 map
->xid
.type
= ID_TYPE_UID
;
558 } else if (sscanf(line
, "GID:%lu", &v
) == 1) {
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
;
568 DEBUG(0,("Bad reply '%s' from idmap script %s\n",
569 line
, idmap_tdb2_state
.idmap_script
));
570 return NT_STATUS_NONE_MAPPED
;
579 Single id to sid lookup function.
581 static NTSTATUS
idmap_tdb2_id_to_sid(struct idmap_tdb2_context
*ctx
, struct id_map
*map
)
588 status
= idmap_tdb2_open_db();
589 NT_STATUS_NOT_OK_RETURN(status
);
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
) {
606 keystr
= talloc_asprintf(ctx
, "UID %lu", (unsigned long)map
->xid
.id
);
610 keystr
= talloc_asprintf(ctx
, "GID %lu", (unsigned long)map
->xid
.id
);
614 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map
->xid
.type
));
615 return NT_STATUS_INVALID_PARAMETER
;
618 /* final SAFE_FREE safe */
621 if (keystr
== NULL
) {
622 DEBUG(0, ("Out of memory!\n"));
623 ret
= NT_STATUS_NO_MEMORY
;
627 DEBUG(10,("Fetching record %s\n", keystr
));
629 /* Check if the mapping exists */
630 data
= dbwrap_fetch_bystring(idmap_tdb2
, keystr
, keystr
);
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
;
642 ret
= idmap_tdb2_script(ctx
, map
, "IDTOSID %s", keystr
);
644 /* store it on shared storage */
645 if (!NT_STATUS_IS_OK(ret
)) {
649 sidstr
= sid_string_talloc(keystr
, map
->sid
);
651 ret
= NT_STATUS_NO_MEMORY
;
655 store_state
.ksidstr
= sidstr
;
656 store_state
.kidstr
= keystr
;
658 ret
= dbwrap_trans_do(idmap_tdb2
, idmap_tdb2_set_mapping_action
,
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
;
670 DEBUG(10,("Found record %s -> %s\n", keystr
, (const char *)data
.dptr
));
680 Single sid to id lookup function.
682 static NTSTATUS
idmap_tdb2_sid_to_id(struct idmap_tdb2_context
*ctx
, struct id_map
*map
)
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
;
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
);
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
;
715 ret
= idmap_tdb2_script(ctx
, map
, "SIDTOID %s", keystr
);
716 /* store it on shared storage */
717 if (!NT_STATUS_IS_OK(ret
)) {
721 idstr
= talloc_asprintf(tmp_ctx
, "%cID %lu",
722 map
->xid
.type
== ID_TYPE_UID
?'U':'G',
723 (unsigned long)map
->xid
.id
);
725 ret
= NT_STATUS_NO_MEMORY
;
729 store_state
.ksidstr
= keystr
;
730 store_state
.kidstr
= idstr
;
732 ret
= dbwrap_trans_do(idmap_tdb2
, idmap_tdb2_set_mapping_action
,
737 /* What type of record is this ? */
738 if (sscanf((const char *)data
.dptr
, "UID %lu", &rec_id
) == 1) { /* Try a UID record. */
739 map
->xid
.id
= rec_id
;
740 map
->xid
.type
= ID_TYPE_UID
;
741 DEBUG(10,("Found uid record %s -> %s \n", keystr
, (const char *)data
.dptr
));
744 } else if (sscanf((const char *)data
.dptr
, "GID %lu", &rec_id
) == 1) { /* Try a GID record. */
745 map
->xid
.id
= rec_id
;
746 map
->xid
.type
= ID_TYPE_GID
;
747 DEBUG(10,("Found gid record %s -> %s \n", keystr
, (const char *)data
.dptr
));
750 } else { /* Unknown record type ! */
751 DEBUG(2, ("Found INVALID record %s -> %s\n", keystr
, (const char *)data
.dptr
));
752 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
755 /* apply filters before returning result */
756 if ((ctx
->filter_low_id
&& (map
->xid
.id
< ctx
->filter_low_id
)) ||
757 (ctx
->filter_high_id
&& (map
->xid
.id
> ctx
->filter_high_id
))) {
758 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
759 map
->xid
.id
, ctx
->filter_low_id
, ctx
->filter_high_id
));
760 ret
= NT_STATUS_NONE_MAPPED
;
764 talloc_free(tmp_ctx
);
769 lookup a set of unix ids.
771 static NTSTATUS
idmap_tdb2_unixids_to_sids(struct idmap_domain
*dom
, struct id_map
**ids
)
773 struct idmap_tdb2_context
*ctx
;
777 /* initialize the status to avoid suprise */
778 for (i
= 0; ids
[i
]; i
++) {
779 ids
[i
]->status
= ID_UNKNOWN
;
782 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb2_context
);
784 for (i
= 0; ids
[i
]; i
++) {
785 ret
= idmap_tdb2_id_to_sid(ctx
, ids
[i
]);
786 if ( ! NT_STATUS_IS_OK(ret
)) {
788 /* if it is just a failed mapping continue */
789 if (NT_STATUS_EQUAL(ret
, NT_STATUS_NONE_MAPPED
)) {
791 /* make sure it is marked as unmapped */
792 ids
[i
]->status
= ID_UNMAPPED
;
796 /* some fatal error occurred, return immediately */
800 /* all ok, id is mapped */
801 ids
[i
]->status
= ID_MAPPED
;
811 lookup a set of sids.
813 static NTSTATUS
idmap_tdb2_sids_to_unixids(struct idmap_domain
*dom
, struct id_map
**ids
)
815 struct idmap_tdb2_context
*ctx
;
819 /* initialize the status to avoid suprise */
820 for (i
= 0; ids
[i
]; i
++) {
821 ids
[i
]->status
= ID_UNKNOWN
;
824 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb2_context
);
826 for (i
= 0; ids
[i
]; i
++) {
827 ret
= idmap_tdb2_sid_to_id(ctx
, ids
[i
]);
828 if ( ! NT_STATUS_IS_OK(ret
)) {
830 /* if it is just a failed mapping continue */
831 if (NT_STATUS_EQUAL(ret
, NT_STATUS_NONE_MAPPED
)) {
833 /* make sure it is marked as unmapped */
834 ids
[i
]->status
= ID_UNMAPPED
;
838 /* some fatal error occurred, return immediately */
842 /* all ok, id is mapped */
843 ids
[i
]->status
= ID_MAPPED
;
857 static NTSTATUS
idmap_tdb2_set_mapping(struct idmap_domain
*dom
, const struct id_map
*map
)
859 struct idmap_tdb2_context
*ctx
;
861 char *ksidstr
, *kidstr
;
862 struct idmap_tdb2_set_mapping_context state
;
864 if (!map
|| !map
->sid
) {
865 return NT_STATUS_INVALID_PARAMETER
;
868 ksidstr
= kidstr
= NULL
;
870 /* TODO: should we filter a set_mapping using low/high filters ? */
872 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb2_context
);
874 switch (map
->xid
.type
) {
877 kidstr
= talloc_asprintf(ctx
, "UID %lu", (unsigned long)map
->xid
.id
);
881 kidstr
= talloc_asprintf(ctx
, "GID %lu", (unsigned long)map
->xid
.id
);
885 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map
->xid
.type
));
886 return NT_STATUS_INVALID_PARAMETER
;
889 if (kidstr
== NULL
) {
890 DEBUG(0, ("ERROR: Out of memory!\n"));
891 ret
= NT_STATUS_NO_MEMORY
;
895 if (!(ksidstr
= sid_string_talloc(ctx
, map
->sid
))) {
896 DEBUG(0, ("Out of memory!\n"));
897 ret
= NT_STATUS_NO_MEMORY
;
901 state
.ksidstr
= ksidstr
;
902 state
.kidstr
= kidstr
;
904 ret
= dbwrap_trans_do(idmap_tdb2
, idmap_tdb2_set_mapping_action
,
908 talloc_free(ksidstr
);
916 static NTSTATUS
idmap_tdb2_remove_mapping(struct idmap_domain
*dom
, const struct id_map
*map
)
918 /* not supported as it would invalidate the cache tdb on other
920 DEBUG(0,("idmap_tdb2_remove_mapping not supported\n"));
921 return NT_STATUS_NOT_SUPPORTED
;
925 Close the idmap tdb instance
927 static NTSTATUS
idmap_tdb2_close(struct idmap_domain
*dom
)
929 /* don't do anything */
935 Dump all mappings out
937 static NTSTATUS
idmap_tdb2_dump_data(struct idmap_domain
*dom
, struct id_map
**maps
, int *num_maps
)
939 DEBUG(0,("idmap_tdb2_dump_data not supported\n"));
940 return NT_STATUS_NOT_SUPPORTED
;
943 static struct idmap_methods db_methods
= {
944 .init
= idmap_tdb2_db_init
,
945 .unixids_to_sids
= idmap_tdb2_unixids_to_sids
,
946 .sids_to_unixids
= idmap_tdb2_sids_to_unixids
,
947 .set_mapping
= idmap_tdb2_set_mapping
,
948 .remove_mapping
= idmap_tdb2_remove_mapping
,
949 .dump_data
= idmap_tdb2_dump_data
,
950 .close_fn
= idmap_tdb2_close
953 static struct idmap_alloc_methods db_alloc_methods
= {
954 .init
= idmap_tdb2_alloc_init
,
955 .allocate_id
= idmap_tdb2_allocate_id
,
956 .get_id_hwm
= idmap_tdb2_get_hwm
,
957 .set_id_hwm
= idmap_tdb2_set_hwm
,
958 .close_fn
= idmap_tdb2_alloc_close
961 NTSTATUS
idmap_tdb2_init(void)
965 /* register both backends */
966 ret
= smb_register_idmap_alloc(SMB_IDMAP_INTERFACE_VERSION
, "tdb2", &db_alloc_methods
);
967 if (! NT_STATUS_IS_OK(ret
)) {
968 DEBUG(0, ("Unable to register idmap alloc tdb2 module: %s\n", get_friendly_nt_error_msg(ret
)));
972 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
, "tdb2", &db_methods
);