s3:idmap_tdb: give idmap_domain arg to idmap_tdb_allocate_id and use ctx->db
[kai/samba.git] / source3 / winbindd / idmap_tdb.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    idmap TDB backend
5
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    
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 3 of the License, or
14    (at your option) any later version.
15    
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20    
21    You should have received a copy of the GNU General Public License
22    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 */
24
25 #include "includes.h"
26 #include "winbindd.h"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_IDMAP
30
31 /* idmap version determines auto-conversion - this is the database
32    structure version specifier. */
33
34 #define IDMAP_VERSION 2
35
36 struct idmap_tdb_context {
37         struct db_context *db;
38 };
39
40 /* High water mark keys */
41 #define HWM_GROUP  "GROUP HWM"
42 #define HWM_USER   "USER HWM"
43
44 static struct idmap_tdb_state {
45
46         /* User and group id pool */
47         uid_t low_uid, high_uid;               /* Range of uids to allocate */
48         gid_t low_gid, high_gid;               /* Range of gids to allocate */
49
50 } idmap_tdb_state;
51
52 struct convert_fn_state {
53         struct db_context *db;
54         bool failed;
55 };
56
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
60  instead of the SID.
61 *****************************************************************************/
62 static int convert_fn(struct db_record *rec, void *private_data)
63 {
64         struct winbindd_domain *domain;
65         char *p;
66         NTSTATUS status;
67         struct dom_sid sid;
68         uint32 rid;
69         fstring keystr;
70         fstring dom_name;
71         TDB_DATA key2;
72         struct convert_fn_state *s = (struct convert_fn_state *)private_data;
73
74         DEBUG(10,("Converting %s\n", (const char *)rec->key.dptr));
75
76         p = strchr((const char *)rec->key.dptr, '/');
77         if (!p)
78                 return 0;
79
80         *p = 0;
81         fstrcpy(dom_name, (const char *)rec->key.dptr);
82         *p++ = '/';
83
84         domain = find_domain_from_name(dom_name);
85         if (domain == NULL) {
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 ));
89
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,
94                                 nt_errstr(status)));
95                         s->failed = true;
96                         return -1;
97                 }
98
99                 return 0;
100         }
101
102         rid = atoi(p);
103
104         sid_compose(&sid, &domain->sid, rid);
105
106         sid_to_fstring(keystr, &sid);
107         key2 = string_term_tdb_data(keystr);
108
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,
113                         nt_errstr(status)));
114                 s->failed = true;
115                 return -1;
116         }
117
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,
122                         nt_errstr(status)));
123                 s->failed = true;
124                 return -1;
125         }
126
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,
131                         nt_errstr(status)));
132                 s->failed = true;
133                 return -1;
134         }
135
136         return 0;
137 }
138
139 /*****************************************************************************
140  Convert the idmap database from an older version.
141 *****************************************************************************/
142
143 static bool idmap_tdb_upgrade(struct idmap_domain *dom, struct db_context *db)
144 {
145         int32 vers;
146         bool bigendianheader;
147         struct convert_fn_state s;
148
149         DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
150
151         bigendianheader = (db->get_flags(db) & TDB_BIGENDIAN) ? True : False;
152
153         vers = dbwrap_fetch_int32(db, "IDMAP_VERSION");
154
155         if (((vers == -1) && bigendianheader) || (IREV(vers) == IDMAP_VERSION)) {
156                 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
157                 /*
158                  * high and low records were created on a
159                  * big endian machine and will need byte-reversing.
160                  */
161
162                 int32 wm;
163
164                 wm = dbwrap_fetch_int32(db, HWM_USER);
165
166                 if (wm != -1) {
167                         wm = IREV(wm);
168                 }  else {
169                         wm = dom->low_id;
170                 }
171
172                 if (dbwrap_store_int32(db, HWM_USER, wm) == -1) {
173                         DEBUG(0, ("Unable to byteswap user hwm in idmap database\n"));
174                         return False;
175                 }
176
177                 wm = dbwrap_fetch_int32(db, HWM_GROUP);
178                 if (wm != -1) {
179                         wm = IREV(wm);
180                 } else {
181                         wm = dom->low_id;
182                 }
183
184                 if (dbwrap_store_int32(db, HWM_GROUP, wm) == -1) {
185                         DEBUG(0, ("Unable to byteswap group hwm in idmap database\n"));
186                         return False;
187                 }
188         }
189
190         s.db = db;
191         s.failed = false;
192
193         /* the old format stored as DOMAIN/rid - now we store the SID direct */
194         db->traverse(db, convert_fn, &s);
195
196         if (s.failed) {
197                 DEBUG(0, ("Problem during conversion\n"));
198                 return False;
199         }
200
201         if (dbwrap_store_int32(db, "IDMAP_VERSION", IDMAP_VERSION) == -1) {
202                 DEBUG(0, ("Unable to store idmap version in databse\n"));
203                 return False;
204         }
205
206         return True;
207 }
208
209 static NTSTATUS idmap_tdb_init_hwm(struct idmap_domain *dom)
210 {
211         int ret;
212         uint32_t low_uid;
213         uint32_t low_gid;
214         bool update_uid = false;
215         bool update_gid = false;
216         struct idmap_tdb_context *ctx;
217
218         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
219
220         low_uid = dbwrap_fetch_int32(ctx->db, HWM_USER);
221         if (low_uid == -1 || low_uid < dom->low_id) {
222                 update_uid = true;
223         }
224
225         low_gid = dbwrap_fetch_int32(ctx->db, HWM_GROUP);
226         if (low_gid == -1 || low_gid < dom->low_id) {
227                 update_gid = true;
228         }
229
230         if (!update_uid && !update_gid) {
231                 return NT_STATUS_OK;
232         }
233
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;
237         }
238
239         if (update_uid) {
240                 ret = dbwrap_store_int32(ctx->db, HWM_USER, dom->low_id);
241                 if (ret == -1) {
242                         ctx->db->transaction_cancel(ctx->db);
243                         DEBUG(0, ("Unable to initialise user hwm in idmap "
244                                   "database\n"));
245                         return NT_STATUS_INTERNAL_DB_ERROR;
246                 }
247         }
248
249         if (update_gid) {
250                 ret = dbwrap_store_int32(ctx->db, HWM_GROUP, dom->low_id);
251                 if (ret == -1) {
252                         ctx->db->transaction_cancel(ctx->db);
253                         DEBUG(0, ("Unable to initialise group hwm in idmap "
254                                   "database\n"));
255                         return NT_STATUS_INTERNAL_DB_ERROR;
256                 }
257         }
258
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;
262         }
263
264         return NT_STATUS_OK;
265 }
266
267 static NTSTATUS idmap_tdb_open_db(struct idmap_domain *dom)
268 {
269         NTSTATUS ret;
270         TALLOC_CTX *mem_ctx;
271         char *tdbfile = NULL;
272         struct db_context *db = NULL;
273         int32_t version;
274         bool config_error = false;
275         struct idmap_tdb_context *ctx;
276
277         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
278
279         /* use our own context here */
280         mem_ctx = talloc_stackframe();
281
282         /* use the old database if present */
283         tdbfile = state_path("winbindd_idmap.tdb");
284         if (!tdbfile) {
285                 DEBUG(0, ("Out of memory!\n"));
286                 ret = NT_STATUS_NO_MEMORY;
287                 goto done;
288         }
289
290         DEBUG(10,("Opening tdbfile %s\n", tdbfile ));
291
292         /* Open idmap repository */
293         db = db_open(mem_ctx, tdbfile, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0644);
294         if (!db) {
295                 DEBUG(0, ("Unable to open idmap database\n"));
296                 ret = NT_STATUS_UNSUCCESSFUL;
297                 goto done;
298         }
299
300         /* check against earlier versions */
301         version = dbwrap_fetch_int32(db, "IDMAP_VERSION");
302         if (version != IDMAP_VERSION) {
303                 if (config_error) {
304                         DEBUG(0,("Upgrade of IDMAP_VERSION from %d to %d is not "
305                                  "possible with incomplete configuration\n",
306                                  version, IDMAP_VERSION));
307                         ret = NT_STATUS_UNSUCCESSFUL;
308                         goto done;
309                 }
310                 if (db->transaction_start(db) != 0) {
311                         DEBUG(0, ("Unable to start upgrade transaction!\n"));
312                         ret = NT_STATUS_INTERNAL_DB_ERROR;
313                         goto done;
314                 }
315
316                 if (!idmap_tdb_upgrade(dom, db)) {
317                         db->transaction_cancel(db);
318                         DEBUG(0, ("Unable to open idmap database, it's in an old format, and upgrade failed!\n"));
319                         ret = NT_STATUS_INTERNAL_DB_ERROR;
320                         goto done;
321                 }
322
323                 if (db->transaction_commit(db) != 0) {
324                         DEBUG(0, ("Unable to commit upgrade transaction!\n"));
325                         ret = NT_STATUS_INTERNAL_DB_ERROR;
326                         goto done;
327                 }
328         }
329
330         ctx->db = talloc_move(ctx, &db);
331
332         ret = idmap_tdb_init_hwm(dom);
333
334 done:
335         talloc_free(mem_ctx);
336         return ret;
337 }
338
339 /**********************************************************************
340  IDMAP ALLOC TDB BACKEND
341 **********************************************************************/
342  
343 static struct db_context *idmap_alloc_db;
344
345 /**********************************
346  Allocate a new id. 
347 **********************************/
348
349 struct idmap_tdb_allocate_id_context {
350         const char *hwmkey;
351         const char *hwmtype;
352         uint32_t high_hwm;
353         uint32_t hwm;
354 };
355
356 static NTSTATUS idmap_tdb_allocate_id_action(struct db_context *db,
357                                              void *private_data)
358 {
359         NTSTATUS ret;
360         struct idmap_tdb_allocate_id_context *state;
361         uint32_t hwm;
362
363         state = (struct idmap_tdb_allocate_id_context *)private_data;
364
365         hwm = dbwrap_fetch_int32(db, state->hwmkey);
366         if (hwm == -1) {
367                 ret = NT_STATUS_INTERNAL_DB_ERROR;
368                 goto done;
369         }
370
371         /* check it is in the range */
372         if (hwm > state->high_hwm) {
373                 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
374                           state->hwmtype, (unsigned long)state->high_hwm));
375                 ret = NT_STATUS_UNSUCCESSFUL;
376                 goto done;
377         }
378
379         /* fetch a new id and increment it */
380         ret = dbwrap_trans_change_uint32_atomic(db, state->hwmkey, &hwm, 1);
381         if (!NT_STATUS_IS_OK(ret)) {
382                 DEBUG(0, ("Fatal error while fetching a new %s value: %s\n!",
383                           state->hwmtype, nt_errstr(ret)));
384                 goto done;
385         }
386
387         /* recheck it is in the range */
388         if (hwm > state->high_hwm) {
389                 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n",
390                           state->hwmtype, (unsigned long)state->high_hwm));
391                 ret = NT_STATUS_UNSUCCESSFUL;
392                 goto done;
393         }
394
395         ret = NT_STATUS_OK;
396         state->hwm = hwm;
397
398 done:
399         return ret;
400 }
401
402 static NTSTATUS idmap_tdb_allocate_id(struct idmap_domain *dom,
403                                       struct unixid *xid)
404 {
405         const char *hwmkey;
406         const char *hwmtype;
407         uint32_t high_hwm;
408         uint32_t hwm = 0;
409         NTSTATUS status;
410         struct idmap_tdb_allocate_id_context state;
411         struct idmap_tdb_context *ctx;
412
413         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
414
415         /* Get current high water mark */
416         switch (xid->type) {
417
418         case ID_TYPE_UID:
419                 hwmkey = HWM_USER;
420                 hwmtype = "UID";
421                 break;
422
423         case ID_TYPE_GID:
424                 hwmkey = HWM_GROUP;
425                 hwmtype = "GID";
426                 break;
427
428         default:
429                 DEBUG(2, ("Invalid ID type (0x%x)\n", xid->type));
430                 return NT_STATUS_INVALID_PARAMETER;
431         }
432
433         high_hwm = dom->high_id;
434
435         state.hwm = hwm;
436         state.high_hwm = high_hwm;
437         state.hwmtype = hwmtype;
438         state.hwmkey = hwmkey;
439
440         status = dbwrap_trans_do(ctx->db, idmap_tdb_allocate_id_action,
441                                  &state);
442
443         if (NT_STATUS_IS_OK(status)) {
444                 xid->id = state.hwm;
445                 DEBUG(10,("New %s = %d\n", hwmtype, state.hwm));
446         } else {
447                 DEBUG(1, ("Error allocating a new %s\n", hwmtype));
448         }
449
450         return status;
451 }
452
453 /**
454  * Allocate a new unix-ID.
455  * For now this is for the default idmap domain only.
456  * Should be extended later on.
457  */
458 static NTSTATUS idmap_tdb_get_new_id(struct idmap_domain *dom,
459                                      struct unixid *id)
460 {
461         NTSTATUS ret;
462
463         if (!strequal(dom->name, "*")) {
464                 DEBUG(3, ("idmap_tdb_get_new_id: "
465                           "Refusing allocation of a new unixid for domain'%s'. "
466                           "Currently only supported for the default "
467                           "domain \"*\".\n",
468                            dom->name));
469                 return NT_STATUS_NOT_IMPLEMENTED;
470         }
471
472         ret = idmap_tdb_allocate_id(dom, id);
473
474         return ret;
475 }
476
477 /**********************************
478  Close the alloc tdb 
479 **********************************/
480
481 static NTSTATUS idmap_tdb_alloc_close(void)
482 {
483         TALLOC_FREE(idmap_alloc_db);
484         return NT_STATUS_OK;
485 }
486
487 /**********************************************************************
488  IDMAP MAPPING TDB BACKEND
489 **********************************************************************/
490
491 /*****************************
492  Initialise idmap database. 
493 *****************************/
494
495 static NTSTATUS idmap_tdb_db_init(struct idmap_domain *dom, const char *params)
496 {
497         NTSTATUS ret;
498         struct idmap_tdb_context *ctx;
499
500         DEBUG(10, ("idmap_tdb_db_init called for domain '%s'\n", dom->name));
501
502         ctx = talloc(dom, struct idmap_tdb_context);
503         if ( ! ctx) {
504                 DEBUG(0, ("Out of memory!\n"));
505                 return NT_STATUS_NO_MEMORY;
506         }
507
508         /* load backend specific configuration here: */
509 #if 0
510         if (strequal(dom->name, "*")) {
511         } else {
512         }
513 #endif
514
515         dom->private_data = ctx;
516
517         ret = idmap_tdb_open_db(dom);
518         if ( ! NT_STATUS_IS_OK(ret)) {
519                 goto failed;
520         }
521
522         return NT_STATUS_OK;
523
524 failed:
525         talloc_free(ctx);
526         return ret;
527 }
528
529 /**********************************
530  Single id to sid lookup function. 
531 **********************************/
532
533 static NTSTATUS idmap_tdb_id_to_sid(struct idmap_domain *dom, struct id_map *map)
534 {
535         NTSTATUS ret;
536         TDB_DATA data;
537         char *keystr;
538         struct idmap_tdb_context *ctx;
539
540         if (!dom || !map) {
541                 return NT_STATUS_INVALID_PARAMETER;
542         }
543
544         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
545
546         /* apply filters before checking */
547         if (!idmap_unix_id_is_in_range(map->xid.id, dom)) {
548                 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
549                                 map->xid.id, dom->low_id, dom->high_id));
550                 return NT_STATUS_NONE_MAPPED;
551         }
552
553         switch (map->xid.type) {
554
555         case ID_TYPE_UID:
556                 keystr = talloc_asprintf(ctx, "UID %lu", (unsigned long)map->xid.id);
557                 break;
558                 
559         case ID_TYPE_GID:
560                 keystr = talloc_asprintf(ctx, "GID %lu", (unsigned long)map->xid.id);
561                 break;
562
563         default:
564                 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
565                 return NT_STATUS_INVALID_PARAMETER;
566         }
567
568         /* final SAFE_FREE safe */
569         data.dptr = NULL;
570
571         if (keystr == NULL) {
572                 DEBUG(0, ("Out of memory!\n"));
573                 ret = NT_STATUS_NO_MEMORY;
574                 goto done;
575         }
576
577         DEBUG(10,("Fetching record %s\n", keystr));
578
579         /* Check if the mapping exists */
580         data = dbwrap_fetch_bystring(ctx->db, NULL, keystr);
581
582         if (!data.dptr) {
583                 DEBUG(10,("Record %s not found\n", keystr));
584                 ret = NT_STATUS_NONE_MAPPED;
585                 goto done;
586         }
587                 
588         if (!string_to_sid(map->sid, (const char *)data.dptr)) {
589                 DEBUG(10,("INVALID SID (%s) in record %s\n",
590                         (const char *)data.dptr, keystr));
591                 ret = NT_STATUS_INTERNAL_DB_ERROR;
592                 goto done;
593         }
594
595         DEBUG(10,("Found record %s -> %s\n", keystr, (const char *)data.dptr));
596         ret = NT_STATUS_OK;
597
598 done:
599         talloc_free(data.dptr);
600         talloc_free(keystr);
601         return ret;
602 }
603
604 /**********************************
605  Single sid to id lookup function. 
606 **********************************/
607
608 static NTSTATUS idmap_tdb_sid_to_id(struct idmap_domain *dom, struct id_map *map)
609 {
610         NTSTATUS ret;
611         TDB_DATA data;
612         char *keystr;
613         unsigned long rec_id = 0;
614         struct idmap_tdb_context *ctx;
615         TALLOC_CTX *tmp_ctx = talloc_stackframe();
616
617         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
618
619         keystr = sid_string_talloc(tmp_ctx, map->sid);
620         if (keystr == NULL) {
621                 DEBUG(0, ("Out of memory!\n"));
622                 ret = NT_STATUS_NO_MEMORY;
623                 goto done;
624         }
625
626         DEBUG(10,("Fetching record %s\n", keystr));
627
628         /* Check if sid is present in database */
629         data = dbwrap_fetch_bystring(ctx->db, tmp_ctx, keystr);
630         if (!data.dptr) {
631                 DEBUG(10,("Record %s not found\n", keystr));
632                 ret = NT_STATUS_NONE_MAPPED;
633                 goto done;
634         }
635
636         /* What type of record is this ? */
637         if (sscanf((const char *)data.dptr, "UID %lu", &rec_id) == 1) { /* Try a UID record. */
638                 map->xid.id = rec_id;
639                 map->xid.type = ID_TYPE_UID;
640                 DEBUG(10,("Found uid record %s -> %s \n", keystr, (const char *)data.dptr ));
641                 ret = NT_STATUS_OK;
642
643         } else if (sscanf((const char *)data.dptr, "GID %lu", &rec_id) == 1) { /* Try a GID record. */
644                 map->xid.id = rec_id;
645                 map->xid.type = ID_TYPE_GID;
646                 DEBUG(10,("Found gid record %s -> %s \n", keystr, (const char *)data.dptr ));
647                 ret = NT_STATUS_OK;
648
649         } else { /* Unknown record type ! */
650                 DEBUG(2, ("Found INVALID record %s -> %s\n", keystr, (const char *)data.dptr));
651                 ret = NT_STATUS_INTERNAL_DB_ERROR;
652                 goto done;
653         }
654
655         /* apply filters before returning result */
656         if (!idmap_unix_id_is_in_range(map->xid.id, dom)) {
657                 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
658                                 map->xid.id, dom->low_id, dom->high_id));
659                 ret = NT_STATUS_NONE_MAPPED;
660         }
661
662 done:
663         talloc_free(tmp_ctx);
664         return ret;
665 }
666
667 /**********************************
668  lookup a set of unix ids. 
669 **********************************/
670
671 static NTSTATUS idmap_tdb_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
672 {
673         struct idmap_tdb_context *ctx;
674         NTSTATUS ret;
675         int i;
676
677         /* initialize the status to avoid suprise */
678         for (i = 0; ids[i]; i++) {
679                 ids[i]->status = ID_UNKNOWN;
680         }
681         
682         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
683
684         for (i = 0; ids[i]; i++) {
685                 ret = idmap_tdb_id_to_sid(dom, ids[i]);
686                 if ( ! NT_STATUS_IS_OK(ret)) {
687
688                         /* if it is just a failed mapping continue */
689                         if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
690
691                                 /* make sure it is marked as unmapped */
692                                 ids[i]->status = ID_UNMAPPED;
693                                 continue;
694                         }
695                         
696                         /* some fatal error occurred, return immediately */
697                         goto done;
698                 }
699
700                 /* all ok, id is mapped */
701                 ids[i]->status = ID_MAPPED;
702         }
703
704         ret = NT_STATUS_OK;
705
706 done:
707         return ret;
708 }
709
710 /**********************************
711  lookup a set of sids. 
712 **********************************/
713
714 static NTSTATUS idmap_tdb_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
715 {
716         struct idmap_tdb_context *ctx;
717         NTSTATUS ret;
718         int i;
719
720         /* initialize the status to avoid suprise */
721         for (i = 0; ids[i]; i++) {
722                 ids[i]->status = ID_UNKNOWN;
723         }
724         
725         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
726
727         for (i = 0; ids[i]; i++) {
728                 ret = idmap_tdb_sid_to_id(dom, ids[i]);
729                 if ( ! NT_STATUS_IS_OK(ret)) {
730
731                         /* if it is just a failed mapping continue */
732                         if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
733
734                                 /* make sure it is marked as unmapped */
735                                 ids[i]->status = ID_UNMAPPED;
736                                 continue;
737                         }
738                         
739                         /* some fatal error occurred, return immediately */
740                         goto done;
741                 }
742
743                 /* all ok, id is mapped */
744                 ids[i]->status = ID_MAPPED;
745         }
746
747         ret = NT_STATUS_OK;
748
749 done:
750         return ret;
751 }
752
753 /**********************************
754  set a mapping.
755 **********************************/
756
757 static NTSTATUS idmap_tdb_set_mapping(struct idmap_domain *dom,
758                                       const struct id_map *map)
759 {
760         struct idmap_tdb_context *ctx;
761         NTSTATUS ret;
762         TDB_DATA ksid, kid;
763         char *ksidstr, *kidstr;
764         fstring tmp;
765
766         if (!map || !map->sid) {
767                 return NT_STATUS_INVALID_PARAMETER;
768         }
769
770         ksidstr = kidstr = NULL;
771
772         /* TODO: should we filter a set_mapping using low/high filters ? */
773
774         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
775
776         switch (map->xid.type) {
777
778         case ID_TYPE_UID:
779                 kidstr = talloc_asprintf(ctx, "UID %lu",
780                                          (unsigned long)map->xid.id);
781                 break;
782
783         case ID_TYPE_GID:
784                 kidstr = talloc_asprintf(ctx, "GID %lu",
785                                          (unsigned long)map->xid.id);
786                 break;
787
788         default:
789                 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
790                 return NT_STATUS_INVALID_PARAMETER;
791         }
792
793         if (kidstr == NULL) {
794                 DEBUG(0, ("ERROR: Out of memory!\n"));
795                 ret = NT_STATUS_NO_MEMORY;
796                 goto done;
797         }
798
799         if ((ksidstr = talloc_asprintf(
800                      ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
801                 DEBUG(0, ("Out of memory!\n"));
802                 ret = NT_STATUS_NO_MEMORY;
803                 goto done;
804         }
805
806         DEBUG(10, ("Storing %s <-> %s map\n", ksidstr, kidstr));
807         kid = string_term_tdb_data(kidstr);
808         ksid = string_term_tdb_data(ksidstr);
809
810         if (ctx->db->transaction_start(ctx->db) != 0) {
811                 DEBUG(0, ("Failed to start transaction for %s\n",
812                           ksidstr));
813                 ret = NT_STATUS_INTERNAL_DB_ERROR;
814                 goto done;
815         }
816
817         ret = dbwrap_store(ctx->db, ksid, kid, TDB_REPLACE);
818         if (!NT_STATUS_IS_OK(ret)) {
819                 ctx->db->transaction_cancel(ctx->db);
820                 DEBUG(0, ("Error storing SID -> ID (%s -> %s): %s\n",
821                           ksidstr, kidstr, nt_errstr(ret)));
822                 goto done;
823         }
824         ret = dbwrap_store(ctx->db, kid, ksid, TDB_REPLACE);
825         if (!NT_STATUS_IS_OK(ret)) {
826                 ctx->db->transaction_cancel(ctx->db);
827                 DEBUG(0, ("Error storing ID -> SID (%s -> %s): %s\n",
828                           kidstr, ksidstr, nt_errstr(ret)));
829                 goto done;
830         }
831
832         if (ctx->db->transaction_commit(ctx->db) != 0) {
833                 DEBUG(0, ("Failed to commit transaction for (%s -> %s)\n",
834                           ksidstr, kidstr));
835                 ret = NT_STATUS_INTERNAL_DB_ERROR;
836                 goto done;
837         }
838
839         DEBUG(10,("Stored %s <-> %s\n", ksidstr, kidstr));
840         ret = NT_STATUS_OK;
841
842 done:
843         talloc_free(ksidstr);
844         talloc_free(kidstr);
845         return ret;
846 }
847
848 /**********************************
849  Close the idmap tdb instance
850 **********************************/
851
852 static NTSTATUS idmap_tdb_close(struct idmap_domain *dom)
853 {
854         struct idmap_tdb_context *ctx;
855
856         if (dom->private_data) {
857                 ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
858
859                 TALLOC_FREE(ctx->db);
860         }
861         return NT_STATUS_OK;
862 }
863
864 static struct idmap_methods db_methods = {
865         .init = idmap_tdb_db_init,
866         .unixids_to_sids = idmap_tdb_unixids_to_sids,
867         .sids_to_unixids = idmap_tdb_sids_to_unixids,
868         .allocate_id = idmap_tdb_get_new_id,
869         .close_fn = idmap_tdb_close
870 };
871
872 NTSTATUS idmap_tdb_init(void)
873 {
874         DEBUG(10, ("calling idmap_tdb_init\n"));
875
876         return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "tdb", &db_methods);
877 }