s3-torture/denytest.c: replace cli_read_old() with cli_read()
[Samba/gebeck_regimport.git] / source3 / libsmb / smb2cli_flush.c
blobb93c7851f1cc7522ba79cf49f275e385b8d150ae
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 "smb2cli_base.h"
24 #include "smb2cli.h"
25 #include "libsmb/proto.h"
26 #include "lib/util/tevent_ntstatus.h"
28 struct smb2cli_flush_state {
29 uint8_t fixed[24];
32 static void smb2cli_flush_done(struct tevent_req *subreq);
34 struct tevent_req *smb2cli_flush_send(TALLOC_CTX *mem_ctx,
35 struct tevent_context *ev,
36 struct cli_state *cli,
37 uint64_t fid_persistent,
38 uint64_t fid_volatile)
40 struct tevent_req *req, *subreq;
41 struct smb2cli_flush_state *state;
42 uint8_t *fixed;
44 req = tevent_req_create(mem_ctx, &state,
45 struct smb2cli_flush_state);
46 if (req == NULL) {
47 return NULL;
49 fixed = state->fixed;
50 SSVAL(fixed, 0, 24);
51 SBVAL(fixed, 8, fid_persistent);
52 SBVAL(fixed, 16, fid_volatile);
54 subreq = smb2cli_req_send(state, ev, cli, SMB2_OP_FLUSH, 0,
55 state->fixed, sizeof(state->fixed),
56 NULL, 0);
57 if (tevent_req_nomem(subreq, req)) {
58 return tevent_req_post(req, ev);
60 tevent_req_set_callback(subreq, smb2cli_flush_done, req);
61 return req;
64 static void smb2cli_flush_done(struct tevent_req *subreq)
66 struct tevent_req *req =
67 tevent_req_callback_data(subreq,
68 struct tevent_req);
69 NTSTATUS status;
70 struct iovec *iov;
72 status = smb2cli_req_recv(subreq, talloc_tos(), &iov, 60);
73 if (tevent_req_nterror(req, status)) {
74 return;
76 tevent_req_done(req);
79 NTSTATUS smb2cli_flush_recv(struct tevent_req *req)
81 return tevent_req_simple_recv_ntstatus(req);
84 NTSTATUS smb2cli_flush(struct cli_state *cli,
85 uint64_t fid_persistent,
86 uint64_t fid_volatile)
88 TALLOC_CTX *frame = talloc_stackframe();
89 struct event_context *ev;
90 struct tevent_req *req;
91 NTSTATUS status = NT_STATUS_NO_MEMORY;
93 if (cli_has_async_calls(cli)) {
95 * Can't use sync call while an async call is in flight
97 status = NT_STATUS_INVALID_PARAMETER;
98 goto fail;
100 ev = event_context_init(frame);
101 if (ev == NULL) {
102 goto fail;
104 req = smb2cli_flush_send(frame, ev, cli,
105 fid_persistent, fid_volatile);
106 if (req == NULL) {
107 goto fail;
109 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
110 goto fail;
112 status = smb2cli_flush_recv(req);
113 fail:
114 TALLOC_FREE(frame);
115 return status;