s3:winbindd: make sure we remove pending io requests before closing client sockets
[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/dcerpc.h"
29 #include "librpc/gen_ndr/winbind.h"
30
31 #include "talloc_dict.h"
32
33 #include "../lib/util/tevent_ntstatus.h"
34
35 #ifdef HAVE_LIBNSCD
36 #include <libnscd.h>
37 #endif
38
39 #ifdef HAVE_SYS_MMAN_H
40 #include <sys/mman.h>
41 #endif
42
43 #undef DBGC_CLASS
44 #define DBGC_CLASS DBGC_WINBIND
45
46 #define WB_REPLACE_CHAR         '_'
47
48 struct sid_ctr {
49         struct dom_sid *sid;
50         bool finished;
51         const char *domain;
52         const char *name;
53         enum lsa_SidType type;
54 };
55
56 struct winbindd_cli_state {
57         struct winbindd_cli_state *prev, *next;   /* Linked list pointers */
58         int sock;                                 /* Open socket from client */
59         pid_t pid;                                /* pid of client */
60         time_t last_access;                       /* Time of last access (read or write) */
61         bool privileged;                           /* Is the client 'privileged' */
62
63         TALLOC_CTX *mem_ctx;                      /* memory per request */
64         const char *cmd_name;
65         NTSTATUS (*recv_fn)(struct tevent_req *req,
66                             struct winbindd_response *presp);
67         struct winbindd_request *request;         /* Request from client */
68         struct tevent_queue *out_queue;
69         struct winbindd_response *response;        /* Respose to client */
70         struct tevent_req *io_req; /* wb_req_read_* or wb_resp_write_* */
71
72         struct getpwent_state *pwent_state; /* State for getpwent() */
73         struct getgrent_state *grent_state; /* State for getgrent() */
74 };
75
76 struct getpwent_state {
77         struct winbindd_domain *domain;
78         int next_user;
79         int num_users;
80         struct wbint_userinfo *users;
81 };
82
83 struct getgrent_state {
84         struct winbindd_domain *domain;
85         int next_group;
86         int num_groups;
87         struct wbint_Principal *groups;
88 };
89
90 /* Storage for cached getpwent() user entries */
91
92 struct getpwent_user {
93         fstring name;                        /* Account name */
94         fstring gecos;                       /* User information */
95         fstring homedir;                     /* User Home Directory */
96         fstring shell;                       /* User Login Shell */
97         struct dom_sid user_sid;                    /* NT user and primary group SIDs */
98         struct dom_sid group_sid;
99 };
100
101 /* Our connection to the DC */
102
103 struct winbindd_cm_conn {
104         struct cli_state *cli;
105
106         enum dcerpc_AuthLevel auth_level;
107
108         struct rpc_pipe_client *samr_pipe;
109         struct policy_handle sam_connect_handle, sam_domain_handle;
110
111         struct rpc_pipe_client *lsa_pipe;
112         struct rpc_pipe_client *lsa_pipe_tcp;
113         struct policy_handle lsa_policy;
114
115         struct rpc_pipe_client *netlogon_pipe;
116         struct netlogon_creds_cli_context *netlogon_creds;
117         uint32_t netlogon_flags;
118         bool netlogon_force_reauth;
119 };
120
121 /* Async child */
122
123 struct winbindd_domain;
124
125 struct winbindd_child_dispatch_table {
126         const char *name;
127         enum winbindd_cmd struct_cmd;
128         enum winbindd_result (*struct_fn)(struct winbindd_domain *domain,
129                                           struct winbindd_cli_state *state);
130 };
131
132 struct winbindd_child {
133         struct winbindd_child *next, *prev;
134
135         pid_t pid;
136         struct winbindd_domain *domain;
137         char *logfilename;
138
139         int sock;
140         struct tevent_queue *queue;
141         struct dcerpc_binding_handle *binding_handle;
142
143         struct tevent_timer *lockout_policy_event;
144         struct tevent_timer *machine_password_change_event;
145
146         const struct winbindd_child_dispatch_table *table;
147 };
148
149 /* Structures to hold per domain information */
150
151 struct winbindd_domain {
152         char *name;                            /* Domain name (NetBIOS) */
153         char *alt_name;                        /* alt Domain name, if any (FQDN for ADS) */
154         char *forest_name;                     /* Name of the AD forest we're in */
155         struct dom_sid sid;                           /* SID for this domain */
156         uint32_t domain_flags;                   /* Domain flags from netlogon.h */
157         uint32_t domain_type;                    /* Domain type from netlogon.h */
158         uint32_t domain_trust_attribs;           /* Trust attribs from netlogon.h */
159         bool initialized;                      /* Did we already ask for the domain mode? */
160         bool native_mode;                      /* is this a win2k domain in native mode ? */
161         bool active_directory;                 /* is this a win2k active directory ? */
162         bool primary;                          /* is this our primary domain ? */
163         bool internal;                         /* BUILTIN and member SAM */
164         bool rodc;                             /* Are we an RODC for this AD domain? (do some operations locally) */
165         bool online;                           /* is this domain available ? */
166         time_t startup_time;                   /* When we set "startup" true. monotonic clock */
167         bool startup;                          /* are we in the first 30 seconds after startup_time ? */
168
169         bool can_do_ncacn_ip_tcp;
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         char *dcname;
192         struct sockaddr_storage dcaddr;
193
194         /* Sequence number stuff */
195
196         time_t last_seq_check;
197         uint32_t 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 *children;
207
208         /* Callback we use to try put us back online. */
209
210         uint32_t check_online_timeout;
211         struct tevent_timer *check_online_event;
212
213         /* Linked list info */
214
215         struct winbindd_domain *prev, *next;
216 };
217
218 struct wb_acct_info {
219         fstring acct_name; /* account name */
220         fstring acct_desc; /* account name */
221         uint32_t rid; /* domain-relative RID */
222 };
223
224 /* per-domain methods. This is how LDAP vs RPC is selected
225  */
226 struct winbindd_methods {
227         /* does this backend provide a consistent view of the data? (ie. is the primary group
228            always correct) */
229         bool consistent;
230
231         /* get a list of users, returning a wbint_userinfo for each one */
232         NTSTATUS (*query_user_list)(struct winbindd_domain *domain,
233                                    TALLOC_CTX *mem_ctx,
234                                    uint32_t *num_entries,
235                                    struct wbint_userinfo **info);
236
237         /* get a list of domain groups */
238         NTSTATUS (*enum_dom_groups)(struct winbindd_domain *domain,
239                                     TALLOC_CTX *mem_ctx,
240                                     uint32_t *num_entries,
241                                     struct wb_acct_info **info);
242
243         /* get a list of domain local groups */
244         NTSTATUS (*enum_local_groups)(struct winbindd_domain *domain,
245                                     TALLOC_CTX *mem_ctx,
246                                     uint32_t *num_entries,
247                                     struct wb_acct_info **info);
248
249         /* convert one user or group name to a sid */
250         NTSTATUS (*name_to_sid)(struct winbindd_domain *domain,
251                                 TALLOC_CTX *mem_ctx,
252                                 const char *domain_name,
253                                 const char *name,
254                                 uint32_t flags,
255                                 struct dom_sid *sid,
256                                 enum lsa_SidType *type);
257
258         /* convert a sid to a user or group name */
259         NTSTATUS (*sid_to_name)(struct winbindd_domain *domain,
260                                 TALLOC_CTX *mem_ctx,
261                                 const struct dom_sid *sid,
262                                 char **domain_name,
263                                 char **name,
264                                 enum lsa_SidType *type);
265
266         NTSTATUS (*rids_to_names)(struct winbindd_domain *domain,
267                                   TALLOC_CTX *mem_ctx,
268                                   const struct dom_sid *domain_sid,
269                                   uint32_t *rids,
270                                   size_t num_rids,
271                                   char **domain_name,
272                                   char ***names,
273                                   enum lsa_SidType **types);
274
275         /* lookup user info for a given SID */
276         NTSTATUS (*query_user)(struct winbindd_domain *domain, 
277                                TALLOC_CTX *mem_ctx, 
278                                const struct dom_sid *user_sid,
279                                struct wbint_userinfo *user_info);
280
281         /* lookup all groups that a user is a member of. The backend
282            can also choose to lookup by username or rid for this
283            function */
284         NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
285                                       TALLOC_CTX *mem_ctx,
286                                       const struct dom_sid *user_sid,
287                                       uint32_t *num_groups, struct dom_sid **user_gids);
288
289         /* Lookup all aliases that the sids delivered are member of. This is
290          * to implement 'domain local groups' correctly */
291         NTSTATUS (*lookup_useraliases)(struct winbindd_domain *domain,
292                                        TALLOC_CTX *mem_ctx,
293                                        uint32_t num_sids,
294                                        const struct dom_sid *sids,
295                                        uint32_t *num_aliases,
296                                        uint32_t **alias_rids);
297
298         /* find all members of the group with the specified group_rid */
299         NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
300                                     TALLOC_CTX *mem_ctx,
301                                     const struct dom_sid *group_sid,
302                                     enum lsa_SidType type,
303                                     uint32_t *num_names,
304                                     struct dom_sid **sid_mem, char ***names,
305                                     uint32_t **name_types);
306
307         /* return the current global sequence number */
308         NTSTATUS (*sequence_number)(struct winbindd_domain *domain, uint32_t *seq);
309
310         /* return the lockout policy */
311         NTSTATUS (*lockout_policy)(struct winbindd_domain *domain,
312                                    TALLOC_CTX *mem_ctx,
313                                    struct samr_DomInfo12 *lockout_policy);
314
315         /* return the lockout policy */
316         NTSTATUS (*password_policy)(struct winbindd_domain *domain,
317                                     TALLOC_CTX *mem_ctx,
318                                     struct samr_DomInfo1 *password_policy);
319
320         /* enumerate trusted domains */
321         NTSTATUS (*trusted_domains)(struct winbindd_domain *domain,
322                                     TALLOC_CTX *mem_ctx,
323                                     struct netr_DomainTrustList *trusts);
324 };
325
326 /* Filled out by IDMAP backends */
327 struct winbindd_idmap_methods {
328   /* Called when backend is first loaded */
329   bool (*init)(void);
330
331   bool (*get_sid_from_uid)(uid_t uid, struct dom_sid *sid);
332   bool (*get_sid_from_gid)(gid_t gid, struct dom_sid *sid);
333
334   bool (*get_uid_from_sid)(struct dom_sid *sid, uid_t *uid);
335   bool (*get_gid_from_sid)(struct dom_sid *sid, gid_t *gid);
336
337   /* Called when backend is unloaded */
338   bool (*close)(void);
339   /* Called to dump backend status */
340   void (*status)(void);
341 };
342
343 /* Data structures for dealing with the trusted domain cache */
344
345 struct winbindd_tdc_domain {
346         const char *domain_name;
347         const char *dns_name;
348         struct dom_sid sid;
349         uint32_t trust_flags;
350         uint32_t trust_attribs;
351         uint32_t trust_type;
352 };
353
354 /* Switch for listing users or groups */
355 enum ent_type {
356         LIST_USERS = 0,
357         LIST_GROUPS,
358 };
359
360 struct WINBINDD_MEMORY_CREDS {
361         struct WINBINDD_MEMORY_CREDS *next, *prev;
362         const char *username; /* lookup key. */
363         uid_t uid;
364         int ref_count;
365         size_t len;
366         uint8_t *nt_hash; /* Base pointer for the following 2 */
367         uint8_t *lm_hash;
368         char *pass;
369 };
370
371 struct WINBINDD_CCACHE_ENTRY {
372         struct WINBINDD_CCACHE_ENTRY *next, *prev;
373         const char *principal_name;
374         const char *ccname;
375         const char *service;
376         const char *username;
377         const char *realm;
378         struct WINBINDD_MEMORY_CREDS *cred_ptr;
379         int ref_count;
380         uid_t uid;
381         time_t create_time;
382         time_t renew_until;
383         time_t refresh_time;
384         struct tevent_timer *event;
385 };
386
387 #include "winbindd/winbindd_proto.h"
388
389 #define WINBINDD_ESTABLISH_LOOP 30
390 #define WINBINDD_RESCAN_FREQ lp_winbind_cache_time()
391 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
392 #define DOM_SEQUENCE_NONE ((uint32_t)-1)
393
394 #endif /* _WINBINDD_H */