2000-05-09 15:43:00 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-05-09 15:43:00 +04:00
Winbind daemon for ntdom nss module
2001-11-23 06:54:07 +03:00
Copyright ( C ) Tim Potter 2000 - 2001
Copyright ( C ) 2001 by Martin Pool < mbp @ samba . org >
2000-05-09 15:43:00 +04:00
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 "winbindd.h"
2002-07-15 14:35:28 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_WINBIND
2000-05-09 15:43:00 +04:00
2001-11-23 06:54:07 +03:00
/**
* @ file winbindd_util . c
*
* Winbind daemon for NT domain authentication nss module .
* */
/**
* Used to clobber name fields that have an undefined value .
*
* Correct code should never look at a field that has this value .
* */
2002-01-11 08:33:45 +03:00
2001-11-23 06:54:07 +03:00
static const fstring name_deadbeef = " <deadbeef> " ;
2002-01-11 08:33:45 +03:00
/* The list of trusted domains. Note that the list can be deleted and
recreated using the init_domain_list ( ) function so pointers to
individual winbindd_domain structures cannot be made . Keep a copy of
the domain name instead . */
2001-11-23 06:54:07 +03:00
2002-01-11 08:33:45 +03:00
static struct winbindd_domain * _domain_list ;
2001-11-21 12:59:15 +03:00
2002-01-11 08:33:45 +03:00
struct winbindd_domain * domain_list ( void )
2001-11-21 12:59:15 +03:00
{
2002-01-11 08:33:45 +03:00
/* Initialise list */
2001-11-21 12:59:15 +03:00
2002-01-11 08:33:45 +03:00
if ( ! _domain_list )
init_domain_list ( ) ;
2001-11-21 12:59:15 +03:00
2002-01-11 08:33:45 +03:00
return _domain_list ;
2001-11-21 12:59:15 +03:00
}
2002-01-11 08:33:45 +03:00
/* Free all entries in the trusted domain list */
2001-11-21 12:59:15 +03:00
2002-01-11 08:33:45 +03:00
void free_domain_list ( void )
2001-11-21 12:59:15 +03:00
{
2002-01-11 08:33:45 +03:00
struct winbindd_domain * domain = _domain_list ;
while ( domain ) {
struct winbindd_domain * next = domain - > next ;
DLIST_REMOVE ( _domain_list , domain ) ;
SAFE_FREE ( domain ) ;
domain = next ;
2001-11-21 12:59:15 +03:00
}
}
2002-10-05 01:42:04 +04:00
2001-05-07 08:32:40 +04:00
/* Add a trusted domain to our list of domains */
2002-08-17 21:00:51 +04:00
static struct winbindd_domain * add_trusted_domain ( const char * domain_name , const char * alt_name ,
struct winbindd_methods * methods ,
DOM_SID * sid )
2000-05-09 15:43:00 +04:00
{
2002-01-10 09:20:03 +03:00
struct winbindd_domain * domain ;
2001-10-11 03:08:13 +04:00
2002-01-11 08:33:45 +03:00
/* We can't call domain_list() as this function is called from
init_domain_list ( ) and we ' ll get stuck in a loop . */
for ( domain = _domain_list ; domain ; domain = domain - > next ) {
2002-09-25 19:19:00 +04:00
if ( strcasecmp ( domain_name , domain - > name ) = = 0 | |
strcasecmp ( domain_name , domain - > alt_name ) = = 0 ) {
2002-01-10 09:20:03 +03:00
return domain ;
2001-11-22 11:31:50 +03:00
}
2002-09-25 19:19:00 +04:00
if ( alt_name & & * alt_name ) {
if ( strcasecmp ( alt_name , domain - > name ) = = 0 | |
strcasecmp ( alt_name , domain - > alt_name ) = = 0 ) {
return domain ;
}
}
2001-11-22 11:31:50 +03:00
}
2001-10-11 03:08:13 +04:00
2001-11-22 11:31:50 +03:00
/* Create new domain entry */
2002-01-10 09:20:03 +03:00
if ( ( domain = ( struct winbindd_domain * )
malloc ( sizeof ( * domain ) ) ) = = NULL )
2001-11-22 11:31:50 +03:00
return NULL ;
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
/* Fill in fields */
2001-10-11 03:08:13 +04:00
2001-11-22 11:31:50 +03:00
ZERO_STRUCTP ( domain ) ;
2002-01-10 09:20:03 +03:00
2002-08-17 21:00:51 +04:00
/* prioritise the short name */
if ( strchr_m ( domain_name , ' . ' ) & & alt_name & & * alt_name ) {
fstrcpy ( domain - > name , alt_name ) ;
fstrcpy ( domain - > alt_name , domain_name ) ;
} else {
2001-11-22 11:31:50 +03:00
fstrcpy ( domain - > name , domain_name ) ;
2002-08-17 21:00:51 +04:00
if ( alt_name ) {
fstrcpy ( domain - > alt_name , alt_name ) ;
}
}
2002-10-05 01:42:04 +04:00
domain - > methods = methods ;
2001-12-10 02:59:42 +03:00
domain - > sequence_number = DOM_SEQUENCE_NONE ;
domain - > last_seq_check = 0 ;
2002-08-17 21:00:51 +04:00
if ( sid ) {
sid_copy ( & domain - > sid , sid ) ;
}
2002-10-05 01:42:04 +04:00
/* see if this is a native mode win2k domain, but only for our own domain */
if ( strequal ( lp_workgroup ( ) , domain_name ) ) {
domain - > native_mode = cm_check_for_native_mode_win2k ( domain_name ) ;
2002-10-08 22:32:42 +04:00
DEBUG ( 3 , ( " add_trusted_domain: %s is a %s mode domain \n " , domain_name ,
2002-10-05 01:42:04 +04:00
domain - > native_mode ? " native " : " mixed " ) ) ;
}
2001-12-01 15:31:43 +03:00
2001-11-22 11:31:50 +03:00
/* Link to domain list */
2002-01-11 08:33:45 +03:00
DLIST_ADD ( _domain_list , domain ) ;
2001-10-11 03:08:13 +04:00
2002-08-17 21:00:51 +04:00
DEBUG ( 1 , ( " Added domain %s %s %s \n " ,
domain - > name , domain - > alt_name ,
sid ? sid_string_static ( & domain - > sid ) : " " ) ) ;
2001-11-22 11:31:50 +03:00
return domain ;
2000-05-09 15:43:00 +04:00
}
2001-05-07 08:32:40 +04:00
2002-08-17 21:00:51 +04:00
/*
rescan our domains looking for new trusted domains
*/
2003-02-14 03:31:30 +03:00
void rescan_trusted_domains ( BOOL force )
2002-08-17 21:00:51 +04:00
{
struct winbindd_domain * domain ;
TALLOC_CTX * mem_ctx ;
static time_t last_scan ;
time_t t = time ( NULL ) ;
2002-11-06 03:10:04 +03:00
/* trusted domains might be disabled */
if ( ! lp_allow_trusted_domains ( ) ) {
return ;
}
2003-02-14 03:31:30 +03:00
/* Only rescan every few minutes but force if necessary */
if ( ( ( unsigned ) ( t - last_scan ) < WINBINDD_RESCAN_FREQ ) & & ! force )
2002-08-17 21:00:51 +04:00
return ;
2003-02-14 03:31:30 +03:00
2002-11-06 03:10:04 +03:00
last_scan = t ;
2002-08-17 21:00:51 +04:00
DEBUG ( 1 , ( " scanning trusted domain list \n " ) ) ;
2002-12-20 23:21:31 +03:00
if ( ! ( mem_ctx = talloc_init ( " init_domain_list " ) ) )
2002-08-17 21:00:51 +04:00
return ;
for ( domain = _domain_list ; domain ; domain = domain - > next ) {
NTSTATUS result ;
char * * names ;
char * * alt_names ;
int num_domains = 0 ;
DOM_SID * dom_sids ;
int i ;
result = domain - > methods - > trusted_domains ( domain , mem_ctx , & num_domains ,
& names , & alt_names , & dom_sids ) ;
if ( ! NT_STATUS_IS_OK ( result ) ) {
continue ;
}
/* Add each domain to the trusted domain list. Each domain inherits
the access methods of its parent */
for ( i = 0 ; i < num_domains ; i + + ) {
DEBUG ( 10 , ( " Found domain %s \n " , names [ i ] ) ) ;
add_trusted_domain ( names [ i ] ,
alt_names ? alt_names [ i ] : NULL ,
domain - > methods , & dom_sids [ i ] ) ;
}
}
talloc_destroy ( mem_ctx ) ;
}
/* Look up global info for the winbind daemon */
2002-01-11 08:33:45 +03:00
BOOL init_domain_list ( void )
2000-05-09 15:43:00 +04:00
{
2001-12-10 02:59:42 +03:00
extern struct winbindd_methods cache_methods ;
2001-12-10 05:25:19 +03:00
struct winbindd_domain * domain ;
2001-10-12 12:28:08 +04:00
2002-01-11 08:33:45 +03:00
/* Free existing list */
free_domain_list ( ) ;
/* Add ourselves as the first entry */
2002-08-17 21:00:51 +04:00
domain = add_trusted_domain ( lp_workgroup ( ) , NULL , & cache_methods , NULL ) ;
2003-01-16 02:32:47 +03:00
if ( ! secrets_fetch_domain_sid ( domain - > name , & domain - > sid ) ) {
DEBUG ( 1 , ( " Could not fetch sid for our domain %s \n " ,
domain - > name ) ) ;
return False ;
2001-12-10 05:25:19 +03:00
}
2003-01-16 02:32:47 +03:00
2002-08-17 21:00:51 +04:00
/* get any alternate name for the primary domain */
cache_methods . alternate_name ( domain ) ;
2001-10-08 04:34:14 +04:00
2002-08-17 21:00:51 +04:00
/* do an initial scan for trusted domains */
2003-02-14 03:31:30 +03:00
rescan_trusted_domains ( True ) ;
2001-10-12 12:28:08 +04:00
2001-12-10 05:25:19 +03:00
return True ;
2000-05-09 15:43:00 +04:00
}
2002-01-11 08:33:45 +03:00
/* Given a domain name, return the struct winbindd domain info for it
if it is actually working . */
2002-02-28 02:51:25 +03:00
struct winbindd_domain * find_domain_from_name ( const char * domain_name )
2002-01-11 08:33:45 +03:00
{
struct winbindd_domain * domain ;
/* Search through list */
for ( domain = domain_list ( ) ; domain ! = NULL ; domain = domain - > next ) {
if ( strequal ( domain_name , domain - > name ) | |
2002-08-17 21:00:51 +04:00
( domain - > alt_name [ 0 ] & & strequal ( domain_name , domain - > alt_name ) ) )
2002-01-11 08:33:45 +03:00
return domain ;
}
/* Not found */
return NULL ;
}
/* Given a domain sid, return the struct winbindd domain info for it */
struct winbindd_domain * find_domain_from_sid ( DOM_SID * sid )
{
struct winbindd_domain * domain ;
/* Search through list */
for ( domain = domain_list ( ) ; domain ! = NULL ; domain = domain - > next ) {
if ( sid_compare_domain ( sid , & domain - > sid ) = = 0 )
return domain ;
}
/* Not found */
return NULL ;
}
2000-05-09 15:43:00 +04:00
2001-12-10 05:25:19 +03:00
/* Lookup a sid in a domain from a name */
2002-01-11 08:33:45 +03:00
2001-12-03 11:17:46 +03:00
BOOL winbindd_lookup_sid_by_name ( struct winbindd_domain * domain ,
2002-01-11 08:33:45 +03:00
const char * name , DOM_SID * sid ,
enum SID_NAME_USE * type )
2000-05-09 15:43:00 +04:00
{
2001-11-21 12:59:15 +03:00
NTSTATUS result ;
2001-10-05 04:20:06 +04:00
2001-11-21 12:59:15 +03:00
/* Don't bother with machine accounts */
2001-10-05 04:20:06 +04:00
2001-11-21 12:59:15 +03:00
if ( name [ strlen ( name ) - 1 ] = = ' $ ' )
return False ;
2001-10-12 12:28:08 +04:00
2001-11-21 12:59:15 +03:00
/* Lookup name */
2001-12-03 11:17:46 +03:00
result = domain - > methods - > name_to_sid ( domain , name , sid , type ) ;
2001-10-05 04:20:06 +04:00
2001-11-21 12:59:15 +03:00
/* Return rid and type if lookup successful */
2001-12-10 02:59:42 +03:00
if ( ! NT_STATUS_IS_OK ( result ) ) {
2001-11-23 12:04:09 +03:00
* type = SID_NAME_UNKNOWN ;
2001-11-21 12:59:15 +03:00
}
2001-10-12 12:28:08 +04:00
2001-12-03 11:17:46 +03:00
return NT_STATUS_IS_OK ( result ) ;
2001-11-21 12:59:15 +03:00
}
2001-11-23 06:54:07 +03:00
/**
* @ brief Lookup a name in a domain from a sid .
*
* @ param sid Security ID you want to look up .
*
* @ param name On success , set to the name corresponding to @ p sid .
*
2002-01-20 04:24:59 +03:00
* @ param dom_name On success , set to the ' domain name ' corresponding to @ p sid .
*
2001-11-23 06:54:07 +03:00
* @ param type On success , contains the type of name : alias , group or
* user .
*
* @ retval True if the name exists , in which case @ p name and @ p type
* are set , otherwise False .
* */
BOOL winbindd_lookup_name_by_sid ( DOM_SID * sid ,
2002-01-20 04:24:59 +03:00
fstring dom_name ,
2001-11-23 06:54:07 +03:00
fstring name ,
enum SID_NAME_USE * type )
2000-05-09 15:43:00 +04:00
{
2001-12-03 14:11:14 +03:00
char * names ;
2001-11-21 12:59:15 +03:00
NTSTATUS result ;
TALLOC_CTX * mem_ctx ;
BOOL rv = False ;
2001-12-03 11:17:46 +03:00
struct winbindd_domain * domain ;
2001-10-12 12:28:08 +04:00
2001-12-03 11:17:46 +03:00
domain = find_domain_from_sid ( sid ) ;
2002-01-10 09:20:03 +03:00
2001-12-03 11:17:46 +03:00
if ( ! domain ) {
DEBUG ( 1 , ( " Can't find domain from sid \n " ) ) ;
return False ;
}
2001-11-21 12:59:15 +03:00
/* Lookup name */
2002-12-20 23:21:31 +03:00
if ( ! ( mem_ctx = talloc_init ( " winbindd_lookup_name_by_sid " ) ) )
2001-11-21 12:59:15 +03:00
return False ;
2001-10-05 04:20:06 +04:00
2001-12-03 14:11:14 +03:00
result = domain - > methods - > sid_to_name ( domain , mem_ctx , sid , & names , type ) ;
2000-05-09 15:43:00 +04:00
2001-11-21 12:59:15 +03:00
/* Return name and type if successful */
2001-10-05 04:20:06 +04:00
2001-11-23 06:54:07 +03:00
if ( ( rv = NT_STATUS_IS_OK ( result ) ) ) {
2002-01-20 04:24:59 +03:00
fstrcpy ( dom_name , domain - > name ) ;
2001-12-03 14:11:14 +03:00
fstrcpy ( name , names ) ;
2001-11-22 10:48:57 +03:00
} else {
2001-11-23 06:54:07 +03:00
* type = SID_NAME_UNKNOWN ;
fstrcpy ( name , name_deadbeef ) ;
2001-11-21 12:59:15 +03:00
}
2001-10-05 04:20:06 +04:00
2001-11-21 12:59:15 +03:00
talloc_destroy ( mem_ctx ) ;
return rv ;
2000-05-09 15:43:00 +04:00
}
2001-10-05 04:20:06 +04:00
2000-05-09 15:43:00 +04:00
/* Free state information held for {set,get,end}{pw,gr}ent() functions */
void free_getent_state ( struct getent_state * state )
{
2001-11-22 11:31:50 +03:00
struct getent_state * temp ;
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
/* Iterate over state list */
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
temp = state ;
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
while ( temp ! = NULL ) {
struct getent_state * next ;
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
/* Free sam entries then list entry */
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
SAFE_FREE ( state - > sam_entries ) ;
DLIST_REMOVE ( state , state ) ;
next = temp - > next ;
2000-05-09 15:43:00 +04:00
2001-11-22 11:31:50 +03:00
SAFE_FREE ( temp ) ;
temp = next ;
}
2000-05-09 15:43:00 +04:00
}
2002-11-07 10:17:09 +03:00
/* Parse winbindd related parameters */
2000-05-09 15:43:00 +04:00
BOOL winbindd_param_init ( void )
{
2002-01-11 08:33:45 +03:00
/* Parse winbind uid and winbind_gid parameters */
if ( ! lp_winbind_uid ( & server_state . uid_low , & server_state . uid_high ) ) {
DEBUG ( 0 , ( " winbind uid range missing or invalid \n " ) ) ;
return False ;
}
if ( ! lp_winbind_gid ( & server_state . gid_low , & server_state . gid_high ) ) {
DEBUG ( 0 , ( " winbind gid range missing or invalid \n " ) ) ;
return False ;
}
return True ;
2000-05-09 15:43:00 +04:00
}
2001-05-07 08:32:40 +04:00
/* Check if a domain is present in a comma-separated list of domains */
BOOL check_domain_env ( char * domain_env , char * domain )
{
fstring name ;
2002-11-13 02:20:50 +03:00
const char * tmp = domain_env ;
2001-05-07 08:32:40 +04:00
while ( next_token ( & tmp , name , " , " , sizeof ( fstring ) ) ) {
2001-10-14 12:31:54 +04:00
if ( strequal ( name , domain ) )
2001-05-07 08:32:40 +04:00
return True ;
}
return False ;
}
/* Parse a string of the form DOMAIN/user into a domain and a user */
2001-12-05 07:17:39 +03:00
BOOL parse_domain_user ( const char * domuser , fstring domain , fstring user )
2001-05-07 08:32:40 +04:00
{
2001-12-05 07:17:39 +03:00
char * p = strchr ( domuser , * lp_winbind_separator ( ) ) ;
2001-10-14 12:31:54 +04:00
2002-01-18 05:37:55 +03:00
if ( ! ( p | | lp_winbind_use_default_domain ( ) ) )
2001-12-05 07:17:39 +03:00
return False ;
2001-05-07 08:32:40 +04:00
2002-01-18 05:37:55 +03:00
if ( ! p & & lp_winbind_use_default_domain ( ) ) {
fstrcpy ( user , domuser ) ;
2002-11-13 02:20:50 +03:00
fstrcpy ( domain , lp_workgroup ( ) ) ;
2002-01-18 05:37:55 +03:00
} else {
fstrcpy ( user , p + 1 ) ;
fstrcpy ( domain , domuser ) ;
domain [ PTR_DIFF ( p , domuser ) ] = 0 ;
}
2001-05-07 08:32:40 +04:00
strupper ( domain ) ;
2001-12-05 07:17:39 +03:00
return True ;
2001-05-07 08:32:40 +04:00
}
2002-01-18 05:37:55 +03:00
/*
Fill DOMAIN \ \ USERNAME entry accounting ' winbind use default domain ' and
' winbind separator ' options .
This means :
- omit DOMAIN when ' winbind use default domain = true ' and DOMAIN is
2002-11-13 02:20:50 +03:00
lp_workgroup
2002-01-18 05:37:55 +03:00
*/
void fill_domain_username ( fstring name , const char * domain , const char * user )
{
if ( lp_winbind_use_default_domain ( ) & &
2002-11-13 02:20:50 +03:00
! strcmp ( lp_workgroup ( ) , domain ) ) {
2002-01-18 05:37:55 +03:00
strlcpy ( name , user , sizeof ( fstring ) ) ;
} else {
slprintf ( name , sizeof ( fstring ) - 1 , " %s%s%s " ,
domain , lp_winbind_separator ( ) ,
user ) ;
}
}
2002-11-02 04:36:42 +03:00
/*
* Winbindd socket accessor functions
*/
/* Open the winbindd socket */
static int _winbindd_socket = - 1 ;
int open_winbindd_socket ( void )
{
if ( _winbindd_socket = = - 1 ) {
_winbindd_socket = create_pipe_sock (
WINBINDD_SOCKET_DIR , WINBINDD_SOCKET_NAME , 0755 ) ;
DEBUG ( 10 , ( " open_winbindd_socket: opened socket fd %d \n " ,
_winbindd_socket ) ) ;
}
return _winbindd_socket ;
}
/* Close the winbindd socket */
void close_winbindd_socket ( void )
{
if ( _winbindd_socket ! = - 1 ) {
DEBUG ( 10 , ( " close_winbindd_socket: closing socket fd %d \n " ,
_winbindd_socket ) ) ;
close ( _winbindd_socket ) ;
_winbindd_socket = - 1 ;
}
}
/*
* Client list accessor functions
*/
static struct winbindd_cli_state * _client_list ;
static int _num_clients ;
/* Return list of all connected clients */
struct winbindd_cli_state * winbindd_client_list ( void )
{
return _client_list ;
}
/* Add a connection to the list */
void winbindd_add_client ( struct winbindd_cli_state * cli )
{
DLIST_ADD ( _client_list , cli ) ;
_num_clients + + ;
}
/* Remove a client from the list */
void winbindd_remove_client ( struct winbindd_cli_state * cli )
{
DLIST_REMOVE ( _client_list , cli ) ;
_num_clients - - ;
}
/* Close all open clients */
void winbindd_kill_all_clients ( void )
{
struct winbindd_cli_state * cl = winbindd_client_list ( ) ;
DEBUG ( 10 , ( " winbindd_kill_all_clients: going postal \n " ) ) ;
while ( cl ) {
struct winbindd_cli_state * next ;
next = cl - > next ;
winbindd_remove_client ( cl ) ;
cl = next ;
}
}
/* Return number of open clients */
int winbindd_num_clients ( void )
{
return _num_clients ;
}