s3:libsmb: move cli->mid to cli->smb1.mid
[Samba/gebeck_regimport.git] / source3 / libsmb / clientgen.c
blobddad96c826c7f4709c0756c3a6f5e719bec2b63a
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 "smb_signing.h"
25 #include "async_smb.h"
27 /*******************************************************************
28 Setup the word count and byte count for a client smb message.
29 ********************************************************************/
31 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero)
33 if (zero && (num_words || num_bytes)) {
34 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
36 SCVAL(buf,smb_wct,num_words);
37 SSVAL(buf,smb_vwv + num_words*SIZEOFWORD,num_bytes);
38 smb_setlen(buf,smb_size + num_words*2 + num_bytes - 4);
39 return (smb_size + num_words*2 + num_bytes);
42 /****************************************************************************
43 Change the timeout (in milliseconds).
44 ****************************************************************************/
46 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout)
48 unsigned int old_timeout = cli->timeout;
49 cli->timeout = timeout;
50 return old_timeout;
53 /****************************************************************************
54 convenience routine to find if we negotiated ucs2
55 ****************************************************************************/
57 bool cli_ucs2(struct cli_state *cli)
59 return ((cli->capabilities & CAP_UNICODE) != 0);
62 /****************************************************************************
63 Setup basics in a outgoing packet.
64 ****************************************************************************/
66 void cli_setup_packet_buf(struct cli_state *cli, char *buf)
68 uint16 flags2;
69 cli->rap_error = 0;
70 SIVAL(buf,smb_rcls,0);
71 SSVAL(buf,smb_pid,cli->pid);
72 memset(buf+smb_pidhigh, 0, 12);
73 SSVAL(buf,smb_uid,cli->vuid);
74 SSVAL(buf,smb_mid,cli->smb1.mid);
76 if (cli->protocol <= PROTOCOL_CORE) {
77 return;
80 if (cli->case_sensitive) {
81 SCVAL(buf,smb_flg,0x0);
82 } else {
83 /* Default setting, case insensitive. */
84 SCVAL(buf,smb_flg,0x8);
86 flags2 = FLAGS2_LONG_PATH_COMPONENTS;
87 if (cli->capabilities & CAP_UNICODE)
88 flags2 |= FLAGS2_UNICODE_STRINGS;
89 if ((cli->capabilities & CAP_DFS) && cli->dfsroot)
90 flags2 |= FLAGS2_DFS_PATHNAMES;
91 if (cli->capabilities & CAP_STATUS32)
92 flags2 |= FLAGS2_32_BIT_ERROR_CODES;
93 if (cli->use_spnego)
94 flags2 |= FLAGS2_EXTENDED_SECURITY;
95 SSVAL(buf,smb_flg2, flags2);
98 /****************************************************************************
99 Initialize Domain, user or password.
100 ****************************************************************************/
102 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain)
104 TALLOC_FREE(cli->domain);
105 cli->domain = talloc_strdup(cli, domain ? domain : "");
106 if (cli->domain == NULL) {
107 return NT_STATUS_NO_MEMORY;
109 return NT_STATUS_OK;
112 NTSTATUS cli_set_username(struct cli_state *cli, const char *username)
114 TALLOC_FREE(cli->user_name);
115 cli->user_name = talloc_strdup(cli, username ? username : "");
116 if (cli->user_name == NULL) {
117 return NT_STATUS_NO_MEMORY;
119 return NT_STATUS_OK;
122 NTSTATUS cli_set_password(struct cli_state *cli, const char *password)
124 TALLOC_FREE(cli->password);
126 /* Password can be NULL. */
127 if (password) {
128 cli->password = talloc_strdup(cli, password);
129 if (cli->password == NULL) {
130 return NT_STATUS_NO_MEMORY;
132 } else {
133 /* Use zero NTLMSSP hashes and session key. */
134 cli->password = NULL;
137 return NT_STATUS_OK;
140 /****************************************************************************
141 Initialise credentials of a client structure.
142 ****************************************************************************/
144 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password)
146 NTSTATUS status = cli_set_username(cli, username);
147 if (!NT_STATUS_IS_OK(status)) {
148 return status;
150 status = cli_set_domain(cli, domain);
151 if (!NT_STATUS_IS_OK(status)) {
152 return status;
154 DEBUG(10,("cli_init_creds: user %s domain %s\n", cli->user_name, cli->domain));
156 return cli_set_password(cli, password);
159 /****************************************************************************
160 Initialise a client structure. Always returns a talloc'ed struct.
161 Set the signing state (used from the command line).
162 ****************************************************************************/
164 struct cli_state *cli_initialise_ex(int signing_state)
166 struct cli_state *cli = NULL;
167 bool allow_smb_signing = false;
168 bool mandatory_signing = false;
170 /* Check the effective uid - make sure we are not setuid */
171 if (is_setuid_root()) {
172 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
173 return NULL;
176 cli = talloc_zero(NULL, struct cli_state);
177 if (!cli) {
178 return NULL;
181 cli->dfs_mountpoint = talloc_strdup(cli, "");
182 if (!cli->dfs_mountpoint) {
183 goto error;
185 cli->fd = -1;
186 cli->raw_status = NT_STATUS_INTERNAL_ERROR;
187 cli->cnum = -1;
188 cli->pid = (uint16)sys_getpid();
189 cli->vuid = UID_FIELD_INVALID;
190 cli->protocol = PROTOCOL_NT1;
191 cli->timeout = 20000; /* Timeout is in milliseconds. */
192 cli->max_xmit = CLI_BUFFER_SIZE+4;
193 cli->case_sensitive = false;
195 cli->use_spnego = lp_client_use_spnego();
197 cli->capabilities = CAP_UNICODE | CAP_STATUS32 | CAP_DFS;
199 /* Set the CLI_FORCE_DOSERR environment variable to test
200 client routines using DOS errors instead of STATUS32
201 ones. This intended only as a temporary hack. */
202 if (getenv("CLI_FORCE_DOSERR"))
203 cli->force_dos_errors = true;
205 if (lp_client_signing()) {
206 allow_smb_signing = true;
209 if (lp_client_signing() == Required) {
210 mandatory_signing = true;
213 if (signing_state != Undefined) {
214 allow_smb_signing = true;
217 if (signing_state == false) {
218 allow_smb_signing = false;
219 mandatory_signing = false;
222 if (signing_state == Required) {
223 mandatory_signing = true;
226 /* initialise signing */
227 cli->signing_state = smb_signing_init(cli,
228 allow_smb_signing,
229 mandatory_signing);
230 if (!cli->signing_state) {
231 goto error;
234 cli->outgoing = tevent_queue_create(cli, "cli_outgoing");
235 if (cli->outgoing == NULL) {
236 goto error;
238 cli->pending = NULL;
240 cli->initialised = 1;
242 cli->smb1.mid = 1;
244 return cli;
246 /* Clean up after malloc() error */
248 error:
250 TALLOC_FREE(cli);
251 return NULL;
254 struct cli_state *cli_initialise(void)
256 return cli_initialise_ex(Undefined);
259 /****************************************************************************
260 Close all pipes open on this session.
261 ****************************************************************************/
263 void cli_nt_pipes_close(struct cli_state *cli)
265 while (cli->pipe_list != NULL) {
267 * No TALLOC_FREE here!
269 talloc_free(cli->pipe_list);
273 /****************************************************************************
274 Shutdown a client structure.
275 ****************************************************************************/
277 static void _cli_shutdown(struct cli_state *cli)
279 cli_nt_pipes_close(cli);
282 * tell our peer to free his resources. Wihtout this, when an
283 * application attempts to do a graceful shutdown and calls
284 * smbc_free_context() to clean up all connections, some connections
285 * can remain active on the peer end, until some (long) timeout period
286 * later. This tree disconnect forces the peer to clean up, since the
287 * connection will be going away.
289 if (cli->cnum != (uint16)-1) {
290 cli_tdis(cli);
293 data_blob_free(&cli->secblob);
294 data_blob_free(&cli->user_session_key);
296 if (cli->fd != -1) {
297 close(cli->fd);
299 cli->fd = -1;
302 * Need to free pending first, they remove themselves
304 while (cli->pending) {
305 talloc_free(cli->pending[0]);
307 TALLOC_FREE(cli);
310 void cli_shutdown(struct cli_state *cli)
312 struct cli_state *cli_head;
313 if (cli == NULL) {
314 return;
316 DLIST_HEAD(cli, cli_head);
317 if (cli_head == cli) {
319 * head of a DFS list, shutdown all subsidiary DFS
320 * connections.
322 struct cli_state *p, *next;
324 for (p = cli_head->next; p; p = next) {
325 next = p->next;
326 DLIST_REMOVE(cli_head, p);
327 _cli_shutdown(p);
329 } else {
330 DLIST_REMOVE(cli_head, cli);
333 _cli_shutdown(cli);
336 /****************************************************************************
337 Set socket options on a open connection.
338 ****************************************************************************/
340 void cli_sockopt(struct cli_state *cli, const char *options)
342 set_socket_options(cli->fd, options);
345 /****************************************************************************
346 Set the PID to use for smb messages. Return the old pid.
347 ****************************************************************************/
349 uint16 cli_setpid(struct cli_state *cli, uint16 pid)
351 uint16 ret = cli->pid;
352 cli->pid = pid;
353 return ret;
356 /****************************************************************************
357 Set the case sensitivity flag on the packets. Returns old state.
358 ****************************************************************************/
360 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive)
362 bool ret = cli->case_sensitive;
363 cli->case_sensitive = case_sensitive;
364 return ret;
367 struct cli_echo_state {
368 uint16_t vwv[1];
369 DATA_BLOB data;
370 int num_echos;
373 static void cli_echo_done(struct tevent_req *subreq);
375 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
376 struct cli_state *cli, uint16_t num_echos,
377 DATA_BLOB data)
379 struct tevent_req *req, *subreq;
380 struct cli_echo_state *state;
382 req = tevent_req_create(mem_ctx, &state, struct cli_echo_state);
383 if (req == NULL) {
384 return NULL;
386 SSVAL(state->vwv, 0, num_echos);
387 state->data = data;
388 state->num_echos = num_echos;
390 subreq = cli_smb_send(state, ev, cli, SMBecho, 0, 1, state->vwv,
391 data.length, data.data);
392 if (subreq == NULL) {
393 goto fail;
395 tevent_req_set_callback(subreq, cli_echo_done, req);
396 return req;
397 fail:
398 TALLOC_FREE(req);
399 return NULL;
402 static void cli_echo_done(struct tevent_req *subreq)
404 struct tevent_req *req = tevent_req_callback_data(
405 subreq, struct tevent_req);
406 struct cli_echo_state *state = tevent_req_data(
407 req, struct cli_echo_state);
408 NTSTATUS status;
409 uint32_t num_bytes;
410 uint8_t *bytes;
411 uint8_t *inbuf;
413 status = cli_smb_recv(subreq, state, &inbuf, 0, NULL, NULL,
414 &num_bytes, &bytes);
415 if (!NT_STATUS_IS_OK(status)) {
416 tevent_req_nterror(req, status);
417 return;
419 if ((num_bytes != state->data.length)
420 || (memcmp(bytes, state->data.data, num_bytes) != 0)) {
421 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
422 return;
425 state->num_echos -=1;
426 if (state->num_echos == 0) {
427 tevent_req_done(req);
428 return;
431 if (!cli_smb_req_set_pending(subreq)) {
432 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
433 return;
438 * Get the result out from an echo request
439 * @param[in] req The async_req from cli_echo_send
440 * @retval Did the server reply correctly?
443 NTSTATUS cli_echo_recv(struct tevent_req *req)
445 return tevent_req_simple_recv_ntstatus(req);
449 * @brief Send/Receive SMBEcho requests
450 * @param[in] mem_ctx The memory context to put the async_req on
451 * @param[in] ev The event context that will call us back
452 * @param[in] cli The connection to send the echo to
453 * @param[in] num_echos How many times do we want to get the reply?
454 * @param[in] data The data we want to get back
455 * @retval Did the server reply correctly?
458 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data)
460 TALLOC_CTX *frame = talloc_stackframe();
461 struct event_context *ev;
462 struct tevent_req *req;
463 NTSTATUS status = NT_STATUS_OK;
465 if (cli_has_async_calls(cli)) {
467 * Can't use sync call while an async call is in flight
469 status = NT_STATUS_INVALID_PARAMETER;
470 goto fail;
473 ev = event_context_init(frame);
474 if (ev == NULL) {
475 status = NT_STATUS_NO_MEMORY;
476 goto fail;
479 req = cli_echo_send(frame, ev, cli, num_echos, data);
480 if (req == NULL) {
481 status = NT_STATUS_NO_MEMORY;
482 goto fail;
485 if (!tevent_req_poll(req, ev)) {
486 status = map_nt_error_from_unix(errno);
487 goto fail;
490 status = cli_echo_recv(req);
491 fail:
492 TALLOC_FREE(frame);
493 return status;
497 * Is the SMB command able to hold an AND_X successor
498 * @param[in] cmd The SMB command in question
499 * @retval Can we add a chained request after "cmd"?
501 bool is_andx_req(uint8_t cmd)
503 switch (cmd) {
504 case SMBtconX:
505 case SMBlockingX:
506 case SMBopenX:
507 case SMBreadX:
508 case SMBwriteX:
509 case SMBsesssetupX:
510 case SMBulogoffX:
511 case SMBntcreateX:
512 return true;
513 break;
514 default:
515 break;
518 return false;
521 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
522 uint8_t smb_command, uint8_t additional_flags,
523 uint8_t wct, uint16_t *vwv,
524 uint32_t num_bytes, const uint8_t *bytes,
525 struct tevent_req **result_parent,
526 uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
527 uint32_t *pnum_bytes, uint8_t **pbytes)
529 struct tevent_context *ev;
530 struct tevent_req *req = NULL;
531 NTSTATUS status = NT_STATUS_NO_MEMORY;
533 if (cli_has_async_calls(cli)) {
534 return NT_STATUS_INVALID_PARAMETER;
536 ev = tevent_context_init(mem_ctx);
537 if (ev == NULL) {
538 goto fail;
540 req = cli_smb_send(mem_ctx, ev, cli, smb_command, additional_flags,
541 wct, vwv, num_bytes, bytes);
542 if (req == NULL) {
543 goto fail;
545 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
546 goto fail;
548 status = cli_smb_recv(req, NULL, NULL, min_wct, pwct, pvwv,
549 pnum_bytes, pbytes);
550 fail:
551 TALLOC_FREE(ev);
552 if (NT_STATUS_IS_OK(status) && (result_parent != NULL)) {
553 *result_parent = req;
555 return status;