2 Unix SMB/CIFS implementation.
4 dcerpc schannel operations
6 Copyright (C) Andrew Tridgell 2004
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004-2005
8 Copyright (C) Rafal Szczesniak 2006
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "auth/auth.h"
26 #include "libcli/composite/composite.h"
27 #include "libcli/auth/libcli_auth.h"
28 #include "librpc/gen_ndr/ndr_netlogon.h"
29 #include "librpc/gen_ndr/ndr_netlogon_c.h"
30 #include "auth/credentials/credentials.h"
31 #include "librpc/rpc/dcerpc_proto.h"
32 #include "param/param.h"
34 struct schannel_key_state
{
35 struct dcerpc_pipe
*pipe
;
36 struct dcerpc_pipe
*pipe2
;
37 struct dcerpc_binding
*binding
;
38 struct cli_credentials
*credentials
;
39 struct netlogon_creds_CredentialState
*creds
;
40 uint32_t negotiate_flags
;
41 struct netr_Credential credentials1
;
42 struct netr_Credential credentials2
;
43 struct netr_Credential credentials3
;
44 struct netr_ServerReqChallenge r
;
45 struct netr_ServerAuthenticate2 a
;
46 const struct samr_Password
*mach_pwd
;
50 static void continue_secondary_connection(struct composite_context
*ctx
);
51 static void continue_bind_auth_none(struct composite_context
*ctx
);
52 static void continue_srv_challenge(struct rpc_request
*req
);
53 static void continue_srv_auth2(struct rpc_request
*req
);
57 Stage 2 of schannel_key: Receive endpoint mapping and request secondary
60 static void continue_epm_map_binding(struct composite_context
*ctx
)
62 struct composite_context
*c
;
63 struct schannel_key_state
*s
;
64 struct composite_context
*sec_conn_req
;
66 c
= talloc_get_type(ctx
->async
.private_data
, struct composite_context
);
67 s
= talloc_get_type(c
->private_data
, struct schannel_key_state
);
69 /* receive endpoint mapping */
70 c
->status
= dcerpc_epm_map_binding_recv(ctx
);
71 if (!NT_STATUS_IS_OK(c
->status
)) {
72 DEBUG(0,("Failed to map DCERPC/TCP NCACN_NP pipe for '%s' - %s\n",
73 NDR_NETLOGON_UUID
, nt_errstr(c
->status
)));
74 composite_error(c
, c
->status
);
78 /* send a request for secondary rpc connection */
79 sec_conn_req
= dcerpc_secondary_connection_send(s
->pipe
,
81 if (composite_nomem(sec_conn_req
, c
)) return;
83 composite_continue(c
, sec_conn_req
, continue_secondary_connection
, c
);
88 Stage 3 of schannel_key: Receive secondary rpc connection and perform
89 non-authenticated bind request
91 static void continue_secondary_connection(struct composite_context
*ctx
)
93 struct composite_context
*c
;
94 struct schannel_key_state
*s
;
95 struct composite_context
*auth_none_req
;
97 c
= talloc_get_type(ctx
->async
.private_data
, struct composite_context
);
98 s
= talloc_get_type(c
->private_data
, struct schannel_key_state
);
100 /* receive secondary rpc connection */
101 c
->status
= dcerpc_secondary_connection_recv(ctx
, &s
->pipe2
);
102 if (!composite_is_ok(c
)) return;
104 talloc_steal(s
, s
->pipe2
);
106 /* initiate a non-authenticated bind */
107 auth_none_req
= dcerpc_bind_auth_none_send(c
, s
->pipe2
, &ndr_table_netlogon
);
108 if (composite_nomem(auth_none_req
, c
)) return;
110 composite_continue(c
, auth_none_req
, continue_bind_auth_none
, c
);
115 Stage 4 of schannel_key: Receive non-authenticated bind and get
118 static void continue_bind_auth_none(struct composite_context
*ctx
)
120 struct composite_context
*c
;
121 struct schannel_key_state
*s
;
122 struct rpc_request
*srv_challenge_req
;
124 c
= talloc_get_type(ctx
->async
.private_data
, struct composite_context
);
125 s
= talloc_get_type(c
->private_data
, struct schannel_key_state
);
127 /* receive result of non-authenticated bind request */
128 c
->status
= dcerpc_bind_auth_none_recv(ctx
);
129 if (!composite_is_ok(c
)) return;
131 /* prepare a challenge request */
132 s
->r
.in
.server_name
= talloc_asprintf(c
, "\\\\%s", dcerpc_server_name(s
->pipe
));
133 if (composite_nomem(s
->r
.in
.server_name
, c
)) return;
134 s
->r
.in
.computer_name
= cli_credentials_get_workstation(s
->credentials
);
135 s
->r
.in
.credentials
= &s
->credentials1
;
136 s
->r
.out
.return_credentials
= &s
->credentials2
;
138 generate_random_buffer(s
->credentials1
.data
, sizeof(s
->credentials1
.data
));
141 request a netlogon challenge - a rpc request over opened secondary pipe
143 srv_challenge_req
= dcerpc_netr_ServerReqChallenge_send(s
->pipe2
, c
, &s
->r
);
144 if (composite_nomem(srv_challenge_req
, c
)) return;
146 composite_continue_rpc(c
, srv_challenge_req
, continue_srv_challenge
, c
);
151 Stage 5 of schannel_key: Receive a challenge and perform authentication
154 static void continue_srv_challenge(struct rpc_request
*req
)
156 struct composite_context
*c
;
157 struct schannel_key_state
*s
;
158 struct rpc_request
*srv_auth2_req
;
160 c
= talloc_get_type(req
->async
.private_data
, struct composite_context
);
161 s
= talloc_get_type(c
->private_data
, struct schannel_key_state
);
163 /* receive rpc request result - netlogon challenge */
164 c
->status
= dcerpc_ndr_request_recv(req
);
165 if (!composite_is_ok(c
)) return;
167 /* prepare credentials for auth2 request */
168 s
->mach_pwd
= cli_credentials_get_nt_hash(s
->credentials
, c
);
170 /* auth2 request arguments */
171 s
->a
.in
.server_name
= s
->r
.in
.server_name
;
172 s
->a
.in
.account_name
= cli_credentials_get_username(s
->credentials
);
173 s
->a
.in
.secure_channel_type
=
174 cli_credentials_get_secure_channel_type(s
->credentials
);
175 s
->a
.in
.computer_name
= cli_credentials_get_workstation(s
->credentials
);
176 s
->a
.in
.negotiate_flags
= &s
->negotiate_flags
;
177 s
->a
.in
.credentials
= &s
->credentials3
;
178 s
->a
.out
.negotiate_flags
= &s
->negotiate_flags
;
179 s
->a
.out
.return_credentials
= &s
->credentials3
;
181 s
->creds
= netlogon_creds_client_init(s
,
182 s
->a
.in
.account_name
,
183 s
->a
.in
.computer_name
,
184 &s
->credentials1
, &s
->credentials2
,
185 s
->mach_pwd
, &s
->credentials3
, s
->negotiate_flags
);
186 if (composite_nomem(s
->creds
, c
)) {
190 authenticate on the netlogon pipe - a rpc request over secondary pipe
192 srv_auth2_req
= dcerpc_netr_ServerAuthenticate2_send(s
->pipe2
, c
, &s
->a
);
193 if (composite_nomem(srv_auth2_req
, c
)) return;
195 composite_continue_rpc(c
, srv_auth2_req
, continue_srv_auth2
, c
);
200 Stage 6 of schannel_key: Receive authentication request result and verify
203 static void continue_srv_auth2(struct rpc_request
*req
)
205 struct composite_context
*c
;
206 struct schannel_key_state
*s
;
208 c
= talloc_get_type(req
->async
.private_data
, struct composite_context
);
209 s
= talloc_get_type(c
->private_data
, struct schannel_key_state
);
211 /* receive rpc request result - auth2 credentials */
212 c
->status
= dcerpc_ndr_request_recv(req
);
213 if (!composite_is_ok(c
)) return;
215 /* verify credentials */
216 if (!netlogon_creds_client_check(s
->creds
, s
->a
.out
.return_credentials
)) {
217 composite_error(c
, NT_STATUS_UNSUCCESSFUL
);
221 /* setup current netlogon credentials */
222 cli_credentials_set_netlogon_creds(s
->credentials
, s
->creds
);
229 Initiate establishing a schannel key using netlogon challenge
232 struct composite_context
*dcerpc_schannel_key_send(TALLOC_CTX
*mem_ctx
,
233 struct dcerpc_pipe
*p
,
234 struct cli_credentials
*credentials
,
235 struct loadparm_context
*lp_ctx
)
237 struct composite_context
*c
;
238 struct schannel_key_state
*s
;
239 struct composite_context
*epm_map_req
;
241 /* composite context allocation and setup */
242 c
= composite_create(mem_ctx
, p
->conn
->event_ctx
);
243 if (c
== NULL
) return NULL
;
245 s
= talloc_zero(c
, struct schannel_key_state
);
246 if (composite_nomem(s
, c
)) return c
;
249 /* store parameters in the state structure */
251 s
->credentials
= credentials
;
253 /* allocate credentials */
254 /* type of authentication depends on schannel type */
255 if (s
->pipe
->conn
->flags
& DCERPC_SCHANNEL_128
) {
256 s
->negotiate_flags
= NETLOGON_NEG_AUTH2_ADS_FLAGS
;
258 s
->negotiate_flags
= NETLOGON_NEG_AUTH2_FLAGS
;
261 /* allocate binding structure */
262 s
->binding
= talloc(c
, struct dcerpc_binding
);
263 if (composite_nomem(s
->binding
, c
)) return c
;
265 *s
->binding
= *s
->pipe
->binding
;
267 /* request the netlogon endpoint mapping */
268 epm_map_req
= dcerpc_epm_map_binding_send(c
, s
->binding
,
270 s
->pipe
->conn
->event_ctx
,
272 if (composite_nomem(epm_map_req
, c
)) return c
;
274 composite_continue(c
, epm_map_req
, continue_epm_map_binding
, c
);
280 Receive result of schannel key request
282 NTSTATUS
dcerpc_schannel_key_recv(struct composite_context
*c
)
284 NTSTATUS status
= composite_wait(c
);
291 struct auth_schannel_state
{
292 struct dcerpc_pipe
*pipe
;
293 struct cli_credentials
*credentials
;
294 const struct ndr_interface_table
*table
;
295 struct loadparm_context
*lp_ctx
;
300 static void continue_bind_auth(struct composite_context
*ctx
);
304 Stage 2 of auth_schannel: Receive schannel key and intitiate an
305 authenticated bind using received credentials
307 static void continue_schannel_key(struct composite_context
*ctx
)
309 struct composite_context
*auth_req
;
310 struct composite_context
*c
= talloc_get_type(ctx
->async
.private_data
,
311 struct composite_context
);
312 struct auth_schannel_state
*s
= talloc_get_type(c
->private_data
,
313 struct auth_schannel_state
);
315 /* receive schannel key */
316 c
->status
= dcerpc_schannel_key_recv(ctx
);
317 if (!composite_is_ok(c
)) {
318 DEBUG(1, ("Failed to setup credentials for account %s: %s\n",
319 cli_credentials_get_username(s
->credentials
), nt_errstr(c
->status
)));
323 /* send bind auth request with received creds */
324 auth_req
= dcerpc_bind_auth_send(c
, s
->pipe
, s
->table
, s
->credentials
,
325 lp_gensec_settings(c
, s
->lp_ctx
),
326 DCERPC_AUTH_TYPE_SCHANNEL
, s
->auth_level
,
328 if (composite_nomem(auth_req
, c
)) return;
330 composite_continue(c
, auth_req
, continue_bind_auth
, c
);
335 Stage 3 of auth_schannel: Receivce result of authenticated bind
336 and say if we're done ok.
338 static void continue_bind_auth(struct composite_context
*ctx
)
340 struct composite_context
*c
= talloc_get_type(ctx
->async
.private_data
,
341 struct composite_context
);
343 c
->status
= dcerpc_bind_auth_recv(ctx
);
344 if (!composite_is_ok(c
)) return;
351 Initiate schannel authentication request
353 struct composite_context
*dcerpc_bind_auth_schannel_send(TALLOC_CTX
*tmp_ctx
,
354 struct dcerpc_pipe
*p
,
355 const struct ndr_interface_table
*table
,
356 struct cli_credentials
*credentials
,
357 struct loadparm_context
*lp_ctx
,
360 struct composite_context
*c
;
361 struct auth_schannel_state
*s
;
362 struct composite_context
*schan_key_req
;
364 /* composite context allocation and setup */
365 c
= composite_create(tmp_ctx
, p
->conn
->event_ctx
);
366 if (c
== NULL
) return NULL
;
368 s
= talloc_zero(c
, struct auth_schannel_state
);
369 if (composite_nomem(s
, c
)) return c
;
372 /* store parameters in the state structure */
374 s
->credentials
= credentials
;
376 s
->auth_level
= auth_level
;
379 /* start getting schannel key first */
380 schan_key_req
= dcerpc_schannel_key_send(c
, p
, credentials
, lp_ctx
);
381 if (composite_nomem(schan_key_req
, c
)) return c
;
383 composite_continue(c
, schan_key_req
, continue_schannel_key
, c
);
389 Receive result of schannel authentication request
391 NTSTATUS
dcerpc_bind_auth_schannel_recv(struct composite_context
*c
)
393 NTSTATUS status
= composite_wait(c
);
401 Perform schannel authenticated bind - sync version
403 _PUBLIC_ NTSTATUS
dcerpc_bind_auth_schannel(TALLOC_CTX
*tmp_ctx
,
404 struct dcerpc_pipe
*p
,
405 const struct ndr_interface_table
*table
,
406 struct cli_credentials
*credentials
,
407 struct loadparm_context
*lp_ctx
,
410 struct composite_context
*c
;
412 c
= dcerpc_bind_auth_schannel_send(tmp_ctx
, p
, table
, credentials
, lp_ctx
,
414 return dcerpc_bind_auth_schannel_recv(c
);