2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "smbd/globals.h"
23 #include "../libcli/smb/smb_common.h"
25 static struct tevent_req
*smbd_smb2_getinfo_send(TALLOC_CTX
*mem_ctx
,
26 struct tevent_context
*ev
,
27 struct smbd_smb2_request
*smb2req
,
29 uint8_t in_file_info_class
,
30 uint32_t in_output_buffer_length
,
31 DATA_BLOB in_input_buffer
,
32 uint32_t in_additional_information
,
34 uint64_t in_file_id_volatile
);
35 static NTSTATUS
smbd_smb2_getinfo_recv(struct tevent_req
*req
,
37 DATA_BLOB
*out_output_buffer
);
39 static void smbd_smb2_request_getinfo_done(struct tevent_req
*subreq
);
40 NTSTATUS
smbd_smb2_request_process_getinfo(struct smbd_smb2_request
*req
)
43 const uint8_t *inbody
;
44 int i
= req
->current_idx
;
45 size_t expected_body_size
= 0x29;
48 uint8_t in_file_info_class
;
49 uint32_t in_output_buffer_length
;
50 uint16_t in_input_buffer_offset
;
51 uint32_t in_input_buffer_length
;
52 DATA_BLOB in_input_buffer
;
53 uint32_t in_additional_information
;
55 uint64_t in_file_id_persistent
;
56 uint64_t in_file_id_volatile
;
57 struct tevent_req
*subreq
;
59 inhdr
= (const uint8_t *)req
->in
.vector
[i
+0].iov_base
;
60 if (req
->in
.vector
[i
+1].iov_len
!= (expected_body_size
& 0xFFFFFFFE)) {
61 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
64 inbody
= (const uint8_t *)req
->in
.vector
[i
+1].iov_base
;
66 body_size
= SVAL(inbody
, 0x00);
67 if (body_size
!= expected_body_size
) {
68 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
71 in_info_type
= CVAL(inbody
, 0x02);
72 in_file_info_class
= CVAL(inbody
, 0x03);
73 in_output_buffer_length
= IVAL(inbody
, 0x04);
74 in_input_buffer_offset
= SVAL(inbody
, 0x08);
75 /* 0x0A 2 bytes reserved */
76 in_input_buffer_length
= IVAL(inbody
, 0x0C);
77 in_additional_information
= IVAL(inbody
, 0x10);
78 in_flags
= IVAL(inbody
, 0x14);
79 in_file_id_persistent
= BVAL(inbody
, 0x18);
80 in_file_id_volatile
= BVAL(inbody
, 0x20);
82 if (in_input_buffer_offset
== 0 && in_input_buffer_length
== 0) {
84 } else if (in_input_buffer_offset
!=
85 (SMB2_HDR_BODY
+ (body_size
& 0xFFFFFFFE))) {
86 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
89 if (in_input_buffer_length
> req
->in
.vector
[i
+2].iov_len
) {
90 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
93 in_input_buffer
.data
= (uint8_t *)req
->in
.vector
[i
+2].iov_base
;
94 in_input_buffer
.length
= in_input_buffer_length
;
96 if (req
->compat_chain_fsp
) {
98 } else if (in_file_id_persistent
!= 0) {
99 return smbd_smb2_request_error(req
, NT_STATUS_FILE_CLOSED
);
102 subreq
= smbd_smb2_getinfo_send(req
,
103 req
->sconn
->smb2
.event_ctx
,
107 in_output_buffer_length
,
109 in_additional_information
,
111 in_file_id_volatile
);
112 if (subreq
== NULL
) {
113 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
115 tevent_req_set_callback(subreq
, smbd_smb2_request_getinfo_done
, req
);
117 return smbd_smb2_request_pending_queue(req
, subreq
);
120 static void smbd_smb2_request_getinfo_done(struct tevent_req
*subreq
)
122 struct smbd_smb2_request
*req
= tevent_req_callback_data(subreq
,
123 struct smbd_smb2_request
);
124 int i
= req
->current_idx
;
128 uint16_t out_output_buffer_offset
;
129 DATA_BLOB out_output_buffer
= data_blob_null
;
131 NTSTATUS error
; /* transport error */
133 status
= smbd_smb2_getinfo_recv(subreq
,
137 if (!NT_STATUS_IS_OK(status
)) {
138 error
= smbd_smb2_request_error(req
, status
);
139 if (!NT_STATUS_IS_OK(error
)) {
140 smbd_server_connection_terminate(req
->sconn
,
147 out_output_buffer_offset
= SMB2_HDR_BODY
+ 0x08;
149 outhdr
= (uint8_t *)req
->out
.vector
[i
].iov_base
;
151 outbody
= data_blob_talloc(req
->out
.vector
, NULL
, 0x08);
152 if (outbody
.data
== NULL
) {
153 error
= smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
154 if (!NT_STATUS_IS_OK(error
)) {
155 smbd_server_connection_terminate(req
->sconn
,
162 SSVAL(outbody
.data
, 0x00, 0x08 + 1); /* struct size */
163 SSVAL(outbody
.data
, 0x02,
164 out_output_buffer_offset
); /* output buffer offset */
165 SIVAL(outbody
.data
, 0x04,
166 out_output_buffer
.length
); /* output buffer length */
168 outdyn
= out_output_buffer
;
170 error
= smbd_smb2_request_done(req
, outbody
, &outdyn
);
171 if (!NT_STATUS_IS_OK(error
)) {
172 smbd_server_connection_terminate(req
->sconn
,
178 struct smbd_smb2_getinfo_state
{
179 struct smbd_smb2_request
*smb2req
;
181 DATA_BLOB out_output_buffer
;
184 static struct tevent_req
*smbd_smb2_getinfo_send(TALLOC_CTX
*mem_ctx
,
185 struct tevent_context
*ev
,
186 struct smbd_smb2_request
*smb2req
,
187 uint8_t in_info_type
,
188 uint8_t in_file_info_class
,
189 uint32_t in_output_buffer_length
,
190 DATA_BLOB in_input_buffer
,
191 uint32_t in_additional_information
,
193 uint64_t in_file_id_volatile
)
195 struct tevent_req
*req
;
196 struct smbd_smb2_getinfo_state
*state
;
197 struct smb_request
*smbreq
;
198 connection_struct
*conn
= smb2req
->tcon
->compat_conn
;
201 req
= tevent_req_create(mem_ctx
, &state
,
202 struct smbd_smb2_getinfo_state
);
206 state
->smb2req
= smb2req
;
207 state
->status
= NT_STATUS_INTERNAL_ERROR
;
208 state
->out_output_buffer
= data_blob_null
;
210 DEBUG(10,("smbd_smb2_getinfo_send: file_id[0x%016llX]\n",
211 (unsigned long long)in_file_id_volatile
));
213 smbreq
= smbd_smb2_fake_smb_request(smb2req
);
214 if (tevent_req_nomem(smbreq
, req
)) {
215 return tevent_req_post(req
, ev
);
218 fsp
= file_fsp(smbreq
, (uint16_t)in_file_id_volatile
);
220 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
221 return tevent_req_post(req
, ev
);
223 if (conn
!= fsp
->conn
) {
224 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
225 return tevent_req_post(req
, ev
);
227 if (smb2req
->session
->vuid
!= fsp
->vuid
) {
228 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
229 return tevent_req_post(req
, ev
);
233 tevent_req_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
234 return tevent_req_post(req
, ev
);
237 switch (in_info_type
) {
238 case 0x01:/* SMB2_GETINFO_FILE */
240 uint16_t file_info_level
;
242 unsigned int data_size
= 0;
243 bool delete_pending
= false;
244 struct timespec write_time_ts
;
245 struct file_id fileid
;
246 struct ea_list
*ea_list
= NULL
;
247 int lock_data_count
= 0;
248 char *lock_data
= NULL
;
249 bool ms_dfs_link
= false;
252 ZERO_STRUCT(write_time_ts
);
254 switch (in_file_info_class
) {
255 case 0x0F:/* RAW_FILEINFO_SMB2_ALL_EAS */
256 file_info_level
= 0xFF00 | in_file_info_class
;
259 case 0x12:/* RAW_FILEINFO_SMB2_ALL_INFORMATION */
260 file_info_level
= 0xFF00 | in_file_info_class
;
264 /* the levels directly map to the passthru levels */
265 file_info_level
= in_file_info_class
+ 1000;
269 if (fsp
->fake_file_handle
) {
271 * This is actually for the QUOTA_FAKE_FILE --metze
274 /* We know this name is ok, it's already passed the checks. */
276 } else if (fsp
&& (fsp
->is_directory
|| fsp
->fh
->fd
== -1)) {
278 * This is actually a QFILEINFO on a directory
279 * handle (returned from an NT SMB). NT5.0 seems
280 * to do this call. JRA.
283 if (INFO_LEVEL_IS_UNIX(file_info_level
)) {
284 /* Always do lstat for UNIX calls. */
285 if (SMB_VFS_LSTAT(conn
, fsp
->fsp_name
)) {
286 DEBUG(3,("smbd_smb2_getinfo_send: "
287 "SMB_VFS_LSTAT of %s failed "
288 "(%s)\n", fsp_str_dbg(fsp
),
290 status
= map_nt_error_from_unix(errno
);
291 tevent_req_nterror(req
, status
);
292 return tevent_req_post(req
, ev
);
294 } else if (SMB_VFS_STAT(conn
, fsp
->fsp_name
)) {
295 DEBUG(3,("smbd_smb2_getinfo_send: "
296 "SMB_VFS_STAT of %s failed (%s)\n",
299 status
= map_nt_error_from_unix(errno
);
300 tevent_req_nterror(req
, status
);
301 return tevent_req_post(req
, ev
);
304 fileid
= vfs_file_id_from_sbuf(conn
,
306 get_file_infos(fileid
, &delete_pending
, &write_time_ts
);
309 * Original code - this is an open file.
312 if (SMB_VFS_FSTAT(fsp
, &fsp
->fsp_name
->st
) != 0) {
313 DEBUG(3, ("smbd_smb2_getinfo_send: "
314 "fstat of fnum %d failed (%s)\n",
315 fsp
->fnum
, strerror(errno
)));
316 status
= map_nt_error_from_unix(errno
);
317 tevent_req_nterror(req
, status
);
318 return tevent_req_post(req
, ev
);
320 fileid
= vfs_file_id_from_sbuf(conn
,
322 get_file_infos(fileid
, &delete_pending
, &write_time_ts
);
325 status
= smbd_do_qfilepathinfo(conn
, state
,
336 in_output_buffer_length
,
339 if (!NT_STATUS_IS_OK(status
)) {
341 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_LEVEL
)) {
342 status
= NT_STATUS_INVALID_INFO_CLASS
;
344 tevent_req_nterror(req
, status
);
345 return tevent_req_post(req
, ev
);
348 state
->out_output_buffer
= data_blob_talloc(state
,
352 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
353 return tevent_req_post(req
, ev
);
360 case 0x02:/* SMB2_GETINFO_FS */
362 uint16_t file_info_level
;
367 /* the levels directly map to the passthru levels */
368 file_info_level
= in_file_info_class
+ 1000;
370 status
= smbd_do_qfsinfo(conn
, state
,
373 in_output_buffer_length
,
376 if (!NT_STATUS_IS_OK(status
)) {
378 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_LEVEL
)) {
379 status
= NT_STATUS_INVALID_INFO_CLASS
;
381 tevent_req_nterror(req
, status
);
382 return tevent_req_post(req
, ev
);
385 state
->out_output_buffer
= data_blob_talloc(state
,
389 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
390 return tevent_req_post(req
, ev
);
398 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
399 return tevent_req_post(req
, ev
);
402 tevent_req_done(req
);
403 return tevent_req_post(req
, ev
);
406 static NTSTATUS
smbd_smb2_getinfo_recv(struct tevent_req
*req
,
408 DATA_BLOB
*out_output_buffer
)
411 struct smbd_smb2_getinfo_state
*state
= tevent_req_data(req
,
412 struct smbd_smb2_getinfo_state
);
414 if (tevent_req_is_nterror(req
, &status
)) {
415 tevent_req_received(req
);
419 *out_output_buffer
= state
->out_output_buffer
;
420 talloc_steal(mem_ctx
, out_output_buffer
->data
);
422 tevent_req_received(req
);