2 Unix SMB/CIFS implementation.
5 Copyright (C) Stefan Metzmacher 2009
6 Copyright (C) David Disseldorp 2013-2015
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/smbd.h"
24 #include "smbd/globals.h"
25 #include "../libcli/smb/smb_common.h"
26 #include "../libcli/security/security.h"
27 #include "../lib/util/tevent_ntstatus.h"
28 #include "rpc_server/srv_pipe_hnd.h"
29 #include "include/ntioctl.h"
30 #include "../librpc/ndr/libndr.h"
31 #include "librpc/gen_ndr/ndr_ioctl.h"
32 #include "smb2_ioctl_private.h"
33 #include "lib/util/sys_rw.h"
36 #define DBGC_CLASS DBGC_SMB2
39 * XXX this may reduce dup_extents->byte_count so that it's less than the
42 static NTSTATUS
fsctl_dup_extents_check_lengths(struct files_struct
*src_fsp
,
43 struct files_struct
*dst_fsp
,
44 struct fsctl_dup_extents_to_file
*dup_extents
)
48 if ((dup_extents
->source_off
+ dup_extents
->byte_count
49 < dup_extents
->source_off
)
50 || (dup_extents
->target_off
+ dup_extents
->byte_count
51 < dup_extents
->target_off
)) {
52 return NT_STATUS_INVALID_PARAMETER
; /* wrap */
55 status
= vfs_stat_fsp(src_fsp
);
56 if (!NT_STATUS_IS_OK(status
)) {
61 * XXX vfs_btrfs and vfs_default have size checks in the copychunk
62 * handler, as this needs to be rechecked after the src has potentially
63 * been extended by a previous chunk in the compound copychunk req.
65 if (src_fsp
->fsp_name
->st
.st_ex_size
66 < dup_extents
->source_off
+ dup_extents
->byte_count
) {
67 DEBUG(2, ("dup_extents req exceeds src size\n"));
68 return NT_STATUS_NOT_SUPPORTED
;
71 status
= vfs_stat_fsp(dst_fsp
);
72 if (!NT_STATUS_IS_OK(status
)) {
76 if (dst_fsp
->fsp_name
->st
.st_ex_size
77 < dup_extents
->target_off
+ dup_extents
->byte_count
) {
79 if (dst_fsp
->fsp_name
->st
.st_ex_size
- dup_extents
->target_off
80 > dst_fsp
->fsp_name
->st
.st_ex_size
) {
81 return NT_STATUS_INVALID_PARAMETER
; /* wrap */
85 * this server behaviour is pretty hairy, but we need to match
88 DEBUG(2, ("dup_extents req exceeds target size, capping\n"));
89 dup_extents
->byte_count
= dst_fsp
->fsp_name
->st
.st_ex_size
90 - dup_extents
->target_off
;
96 static NTSTATUS
fsctl_dup_extents_check_overlap(struct files_struct
*src_fsp
,
97 struct files_struct
*dst_fsp
,
98 struct fsctl_dup_extents_to_file
*dup_extents
)
100 if (!file_id_equal(&src_fsp
->file_id
, &dst_fsp
->file_id
)) {
101 /* src and dest refer to different files */
105 if (sys_io_ranges_overlap(dup_extents
->byte_count
,
106 dup_extents
->source_off
,
107 dup_extents
->byte_count
,
108 dup_extents
->target_off
))
110 return NT_STATUS_NOT_SUPPORTED
;
116 static NTSTATUS
fsctl_dup_extents_check_sparse(struct files_struct
*src_fsp
,
117 struct files_struct
*dst_fsp
)
120 * 2.3.8 FSCTL_DUPLICATE_EXTENTS_TO_FILE Reply...
121 * STATUS_NOT_SUPPORTED: Target file is sparse, while source
122 * is a non-sparse file.
124 * WS2016 has the following behaviour (MS are in the process of fixing
126 * STATUS_NOT_SUPPORTED is returned if the source is sparse, while the
127 * target is non-sparse. However, if target is sparse while the source
128 * is non-sparse, then FSCTL_DUPLICATE_EXTENTS_TO_FILE completes
131 if (src_fsp
->fsp_flags
.is_sparse
&& !dst_fsp
->fsp_flags
.is_sparse
) {
132 return NT_STATUS_NOT_SUPPORTED
;
138 struct fsctl_dup_extents_state
{
139 struct tevent_context
*ev
;
140 struct connection_struct
*conn
;
141 struct files_struct
*dst_fsp
;
142 struct fsctl_dup_extents_to_file dup_extents
;
145 static void fsctl_dup_extents_offload_read_done(struct tevent_req
*subreq
);
146 static void fsctl_dup_extents_vfs_done(struct tevent_req
*subreq
);
148 static struct tevent_req
*fsctl_dup_extents_send(TALLOC_CTX
*mem_ctx
,
149 struct tevent_context
*ev
,
150 struct files_struct
*dst_fsp
,
152 struct smbd_smb2_request
*smb2req
)
154 struct tevent_req
*req
= NULL
;
155 struct tevent_req
*subreq
= NULL
;
156 struct fsctl_dup_extents_state
*state
= NULL
;
157 uint64_t src_fid_persistent
= 0;
158 uint64_t src_fid_volatile
= 0;
159 struct files_struct
*src_fsp
= NULL
;
163 req
= tevent_req_create(mem_ctx
, &state
,
164 struct fsctl_dup_extents_state
);
169 if (dst_fsp
== NULL
) {
170 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
171 return tevent_req_post(req
, ev
);
174 *state
= (struct fsctl_dup_extents_state
) {
175 .conn
= dst_fsp
->conn
,
180 if ((dst_fsp
->conn
->fs_capabilities
181 & FILE_SUPPORTS_BLOCK_REFCOUNTING
) == 0) {
182 DBG_INFO("FS does not advertise block refcounting support\n");
183 tevent_req_nterror(req
, NT_STATUS_INVALID_DEVICE_REQUEST
);
184 return tevent_req_post(req
, ev
);
187 ndr_ret
= ndr_pull_struct_blob(in_input
, state
, &state
->dup_extents
,
188 (ndr_pull_flags_fn_t
)ndr_pull_fsctl_dup_extents_to_file
);
189 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
190 DBG_ERR("failed to unmarshall dup extents to file req\n");
191 tevent_req_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
192 return tevent_req_post(req
, ev
);
195 src_fid_persistent
= BVAL(state
->dup_extents
.source_fid
, 0);
196 src_fid_volatile
= BVAL(state
->dup_extents
.source_fid
, 8);
197 src_fsp
= file_fsp_get(smb2req
, src_fid_persistent
, src_fid_volatile
);
198 if ((src_fsp
== NULL
)
199 || (src_fsp
->file_id
.devid
!= dst_fsp
->file_id
.devid
)) {
201 * [MS-FSCC] 2.3.8 FSCTL_DUPLICATE_EXTENTS_TO_FILE Reply
202 * STATUS_INVALID_PARAMETER:
203 * The FileHandle parameter is either invalid or does not
204 * represent a handle to an opened file on the same volume.
206 * Windows Server responds with NT_STATUS_INVALID_HANDLE instead
207 * of STATUS_INVALID_PARAMETER here, despite the above spec.
209 DBG_ERR("invalid src_fsp for dup_extents\n");
210 tevent_req_nterror(req
, NT_STATUS_INVALID_HANDLE
);
211 return tevent_req_post(req
, ev
);
214 status
= fsctl_dup_extents_check_lengths(src_fsp
, dst_fsp
,
215 &state
->dup_extents
);
216 if (tevent_req_nterror(req
, status
)) {
217 return tevent_req_post(req
, ev
);
220 if (state
->dup_extents
.byte_count
== 0) {
221 DBG_ERR("skipping zero length dup extents\n");
222 tevent_req_done(req
);
223 return tevent_req_post(req
, ev
);
226 status
= fsctl_dup_extents_check_overlap(src_fsp
, dst_fsp
,
227 &state
->dup_extents
);
228 if (tevent_req_nterror(req
, status
)) {
229 return tevent_req_post(req
, ev
);
232 status
= fsctl_dup_extents_check_sparse(src_fsp
, dst_fsp
);
233 if (tevent_req_nterror(req
, status
)) {
234 return tevent_req_post(req
, ev
);
237 subreq
= SMB_VFS_OFFLOAD_READ_SEND(state
, ev
, src_fsp
,
238 FSCTL_DUP_EXTENTS_TO_FILE
,
240 if (tevent_req_nomem(subreq
, req
)) {
241 return tevent_req_post(req
, ev
);
243 tevent_req_set_callback(subreq
, fsctl_dup_extents_offload_read_done
,
248 static void fsctl_dup_extents_offload_read_done(struct tevent_req
*subreq
)
250 struct tevent_req
*req
= tevent_req_callback_data(
251 subreq
, struct tevent_req
);
252 struct fsctl_dup_extents_state
*state
= tevent_req_data(
253 req
, struct fsctl_dup_extents_state
);
260 * Note that both flags and xferlen are not used with copy-chunk.
263 status
= SMB_VFS_OFFLOAD_READ_RECV(subreq
, state
->dst_fsp
->conn
,
264 state
, &flags
, &xferlen
, &token
);
265 if (tevent_req_nterror(req
, status
)) {
269 /* tell the VFS to ignore locks across the clone, matching ReFS */
270 subreq
= SMB_VFS_OFFLOAD_WRITE_SEND(state
->dst_fsp
->conn
,
273 FSCTL_DUP_EXTENTS_TO_FILE
,
275 state
->dup_extents
.source_off
,
277 state
->dup_extents
.target_off
,
278 state
->dup_extents
.byte_count
);
279 if (tevent_req_nomem(subreq
, req
)) {
282 tevent_req_set_callback(subreq
, fsctl_dup_extents_vfs_done
, req
);
286 static void fsctl_dup_extents_vfs_done(struct tevent_req
*subreq
)
288 struct tevent_req
*req
= tevent_req_callback_data(
289 subreq
, struct tevent_req
);
290 struct fsctl_dup_extents_state
*state
= tevent_req_data(
291 req
, struct fsctl_dup_extents_state
);
295 status
= SMB_VFS_OFFLOAD_WRITE_RECV(state
->conn
, subreq
, &nb_chunk
);
297 if (tevent_req_nterror(req
, status
)) {
301 if (nb_chunk
!= state
->dup_extents
.byte_count
) {
302 tevent_req_nterror(req
, NT_STATUS_IO_DEVICE_ERROR
);
306 tevent_req_done(req
);
309 static NTSTATUS
fsctl_dup_extents_recv(struct tevent_req
*req
)
311 return tevent_req_simple_recv_ntstatus(req
);
314 static NTSTATUS
fsctl_get_cmprn(TALLOC_CTX
*mem_ctx
,
315 struct tevent_context
*ev
,
316 struct files_struct
*fsp
,
317 size_t in_max_output
,
318 DATA_BLOB
*out_output
)
320 struct compression_state cmpr_state
;
321 enum ndr_err_code ndr_ret
;
326 return NT_STATUS_FILE_CLOSED
;
329 /* Windows doesn't check for SEC_FILE_READ_ATTRIBUTE permission here */
331 ZERO_STRUCT(cmpr_state
);
332 if (fsp
->conn
->fs_capabilities
& FILE_FILE_COMPRESSION
) {
333 status
= SMB_VFS_FGET_COMPRESSION(fsp
->conn
,
337 if (!NT_STATUS_IS_OK(status
)) {
342 * bso#12144: The underlying filesystem doesn't support
343 * compression, so we should respond with "not-compressed"
344 * (like WS2016 ReFS) instead of STATUS_NOT_SUPPORTED or
345 * NT_STATUS_INVALID_DEVICE_REQUEST.
347 cmpr_state
.format
= COMPRESSION_FORMAT_NONE
;
350 ndr_ret
= ndr_push_struct_blob(&output
, mem_ctx
,
352 (ndr_push_flags_fn_t
)ndr_push_compression_state
);
353 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
354 return NT_STATUS_INTERNAL_ERROR
;
357 if (in_max_output
< output
.length
) {
358 DEBUG(1, ("max output %u too small for compression state %ld\n",
359 (unsigned int)in_max_output
, (long int)output
.length
));
360 return NT_STATUS_INVALID_USER_BUFFER
;
362 *out_output
= output
;
367 static NTSTATUS
fsctl_set_cmprn(TALLOC_CTX
*mem_ctx
,
368 struct tevent_context
*ev
,
369 struct files_struct
*fsp
,
372 struct compression_state cmpr_state
;
373 enum ndr_err_code ndr_ret
;
377 return NT_STATUS_FILE_CLOSED
;
380 /* WRITE_DATA permission is required, WRITE_ATTRIBUTES is not */
381 status
= check_access_fsp(fsp
, FILE_WRITE_DATA
);
382 if (!NT_STATUS_IS_OK(status
)) {
386 ndr_ret
= ndr_pull_struct_blob(in_input
, mem_ctx
, &cmpr_state
,
387 (ndr_pull_flags_fn_t
)ndr_pull_compression_state
);
388 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
389 DEBUG(0, ("failed to unmarshall set compression req\n"));
390 return NT_STATUS_INVALID_PARAMETER
;
393 status
= NT_STATUS_NOT_SUPPORTED
;
394 if (fsp
->conn
->fs_capabilities
& FILE_FILE_COMPRESSION
) {
395 status
= SMB_VFS_SET_COMPRESSION(fsp
->conn
,
399 } else if (cmpr_state
.format
== COMPRESSION_FORMAT_NONE
) {
401 * bso#12144: The underlying filesystem doesn't support
402 * compression. We should still accept set(FORMAT_NONE) requests
403 * (like WS2016 ReFS).
405 status
= NT_STATUS_OK
;
411 static NTSTATUS
fsctl_zero_data(TALLOC_CTX
*mem_ctx
,
412 struct tevent_context
*ev
,
413 struct files_struct
*fsp
,
416 struct file_zero_data_info zdata_info
;
417 enum ndr_err_code ndr_ret
;
418 struct lock_struct lck
;
425 return NT_STATUS_FILE_CLOSED
;
428 /* WRITE_DATA permission is required */
429 status
= check_access_fsp(fsp
, FILE_WRITE_DATA
);
430 if (!NT_STATUS_IS_OK(status
)) {
434 /* allow regardless of whether FS supports sparse or not */
436 ndr_ret
= ndr_pull_struct_blob(in_input
, mem_ctx
, &zdata_info
,
437 (ndr_pull_flags_fn_t
)ndr_pull_file_zero_data_info
);
438 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
439 DEBUG(0, ("failed to unmarshall zero data request\n"));
440 return NT_STATUS_INVALID_PARAMETER
;
443 if (zdata_info
.beyond_final_zero
< zdata_info
.file_off
) {
444 DEBUG(0, ("invalid zero data params: off %lu, bfz, %lu\n",
445 (unsigned long)zdata_info
.file_off
,
446 (unsigned long)zdata_info
.beyond_final_zero
));
447 return NT_STATUS_INVALID_PARAMETER
;
450 /* convert strange "beyond final zero" param into length */
451 len
= zdata_info
.beyond_final_zero
- zdata_info
.file_off
;
454 DEBUG(2, ("zero data called with zero length range\n"));
458 init_strict_lock_struct(fsp
,
459 fsp
->op
->global
->open_persistent_id
,
463 lp_posix_cifsu_locktype(fsp
),
466 if (!SMB_VFS_STRICT_LOCK_CHECK(fsp
->conn
, fsp
, &lck
)) {
467 DEBUG(2, ("failed to lock range for zero-data\n"));
468 return NT_STATUS_FILE_LOCK_CONFLICT
;
472 * MS-FSCC <58> Section 2.3.67
473 * This FSCTL sets the range of bytes to zero (0) without extending the
476 * The VFS_FALLOCATE_FL_KEEP_SIZE flag is used to satisfy this
480 mode
= VFS_FALLOCATE_FL_PUNCH_HOLE
| VFS_FALLOCATE_FL_KEEP_SIZE
;
481 ret
= SMB_VFS_FALLOCATE(fsp
, mode
, zdata_info
.file_off
, len
);
483 status
= map_nt_error_from_unix_common(errno
);
484 DEBUG(2, ("zero-data fallocate(0x%x) failed: %s\n", mode
,
489 if (!fsp
->fsp_flags
.is_sparse
&& lp_strict_allocate(SNUM(fsp
->conn
))) {
491 * File marked non-sparse and "strict allocate" is enabled -
492 * allocate the range that we just punched out.
493 * In future FALLOC_FL_ZERO_RANGE could be used exclusively for
494 * this, but it's currently only supported on XFS and ext4.
496 * The newly allocated range still won't be found by SEEK_DATA
497 * for QAR, but stat.st_blocks will reflect it.
499 ret
= SMB_VFS_FALLOCATE(fsp
, VFS_FALLOCATE_FL_KEEP_SIZE
,
500 zdata_info
.file_off
, len
);
502 status
= map_nt_error_from_unix_common(errno
);
503 DEBUG(0, ("fallocate failed: %s\n", strerror(errno
)));
511 static NTSTATUS
fsctl_qar_buf_push(TALLOC_CTX
*mem_ctx
,
512 struct file_alloced_range_buf
*qar_buf
,
513 DATA_BLOB
*qar_array_blob
)
516 enum ndr_err_code ndr_ret
;
519 ndr_ret
= ndr_push_struct_blob(&new_slot
, mem_ctx
, qar_buf
,
520 (ndr_push_flags_fn_t
)ndr_push_file_alloced_range_buf
);
521 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
522 DEBUG(0, ("failed to marshall QAR buf\n"));
523 return NT_STATUS_INVALID_PARAMETER
;
526 /* TODO should be able to avoid copy by pushing into prealloced buf */
527 ok
= data_blob_append(mem_ctx
, qar_array_blob
, new_slot
.data
,
529 data_blob_free(&new_slot
);
531 return NT_STATUS_NO_MEMORY
;
537 static NTSTATUS
fsctl_qar_seek_fill(TALLOC_CTX
*mem_ctx
,
538 struct files_struct
*fsp
,
541 DATA_BLOB
*qar_array_blob
)
543 NTSTATUS status
= NT_STATUS_NOT_SUPPORTED
;
545 #ifdef HAVE_LSEEK_HOLE_DATA
546 while (curr_off
<= max_off
) {
549 struct file_alloced_range_buf qar_buf
;
552 data_off
= SMB_VFS_LSEEK(fsp
, curr_off
, SEEK_DATA
);
553 if ((data_off
== -1) && (errno
== ENXIO
)) {
554 /* no data from curr_off to EOF */
556 } else if (data_off
== -1) {
557 status
= map_nt_error_from_unix_common(errno
);
558 DEBUG(1, ("lseek data failed: %s\n", strerror(errno
)));
562 if (data_off
> max_off
) {
563 /* found something, but passed range of interest */
567 hole_off
= SMB_VFS_LSEEK(fsp
, data_off
, SEEK_HOLE
);
568 if (hole_off
== -1) {
569 status
= map_nt_error_from_unix_common(errno
);
570 DEBUG(1, ("lseek hole failed: %s\n", strerror(errno
)));
574 if (hole_off
<= data_off
) {
575 DEBUG(1, ("lseek inconsistent: hole %lu at or before "
576 "data %lu\n", (unsigned long)hole_off
,
577 (unsigned long)data_off
));
578 return NT_STATUS_INTERNAL_ERROR
;
581 qar_buf
.file_off
= data_off
;
582 /* + 1 to convert maximum offset to length */
583 qar_buf
.len
= MIN(hole_off
, max_off
+ 1) - data_off
;
585 status
= fsctl_qar_buf_push(mem_ctx
, &qar_buf
, qar_array_blob
);
586 if (!NT_STATUS_IS_OK(status
)) {
587 return NT_STATUS_NO_MEMORY
;
592 status
= NT_STATUS_OK
;
598 static NTSTATUS
fsctl_qar(TALLOC_CTX
*mem_ctx
,
599 struct tevent_context
*ev
,
600 struct files_struct
*fsp
,
602 size_t in_max_output
,
603 DATA_BLOB
*out_output
)
605 struct fsctl_query_alloced_ranges_req qar_req
;
606 struct fsctl_query_alloced_ranges_rsp qar_rsp
;
607 DATA_BLOB qar_array_blob
= data_blob_null
;
609 enum ndr_err_code ndr_ret
;
612 SMB_STRUCT_STAT sbuf
;
615 return NT_STATUS_FILE_CLOSED
;
618 /* READ_DATA permission is required */
619 status
= check_access_fsp(fsp
, FILE_READ_DATA
);
620 if (!NT_STATUS_IS_OK(status
)) {
624 ndr_ret
= ndr_pull_struct_blob(in_input
, mem_ctx
, &qar_req
,
625 (ndr_pull_flags_fn_t
)ndr_pull_fsctl_query_alloced_ranges_req
);
626 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
627 DEBUG(0, ("failed to unmarshall QAR req\n"));
628 return NT_STATUS_INVALID_PARAMETER
;
632 * XXX Windows Server 2008 & 2012 servers don't return lock-conflict
633 * for QAR requests over an exclusively locked range!
636 ret
= SMB_VFS_FSTAT(fsp
, &sbuf
);
638 status
= map_nt_error_from_unix_common(errno
);
639 DEBUG(2, ("fstat failed: %s\n", strerror(errno
)));
643 if ((qar_req
.buf
.len
== 0)
644 || (sbuf
.st_ex_size
== 0)
645 || (qar_req
.buf
.file_off
>= sbuf
.st_ex_size
)) {
646 /* zero length range or after EOF, no ranges to return */
650 /* check for integer overflow */
651 if (qar_req
.buf
.file_off
+ qar_req
.buf
.len
< qar_req
.buf
.file_off
) {
652 return NT_STATUS_INVALID_PARAMETER
;
656 * Maximum offset is either the last valid offset _before_ EOF, or the
657 * last byte offset within the requested range. -1 converts length to
658 * offset, which is easier to work with for SEEK_DATA/SEEK_HOLE, E.g.:
660 * /off=0 /off=512K /st_ex_size=1M
661 * |-------------------------------------|
663 * |-------------------------------------|
665 * |=====================================|
666 * | QAR off=512K, len=1M |
667 * |=================^===================|
670 * |==================|
671 * |QAR off=0 len=512K|
672 * |==================|
676 max_off
= MIN(sbuf
.st_ex_size
,
677 qar_req
.buf
.file_off
+ qar_req
.buf
.len
) - 1;
679 if (!fsp
->fsp_flags
.is_sparse
) {
680 struct file_alloced_range_buf qar_buf
;
682 /* file is non-sparse, claim file_off->max_off is allocated */
683 qar_buf
.file_off
= qar_req
.buf
.file_off
;
684 /* + 1 to convert maximum offset back to length */
685 qar_buf
.len
= max_off
- qar_req
.buf
.file_off
+ 1;
687 status
= fsctl_qar_buf_push(mem_ctx
, &qar_buf
, &qar_array_blob
);
689 status
= fsctl_qar_seek_fill(mem_ctx
, fsp
, qar_req
.buf
.file_off
,
690 max_off
, &qar_array_blob
);
692 if (!NT_STATUS_IS_OK(status
)) {
696 /* marshall response buffer. */
697 qar_rsp
.far_buf_array
= qar_array_blob
;
699 ndr_ret
= ndr_push_struct_blob(out_output
, mem_ctx
, &qar_rsp
,
700 (ndr_push_flags_fn_t
)ndr_push_fsctl_query_alloced_ranges_rsp
);
701 if (ndr_ret
!= NDR_ERR_SUCCESS
) {
702 DEBUG(0, ("failed to marshall QAR rsp\n"));
703 return NT_STATUS_INVALID_PARAMETER
;
706 if (out_output
->length
> in_max_output
) {
707 DEBUG(2, ("QAR output len %lu exceeds max %lu\n",
708 (unsigned long)out_output
->length
,
709 (unsigned long)in_max_output
));
710 data_blob_free(out_output
);
711 return NT_STATUS_BUFFER_TOO_SMALL
;
717 static void smb2_ioctl_filesys_dup_extents_done(struct tevent_req
*subreq
);
719 struct tevent_req
*smb2_ioctl_filesys(uint32_t ctl_code
,
720 struct tevent_context
*ev
,
721 struct tevent_req
*req
,
722 struct smbd_smb2_ioctl_state
*state
)
727 case FSCTL_GET_COMPRESSION
:
728 status
= fsctl_get_cmprn(state
, ev
, state
->fsp
,
729 state
->in_max_output
,
731 if (!tevent_req_nterror(req
, status
)) {
732 tevent_req_done(req
);
734 return tevent_req_post(req
, ev
);
736 case FSCTL_SET_COMPRESSION
:
737 status
= fsctl_set_cmprn(state
, ev
, state
->fsp
,
739 if (!tevent_req_nterror(req
, status
)) {
740 tevent_req_done(req
);
742 return tevent_req_post(req
, ev
);
744 case FSCTL_SET_ZERO_DATA
:
745 status
= fsctl_zero_data(state
, ev
, state
->fsp
,
747 if (!tevent_req_nterror(req
, status
)) {
748 tevent_req_done(req
);
750 return tevent_req_post(req
, ev
);
752 case FSCTL_QUERY_ALLOCATED_RANGES
:
753 status
= fsctl_qar(state
, ev
, state
->fsp
,
755 state
->in_max_output
,
757 if (!tevent_req_nterror(req
, status
)) {
758 tevent_req_done(req
);
760 return tevent_req_post(req
, ev
);
762 case FSCTL_DUP_EXTENTS_TO_FILE
: {
763 struct tevent_req
*subreq
= NULL
;
765 subreq
= fsctl_dup_extents_send(state
, ev
,
769 if (tevent_req_nomem(subreq
, req
)) {
770 return tevent_req_post(req
, ev
);
772 tevent_req_set_callback(subreq
,
773 smb2_ioctl_filesys_dup_extents_done
,
779 uint8_t *out_data
= NULL
;
780 uint32_t out_data_len
= 0;
782 if (state
->fsp
== NULL
) {
783 status
= NT_STATUS_NOT_SUPPORTED
;
785 status
= SMB_VFS_FSCTL(state
->fsp
,
788 state
->smbreq
->flags2
,
789 state
->in_input
.data
,
790 state
->in_input
.length
,
792 state
->in_max_output
,
794 state
->out_output
= data_blob_const(out_data
, out_data_len
);
795 if (NT_STATUS_IS_OK(status
)) {
796 tevent_req_done(req
);
797 return tevent_req_post(req
, ev
);
801 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_SUPPORTED
)) {
802 if (IS_IPC(state
->smbreq
->conn
)) {
803 status
= NT_STATUS_FS_DRIVER_REQUIRED
;
805 status
= NT_STATUS_INVALID_DEVICE_REQUEST
;
809 tevent_req_nterror(req
, status
);
810 return tevent_req_post(req
, ev
);
815 tevent_req_nterror(req
, NT_STATUS_INTERNAL_ERROR
);
816 return tevent_req_post(req
, ev
);
819 static void smb2_ioctl_filesys_dup_extents_done(struct tevent_req
*subreq
)
821 struct tevent_req
*req
= tevent_req_callback_data(subreq
,
825 status
= fsctl_dup_extents_recv(subreq
);
827 if (!tevent_req_nterror(req
, status
)) {
828 tevent_req_done(req
);