s3:winbind: Add async next_pwent
[samba.git] / source3 / winbindd / winbindd.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind daemon for ntdom nss module
5
6    Copyright (C) Tim Potter 2000
7    Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
8
9    This library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Lesser General Public
11    License as published by the Free Software Foundation; either
12    version 3 of the License, or (at your option) any later version.
13
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.
18
19    You should have received a copy of the GNU Lesser General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #ifndef _WINBINDD_H
24 #define _WINBINDD_H
25
26 #include "nsswitch/winbind_struct_protocol.h"
27 #include "nsswitch/libwbclient/wbclient.h"
28 #include "librpc/gen_ndr/wbint.h"
29
30 #ifdef HAVE_LIBNSCD
31 #include <libnscd.h>
32 #endif
33
34 #ifdef HAVE_SYS_MMAN_H
35 #include <sys/mman.h>
36 #endif
37
38 #undef DBGC_CLASS
39 #define DBGC_CLASS DBGC_WINBIND
40
41 #define WB_REPLACE_CHAR         '_'
42
43 struct sid_ctr {
44         DOM_SID *sid;
45         bool finished;
46         const char *domain;
47         const char *name;
48         enum lsa_SidType type;
49 };
50
51 struct winbindd_cli_state {
52         struct winbindd_cli_state *prev, *next;   /* Linked list pointers */
53         int sock;                                 /* Open socket from client */
54         pid_t pid;                                /* pid of client */
55         time_t last_access;                       /* Time of last access (read or write) */
56         bool privileged;                           /* Is the client 'privileged' */
57
58         TALLOC_CTX *mem_ctx;                      /* memory per request */
59         NTSTATUS (*recv_fn)(struct tevent_req *req,
60                             struct winbindd_response *presp);
61         struct winbindd_request *request;         /* Request from client */
62         struct tevent_queue *out_queue;
63         struct winbindd_response *response;        /* Respose to client */
64         bool getpwent_initialized;                /* Has getpwent_state been
65                                                    * initialized? */
66         bool getgrent_initialized;                /* Has getgrent_state been
67                                                    * initialized? */
68         struct getent_state *getpwent_state;      /* State for getpwent() */
69         struct getent_state *getgrent_state;      /* State for getgrent() */
70 };
71
72 /* State between get{pw,gr}ent() calls */
73
74 struct getent_state {
75         struct getent_state *prev, *next;
76         void *sam_entries;
77         uint32 sam_entry_index, num_sam_entries;
78         bool got_sam_entries;
79         fstring domain_name;
80 };
81
82 struct getpwent_state {
83         struct winbindd_domain *domain;
84         int next_user;
85         int num_users;
86         struct wbint_userinfo *users;
87 };
88
89 /* Storage for cached getpwent() user entries */
90
91 struct getpwent_user {
92         fstring name;                        /* Account name */
93         fstring gecos;                       /* User information */
94         fstring homedir;                     /* User Home Directory */
95         fstring shell;                       /* User Login Shell */
96         DOM_SID user_sid;                    /* NT user and primary group SIDs */
97         DOM_SID group_sid;
98 };
99
100 /* Our connection to the DC */
101
102 struct winbindd_cm_conn {
103         struct cli_state *cli;
104
105         struct rpc_pipe_client *samr_pipe;
106         struct policy_handle sam_connect_handle, sam_domain_handle;
107
108         struct rpc_pipe_client *lsa_pipe;
109         struct policy_handle lsa_policy;
110
111         struct rpc_pipe_client *netlogon_pipe;
112 };
113
114 struct winbindd_async_request;
115
116 /* Async child */
117
118 struct winbindd_domain;
119
120 struct winbindd_child_dispatch_table {
121         const char *name;
122         enum winbindd_cmd struct_cmd;
123         enum winbindd_result (*struct_fn)(struct winbindd_domain *domain,
124                                           struct winbindd_cli_state *state);
125 };
126
127 struct winbindd_child {
128         struct winbindd_child *next, *prev;
129
130         pid_t pid;
131         struct winbindd_domain *domain;
132         char *logfilename;
133
134         int sock;
135         struct tevent_queue *queue;
136         struct rpc_pipe_client *rpccli;
137
138         struct timed_event *lockout_policy_event;
139         struct timed_event *machine_password_change_event;
140
141         const struct winbindd_child_dispatch_table *table;
142 };
143
144 /* Structures to hold per domain information */
145
146 struct winbindd_domain {
147         fstring name;                          /* Domain name (NetBIOS) */
148         fstring alt_name;                      /* alt Domain name, if any (FQDN for ADS) */
149         fstring forest_name;                   /* Name of the AD forest we're in */
150         DOM_SID sid;                           /* SID for this domain */
151         uint32 domain_flags;                   /* Domain flags from netlogon.h */
152         uint32 domain_type;                    /* Domain type from netlogon.h */
153         uint32 domain_trust_attribs;           /* Trust attribs from netlogon.h */
154         bool initialized;                      /* Did we already ask for the domain mode? */
155         bool native_mode;                      /* is this a win2k domain in native mode ? */
156         bool active_directory;                 /* is this a win2k active directory ? */
157         bool primary;                          /* is this our primary domain ? */
158         bool internal;                         /* BUILTIN and member SAM */
159         bool online;                           /* is this domain available ? */
160         time_t startup_time;                   /* When we set "startup" true. */
161         bool startup;                          /* are we in the first 30 seconds after startup_time ? */
162
163         bool can_do_samlogon_ex; /* Due to the lack of finer control what type
164                                   * of DC we have, let us try to do a
165                                   * credential-chain less samlogon_ex call
166                                   * with AD and schannel. If this fails with
167                                   * DCERPC_FAULT_OP_RNG_ERROR, then set this
168                                   * to False. This variable is around so that
169                                   * we don't have to try _ex every time. */
170
171         /* Lookup methods for this domain (LDAP or RPC) */
172         struct winbindd_methods *methods;
173
174         /* the backend methods are used by the cache layer to find the right
175            backend */
176         struct winbindd_methods *backend;
177
178         /* Private data for the backends (used for connection cache) */
179
180         void *private_data;
181
182         /*
183          * idmap config settings, used to tell the idmap child which
184          * special domain config to use for a mapping
185          */
186         bool have_idmap_config;
187         uint32_t id_range_low, id_range_high;
188
189         /* A working DC */
190         pid_t dc_probe_pid; /* Child we're using to detect the DC. */
191         fstring dcname;
192         struct sockaddr_storage dcaddr;
193
194         /* Sequence number stuff */
195
196         time_t last_seq_check;
197         uint32 sequence_number;
198         NTSTATUS last_status;
199
200         /* The smb connection */
201
202         struct winbindd_cm_conn conn;
203
204         /* The child pid we're talking to */
205
206         struct winbindd_child child;
207
208         /* Callback we use to try put us back online. */
209
210         uint32 check_online_timeout;
211         struct timed_event *check_online_event;
212
213         /* Linked list info */
214
215         struct winbindd_domain *prev, *next;
216 };
217
218 /* per-domain methods. This is how LDAP vs RPC is selected
219  */
220 struct winbindd_methods {
221         /* does this backend provide a consistent view of the data? (ie. is the primary group
222            always correct) */
223         bool consistent;
224
225         /* get a list of users, returning a wbint_userinfo for each one */
226         NTSTATUS (*query_user_list)(struct winbindd_domain *domain,
227                                    TALLOC_CTX *mem_ctx,
228                                    uint32 *num_entries, 
229                                    struct wbint_userinfo **info);
230
231         /* get a list of domain groups */
232         NTSTATUS (*enum_dom_groups)(struct winbindd_domain *domain,
233                                     TALLOC_CTX *mem_ctx,
234                                     uint32 *num_entries, 
235                                     struct acct_info **info);
236
237         /* get a list of domain local groups */
238         NTSTATUS (*enum_local_groups)(struct winbindd_domain *domain,
239                                     TALLOC_CTX *mem_ctx,
240                                     uint32 *num_entries, 
241                                     struct acct_info **info);
242
243         /* convert one user or group name to a sid */
244         NTSTATUS (*name_to_sid)(struct winbindd_domain *domain,
245                                 TALLOC_CTX *mem_ctx,
246                                 const char *domain_name,
247                                 const char *name,
248                                 uint32_t flags,
249                                 DOM_SID *sid,
250                                 enum lsa_SidType *type);
251
252         /* convert a sid to a user or group name */
253         NTSTATUS (*sid_to_name)(struct winbindd_domain *domain,
254                                 TALLOC_CTX *mem_ctx,
255                                 const DOM_SID *sid,
256                                 char **domain_name,
257                                 char **name,
258                                 enum lsa_SidType *type);
259
260         NTSTATUS (*rids_to_names)(struct winbindd_domain *domain,
261                                   TALLOC_CTX *mem_ctx,
262                                   const DOM_SID *domain_sid,
263                                   uint32 *rids,
264                                   size_t num_rids,
265                                   char **domain_name,
266                                   char ***names,
267                                   enum lsa_SidType **types);
268
269         /* lookup user info for a given SID */
270         NTSTATUS (*query_user)(struct winbindd_domain *domain, 
271                                TALLOC_CTX *mem_ctx, 
272                                const DOM_SID *user_sid,
273                                struct wbint_userinfo *user_info);
274
275         /* lookup all groups that a user is a member of. The backend
276            can also choose to lookup by username or rid for this
277            function */
278         NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
279                                       TALLOC_CTX *mem_ctx,
280                                       const DOM_SID *user_sid,
281                                       uint32 *num_groups, DOM_SID **user_gids);
282
283         /* Lookup all aliases that the sids delivered are member of. This is
284          * to implement 'domain local groups' correctly */
285         NTSTATUS (*lookup_useraliases)(struct winbindd_domain *domain,
286                                        TALLOC_CTX *mem_ctx,
287                                        uint32 num_sids,
288                                        const DOM_SID *sids,
289                                        uint32 *num_aliases,
290                                        uint32 **alias_rids);
291
292         /* find all members of the group with the specified group_rid */
293         NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
294                                     TALLOC_CTX *mem_ctx,
295                                     const DOM_SID *group_sid,
296                                     enum lsa_SidType type,
297                                     uint32 *num_names, 
298                                     DOM_SID **sid_mem, char ***names, 
299                                     uint32 **name_types);
300
301         /* return the current global sequence number */
302         NTSTATUS (*sequence_number)(struct winbindd_domain *domain, uint32 *seq);
303
304         /* return the lockout policy */
305         NTSTATUS (*lockout_policy)(struct winbindd_domain *domain,
306                                    TALLOC_CTX *mem_ctx,
307                                    struct samr_DomInfo12 *lockout_policy);
308
309         /* return the lockout policy */
310         NTSTATUS (*password_policy)(struct winbindd_domain *domain,
311                                     TALLOC_CTX *mem_ctx,
312                                     struct samr_DomInfo1 *password_policy);
313
314         /* enumerate trusted domains */
315         NTSTATUS (*trusted_domains)(struct winbindd_domain *domain,
316                                     TALLOC_CTX *mem_ctx,
317                                     uint32 *num_domains,
318                                     char ***names,
319                                     char ***alt_names,
320                                     DOM_SID **dom_sids);
321 };
322
323 /* Filled out by IDMAP backends */
324 struct winbindd_idmap_methods {
325   /* Called when backend is first loaded */
326   bool (*init)(void);
327
328   bool (*get_sid_from_uid)(uid_t uid, DOM_SID *sid);
329   bool (*get_sid_from_gid)(gid_t gid, DOM_SID *sid);
330
331   bool (*get_uid_from_sid)(DOM_SID *sid, uid_t *uid);
332   bool (*get_gid_from_sid)(DOM_SID *sid, gid_t *gid);
333
334   /* Called when backend is unloaded */
335   bool (*close)(void);
336   /* Called to dump backend status */
337   void (*status)(void);
338 };
339
340 /* Data structures for dealing with the trusted domain cache */
341
342 struct winbindd_tdc_domain {
343         const char *domain_name;
344         const char *dns_name;
345         DOM_SID sid;
346         uint32 trust_flags;
347         uint32 trust_attribs;
348         uint32 trust_type;
349 };
350
351 /* Switch for listing users or groups */
352 enum ent_type {
353         LIST_USERS = 0,
354         LIST_GROUPS,
355 };
356
357 struct WINBINDD_MEMORY_CREDS {
358         struct WINBINDD_MEMORY_CREDS *next, *prev;
359         const char *username; /* lookup key. */
360         uid_t uid;
361         int ref_count;
362         size_t len;
363         uint8_t *nt_hash; /* Base pointer for the following 2 */
364         uint8_t *lm_hash;
365         char *pass;
366 };
367
368 struct WINBINDD_CCACHE_ENTRY {
369         struct WINBINDD_CCACHE_ENTRY *next, *prev;
370         const char *principal_name;
371         const char *ccname;
372         const char *service;
373         const char *username;
374         const char *realm;
375         struct WINBINDD_MEMORY_CREDS *cred_ptr;
376         int ref_count;
377         uid_t uid;
378         time_t create_time;
379         time_t renew_until;
380         time_t refresh_time;
381         struct timed_event *event;
382 };
383
384 #include "winbindd/winbindd_proto.h"
385
386 #define WINBINDD_ESTABLISH_LOOP 30
387 #define WINBINDD_RESCAN_FREQ lp_winbind_cache_time()
388 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
389 #define DOM_SEQUENCE_NONE ((uint32)-1)
390
391 #define IS_DOMAIN_OFFLINE(x) ( lp_winbind_offline_logon() && \
392                                ( get_global_winbindd_state_offline() \
393                                  || !(x)->online ) )
394 #define IS_DOMAIN_ONLINE(x) (!IS_DOMAIN_OFFLINE(x))
395
396 #endif /* _WINBINDD_H */