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