2001-03-23 03:50:31 +03:00
/*
2002-01-30 09:08:46 +03:00
* Unix SMB / CIFS implementation .
2001-03-23 03:50:31 +03:00
* RPC Pipe client / server routines
* Copyright ( C ) Andrew Tridgell 1992 - 2000 ,
* Copyright ( C ) Jean Fran <EFBFBD> ois Micouleau 1998 - 2001.
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
static TDB_CONTEXT * tdb ; /* used for driver files */
2002-01-09 08:24:07 +03:00
# define DATABASE_VERSION_V1 1 /* native byte format. */
# define DATABASE_VERSION_V2 2 /* le format. */
2001-03-23 03:50:31 +03:00
# define GROUP_PREFIX "UNIXGROUP / "
PRIVS privs [ ] = {
2001-11-23 18:11:22 +03:00
{ SE_PRIV_NONE , " no_privs " , " No privilege " } , /* this one MUST be first */
{ SE_PRIV_ADD_MACHINES , " SeMachineAccountPrivilege " , " Add workstations to the domain " } ,
{ SE_PRIV_SEC_PRIV , " SeSecurityPrivilege " , " Manage the audit logs " } ,
{ SE_PRIV_TAKE_OWNER , " SeTakeOwnershipPrivilege " , " Take ownership of file " } ,
{ SE_PRIV_ADD_USERS , " SaAddUsers " , " Add users to the domain - Samba " } ,
{ SE_PRIV_PRINT_OPERATOR , " SaPrintOp " , " Add or remove printers - Samba " } ,
{ SE_PRIV_ALL , " SaAllPrivs " , " all privileges " }
2001-03-23 03:50:31 +03:00
} ;
2001-11-29 19:05:05 +03:00
2001-03-23 03:50:31 +03:00
/****************************************************************************
dump the mapping group mapping to a text file
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
char * decode_sid_name_use ( fstring group , enum SID_NAME_USE name_use )
{
static fstring group_type ;
switch ( name_use ) {
case SID_NAME_USER :
fstrcpy ( group_type , " User " ) ;
break ;
case SID_NAME_DOM_GRP :
fstrcpy ( group_type , " Domain group " ) ;
break ;
case SID_NAME_DOMAIN :
fstrcpy ( group_type , " Domain " ) ;
break ;
case SID_NAME_ALIAS :
fstrcpy ( group_type , " Local group " ) ;
break ;
case SID_NAME_WKN_GRP :
fstrcpy ( group_type , " Builtin group " ) ;
break ;
case SID_NAME_DELETED :
fstrcpy ( group_type , " Deleted " ) ;
break ;
case SID_NAME_INVALID :
fstrcpy ( group_type , " Invalid " ) ;
break ;
case SID_NAME_UNKNOWN :
default :
fstrcpy ( group_type , " Unknown type " ) ;
break ;
}
fstrcpy ( group , group_type ) ;
return group_type ;
}
2002-01-29 04:01:14 +03:00
/****************************************************************************
initialise first time the mapping list - called from init_group_mapping ( )
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL default_group_mapping ( void )
{
DOM_SID sid_admins ;
DOM_SID sid_users ;
DOM_SID sid_guests ;
fstring str_admins ;
fstring str_users ;
fstring str_guests ;
/* Add the Wellknown groups */
2003-06-18 19:24:10 +04:00
add_initial_entry ( - 1 , " S-1-5-32-544 " , SID_NAME_WKN_GRP , " Administrators " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-545 " , SID_NAME_WKN_GRP , " Users " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-546 " , SID_NAME_WKN_GRP , " Guests " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-547 " , SID_NAME_WKN_GRP , " Power Users " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-548 " , SID_NAME_WKN_GRP , " Account Operators " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-549 " , SID_NAME_WKN_GRP , " System Operators " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-550 " , SID_NAME_WKN_GRP , " Print Operators " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-551 " , SID_NAME_WKN_GRP , " Backup Operators " , " " ) ;
add_initial_entry ( - 1 , " S-1-5-32-552 " , SID_NAME_WKN_GRP , " Replicators " , " " ) ;
2002-01-29 04:01:14 +03:00
/* Add the defaults domain groups */
2002-07-15 14:35:28 +04:00
sid_copy ( & sid_admins , get_global_sam_sid ( ) ) ;
2002-01-29 04:01:14 +03:00
sid_append_rid ( & sid_admins , DOMAIN_GROUP_RID_ADMINS ) ;
sid_to_string ( str_admins , & sid_admins ) ;
2003-06-18 19:24:10 +04:00
add_initial_entry ( - 1 , str_admins , SID_NAME_DOM_GRP , " Domain Admins " , " " ) ;
2002-01-29 04:01:14 +03:00
2002-07-15 14:35:28 +04:00
sid_copy ( & sid_users , get_global_sam_sid ( ) ) ;
2002-01-29 04:01:14 +03:00
sid_append_rid ( & sid_users , DOMAIN_GROUP_RID_USERS ) ;
sid_to_string ( str_users , & sid_users ) ;
2003-06-18 19:24:10 +04:00
add_initial_entry ( - 1 , str_users , SID_NAME_DOM_GRP , " Domain Users " , " " ) ;
2002-01-29 04:01:14 +03:00
2002-07-15 14:35:28 +04:00
sid_copy ( & sid_guests , get_global_sam_sid ( ) ) ;
2002-01-29 04:01:14 +03:00
sid_append_rid ( & sid_guests , DOMAIN_GROUP_RID_GUESTS ) ;
sid_to_string ( str_guests , & sid_guests ) ;
2003-06-18 19:24:10 +04:00
add_initial_entry ( - 1 , str_guests , SID_NAME_DOM_GRP , " Domain Guests " , " " ) ;
2003-06-17 16:31:02 +04:00
2002-01-29 04:01:14 +03:00
return True ;
}
2001-03-23 03:50:31 +03:00
/****************************************************************************
2002-01-09 07:13:30 +03:00
Open the group mapping tdb .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-01-09 07:13:30 +03:00
2002-01-29 04:01:14 +03:00
static BOOL init_group_mapping ( void )
2001-03-23 03:50:31 +03:00
{
static pid_t local_pid ;
2003-01-03 11:28:12 +03:00
const char * vstring = " INFO/version " ;
2002-01-09 07:13:30 +03:00
int32 vers_id ;
if ( tdb & & local_pid = = sys_getpid ( ) )
return True ;
2001-09-07 02:08:19 +04:00
tdb = tdb_open_log ( lock_path ( " group_mapping.tdb " ) , 0 , TDB_DEFAULT , O_RDWR | O_CREAT , 0600 ) ;
2001-03-23 03:50:31 +03:00
if ( ! tdb ) {
DEBUG ( 0 , ( " Failed to open group mapping database \n " ) ) ;
return False ;
}
local_pid = sys_getpid ( ) ;
/* handle a Samba upgrade */
2002-10-05 02:53:18 +04:00
tdb_lock_bystring ( tdb , vstring , 0 ) ;
2002-01-09 07:13:30 +03:00
/* Cope with byte-reversed older versions of the db. */
vers_id = tdb_fetch_int32 ( tdb , vstring ) ;
2002-01-09 08:24:07 +03:00
if ( ( vers_id = = DATABASE_VERSION_V1 ) | | ( IREV ( vers_id ) = = DATABASE_VERSION_V1 ) ) {
2002-01-09 07:13:30 +03:00
/* Written on a bigendian machine with old fetch_int code. Save as le. */
2002-01-09 08:24:07 +03:00
tdb_store_int32 ( tdb , vstring , DATABASE_VERSION_V2 ) ;
vers_id = DATABASE_VERSION_V2 ;
2002-01-09 07:13:30 +03:00
}
2002-01-09 08:24:07 +03:00
if ( vers_id ! = DATABASE_VERSION_V2 ) {
2002-01-04 01:48:48 +03:00
tdb_traverse ( tdb , tdb_traverse_delete_fn , NULL ) ;
2002-01-09 08:24:07 +03:00
tdb_store_int32 ( tdb , vstring , DATABASE_VERSION_V2 ) ;
2001-03-23 03:50:31 +03:00
}
2002-01-09 07:13:30 +03:00
2001-03-23 03:50:31 +03:00
tdb_unlock_bystring ( tdb , vstring ) ;
2001-12-03 20:14:23 +03:00
/* write a list of default groups */
if ( ! default_group_mapping ( ) )
return False ;
2001-03-23 03:50:31 +03:00
return True ;
}
/****************************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-03-23 14:45:01 +03:00
static BOOL add_mapping_entry ( GROUP_MAP * map , int flag )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf ;
pstring key , buf ;
2001-07-09 22:17:00 +04:00
fstring string_sid = " " ;
2001-03-23 03:50:31 +03:00
int len ;
2001-12-03 03:00:43 +03:00
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-03-23 03:50:31 +03:00
sid_to_string ( string_sid , & map - > sid ) ;
2003-06-18 19:24:10 +04:00
len = tdb_pack ( buf , sizeof ( buf ) , " ddff " ,
map - > gid , map - > sid_name_use , map - > nt_name , map - > comment ) ;
2001-11-29 19:05:05 +03:00
if ( len > sizeof ( buf ) )
return False ;
2001-03-23 03:50:31 +03:00
slprintf ( key , sizeof ( key ) , " %s%s " , GROUP_PREFIX , string_sid ) ;
kbuf . dsize = strlen ( key ) + 1 ;
kbuf . dptr = key ;
dbuf . dsize = len ;
dbuf . dptr = buf ;
if ( tdb_store ( tdb , kbuf , dbuf , flag ) ! = 0 ) return False ;
return True ;
}
/****************************************************************************
initialise first time the mapping list
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-06-18 19:24:10 +04:00
BOOL add_initial_entry ( gid_t gid , const char * sid , enum SID_NAME_USE sid_name_use , const char * nt_name , const char * comment )
2001-03-23 03:50:31 +03:00
{
GROUP_MAP map ;
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-03-23 03:50:31 +03:00
map . gid = gid ;
2003-02-18 10:05:02 +03:00
if ( ! string_to_sid ( & map . sid , sid ) ) {
DEBUG ( 0 , ( " string_to_sid failed: %s " , sid ) ) ;
return False ;
}
2001-03-23 03:50:31 +03:00
map . sid_name_use = sid_name_use ;
fstrcpy ( map . nt_name , nt_name ) ;
fstrcpy ( map . comment , comment ) ;
2003-07-15 21:23:36 +04:00
return pdb_add_group_mapping_entry ( & map ) ;
2001-03-23 03:50:31 +03:00
}
/****************************************************************************
2002-11-23 05:52:36 +03:00
Return the sid and the type of the unix group .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-23 05:52:36 +03:00
2003-06-18 19:24:10 +04:00
static BOOL get_group_map_from_sid ( DOM_SID sid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf ;
pstring key ;
fstring string_sid ;
2003-08-15 21:01:49 +04:00
int ret = 0 ;
2001-03-23 03:50:31 +03:00
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-12-03 03:00:43 +03:00
2001-03-23 03:50:31 +03:00
/* the key is the SID, retrieving is direct */
sid_to_string ( string_sid , & sid ) ;
slprintf ( key , sizeof ( key ) , " %s%s " , GROUP_PREFIX , string_sid ) ;
kbuf . dptr = key ;
kbuf . dsize = strlen ( key ) + 1 ;
dbuf = tdb_fetch ( tdb , kbuf ) ;
2002-11-23 05:52:36 +03:00
if ( ! dbuf . dptr )
return False ;
2001-03-23 03:50:31 +03:00
2003-06-18 19:24:10 +04:00
ret = tdb_unpack ( dbuf . dptr , dbuf . dsize , " ddff " ,
& map - > gid , & map - > sid_name_use , & map - > nt_name , & map - > comment ) ;
2001-03-23 03:50:31 +03:00
2001-09-17 04:58:15 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2003-08-15 21:01:49 +04:00
if ( ret = = - 1 ) {
DEBUG ( 3 , ( " get_group_map_from_sid: tdb_unpack failure \n " ) ) ;
return False ;
}
2001-12-05 00:53:47 +03:00
2001-03-23 03:50:31 +03:00
sid_copy ( & map - > sid , & sid ) ;
return True ;
}
/****************************************************************************
2002-11-23 05:52:36 +03:00
Return the sid and the type of the unix group .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-23 05:52:36 +03:00
2003-06-18 19:24:10 +04:00
static BOOL get_group_map_from_gid ( gid_t gid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf , newkey ;
fstring string_sid ;
int ret ;
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-12-03 03:00:43 +03:00
2001-03-23 03:50:31 +03:00
/* we need to enumerate the TDB to find the GID */
for ( kbuf = tdb_firstkey ( tdb ) ;
kbuf . dptr ;
2001-09-17 08:16:35 +04:00
newkey = tdb_nextkey ( tdb , kbuf ) , safe_free ( kbuf . dptr ) , kbuf = newkey ) {
2001-03-23 03:50:31 +03:00
if ( strncmp ( kbuf . dptr , GROUP_PREFIX , strlen ( GROUP_PREFIX ) ) ! = 0 ) continue ;
dbuf = tdb_fetch ( tdb , kbuf ) ;
2002-11-23 05:52:36 +03:00
if ( ! dbuf . dptr )
continue ;
2001-03-23 03:50:31 +03:00
fstrcpy ( string_sid , kbuf . dptr + strlen ( GROUP_PREFIX ) ) ;
string_to_sid ( & map - > sid , string_sid ) ;
2003-06-18 19:24:10 +04:00
ret = tdb_unpack ( dbuf . dptr , dbuf . dsize , " ddff " ,
& map - > gid , & map - > sid_name_use , & map - > nt_name , & map - > comment ) ;
2001-03-23 03:50:31 +03:00
2001-09-17 04:58:15 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2001-03-23 03:50:31 +03:00
2003-08-15 21:01:49 +04:00
if ( ret = = - 1 ) {
DEBUG ( 3 , ( " get_group_map_from_gid: tdb_unpack failure \n " ) ) ;
return False ;
}
2001-12-05 00:53:47 +03:00
if ( gid = = map - > gid ) {
2003-06-18 16:00:52 +04:00
SAFE_FREE ( kbuf . dptr ) ;
2001-03-23 03:50:31 +03:00
return True ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
}
return False ;
}
/****************************************************************************
2002-11-23 05:52:36 +03:00
Return the sid and the type of the unix group .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-23 05:52:36 +03:00
2003-06-18 19:24:10 +04:00
static BOOL get_group_map_from_ntname ( const char * name , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf , newkey ;
fstring string_sid ;
int ret ;
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
2002-07-15 14:35:28 +04:00
DEBUG ( 0 , ( " get_group_map_from_ntname:failed to initialize group mapping " ) ) ;
2002-01-27 13:53:43 +03:00
return ( False ) ;
}
2001-12-03 03:00:43 +03:00
2001-11-29 19:05:05 +03:00
/* we need to enumerate the TDB to find the name */
2001-03-23 03:50:31 +03:00
for ( kbuf = tdb_firstkey ( tdb ) ;
kbuf . dptr ;
2001-09-17 08:16:35 +04:00
newkey = tdb_nextkey ( tdb , kbuf ) , safe_free ( kbuf . dptr ) , kbuf = newkey ) {
2001-03-23 03:50:31 +03:00
if ( strncmp ( kbuf . dptr , GROUP_PREFIX , strlen ( GROUP_PREFIX ) ) ! = 0 ) continue ;
dbuf = tdb_fetch ( tdb , kbuf ) ;
2002-11-23 05:52:36 +03:00
if ( ! dbuf . dptr )
continue ;
2001-03-23 03:50:31 +03:00
fstrcpy ( string_sid , kbuf . dptr + strlen ( GROUP_PREFIX ) ) ;
string_to_sid ( & map - > sid , string_sid ) ;
2003-06-18 19:24:10 +04:00
ret = tdb_unpack ( dbuf . dptr , dbuf . dsize , " ddff " ,
& map - > gid , & map - > sid_name_use , & map - > nt_name , & map - > comment ) ;
2001-03-23 03:50:31 +03:00
2001-09-17 04:58:15 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2003-08-15 21:01:49 +04:00
if ( ret = = - 1 ) {
DEBUG ( 3 , ( " get_group_map_from_ntname: tdb_unpack failure \n " ) ) ;
return False ;
}
2001-03-23 03:50:31 +03:00
2001-12-05 00:53:47 +03:00
if ( StrCaseCmp ( name , map - > nt_name ) = = 0 ) {
2003-06-18 16:00:52 +04:00
SAFE_FREE ( kbuf . dptr ) ;
2001-03-23 03:50:31 +03:00
return True ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
}
return False ;
}
/****************************************************************************
2002-11-23 05:52:36 +03:00
Remove a group mapping entry .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-23 05:52:36 +03:00
2003-03-23 14:45:01 +03:00
static BOOL group_map_remove ( DOM_SID sid )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf ;
pstring key ;
fstring string_sid ;
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-12-03 03:00:43 +03:00
2001-03-23 03:50:31 +03:00
/* the key is the SID, retrieving is direct */
sid_to_string ( string_sid , & sid ) ;
slprintf ( key , sizeof ( key ) , " %s%s " , GROUP_PREFIX , string_sid ) ;
kbuf . dptr = key ;
kbuf . dsize = strlen ( key ) + 1 ;
dbuf = tdb_fetch ( tdb , kbuf ) ;
2002-11-23 05:52:36 +03:00
if ( ! dbuf . dptr )
return False ;
2001-03-23 03:50:31 +03:00
2001-09-17 04:58:15 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2001-03-23 03:50:31 +03:00
if ( tdb_delete ( tdb , kbuf ) ! = TDB_SUCCESS )
return False ;
return True ;
}
/****************************************************************************
2002-11-23 05:52:36 +03:00
Enumerate the group mapping .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-11-23 05:52:36 +03:00
2003-03-23 14:45:01 +03:00
static BOOL enum_group_mapping ( enum SID_NAME_USE sid_name_use , GROUP_MAP * * rmap ,
2003-06-18 19:24:10 +04:00
int * num_entries , BOOL unix_only )
2001-03-23 03:50:31 +03:00
{
TDB_DATA kbuf , dbuf , newkey ;
fstring string_sid ;
fstring group_type ;
GROUP_MAP map ;
2001-08-12 21:30:01 +04:00
GROUP_MAP * mapt ;
2001-03-23 03:50:31 +03:00
int ret ;
int entries = 0 ;
2002-01-27 13:53:43 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-12-03 03:00:43 +03:00
2001-03-23 03:50:31 +03:00
* num_entries = 0 ;
* rmap = NULL ;
for ( kbuf = tdb_firstkey ( tdb ) ;
kbuf . dptr ;
2001-09-17 08:16:35 +04:00
newkey = tdb_nextkey ( tdb , kbuf ) , safe_free ( kbuf . dptr ) , kbuf = newkey ) {
2001-03-23 03:50:31 +03:00
2001-05-04 19:44:27 +04:00
if ( strncmp ( kbuf . dptr , GROUP_PREFIX , strlen ( GROUP_PREFIX ) ) ! = 0 )
continue ;
2003-05-12 22:12:31 +04:00
2001-03-23 03:50:31 +03:00
dbuf = tdb_fetch ( tdb , kbuf ) ;
2001-05-04 19:44:27 +04:00
if ( ! dbuf . dptr )
continue ;
2001-03-23 03:50:31 +03:00
fstrcpy ( string_sid , kbuf . dptr + strlen ( GROUP_PREFIX ) ) ;
2003-06-18 19:24:10 +04:00
ret = tdb_unpack ( dbuf . dptr , dbuf . dsize , " ddff " ,
& map . gid , & map . sid_name_use , & map . nt_name , & map . comment ) ;
2001-03-23 03:50:31 +03:00
2001-09-17 04:58:15 +04:00
SAFE_FREE ( dbuf . dptr ) ;
2001-03-23 03:50:31 +03:00
2003-08-15 21:01:49 +04:00
if ( ret = = - 1 ) {
DEBUG ( 3 , ( " enum_group_mapping: tdb_unpack failure \n " ) ) ;
continue ;
}
2001-03-23 03:50:31 +03:00
/* list only the type or everything if UNKNOWN */
2001-11-29 19:05:05 +03:00
if ( sid_name_use ! = SID_NAME_UNKNOWN & & sid_name_use ! = map . sid_name_use ) {
2001-12-05 00:53:47 +03:00
DEBUG ( 11 , ( " enum_group_mapping: group %s is not of the requested type \n " , map . nt_name ) ) ;
2001-05-04 19:44:27 +04:00
continue ;
2001-11-29 19:05:05 +03:00
}
2003-05-12 22:12:31 +04:00
2001-11-29 19:05:05 +03:00
if ( unix_only = = ENUM_ONLY_MAPPED & & map . gid = = - 1 ) {
2001-12-05 00:53:47 +03:00
DEBUG ( 11 , ( " enum_group_mapping: group %s is non mapped \n " , map . nt_name ) ) ;
2001-05-04 19:44:27 +04:00
continue ;
2001-11-29 19:05:05 +03:00
}
2001-03-23 03:50:31 +03:00
string_to_sid ( & map . sid , string_sid ) ;
decode_sid_name_use ( group_type , map . sid_name_use ) ;
2001-12-05 00:53:47 +03:00
DEBUG ( 11 , ( " enum_group_mapping: returning group %s of type %s \n " , map . nt_name , group_type ) ) ;
2001-03-23 03:50:31 +03:00
2001-08-12 21:30:01 +04:00
mapt = ( GROUP_MAP * ) Realloc ( ( * rmap ) , ( entries + 1 ) * sizeof ( GROUP_MAP ) ) ;
if ( ! mapt ) {
DEBUG ( 0 , ( " enum_group_mapping: Unable to enlarge group map! \n " ) ) ;
2001-09-17 04:58:15 +04:00
SAFE_FREE ( * rmap ) ;
2001-08-12 21:30:01 +04:00
return False ;
}
2001-11-29 19:05:05 +03:00
else
( * rmap ) = mapt ;
2001-03-23 03:50:31 +03:00
mapt [ entries ] . gid = map . gid ;
sid_copy ( & mapt [ entries ] . sid , & map . sid ) ;
mapt [ entries ] . sid_name_use = map . sid_name_use ;
fstrcpy ( mapt [ entries ] . nt_name , map . nt_name ) ;
fstrcpy ( mapt [ entries ] . comment , map . comment ) ;
entries + + ;
2003-05-12 22:12:31 +04:00
2001-03-23 03:50:31 +03:00
}
* num_entries = entries ;
2003-03-22 12:03:46 +03:00
2001-03-23 03:50:31 +03:00
return True ;
}
/*
*
* High level functions
* better to use them than the lower ones .
*
* we are checking if the group is in the mapping file
* and if the group is an existing unix group
*
*/
/* get a domain group from it's SID */
2003-06-18 19:24:10 +04:00
BOOL get_domain_group_from_sid ( DOM_SID sid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
struct group * grp ;
2003-12-10 19:40:17 +03:00
BOOL ret ;
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-05-04 19:44:27 +04:00
DEBUG ( 10 , ( " get_domain_group_from_sid \n " ) ) ;
2001-03-23 03:50:31 +03:00
/* if the group is NOT in the database, it CAN NOT be a domain group */
2003-12-10 19:40:17 +03:00
become_root ( ) ;
ret = pdb_getgrsid ( map , sid ) ;
unbecome_root ( ) ;
if ( ! ret )
2001-03-23 03:50:31 +03:00
return False ;
2001-05-04 19:44:27 +04:00
DEBUG ( 10 , ( " get_domain_group_from_sid: SID found in the TDB \n " ) ) ;
2001-03-23 03:50:31 +03:00
/* if it's not a domain group, continue */
2001-12-05 00:53:47 +03:00
if ( map - > sid_name_use ! = SID_NAME_DOM_GRP ) {
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
}
2001-05-04 19:44:27 +04:00
DEBUG ( 10 , ( " get_domain_group_from_sid: SID is a domain group \n " ) ) ;
2001-03-23 03:50:31 +03:00
2001-12-05 00:53:47 +03:00
if ( map - > gid = = - 1 ) {
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
2003-07-22 08:31:20 +04:00
DEBUG ( 10 , ( " get_domain_group_from_sid: SID is mapped to gid:%lu \n " , ( unsigned long ) map - > gid ) ) ;
2003-08-15 21:01:49 +04:00
2003-08-15 21:38:11 +04:00
grp = getgrgid ( map - > gid ) ;
2003-08-15 21:01:49 +04:00
if ( ! grp ) {
2001-12-02 02:56:05 +03:00
DEBUG ( 10 , ( " get_domain_group_from_sid: gid DOESN'T exist in UNIX security \n " ) ) ;
2001-05-04 19:44:27 +04:00
return False ;
2001-12-02 02:56:05 +03:00
}
2001-05-04 19:44:27 +04:00
DEBUG ( 10 , ( " get_domain_group_from_sid: gid exists in UNIX security \n " ) ) ;
2001-03-23 03:50:31 +03:00
return True ;
}
/* get a local (alias) group from it's SID */
2004-01-02 08:32:07 +03:00
BOOL get_local_group_from_sid ( DOM_SID * sid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
2003-12-10 19:40:17 +03:00
BOOL ret ;
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-03-23 03:50:31 +03:00
/* The group is in the mapping table */
2003-12-10 19:40:17 +03:00
become_root ( ) ;
2004-01-02 08:32:07 +03:00
ret = pdb_getgrsid ( map , * sid ) ;
2003-12-10 19:40:17 +03:00
unbecome_root ( ) ;
2003-12-04 06:35:46 +03:00
2003-12-10 19:40:17 +03:00
if ( ! ret )
2003-12-04 06:35:46 +03:00
return False ;
2001-12-05 00:53:47 +03:00
2003-12-04 06:35:46 +03:00
if ( ( map - > sid_name_use ! = SID_NAME_ALIAS )
| | ( map - > gid = = - 1 )
| | ( getgrgid ( map - > gid ) = = NULL ) )
{
return False ;
}
2003-12-10 19:40:17 +03:00
# if 1 /* JERRY */
2003-12-04 06:35:46 +03:00
/* local groups only exist in the group mapping DB so this
is not necessary */
else {
2001-03-23 03:50:31 +03:00
/* the group isn't in the mapping table.
* make one based on the unix information */
uint32 alias_rid ;
2003-12-10 19:40:17 +03:00
struct group * grp ;
2001-03-23 03:50:31 +03:00
2004-01-02 08:32:07 +03:00
sid_peek_rid ( sid , & alias_rid ) ;
2001-12-02 02:56:05 +03:00
map - > gid = pdb_group_rid_to_gid ( alias_rid ) ;
2003-08-15 21:01:49 +04:00
grp = getgrgid ( map - > gid ) ;
if ( ! grp ) {
DEBUG ( 3 , ( " get_local_group_from_sid: No unix group for [%ul] \n " , map - > gid ) ) ;
2001-03-23 03:50:31 +03:00
return False ;
2003-08-15 21:01:49 +04:00
}
2001-03-23 03:50:31 +03:00
map - > sid_name_use = SID_NAME_ALIAS ;
fstrcpy ( map - > nt_name , grp - > gr_name ) ;
fstrcpy ( map - > comment , " Local Unix Group " ) ;
2004-01-02 08:32:07 +03:00
sid_copy ( & map - > sid , sid ) ;
2001-03-23 03:50:31 +03:00
}
2003-12-04 06:35:46 +03:00
# endif
2001-03-23 03:50:31 +03:00
return True ;
}
/* get a builtin group from it's SID */
2004-01-02 08:32:07 +03:00
BOOL get_builtin_group_from_sid ( DOM_SID * sid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
struct group * grp ;
2003-12-10 19:40:17 +03:00
BOOL ret ;
2001-03-23 03:50:31 +03:00
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2003-12-10 19:40:17 +03:00
become_root ( ) ;
2004-01-02 08:32:07 +03:00
ret = pdb_getgrsid ( map , * sid ) ;
2003-12-10 19:40:17 +03:00
unbecome_root ( ) ;
if ( ! ret )
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
if ( map - > sid_name_use ! = SID_NAME_WKN_GRP ) {
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
2001-12-05 00:53:47 +03:00
if ( map - > gid = = - 1 ) {
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
2001-12-05 00:53:47 +03:00
if ( ( grp = getgrgid ( map - > gid ) ) = = NULL ) {
2001-03-23 03:50:31 +03:00
return False ;
2001-12-05 00:53:47 +03:00
}
2001-03-23 03:50:31 +03:00
return True ;
}
/****************************************************************************
Returns a GROUP_MAP struct based on the gid .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-06-18 19:24:10 +04:00
BOOL get_group_from_gid ( gid_t gid , GROUP_MAP * map )
2001-03-23 03:50:31 +03:00
{
struct group * grp ;
2003-11-24 20:31:38 +03:00
BOOL ret ;
2001-03-23 03:50:31 +03:00
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2001-03-23 03:50:31 +03:00
if ( ( grp = getgrgid ( gid ) ) = = NULL )
return False ;
/*
* make a group map from scratch if doesn ' t exist .
*/
2003-11-24 20:31:38 +03:00
become_root ( ) ;
ret = pdb_getgrgid ( map , gid ) ;
unbecome_root ( ) ;
if ( ! ret ) {
2001-03-23 03:50:31 +03:00
map - > gid = gid ;
map - > sid_name_use = SID_NAME_ALIAS ;
2001-12-02 02:56:05 +03:00
/* interim solution until we have a last RID allocated */
2002-07-15 14:35:28 +04:00
sid_copy ( & map - > sid , get_global_sam_sid ( ) ) ;
2001-05-04 19:44:27 +04:00
sid_append_rid ( & map - > sid , pdb_gid_to_group_rid ( gid ) ) ;
2001-03-23 03:50:31 +03:00
fstrcpy ( map - > nt_name , grp - > gr_name ) ;
fstrcpy ( map - > comment , " Local Unix Group " ) ;
}
return True ;
}
/****************************************************************************
Get the member users of a group and
all the users who have that group as primary .
2004-01-02 08:32:07 +03:00
give back an array of SIDS
2001-03-23 03:50:31 +03:00
return the grand number of users
TODO : sort the list and remove duplicate . JFM .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-01-02 08:32:07 +03:00
BOOL get_sid_list_of_group ( gid_t gid , DOM_SID * * sids , int * num_sids )
2001-03-23 03:50:31 +03:00
{
struct group * grp ;
int i = 0 ;
char * gr ;
2004-01-02 08:32:07 +03:00
DOM_SID * s ;
2004-01-25 13:04:10 +03:00
struct sys_pwent * userlist ;
struct sys_pwent * user ;
2001-03-23 03:50:31 +03:00
2002-01-29 04:01:14 +03:00
if ( ! init_group_mapping ( ) ) {
DEBUG ( 0 , ( " failed to initialize group mapping " ) ) ;
return ( False ) ;
}
2004-01-02 08:32:07 +03:00
* num_sids = 0 ;
* sids = NULL ;
2001-03-23 03:50:31 +03:00
if ( ( grp = getgrgid ( gid ) ) = = NULL )
return False ;
gr = grp - > gr_mem [ 0 ] ;
DEBUG ( 10 , ( " getting members \n " ) ) ;
2001-05-17 04:24:34 +04:00
while ( gr & & ( * gr ! = ( char ) ' \0 ' ) ) {
2004-01-02 08:32:07 +03:00
SAM_ACCOUNT * group_member_acct = NULL ;
BOOL found_user ;
s = Realloc ( ( * sids ) , sizeof ( * * sids ) * ( * num_sids + 1 ) ) ;
if ( ! s ) {
DEBUG ( 0 , ( " get_uid_list_of_group: unable to enlarge SID list! \n " ) ) ;
2001-08-12 21:30:01 +04:00
return False ;
}
2004-01-02 08:32:07 +03:00
else ( * sids ) = s ;
if ( ! NT_STATUS_IS_OK ( pdb_init_sam ( & group_member_acct ) ) ) {
continue ;
}
2001-03-23 03:50:31 +03:00
2004-01-02 08:32:07 +03:00
become_root ( ) ;
found_user = pdb_getsampwnam ( group_member_acct , gr ) ;
unbecome_root ( ) ;
if ( found_user ) {
sid_copy ( & ( * sids ) [ * num_sids ] , pdb_get_user_sid ( group_member_acct ) ) ;
( * num_sids ) + + ;
2001-03-23 03:50:31 +03:00
}
2004-01-02 08:32:07 +03:00
pdb_free_sam ( & group_member_acct ) ;
2001-03-23 03:50:31 +03:00
gr = grp - > gr_mem [ + + i ] ;
}
2004-01-02 08:32:07 +03:00
DEBUG ( 10 , ( " got [%d] members \n " , * num_sids ) ) ;
winbind_off ( ) ;
2001-03-23 03:50:31 +03:00
2004-01-25 13:04:10 +03:00
user = userlist = getpwent_list ( ) ;
while ( user ! = NULL ) {
SAM_ACCOUNT * group_member_acct = NULL ;
BOOL found_user ;
if ( user - > pw_gid ! = gid ) {
user = user - > next ;
continue ;
}
s = Realloc ( ( * sids ) , sizeof ( * * sids ) * ( * num_sids + 1 ) ) ;
if ( ! s ) {
DEBUG ( 0 , ( " get_sid_list_of_group: unable to enlarge "
" SID list! \n " ) ) ;
2004-01-25 13:14:50 +03:00
pwent_free ( userlist ) ;
2004-01-25 13:04:10 +03:00
winbind_on ( ) ;
return False ;
}
else ( * sids ) = s ;
2004-01-02 08:32:07 +03:00
2004-01-25 13:04:10 +03:00
if ( ! NT_STATUS_IS_OK ( pdb_init_sam ( & group_member_acct ) ) ) {
continue ;
}
2004-01-02 08:32:07 +03:00
2004-01-25 13:04:10 +03:00
become_root ( ) ;
found_user = pdb_getsampwnam ( group_member_acct , user - > pw_name ) ;
unbecome_root ( ) ;
2004-01-02 08:32:07 +03:00
2004-01-25 13:04:10 +03:00
if ( found_user ) {
sid_copy ( & ( * sids ) [ * num_sids ] ,
pdb_get_user_sid ( group_member_acct ) ) ;
( * num_sids ) + + ;
} else {
DEBUG ( 4 , ( " get_sid_list_of_group: User %s [uid == %lu] "
" has no samba account \n " ,
user - > pw_name , ( unsigned long ) user - > pw_uid ) ) ;
if ( algorithmic_uid_to_sid ( & ( * sids ) [ * num_sids ] ,
user - > pw_uid ) )
2004-01-02 08:32:07 +03:00
( * num_sids ) + + ;
2001-03-23 03:50:31 +03:00
}
2004-01-25 13:04:10 +03:00
pdb_free_sam ( & group_member_acct ) ;
user = user - > next ;
2001-03-23 03:50:31 +03:00
}
2004-01-25 13:04:10 +03:00
pwent_free ( userlist ) ;
2004-01-02 08:32:07 +03:00
DEBUG ( 10 , ( " got primary groups, members: [%d] \n " , * num_sids ) ) ;
2001-03-23 03:50:31 +03:00
2004-01-02 08:32:07 +03:00
winbind_on ( ) ;
2001-03-23 03:50:31 +03:00
return True ;
}
/****************************************************************************
Create a UNIX group on demand .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-09-25 19:19:00 +04:00
int smb_create_group ( char * unix_group , gid_t * new_gid )
2001-03-23 03:50:31 +03:00
{
pstring add_script ;
2003-07-16 06:20:53 +04:00
int ret = - 1 ;
int fd = 0 ;
* new_gid = 0 ;
2001-03-23 03:50:31 +03:00
2003-07-09 20:44:47 +04:00
/* defer to scripts */
if ( * lp_addgroup_script ( ) ) {
pstrcpy ( add_script , lp_addgroup_script ( ) ) ;
pstring_sub ( add_script , " %g " , unix_group ) ;
ret = smbrun ( add_script , ( new_gid ! = NULL ) ? & fd : NULL ) ;
DEBUG ( 3 , ( " smb_create_group: Running the command `%s' gave %d \n " , add_script , ret ) ) ;
if ( ret ! = 0 )
return ret ;
if ( fd ! = 0 ) {
fstring output ;
* new_gid = 0 ;
if ( read ( fd , output , sizeof ( output ) ) > 0 ) {
* new_gid = ( gid_t ) strtoul ( output , NULL , 10 ) ;
}
2003-07-16 06:20:53 +04:00
2003-07-09 20:44:47 +04:00
close ( fd ) ;
2002-09-25 19:19:00 +04:00
}
2004-02-18 00:25:42 +03:00
} else if ( winbind_create_group ( unix_group , NULL ) ) {
2003-07-09 20:44:47 +04:00
DEBUG ( 3 , ( " smb_create_group: winbindd created the group (%s) \n " ,
unix_group ) ) ;
2003-07-16 06:20:53 +04:00
ret = 0 ;
}
if ( * new_gid = = 0 ) {
struct group * grp = getgrnam ( unix_group ) ;
if ( grp ! = NULL )
* new_gid = grp - > gr_gid ;
2003-07-09 20:44:47 +04:00
}
2003-07-16 06:20:53 +04:00
return ret ;
2001-03-23 03:50:31 +03:00
}
/****************************************************************************
Delete a UNIX group on demand .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int smb_delete_group ( char * unix_group )
{
pstring del_script ;
int ret ;
2003-07-09 20:44:47 +04:00
/* defer to scripts */
if ( * lp_delgroup_script ( ) ) {
pstrcpy ( del_script , lp_delgroup_script ( ) ) ;
pstring_sub ( del_script , " %g " , unix_group ) ;
ret = smbrun ( del_script , NULL ) ;
DEBUG ( 3 , ( " smb_delete_group: Running the command `%s' gave %d \n " , del_script , ret ) ) ;
return ret ;
}
2003-07-11 09:33:40 +04:00
2003-07-09 20:44:47 +04:00
if ( winbind_delete_group ( unix_group ) ) {
DEBUG ( 3 , ( " smb_delete_group: winbindd deleted the group (%s) \n " ,
unix_group ) ) ;
return 0 ;
}
return - 1 ;
2001-03-23 03:50:31 +03:00
}
/****************************************************************************
2002-09-25 19:19:00 +04:00
Set a user ' s primary UNIX group .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int smb_set_primary_group ( const char * unix_group , const char * unix_user )
{
pstring add_script ;
int ret ;
2003-07-09 20:44:47 +04:00
/* defer to scripts */
if ( * lp_setprimarygroup_script ( ) ) {
pstrcpy ( add_script , lp_setprimarygroup_script ( ) ) ;
all_string_sub ( add_script , " %g " , unix_group , sizeof ( add_script ) ) ;
all_string_sub ( add_script , " %u " , unix_user , sizeof ( add_script ) ) ;
ret = smbrun ( add_script , NULL ) ;
DEBUG ( 3 , ( " smb_set_primary_group: "
" Running the command `%s' gave %d \n " , add_script , ret ) ) ;
return ret ;
}
/* Try winbindd */
if ( winbind_set_user_primary_group ( unix_user , unix_group ) ) {
DEBUG ( 3 , ( " smb_delete_group: winbindd set the group (%s) as the primary group for user (%s) \n " ,
unix_group , unix_user ) ) ;
return 0 ;
}
return - 1 ;
2002-09-25 19:19:00 +04:00
}
/****************************************************************************
Add a user to a UNIX group .
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int smb_add_user_group ( char * unix_group , char * unix_user )
{
pstring add_script ;
int ret ;
2003-07-09 20:44:47 +04:00
/* defer to scripts */
if ( * lp_addusertogroup_script ( ) ) {
pstrcpy ( add_script , lp_addusertogroup_script ( ) ) ;
pstring_sub ( add_script , " %g " , unix_group ) ;
pstring_sub ( add_script , " %u " , unix_user ) ;
ret = smbrun ( add_script , NULL ) ;
DEBUG ( 3 , ( " smb_add_user_group: Running the command `%s' gave %d \n " , add_script , ret ) ) ;
return ret ;
}
/* Try winbindd */
if ( winbind_add_user_to_group ( unix_user , unix_group ) ) {
DEBUG ( 3 , ( " smb_delete_group: winbindd added user (%s) to the group (%s) \n " ,
unix_user , unix_group ) ) ;
return - 1 ;
}
return - 1 ;
2001-03-23 03:50:31 +03:00
}
/****************************************************************************
2002-09-25 19:19:00 +04:00
Delete a user from a UNIX group
2001-03-23 03:50:31 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-01-02 10:41:54 +03:00
int smb_delete_user_group ( const char * unix_group , const char * unix_user )
2001-03-23 03:50:31 +03:00
{
pstring del_script ;
int ret ;
2003-07-09 20:44:47 +04:00
/* defer to scripts */
if ( * lp_deluserfromgroup_script ( ) ) {
pstrcpy ( del_script , lp_deluserfromgroup_script ( ) ) ;
pstring_sub ( del_script , " %g " , unix_group ) ;
pstring_sub ( del_script , " %u " , unix_user ) ;
ret = smbrun ( del_script , NULL ) ;
DEBUG ( 3 , ( " smb_delete_user_group: Running the command `%s' gave %d \n " , del_script , ret ) ) ;
return ret ;
}
/* Try winbindd */
if ( winbind_remove_user_from_group ( unix_user , unix_group ) ) {
DEBUG ( 3 , ( " smb_delete_group: winbindd removed user (%s) from the group (%s) \n " ,
unix_user , unix_group ) ) ;
return 0 ;
}
return - 1 ;
2001-03-23 03:50:31 +03:00
}
2003-03-22 12:03:46 +03:00
NTSTATUS pdb_default_getgrsid ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
DOM_SID sid )
2003-03-22 12:03:46 +03:00
{
2003-06-18 19:24:10 +04:00
return get_group_map_from_sid ( sid , map ) ?
2003-03-22 12:03:46 +03:00
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_getgrgid ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
gid_t gid )
2003-03-22 12:03:46 +03:00
{
2003-06-18 19:24:10 +04:00
return get_group_map_from_gid ( gid , map ) ?
2003-03-22 12:03:46 +03:00
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_getgrnam ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
const char * name )
2003-03-22 12:03:46 +03:00
{
2003-06-18 19:24:10 +04:00
return get_group_map_from_ntname ( name , map ) ?
2003-03-22 12:03:46 +03:00
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_add_group_mapping_entry ( struct pdb_methods * methods ,
GROUP_MAP * map )
{
return add_mapping_entry ( map , TDB_INSERT ) ?
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_update_group_mapping_entry ( struct pdb_methods * methods ,
GROUP_MAP * map )
{
return add_mapping_entry ( map , TDB_REPLACE ) ?
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_delete_group_mapping_entry ( struct pdb_methods * methods ,
DOM_SID sid )
{
return group_map_remove ( sid ) ?
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_default_enum_group_mapping ( struct pdb_methods * methods ,
enum SID_NAME_USE sid_name_use ,
GROUP_MAP * * rmap , int * num_entries ,
2003-06-18 19:24:10 +04:00
BOOL unix_only )
2003-03-22 12:03:46 +03:00
{
2003-06-18 19:24:10 +04:00
return enum_group_mapping ( sid_name_use , rmap , num_entries , unix_only ) ?
2003-03-22 12:03:46 +03:00
NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
2003-04-29 09:31:06 +04:00
/**********************************************************************
no ops for passdb backends that don ' t implement group mapping
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS pdb_nop_getgrsid ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
DOM_SID sid )
2003-04-29 09:31:06 +04:00
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_getgrgid ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
gid_t gid )
2003-04-29 09:31:06 +04:00
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_getgrnam ( struct pdb_methods * methods , GROUP_MAP * map ,
2003-06-18 19:24:10 +04:00
const char * name )
2003-04-29 09:31:06 +04:00
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_add_group_mapping_entry ( struct pdb_methods * methods ,
GROUP_MAP * map )
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_update_group_mapping_entry ( struct pdb_methods * methods ,
GROUP_MAP * map )
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_delete_group_mapping_entry ( struct pdb_methods * methods ,
DOM_SID sid )
{
return NT_STATUS_UNSUCCESSFUL ;
}
NTSTATUS pdb_nop_enum_group_mapping ( struct pdb_methods * methods ,
enum SID_NAME_USE sid_name_use ,
GROUP_MAP * * rmap , int * num_entries ,
2003-06-18 19:24:10 +04:00
BOOL unix_only )
2003-04-29 09:31:06 +04:00
{
return NT_STATUS_UNSUCCESSFUL ;
}