2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "smbd/globals.h"
23 #include "../source4/libcli/smb2/smb2_constants.h"
24 #include "../lib/tsocket/tsocket.h"
26 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size)
28 if (size < (4 + SMB2_HDR_BODY)) {
32 if (IVAL(inbuf, 4) != SMB2_MAGIC) {
39 static NTSTATUS smbd_initialize_smb2(struct smbd_server_connection *conn)
44 TALLOC_FREE(conn->fde);
46 conn->smb2.event_ctx = smbd_event_context();
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;
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;
58 conn->smb2.sessions.idtree = idr_init(conn);
59 if (conn->smb2.sessions.idtree == NULL) {
60 return NT_STATUS_NO_MEMORY;
62 conn->smb2.sessions.limit = 0x0000FFFF;
63 conn->smb2.sessions.list = NULL;
65 ret = tstream_bsd_existing_socket(conn, smbd_server_fd(),
68 status = map_nt_error_from_unix(errno);
72 /* Ensure child is set to non-blocking mode */
73 set_blocking(smbd_server_fd(),false);
77 #define smb2_len(buf) (PVAL(buf,3)|(PVAL(buf,2)<<8)|(PVAL(buf,1)<<16))
78 #define _smb2_setlen(_buf,len) do { \
79 uint8_t *buf = (uint8_t *)_buf; \
81 buf[1] = ((len)&0xFF0000)>>16; \
82 buf[2] = ((len)&0xFF00)>>8; \
83 buf[3] = (len)&0xFF; \
86 static void smb2_setup_nbt_length(struct iovec *vector, int count)
91 for (i=1; i < count; i++) {
92 len += vector[i].iov_len;
95 _smb2_setlen(vector[0].iov_base, len);
98 static NTSTATUS smbd_smb2_request_create(struct smbd_server_connection *conn,
99 const uint8_t *inbuf, size_t size,
100 struct smbd_smb2_request **_req)
102 TALLOC_CTX *mem_pool;
103 struct smbd_smb2_request *req;
104 uint32_t protocol_version;
105 const uint8_t *inhdr = NULL;
108 uint32_t next_command_ofs;
110 if (size < (4 + SMB2_HDR_BODY + 2)) {
111 DEBUG(0,("Invalid SMB2 packet length count %ld\n", (long)size));
112 return NT_STATUS_INVALID_PARAMETER;
117 protocol_version = IVAL(inhdr, SMB2_HDR_PROTOCOL_ID);
118 if (protocol_version != SMB2_MAGIC) {
119 DEBUG(0,("Invalid SMB packet: protocol prefix: 0x%08X\n",
121 return NT_STATUS_INVALID_PARAMETER;
124 cmd = SVAL(inhdr, SMB2_HDR_OPCODE);
125 if (cmd != SMB2_OP_NEGPROT) {
126 DEBUG(0,("Invalid SMB packet: first request: 0x%04X\n",
128 return NT_STATUS_INVALID_PARAMETER;
131 next_command_ofs = IVAL(inhdr, SMB2_HDR_NEXT_COMMAND);
132 if (next_command_ofs != 0) {
133 DEBUG(0,("Invalid SMB packet: next_command: 0x%08X\n",
135 return NT_STATUS_INVALID_PARAMETER;
138 mem_pool = talloc_pool(conn, 8192);
139 if (mem_pool == NULL) {
140 return NT_STATUS_NO_MEMORY;
143 req = talloc_zero(mem_pool, struct smbd_smb2_request);
145 talloc_free(mem_pool);
146 return NT_STATUS_NO_MEMORY;
148 req->mem_pool = mem_pool;
151 talloc_steal(req, inbuf);
153 req->in.vector = talloc_array(req, struct iovec, 4);
154 if (req->in.vector == NULL) {
155 talloc_free(mem_pool);
156 return NT_STATUS_NO_MEMORY;
158 req->in.vector_count = 4;
160 memcpy(req->in.nbt_hdr, inbuf, 4);
163 req->in.vector[0].iov_base = (void *)req->in.nbt_hdr;
164 req->in.vector[0].iov_len = 4;
165 ofs += req->in.vector[0].iov_len;
167 req->in.vector[1].iov_base = (void *)(inbuf + ofs);
168 req->in.vector[1].iov_len = SMB2_HDR_BODY;
169 ofs += req->in.vector[1].iov_len;
171 req->in.vector[2].iov_base = (void *)(inbuf + ofs);
172 req->in.vector[2].iov_len = SVAL(inbuf, ofs) & 0xFFFE;
173 ofs += req->in.vector[2].iov_len;
176 return NT_STATUS_INVALID_PARAMETER;
179 req->in.vector[3].iov_base = (void *)(inbuf + ofs);
180 req->in.vector[3].iov_len = size - ofs;
181 ofs += req->in.vector[3].iov_len;
183 req->current_idx = 1;
189 static NTSTATUS smbd_smb2_request_setup_out(struct smbd_smb2_request *req)
191 struct iovec *vector;
195 count = req->in.vector_count;
196 vector = talloc_array(req, struct iovec, count);
197 if (vector == NULL) {
198 return NT_STATUS_NO_MEMORY;
201 vector[0].iov_base = req->out.nbt_hdr;
202 vector[0].iov_len = 4;
203 SIVAL(req->out.nbt_hdr, 0, 0);
205 for (idx=1; idx < count; idx += 3) {
206 const uint8_t *inhdr = NULL;
207 uint8_t *outhdr = NULL;
208 uint8_t *outbody = NULL;
209 uint8_t *outdyn = NULL;
210 size_t outdyn_size = 1;
211 uint32_t next_command_ofs = 0;
212 struct iovec *current = &vector[idx];
214 if ((idx + 3) < count) {
215 /* we have a next command */
216 next_command_ofs = SMB2_HDR_BODY + 8 + 8;
220 inhdr = (const uint8_t *)req->in.vector[idx].iov_base;
222 outhdr = talloc_array(vector, uint8_t,
223 SMB2_HDR_BODY + 8 + outdyn_size);
224 if (outhdr == NULL) {
225 return NT_STATUS_NO_MEMORY;
228 outbody = outhdr + SMB2_HDR_BODY;
229 outdyn = outbody + 8;
231 current[0].iov_base = (void *)outhdr;
232 current[0].iov_len = SMB2_HDR_BODY;
234 current[1].iov_base = (void *)outbody;
235 current[1].iov_len = 8;
237 current[2].iov_base = (void *)outdyn;
238 current[2].iov_len = outdyn_size;
240 /* setup the SMB2 header */
241 SIVAL(outhdr, SMB2_HDR_PROTOCOL_ID, SMB2_MAGIC);
242 SSVAL(outhdr, SMB2_HDR_LENGTH, SMB2_HDR_BODY);
243 SSVAL(outhdr, SMB2_HDR_EPOCH, 0);
244 SIVAL(outhdr, SMB2_HDR_STATUS,
245 NT_STATUS_V(NT_STATUS_INTERNAL_ERROR));
246 SSVAL(outhdr, SMB2_HDR_OPCODE,
247 SVAL(inhdr, SMB2_HDR_OPCODE));
248 SSVAL(outhdr, SMB2_HDR_CREDIT, 0);
249 SIVAL(outhdr, SMB2_HDR_FLAGS, SMB2_HDR_FLAG_REDIRECT);
250 SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, next_command_ofs);
251 SBVAL(outhdr, SMB2_HDR_MESSAGE_ID,
252 BVAL(inhdr, SMB2_HDR_MESSAGE_ID));
253 SIVAL(outhdr, SMB2_HDR_PID,
254 IVAL(inhdr, SMB2_HDR_PID));
255 SIVAL(outhdr, SMB2_HDR_TID,
256 IVAL(inhdr, SMB2_HDR_TID));
257 SBVAL(outhdr, SMB2_HDR_SESSION_ID,
258 BVAL(inhdr, SMB2_HDR_SESSION_ID));
259 memset(outhdr + SMB2_HDR_SIGNATURE, 0, 16);
261 /* setup error body header */
262 SSVAL(outbody, 0x00, 9);
263 SSVAL(outbody, 0x02, 0);
264 SIVAL(outbody, 0x04, 0);
266 /* setup the dynamic part */
267 SCVAL(outdyn, 0x00, 0);
270 req->out.vector = vector;
271 req->out.vector_count = count;
273 /* setup the length of the NBT packet */
274 smb2_setup_nbt_length(req->out.vector, req->out.vector_count);
279 static void smbd_server_connection_terminate(struct smbd_server_connection *conn,
282 DEBUG(10,("smbd_server_connection_terminate: reason[%s]\n", reason));
283 exit_server_cleanly(reason);
286 static NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req)
288 const uint8_t *inhdr;
289 int i = req->current_idx;
292 inhdr = (const uint8_t *)req->in.vector[i].iov_base;
294 /* TODO: verify more things */
296 opcode = IVAL(inhdr, SMB2_HDR_OPCODE);
297 DEBUG(10,("smbd_smb2_request_dispatch: opcode[%u]\n", opcode));
299 case SMB2_OP_NEGPROT:
300 return smbd_smb2_request_process_negprot(req);
302 case SMB2_OP_SESSSETUP:
303 return smbd_smb2_request_process_sesssetup(req);
306 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
308 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
310 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
312 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
314 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
317 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
320 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
323 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
326 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
329 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
332 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
335 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
338 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
340 case SMB2_OP_KEEPALIVE:
341 return smbd_smb2_request_process_keepalive(req);
344 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
347 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
349 case SMB2_OP_GETINFO:
350 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
352 case SMB2_OP_SETINFO:
353 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
356 return smbd_smb2_request_error(req, NT_STATUS_NOT_IMPLEMENTED);
359 return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER);
362 static void smbd_smb2_request_dispatch_compound(struct tevent_req *subreq);
363 static void smbd_smb2_request_writev_done(struct tevent_req *subreq);
365 static NTSTATUS smbd_smb2_request_reply(struct smbd_smb2_request *req)
367 struct tevent_req *subreq;
369 /* TODO: sign the response here */
371 smb2_setup_nbt_length(req->out.vector, req->out.vector_count);
373 req->current_idx += 3;
375 if (req->current_idx > req->in.vector_count) {
376 struct timeval zero = timeval_zero();
377 subreq = tevent_wakeup_send(req,
378 req->conn->smb2.event_ctx,
380 if (subreq == NULL) {
381 return NT_STATUS_NO_MEMORY;
383 tevent_req_set_callback(subreq,
384 smbd_smb2_request_dispatch_compound,
390 subreq = tstream_writev_queue_send(req,
391 req->conn->smb2.event_ctx,
392 req->conn->smb2.stream,
393 req->conn->smb2.send_queue,
395 req->out.vector_count);
396 if (subreq == NULL) {
397 return NT_STATUS_NO_MEMORY;
399 tevent_req_set_callback(subreq, smbd_smb2_request_writev_done, req);
404 static void smbd_smb2_request_dispatch_compound(struct tevent_req *subreq)
406 struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
407 struct smbd_smb2_request);
408 struct smbd_server_connection *conn = req->conn;
411 tevent_wakeup_recv(subreq);
414 DEBUG(10,("smbd_smb2_request_dispatch_compound: idx[%d] of %d vectors\n",
415 req->current_idx, req->in.vector_count));
417 status = smbd_smb2_request_dispatch(req);
418 if (!NT_STATUS_IS_OK(status)) {
419 smbd_server_connection_terminate(conn, nt_errstr(status));
424 static void smbd_smb2_request_writev_done(struct tevent_req *subreq)
426 struct smbd_smb2_request *req = tevent_req_callback_data(subreq,
427 struct smbd_smb2_request);
428 struct smbd_server_connection *conn = req->conn;
431 TALLOC_CTX *mem_pool;
433 ret = tstream_writev_queue_recv(subreq, &sys_errno);
436 NTSTATUS status = map_nt_error_from_unix(sys_errno);
437 smbd_server_connection_terminate(conn, nt_errstr(status));
441 mem_pool = req->mem_pool;
443 talloc_free(mem_pool);
446 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
452 int i = req->current_idx;
454 DEBUG(10,("smbd_smb2_request_error_ex: idx[%d] status[%s]%s\n",
455 i, nt_errstr(status), info ? " +info" : ""));
457 outhdr = (uint8_t *)req->out.vector[i].iov_base;
459 SIVAL(outhdr, SMB2_HDR_STATUS, NT_STATUS_V(status));
461 outbody = outhdr + SMB2_HDR_BODY;
463 req->out.vector[i+1].iov_base = (void *)outbody;
464 req->out.vector[i+1].iov_len = 8;
467 SIVAL(outbody, 0x04, info->length);
468 req->out.vector[i+2].iov_base = (void *)info->data;
469 req->out.vector[i+2].iov_len = info->length;
471 req->out.vector[i+2].iov_base = (void *)(outbody + 8);
472 req->out.vector[i+2].iov_len = 1;
475 /* the error packet is the last response in the chain */
476 SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, 0);
477 req->out.vector_count = req->current_idx + 3;
479 return smbd_smb2_request_reply(req);
482 NTSTATUS smbd_smb2_request_error(struct smbd_smb2_request *req,
485 return smbd_smb2_request_error_ex(req, status, NULL);
488 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
490 DATA_BLOB body, DATA_BLOB *dyn)
494 int i = req->current_idx;
495 uint32_t next_command_ofs;
497 DEBUG(10,("smbd_smb2_request_done_ex: "
498 "idx[%d] status[%s] body[%u] dyn[%s:%u]\n",
499 i, nt_errstr(status), (unsigned int)body.length,
501 (unsigned int)(dyn ? dyn->length : 0)));
503 if (body.length < 2) {
504 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
507 if ((body.length % 2) != 0) {
508 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
511 outhdr = (uint8_t *)req->out.vector[i].iov_base;
512 /* the fallback dynamic buffer */
513 outdyn = outhdr + SMB2_HDR_BODY + 8;
515 next_command_ofs = SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, 0);
516 SIVAL(outhdr, SMB2_HDR_STATUS, NT_STATUS_V(status));
518 req->out.vector[i+1].iov_base = (void *)body.data;
519 req->out.vector[i+1].iov_len = body.length;
522 if (dyn->length > 0) {
523 req->out.vector[i+2].iov_base = (void *)dyn->data;
524 req->out.vector[i+2].iov_len = dyn->length;
526 req->out.vector[i+2].iov_base = (void *)outdyn;
527 req->out.vector[i+2].iov_len = 1;
530 req->out.vector[i+2].iov_base = NULL;
531 req->out.vector[i+2].iov_len = 0;
534 /* see if we need to recalculate the offset to the next response */
535 if (next_command_ofs > 0) {
536 next_command_ofs = SMB2_HDR_BODY;
537 next_command_ofs += req->out.vector[i+1].iov_len;
538 next_command_ofs += req->out.vector[i+2].iov_len;
541 /* TODO: we need to add padding ... */
542 if ((next_command_ofs % 8) != 0) {
543 return smbd_smb2_request_error(req, NT_STATUS_INTERNAL_ERROR);
546 /* the error packet is the last response in the chain */
547 SIVAL(outhdr, SMB2_HDR_NEXT_COMMAND, next_command_ofs);
549 return smbd_smb2_request_reply(req);
552 NTSTATUS smbd_smb2_request_done(struct smbd_smb2_request *req,
553 DATA_BLOB body, DATA_BLOB *dyn)
555 return smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn);
558 struct smbd_smb2_request_read_state {
560 bool asked_for_header;
561 struct smbd_smb2_request *smb2_req;
564 static int smbd_smb2_request_next_vector(struct tstream_context *stream,
567 struct iovec **_vector,
569 static void smbd_smb2_request_read_done(struct tevent_req *subreq);
571 static struct tevent_req *smbd_smb2_request_read_send(TALLOC_CTX *mem_ctx,
572 struct tevent_context *ev,
573 struct smbd_server_connection *conn)
575 struct tevent_req *req;
576 struct smbd_smb2_request_read_state *state;
577 struct tevent_req *subreq;
578 TALLOC_CTX *mem_pool;
580 req = tevent_req_create(mem_ctx, &state,
581 struct smbd_smb2_request_read_state);
586 state->asked_for_header = false;
588 mem_pool = talloc_pool(state, 8192);
589 if (tevent_req_nomem(mem_pool, req)) {
590 return tevent_req_post(req, ev);
593 state->smb2_req = talloc_zero(mem_pool, struct smbd_smb2_request);
594 if (tevent_req_nomem(state->smb2_req, req)) {
595 return tevent_req_post(req, ev);
598 state->smb2_req->mem_pool = mem_pool;
599 state->smb2_req->conn = conn;
601 subreq = tstream_readv_pdu_queue_send(state, ev, conn->smb2.stream,
602 conn->smb2.recv_queue,
603 smbd_smb2_request_next_vector,
605 if (tevent_req_nomem(subreq, req)) {
606 return tevent_req_post(req, ev);
608 tevent_req_set_callback(subreq, smbd_smb2_request_read_done, req);
613 static int smbd_smb2_request_next_vector(struct tstream_context *stream,
616 struct iovec **_vector,
619 struct smbd_smb2_request_read_state *state =
620 talloc_get_type_abort(private_data,
621 struct smbd_smb2_request_read_state);
622 struct smbd_smb2_request *req = state->smb2_req;
623 struct iovec *vector;
624 int idx = req->in.vector_count;
628 if (req->in.vector_count == 0) {
630 * first we need to get the NBT header
632 req->in.vector = talloc_array(req, struct iovec,
633 req->in.vector_count + 1);
634 if (req->in.vector == NULL) {
637 req->in.vector_count += 1;
639 req->in.vector[idx].iov_base = (void *)req->in.nbt_hdr;
640 req->in.vector[idx].iov_len = 4;
642 vector = talloc_array(mem_ctx, struct iovec, 1);
643 if (vector == NULL) {
647 vector[0] = req->in.vector[idx];
654 if (req->in.vector_count == 1) {
656 * Now we analyze the NBT header
658 state->missing = smb2_len(req->in.vector[0].iov_base);
660 if (state->missing == 0) {
661 /* if there're no remaining bytes, we're done */
667 req->in.vector = talloc_realloc(req, req->in.vector,
669 req->in.vector_count + 1);
670 if (req->in.vector == NULL) {
673 req->in.vector_count += 1;
675 if (CVAL(req->in.vector[0].iov_base, 0) != 0) {
677 * it's a special NBT message,
678 * so get all remaining bytes
680 len = state->missing;
681 } else if (state->missing < (SMB2_HDR_BODY + 2)) {
683 * it's an invalid message, just read what we can get
684 * and let the caller handle the error
686 len = state->missing;
689 * We assume it's a SMB2 request,
690 * and we first get the header and the
691 * first 2 bytes (the struct size) of the body
693 len = SMB2_HDR_BODY + 2;
695 state->asked_for_header = true;
698 state->missing -= len;
700 buf = talloc_array(req->in.vector, uint8_t, len);
705 req->in.vector[idx].iov_base = (void *)buf;
706 req->in.vector[idx].iov_len = len;
708 vector = talloc_array(mem_ctx, struct iovec, 1);
709 if (vector == NULL) {
713 vector[0] = req->in.vector[idx];
720 if (state->missing == 0) {
721 /* if there're no remaining bytes, we're done */
727 if (state->asked_for_header) {
730 size_t next_command_ofs;
735 bool invalid = false;
737 state->asked_for_header = false;
740 * We got the SMB2 header and the first 2 bytes
741 * of the body. We fix the size to just the header
742 * and manually copy the 2 first bytes to the body section
744 req->in.vector[idx-1].iov_len = SMB2_HDR_BODY;
745 hdr = (const uint8_t *)req->in.vector[idx-1].iov_base;
747 /* allocate vectors for body and dynamic areas */
748 req->in.vector = talloc_realloc(req, req->in.vector,
750 req->in.vector_count + 2);
751 if (req->in.vector == NULL) {
754 req->in.vector_count += 2;
756 full_size = state->missing + SMB2_HDR_BODY + 2;
757 next_command_ofs = IVAL(hdr, SMB2_HDR_NEXT_COMMAND);
758 body_size = SVAL(hdr, SMB2_HDR_BODY);
760 if (next_command_ofs != 0) {
761 if (next_command_ofs < (SMB2_HDR_BODY + 2)) {
763 * this is invalid, just return a zero
764 * body and let the caller deal with the error
767 } else if (next_command_ofs > full_size) {
769 * this is invalid, just return a zero
770 * body and let the caller deal with the error
774 full_size = next_command_ofs;
781 * this is invalid, just return a zero
782 * body and let the caller deal with the error
785 } else if (body_size > (full_size - SMB2_HDR_BODY)) {
787 * this is invalid, just return a zero
788 * body and let the caller deal with the error
795 /* the caller should check this */
799 if ((body_size % 2) != 0) {
803 dyn_size = full_size - (SMB2_HDR_BODY + body_size);
805 state->missing -= (body_size - 2) + dyn_size;
807 body = talloc_array(req->in.vector, uint8_t, body_size);
812 dyn = talloc_array(req->in.vector, uint8_t, dyn_size);
817 req->in.vector[idx].iov_base = (void *)body;
818 req->in.vector[idx].iov_len = body_size;
819 req->in.vector[idx+1].iov_base = (void *)dyn;
820 req->in.vector[idx+1].iov_len = dyn_size;
822 vector = talloc_array(mem_ctx, struct iovec, 2);
823 if (vector == NULL) {
828 * the first 2 bytes of the body were already fetched
829 * together with the header
831 memcpy(body, hdr + SMB2_HDR_BODY, 2);
832 vector[0].iov_base = body + 2;
833 vector[0].iov_len = req->in.vector[idx].iov_len - 2;
835 vector[1] = req->in.vector[idx+1];
843 * when we endup here, we're looking for a new SMB2 request
844 * next. And we ask for its header and the first 2 bytes of
845 * the body (like we did for the first SMB2 request).
848 req->in.vector = talloc_realloc(req, req->in.vector,
850 req->in.vector_count + 1);
851 if (req->in.vector == NULL) {
854 req->in.vector_count += 1;
857 * We assume it's a SMB2 request,
858 * and we first get the header and the
859 * first 2 bytes (the struct size) of the body
861 len = SMB2_HDR_BODY + 2;
863 if (len > state->missing) {
864 /* let the caller handle the error */
865 len = state->missing;
868 state->missing -= len;
869 state->asked_for_header = true;
871 buf = talloc_array(req->in.vector, uint8_t, len);
876 req->in.vector[idx].iov_base = (void *)buf;
877 req->in.vector[idx].iov_len = len;
879 vector = talloc_array(mem_ctx, struct iovec, 1);
880 if (vector == NULL) {
884 vector[0] = req->in.vector[idx];
891 static void smbd_smb2_request_read_done(struct tevent_req *subreq)
893 struct tevent_req *req =
894 tevent_req_callback_data(subreq,
900 ret = tstream_readv_pdu_queue_recv(subreq, &sys_errno);
902 status = map_nt_error_from_unix(sys_errno);
903 tevent_req_nterror(req, status);
907 tevent_req_done(req);
910 static NTSTATUS smbd_smb2_request_read_recv(struct tevent_req *req,
912 struct smbd_smb2_request **_smb2_req)
914 struct smbd_smb2_request_read_state *state =
916 struct smbd_smb2_request_read_state);
919 if (tevent_req_is_nterror(req, &status)) {
920 tevent_req_received(req);
924 talloc_steal(mem_ctx, state->smb2_req->mem_pool);
925 *_smb2_req = state->smb2_req;
926 tevent_req_received(req);
930 static void smbd_smb2_request_incoming(struct tevent_req *subreq);
932 void smbd_smb2_first_negprot(struct smbd_server_connection *conn,
933 const uint8_t *inbuf, size_t size)
936 struct smbd_smb2_request *req;
937 struct tevent_req *subreq;
939 DEBUG(10,("smbd_smb2_first_negprot: packet length %u\n",
940 (unsigned int)size));
942 status = smbd_initialize_smb2(conn);
943 if (!NT_STATUS_IS_OK(status)) {
944 smbd_server_connection_terminate(conn, nt_errstr(status));
948 status = smbd_smb2_request_create(conn, inbuf, size, &req);
949 if (!NT_STATUS_IS_OK(status)) {
950 smbd_server_connection_terminate(conn, nt_errstr(status));
954 status = smbd_smb2_request_setup_out(req);
955 if (!NT_STATUS_IS_OK(status)) {
956 smbd_server_connection_terminate(conn, nt_errstr(status));
960 status = smbd_smb2_request_dispatch(req);
961 if (!NT_STATUS_IS_OK(status)) {
962 smbd_server_connection_terminate(conn, nt_errstr(status));
966 /* ask for the next request */
967 subreq = smbd_smb2_request_read_send(conn,conn->smb2.event_ctx, conn);
968 if (subreq == NULL) {
969 smbd_server_connection_terminate(conn, "no memory for reading");
972 tevent_req_set_callback(subreq, smbd_smb2_request_incoming, conn);
975 static void smbd_smb2_request_incoming(struct tevent_req *subreq)
977 struct smbd_server_connection *conn = tevent_req_callback_data(subreq,
978 struct smbd_server_connection);
980 struct smbd_smb2_request *req;
982 status = smbd_smb2_request_read_recv(subreq, conn, &req);
984 if (!NT_STATUS_IS_OK(status)) {
985 smbd_server_connection_terminate(conn, nt_errstr(status));
989 /* TODO: validate the incoming request */
990 req->current_idx = 1;
992 DEBUG(10,("smbd_smb2_request_incoming: idx[%d] of %d vectors\n",
993 req->current_idx, req->in.vector_count));
995 status = smbd_smb2_request_setup_out(req);
996 if (!NT_STATUS_IS_OK(status)) {
997 smbd_server_connection_terminate(conn, nt_errstr(status));
1001 status = smbd_smb2_request_dispatch(req);
1002 if (!NT_STATUS_IS_OK(status)) {
1003 smbd_server_connection_terminate(conn, nt_errstr(status));
1007 /* ask for the next request (this constructs the main loop) */
1008 subreq = smbd_smb2_request_read_send(conn,conn->smb2.event_ctx, conn);
1009 if (subreq == NULL) {
1010 smbd_server_connection_terminate(conn, "no memory for reading");
1013 tevent_req_set_callback(subreq, smbd_smb2_request_incoming, conn);