s3:libsmb: fix the talloc parent of clistr_pull_talloc() in cli_notify_done()
[Samba/gebeck_regimport.git] / libcli / smb / smb2cli_write.c
blob2850cea3981b875d4ba5b306bf320b49858d60c6
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 "system/network.h"
22 #include "lib/util/tevent_ntstatus.h"
23 #include "smb_common.h"
24 #include "smbXcli_base.h"
26 struct smb2cli_write_state {
27 uint8_t fixed[48];
28 uint8_t dyn_pad[1];
31 static void smb2cli_write_done(struct tevent_req *subreq);
33 struct tevent_req *smb2cli_write_send(TALLOC_CTX *mem_ctx,
34 struct tevent_context *ev,
35 struct smbXcli_conn *conn,
36 uint32_t timeout_msec,
37 struct smbXcli_session *session,
38 uint32_t tcon_id,
39 uint32_t length,
40 uint64_t offset,
41 uint64_t fid_persistent,
42 uint64_t fid_volatile,
43 uint32_t remaining_bytes,
44 uint32_t flags,
45 const uint8_t *data)
47 struct tevent_req *req, *subreq;
48 struct smb2cli_write_state *state;
49 uint8_t *fixed;
50 const uint8_t *dyn;
51 size_t dyn_len;
53 req = tevent_req_create(mem_ctx, &state,
54 struct smb2cli_write_state);
55 if (req == NULL) {
56 return NULL;
59 fixed = state->fixed;
61 SSVAL(fixed, 0, 49);
62 SSVAL(fixed, 2, SMB2_HDR_BODY + 48);
63 SIVAL(fixed, 4, length);
64 SBVAL(fixed, 8, offset);
65 SBVAL(fixed, 16, fid_persistent);
66 SBVAL(fixed, 24, fid_volatile);
67 SIVAL(fixed, 36, remaining_bytes);
68 SIVAL(fixed, 44, flags);
70 if (length > 0) {
71 dyn = data;
72 dyn_len = length;
73 } else {
74 dyn = state->dyn_pad;;
75 dyn_len = sizeof(state->dyn_pad);
78 subreq = smb2cli_req_send(state, ev, conn, SMB2_OP_WRITE,
79 0, 0, /* flags */
80 timeout_msec,
81 0xFEFF, /* pid */
82 tcon_id,
83 session,
84 state->fixed, sizeof(state->fixed),
85 dyn, dyn_len);
86 if (tevent_req_nomem(subreq, req)) {
87 return tevent_req_post(req, ev);
89 tevent_req_set_callback(subreq, smb2cli_write_done, req);
90 return req;
93 static void smb2cli_write_done(struct tevent_req *subreq)
95 struct tevent_req *req =
96 tevent_req_callback_data(subreq,
97 struct tevent_req);
98 NTSTATUS status;
99 static const struct smb2cli_req_expected_response expected[] = {
101 .status = NT_STATUS_OK,
102 .body_size = 0x11
106 status = smb2cli_req_recv(subreq, NULL, NULL,
107 expected, ARRAY_SIZE(expected));
108 if (tevent_req_nterror(req, status)) {
109 return;
111 tevent_req_done(req);
114 NTSTATUS smb2cli_write_recv(struct tevent_req *req)
116 return tevent_req_simple_recv_ntstatus(req);
119 NTSTATUS smb2cli_write(struct smbXcli_conn *conn,
120 uint32_t timeout_msec,
121 struct smbXcli_session *session,
122 uint32_t tcon_id,
123 uint32_t length,
124 uint64_t offset,
125 uint64_t fid_persistent,
126 uint64_t fid_volatile,
127 uint32_t remaining_bytes,
128 uint32_t flags,
129 const uint8_t *data)
131 TALLOC_CTX *frame = talloc_stackframe();
132 struct tevent_context *ev;
133 struct tevent_req *req;
134 NTSTATUS status = NT_STATUS_NO_MEMORY;
136 if (smbXcli_conn_has_async_calls(conn)) {
138 * Can't use sync call while an async call is in flight
140 status = NT_STATUS_INVALID_PARAMETER;
141 goto fail;
143 ev = tevent_context_init(frame);
144 if (ev == NULL) {
145 goto fail;
147 req = smb2cli_write_send(frame, ev, conn, timeout_msec, session,
148 tcon_id, length, offset,
149 fid_persistent, fid_volatile,
150 remaining_bytes, flags, data);
151 if (req == NULL) {
152 goto fail;
154 if (!tevent_req_poll_ntstatus(req, ev, &status)) {
155 goto fail;
157 status = smb2cli_write_recv(req);
158 fail:
159 TALLOC_FREE(frame);
160 return status;