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
,
73 state
->fixed
, sizeof(state
->fixed
),
74 state
->dyn_pad
, sizeof(state
->dyn_pad
));
75 if (tevent_req_nomem(subreq
, req
)) {
76 return tevent_req_post(req
, ev
);
78 tevent_req_set_callback(subreq
, smb2cli_read_done
, req
);
82 static void smb2cli_read_done(struct tevent_req
*subreq
)
84 struct tevent_req
*req
= tevent_req_callback_data(
85 subreq
, struct tevent_req
);
86 struct smb2cli_read_state
*state
=
88 struct smb2cli_read_state
);
93 status
= smb2cli_req_recv(subreq
, state
, &iov
, 17);
94 if (tevent_req_nterror(req
, status
)) {
98 data_offset
= CVAL(iov
[1].iov_base
, 2);
99 state
->data_length
= IVAL(iov
[1].iov_base
, 4);
101 if ((data_offset
!= SMB2_HDR_BODY
+ 16) ||
102 (state
->data_length
> iov
[2].iov_len
)) {
103 tevent_req_nterror(req
, NT_STATUS_INVALID_NETWORK_RESPONSE
);
107 state
->recv_iov
= iov
;
108 state
->data
= (uint8_t *)iov
[2].iov_base
;
109 tevent_req_done(req
);
112 NTSTATUS
smb2cli_read_recv(struct tevent_req
*req
, TALLOC_CTX
*mem_ctx
,
113 uint8_t **data
, uint32_t *data_length
)
115 struct smb2cli_read_state
*state
=
117 struct smb2cli_read_state
);
120 if (tevent_req_is_nterror(req
, &status
)) {
123 talloc_steal(mem_ctx
, state
->recv_iov
);
124 *data_length
= state
->data_length
;
129 NTSTATUS
smb2cli_read(struct cli_state
*cli
,
132 uint64_t fid_persistent
,
133 uint64_t fid_volatile
,
134 uint64_t minimum_count
,
135 uint64_t remaining_bytes
,
138 uint32_t *data_length
)
140 TALLOC_CTX
*frame
= talloc_stackframe();
141 struct event_context
*ev
;
142 struct tevent_req
*req
;
143 NTSTATUS status
= NT_STATUS_NO_MEMORY
;
145 if (cli_has_async_calls(cli
)) {
147 * Can't use sync call while an async call is in flight
149 status
= NT_STATUS_INVALID_PARAMETER
;
152 ev
= event_context_init(frame
);
156 req
= smb2cli_read_send(frame
, ev
, cli
, length
, offset
,
157 fid_persistent
, fid_volatile
,
158 minimum_count
, remaining_bytes
);
162 if (!tevent_req_poll_ntstatus(req
, ev
, &status
)) {
165 status
= smb2cli_read_recv(req
, mem_ctx
, data
, data_length
);