libcli/smb: move smb2cli_create.c from source3 to the toplevel
[Samba/gebeck_regimport.git] / source3 / libsmb / smb2cli_close.c
blob1e8d814688d3f2aacb66970f92e413b4fd2e0fed
1 /*
2 Unix SMB/CIFS implementation.
3 smb2 lib
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/>.
20 #include "includes.h"
21 #include "client.h"
22 #include "async_smb.h"
23 #include "../libcli/smb/smbXcli_base.h"
24 #include "smb2cli.h"
25 #include "libsmb/proto.h"
26 #include "lib/util/tevent_ntstatus.h"
28 struct smb2cli_close_state {
29 uint8_t fixed[24];
32 static void smb2cli_close_done(struct tevent_req *subreq);
34 struct tevent_req *smb2cli_close_send(TALLOC_CTX *mem_ctx,
35 struct tevent_context *ev,
36 struct smbXcli_conn *conn,
37 uint32_t timeout_msec,
38 struct smbXcli_session *session,
39 uint32_t tcon_id,
40 uint16_t flags,
41 uint64_t fid_persistent,
42 uint64_t fid_volatile)
44 struct tevent_req *req, *subreq;
45 struct smb2cli_close_state *state;
46 uint8_t *fixed;
48 req = tevent_req_create(mem_ctx, &state,
49 struct smb2cli_close_state);
50 if (req == NULL) {
51 return NULL;
53 fixed = state->fixed;
54 SSVAL(fixed, 0, 24);
55 SSVAL(fixed, 2, flags);
56 SBVAL(fixed, 8, fid_persistent);
57 SBVAL(fixed, 16, fid_volatile);
59 subreq = smb2cli_req_send(state, ev, conn, SMB2_OP_CLOSE,
60 0, 0, /* flags */
61 timeout_msec,
62 0xFEFF, /* pid */
63 tcon_id,
64 session,
65 state->fixed, sizeof(state->fixed),
66 NULL, 0);
67 if (tevent_req_nomem(subreq, req)) {
68 return tevent_req_post(req, ev);
70 tevent_req_set_callback(subreq, smb2cli_close_done, req);
71 return req;
74 static void smb2cli_close_done(struct tevent_req *subreq)
76 struct tevent_req *req =
77 tevent_req_callback_data(subreq,
78 struct tevent_req);
79 NTSTATUS status;
80 static const struct smb2cli_req_expected_response expected[] = {
82 .status = NT_STATUS_OK,
83 .body_size = 0x3C
87 status = smb2cli_req_recv(subreq, NULL, NULL,
88 expected, ARRAY_SIZE(expected));
89 if (tevent_req_nterror(req, status)) {
90 return;
92 tevent_req_done(req);
95 NTSTATUS smb2cli_close_recv(struct tevent_req *req)
97 return tevent_req_simple_recv_ntstatus(req);
100 NTSTATUS smb2cli_close(struct smbXcli_conn *conn,
101 uint32_t timeout_msec,
102 struct smbXcli_session *session,
103 uint32_t tcon_id,
104 uint16_t flags,
105 uint64_t fid_persistent,
106 uint64_t fid_volatile)
108 TALLOC_CTX *frame = talloc_stackframe();
109 struct tevent_context *ev;
110 struct tevent_req *req;
111 NTSTATUS status = NT_STATUS_NO_MEMORY;
113 if (smbXcli_conn_has_async_calls(conn)) {
115 * Can't use sync call while an async call is in flight
117 status = NT_STATUS_INVALID_PARAMETER;
118 goto fail;
120 ev = tevent_context_init(frame);
121 if (ev == NULL) {
122 goto fail;
124 req = smb2cli_close_send(frame, ev, conn, timeout_msec,
125 session, tcon_id, flags,
126 fid_persistent, fid_volatile);
127 if (req == NULL) {
128 goto fail;
130 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
131 goto fail;
133 status = smb2cli_close_recv(req);
134 fail:
135 TALLOC_FREE(frame);
136 return status;