s3-winbindd: add cm_connect_lsa_tcp().
[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 *getgrent_state;      /* State for getgrent() */
69
70         struct getpwent_state *pwent_state; /* State for getpwent() */
71         struct getgrent_state *grent_state; /* State for getgrent() */
72 };
73
74 /* State between get{pw,gr}ent() calls */
75
76 struct getent_state {
77         struct getent_state *prev, *next;
78         void *sam_entries;
79         uint32 sam_entry_index, num_sam_entries;
80         bool got_sam_entries;
81         fstring domain_name;
82 };
83
84 struct getpwent_state {
85         struct winbindd_domain *domain;
86         int next_user;
87         int num_users;
88         struct wbint_userinfo *users;
89 };
90
91 struct getgrent_state {
92         struct winbindd_domain *domain;
93         int next_group;
94         int num_groups;
95         struct wbint_Principal *groups;
96 };
97
98 /* Storage for cached getpwent() user entries */
99
100 struct getpwent_user {
101         fstring name;                        /* Account name */
102         fstring gecos;                       /* User information */
103         fstring homedir;                     /* User Home Directory */
104         fstring shell;                       /* User Login Shell */
105         DOM_SID user_sid;                    /* NT user and primary group SIDs */
106         DOM_SID group_sid;
107 };
108
109 /* Our connection to the DC */
110
111 struct winbindd_cm_conn {
112         struct cli_state *cli;
113
114         struct rpc_pipe_client *samr_pipe;
115         struct policy_handle sam_connect_handle, sam_domain_handle;
116
117         struct rpc_pipe_client *lsa_pipe;
118         struct rpc_pipe_client *lsa_pipe_tcp;
119         struct policy_handle lsa_policy;
120
121         struct rpc_pipe_client *netlogon_pipe;
122 };
123
124 struct winbindd_async_request;
125
126 /* Async child */
127
128 struct winbindd_domain;
129
130 struct winbindd_child_dispatch_table {
131         const char *name;
132         enum winbindd_cmd struct_cmd;
133         enum winbindd_result (*struct_fn)(struct winbindd_domain *domain,
134                                           struct winbindd_cli_state *state);
135 };
136
137 struct winbindd_child {
138         struct winbindd_child *next, *prev;
139
140         pid_t pid;
141         struct winbindd_domain *domain;
142         char *logfilename;
143
144         int sock;
145         struct tevent_queue *queue;
146         struct rpc_pipe_client *rpccli;
147
148         struct timed_event *lockout_policy_event;
149         struct timed_event *machine_password_change_event;
150
151         const struct winbindd_child_dispatch_table *table;
152 };
153
154 /* Structures to hold per domain information */
155
156 struct winbindd_domain {
157         fstring name;                          /* Domain name (NetBIOS) */
158         fstring alt_name;                      /* alt Domain name, if any (FQDN for ADS) */
159         fstring forest_name;                   /* Name of the AD forest we're in */
160         DOM_SID sid;                           /* SID for this domain */
161         uint32 domain_flags;                   /* Domain flags from netlogon.h */
162         uint32 domain_type;                    /* Domain type from netlogon.h */
163         uint32 domain_trust_attribs;           /* Trust attribs from netlogon.h */
164         bool initialized;                      /* Did we already ask for the domain mode? */
165         bool native_mode;                      /* is this a win2k domain in native mode ? */
166         bool active_directory;                 /* is this a win2k active directory ? */
167         bool primary;                          /* is this our primary domain ? */
168         bool internal;                         /* BUILTIN and member SAM */
169         bool online;                           /* is this domain available ? */
170         time_t startup_time;                   /* When we set "startup" true. */
171         bool startup;                          /* are we in the first 30 seconds after startup_time ? */
172
173         bool can_do_samlogon_ex; /* Due to the lack of finer control what type
174                                   * of DC we have, let us try to do a
175                                   * credential-chain less samlogon_ex call
176                                   * with AD and schannel. If this fails with
177                                   * DCERPC_FAULT_OP_RNG_ERROR, then set this
178                                   * to False. This variable is around so that
179                                   * we don't have to try _ex every time. */
180
181         /* Lookup methods for this domain (LDAP or RPC) */
182         struct winbindd_methods *methods;
183
184         /* the backend methods are used by the cache layer to find the right
185            backend */
186         struct winbindd_methods *backend;
187
188         /* Private data for the backends (used for connection cache) */
189
190         void *private_data;
191
192         /*
193          * idmap config settings, used to tell the idmap child which
194          * special domain config to use for a mapping
195          */
196         bool have_idmap_config;
197         uint32_t id_range_low, id_range_high;
198
199         /* A working DC */
200         pid_t dc_probe_pid; /* Child we're using to detect the DC. */
201         fstring dcname;
202         struct sockaddr_storage dcaddr;
203
204         /* Sequence number stuff */
205
206         time_t last_seq_check;
207         uint32 sequence_number;
208         NTSTATUS last_status;
209
210         /* The smb connection */
211
212         struct winbindd_cm_conn conn;
213
214         /* The child pid we're talking to */
215
216         struct winbindd_child child;
217
218         /* Callback we use to try put us back online. */
219
220         uint32 check_online_timeout;
221         struct timed_event *check_online_event;
222
223         /* Linked list info */
224
225         struct winbindd_domain *prev, *next;
226 };
227
228 /* per-domain methods. This is how LDAP vs RPC is selected
229  */
230 struct winbindd_methods {
231         /* does this backend provide a consistent view of the data? (ie. is the primary group
232            always correct) */
233         bool consistent;
234
235         /* get a list of users, returning a wbint_userinfo for each one */
236         NTSTATUS (*query_user_list)(struct winbindd_domain *domain,
237                                    TALLOC_CTX *mem_ctx,
238                                    uint32 *num_entries, 
239                                    struct wbint_userinfo **info);
240
241         /* get a list of domain groups */
242         NTSTATUS (*enum_dom_groups)(struct winbindd_domain *domain,
243                                     TALLOC_CTX *mem_ctx,
244                                     uint32 *num_entries, 
245                                     struct acct_info **info);
246
247         /* get a list of domain local groups */
248         NTSTATUS (*enum_local_groups)(struct winbindd_domain *domain,
249                                     TALLOC_CTX *mem_ctx,
250                                     uint32 *num_entries, 
251                                     struct acct_info **info);
252
253         /* convert one user or group name to a sid */
254         NTSTATUS (*name_to_sid)(struct winbindd_domain *domain,
255                                 TALLOC_CTX *mem_ctx,
256                                 const char *domain_name,
257                                 const char *name,
258                                 uint32_t flags,
259                                 DOM_SID *sid,
260                                 enum lsa_SidType *type);
261
262         /* convert a sid to a user or group name */
263         NTSTATUS (*sid_to_name)(struct winbindd_domain *domain,
264                                 TALLOC_CTX *mem_ctx,
265                                 const DOM_SID *sid,
266                                 char **domain_name,
267                                 char **name,
268                                 enum lsa_SidType *type);
269
270         NTSTATUS (*rids_to_names)(struct winbindd_domain *domain,
271                                   TALLOC_CTX *mem_ctx,
272                                   const DOM_SID *domain_sid,
273                                   uint32 *rids,
274                                   size_t num_rids,
275                                   char **domain_name,
276                                   char ***names,
277                                   enum lsa_SidType **types);
278
279         /* lookup user info for a given SID */
280         NTSTATUS (*query_user)(struct winbindd_domain *domain, 
281                                TALLOC_CTX *mem_ctx, 
282                                const DOM_SID *user_sid,
283                                struct wbint_userinfo *user_info);
284
285         /* lookup all groups that a user is a member of. The backend
286            can also choose to lookup by username or rid for this
287            function */
288         NTSTATUS (*lookup_usergroups)(struct winbindd_domain *domain,
289                                       TALLOC_CTX *mem_ctx,
290                                       const DOM_SID *user_sid,
291                                       uint32 *num_groups, DOM_SID **user_gids);
292
293         /* Lookup all aliases that the sids delivered are member of. This is
294          * to implement 'domain local groups' correctly */
295         NTSTATUS (*lookup_useraliases)(struct winbindd_domain *domain,
296                                        TALLOC_CTX *mem_ctx,
297                                        uint32 num_sids,
298                                        const DOM_SID *sids,
299                                        uint32 *num_aliases,
300                                        uint32 **alias_rids);
301
302         /* find all members of the group with the specified group_rid */
303         NTSTATUS (*lookup_groupmem)(struct winbindd_domain *domain,
304                                     TALLOC_CTX *mem_ctx,
305                                     const DOM_SID *group_sid,
306                                     enum lsa_SidType type,
307                                     uint32 *num_names, 
308                                     DOM_SID **sid_mem, char ***names, 
309                                     uint32 **name_types);
310
311         /* return the current global sequence number */
312         NTSTATUS (*sequence_number)(struct winbindd_domain *domain, uint32 *seq);
313
314         /* return the lockout policy */
315         NTSTATUS (*lockout_policy)(struct winbindd_domain *domain,
316                                    TALLOC_CTX *mem_ctx,
317                                    struct samr_DomInfo12 *lockout_policy);
318
319         /* return the lockout policy */
320         NTSTATUS (*password_policy)(struct winbindd_domain *domain,
321                                     TALLOC_CTX *mem_ctx,
322                                     struct samr_DomInfo1 *password_policy);
323
324         /* enumerate trusted domains */
325         NTSTATUS (*trusted_domains)(struct winbindd_domain *domain,
326                                     TALLOC_CTX *mem_ctx,
327                                     uint32 *num_domains,
328                                     char ***names,
329                                     char ***alt_names,
330                                     DOM_SID **dom_sids);
331 };
332
333 /* Filled out by IDMAP backends */
334 struct winbindd_idmap_methods {
335   /* Called when backend is first loaded */
336   bool (*init)(void);
337
338   bool (*get_sid_from_uid)(uid_t uid, DOM_SID *sid);
339   bool (*get_sid_from_gid)(gid_t gid, DOM_SID *sid);
340
341   bool (*get_uid_from_sid)(DOM_SID *sid, uid_t *uid);
342   bool (*get_gid_from_sid)(DOM_SID *sid, gid_t *gid);
343
344   /* Called when backend is unloaded */
345   bool (*close)(void);
346   /* Called to dump backend status */
347   void (*status)(void);
348 };
349
350 /* Data structures for dealing with the trusted domain cache */
351
352 struct winbindd_tdc_domain {
353         const char *domain_name;
354         const char *dns_name;
355         DOM_SID sid;
356         uint32 trust_flags;
357         uint32 trust_attribs;
358         uint32 trust_type;
359 };
360
361 /* Switch for listing users or groups */
362 enum ent_type {
363         LIST_USERS = 0,
364         LIST_GROUPS,
365 };
366
367 struct WINBINDD_MEMORY_CREDS {
368         struct WINBINDD_MEMORY_CREDS *next, *prev;
369         const char *username; /* lookup key. */
370         uid_t uid;
371         int ref_count;
372         size_t len;
373         uint8_t *nt_hash; /* Base pointer for the following 2 */
374         uint8_t *lm_hash;
375         char *pass;
376 };
377
378 struct WINBINDD_CCACHE_ENTRY {
379         struct WINBINDD_CCACHE_ENTRY *next, *prev;
380         const char *principal_name;
381         const char *ccname;
382         const char *service;
383         const char *username;
384         const char *realm;
385         struct WINBINDD_MEMORY_CREDS *cred_ptr;
386         int ref_count;
387         uid_t uid;
388         time_t create_time;
389         time_t renew_until;
390         time_t refresh_time;
391         struct timed_event *event;
392 };
393
394 #include "winbindd/winbindd_proto.h"
395
396 #define WINBINDD_ESTABLISH_LOOP 30
397 #define WINBINDD_RESCAN_FREQ lp_winbind_cache_time()
398 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
399 #define DOM_SEQUENCE_NONE ((uint32)-1)
400
401 #define IS_DOMAIN_OFFLINE(x) ( lp_winbind_offline_logon() && \
402                                ( get_global_winbindd_state_offline() \
403                                  || !(x)->online ) )
404 #define IS_DOMAIN_ONLINE(x) (!IS_DOMAIN_OFFLINE(x))
405
406 #endif /* _WINBINDD_H */