s4-winbind: Add special case for BUILTIN domain
[samba.git] / source4 / winbind / wb_init_domain.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    A composite API for initializing a domain
5
6    Copyright (C) Volker Lendecke 2005
7    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2007
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program 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
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "includes.h"
24 #include "libcli/composite/composite.h"
25 #include "winbind/wb_server.h"
26 #include "smbd/service_task.h"
27 #include "librpc/gen_ndr/ndr_netlogon.h"
28 #include "librpc/gen_ndr/ndr_lsa_c.h"
29 #include "librpc/gen_ndr/ndr_samr_c.h"
30 #include "libcli/libcli.h"
31
32 #include "libcli/security/security.h"
33
34
35 #include "auth/credentials/credentials.h"
36 #include "param/param.h"
37
38 /*
39  * Initialize a domain:
40  *
41  * - With schannel credentials, try to open the SMB connection and
42  *   NETLOGON pipe with the machine creds. This works against W2k3SP1
43  *   with an NTLMSSP session setup. Fall back to anonymous (for the CIFS level).
44  *
45  * - If we have schannel creds, do the auth2 and open the schannel'ed netlogon
46  *   pipe.
47  *
48  * - Open LSA. If we have machine creds, try to open with SPNEGO or NTLMSSP. Fall back
49  *   to schannel.
50  *
51  * - With queryinfopolicy, verify that we're talking to the right domain
52  *
53  * A bit complex, but with all the combinations I think it's the best we can
54  * get. NT4, W2k3 and W2k all have different combinations, but in the end we
55  * have a signed&sealed lsa connection on all of them.
56  *
57  * Not sure if it is overkill, but it seems to work.
58  */
59
60 struct init_domain_state {
61         struct composite_context *ctx;
62         struct wbsrv_domain *domain;
63         struct wbsrv_service *service;
64
65         struct lsa_ObjectAttribute objectattr;
66         struct lsa_OpenPolicy2 lsa_openpolicy;
67         struct lsa_QueryInfoPolicy queryinfo;
68         union lsa_PolicyInformation *info;
69 };
70
71 static void init_domain_recv_netlogonpipe(struct composite_context *ctx);
72 static void init_domain_recv_lsa_pipe(struct composite_context *ctx);
73 static void init_domain_recv_lsa_policy(struct tevent_req *subreq);
74 static void init_domain_recv_queryinfo(struct tevent_req *subreq);
75 static void init_domain_recv_samr(struct composite_context *ctx);
76
77 static struct dcerpc_binding *init_domain_binding(struct init_domain_state *state, 
78                                                   const struct ndr_interface_table *table) 
79 {
80         struct dcerpc_binding *binding;
81         char *s;
82         NTSTATUS status;
83
84         /* Make a binding string */
85         if ((lpcfg_server_role(state->service->task->lp_ctx) != ROLE_DOMAIN_MEMBER) &&
86             dom_sid_equal(state->domain->info->sid, state->service->primary_sid) &&
87             state->service->sec_channel_type != SEC_CHAN_RODC) {
88                 s = talloc_asprintf(state, "ncalrpc:%s", state->domain->dc_name);
89                 if (s == NULL) return NULL;
90         } else {
91                 s = talloc_asprintf(state, "ncacn_np:%s", state->domain->dc_name);
92                 if (s == NULL) return NULL;
93
94         }
95         status = dcerpc_parse_binding(state, s, &binding);
96         talloc_free(s);
97         if (!NT_STATUS_IS_OK(status)) {
98                 return NULL;
99         }
100
101         /* Alter binding to contain hostname, but also address (so we don't look it up twice) */
102         binding->target_hostname = state->domain->dc_name;
103         binding->host = state->domain->dc_address;
104
105         if (binding->transport == NCALRPC) {
106                 return binding;
107         }
108
109         /* This shouldn't make a network call, as the mappings for named pipes are well known */
110         status = dcerpc_epm_map_binding(binding, binding, table, state->service->task->event_ctx,
111                                         state->service->task->lp_ctx);
112         if (!NT_STATUS_IS_OK(status)) {
113                 return NULL;
114         }
115
116         return binding;
117 }
118
119 struct composite_context *wb_init_domain_send(TALLOC_CTX *mem_ctx,
120                                               struct wbsrv_service *service,
121                                               struct wb_dom_info *dom_info)
122 {
123         struct composite_context *result, *ctx;
124         struct init_domain_state *state;
125
126         result = composite_create(mem_ctx, service->task->event_ctx);
127         if (result == NULL) goto failed;
128
129         state = talloc_zero(result, struct init_domain_state);
130         if (state == NULL) goto failed;
131         state->ctx = result;
132         result->private_data = state;
133
134         state->service = service;
135
136         state->domain = talloc(state, struct wbsrv_domain);
137         if (state->domain == NULL) goto failed;
138
139         state->domain->info = talloc_reference(state->domain, dom_info);
140         if (state->domain->info == NULL) goto failed;
141
142         state->domain->dc_name = dom_info->dc->name;
143         state->domain->dc_address = dom_info->dc->address;
144
145         state->domain->libnet_ctx = libnet_context_init(service->task->event_ctx, 
146                                                         service->task->lp_ctx);
147         if (state->domain->libnet_ctx == NULL) goto failed;
148         talloc_steal(state->domain, state->domain->libnet_ctx);
149
150         /* Create a credentials structure */
151         state->domain->libnet_ctx->cred = cli_credentials_init(state->domain);
152         if (state->domain->libnet_ctx->cred == NULL) goto failed;
153
154         cli_credentials_set_conf(state->domain->libnet_ctx->cred, service->task->lp_ctx);
155
156         /* Connect the machine account to the credentials */
157         state->ctx->status =
158                 cli_credentials_set_machine_account(state->domain->libnet_ctx->cred, state->domain->libnet_ctx->lp_ctx);
159         if (!NT_STATUS_IS_OK(state->ctx->status)) goto failed;
160
161         state->domain->netlogon_binding = init_domain_binding(state, &ndr_table_netlogon);
162
163         state->domain->netlogon_pipe = NULL;
164
165         state->domain->netlogon_queue = tevent_queue_create(state->domain,
166                                                             "netlogon_queue");
167         if (state->domain->netlogon_queue == NULL) goto failed;
168
169         /* We start the queue when the connection is usable */
170         tevent_queue_stop(state->domain->netlogon_queue);
171
172         if ((!cli_credentials_is_anonymous(state->domain->libnet_ctx->cred)) &&
173             ((lpcfg_server_role(service->task->lp_ctx) == ROLE_DOMAIN_MEMBER) ||
174              (lpcfg_server_role(service->task->lp_ctx) == ROLE_ACTIVE_DIRECTORY_DC)) &&
175             (dom_sid_equal(state->domain->info->sid,
176                            state->service->primary_sid))) {
177                 state->domain->netlogon_binding->flags |= DCERPC_SCHANNEL | DCERPC_SCHANNEL_AUTO;
178
179                 /* For debugging, it can be a real pain if all the traffic is encrypted */
180                 if (lpcfg_winbind_sealed_pipes(service->task->lp_ctx)) {
181                         state->domain->netlogon_binding->flags |= (DCERPC_SIGN | DCERPC_SEAL );
182                 } else {
183                         state->domain->netlogon_binding->flags |= (DCERPC_SIGN);
184                 }
185         }
186
187         /* No encryption on anonymous pipes */
188
189         ctx = dcerpc_pipe_connect_b_send(state, state->domain->netlogon_binding, 
190                                          &ndr_table_netlogon,
191                                          state->domain->libnet_ctx->cred,
192                                          service->task->event_ctx,
193                                          service->task->lp_ctx);
194         
195         if (composite_nomem(ctx, state->ctx)) {
196                 goto failed;
197         }
198         
199         composite_continue(state->ctx, ctx, init_domain_recv_netlogonpipe,
200                            state);
201         return result;
202  failed:
203         talloc_free(result);
204         return NULL;
205 }
206
207 /* Having make a netlogon connection (possibly secured with schannel),
208  * make an LSA connection to the same DC, on the same IPC$ share */
209 static void init_domain_recv_netlogonpipe(struct composite_context *ctx)
210 {
211         struct init_domain_state *state =
212                 talloc_get_type(ctx->async.private_data,
213                                 struct init_domain_state);
214
215         state->ctx->status = dcerpc_pipe_connect_b_recv(ctx, state->domain, 
216                                                    &state->domain->netlogon_pipe);
217         
218         if (!composite_is_ok(state->ctx)) {
219                 return;
220         }
221         talloc_reparent(state, state->domain->netlogon_pipe, state->domain->netlogon_binding);
222
223         /* the netlogon connection is ready */
224         tevent_queue_start(state->domain->netlogon_queue);
225
226         state->domain->lsa_binding = init_domain_binding(state, &ndr_table_lsarpc);
227
228         /* For debugging, it can be a real pain if all the traffic is encrypted */
229         if (lpcfg_winbind_sealed_pipes(state->service->task->lp_ctx)) {
230                 state->domain->lsa_binding->flags |= (DCERPC_SIGN | DCERPC_SEAL );
231         } else {
232                 state->domain->lsa_binding->flags |= (DCERPC_SIGN);
233         }
234
235         state->domain->libnet_ctx->lsa.pipe = NULL;
236
237         /* this will make the secondary connection on the same IPC$ share, 
238            secured with SPNEGO or NTLMSSP */
239         ctx = dcerpc_secondary_auth_connection_send(state->domain->netlogon_pipe,
240                                                     state->domain->lsa_binding,
241                                                     &ndr_table_lsarpc,
242                                                     state->domain->libnet_ctx->cred,
243                                                     state->domain->libnet_ctx->lp_ctx
244                 );
245         composite_continue(state->ctx, ctx, init_domain_recv_lsa_pipe, state);
246 }
247
248 static bool retry_with_schannel(struct init_domain_state *state, 
249                                 struct dcerpc_binding *binding,
250                                 const struct ndr_interface_table *table,
251                                 void (*continuation)(struct composite_context *))
252 {
253         struct composite_context *ctx;
254         state->ctx->status = NT_STATUS_OK;
255         if (state->domain->netlogon_binding->flags & DCERPC_SCHANNEL 
256             && !(binding->flags & DCERPC_SCHANNEL)) {
257                 /* Opening a policy handle failed, perhaps it was
258                  * because we don't get a 'wrong password' error on
259                  * NTLMSSP binds */
260
261                 /* Try again with schannel */
262                 binding->flags |= DCERPC_SCHANNEL | DCERPC_SCHANNEL_AUTO;
263
264                 /* Try again, likewise on the same IPC$ share, 
265                    secured with SCHANNEL */
266                 ctx = dcerpc_secondary_auth_connection_send(state->domain->netlogon_pipe,
267                                                             binding,
268                                                             table, 
269                                                             state->domain->libnet_ctx->cred,
270                                                             state->domain->libnet_ctx->lp_ctx);
271                 composite_continue(state->ctx, ctx, continuation, state);               
272                 return true;
273         } else {
274                 return false;
275         }
276 }
277 /* We should now have either an authenticated LSA pipe, or an error.  
278  * On success, open a policy handle
279  */     
280 static void init_domain_recv_lsa_pipe(struct composite_context *ctx)
281 {
282         struct init_domain_state *state =
283                 talloc_get_type(ctx->async.private_data,
284                                 struct init_domain_state);
285         struct tevent_req *subreq;
286
287         state->ctx->status = dcerpc_secondary_auth_connection_recv(ctx, state->domain,
288                                                                    &state->domain->libnet_ctx->lsa.pipe);
289         if (NT_STATUS_EQUAL(state->ctx->status, NT_STATUS_LOGON_FAILURE)) {
290                 if (retry_with_schannel(state, state->domain->lsa_binding, 
291                                         &ndr_table_lsarpc,
292                                         init_domain_recv_lsa_pipe)) {
293                         return;
294                 }
295         }
296         if (!composite_is_ok(state->ctx)) return;
297
298         talloc_steal(state->domain->libnet_ctx, state->domain->libnet_ctx->lsa.pipe);
299         talloc_reparent(state, state->domain->libnet_ctx->lsa.pipe, state->domain->lsa_binding);
300         state->domain->libnet_ctx->lsa.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
301         state->domain->libnet_ctx->lsa.name = state->domain->info->name;
302
303         ZERO_STRUCT(state->domain->libnet_ctx->lsa.handle);
304         state->lsa_openpolicy.in.system_name =
305                 talloc_asprintf(state, "\\\\%s",
306                                 dcerpc_server_name(state->domain->libnet_ctx->lsa.pipe));
307         ZERO_STRUCT(state->objectattr);
308         state->lsa_openpolicy.in.attr = &state->objectattr;
309         state->lsa_openpolicy.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
310         state->lsa_openpolicy.out.handle = &state->domain->libnet_ctx->lsa.handle;
311
312         subreq = dcerpc_lsa_OpenPolicy2_r_send(state,
313                                                state->ctx->event_ctx,
314                                                state->domain->libnet_ctx->lsa.pipe->binding_handle,
315                                                &state->lsa_openpolicy);
316         if (composite_nomem(subreq, state->ctx)) return;
317         tevent_req_set_callback(subreq, init_domain_recv_lsa_policy, state);
318 }
319
320 /* Receive a policy handle (or not, and retry the authentication) and
321  * obtain some basic information about the domain */
322
323 static void init_domain_recv_lsa_policy(struct tevent_req *subreq)
324 {
325         struct init_domain_state *state =
326                 tevent_req_callback_data(subreq,
327                 struct init_domain_state);
328
329         state->ctx->status = dcerpc_lsa_OpenPolicy2_r_recv(subreq, state);
330         TALLOC_FREE(subreq);
331         if ((!NT_STATUS_IS_OK(state->ctx->status)
332               || !NT_STATUS_IS_OK(state->lsa_openpolicy.out.result))) {
333                 if (retry_with_schannel(state, state->domain->lsa_binding, 
334                                         &ndr_table_lsarpc,
335                                         init_domain_recv_lsa_pipe)) {
336                         return;
337                 }
338         }
339         if (!composite_is_ok(state->ctx)) return;
340         state->ctx->status = state->lsa_openpolicy.out.result;
341         if (!composite_is_ok(state->ctx)) return;
342
343         state->info = talloc_zero(state->ctx, union lsa_PolicyInformation);
344         if (composite_nomem(state->info, state->ctx)) return;
345
346         state->queryinfo.in.handle = &state->domain->libnet_ctx->lsa.handle;
347         state->queryinfo.in.level = LSA_POLICY_INFO_ACCOUNT_DOMAIN;
348         state->queryinfo.out.info = &state->info;
349
350         subreq = dcerpc_lsa_QueryInfoPolicy_r_send(state,
351                                                    state->ctx->event_ctx,
352                                                    state->domain->libnet_ctx->lsa.pipe->binding_handle,
353                                                    &state->queryinfo);
354         if (composite_nomem(subreq, state->ctx)) return;
355         tevent_req_set_callback(subreq, init_domain_recv_queryinfo, state);
356 }
357
358 static void init_domain_recv_queryinfo(struct tevent_req *subreq)
359 {
360         struct init_domain_state *state =
361                 tevent_req_callback_data(subreq,
362                 struct init_domain_state);
363         struct lsa_DomainInfo *dominfo;
364         struct composite_context *ctx;
365
366         state->ctx->status = dcerpc_lsa_QueryInfoPolicy_r_recv(subreq, state);
367         TALLOC_FREE(subreq);
368         if (!composite_is_ok(state->ctx)) return;
369         state->ctx->status = state->queryinfo.out.result;
370         if (!composite_is_ok(state->ctx)) return;
371
372         if (!dom_sid_equal(state->domain->info->sid, &global_sid_Builtin)) {
373                 dominfo = &(*state->queryinfo.out.info)->account_domain;
374                 
375                 if (strcasecmp(state->domain->info->name, dominfo->name.string) != 0) {
376                         DEBUG(2, ("Expected domain name %s, DC %s said %s\n",
377                                   state->domain->info->name,
378                                   dcerpc_server_name(state->domain->libnet_ctx->lsa.pipe),
379                                   dominfo->name.string));
380                         composite_error(state->ctx, NT_STATUS_INVALID_DOMAIN_STATE);
381                         return;
382                 }
383                 
384                 if (!dom_sid_equal(state->domain->info->sid, dominfo->sid)) {
385                         DEBUG(2, ("Expected domain sid %s, DC %s said %s\n",
386                                   dom_sid_string(state, state->domain->info->sid),
387                                   dcerpc_server_name(state->domain->libnet_ctx->lsa.pipe),
388                                   dom_sid_string(state, dominfo->sid)));
389                         composite_error(state->ctx, NT_STATUS_INVALID_DOMAIN_STATE);
390                         return;
391                 }
392         }
393
394         state->domain->samr_binding = init_domain_binding(state, &ndr_table_samr);
395
396         /* We want to use the same flags as the LSA pipe did (so, if
397          * it needed schannel, then we need that here too) */
398         state->domain->samr_binding->flags = state->domain->lsa_binding->flags;
399
400         state->domain->libnet_ctx->samr.pipe = NULL;
401
402         ctx = wb_connect_samr_send(state, state->domain);
403         composite_continue(state->ctx, ctx, init_domain_recv_samr, state);
404 }
405
406 /* Recv the SAMR details (SamrConnect and SamrOpenDomain handle) and
407  * open an LDAP connection */
408 static void init_domain_recv_samr(struct composite_context *ctx)
409 {
410         struct init_domain_state *state =
411                 talloc_get_type(ctx->async.private_data,
412                                 struct init_domain_state);
413
414         state->ctx->status = wb_connect_samr_recv(
415                 ctx, state->domain,
416                 &state->domain->libnet_ctx->samr.pipe,
417                 &state->domain->libnet_ctx->samr.connect_handle,
418                 &state->domain->libnet_ctx->samr.handle);
419         if (!composite_is_ok(state->ctx)) return;
420
421         talloc_reparent(state, state->domain->libnet_ctx->samr.pipe, state->domain->samr_binding);
422         state->domain->libnet_ctx->samr.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
423         state->domain->libnet_ctx->samr.name = state->domain->info->name;
424         state->domain->libnet_ctx->samr.sid = dom_sid_dup(
425                                                 state->domain->libnet_ctx,
426                                                 state->domain->info->sid);
427
428         composite_done(state->ctx);
429 }
430
431 NTSTATUS wb_init_domain_recv(struct composite_context *c,
432                              TALLOC_CTX *mem_ctx,
433                              struct wbsrv_domain **result)
434 {
435         NTSTATUS status = composite_wait(c);
436         if (NT_STATUS_IS_OK(status)) {
437                 struct init_domain_state *state =
438                         talloc_get_type(c->private_data,
439                                         struct init_domain_state);
440                 *result = talloc_steal(mem_ctx, state->domain);
441         }
442         talloc_free(c);
443         return status;
444 }
445
446 NTSTATUS wb_init_domain(TALLOC_CTX *mem_ctx, struct wbsrv_service *service,
447                         struct wb_dom_info *dom_info,
448                         struct wbsrv_domain **result)
449 {
450         struct composite_context *c =
451                 wb_init_domain_send(mem_ctx, service, dom_info);
452         return wb_init_domain_recv(c, mem_ctx, result);
453 }