2 Unix SMB/CIFS implementation.
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
8 Copyright (C) Jeremy Allison 2006
9 Copyright (C) Simo Sorce 2003-2006
10 Copyright (C) Michael Adam 2009-2010
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "system/filesys.h"
32 #include "../libcli/security/security.h"
36 #define DBGC_CLASS DBGC_IDMAP
38 /* idmap version determines auto-conversion - this is the database
39 structure version specifier. */
41 #define IDMAP_VERSION 2
43 struct idmap_tdb_context
{
44 struct db_context
*db
;
45 struct idmap_rw_ops
*rw_ops
;
48 /* High water mark keys */
49 #define HWM_GROUP "GROUP HWM"
50 #define HWM_USER "USER HWM"
52 struct convert_fn_state
{
53 struct db_context
*db
;
57 /*****************************************************************************
58 For idmap conversion: convert one record to new format
59 Ancient versions (eg 2.2.3a) of winbindd_idmap.tdb mapped DOMAINNAME/rid
61 *****************************************************************************/
62 static int convert_fn(struct db_record
*rec
, void *private_data
)
64 struct winbindd_domain
*domain
;
72 struct convert_fn_state
*s
= (struct convert_fn_state
*)private_data
;
74 DEBUG(10,("Converting %s\n", (const char *)rec
->key
.dptr
));
76 p
= strchr((const char *)rec
->key
.dptr
, '/');
81 fstrcpy(dom_name
, (const char *)rec
->key
.dptr
);
84 domain
= find_domain_from_name(dom_name
);
86 /* We must delete the old record. */
87 DEBUG(0,("Unable to find domain %s\n", dom_name
));
88 DEBUG(0,("deleting record %s\n", (const char *)rec
->key
.dptr
));
90 status
= rec
->delete_rec(rec
);
91 if (!NT_STATUS_IS_OK(status
)) {
92 DEBUG(0, ("Unable to delete record %s:%s\n",
93 (const char *)rec
->key
.dptr
,
104 sid_compose(&sid
, &domain
->sid
, rid
);
106 sid_to_fstring(keystr
, &sid
);
107 key2
= string_term_tdb_data(keystr
);
109 status
= dbwrap_store(s
->db
, key2
, rec
->value
, TDB_INSERT
);
110 if (!NT_STATUS_IS_OK(status
)) {
111 DEBUG(0,("Unable to add record %s:%s\n",
112 (const char *)key2
.dptr
,
118 status
= dbwrap_store(s
->db
, rec
->value
, key2
, TDB_REPLACE
);
119 if (!NT_STATUS_IS_OK(status
)) {
120 DEBUG(0,("Unable to update record %s:%s\n",
121 (const char *)rec
->value
.dptr
,
127 status
= rec
->delete_rec(rec
);
128 if (!NT_STATUS_IS_OK(status
)) {
129 DEBUG(0,("Unable to delete record %s:%s\n",
130 (const char *)rec
->key
.dptr
,
139 /*****************************************************************************
140 Convert the idmap database from an older version.
141 *****************************************************************************/
143 static bool idmap_tdb_upgrade(struct idmap_domain
*dom
, struct db_context
*db
)
146 bool bigendianheader
;
147 struct convert_fn_state s
;
149 DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
151 bigendianheader
= (db
->get_flags(db
) & TDB_BIGENDIAN
) ? True
: False
;
153 vers
= dbwrap_fetch_int32(db
, "IDMAP_VERSION");
155 if (((vers
== -1) && bigendianheader
) || (IREV(vers
) == IDMAP_VERSION
)) {
156 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
158 * high and low records were created on a
159 * big endian machine and will need byte-reversing.
164 wm
= dbwrap_fetch_int32(db
, HWM_USER
);
172 if (dbwrap_store_int32(db
, HWM_USER
, wm
) == -1) {
173 DEBUG(0, ("Unable to byteswap user hwm in idmap database\n"));
177 wm
= dbwrap_fetch_int32(db
, HWM_GROUP
);
184 if (dbwrap_store_int32(db
, HWM_GROUP
, wm
) == -1) {
185 DEBUG(0, ("Unable to byteswap group hwm in idmap database\n"));
193 /* the old format stored as DOMAIN/rid - now we store the SID direct */
194 db
->traverse(db
, convert_fn
, &s
);
197 DEBUG(0, ("Problem during conversion\n"));
201 if (dbwrap_store_int32(db
, "IDMAP_VERSION", IDMAP_VERSION
) == -1) {
202 DEBUG(0, ("Unable to store idmap version in database\n"));
209 static NTSTATUS
idmap_tdb_init_hwm(struct idmap_domain
*dom
)
214 bool update_uid
= false;
215 bool update_gid
= false;
216 struct idmap_tdb_context
*ctx
;
218 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
220 low_uid
= dbwrap_fetch_int32(ctx
->db
, HWM_USER
);
221 if (low_uid
== -1 || low_uid
< dom
->low_id
) {
225 low_gid
= dbwrap_fetch_int32(ctx
->db
, HWM_GROUP
);
226 if (low_gid
== -1 || low_gid
< dom
->low_id
) {
230 if (!update_uid
&& !update_gid
) {
234 if (ctx
->db
->transaction_start(ctx
->db
) != 0) {
235 DEBUG(0, ("Unable to start upgrade transaction!\n"));
236 return NT_STATUS_INTERNAL_DB_ERROR
;
240 ret
= dbwrap_store_int32(ctx
->db
, HWM_USER
, dom
->low_id
);
242 ctx
->db
->transaction_cancel(ctx
->db
);
243 DEBUG(0, ("Unable to initialise user hwm in idmap "
245 return NT_STATUS_INTERNAL_DB_ERROR
;
250 ret
= dbwrap_store_int32(ctx
->db
, HWM_GROUP
, dom
->low_id
);
252 ctx
->db
->transaction_cancel(ctx
->db
);
253 DEBUG(0, ("Unable to initialise group hwm in idmap "
255 return NT_STATUS_INTERNAL_DB_ERROR
;
259 if (ctx
->db
->transaction_commit(ctx
->db
) != 0) {
260 DEBUG(0, ("Unable to commit upgrade transaction!\n"));
261 return NT_STATUS_INTERNAL_DB_ERROR
;
267 static NTSTATUS
idmap_tdb_open_db(struct idmap_domain
*dom
)
271 char *tdbfile
= NULL
;
272 struct db_context
*db
= NULL
;
274 bool config_error
= false;
275 struct idmap_tdb_context
*ctx
;
277 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
280 /* it is already open */
284 /* use our own context here */
285 mem_ctx
= talloc_stackframe();
287 /* use the old database if present */
288 tdbfile
= state_path("winbindd_idmap.tdb");
290 DEBUG(0, ("Out of memory!\n"));
291 ret
= NT_STATUS_NO_MEMORY
;
295 DEBUG(10,("Opening tdbfile %s\n", tdbfile
));
297 /* Open idmap repository */
298 db
= db_open(mem_ctx
, tdbfile
, 0, TDB_DEFAULT
, O_RDWR
| O_CREAT
, 0644);
300 DEBUG(0, ("Unable to open idmap database\n"));
301 ret
= NT_STATUS_UNSUCCESSFUL
;
305 /* check against earlier versions */
306 version
= dbwrap_fetch_int32(db
, "IDMAP_VERSION");
307 if (version
!= IDMAP_VERSION
) {
309 DEBUG(0,("Upgrade of IDMAP_VERSION from %d to %d is not "
310 "possible with incomplete configuration\n",
311 version
, IDMAP_VERSION
));
312 ret
= NT_STATUS_UNSUCCESSFUL
;
315 if (db
->transaction_start(db
) != 0) {
316 DEBUG(0, ("Unable to start upgrade transaction!\n"));
317 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
321 if (!idmap_tdb_upgrade(dom
, db
)) {
322 db
->transaction_cancel(db
);
323 DEBUG(0, ("Unable to open idmap database, it's in an old format, and upgrade failed!\n"));
324 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
328 if (db
->transaction_commit(db
) != 0) {
329 DEBUG(0, ("Unable to commit upgrade transaction!\n"));
330 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
335 ctx
->db
= talloc_move(ctx
, &db
);
337 ret
= idmap_tdb_init_hwm(dom
);
340 talloc_free(mem_ctx
);
344 /**********************************************************************
345 IDMAP ALLOC TDB BACKEND
346 **********************************************************************/
348 /**********************************
350 **********************************/
352 struct idmap_tdb_allocate_id_context
{
359 static NTSTATUS
idmap_tdb_allocate_id_action(struct db_context
*db
,
363 struct idmap_tdb_allocate_id_context
*state
;
366 state
= (struct idmap_tdb_allocate_id_context
*)private_data
;
368 hwm
= dbwrap_fetch_int32(db
, state
->hwmkey
);
370 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
374 /* check it is in the range */
375 if (hwm
> state
->high_hwm
) {
376 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
377 state
->hwmtype
, (unsigned long)state
->high_hwm
));
378 ret
= NT_STATUS_UNSUCCESSFUL
;
382 /* fetch a new id and increment it */
383 ret
= dbwrap_trans_change_uint32_atomic(db
, state
->hwmkey
, &hwm
, 1);
384 if (!NT_STATUS_IS_OK(ret
)) {
385 DEBUG(0, ("Fatal error while fetching a new %s value: %s\n!",
386 state
->hwmtype
, nt_errstr(ret
)));
390 /* recheck it is in the range */
391 if (hwm
> state
->high_hwm
) {
392 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
393 state
->hwmtype
, (unsigned long)state
->high_hwm
));
394 ret
= NT_STATUS_UNSUCCESSFUL
;
405 static NTSTATUS
idmap_tdb_allocate_id(struct idmap_domain
*dom
,
413 struct idmap_tdb_allocate_id_context state
;
414 struct idmap_tdb_context
*ctx
;
416 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
418 /* Get current high water mark */
432 DEBUG(2, ("Invalid ID type (0x%x)\n", xid
->type
));
433 return NT_STATUS_INVALID_PARAMETER
;
436 high_hwm
= dom
->high_id
;
439 state
.high_hwm
= high_hwm
;
440 state
.hwmtype
= hwmtype
;
441 state
.hwmkey
= hwmkey
;
443 status
= dbwrap_trans_do(ctx
->db
, idmap_tdb_allocate_id_action
,
446 if (NT_STATUS_IS_OK(status
)) {
448 DEBUG(10,("New %s = %d\n", hwmtype
, state
.hwm
));
450 DEBUG(1, ("Error allocating a new %s\n", hwmtype
));
457 * Allocate a new unix-ID.
458 * For now this is for the default idmap domain only.
459 * Should be extended later on.
461 static NTSTATUS
idmap_tdb_get_new_id(struct idmap_domain
*dom
,
466 if (!strequal(dom
->name
, "*")) {
467 DEBUG(3, ("idmap_tdb_get_new_id: "
468 "Refusing allocation of a new unixid for domain'%s'. "
469 "Currently only supported for the default "
472 return NT_STATUS_NOT_IMPLEMENTED
;
475 ret
= idmap_tdb_allocate_id(dom
, id
);
480 /**********************************************************************
481 IDMAP MAPPING TDB BACKEND
482 **********************************************************************/
484 /*****************************
485 Initialise idmap database.
486 *****************************/
488 static NTSTATUS
idmap_tdb_set_mapping(struct idmap_domain
*dom
,
489 const struct id_map
*map
);
491 static NTSTATUS
idmap_tdb_db_init(struct idmap_domain
*dom
)
494 struct idmap_tdb_context
*ctx
;
496 DEBUG(10, ("idmap_tdb_db_init called for domain '%s'\n", dom
->name
));
498 ctx
= talloc_zero(dom
, struct idmap_tdb_context
);
500 DEBUG(0, ("Out of memory!\n"));
501 return NT_STATUS_NO_MEMORY
;
504 /* load backend specific configuration here: */
506 if (strequal(dom
->name
, "*")) {
511 ctx
->rw_ops
= talloc_zero(ctx
, struct idmap_rw_ops
);
512 if (ctx
->rw_ops
== NULL
) {
513 DEBUG(0, ("Out of memory!\n"));
514 ret
= NT_STATUS_NO_MEMORY
;
518 ctx
->rw_ops
->get_new_id
= idmap_tdb_get_new_id
;
519 ctx
->rw_ops
->set_mapping
= idmap_tdb_set_mapping
;
521 dom
->private_data
= ctx
;
523 ret
= idmap_tdb_open_db(dom
);
524 if ( ! NT_STATUS_IS_OK(ret
)) {
537 * store a mapping in the database
540 struct idmap_tdb_set_mapping_context
{
545 static NTSTATUS
idmap_tdb_set_mapping_action(struct db_context
*db
,
549 struct idmap_tdb_set_mapping_context
*state
;
551 state
= (struct idmap_tdb_set_mapping_context
*)private_data
;
553 DEBUG(10, ("Storing %s <-> %s map\n", state
->ksidstr
, state
->kidstr
));
555 ret
= dbwrap_store_bystring(db
, state
->ksidstr
,
556 string_term_tdb_data(state
->kidstr
),
558 if (!NT_STATUS_IS_OK(ret
)) {
559 DEBUG(0, ("Error storing SID -> ID (%s -> %s): %s\n",
560 state
->ksidstr
, state
->kidstr
, nt_errstr(ret
)));
564 ret
= dbwrap_store_bystring(db
, state
->kidstr
,
565 string_term_tdb_data(state
->ksidstr
),
567 if (!NT_STATUS_IS_OK(ret
)) {
568 DEBUG(0, ("Error storing ID -> SID (%s -> %s): %s\n",
569 state
->kidstr
, state
->ksidstr
, nt_errstr(ret
)));
573 DEBUG(10,("Stored %s <-> %s\n", state
->ksidstr
, state
->kidstr
));
580 static NTSTATUS
idmap_tdb_set_mapping(struct idmap_domain
*dom
,
581 const struct id_map
*map
)
583 struct idmap_tdb_context
*ctx
;
585 char *ksidstr
, *kidstr
;
586 struct idmap_tdb_set_mapping_context state
;
588 if (!map
|| !map
->sid
) {
589 return NT_STATUS_INVALID_PARAMETER
;
592 ksidstr
= kidstr
= NULL
;
594 /* TODO: should we filter a set_mapping using low/high filters ? */
596 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
598 switch (map
->xid
.type
) {
601 kidstr
= talloc_asprintf(ctx
, "UID %lu",
602 (unsigned long)map
->xid
.id
);
606 kidstr
= talloc_asprintf(ctx
, "GID %lu",
607 (unsigned long)map
->xid
.id
);
611 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map
->xid
.type
));
612 return NT_STATUS_INVALID_PARAMETER
;
615 if (kidstr
== NULL
) {
616 DEBUG(0, ("ERROR: Out of memory!\n"));
617 ret
= NT_STATUS_NO_MEMORY
;
621 ksidstr
= sid_string_talloc(ctx
, map
->sid
);
622 if (ksidstr
== NULL
) {
623 DEBUG(0, ("Out of memory!\n"));
624 ret
= NT_STATUS_NO_MEMORY
;
628 state
.ksidstr
= ksidstr
;
629 state
.kidstr
= kidstr
;
631 ret
= dbwrap_trans_do(ctx
->db
, idmap_tdb_set_mapping_action
, &state
);
634 talloc_free(ksidstr
);
640 * Create a new mapping for an unmapped SID, also allocating a new ID.
641 * This should be run inside a transaction.
644 * Properly integrate this with multi domain idmap config:
645 * Currently, the allocator is default-config only.
647 static NTSTATUS
idmap_tdb_new_mapping(struct idmap_domain
*dom
, struct id_map
*map
)
650 struct idmap_tdb_context
*ctx
;
652 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
654 ret
= idmap_rw_new_mapping(dom
, ctx
->rw_ops
, map
);
660 /**********************************
661 Single id to sid lookup function.
662 **********************************/
664 static NTSTATUS
idmap_tdb_id_to_sid(struct idmap_domain
*dom
, struct id_map
*map
)
669 struct idmap_tdb_context
*ctx
;
672 return NT_STATUS_INVALID_PARAMETER
;
675 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
677 /* apply filters before checking */
678 if (!idmap_unix_id_is_in_range(map
->xid
.id
, dom
)) {
679 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
680 map
->xid
.id
, dom
->low_id
, dom
->high_id
));
681 return NT_STATUS_NONE_MAPPED
;
684 switch (map
->xid
.type
) {
687 keystr
= talloc_asprintf(ctx
, "UID %lu", (unsigned long)map
->xid
.id
);
691 keystr
= talloc_asprintf(ctx
, "GID %lu", (unsigned long)map
->xid
.id
);
695 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map
->xid
.type
));
696 return NT_STATUS_INVALID_PARAMETER
;
699 /* final SAFE_FREE safe */
702 if (keystr
== NULL
) {
703 DEBUG(0, ("Out of memory!\n"));
704 ret
= NT_STATUS_NO_MEMORY
;
708 DEBUG(10,("Fetching record %s\n", keystr
));
710 /* Check if the mapping exists */
711 data
= dbwrap_fetch_bystring(ctx
->db
, NULL
, keystr
);
714 DEBUG(10,("Record %s not found\n", keystr
));
715 ret
= NT_STATUS_NONE_MAPPED
;
719 if (!string_to_sid(map
->sid
, (const char *)data
.dptr
)) {
720 DEBUG(10,("INVALID SID (%s) in record %s\n",
721 (const char *)data
.dptr
, keystr
));
722 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
726 DEBUG(10,("Found record %s -> %s\n", keystr
, (const char *)data
.dptr
));
730 talloc_free(data
.dptr
);
735 /**********************************
736 Single sid to id lookup function.
737 **********************************/
739 static NTSTATUS
idmap_tdb_sid_to_id(struct idmap_domain
*dom
, struct id_map
*map
)
744 unsigned long rec_id
= 0;
745 struct idmap_tdb_context
*ctx
;
746 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
748 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
750 keystr
= sid_string_talloc(tmp_ctx
, map
->sid
);
751 if (keystr
== NULL
) {
752 DEBUG(0, ("Out of memory!\n"));
753 ret
= NT_STATUS_NO_MEMORY
;
757 DEBUG(10,("Fetching record %s\n", keystr
));
759 /* Check if sid is present in database */
760 data
= dbwrap_fetch_bystring(ctx
->db
, tmp_ctx
, keystr
);
762 DEBUG(10,("Record %s not found\n", keystr
));
763 ret
= NT_STATUS_NONE_MAPPED
;
767 /* What type of record is this ? */
768 if (sscanf((const char *)data
.dptr
, "UID %lu", &rec_id
) == 1) { /* Try a UID record. */
769 map
->xid
.id
= rec_id
;
770 map
->xid
.type
= ID_TYPE_UID
;
771 DEBUG(10,("Found uid record %s -> %s \n", keystr
, (const char *)data
.dptr
));
774 } else if (sscanf((const char *)data
.dptr
, "GID %lu", &rec_id
) == 1) { /* Try a GID record. */
775 map
->xid
.id
= rec_id
;
776 map
->xid
.type
= ID_TYPE_GID
;
777 DEBUG(10,("Found gid record %s -> %s \n", keystr
, (const char *)data
.dptr
));
780 } else { /* Unknown record type ! */
781 DEBUG(2, ("Found INVALID record %s -> %s\n", keystr
, (const char *)data
.dptr
));
782 ret
= NT_STATUS_INTERNAL_DB_ERROR
;
786 /* apply filters before returning result */
787 if (!idmap_unix_id_is_in_range(map
->xid
.id
, dom
)) {
788 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
789 map
->xid
.id
, dom
->low_id
, dom
->high_id
));
790 ret
= NT_STATUS_NONE_MAPPED
;
794 talloc_free(tmp_ctx
);
798 /**********************************
799 lookup a set of unix ids.
800 **********************************/
802 static NTSTATUS
idmap_tdb_unixids_to_sids(struct idmap_domain
*dom
, struct id_map
**ids
)
807 /* initialize the status to avoid suprise */
808 for (i
= 0; ids
[i
]; i
++) {
809 ids
[i
]->status
= ID_UNKNOWN
;
812 for (i
= 0; ids
[i
]; i
++) {
813 ret
= idmap_tdb_id_to_sid(dom
, ids
[i
]);
814 if ( ! NT_STATUS_IS_OK(ret
)) {
816 /* if it is just a failed mapping continue */
817 if (NT_STATUS_EQUAL(ret
, NT_STATUS_NONE_MAPPED
)) {
819 /* make sure it is marked as unmapped */
820 ids
[i
]->status
= ID_UNMAPPED
;
824 /* some fatal error occurred, return immediately */
828 /* all ok, id is mapped */
829 ids
[i
]->status
= ID_MAPPED
;
838 /**********************************
839 lookup a set of sids.
840 **********************************/
842 struct idmap_tdb_sids_to_unixids_context
{
843 struct idmap_domain
*dom
;
845 bool allocate_unmapped
;
848 static NTSTATUS
idmap_tdb_sids_to_unixids_action(struct db_context
*db
,
851 struct idmap_tdb_sids_to_unixids_context
*state
;
853 NTSTATUS ret
= NT_STATUS_OK
;
855 state
= (struct idmap_tdb_sids_to_unixids_context
*)private_data
;
857 DEBUG(10, ("idmap_tdb_sids_to_unixids_action: "
858 " domain: [%s], allocate: %s\n",
860 state
->allocate_unmapped
? "yes" : "no"));
862 for (i
= 0; state
->ids
[i
]; i
++) {
863 if ((state
->ids
[i
]->status
== ID_UNKNOWN
) ||
864 /* retry if we could not map in previous run: */
865 (state
->ids
[i
]->status
== ID_UNMAPPED
))
869 ret2
= idmap_tdb_sid_to_id(state
->dom
, state
->ids
[i
]);
870 if (!NT_STATUS_IS_OK(ret2
)) {
872 /* if it is just a failed mapping, continue */
873 if (NT_STATUS_EQUAL(ret2
, NT_STATUS_NONE_MAPPED
)) {
875 /* make sure it is marked as unmapped */
876 state
->ids
[i
]->status
= ID_UNMAPPED
;
877 ret
= STATUS_SOME_UNMAPPED
;
879 /* some fatal error occurred, return immediately */
884 /* all ok, id is mapped */
885 state
->ids
[i
]->status
= ID_MAPPED
;
889 if ((state
->ids
[i
]->status
== ID_UNMAPPED
) &&
890 state
->allocate_unmapped
)
892 ret
= idmap_tdb_new_mapping(state
->dom
, state
->ids
[i
]);
893 if (!NT_STATUS_IS_OK(ret
)) {
903 static NTSTATUS
idmap_tdb_sids_to_unixids(struct idmap_domain
*dom
, struct id_map
**ids
)
905 struct idmap_tdb_context
*ctx
;
908 struct idmap_tdb_sids_to_unixids_context state
;
910 /* initialize the status to avoid suprise */
911 for (i
= 0; ids
[i
]; i
++) {
912 ids
[i
]->status
= ID_UNKNOWN
;
915 ctx
= talloc_get_type(dom
->private_data
, struct idmap_tdb_context
);
919 state
.allocate_unmapped
= false;
921 ret
= idmap_tdb_sids_to_unixids_action(ctx
->db
, &state
);
923 if (NT_STATUS_EQUAL(ret
, STATUS_SOME_UNMAPPED
) && !dom
->read_only
) {
924 state
.allocate_unmapped
= true;
925 ret
= dbwrap_trans_do(ctx
->db
,
926 idmap_tdb_sids_to_unixids_action
,
934 /**********************************
935 Close the idmap tdb instance
936 **********************************/
938 static struct idmap_methods db_methods
= {
939 .init
= idmap_tdb_db_init
,
940 .unixids_to_sids
= idmap_tdb_unixids_to_sids
,
941 .sids_to_unixids
= idmap_tdb_sids_to_unixids
,
942 .allocate_id
= idmap_tdb_get_new_id
,
945 NTSTATUS
idmap_tdb_init(void)
947 DEBUG(10, ("calling idmap_tdb_init\n"));
949 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION
, "tdb", &db_methods
);