Replace sid_string_static with sid_to_string
[ira/wip.git] / source3 / groupdb / mapping_tdb.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *  Copyright (C) Andrew Tridgell              1992-2006,
5  *  Copyright (C) Jean François Micouleau      1998-2001.
6  *  Copyright (C) Volker Lendecke              2006.
7  *  Copyright (C) Gerald Carter                2006.
8  *  
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *  
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *  
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #include "includes.h"
24 #include "groupdb/mapping.h"
25
26 static TDB_CONTEXT *tdb; /* used for driver files */
27
28 static bool enum_group_mapping(const DOM_SID *domsid, enum lsa_SidType sid_name_use, GROUP_MAP **pp_rmap,
29                                size_t *p_num_entries, bool unix_only);
30 static bool group_map_remove(const DOM_SID *sid);
31         
32 /****************************************************************************
33  Open the group mapping tdb.
34 ****************************************************************************/
35 static bool init_group_mapping(void)
36 {
37         const char *vstring = "INFO/version";
38         int32 vers_id;
39         GROUP_MAP *map_table = NULL;
40         size_t num_entries = 0;
41         
42         if (tdb)
43                 return True;
44                 
45         tdb = tdb_open_log(state_path("group_mapping.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
46         if (!tdb) {
47                 DEBUG(0,("Failed to open group mapping database\n"));
48                 return False;
49         }
50
51         /* handle a Samba upgrade */
52         tdb_lock_bystring(tdb, vstring);
53
54         /* Cope with byte-reversed older versions of the db. */
55         vers_id = tdb_fetch_int32(tdb, vstring);
56         if ((vers_id == DATABASE_VERSION_V1) || (IREV(vers_id) == DATABASE_VERSION_V1)) {
57                 /* Written on a bigendian machine with old fetch_int code. Save as le. */
58                 tdb_store_int32(tdb, vstring, DATABASE_VERSION_V2);
59                 vers_id = DATABASE_VERSION_V2;
60         }
61
62         /* if its an unknown version we remove everthing in the db */
63         
64         if (vers_id != DATABASE_VERSION_V2) {
65                 tdb_traverse(tdb, tdb_traverse_delete_fn, NULL);
66                 tdb_store_int32(tdb, vstring, DATABASE_VERSION_V2);
67         }
68
69         tdb_unlock_bystring(tdb, vstring);
70
71         /* cleanup any map entries with a gid == -1 */
72         
73         if ( enum_group_mapping( NULL, SID_NAME_UNKNOWN, &map_table, &num_entries, False ) ) {
74                 int i;
75                 
76                 for ( i=0; i<num_entries; i++ ) {
77                         if ( map_table[i].gid == -1 ) {
78                                 group_map_remove( &map_table[i].sid );
79                         }
80                 }
81                 
82                 SAFE_FREE( map_table );
83         }
84
85
86         return True;
87 }
88
89 /****************************************************************************
90 ****************************************************************************/
91 static bool add_mapping_entry(GROUP_MAP *map, int flag)
92 {
93         TDB_DATA dbuf;
94         char *key = NULL;
95         char *buf = NULL;
96         fstring string_sid="";
97         int len;
98         bool ret;
99
100         sid_to_string(string_sid, &map->sid);
101
102         len = tdb_pack(NULL, sizeof(buf), "ddff",
103                 map->gid, map->sid_name_use, map->nt_name, map->comment);
104         if (len) {
105                 buf = SMB_MALLOC_ARRAY(char, len);
106                 if (!buf) {
107                         return false;
108                 }
109                 len = tdb_pack((uint8 *)buf, sizeof(buf), "ddff", map->gid,
110                                 map->sid_name_use, map->nt_name, map->comment);
111         }
112
113         if (asprintf(&key, "%s%s", GROUP_PREFIX, string_sid) < 0) {
114                 SAFE_FREE(buf);
115                 return false;
116         }
117
118         dbuf.dsize = len;
119         dbuf.dptr = (uint8 *)buf;
120
121         ret = (tdb_store_bystring(tdb, key, dbuf, flag) == 0);
122
123         SAFE_FREE(key);
124         SAFE_FREE(buf);
125         return ret;
126 }
127
128
129 /****************************************************************************
130  Return the sid and the type of the unix group.
131 ****************************************************************************/
132
133 static bool get_group_map_from_sid(DOM_SID sid, GROUP_MAP *map)
134 {
135         TDB_DATA dbuf;
136         char *key = NULL;
137         fstring string_sid;
138         int ret = 0;
139
140         /* the key is the SID, retrieving is direct */
141
142         sid_to_string(string_sid, &sid);
143         if (asprintf(&key, "%s%s", GROUP_PREFIX, string_sid) < 0) {
144                 return false;
145         }
146
147         dbuf = tdb_fetch_bystring(tdb, key);
148         if (!dbuf.dptr) {
149                 SAFE_FREE(key);
150                 return false;
151         }
152
153         SAFE_FREE(key);
154
155         ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
156                         &map->gid, &map->sid_name_use,
157                         &map->nt_name, &map->comment);
158
159         SAFE_FREE(dbuf.dptr);
160
161         if ( ret == -1 ) {
162                 DEBUG(3,("get_group_map_from_sid: tdb_unpack failure\n"));
163                 return False;
164         }
165
166         sid_copy(&map->sid, &sid);
167
168         return True;
169 }
170
171 /****************************************************************************
172  Return the sid and the type of the unix group.
173 ****************************************************************************/
174
175 static bool get_group_map_from_gid(gid_t gid, GROUP_MAP *map)
176 {
177         TDB_DATA kbuf, dbuf, newkey;
178         fstring string_sid;
179         int ret;
180
181         /* we need to enumerate the TDB to find the GID */
182
183         for (kbuf = tdb_firstkey(tdb);
184              kbuf.dptr;
185              newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
186
187                 if (strncmp((const char *)kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0) continue;
188
189                 dbuf = tdb_fetch(tdb, kbuf);
190                 if (!dbuf.dptr)
191                         continue;
192
193                 fstrcpy(string_sid, (const char *)kbuf.dptr+strlen(GROUP_PREFIX));
194
195                 string_to_sid(&map->sid, string_sid);
196
197                 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
198                                  &map->gid, &map->sid_name_use, &map->nt_name, &map->comment);
199
200                 SAFE_FREE(dbuf.dptr);
201
202                 if ( ret == -1 ) {
203                         DEBUG(3,("get_group_map_from_gid: tdb_unpack failure\n"));
204                         return False;
205                 }
206
207                 if (gid==map->gid) {
208                         SAFE_FREE(kbuf.dptr);
209                         return True;
210                 }
211         }
212
213         return False;
214 }
215
216 /****************************************************************************
217  Return the sid and the type of the unix group.
218 ****************************************************************************/
219
220 static bool get_group_map_from_ntname(const char *name, GROUP_MAP *map)
221 {
222         TDB_DATA kbuf, dbuf, newkey;
223         fstring string_sid;
224         int ret;
225
226         /* we need to enumerate the TDB to find the name */
227
228         for (kbuf = tdb_firstkey(tdb);
229              kbuf.dptr;
230              newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
231
232                 if (strncmp((const char *)kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0) continue;
233
234                 dbuf = tdb_fetch(tdb, kbuf);
235                 if (!dbuf.dptr)
236                         continue;
237
238                 fstrcpy(string_sid, (const char *)kbuf.dptr+strlen(GROUP_PREFIX));
239
240                 string_to_sid(&map->sid, string_sid);
241
242                 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
243                                  &map->gid, &map->sid_name_use, &map->nt_name, &map->comment);
244
245                 SAFE_FREE(dbuf.dptr);
246
247                 if ( ret == -1 ) {
248                         DEBUG(3,("get_group_map_from_ntname: tdb_unpack failure\n"));
249                         return False;
250                 }
251
252                 if ( strequal(name, map->nt_name) ) {
253                         SAFE_FREE(kbuf.dptr);
254                         return True;
255                 }
256         }
257
258         return False;
259 }
260
261 /****************************************************************************
262  Remove a group mapping entry.
263 ****************************************************************************/
264
265 static bool group_map_remove(const DOM_SID *sid)
266 {
267         TDB_DATA dbuf;
268         char *key = NULL;
269         fstring string_sid;
270         bool ret;
271
272         /* the key is the SID, retrieving is direct */
273
274         sid_to_string(string_sid, sid);
275         if (asprintf(&key, "%s%s", GROUP_PREFIX, string_sid) < 0) {
276                 return false;
277         }
278
279         dbuf = tdb_fetch_bystring(tdb, key);
280         if (!dbuf.dptr) {
281                 SAFE_FREE(key);
282                 return false;
283         }
284
285         SAFE_FREE(dbuf.dptr);
286
287         ret = (tdb_delete_bystring(tdb, key) == TDB_SUCCESS);
288         SAFE_FREE(key);
289         return ret;
290 }
291
292 /****************************************************************************
293  Enumerate the group mapping.
294 ****************************************************************************/
295
296 static bool enum_group_mapping(const DOM_SID *domsid, enum lsa_SidType sid_name_use, GROUP_MAP **pp_rmap,
297                         size_t *p_num_entries, bool unix_only)
298 {
299         TDB_DATA kbuf, dbuf, newkey;
300         fstring string_sid;
301         GROUP_MAP map;
302         GROUP_MAP *mapt;
303         int ret;
304         size_t entries=0;
305         DOM_SID grpsid;
306         uint32 rid;
307
308         *p_num_entries=0;
309         *pp_rmap=NULL;
310
311         for (kbuf = tdb_firstkey(tdb); 
312              kbuf.dptr; 
313              newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
314
315                 if (strncmp((const char *)kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0)
316                         continue;
317
318                 dbuf = tdb_fetch(tdb, kbuf);
319                 if (!dbuf.dptr)
320                         continue;
321
322                 fstrcpy(string_sid, (const char *)kbuf.dptr+strlen(GROUP_PREFIX));
323                                 
324                 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
325                                  &map.gid, &map.sid_name_use, &map.nt_name, &map.comment);
326
327                 SAFE_FREE(dbuf.dptr);
328
329                 if ( ret == -1 ) {
330                         DEBUG(3,("enum_group_mapping: tdb_unpack failure\n"));
331                         continue;
332                 }
333         
334                 /* list only the type or everything if UNKNOWN */
335                 if (sid_name_use!=SID_NAME_UNKNOWN  && sid_name_use!=map.sid_name_use) {
336                         DEBUG(11,("enum_group_mapping: group %s is not of the requested type\n", map.nt_name));
337                         continue;
338                 }
339
340                 if (unix_only==ENUM_ONLY_MAPPED && map.gid==-1) {
341                         DEBUG(11,("enum_group_mapping: group %s is non mapped\n", map.nt_name));
342                         continue;
343                 }
344
345                 string_to_sid(&grpsid, string_sid);
346                 sid_copy( &map.sid, &grpsid );
347                 
348                 sid_split_rid( &grpsid, &rid );
349
350                 /* Only check the domain if we were given one */
351
352                 if ( domsid && !sid_equal( domsid, &grpsid ) ) {
353                         DEBUG(11,("enum_group_mapping: group %s is not in "
354                                   "domain %s\n", string_sid,
355                                   sid_string_dbg(domsid)));
356                         continue;
357                 }
358
359                 DEBUG(11,("enum_group_mapping: returning group %s of "
360                           "type %s\n", map.nt_name,
361                           sid_type_lookup(map.sid_name_use)));
362
363                 (*pp_rmap) = SMB_REALLOC_ARRAY((*pp_rmap), GROUP_MAP, entries+1);
364                 if (!(*pp_rmap)) {
365                         DEBUG(0,("enum_group_mapping: Unable to enlarge group map!\n"));
366                         return False;
367                 }
368
369                 mapt = (*pp_rmap);
370
371                 mapt[entries].gid = map.gid;
372                 sid_copy( &mapt[entries].sid, &map.sid);
373                 mapt[entries].sid_name_use = map.sid_name_use;
374                 fstrcpy(mapt[entries].nt_name, map.nt_name);
375                 fstrcpy(mapt[entries].comment, map.comment);
376
377                 entries++;
378
379         }
380
381         *p_num_entries=entries;
382
383         return True;
384 }
385
386 /* This operation happens on session setup, so it should better be fast. We
387  * store a list of aliases a SID is member of hanging off MEMBEROF/SID. */
388
389 static NTSTATUS one_alias_membership(const DOM_SID *member,
390                                DOM_SID **sids, size_t *num)
391 {
392         fstring tmp;
393         fstring key;
394         char *string_sid;
395         TDB_DATA dbuf;
396         const char *p;
397         TALLOC_CTX *frame;
398
399         slprintf(key, sizeof(key), "%s%s", MEMBEROF_PREFIX,
400                  sid_to_string(tmp, member));
401
402         dbuf = tdb_fetch_bystring(tdb, key);
403
404         if (dbuf.dptr == NULL) {
405                 return NT_STATUS_OK;
406         }
407
408         p = (const char *)dbuf.dptr;
409         frame = talloc_stackframe();
410         while (next_token_talloc(frame, &p, &string_sid, " ")) {
411                 DOM_SID alias;
412
413                 if (!string_to_sid(&alias, string_sid))
414                         continue;
415
416                 if (!add_sid_to_array_unique(NULL, &alias, sids, num)) {
417                         TALLOC_FREE(frame);
418                         return NT_STATUS_NO_MEMORY;
419                 }
420         }
421
422         TALLOC_FREE(frame);
423         SAFE_FREE(dbuf.dptr);
424         return NT_STATUS_OK;
425 }
426
427 static NTSTATUS alias_memberships(const DOM_SID *members, size_t num_members,
428                                   DOM_SID **sids, size_t *num)
429 {
430         size_t i;
431
432         *num = 0;
433         *sids = NULL;
434
435         for (i=0; i<num_members; i++) {
436                 NTSTATUS status = one_alias_membership(&members[i], sids, num);
437                 if (!NT_STATUS_IS_OK(status))
438                         return status;
439         }
440         return NT_STATUS_OK;
441 }
442
443 static bool is_aliasmem(const DOM_SID *alias, const DOM_SID *member)
444 {
445         DOM_SID *sids;
446         size_t i, num;
447
448         /* This feels the wrong way round, but the on-disk data structure
449          * dictates it this way. */
450         if (!NT_STATUS_IS_OK(alias_memberships(member, 1, &sids, &num)))
451                 return False;
452
453         for (i=0; i<num; i++) {
454                 if (sid_compare(alias, &sids[i]) == 0) {
455                         TALLOC_FREE(sids);
456                         return True;
457                 }
458         }
459         TALLOC_FREE(sids);
460         return False;
461 }
462
463
464 static NTSTATUS add_aliasmem(const DOM_SID *alias, const DOM_SID *member)
465 {
466         GROUP_MAP map;
467         TDB_DATA dbuf;
468         char *key = NULL;
469         fstring string_sid;
470         char *new_memberstring;
471         int result;
472
473         if (!get_group_map_from_sid(*alias, &map))
474                 return NT_STATUS_NO_SUCH_ALIAS;
475
476         if ( (map.sid_name_use != SID_NAME_ALIAS) &&
477              (map.sid_name_use != SID_NAME_WKN_GRP) )
478                 return NT_STATUS_NO_SUCH_ALIAS;
479
480         if (is_aliasmem(alias, member))
481                 return NT_STATUS_MEMBER_IN_ALIAS;
482
483         sid_to_string(string_sid, member);
484         if (asprintf(&key, "%s%s", MEMBEROF_PREFIX, string_sid) < 0) {
485                 return NT_STATUS_NO_MEMORY;
486         }
487
488         dbuf = tdb_fetch_bystring(tdb, key);
489
490         sid_to_string(string_sid, alias);
491
492         if (dbuf.dptr != NULL) {
493                 asprintf(&new_memberstring, "%s %s", (char *)(dbuf.dptr),
494                          string_sid);
495         } else {
496                 new_memberstring = SMB_STRDUP(string_sid);
497         }
498
499         if (new_memberstring == NULL) {
500                 SAFE_FREE(key);
501                 return NT_STATUS_NO_MEMORY;
502         }
503
504         SAFE_FREE(dbuf.dptr);
505         dbuf = string_term_tdb_data(new_memberstring);
506
507         result = tdb_store_bystring(tdb, key, dbuf, 0);
508
509         SAFE_FREE(new_memberstring);
510         SAFE_FREE(key);
511
512         return (result == 0 ? NT_STATUS_OK : NT_STATUS_ACCESS_DENIED);
513 }
514
515 struct aliasmem_closure {
516         const DOM_SID *alias;
517         DOM_SID **sids;
518         size_t *num;
519 };
520
521 static int collect_aliasmem(TDB_CONTEXT *tdb_ctx, TDB_DATA key, TDB_DATA data,
522                             void *state)
523 {
524         struct aliasmem_closure *closure = (struct aliasmem_closure *)state;
525         const char *p;
526         char *alias_string;
527         TALLOC_CTX *frame;
528
529         if (strncmp((const char *)key.dptr, MEMBEROF_PREFIX,
530                     strlen(MEMBEROF_PREFIX)) != 0)
531                 return 0;
532
533         p = (const char *)data.dptr;
534
535         frame = talloc_stackframe();
536         while (next_token_talloc(frame, &p, &alias_string, " ")) {
537                 DOM_SID alias, member;
538                 const char *member_string;
539
540                 if (!string_to_sid(&alias, alias_string))
541                         continue;
542
543                 if (sid_compare(closure->alias, &alias) != 0)
544                         continue;
545
546                 /* Ok, we found the alias we're looking for in the membership
547                  * list currently scanned. The key represents the alias
548                  * member. Add that. */
549
550                 member_string = strchr((const char *)key.dptr, '/');
551
552                 /* Above we tested for MEMBEROF_PREFIX which includes the
553                  * slash. */
554
555                 SMB_ASSERT(member_string != NULL);
556                 member_string += 1;
557
558                 if (!string_to_sid(&member, member_string))
559                         continue;
560
561                 if (!add_sid_to_array(NULL, &member, closure->sids, closure->num)) {
562                         /* talloc fail. */
563                         break;
564                 }
565         }
566
567         TALLOC_FREE(frame);
568         return 0;
569 }
570
571 static NTSTATUS enum_aliasmem(const DOM_SID *alias, DOM_SID **sids, size_t *num)
572 {
573         GROUP_MAP map;
574         struct aliasmem_closure closure;
575
576         if (!get_group_map_from_sid(*alias, &map))
577                 return NT_STATUS_NO_SUCH_ALIAS;
578
579         if ( (map.sid_name_use != SID_NAME_ALIAS) &&
580              (map.sid_name_use != SID_NAME_WKN_GRP) )
581                 return NT_STATUS_NO_SUCH_ALIAS;
582
583         *sids = NULL;
584         *num = 0;
585
586         closure.alias = alias;
587         closure.sids = sids;
588         closure.num = num;
589
590         tdb_traverse(tdb, collect_aliasmem, &closure);
591         return NT_STATUS_OK;
592 }
593
594 static NTSTATUS del_aliasmem(const DOM_SID *alias, const DOM_SID *member)
595 {
596         NTSTATUS result;
597         DOM_SID *sids;
598         size_t i, num;
599         bool found = False;
600         char *member_string;
601         TDB_DATA dbuf;
602         char *key = NULL;
603         fstring sid_string;
604
605         result = alias_memberships(member, 1, &sids, &num);
606
607         if (!NT_STATUS_IS_OK(result))
608                 return result;
609
610         for (i=0; i<num; i++) {
611                 if (sid_compare(&sids[i], alias) == 0) {
612                         found = True;
613                         break;
614                 }
615         }
616
617         if (!found) {
618                 TALLOC_FREE(sids);
619                 return NT_STATUS_MEMBER_NOT_IN_ALIAS;
620         }
621
622         if (i < num)
623                 sids[i] = sids[num-1];
624
625         num -= 1;
626
627         sid_to_string(sid_string, member);
628         if (asprintf(&key, "%s%s", MEMBEROF_PREFIX, sid_string) < 0) {
629                 TALLOC_FREE(sids);
630                 return NT_STATUS_NO_MEMORY;
631         }
632
633         if (num == 0) {
634                 NTSTATUS ret = (tdb_delete_bystring(tdb, key) == 0 ?
635                         NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL);
636                 TALLOC_FREE(sids);
637                 SAFE_FREE(key);
638                 return ret;
639         }
640
641         member_string = SMB_STRDUP("");
642
643         if (member_string == NULL) {
644                 TALLOC_FREE(sids);
645                 SAFE_FREE(key);
646                 return NT_STATUS_NO_MEMORY;
647         }
648
649         for (i=0; i<num; i++) {
650                 char *s = member_string;
651
652                 sid_to_string(sid_string, &sids[i]);
653                 asprintf(&member_string, "%s %s", s, sid_string);
654
655                 SAFE_FREE(s);
656                 if (member_string == NULL) {
657                         TALLOC_FREE(sids);
658                         SAFE_FREE(key);
659                         return NT_STATUS_NO_MEMORY;
660                 }
661         }
662
663         dbuf = string_term_tdb_data(member_string);
664
665         result = tdb_store_bystring(tdb, key, dbuf, 0) == 0 ?
666                 NT_STATUS_OK : NT_STATUS_ACCESS_DENIED;
667
668         TALLOC_FREE(sids);
669         SAFE_FREE(member_string);
670         SAFE_FREE(key);
671
672         return result;
673 }
674
675
676 static const struct mapping_backend tdb_backend = {
677         .add_mapping_entry         = add_mapping_entry,
678         .get_group_map_from_sid    = get_group_map_from_sid,
679         .get_group_map_from_gid    = get_group_map_from_gid,
680         .get_group_map_from_ntname = get_group_map_from_ntname,
681         .group_map_remove          = group_map_remove,
682         .enum_group_mapping        = enum_group_mapping,
683         .one_alias_membership      = one_alias_membership,
684         .add_aliasmem              = add_aliasmem,
685         .del_aliasmem              = del_aliasmem,
686         .enum_aliasmem             = enum_aliasmem      
687 };
688
689 /*
690   initialise the tdb mapping backend
691  */
692 const struct mapping_backend *groupdb_tdb_init(void)
693 {
694         if (!init_group_mapping()) {
695                 DEBUG(0,("Failed to initialise tdb mapping backend\n"));
696                 return NULL;
697         }
698
699         return &tdb_backend;
700 }