s3:smbd: add smbd_smb2_request_done_ex()
[amitay/samba.git] / source3 / smbd / smb2_server.c
1 /*
2    Unix SMB/CIFS implementation.
3    Core SMB2 server
4
5    Copyright (C) Stefan Metzmacher 2009
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 "smbd/globals.h"
23 #include "../source4/libcli/smb2/smb2_constants.h"
24 #include "../lib/tsocket/tsocket.h"
25
26 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size)
27 {
28         if (size < (4 + SMB2_HDR_BODY)) {
29                 return false;
30         }
31
32         if (IVAL(inbuf, 4) != SMB2_MAGIC) {
33                 return false;
34         }
35
36         return true;
37 }
38
39 static NTSTATUS smbd_initialize_smb2(struct smbd_server_connection *conn)
40 {
41         NTSTATUS status;
42         int ret;
43
44         TALLOC_FREE(conn->fde);
45
46         conn->smb2.event_ctx = smbd_event_context();
47
48         conn->smb2.recv_queue = tevent_queue_create(conn, "smb2 recv queue");
49         if (conn->smb2.recv_queue == NULL) {
50                 return NT_STATUS_NO_MEMORY;
51         }
52
53         conn->smb2.send_queue = tevent_queue_create(conn, "smb2 send queue");
54         if (conn->smb2.send_queue == NULL) {
55                 return NT_STATUS_NO_MEMORY;
56         }
57
58         ret = tstream_bsd_existing_socket(conn, smbd_server_fd(),
59                                           &conn->smb2.stream);
60         if (ret == -1) {
61                 status = map_nt_error_from_unix(errno);
62                 return status;
63         }
64
65         /* Ensure child is set to non-blocking mode */
66         set_blocking(smbd_server_fd(),false);
67         return NT_STATUS_OK;
68 }
69
70 #define smb2_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|(PVAL(buf,1)<<16))
71 #define _smb2_setlen(_buf,len) do { \
72         uint8_t *buf = (uint8_t *)_buf; \
73         buf[0] = 0; \
74         buf[1] = ((len)&0xFF0000)>>16; \
75         buf[2] = ((len)&0xFF00)>>8; \
76         buf[3] = (len)&0xFF; \
77 } while (0)
78
79 static void smb2_setup_nbt_length(struct iovec *vector, int count)
80 {
81         size_t len = 0;
82         int i;
83
84         for (i=1; i < count; i++) {
85                 len += vector[i].iov_len;
86         }
87
88         _smb2_setlen(vector[0].iov_base, len);
89 }
90
91 static NTSTATUS smbd_smb2_request_create(struct smbd_server_connection *conn,
92                                          const uint8_t *inbuf, size_t size,
93                                          struct smbd_smb2_request **_req)
94 {
95         TALLOC_CTX *mem_pool;
96         struct smbd_smb2_request *req;
97         uint32_t protocol_version;
98         const uint8_t *inhdr = NULL;
99         off_t ofs = 0;
100         uint16_t cmd;
101         uint32_t next_command_ofs;
102
103         if (size < (4 + SMB2_HDR_BODY + 2)) {
104                 DEBUG(0,("Invalid SMB2 packet length count %ld\n", (long)size));
105                 return NT_STATUS_INVALID_PARAMETER;
106         }
107
108         inhdr = inbuf + 4;
109
110         protocol_version = IVAL(inhdr, SMB2_HDR_PROTOCOL_ID);
111         if (protocol_version != SMB2_MAGIC) {
112                 DEBUG(0,("Invalid SMB packet: protocol prefix: 0x%08X\n",
113                          protocol_version));
114                 return NT_STATUS_INVALID_PARAMETER;
115         }
116
117         cmd = SVAL(inhdr, SMB2_HDR_OPCODE);
118         if (cmd != SMB2_OP_NEGPROT) {
119                 DEBUG(0,("Invalid SMB packet: first request: 0x%04X\n",
120                          cmd));
121                 return NT_STATUS_INVALID_PARAMETER;
122         }
123
124         next_command_ofs = IVAL(inhdr, SMB2_HDR_NEXT_COMMAND);
125         if (next_command_ofs != 0) {
126                 DEBUG(0,("Invalid SMB packet: next_command: 0x%08X\n",
127                          next_command_ofs));
128                 return NT_STATUS_INVALID_PARAMETER;
129         }
130
131         mem_pool = talloc_pool(conn, 8192);
132         if (mem_pool == NULL) {
133                 return NT_STATUS_NO_MEMORY;
134         }
135
136         req = talloc_zero(mem_pool, struct smbd_smb2_request);
137         if (req == NULL) {
138                 talloc_free(mem_pool);
139                 return NT_STATUS_NO_MEMORY;
140         }
141         req->mem_pool   = mem_pool;
142         req->conn       = conn;
143
144         talloc_steal(req, inbuf);
145
146         req->in.vector = talloc_array(req, struct iovec, 4);
147         if (req->in.vector == NULL) {
148                 talloc_free(mem_pool);
149                 return NT_STATUS_NO_MEMORY;
150         }
151         req->in.vector_count = 4;
152
153         memcpy(req->in.nbt_hdr, inbuf, 4);
154
155         ofs = 0;
156         req->in.vector[0].iov_base      = (void *)req->in.nbt_hdr;
157         req->in.vector[0].iov_len       = 4;
158         ofs += req->in.vector[0].iov_len;
159
160         req->in.vector[1].iov_base      = (void *)(inbuf + ofs);
161         req->in.vector[1].iov_len       = SMB2_HDR_BODY;
162         ofs += req->in.vector[1].iov_len;
163
164         req->in.vector[2].iov_base      = (void *)(inbuf + ofs);
165         req->in.vector[2].iov_len       = SVAL(inbuf, ofs) & 0xFFFE;
166         ofs += req->in.vector[2].iov_len;
167
168         if (ofs > size) {
169                 return NT_STATUS_INVALID_PARAMETER;
170         }
171
172         req->in.vector[3].iov_base      = (void *)(inbuf + ofs);
173         req->in.vector[3].iov_len       = size - ofs;
174         ofs += req->in.vector[3].iov_len;
175
176         req->current_idx = 1;
177
178         *_req = req;
179         return NT_STATUS_OK;
180 }
181
182 static NTSTATUS smbd_smb2_request_setup_out(struct smbd_smb2_request *req)
183 {
184         struct iovec *vector;
185         int count;
186         int idx;
187
188         count = req->in.vector_count;
189         vector = talloc_array(req, struct iovec, count);
190         if (vector == NULL) {
191                 return NT_STATUS_NO_MEMORY;
192         }
193
194         vector[0].iov_base      = req->out.nbt_hdr;
195         vector[0].iov_len       = 4;
196         SIVAL(req->out.nbt_hdr, 0, 0);
197
198         for (idx=1; idx < count; idx += 3) {
199                 const uint8_t *inhdr = NULL;
200                 uint8_t *outhdr = NULL;
201                 uint8_t *outbody = NULL;
202                 uint8_t *outdyn = NULL;
203                 size_t outdyn_size = 1;
204                 uint32_t next_command_ofs = 0;
205                 struct iovec *current = &vector[idx];
206
207                 if ((idx + 3) < count) {
208                         /* we have a next command */
209                         next_command_ofs = SMB2_HDR_BODY + 8 + 8;
210                         outdyn_size = 8;
211                 }
212
213                 inhdr = (const uint8_t *)req->in.vector[idx].iov_base;
214
215                 outhdr = talloc_array(vector, uint8_t,
216                                       SMB2_HDR_BODY + 8 + outdyn_size);
217                 if (outhdr == NULL) {
218                         return NT_STATUS_NO_MEMORY;
219                 }
220
221                 outbody = outhdr + SMB2_HDR_BODY;
222                 outdyn = outbody + 8;
223
224                 current[0].iov_base     = (void *)outhdr;
225                 current[0].iov_len      = SMB2_HDR_BODY;
226
227                 current[1].iov_base     = (void *)outbody;
228                 current[1].iov_len      = 8;
229
230                 current[2].iov_base     = (void *)outdyn;
231                 current[2].iov_len      = outdyn_size;
232
233                 /* setup the SMB2 header */
234                 SIVAL(outhdr, SMB2_HDR_PROTOCOL_ID,     SMB2_MAGIC);
235                 SSVAL(outhdr, SMB2_HDR_LENGTH,          SMB2_HDR_BODY);
236                 SSVAL(outhdr, SMB2_HDR_EPOCH,           0);
237                 SIVAL(outhdr, SMB2_HDR_STATUS,
238                       NT_STATUS_V(NT_STATUS_INTERNAL_ERROR));
239                 SSVAL(outhdr, SMB2_HDR_OPCODE,
240                       SVAL(inhdr, SMB2_HDR_OPCODE));
241                 SSVAL(outhdr, SMB2_HDR_CREDIT,          0);
242                 SIVAL(outhdr, SMB2_HDR_FLAGS,           SMB2_HDR_FLAG_REDIRECT);
243                 SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND,    next_command_ofs);
244                 SBVAL(outhdr, SMB2_HDR_MESSAGE_ID,
245                       BVAL(inhdr, SMB2_HDR_MESSAGE_ID));
246                 SIVAL(outhdr, SMB2_HDR_PID,
247                       IVAL(inhdr, SMB2_HDR_PID));
248                 SIVAL(outhdr, SMB2_HDR_TID,
249                       IVAL(inhdr, SMB2_HDR_TID));
250                 SBVAL(outhdr, SMB2_HDR_SESSION_ID,
251                       BVAL(inhdr, SMB2_HDR_SESSION_ID));
252                 memset(outhdr + SMB2_HDR_SIGNATURE, 0, 16);
253
254                 /* setup error body header */
255                 SSVAL(outbody, 0x00, 9);
256                 SSVAL(outbody, 0x02, 0);
257                 SIVAL(outbody, 0x04, 0);
258
259                 /* setup the dynamic part */
260                 SCVAL(outdyn, 0x00, 0);
261         }
262
263         req->out.vector = vector;
264         req->out.vector_count = count;
265
266         /* setup the length of the NBT packet */
267         smb2_setup_nbt_length(req->out.vector, req->out.vector_count);
268
269         return NT_STATUS_OK;
270 }
271
272 static void smbd_server_connection_terminate(struct smbd_server_connection *conn,
273                                              const char *reason)
274 {
275         DEBUG(10,("smbd_server_connection_terminate: reason[%s]\n", reason));
276         exit_server_cleanly(reason);
277 }
278
279 static NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req)
280 {
281         const uint8_t *inhdr;
282         int i = req->current_idx;
283         uint16_t opcode;
284
285         inhdr = (const uint8_t *)req->in.vector[i].iov_base;
286
287         /* TODO: verify more things */
288
289         opcode = IVAL(inhdr, SMB2_HDR_OPCODE);
290         DEBUG(10,("smbd_smb2_request_dispatch: opcode[%u]\n", opcode));
291         switch (opcode) {
292         case SMB2_OP_NEGPROT:
293                 return smbd_smb2_request_process_negprot(req);
294
295         case SMB2_OP_SESSSETUP:
296                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
297
298         case SMB2_OP_LOGOFF:
299                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
300
301                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
302         case SMB2_OP_TCON:
303                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
304
305                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
306         case SMB2_OP_TDIS:
307                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
308
309         case SMB2_OP_CREATE:
310                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
311
312         case SMB2_OP_CLOSE:
313                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
314
315         case SMB2_OP_FLUSH:
316                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
317
318         case SMB2_OP_READ:
319                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
320
321         case SMB2_OP_WRITE:
322                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
323
324         case SMB2_OP_LOCK:
325                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
326
327         case SMB2_OP_IOCTL:
328                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
329
330         case SMB2_OP_CANCEL:
331                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
332
333         case SMB2_OP_KEEPALIVE:
334                 return smbd_smb2_request_process_keepalive(req);
335
336         case SMB2_OP_FIND:
337                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
338
339         case SMB2_OP_NOTIFY:
340                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
341
342         case SMB2_OP_GETINFO:
343                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
344
345         case SMB2_OP_SETINFO:
346                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
347
348         case SMB2_OP_BREAK:
349                 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
350         }
351
352         return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
353 }
354
355 static void smbd_smb2_request_dispatch_compound(struct tevent_req *subreq);
356 static void smbd_smb2_request_writev_done(struct tevent_req *subreq);
357
358 static NTSTATUS smbd_smb2_request_reply(struct smbd_smb2_request *req)
359 {
360         struct tevent_req *subreq;
361
362         /* TODO: sign the response here */
363
364         smb2_setup_nbt_length(req->out.vector, req->out.vector_count);
365
366         req->current_idx += 3;
367
368         if (req->current_idx > req->in.vector_count) {
369                 struct timeval zero = timeval_zero();
370                 subreq = tevent_wakeup_send(req,
371                                             req->conn->smb2.event_ctx,
372                                             zero);
373                 if (subreq == NULL) {
374                         return NT_STATUS_NO_MEMORY;
375                 }
376                 tevent_req_set_callback(subreq,
377                                         smbd_smb2_request_dispatch_compound,
378                                         req);
379
380                 return NT_STATUS_OK;
381         }
382
383         subreq = tstream_writev_queue_send(req,
384                                            req->conn->smb2.event_ctx,
385                                            req->conn->smb2.stream,
386                                            req->conn->smb2.send_queue,
387                                            req->out.vector,
388                                            req->out.vector_count);
389         if (subreq == NULL) {
390                 return NT_STATUS_NO_MEMORY;
391         }
392         tevent_req_set_callback(subreq, smbd_smb2_request_writev_done, req);
393
394         return NT_STATUS_OK;
395 }
396
397 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
398                                     NTSTATUS status,
399                                     DATA_BLOB *info)
400 {
401         uint8_t *outhdr;
402         uint8_t *outbody;
403         int i = req->current_idx;
404
405         DEBUG(10,("smbd_smb2_request_error_ex: idx[%d] status[%s]%s\n",
406                   i, nt_errstr(status), info ? " +info" : ""));
407
408         outhdr = (uint8_t *)req->out.vector[i].iov_base;
409
410         SIVAL(outhdr, SMB2_HDR_STATUS, NT_STATUS_V(status));
411
412         outbody = outhdr + SMB2_HDR_BODY;
413
414         req->out.vector[i+1].iov_base = (void *)outbody;
415         req->out.vector[i+1].iov_len = 8;
416
417         if (info) {
418                 SIVAL(outbody, 0x04, info->length);
419                 req->out.vector[i+2].iov_base   = (void *)info->data;
420                 req->out.vector[i+2].iov_len    = info->length;
421         } else {
422                 req->out.vector[i+2].iov_base = (void *)(outbody + 8);
423                 req->out.vector[i+2].iov_len = 1;
424         }
425
426         /* the error packet is the last response in the chain */
427         SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, 0);
428         req->out.vector_count = req->current_idx + 3;
429
430         return smbd_smb2_request_reply(req);
431 }
432
433 NTSTATUS smbd_smb2_request_error(struct smbd_smb2_request *req,
434                                  NTSTATUS status)
435 {
436         return smbd_smb2_request_error_ex(req, status, NULL);
437 }
438
439 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
440                                    NTSTATUS status,
441                                    DATA_BLOB body, DATA_BLOB *dyn)
442 {
443         uint8_t *outhdr;
444         uint8_t *outdyn;
445         int i = req->current_idx;
446         uint32_t next_command_ofs;
447
448         DEBUG(10,("smbd_smb2_request_done_ex: "
449                   "idx[%d] status[%s] body[%u] dyn[%s:%u]\n",
450                   i, nt_errstr(status), (unsigned int)body.length,
451                   dyn ? "yes": "no",
452                   (unsigned int)(dyn ? dyn->length : 0)));
453
454         if (body.length < 2) {
455                 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
456         }
457
458         if ((body.length % 2) != 0) {
459                 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
460         }
461
462         outhdr = (uint8_t *)req->out.vector[i].iov_base;
463         /* the fallback dynamic buffer */
464         outdyn = outhdr + SMB2_HDR_BODY + 8;
465
466         next_command_ofs = SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, 0);
467         SIVAL(outhdr, SMB2_HDR_STATUS, NT_STATUS_V(status));
468
469         req->out.vector[i+1].iov_base = (void *)body.data;
470         req->out.vector[i+1].iov_len = body.length;
471
472         if (dyn) {
473                 if (dyn->length > 0) {
474                         req->out.vector[i+2].iov_base   = (void *)dyn->data;
475                         req->out.vector[i+2].iov_len    = dyn->length;
476                 } else {
477                         req->out.vector[i+2].iov_base   = (void *)outdyn;
478                         req->out.vector[i+2].iov_len    = 1;
479                 }
480         } else {
481                 req->out.vector[i+2].iov_base = NULL;
482                 req->out.vector[i+2].iov_len = 0;
483         }
484
485         /* see if we need to recalculate the offset to the next response */
486         if (next_command_ofs > 0) {
487                 next_command_ofs  = SMB2_HDR_BODY;
488                 next_command_ofs += req->out.vector[i+1].iov_len;
489                 next_command_ofs += req->out.vector[i+2].iov_len;
490         }
491
492         /* TODO: we need to add padding ... */
493         if ((next_command_ofs % 8) != 0) {
494                 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
495         }
496
497         /* the error packet is the last response in the chain */
498         SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, next_command_ofs);
499
500         return smbd_smb2_request_reply(req);
501 }
502
503 NTSTATUS smbd_smb2_request_done(struct smbd_smb2_request *req,
504                                 DATA_BLOB body, DATA_BLOB *dyn)
505 {
506         return smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn);
507 }
508
509 static void smbd_smb2_request_dispatch_compound(struct tevent_req *subreq)
510 {
511         struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
512                                         struct smbd_smb2_request);
513         struct smbd_server_connection *conn = req->conn;
514         NTSTATUS status;
515
516         tevent_wakeup_recv(subreq);
517         TALLOC_FREE(subreq);
518
519         DEBUG(10,("smbd_smb2_request_dispatch_compound: idx[%d] of %d vectors\n",
520                   req->current_idx, req->in.vector_count));
521
522         status = smbd_smb2_request_dispatch(req);
523         if (!NT_STATUS_IS_OK(status)) {
524                 smbd_server_connection_terminate(conn, nt_errstr(status));
525                 return;
526         }
527 }
528
529 static void smbd_smb2_request_writev_done(struct tevent_req *subreq)
530 {
531         struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
532                                         struct smbd_smb2_request);
533         struct smbd_server_connection *conn = req->conn;
534         int ret;
535         int sys_errno;
536         TALLOC_CTX *mem_pool;
537
538         ret = tstream_writev_queue_recv(subreq, &sys_errno);
539         TALLOC_FREE(subreq);
540         if (ret == -1) {
541                 NTSTATUS status = map_nt_error_from_unix(sys_errno);
542                 smbd_server_connection_terminate(conn, nt_errstr(status));
543                 return;
544         }
545
546         mem_pool = req->mem_pool;
547         req = NULL;
548         talloc_free(mem_pool);
549 }
550
551 struct smbd_smb2_request_read_state {
552         size_t missing;
553         bool asked_for_header;
554         struct smbd_smb2_request *smb2_req;
555 };
556
557 static int smbd_smb2_request_next_vector(struct tstream_context *stream,
558                                          void *private_data,
559                                          TALLOC_CTX *mem_ctx,
560                                          struct iovec **_vector,
561                                          size_t *_count);
562 static void smbd_smb2_request_read_done(struct tevent_req *subreq);
563
564 static struct tevent_req *smbd_smb2_request_read_send(TALLOC_CTX *mem_ctx,
565                                         struct tevent_context *ev,
566                                         struct smbd_server_connection *conn)
567 {
568         struct tevent_req *req;
569         struct smbd_smb2_request_read_state *state;
570         struct tevent_req *subreq;
571         TALLOC_CTX *mem_pool;
572
573         req = tevent_req_create(mem_ctx, &state,
574                                 struct smbd_smb2_request_read_state);
575         if (req == NULL) {
576                 return NULL;
577         }
578         state->missing = 0;
579         state->asked_for_header = false;
580
581         mem_pool = talloc_pool(state, 8192);
582         if (tevent_req_nomem(mem_pool, req)) {
583                 return tevent_req_post(req, ev);
584         }
585
586         state->smb2_req = talloc_zero(mem_pool, struct smbd_smb2_request);
587         if (tevent_req_nomem(state->smb2_req, req)) {
588                 return tevent_req_post(req, ev);
589         }
590
591         state->smb2_req->mem_pool       = mem_pool;
592         state->smb2_req->conn           = conn;
593
594         subreq = tstream_readv_pdu_queue_send(state, ev, conn->smb2.stream,
595                                               conn->smb2.recv_queue,
596                                               smbd_smb2_request_next_vector,
597                                               state);
598         if (tevent_req_nomem(subreq, req)) {
599                 return tevent_req_post(req, ev);
600         }
601         tevent_req_set_callback(subreq, smbd_smb2_request_read_done, req);
602
603         return req;
604 }
605
606 static int smbd_smb2_request_next_vector(struct tstream_context *stream,
607                                          void *private_data,
608                                          TALLOC_CTX *mem_ctx,
609                                          struct iovec **_vector,
610                                          size_t *_count)
611 {
612         struct smbd_smb2_request_read_state *state =
613                 talloc_get_type_abort(private_data,
614                 struct smbd_smb2_request_read_state);
615         struct smbd_smb2_request *req = state->smb2_req;
616         struct iovec *vector;
617         int idx = req->in.vector_count;
618         size_t len = 0;
619         uint8_t *buf = NULL;
620
621         if (req->in.vector_count == 0) {
622                 /*
623                  * first we need to get the NBT header
624                  */
625                 req->in.vector = talloc_array(req, struct iovec,
626                                               req->in.vector_count + 1);
627                 if (req->in.vector == NULL) {
628                         return -1;
629                 }
630                 req->in.vector_count += 1;
631
632                 req->in.vector[idx].iov_base    = (void *)req->in.nbt_hdr;
633                 req->in.vector[idx].iov_len     = 4;
634
635                 vector = talloc_array(mem_ctx, struct iovec, 1);
636                 if (vector == NULL) {
637                         return -1;
638                 }
639
640                 vector[0] = req->in.vector[idx];
641
642                 *_vector = vector;
643                 *_count = 1;
644                 return 0;
645         }
646
647         if (req->in.vector_count == 1) {
648                 /*
649                  * Now we analyze the NBT header
650                  */
651                 state->missing = smb2_len(req->in.vector[0].iov_base);
652
653                 if (state->missing == 0) {
654                         /* if there're no remaining bytes, we're done */
655                         *_vector = NULL;
656                         *_count = 0;
657                         return 0;
658                 }
659
660                 req->in.vector = talloc_realloc(req, req->in.vector,
661                                                 struct iovec,
662                                                 req->in.vector_count + 1);
663                 if (req->in.vector == NULL) {
664                         return -1;
665                 }
666                 req->in.vector_count += 1;
667
668                 if (CVAL(req->in.vector[0].iov_base, 0) != 0) {
669                         /*
670                          * it's a special NBT message,
671                          * so get all remaining bytes
672                          */
673                         len = state->missing;
674                 } else if (state->missing < (SMB2_HDR_BODY + 2)) {
675                         /*
676                          * it's an invalid message, just read what we can get
677                          * and let the caller handle the error
678                          */
679                         len = state->missing;
680                 } else {
681                         /*
682                          * We assume it's a SMB2 request,
683                          * and we first get the header and the
684                          * first 2 bytes (the struct size) of the body
685                          */
686                         len = SMB2_HDR_BODY + 2;
687
688                         state->asked_for_header = true;
689                 }
690
691                 state->missing -= len;
692
693                 buf = talloc_array(req->in.vector, uint8_t, len);
694                 if (buf == NULL) {
695                         return -1;
696                 }
697
698                 req->in.vector[idx].iov_base    = (void *)buf;
699                 req->in.vector[idx].iov_len     = len;
700
701                 vector = talloc_array(mem_ctx, struct iovec, 1);
702                 if (vector == NULL) {
703                         return -1;
704                 }
705
706                 vector[0] = req->in.vector[idx];
707
708                 *_vector = vector;
709                 *_count = 1;
710                 return 0;
711         }
712
713         if (state->missing == 0) {
714                 /* if there're no remaining bytes, we're done */
715                 *_vector = NULL;
716                 *_count = 0;
717                 return 0;
718         }
719
720         if (state->asked_for_header) {
721                 const uint8_t *hdr;
722                 size_t full_size;
723                 size_t next_command_ofs;
724                 size_t body_size;
725                 uint8_t *body;
726                 size_t dyn_size;
727                 uint8_t *dyn;
728                 bool invalid = false;
729
730                 state->asked_for_header = false;
731
732                 /*
733                  * We got the SMB2 header and the first 2 bytes
734                  * of the body. We fix the size to just the header
735                  * and manually copy the 2 first bytes to the body section
736                  */
737                 req->in.vector[idx-1].iov_len = SMB2_HDR_BODY;
738                 hdr = (const uint8_t *)req->in.vector[idx-1].iov_base;
739
740                 /* allocate vectors for body and dynamic areas */
741                 req->in.vector = talloc_realloc(req, req->in.vector,
742                                                 struct iovec,
743                                                 req->in.vector_count + 2);
744                 if (req->in.vector == NULL) {
745                         return -1;
746                 }
747                 req->in.vector_count += 2;
748
749                 full_size = state->missing + SMB2_HDR_BODY + 2;
750                 next_command_ofs = IVAL(hdr, SMB2_HDR_NEXT_COMMAND);
751                 body_size = SVAL(hdr, SMB2_HDR_BODY);
752
753                 if (next_command_ofs != 0) {
754                         if (next_command_ofs < (SMB2_HDR_BODY + 2)) {
755                                 /*
756                                  * this is invalid, just return a zero
757                                  * body and let the caller deal with the error
758                                  */
759                                 invalid = true;
760                         } else if (next_command_ofs > full_size) {
761                                 /*
762                                  * this is invalid, just return a zero
763                                  * body and let the caller deal with the error
764                                  */
765                                 invalid = true;
766                         } else {
767                                 full_size = next_command_ofs;
768                         }
769                 }
770
771                 if (!invalid) {
772                         if (body_size < 2) {
773                                 /*
774                                  * this is invalid, just return a zero
775                                  * body and let the caller deal with the error
776                                  */
777                                 invalid = true;
778                         } else if (body_size > (full_size - SMB2_HDR_BODY)) {
779                                 /*
780                                  * this is invalid, just return a zero
781                                  * body and let the caller deal with the error
782                                  */
783                                 invalid = true;
784                         }
785                 }
786
787                 if (invalid) {
788                         /* the caller should check this */
789                         body_size = 0;
790                 }
791
792                 if ((body_size % 2) != 0) {
793                         body_size -= 1;
794                 }
795
796                 dyn_size = full_size - (SMB2_HDR_BODY + body_size);
797
798                 state->missing -= (body_size - 2) + dyn_size;
799
800                 body = talloc_array(req->in.vector, uint8_t, body_size);
801                 if (body == NULL) {
802                         return -1;
803                 }
804
805                 dyn = talloc_array(req->in.vector, uint8_t, dyn_size);
806                 if (dyn == NULL) {
807                         return -1;
808                 }
809
810                 req->in.vector[idx].iov_base    = (void *)body;
811                 req->in.vector[idx].iov_len     = body_size;
812                 req->in.vector[idx+1].iov_base  = (void *)dyn;
813                 req->in.vector[idx+1].iov_len   = dyn_size;
814
815                 vector = talloc_array(mem_ctx, struct iovec, 2);
816                 if (vector == NULL) {
817                         return -1;
818                 }
819
820                 /*
821                  * the first 2 bytes of the body were already fetched
822                  * together with the header
823                  */
824                 memcpy(body, hdr + SMB2_HDR_BODY, 2);
825                 vector[0].iov_base = body + 2;
826                 vector[0].iov_len = req->in.vector[idx].iov_len - 2;
827
828                 vector[1] = req->in.vector[idx+1];
829
830                 *_vector = vector;
831                 *_count = 2;
832                 return 0;
833         }
834
835         /*
836          * when we endup here, we're looking for a new SMB2 request
837          * next. And we ask for its header and the first 2 bytes of
838          * the body (like we did for the first SMB2 request).
839          */
840
841         req->in.vector = talloc_realloc(req, req->in.vector,
842                                         struct iovec,
843                                         req->in.vector_count + 1);
844         if (req->in.vector == NULL) {
845                 return -1;
846         }
847         req->in.vector_count += 1;
848
849         /*
850          * We assume it's a SMB2 request,
851          * and we first get the header and the
852          * first 2 bytes (the struct size) of the body
853          */
854         len = SMB2_HDR_BODY + 2;
855
856         if (len > state->missing) {
857                 /* let the caller handle the error */
858                 len = state->missing;
859         }
860
861         state->missing -= len;
862         state->asked_for_header = true;
863
864         buf = talloc_array(req->in.vector, uint8_t, len);
865         if (buf == NULL) {
866                 return -1;
867         }
868
869         req->in.vector[idx].iov_base    = (void *)buf;
870         req->in.vector[idx].iov_len     = len;
871
872         vector = talloc_array(mem_ctx, struct iovec, 1);
873         if (vector == NULL) {
874                 return -1;
875         }
876
877         vector[0] = req->in.vector[idx];
878
879         *_vector = vector;
880         *_count = 1;
881         return 0;
882 }
883
884 static void smbd_smb2_request_read_done(struct tevent_req *subreq)
885 {
886         struct tevent_req *req =
887                 tevent_req_callback_data(subreq,
888                 struct tevent_req);
889         int ret;
890         int sys_errno;
891         NTSTATUS status;
892
893         ret = tstream_readv_pdu_queue_recv(subreq, &sys_errno);
894         if (ret == -1) {
895                 status = map_nt_error_from_unix(sys_errno);
896                 tevent_req_nterror(req, status);
897                 return;
898         }
899
900         tevent_req_done(req);
901 }
902
903 static NTSTATUS smbd_smb2_request_read_recv(struct tevent_req *req,
904                                             TALLOC_CTX *mem_ctx,
905                                             struct smbd_smb2_request **_smb2_req)
906 {
907         struct smbd_smb2_request_read_state *state =
908                 tevent_req_data(req,
909                 struct smbd_smb2_request_read_state);
910         NTSTATUS status;
911
912         if (tevent_req_is_nterror(req, &status)) {
913                 tevent_req_received(req);
914                 return status;
915         }
916
917         talloc_steal(mem_ctx, state->smb2_req->mem_pool);
918         *_smb2_req = state->smb2_req;
919         tevent_req_received(req);
920         return NT_STATUS_OK;
921 }
922
923 static void smbd_smb2_request_incoming(struct tevent_req *subreq);
924
925 void smbd_smb2_first_negprot(struct smbd_server_connection *conn,
926                              const uint8_t *inbuf, size_t size)
927 {
928         NTSTATUS status;
929         struct smbd_smb2_request *req;
930         struct tevent_req *subreq;
931
932         DEBUG(10,("smbd_smb2_first_negprot: packet length %u\n",
933                  (unsigned int)size));
934
935         status = smbd_initialize_smb2(conn);
936         if (!NT_STATUS_IS_OK(status)) {
937                 smbd_server_connection_terminate(conn, nt_errstr(status));
938                 return;
939         }
940
941         status = smbd_smb2_request_create(conn, inbuf, size, &req);
942         if (!NT_STATUS_IS_OK(status)) {
943                 smbd_server_connection_terminate(conn, nt_errstr(status));
944                 return;
945         }
946
947         status = smbd_smb2_request_setup_out(req);
948         if (!NT_STATUS_IS_OK(status)) {
949                 smbd_server_connection_terminate(conn, nt_errstr(status));
950                 return;
951         }
952
953         status = smbd_smb2_request_dispatch(req);
954         if (!NT_STATUS_IS_OK(status)) {
955                 smbd_server_connection_terminate(conn, nt_errstr(status));
956                 return;
957         }
958
959         /* ask for the next request */
960         subreq = smbd_smb2_request_read_send(conn,conn->smb2.event_ctx, conn);
961         if (subreq == NULL) {
962                 smbd_server_connection_terminate(conn, "no memory for reading");
963                 return;
964         }
965         tevent_req_set_callback(subreq, smbd_smb2_request_incoming, conn);
966 }
967
968 static void smbd_smb2_request_incoming(struct tevent_req *subreq)
969 {
970         struct smbd_server_connection *conn = tevent_req_callback_data(subreq,
971                                               struct smbd_server_connection);
972         NTSTATUS status;
973         struct smbd_smb2_request *req;
974
975         status = smbd_smb2_request_read_recv(subreq, conn, &req);
976         TALLOC_FREE(subreq);
977         if (!NT_STATUS_IS_OK(status)) {
978                 smbd_server_connection_terminate(conn, nt_errstr(status));
979                 return;
980         }
981
982         /* TODO: validate the incoming request */
983         req->current_idx = 1;
984
985         DEBUG(10,("smbd_smb2_request_incoming: idx[%d] of %d vectors\n",
986                  req->current_idx, req->in.vector_count));
987
988         status = smbd_smb2_request_setup_out(req);
989         if (!NT_STATUS_IS_OK(status)) {
990                 smbd_server_connection_terminate(conn, nt_errstr(status));
991                 return;
992         }
993
994         status = smbd_smb2_request_dispatch(req);
995         if (!NT_STATUS_IS_OK(status)) {
996                 smbd_server_connection_terminate(conn, nt_errstr(status));
997                 return;
998         }
999
1000         /* ask for the next request (this constructs the main loop) */
1001         subreq = smbd_smb2_request_read_send(conn,conn->smb2.event_ctx, conn);
1002         if (subreq == NULL) {
1003                 smbd_server_connection_terminate(conn, "no memory for reading");
1004                 return;
1005         }
1006         tevent_req_set_callback(subreq, smbd_smb2_request_incoming, conn);
1007 }