Protect against a closed socket
[ira/wip.git] / source3 / libsmb / async_smb.c
1 /*
2    Unix SMB/CIFS implementation.
3    Infrastructure for async SMB client requests
4    Copyright (C) Volker Lendecke 2008
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "includes.h"
21
22 static void cli_state_handler(struct event_context *event_ctx,
23                               struct fd_event *event, uint16 flags, void *p);
24
25 /**
26  * Fetch an error out of a NBT packet
27  * @param[in] buf       The SMB packet
28  * @retval              The error, converted to NTSTATUS
29  */
30
31 NTSTATUS cli_pull_error(char *buf)
32 {
33         uint32_t flags2 = SVAL(buf, smb_flg2);
34
35         if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
36                 return NT_STATUS(IVAL(buf, smb_rcls));
37         }
38
39         /* if the client uses dos errors, but there is no error,
40            we should return no error here, otherwise it looks
41            like an unknown bad NT_STATUS. jmcd */
42         if (CVAL(buf, smb_rcls) == 0)
43                 return NT_STATUS_OK;
44
45         return NT_STATUS_DOS(CVAL(buf, smb_rcls), SVAL(buf,smb_err));
46 }
47
48 /**
49  * Compatibility helper for the sync APIs: Fake NTSTATUS in cli->inbuf
50  * @param[in] cli       The client connection that just received an error
51  * @param[in] status    The error to set on "cli"
52  */
53
54 void cli_set_error(struct cli_state *cli, NTSTATUS status)
55 {
56         uint32_t flags2 = SVAL(cli->inbuf, smb_flg2);
57
58         if (NT_STATUS_IS_DOS(status)) {
59                 SSVAL(cli->inbuf, smb_flg2,
60                       flags2 & ~FLAGS2_32_BIT_ERROR_CODES);
61                 SCVAL(cli->inbuf, smb_rcls, NT_STATUS_DOS_CLASS(status));
62                 SSVAL(cli->inbuf, smb_err, NT_STATUS_DOS_CODE(status));
63                 return;
64         }
65
66         SSVAL(cli->inbuf, smb_flg2, flags2 | FLAGS2_32_BIT_ERROR_CODES);
67         SIVAL(cli->inbuf, smb_rcls, NT_STATUS_V(status));
68         return;
69 }
70
71 /**
72  * Allocate a new mid
73  * @param[in] cli       The client connection
74  * @retval              The new, unused mid
75  */
76
77 static uint16_t cli_new_mid(struct cli_state *cli)
78 {
79         uint16_t result;
80         struct cli_request *req;
81
82         while (true) {
83                 result = cli->mid++;
84                 if (result == 0) {
85                         continue;
86                 }
87
88                 for (req = cli->outstanding_requests; req; req = req->next) {
89                         if (result == req->mid) {
90                                 break;
91                         }
92                 }
93
94                 if (req == NULL) {
95                         return result;
96                 }
97         }
98 }
99
100 /**
101  * Print an async req that happens to be a cli_request
102  * @param[in] mem_ctx   The TALLOC_CTX to put the result on
103  * @param[in] req       The request to print
104  * @retval              The string representation of "req"
105  */
106
107 static char *cli_request_print(TALLOC_CTX *mem_ctx, struct async_req *req)
108 {
109         char *result = async_req_print(mem_ctx, req);
110         struct cli_request *cli_req = talloc_get_type_abort(
111                 req->private_data, struct cli_request);
112
113         if (result == NULL) {
114                 return NULL;
115         }
116
117         return talloc_asprintf_append_buffer(
118                 result, "mid=%d\n", cli_req->mid);
119 }
120
121 /**
122  * Destroy a cli_request
123  * @param[in] req       The cli_request to kill
124  * @retval Can't fail
125  */
126
127 static int cli_request_destructor(struct cli_request *req)
128 {
129         if (req->enc_state != NULL) {
130                 common_free_enc_buffer(req->enc_state, req->outbuf);
131         }
132         DLIST_REMOVE(req->cli->outstanding_requests, req);
133         if (req->cli->outstanding_requests == NULL) {
134                 TALLOC_FREE(req->cli->fd_event);
135         }
136         return 0;
137 }
138
139 /**
140  * Is the SMB command able to hold an AND_X successor
141  * @param[in] cmd       The SMB command in question
142  * @retval Can we add a chained request after "cmd"?
143  */
144
145 static bool is_andx_req(uint8_t cmd)
146 {
147         switch (cmd) {
148         case SMBtconX:
149         case SMBlockingX:
150         case SMBopenX:
151         case SMBreadX:
152         case SMBwriteX:
153         case SMBsesssetupX:
154         case SMBulogoffX:
155         case SMBntcreateX:
156                 return true;
157                 break;
158         default:
159                 break;
160         }
161
162         return false;
163 }
164
165 /**
166  * @brief Find the smb_cmd offset of the last command pushed
167  * @param[in] buf       The buffer we're building up
168  * @retval              Where can we put our next andx cmd?
169  *
170  * While chaining requests, the "next" request we're looking at needs to put
171  * its SMB_Command before the data the previous request already built up added
172  * to the chain. Find the offset to the place where we have to put our cmd.
173  */
174
175 static bool find_andx_cmd_ofs(char *buf, size_t *pofs)
176 {
177         uint8_t cmd;
178         size_t ofs;
179
180         cmd = CVAL(buf, smb_com);
181
182         SMB_ASSERT(is_andx_req(cmd));
183
184         ofs = smb_vwv0;
185
186         while (CVAL(buf, ofs) != 0xff) {
187
188                 if (!is_andx_req(CVAL(buf, ofs))) {
189                         return false;
190                 }
191
192                 /*
193                  * ofs is from start of smb header, so add the 4 length
194                  * bytes. The next cmd is right after the wct field.
195                  */
196                 ofs = SVAL(buf, ofs+2) + 4 + 1;
197
198                 SMB_ASSERT(ofs+4 < talloc_get_size(buf));
199         }
200
201         *pofs = ofs;
202         return true;
203 }
204
205 /**
206  * @brief Destroy an async_req that is the visible part of a cli_request
207  * @param[in] req       The request to kill
208  * @retval Return 0 to make talloc happy
209  *
210  * This destructor is a bit tricky: Because a cli_request can host more than
211  * one async_req for chained requests, we need to make sure that the
212  * "cli_request" that we were part of is correctly destroyed at the right
213  * time. This is done by NULLing out ourself from the "async" member of our
214  * "cli_request". If there is none left, then also TALLOC_FREE() the
215  * cli_request, which was a talloc child of the client connection cli_state.
216  */
217
218 static int cli_async_req_destructor(struct async_req *req)
219 {
220         struct cli_request *cli_req = talloc_get_type_abort(
221                 req->private_data, struct cli_request);
222         int i, pending;
223         bool found = false;
224
225         pending = 0;
226
227         for (i=0; i<cli_req->num_async; i++) {
228                 if (cli_req->async[i] == req) {
229                         cli_req->async[i] = NULL;
230                         found = true;
231                 }
232                 if (cli_req->async[i] != NULL) {
233                         pending += 1;
234                 }
235         }
236
237         SMB_ASSERT(found);
238
239         if (pending == 0) {
240                 TALLOC_FREE(cli_req);
241         }
242
243         return 0;
244 }
245
246 /**
247  * @brief Chain up a request
248  * @param[in] mem_ctx           The TALLOC_CTX for the result
249  * @param[in] ev                The event context that will call us back
250  * @param[in] cli               The cli_state we queue the request up for
251  * @param[in] smb_command       The command that we want to issue
252  * @param[in] additional_flags  open_and_x wants to add oplock header flags
253  * @param[in] wct               How many words?
254  * @param[in] vwv               The words, already in network order
255  * @param[in] num_bytes         How many bytes?
256  * @param[in] bytes             The data the request ships
257  *
258  * cli_request_chain() is the core of the SMB request marshalling routine. It
259  * will create a new async_req structure in the cli->chain_accumulator->async
260  * array and marshall the smb_cmd, the vwv array and the bytes into
261  * cli->chain_accumulator->outbuf.
262  */
263
264 static struct async_req *cli_request_chain(TALLOC_CTX *mem_ctx,
265                                            struct event_context *ev,
266                                            struct cli_state *cli,
267                                            uint8_t smb_command,
268                                            uint8_t additional_flags,
269                                            uint8_t wct, const uint16_t *vwv,
270                                            uint16_t num_bytes,
271                                            const uint8_t *bytes)
272 {
273         struct async_req **tmp_reqs;
274         char *tmp_buf;
275         struct cli_request *req;
276         size_t old_size, new_size;
277         size_t ofs;
278
279         req = cli->chain_accumulator;
280
281         tmp_reqs = TALLOC_REALLOC_ARRAY(req, req->async, struct async_req *,
282                                         req->num_async + 1);
283         if (tmp_reqs == NULL) {
284                 DEBUG(0, ("talloc failed\n"));
285                 return NULL;
286         }
287         req->async = tmp_reqs;
288         req->num_async += 1;
289
290         req->async[req->num_async-1] = async_req_new(mem_ctx, ev);
291         if (req->async[req->num_async-1] == NULL) {
292                 DEBUG(0, ("async_req_new failed\n"));
293                 req->num_async -= 1;
294                 return NULL;
295         }
296         req->async[req->num_async-1]->private_data = req;
297         req->async[req->num_async-1]->print = cli_request_print;
298         talloc_set_destructor(req->async[req->num_async-1],
299                               cli_async_req_destructor);
300
301         old_size = talloc_get_size(req->outbuf);
302
303         /*
304          * We need space for the wct field, the words, the byte count field
305          * and the bytes themselves.
306          */
307         new_size = old_size + 1 + wct * sizeof(uint16_t) + 2 + num_bytes;
308
309         if (new_size > 0xffff) {
310                 DEBUG(1, ("cli_request_chain: %u bytes won't fit\n",
311                           (unsigned)new_size));
312                 goto fail;
313         }
314
315         tmp_buf = TALLOC_REALLOC_ARRAY(NULL, req->outbuf, char, new_size);
316         if (tmp_buf == NULL) {
317                 DEBUG(0, ("talloc failed\n"));
318                 goto fail;
319         }
320         req->outbuf = tmp_buf;
321
322         if (old_size == smb_wct) {
323                 SCVAL(req->outbuf, smb_com, smb_command);
324         } else {
325                 size_t andx_cmd_ofs;
326                 if (!find_andx_cmd_ofs(req->outbuf, &andx_cmd_ofs)) {
327                         DEBUG(1, ("invalid command chain\n"));
328                         goto fail;
329                 }
330                 SCVAL(req->outbuf, andx_cmd_ofs, smb_command);
331                 SSVAL(req->outbuf, andx_cmd_ofs + 2, old_size - 4);
332         }
333
334         ofs = old_size;
335
336         SCVAL(req->outbuf, ofs, wct);
337         ofs += 1;
338
339         memcpy(req->outbuf + ofs, vwv, sizeof(uint16_t) * wct);
340         ofs += sizeof(uint16_t) * wct;
341
342         SSVAL(req->outbuf, ofs, num_bytes);
343         ofs += sizeof(uint16_t);
344
345         memcpy(req->outbuf + ofs, bytes, num_bytes);
346
347         return req->async[req->num_async-1];
348
349  fail:
350         TALLOC_FREE(req->async[req->num_async-1]);
351         req->num_async -= 1;
352         return NULL;
353 }
354
355 /**
356  * @brief prepare a cli_state to accept a chain of requests
357  * @param[in] cli       The cli_state we want to queue up in
358  * @param[in] ev        The event_context that will call us back for the socket
359  * @param[in] size_hint How many bytes are expected, just an optimization
360  * @retval Did we have enough memory?
361  *
362  * cli_chain_cork() sets up a new cli_request in cli->chain_accumulator. If
363  * cli is used in an async fashion, i.e. if we have outstanding requests, then
364  * we do not have to create a fd event. If cli is used only with the sync
365  * helpers, we need to create the fd_event here.
366  *
367  * If you want to issue a chained request to the server, do a
368  * cli_chain_cork(), then do you cli_open_send(), cli_read_and_x_send(),
369  * cli_close_send() and so on. The async requests that come out of
370  * cli_xxx_send() are normal async requests with the difference that they
371  * won't be shipped individually. But the event_context will still trigger the
372  * req->async.fn to be called on every single request.
373  *
374  * You have to take care yourself that you only issue chainable requests in
375  * the middle of the chain.
376  */
377
378 bool cli_chain_cork(struct cli_state *cli, struct event_context *ev,
379                     size_t size_hint)
380 {
381         struct cli_request *req = NULL;
382
383         SMB_ASSERT(cli->chain_accumulator == NULL);
384
385         if (cli->fd == -1) {
386                 DEBUG(10, ("cli->fd closed\n"));
387                 return false;
388         }
389
390         if (cli->fd_event == NULL) {
391                 SMB_ASSERT(cli->outstanding_requests == NULL);
392                 cli->fd_event = event_add_fd(ev, cli, cli->fd,
393                                              EVENT_FD_READ,
394                                              cli_state_handler, cli);
395                 if (cli->fd_event == NULL) {
396                         return false;
397                 }
398         }
399
400         req = talloc(cli, struct cli_request);
401         if (req == NULL) {
402                 goto fail;
403         }
404         req->cli = cli;
405
406         if (size_hint == 0) {
407                 size_hint = 100;
408         }
409         req->outbuf = talloc_array(req, char, smb_wct + size_hint);
410         if (req->outbuf == NULL) {
411                 goto fail;
412         }
413         req->outbuf = TALLOC_REALLOC_ARRAY(NULL, req->outbuf, char, smb_wct);
414
415         req->num_async = 0;
416         req->async = NULL;
417
418         req->enc_state = NULL;
419         req->recv_helper.fn = NULL;
420
421         SSVAL(req->outbuf, smb_tid, cli->cnum);
422         cli_setup_packet_buf(cli, req->outbuf);
423
424         req->mid = cli_new_mid(cli);
425         SSVAL(req->outbuf, smb_mid, req->mid);
426
427         cli->chain_accumulator = req;
428
429         DEBUG(10, ("cli_chain_cork: mid=%d\n", req->mid));
430
431         return true;
432  fail:
433         TALLOC_FREE(req);
434         if (cli->outstanding_requests == NULL) {
435                 TALLOC_FREE(cli->fd_event);
436         }
437         return false;
438 }
439
440 /**
441  * Ship a request queued up via cli_request_chain()
442  * @param[in] cl        The connection
443  */
444
445 void cli_chain_uncork(struct cli_state *cli)
446 {
447         struct cli_request *req = cli->chain_accumulator;
448
449         SMB_ASSERT(req != NULL);
450
451         DLIST_ADD_END(cli->outstanding_requests, req, struct cli_request *);
452         talloc_set_destructor(req, cli_request_destructor);
453
454         cli->chain_accumulator = NULL;
455
456         smb_setlen(req->outbuf, talloc_get_size(req->outbuf) - 4);
457
458         cli_calculate_sign_mac(cli, req->outbuf);
459
460         if (cli_encryption_on(cli)) {
461                 NTSTATUS status;
462                 char *enc_buf;
463
464                 status = cli_encrypt_message(cli, req->outbuf, &enc_buf);
465                 if (!NT_STATUS_IS_OK(status)) {
466                         DEBUG(0, ("Error in encrypting client message. "
467                                   "Error %s\n", nt_errstr(status)));
468                         TALLOC_FREE(req);
469                         return;
470                 }
471                 req->outbuf = enc_buf;
472                 req->enc_state = cli->trans_enc_state;
473         }
474
475         req->sent = 0;
476
477         event_fd_set_writeable(cli->fd_event);
478 }
479
480 /**
481  * @brief Send a request to the server
482  * @param[in] mem_ctx           The TALLOC_CTX for the result
483  * @param[in] ev                The event context that will call us back
484  * @param[in] cli               The cli_state we queue the request up for
485  * @param[in] smb_command       The command that we want to issue
486  * @param[in] additional_flags  open_and_x wants to add oplock header flags
487  * @param[in] wct               How many words?
488  * @param[in] vwv               The words, already in network order
489  * @param[in] num_bytes         How many bytes?
490  * @param[in] bytes             The data the request ships
491  *
492  * This is the generic routine to be used by the cli_xxx_send routines.
493  */
494
495 struct async_req *cli_request_send(TALLOC_CTX *mem_ctx,
496                                    struct event_context *ev,
497                                    struct cli_state *cli,
498                                    uint8_t smb_command,
499                                    uint8_t additional_flags,
500                                    uint8_t wct, const uint16_t *vwv,
501                                    uint16_t num_bytes, const uint8_t *bytes)
502 {
503         struct async_req *result;
504         bool uncork = false;
505
506         if (cli->chain_accumulator == NULL) {
507                 if (!cli_chain_cork(cli, ev,
508                                     wct * sizeof(uint16_t) + num_bytes + 3)) {
509                         DEBUG(1, ("cli_chain_cork failed\n"));
510                         return NULL;
511                 }
512                 uncork = true;
513         }
514
515         result = cli_request_chain(mem_ctx, ev, cli, smb_command,
516                                    additional_flags, wct, vwv,
517                                    num_bytes, bytes);
518
519         if (result == NULL) {
520                 DEBUG(1, ("cli_request_chain failed\n"));
521         }
522
523         if (uncork) {
524                 cli_chain_uncork(cli);
525         }
526
527         return result;
528 }
529
530 /**
531  * Figure out if there is an andx command behind the current one
532  * @param[in] buf       The smb buffer to look at
533  * @param[in] ofs       The offset to the wct field that is followed by the cmd
534  * @retval Is there a command following?
535  */
536
537 static bool have_andx_command(const char *buf, uint16_t ofs)
538 {
539         uint8_t wct;
540         size_t buflen = talloc_get_size(buf);
541
542         if ((ofs == buflen-1) || (ofs == buflen)) {
543                 return false;
544         }
545
546         wct = CVAL(buf, ofs);
547         if (wct < 2) {
548                 /*
549                  * Not enough space for the command and a following pointer
550                  */
551                 return false;
552         }
553         return (CVAL(buf, ofs+1) != 0xff);
554 }
555
556 /**
557  * @brief Pull reply data out of a request
558  * @param[in] req               The request that we just received a reply for
559  * @param[out] pwct             How many words did the server send?
560  * @param[out] pvwv             The words themselves
561  * @param[out] pnum_bytes       How many bytes did the server send?
562  * @param[out] pbytes           The bytes themselves
563  * @retval Was the reply formally correct?
564  */
565
566 NTSTATUS cli_pull_reply(struct async_req *req,
567                         uint8_t *pwct, uint16_t **pvwv,
568                         uint16_t *pnum_bytes, uint8_t **pbytes)
569 {
570         struct cli_request *cli_req = talloc_get_type_abort(
571                 req->private_data, struct cli_request);
572         uint8_t wct, cmd;
573         uint16_t num_bytes;
574         size_t wct_ofs, bytes_offset;
575         int i, j;
576         NTSTATUS status;
577
578         for (i = 0; i < cli_req->num_async; i++) {
579                 if (req == cli_req->async[i]) {
580                         break;
581                 }
582         }
583
584         if (i == cli_req->num_async) {
585                 cli_set_error(cli_req->cli, NT_STATUS_INVALID_PARAMETER);
586                 return NT_STATUS_INVALID_PARAMETER;
587         }
588
589         /**
590          * The status we pull here is only relevant for the last reply in the
591          * chain.
592          */
593
594         status = cli_pull_error(cli_req->inbuf);
595
596         if (i == 0) {
597                 if (NT_STATUS_IS_ERR(status)
598                     && !have_andx_command(cli_req->inbuf, smb_wct)) {
599                         cli_set_error(cli_req->cli, status);
600                         return status;
601                 }
602                 wct_ofs = smb_wct;
603                 goto done;
604         }
605
606         cmd = CVAL(cli_req->inbuf, smb_com);
607         wct_ofs = smb_wct;
608
609         for (j = 0; j < i; j++) {
610                 if (j < i-1) {
611                         if (cmd == 0xff) {
612                                 return NT_STATUS_REQUEST_ABORTED;
613                         }
614                         if (!is_andx_req(cmd)) {
615                                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
616                         }
617                 }
618
619                 if (!have_andx_command(cli_req->inbuf, wct_ofs)) {
620                         /*
621                          * This request was not completed because a previous
622                          * request in the chain had received an error.
623                          */
624                         return NT_STATUS_REQUEST_ABORTED;
625                 }
626
627                 wct_ofs = SVAL(cli_req->inbuf, wct_ofs + 3);
628
629                 /*
630                  * Skip the all-present length field. No overflow, we've just
631                  * put a 16-bit value into a size_t.
632                  */
633                 wct_ofs += 4;
634
635                 if (wct_ofs+2 > talloc_get_size(cli_req->inbuf)) {
636                         return NT_STATUS_INVALID_NETWORK_RESPONSE;
637                 }
638
639                 cmd = CVAL(cli_req->inbuf, wct_ofs + 1);
640         }
641
642         if (!have_andx_command(cli_req->inbuf, wct_ofs)
643             && NT_STATUS_IS_ERR(status)) {
644                 /*
645                  * The last command takes the error code. All further commands
646                  * down the requested chain will get a
647                  * NT_STATUS_REQUEST_ABORTED.
648                  */
649                 return status;
650         }
651
652  done:
653         wct = CVAL(cli_req->inbuf, wct_ofs);
654
655         bytes_offset = wct_ofs + 1 + wct * sizeof(uint16_t);
656         num_bytes = SVAL(cli_req->inbuf, bytes_offset);
657
658         /*
659          * wct_ofs is a 16-bit value plus 4, wct is a 8-bit value, num_bytes
660          * is a 16-bit value. So bytes_offset being size_t should be far from
661          * wrapping.
662          */
663
664         if ((bytes_offset + 2 > talloc_get_size(cli_req->inbuf))
665             || (bytes_offset > 0xffff)) {
666                 return NT_STATUS_INVALID_NETWORK_RESPONSE;
667         }
668
669         *pwct = wct;
670         *pvwv = (uint16_t *)(cli_req->inbuf + wct_ofs + 1);
671         *pnum_bytes = num_bytes;
672         *pbytes = (uint8_t *)cli_req->inbuf + bytes_offset + 2;
673
674         return NT_STATUS_OK;
675 }
676
677 /**
678  * A PDU has arrived on cli->evt_inbuf
679  * @param[in] cli       The cli_state that received something
680  */
681
682 static void handle_incoming_pdu(struct cli_state *cli)
683 {
684         struct cli_request *req;
685         uint16_t mid;
686         size_t raw_pdu_len, buf_len, pdu_len, rest_len;
687         char *pdu;
688         int i;
689         NTSTATUS status;
690
691         int num_async;
692
693         /*
694          * The encrypted PDU len might differ from the unencrypted one
695          */
696         raw_pdu_len = smb_len(cli->evt_inbuf) + 4;
697         buf_len = talloc_get_size(cli->evt_inbuf);
698         rest_len = buf_len - raw_pdu_len;
699
700         if (buf_len == raw_pdu_len) {
701                 /*
702                  * Optimal case: Exactly one PDU was in the socket buffer
703                  */
704                 pdu = cli->evt_inbuf;
705                 cli->evt_inbuf = NULL;
706         }
707         else {
708                 DEBUG(11, ("buf_len = %d, raw_pdu_len = %d, splitting "
709                            "buffer\n", (int)buf_len, (int)raw_pdu_len));
710
711                 if (raw_pdu_len < rest_len) {
712                         /*
713                          * The PDU is shorter, talloc_memdup that one.
714                          */
715                         pdu = (char *)talloc_memdup(
716                                 cli, cli->evt_inbuf, raw_pdu_len);
717
718                         memmove(cli->evt_inbuf, cli->evt_inbuf + raw_pdu_len,
719                                 buf_len - raw_pdu_len);
720
721                         cli->evt_inbuf = TALLOC_REALLOC_ARRAY(
722                                 NULL, cli->evt_inbuf, char, rest_len);
723
724                         if (pdu == NULL) {
725                                 status = NT_STATUS_NO_MEMORY;
726                                 goto invalidate_requests;
727                         }
728                 }
729                 else {
730                         /*
731                          * The PDU is larger than the rest, talloc_memdup the
732                          * rest
733                          */
734                         pdu = cli->evt_inbuf;
735
736                         cli->evt_inbuf = (char *)talloc_memdup(
737                                 cli, pdu + raw_pdu_len, rest_len);
738
739                         if (cli->evt_inbuf == NULL) {
740                                 status = NT_STATUS_NO_MEMORY;
741                                 goto invalidate_requests;
742                         }
743                 }
744
745         }
746
747         /*
748          * TODO: Handle oplock break requests
749          */
750
751         if (cli_encryption_on(cli) && CVAL(pdu, 0) == 0) {
752                 uint16_t enc_ctx_num;
753
754                 status = get_enc_ctx_num((uint8_t *)pdu, &enc_ctx_num);
755                 if (!NT_STATUS_IS_OK(status)) {
756                         DEBUG(10, ("get_enc_ctx_num returned %s\n",
757                                    nt_errstr(status)));
758                         goto invalidate_requests;
759                 }
760
761                 if (enc_ctx_num != cli->trans_enc_state->enc_ctx_num) {
762                         DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
763                                    enc_ctx_num,
764                                    cli->trans_enc_state->enc_ctx_num));
765                         status = NT_STATUS_INVALID_HANDLE;
766                         goto invalidate_requests;
767                 }
768
769                 status = common_decrypt_buffer(cli->trans_enc_state,
770                                                pdu);
771                 if (!NT_STATUS_IS_OK(status)) {
772                         DEBUG(10, ("common_decrypt_buffer returned %s\n",
773                                    nt_errstr(status)));
774                         goto invalidate_requests;
775                 }
776         }
777
778         if (!cli_check_sign_mac(cli, pdu)) {
779                 DEBUG(10, ("cli_check_sign_mac failed\n"));
780                 status = NT_STATUS_ACCESS_DENIED;
781                 goto invalidate_requests;
782         }
783
784         mid = SVAL(pdu, smb_mid);
785
786         DEBUG(10, ("handle_incoming_pdu: got mid %d\n", mid));
787
788         for (req = cli->outstanding_requests; req; req = req->next) {
789                 if (req->mid == mid) {
790                         break;
791                 }
792         }
793
794         pdu_len = smb_len(pdu) + 4;
795
796         if (req == NULL) {
797                 DEBUG(3, ("Request for mid %d not found, dumping PDU\n", mid));
798
799                 TALLOC_FREE(pdu);
800                 return;
801         }
802
803         req->inbuf = talloc_move(req, &pdu);
804
805         /*
806          * Freeing the last async_req will free the req (see
807          * cli_async_req_destructor). So make a copy of req->num_async, we
808          * can't reference it in the last round.
809          */
810
811         num_async = req->num_async;
812
813         for (i=0; i<num_async; i++) {
814                 /**
815                  * A request might have been talloc_free()'ed before we arrive
816                  * here. It will have removed itself from req->async via its
817                  * destructor cli_async_req_destructor().
818                  */
819                 if (req->async[i] != NULL) {
820                         if (req->recv_helper.fn != NULL) {
821                                 req->recv_helper.fn(req->async[i]);
822                         } else {
823                                 async_req_done(req->async[i]);
824                         }
825                 }
826         }
827         return;
828
829  invalidate_requests:
830
831         DEBUG(10, ("handle_incoming_pdu: Aborting with %s\n",
832                    nt_errstr(status)));
833
834         for (req = cli->outstanding_requests; req; req = req->next) {
835                 async_req_error(req->async[0], status);
836         }
837         return;
838 }
839
840 /**
841  * fd event callback. This is the basic connection to the socket
842  * @param[in] event_ctx The event context that called us
843  * @param[in] event     The event that fired
844  * @param[in] flags     EVENT_FD_READ | EVENT_FD_WRITE
845  * @param[in] p         private_data, in this case the cli_state
846  */
847
848 static void cli_state_handler(struct event_context *event_ctx,
849                               struct fd_event *event, uint16 flags, void *p)
850 {
851         struct cli_state *cli = (struct cli_state *)p;
852         struct cli_request *req;
853         NTSTATUS status;
854
855         DEBUG(11, ("cli_state_handler called with flags %d\n", flags));
856
857         if (flags & EVENT_FD_READ) {
858                 int res, available;
859                 size_t old_size, new_size;
860                 char *tmp;
861
862                 res = ioctl(cli->fd, FIONREAD, &available);
863                 if (res == -1) {
864                         DEBUG(10, ("ioctl(FIONREAD) failed: %s\n",
865                                    strerror(errno)));
866                         status = map_nt_error_from_unix(errno);
867                         goto sock_error;
868                 }
869
870                 if (available == 0) {
871                         /* EOF */
872                         status = NT_STATUS_END_OF_FILE;
873                         goto sock_error;
874                 }
875
876                 old_size = talloc_get_size(cli->evt_inbuf);
877                 new_size = old_size + available;
878
879                 if (new_size < old_size) {
880                         /* wrap */
881                         status = NT_STATUS_UNEXPECTED_IO_ERROR;
882                         goto sock_error;
883                 }
884
885                 tmp = TALLOC_REALLOC_ARRAY(cli, cli->evt_inbuf, char,
886                                            new_size);
887                 if (tmp == NULL) {
888                         /* nomem */
889                         status = NT_STATUS_NO_MEMORY;
890                         goto sock_error;
891                 }
892                 cli->evt_inbuf = tmp;
893
894                 res = recv(cli->fd, cli->evt_inbuf + old_size, available, 0);
895                 if (res == -1) {
896                         DEBUG(10, ("recv failed: %s\n", strerror(errno)));
897                         status = map_nt_error_from_unix(errno);
898                         goto sock_error;
899                 }
900
901                 DEBUG(11, ("cli_state_handler: received %d bytes, "
902                            "smb_len(evt_inbuf) = %d\n", (int)res,
903                            smb_len(cli->evt_inbuf)));
904
905                 /* recv *might* have returned less than announced */
906                 new_size = old_size + res;
907
908                 /* shrink, so I don't expect errors here */
909                 cli->evt_inbuf = TALLOC_REALLOC_ARRAY(cli, cli->evt_inbuf,
910                                                       char, new_size);
911
912                 while ((cli->evt_inbuf != NULL)
913                        && ((smb_len(cli->evt_inbuf) + 4) <= new_size)) {
914                         /*
915                          * we've got a complete NBT level PDU in evt_inbuf
916                          */
917                         handle_incoming_pdu(cli);
918                         new_size = talloc_get_size(cli->evt_inbuf);
919                 }
920         }
921
922         if (flags & EVENT_FD_WRITE) {
923                 size_t to_send;
924                 ssize_t sent;
925
926                 for (req = cli->outstanding_requests; req; req = req->next) {
927                         to_send = smb_len(req->outbuf)+4;
928                         if (to_send > req->sent) {
929                                 break;
930                         }
931                 }
932
933                 if (req == NULL) {
934                         if (cli->fd_event != NULL) {
935                                 event_fd_set_not_writeable(cli->fd_event);
936                         }
937                         return;
938                 }
939
940                 sent = send(cli->fd, req->outbuf + req->sent,
941                             to_send - req->sent, 0);
942
943                 if (sent < 0) {
944                         status = map_nt_error_from_unix(errno);
945                         goto sock_error;
946                 }
947
948                 req->sent += sent;
949
950                 if (req->sent == to_send) {
951                         return;
952                 }
953         }
954         return;
955
956  sock_error:
957         for (req = cli->outstanding_requests; req; req = req->next) {
958                 int i;
959                 for (i=0; i<req->num_async; i++) {
960                         async_req_error(req->async[i], status);
961                 }
962         }
963         TALLOC_FREE(cli->fd_event);
964         close(cli->fd);
965         cli->fd = -1;
966 }