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.
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.
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/"
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 { 2, "SeCreateTokenPrivilege" },
43 { 3, "SeAssignPrimaryTokenPrivilege" },
44 { 4, "SeLockMemoryPrivilege" },
45 { 5, "SeIncreaseQuotaPrivilege" },
46 { 6, "SeMachineAccountPrivilege" },
47 { 7, "SeTcbPrivilege" },
48 { 8, "SeSecurityPrivilege" },
49 { 9, "SeTakeOwnershipPrivilege" },
50 { 10, "SeLoadDriverPrivilege" },
51 { 11, "SeSystemProfilePrivilege" },
52 { 12, "SeSystemtimePrivilege" },
53 { 13, "SeProfileSingleProcessPrivilege" },
54 { 14, "SeIncreaseBasePriorityPrivilege" },
55 { 15, "SeCreatePagefilePrivilege" },
56 { 16, "SeCreatePermanentPrivilege" },
57 { 17, "SeBackupPrivilege" },
58 { 18, "SeRestorePrivilege" },
59 { 19, "SeShutdownPrivilege" },
60 { 20, "SeDebugPrivilege" },
61 { 21, "SeAuditPrivilege" },
62 { 22, "SeSystemEnvironmentPrivilege" },
63 { 23, "SeChangeNotifyPrivilege" },
64 { 24, "SeRemoteShutdownPrivilege" },
65 { 25, "SeUndockPrivilege" },
66 { 26, "SeSyncAgentPrivilege" },
67 { 27, "SeEnableDelegationPrivilege" },
72 * Those are not really privileges like the other ones.
73 * They are handled in a special case and called
77 * SeUnsolicitedInputPrivilege
80 * SeInteractiveLogonRight
81 * SeDenyInteractiveLogonRight
82 * SeDenyNetworkLogonRight
83 * SeDenyBatchLogonRight
84 * SeDenyBatchLogonRight
88 /****************************************************************************
89 check if the user has the required privilege.
90 ****************************************************************************/
91 static BOOL
se_priv_access_check(NT_USER_TOKEN
*token
, uint32 privilege
)
93 /* no token, no privilege */
97 if ((token
->privilege
& privilege
)==privilege
)
104 /****************************************************************************
105 dump the mapping group mapping to a text file
106 ****************************************************************************/
107 char *decode_sid_name_use(fstring group
, enum SID_NAME_USE name_use
)
109 static fstring group_type
;
113 fstrcpy(group_type
,"User");
115 case SID_NAME_DOM_GRP
:
116 fstrcpy(group_type
,"Domain group");
118 case SID_NAME_DOMAIN
:
119 fstrcpy(group_type
,"Domain");
122 fstrcpy(group_type
,"Local group");
124 case SID_NAME_WKN_GRP
:
125 fstrcpy(group_type
,"Builtin group");
127 case SID_NAME_DELETED
:
128 fstrcpy(group_type
,"Deleted");
130 case SID_NAME_INVALID
:
131 fstrcpy(group_type
,"Invalid");
133 case SID_NAME_UNKNOWN
:
135 fstrcpy(group_type
,"Unknown type");
139 fstrcpy(group
, group_type
);
143 /****************************************************************************
144 initialise first time the mapping list - called from init_group_mapping()
145 ****************************************************************************/
146 static BOOL
default_group_mapping(void)
156 PRIVILEGE_SET privilege_none
;
157 PRIVILEGE_SET privilege_all
;
158 PRIVILEGE_SET privilege_print_op
;
160 init_privilege(&privilege_none
);
161 init_privilege(&privilege_all
);
162 init_privilege(&privilege_print_op
);
166 set
.luid
.low
=SE_PRIV_PRINT_OPERATOR
;
167 add_privilege(&privilege_print_op
, set
);
169 add_all_privilege(&privilege_all
);
171 /* Add the Wellknown groups */
173 add_initial_entry(-1, "S-1-5-32-544", SID_NAME_ALIAS
, "Administrators", "", privilege_all
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
174 add_initial_entry(-1, "S-1-5-32-545", SID_NAME_ALIAS
, "Users", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
175 add_initial_entry(-1, "S-1-5-32-546", SID_NAME_ALIAS
, "Guests", "", privilege_none
, PR_ACCESS_FROM_NETWORK
);
176 add_initial_entry(-1, "S-1-5-32-547", SID_NAME_ALIAS
, "Power Users", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
178 add_initial_entry(-1, "S-1-5-32-548", SID_NAME_ALIAS
, "Account Operators", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
179 add_initial_entry(-1, "S-1-5-32-549", SID_NAME_ALIAS
, "System Operators", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
180 add_initial_entry(-1, "S-1-5-32-550", SID_NAME_ALIAS
, "Print Operators", "", privilege_print_op
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
181 add_initial_entry(-1, "S-1-5-32-551", SID_NAME_ALIAS
, "Backup Operators", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
183 add_initial_entry(-1, "S-1-5-32-552", SID_NAME_ALIAS
, "Replicators", "", privilege_none
, PR_ACCESS_FROM_NETWORK
);
185 /* Add the defaults domain groups */
187 sid_copy(&sid_admins
, get_global_sam_sid());
188 sid_append_rid(&sid_admins
, DOMAIN_GROUP_RID_ADMINS
);
189 sid_to_string(str_admins
, &sid_admins
);
190 add_initial_entry(-1, str_admins
, SID_NAME_DOM_GRP
, "Domain Admins", "", privilege_all
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
192 sid_copy(&sid_users
, get_global_sam_sid());
193 sid_append_rid(&sid_users
, DOMAIN_GROUP_RID_USERS
);
194 sid_to_string(str_users
, &sid_users
);
195 add_initial_entry(-1, str_users
, SID_NAME_DOM_GRP
, "Domain Users", "", privilege_none
, PR_ACCESS_FROM_NETWORK
|PR_LOG_ON_LOCALLY
);
197 sid_copy(&sid_guests
, get_global_sam_sid());
198 sid_append_rid(&sid_guests
, DOMAIN_GROUP_RID_GUESTS
);
199 sid_to_string(str_guests
, &sid_guests
);
200 add_initial_entry(-1, str_guests
, SID_NAME_DOM_GRP
, "Domain Guests", "", privilege_none
, PR_ACCESS_FROM_NETWORK
);
205 /****************************************************************************
206 Open the group mapping tdb.
207 ****************************************************************************/
209 static BOOL
init_group_mapping(void)
211 static pid_t local_pid
;
212 const char *vstring
= "INFO/version";
215 if (tdb
&& local_pid
== sys_getpid())
217 tdb
= tdb_open_log(lock_path("group_mapping.tdb"), 0, TDB_DEFAULT
, O_RDWR
|O_CREAT
, 0600);
219 DEBUG(0,("Failed to open group mapping database\n"));
223 local_pid
= sys_getpid();
225 /* handle a Samba upgrade */
226 tdb_lock_bystring(tdb
, vstring
, 0);
228 /* Cope with byte-reversed older versions of the db. */
229 vers_id
= tdb_fetch_int32(tdb
, vstring
);
230 if ((vers_id
== DATABASE_VERSION_V1
) || (IREV(vers_id
) == DATABASE_VERSION_V1
)) {
231 /* Written on a bigendian machine with old fetch_int code. Save as le. */
232 tdb_store_int32(tdb
, vstring
, DATABASE_VERSION_V2
);
233 vers_id
= DATABASE_VERSION_V2
;
236 if (vers_id
!= DATABASE_VERSION_V2
) {
237 tdb_traverse(tdb
, tdb_traverse_delete_fn
, NULL
);
238 tdb_store_int32(tdb
, vstring
, DATABASE_VERSION_V2
);
241 tdb_unlock_bystring(tdb
, vstring
);
243 /* write a list of default groups */
244 if(!default_group_mapping())
250 /****************************************************************************
251 ****************************************************************************/
252 BOOL
add_mapping_entry(GROUP_MAP
*map
, int flag
)
256 fstring string_sid
="";
261 if(!init_group_mapping()) {
262 DEBUG(0,("failed to initialize group mapping"));
266 sid_to_string(string_sid
, &map
->sid
);
268 len
= tdb_pack(buf
, sizeof(buf
), "ddffd",
269 map
->gid
, map
->sid_name_use
, map
->nt_name
, map
->comment
, map
->systemaccount
);
271 /* write the privilege list in the TDB database */
274 len
+= tdb_pack(buf
+len
, sizeof(buf
)-len
, "d", set
->count
);
275 for (i
=0; i
<set
->count
; i
++)
276 len
+= tdb_pack(buf
+len
, sizeof(buf
)-len
, "ddd",
277 set
->set
[i
].luid
.low
, set
->set
[i
].luid
.high
, set
->set
[i
].attr
);
279 if (len
> sizeof(buf
))
282 slprintf(key
, sizeof(key
), "%s%s", GROUP_PREFIX
, string_sid
);
284 kbuf
.dsize
= strlen(key
)+1;
288 if (tdb_store(tdb
, kbuf
, dbuf
, flag
) != 0) return False
;
293 /****************************************************************************
294 initialise first time the mapping list
295 ****************************************************************************/
296 BOOL
add_initial_entry(gid_t gid
, const char *sid
, enum SID_NAME_USE sid_name_use
,
297 const char *nt_name
, const char *comment
, PRIVILEGE_SET priv_set
, uint32 systemaccount
)
301 if(!init_group_mapping()) {
302 DEBUG(0,("failed to initialize group mapping"));
307 string_to_sid(&map
.sid
, sid
);
308 map
.sid_name_use
=sid_name_use
;
309 fstrcpy(map
.nt_name
, nt_name
);
310 fstrcpy(map
.comment
, comment
);
311 map
.systemaccount
=systemaccount
;
313 map
.priv_set
.count
=priv_set
.count
;
314 map
.priv_set
.set
=priv_set
.set
;
316 pdb_add_group_mapping_entry(&map
);
321 /****************************************************************************
322 initialise a privilege list
323 ****************************************************************************/
324 void init_privilege(PRIVILEGE_SET
*priv_set
)
331 /****************************************************************************
332 free a privilege list
333 ****************************************************************************/
334 BOOL
free_privilege(PRIVILEGE_SET
*priv_set
)
336 if (priv_set
->count
==0) {
337 DEBUG(100,("free_privilege: count=0, nothing to clear ?\n"));
341 if (priv_set
->set
==NULL
) {
342 DEBUG(0,("free_privilege: list ptr is NULL, very strange !\n"));
346 safe_free(priv_set
->set
);
354 /****************************************************************************
355 add a privilege to a privilege array
356 ****************************************************************************/
357 BOOL
add_privilege(PRIVILEGE_SET
*priv_set
, LUID_ATTR set
)
361 /* check if the privilege is not already in the list */
362 if (check_priv_in_privilege(priv_set
, set
))
365 /* we can allocate memory to add the new privilege */
367 new_set
=(LUID_ATTR
*)Realloc(priv_set
->set
, (priv_set
->count
+1)*(sizeof(LUID_ATTR
)));
369 DEBUG(0,("add_privilege: could not Realloc memory to add a new privilege\n"));
373 new_set
[priv_set
->count
].luid
.high
=set
.luid
.high
;
374 new_set
[priv_set
->count
].luid
.low
=set
.luid
.low
;
375 new_set
[priv_set
->count
].attr
=set
.attr
;
378 priv_set
->set
=new_set
;
383 /****************************************************************************
384 add all the privileges to a privilege array
385 ****************************************************************************/
386 BOOL
add_all_privilege(PRIVILEGE_SET
*priv_set
)
393 set
.luid
.low
=SE_PRIV_ADD_USERS
;
394 add_privilege(priv_set
, set
);
396 set
.luid
.low
=SE_PRIV_ADD_MACHINES
;
397 add_privilege(priv_set
, set
);
399 set
.luid
.low
=SE_PRIV_PRINT_OPERATOR
;
400 add_privilege(priv_set
, set
);
405 /****************************************************************************
406 check if the privilege list is empty
407 ****************************************************************************/
408 BOOL
check_empty_privilege(PRIVILEGE_SET
*priv_set
)
410 return (priv_set
->count
== 0);
413 /****************************************************************************
414 check if the privilege is in the privilege list
415 ****************************************************************************/
416 BOOL
check_priv_in_privilege(PRIVILEGE_SET
*priv_set
, LUID_ATTR set
)
420 /* if the list is empty, obviously we can't have it */
421 if (check_empty_privilege(priv_set
))
424 for (i
=0; i
<priv_set
->count
; i
++) {
427 cur_set
=&priv_set
->set
[i
];
428 /* check only the low and high part. Checking the attr field has no meaning */
429 if( (cur_set
->luid
.low
==set
.luid
.low
) && (cur_set
->luid
.high
==set
.luid
.high
) )
436 /****************************************************************************
437 remove a privilege from a privilege array
438 ****************************************************************************/
439 BOOL
remove_privilege(PRIVILEGE_SET
*priv_set
, LUID_ATTR set
)
445 /* check if the privilege is in the list */
446 if (!check_priv_in_privilege(priv_set
, set
))
449 /* special case if it's the only privilege in the list */
450 if (priv_set
->count
==1) {
451 free_privilege(priv_set
);
452 init_privilege(priv_set
);
458 * the privilege is there, create a new list,
459 * and copy the other privileges
462 old_set
=priv_set
->set
;
464 new_set
=(LUID_ATTR
*)malloc((priv_set
->count
-1)*(sizeof(LUID_ATTR
)));
466 DEBUG(0,("remove_privilege: could not malloc memory for new privilege list\n"));
470 for (i
=0, j
=0; i
<priv_set
->count
; i
++) {
471 if ((old_set
[i
].luid
.low
==set
.luid
.low
) &&
472 (old_set
[i
].luid
.high
==set
.luid
.high
)) {
476 new_set
[j
].luid
.low
=old_set
[i
].luid
.low
;
477 new_set
[j
].luid
.high
=old_set
[i
].luid
.high
;
478 new_set
[j
].attr
=old_set
[i
].attr
;
483 if (j
!=priv_set
->count
-1) {
484 DEBUG(0,("remove_privilege: mismatch ! difference is not -1\n"));
485 DEBUGADD(0,("old count:%d, new count:%d\n", priv_set
->count
, j
));
490 /* ok everything is fine */
493 priv_set
->set
=new_set
;
500 /****************************************************************************
501 Return the sid and the type of the unix group.
502 ****************************************************************************/
504 BOOL
get_group_map_from_sid(DOM_SID sid
, GROUP_MAP
*map
, BOOL with_priv
)
513 if(!init_group_mapping()) {
514 DEBUG(0,("failed to initialize group mapping"));
518 /* the key is the SID, retrieving is direct */
520 sid_to_string(string_sid
, &sid
);
521 slprintf(key
, sizeof(key
), "%s%s", GROUP_PREFIX
, string_sid
);
524 kbuf
.dsize
= strlen(key
)+1;
526 dbuf
= tdb_fetch(tdb
, kbuf
);
530 ret
= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "ddffd",
531 &map
->gid
, &map
->sid_name_use
, &map
->nt_name
, &map
->comment
, &map
->systemaccount
);
535 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "d", &set
->count
);
537 DEBUG(10,("get_group_map_from_sid: %d privileges\n", map
->priv_set
.count
));
541 set
->set
=(LUID_ATTR
*)smb_xmalloc(set
->count
*sizeof(LUID_ATTR
));
544 for (i
=0; i
<set
->count
; i
++)
545 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "ddd",
546 &(set
->set
[i
].luid
.low
), &(set
->set
[i
].luid
.high
), &(set
->set
[i
].attr
));
548 SAFE_FREE(dbuf
.dptr
);
549 if (ret
!= dbuf
.dsize
) {
550 DEBUG(0,("get_group_map_from_sid: group mapping TDB corrupted ?\n"));
555 /* we don't want the privileges */
556 if (with_priv
==MAPPING_WITHOUT_PRIV
)
559 sid_copy(&map
->sid
, &sid
);
564 /****************************************************************************
565 Return the sid and the type of the unix group.
566 ****************************************************************************/
568 BOOL
get_group_map_from_gid(gid_t gid
, GROUP_MAP
*map
, BOOL with_priv
)
570 TDB_DATA kbuf
, dbuf
, newkey
;
576 if(!init_group_mapping()) {
577 DEBUG(0,("failed to initialize group mapping"));
581 /* we need to enumerate the TDB to find the GID */
583 for (kbuf
= tdb_firstkey(tdb
);
585 newkey
= tdb_nextkey(tdb
, kbuf
), safe_free(kbuf
.dptr
), kbuf
=newkey
) {
587 if (strncmp(kbuf
.dptr
, GROUP_PREFIX
, strlen(GROUP_PREFIX
)) != 0) continue;
589 dbuf
= tdb_fetch(tdb
, kbuf
);
593 fstrcpy(string_sid
, kbuf
.dptr
+strlen(GROUP_PREFIX
));
595 string_to_sid(&map
->sid
, string_sid
);
597 ret
= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "ddffd",
598 &map
->gid
, &map
->sid_name_use
, &map
->nt_name
, &map
->comment
, &map
->systemaccount
);
601 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "d", &set
->count
);
604 set
->set
=(LUID_ATTR
*)smb_xmalloc(set
->count
*sizeof(LUID_ATTR
));
607 for (i
=0; i
<set
->count
; i
++)
608 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "ddd",
609 &(set
->set
[i
].luid
.low
), &(set
->set
[i
].luid
.high
), &(set
->set
[i
].attr
));
611 SAFE_FREE(dbuf
.dptr
);
612 if (ret
!= dbuf
.dsize
){
619 free_privilege(&map
->priv_set
);
629 /****************************************************************************
630 Return the sid and the type of the unix group.
631 ****************************************************************************/
633 BOOL
get_group_map_from_ntname(char *name
, GROUP_MAP
*map
, BOOL with_priv
)
635 TDB_DATA kbuf
, dbuf
, newkey
;
641 if(!init_group_mapping()) {
642 DEBUG(0,("get_group_map_from_ntname:failed to initialize group mapping"));
646 /* we need to enumerate the TDB to find the name */
648 for (kbuf
= tdb_firstkey(tdb
);
650 newkey
= tdb_nextkey(tdb
, kbuf
), safe_free(kbuf
.dptr
), kbuf
=newkey
) {
652 if (strncmp(kbuf
.dptr
, GROUP_PREFIX
, strlen(GROUP_PREFIX
)) != 0) continue;
654 dbuf
= tdb_fetch(tdb
, kbuf
);
658 fstrcpy(string_sid
, kbuf
.dptr
+strlen(GROUP_PREFIX
));
660 string_to_sid(&map
->sid
, string_sid
);
662 ret
= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "ddffd",
663 &map
->gid
, &map
->sid_name_use
, &map
->nt_name
, &map
->comment
, &map
->systemaccount
);
666 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "d", &set
->count
);
668 set
->set
=(LUID_ATTR
*)malloc(set
->count
*sizeof(LUID_ATTR
));
669 if (set
->set
==NULL
) {
670 DEBUG(0,("get_group_map_from_ntname: could not allocate memory for privileges\n"));
674 for (i
=0; i
<set
->count
; i
++)
675 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "ddd",
676 &(set
->set
[i
].luid
.low
), &(set
->set
[i
].luid
.high
), &(set
->set
[i
].attr
));
678 SAFE_FREE(dbuf
.dptr
);
679 if (ret
!= dbuf
.dsize
) {
684 if (StrCaseCmp(name
, map
->nt_name
)==0) {
686 free_privilege(&map
->priv_set
);
696 /****************************************************************************
697 Remove a group mapping entry.
698 ****************************************************************************/
700 BOOL
group_map_remove(DOM_SID sid
)
706 if(!init_group_mapping()) {
707 DEBUG(0,("failed to initialize group mapping"));
711 /* the key is the SID, retrieving is direct */
713 sid_to_string(string_sid
, &sid
);
714 slprintf(key
, sizeof(key
), "%s%s", GROUP_PREFIX
, string_sid
);
717 kbuf
.dsize
= strlen(key
)+1;
719 dbuf
= tdb_fetch(tdb
, kbuf
);
723 SAFE_FREE(dbuf
.dptr
);
725 if(tdb_delete(tdb
, kbuf
) != TDB_SUCCESS
)
731 /****************************************************************************
732 Enumerate the group mapping.
733 ****************************************************************************/
735 BOOL
enum_group_mapping(enum SID_NAME_USE sid_name_use
, GROUP_MAP
**rmap
,
736 int *num_entries
, BOOL unix_only
, BOOL with_priv
)
738 TDB_DATA kbuf
, dbuf
, newkey
;
748 if(!init_group_mapping()) {
749 DEBUG(0,("failed to initialize group mapping"));
756 for (kbuf
= tdb_firstkey(tdb
);
758 newkey
= tdb_nextkey(tdb
, kbuf
), safe_free(kbuf
.dptr
), kbuf
=newkey
) {
760 if (strncmp(kbuf
.dptr
, GROUP_PREFIX
, strlen(GROUP_PREFIX
)) != 0)
763 dbuf
= tdb_fetch(tdb
, kbuf
);
767 fstrcpy(string_sid
, kbuf
.dptr
+strlen(GROUP_PREFIX
));
769 ret
= tdb_unpack(dbuf
.dptr
, dbuf
.dsize
, "ddffd",
770 &map
.gid
, &map
.sid_name_use
, &map
.nt_name
, &map
.comment
, &map
.systemaccount
);
775 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "d", &set
->count
);
778 set
->set
=(LUID_ATTR
*)malloc(set
->count
*sizeof(LUID_ATTR
));
779 if (set
->set
==NULL
) {
780 DEBUG(0,("enum_group_mapping: could not allocate memory for privileges\n"));
785 for (i
=0; i
<set
->count
; i
++)
786 ret
+= tdb_unpack(dbuf
.dptr
+ret
, dbuf
.dsize
-ret
, "ddd",
787 &(set
->set
[i
].luid
.low
), &(set
->set
[i
].luid
.high
), &(set
->set
[i
].attr
));
789 SAFE_FREE(dbuf
.dptr
);
790 if (ret
!= dbuf
.dsize
) {
791 DEBUG(11,("enum_group_mapping: error in memory size\n"));
796 /* list only the type or everything if UNKNOWN */
797 if (sid_name_use
!=SID_NAME_UNKNOWN
&& sid_name_use
!=map
.sid_name_use
) {
798 DEBUG(11,("enum_group_mapping: group %s is not of the requested type\n", map
.nt_name
));
803 if (unix_only
==ENUM_ONLY_MAPPED
&& map
.gid
==-1) {
804 DEBUG(11,("enum_group_mapping: group %s is non mapped\n", map
.nt_name
));
809 string_to_sid(&map
.sid
, string_sid
);
811 decode_sid_name_use(group_type
, map
.sid_name_use
);
812 DEBUG(11,("enum_group_mapping: returning group %s of type %s\n", map
.nt_name
,group_type
));
814 mapt
=(GROUP_MAP
*)Realloc((*rmap
), (entries
+1)*sizeof(GROUP_MAP
));
816 DEBUG(0,("enum_group_mapping: Unable to enlarge group map!\n"));
824 mapt
[entries
].gid
= map
.gid
;
825 sid_copy( &mapt
[entries
].sid
, &map
.sid
);
826 mapt
[entries
].sid_name_use
= map
.sid_name_use
;
827 fstrcpy(mapt
[entries
].nt_name
, map
.nt_name
);
828 fstrcpy(mapt
[entries
].comment
, map
.comment
);
829 mapt
[entries
].systemaccount
=map
.systemaccount
;
830 mapt
[entries
].priv_set
.count
=set
->count
;
831 mapt
[entries
].priv_set
.control
=set
->control
;
832 mapt
[entries
].priv_set
.set
=set
->set
;
834 free_privilege(&(mapt
[entries
].priv_set
));
839 *num_entries
=entries
;
844 /****************************************************************************
845 convert a privilege string to a privilege array
846 ****************************************************************************/
847 void convert_priv_from_text(PRIVILEGE_SET
*se_priv
, char *privilege
)
850 const char *p
= privilege
;
854 /* By default no privilege */
855 init_privilege(se_priv
);
860 while(next_token(&p
, tok
, " ", sizeof(tok
)) ) {
861 for (i
=0; i
<=PRIV_ALL_INDEX
; i
++) {
862 if (StrCaseCmp(privs
[i
].priv
, tok
)==0) {
865 set
.luid
.low
=privs
[i
].se_priv
;
866 add_privilege(se_priv
, set
);
872 /****************************************************************************
873 convert a privilege array to a privilege string
874 ****************************************************************************/
875 void convert_priv_to_text(PRIVILEGE_SET
*se_priv
, char *privilege
)
882 ZERO_STRUCTP(privilege
);
884 if (check_empty_privilege(se_priv
)) {
885 fstrcat(privilege
, "No privilege");
889 for(i
=0; i
<se_priv
->count
; i
++) {
891 while (privs
[j
].se_priv
!=se_priv
->set
[i
].luid
.low
&& j
<=PRIV_ALL_INDEX
) {
895 fstrcat(privilege
, privs
[j
].priv
);
896 fstrcat(privilege
, " ");
903 * High level functions
904 * better to use them than the lower ones.
906 * we are checking if the group is in the mapping file
907 * and if the group is an existing unix group
911 /* get a domain group from it's SID */
913 BOOL
get_domain_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
, BOOL with_priv
)
917 if(!init_group_mapping()) {
918 DEBUG(0,("failed to initialize group mapping"));
922 DEBUG(10, ("get_domain_group_from_sid\n"));
924 /* if the group is NOT in the database, it CAN NOT be a domain group */
925 if(!pdb_getgrsid(map
, sid
, with_priv
))
928 DEBUG(10, ("get_domain_group_from_sid: SID found in the TDB\n"));
930 /* if it's not a domain group, continue */
931 if (map
->sid_name_use
!=SID_NAME_DOM_GRP
) {
933 free_privilege(&map
->priv_set
);
937 DEBUG(10, ("get_domain_group_from_sid: SID is a domain group\n"));
941 free_privilege(&map
->priv_set
);
945 DEBUG(10, ("get_domain_group_from_sid: SID is mapped to gid:%d\n",map
->gid
));
947 if ( (grp
=getgrgid(map
->gid
)) == NULL
) {
948 DEBUG(10, ("get_domain_group_from_sid: gid DOESN'T exist in UNIX security\n"));
950 free_privilege(&map
->priv_set
);
954 DEBUG(10, ("get_domain_group_from_sid: gid exists in UNIX security\n"));
960 /* get a local (alias) group from it's SID */
962 BOOL
get_local_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
, BOOL with_priv
)
966 if(!init_group_mapping()) {
967 DEBUG(0,("failed to initialize group mapping"));
971 /* The group is in the mapping table */
972 if(pdb_getgrsid(map
, sid
, with_priv
)) {
973 if (map
->sid_name_use
!=SID_NAME_ALIAS
) {
975 free_privilege(&map
->priv_set
);
981 free_privilege(&map
->priv_set
);
985 if ( (grp
=getgrgid(map
->gid
)) == NULL
) {
987 free_privilege(&map
->priv_set
);
991 /* the group isn't in the mapping table.
992 * make one based on the unix information */
995 sid_peek_rid(&sid
, &alias_rid
);
996 map
->gid
=pdb_group_rid_to_gid(alias_rid
);
998 if ((grp
=getgrgid(map
->gid
)) == NULL
)
1001 map
->sid_name_use
=SID_NAME_ALIAS
;
1002 map
->systemaccount
=PR_ACCESS_FROM_NETWORK
;
1004 fstrcpy(map
->nt_name
, grp
->gr_name
);
1005 fstrcpy(map
->comment
, "Local Unix Group");
1007 init_privilege(&map
->priv_set
);
1009 sid_copy(&map
->sid
, &sid
);
1015 /* get a builtin group from it's SID */
1017 BOOL
get_builtin_group_from_sid(DOM_SID sid
, GROUP_MAP
*map
, BOOL with_priv
)
1021 if(!init_group_mapping()) {
1022 DEBUG(0,("failed to initialize group mapping"));
1026 if(!pdb_getgrsid(map
, sid
, with_priv
))
1029 if (map
->sid_name_use
!=SID_NAME_WKN_GRP
) {
1031 free_privilege(&map
->priv_set
);
1037 free_privilege(&map
->priv_set
);
1041 if ( (grp
=getgrgid(map
->gid
)) == NULL
) {
1043 free_privilege(&map
->priv_set
);
1052 /****************************************************************************
1053 Returns a GROUP_MAP struct based on the gid.
1054 ****************************************************************************/
1055 BOOL
get_group_from_gid(gid_t gid
, GROUP_MAP
*map
, BOOL with_priv
)
1059 if(!init_group_mapping()) {
1060 DEBUG(0,("failed to initialize group mapping"));
1064 if ( (grp
=getgrgid(gid
)) == NULL
)
1068 * make a group map from scratch if doesn't exist.
1070 if (!pdb_getgrgid(map
, gid
, with_priv
)) {
1072 map
->sid_name_use
=SID_NAME_ALIAS
;
1073 map
->systemaccount
=PR_ACCESS_FROM_NETWORK
;
1074 init_privilege(&map
->priv_set
);
1076 /* interim solution until we have a last RID allocated */
1078 sid_copy(&map
->sid
, get_global_sam_sid());
1079 sid_append_rid(&map
->sid
, pdb_gid_to_group_rid(gid
));
1081 fstrcpy(map
->nt_name
, grp
->gr_name
);
1082 fstrcpy(map
->comment
, "Local Unix Group");
1091 /****************************************************************************
1092 Get the member users of a group and
1093 all the users who have that group as primary.
1095 give back an array of uid
1096 return the grand number of users
1099 TODO: sort the list and remove duplicate. JFM.
1101 ****************************************************************************/
1103 BOOL
get_uid_list_of_group(gid_t gid
, uid_t
**uid
, int *num_uids
)
1111 if(!init_group_mapping()) {
1112 DEBUG(0,("failed to initialize group mapping"));
1119 if ( (grp
=getgrgid(gid
)) == NULL
)
1122 gr
= grp
->gr_mem
[0];
1123 DEBUG(10, ("getting members\n"));
1125 while (gr
&& (*gr
!= (char)'\0')) {
1126 u
= Realloc((*uid
), sizeof(uid_t
)*(*num_uids
+1));
1128 DEBUG(0,("get_uid_list_of_group: unable to enlarge uid list!\n"));
1133 if( (pwd
=getpwnam_alloc(gr
)) !=NULL
) {
1134 (*uid
)[*num_uids
]=pwd
->pw_uid
;
1138 gr
= grp
->gr_mem
[++i
];
1140 DEBUG(10, ("got [%d] members\n", *num_uids
));
1143 while ((pwd
=getpwent()) != NULL
) {
1144 if (pwd
->pw_gid
==gid
) {
1145 u
= Realloc((*uid
), sizeof(uid_t
)*(*num_uids
+1));
1147 DEBUG(0,("get_uid_list_of_group: unable to enlarge uid list!\n"));
1151 (*uid
)[*num_uids
]=pwd
->pw_uid
;
1157 DEBUG(10, ("got primary groups, members: [%d]\n", *num_uids
));
1162 /****************************************************************************
1163 Create a UNIX group on demand.
1164 ****************************************************************************/
1166 int smb_create_group(char *unix_group
, gid_t
*new_gid
)
1172 pstrcpy(add_script
, lp_addgroup_script());
1173 if (! *add_script
) return -1;
1174 pstring_sub(add_script
, "%g", unix_group
);
1175 ret
= smbrun(add_script
, (new_gid
!=NULL
) ? &fd
: NULL
);
1176 DEBUG(3,("smb_create_group: Running the command `%s' gave %d\n",add_script
,ret
));
1184 if (read(fd
, output
, sizeof(output
)) > 0) {
1185 *new_gid
= (gid_t
)strtoul(output
, NULL
, 10);
1189 if (*new_gid
== 0) {
1190 /* The output was garbage. We assume nobody
1191 will create group 0 via smbd. Now we try to
1192 get the group via getgrnam. */
1194 struct group
*grp
= getgrnam(unix_group
);
1196 *new_gid
= grp
->gr_gid
;
1205 /****************************************************************************
1206 Delete a UNIX group on demand.
1207 ****************************************************************************/
1209 int smb_delete_group(char *unix_group
)
1214 pstrcpy(del_script
, lp_delgroup_script());
1215 if (! *del_script
) return -1;
1216 pstring_sub(del_script
, "%g", unix_group
);
1217 ret
= smbrun(del_script
,NULL
);
1218 DEBUG(3,("smb_delete_group: Running the command `%s' gave %d\n",del_script
,ret
));
1222 /****************************************************************************
1223 Set a user's primary UNIX group.
1224 ****************************************************************************/
1225 int smb_set_primary_group(const char *unix_group
, const char* unix_user
)
1230 pstrcpy(add_script
, lp_setprimarygroup_script());
1231 if (! *add_script
) return -1;
1232 all_string_sub(add_script
, "%g", unix_group
, sizeof(add_script
));
1233 all_string_sub(add_script
, "%u", unix_user
, sizeof(add_script
));
1234 ret
= smbrun(add_script
,NULL
);
1235 DEBUG(3,("smb_set_primary_group: "
1236 "Running the command `%s' gave %d\n",add_script
,ret
));
1240 /****************************************************************************
1241 Add a user to a UNIX group.
1242 ****************************************************************************/
1244 int smb_add_user_group(char *unix_group
, char *unix_user
)
1249 pstrcpy(add_script
, lp_addusertogroup_script());
1250 if (! *add_script
) return -1;
1251 pstring_sub(add_script
, "%g", unix_group
);
1252 pstring_sub(add_script
, "%u", unix_user
);
1253 ret
= smbrun(add_script
,NULL
);
1254 DEBUG(3,("smb_add_user_group: Running the command `%s' gave %d\n",add_script
,ret
));
1258 /****************************************************************************
1259 Delete a user from a UNIX group
1260 ****************************************************************************/
1262 int smb_delete_user_group(const char *unix_group
, const char *unix_user
)
1267 pstrcpy(del_script
, lp_deluserfromgroup_script());
1268 if (! *del_script
) return -1;
1269 pstring_sub(del_script
, "%g", unix_group
);
1270 pstring_sub(del_script
, "%u", unix_user
);
1271 ret
= smbrun(del_script
,NULL
);
1272 DEBUG(3,("smb_delete_user_group: Running the command `%s' gave %d\n",del_script
,ret
));