File: smb2-cmd-read.c

package info (click to toggle)
libsmb2 6.2%2Bdfsg-2%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie-proposed-updates
  • size: 2,992 kB
  • sloc: ansic: 33,026; sh: 221; makefile: 189; cpp: 98
file content (392 lines) | stat: -rw-r--r-- 12,675 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/* -*-  mode:c; tab-width:8; c-basic-offset:8; indent-tabs-mode:nil;  -*- */
/*
   Copyright (C) 2016 by Ronnie Sahlberg <ronniesahlberg@gmail.com>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU Lesser General Public License as published by
   the Free Software Foundation; either version 2.1 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public License
   along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#endif

#ifdef STDC_HEADERS
#include <stddef.h>
#endif

#ifdef HAVE_TIME_H
#include <time.h>
#endif

#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif

#include <errno.h>

#include "compat.h"

#include "smb2.h"
#include "libsmb2.h"
#include "libsmb2-private.h"

static int
smb2_encode_read_request(struct smb2_context *smb2,
                         struct smb2_pdu *pdu,
                         struct smb2_read_request *req)
{
        int len;
        uint8_t *buf;
        struct smb2_iovec *iov;

        len = SMB2_READ_REQUEST_SIZE & 0xfffffffe;
        buf = calloc(len, sizeof(uint8_t));
        if (buf == NULL) {
                smb2_set_error(smb2, "Failed to allocate read buffer");
                return -1;
        }

        iov = smb2_add_iovector(smb2, &pdu->out, buf, len, free);
        if (iov == NULL) {
                return -1;
        }

        if (!smb2->supports_multi_credit && req->length > 64 * 1024) {
                req->length = 64 * 1024;
                req->minimum_count = 0;
        }
        smb2_set_uint16(iov, 0, SMB2_READ_REQUEST_SIZE);
        smb2_set_uint8(iov, 3, req->flags);
        smb2_set_uint32(iov, 4, req->length);
        smb2_set_uint64(iov, 8, req->offset);
        memcpy(iov->buf + 16, req->file_id, SMB2_FD_SIZE);
        smb2_set_uint32(iov, 32, req->minimum_count);
        smb2_set_uint32(iov, 36, req->channel);
        smb2_set_uint32(iov, 40, req->remaining_bytes);
        smb2_set_uint16(iov, 46, req->read_channel_info_length);

        if (req->read_channel_info_length > 0 &&
            req->read_channel_info != NULL) {
                if (smb2->passthrough) {
                        req->read_channel_info_offset =
                                (SMB2_READ_REQUEST_SIZE & 0xfffffffe) + SMB2_HEADER_SIZE;
                        smb2_set_uint16(iov, 44, req->read_channel_info_offset);

                        len = PAD_TO_64BIT(req->read_channel_info_length);
                        buf = malloc(len);
                        if (buf == NULL) {
                                smb2_set_error(smb2, "Failed to allocate read channel context");
                                return -1;
                        }
                        memcpy(buf, req->read_channel_info, req->read_channel_info_length);
                        memset(buf + req->read_channel_info_length, 0,
                                       len - req->read_channel_info_length);
                        iov = smb2_add_iovector(smb2, &pdu->out,
                                                        buf,
                                                        len,
                                                        free);
                        if (iov == NULL) {
                                return -1;
                        }
                }
                else {
                        smb2_set_error(smb2, "ChannelInfo not yet implemented");
                        return -1;
                }
        }

        /* The buffer must contain at least one byte, even if we do not
         * have any read channel info.
         */
        if (req->read_channel_info_length == 0) {
                static uint8_t zero;

                if (smb2_add_iovector(smb2, &pdu->out, &zero, 1, NULL) == NULL) {
                        return -1;
                }
        }

        return 0;
}

struct smb2_pdu *
smb2_cmd_read_async(struct smb2_context *smb2,
                    struct smb2_read_request *req,
                    smb2_command_cb cb, void *cb_data)
{
        struct smb2_pdu *pdu;

        pdu = smb2_allocate_pdu(smb2, SMB2_READ, cb, cb_data);
        if (pdu == NULL) {
                return NULL;
        }

        if (smb2_encode_read_request(smb2, pdu, req)) {
                smb2_free_pdu(smb2, pdu);
                return NULL;
        }

        /* Add a vector for the buffer that the application gave us */
        if (smb2_add_iovector(smb2, &pdu->in, req->buf, req->length, NULL) == NULL) {
                smb2_free_pdu(smb2, pdu);
                return NULL;
        }

        if (smb2_pad_to_64bit(smb2, &pdu->out) != 0) {
                smb2_free_pdu(smb2, pdu);
                return NULL;
        }

        /* Adjust credit charge for large payloads */
        if (smb2->supports_multi_credit) {
                pdu->header.credit_charge = (req->length - 1) / 65536 + 1; /* 3.1.5.2 of [MS-SMB2] */
        }

        return pdu;
}

static int
smb2_encode_read_reply(struct smb2_context *smb2,
                         struct smb2_pdu *pdu,
                         struct smb2_read_reply *rep)
{
        int len;
        uint8_t *buf;
        struct smb2_iovec *iov;

        len = SMB2_READ_REPLY_SIZE & 0xfffffffe;
        buf = calloc(len, sizeof(uint8_t));
        if (buf == NULL) {
                smb2_set_error(smb2, "Failed to allocate read reply buffer");
                return -1;
        }

        iov = smb2_add_iovector(smb2, &pdu->out, buf, len, free);
        if (iov == NULL) {
                return -1;
        }

        rep->data_offset = 0;
        if (rep->data_length && rep->data) {
                rep->data_offset = (SMB2_READ_REPLY_SIZE & 0xfffffffe) + SMB2_HEADER_SIZE;
        }
        smb2_set_uint16(iov, 0, SMB2_READ_REPLY_SIZE);
        smb2_set_uint8(iov, 2, rep->data_offset);
        smb2_set_uint32(iov, 4, rep->data_length);
        smb2_set_uint32(iov, 8, rep->data_remaining);

        if (rep->data_length > 0 && rep->data) {
                if (smb2_add_iovector(smb2, &pdu->out, rep->data, rep->data_length, free) == NULL) {
                        return -1;
                }
        }

        return 0;
}

struct smb2_pdu *
smb2_cmd_read_reply_async(struct smb2_context *smb2,
                    struct smb2_read_reply *rep,
                    smb2_command_cb cb, void *cb_data)
{
        struct smb2_pdu *pdu;

        pdu = smb2_allocate_pdu(smb2, SMB2_READ, cb, cb_data);
        if (pdu == NULL) {
                return NULL;
        }

        if (smb2_encode_read_reply(smb2, pdu, rep)) {
                smb2_free_pdu(smb2, pdu);
                return NULL;
        }

        if (smb2_pad_to_64bit(smb2, &pdu->out) != 0) {
                smb2_free_pdu(smb2, pdu);
                return NULL;
        }

        return pdu;
}

int
smb2_process_read_fixed(struct smb2_context *smb2,
                        struct smb2_pdu *pdu)
{
        struct smb2_read_reply *rep;
        struct smb2_iovec *iov = &smb2->in.iov[smb2->in.niov - 1];
        uint16_t struct_size;

        smb2_get_uint16(iov, 0, &struct_size);
        if (struct_size > SMB2_READ_REPLY_SIZE) {
                smb2_set_error(smb2, "Unexpected size of Read "
                               "reply. Expected %d, got %d",
                               SMB2_READ_REPLY_SIZE,
                               (int)iov->len);
                return -1;
        }

        rep = malloc(sizeof(*rep));
        if (rep == NULL) {
                smb2_set_error(smb2, "Failed to allocate read reply");
                return -1;
        }
        pdu->payload = rep;

        smb2_get_uint8(iov, 2, &rep->data_offset);
        smb2_get_uint32(iov, 4, &rep->data_length);
        smb2_get_uint32(iov, 8, &rep->data_remaining);

        rep->data = NULL;
        if (rep->data_length == 0) {
                return 0;
        }

        if (rep->data_offset != SMB2_HEADER_SIZE + 16) {
                smb2_set_error(smb2, "Unexpected data offset in Read reply. "
                               "Expected %d, got %d",
                               SMB2_HEADER_SIZE + 16, rep->data_offset);
                pdu->payload = NULL;
                free(rep);
                return -1;
        }

        return rep->data_length;
}

static void free_read_reply(struct smb2_context *smb2, void * payload) {
    struct smb2_read_reply *rep;
    if (payload == NULL) {
        return;
    }
    
    rep = (struct smb2_read_reply*)payload;
    if (rep->data_length != 0 && rep->data != NULL) {
        free(rep->data);
    }
}

int
smb2_process_read_variable(struct smb2_context *smb2,
                        struct smb2_pdu *pdu)
{
        struct smb2_read_reply *rep = (struct smb2_read_reply*)pdu->payload;
        struct smb2_iovec *iov = &smb2->in.iov[smb2->in.niov - 1];

        if (rep->data) {
                pdu->free_payload = free_read_reply;
                memcpy(rep->data, iov->buf, rep->data_length);
        }
        else {
                /* allow app to get data direct from iov to avoid copy */
                rep->data = iov->buf;
        }
        return 0;
}

#define IOVREQ_OFFSET ((req->read_channel_info_offset)?(req->read_channel_info_offset - SMB2_HEADER_SIZE - \
        (SMB2_READ_REQUEST_SIZE & 0xfffe)):0)
int
smb2_process_read_request_fixed(struct smb2_context *smb2,
                        struct smb2_pdu *pdu)
{
        struct smb2_read_request *req;
        struct smb2_iovec *iov = &smb2->in.iov[smb2->in.niov - 1];
        uint16_t struct_size;

        smb2_get_uint16(iov, 0, &struct_size);
        if (struct_size > SMB2_READ_REQUEST_SIZE) {
                smb2_set_error(smb2, "Unexpected size of Read "
                               "request. Expected %d, got %d",
                               SMB2_READ_REQUEST_SIZE,
                               (int)iov->len);
                return -1;
        }

        req = malloc(sizeof(*req));
        if (req == NULL) {
                smb2_set_error(smb2, "Failed to allocate read request");
                return -1;
        }
        pdu->payload = req;

        smb2_get_uint8(iov, 3, &req->flags);
        smb2_get_uint32(iov, 4, &req->length);
        smb2_get_uint64(iov, 8, &req->offset);
        memcpy(req->file_id, iov->buf + 16, SMB2_FD_SIZE);
        smb2_get_uint32(iov, 32, &req->minimum_count);
        smb2_get_uint32(iov, 36, &req->channel);
        smb2_get_uint32(iov, 40, &req->remaining_bytes);
        if (req->read_channel_info_length) {
                req->read_channel_info_offset = (SMB2_READ_REQUEST_SIZE & 0xfffffffe) + SMB2_HEADER_SIZE;
                smb2_get_uint16(iov, 44, &req->read_channel_info_offset);
        }
        smb2_get_uint16(iov, 46, &req->read_channel_info_length);

        if (req->length > smb2->max_read_size) {
                smb2_set_error(smb2, "can not read more than %d bytes", smb2->max_read_size);
                pdu->payload = NULL;
                free(req);
                return -1;
        }

        /* provide an iovec to read the data into */
        req->buf = malloc(req->length);
        if (!req->buf) {
                smb2_set_error(smb2, "can not alloc for read reply data");
                pdu->payload = NULL;
                free(req);
                return -1;
        }
        smb2_add_iovector(smb2,  &pdu->in, req->buf, req->length, free);

        if (req->read_channel_info_length == 0) {
                return 0;
        }

        if (req->read_channel_info_offset < SMB2_HEADER_SIZE + (SMB2_READ_REQUEST_SIZE & 0xfffe)) {
                smb2_set_error(smb2, "channel info overlaps request", "");
                pdu->payload = NULL;
                free(req);
                return -1;
        }

        return IOVREQ_OFFSET + req->read_channel_info_length;
}

int
smb2_process_read_request_variable(struct smb2_context *smb2,
                        struct smb2_pdu *pdu)
{
        struct smb2_read_request *req = (struct smb2_read_request*)pdu->payload;
        struct smb2_iovec *iov = &smb2->in.iov[smb2->in.niov - 1];

        req->read_channel_info = (uint8_t *)iov->buf;
        return 0;
}