2 Unix SMB/CIFS implementation.
4 Copyright (C) Volker Lendecke 2011
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.
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.
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/>.
21 #include "system/network.h"
22 #include "lib/util/tevent_ntstatus.h"
23 #include "smb_common.h"
24 #include "smbXcli_base.h"
26 struct smb2cli_close_state
{
30 static void smb2cli_close_done(struct tevent_req
*subreq
);
32 struct tevent_req
*smb2cli_close_send(TALLOC_CTX
*mem_ctx
,
33 struct tevent_context
*ev
,
34 struct smbXcli_conn
*conn
,
35 uint32_t timeout_msec
,
36 struct smbXcli_session
*session
,
37 struct smbXcli_tcon
*tcon
,
39 uint64_t fid_persistent
,
40 uint64_t fid_volatile
)
42 struct tevent_req
*req
, *subreq
;
43 struct smb2cli_close_state
*state
;
46 req
= tevent_req_create(mem_ctx
, &state
,
47 struct smb2cli_close_state
);
53 SSVAL(fixed
, 2, flags
);
54 SBVAL(fixed
, 8, fid_persistent
);
55 SBVAL(fixed
, 16, fid_volatile
);
57 subreq
= smb2cli_req_send(state
, ev
, conn
, SMB2_OP_CLOSE
,
62 state
->fixed
, sizeof(state
->fixed
),
65 if (tevent_req_nomem(subreq
, req
)) {
66 return tevent_req_post(req
, ev
);
68 tevent_req_set_callback(subreq
, smb2cli_close_done
, req
);
72 static void smb2cli_close_done(struct tevent_req
*subreq
)
74 struct tevent_req
*req
=
75 tevent_req_callback_data(subreq
,
78 static const struct smb2cli_req_expected_response expected
[] = {
80 .status
= NT_STATUS_OK
,
85 status
= smb2cli_req_recv(subreq
, NULL
, NULL
,
86 expected
, ARRAY_SIZE(expected
));
88 if (tevent_req_nterror(req
, status
)) {
94 NTSTATUS
smb2cli_close_recv(struct tevent_req
*req
)
96 return tevent_req_simple_recv_ntstatus(req
);
99 NTSTATUS
smb2cli_close(struct smbXcli_conn
*conn
,
100 uint32_t timeout_msec
,
101 struct smbXcli_session
*session
,
102 struct smbXcli_tcon
*tcon
,
104 uint64_t fid_persistent
,
105 uint64_t fid_volatile
)
107 TALLOC_CTX
*frame
= talloc_stackframe();
108 struct tevent_context
*ev
;
109 struct tevent_req
*req
;
110 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
112 if (smbXcli_conn_has_async_calls(conn
)) {
114 * Can't use sync call while an async call is in flight
116 status
= NT_STATUS_INVALID_PARAMETER
;
119 ev
= samba_tevent_context_init(frame
);
123 req
= smb2cli_close_send(frame
, ev
, conn
, timeout_msec
,
124 session
, tcon
, flags
,
125 fid_persistent
, fid_volatile
);
129 if (!tevent_req_poll_ntstatus(req
, ev
, &status
)) {
132 status
= smb2cli_close_recv(req
);