r21585: Start syncing the monster that will become 3.0.25pre1
[Samba.git] / source / nsswitch / winbindd.h
blobb9e07a2321b87c60032a5c9092f4b0a74331d1ea
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public
11 License as published by the Free Software Foundation; either
12 version 2 of the License, or (at your option) any later version.
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Library General Public License for more details.
19 You should have received a copy of the GNU Library General Public
20 License along with this library; if not, write to the
21 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
25 #ifndef _WINBINDD_H
26 #define _WINBINDD_H
28 #include "nterr.h"
30 #include "winbindd_nss.h"
32 #ifdef HAVE_LIBNSCD
33 #include "libnscd.h"
34 #endif
36 #ifdef HAVE_SYS_MMAN_H
37 #include <sys/mman.h>
38 #endif
40 #undef DBGC_CLASS
41 #define DBGC_CLASS DBGC_WINBIND
43 /* bits for fd_event.flags */
44 #define EVENT_FD_READ 1
45 #define EVENT_FD_WRITE 2
47 struct fd_event {
48 struct fd_event *next, *prev;
49 int fd;
50 int flags; /* see EVENT_FD_* flags */
51 void (*handler)(struct fd_event *fde, int flags);
52 void *data;
53 size_t length, done;
54 void (*finished)(void *private_data, BOOL success);
55 void *private_data;
58 struct sid_ctr {
59 DOM_SID *sid;
60 BOOL finished;
61 const char *domain;
62 const char *name;
63 enum lsa_SidType type;
66 struct winbindd_cli_state {
67 struct winbindd_cli_state *prev, *next; /* Linked list pointers */
68 int sock; /* Open socket from client */
69 struct fd_event fd_event;
70 pid_t pid; /* pid of client */
71 BOOL finished; /* Can delete from list */
72 BOOL write_extra_data; /* Write extra_data field */
73 time_t last_access; /* Time of last access (read or write) */
74 BOOL privileged; /* Is the client 'privileged' */
76 TALLOC_CTX *mem_ctx; /* memory per request */
77 struct winbindd_request request; /* Request from client */
78 struct winbindd_response response; /* Respose to client */
79 BOOL getpwent_initialized; /* Has getpwent_state been
80 * initialized? */
81 BOOL getgrent_initialized; /* Has getgrent_state been
82 * initialized? */
83 struct getent_state *getpwent_state; /* State for getpwent() */
84 struct getent_state *getgrent_state; /* State for getgrent() */
87 /* State between get{pw,gr}ent() calls */
89 struct getent_state {
90 struct getent_state *prev, *next;
91 void *sam_entries;
92 uint32 sam_entry_index, num_sam_entries;
93 BOOL got_sam_entries;
94 fstring domain_name;
97 /* Storage for cached getpwent() user entries */
99 struct getpwent_user {
100 fstring name; /* Account name */
101 fstring gecos; /* User information */
102 fstring homedir; /* User Home Directory */
103 fstring shell; /* User Login Shell */
104 DOM_SID user_sid; /* NT user and primary group SIDs */
105 DOM_SID group_sid;
108 /* Server state structure */
110 typedef struct {
111 char *acct_name;
112 char *full_name;
113 char *homedir;
114 char *shell;
115 gid_t primary_gid; /* allow the nss_info
116 backend to set the primary group */
117 DOM_SID user_sid; /* NT user and primary group SIDs */
118 DOM_SID group_sid;
119 } WINBIND_USERINFO;
121 /* Our connection to the DC */
123 struct winbindd_cm_conn {
124 struct cli_state *cli;
126 struct rpc_pipe_client *samr_pipe;
127 POLICY_HND sam_connect_handle, sam_domain_handle;
129 struct rpc_pipe_client *lsa_pipe;
130 POLICY_HND lsa_policy;
132 struct rpc_pipe_client *netlogon_pipe;
135 struct winbindd_async_request;
137 /* Async child */
139 struct winbindd_child {
140 struct winbindd_child *next, *prev;
142 pid_t pid;
143 struct winbindd_domain *domain;
144 pstring logfilename;
146 struct fd_event event;
147 struct timed_event *lockout_policy_event;
148 struct winbindd_async_request *requests;
151 /* Structures to hold per domain information */
153 struct winbindd_domain {
154 fstring name; /* Domain name */
155 fstring alt_name; /* alt Domain name (if any) */
156 fstring forest_name; /* Name of the AD forest we're in */
157 DOM_SID sid; /* SID for this domain */
158 BOOL initialized; /* Did we already ask for the domain mode? */
159 BOOL native_mode; /* is this a win2k domain in native mode ? */
160 BOOL active_directory; /* is this a win2k active directory ? */
161 BOOL primary; /* is this our primary domain ? */
162 BOOL internal; /* BUILTIN and member SAM */
163 BOOL online; /* is this domain available ? */
164 time_t startup_time; /* When we set "startup" true. */
165 BOOL startup; /* are we in the first 30 seconds after startup_time ? */
167 /* Lookup methods for this domain (LDAP or RPC) */
168 struct winbindd_methods *methods;
170 /* the backend methods are used by the cache layer to find the right
171 backend */
172 struct winbindd_methods *backend;
174 /* Private data for the backends (used for connection cache) */
176 void *private_data;
178 /* A working DC */
179 fstring dcname;
180 struct sockaddr_in dcaddr;
182 /* Sequence number stuff */
184 time_t last_seq_check;
185 uint32 sequence_number;
186 NTSTATUS last_status;
188 /* The smb connection */
190 struct winbindd_cm_conn conn;
192 /* The child pid we're talking to */
194 struct winbindd_child child;
196 /* Callback we use to try put us back online. */
198 uint32 check_online_timeout;
199 struct timed_event *check_online_event;
201 /* Linked list info */
203 struct winbindd_domain *prev, *next;
206 /* per-domain methods. This is how LDAP vs RPC is selected
208 struct winbindd_methods {
209 /* does this backend provide a consistent view of the data? (ie. is the primary group
210 always correct) */
211 BOOL consistent;
213 /* get a list of users, returning a WINBIND_USERINFO for each one */
214 NTSTATUS (*query_user_list)(struct winbindd_domain *domain,
215 TALLOC_CTX *mem_ctx,
216 uint32 *num_entries,
217 WINBIND_USERINFO **info);
219 /* get a list of domain groups */
220 NTSTATUS (*enum_dom_groups)(struct winbindd_domain *domain,
221 TALLOC_CTX *mem_ctx,
222 uint32 *num_entries,
223 struct acct_info **info);
225 /* get a list of domain local groups */
226 NTSTATUS (*enum_local_groups)(struct winbindd_domain *domain,
227 TALLOC_CTX *mem_ctx,
228 uint32 *num_entries,
229 struct acct_info **info);
231 /* convert one user or group name to a sid */
232 NTSTATUS (*name_to_sid)(struct winbindd_domain *domain,
233 TALLOC_CTX *mem_ctx,
234 const char *domain_name,
235 const char *name,
236 DOM_SID *sid,
237 enum lsa_SidType *type);
239 /* convert a sid to a user or group name */
240 NTSTATUS (*sid_to_name)(struct winbindd_domain *domain,
241 TALLOC_CTX *mem_ctx,
242 const DOM_SID *sid,
243 char **domain_name,
244 char **name,
245 enum lsa_SidType *type);
247 NTSTATUS (*rids_to_names)(struct winbindd_domain *domain,
248 TALLOC_CTX *mem_ctx,
249 const DOM_SID *domain_sid,
250 uint32 *rids,
251 size_t num_rids,
252 char **domain_name,
253 char ***names,
254 enum lsa_SidType **types);
256 /* lookup user info for a given SID */
257 NTSTATUS (*query_user)(struct winbindd_domain *domain,
258 TALLOC_CTX *mem_ctx,
259 const DOM_SID *user_sid,
260 WINBIND_USERINFO *user_info);
262 /* lookup all groups that a user is a member of. The backend
263 can also choose to lookup by username or rid for this
264 function */
265 NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
266 TALLOC_CTX *mem_ctx,
267 const DOM_SID *user_sid,
268 uint32 *num_groups, DOM_SID **user_gids);
270 /* Lookup all aliases that the sids delivered are member of. This is
271 * to implement 'domain local groups' correctly */
272 NTSTATUS (*lookup_useraliases)(struct winbindd_domain *domain,
273 TALLOC_CTX *mem_ctx,
274 uint32 num_sids,
275 const DOM_SID *sids,
276 uint32 *num_aliases,
277 uint32 **alias_rids);
279 /* find all members of the group with the specified group_rid */
280 NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
281 TALLOC_CTX *mem_ctx,
282 const DOM_SID *group_sid,
283 uint32 *num_names,
284 DOM_SID **sid_mem, char ***names,
285 uint32 **name_types);
287 /* return the current global sequence number */
288 NTSTATUS (*sequence_number)(struct winbindd_domain *domain, uint32 *seq);
290 /* return the lockout policy */
291 NTSTATUS (*lockout_policy)(struct winbindd_domain *domain,
292 TALLOC_CTX *mem_ctx,
293 SAM_UNK_INFO_12 *lockout_policy);
295 /* return the lockout policy */
296 NTSTATUS (*password_policy)(struct winbindd_domain *domain,
297 TALLOC_CTX *mem_ctx,
298 SAM_UNK_INFO_1 *password_policy);
300 /* enumerate trusted domains */
301 NTSTATUS (*trusted_domains)(struct winbindd_domain *domain,
302 TALLOC_CTX *mem_ctx,
303 uint32 *num_domains,
304 char ***names,
305 char ***alt_names,
306 DOM_SID **dom_sids);
309 /* Used to glue a policy handle and cli_state together */
311 typedef struct {
312 struct cli_state *cli;
313 POLICY_HND pol;
314 } CLI_POLICY_HND;
316 /* Filled out by IDMAP backends */
317 struct winbindd_idmap_methods {
318 /* Called when backend is first loaded */
319 BOOL (*init)(void);
321 BOOL (*get_sid_from_uid)(uid_t uid, DOM_SID *sid);
322 BOOL (*get_sid_from_gid)(gid_t gid, DOM_SID *sid);
324 BOOL (*get_uid_from_sid)(DOM_SID *sid, uid_t *uid);
325 BOOL (*get_gid_from_sid)(DOM_SID *sid, gid_t *gid);
327 /* Called when backend is unloaded */
328 BOOL (*close)(void);
329 /* Called to dump backend status */
330 void (*status)(void);
333 #include "nsswitch/winbindd_proto.h"
335 #define WINBINDD_ESTABLISH_LOOP 30
336 #define WINBINDD_RESCAN_FREQ 300
337 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
338 #define DOM_SEQUENCE_NONE ((uint32)-1)
340 #endif /* _WINBINDD_H */