CVE-2020-25719 kdc: Avoid races and multiple DB lookups in s4u2self check
[Samba.git] / source3 / utils / net_util.c
blob298d9a64dc0c57e9d26b822a1fc872f73e1d296b
1 /*
2 * Unix SMB/CIFS implementation.
3 * Helper routines for net
4 * Copyright (C) Volker Lendecke 2006
5 * Copyright (C) Kai Blin 2008
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "utils/net.h"
24 #include "libsmb/namequery.h"
25 #include "rpc_client/cli_pipe.h"
26 #include "../librpc/gen_ndr/ndr_lsa_c.h"
27 #include "rpc_client/cli_lsarpc.h"
28 #include "../librpc/gen_ndr/ndr_dssetup_c.h"
29 #include "secrets.h"
30 #include "../libcli/security/security.h"
31 #include "libsmb/libsmb.h"
32 #include "lib/param/param.h"
33 #include "auth/gensec/gensec.h"
34 #include "lib/cmdline/cmdline.h"
36 NTSTATUS net_rpc_lookup_name(struct net_context *c,
37 TALLOC_CTX *mem_ctx, struct cli_state *cli,
38 const char *name, const char **ret_domain,
39 const char **ret_name, struct dom_sid *ret_sid,
40 enum lsa_SidType *ret_type)
42 struct rpc_pipe_client *lsa_pipe = NULL;
43 struct policy_handle pol;
44 NTSTATUS status, result;
45 const char **dom_names;
46 struct dom_sid *sids;
47 enum lsa_SidType *types;
48 struct dcerpc_binding_handle *b;
50 ZERO_STRUCT(pol);
52 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc,
53 &lsa_pipe);
54 if (!NT_STATUS_IS_OK(status)) {
55 d_fprintf(stderr, _("Could not initialise lsa pipe\n"));
56 return status;
59 b = lsa_pipe->binding_handle;
61 status = rpccli_lsa_open_policy(lsa_pipe, mem_ctx, false,
62 SEC_FLAG_MAXIMUM_ALLOWED,
63 &pol);
64 if (!NT_STATUS_IS_OK(status)) {
65 d_fprintf(stderr, "open_policy %s: %s\n", _("failed"),
66 nt_errstr(status));
67 return status;
70 status = rpccli_lsa_lookup_names(lsa_pipe, mem_ctx, &pol, 1,
71 &name, &dom_names, 1, &sids, &types);
73 if (!NT_STATUS_IS_OK(status)) {
74 /* This can happen easily, don't log an error */
75 goto done;
78 if (ret_domain != NULL) {
79 *ret_domain = dom_names[0];
81 if (ret_name != NULL) {
82 *ret_name = talloc_strdup(mem_ctx, name);
84 if (ret_sid != NULL) {
85 sid_copy(ret_sid, &sids[0]);
87 if (ret_type != NULL) {
88 *ret_type = types[0];
91 done:
92 if (is_valid_policy_hnd(&pol)) {
93 dcerpc_lsa_Close(b, mem_ctx, &pol, &result);
95 TALLOC_FREE(lsa_pipe);
97 return status;
100 /****************************************************************************
101 Connect to \\server\service.
102 ****************************************************************************/
104 NTSTATUS connect_to_service(struct net_context *c,
105 struct cli_state **cli_ctx,
106 const struct sockaddr_storage *server_ss,
107 const char *server_name,
108 const char *service_name,
109 const char *service_type)
111 NTSTATUS nt_status;
112 int flags = 0;
114 if (strequal(service_type, "IPC")) {
115 flags |= CLI_FULL_CONNECTION_IPC;
118 nt_status = cli_full_connection_creds(cli_ctx, NULL, server_name,
119 server_ss, c->opt_port,
120 service_name, service_type,
121 c->creds,
122 flags);
123 if (!NT_STATUS_IS_OK(nt_status)) {
124 d_fprintf(stderr, _("Could not connect to server %s\n"),
125 server_name);
127 /* Display a nicer message depending on the result */
129 if (NT_STATUS_V(nt_status) ==
130 NT_STATUS_V(NT_STATUS_LOGON_FAILURE))
131 d_fprintf(stderr,
132 _("The username or password was not "
133 "correct.\n"));
135 if (NT_STATUS_V(nt_status) ==
136 NT_STATUS_V(NT_STATUS_ACCOUNT_LOCKED_OUT))
137 d_fprintf(stderr, _("The account was locked out.\n"));
139 if (NT_STATUS_V(nt_status) ==
140 NT_STATUS_V(NT_STATUS_ACCOUNT_DISABLED))
141 d_fprintf(stderr, _("The account was disabled.\n"));
142 return nt_status;
145 return nt_status;
148 /****************************************************************************
149 Connect to \\server\ipc$.
150 ****************************************************************************/
152 NTSTATUS connect_to_ipc(struct net_context *c,
153 struct cli_state **cli_ctx,
154 const struct sockaddr_storage *server_ss,
155 const char *server_name)
157 return connect_to_service(c, cli_ctx, server_ss, server_name, "IPC$",
158 "IPC");
161 /****************************************************************************
162 Connect to \\server\ipc$ anonymously.
163 ****************************************************************************/
165 NTSTATUS connect_to_ipc_anonymous(struct net_context *c,
166 struct cli_state **cli_ctx,
167 const struct sockaddr_storage *server_ss,
168 const char *server_name)
170 NTSTATUS nt_status;
171 struct cli_credentials *anon_creds = NULL;
173 anon_creds = cli_credentials_init_anon(c);
174 if (anon_creds == NULL) {
175 DBG_ERR("cli_credentials_init_anon() failed\n");
176 return NT_STATUS_NO_MEMORY;
179 nt_status = cli_full_connection_creds(cli_ctx, c->opt_requester_name,
180 server_name, server_ss, c->opt_port,
181 "IPC$", "IPC",
182 anon_creds,
183 CLI_FULL_CONNECTION_IPC);
185 if (NT_STATUS_IS_OK(nt_status)) {
186 return nt_status;
187 } else {
188 DEBUG(1,("Cannot connect to server (anonymously). Error was %s\n", nt_errstr(nt_status)));
189 return nt_status;
194 * Connect a server and open a given pipe
196 * @param cli_dst A cli_state
197 * @param pipe The pipe to open
198 * @param got_pipe boolean that stores if we got a pipe
200 * @return Normal NTSTATUS return.
202 NTSTATUS connect_dst_pipe(struct net_context *c, struct cli_state **cli_dst,
203 struct rpc_pipe_client **pp_pipe_hnd,
204 const struct ndr_interface_table *table)
206 NTSTATUS nt_status;
207 char *server_name = SMB_STRDUP("127.0.0.1");
208 struct cli_state *cli_tmp = NULL;
209 struct rpc_pipe_client *pipe_hnd = NULL;
211 if (server_name == NULL) {
212 return NT_STATUS_NO_MEMORY;
215 if (c->opt_destination) {
216 SAFE_FREE(server_name);
217 if ((server_name = SMB_STRDUP(c->opt_destination)) == NULL) {
218 return NT_STATUS_NO_MEMORY;
222 /* make a connection to a named pipe */
223 nt_status = connect_to_ipc(c, &cli_tmp, NULL, server_name);
224 if (!NT_STATUS_IS_OK(nt_status)) {
225 SAFE_FREE(server_name);
226 return nt_status;
229 nt_status = cli_rpc_pipe_open_noauth(cli_tmp, table,
230 &pipe_hnd);
231 if (!NT_STATUS_IS_OK(nt_status)) {
232 DEBUG(0, ("couldn't not initialize pipe\n"));
233 cli_shutdown(cli_tmp);
234 SAFE_FREE(server_name);
235 return nt_status;
238 *cli_dst = cli_tmp;
239 *pp_pipe_hnd = pipe_hnd;
240 SAFE_FREE(server_name);
242 return nt_status;
245 /****************************************************************************
246 Use the local machine account (krb) and password for this session.
247 ****************************************************************************/
249 int net_use_krb_machine_account(struct net_context *c)
251 char *user_name = NULL;
253 if (!secrets_init()) {
254 d_fprintf(stderr,_("ERROR: Unable to open secrets database\n"));
255 exit(1);
258 c->opt_password = secrets_fetch_machine_password(
259 c->opt_target_workgroup, NULL, NULL);
260 if (asprintf(&user_name, "%s$@%s", lp_netbios_name(), lp_realm()) == -1) {
261 return -1;
263 c->opt_user_name = user_name;
264 c->opt_user_specified = true;
266 cli_credentials_set_machine_account(c->creds, c->lp_ctx);
267 return 0;
270 bool net_find_server(struct net_context *c,
271 const char *domain,
272 unsigned flags,
273 struct sockaddr_storage *server_ss,
274 char **server_name)
276 const char *d = domain ? domain : c->opt_target_workgroup;
278 if (c->opt_host) {
279 *server_name = SMB_STRDUP(c->opt_host);
282 if (c->opt_have_ip) {
283 *server_ss = c->opt_dest_ip;
284 if (!*server_name) {
285 char addr[INET6_ADDRSTRLEN];
286 print_sockaddr(addr, sizeof(addr), &c->opt_dest_ip);
287 *server_name = SMB_STRDUP(addr);
289 } else if (*server_name) {
290 /* resolve the IP address */
291 if (!resolve_name(*server_name, server_ss, 0x20, false)) {
292 DEBUG(1,("Unable to resolve server name\n"));
293 return false;
295 } else if (flags & NET_FLAGS_PDC) {
296 fstring dc_name;
297 struct sockaddr_storage pdc_ss;
299 if (!get_pdc_ip(d, &pdc_ss)) {
300 DEBUG(1,("Unable to resolve PDC server address\n"));
301 return false;
304 if (is_zero_addr(&pdc_ss)) {
305 return false;
308 if (!name_status_find(d, 0x1b, 0x20, &pdc_ss, dc_name)) {
309 return false;
312 *server_name = SMB_STRDUP(dc_name);
313 *server_ss = pdc_ss;
314 } else if (flags & NET_FLAGS_DMB) {
315 struct sockaddr_storage msbrow_ss;
316 char addr[INET6_ADDRSTRLEN];
318 /* if (!resolve_name(MSBROWSE, &msbrow_ip, 1, false)) */
319 if (!resolve_name(d, &msbrow_ss, 0x1B, false)) {
320 DEBUG(1,("Unable to resolve domain browser via name lookup\n"));
321 return false;
323 *server_ss = msbrow_ss;
324 print_sockaddr(addr, sizeof(addr), server_ss);
325 *server_name = SMB_STRDUP(addr);
326 } else if (flags & NET_FLAGS_MASTER) {
327 struct sockaddr_storage brow_ss;
328 char addr[INET6_ADDRSTRLEN];
329 if (!resolve_name(d, &brow_ss, 0x1D, false)) {
330 /* go looking for workgroups */
331 DEBUG(1,("Unable to resolve master browser via name lookup\n"));
332 return false;
334 *server_ss = brow_ss;
335 print_sockaddr(addr, sizeof(addr), server_ss);
336 *server_name = SMB_STRDUP(addr);
337 } else if (!(flags & NET_FLAGS_LOCALHOST_DEFAULT_INSANE)) {
338 if (!interpret_string_addr(server_ss,
339 "127.0.0.1", AI_NUMERICHOST)) {
340 DEBUG(1,("Unable to resolve 127.0.0.1\n"));
341 return false;
343 *server_name = SMB_STRDUP("127.0.0.1");
346 if (!*server_name) {
347 DEBUG(1,("no server to connect to\n"));
348 return false;
351 return true;
354 bool net_find_pdc(struct sockaddr_storage *server_ss,
355 fstring server_name,
356 const char *domain_name)
358 if (!get_pdc_ip(domain_name, server_ss)) {
359 return false;
361 if (is_zero_addr(server_ss)) {
362 return false;
365 if (!name_status_find(domain_name, 0x1b, 0x20, server_ss, server_name)) {
366 return false;
369 return true;
372 NTSTATUS net_make_ipc_connection(struct net_context *c, unsigned flags,
373 struct cli_state **pcli)
375 return net_make_ipc_connection_ex(c, c->opt_workgroup, NULL, NULL, flags, pcli);
378 NTSTATUS net_make_ipc_connection_ex(struct net_context *c ,const char *domain,
379 const char *server,
380 const struct sockaddr_storage *pss,
381 unsigned flags, struct cli_state **pcli)
383 char *server_name = NULL;
384 struct sockaddr_storage server_ss;
385 struct cli_state *cli = NULL;
386 NTSTATUS nt_status;
388 if ( !server || !pss ) {
389 if (!net_find_server(c, domain, flags, &server_ss,
390 &server_name)) {
391 d_fprintf(stderr, _("Unable to find a suitable server "
392 "for domain %s\n"), domain);
393 nt_status = NT_STATUS_UNSUCCESSFUL;
394 goto done;
396 } else {
397 server_name = SMB_STRDUP( server );
398 server_ss = *pss;
401 if (flags & NET_FLAGS_ANONYMOUS) {
402 nt_status = connect_to_ipc_anonymous(c, &cli, &server_ss,
403 server_name);
404 } else {
405 nt_status = connect_to_ipc(c, &cli, &server_ss,
406 server_name);
409 /* store the server in the affinity cache if it was a PDC */
411 if ( (flags & NET_FLAGS_PDC) && NT_STATUS_IS_OK(nt_status) )
412 saf_store(cli->server_domain, server_name);
414 SAFE_FREE(server_name);
415 if (!NT_STATUS_IS_OK(nt_status)) {
416 d_fprintf(stderr, _("Connection failed: %s\n"),
417 nt_errstr(nt_status));
418 cli = NULL;
419 } else if (c->opt_request_timeout) {
420 cli_set_timeout(cli, c->opt_request_timeout * 1000);
423 done:
424 if (pcli != NULL) {
425 *pcli = cli;
427 return nt_status;
430 /****************************************************************************
431 ****************************************************************************/
433 /* TODO FIXME: Pass cli_creds via net_context and get rid of this function. */
434 const char *net_prompt_pass(struct net_context *c, const char *user)
436 struct cli_credentials *creds = samba_cmdline_get_creds();
438 if (c->opt_password == NULL) {
439 c->opt_password = cli_credentials_get_password(creds);
442 return c->opt_password;
445 int net_run_function(struct net_context *c, int argc, const char **argv,
446 const char *whoami, struct functable *table)
448 int i;
450 if (argc != 0) {
451 for (i=0; table[i].funcname != NULL; i++) {
452 if (strcasecmp_m(argv[0], table[i].funcname) == 0)
453 return table[i].fn(c, argc-1, argv+1);
457 if (c->display_usage == false) {
458 d_fprintf(stderr, _("Invalid command: %s %s\n"), whoami,
459 (argc > 0)?argv[0]:"");
461 d_printf(_("Usage:\n"));
462 for (i=0; table[i].funcname != NULL; i++) {
463 if(c->display_usage == false)
464 d_printf("%s %-15s %s\n", whoami, table[i].funcname,
465 _(table[i].description));
466 else
467 d_printf("%s\n", _(table[i].usage));
470 return c->display_usage?0:-1;
473 void net_display_usage_from_functable(struct functable *table)
475 int i;
476 for (i=0; table[i].funcname != NULL; i++) {
477 d_printf("%s\n", _(table[i].usage));
481 const char *net_share_type_str(int num_type)
483 switch(num_type) {
484 case 0: return _("Disk");
485 case 1: return _("Print");
486 case 2: return _("Dev");
487 case 3: return _("IPC");
488 default: return _("Unknown");
492 static NTSTATUS net_scan_dc_noad(struct net_context *c,
493 struct cli_state *cli,
494 struct net_dc_info *dc_info)
496 TALLOC_CTX *mem_ctx = talloc_tos();
497 struct rpc_pipe_client *pipe_hnd = NULL;
498 struct dcerpc_binding_handle *b;
499 NTSTATUS status, result;
500 struct policy_handle pol;
501 union lsa_PolicyInformation *info;
503 ZERO_STRUCTP(dc_info);
504 ZERO_STRUCT(pol);
506 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_lsarpc,
507 &pipe_hnd);
508 if (!NT_STATUS_IS_OK(status)) {
509 return status;
512 b = pipe_hnd->binding_handle;
514 status = dcerpc_lsa_open_policy(b, mem_ctx,
515 false,
516 SEC_FLAG_MAXIMUM_ALLOWED,
517 &pol,
518 &result);
519 if (!NT_STATUS_IS_OK(status)) {
520 goto done;
522 if (!NT_STATUS_IS_OK(result)) {
523 status = result;
524 goto done;
527 status = dcerpc_lsa_QueryInfoPolicy(b, mem_ctx,
528 &pol,
529 LSA_POLICY_INFO_ACCOUNT_DOMAIN,
530 &info,
531 &result);
532 if (!NT_STATUS_IS_OK(status)) {
533 goto done;
535 if (!NT_STATUS_IS_OK(result)) {
536 status = result;
537 goto done;
540 dc_info->netbios_domain_name = talloc_strdup(mem_ctx, info->account_domain.name.string);
541 if (dc_info->netbios_domain_name == NULL) {
542 status = NT_STATUS_NO_MEMORY;
543 goto done;
546 done:
547 if (is_valid_policy_hnd(&pol)) {
548 dcerpc_lsa_Close(b, mem_ctx, &pol, &result);
551 TALLOC_FREE(pipe_hnd);
553 return status;
556 NTSTATUS net_scan_dc(struct net_context *c,
557 struct cli_state *cli,
558 struct net_dc_info *dc_info)
560 TALLOC_CTX *mem_ctx = talloc_tos();
561 struct rpc_pipe_client *dssetup_pipe = NULL;
562 struct dcerpc_binding_handle *dssetup_handle = NULL;
563 union dssetup_DsRoleInfo info;
564 NTSTATUS status;
565 WERROR werr;
567 ZERO_STRUCTP(dc_info);
569 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_dssetup,
570 &dssetup_pipe);
571 if (!NT_STATUS_IS_OK(status)) {
572 DEBUG(10,("net_scan_dc: failed to open dssetup pipe with %s, "
573 "retrying with lsa pipe\n", nt_errstr(status)));
574 return net_scan_dc_noad(c, cli, dc_info);
576 dssetup_handle = dssetup_pipe->binding_handle;
578 status = dcerpc_dssetup_DsRoleGetPrimaryDomainInformation(dssetup_handle, mem_ctx,
579 DS_ROLE_BASIC_INFORMATION,
580 &info,
581 &werr);
582 TALLOC_FREE(dssetup_pipe);
584 if (NT_STATUS_IS_OK(status)) {
585 status = werror_to_ntstatus(werr);
587 if (!NT_STATUS_IS_OK(status)) {
588 return status;
591 dc_info->is_dc = (info.basic.role & (DS_ROLE_PRIMARY_DC|DS_ROLE_BACKUP_DC));
592 dc_info->is_pdc = (info.basic.role & DS_ROLE_PRIMARY_DC);
593 dc_info->is_ad = (info.basic.flags & DS_ROLE_PRIMARY_DS_RUNNING);
594 dc_info->is_mixed_mode = (info.basic.flags & DS_ROLE_PRIMARY_DS_MIXED_MODE);
595 dc_info->netbios_domain_name = talloc_strdup(mem_ctx, info.basic.domain);
596 dc_info->dns_domain_name = talloc_strdup(mem_ctx, info.basic.dns_domain);
597 dc_info->forest_name = talloc_strdup(mem_ctx, info.basic.forest);
599 return NT_STATUS_OK;