2000-05-09 11:43:00 +00:00
/*
2002-01-30 06:08:46 +00:00
Unix SMB / CIFS implementation .
2000-05-09 11:43:00 +00:00
Winbind daemon for ntdom nss module
Copyright ( C ) Tim Potter 2000
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation ; either
version 2 of the License , or ( at your option ) any later version .
This library 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
Library General Public License for more details .
You should have received a copy of the GNU Library General Public
License along with this library ; if not , write to the
Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
Boston , MA 02111 - 1307 , USA .
*/
# ifndef _WINBINDD_H
# define _WINBINDD_H
# include "includes.h"
# include "nterr.h"
2000-05-10 14:17:21 +00:00
# include "winbindd_nss.h"
2000-05-09 11:43:00 +00:00
/* Client state structure */
struct winbindd_cli_state {
struct winbindd_cli_state * prev , * next ; /* Linked list pointers */
int sock ; /* Open socket from client */
pid_t pid ; /* pid of client */
int read_buf_len , write_buf_len ; /* Indexes in request/response */
BOOL finished ; /* Can delete from list */
BOOL write_extra_data ; /* Write extra_data field */
struct winbindd_request request ; /* Request from client */
struct winbindd_response response ; /* Respose to client */
struct getent_state * getpwent_state ; /* State for getpwent() */
struct getent_state * getgrent_state ; /* State for getgrent() */
} ;
2001-05-07 04:32:40 +00:00
/* State between get{pw,gr}ent() calls */
2000-05-09 11:43:00 +00:00
struct getent_state {
2001-05-07 04:32:40 +00:00
struct getent_state * prev , * next ;
void * sam_entries ;
uint32 sam_entry_index , num_sam_entries ;
2001-12-11 01:04:13 +00:00
BOOL got_sam_entries ;
2002-01-11 05:33:45 +00:00
fstring domain_name ;
2001-05-07 04:32:40 +00:00
} ;
/* Storage for cached getpwent() user entries */
struct getpwent_user {
fstring name ; /* Account name */
fstring gecos ; /* User information */
uint32 user_rid , group_rid ; /* NT user and group rids */
2000-05-09 11:43:00 +00:00
} ;
/* Server state structure */
struct winbindd_state {
2001-10-05 00:20:06 +00:00
2000-05-09 11:43:00 +00:00
/* User and group id pool */
2001-10-05 00:20:06 +00:00
2000-05-09 11:43:00 +00:00
uid_t uid_low , uid_high ; /* Range of uids to allocate */
gid_t gid_low , gid_high ; /* Range of gids to allocate */
} ;
extern struct winbindd_state server_state ; /* Server information */
2001-12-01 12:31:43 +00:00
typedef struct {
char * acct_name ;
char * full_name ;
uint32 user_rid ;
uint32 group_rid ; /* primary group */
2001-12-03 11:32:55 +00:00
} WINBIND_USERINFO ;
2001-12-01 12:31:43 +00:00
2002-01-11 05:33:45 +00:00
/* Structures to hold per domain information */
struct winbindd_domain {
fstring name ; /* Domain name */
fstring full_name ; /* full Domain name (realm) */
DOM_SID sid ; /* SID for this domain */
/* Lookup methods for this domain (LDAP or RPC) */
struct winbindd_methods * methods ;
/* Private data for the backends (used for connection cache) */
void * private ;
/* Sequence number stuff */
time_t last_seq_check ;
uint32 sequence_number ;
/* Linked list info */
struct winbindd_domain * prev , * next ;
} ;
2001-12-01 12:31:43 +00:00
/* per-domain methods. This is how LDAP vs RPC is selected
*/
struct winbindd_methods {
2001-12-10 06:05:21 +00:00
/* does this backend provide a consistent view of the data? (ie. is the primary group
always correct ) */
BOOL consistent ;
2001-12-05 04:48:51 +00:00
/* get a list of users, returning a WINBIND_USERINFO for each one */
2001-12-03 11:32:55 +00:00
NTSTATUS ( * query_user_list ) ( struct winbindd_domain * domain ,
2001-12-01 12:31:43 +00:00
TALLOC_CTX * mem_ctx ,
2001-12-11 00:03:58 +00:00
uint32 * num_entries ,
2001-12-03 11:32:55 +00:00
WINBIND_USERINFO * * info ) ;
2001-12-01 12:31:43 +00:00
2001-12-05 04:48:51 +00:00
/* get a list of groups */
2001-12-03 01:23:42 +00:00
NTSTATUS ( * enum_dom_groups ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
2001-12-11 01:04:13 +00:00
uint32 * num_entries ,
2001-12-03 01:23:42 +00:00
struct acct_info * * info ) ;
2001-12-03 08:17:46 +00:00
2001-12-05 04:48:51 +00:00
/* convert one user or group name to a sid */
2001-12-03 08:17:46 +00:00
NTSTATUS ( * name_to_sid ) ( struct winbindd_domain * domain ,
const char * name ,
DOM_SID * sid ,
enum SID_NAME_USE * type ) ;
2001-12-03 11:11:14 +00:00
2001-12-05 04:48:51 +00:00
/* convert a sid to a user or group name */
2001-12-03 11:11:14 +00:00
NTSTATUS ( * sid_to_name ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
DOM_SID * sid ,
char * * name ,
enum SID_NAME_USE * type ) ;
2001-12-04 06:17:39 +00:00
2001-12-05 04:48:51 +00:00
/* lookup user info for a given rid */
2001-12-04 06:17:39 +00:00
NTSTATUS ( * query_user ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
2001-12-05 04:48:51 +00:00
uint32 user_rid ,
2001-12-04 06:17:39 +00:00
WINBIND_USERINFO * user_info ) ;
2001-12-04 06:46:53 +00:00
2001-12-05 04:48:51 +00:00
/* lookup all groups that a user is a member of. The backend
can also choose to lookup by username or rid for this
function */
2001-12-04 06:46:53 +00:00
NTSTATUS ( * lookup_usergroups ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
2001-12-05 04:48:51 +00:00
uint32 user_rid ,
2001-12-04 12:10:05 +00:00
uint32 * num_groups , uint32 * * user_gids ) ;
2001-12-05 04:48:51 +00:00
/* find all members of the group with the specified group_rid */
NTSTATUS ( * lookup_groupmem ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
uint32 group_rid , uint32 * num_names ,
uint32 * * rid_mem , char * * * names ,
uint32 * * name_types ) ;
2001-12-05 07:52:44 +00:00
/* return the current global sequence number */
2001-12-09 23:59:42 +00:00
NTSTATUS ( * sequence_number ) ( struct winbindd_domain * domain , uint32 * seq ) ;
2001-12-10 02:25:19 +00:00
/* enumerate trusted domains */
NTSTATUS ( * trusted_domains ) ( struct winbindd_domain * domain ,
TALLOC_CTX * mem_ctx ,
uint32 * num_domains ,
char * * * names ,
DOM_SID * * dom_sids ) ;
/* find the domain sid */
NTSTATUS ( * domain_sid ) ( struct winbindd_domain * domain ,
DOM_SID * sid ) ;
2001-12-01 12:31:43 +00:00
} ;
2001-10-05 00:20:06 +00:00
/* Used to glue a policy handle and cli_state together */
typedef struct {
struct cli_state * cli ;
POLICY_HND pol ;
} CLI_POLICY_HND ;
2000-05-09 11:43:00 +00:00
# include "winbindd_proto.h"
# include "rpc_parse.h"
2001-05-07 04:32:40 +00:00
# include "rpc_client.h"
2000-05-09 11:43:00 +00:00
# define WINBINDD_ESTABLISH_LOOP 30
# define DOM_SEQUENCE_NONE ((uint32)-1)
2001-05-07 04:32:40 +00:00
/* SETENV */
# if HAVE_SETENV
# define SETENV(name, value, overwrite) setenv(name,value,overwrite)
# elif HAVE_PUTENV
# define SETENV(name, value, overwrite) \
{ \
fstring envvar ; \
slprintf ( envvar , sizeof ( fstring ) , " %s=%s " , name , value ) ; \
putenv ( envvar ) ; \
}
# else
# define SETENV(name, value, overwrite) ;
# endif
2001-12-11 05:19:15 +00:00
/* Authenticated user info is stored in secrets.tdb under these keys */
# define SECRETS_AUTH_USER "SECRETS / AUTH_USER"
# define SECRETS_AUTH_PASSWORD "SECRETS / AUTH_PASSWORD"
2000-05-09 11:43:00 +00:00
# endif /* _WINBINDD_H */