winbind: Generate and pass logon ID
[samba.git] / source3 / rpc_client / cli_netlogon.c
1 /*
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.
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 "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"
40 #include "util_tdb.h"
41
42
43 NTSTATUS rpccli_pre_open_netlogon_creds(void)
44 {
45         static bool already_open = false;
46         TALLOC_CTX *frame;
47         struct loadparm_context *lp_ctx;
48         char *fname;
49         struct db_context *global_db;
50         NTSTATUS status;
51
52         if (already_open) {
53                 return NT_STATUS_OK;
54         }
55
56         frame = talloc_stackframe();
57
58         lp_ctx = loadparm_init_s3(frame, loadparm_s3_helpers());
59         if (lp_ctx == NULL) {
60                 TALLOC_FREE(frame);
61                 return NT_STATUS_NO_MEMORY;
62         }
63
64         fname = lpcfg_private_db_path(frame, lp_ctx, "netlogon_creds_cli");
65         if (fname == NULL) {
66                 TALLOC_FREE(frame);
67                 return NT_STATUS_NO_MEMORY;
68         }
69
70         global_db = db_open(frame, 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) {
75                 TALLOC_FREE(frame);
76                 return NT_STATUS_NO_MEMORY;
77         }
78
79         status = netlogon_creds_cli_set_global_db(&global_db);
80         TALLOC_FREE(frame);
81         if (!NT_STATUS_IS_OK(status)) {
82                 return status;
83         }
84
85         already_open = true;
86         return NT_STATUS_OK;
87 }
88
89 static NTSTATUS rpccli_create_netlogon_creds(
90         const char *server_computer,
91         const char *server_netbios_domain,
92         const char *server_dns_domain,
93         const char *client_account,
94         enum netr_SchannelType sec_chan_type,
95         struct messaging_context *msg_ctx,
96         TALLOC_CTX *mem_ctx,
97         struct netlogon_creds_cli_context **netlogon_creds)
98 {
99         TALLOC_CTX *frame = talloc_stackframe();
100         struct loadparm_context *lp_ctx;
101         NTSTATUS status;
102
103         status = rpccli_pre_open_netlogon_creds();
104         if (!NT_STATUS_IS_OK(status)) {
105                 TALLOC_FREE(frame);
106                 return status;
107         }
108
109         lp_ctx = loadparm_init_s3(frame, loadparm_s3_helpers());
110         if (lp_ctx == NULL) {
111                 TALLOC_FREE(frame);
112                 return NT_STATUS_NO_MEMORY;
113         }
114         status = netlogon_creds_cli_context_global(lp_ctx,
115                                                    msg_ctx,
116                                                    client_account,
117                                                    sec_chan_type,
118                                                    server_computer,
119                                                    server_netbios_domain,
120                                                    server_dns_domain,
121                                                    mem_ctx, netlogon_creds);
122         TALLOC_FREE(frame);
123         if (!NT_STATUS_IS_OK(status)) {
124                 return status;
125         }
126
127         return NT_STATUS_OK;
128 }
129
130 NTSTATUS rpccli_create_netlogon_creds_ctx(
131         struct cli_credentials *creds,
132         const char *server_computer,
133         struct messaging_context *msg_ctx,
134         TALLOC_CTX *mem_ctx,
135         struct netlogon_creds_cli_context **creds_ctx)
136 {
137         enum netr_SchannelType sec_chan_type;
138         const char *server_netbios_domain;
139         const char *server_dns_domain;
140         const char *client_account;
141
142         sec_chan_type = cli_credentials_get_secure_channel_type(creds);
143         client_account = cli_credentials_get_username(creds);
144         server_netbios_domain = cli_credentials_get_domain(creds);
145         server_dns_domain = cli_credentials_get_realm(creds);
146
147         return rpccli_create_netlogon_creds(server_computer,
148                                             server_netbios_domain,
149                                             server_dns_domain,
150                                             client_account,
151                                             sec_chan_type,
152                                             msg_ctx, mem_ctx,
153                                             creds_ctx);
154 }
155
156 NTSTATUS rpccli_setup_netlogon_creds_locked(
157         struct cli_state *cli,
158         enum dcerpc_transport_t transport,
159         struct netlogon_creds_cli_context *creds_ctx,
160         bool force_reauth,
161         struct cli_credentials *cli_creds,
162         uint32_t *negotiate_flags)
163 {
164         TALLOC_CTX *frame = talloc_stackframe();
165         struct rpc_pipe_client *netlogon_pipe = NULL;
166         struct netlogon_creds_CredentialState *creds = NULL;
167         uint8_t num_nt_hashes = 0;
168         const struct samr_Password *nt_hashes[2] = { NULL, NULL };
169         uint8_t idx_nt_hashes = 0;
170         NTSTATUS status;
171
172         status = netlogon_creds_cli_get(creds_ctx, frame, &creds);
173         if (NT_STATUS_IS_OK(status)) {
174                 const char *action = "using";
175
176                 if (force_reauth) {
177                         action = "overwrite";
178                 }
179
180                 DEBUG(5,("%s: %s cached netlogon_creds cli[%s/%s] to %s\n",
181                          __FUNCTION__, action,
182                          creds->account_name, creds->computer_name,
183                          smbXcli_conn_remote_name(cli->conn)));
184                 if (!force_reauth) {
185                         goto done;
186                 }
187                 TALLOC_FREE(creds);
188         }
189
190         nt_hashes[0] = cli_credentials_get_nt_hash(cli_creds, talloc_tos());
191         if (nt_hashes[0] == NULL) {
192                 TALLOC_FREE(frame);
193                 return NT_STATUS_NO_MEMORY;
194         }
195         num_nt_hashes = 1;
196
197         nt_hashes[1] = cli_credentials_get_old_nt_hash(cli_creds,
198                                                        talloc_tos());
199         if (nt_hashes[1] != NULL) {
200                 num_nt_hashes = 2;
201         }
202
203         status = cli_rpc_pipe_open_noauth_transport(cli,
204                                                     transport,
205                                                     &ndr_table_netlogon,
206                                                     &netlogon_pipe);
207         if (!NT_STATUS_IS_OK(status)) {
208                 DEBUG(5,("%s: failed to open noauth netlogon connection to %s - %s\n",
209                          __FUNCTION__,
210                          smbXcli_conn_remote_name(cli->conn),
211                          nt_errstr(status)));
212                 TALLOC_FREE(frame);
213                 return status;
214         }
215         talloc_steal(frame, netlogon_pipe);
216
217         status = netlogon_creds_cli_auth(creds_ctx,
218                                          netlogon_pipe->binding_handle,
219                                          num_nt_hashes,
220                                          nt_hashes,
221                                          &idx_nt_hashes);
222         if (!NT_STATUS_IS_OK(status)) {
223                 TALLOC_FREE(frame);
224                 return status;
225         }
226
227         status = netlogon_creds_cli_get(creds_ctx, frame, &creds);
228         if (!NT_STATUS_IS_OK(status)) {
229                 TALLOC_FREE(frame);
230                 return NT_STATUS_INTERNAL_ERROR;
231         }
232
233         DEBUG(5,("%s: using new netlogon_creds cli[%s/%s] to %s\n",
234                  __FUNCTION__,
235                  creds->account_name, creds->computer_name,
236                  smbXcli_conn_remote_name(cli->conn)));
237
238 done:
239         if (negotiate_flags != NULL) {
240                 *negotiate_flags = creds->negotiate_flags;
241         }
242
243         TALLOC_FREE(frame);
244         return NT_STATUS_OK;
245 }
246
247 NTSTATUS rpccli_setup_netlogon_creds(
248         struct cli_state *cli,
249         enum dcerpc_transport_t transport,
250         struct netlogon_creds_cli_context *creds_ctx,
251         bool force_reauth,
252         struct cli_credentials *cli_creds)
253 {
254         TALLOC_CTX *frame = talloc_stackframe();
255         struct netlogon_creds_cli_lck *lck;
256         NTSTATUS status;
257
258         status = netlogon_creds_cli_lck(
259                 creds_ctx, NETLOGON_CREDS_CLI_LCK_EXCLUSIVE,
260                 frame, &lck);
261         if (!NT_STATUS_IS_OK(status)) {
262                 DBG_WARNING("netlogon_creds_cli_lck failed: %s\n",
263                             nt_errstr(status));
264                 TALLOC_FREE(frame);
265                 return status;
266         }
267
268         status = rpccli_setup_netlogon_creds_locked(
269                 cli, transport, creds_ctx, force_reauth, cli_creds, NULL);
270
271         TALLOC_FREE(frame);
272
273         return status;
274 }
275
276 NTSTATUS rpccli_connect_netlogon(
277         struct cli_state *cli,
278         enum dcerpc_transport_t transport,
279         struct netlogon_creds_cli_context *creds_ctx,
280         bool force_reauth,
281         struct cli_credentials *trust_creds,
282         struct rpc_pipe_client **_rpccli)
283 {
284         TALLOC_CTX *frame = talloc_stackframe();
285         struct netlogon_creds_CredentialState *creds = NULL;
286         enum netlogon_creds_cli_lck_type lck_type;
287         enum netr_SchannelType sec_chan_type;
288         struct netlogon_creds_cli_lck *lck = NULL;
289         uint32_t negotiate_flags;
290         uint8_t found_session_key[16] = {0};
291         bool found_existing_creds = false;
292         bool do_serverauth;
293         struct rpc_pipe_client *rpccli;
294         NTSTATUS status;
295         bool retry = false;
296
297         sec_chan_type = cli_credentials_get_secure_channel_type(trust_creds);
298         if (sec_chan_type == SEC_CHAN_NULL) {
299                 DBG_ERR("secure_channel_type gave SEC_CHAN_NULL\n");
300                 status = NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
301                 goto fail;
302         }
303
304 again:
305
306         /*
307          * See whether we can use existing netlogon_creds or
308          * whether we have to serverauthenticate.
309          */
310         status = netlogon_creds_cli_get(creds_ctx, frame, &creds);
311
312         if (NT_STATUS_IS_OK(status)) {
313                 int cmp = memcmp(found_session_key,
314                                  creds->session_key,
315                                  sizeof(found_session_key));
316                 found_existing_creds = (cmp != 0);
317
318                 memcpy(found_session_key,
319                        creds->session_key,
320                        sizeof(found_session_key));
321
322                 TALLOC_FREE(creds);
323         }
324
325         lck_type = (force_reauth || !found_existing_creds) ?
326                 NETLOGON_CREDS_CLI_LCK_EXCLUSIVE :
327                 NETLOGON_CREDS_CLI_LCK_SHARED;
328
329         status = netlogon_creds_cli_lck(creds_ctx, lck_type, frame, &lck);
330         if (!NT_STATUS_IS_OK(status)) {
331                 DBG_DEBUG("netlogon_creds_cli_lck failed: %s\n",
332                           nt_errstr(status));
333                 goto fail;
334         }
335
336         if (!found_existing_creds) {
337                 /*
338                  * Try to find creds under the lock again. Someone
339                  * else might have done it for us.
340                  */
341                 status = netlogon_creds_cli_get(creds_ctx, frame, &creds);
342
343                 if (NT_STATUS_IS_OK(status)) {
344                         int cmp = memcmp(found_session_key,
345                                          creds->session_key,
346                                          sizeof(found_session_key));
347                         found_existing_creds = (cmp != 0);
348
349                         memcpy(found_session_key, creds->session_key,
350                                sizeof(found_session_key));
351
352                         TALLOC_FREE(creds);
353                 }
354         }
355
356         do_serverauth = force_reauth || !found_existing_creds;
357
358         if (!do_serverauth) {
359                 /*
360                  * Do the quick schannel bind without a reauth
361                  */
362                 status = cli_rpc_pipe_open_bind_schannel(
363                         cli, &ndr_table_netlogon, transport, creds_ctx,
364                         &rpccli);
365                 if (!retry && NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_ACCESS_DENIED)) {
366                         DBG_DEBUG("Retrying with serverauthenticate\n");
367                         TALLOC_FREE(lck);
368                         retry = true;
369                         goto again;
370                 }
371                 if (!NT_STATUS_IS_OK(status)) {
372                         DBG_DEBUG("cli_rpc_pipe_open_bind_schannel "
373                                   "failed: %s\n", nt_errstr(status));
374                         goto fail;
375                 }
376                 goto done;
377         }
378
379         if (cli_credentials_is_anonymous(trust_creds)) {
380                 DBG_WARNING("get_trust_credential for %s only gave anonymous,"
381                             "unable to negotiate NETLOGON credentials\n",
382                             netlogon_creds_cli_debug_string(
383                                     creds_ctx, frame));
384                 status = NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
385                 goto fail;
386         }
387
388         status = rpccli_setup_netlogon_creds_locked(
389                 cli, transport, creds_ctx, true, trust_creds,
390                 &negotiate_flags);
391         if (!NT_STATUS_IS_OK(status)) {
392                 DBG_DEBUG("rpccli_setup_netlogon_creds failed for %s, "
393                           "unable to setup NETLOGON credentials: %s\n",
394                           netlogon_creds_cli_debug_string(
395                                   creds_ctx, frame),
396                           nt_errstr(status));
397                 goto fail;
398         }
399
400         if (!(negotiate_flags & NETLOGON_NEG_AUTHENTICATED_RPC)) {
401                 if (lp_winbind_sealed_pipes() || lp_require_strong_key()) {
402                         status = NT_STATUS_DOWNGRADE_DETECTED;
403                         DBG_WARNING("Unwilling to make connection to %s"
404                                     "without connection level security, "
405                                     "must set 'winbind sealed pipes = false'"
406                                     " and 'require strong key = false' "
407                                     "to proceed: %s\n",
408                                     netlogon_creds_cli_debug_string(
409                                             creds_ctx, frame),
410                                     nt_errstr(status));
411                         goto fail;
412                 }
413
414                 status = cli_rpc_pipe_open_noauth_transport(
415                         cli, transport, &ndr_table_netlogon, &rpccli);
416                 if (!NT_STATUS_IS_OK(status)) {
417                         DBG_DEBUG("cli_rpc_pipe_open_noauth_transport "
418                                   "failed: %s\n", nt_errstr(status));
419                         goto fail;
420                 }
421                 goto done;
422         }
423
424         status = cli_rpc_pipe_open_bind_schannel(
425                 cli, &ndr_table_netlogon, transport, creds_ctx, &rpccli);
426         if (!NT_STATUS_IS_OK(status)) {
427                 DBG_DEBUG("cli_rpc_pipe_open_bind_schannel "
428                           "failed: %s\n", nt_errstr(status));
429                 goto fail;
430         }
431
432         status = netlogon_creds_cli_check(creds_ctx, rpccli->binding_handle,
433                                           NULL);
434         if (!NT_STATUS_IS_OK(status)) {
435                 DBG_WARNING("netlogon_creds_cli_check failed: %s\n",
436                             nt_errstr(status));
437                 goto fail;
438         }
439
440 done:
441         *_rpccli = rpccli;
442         status = NT_STATUS_OK;
443 fail:
444         ZERO_STRUCT(found_session_key);
445         TALLOC_FREE(lck);
446         TALLOC_FREE(frame);
447         return status;
448 }
449
450 /* Logon domain user */
451
452 NTSTATUS rpccli_netlogon_password_logon(
453         struct netlogon_creds_cli_context *creds_ctx,
454         struct dcerpc_binding_handle *binding_handle,
455         TALLOC_CTX *mem_ctx,
456         uint32_t logon_parameters,
457         const char *domain,
458         const char *username,
459         const char *password,
460         const char *workstation,
461         const uint64_t logon_id,
462         enum netr_LogonInfoClass logon_type,
463         uint8_t *authoritative,
464         uint32_t *flags,
465         uint16_t *_validation_level,
466         union netr_Validation **_validation)
467 {
468         TALLOC_CTX *frame = talloc_stackframe();
469         NTSTATUS status;
470         union netr_LogonLevel *logon;
471         uint16_t validation_level = 0;
472         union netr_Validation *validation = NULL;
473         char *workstation_slash = NULL;
474
475         logon = talloc_zero(frame, union netr_LogonLevel);
476         if (logon == NULL) {
477                 TALLOC_FREE(frame);
478                 return NT_STATUS_NO_MEMORY;
479         }
480
481         if (workstation == NULL) {
482                 workstation = lp_netbios_name();
483         }
484
485         workstation_slash = talloc_asprintf(frame, "\\\\%s", workstation);
486         if (workstation_slash == NULL) {
487                 TALLOC_FREE(frame);
488                 return NT_STATUS_NO_MEMORY;
489         }
490
491         /* Initialise input parameters */
492
493         switch (logon_type) {
494         case NetlogonInteractiveInformation:
495         case NetlogonInteractiveTransitiveInformation: {
496
497                 struct netr_PasswordInfo *password_info;
498
499                 struct samr_Password lmpassword;
500                 struct samr_Password ntpassword;
501
502                 password_info = talloc_zero(frame, struct netr_PasswordInfo);
503                 if (password_info == NULL) {
504                         TALLOC_FREE(frame);
505                         return NT_STATUS_NO_MEMORY;
506                 }
507
508                 nt_lm_owf_gen(password, ntpassword.hash, lmpassword.hash);
509
510                 password_info->identity_info.domain_name.string         = domain;
511                 password_info->identity_info.parameter_control          = logon_parameters;
512                 password_info->identity_info.logon_id                   = logon_id;
513                 password_info->identity_info.account_name.string        = username;
514                 password_info->identity_info.workstation.string         = workstation_slash;
515
516                 password_info->lmpassword = lmpassword;
517                 password_info->ntpassword = ntpassword;
518
519                 logon->password = password_info;
520
521                 break;
522         }
523         case NetlogonNetworkInformation:
524         case NetlogonNetworkTransitiveInformation: {
525                 struct netr_NetworkInfo *network_info;
526                 uint8_t chal[8];
527                 unsigned char local_lm_response[24];
528                 unsigned char local_nt_response[24];
529                 struct netr_ChallengeResponse lm;
530                 struct netr_ChallengeResponse nt;
531
532                 ZERO_STRUCT(lm);
533                 ZERO_STRUCT(nt);
534
535                 network_info = talloc_zero(frame, struct netr_NetworkInfo);
536                 if (network_info == NULL) {
537                         TALLOC_FREE(frame);
538                         return NT_STATUS_NO_MEMORY;
539                 }
540
541                 generate_random_buffer(chal, 8);
542
543                 SMBencrypt(password, chal, local_lm_response);
544                 SMBNTencrypt(password, chal, local_nt_response);
545
546                 lm.length = 24;
547                 lm.data = local_lm_response;
548
549                 nt.length = 24;
550                 nt.data = local_nt_response;
551
552                 network_info->identity_info.domain_name.string          = domain;
553                 network_info->identity_info.parameter_control           = logon_parameters;
554                 network_info->identity_info.logon_id                    = logon_id;
555                 network_info->identity_info.account_name.string         = username;
556                 network_info->identity_info.workstation.string          = workstation_slash;
557
558                 memcpy(network_info->challenge, chal, 8);
559                 network_info->nt = nt;
560                 network_info->lm = lm;
561
562                 logon->network = network_info;
563
564                 break;
565         }
566         default:
567                 DEBUG(0, ("switch value %d not supported\n",
568                         logon_type));
569                 TALLOC_FREE(frame);
570                 return NT_STATUS_INVALID_INFO_CLASS;
571         }
572
573         status = netlogon_creds_cli_LogonSamLogon(creds_ctx,
574                                                   binding_handle,
575                                                   logon_type,
576                                                   logon,
577                                                   mem_ctx,
578                                                   &validation_level,
579                                                   &validation,
580                                                   authoritative,
581                                                   flags);
582         if (!NT_STATUS_IS_OK(status)) {
583                 TALLOC_FREE(frame);
584                 return status;
585         }
586
587         TALLOC_FREE(frame);
588         *_validation_level = validation_level;
589         *_validation = validation;
590
591         return NT_STATUS_OK;
592 }
593
594 /**
595  * Logon domain user with an 'network' SAM logon
596  *
597  * @param info3 Pointer to a NET_USER_INFO_3 already allocated by the caller.
598  **/
599
600
601 NTSTATUS rpccli_netlogon_network_logon(
602         struct netlogon_creds_cli_context *creds_ctx,
603         struct dcerpc_binding_handle *binding_handle,
604         TALLOC_CTX *mem_ctx,
605         uint32_t logon_parameters,
606         const char *username,
607         const char *domain,
608         const char *workstation,
609         const uint64_t logon_id,
610         const uint8_t chal[8],
611         DATA_BLOB lm_response,
612         DATA_BLOB nt_response,
613         enum netr_LogonInfoClass logon_type,
614         uint8_t *authoritative,
615         uint32_t *flags,
616         uint16_t *_validation_level,
617         union netr_Validation **_validation)
618 {
619         NTSTATUS status;
620         const char *workstation_name_slash;
621         union netr_LogonLevel *logon = NULL;
622         struct netr_NetworkInfo *network_info;
623         uint16_t validation_level = 0;
624         union netr_Validation *validation = NULL;
625         struct netr_ChallengeResponse lm;
626         struct netr_ChallengeResponse nt;
627
628         *_validation = NULL;
629
630         ZERO_STRUCT(lm);
631         ZERO_STRUCT(nt);
632
633         switch (logon_type) {
634         case NetlogonNetworkInformation:
635         case NetlogonNetworkTransitiveInformation:
636                 break;
637         default:
638                 DEBUG(0, ("switch value %d not supported\n",
639                         logon_type));
640                 return NT_STATUS_INVALID_INFO_CLASS;
641         }
642
643         logon = talloc_zero(mem_ctx, union netr_LogonLevel);
644         if (!logon) {
645                 return NT_STATUS_NO_MEMORY;
646         }
647
648         network_info = talloc_zero(mem_ctx, struct netr_NetworkInfo);
649         if (!network_info) {
650                 return NT_STATUS_NO_MEMORY;
651         }
652
653         if (workstation[0] != '\\' && workstation[1] != '\\') {
654                 workstation_name_slash = talloc_asprintf(mem_ctx, "\\\\%s", workstation);
655         } else {
656                 workstation_name_slash = workstation;
657         }
658
659         if (!workstation_name_slash) {
660                 DEBUG(0, ("talloc_asprintf failed!\n"));
661                 return NT_STATUS_NO_MEMORY;
662         }
663
664         /* Initialise input parameters */
665
666         lm.data = lm_response.data;
667         lm.length = lm_response.length;
668         nt.data = nt_response.data;
669         nt.length = nt_response.length;
670
671         network_info->identity_info.domain_name.string          = domain;
672         network_info->identity_info.parameter_control           = logon_parameters;
673         network_info->identity_info.logon_id                    = logon_id;
674         network_info->identity_info.account_name.string         = username;
675         network_info->identity_info.workstation.string          = workstation_name_slash;
676
677         memcpy(network_info->challenge, chal, 8);
678         network_info->nt = nt;
679         network_info->lm = lm;
680
681         logon->network = network_info;
682
683         /* Marshall data and send request */
684
685         status = netlogon_creds_cli_LogonSamLogon(creds_ctx,
686                                                   binding_handle,
687                                                   logon_type,
688                                                   logon,
689                                                   mem_ctx,
690                                                   &validation_level,
691                                                   &validation,
692                                                   authoritative,
693                                                   flags);
694         if (!NT_STATUS_IS_OK(status)) {
695                 return status;
696         }
697
698         *_validation_level = validation_level;
699         *_validation = validation;
700
701         return NT_STATUS_OK;
702 }
703
704 NTSTATUS rpccli_netlogon_interactive_logon(
705         struct netlogon_creds_cli_context *creds_ctx,
706         struct dcerpc_binding_handle *binding_handle,
707         TALLOC_CTX *mem_ctx,
708         uint32_t logon_parameters,
709         const char *username,
710         const char *domain,
711         const char *workstation,
712         const uint64_t logon_id,
713         DATA_BLOB lm_hash,
714         DATA_BLOB nt_hash,
715         enum netr_LogonInfoClass logon_type,
716         uint8_t *authoritative,
717         uint32_t *flags,
718         uint16_t *_validation_level,
719         union netr_Validation **_validation)
720 {
721         TALLOC_CTX *frame = talloc_stackframe();
722         NTSTATUS status;
723         const char *workstation_name_slash;
724         union netr_LogonLevel *logon = NULL;
725         struct netr_PasswordInfo *password_info = NULL;
726         uint16_t validation_level = 0;
727         union netr_Validation *validation = NULL;
728         struct netr_ChallengeResponse lm;
729         struct netr_ChallengeResponse nt;
730
731         *_validation = NULL;
732
733         ZERO_STRUCT(lm);
734         ZERO_STRUCT(nt);
735
736         switch (logon_type) {
737         case NetlogonInteractiveInformation:
738         case NetlogonInteractiveTransitiveInformation:
739                 break;
740         default:
741                 DEBUG(0, ("switch value %d not supported\n",
742                         logon_type));
743                 TALLOC_FREE(frame);
744                 return NT_STATUS_INVALID_INFO_CLASS;
745         }
746
747         logon = talloc_zero(mem_ctx, union netr_LogonLevel);
748         if (logon == NULL) {
749                 TALLOC_FREE(frame);
750                 return NT_STATUS_NO_MEMORY;
751         }
752
753         password_info = talloc_zero(logon, struct netr_PasswordInfo);
754         if (password_info == NULL) {
755                 TALLOC_FREE(frame);
756                 return NT_STATUS_NO_MEMORY;
757         }
758
759         if (workstation[0] != '\\' && workstation[1] != '\\') {
760                 workstation_name_slash = talloc_asprintf(frame, "\\\\%s", workstation);
761         } else {
762                 workstation_name_slash = workstation;
763         }
764
765         if (workstation_name_slash == NULL) {
766                 TALLOC_FREE(frame);
767                 return NT_STATUS_NO_MEMORY;
768         }
769
770         /* Initialise input parameters */
771
772         password_info->identity_info.domain_name.string         = domain;
773         password_info->identity_info.parameter_control          = logon_parameters;
774         password_info->identity_info.logon_id                   = logon_id;
775         password_info->identity_info.account_name.string        = username;
776         password_info->identity_info.workstation.string         = workstation_name_slash;
777
778         if (nt_hash.length != sizeof(password_info->ntpassword.hash)) {
779                 TALLOC_FREE(frame);
780                 return NT_STATUS_INVALID_PARAMETER;
781         }
782         memcpy(password_info->ntpassword.hash, nt_hash.data, nt_hash.length);
783         if (lm_hash.length != 0) {
784                 if (lm_hash.length != sizeof(password_info->lmpassword.hash)) {
785                         TALLOC_FREE(frame);
786                         return NT_STATUS_INVALID_PARAMETER;
787                 }
788                 memcpy(password_info->lmpassword.hash, lm_hash.data, lm_hash.length);
789         }
790
791         logon->password = password_info;
792
793         /* Marshall data and send request */
794
795         status = netlogon_creds_cli_LogonSamLogon(creds_ctx,
796                                                   binding_handle,
797                                                   logon_type,
798                                                   logon,
799                                                   mem_ctx,
800                                                   &validation_level,
801                                                   &validation,
802                                                   authoritative,
803                                                   flags);
804         if (!NT_STATUS_IS_OK(status)) {
805                 TALLOC_FREE(frame);
806                 return status;
807         }
808
809         *_validation_level = validation_level;
810         *_validation = validation;
811
812         TALLOC_FREE(frame);
813         return NT_STATUS_OK;
814 }