smbd: Remove message_to_share_mode_entry and vice versa
[Samba.git] / source3 / libsmb / clientgen.c
blobbec1184d53f2d0af2bfb634234507abc3f5aa27d
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client generic functions
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Jeremy Allison 2007.
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/>.
21 #include "includes.h"
22 #include "libsmb/libsmb.h"
23 #include "../lib/util/tevent_ntstatus.h"
24 #include "../libcli/smb/smb_signing.h"
25 #include "../libcli/smb/smb_seal.h"
26 #include "async_smb.h"
27 #include "../libcli/smb/smbXcli_base.h"
28 #include "../libcli/smb/smb2_negotiate_context.h"
29 #include "../librpc/ndr/libndr.h"
30 #include "../include/client.h"
32 /****************************************************************************
33 Change the timeout (in milliseconds).
34 ****************************************************************************/
36 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout)
38 unsigned int old_timeout = cli->timeout;
39 DBG_DEBUG("Changing connection timeout for server '%s' from %d (ms) to "
40 "%d (ms).\n",
41 smbXcli_conn_remote_name(cli->conn),
42 cli->timeout,
43 timeout);
44 cli->timeout = timeout;
45 return old_timeout;
48 /****************************************************************************
49 Set the 'backup_intent' flag.
50 ****************************************************************************/
52 bool cli_set_backup_intent(struct cli_state *cli, bool flag)
54 bool old_state = cli->backup_intent;
55 cli->backup_intent = flag;
56 return old_state;
59 /****************************************************************************
60 Initialise a client structure. Always returns a talloc'ed struct.
61 Set the signing state (used from the command line).
62 ****************************************************************************/
64 struct GUID cli_state_client_guid;
66 struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx,
67 int fd,
68 const char *remote_name,
69 enum smb_signing_setting signing_state,
70 int flags)
72 struct cli_state *cli = NULL;
73 bool use_spnego = lp_client_use_spnego();
74 bool force_dos_errors = false;
75 bool force_ascii = false;
76 bool use_level_II_oplocks = false;
77 uint32_t smb1_capabilities = 0;
78 uint32_t smb2_capabilities = 0;
79 struct smb311_capabilities smb3_capabilities =
80 smb311_capabilities_parse("client",
81 lp_client_smb3_signing_algorithms(),
82 lp_client_smb3_encryption_algorithms());
83 struct GUID client_guid;
85 if (!GUID_all_zero(&cli_state_client_guid)) {
86 client_guid = cli_state_client_guid;
87 } else {
88 const char *str = NULL;
90 str = lp_parm_const_string(-1, "libsmb", "client_guid", NULL);
91 if (str != NULL) {
92 GUID_from_string(str, &client_guid);
93 } else {
94 client_guid = GUID_random();
98 /* Check the effective uid - make sure we are not setuid */
99 if (is_setuid_root()) {
100 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
101 return NULL;
104 cli = talloc_zero(mem_ctx, struct cli_state);
105 if (!cli) {
106 return NULL;
109 cli->server_domain = talloc_strdup(cli, "");
110 if (!cli->server_domain) {
111 goto error;
113 cli->server_os = talloc_strdup(cli, "");
114 if (!cli->server_os) {
115 goto error;
117 cli->server_type = talloc_strdup(cli, "");
118 if (!cli->server_type) {
119 goto error;
122 cli->raw_status = NT_STATUS_INTERNAL_ERROR;
123 cli->map_dos_errors = true; /* remove this */
124 cli->timeout = CLIENT_TIMEOUT;
126 /* Set the CLI_FORCE_DOSERR environment variable to test
127 client routines using DOS errors instead of STATUS32
128 ones. This intended only as a temporary hack. */
129 if (getenv("CLI_FORCE_DOSERR")) {
130 force_dos_errors = true;
132 if (flags & CLI_FULL_CONNECTION_FORCE_DOS_ERRORS) {
133 force_dos_errors = true;
136 if (getenv("CLI_FORCE_ASCII")) {
137 force_ascii = true;
139 if (!lp_unicode()) {
140 force_ascii = true;
142 if (flags & CLI_FULL_CONNECTION_FORCE_ASCII) {
143 force_ascii = true;
146 if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO) {
147 use_spnego = false;
150 if (flags & CLI_FULL_CONNECTION_OPLOCKS) {
151 cli->use_oplocks = true;
153 if (flags & CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS) {
154 use_level_II_oplocks = true;
157 if (signing_state == SMB_SIGNING_IPC_DEFAULT) {
159 * Ensure for IPC/RPC the default is to require
160 * signing unless explicitly turned off by the
161 * administrator.
163 signing_state = lp_client_ipc_signing();
166 if (signing_state == SMB_SIGNING_DEFAULT) {
167 signing_state = lp_client_signing();
170 smb1_capabilities = 0;
171 smb1_capabilities |= CAP_LARGE_FILES;
172 smb1_capabilities |= CAP_NT_SMBS | CAP_RPC_REMOTE_APIS;
173 smb1_capabilities |= CAP_LOCK_AND_READ | CAP_NT_FIND;
174 smb1_capabilities |= CAP_DFS | CAP_W2K_SMBS;
175 smb1_capabilities |= CAP_LARGE_READX|CAP_LARGE_WRITEX;
176 smb1_capabilities |= CAP_LWIO;
178 if (!force_dos_errors) {
179 smb1_capabilities |= CAP_STATUS32;
182 if (!force_ascii) {
183 smb1_capabilities |= CAP_UNICODE;
186 if (use_spnego) {
187 smb1_capabilities |= CAP_EXTENDED_SECURITY;
190 if (use_level_II_oplocks) {
191 smb1_capabilities |= CAP_LEVEL_II_OPLOCKS;
194 smb2_capabilities = SMB2_CAP_ALL;
196 cli->conn = smbXcli_conn_create(cli, fd, remote_name,
197 signing_state,
198 smb1_capabilities,
199 &client_guid,
200 smb2_capabilities,
201 &smb3_capabilities);
202 if (cli->conn == NULL) {
203 goto error;
206 cli->smb1.pid = (uint32_t)getpid();
207 cli->smb1.vc_num = cli->smb1.pid;
208 cli->smb1.session = smbXcli_session_create(cli, cli->conn);
209 if (cli->smb1.session == NULL) {
210 goto error;
213 cli->initialised = 1;
214 return cli;
216 /* Clean up after malloc() error */
218 error:
220 TALLOC_FREE(cli);
221 return NULL;
224 /****************************************************************************
225 Close all pipes open on this session.
226 ****************************************************************************/
228 static void cli_nt_pipes_close(struct cli_state *cli)
230 while (cli->pipe_list != NULL) {
232 * No TALLOC_FREE here!
234 talloc_free(cli->pipe_list);
238 /****************************************************************************
239 Shutdown a client structure.
240 ****************************************************************************/
242 static void _cli_shutdown(struct cli_state *cli)
244 cli_nt_pipes_close(cli);
247 * tell our peer to free his resources. Without this, when an
248 * application attempts to do a graceful shutdown and calls
249 * smbc_free_context() to clean up all connections, some connections
250 * can remain active on the peer end, until some (long) timeout period
251 * later. This tree disconnect forces the peer to clean up, since the
252 * connection will be going away.
254 if (cli_state_has_tcon(cli)) {
255 cli_tdis(cli);
258 smbXcli_conn_disconnect(cli->conn, NT_STATUS_OK);
260 TALLOC_FREE(cli);
263 void cli_shutdown(struct cli_state *cli)
265 struct cli_state *cli_head;
266 if (cli == NULL) {
267 return;
269 DLIST_HEAD(cli, cli_head);
270 if (cli_head == cli) {
272 * head of a DFS list, shutdown all subsidiary DFS
273 * connections.
275 struct cli_state *p, *next;
277 for (p = cli_head->next; p; p = next) {
278 next = p->next;
279 DLIST_REMOVE(cli_head, p);
280 _cli_shutdown(p);
282 } else {
283 DLIST_REMOVE(cli_head, cli);
286 _cli_shutdown(cli);
289 uint16_t cli_state_get_vc_num(struct cli_state *cli)
291 return cli->smb1.vc_num;
294 /****************************************************************************
295 Set the PID to use for smb messages. Return the old pid.
296 ****************************************************************************/
298 uint32_t cli_setpid(struct cli_state *cli, uint32_t pid)
300 uint32_t ret = cli->smb1.pid;
301 cli->smb1.pid = pid;
302 return ret;
305 uint32_t cli_getpid(struct cli_state *cli)
307 return cli->smb1.pid;
310 bool cli_state_is_encryption_on(struct cli_state *cli)
312 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
313 return smb1cli_conn_encryption_on(cli->conn);
316 if (cli->smb2.tcon == NULL) {
317 return false;
320 return smb2cli_tcon_is_encryption_on(cli->smb2.tcon);
323 bool cli_state_has_tcon(struct cli_state *cli)
325 uint32_t tid;
326 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
327 if (cli->smb2.tcon == NULL) {
328 return false;
330 tid = cli_state_get_tid(cli);
331 if (tid == UINT32_MAX) {
332 return false;
334 } else {
335 if (cli->smb1.tcon == NULL) {
336 return false;
338 tid = cli_state_get_tid(cli);
339 if (tid == UINT16_MAX) {
340 return false;
343 return true;
346 uint32_t cli_state_get_tid(struct cli_state *cli)
348 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
349 return smb2cli_tcon_current_id(cli->smb2.tcon);
350 } else {
351 return (uint32_t)smb1cli_tcon_current_id(cli->smb1.tcon);
355 uint32_t cli_state_set_tid(struct cli_state *cli, uint32_t tid)
357 uint32_t ret;
358 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
359 ret = smb2cli_tcon_current_id(cli->smb2.tcon);
360 smb2cli_tcon_set_id(cli->smb2.tcon, tid);
361 } else {
362 ret = smb1cli_tcon_current_id(cli->smb1.tcon);
363 smb1cli_tcon_set_id(cli->smb1.tcon, tid);
365 return ret;
368 static struct smbXcli_tcon *cli_state_save_tcon(struct cli_state *cli)
371 * Note. This used to make a deep copy of either
372 * cli->smb2.tcon or cli->smb1.tcon, but this leaves
373 * the original pointer in place which will then get
374 * TALLOC_FREE()'d when the new connection is made on
375 * this cli_state.
377 * As there may be pipes open on the old connection with
378 * talloc'ed state allocated using the tcon pointer as a
379 * parent we can't deep copy and then free this as that
380 * closes the open pipes.
382 * This call is used to temporarily swap out a tcon pointer
383 * to allow a new tcon on the same cli_state.
385 * Just return the raw pointer and set the old value to NULL.
386 * We know we MUST be calling cli_state_restore_tcon() below
387 * to restore before closing the session.
389 * See BUG: https://bugzilla.samba.org/show_bug.cgi?id=13992
391 struct smbXcli_tcon *tcon_ret = NULL;
393 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
394 tcon_ret = cli->smb2.tcon;
395 cli->smb2.tcon = NULL; /* *Not* TALLOC_FREE(). */
396 } else {
397 tcon_ret = cli->smb1.tcon;
398 cli->smb1.tcon = NULL; /* *Not* TALLOC_FREE(). */
400 return tcon_ret;
403 void cli_state_save_tcon_share(struct cli_state *cli,
404 struct smbXcli_tcon **_tcon_ret,
405 char **_sharename_ret)
407 *_tcon_ret = cli_state_save_tcon(cli);
409 * No talloc_copy as cli->share is already
410 * allocated off cli.
412 *_sharename_ret = cli->share;
413 cli->share = NULL;
416 static void cli_state_restore_tcon(struct cli_state *cli,
417 struct smbXcli_tcon *tcon)
419 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
420 TALLOC_FREE(cli->smb2.tcon);
421 cli->smb2.tcon = tcon;
422 } else {
423 TALLOC_FREE(cli->smb1.tcon);
424 cli->smb1.tcon = tcon;
428 void cli_state_restore_tcon_share(struct cli_state *cli,
429 struct smbXcli_tcon *tcon,
430 char *share)
432 /* cli->share will have been replaced by a cli_tree_connect() call. */
433 TALLOC_FREE(cli->share);
434 cli->share = share;
435 cli_state_restore_tcon(cli, tcon);
438 uint16_t cli_state_get_uid(struct cli_state *cli)
440 return smb1cli_session_current_id(cli->smb1.session);
443 uint16_t cli_state_set_uid(struct cli_state *cli, uint16_t uid)
445 uint16_t ret = smb1cli_session_current_id(cli->smb1.session);
446 smb1cli_session_set_id(cli->smb1.session, uid);
447 return ret;
450 /****************************************************************************
451 Set the case sensitivity flag on the packets. Returns old state.
452 ****************************************************************************/
454 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive)
456 bool ret;
457 uint32_t fs_attrs;
458 struct smbXcli_tcon *tcon;
460 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
461 tcon = cli->smb2.tcon;
462 } else {
463 tcon = cli->smb1.tcon;
466 fs_attrs = smbXcli_tcon_get_fs_attributes(tcon);
467 if (fs_attrs & FILE_CASE_SENSITIVE_SEARCH) {
468 ret = true;
469 } else {
470 ret = false;
472 if (case_sensitive) {
473 fs_attrs |= FILE_CASE_SENSITIVE_SEARCH;
474 } else {
475 fs_attrs &= ~FILE_CASE_SENSITIVE_SEARCH;
477 smbXcli_tcon_set_fs_attributes(tcon, fs_attrs);
479 return ret;
482 uint32_t cli_state_available_size(struct cli_state *cli, uint32_t ofs)
484 uint32_t ret = smb1cli_conn_max_xmit(cli->conn);
486 if (ofs >= ret) {
487 return 0;
490 ret -= ofs;
492 return ret;
495 time_t cli_state_server_time(struct cli_state *cli)
497 NTTIME nt;
498 time_t t;
500 nt = smbXcli_conn_server_system_time(cli->conn);
501 t = nt_time_to_unix(nt);
503 return t;
506 struct cli_echo_state {
507 uint8_t dummy;
510 static void cli_echo_done1(struct tevent_req *subreq);
511 static void cli_echo_done2(struct tevent_req *subreq);
513 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
514 struct cli_state *cli, uint16_t num_echos,
515 DATA_BLOB data)
517 struct tevent_req *req, *subreq;
518 struct cli_echo_state *state;
520 req = tevent_req_create(mem_ctx, &state, struct cli_echo_state);
521 if (req == NULL) {
522 return NULL;
525 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
526 subreq = smb2cli_echo_send(
527 state, ev, cli->conn, cli->timeout);
528 if (tevent_req_nomem(subreq, req)) {
529 return tevent_req_post(req, ev);
531 tevent_req_set_callback(subreq, cli_echo_done2, req);
532 return req;
535 subreq = smb1cli_echo_send(
536 state, ev, cli->conn, cli->timeout, num_echos, data);
537 if (tevent_req_nomem(subreq, req)) {
538 return tevent_req_post(req, ev);
540 tevent_req_set_callback(subreq, cli_echo_done1, req);
542 return req;
545 static void cli_echo_done1(struct tevent_req *subreq)
547 NTSTATUS status = smb1cli_echo_recv(subreq);
548 return tevent_req_simple_finish_ntstatus(subreq, status);
551 static void cli_echo_done2(struct tevent_req *subreq)
553 NTSTATUS status = smb2cli_echo_recv(subreq);
554 return tevent_req_simple_finish_ntstatus(subreq, status);
558 * Get the result out from an echo request
559 * @param[in] req The async_req from cli_echo_send
560 * @retval Did the server reply correctly?
563 NTSTATUS cli_echo_recv(struct tevent_req *req)
565 return tevent_req_simple_recv_ntstatus(req);
569 * @brief Send/Receive SMBEcho requests
570 * @param[in] mem_ctx The memory context to put the async_req on
571 * @param[in] ev The event context that will call us back
572 * @param[in] cli The connection to send the echo to
573 * @param[in] num_echos How many times do we want to get the reply?
574 * @param[in] data The data we want to get back
575 * @retval Did the server reply correctly?
578 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data)
580 TALLOC_CTX *frame = talloc_stackframe();
581 struct tevent_context *ev;
582 struct tevent_req *req;
583 NTSTATUS status = NT_STATUS_OK;
585 if (smbXcli_conn_has_async_calls(cli->conn)) {
587 * Can't use sync call while an async call is in flight
589 status = NT_STATUS_INVALID_PARAMETER;
590 goto fail;
593 ev = samba_tevent_context_init(frame);
594 if (ev == NULL) {
595 status = NT_STATUS_NO_MEMORY;
596 goto fail;
599 req = cli_echo_send(frame, ev, cli, num_echos, data);
600 if (req == NULL) {
601 status = NT_STATUS_NO_MEMORY;
602 goto fail;
605 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
606 goto fail;
609 status = cli_echo_recv(req);
610 fail:
611 TALLOC_FREE(frame);
612 return status;
615 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
616 uint8_t smb_command, uint8_t additional_flags,
617 uint8_t wct, uint16_t *vwv,
618 uint32_t num_bytes, const uint8_t *bytes,
619 struct tevent_req **result_parent,
620 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
621 uint32_t *pnum_bytes, uint8_t **pbytes)
623 struct tevent_context *ev;
624 struct tevent_req *req = NULL;
625 NTSTATUS status = NT_STATUS_NO_MEMORY;
627 if (smbXcli_conn_has_async_calls(cli->conn)) {
628 return NT_STATUS_INVALID_PARAMETER;
630 ev = samba_tevent_context_init(mem_ctx);
631 if (ev == NULL) {
632 goto fail;
634 req = cli_smb_send(mem_ctx, ev, cli, smb_command, additional_flags, 0,
635 wct, vwv, num_bytes, bytes);
636 if (req == NULL) {
637 goto fail;
639 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
640 goto fail;
642 status = cli_smb_recv(req, NULL, NULL, min_wct, pwct, pvwv,
643 pnum_bytes, pbytes);
644 fail:
645 TALLOC_FREE(ev);
646 if (NT_STATUS_IS_OK(status) && (result_parent != NULL)) {
647 *result_parent = req;
649 return status;