2006-12-12 17:52:13 +03:00
/*
Unix SMB / CIFS implementation .
ID Mapping
Copyright ( C ) Simo Sorce 2003
Copyright ( C ) Jeremy Allison 2006
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
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2006-12-12 17:52:13 +03:00
( 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
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.*/
2006-12-12 17:52:13 +03:00
# include "includes.h"
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_IDMAP
/*****************************************************************
Returns the SID mapped to the given UID .
If mapping is not possible returns an error .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-07-13 14:07:40 +04:00
NTSTATUS idmap_uid_to_sid ( const char * domname , DOM_SID * sid , uid_t uid )
2006-12-12 17:52:13 +03:00
{
NTSTATUS ret ;
struct id_map map ;
2008-07-13 14:07:40 +04:00
bool expired ;
2006-12-12 17:52:13 +03:00
DEBUG ( 10 , ( " uid = [%lu] \n " , ( unsigned long ) uid ) ) ;
2008-07-13 14:07:40 +04:00
if ( idmap_cache_find_uid2sid ( uid , sid , & expired ) ) {
DEBUG ( 10 , ( " idmap_cache_find_uid2sid found %d%s \n " , uid ,
expired ? " (expired) " : " " ) ) ;
if ( expired & & idmap_is_online ( ) ) {
DEBUG ( 10 , ( " revalidating expired entry \n " ) ) ;
goto backend ;
}
if ( is_null_sid ( sid ) ) {
DEBUG ( 10 , ( " Returning negative cache entry \n " ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
DEBUG ( 10 , ( " Returning positive cache entry \n " ) ) ;
return NT_STATUS_OK ;
}
backend :
2006-12-12 17:52:13 +03:00
map . sid = sid ;
map . xid . type = ID_TYPE_UID ;
map . xid . id = uid ;
2008-07-13 14:07:40 +04:00
ret = idmap_backends_unixid_to_sid ( domname , & map ) ;
2006-12-12 17:52:13 +03:00
if ( ! NT_STATUS_IS_OK ( ret ) ) {
DEBUG ( 10 , ( " error mapping uid [%lu] \n " , ( unsigned long ) uid ) ) ;
return ret ;
}
2007-01-14 20:58:24 +03:00
if ( map . status ! = ID_MAPPED ) {
2008-07-13 14:07:40 +04:00
struct dom_sid null_sid ;
ZERO_STRUCT ( null_sid ) ;
idmap_cache_set_sid2uid ( & null_sid , uid ) ;
2006-12-12 17:52:13 +03:00
DEBUG ( 10 , ( " uid [%lu] not mapped \n " , ( unsigned long ) uid ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
2008-07-13 14:07:40 +04:00
idmap_cache_set_sid2uid ( sid , uid ) ;
2006-12-12 17:52:13 +03:00
return NT_STATUS_OK ;
}
/*****************************************************************
Returns SID mapped to the given GID .
If mapping is not possible returns an error .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-07-13 14:07:40 +04:00
NTSTATUS idmap_gid_to_sid ( const char * domname , DOM_SID * sid , gid_t gid )
2006-12-12 17:52:13 +03:00
{
NTSTATUS ret ;
struct id_map map ;
2008-07-13 14:07:40 +04:00
bool expired ;
2006-12-12 17:52:13 +03:00
DEBUG ( 10 , ( " gid = [%lu] \n " , ( unsigned long ) gid ) ) ;
2008-07-13 14:07:40 +04:00
if ( idmap_cache_find_uid2sid ( gid , sid , & expired ) ) {
DEBUG ( 10 , ( " idmap_cache_find_gid2sid found %d%s \n " , gid ,
expired ? " (expired) " : " " ) ) ;
if ( expired & & idmap_is_online ( ) ) {
DEBUG ( 10 , ( " revalidating expired entry \n " ) ) ;
goto backend ;
}
if ( is_null_sid ( sid ) ) {
DEBUG ( 10 , ( " Returning negative cache entry \n " ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
DEBUG ( 10 , ( " Returning positive cache entry \n " ) ) ;
return NT_STATUS_OK ;
}
backend :
2006-12-12 17:52:13 +03:00
map . sid = sid ;
map . xid . type = ID_TYPE_GID ;
map . xid . id = gid ;
2008-07-13 14:07:40 +04:00
ret = idmap_backends_unixid_to_sid ( domname , & map ) ;
2006-12-12 17:52:13 +03:00
if ( ! NT_STATUS_IS_OK ( ret ) ) {
DEBUG ( 10 , ( " error mapping gid [%lu] \n " , ( unsigned long ) gid ) ) ;
return ret ;
}
2007-01-14 20:58:24 +03:00
if ( map . status ! = ID_MAPPED ) {
2008-07-13 14:07:40 +04:00
struct dom_sid null_sid ;
ZERO_STRUCT ( null_sid ) ;
idmap_cache_set_sid2uid ( & null_sid , gid ) ;
2006-12-12 17:52:13 +03:00
DEBUG ( 10 , ( " gid [%lu] not mapped \n " , ( unsigned long ) gid ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
2008-07-13 14:07:40 +04:00
idmap_cache_set_sid2uid ( sid , gid ) ;
2006-12-12 17:52:13 +03:00
return NT_STATUS_OK ;
}
/*****************************************************************
Returns the UID mapped to the given SID .
If mapping is not possible or SID maps to a GID returns an error .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-07-13 14:07:40 +04:00
NTSTATUS idmap_sid_to_uid ( const char * dom_name , DOM_SID * sid , uid_t * uid )
2006-12-12 17:52:13 +03:00
{
NTSTATUS ret ;
struct id_map map ;
2008-07-13 14:07:40 +04:00
bool expired ;
2006-12-12 17:52:13 +03:00
2007-12-15 23:11:36 +03:00
DEBUG ( 10 , ( " idmap_sid_to_uid: sid = [%s] \n " , sid_string_dbg ( sid ) ) ) ;
2006-12-12 17:52:13 +03:00
2008-07-13 14:07:40 +04:00
if ( idmap_cache_find_sid2uid ( sid , uid , & expired ) ) {
DEBUG ( 10 , ( " idmap_cache_find_sid2uid found %d%s \n " ,
( int ) ( * uid ) , expired ? " (expired) " : " " ) ) ;
if ( expired & & idmap_is_online ( ) ) {
DEBUG ( 10 , ( " revalidating expired entry \n " ) ) ;
goto backend ;
}
if ( ( * uid ) = = - 1 ) {
DEBUG ( 10 , ( " Returning negative cache entry \n " ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
DEBUG ( 10 , ( " Returning positive cache entry \n " ) ) ;
return NT_STATUS_OK ;
}
backend :
2006-12-12 17:52:13 +03:00
map . sid = sid ;
2008-07-11 19:42:48 +04:00
map . xid . type = ID_TYPE_UID ;
2008-07-14 14:32:18 +04:00
2008-07-13 14:07:40 +04:00
ret = idmap_backends_sid_to_unixid ( dom_name , & map ) ;
if ( NT_STATUS_IS_OK ( ret ) & & ( map . status = = ID_MAPPED ) ) {
if ( map . xid . type ! = ID_TYPE_UID ) {
DEBUG ( 10 , ( " sid [%s] not mapped to a uid "
" [%u,%u,%u] \n " ,
sid_string_dbg ( sid ) ,
map . status ,
map . xid . type ,
map . xid . id ) ) ;
idmap_cache_set_sid2uid ( sid , - 1 ) ;
return NT_STATUS_NONE_MAPPED ;
}
goto done ;
2006-12-12 17:52:13 +03:00
}
2008-07-13 14:07:40 +04:00
ret = idmap_new_mapping ( sid , ID_TYPE_UID , & map . xid ) ;
2006-12-12 17:52:13 +03:00
2008-07-13 14:07:40 +04:00
if ( ! NT_STATUS_IS_OK ( ret ) ) {
DEBUG ( 10 , ( " idmap_new_mapping failed: %s \n " ,
nt_errstr ( ret ) ) ) ;
idmap_cache_set_sid2uid ( sid , - 1 ) ;
return ret ;
}
2006-12-12 17:52:13 +03:00
2008-07-13 14:07:40 +04:00
done :
* uid = ( uid_t ) map . xid . id ;
idmap_cache_set_sid2uid ( sid , * uid ) ;
2006-12-12 17:52:13 +03:00
return NT_STATUS_OK ;
}
/*****************************************************************
Returns the GID mapped to the given SID .
If mapping is not possible or SID maps to a UID returns an error .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-07-13 14:07:40 +04:00
NTSTATUS idmap_sid_to_gid ( const char * domname , DOM_SID * sid , gid_t * gid )
2006-12-12 17:52:13 +03:00
{
NTSTATUS ret ;
struct id_map map ;
2008-07-13 14:07:40 +04:00
bool expired ;
2006-12-12 17:52:13 +03:00
2007-12-15 23:11:36 +03:00
DEBUG ( 10 , ( " idmap_sid_to_gid: sid = [%s] \n " , sid_string_dbg ( sid ) ) ) ;
2006-12-12 17:52:13 +03:00
2008-07-13 14:07:40 +04:00
if ( idmap_cache_find_sid2gid ( sid , gid , & expired ) ) {
DEBUG ( 10 , ( " idmap_cache_find_sid2gid found %d%s \n " ,
( int ) ( * gid ) , expired ? " (expired) " : " " ) ) ;
if ( expired & & idmap_is_online ( ) ) {
DEBUG ( 10 , ( " revalidating expired entry \n " ) ) ;
goto backend ;
}
if ( ( * gid ) = = - 1 ) {
DEBUG ( 10 , ( " Returning negative cache entry \n " ) ) ;
return NT_STATUS_NONE_MAPPED ;
}
DEBUG ( 10 , ( " Returning positive cache entry \n " ) ) ;
return NT_STATUS_OK ;
}
backend :
2006-12-12 17:52:13 +03:00
map . sid = sid ;
2007-04-20 02:26:09 +04:00
map . xid . type = ID_TYPE_GID ;
2008-07-14 14:32:18 +04:00
2008-07-13 14:07:40 +04:00
ret = idmap_backends_sid_to_unixid ( domname , & map ) ;
if ( NT_STATUS_IS_OK ( ret ) & & ( map . status = = ID_MAPPED ) ) {
if ( map . xid . type ! = ID_TYPE_GID ) {
DEBUG ( 10 , ( " sid [%s] not mapped to a gid "
" [%u,%u,%u] \n " ,
sid_string_dbg ( sid ) ,
map . status ,
map . xid . type ,
map . xid . id ) ) ;
idmap_cache_set_sid2gid ( sid , - 1 ) ;
return NT_STATUS_NONE_MAPPED ;
}
goto done ;
2006-12-12 17:52:13 +03:00
}
2008-07-13 14:07:40 +04:00
ret = idmap_new_mapping ( sid , ID_TYPE_GID , & map . xid ) ;
if ( ! NT_STATUS_IS_OK ( ret ) ) {
DEBUG ( 10 , ( " idmap_new_mapping failed: %s \n " ,
nt_errstr ( ret ) ) ) ;
idmap_cache_set_sid2gid ( sid , - 1 ) ;
return ret ;
2006-12-12 17:52:13 +03:00
}
2008-07-13 14:07:40 +04:00
done :
2006-12-12 17:52:13 +03:00
* gid = map . xid . id ;
2008-07-13 14:07:40 +04:00
idmap_cache_set_sid2gid ( sid , * gid ) ;
2006-12-12 17:52:13 +03:00
return NT_STATUS_OK ;
}