s3:libsmb: split cli->secblob into cli->conn.smb1.server.{guid,gss_blob,challenge...
[samba.git] / source3 / libsmb / clientgen.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB client generic functions
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Jeremy Allison 2007.
6    
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.
11    
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.
16    
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/>.
19 */
20
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"
26
27 /*******************************************************************
28  Setup the word count and byte count for a client smb message.
29 ********************************************************************/
30
31 int cli_set_message(char *buf,int num_words,int num_bytes,bool zero)
32 {
33         if (zero && (num_words || num_bytes)) {
34                 memset(buf + smb_size,'\0',num_words*2 + num_bytes);
35         }
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);
40 }
41
42 /****************************************************************************
43  Change the timeout (in milliseconds).
44 ****************************************************************************/
45
46 unsigned int cli_set_timeout(struct cli_state *cli, unsigned int timeout)
47 {
48         unsigned int old_timeout = cli->timeout;
49         cli->timeout = timeout;
50         return old_timeout;
51 }
52
53 /****************************************************************************
54  convenience routine to find if we negotiated ucs2
55 ****************************************************************************/
56
57 bool cli_ucs2(struct cli_state *cli)
58 {
59         return ((cli_state_capabilities(cli) & CAP_UNICODE) != 0);
60 }
61
62 /****************************************************************************
63  Setup basics in a outgoing packet.
64 ****************************************************************************/
65
66 void cli_setup_packet_buf(struct cli_state *cli, char *buf)
67 {
68         uint16 flags2;
69         cli->rap_error = 0;
70         SIVAL(buf,smb_rcls,0);
71         SSVAL(buf,smb_pid,cli->smb1.pid);
72         memset(buf+smb_pidhigh, 0, 12);
73         SSVAL(buf,smb_uid, cli_state_get_uid(cli));
74         SSVAL(buf,smb_mid, 0);
75
76         if (cli_state_protocol(cli) <= PROTOCOL_CORE) {
77                 return;
78         }
79
80         if (cli->case_sensitive) {
81                 SCVAL(buf,smb_flg,0x0);
82         } else {
83                 /* Default setting, case insensitive. */
84                 SCVAL(buf,smb_flg,0x8);
85         }
86         flags2 = FLAGS2_LONG_PATH_COMPONENTS;
87         if (cli_state_capabilities(cli) & CAP_UNICODE)
88                 flags2 |= FLAGS2_UNICODE_STRINGS;
89         if ((cli_state_capabilities(cli) & CAP_DFS) && cli->dfsroot)
90                 flags2 |= FLAGS2_DFS_PATHNAMES;
91         if (cli_state_capabilities(cli) & CAP_STATUS32)
92                 flags2 |= FLAGS2_32_BIT_ERROR_CODES;
93         if (cli_state_capabilities(cli) & CAP_EXTENDED_SECURITY)
94                 flags2 |= FLAGS2_EXTENDED_SECURITY;
95         SSVAL(buf,smb_flg2, flags2);
96 }
97
98 /****************************************************************************
99  Initialize Domain, user or password.
100 ****************************************************************************/
101
102 NTSTATUS cli_set_domain(struct cli_state *cli, const char *domain)
103 {
104         TALLOC_FREE(cli->domain);
105         cli->domain = talloc_strdup(cli, domain ? domain : "");
106         if (cli->domain == NULL) {
107                 return NT_STATUS_NO_MEMORY;
108         }
109         return NT_STATUS_OK;
110 }
111
112 NTSTATUS cli_set_username(struct cli_state *cli, const char *username)
113 {
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;
118         }
119         return NT_STATUS_OK;
120 }
121
122 NTSTATUS cli_set_password(struct cli_state *cli, const char *password)
123 {
124         TALLOC_FREE(cli->password);
125
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;
131                 }
132         } else {
133                 /* Use zero NTLMSSP hashes and session key. */
134                 cli->password = NULL;
135         }
136
137         return NT_STATUS_OK;
138 }
139
140 /****************************************************************************
141  Initialise credentials of a client structure.
142 ****************************************************************************/
143
144 NTSTATUS cli_init_creds(struct cli_state *cli, const char *username, const char *domain, const char *password)
145 {
146         NTSTATUS status = cli_set_username(cli, username);
147         if (!NT_STATUS_IS_OK(status)) {
148                 return status;
149         }
150         status = cli_set_domain(cli, domain);
151         if (!NT_STATUS_IS_OK(status)) {
152                 return status;
153         }
154         DEBUG(10,("cli_init_creds: user %s domain %s\n", cli->user_name, cli->domain));
155
156         return cli_set_password(cli, password);
157 }
158
159 /****************************************************************************
160  Initialise a client structure. Always returns a talloc'ed struct.
161  Set the signing state (used from the command line).
162 ****************************************************************************/
163
164 struct cli_state *cli_state_create(TALLOC_CTX *mem_ctx,
165                                    int fd,
166                                    const char *remote_name,
167                                    const char *remote_realm,
168                                    int signing_state, int flags)
169 {
170         struct cli_state *cli = NULL;
171         bool allow_smb_signing;
172         bool desire_smb_signing;
173         bool mandatory_signing;
174         socklen_t ss_length;
175         int ret;
176         bool use_spnego = lp_client_use_spnego();
177         bool force_dos_errors = false;
178         bool force_ascii = false;
179         bool use_level_II_oplocks = false;
180
181         /* Check the effective uid - make sure we are not setuid */
182         if (is_setuid_root()) {
183                 DEBUG(0,("libsmb based programs must *NOT* be setuid root.\n"));
184                 return NULL;
185         }
186
187         cli = talloc_zero(mem_ctx, struct cli_state);
188         if (!cli) {
189                 return NULL;
190         }
191
192         cli->dfs_mountpoint = talloc_strdup(cli, "");
193         if (!cli->dfs_mountpoint) {
194                 goto error;
195         }
196         cli->raw_status = NT_STATUS_INTERNAL_ERROR;
197         cli->timeout = 20000; /* Timeout is in milliseconds. */
198         cli->case_sensitive = false;
199
200         /* Set the CLI_FORCE_DOSERR environment variable to test
201            client routines using DOS errors instead of STATUS32
202            ones.  This intended only as a temporary hack. */    
203         if (getenv("CLI_FORCE_DOSERR")) {
204                 force_dos_errors = true;
205         }
206         if (flags & CLI_FULL_CONNECTION_FORCE_DOS_ERRORS) {
207                 force_dos_errors = true;
208         }
209
210         if (getenv("CLI_FORCE_ASCII")) {
211                 force_ascii = true;
212         }
213         if (flags & CLI_FULL_CONNECTION_FORCE_ASCII) {
214                 force_ascii = true;
215         }
216
217         if (flags & CLI_FULL_CONNECTION_DONT_SPNEGO) {
218                 use_spnego = false;
219         } else if (flags & CLI_FULL_CONNECTION_USE_KERBEROS) {
220                 cli->use_kerberos = true;
221         }
222         if ((flags & CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS) &&
223              cli->use_kerberos) {
224                 cli->fallback_after_kerberos = true;
225         }
226
227         if (flags & CLI_FULL_CONNECTION_USE_CCACHE) {
228                 cli->use_ccache = true;
229         }
230
231         if (flags & CLI_FULL_CONNECTION_OPLOCKS) {
232                 cli->use_oplocks = true;
233         }
234         if (flags & CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS) {
235                 use_level_II_oplocks = true;
236         }
237
238         if (signing_state == Undefined) {
239                 signing_state = lp_client_signing();
240         }
241
242         switch (signing_state) {
243         case false:
244                 /* never */
245                 allow_smb_signing = false;
246                 desire_smb_signing = false;
247                 mandatory_signing = false;
248                 break;
249         case true:
250                 /* if the server supports it */
251                 allow_smb_signing = true;
252                 desire_smb_signing = true;
253                 mandatory_signing = false;
254                 break;
255         default:
256         case Undefined:
257         case Auto:
258                 /* if the server requires it */
259                 allow_smb_signing = true;
260                 desire_smb_signing = false;
261                 mandatory_signing = false;
262                 break;
263         case Required:
264                 /* always */
265                 allow_smb_signing = true;
266                 desire_smb_signing = true;
267                 mandatory_signing = true;
268                 break;
269         }
270
271         /* initialise signing */
272         cli->signing_state = smb_signing_init(cli,
273                                               allow_smb_signing,
274                                               desire_smb_signing,
275                                               mandatory_signing);
276         if (!cli->signing_state) {
277                 goto error;
278         }
279
280         cli->conn.smb1.client.capabilities = 0;
281         cli->conn.smb1.client.capabilities |= CAP_LARGE_FILES;
282         cli->conn.smb1.client.capabilities |= CAP_NT_SMBS | CAP_RPC_REMOTE_APIS;
283         cli->conn.smb1.client.capabilities |= CAP_LOCK_AND_READ | CAP_NT_FIND;
284         cli->conn.smb1.client.capabilities |= CAP_DFS | CAP_W2K_SMBS;
285         cli->conn.smb1.client.capabilities |= CAP_LARGE_READX|CAP_LARGE_WRITEX;
286         cli->conn.smb1.client.capabilities |= CAP_LWIO;
287
288         if (!force_dos_errors) {
289                 cli->conn.smb1.client.capabilities |= CAP_STATUS32;
290         }
291
292         if (!force_ascii) {
293                 cli->conn.smb1.client.capabilities |= CAP_UNICODE;
294         }
295
296         if (use_spnego) {
297                 cli->conn.smb1.client.capabilities |= CAP_EXTENDED_SECURITY;
298         }
299
300         if (use_level_II_oplocks) {
301                 cli->conn.smb1.client.capabilities |= CAP_LEVEL_II_OPLOCKS;
302         }
303
304         cli->conn.smb1.client.max_xmit = CLI_BUFFER_SIZE;
305
306         cli->conn.smb1.capabilities = cli->conn.smb1.client.capabilities;
307         cli->conn.smb1.max_xmit = 1024;
308
309         cli->conn.smb1.mid = 1;
310
311         cli->conn.outgoing = tevent_queue_create(cli, "cli_outgoing");
312         if (cli->conn.outgoing == NULL) {
313                 goto error;
314         }
315         cli->conn.pending = NULL;
316
317         cli->conn.remote_name = talloc_strdup(cli, remote_name);
318         if (cli->conn.remote_name == NULL) {
319                 goto error;
320         }
321
322         if (remote_realm) {
323                 cli->conn.remote_realm = talloc_strdup(cli, remote_realm);
324                 if (cli->conn.remote_realm == NULL) {
325                         goto error;
326                 }
327         }
328
329         cli->conn.fd = fd;
330
331         ss_length = sizeof(cli->conn.local_ss);
332         ret = getsockname(fd,
333                           (struct sockaddr *)(void *)&cli->conn.local_ss,
334                           &ss_length);
335         if (ret == -1) {
336                 goto error;
337         }
338         ss_length = sizeof(cli->conn.remote_ss);
339         ret = getpeername(fd,
340                           (struct sockaddr *)(void *)&cli->conn.remote_ss,
341                           &ss_length);
342         if (ret == -1) {
343                 goto error;
344         }
345
346         cli->smb1.pid = (uint16_t)sys_getpid();
347         cli->smb1.vc_num = cli->smb1.pid;
348         cli->smb1.tid = UINT16_MAX;
349         cli->smb1.uid = UID_FIELD_INVALID;
350
351         cli->initialised = 1;
352         return cli;
353
354         /* Clean up after malloc() error */
355
356  error:
357
358         TALLOC_FREE(cli);
359         return NULL;
360 }
361
362 bool cli_state_encryption_on(struct cli_state *cli)
363 {
364         return common_encryption_on(cli->trans_enc_state);
365 }
366
367
368 /****************************************************************************
369  Close all pipes open on this session.
370 ****************************************************************************/
371
372 void cli_nt_pipes_close(struct cli_state *cli)
373 {
374         while (cli->pipe_list != NULL) {
375                 /*
376                  * No TALLOC_FREE here!
377                  */
378                 talloc_free(cli->pipe_list);
379         }
380 }
381
382 /****************************************************************************
383  Shutdown a client structure.
384 ****************************************************************************/
385
386 static void _cli_shutdown(struct cli_state *cli)
387 {
388         cli_nt_pipes_close(cli);
389
390         /*
391          * tell our peer to free his resources.  Wihtout this, when an
392          * application attempts to do a graceful shutdown and calls
393          * smbc_free_context() to clean up all connections, some connections
394          * can remain active on the peer end, until some (long) timeout period
395          * later.  This tree disconnect forces the peer to clean up, since the
396          * connection will be going away.
397          */
398         if (cli_state_has_tcon(cli)) {
399                 cli_tdis(cli);
400         }
401         
402         data_blob_free(&cli->user_session_key);
403
404         cli_state_disconnect(cli);
405
406         /*
407          * Need to free pending first, they remove themselves
408          */
409         while (cli->conn.pending) {
410                 talloc_free(cli->conn.pending[0]);
411         }
412         TALLOC_FREE(cli);
413 }
414
415 void cli_shutdown(struct cli_state *cli)
416 {
417         struct cli_state *cli_head;
418         if (cli == NULL) {
419                 return;
420         }
421         DLIST_HEAD(cli, cli_head);
422         if (cli_head == cli) {
423                 /*
424                  * head of a DFS list, shutdown all subsidiary DFS
425                  * connections.
426                  */
427                 struct cli_state *p, *next;
428
429                 for (p = cli_head->next; p; p = next) {
430                         next = p->next;
431                         DLIST_REMOVE(cli_head, p);
432                         _cli_shutdown(p);
433                 }
434         } else {
435                 DLIST_REMOVE(cli_head, cli);
436         }
437
438         _cli_shutdown(cli);
439 }
440
441 /****************************************************************************
442  Set socket options on a open connection.
443 ****************************************************************************/
444
445 void cli_sockopt(struct cli_state *cli, const char *options)
446 {
447         set_socket_options(cli->conn.fd, options);
448 }
449
450 const struct sockaddr_storage *cli_state_local_sockaddr(struct cli_state *cli)
451 {
452         return &cli->conn.local_ss;
453 }
454
455 const struct sockaddr_storage *cli_state_remote_sockaddr(struct cli_state *cli)
456 {
457         return &cli->conn.remote_ss;
458 }
459
460 const char *cli_state_remote_name(struct cli_state *cli)
461 {
462         return cli->conn.remote_name;
463 }
464
465 const char *cli_state_remote_realm(struct cli_state *cli)
466 {
467         return cli->conn.remote_realm;
468 }
469
470 uint16_t cli_state_get_vc_num(struct cli_state *cli)
471 {
472         return cli->smb1.vc_num;
473 }
474
475 uint32_t cli_state_server_session_key(struct cli_state *cli)
476 {
477         return cli->conn.smb1.server.session_key;
478 }
479
480 /****************************************************************************
481  Set the PID to use for smb messages. Return the old pid.
482 ****************************************************************************/
483
484 uint16 cli_setpid(struct cli_state *cli, uint16 pid)
485 {
486         uint16_t ret = cli->smb1.pid;
487         cli->smb1.pid = pid;
488         return ret;
489 }
490
491 uint16_t cli_getpid(struct cli_state *cli)
492 {
493         return cli->smb1.pid;
494 }
495
496 bool cli_state_has_tcon(struct cli_state *cli)
497 {
498         if (cli->smb1.tid == UINT16_MAX) {
499                 return false;
500         }
501
502         return true;
503 }
504
505 uint16_t cli_state_get_tid(struct cli_state *cli)
506 {
507         return cli->smb1.tid;
508 }
509
510 uint16_t cli_state_set_tid(struct cli_state *cli, uint16_t tid)
511 {
512         uint16_t ret = cli->smb1.tid;
513         cli->smb1.tid = tid;
514         return ret;
515 }
516
517 uint16_t cli_state_get_uid(struct cli_state *cli)
518 {
519         return cli->smb1.uid;
520 }
521
522 uint16_t cli_state_set_uid(struct cli_state *cli, uint16_t uid)
523 {
524         uint16_t ret = cli->smb1.uid;
525         cli->smb1.uid = uid;
526         return ret;
527 }
528
529 /****************************************************************************
530  Set the case sensitivity flag on the packets. Returns old state.
531 ****************************************************************************/
532
533 bool cli_set_case_sensitive(struct cli_state *cli, bool case_sensitive)
534 {
535         bool ret = cli->case_sensitive;
536         cli->case_sensitive = case_sensitive;
537         return ret;
538 }
539
540 enum protocol_types cli_state_protocol(struct cli_state *cli)
541 {
542         return cli->conn.protocol;
543 }
544
545 uint32_t cli_state_capabilities(struct cli_state *cli)
546 {
547         return cli->conn.smb1.capabilities;
548 }
549
550 uint32_t cli_state_available_size(struct cli_state *cli, uint32_t ofs)
551 {
552         uint32_t ret = cli->conn.smb1.max_xmit;
553
554         if (ofs >= ret) {
555                 return 0;
556         }
557
558         ret -= ofs;
559
560         return ret;
561 }
562
563 uint16_t cli_state_max_requests(struct cli_state *cli)
564 {
565         return cli->conn.smb1.server.max_mux;
566 }
567
568 const uint8_t *cli_state_server_challenge(struct cli_state *cli)
569 {
570         return cli->conn.smb1.server.challenge;
571 }
572
573 const DATA_BLOB *cli_state_server_gss_blob(struct cli_state *cli)
574 {
575         return &cli->conn.smb1.server.gss_blob;
576 }
577
578 uint16_t cli_state_security_mode(struct cli_state *cli)
579 {
580         return cli->conn.smb1.server.security_mode;
581 }
582
583 int cli_state_server_time_zone(struct cli_state *cli)
584 {
585         return cli->serverzone;
586 }
587
588 time_t cli_state_server_time(struct cli_state *cli)
589 {
590         return cli->servertime;
591 }
592
593 struct cli_echo_state {
594         uint16_t vwv[1];
595         DATA_BLOB data;
596         int num_echos;
597 };
598
599 static void cli_echo_done(struct tevent_req *subreq);
600
601 struct tevent_req *cli_echo_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
602                                  struct cli_state *cli, uint16_t num_echos,
603                                  DATA_BLOB data)
604 {
605         struct tevent_req *req, *subreq;
606         struct cli_echo_state *state;
607
608         req = tevent_req_create(mem_ctx, &state, struct cli_echo_state);
609         if (req == NULL) {
610                 return NULL;
611         }
612         SSVAL(state->vwv, 0, num_echos);
613         state->data = data;
614         state->num_echos = num_echos;
615
616         subreq = cli_smb_send(state, ev, cli, SMBecho, 0, 1, state->vwv,
617                               data.length, data.data);
618         if (subreq == NULL) {
619                 goto fail;
620         }
621         tevent_req_set_callback(subreq, cli_echo_done, req);
622         return req;
623  fail:
624         TALLOC_FREE(req);
625         return NULL;
626 }
627
628 static void cli_echo_done(struct tevent_req *subreq)
629 {
630         struct tevent_req *req = tevent_req_callback_data(
631                 subreq, struct tevent_req);
632         struct cli_echo_state *state = tevent_req_data(
633                 req, struct cli_echo_state);
634         NTSTATUS status;
635         uint32_t num_bytes;
636         uint8_t *bytes;
637         uint8_t *inbuf;
638
639         status = cli_smb_recv(subreq, state, &inbuf, 0, NULL, NULL,
640                               &num_bytes, &bytes);
641         if (!NT_STATUS_IS_OK(status)) {
642                 tevent_req_nterror(req, status);
643                 return;
644         }
645         if ((num_bytes != state->data.length)
646             || (memcmp(bytes, state->data.data, num_bytes) != 0)) {
647                 tevent_req_nterror(req, NT_STATUS_INVALID_NETWORK_RESPONSE);
648                 return;
649         }
650
651         state->num_echos -=1;
652         if (state->num_echos == 0) {
653                 tevent_req_done(req);
654                 return;
655         }
656
657         if (!cli_smb_req_set_pending(subreq)) {
658                 tevent_req_nterror(req, NT_STATUS_NO_MEMORY);
659                 return;
660         }
661 }
662
663 /**
664  * Get the result out from an echo request
665  * @param[in] req       The async_req from cli_echo_send
666  * @retval Did the server reply correctly?
667  */
668
669 NTSTATUS cli_echo_recv(struct tevent_req *req)
670 {
671         return tevent_req_simple_recv_ntstatus(req);
672 }
673
674 /**
675  * @brief Send/Receive SMBEcho requests
676  * @param[in] mem_ctx   The memory context to put the async_req on
677  * @param[in] ev        The event context that will call us back
678  * @param[in] cli       The connection to send the echo to
679  * @param[in] num_echos How many times do we want to get the reply?
680  * @param[in] data      The data we want to get back
681  * @retval Did the server reply correctly?
682  */
683
684 NTSTATUS cli_echo(struct cli_state *cli, uint16_t num_echos, DATA_BLOB data)
685 {
686         TALLOC_CTX *frame = talloc_stackframe();
687         struct event_context *ev;
688         struct tevent_req *req;
689         NTSTATUS status = NT_STATUS_OK;
690
691         if (cli_has_async_calls(cli)) {
692                 /*
693                  * Can't use sync call while an async call is in flight
694                  */
695                 status = NT_STATUS_INVALID_PARAMETER;
696                 goto fail;
697         }
698
699         ev = event_context_init(frame);
700         if (ev == NULL) {
701                 status = NT_STATUS_NO_MEMORY;
702                 goto fail;
703         }
704
705         req = cli_echo_send(frame, ev, cli, num_echos, data);
706         if (req == NULL) {
707                 status = NT_STATUS_NO_MEMORY;
708                 goto fail;
709         }
710
711         if (!tevent_req_poll(req, ev)) {
712                 status = map_nt_error_from_unix(errno);
713                 goto fail;
714         }
715
716         status = cli_echo_recv(req);
717  fail:
718         TALLOC_FREE(frame);
719         return status;
720 }
721
722 /**
723  * Is the SMB command able to hold an AND_X successor
724  * @param[in] cmd       The SMB command in question
725  * @retval Can we add a chained request after "cmd"?
726  */
727 bool is_andx_req(uint8_t cmd)
728 {
729         switch (cmd) {
730         case SMBtconX:
731         case SMBlockingX:
732         case SMBopenX:
733         case SMBreadX:
734         case SMBwriteX:
735         case SMBsesssetupX:
736         case SMBulogoffX:
737         case SMBntcreateX:
738                 return true;
739                 break;
740         default:
741                 break;
742         }
743
744         return false;
745 }
746
747 NTSTATUS cli_smb(TALLOC_CTX *mem_ctx, struct cli_state *cli,
748                  uint8_t smb_command, uint8_t additional_flags,
749                  uint8_t wct, uint16_t *vwv,
750                  uint32_t num_bytes, const uint8_t *bytes,
751                  struct tevent_req **result_parent,
752                  uint8_t min_wct, uint8_t *pwct, uint16_t **pvwv,
753                  uint32_t *pnum_bytes, uint8_t **pbytes)
754 {
755         struct tevent_context *ev;
756         struct tevent_req *req = NULL;
757         NTSTATUS status = NT_STATUS_NO_MEMORY;
758
759         if (cli_has_async_calls(cli)) {
760                 return NT_STATUS_INVALID_PARAMETER;
761         }
762         ev = tevent_context_init(mem_ctx);
763         if (ev == NULL) {
764                 goto fail;
765         }
766         req = cli_smb_send(mem_ctx, ev, cli, smb_command, additional_flags,
767                            wct, vwv, num_bytes, bytes);
768         if (req == NULL) {
769                 goto fail;
770         }
771         if (!tevent_req_poll_ntstatus(req, ev, &status)) {
772                 goto fail;
773         }
774         status = cli_smb_recv(req, NULL, NULL, min_wct, pwct, pvwv,
775                               pnum_bytes, pbytes);
776 fail:
777         TALLOC_FREE(ev);
778         if (NT_STATUS_IS_OK(status) && (result_parent != NULL)) {
779                 *result_parent = req;
780         }
781         return status;
782 }