2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
6 Copyright (C) Jeremy Allison 2010
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "smbd/globals.h"
24 #include "../libcli/smb/smb_common.h"
26 static struct tevent_req
*smbd_smb2_getinfo_send(TALLOC_CTX
*mem_ctx
,
27 struct tevent_context
*ev
,
28 struct smbd_smb2_request
*smb2req
,
30 uint8_t in_file_info_class
,
31 uint32_t in_output_buffer_length
,
32 DATA_BLOB in_input_buffer
,
33 uint32_t in_additional_information
,
35 uint64_t in_file_id_volatile
);
36 static NTSTATUS
smbd_smb2_getinfo_recv(struct tevent_req
*req
,
38 DATA_BLOB
*out_output_buffer
,
39 NTSTATUS
*p_call_status
);
41 static void smbd_smb2_request_getinfo_done(struct tevent_req
*subreq
);
42 NTSTATUS
smbd_smb2_request_process_getinfo(struct smbd_smb2_request
*req
)
45 const uint8_t *inbody
;
46 int i
= req
->current_idx
;
47 size_t expected_body_size
= 0x29;
50 uint8_t in_file_info_class
;
51 uint32_t in_output_buffer_length
;
52 uint16_t in_input_buffer_offset
;
53 uint32_t in_input_buffer_length
;
54 DATA_BLOB in_input_buffer
;
55 uint32_t in_additional_information
;
57 uint64_t in_file_id_persistent
;
58 uint64_t in_file_id_volatile
;
59 struct tevent_req
*subreq
;
61 inhdr
= (const uint8_t *)req
->in
.vector
[i
+0].iov_base
;
62 if (req
->in
.vector
[i
+1].iov_len
!= (expected_body_size
& 0xFFFFFFFE)) {
63 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
66 inbody
= (const uint8_t *)req
->in
.vector
[i
+1].iov_base
;
68 body_size
= SVAL(inbody
, 0x00);
69 if (body_size
!= expected_body_size
) {
70 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
73 in_info_type
= CVAL(inbody
, 0x02);
74 in_file_info_class
= CVAL(inbody
, 0x03);
75 in_output_buffer_length
= IVAL(inbody
, 0x04);
76 in_input_buffer_offset
= SVAL(inbody
, 0x08);
77 /* 0x0A 2 bytes reserved */
78 in_input_buffer_length
= IVAL(inbody
, 0x0C);
79 in_additional_information
= IVAL(inbody
, 0x10);
80 in_flags
= IVAL(inbody
, 0x14);
81 in_file_id_persistent
= BVAL(inbody
, 0x18);
82 in_file_id_volatile
= BVAL(inbody
, 0x20);
84 if (in_input_buffer_offset
== 0 && in_input_buffer_length
== 0) {
86 } else if (in_input_buffer_offset
!=
87 (SMB2_HDR_BODY
+ (body_size
& 0xFFFFFFFE))) {
88 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
91 if (in_input_buffer_length
> req
->in
.vector
[i
+2].iov_len
) {
92 return smbd_smb2_request_error(req
, NT_STATUS_INVALID_PARAMETER
);
95 in_input_buffer
.data
= (uint8_t *)req
->in
.vector
[i
+2].iov_base
;
96 in_input_buffer
.length
= in_input_buffer_length
;
98 if (req
->compat_chain_fsp
) {
100 } else if (in_file_id_persistent
!= in_file_id_volatile
) {
101 return smbd_smb2_request_error(req
, NT_STATUS_FILE_CLOSED
);
104 subreq
= smbd_smb2_getinfo_send(req
,
105 req
->sconn
->smb2
.event_ctx
,
109 in_output_buffer_length
,
111 in_additional_information
,
113 in_file_id_volatile
);
114 if (subreq
== NULL
) {
115 return smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
117 tevent_req_set_callback(subreq
, smbd_smb2_request_getinfo_done
, req
);
119 return smbd_smb2_request_pending_queue(req
, subreq
);
122 static void smbd_smb2_request_getinfo_done(struct tevent_req
*subreq
)
124 struct smbd_smb2_request
*req
= tevent_req_callback_data(subreq
,
125 struct smbd_smb2_request
);
126 int i
= req
->current_idx
;
130 uint16_t out_output_buffer_offset
;
131 DATA_BLOB out_output_buffer
= data_blob_null
;
133 NTSTATUS call_status
= NT_STATUS_OK
;
134 NTSTATUS error
; /* transport error */
136 status
= smbd_smb2_getinfo_recv(subreq
,
141 if (!NT_STATUS_IS_OK(status
)) {
142 error
= smbd_smb2_request_error(req
, status
);
143 if (!NT_STATUS_IS_OK(error
)) {
144 smbd_server_connection_terminate(req
->sconn
,
151 if (!NT_STATUS_IS_OK(call_status
)) {
152 /* Return a specific error with data. */
153 error
= smbd_smb2_request_error_ex(req
,
157 if (!NT_STATUS_IS_OK(error
)) {
158 smbd_server_connection_terminate(req
->sconn
,
165 out_output_buffer_offset
= SMB2_HDR_BODY
+ 0x08;
167 outhdr
= (uint8_t *)req
->out
.vector
[i
].iov_base
;
169 outbody
= data_blob_talloc(req
->out
.vector
, NULL
, 0x08);
170 if (outbody
.data
== NULL
) {
171 error
= smbd_smb2_request_error(req
, NT_STATUS_NO_MEMORY
);
172 if (!NT_STATUS_IS_OK(error
)) {
173 smbd_server_connection_terminate(req
->sconn
,
180 SSVAL(outbody
.data
, 0x00, 0x08 + 1); /* struct size */
181 SSVAL(outbody
.data
, 0x02,
182 out_output_buffer_offset
); /* output buffer offset */
183 SIVAL(outbody
.data
, 0x04,
184 out_output_buffer
.length
); /* output buffer length */
186 outdyn
= out_output_buffer
;
188 error
= smbd_smb2_request_done(req
, outbody
, &outdyn
);
189 if (!NT_STATUS_IS_OK(error
)) {
190 smbd_server_connection_terminate(req
->sconn
,
196 struct smbd_smb2_getinfo_state
{
197 struct smbd_smb2_request
*smb2req
;
199 DATA_BLOB out_output_buffer
;
202 static struct tevent_req
*smbd_smb2_getinfo_send(TALLOC_CTX
*mem_ctx
,
203 struct tevent_context
*ev
,
204 struct smbd_smb2_request
*smb2req
,
205 uint8_t in_info_type
,
206 uint8_t in_file_info_class
,
207 uint32_t in_output_buffer_length
,
208 DATA_BLOB in_input_buffer
,
209 uint32_t in_additional_information
,
211 uint64_t in_file_id_volatile
)
213 struct tevent_req
*req
;
214 struct smbd_smb2_getinfo_state
*state
;
215 struct smb_request
*smbreq
;
216 connection_struct
*conn
= smb2req
->tcon
->compat_conn
;
220 req
= tevent_req_create(mem_ctx
, &state
,
221 struct smbd_smb2_getinfo_state
);
225 state
->smb2req
= smb2req
;
226 state
->status
= NT_STATUS_OK
;
227 state
->out_output_buffer
= data_blob_null
;
229 DEBUG(10,("smbd_smb2_getinfo_send: file_id[0x%016llX]\n",
230 (unsigned long long)in_file_id_volatile
));
232 smbreq
= smbd_smb2_fake_smb_request(smb2req
);
233 if (tevent_req_nomem(smbreq
, req
)) {
234 return tevent_req_post(req
, ev
);
237 fsp
= file_fsp(smbreq
, (uint16_t)in_file_id_volatile
);
239 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
240 return tevent_req_post(req
, ev
);
242 if (conn
!= fsp
->conn
) {
243 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
244 return tevent_req_post(req
, ev
);
246 if (smb2req
->session
->vuid
!= fsp
->vuid
) {
247 tevent_req_nterror(req
, NT_STATUS_FILE_CLOSED
);
248 return tevent_req_post(req
, ev
);
252 tevent_req_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
253 return tevent_req_post(req
, ev
);
256 switch (in_info_type
) {
257 case 0x01:/* SMB2_GETINFO_FILE */
259 uint16_t file_info_level
;
261 unsigned int data_size
= 0;
262 bool delete_pending
= false;
263 struct timespec write_time_ts
;
264 struct file_id fileid
;
265 struct ea_list
*ea_list
= NULL
;
266 int lock_data_count
= 0;
267 char *lock_data
= NULL
;
269 ZERO_STRUCT(write_time_ts
);
271 switch (in_file_info_class
) {
272 case 0x0F:/* RAW_FILEINFO_SMB2_ALL_EAS */
273 file_info_level
= 0xFF00 | in_file_info_class
;
276 case 0x12:/* RAW_FILEINFO_SMB2_ALL_INFORMATION */
277 file_info_level
= 0xFF00 | in_file_info_class
;
281 /* the levels directly map to the passthru levels */
282 file_info_level
= in_file_info_class
+ 1000;
286 if (fsp
->fake_file_handle
) {
288 * This is actually for the QUOTA_FAKE_FILE --metze
291 /* We know this name is ok, it's already passed the checks. */
293 } else if (fsp
&& (fsp
->is_directory
|| fsp
->fh
->fd
== -1)) {
295 * This is actually a QFILEINFO on a directory
296 * handle (returned from an NT SMB). NT5.0 seems
297 * to do this call. JRA.
300 if (INFO_LEVEL_IS_UNIX(file_info_level
)) {
301 /* Always do lstat for UNIX calls. */
302 if (SMB_VFS_LSTAT(conn
, fsp
->fsp_name
)) {
303 DEBUG(3,("smbd_smb2_getinfo_send: "
304 "SMB_VFS_LSTAT of %s failed "
305 "(%s)\n", fsp_str_dbg(fsp
),
307 status
= map_nt_error_from_unix(errno
);
308 tevent_req_nterror(req
, status
);
309 return tevent_req_post(req
, ev
);
311 } else if (SMB_VFS_STAT(conn
, fsp
->fsp_name
)) {
312 DEBUG(3,("smbd_smb2_getinfo_send: "
313 "SMB_VFS_STAT of %s failed (%s)\n",
316 status
= map_nt_error_from_unix(errno
);
317 tevent_req_nterror(req
, status
);
318 return tevent_req_post(req
, ev
);
321 fileid
= vfs_file_id_from_sbuf(conn
,
323 get_file_infos(fileid
, &delete_pending
, &write_time_ts
);
326 * Original code - this is an open file.
329 if (SMB_VFS_FSTAT(fsp
, &fsp
->fsp_name
->st
) != 0) {
330 DEBUG(3, ("smbd_smb2_getinfo_send: "
331 "fstat of fnum %d failed (%s)\n",
332 fsp
->fnum
, strerror(errno
)));
333 status
= map_nt_error_from_unix(errno
);
334 tevent_req_nterror(req
, status
);
335 return tevent_req_post(req
, ev
);
337 fileid
= vfs_file_id_from_sbuf(conn
,
339 get_file_infos(fileid
, &delete_pending
, &write_time_ts
);
342 status
= smbd_do_qfilepathinfo(conn
, state
,
352 in_output_buffer_length
,
355 if (!NT_STATUS_IS_OK(status
)) {
357 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_LEVEL
)) {
358 status
= NT_STATUS_INVALID_INFO_CLASS
;
360 tevent_req_nterror(req
, status
);
361 return tevent_req_post(req
, ev
);
364 state
->out_output_buffer
= data_blob_talloc(state
,
368 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
369 return tevent_req_post(req
, ev
);
376 case 0x02:/* SMB2_GETINFO_FS */
378 uint16_t file_info_level
;
382 /* the levels directly map to the passthru levels */
383 file_info_level
= in_file_info_class
+ 1000;
385 status
= smbd_do_qfsinfo(conn
, state
,
388 in_output_buffer_length
,
391 if (!NT_STATUS_IS_OK(status
)) {
393 if (NT_STATUS_EQUAL(status
, NT_STATUS_INVALID_LEVEL
)) {
394 status
= NT_STATUS_INVALID_INFO_CLASS
;
396 tevent_req_nterror(req
, status
);
397 return tevent_req_post(req
, ev
);
400 state
->out_output_buffer
= data_blob_talloc(state
,
404 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
405 return tevent_req_post(req
, ev
);
412 case 0x03:/* SMB2_GETINFO_SEC */
414 uint8_t *p_marshalled_sd
= NULL
;
417 status
= smbd_do_query_security_desc(conn
,
420 /* Security info wanted. */
421 in_additional_information
,
422 in_output_buffer_length
,
426 if (NT_STATUS_EQUAL(status
, NT_STATUS_BUFFER_TOO_SMALL
)) {
427 /* Return needed size. */
428 state
->out_output_buffer
= data_blob_talloc(state
,
431 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
432 return tevent_req_post(req
, ev
);
434 SIVAL(state
->out_output_buffer
.data
,0,(uint32_t)sd_size
);
435 state
->status
= NT_STATUS_BUFFER_TOO_SMALL
;
438 if (!NT_STATUS_IS_OK(status
)) {
439 DEBUG(10,("smbd_smb2_getinfo_send: "
440 "smbd_do_query_security_desc of %s failed "
441 "(%s)\n", fsp_str_dbg(fsp
),
443 tevent_req_nterror(req
, status
);
444 return tevent_req_post(req
, ev
);
448 state
->out_output_buffer
= data_blob_talloc(state
,
451 if (tevent_req_nomem(state
->out_output_buffer
.data
, req
)) {
452 return tevent_req_post(req
, ev
);
459 DEBUG(10,("smbd_smb2_getinfo_send: "
460 "unknown in_info_type of %u "
462 (unsigned int)in_info_type
,
465 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
466 return tevent_req_post(req
, ev
);
469 tevent_req_done(req
);
470 return tevent_req_post(req
, ev
);
473 static NTSTATUS
smbd_smb2_getinfo_recv(struct tevent_req
*req
,
475 DATA_BLOB
*out_output_buffer
,
479 struct smbd_smb2_getinfo_state
*state
= tevent_req_data(req
,
480 struct smbd_smb2_getinfo_state
);
482 if (tevent_req_is_nterror(req
, &status
)) {
483 tevent_req_received(req
);
487 *out_output_buffer
= state
->out_output_buffer
;
488 talloc_steal(mem_ctx
, out_output_buffer
->data
);
489 *pstatus
= state
->status
;
491 tevent_req_received(req
);