summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_server.c
AgeCommit message (Expand)AuthorFilesLines
2013-10-02smbd:smb2: fix error code when the header says the request is signed but we d...Michael Adam1-1/+1
2013-10-02s3:smb2_server: don't rely on the SMB2_HDR_FLAG_SIGNED if signing is requiredStefan Metzmacher1-1/+1
2013-05-23Revert my accidental commit.Richard Sharpe1-1/+1
2013-05-21Make sure that if an smbd is exiting because of an error we let the user know.Richard Sharpe1-1/+1
2013-05-07Remove the compound_related_in_progress state from the smb2 global state.Jeremy Allison1-11/+0
2013-05-07The core of the fix to allow opens to go async inside a compound request.Jeremy Allison1-43/+53
2013-05-07Move a variable into the area of code where it's used.Jeremy Allison1-2/+2
2013-05-07Ensure we don't try and cancel anything that is in a compound-related request.Jeremy Allison1-0/+8
2013-04-19Add the internals of is_smb2_recvfile_write.Jeremy Allison1-1/+37
2013-04-19The guts of the receivefile code changes.Jeremy Allison1-5/+60
2013-04-19Add stub static function that will turn on/off receivefile code path.Jeremy Allison1-0/+5
2013-04-19Add extra fields into struct smbd_smb2_request_read_state to support receivef...Jeremy Allison1-0/+3
2013-04-19Add utility function get_min_receive_file_size().Jeremy Allison1-0/+11
2013-04-19Allow smbd_smb2_request_error_ex() to cope with unread bytes on error.Jeremy Allison1-0/+10
2013-04-02Fix bad SMB2 opcode reading in server.Jeremy Allison1-5/+5
2012-11-02smb2_server: Fix typo in comment.Karolin Seeger1-1/+1
2012-11-02s3:smbd:smb2: fix a comment typo in the crediting code.Michael Adam1-1/+1
2012-10-03Fix bug #9214 - Bad user supplied SMB2 credit value can cause smbd to call sm...Jeremy Allison1-1/+6
2012-09-22s3:smb2_server: avoid segfault in smbd_smb2_request_pending_queue()Stefan Metzmacher1-2/+6
2012-09-22s3:smbd:smb2: simplify smbd_smb2_request_validate() and smbd_smb2_request_dis...Michael Adam1-49/+3
2012-09-22s3:smbd:smb2: add check for session_status for compound requestsMichael Adam1-3/+3
2012-09-22s3:smb2_server: do the req->next_status check before the signing checksStefan Metzmacher1-15/+15
2012-09-22s3:smb2_server: reset req->last_session_id and req->last_tid after using itStefan Metzmacher1-0/+4
2012-09-22s3: Compound requests should continue processing.Ira Cooper1-3/+2
2012-09-20s3:smb2_server: fix usage of invalid memory in smb2_signing_check_pdu()Stefan Metzmacher1-1/+1
2012-08-23s3:smb2_break: encrypt OPLOCK BREAK notificationsStefan Metzmacher1-13/+80
2012-08-23s3:smb2_server: use smbXsrv_session->nonce_*Stefan Metzmacher1-25/+24
2012-08-23s3:smb2_server: remove dump_data() from smbd_smb2_request_pending_timer()Stefan Metzmacher1-1/+0
2012-08-17s3:smb2_server: add SMB3 encryption supportStefan Metzmacher1-31/+319
2012-08-17s3:smb2_server: try to sign an error response if we have a signing keyStefan Metzmacher1-1/+18
2012-08-16s3:smb2_server: verify the signature before the session_statusStefan Metzmacher1-3/+4
2012-08-16s3:smb2_server: add some const to print_req_vectors()Stefan Metzmacher1-1/+1
2012-08-15s3:smb2_server: do calculations based on SMBD_SMB2_NUM_IOV_PER_REQ in smbd_sm...Stefan Metzmacher1-3/+3
2012-08-09s3:smb2_server: add smbd_smb2_request->do_encryptionStefan Metzmacher1-0/+1
2012-08-09s3:smb2_server: check the session before we could response with an error.Stefan Metzmacher1-15/+15
2012-08-09s3:smb2_server: do central file_id check if the operation requires itStefan Metzmacher1-0/+56
2012-08-08s3:smb2_server: s/i/idx in smbd_smb2_request_pending_queue()Stefan Metzmacher1-4/+4
2012-08-08s3:smb2_server: make use of SMBD_SMB2_OUT_HDR_PTR() in smbd_smb2_request_pend...Stefan Metzmacher1-1/+1
2012-08-08s3:smb2_server: remove useless variable 'i'Stefan Metzmacher1-2/+1
2012-08-08s3:smb2_server: rewrite dup_smb2_vec3() using SMBD_SMB2_*_IOV_OFS and helper ...Stefan Metzmacher1-42/+52
2012-08-08s3:smb2_server: make use of SMBD_SMB2_* macros in smbd_smb2_request_done_ex()Stefan Metzmacher1-18/+21
2012-08-08s3:smb2_server: make use of SMBD_SMB2_* macros in smbd_smb2_request_verify_si...Stefan Metzmacher1-8/+14
2012-08-08s3:smb2_server: use the common buffer layout for smbd_smb2_request_pending*Stefan Metzmacher1-16/+26
2012-08-08s3:smb2_server: don't try to update req->in.vector[0] in smbd_smb2_request_pe...Stefan Metzmacher1-3/+0
2012-08-08s3:smb2_server: sign the last request at the start of smbd_smb2_request_reply()Stefan Metzmacher1-22/+16
2012-08-07s3:smb2_server: fix SMB2 signing of compound responsesStefan Metzmacher1-13/+72
2012-08-07s3:smb2_server: there's no need to copy req->out.vector when we just keep the...Stefan Metzmacher1-22/+5
2012-08-07s3:smb2_server: use memmove instead of copying single vector elementsStefan Metzmacher1-6/+7
2012-08-07s3:smb2_server: make use of SMBD_SMB2_OUT_HDR_PTR() smbd_smb2_request_pending...Stefan Metzmacher1-1/+1
2012-08-07s3:smb2_server: check for compound based on SMBD_SMB2_NUM_IOV_PER_REQStefan Metzmacher1-1/+1