2 Unix SMB/CIFS implementation.
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/>.
22 #include "async_smb.h"
23 #include "smb2cli_base.h"
25 #include "libsmb/proto.h"
26 #include "lib/util/tevent_ntstatus.h"
28 struct smb2cli_read_state
{
31 struct iovec
*recv_iov
;
36 static void smb2cli_read_done(struct tevent_req
*subreq
);
38 struct tevent_req
*smb2cli_read_send(TALLOC_CTX
*mem_ctx
,
39 struct tevent_context
*ev
,
40 struct cli_state
*cli
,
43 uint64_t fid_persistent
,
44 uint64_t fid_volatile
,
45 uint64_t minimum_count
,
46 uint64_t remaining_bytes
)
48 struct tevent_req
*req
, *subreq
;
49 struct smb2cli_read_state
*state
;
52 req
= tevent_req_create(mem_ctx
, &state
,
53 struct smb2cli_read_state
);
61 SIVAL(fixed
, 4, length
);
62 SBVAL(fixed
, 8, offset
);
63 SBVAL(fixed
, 16, fid_persistent
);
64 SBVAL(fixed
, 24, fid_volatile
);
65 SBVAL(fixed
, 32, minimum_count
);
66 SBVAL(fixed
, 40, remaining_bytes
);
68 subreq
= smb2cli_req_send(state
, ev
, cli
, SMB2_OP_READ
,
74 state
->fixed
, sizeof(state
->fixed
),
75 state
->dyn_pad
, sizeof(state
->dyn_pad
));
76 if (tevent_req_nomem(subreq
, req
)) {
77 return tevent_req_post(req
, ev
);
79 tevent_req_set_callback(subreq
, smb2cli_read_done
, req
);
83 static void smb2cli_read_done(struct tevent_req
*subreq
)
85 struct tevent_req
*req
= tevent_req_callback_data(
86 subreq
, struct tevent_req
);
87 struct smb2cli_read_state
*state
=
89 struct smb2cli_read_state
);
93 static const struct smb2cli_req_expected_response expected
[] = {
95 .status
= STATUS_BUFFER_OVERFLOW
,
99 .status
= NT_STATUS_OK
,
104 status
= smb2cli_req_recv(subreq
, state
, &iov
,
105 expected
, ARRAY_SIZE(expected
));
106 if (tevent_req_nterror(req
, status
)) {
110 data_offset
= CVAL(iov
[1].iov_base
, 2);
111 state
->data_length
= IVAL(iov
[1].iov_base
, 4);
113 if ((data_offset
!= SMB2_HDR_BODY
+ 16) ||
114 (state
->data_length
> iov
[2].iov_len
)) {
115 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
119 state
->recv_iov
= iov
;
120 state
->data
= (uint8_t *)iov
[2].iov_base
;
121 tevent_req_done(req
);
124 NTSTATUS
smb2cli_read_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
125 uint8_t **data
, uint32_t *data_length
)
127 struct smb2cli_read_state
*state
=
129 struct smb2cli_read_state
);
132 if (tevent_req_is_nterror(req
, &status
)) {
135 talloc_steal(mem_ctx
, state
->recv_iov
);
136 *data_length
= state
->data_length
;
141 NTSTATUS
smb2cli_read(struct cli_state
*cli
,
144 uint64_t fid_persistent
,
145 uint64_t fid_volatile
,
146 uint64_t minimum_count
,
147 uint64_t remaining_bytes
,
150 uint32_t *data_length
)
152 TALLOC_CTX
*frame
= talloc_stackframe();
153 struct event_context
*ev
;
154 struct tevent_req
*req
;
155 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
157 if (cli_has_async_calls(cli
)) {
159 * Can't use sync call while an async call is in flight
161 status
= NT_STATUS_INVALID_PARAMETER
;
164 ev
= event_context_init(frame
);
168 req
= smb2cli_read_send(frame
, ev
, cli
, length
, offset
,
169 fid_persistent
, fid_volatile
,
170 minimum_count
, remaining_bytes
);
174 if (!tevent_req_poll_ntstatus(req
, ev
, &status
)) {
177 status
= smb2cli_read_recv(req
, mem_ctx
, data
, data_length
);