libsmb: Make cli_ntcreate cancellable
[Samba.git] / source3 / libsmb / clientgen.c
blob8a3881018ea500e2dbcdf1a444c53d2a4d564225
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 "../librpc/ndr/libndr.h"
29 #include "../include/client.h"
31 /*******************************************************************
32 Setup the word count and byte count for a client smb message.
33 ********************************************************************/
35 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero)
37 if (zero && (num_words || num_bytes)) {
38 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
40 SCVAL(buf,smb_wct,num_words);
41 SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);
42 smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
43 return (smb_size + num_words*2 + num_bytes);
46 /****************************************************************************
47 Change the timeout (in milliseconds).
48 ****************************************************************************/
50 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout)
52 unsigned int old_timeout = cli->timeout;
53 cli->timeout = timeout;
54 return old_timeout;
57 /****************************************************************************
58 Set the 'backup_intent' flag.
59 ****************************************************************************/
61 bool cli_set_backup_intent(struct cli_state *cli, bool flag)
63 bool old_state = cli->backup_intent;
64 cli->backup_intent = flag;
65 return old_state;
68 /****************************************************************************
69 Initialize Domain, user or password.
70 ****************************************************************************/
72 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain)
74 TALLOC_FREE(cli->domain);
75 cli->domain = talloc_strdup(cli, domain ? domain : "");
76 if (cli->domain == NULL) {
77 return NT_STATUS_NO_MEMORY;
79 return NT_STATUS_OK;
82 NTSTATUS cli_set_username(struct cli_state *cli, const char *username)
84 TALLOC_FREE(cli->user_name);
85 cli->user_name = talloc_strdup(cli, username ? username : "");
86 if (cli->user_name == NULL) {
87 return NT_STATUS_NO_MEMORY;
89 return NT_STATUS_OK;
92 NTSTATUS cli_set_password(struct cli_state *cli, const char *password)
94 TALLOC_FREE(cli->password);
96 /* Password can be NULL. */
97 if (password) {
98 cli->password = talloc_strdup(cli, password);
99 if (cli->password == NULL) {
100 return NT_STATUS_NO_MEMORY;
102 } else {
103 /* Use zero NTLMSSP hashes and session key. */
104 cli->password = NULL;
107 return NT_STATUS_OK;
110 /****************************************************************************
111 Initialise credentials of a client structure.
112 ****************************************************************************/
114 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password)
116 NTSTATUS status = cli_set_username(cli, username);
117 if (!NT_STATUS_IS_OK(status)) {
118 return status;
120 status = cli_set_domain(cli, domain);
121 if (!NT_STATUS_IS_OK(status)) {
122 return status;
124 DEBUG(10,("cli_init_creds: user %s domain %s\n", cli->user_name, cli->domain));
126 return cli_set_password(cli, password);
129 /****************************************************************************
130 Initialise a client structure. Always returns a talloc'ed struct.
131 Set the signing state (used from the command line).
132 ****************************************************************************/
134 struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx,
135 int fd,
136 const char *remote_name,
137 const char *remote_realm,
138 int signing_state, int flags)
140 struct cli_state *cli = NULL;
141 bool use_spnego = lp_client_use_spnego();
142 bool force_dos_errors = false;
143 bool force_ascii = false;
144 bool use_level_II_oplocks = false;
145 uint32_t smb1_capabilities = 0;
146 uint32_t smb2_capabilities = 0;
147 struct GUID client_guid = GUID_random();
149 /* Check the effective uid - make sure we are not setuid */
150 if (is_setuid_root()) {
151 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
152 return NULL;
155 cli = talloc_zero(mem_ctx, struct cli_state);
156 if (!cli) {
157 return NULL;
160 cli->server_domain = talloc_strdup(cli, "");
161 if (!cli->server_domain) {
162 goto error;
164 cli->server_os = talloc_strdup(cli, "");
165 if (!cli->server_os) {
166 goto error;
168 cli->server_type = talloc_strdup(cli, "");
169 if (!cli->server_type) {
170 goto error;
173 cli->dfs_mountpoint = talloc_strdup(cli, "");
174 if (!cli->dfs_mountpoint) {
175 goto error;
177 cli->raw_status = NT_STATUS_INTERNAL_ERROR;
178 cli->map_dos_errors = true; /* remove this */
179 cli->timeout = CLIENT_TIMEOUT;
181 /* Set the CLI_FORCE_DOSERR environment variable to test
182 client routines using DOS errors instead of STATUS32
183 ones. This intended only as a temporary hack. */
184 if (getenv("CLI_FORCE_DOSERR")) {
185 force_dos_errors = true;
187 if (flags & CLI_FULL_CONNECTION_FORCE_DOS_ERRORS) {
188 force_dos_errors = true;
191 if (getenv("CLI_FORCE_ASCII")) {
192 force_ascii = true;
194 if (!lp_unicode()) {
195 force_ascii = true;
197 if (flags & CLI_FULL_CONNECTION_FORCE_ASCII) {
198 force_ascii = true;
201 if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO) {
202 use_spnego = false;
203 } else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS) {
204 cli->use_kerberos = true;
206 if ((flags & CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS) &&
207 cli->use_kerberos) {
208 cli->fallback_after_kerberos = true;
211 if (flags & CLI_FULL_CONNECTION_USE_CCACHE) {
212 cli->use_ccache = true;
215 if (flags & CLI_FULL_CONNECTION_USE_NT_HASH) {
216 cli->pw_nt_hash = true;
219 if (flags & CLI_FULL_CONNECTION_OPLOCKS) {
220 cli->use_oplocks = true;
222 if (flags & CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS) {
223 use_level_II_oplocks = true;
226 if (signing_state == SMB_SIGNING_DEFAULT) {
227 signing_state = lp_client_signing();
230 smb1_capabilities = 0;
231 smb1_capabilities |= CAP_LARGE_FILES;
232 smb1_capabilities |= CAP_NT_SMBS | CAP_RPC_REMOTE_APIS;
233 smb1_capabilities |= CAP_LOCK_AND_READ | CAP_NT_FIND;
234 smb1_capabilities |= CAP_DFS | CAP_W2K_SMBS;
235 smb1_capabilities |= CAP_LARGE_READX|CAP_LARGE_WRITEX;
236 smb1_capabilities |= CAP_LWIO;
238 if (!force_dos_errors) {
239 smb1_capabilities |= CAP_STATUS32;
242 if (!force_ascii) {
243 smb1_capabilities |= CAP_UNICODE;
246 if (use_spnego) {
247 smb1_capabilities |= CAP_EXTENDED_SECURITY;
250 if (use_level_II_oplocks) {
251 smb1_capabilities |= CAP_LEVEL_II_OPLOCKS;
254 smb2_capabilities = SMB2_CAP_ALL;
256 if (remote_realm) {
257 cli->remote_realm = talloc_strdup(cli, remote_realm);
258 if (cli->remote_realm == NULL) {
259 goto error;
263 cli->conn = smbXcli_conn_create(cli, fd, remote_name,
264 signing_state,
265 smb1_capabilities,
266 &client_guid,
267 smb2_capabilities);
268 if (cli->conn == NULL) {
269 goto error;
272 cli->smb1.pid = (uint16_t)getpid();
273 cli->smb1.vc_num = cli->smb1.pid;
274 cli->smb1.tcon = smbXcli_tcon_create(cli);
275 if (cli->smb1.tcon == NULL) {
276 goto error;
278 smb1cli_tcon_set_id(cli->smb1.tcon, UINT16_MAX);
279 cli->smb1.session = smbXcli_session_create(cli, cli->conn);
280 if (cli->smb1.session == NULL) {
281 goto error;
284 cli->initialised = 1;
285 return cli;
287 /* Clean up after malloc() error */
289 error:
291 TALLOC_FREE(cli);
292 return NULL;
295 /****************************************************************************
296 Close all pipes open on this session.
297 ****************************************************************************/
299 void cli_nt_pipes_close(struct cli_state *cli)
301 while (cli->pipe_list != NULL) {
303 * No TALLOC_FREE here!
305 talloc_free(cli->pipe_list);
309 /****************************************************************************
310 Shutdown a client structure.
311 ****************************************************************************/
313 static void _cli_shutdown(struct cli_state *cli)
315 cli_nt_pipes_close(cli);
318 * tell our peer to free his resources. Wihtout this, when an
319 * application attempts to do a graceful shutdown and calls
320 * smbc_free_context() to clean up all connections, some connections
321 * can remain active on the peer end, until some (long) timeout period
322 * later. This tree disconnect forces the peer to clean up, since the
323 * connection will be going away.
325 if (cli_state_has_tcon(cli)) {
326 cli_tdis(cli);
329 smbXcli_conn_disconnect(cli->conn, NT_STATUS_OK);
331 TALLOC_FREE(cli);
334 void cli_shutdown(struct cli_state *cli)
336 struct cli_state *cli_head;
337 if (cli == NULL) {
338 return;
340 DLIST_HEAD(cli, cli_head);
341 if (cli_head == cli) {
343 * head of a DFS list, shutdown all subsidiary DFS
344 * connections.
346 struct cli_state *p, *next;
348 for (p = cli_head->next; p; p = next) {
349 next = p->next;
350 DLIST_REMOVE(cli_head, p);
351 _cli_shutdown(p);
353 } else {
354 DLIST_REMOVE(cli_head, cli);
357 _cli_shutdown(cli);
360 const char *cli_state_remote_realm(struct cli_state *cli)
362 return cli->remote_realm;
365 uint16_t cli_state_get_vc_num(struct cli_state *cli)
367 return cli->smb1.vc_num;
370 /****************************************************************************
371 Set the PID to use for smb messages. Return the old pid.
372 ****************************************************************************/
374 uint16 cli_setpid(struct cli_state *cli, uint16 pid)
376 uint16_t ret = cli->smb1.pid;
377 cli->smb1.pid = pid;
378 return ret;
381 uint16_t cli_getpid(struct cli_state *cli)
383 return cli->smb1.pid;
386 bool cli_state_has_tcon(struct cli_state *cli)
388 uint16_t tid = cli_state_get_tid(cli);
390 if (tid == UINT16_MAX) {
391 return false;
394 return true;
397 uint16_t cli_state_get_tid(struct cli_state *cli)
399 return smb1cli_tcon_current_id(cli->smb1.tcon);
402 uint16_t cli_state_set_tid(struct cli_state *cli, uint16_t tid)
404 uint16_t ret = smb1cli_tcon_current_id(cli->smb1.tcon);
405 smb1cli_tcon_set_id(cli->smb1.tcon, tid);
406 return ret;
409 uint16_t cli_state_get_uid(struct cli_state *cli)
411 return smb1cli_session_current_id(cli->smb1.session);
414 uint16_t cli_state_set_uid(struct cli_state *cli, uint16_t uid)
416 uint16_t ret = smb1cli_session_current_id(cli->smb1.session);
417 smb1cli_session_set_id(cli->smb1.session, uid);
418 return ret;
421 /****************************************************************************
422 Set the case sensitivity flag on the packets. Returns old state.
423 ****************************************************************************/
425 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive)
427 bool ret;
428 uint32_t fs_attrs;
429 struct smbXcli_tcon *tcon;
431 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
432 tcon = cli->smb2.tcon;
433 } else {
434 tcon = cli->smb1.tcon;
437 fs_attrs = smbXcli_tcon_get_fs_attributes(tcon);
438 if (fs_attrs & FILE_CASE_SENSITIVE_SEARCH) {
439 ret = true;
440 } else {
441 ret = false;
443 if (case_sensitive) {
444 fs_attrs |= FILE_CASE_SENSITIVE_SEARCH;
445 } else {
446 fs_attrs &= ~FILE_CASE_SENSITIVE_SEARCH;
448 smbXcli_tcon_set_fs_attributes(tcon, fs_attrs);
450 return ret;
453 uint32_t cli_state_available_size(struct cli_state *cli, uint32_t ofs)
455 uint32_t ret = smb1cli_conn_max_xmit(cli->conn);
457 if (ofs >= ret) {
458 return 0;
461 ret -= ofs;
463 return ret;
466 time_t cli_state_server_time(struct cli_state *cli)
468 NTTIME nt;
469 time_t t;
471 nt = smbXcli_conn_server_system_time(cli->conn);
472 t = nt_time_to_unix(nt);
474 return t;
477 struct cli_echo_state {
478 bool is_smb2;
481 static void cli_echo_done(struct tevent_req *subreq);
483 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev,
484 struct cli_state *cli, uint16_t num_echos,
485 DATA_BLOB data)
487 struct tevent_req *req, *subreq;
488 struct cli_echo_state *state;
490 req = tevent_req_create(mem_ctx, &state, struct cli_echo_state);
491 if (req == NULL) {
492 return NULL;
495 if (smbXcli_conn_protocol(cli->conn) >= PROTOCOL_SMB2_02) {
496 state->is_smb2 = true;
497 subreq = smb2cli_echo_send(state, ev,
498 cli->conn,
499 cli->timeout);
500 } else {
501 subreq = smb1cli_echo_send(state, ev,
502 cli->conn,
503 cli->timeout,
504 num_echos,
505 data);
507 if (tevent_req_nomem(subreq, req)) {
508 return tevent_req_post(req, ev);
510 tevent_req_set_callback(subreq, cli_echo_done, req);
512 return req;
515 static void cli_echo_done(struct tevent_req *subreq)
517 struct tevent_req *req = tevent_req_callback_data(
518 subreq, struct tevent_req);
519 struct cli_echo_state *state = tevent_req_data(
520 req, struct cli_echo_state);
521 NTSTATUS status;
523 if (state->is_smb2) {
524 status = smb2cli_echo_recv(subreq);
525 } else {
526 status = smb1cli_echo_recv(subreq);
528 TALLOC_FREE(subreq);
529 if (!NT_STATUS_IS_OK(status)) {
530 tevent_req_nterror(req, status);
531 return;
534 tevent_req_done(req);
538 * Get the result out from an echo request
539 * @param[in] req The async_req from cli_echo_send
540 * @retval Did the server reply correctly?
543 NTSTATUS cli_echo_recv(struct tevent_req *req)
545 return tevent_req_simple_recv_ntstatus(req);
549 * @brief Send/Receive SMBEcho requests
550 * @param[in] mem_ctx The memory context to put the async_req on
551 * @param[in] ev The event context that will call us back
552 * @param[in] cli The connection to send the echo to
553 * @param[in] num_echos How many times do we want to get the reply?
554 * @param[in] data The data we want to get back
555 * @retval Did the server reply correctly?
558 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data)
560 TALLOC_CTX *frame = talloc_stackframe();
561 struct tevent_context *ev;
562 struct tevent_req *req;
563 NTSTATUS status = NT_STATUS_OK;
565 if (smbXcli_conn_has_async_calls(cli->conn)) {
567 * Can't use sync call while an async call is in flight
569 status = NT_STATUS_INVALID_PARAMETER;
570 goto fail;
573 ev = samba_tevent_context_init(frame);
574 if (ev == NULL) {
575 status = NT_STATUS_NO_MEMORY;
576 goto fail;
579 req = cli_echo_send(frame, ev, cli, num_echos, data);
580 if (req == NULL) {
581 status = NT_STATUS_NO_MEMORY;
582 goto fail;
585 if (!tevent_req_poll(req, ev)) {
586 status = map_nt_error_from_unix(errno);
587 goto fail;
590 status = cli_echo_recv(req);
591 fail:
592 TALLOC_FREE(frame);
593 return status;
597 * Is the SMB command able to hold an AND_X successor
598 * @param[in] cmd The SMB command in question
599 * @retval Can we add a chained request after "cmd"?
601 bool is_andx_req(uint8_t cmd)
603 switch (cmd) {
604 case SMBtconX:
605 case SMBlockingX:
606 case SMBopenX:
607 case SMBreadX:
608 case SMBwriteX:
609 case SMBsesssetupX:
610 case SMBulogoffX:
611 case SMBntcreateX:
612 return true;
613 break;
614 default:
615 break;
618 return false;
621 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
622 uint8_t smb_command, uint8_t additional_flags,
623 uint8_t wct, uint16_t *vwv,
624 uint32_t num_bytes, const uint8_t *bytes,
625 struct tevent_req **result_parent,
626 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
627 uint32_t *pnum_bytes, uint8_t **pbytes)
629 struct tevent_context *ev;
630 struct tevent_req *req = NULL;
631 NTSTATUS status = NT_STATUS_NO_MEMORY;
633 if (smbXcli_conn_has_async_calls(cli->conn)) {
634 return NT_STATUS_INVALID_PARAMETER;
636 ev = samba_tevent_context_init(mem_ctx);
637 if (ev == NULL) {
638 goto fail;
640 req = cli_smb_send(mem_ctx, ev, cli, smb_command, additional_flags,
641 wct, vwv, num_bytes, bytes);
642 if (req == NULL) {
643 goto fail;
645 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
646 goto fail;
648 status = cli_smb_recv(req, NULL, NULL, min_wct, pwct, pvwv,
649 pnum_bytes, pbytes);
650 fail:
651 TALLOC_FREE(ev);
652 if (NT_STATUS_IS_OK(status) && (result_parent != NULL)) {
653 *result_parent = req;
655 return status;