cd98e5e723b3564114ee2c8083481fdcfdffde2c
[nivanova/samba-autobuild/.git] / libcli / smb / smb2cli_write.c
1 /*
2    Unix SMB/CIFS implementation.
3    smb2 lib
4    Copyright (C) Volker Lendecke 2011
5
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.
10
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.
15
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/>.
18 */
19
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"
25
26 struct smb2cli_write_state {
27         uint8_t fixed[48];
28         uint8_t dyn_pad[1];
29 };
30
31 static void smb2cli_write_done(struct tevent_req *subreq);
32
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                                       struct smbXcli_tcon *tcon,
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)
46 {
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;
52         uint32_t tcon_id = 0;
53
54         req = tevent_req_create(mem_ctx, &state,
55                                 struct smb2cli_write_state);
56         if (req == NULL) {
57                 return NULL;
58         }
59
60         fixed = state->fixed;
61
62         SSVAL(fixed, 0, 49);
63         SSVAL(fixed, 2, SMB2_HDR_BODY + 48);
64         SIVAL(fixed, 4, length);
65         SBVAL(fixed, 8, offset);
66         SBVAL(fixed, 16, fid_persistent);
67         SBVAL(fixed, 24, fid_volatile);
68         SIVAL(fixed, 36, remaining_bytes);
69         SIVAL(fixed, 44, flags);
70
71         if (length > 0) {
72                 dyn = data;
73                 dyn_len = length;
74         } else {
75                 dyn = state->dyn_pad;;
76                 dyn_len = sizeof(state->dyn_pad);
77         }
78
79         if (tcon) {
80                 tcon_id = smb2cli_tcon_current_id(tcon);
81         }
82
83         subreq = smb2cli_req_send(state, ev, conn, SMB2_OP_WRITE,
84                                   0, 0, /* flags */
85                                   timeout_msec,
86                                   0xFEFF, /* pid */
87                                   tcon_id,
88                                   session,
89                                   state->fixed, sizeof(state->fixed),
90                                   dyn, dyn_len);
91         if (tevent_req_nomem(subreq, req)) {
92                 return tevent_req_post(req, ev);
93         }
94         tevent_req_set_callback(subreq, smb2cli_write_done, req);
95         return req;
96 }
97
98 static void smb2cli_write_done(struct tevent_req *subreq)
99 {
100         struct tevent_req *req =
101                 tevent_req_callback_data(subreq,
102                 struct tevent_req);
103         NTSTATUS status;
104         static const struct smb2cli_req_expected_response expected[] = {
105         {
106                 .status = NT_STATUS_OK,
107                 .body_size = 0x11
108         }
109         };
110
111         status = smb2cli_req_recv(subreq, NULL, NULL,
112                                   expected, ARRAY_SIZE(expected));
113         if (tevent_req_nterror(req, status)) {
114                 return;
115         }
116         tevent_req_done(req);
117 }
118
119 NTSTATUS smb2cli_write_recv(struct tevent_req *req)
120 {
121         return tevent_req_simple_recv_ntstatus(req);
122 }
123
124 NTSTATUS smb2cli_write(struct smbXcli_conn *conn,
125                        uint32_t timeout_msec,
126                        struct smbXcli_session *session,
127                        struct smbXcli_tcon *tcon,
128                        uint32_t length,
129                        uint64_t offset,
130                        uint64_t fid_persistent,
131                        uint64_t fid_volatile,
132                        uint32_t remaining_bytes,
133                        uint32_t flags,
134                        const uint8_t *data)
135 {
136         TALLOC_CTX *frame = talloc_stackframe();
137         struct tevent_context *ev;
138         struct tevent_req *req;
139         NTSTATUS status = NT_STATUS_NO_MEMORY;
140
141         if (smbXcli_conn_has_async_calls(conn)) {
142                 /*
143                  * Can't use sync call while an async call is in flight
144                  */
145                 status = NT_STATUS_INVALID_PARAMETER;
146                 goto fail;
147         }
148         ev = tevent_context_init(frame);
149         if (ev == NULL) {
150                 goto fail;
151         }
152         req = smb2cli_write_send(frame, ev, conn, timeout_msec,
153                                  session, tcon,
154                                  length, offset,
155                                  fid_persistent, fid_volatile,
156                                  remaining_bytes, flags, data);
157         if (req == NULL) {
158                 goto fail;
159         }
160         if (!tevent_req_poll_ntstatus(req, ev, &status)) {
161                 goto fail;
162         }
163         status = smb2cli_write_recv(req);
164  fail:
165         TALLOC_FREE(frame);
166         return status;
167 }