s3:smbd: s/struct timed_event/struct tevent_timer
[Samba/gebeck_regimport.git] / source3 / smbd / smb2_glue.c
blob1b2b4dd693f21f1cc50d3628a2aee7596a5bedb2
1 /*
2 Unix SMB/CIFS implementation.
3 Core SMB2 server
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/>.
21 #include "includes.h"
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
26 struct smb_request *smbd_smb2_fake_smb_request(struct smbd_smb2_request *req)
28 struct smb_request *smbreq;
29 const uint8_t *inhdr = SMBD_SMB2_IN_HDR_PTR(req);
31 smbreq = talloc_zero(req, struct smb_request);
32 if (smbreq == NULL) {
33 return NULL;
36 smbreq->request_time = req->request_time;
37 smbreq->vuid = req->session->compat->vuid;
38 smbreq->tid = req->tcon->compat->cnum;
39 smbreq->conn = req->tcon->compat;
40 smbreq->sconn = req->sconn;
41 smbreq->smbpid = (uint16_t)IVAL(inhdr, SMB2_HDR_PID);
42 smbreq->flags2 = FLAGS2_UNICODE_STRINGS |
43 FLAGS2_32_BIT_ERROR_CODES |
44 FLAGS2_LONG_PATH_COMPONENTS |
45 FLAGS2_IS_LONG_NAME;
46 if (IVAL(inhdr, SMB2_HDR_FLAGS) & SMB2_HDR_FLAG_DFS) {
47 smbreq->flags2 |= FLAGS2_DFS_PATHNAMES;
49 smbreq->mid = BVAL(inhdr, SMB2_HDR_MESSAGE_ID);
50 smbreq->chain_fsp = req->compat_chain_fsp;
51 smbreq->smb2req = req;
52 req->smb1req = smbreq;
54 return smbreq;
57 /*********************************************************
58 Called from file_free() to remove any chained fsp pointers.
59 *********************************************************/
61 void remove_smb2_chained_fsp(files_struct *fsp)
63 struct smbd_server_connection *sconn = fsp->conn->sconn;
64 struct smbd_smb2_request *smb2req;
66 for (smb2req = sconn->smb2.requests; smb2req; smb2req = smb2req->next) {
67 if (smb2req->compat_chain_fsp == fsp) {
68 smb2req->compat_chain_fsp = NULL;
70 if (smb2req->smb1req && smb2req->smb1req->chain_fsp == fsp) {
71 smb2req->smb1req->chain_fsp = NULL;