missed one on BUG 1195; make sure to set the private * to NULL
[Samba/gebeck_regimport.git] / source3 / groupdb / mapping.c
blobd10a7decb7e717efe0593ecd1acd6cf407b050ed
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Jean François Micouleau 1998-2001.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 static TDB_CONTEXT *tdb; /* used for driver files */
26 #define DATABASE_VERSION_V1 1 /* native byte format. */
27 #define DATABASE_VERSION_V2 2 /* le format. */
29 #define GROUP_PREFIX "UNIXGROUP/"
31 PRIVS privs[] = {
32 {SE_PRIV_NONE, "no_privs", "No privilege" }, /* this one MUST be first */
33 {SE_PRIV_ADD_MACHINES, "SeMachineAccountPrivilege", "Add workstations to the domain" },
34 {SE_PRIV_SEC_PRIV, "SeSecurityPrivilege", "Manage the audit logs" },
35 {SE_PRIV_TAKE_OWNER, "SeTakeOwnershipPrivilege", "Take ownership of file" },
36 {SE_PRIV_ADD_USERS, "SaAddUsers", "Add users to the domain - Samba" },
37 {SE_PRIV_PRINT_OPERATOR, "SaPrintOp", "Add or remove printers - Samba" },
38 {SE_PRIV_ALL, "SaAllPrivs", "all privileges" }
42 /****************************************************************************
43 dump the mapping group mapping to a text file
44 ****************************************************************************/
45 char *decode_sid_name_use(fstring group, enum SID_NAME_USE name_use)
47 static fstring group_type;
49 switch(name_use) {
50 case SID_NAME_USER:
51 fstrcpy(group_type,"User");
52 break;
53 case SID_NAME_DOM_GRP:
54 fstrcpy(group_type,"Domain group");
55 break;
56 case SID_NAME_DOMAIN:
57 fstrcpy(group_type,"Domain");
58 break;
59 case SID_NAME_ALIAS:
60 fstrcpy(group_type,"Local group");
61 break;
62 case SID_NAME_WKN_GRP:
63 fstrcpy(group_type,"Builtin group");
64 break;
65 case SID_NAME_DELETED:
66 fstrcpy(group_type,"Deleted");
67 break;
68 case SID_NAME_INVALID:
69 fstrcpy(group_type,"Invalid");
70 break;
71 case SID_NAME_UNKNOWN:
72 default:
73 fstrcpy(group_type,"Unknown type");
74 break;
77 fstrcpy(group, group_type);
78 return group_type;
81 /****************************************************************************
82 initialise first time the mapping list - called from init_group_mapping()
83 ****************************************************************************/
84 static BOOL default_group_mapping(void)
86 DOM_SID sid_admins;
87 DOM_SID sid_users;
88 DOM_SID sid_guests;
89 fstring str_admins;
90 fstring str_users;
91 fstring str_guests;
93 /* Add the Wellknown groups */
95 add_initial_entry(-1, "S-1-5-32-544", SID_NAME_WKN_GRP, "Administrators", "");
96 add_initial_entry(-1, "S-1-5-32-545", SID_NAME_WKN_GRP, "Users", "");
97 add_initial_entry(-1, "S-1-5-32-546", SID_NAME_WKN_GRP, "Guests", "");
98 add_initial_entry(-1, "S-1-5-32-547", SID_NAME_WKN_GRP, "Power Users", "");
99 add_initial_entry(-1, "S-1-5-32-548", SID_NAME_WKN_GRP, "Account Operators", "");
100 add_initial_entry(-1, "S-1-5-32-549", SID_NAME_WKN_GRP, "System Operators", "");
101 add_initial_entry(-1, "S-1-5-32-550", SID_NAME_WKN_GRP, "Print Operators", "");
102 add_initial_entry(-1, "S-1-5-32-551", SID_NAME_WKN_GRP, "Backup Operators", "");
103 add_initial_entry(-1, "S-1-5-32-552", SID_NAME_WKN_GRP, "Replicators", "");
105 /* Add the defaults domain groups */
107 sid_copy(&sid_admins, get_global_sam_sid());
108 sid_append_rid(&sid_admins, DOMAIN_GROUP_RID_ADMINS);
109 sid_to_string(str_admins, &sid_admins);
110 add_initial_entry(-1, str_admins, SID_NAME_DOM_GRP, "Domain Admins", "");
112 sid_copy(&sid_users, get_global_sam_sid());
113 sid_append_rid(&sid_users, DOMAIN_GROUP_RID_USERS);
114 sid_to_string(str_users, &sid_users);
115 add_initial_entry(-1, str_users, SID_NAME_DOM_GRP, "Domain Users", "");
117 sid_copy(&sid_guests, get_global_sam_sid());
118 sid_append_rid(&sid_guests, DOMAIN_GROUP_RID_GUESTS);
119 sid_to_string(str_guests, &sid_guests);
120 add_initial_entry(-1, str_guests, SID_NAME_DOM_GRP, "Domain Guests", "");
122 return True;
125 /****************************************************************************
126 Open the group mapping tdb.
127 ****************************************************************************/
129 static BOOL init_group_mapping(void)
131 static pid_t local_pid;
132 const char *vstring = "INFO/version";
133 int32 vers_id;
135 if (tdb && local_pid == sys_getpid())
136 return True;
137 tdb = tdb_open_log(lock_path("group_mapping.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
138 if (!tdb) {
139 DEBUG(0,("Failed to open group mapping database\n"));
140 return False;
143 local_pid = sys_getpid();
145 /* handle a Samba upgrade */
146 tdb_lock_bystring(tdb, vstring, 0);
148 /* Cope with byte-reversed older versions of the db. */
149 vers_id = tdb_fetch_int32(tdb, vstring);
150 if ((vers_id == DATABASE_VERSION_V1) || (IREV(vers_id) == DATABASE_VERSION_V1)) {
151 /* Written on a bigendian machine with old fetch_int code. Save as le. */
152 tdb_store_int32(tdb, vstring, DATABASE_VERSION_V2);
153 vers_id = DATABASE_VERSION_V2;
156 if (vers_id != DATABASE_VERSION_V2) {
157 tdb_traverse(tdb, tdb_traverse_delete_fn, NULL);
158 tdb_store_int32(tdb, vstring, DATABASE_VERSION_V2);
161 tdb_unlock_bystring(tdb, vstring);
163 /* write a list of default groups */
164 if(!default_group_mapping())
165 return False;
167 return True;
170 /****************************************************************************
171 ****************************************************************************/
172 static BOOL add_mapping_entry(GROUP_MAP *map, int flag)
174 TDB_DATA kbuf, dbuf;
175 pstring key, buf;
176 fstring string_sid="";
177 int len;
179 if(!init_group_mapping()) {
180 DEBUG(0,("failed to initialize group mapping\n"));
181 return(False);
184 sid_to_string(string_sid, &map->sid);
186 len = tdb_pack(buf, sizeof(buf), "ddff",
187 map->gid, map->sid_name_use, map->nt_name, map->comment);
189 if (len > sizeof(buf))
190 return False;
192 slprintf(key, sizeof(key), "%s%s", GROUP_PREFIX, string_sid);
194 kbuf.dsize = strlen(key)+1;
195 kbuf.dptr = key;
196 dbuf.dsize = len;
197 dbuf.dptr = buf;
198 if (tdb_store(tdb, kbuf, dbuf, flag) != 0) return False;
200 return True;
203 /****************************************************************************
204 initialise first time the mapping list
205 ****************************************************************************/
206 BOOL add_initial_entry(gid_t gid, const char *sid, enum SID_NAME_USE sid_name_use, const char *nt_name, const char *comment)
208 GROUP_MAP map;
210 if(!init_group_mapping()) {
211 DEBUG(0,("failed to initialize group mapping\n"));
212 return(False);
215 map.gid=gid;
216 if (!string_to_sid(&map.sid, sid)) {
217 DEBUG(0, ("string_to_sid failed: %s", sid));
218 return False;
221 map.sid_name_use=sid_name_use;
222 fstrcpy(map.nt_name, nt_name);
223 fstrcpy(map.comment, comment);
225 return pdb_add_group_mapping_entry(&map);
228 /****************************************************************************
229 Return the sid and the type of the unix group.
230 ****************************************************************************/
232 static BOOL get_group_map_from_sid(DOM_SID sid, GROUP_MAP *map)
234 TDB_DATA kbuf, dbuf;
235 pstring key;
236 fstring string_sid;
237 int ret = 0;
239 if(!init_group_mapping()) {
240 DEBUG(0,("failed to initialize group mapping\n"));
241 return(False);
244 /* the key is the SID, retrieving is direct */
246 sid_to_string(string_sid, &sid);
247 slprintf(key, sizeof(key), "%s%s", GROUP_PREFIX, string_sid);
249 kbuf.dptr = key;
250 kbuf.dsize = strlen(key)+1;
252 dbuf = tdb_fetch(tdb, kbuf);
253 if (!dbuf.dptr)
254 return False;
256 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
257 &map->gid, &map->sid_name_use, &map->nt_name, &map->comment);
259 SAFE_FREE(dbuf.dptr);
261 if ( ret == -1 ) {
262 DEBUG(3,("get_group_map_from_sid: tdb_unpack failure\n"));
263 return False;
266 sid_copy(&map->sid, &sid);
268 return True;
271 /****************************************************************************
272 Return the sid and the type of the unix group.
273 ****************************************************************************/
275 static BOOL get_group_map_from_gid(gid_t gid, GROUP_MAP *map)
277 TDB_DATA kbuf, dbuf, newkey;
278 fstring string_sid;
279 int ret;
281 if(!init_group_mapping()) {
282 DEBUG(0,("failed to initialize group mapping\n"));
283 return(False);
286 /* we need to enumerate the TDB to find the GID */
288 for (kbuf = tdb_firstkey(tdb);
289 kbuf.dptr;
290 newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
292 if (strncmp(kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0) continue;
294 dbuf = tdb_fetch(tdb, kbuf);
295 if (!dbuf.dptr)
296 continue;
298 fstrcpy(string_sid, kbuf.dptr+strlen(GROUP_PREFIX));
300 string_to_sid(&map->sid, string_sid);
302 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
303 &map->gid, &map->sid_name_use, &map->nt_name, &map->comment);
305 SAFE_FREE(dbuf.dptr);
307 if ( ret == -1 ) {
308 DEBUG(3,("get_group_map_from_gid: tdb_unpack failure\n"));
309 return False;
312 if (gid==map->gid) {
313 SAFE_FREE(kbuf.dptr);
314 return True;
318 return False;
321 /****************************************************************************
322 Return the sid and the type of the unix group.
323 ****************************************************************************/
325 static BOOL get_group_map_from_ntname(const char *name, GROUP_MAP *map)
327 TDB_DATA kbuf, dbuf, newkey;
328 fstring string_sid;
329 int ret;
331 if(!init_group_mapping()) {
332 DEBUG(0,("get_group_map_from_ntname:failed to initialize group mapping\n"));
333 return(False);
336 /* we need to enumerate the TDB to find the name */
338 for (kbuf = tdb_firstkey(tdb);
339 kbuf.dptr;
340 newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
342 if (strncmp(kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0) continue;
344 dbuf = tdb_fetch(tdb, kbuf);
345 if (!dbuf.dptr)
346 continue;
348 fstrcpy(string_sid, kbuf.dptr+strlen(GROUP_PREFIX));
350 string_to_sid(&map->sid, string_sid);
352 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
353 &map->gid, &map->sid_name_use, &map->nt_name, &map->comment);
355 SAFE_FREE(dbuf.dptr);
357 if ( ret == -1 ) {
358 DEBUG(3,("get_group_map_from_ntname: tdb_unpack failure\n"));
359 return False;
362 if (StrCaseCmp(name, map->nt_name)==0) {
363 SAFE_FREE(kbuf.dptr);
364 return True;
368 return False;
371 /****************************************************************************
372 Remove a group mapping entry.
373 ****************************************************************************/
375 static BOOL group_map_remove(DOM_SID sid)
377 TDB_DATA kbuf, dbuf;
378 pstring key;
379 fstring string_sid;
381 if(!init_group_mapping()) {
382 DEBUG(0,("failed to initialize group mapping\n"));
383 return(False);
386 /* the key is the SID, retrieving is direct */
388 sid_to_string(string_sid, &sid);
389 slprintf(key, sizeof(key), "%s%s", GROUP_PREFIX, string_sid);
391 kbuf.dptr = key;
392 kbuf.dsize = strlen(key)+1;
394 dbuf = tdb_fetch(tdb, kbuf);
395 if (!dbuf.dptr)
396 return False;
398 SAFE_FREE(dbuf.dptr);
400 if(tdb_delete(tdb, kbuf) != TDB_SUCCESS)
401 return False;
403 return True;
406 /****************************************************************************
407 Enumerate the group mapping.
408 ****************************************************************************/
410 static BOOL enum_group_mapping(enum SID_NAME_USE sid_name_use, GROUP_MAP **rmap,
411 int *num_entries, BOOL unix_only)
413 TDB_DATA kbuf, dbuf, newkey;
414 fstring string_sid;
415 fstring group_type;
416 GROUP_MAP map;
417 GROUP_MAP *mapt;
418 int ret;
419 int entries=0;
421 if(!init_group_mapping()) {
422 DEBUG(0,("failed to initialize group mapping\n"));
423 return(False);
426 *num_entries=0;
427 *rmap=NULL;
429 for (kbuf = tdb_firstkey(tdb);
430 kbuf.dptr;
431 newkey = tdb_nextkey(tdb, kbuf), safe_free(kbuf.dptr), kbuf=newkey) {
433 if (strncmp(kbuf.dptr, GROUP_PREFIX, strlen(GROUP_PREFIX)) != 0)
434 continue;
436 dbuf = tdb_fetch(tdb, kbuf);
437 if (!dbuf.dptr)
438 continue;
440 fstrcpy(string_sid, kbuf.dptr+strlen(GROUP_PREFIX));
442 ret = tdb_unpack(dbuf.dptr, dbuf.dsize, "ddff",
443 &map.gid, &map.sid_name_use, &map.nt_name, &map.comment);
445 SAFE_FREE(dbuf.dptr);
447 if ( ret == -1 ) {
448 DEBUG(3,("enum_group_mapping: tdb_unpack failure\n"));
449 continue;
452 /* list only the type or everything if UNKNOWN */
453 if (sid_name_use!=SID_NAME_UNKNOWN && sid_name_use!=map.sid_name_use) {
454 DEBUG(11,("enum_group_mapping: group %s is not of the requested type\n", map.nt_name));
455 continue;
458 if (unix_only==ENUM_ONLY_MAPPED && map.gid==-1) {
459 DEBUG(11,("enum_group_mapping: group %s is non mapped\n", map.nt_name));
460 continue;
463 string_to_sid(&map.sid, string_sid);
465 decode_sid_name_use(group_type, map.sid_name_use);
466 DEBUG(11,("enum_group_mapping: returning group %s of type %s\n", map.nt_name ,group_type));
468 mapt=(GROUP_MAP *)Realloc((*rmap), (entries+1)*sizeof(GROUP_MAP));
469 if (!mapt) {
470 DEBUG(0,("enum_group_mapping: Unable to enlarge group map!\n"));
471 SAFE_FREE(*rmap);
472 return False;
474 else
475 (*rmap) = mapt;
477 mapt[entries].gid = map.gid;
478 sid_copy( &mapt[entries].sid, &map.sid);
479 mapt[entries].sid_name_use = map.sid_name_use;
480 fstrcpy(mapt[entries].nt_name, map.nt_name);
481 fstrcpy(mapt[entries].comment, map.comment);
483 entries++;
487 *num_entries=entries;
489 return True;
494 * High level functions
495 * better to use them than the lower ones.
497 * we are checking if the group is in the mapping file
498 * and if the group is an existing unix group
502 /* get a domain group from it's SID */
504 BOOL get_domain_group_from_sid(DOM_SID sid, GROUP_MAP *map)
506 struct group *grp;
507 BOOL ret;
509 if(!init_group_mapping()) {
510 DEBUG(0,("failed to initialize group mapping\n"));
511 return(False);
514 DEBUG(10, ("get_domain_group_from_sid\n"));
516 /* if the group is NOT in the database, it CAN NOT be a domain group */
518 become_root();
519 ret = pdb_getgrsid(map, sid);
520 unbecome_root();
522 if ( !ret )
523 return False;
525 DEBUG(10, ("get_domain_group_from_sid: SID found in the TDB\n"));
527 /* if it's not a domain group, continue */
528 if (map->sid_name_use!=SID_NAME_DOM_GRP) {
529 return False;
532 DEBUG(10, ("get_domain_group_from_sid: SID is a domain group\n"));
534 if (map->gid==-1) {
535 return False;
538 DEBUG(10, ("get_domain_group_from_sid: SID is mapped to gid:%lu\n",(unsigned long)map->gid));
540 grp = getgrgid(map->gid);
541 if ( !grp ) {
542 DEBUG(10, ("get_domain_group_from_sid: gid DOESN'T exist in UNIX security\n"));
543 return False;
546 DEBUG(10, ("get_domain_group_from_sid: gid exists in UNIX security\n"));
548 return True;
552 /* get a local (alias) group from it's SID */
554 BOOL get_local_group_from_sid(DOM_SID *sid, GROUP_MAP *map)
556 BOOL ret;
558 if(!init_group_mapping()) {
559 DEBUG(0,("failed to initialize group mapping\n"));
560 return(False);
563 /* The group is in the mapping table */
564 become_root();
565 ret = pdb_getgrsid(map, *sid);
566 unbecome_root();
568 if ( !ret )
569 return False;
571 if ( (map->sid_name_use != SID_NAME_ALIAS)
572 || (map->gid == -1)
573 || (getgrgid(map->gid) == NULL) )
575 return False;
578 #if 1 /* JERRY */
579 /* local groups only exist in the group mapping DB so this
580 is not necessary */
582 else {
583 /* the group isn't in the mapping table.
584 * make one based on the unix information */
585 uint32 alias_rid;
586 struct group *grp;
588 sid_peek_rid(sid, &alias_rid);
589 map->gid=pdb_group_rid_to_gid(alias_rid);
591 grp = getgrgid(map->gid);
592 if ( !grp ) {
593 DEBUG(3,("get_local_group_from_sid: No unix group for [%ul]\n", map->gid));
594 return False;
597 map->sid_name_use=SID_NAME_ALIAS;
599 fstrcpy(map->nt_name, grp->gr_name);
600 fstrcpy(map->comment, "Local Unix Group");
602 sid_copy(&map->sid, sid);
604 #endif
606 return True;
609 /* get a builtin group from it's SID */
611 BOOL get_builtin_group_from_sid(DOM_SID *sid, GROUP_MAP *map)
613 struct group *grp;
614 BOOL ret;
617 if(!init_group_mapping()) {
618 DEBUG(0,("failed to initialize group mapping\n"));
619 return(False);
622 become_root();
623 ret = pdb_getgrsid(map, *sid);
624 unbecome_root();
626 if ( !ret )
627 return False;
629 if (map->sid_name_use!=SID_NAME_WKN_GRP) {
630 return False;
633 if (map->gid==-1) {
634 return False;
637 if ( (grp=getgrgid(map->gid)) == NULL) {
638 return False;
641 return True;
646 /****************************************************************************
647 Returns a GROUP_MAP struct based on the gid.
648 ****************************************************************************/
649 BOOL get_group_from_gid(gid_t gid, GROUP_MAP *map)
651 struct group *grp;
652 BOOL ret;
654 if(!init_group_mapping()) {
655 DEBUG(0,("failed to initialize group mapping\n"));
656 return(False);
659 if ( (grp=getgrgid(gid)) == NULL)
660 return False;
663 * make a group map from scratch if doesn't exist.
666 become_root();
667 ret = pdb_getgrgid(map, gid);
668 unbecome_root();
670 if ( !ret ) {
671 map->gid=gid;
672 map->sid_name_use=SID_NAME_ALIAS;
674 /* interim solution until we have a last RID allocated */
676 sid_copy(&map->sid, get_global_sam_sid());
677 sid_append_rid(&map->sid, pdb_gid_to_group_rid(gid));
679 fstrcpy(map->nt_name, grp->gr_name);
680 fstrcpy(map->comment, "Local Unix Group");
683 return True;
689 /****************************************************************************
690 Get the member users of a group and
691 all the users who have that group as primary.
693 give back an array of SIDS
694 return the grand number of users
697 TODO: sort the list and remove duplicate. JFM.
699 ****************************************************************************/
701 BOOL get_sid_list_of_group(gid_t gid, DOM_SID **sids, int *num_sids)
703 struct group *grp;
704 int i=0;
705 char *gr;
706 DOM_SID *s;
708 struct sys_pwent *userlist;
709 struct sys_pwent *user;
711 if(!init_group_mapping()) {
712 DEBUG(0,("failed to initialize group mapping\n"));
713 return(False);
716 *num_sids = 0;
717 *sids=NULL;
719 if ( (grp=getgrgid(gid)) == NULL)
720 return False;
722 gr = grp->gr_mem[0];
723 DEBUG(10, ("getting members\n"));
725 while (gr && (*gr != (char)'\0')) {
726 SAM_ACCOUNT *group_member_acct = NULL;
727 BOOL found_user;
728 s = Realloc((*sids), sizeof(**sids)*(*num_sids+1));
729 if (!s) {
730 DEBUG(0,("get_uid_list_of_group: unable to enlarge SID list!\n"));
731 return False;
733 else (*sids) = s;
735 if (!NT_STATUS_IS_OK(pdb_init_sam(&group_member_acct))) {
736 continue;
739 become_root();
740 found_user = pdb_getsampwnam(group_member_acct, gr);
741 unbecome_root();
743 if (found_user) {
744 sid_copy(&(*sids)[*num_sids], pdb_get_user_sid(group_member_acct));
745 (*num_sids)++;
748 pdb_free_sam(&group_member_acct);
750 gr = grp->gr_mem[++i];
752 DEBUG(10, ("got [%d] members\n", *num_sids));
754 winbind_off();
756 user = userlist = getpwent_list();
758 while (user != NULL) {
760 SAM_ACCOUNT *group_member_acct = NULL;
761 BOOL found_user;
763 if (user->pw_gid != gid) {
764 user = user->next;
765 continue;
768 s = Realloc((*sids), sizeof(**sids)*(*num_sids+1));
769 if (!s) {
770 DEBUG(0,("get_sid_list_of_group: unable to enlarge "
771 "SID list!\n"));
772 pwent_free(userlist);
773 winbind_on();
774 return False;
776 else (*sids) = s;
778 if (!NT_STATUS_IS_OK(pdb_init_sam(&group_member_acct))) {
779 continue;
782 become_root();
783 found_user = pdb_getsampwnam(group_member_acct, user->pw_name);
784 unbecome_root();
786 if (found_user) {
787 sid_copy(&(*sids)[*num_sids],
788 pdb_get_user_sid(group_member_acct));
789 (*num_sids)++;
790 } else {
791 DEBUG(4,("get_sid_list_of_group: User %s [uid == %lu] "
792 "has no samba account\n",
793 user->pw_name, (unsigned long)user->pw_uid));
794 if (algorithmic_uid_to_sid(&(*sids)[*num_sids],
795 user->pw_uid))
796 (*num_sids)++;
798 pdb_free_sam(&group_member_acct);
800 user = user->next;
802 pwent_free(userlist);
803 DEBUG(10, ("got primary groups, members: [%d]\n", *num_sids));
805 winbind_on();
806 return True;
809 /****************************************************************************
810 Create a UNIX group on demand.
811 ****************************************************************************/
813 int smb_create_group(char *unix_group, gid_t *new_gid)
815 pstring add_script;
816 int ret = -1;
817 int fd = 0;
819 *new_gid = 0;
821 /* defer to scripts */
823 if ( *lp_addgroup_script() ) {
824 pstrcpy(add_script, lp_addgroup_script());
825 pstring_sub(add_script, "%g", unix_group);
826 ret = smbrun(add_script, (new_gid!=NULL) ? &fd : NULL);
827 DEBUG(3,("smb_create_group: Running the command `%s' gave %d\n",add_script,ret));
828 if (ret != 0)
829 return ret;
831 if (fd != 0) {
832 fstring output;
834 *new_gid = 0;
835 if (read(fd, output, sizeof(output)) > 0) {
836 *new_gid = (gid_t)strtoul(output, NULL, 10);
839 close(fd);
842 } else if ( winbind_create_group( unix_group, NULL ) ) {
844 DEBUG(3,("smb_create_group: winbindd created the group (%s)\n",
845 unix_group));
846 ret = 0;
849 if (*new_gid == 0) {
850 struct group *grp = getgrnam(unix_group);
852 if (grp != NULL)
853 *new_gid = grp->gr_gid;
856 return ret;
859 /****************************************************************************
860 Delete a UNIX group on demand.
861 ****************************************************************************/
863 int smb_delete_group(char *unix_group)
865 pstring del_script;
866 int ret;
868 /* defer to scripts */
870 if ( *lp_delgroup_script() ) {
871 pstrcpy(del_script, lp_delgroup_script());
872 pstring_sub(del_script, "%g", unix_group);
873 ret = smbrun(del_script,NULL);
874 DEBUG(3,("smb_delete_group: Running the command `%s' gave %d\n",del_script,ret));
875 return ret;
878 if ( winbind_delete_group( unix_group ) ) {
879 DEBUG(3,("smb_delete_group: winbindd deleted the group (%s)\n",
880 unix_group));
881 return 0;
884 return -1;
887 /****************************************************************************
888 Set a user's primary UNIX group.
889 ****************************************************************************/
890 int smb_set_primary_group(const char *unix_group, const char* unix_user)
892 pstring add_script;
893 int ret;
895 /* defer to scripts */
897 if ( *lp_setprimarygroup_script() ) {
898 pstrcpy(add_script, lp_setprimarygroup_script());
899 all_string_sub(add_script, "%g", unix_group, sizeof(add_script));
900 all_string_sub(add_script, "%u", unix_user, sizeof(add_script));
901 ret = smbrun(add_script,NULL);
902 DEBUG(3,("smb_set_primary_group: "
903 "Running the command `%s' gave %d\n",add_script,ret));
904 return ret;
907 /* Try winbindd */
909 if ( winbind_set_user_primary_group( unix_user, unix_group ) ) {
910 DEBUG(3,("smb_delete_group: winbindd set the group (%s) as the primary group for user (%s)\n",
911 unix_group, unix_user));
912 return 0;
915 return -1;
918 /****************************************************************************
919 Add a user to a UNIX group.
920 ****************************************************************************/
922 int smb_add_user_group(char *unix_group, char *unix_user)
924 pstring add_script;
925 int ret;
927 /* defer to scripts */
929 if ( *lp_addusertogroup_script() ) {
930 pstrcpy(add_script, lp_addusertogroup_script());
931 pstring_sub(add_script, "%g", unix_group);
932 pstring_sub(add_script, "%u", unix_user);
933 ret = smbrun(add_script,NULL);
934 DEBUG(3,("smb_add_user_group: Running the command `%s' gave %d\n",add_script,ret));
935 return ret;
938 /* Try winbindd */
940 if ( winbind_add_user_to_group( unix_user, unix_group ) ) {
941 DEBUG(3,("smb_delete_group: winbindd added user (%s) to the group (%s)\n",
942 unix_user, unix_group));
943 return -1;
946 return -1;
949 /****************************************************************************
950 Delete a user from a UNIX group
951 ****************************************************************************/
953 int smb_delete_user_group(const char *unix_group, const char *unix_user)
955 pstring del_script;
956 int ret;
958 /* defer to scripts */
960 if ( *lp_deluserfromgroup_script() ) {
961 pstrcpy(del_script, lp_deluserfromgroup_script());
962 pstring_sub(del_script, "%g", unix_group);
963 pstring_sub(del_script, "%u", unix_user);
964 ret = smbrun(del_script,NULL);
965 DEBUG(3,("smb_delete_user_group: Running the command `%s' gave %d\n",del_script,ret));
966 return ret;
969 /* Try winbindd */
971 if ( winbind_remove_user_from_group( unix_user, unix_group ) ) {
972 DEBUG(3,("smb_delete_group: winbindd removed user (%s) from the group (%s)\n",
973 unix_user, unix_group));
974 return 0;
977 return -1;
981 NTSTATUS pdb_default_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
982 DOM_SID sid)
984 return get_group_map_from_sid(sid, map) ?
985 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
988 NTSTATUS pdb_default_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
989 gid_t gid)
991 return get_group_map_from_gid(gid, map) ?
992 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
995 NTSTATUS pdb_default_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
996 const char *name)
998 return get_group_map_from_ntname(name, map) ?
999 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1002 NTSTATUS pdb_default_add_group_mapping_entry(struct pdb_methods *methods,
1003 GROUP_MAP *map)
1005 return add_mapping_entry(map, TDB_INSERT) ?
1006 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1009 NTSTATUS pdb_default_update_group_mapping_entry(struct pdb_methods *methods,
1010 GROUP_MAP *map)
1012 return add_mapping_entry(map, TDB_REPLACE) ?
1013 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1016 NTSTATUS pdb_default_delete_group_mapping_entry(struct pdb_methods *methods,
1017 DOM_SID sid)
1019 return group_map_remove(sid) ?
1020 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1023 NTSTATUS pdb_default_enum_group_mapping(struct pdb_methods *methods,
1024 enum SID_NAME_USE sid_name_use,
1025 GROUP_MAP **rmap, int *num_entries,
1026 BOOL unix_only)
1028 return enum_group_mapping(sid_name_use, rmap, num_entries, unix_only) ?
1029 NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL;
1032 /**********************************************************************
1033 no ops for passdb backends that don't implement group mapping
1034 *********************************************************************/
1036 NTSTATUS pdb_nop_getgrsid(struct pdb_methods *methods, GROUP_MAP *map,
1037 DOM_SID sid)
1039 return NT_STATUS_UNSUCCESSFUL;
1042 NTSTATUS pdb_nop_getgrgid(struct pdb_methods *methods, GROUP_MAP *map,
1043 gid_t gid)
1045 return NT_STATUS_UNSUCCESSFUL;
1048 NTSTATUS pdb_nop_getgrnam(struct pdb_methods *methods, GROUP_MAP *map,
1049 const char *name)
1051 return NT_STATUS_UNSUCCESSFUL;
1054 NTSTATUS pdb_nop_add_group_mapping_entry(struct pdb_methods *methods,
1055 GROUP_MAP *map)
1057 return NT_STATUS_UNSUCCESSFUL;
1060 NTSTATUS pdb_nop_update_group_mapping_entry(struct pdb_methods *methods,
1061 GROUP_MAP *map)
1063 return NT_STATUS_UNSUCCESSFUL;
1066 NTSTATUS pdb_nop_delete_group_mapping_entry(struct pdb_methods *methods,
1067 DOM_SID sid)
1069 return NT_STATUS_UNSUCCESSFUL;
1072 NTSTATUS pdb_nop_enum_group_mapping(struct pdb_methods *methods,
1073 enum SID_NAME_USE sid_name_use,
1074 GROUP_MAP **rmap, int *num_entries,
1075 BOOL unix_only)
1077 return NT_STATUS_UNSUCCESSFUL;