s3:cli_netlogon: add rpccli_{create,setup}_netlogon_creds_with_creds() helper functions
[obnox/samba/samba-obnox.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(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) {
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 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,
94                                       TALLOC_CTX *mem_ctx,
95                                       struct netlogon_creds_cli_context **netlogon_creds)
96 {
97         TALLOC_CTX *frame = talloc_stackframe();
98         struct loadparm_context *lp_ctx;
99         NTSTATUS status;
100
101         status = rpccli_pre_open_netlogon_creds();
102         if (!NT_STATUS_IS_OK(status)) {
103                 TALLOC_FREE(frame);
104                 return status;
105         }
106
107         lp_ctx = loadparm_init_s3(frame, loadparm_s3_helpers());
108         if (lp_ctx == NULL) {
109                 TALLOC_FREE(frame);
110                 return NT_STATUS_NO_MEMORY;
111         }
112         status = netlogon_creds_cli_context_global(lp_ctx,
113                                                    msg_ctx,
114                                                    client_account,
115                                                    sec_chan_type,
116                                                    server_computer,
117                                                    server_netbios_domain,
118                                                    mem_ctx, netlogon_creds);
119         TALLOC_FREE(frame);
120         if (!NT_STATUS_IS_OK(status)) {
121                 return status;
122         }
123
124         return NT_STATUS_OK;
125 }
126
127 NTSTATUS rpccli_create_netlogon_creds_with_creds(struct cli_credentials *creds,
128                                                  const char *server_computer,
129                                                  struct messaging_context *msg_ctx,
130                                                  TALLOC_CTX *mem_ctx,
131                                                  struct netlogon_creds_cli_context **netlogon_creds)
132 {
133         enum netr_SchannelType sec_chan_type;
134         const char *server_netbios_domain;
135         const char *client_account;
136
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;
140         }
141
142         client_account = cli_credentials_get_username(creds);
143         server_netbios_domain = cli_credentials_get_domain(creds);
144
145         return rpccli_create_netlogon_creds(server_computer,
146                                             server_netbios_domain,
147                                             client_account,
148                                             sec_chan_type,
149                                             msg_ctx, mem_ctx,
150                                             netlogon_creds);
151 }
152
153 NTSTATUS rpccli_setup_netlogon_creds(struct cli_state *cli,
154                                      enum dcerpc_transport_t transport,
155                                      struct netlogon_creds_cli_context *netlogon_creds,
156                                      bool force_reauth,
157                                      struct samr_Password current_nt_hash,
158                                      const struct samr_Password *previous_nt_hash)
159 {
160         TALLOC_CTX *frame = talloc_stackframe();
161         struct rpc_pipe_client *netlogon_pipe = NULL;
162         struct netlogon_creds_CredentialState *creds = NULL;
163         NTSTATUS status;
164
165         status = netlogon_creds_cli_get(netlogon_creds,
166                                         frame, &creds);
167         if (NT_STATUS_IS_OK(status)) {
168                 const char *action = "using";
169
170                 if (force_reauth) {
171                         action = "overwrite";
172                 }
173
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)));
178                 if (!force_reauth) {
179                         TALLOC_FREE(frame);
180                         return NT_STATUS_OK;
181                 }
182                 TALLOC_FREE(creds);
183         }
184
185         status = cli_rpc_pipe_open_noauth_transport(cli,
186                                                     transport,
187                                                     &ndr_table_netlogon,
188                                                     &netlogon_pipe);
189         if (!NT_STATUS_IS_OK(status)) {
190                 DEBUG(5,("%s: failed to open noauth netlogon connection to %s - %s\n",
191                          __FUNCTION__,
192                          smbXcli_conn_remote_name(cli->conn),
193                          nt_errstr(status)));
194                 TALLOC_FREE(frame);
195                 return status;
196         }
197         talloc_steal(frame, netlogon_pipe);
198
199         status = netlogon_creds_cli_auth(netlogon_creds,
200                                          netlogon_pipe->binding_handle,
201                                          current_nt_hash,
202                                          previous_nt_hash);
203         if (!NT_STATUS_IS_OK(status)) {
204                 TALLOC_FREE(frame);
205                 return status;
206         }
207
208         status = netlogon_creds_cli_get(netlogon_creds,
209                                         frame, &creds);
210         if (!NT_STATUS_IS_OK(status)) {
211                 TALLOC_FREE(frame);
212                 return NT_STATUS_INTERNAL_ERROR;
213         }
214
215         DEBUG(5,("%s: using new netlogon_creds cli[%s/%s] to %s\n",
216                  __FUNCTION__,
217                  creds->account_name, creds->computer_name,
218                  smbXcli_conn_remote_name(cli->conn)));
219
220         TALLOC_FREE(frame);
221         return NT_STATUS_OK;
222 }
223
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,
227                                                 bool force_reauth,
228                                                 struct cli_credentials *creds)
229 {
230         struct samr_Password *current_nt_hash = NULL;
231         struct samr_Password *previous_nt_hash = NULL;
232         NTSTATUS status;
233
234         current_nt_hash = cli_credentials_get_nt_hash(creds, talloc_tos());
235         if (current_nt_hash == NULL) {
236                 return NT_STATUS_NO_MEMORY;
237         }
238
239         status = rpccli_setup_netlogon_creds(cli, transport,
240                                              netlogon_creds,
241                                              force_reauth,
242                                              *current_nt_hash,
243                                              previous_nt_hash);
244         TALLOC_FREE(current_nt_hash);
245         if (!NT_STATUS_IS_OK(status)) {
246                 return status;
247         }
248
249         return NT_STATUS_OK;
250 }
251
252 static NTSTATUS map_validation_to_info3(TALLOC_CTX *mem_ctx,
253                                         uint16_t validation_level,
254                                         union netr_Validation *validation,
255                                         struct netr_SamInfo3 **info3_p)
256 {
257         struct netr_SamInfo3 *info3;
258         NTSTATUS status;
259
260         if (validation == NULL) {
261                 return NT_STATUS_INVALID_PARAMETER;
262         }
263
264         switch (validation_level) {
265         case 3:
266                 if (validation->sam3 == NULL) {
267                         return NT_STATUS_INVALID_PARAMETER;
268                 }
269
270                 info3 = talloc_move(mem_ctx, &validation->sam3);
271                 break;
272         case 6:
273                 if (validation->sam6 == NULL) {
274                         return NT_STATUS_INVALID_PARAMETER;
275                 }
276
277                 info3 = talloc_zero(mem_ctx, struct netr_SamInfo3);
278                 if (info3 == NULL) {
279                         return NT_STATUS_NO_MEMORY;
280                 }
281                 status = copy_netr_SamBaseInfo(info3, &validation->sam6->base, &info3->base);
282                 if (!NT_STATUS_IS_OK(status)) {
283                         TALLOC_FREE(info3);
284                         return status;
285                 }
286
287                 info3->sidcount = validation->sam6->sidcount;
288                 info3->sids = talloc_move(info3, &validation->sam6->sids);
289                 break;
290         default:
291                 return NT_STATUS_BAD_VALIDATION_CLASS;
292         }
293
294         *info3_p = info3;
295
296         return NT_STATUS_OK;
297 }
298
299 /* Logon domain user */
300
301 NTSTATUS rpccli_netlogon_password_logon(struct netlogon_creds_cli_context *creds,
302                                         struct dcerpc_binding_handle *binding_handle,
303                                         TALLOC_CTX *mem_ctx,
304                                         uint32_t logon_parameters,
305                                         const char *domain,
306                                         const char *username,
307                                         const char *password,
308                                         const char *workstation,
309                                         enum netr_LogonInfoClass logon_type,
310                                         struct netr_SamInfo3 **info3)
311 {
312         TALLOC_CTX *frame = talloc_stackframe();
313         NTSTATUS status;
314         union netr_LogonLevel *logon;
315         uint16_t validation_level = 0;
316         union netr_Validation *validation = NULL;
317         uint8_t authoritative = 0;
318         uint32_t flags = 0;
319         char *workstation_slash = NULL;
320
321         logon = talloc_zero(frame, union netr_LogonLevel);
322         if (logon == NULL) {
323                 TALLOC_FREE(frame);
324                 return NT_STATUS_NO_MEMORY;
325         }
326
327         if (workstation == NULL) {
328                 workstation = lp_netbios_name();
329         }
330
331         workstation_slash = talloc_asprintf(frame, "\\\\%s", workstation);
332         if (workstation_slash == NULL) {
333                 TALLOC_FREE(frame);
334                 return NT_STATUS_NO_MEMORY;
335         }
336
337         /* Initialise input parameters */
338
339         switch (logon_type) {
340         case NetlogonInteractiveInformation: {
341
342                 struct netr_PasswordInfo *password_info;
343
344                 struct samr_Password lmpassword;
345                 struct samr_Password ntpassword;
346
347                 password_info = talloc_zero(frame, struct netr_PasswordInfo);
348                 if (password_info == NULL) {
349                         TALLOC_FREE(frame);
350                         return NT_STATUS_NO_MEMORY;
351                 }
352
353                 nt_lm_owf_gen(password, ntpassword.hash, lmpassword.hash);
354
355                 password_info->identity_info.domain_name.string         = domain;
356                 password_info->identity_info.parameter_control          = logon_parameters;
357                 password_info->identity_info.logon_id_low               = 0xdead;
358                 password_info->identity_info.logon_id_high              = 0xbeef;
359                 password_info->identity_info.account_name.string        = username;
360                 password_info->identity_info.workstation.string         = workstation_slash;
361
362                 password_info->lmpassword = lmpassword;
363                 password_info->ntpassword = ntpassword;
364
365                 logon->password = password_info;
366
367                 break;
368         }
369         case NetlogonNetworkInformation: {
370                 struct netr_NetworkInfo *network_info;
371                 uint8 chal[8];
372                 unsigned char local_lm_response[24];
373                 unsigned char local_nt_response[24];
374                 struct netr_ChallengeResponse lm;
375                 struct netr_ChallengeResponse nt;
376
377                 ZERO_STRUCT(lm);
378                 ZERO_STRUCT(nt);
379
380                 network_info = talloc_zero(frame, struct netr_NetworkInfo);
381                 if (network_info == NULL) {
382                         TALLOC_FREE(frame);
383                         return NT_STATUS_NO_MEMORY;
384                 }
385
386                 generate_random_buffer(chal, 8);
387
388                 SMBencrypt(password, chal, local_lm_response);
389                 SMBNTencrypt(password, chal, local_nt_response);
390
391                 lm.length = 24;
392                 lm.data = local_lm_response;
393
394                 nt.length = 24;
395                 nt.data = local_nt_response;
396
397                 network_info->identity_info.domain_name.string          = domain;
398                 network_info->identity_info.parameter_control           = logon_parameters;
399                 network_info->identity_info.logon_id_low                = 0xdead;
400                 network_info->identity_info.logon_id_high               = 0xbeef;
401                 network_info->identity_info.account_name.string         = username;
402                 network_info->identity_info.workstation.string          = workstation_slash;
403
404                 memcpy(network_info->challenge, chal, 8);
405                 network_info->nt = nt;
406                 network_info->lm = lm;
407
408                 logon->network = network_info;
409
410                 break;
411         }
412         default:
413                 DEBUG(0, ("switch value %d not supported\n",
414                         logon_type));
415                 TALLOC_FREE(frame);
416                 return NT_STATUS_INVALID_INFO_CLASS;
417         }
418
419         status = netlogon_creds_cli_LogonSamLogon(creds,
420                                                   binding_handle,
421                                                   logon_type,
422                                                   logon,
423                                                   frame,
424                                                   &validation_level,
425                                                   &validation,
426                                                   &authoritative,
427                                                   &flags);
428         if (!NT_STATUS_IS_OK(status)) {
429                 TALLOC_FREE(frame);
430                 return status;
431         }
432
433         status = map_validation_to_info3(mem_ctx,
434                                          validation_level, validation,
435                                          info3);
436         TALLOC_FREE(frame);
437         if (!NT_STATUS_IS_OK(status)) {
438                 return status;
439         }
440
441
442         return NT_STATUS_OK;
443 }
444
445 /**
446  * Logon domain user with an 'network' SAM logon
447  *
448  * @param info3 Pointer to a NET_USER_INFO_3 already allocated by the caller.
449  **/
450
451
452 NTSTATUS rpccli_netlogon_network_logon(struct netlogon_creds_cli_context *creds,
453                                        struct dcerpc_binding_handle *binding_handle,
454                                        TALLOC_CTX *mem_ctx,
455                                        uint32_t logon_parameters,
456                                        const char *username,
457                                        const char *domain,
458                                        const char *workstation,
459                                        const uint8 chal[8],
460                                        DATA_BLOB lm_response,
461                                        DATA_BLOB nt_response,
462                                        uint8_t *authoritative,
463                                        uint32_t *flags,
464                                        struct netr_SamInfo3 **info3)
465 {
466         NTSTATUS status;
467         const char *workstation_name_slash;
468         union netr_LogonLevel *logon = NULL;
469         struct netr_NetworkInfo *network_info;
470         uint16_t validation_level = 0;
471         union netr_Validation *validation = NULL;
472         uint8_t _authoritative = 0;
473         uint32_t _flags = 0;
474         struct netr_ChallengeResponse lm;
475         struct netr_ChallengeResponse nt;
476
477         *info3 = NULL;
478
479         if (authoritative == NULL) {
480                 authoritative = &_authoritative;
481         }
482         if (flags == NULL) {
483                 flags = &_flags;
484         }
485
486         ZERO_STRUCT(lm);
487         ZERO_STRUCT(nt);
488
489         logon = talloc_zero(mem_ctx, union netr_LogonLevel);
490         if (!logon) {
491                 return NT_STATUS_NO_MEMORY;
492         }
493
494         network_info = talloc_zero(mem_ctx, struct netr_NetworkInfo);
495         if (!network_info) {
496                 return NT_STATUS_NO_MEMORY;
497         }
498
499         if (workstation[0] != '\\' && workstation[1] != '\\') {
500                 workstation_name_slash = talloc_asprintf(mem_ctx, "\\\\%s", workstation);
501         } else {
502                 workstation_name_slash = workstation;
503         }
504
505         if (!workstation_name_slash) {
506                 DEBUG(0, ("talloc_asprintf failed!\n"));
507                 return NT_STATUS_NO_MEMORY;
508         }
509
510         /* Initialise input parameters */
511
512         lm.data = lm_response.data;
513         lm.length = lm_response.length;
514         nt.data = nt_response.data;
515         nt.length = nt_response.length;
516
517         network_info->identity_info.domain_name.string          = domain;
518         network_info->identity_info.parameter_control           = logon_parameters;
519         network_info->identity_info.logon_id_low                = 0xdead;
520         network_info->identity_info.logon_id_high               = 0xbeef;
521         network_info->identity_info.account_name.string         = username;
522         network_info->identity_info.workstation.string          = workstation_name_slash;
523
524         memcpy(network_info->challenge, chal, 8);
525         network_info->nt = nt;
526         network_info->lm = lm;
527
528         logon->network = network_info;
529
530         /* Marshall data and send request */
531
532         status = netlogon_creds_cli_LogonSamLogon(creds,
533                                                   binding_handle,
534                                                   NetlogonNetworkInformation,
535                                                   logon,
536                                                   mem_ctx,
537                                                   &validation_level,
538                                                   &validation,
539                                                   authoritative,
540                                                   flags);
541         if (!NT_STATUS_IS_OK(status)) {
542                 return status;
543         }
544
545         status = map_validation_to_info3(mem_ctx,
546                                          validation_level, validation,
547                                          info3);
548         if (!NT_STATUS_IS_OK(status)) {
549                 return status;
550         }
551
552         return NT_STATUS_OK;
553 }