Clean-up various trailing space and >80 column lines.
[tprouty/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 /* High water mark keys */
32 #define HWM_GROUP  "GROUP HWM"
33 #define HWM_USER   "USER HWM"
34
35 static struct idmap_tdb_state {
36
37         /* User and group id pool */
38         uid_t low_uid, high_uid;               /* Range of uids to allocate */
39         gid_t low_gid, high_gid;               /* Range of gids to allocate */
40
41 } idmap_tdb_state;
42
43 /*****************************************************************************
44  For idmap conversion: convert one record to new format
45  Ancient versions (eg 2.2.3a) of winbindd_idmap.tdb mapped DOMAINNAME/rid
46  instead of the SID.
47 *****************************************************************************/
48 static int convert_fn(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA data, void *state)
49 {
50         struct winbindd_domain *domain;
51         char *p;
52         DOM_SID sid;
53         uint32 rid;
54         fstring keystr;
55         fstring dom_name;
56         TDB_DATA key2;
57         bool *failed = (bool *)state;
58
59         DEBUG(10,("Converting %s\n", (const char *)key.dptr));
60
61         p = strchr((const char *)key.dptr, '/');
62         if (!p)
63                 return 0;
64
65         *p = 0;
66         fstrcpy(dom_name, (const char *)key.dptr);
67         *p++ = '/';
68
69         domain = find_domain_from_name(dom_name);
70         if (domain == NULL) {
71                 /* We must delete the old record. */
72                 DEBUG(0,("Unable to find domain %s\n", dom_name ));
73                 DEBUG(0,("deleting record %s\n", (const char *)key.dptr ));
74
75                 if (tdb_delete(tdb, key) != 0) {
76                         DEBUG(0, ("Unable to delete record %s\n", (const char *)key.dptr));
77                         *failed = True;
78                         return -1;
79                 }
80
81                 return 0;
82         }
83
84         rid = atoi(p);
85
86         sid_copy(&sid, &domain->sid);
87         sid_append_rid(&sid, rid);
88
89         sid_to_fstring(keystr, &sid);
90         key2 = string_term_tdb_data(keystr);
91
92         if (tdb_store(tdb, key2, data, TDB_INSERT) != 0) {
93                 DEBUG(0,("Unable to add record %s\n", (const char *)key2.dptr ));
94                 *failed = True;
95                 return -1;
96         }
97
98         if (tdb_store(tdb, data, key2, TDB_REPLACE) != 0) {
99                 DEBUG(0,("Unable to update record %s\n", (const char *)data.dptr ));
100                 *failed = True;
101                 return -1;
102         }
103
104         if (tdb_delete(tdb, key) != 0) {
105                 DEBUG(0,("Unable to delete record %s\n", (const char *)key.dptr ));
106                 *failed = True;
107                 return -1;
108         }
109
110         return 0;
111 }
112
113 /*****************************************************************************
114  Convert the idmap database from an older version.
115 *****************************************************************************/
116
117 static bool idmap_tdb_upgrade(const char *idmap_name)
118 {
119         int32 vers;
120         bool bigendianheader;
121         bool failed = False;
122         TDB_CONTEXT *idmap_tdb;
123
124         DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
125
126         if (!(idmap_tdb = tdb_open_log(idmap_name, 0,
127                                         TDB_DEFAULT, O_RDWR,
128                                         0600))) {
129                 DEBUG(0, ("Unable to open idmap database\n"));
130                 return False;
131         }
132
133         bigendianheader = (tdb_get_flags(idmap_tdb) & TDB_BIGENDIAN) ? True : False;
134
135         vers = tdb_fetch_int32(idmap_tdb, "IDMAP_VERSION");
136
137         if (((vers == -1) && bigendianheader) || (IREV(vers) == IDMAP_VERSION)) {
138                 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
139                 /*
140                  * high and low records were created on a
141                  * big endian machine and will need byte-reversing.
142                  */
143
144                 int32 wm;
145
146                 wm = tdb_fetch_int32(idmap_tdb, HWM_USER);
147
148                 if (wm != -1) {
149                         wm = IREV(wm);
150                 }  else {
151                         wm = idmap_tdb_state.low_uid;
152                 }
153
154                 if (tdb_store_int32(idmap_tdb, HWM_USER, wm) == -1) {
155                         DEBUG(0, ("Unable to byteswap user hwm in idmap database\n"));
156                         tdb_close(idmap_tdb);
157                         return False;
158                 }
159
160                 wm = tdb_fetch_int32(idmap_tdb, HWM_GROUP);
161                 if (wm != -1) {
162                         wm = IREV(wm);
163                 } else {
164                         wm = idmap_tdb_state.low_gid;
165                 }
166
167                 if (tdb_store_int32(idmap_tdb, HWM_GROUP, wm) == -1) {
168                         DEBUG(0, ("Unable to byteswap group hwm in idmap database\n"));
169                         tdb_close(idmap_tdb);
170                         return False;
171                 }
172         }
173
174         /* the old format stored as DOMAIN/rid - now we store the SID direct */
175         tdb_traverse(idmap_tdb, convert_fn, &failed);
176
177         if (failed) {
178                 DEBUG(0, ("Problem during conversion\n"));
179                 tdb_close(idmap_tdb);
180                 return False;
181         }
182
183         if (tdb_store_int32(idmap_tdb, "IDMAP_VERSION", IDMAP_VERSION) == -1) {
184                 DEBUG(0, ("Unable to dtore idmap version in databse\n"));
185                 tdb_close(idmap_tdb);
186                 return False;
187         }
188
189         tdb_close(idmap_tdb);
190         return True;
191 }
192
193 /* WARNING: We can't open a tdb twice inthe same process, for that reason
194  * I'm going to use a hack with open ref counts to open the winbindd_idmap.tdb
195  * only once. We will later decide whether to split the db in multiple files
196  * or come up with a better solution to share them. */
197
198 static TDB_CONTEXT *idmap_tdb_common_ctx;
199 static int idmap_tdb_open_ref_count = 0;
200
201 static NTSTATUS idmap_tdb_open_db(TALLOC_CTX *memctx, TDB_CONTEXT **tdbctx)
202 {
203         NTSTATUS ret;
204         TALLOC_CTX *ctx;
205         SMB_STRUCT_STAT stbuf;
206         char *tdbfile = NULL;
207         int32 version;
208         bool tdb_is_new = False;
209
210         if (idmap_tdb_open_ref_count) { /* the tdb has already been opened */
211                 idmap_tdb_open_ref_count++;
212                 *tdbctx = idmap_tdb_common_ctx;
213                 return NT_STATUS_OK;
214         }
215
216         /* use our own context here */
217         ctx = talloc_new(memctx);
218         if (!ctx) {
219                 DEBUG(0, ("Out of memory!\n"));
220                 return NT_STATUS_NO_MEMORY;
221         }
222
223         /* use the old database if present */
224         tdbfile = talloc_strdup(ctx, state_path("winbindd_idmap.tdb"));
225         if (!tdbfile) {
226                 DEBUG(0, ("Out of memory!\n"));
227                 ret = NT_STATUS_NO_MEMORY;
228                 goto done;
229         }
230
231         if (!file_exist_stat(tdbfile, &stbuf)) {
232                 tdb_is_new = True;
233         }
234
235         DEBUG(10,("Opening tdbfile %s\n", tdbfile ));
236
237         /* Open idmap repository */
238         if (!(idmap_tdb_common_ctx = tdb_open_log(tdbfile, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0644))) {
239                 DEBUG(0, ("Unable to open idmap database\n"));
240                 ret = NT_STATUS_UNSUCCESSFUL;
241                 goto done;
242         }
243
244         if (tdb_is_new) {
245                 /* the file didn't existed before opening it, let's
246                  * store idmap version as nobody else yet opened and
247                  * stored it. I do not like this method but didn't
248                  * found a way to understand if an opened tdb have
249                  * been just created or not --- SSS */
250                 tdb_store_int32(idmap_tdb_common_ctx, "IDMAP_VERSION", IDMAP_VERSION);
251         }
252
253         /* check against earlier versions */
254         version = tdb_fetch_int32(idmap_tdb_common_ctx, "IDMAP_VERSION");
255         if (version != IDMAP_VERSION) {
256                 
257                 /* backup_tdb expects the tdb not to be open */
258                 tdb_close(idmap_tdb_common_ctx);
259
260                 if ( ! idmap_tdb_upgrade(tdbfile)) {
261                 
262                         DEBUG(0, ("Unable to open idmap database, it's in an old formati, and upgrade failed!\n"));
263                         ret = NT_STATUS_INTERNAL_DB_ERROR;
264                         goto done;
265                 }
266
267                 /* Re-Open idmap repository */
268                 if (!(idmap_tdb_common_ctx = tdb_open_log(tdbfile, 0, TDB_DEFAULT, O_RDWR | O_CREAT, 0644))) {
269                         DEBUG(0, ("Unable to open idmap database\n"));
270                         ret = NT_STATUS_UNSUCCESSFUL;
271                         goto done;
272                 }
273         }
274
275         *tdbctx = idmap_tdb_common_ctx;
276         idmap_tdb_open_ref_count++;
277         ret = NT_STATUS_OK;
278
279 done:
280         talloc_free(ctx);
281         return ret;
282 }
283
284  /* NEVER use tdb_close() except for the conversion routines that are guaranteed
285  * to run only when the database is opened the first time, always use this function. */ 
286
287 bool idmap_tdb_tdb_close(TDB_CONTEXT *tdbctx)
288 {
289         if (tdbctx != idmap_tdb_common_ctx) {
290                 DEBUG(0, ("ERROR: Invalid tdb context!"));
291                 return False;
292         }
293
294         idmap_tdb_open_ref_count--;
295         if (idmap_tdb_open_ref_count) {
296                 return True;
297         }
298
299         return tdb_close(idmap_tdb_common_ctx);
300 }
301
302 /**********************************************************************
303  IDMAP ALLOC TDB BACKEND
304 **********************************************************************/
305  
306 static TDB_CONTEXT *idmap_alloc_tdb;
307
308 /**********************************
309  Initialise idmap alloc database. 
310 **********************************/
311
312 static NTSTATUS idmap_tdb_alloc_init( const char *params )
313 {
314         NTSTATUS ret;
315         TALLOC_CTX *ctx;
316         uid_t low_uid = 0;
317         uid_t high_uid = 0;
318         gid_t low_gid = 0;
319         gid_t high_gid = 0;
320         uint32_t low_id;
321
322         /* use our own context here */
323         ctx = talloc_new(NULL);
324         if (!ctx) {
325                 DEBUG(0, ("Out of memory!\n"));
326                 return NT_STATUS_NO_MEMORY;
327         }
328
329         ret = idmap_tdb_open_db(ctx, &idmap_alloc_tdb);
330         if ( ! NT_STATUS_IS_OK(ret)) {
331                 talloc_free(ctx);
332                 return ret;
333         }
334
335         talloc_free(ctx);
336
337         /* load ranges */
338
339         if (!lp_idmap_uid(&low_uid, &high_uid)
340             || !lp_idmap_gid(&low_gid, &high_gid)) {
341                 DEBUG(1, ("idmap uid or idmap gid missing\n"));
342                 return NT_STATUS_UNSUCCESSFUL;
343         }
344
345         idmap_tdb_state.low_uid = low_uid;
346         idmap_tdb_state.high_uid = high_uid;
347         idmap_tdb_state.low_gid = low_gid;
348         idmap_tdb_state.high_gid = high_gid;
349
350         if (idmap_tdb_state.high_uid <= idmap_tdb_state.low_uid) {
351                 DEBUG(1, ("idmap uid range missing or invalid\n"));
352                 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
353                 return NT_STATUS_UNSUCCESSFUL;
354         }
355
356         if (idmap_tdb_state.high_gid <= idmap_tdb_state.low_gid) {
357                 DEBUG(1, ("idmap gid range missing or invalid\n"));
358                 DEBUGADD(1, ("idmap will be unable to map foreign SIDs\n"));
359                 return NT_STATUS_UNSUCCESSFUL;
360         }
361
362         if (((low_id = tdb_fetch_int32(idmap_alloc_tdb, HWM_USER)) == -1) ||
363             (low_id < idmap_tdb_state.low_uid)) {
364                 if (tdb_store_int32(idmap_alloc_tdb, HWM_USER,
365                                     idmap_tdb_state.low_uid) == -1) {
366                         DEBUG(0, ("Unable to initialise user hwm in idmap "
367                                   "database\n"));
368                         return NT_STATUS_INTERNAL_DB_ERROR;
369                 }
370         }
371
372         if (((low_id = tdb_fetch_int32(idmap_alloc_tdb, HWM_GROUP)) == -1) ||
373             (low_id < idmap_tdb_state.low_gid)) {
374                 if (tdb_store_int32(idmap_alloc_tdb, HWM_GROUP,
375                                     idmap_tdb_state.low_gid) == -1) {
376                         DEBUG(0, ("Unable to initialise group hwm in idmap "
377                                   "database\n"));
378                         return NT_STATUS_INTERNAL_DB_ERROR;
379                 }
380         }
381
382         return NT_STATUS_OK;
383 }
384
385 /**********************************
386  Allocate a new id. 
387 **********************************/
388
389 static NTSTATUS idmap_tdb_allocate_id(struct unixid *xid)
390 {
391         bool ret;
392         const char *hwmkey;
393         const char *hwmtype;
394         uint32_t high_hwm;
395         uint32_t hwm;
396
397         /* Get current high water mark */
398         switch (xid->type) {
399
400         case ID_TYPE_UID:
401                 hwmkey = HWM_USER;
402                 hwmtype = "UID";
403                 high_hwm = idmap_tdb_state.high_uid;
404                 break;
405
406         case ID_TYPE_GID:
407                 hwmkey = HWM_GROUP;
408                 hwmtype = "GID";
409                 high_hwm = idmap_tdb_state.high_gid;
410                 break;
411
412         default:
413                 DEBUG(2, ("Invalid ID type (0x%x)\n", xid->type));
414                 return NT_STATUS_INVALID_PARAMETER;
415         }
416
417         if ((hwm = tdb_fetch_int32(idmap_alloc_tdb, hwmkey)) == -1) {
418                 return NT_STATUS_INTERNAL_DB_ERROR;
419         }
420
421         /* check it is in the range */
422         if (hwm > high_hwm) {
423                 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n", 
424                           hwmtype, (unsigned long)high_hwm));
425                 return NT_STATUS_UNSUCCESSFUL;
426         }
427
428         /* fetch a new id and increment it */
429         ret = tdb_change_uint32_atomic(idmap_alloc_tdb, hwmkey, &hwm, 1);
430         if (!ret) {
431                 DEBUG(1, ("Fatal error while fetching a new %s value\n!", hwmtype));
432                 return NT_STATUS_UNSUCCESSFUL;
433         }
434
435         /* recheck it is in the range */
436         if (hwm > high_hwm) {
437                 DEBUG(1, ("Fatal Error: %s range full!! (max: %lu)\n", 
438                           hwmtype, (unsigned long)high_hwm));
439                 return NT_STATUS_UNSUCCESSFUL;
440         }
441         
442         xid->id = hwm;
443         DEBUG(10,("New %s = %d\n", hwmtype, hwm));
444
445         return NT_STATUS_OK;
446 }
447
448 /**********************************
449  Get current highest id. 
450 **********************************/
451
452 static NTSTATUS idmap_tdb_get_hwm(struct unixid *xid)
453 {
454         const char *hwmkey;
455         const char *hwmtype;
456         uint32_t hwm;
457         uint32_t high_hwm;
458
459         /* Get current high water mark */
460         switch (xid->type) {
461
462         case ID_TYPE_UID:
463                 hwmkey = HWM_USER;
464                 hwmtype = "UID";
465                 high_hwm = idmap_tdb_state.high_uid;
466                 break;
467
468         case ID_TYPE_GID:
469                 hwmkey = HWM_GROUP;
470                 hwmtype = "GID";
471                 high_hwm = idmap_tdb_state.high_gid;
472                 break;
473
474         default:
475                 return NT_STATUS_INVALID_PARAMETER;
476         }
477
478         if ((hwm = tdb_fetch_int32(idmap_alloc_tdb, hwmkey)) == -1) {
479                 return NT_STATUS_INTERNAL_DB_ERROR;
480         }
481
482         xid->id = hwm;
483
484         /* Warn if it is out of range */
485         if (hwm >= high_hwm) {
486                 DEBUG(0, ("Warning: %s range full!! (max: %lu)\n", 
487                           hwmtype, (unsigned long)high_hwm));
488         }
489
490         return NT_STATUS_OK;
491 }
492
493 /**********************************
494  Set high id. 
495 **********************************/
496
497 static NTSTATUS idmap_tdb_set_hwm(struct unixid *xid)
498 {
499         const char *hwmkey;
500         const char *hwmtype;
501         uint32_t hwm;
502         uint32_t high_hwm;
503
504         /* Get current high water mark */
505         switch (xid->type) {
506
507         case ID_TYPE_UID:
508                 hwmkey = HWM_USER;
509                 hwmtype = "UID";
510                 high_hwm = idmap_tdb_state.high_uid;
511                 break;
512
513         case ID_TYPE_GID:
514                 hwmkey = HWM_GROUP;
515                 hwmtype = "GID";
516                 high_hwm = idmap_tdb_state.high_gid;
517                 break;
518
519         default:
520                 return NT_STATUS_INVALID_PARAMETER;
521         }
522
523         hwm = xid->id;
524
525         if ((hwm = tdb_store_int32(idmap_alloc_tdb, hwmkey, hwm)) == -1) {
526                 return NT_STATUS_INTERNAL_DB_ERROR;
527         }
528
529         /* Warn if it is out of range */
530         if (hwm >= high_hwm) {
531                 DEBUG(0, ("Warning: %s range full!! (max: %lu)\n", 
532                           hwmtype, (unsigned long)high_hwm));
533         }
534
535         return NT_STATUS_OK;
536 }
537
538 /**********************************
539  Close the alloc tdb 
540 **********************************/
541
542 static NTSTATUS idmap_tdb_alloc_close(void)
543 {
544         if (idmap_alloc_tdb) {
545                 if (idmap_tdb_tdb_close(idmap_alloc_tdb) == 0) {
546                         return NT_STATUS_OK;
547                 } else {
548                         return NT_STATUS_UNSUCCESSFUL;
549                 }
550         }
551         return NT_STATUS_OK;
552 }
553
554 /**********************************************************************
555  IDMAP MAPPING TDB BACKEND
556 **********************************************************************/
557  
558 struct idmap_tdb_context {
559         TDB_CONTEXT *tdb;
560         uint32_t filter_low_id;
561         uint32_t filter_high_id;
562 };
563
564 /*****************************
565  Initialise idmap database. 
566 *****************************/
567
568 static NTSTATUS idmap_tdb_db_init(struct idmap_domain *dom, const char *params)
569 {
570         NTSTATUS ret;
571         struct idmap_tdb_context *ctx;
572         char *config_option = NULL;
573         const char *range;
574
575         ctx = talloc(dom, struct idmap_tdb_context);
576         if ( ! ctx) {
577                 DEBUG(0, ("Out of memory!\n"));
578                 return NT_STATUS_NO_MEMORY;
579         }
580
581         config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
582         if ( ! config_option) {
583                 DEBUG(0, ("Out of memory!\n"));
584                 ret = NT_STATUS_NO_MEMORY;
585                 goto failed;
586         }
587
588         ret = idmap_tdb_open_db(ctx, &ctx->tdb);
589         if ( ! NT_STATUS_IS_OK(ret)) {
590                 goto failed;
591         }
592
593         range = lp_parm_const_string(-1, config_option, "range", NULL);
594         if (( ! range) ||
595             (sscanf(range, "%u - %u", &ctx->filter_low_id, &ctx->filter_high_id) != 2) ||
596             (ctx->filter_low_id > ctx->filter_high_id)) {
597                 ctx->filter_low_id = 0;
598                 ctx->filter_high_id = 0;
599         }
600
601         dom->private_data = ctx;
602
603         talloc_free(config_option);
604         return NT_STATUS_OK;
605
606 failed:
607         talloc_free(ctx);
608         return ret;
609 }
610
611 /**********************************
612  Single id to sid lookup function. 
613 **********************************/
614
615 static NTSTATUS idmap_tdb_id_to_sid(struct idmap_tdb_context *ctx, struct id_map *map)
616 {
617         NTSTATUS ret;
618         TDB_DATA data;
619         char *keystr;
620
621         if (!ctx || !map) {
622                 return NT_STATUS_INVALID_PARAMETER;
623         }
624
625         /* apply filters before checking */
626         if ((ctx->filter_low_id && (map->xid.id < ctx->filter_low_id)) ||
627             (ctx->filter_high_id && (map->xid.id > ctx->filter_high_id))) {
628                 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
629                                 map->xid.id, ctx->filter_low_id, ctx->filter_high_id));
630                 return NT_STATUS_NONE_MAPPED;
631         }
632
633         switch (map->xid.type) {
634
635         case ID_TYPE_UID:
636                 keystr = talloc_asprintf(ctx, "UID %lu", (unsigned long)map->xid.id);
637                 break;
638                 
639         case ID_TYPE_GID:
640                 keystr = talloc_asprintf(ctx, "GID %lu", (unsigned long)map->xid.id);
641                 break;
642
643         default:
644                 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
645                 return NT_STATUS_INVALID_PARAMETER;
646         }
647
648         /* final SAFE_FREE safe */
649         data.dptr = NULL;
650
651         if (keystr == NULL) {
652                 DEBUG(0, ("Out of memory!\n"));
653                 ret = NT_STATUS_NO_MEMORY;
654                 goto done;
655         }
656
657         DEBUG(10,("Fetching record %s\n", keystr));
658
659         /* Check if the mapping exists */
660         data = tdb_fetch_bystring(ctx->tdb, keystr);
661
662         if (!data.dptr) {
663                 DEBUG(10,("Record %s not found\n", keystr));
664                 ret = NT_STATUS_NONE_MAPPED;
665                 goto done;
666         }
667                 
668         if (!string_to_sid(map->sid, (const char *)data.dptr)) {
669                 DEBUG(10,("INVALID SID (%s) in record %s\n",
670                         (const char *)data.dptr, keystr));
671                 ret = NT_STATUS_INTERNAL_DB_ERROR;
672                 goto done;
673         }
674
675         DEBUG(10,("Found record %s -> %s\n", keystr, (const char *)data.dptr));
676         ret = NT_STATUS_OK;
677
678 done:
679         SAFE_FREE(data.dptr);
680         talloc_free(keystr);
681         return ret;
682 }
683
684 /**********************************
685  Single sid to id lookup function. 
686 **********************************/
687
688 static NTSTATUS idmap_tdb_sid_to_id(struct idmap_tdb_context *ctx, struct id_map *map)
689 {
690         NTSTATUS ret;
691         TDB_DATA data;
692         char *keystr;
693         unsigned long rec_id = 0;
694         fstring tmp;
695
696         if ((keystr = talloc_asprintf(
697                      ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
698                 DEBUG(0, ("Out of memory!\n"));
699                 ret = NT_STATUS_NO_MEMORY;
700                 goto done;
701         }
702
703         DEBUG(10,("Fetching record %s\n", keystr));
704
705         /* Check if sid is present in database */
706         data = tdb_fetch_bystring(ctx->tdb, keystr);
707         if (!data.dptr) {
708                 DEBUG(10,("Record %s not found\n", keystr));
709                 ret = NT_STATUS_NONE_MAPPED;
710                 goto done;
711         }
712
713         /* What type of record is this ? */
714         if (sscanf((const char *)data.dptr, "UID %lu", &rec_id) == 1) { /* Try a UID record. */
715                 map->xid.id = rec_id;
716                 map->xid.type = ID_TYPE_UID;
717                 DEBUG(10,("Found uid record %s -> %s \n", keystr, (const char *)data.dptr ));
718                 ret = NT_STATUS_OK;
719
720         } else if (sscanf((const char *)data.dptr, "GID %lu", &rec_id) == 1) { /* Try a GID record. */
721                 map->xid.id = rec_id;
722                 map->xid.type = ID_TYPE_GID;
723                 DEBUG(10,("Found gid record %s -> %s \n", keystr, (const char *)data.dptr ));
724                 ret = NT_STATUS_OK;
725
726         } else { /* Unknown record type ! */
727                 DEBUG(2, ("Found INVALID record %s -> %s\n", keystr, (const char *)data.dptr));
728                 ret = NT_STATUS_INTERNAL_DB_ERROR;
729         }
730         
731         SAFE_FREE(data.dptr);
732
733         /* apply filters before returning result */
734         if ((ctx->filter_low_id && (map->xid.id < ctx->filter_low_id)) ||
735             (ctx->filter_high_id && (map->xid.id > ctx->filter_high_id))) {
736                 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
737                                 map->xid.id, ctx->filter_low_id, ctx->filter_high_id));
738                 ret = NT_STATUS_NONE_MAPPED;
739         }
740
741 done:
742         talloc_free(keystr);
743         return ret;
744 }
745
746 /**********************************
747  lookup a set of unix ids. 
748 **********************************/
749
750 static NTSTATUS idmap_tdb_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
751 {
752         struct idmap_tdb_context *ctx;
753         NTSTATUS ret;
754         int i;
755
756         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
757
758         for (i = 0; ids[i]; i++) {
759                 ret = idmap_tdb_id_to_sid(ctx, ids[i]);
760                 if ( ! NT_STATUS_IS_OK(ret)) {
761
762                         /* if it is just a failed mapping continue */
763                         if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
764
765                                 /* make sure it is marked as unmapped */
766                                 ids[i]->status = ID_UNMAPPED;
767                                 continue;
768                         }
769                         
770                         /* some fatal error occurred, return immediately */
771                         goto done;
772                 }
773
774                 /* all ok, id is mapped */
775                 ids[i]->status = ID_MAPPED;
776         }
777
778         ret = NT_STATUS_OK;
779
780 done:
781         return ret;
782 }
783
784 /**********************************
785  lookup a set of sids. 
786 **********************************/
787
788 static NTSTATUS idmap_tdb_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
789 {
790         struct idmap_tdb_context *ctx;
791         NTSTATUS ret;
792         int i;
793
794         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
795
796         for (i = 0; ids[i]; i++) {
797                 ret = idmap_tdb_sid_to_id(ctx, ids[i]);
798                 if ( ! NT_STATUS_IS_OK(ret)) {
799
800                         /* if it is just a failed mapping continue */
801                         if (NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED)) {
802
803                                 /* make sure it is marked as unmapped */
804                                 ids[i]->status = ID_UNMAPPED;
805                                 continue;
806                         }
807                         
808                         /* some fatal error occurred, return immediately */
809                         goto done;
810                 }
811
812                 /* all ok, id is mapped */
813                 ids[i]->status = ID_MAPPED;
814         }
815
816         ret = NT_STATUS_OK;
817
818 done:
819         return ret;
820 }
821
822 /**********************************
823  set a mapping.
824 **********************************/
825
826 static NTSTATUS idmap_tdb_set_mapping(struct idmap_domain *dom,
827                                       const struct id_map *map)
828 {
829         struct idmap_tdb_context *ctx;
830         NTSTATUS ret;
831         TDB_DATA ksid, kid, data;
832         char *ksidstr, *kidstr;
833         fstring tmp;
834
835         if (!map || !map->sid) {
836                 return NT_STATUS_INVALID_PARAMETER;
837         }
838
839         ksidstr = kidstr = NULL;
840         data.dptr = NULL;
841
842         /* TODO: should we filter a set_mapping using low/high filters ? */
843
844         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
845
846         switch (map->xid.type) {
847
848         case ID_TYPE_UID:
849                 kidstr = talloc_asprintf(ctx, "UID %lu",
850                                          (unsigned long)map->xid.id);
851                 break;
852
853         case ID_TYPE_GID:
854                 kidstr = talloc_asprintf(ctx, "GID %lu",
855                                          (unsigned long)map->xid.id);
856                 break;
857
858         default:
859                 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
860                 return NT_STATUS_INVALID_PARAMETER;
861         }
862
863         if (kidstr == NULL) {
864                 DEBUG(0, ("ERROR: Out of memory!\n"));
865                 ret = NT_STATUS_NO_MEMORY;
866                 goto done;
867         }
868
869         if ((ksidstr = talloc_asprintf(
870                      ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
871                 DEBUG(0, ("Out of memory!\n"));
872                 ret = NT_STATUS_NO_MEMORY;
873                 goto done;
874         }
875
876         DEBUG(10, ("Storing %s <-> %s map\n", ksidstr, kidstr));
877         kid = string_term_tdb_data(kidstr);
878         ksid = string_term_tdb_data(ksidstr);
879
880         /* *DELETE* previous mappings if any.
881          * This is done for both the SID and [U|G]ID passed in */
882
883         /* NOTE: We should lock both the ksid and kid records here, before
884          * making modifications.  However, because tdb_chainlock() is a
885          * blocking call we could create an unrecoverable deadlock, so for now
886          * we only lock the ksid record. */
887
888         /* Lock the record for this SID. */
889         if (tdb_chainlock(ctx->tdb, ksid) != 0) {
890                 DEBUG(10,("Failed to lock record %s. Error %s\n",
891                                 ksidstr, tdb_errorstr(ctx->tdb) ));
892                 return NT_STATUS_UNSUCCESSFUL;
893         }
894
895         data = tdb_fetch(ctx->tdb, ksid);
896         if (data.dptr) {
897                 DEBUG(10, ("Deleting existing mapping %s <-> %s\n",
898                            (const char *)data.dptr, ksidstr ));
899                 tdb_delete(ctx->tdb, data);
900                 tdb_delete(ctx->tdb, ksid);
901                 SAFE_FREE(data.dptr);
902         }
903
904         data = tdb_fetch(ctx->tdb, kid);
905         if (data.dptr) {
906                 DEBUG(10,("Deleting existing mapping %s <-> %s\n",
907                           (const char *)data.dptr, kidstr ));
908                 tdb_delete(ctx->tdb, data);
909                 tdb_delete(ctx->tdb, kid);
910                 SAFE_FREE(data.dptr);
911         }
912
913         if (tdb_store(ctx->tdb, ksid, kid, TDB_INSERT) == -1) {
914                 DEBUG(0, ("Error storing SID -> ID: %s\n",
915                           tdb_errorstr(ctx->tdb)));
916                 tdb_chainunlock(ctx->tdb, ksid);
917                 ret = NT_STATUS_UNSUCCESSFUL;
918                 goto done;
919         }
920         if (tdb_store(ctx->tdb, kid, ksid, TDB_INSERT) == -1) {
921                 DEBUG(0, ("Error storing ID -> SID: %s\n",
922                           tdb_errorstr(ctx->tdb)));
923                 /* try to remove the previous stored SID -> ID map */
924                 tdb_delete(ctx->tdb, ksid);
925                 tdb_chainunlock(ctx->tdb, ksid);
926                 ret = NT_STATUS_UNSUCCESSFUL;
927                 goto done;
928         }
929
930         tdb_chainunlock(ctx->tdb, ksid);
931         DEBUG(10,("Stored %s <-> %s\n", ksidstr, kidstr));
932         ret = NT_STATUS_OK;
933
934 done:
935         talloc_free(ksidstr);
936         talloc_free(kidstr);
937         SAFE_FREE(data.dptr);
938         return ret;
939 }
940
941 /**********************************
942  remove a mapping.
943 **********************************/
944
945 static NTSTATUS idmap_tdb_remove_mapping(struct idmap_domain *dom,
946                                          const struct id_map *map)
947 {
948         struct idmap_tdb_context *ctx;
949         NTSTATUS ret;
950         TDB_DATA ksid, kid, data;
951         char *ksidstr, *kidstr;
952         fstring tmp;
953
954         if (!map || !map->sid) {
955                 return NT_STATUS_INVALID_PARAMETER;
956         }
957
958         ksidstr = kidstr = NULL;
959         data.dptr = NULL;
960
961         /* TODO: should we filter a remove_mapping using low/high filters ? */
962
963         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
964
965         switch (map->xid.type) {
966
967         case ID_TYPE_UID:
968                 kidstr = talloc_asprintf(ctx, "UID %lu",
969                                          (unsigned long)map->xid.id);
970                 break;
971
972         case ID_TYPE_GID:
973                 kidstr = talloc_asprintf(ctx, "GID %lu",
974                                          (unsigned long)map->xid.id);
975                 break;
976
977         default:
978                 DEBUG(2, ("INVALID unix ID type: 0x02%x\n", map->xid.type));
979                 return NT_STATUS_INVALID_PARAMETER;
980         }
981
982         if (kidstr == NULL) {
983                 DEBUG(0, ("ERROR: Out of memory!\n"));
984                 ret = NT_STATUS_NO_MEMORY;
985                 goto done;
986         }
987
988         if ((ksidstr = talloc_asprintf(
989                      ctx, "%s", sid_to_fstring(tmp, map->sid))) == NULL) {
990                 DEBUG(0, ("Out of memory!\n"));
991                 ret = NT_STATUS_NO_MEMORY;
992                 goto done;
993         }
994
995         DEBUG(10, ("Checking %s <-> %s map\n", ksidstr, kidstr));
996         ksid = string_term_tdb_data(ksidstr);
997         kid = string_term_tdb_data(kidstr);
998
999         /* NOTE: We should lock both the ksid and kid records here, before
1000          * making modifications.  However, because tdb_chainlock() is a
1001          * blocking call we could create an unrecoverable deadlock, so for now
1002          * we only lock the ksid record. */
1003
1004         /* Lock the record for this SID. */
1005         if (tdb_chainlock(ctx->tdb, ksid) != 0) {
1006                 DEBUG(10,("Failed to lock record %s. Error %s\n",
1007                                 ksidstr, tdb_errorstr(ctx->tdb) ));
1008                 return NT_STATUS_UNSUCCESSFUL;
1009         }
1010
1011         /* Check if sid is present in database */
1012         data = tdb_fetch(ctx->tdb, ksid);
1013         if (!data.dptr) {
1014                 DEBUG(10,("Record %s not found\n", ksidstr));
1015                 tdb_chainunlock(ctx->tdb, ksid);
1016                 ret = NT_STATUS_NONE_MAPPED;
1017                 goto done;
1018         }
1019
1020         /* Check if sid is mapped to the specified ID */
1021         if ((data.dsize != kid.dsize) ||
1022             (memcmp(data.dptr, kid.dptr, data.dsize) != 0)) {
1023                 DEBUG(10,("Specified SID does not map to specified ID\n"));
1024                 DEBUGADD(10,("Actual mapping is %s -> %s\n", ksidstr,
1025                          (const char *)data.dptr));
1026                 tdb_chainunlock(ctx->tdb, ksid);
1027                 ret = NT_STATUS_NONE_MAPPED;
1028                 goto done;
1029         }
1030
1031         DEBUG(10, ("Removing %s <-> %s map\n", ksidstr, kidstr));
1032
1033         /* Delete previous mappings. */
1034
1035         DEBUG(10, ("Deleting existing mapping %s -> %s\n", ksidstr, kidstr ));
1036         tdb_delete(ctx->tdb, ksid);
1037
1038         DEBUG(10,("Deleting existing mapping %s -> %s\n", kidstr, ksidstr ));
1039         tdb_delete(ctx->tdb, kid);
1040
1041         tdb_chainunlock(ctx->tdb, ksid);
1042         ret = NT_STATUS_OK;
1043
1044 done:
1045         talloc_free(ksidstr);
1046         talloc_free(kidstr);
1047         SAFE_FREE(data.dptr);
1048         return ret;
1049 }
1050
1051 /**********************************
1052  Close the idmap tdb instance
1053 **********************************/
1054
1055 static NTSTATUS idmap_tdb_close(struct idmap_domain *dom)
1056 {
1057         struct idmap_tdb_context *ctx;
1058
1059         if (dom->private_data) {
1060                 ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
1061
1062                 if (idmap_tdb_tdb_close(ctx->tdb) == 0) {
1063                         return NT_STATUS_OK;
1064                 } else {
1065                         return NT_STATUS_UNSUCCESSFUL;
1066                 }
1067         }
1068         return NT_STATUS_OK;
1069 }
1070
1071 struct dump_data {
1072         TALLOC_CTX *memctx;
1073         struct id_map **maps;
1074         int *num_maps;
1075         NTSTATUS ret;
1076 };
1077
1078 static int idmap_tdb_dump_one_entry(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA value, void *pdata)
1079 {
1080         struct dump_data *data = talloc_get_type(pdata, struct dump_data);
1081         struct id_map *maps;
1082         int num_maps = *data->num_maps;
1083
1084         /* ignore any record but the ones with a SID as key */
1085         if (strncmp((const char *)key.dptr, "S-", 2) == 0) {
1086
1087                 maps = talloc_realloc(NULL, *data->maps, struct id_map, num_maps+1);
1088                 if ( ! maps) {
1089                         DEBUG(0, ("Out of memory!\n"));
1090                         data->ret = NT_STATUS_NO_MEMORY;
1091                         return -1;
1092                 }
1093                 *data->maps = maps;
1094                 maps[num_maps].sid = talloc(maps, DOM_SID);
1095                 if ( ! maps[num_maps].sid) {
1096                         DEBUG(0, ("Out of memory!\n"));
1097                         data->ret = NT_STATUS_NO_MEMORY;
1098                         return -1;
1099                 }
1100
1101                 if (!string_to_sid(maps[num_maps].sid, (const char *)key.dptr)) {
1102                         DEBUG(10,("INVALID record %s\n", (const char *)key.dptr));
1103                         /* continue even with errors */
1104                         return 0;
1105                 }
1106
1107                 /* Try a UID record. */
1108                 if (sscanf((const char *)value.dptr, "UID %u", &(maps[num_maps].xid.id)) == 1) {
1109                         maps[num_maps].xid.type = ID_TYPE_UID;
1110                         maps[num_maps].status = ID_MAPPED;
1111                         *data->num_maps = num_maps + 1;
1112
1113                 /* Try a GID record. */
1114                 } else
1115                 if (sscanf((const char *)value.dptr, "GID %u", &(maps[num_maps].xid.id)) == 1) {
1116                         maps[num_maps].xid.type = ID_TYPE_GID;
1117                         maps[num_maps].status = ID_MAPPED;
1118                         *data->num_maps = num_maps + 1;
1119
1120                 /* Unknown record type ! */
1121                 } else {
1122                         maps[num_maps].status = ID_UNKNOWN;
1123                         DEBUG(2, ("Found INVALID record %s -> %s\n",
1124                                 (const char *)key.dptr, (const char *)value.dptr));
1125                         /* do not increment num_maps */
1126                 }
1127         }
1128
1129         return 0;
1130 }
1131
1132 /**********************************
1133  Dump all mappings out
1134 **********************************/
1135
1136 static NTSTATUS idmap_tdb_dump_data(struct idmap_domain *dom, struct id_map **maps, int *num_maps)
1137 {
1138         struct idmap_tdb_context *ctx;
1139         struct dump_data *data;
1140         NTSTATUS ret = NT_STATUS_OK;
1141
1142         ctx = talloc_get_type(dom->private_data, struct idmap_tdb_context);
1143
1144         data = TALLOC_ZERO_P(ctx, struct dump_data);
1145         if ( ! data) {
1146                 DEBUG(0, ("Out of memory!\n"));
1147                 return NT_STATUS_NO_MEMORY;
1148         }
1149         data->maps = maps;
1150         data->num_maps = num_maps;
1151         data->ret = NT_STATUS_OK;
1152
1153         tdb_traverse(ctx->tdb, idmap_tdb_dump_one_entry, data);
1154
1155         if ( ! NT_STATUS_IS_OK(data->ret)) {
1156                 ret = data->ret;
1157         }
1158
1159         talloc_free(data);
1160         return ret;
1161 }
1162
1163 static struct idmap_methods db_methods = {
1164
1165         .init = idmap_tdb_db_init,
1166         .unixids_to_sids = idmap_tdb_unixids_to_sids,
1167         .sids_to_unixids = idmap_tdb_sids_to_unixids,
1168         .set_mapping = idmap_tdb_set_mapping,
1169         .remove_mapping = idmap_tdb_remove_mapping,
1170         .dump_data = idmap_tdb_dump_data,
1171         .close_fn = idmap_tdb_close
1172 };
1173
1174 static struct idmap_alloc_methods db_alloc_methods = {
1175
1176         .init = idmap_tdb_alloc_init,
1177         .allocate_id = idmap_tdb_allocate_id,
1178         .get_id_hwm = idmap_tdb_get_hwm,
1179         .set_id_hwm = idmap_tdb_set_hwm,
1180         .close_fn = idmap_tdb_alloc_close
1181 };
1182
1183 NTSTATUS idmap_alloc_tdb_init(void)
1184 {
1185         return smb_register_idmap_alloc(SMB_IDMAP_INTERFACE_VERSION, "tdb", &db_alloc_methods);
1186 }
1187
1188 NTSTATUS idmap_tdb_init(void)
1189 {
1190         NTSTATUS ret;
1191
1192         DEBUG(10, ("calling idmap_tdb_init\n"));
1193
1194         /* FIXME: bad hack to actually register also the alloc_tdb module without changining configure.in */
1195         ret = idmap_alloc_tdb_init();
1196         if (! NT_STATUS_IS_OK(ret)) {
1197                 return ret;
1198         }
1199         return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "tdb", &db_methods);
1200 }