s3-net-vampire: add support for partial replication (individual deltas).
[Samba.git] / source / libsmb / async_smb.c
blob935ae47061cf70d268cf310d58496bdc94fff992
1 /*
2 Unix SMB/CIFS implementation.
3 Infrastructure for async SMB client requests
4 Copyright (C) Volker Lendecke 2008
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"
23 * Fetch an error out of a NBT packet
26 NTSTATUS cli_pull_error(char *buf)
28 uint32_t flags2 = SVAL(buf, smb_flg2);
30 if (flags2 & FLAGS2_32_BIT_ERROR_CODES) {
31 return NT_STATUS(IVAL(buf, smb_rcls));
34 /* if the client uses dos errors, but there is no error,
35 we should return no error here, otherwise it looks
36 like an unknown bad NT_STATUS. jmcd */
37 if (CVAL(buf, smb_rcls) == 0)
38 return NT_STATUS_OK;
40 return NT_STATUS_DOS(CVAL(buf, smb_rcls), SVAL(buf,smb_err));
44 * Compatibility helper for the sync APIs: Fake NTSTATUS in cli->inbuf
47 void cli_set_error(struct cli_state *cli, NTSTATUS status)
49 uint32_t flags2 = SVAL(cli->inbuf, smb_flg2);
51 if (NT_STATUS_IS_DOS(status)) {
52 SSVAL(cli->inbuf, smb_flg2,
53 flags2 & ~FLAGS2_32_BIT_ERROR_CODES);
54 SCVAL(cli->inbuf, smb_rcls, NT_STATUS_DOS_CLASS(status));
55 SSVAL(cli->inbuf, smb_err, NT_STATUS_DOS_CODE(status));
56 return;
59 SSVAL(cli->inbuf, smb_flg2, flags2 | FLAGS2_32_BIT_ERROR_CODES);
60 SIVAL(cli->inbuf, smb_rcls, NT_STATUS_V(status));
61 return;
65 * Allocate a new mid
68 static uint16_t cli_new_mid(struct cli_state *cli)
70 uint16_t result;
71 struct cli_request *req;
73 while (true) {
74 result = cli->mid++;
75 if (result == 0) {
76 continue;
79 for (req = cli->outstanding_requests; req; req = req->next) {
80 if (result == req->mid) {
81 break;
85 if (req == NULL) {
86 return result;
91 static char *cli_request_print(TALLOC_CTX *mem_ctx, struct async_req *req)
93 char *result = async_req_print(mem_ctx, req);
94 struct cli_request *cli_req = cli_request_get(req);
96 if (result == NULL) {
97 return NULL;
100 return talloc_asprintf_append_buffer(
101 result, "mid=%d\n", cli_req->mid);
104 static int cli_request_destructor(struct cli_request *req)
106 if (req->enc_state != NULL) {
107 common_free_enc_buffer(req->enc_state, req->outbuf);
109 DLIST_REMOVE(req->cli->outstanding_requests, req);
110 return 0;
114 * Create a fresh async smb request
117 struct async_req *cli_request_new(TALLOC_CTX *mem_ctx,
118 struct event_context *ev,
119 struct cli_state *cli,
120 uint8_t num_words, size_t num_bytes,
121 struct cli_request **preq)
123 struct async_req *result;
124 struct cli_request *cli_req;
125 size_t bufsize = smb_size + num_words * 2 + num_bytes;
127 result = async_req_new(mem_ctx, ev);
128 if (result == NULL) {
129 return NULL;
132 cli_req = (struct cli_request *)talloc_size(
133 result, sizeof(*cli_req) + bufsize);
134 if (cli_req == NULL) {
135 TALLOC_FREE(result);
136 return NULL;
138 talloc_set_name_const(cli_req, "struct cli_request");
139 result->private_data = cli_req;
140 result->print = cli_request_print;
142 cli_req->async = result;
143 cli_req->cli = cli;
144 cli_req->outbuf = ((char *)cli_req + sizeof(*cli_req));
145 cli_req->sent = 0;
146 cli_req->mid = cli_new_mid(cli);
147 cli_req->inbuf = NULL;
148 cli_req->enc_state = NULL;
150 SCVAL(cli_req->outbuf, smb_wct, num_words);
151 SSVAL(cli_req->outbuf, smb_vwv + num_words * 2, num_bytes);
153 DLIST_ADD_END(cli->outstanding_requests, cli_req,
154 struct cli_request *);
155 talloc_set_destructor(cli_req, cli_request_destructor);
157 DEBUG(10, ("cli_request_new: mid=%d\n", cli_req->mid));
159 *preq = cli_req;
160 return result;
164 * Convenience function to get the SMB part out of an async_req
167 struct cli_request *cli_request_get(struct async_req *req)
169 if (req == NULL) {
170 return NULL;
172 return talloc_get_type_abort(req->private_data, struct cli_request);
176 * A PDU has arrived on cli->evt_inbuf
179 static void handle_incoming_pdu(struct cli_state *cli)
181 struct cli_request *req;
182 uint16_t mid;
183 size_t raw_pdu_len, buf_len, pdu_len, rest_len;
184 char *pdu;
185 NTSTATUS status;
188 * The encrypted PDU len might differ from the unencrypted one
190 raw_pdu_len = smb_len(cli->evt_inbuf) + 4;
191 buf_len = talloc_get_size(cli->evt_inbuf);
192 rest_len = buf_len - raw_pdu_len;
194 if (buf_len == raw_pdu_len) {
196 * Optimal case: Exactly one PDU was in the socket buffer
198 pdu = cli->evt_inbuf;
199 cli->evt_inbuf = NULL;
201 else {
202 DEBUG(11, ("buf_len = %d, raw_pdu_len = %d, splitting "
203 "buffer\n", (int)buf_len, (int)raw_pdu_len));
205 if (raw_pdu_len < rest_len) {
207 * The PDU is shorter, talloc_memdup that one.
209 pdu = (char *)talloc_memdup(
210 cli, cli->evt_inbuf, raw_pdu_len);
212 memmove(cli->evt_inbuf, cli->evt_inbuf + raw_pdu_len,
213 buf_len - raw_pdu_len);
215 cli->evt_inbuf = TALLOC_REALLOC_ARRAY(
216 NULL, cli->evt_inbuf, char, rest_len);
218 if (pdu == NULL) {
219 status = NT_STATUS_NO_MEMORY;
220 goto invalidate_requests;
223 else {
225 * The PDU is larger than the rest, talloc_memdup the
226 * rest
228 pdu = cli->evt_inbuf;
230 cli->evt_inbuf = (char *)talloc_memdup(
231 cli, pdu + raw_pdu_len, rest_len);
233 if (cli->evt_inbuf == NULL) {
234 status = NT_STATUS_NO_MEMORY;
235 goto invalidate_requests;
242 * TODO: Handle oplock break requests
245 if (cli_encryption_on(cli) && CVAL(pdu, 0) == 0) {
246 uint16_t enc_ctx_num;
248 status = get_enc_ctx_num((uint8_t *)pdu, &enc_ctx_num);
249 if (!NT_STATUS_IS_OK(status)) {
250 DEBUG(10, ("get_enc_ctx_num returned %s\n",
251 nt_errstr(status)));
252 goto invalidate_requests;
255 if (enc_ctx_num != cli->trans_enc_state->enc_ctx_num) {
256 DEBUG(10, ("wrong enc_ctx %d, expected %d\n",
257 enc_ctx_num,
258 cli->trans_enc_state->enc_ctx_num));
259 status = NT_STATUS_INVALID_HANDLE;
260 goto invalidate_requests;
263 status = common_decrypt_buffer(cli->trans_enc_state,
264 pdu);
265 if (!NT_STATUS_IS_OK(status)) {
266 DEBUG(10, ("common_decrypt_buffer returned %s\n",
267 nt_errstr(status)));
268 goto invalidate_requests;
272 if (!cli_check_sign_mac(cli, pdu)) {
273 DEBUG(10, ("cli_check_sign_mac failed\n"));
274 status = NT_STATUS_ACCESS_DENIED;
275 goto invalidate_requests;
278 mid = SVAL(pdu, smb_mid);
280 DEBUG(10, ("handle_incoming_pdu: got mid %d\n", mid));
282 for (req = cli->outstanding_requests; req; req = req->next) {
283 if (req->mid == mid) {
284 break;
288 pdu_len = smb_len(pdu) + 4;
290 if (req == NULL) {
291 DEBUG(3, ("Request for mid %d not found, dumping PDU\n", mid));
293 TALLOC_FREE(pdu);
294 return;
297 req->inbuf = talloc_move(req, &pdu);
299 async_req_done(req->async);
300 return;
302 invalidate_requests:
304 DEBUG(10, ("handle_incoming_pdu: Aborting with %s\n",
305 nt_errstr(status)));
307 for (req = cli->outstanding_requests; req; req = req->next) {
308 async_req_error(req->async, status);
310 return;
314 * fd event callback. This is the basic connection to the socket
317 static void cli_state_handler(struct event_context *event_ctx,
318 struct fd_event *event, uint16 flags, void *p)
320 struct cli_state *cli = (struct cli_state *)p;
321 struct cli_request *req;
322 NTSTATUS status;
324 DEBUG(11, ("cli_state_handler called with flags %d\n", flags));
326 if (flags & EVENT_FD_READ) {
327 int res, available;
328 size_t old_size, new_size;
329 char *tmp;
331 res = ioctl(cli->fd, FIONREAD, &available);
332 if (res == -1) {
333 DEBUG(10, ("ioctl(FIONREAD) failed: %s\n",
334 strerror(errno)));
335 status = map_nt_error_from_unix(errno);
336 goto sock_error;
339 if (available == 0) {
340 /* EOF */
341 status = NT_STATUS_END_OF_FILE;
342 goto sock_error;
345 old_size = talloc_get_size(cli->evt_inbuf);
346 new_size = old_size + available;
348 if (new_size < old_size) {
349 /* wrap */
350 status = NT_STATUS_UNEXPECTED_IO_ERROR;
351 goto sock_error;
354 tmp = TALLOC_REALLOC_ARRAY(cli, cli->evt_inbuf, char,
355 new_size);
356 if (tmp == NULL) {
357 /* nomem */
358 status = NT_STATUS_NO_MEMORY;
359 goto sock_error;
361 cli->evt_inbuf = tmp;
363 res = sys_recv(cli->fd, cli->evt_inbuf + old_size, available, 0);
364 if (res == -1) {
365 DEBUG(10, ("recv failed: %s\n", strerror(errno)));
366 status = map_nt_error_from_unix(errno);
367 goto sock_error;
370 DEBUG(11, ("cli_state_handler: received %d bytes, "
371 "smb_len(evt_inbuf) = %d\n", (int)res,
372 smb_len(cli->evt_inbuf)));
374 /* recv *might* have returned less than announced */
375 new_size = old_size + res;
377 /* shrink, so I don't expect errors here */
378 cli->evt_inbuf = TALLOC_REALLOC_ARRAY(cli, cli->evt_inbuf,
379 char, new_size);
381 while ((cli->evt_inbuf != NULL)
382 && ((smb_len(cli->evt_inbuf) + 4) <= new_size)) {
384 * we've got a complete NBT level PDU in evt_inbuf
386 handle_incoming_pdu(cli);
387 new_size = talloc_get_size(cli->evt_inbuf);
391 if (flags & EVENT_FD_WRITE) {
392 size_t to_send;
393 ssize_t sent;
395 for (req = cli->outstanding_requests; req; req = req->next) {
396 to_send = smb_len(req->outbuf)+4;
397 if (to_send > req->sent) {
398 break;
402 if (req == NULL) {
403 event_fd_set_not_writeable(event);
404 return;
407 sent = sys_send(cli->fd, req->outbuf + req->sent,
408 to_send - req->sent, 0);
410 if (sent < 0) {
411 status = map_nt_error_from_unix(errno);
412 goto sock_error;
415 req->sent += sent;
417 if (req->sent == to_send) {
418 return;
421 return;
423 sock_error:
424 for (req = cli->outstanding_requests; req; req = req->next) {
425 async_req_error(req->async, status);
427 TALLOC_FREE(cli->fd_event);
428 close(cli->fd);
429 cli->fd = -1;
433 * Holder for a talloc_destructor, we need to zero out the pointers in cli
434 * when deleting
436 struct cli_tmp_event {
437 struct cli_state *cli;
440 static int cli_tmp_event_destructor(struct cli_tmp_event *e)
442 TALLOC_FREE(e->cli->fd_event);
443 TALLOC_FREE(e->cli->event_ctx);
444 return 0;
448 * Create a temporary event context for use in the sync helper functions
451 struct cli_tmp_event *cli_tmp_event_ctx(TALLOC_CTX *mem_ctx,
452 struct cli_state *cli)
454 struct cli_tmp_event *state;
456 if (cli->event_ctx != NULL) {
457 return NULL;
460 state = talloc(mem_ctx, struct cli_tmp_event);
461 if (state == NULL) {
462 return NULL;
464 state->cli = cli;
465 talloc_set_destructor(state, cli_tmp_event_destructor);
467 cli->event_ctx = event_context_init(state);
468 if (cli->event_ctx == NULL) {
469 TALLOC_FREE(state);
470 return NULL;
473 cli->fd_event = event_add_fd(cli->event_ctx, state, cli->fd,
474 EVENT_FD_READ, cli_state_handler, cli);
475 if (cli->fd_event == NULL) {
476 TALLOC_FREE(state);
477 return NULL;
479 return state;
483 * Attach an event context permanently to a cli_struct
486 NTSTATUS cli_add_event_ctx(struct cli_state *cli,
487 struct event_context *event_ctx)
489 cli->event_ctx = event_ctx;
490 cli->fd_event = event_add_fd(event_ctx, cli, cli->fd, EVENT_FD_READ,
491 cli_state_handler, cli);
492 if (cli->fd_event == NULL) {
493 return NT_STATUS_NO_MEMORY;
495 return NT_STATUS_OK;