2 Unix SMB/CIFS implementation.
3 NT Domain Authentication SMB / MSRPC client
4 Copyright (C) Andrew Tridgell 1992-2000
5 Copyright (C) Jeremy Allison 1998.
6 Largely re-written by Jeremy Allison (C) 2005.
7 Copyright (C) Guenther Deschner 2008.
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.
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.
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/>.
24 #include "system/filesys.h"
25 #include "libsmb/libsmb.h"
26 #include "rpc_client/rpc_client.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "../libcli/auth/libcli_auth.h"
29 #include "../libcli/auth/netlogon_creds_cli.h"
30 #include "../librpc/gen_ndr/ndr_netlogon_c.h"
31 #include "../librpc/gen_ndr/schannel.h"
32 #include "rpc_client/cli_netlogon.h"
33 #include "rpc_client/init_netlogon.h"
34 #include "rpc_client/util_netlogon.h"
35 #include "../libcli/security/security.h"
36 #include "lib/param/param.h"
37 #include "libcli/smb/smbXcli_base.h"
38 #include "dbwrap/dbwrap.h"
39 #include "dbwrap/dbwrap_open.h"
43 NTSTATUS
rpccli_pre_open_netlogon_creds(void)
45 static bool already_open
= false;
47 struct loadparm_context
*lp_ctx
;
49 struct db_context
*global_db
;
56 frame
= talloc_stackframe();
58 lp_ctx
= loadparm_init_s3(frame
, loadparm_s3_helpers());
61 return NT_STATUS_NO_MEMORY
;
64 fname
= lpcfg_private_db_path(frame
, lp_ctx
, "netlogon_creds_cli");
67 return NT_STATUS_NO_MEMORY
;
70 global_db
= db_open(talloc_autofree_context(), fname
,
71 0, TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
,
72 O_RDWR
|O_CREAT
, 0600, DBWRAP_LOCK_ORDER_2
,
73 DBWRAP_FLAG_OPTIMIZE_READONLY_ACCESS
);
74 if (global_db
== NULL
) {
76 return NT_STATUS_NO_MEMORY
;
79 status
= netlogon_creds_cli_set_global_db(&global_db
);
81 if (!NT_STATUS_IS_OK(status
)) {
89 NTSTATUS
rpccli_create_netlogon_creds(const char *server_computer
,
90 const char *server_netbios_domain
,
91 const char *client_account
,
92 enum netr_SchannelType sec_chan_type
,
93 struct messaging_context
*msg_ctx
,
95 struct netlogon_creds_cli_context
**netlogon_creds
)
97 TALLOC_CTX
*frame
= talloc_stackframe();
98 struct loadparm_context
*lp_ctx
;
101 status
= rpccli_pre_open_netlogon_creds();
102 if (!NT_STATUS_IS_OK(status
)) {
107 lp_ctx
= loadparm_init_s3(frame
, loadparm_s3_helpers());
108 if (lp_ctx
== NULL
) {
110 return NT_STATUS_NO_MEMORY
;
112 status
= netlogon_creds_cli_context_global(lp_ctx
,
117 server_netbios_domain
,
118 mem_ctx
, netlogon_creds
);
120 if (!NT_STATUS_IS_OK(status
)) {
127 NTSTATUS
rpccli_create_netlogon_creds_with_creds(struct cli_credentials
*creds
,
128 const char *server_computer
,
129 struct messaging_context
*msg_ctx
,
131 struct netlogon_creds_cli_context
**netlogon_creds
)
133 enum netr_SchannelType sec_chan_type
;
134 const char *server_netbios_domain
;
135 const char *client_account
;
137 sec_chan_type
= cli_credentials_get_secure_channel_type(creds
);
138 if (sec_chan_type
== SEC_CHAN_NULL
) {
139 return NT_STATUS_INVALID_PARAMETER_MIX
;
142 client_account
= cli_credentials_get_username(creds
);
143 server_netbios_domain
= cli_credentials_get_domain(creds
);
145 return rpccli_create_netlogon_creds(server_computer
,
146 server_netbios_domain
,
153 NTSTATUS
rpccli_setup_netlogon_creds(struct cli_state
*cli
,
154 enum dcerpc_transport_t transport
,
155 struct netlogon_creds_cli_context
*netlogon_creds
,
157 struct samr_Password current_nt_hash
,
158 const struct samr_Password
*previous_nt_hash
)
160 TALLOC_CTX
*frame
= talloc_stackframe();
161 struct rpc_pipe_client
*netlogon_pipe
= NULL
;
162 struct netlogon_creds_CredentialState
*creds
= NULL
;
165 status
= netlogon_creds_cli_get(netlogon_creds
,
167 if (NT_STATUS_IS_OK(status
)) {
168 const char *action
= "using";
171 action
= "overwrite";
174 DEBUG(5,("%s: %s cached netlogon_creds cli[%s/%s] to %s\n",
175 __FUNCTION__
, action
,
176 creds
->account_name
, creds
->computer_name
,
177 smbXcli_conn_remote_name(cli
->conn
)));
185 status
= cli_rpc_pipe_open_noauth_transport(cli
,
189 if (!NT_STATUS_IS_OK(status
)) {
190 DEBUG(5,("%s: failed to open noauth netlogon connection to %s - %s\n",
192 smbXcli_conn_remote_name(cli
->conn
),
197 talloc_steal(frame
, netlogon_pipe
);
199 status
= netlogon_creds_cli_auth(netlogon_creds
,
200 netlogon_pipe
->binding_handle
,
203 if (!NT_STATUS_IS_OK(status
)) {
208 status
= netlogon_creds_cli_get(netlogon_creds
,
210 if (!NT_STATUS_IS_OK(status
)) {
212 return NT_STATUS_INTERNAL_ERROR
;
215 DEBUG(5,("%s: using new netlogon_creds cli[%s/%s] to %s\n",
217 creds
->account_name
, creds
->computer_name
,
218 smbXcli_conn_remote_name(cli
->conn
)));
224 NTSTATUS
rpccli_setup_netlogon_creds_with_creds(struct cli_state
*cli
,
225 enum dcerpc_transport_t transport
,
226 struct netlogon_creds_cli_context
*netlogon_creds
,
228 struct cli_credentials
*creds
)
230 struct samr_Password
*current_nt_hash
= NULL
;
231 struct samr_Password
*previous_nt_hash
= NULL
;
234 current_nt_hash
= cli_credentials_get_nt_hash(creds
, talloc_tos());
235 if (current_nt_hash
== NULL
) {
236 return NT_STATUS_NO_MEMORY
;
239 previous_nt_hash
= cli_credentials_get_old_nt_hash(creds
, talloc_tos());
241 status
= rpccli_setup_netlogon_creds(cli
, transport
,
246 TALLOC_FREE(current_nt_hash
);
247 TALLOC_FREE(previous_nt_hash
);
248 if (!NT_STATUS_IS_OK(status
)) {
255 static NTSTATUS
map_validation_to_info3(TALLOC_CTX
*mem_ctx
,
256 uint16_t validation_level
,
257 union netr_Validation
*validation
,
258 struct netr_SamInfo3
**info3_p
)
260 struct netr_SamInfo3
*info3
;
263 if (validation
== NULL
) {
264 return NT_STATUS_INVALID_PARAMETER
;
267 switch (validation_level
) {
269 if (validation
->sam3
== NULL
) {
270 return NT_STATUS_INVALID_PARAMETER
;
273 info3
= talloc_move(mem_ctx
, &validation
->sam3
);
276 if (validation
->sam6
== NULL
) {
277 return NT_STATUS_INVALID_PARAMETER
;
280 info3
= talloc_zero(mem_ctx
, struct netr_SamInfo3
);
282 return NT_STATUS_NO_MEMORY
;
284 status
= copy_netr_SamBaseInfo(info3
, &validation
->sam6
->base
, &info3
->base
);
285 if (!NT_STATUS_IS_OK(status
)) {
290 info3
->sidcount
= validation
->sam6
->sidcount
;
291 info3
->sids
= talloc_move(info3
, &validation
->sam6
->sids
);
294 return NT_STATUS_BAD_VALIDATION_CLASS
;
302 /* Logon domain user */
304 NTSTATUS
rpccli_netlogon_password_logon(struct netlogon_creds_cli_context
*creds
,
305 struct dcerpc_binding_handle
*binding_handle
,
307 uint32_t logon_parameters
,
309 const char *username
,
310 const char *password
,
311 const char *workstation
,
312 enum netr_LogonInfoClass logon_type
,
313 struct netr_SamInfo3
**info3
)
315 TALLOC_CTX
*frame
= talloc_stackframe();
317 union netr_LogonLevel
*logon
;
318 uint16_t validation_level
= 0;
319 union netr_Validation
*validation
= NULL
;
320 uint8_t authoritative
= 0;
322 char *workstation_slash
= NULL
;
324 logon
= talloc_zero(frame
, union netr_LogonLevel
);
327 return NT_STATUS_NO_MEMORY
;
330 if (workstation
== NULL
) {
331 workstation
= lp_netbios_name();
334 workstation_slash
= talloc_asprintf(frame
, "\\\\%s", workstation
);
335 if (workstation_slash
== NULL
) {
337 return NT_STATUS_NO_MEMORY
;
340 /* Initialise input parameters */
342 switch (logon_type
) {
343 case NetlogonInteractiveInformation
: {
345 struct netr_PasswordInfo
*password_info
;
347 struct samr_Password lmpassword
;
348 struct samr_Password ntpassword
;
350 password_info
= talloc_zero(frame
, struct netr_PasswordInfo
);
351 if (password_info
== NULL
) {
353 return NT_STATUS_NO_MEMORY
;
356 nt_lm_owf_gen(password
, ntpassword
.hash
, lmpassword
.hash
);
358 password_info
->identity_info
.domain_name
.string
= domain
;
359 password_info
->identity_info
.parameter_control
= logon_parameters
;
360 password_info
->identity_info
.logon_id_low
= 0xdead;
361 password_info
->identity_info
.logon_id_high
= 0xbeef;
362 password_info
->identity_info
.account_name
.string
= username
;
363 password_info
->identity_info
.workstation
.string
= workstation_slash
;
365 password_info
->lmpassword
= lmpassword
;
366 password_info
->ntpassword
= ntpassword
;
368 logon
->password
= password_info
;
372 case NetlogonNetworkInformation
: {
373 struct netr_NetworkInfo
*network_info
;
375 unsigned char local_lm_response
[24];
376 unsigned char local_nt_response
[24];
377 struct netr_ChallengeResponse lm
;
378 struct netr_ChallengeResponse nt
;
383 network_info
= talloc_zero(frame
, struct netr_NetworkInfo
);
384 if (network_info
== NULL
) {
386 return NT_STATUS_NO_MEMORY
;
389 generate_random_buffer(chal
, 8);
391 SMBencrypt(password
, chal
, local_lm_response
);
392 SMBNTencrypt(password
, chal
, local_nt_response
);
395 lm
.data
= local_lm_response
;
398 nt
.data
= local_nt_response
;
400 network_info
->identity_info
.domain_name
.string
= domain
;
401 network_info
->identity_info
.parameter_control
= logon_parameters
;
402 network_info
->identity_info
.logon_id_low
= 0xdead;
403 network_info
->identity_info
.logon_id_high
= 0xbeef;
404 network_info
->identity_info
.account_name
.string
= username
;
405 network_info
->identity_info
.workstation
.string
= workstation_slash
;
407 memcpy(network_info
->challenge
, chal
, 8);
408 network_info
->nt
= nt
;
409 network_info
->lm
= lm
;
411 logon
->network
= network_info
;
416 DEBUG(0, ("switch value %d not supported\n",
419 return NT_STATUS_INVALID_INFO_CLASS
;
422 status
= netlogon_creds_cli_LogonSamLogon(creds
,
431 if (!NT_STATUS_IS_OK(status
)) {
436 status
= map_validation_to_info3(mem_ctx
,
437 validation_level
, validation
,
440 if (!NT_STATUS_IS_OK(status
)) {
449 * Logon domain user with an 'network' SAM logon
451 * @param info3 Pointer to a NET_USER_INFO_3 already allocated by the caller.
455 NTSTATUS
rpccli_netlogon_network_logon(struct netlogon_creds_cli_context
*creds
,
456 struct dcerpc_binding_handle
*binding_handle
,
458 uint32_t logon_parameters
,
459 const char *username
,
461 const char *workstation
,
463 DATA_BLOB lm_response
,
464 DATA_BLOB nt_response
,
465 uint8_t *authoritative
,
467 struct netr_SamInfo3
**info3
)
470 const char *workstation_name_slash
;
471 union netr_LogonLevel
*logon
= NULL
;
472 struct netr_NetworkInfo
*network_info
;
473 uint16_t validation_level
= 0;
474 union netr_Validation
*validation
= NULL
;
475 uint8_t _authoritative
= 0;
477 struct netr_ChallengeResponse lm
;
478 struct netr_ChallengeResponse nt
;
482 if (authoritative
== NULL
) {
483 authoritative
= &_authoritative
;
492 logon
= talloc_zero(mem_ctx
, union netr_LogonLevel
);
494 return NT_STATUS_NO_MEMORY
;
497 network_info
= talloc_zero(mem_ctx
, struct netr_NetworkInfo
);
499 return NT_STATUS_NO_MEMORY
;
502 if (workstation
[0] != '\\' && workstation
[1] != '\\') {
503 workstation_name_slash
= talloc_asprintf(mem_ctx
, "\\\\%s", workstation
);
505 workstation_name_slash
= workstation
;
508 if (!workstation_name_slash
) {
509 DEBUG(0, ("talloc_asprintf failed!\n"));
510 return NT_STATUS_NO_MEMORY
;
513 /* Initialise input parameters */
515 lm
.data
= lm_response
.data
;
516 lm
.length
= lm_response
.length
;
517 nt
.data
= nt_response
.data
;
518 nt
.length
= nt_response
.length
;
520 network_info
->identity_info
.domain_name
.string
= domain
;
521 network_info
->identity_info
.parameter_control
= logon_parameters
;
522 network_info
->identity_info
.logon_id_low
= 0xdead;
523 network_info
->identity_info
.logon_id_high
= 0xbeef;
524 network_info
->identity_info
.account_name
.string
= username
;
525 network_info
->identity_info
.workstation
.string
= workstation_name_slash
;
527 memcpy(network_info
->challenge
, chal
, 8);
528 network_info
->nt
= nt
;
529 network_info
->lm
= lm
;
531 logon
->network
= network_info
;
533 /* Marshall data and send request */
535 status
= netlogon_creds_cli_LogonSamLogon(creds
,
537 NetlogonNetworkInformation
,
544 if (!NT_STATUS_IS_OK(status
)) {
548 status
= map_validation_to_info3(mem_ctx
,
549 validation_level
, validation
,
551 if (!NT_STATUS_IS_OK(status
)) {