1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2018-2021 Tintri by DDN, Inc. All rights reserved.
* Copyright 2022 RackTop Systems, Inc.
*/
/*
* Support functions for smb2_ioctl/fsctl codes:
* FSCTL_OFFLOAD_READ
* FSCTL_OFFLOAD_WRITE
* (and related)
*/
#include <smbsrv/smb2_kproto.h>
#include <smbsrv/smb_fsops.h>
#include <smb/winioctl.h>
/*
* Summary of how offload data transfer works:
*
* The client drives a server-side copy. Outline:
* 1: open src_file
* 2: create dst_file and set its size
* 3: while src_file not all copied {
* offload_read(src_file, &token);
* while token not all copied {
* offload_write(dst_file, token);
* }
* }
*
* Each "offload read" request returns a "token" representing some
* portion of the source file. The server decides what kind of
* token to use, and how much of the source file it should cover.
* The length represented may be less then the client requested.
* No data are copied during offload_read (just meta-data).
*
* Each "offload write" request copies some portion of the data
* represented by the "token" into the output file. The amount
* of data copied may be less than the client requested, and the
* client keeps sending offload write requests until they have
* copied all the data represented by the current token.
*/
/* [MS-FSA] OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND_CURRENT_RANGE */
#define OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND 1
/*
* [MS-FSCC] 2.3.79 STORAGE_OFFLOAD_TOKEN
* Note reserved: 0xFFFF0002 – 0xFFFFFFFF
*
* ...TOKEN_TYPE_ZERO_DATA: A well-known Token that indicates ...
* (offload write should just zero to the destination)
* The payload (tok_other) is ignored with this type.
*/
#define STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA 0xFFFF0001
/* Our vendor-specific token type: struct tok_native1 */
#define STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1 0x10001
#define TOKEN_TOTAL_SIZE 512
#define TOKEN_MAX_PAYLOAD 504 /* 512 - 8 */
/* This mask is for sanity checking offsets etc. */
#define OFFMASK ((uint64_t)DEV_BSIZE-1)
typedef struct smb_odx_token {
uint32_t tok_type; /* big-endian on the wire */
uint16_t tok_reserved; /* zero */
uint16_t tok_len; /* big-endian on the wire */
union {
uint8_t u_tok_other[TOKEN_MAX_PAYLOAD];
struct tok_native1 {
smb2fid_t tn1_fid;
uint64_t tn1_off;
uint64_t tn1_eof;
uint32_t tn1_tid;
} u_tok_native1;
} tok_u;
} smb_odx_token_t;
typedef struct odx_write_args {
uint32_t in_struct_size;
uint32_t in_flags;
uint64_t in_dstoff;
uint64_t in_xlen;
uint64_t in_xoff;
uint32_t out_struct_size;
uint32_t out_flags;
uint64_t out_xlen;
uint64_t wa_eof;
} odx_write_args_t;
static int smb_odx_get_token(mbuf_chain_t *, smb_odx_token_t *);
static int smb_odx_get_token_native1(mbuf_chain_t *, struct tok_native1 *);
static int smb_odx_put_token(mbuf_chain_t *, smb_odx_token_t *);
static int smb_odx_put_token_native1(mbuf_chain_t *, struct tok_native1 *);
static uint32_t smb2_fsctl_odx_write_zeros(smb_request_t *, odx_write_args_t *);
static uint32_t smb2_fsctl_odx_write_native1(smb_request_t *,
odx_write_args_t *, smb_odx_token_t *);
/* We can disable this feature for testing etc. */
int smb2_odx_enable = 1;
/*
* These two variables determine the intervals of offload_read and
* offload_write calls (respectively) during an offload copy.
*
* For the offload read token we could offer a token representing
* the whole file, but we'll have the client come back for a new
* "token" after each 256M so we have a chance to look for "holes".
* This lets us use the special "zero" token while we're in any
* un-allocated parts of the file, so offload_write can use the
* (more efficient) smb_fsop_freesp instead of copying.
*
* We limit the size of offload_write to 16M per request so we
* don't end up taking so long with I/O that the client might
* time out the request. Keep: write_max <= read_max
*/
uint32_t smb2_odx_read_max = (1<<28); /* 256M */
uint32_t smb2_odx_write_max = (1<<24); /* 16M */
/*
* This buffer size determines the I/O size for the copy during
* offoad write, where it will read/write using this buffer.
* Note: We kmem_alloc this, so don't make it HUGE. It only
* needs to be large enough to allow the copy to proceed with
* reasonable efficiency. 1M is currently the largest possible
* block size with ZFS, so that's what we'll use here.
*
* Actually, limit this to kmem_max_cached, to avoid contention
* allocating from kmem_oversize_arena.
*/
uint32_t smb2_odx_buf_size = (1<<17); /* 128k */
/*
* FSCTL_OFFLOAD_READ
* [MS-FSCC] 2.3.77
*
* Similar (in concept) to FSCTL_SRV_REQUEST_RESUME_KEY
*
* The returned data is an (opaque to the client) 512-byte "token"
* that represents the specified range (offset, length) of the
* source file. The "token" we return here comes back to us in an
* FSCTL_OFFLOAD_READ. We must stash whatever we'll need then in
* the token we return here.
*
* We want server-side copy to be able to copy "holes" efficiently,
* but would rather avoid the complexity of encoding a list of all
* allocated ranges into our returned token, so this compromise:
*
* When the current range is entirely within a "hole", we'll return
* the special "zeros" token, and the offload write using that token
* will use the simple and very efficient smb_fsop_freesp. In this
* scenario, we'll have a copy stride of smb2_odx_read_max (256M).
*
* When there's any data in the range to copy, we'll return our
* "native" token, and the subsequent offload_write will walk the
* allocated ranges copying and/or zeroing as needed. In this
* scenario, we'll have a copy stride of smb2_odx_write_max (16M).
*
* One additional optimization allowed by the protocol is that when
* we discover that there's no more data after the current range,
* we can set the flag ..._ALL_ZERO_BEYOND which tells that client
* they can stop copying here if they like.
*/
uint32_t
smb2_fsctl_odx_read(smb_request_t *sr, smb_fsctl_t *fsctl)
{
smb_attr_t src_attr;
smb_odx_token_t *tok = NULL;
struct tok_native1 *tn1;
smb_ofile_t *ofile = sr->fid_ofile;
uint64_t src_size, src_rnd_size;
off64_t data, hole;
uint32_t in_struct_size;
uint32_t in_flags;
uint32_t in_ttl;
uint64_t in_file_off;
uint64_t in_copy_len;
uint64_t out_xlen;
uint32_t out_struct_size = TOKEN_TOTAL_SIZE + 16;
uint32_t out_flags = 0;
uint32_t status;
uint32_t tok_type;
int rc;
if (smb2_odx_enable == 0)
return (NT_STATUS_INVALID_DEVICE_REQUEST);
/*
* Make sure the (src) ofile granted access allows read.
* [MS-FSA] didn't mention this, so it's not clear where
* this should happen relative to other checks. Usually
* access checks happen early.
*/
status = smb_ofile_access(ofile, ofile->f_cr, FILE_READ_DATA);
if (status != NT_STATUS_SUCCESS)
return (status);
/*
* Decode FSCTL_OFFLOAD_READ_INPUT struct,
* and do in/out size checks.
*/
rc = smb_mbc_decodef(
fsctl->in_mbc, "lll4.qq",
&in_struct_size, /* l */
&in_flags, /* l */
&in_ttl, /* l */
/* reserved 4. */
&in_file_off, /* q */
&in_copy_len); /* q */
if (rc != 0)
return (NT_STATUS_BUFFER_TOO_SMALL);
if (fsctl->MaxOutputResp < out_struct_size)
return (NT_STATUS_BUFFER_TOO_SMALL);
/*
* More arg checking per MS-FSA
*/
if ((in_file_off & OFFMASK) != 0 ||
(in_copy_len & OFFMASK) != 0)
return (NT_STATUS_INVALID_PARAMETER);
if (in_struct_size != 32)
return (NT_STATUS_INVALID_PARAMETER);
if (in_file_off > INT64_MAX ||
(in_file_off + in_copy_len) < in_file_off)
return (NT_STATUS_INVALID_PARAMETER);
/*
* [MS-FSA] (summarizing)
* If not data stream, or if sparse, encrypted, compressed...
* return STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED.
*
* We'll ignore most of those except to require:
* Plain file, not a stream.
*/
if (!smb_node_is_file(ofile->f_node))
return (NT_STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED);
if (SMB_IS_STREAM(ofile->f_node))
return (NT_STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED);
/*
* [MS-FSA] If Open.Stream.IsDeleted ...
*/
if (ofile->f_node->flags & NODE_FLAGS_DELETE_COMMITTED)
return (NT_STATUS_FILE_DELETED);
/*
* If CopyLength == 0, "return immediately success".
*/
if (in_copy_len == 0) {
out_xlen = 0;
tok_type = STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA;
goto done;
}
/*
* Check for lock conflicting with the read.
*/
status = smb_lock_range_access(sr, ofile->f_node,
in_file_off, in_copy_len, B_FALSE);
if (status != 0)
return (status); /* == FILE_LOCK_CONFLICT */
/*
* Get the file size (rounded to a full block)
* and check the requested offset.
*/
bzero(&src_attr, sizeof (src_attr));
src_attr.sa_mask = SMB_AT_SIZE;
status = smb2_ofile_getattr(sr, ofile, &src_attr);
if (status != NT_STATUS_SUCCESS)
return (status);
src_size = src_attr.sa_vattr.va_size;
if (in_file_off >= src_size)
return (NT_STATUS_END_OF_FILE);
/*
* Limit the transfer length based on (rounded) EOF.
* Clients expect ranges of whole disk blocks.
* If we get a read in this rounded-up range,
* we'll supply zeros.
*/
src_rnd_size = (src_size + OFFMASK) & ~OFFMASK;
out_xlen = in_copy_len;
if ((in_file_off + out_xlen) > src_rnd_size)
out_xlen = src_rnd_size - in_file_off;
/*
* Also, have the client come back for a new token after every
* smb2_odx_read_max bytes, so we'll have opportunities to
* recognize "holes" in the source file.
*/
if (out_xlen > smb2_odx_read_max)
out_xlen = smb2_odx_read_max;
/*
* Ask the filesystem if there are any allocated regions in
* the requested range, and return either the "zeros" token
* or our "native" token as appropriate (details above).
*/
data = in_file_off;
tok_type = STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1;
rc = smb_fsop_next_alloc_range(ofile->f_cr, ofile->f_node,
&data, &hole);
switch (rc) {
case 0:
/* Found some data. Is it beyond this range? */
if (data >= (in_file_off + out_xlen))
tok_type = STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA;
break;
case ENXIO:
/*
* No data here to EOF. Use TOKEN_TYPE_ZERO_DATA,
* but only if we're not crossing src_size, because
* type zero cannot preserve unaligned src_size.
*/
if ((in_file_off + out_xlen) <= src_size)
tok_type = STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA;
out_flags |= OFFLOAD_READ_FLAG_ALL_ZERO_BEYOND;
break;
case ENOSYS: /* FS does not support VOP_IOCTL... */
case ENOTTY: /* ... or _FIO_SEEK_DATA, _HOLE */
break;
default:
cmn_err(CE_NOTE, "smb_fsop_next_alloc_range: rc=%d", rc);
break;
}
done:
/* Already checked MaxOutputResp */
(void) smb_mbc_encodef(
fsctl->out_mbc, "llq",
out_struct_size, /* l */
out_flags, /* l */
out_xlen); /* q */
/*
* Build the ODX token to return
*/
tok = smb_srm_zalloc(sr, sizeof (*tok));
tok->tok_type = tok_type;
tok->tok_reserved = 0;
if (tok_type == STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1) {
tok->tok_len = sizeof (*tn1);
tn1 = &tok->tok_u.u_tok_native1;
tn1->tn1_fid.persistent = ofile->f_persistid;
tn1->tn1_fid.temporal = ofile->f_fid;
tn1->tn1_off = in_file_off;
tn1->tn1_eof = src_size;
tn1->tn1_tid = sr->smb_tid;
}
rc = smb_odx_put_token(fsctl->out_mbc, tok);
if (rc != 0)
return (NT_STATUS_BUFFER_TOO_SMALL);
return (NT_STATUS_SUCCESS);
}
/*
* FSCTL_OFFLOAD_WRITE
* [MS-FSCC] 2.3.80
*
* Similar (in concept) to FSCTL_COPYCHUNK_WRITE
*
* Copies from a source file identified by a "token"
* (previously returned by FSCTL_OFFLOAD_READ)
* to the file on which the ioctl is issued.
*/
uint32_t
smb2_fsctl_odx_write(smb_request_t *sr, smb_fsctl_t *fsctl)
{
smb_attr_t dst_attr;
odx_write_args_t args;
smb_odx_token_t *tok = NULL;
smb_ofile_t *ofile = sr->fid_ofile;
uint32_t status = NT_STATUS_INVALID_PARAMETER;
int rc;
bzero(&args, sizeof (args));
args.out_struct_size = 16;
if (smb2_odx_enable == 0)
return (NT_STATUS_INVALID_DEVICE_REQUEST);
/*
* Make sure the (dst) ofile granted_access allows write.
* [MS-FSA] didn't mention this, so it's not clear where
* this should happen relative to other checks. Usually
* access checks happen early.
*/
status = smb_ofile_access(ofile, ofile->f_cr, FILE_WRITE_DATA);
if (status != NT_STATUS_SUCCESS)
return (status);
/*
* Decode FSCTL_OFFLOAD_WRITE_INPUT struct,
* and do in/out size checks.
*/
rc = smb_mbc_decodef(
fsctl->in_mbc, "llqqq",
&args.in_struct_size, /* l */
&args.in_flags, /* l */
&args.in_dstoff, /* q */
&args.in_xlen, /* q */
&args.in_xoff); /* q */
if (rc != 0)
return (NT_STATUS_BUFFER_TOO_SMALL);
tok = smb_srm_zalloc(sr, sizeof (*tok));
rc = smb_odx_get_token(fsctl->in_mbc, tok);
if (rc != 0)
return (NT_STATUS_BUFFER_TOO_SMALL);
if (fsctl->MaxOutputResp < args.out_struct_size)
return (NT_STATUS_BUFFER_TOO_SMALL);
/*
* More arg checking per MS-FSA
*/
if ((args.in_dstoff & OFFMASK) != 0 ||
(args.in_xoff & OFFMASK) != 0 ||
(args.in_xlen & OFFMASK) != 0)
return (NT_STATUS_INVALID_PARAMETER);
if (args.in_struct_size != (TOKEN_TOTAL_SIZE + 32))
return (NT_STATUS_INVALID_PARAMETER);
if (args.in_dstoff > INT64_MAX ||
(args.in_dstoff + args.in_xlen) < args.in_dstoff)
return (NT_STATUS_INVALID_PARAMETER);
/*
* If CopyLength == 0, "return immediately success".
*/
if (args.in_xlen == 0) {
status = 0;
goto done;
}
/*
* [MS-FSA] (summarizing)
* If not data stream, or if sparse, encrypted, compressed...
* return STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED.
*
* We'll ignore most of those except to require:
* Plain file, not a stream.
*/
if (!smb_node_is_file(ofile->f_node))
return (NT_STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED);
if (SMB_IS_STREAM(ofile->f_node))
return (NT_STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED);
/*
* [MS-FSA] If Open.Stream.IsDeleted ...
*/
if (ofile->f_node->flags & NODE_FLAGS_DELETE_COMMITTED)
return (NT_STATUS_FILE_DELETED);
/*
* Check for lock conflicting with the write.
*/
status = smb_lock_range_access(sr, ofile->f_node,
args.in_dstoff, args.in_xlen, B_TRUE);
if (status != 0)
return (status); /* == FILE_LOCK_CONFLICT */
/*
* Need the file size
*/
bzero(&dst_attr, sizeof (dst_attr));
dst_attr.sa_mask = SMB_AT_SIZE;
status = smb2_ofile_getattr(sr, ofile, &dst_attr);
if (status != NT_STATUS_SUCCESS)
return (status);
args.wa_eof = dst_attr.sa_vattr.va_size;
/*
* Destination offset vs. EOF
*/
if (args.in_dstoff > args.wa_eof)
return (NT_STATUS_END_OF_FILE);
/*
* Finally, run the I/O
*/
switch (tok->tok_type) {
case STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA:
status = smb2_fsctl_odx_write_zeros(sr, &args);
break;
case STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1:
status = smb2_fsctl_odx_write_native1(sr, &args, tok);
break;
default:
status = NT_STATUS_INVALID_TOKEN;
break;
}
done:
/*
* Checked MaxOutputResp above, so we can ignore errors
* from mbc_encodef here.
*/
if (status == NT_STATUS_SUCCESS) {
(void) smb_mbc_encodef(
fsctl->out_mbc, "llq",
args.out_struct_size,
args.out_flags,
args.out_xlen);
}
return (status);
}
/*
* Handle FSCTL_OFFLOAD_WRITE with token type
* STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA
*
* In this handler, the "token" represents a source of zeros,
* limited to the range: in_dstoff to (in_dstoff + in_xlen)
*
* ODX write handlers are allowed to return any transfer amount
* less than or equal to the requested size. We want to limit
* the amount of I/O "work" we do per ODX write call. Here,
* we're only doing meta-data operations, so we'll allow up to
* up to smb2_odx_read_max (256M) per call.
*
* The I/O "work" done by this function is to make zeros appear
* in the file in the range: in_dstoff, (in_dstoff + in_xlen).
* Rather than actually write zeros, we'll use VOP_SPACE to
* make "holes" in the file. If any of the range we're asked
* to zero out is beyond the destination EOF, we can simply
* extend the file length (zeros will appear).
*
* The caller has verified block alignement of:
* args->in_dstoff, args->in_xoff, args->in_xlen
*/
static uint32_t
smb2_fsctl_odx_write_zeros(smb_request_t *sr, odx_write_args_t *args)
{
smb_ofile_t *dst_ofile = sr->fid_ofile;
uint64_t xlen;
int rc;
ASSERT(args->in_xlen > 0);
args->out_xlen = 0;
/*
* Limit the I/O size. (per above)
*/
if (args->in_xlen > smb2_odx_read_max)
args->in_xlen = smb2_odx_read_max;
/*
* Handle the part below destination EOF.
* (in_dstoff to wa_eof).
*/
if (args->in_dstoff < args->wa_eof) {
xlen = args->in_xlen;
if ((args->in_dstoff + xlen) > args->wa_eof) {
xlen = args->wa_eof - args->in_dstoff;
ASSERT(xlen < args->in_xlen);
}
rc = smb_fsop_freesp(sr, dst_ofile->f_cr, dst_ofile,
args->in_dstoff, xlen);
if (rc != 0) {
/* Let client fall-back to normal copy. */
return (NT_STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED);
}
}
/*
* Now the part after destination EOF, if any.
* Just set the file size.
*/
if ((args->in_dstoff + args->in_xlen) > args->wa_eof) {
smb_attr_t attr;
bzero(&attr, sizeof (smb_attr_t));
attr.sa_mask = SMB_AT_SIZE;
attr.sa_vattr.va_size = args->in_dstoff + args->in_xlen;
rc = smb_node_setattr(sr, dst_ofile->f_node,
dst_ofile->f_cr, dst_ofile, &attr);
if (rc != 0) {
return (smb_errno2status(rc));
}
}
args->out_xlen = args->in_xlen;
return (0);
}
/*
* Handle FSCTL_OFFLOAD_WRITE with token type
* STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1
*
* For this handler, the token represents a valid range in the
* source file (tn1_off to tn1_eof). The token contains enough
* information for us to find the tree and file handle that the
* client has open on the source file for this copy.
*
* ODX write handlers are allowed to return any transfer amount
* less than or equal to the requested size. We want to limit
* the amount of I/O "work" we do per ODX write call. Here,
* we're actually copying from another file, so limit transfers
* to smb2_odx_write_max (16M) per call.
*
* Copying past un-aligned end of source file:
*
* The MS-FSA spec. is silent about copying when the file length is
* not block aligned. Clients normally request copying a range that's
* the file size rounded up to a block boundary, and expect that copy
* to extend the destination as long as the copy has not crossed the
* EOF in the source file. This means that the last block we copy
* will generally be a partial copy, where the first part comes from
* the source file, and the remainider is either zeros or truncated.
*
* Extending the destination file:
*
* With a whole file copy, we want the destination file length to
* match the source file length, even if it's not block aligned.
* We could just never extend the destination file, but there are
* WPTS tests that prove that ODX write IS supposed to extend the
* destination file when appropriate. This is solved by having
* this write handler extend the destination file as long as the
* copy has not yet crossed EOF in the source file. After we've
* past the source EOF with copying, we'll zero out the remainder
* of the block in which the copy stopped, stopping at either the
* end of the block or the end of the destination file, whichever
* comes first. This guarantees that a future read anywhere in
* that range will see either data from the source file or zeros.
*
* Note that no matter which way we stopped copying, we MUST
* return a block-aligned transfer size in our response.
* The caller has verified block alignement of:
* args->in_dstoff, args->in_xoff, args->in_xlen
*/
static uint32_t
smb2_fsctl_odx_write_native1(smb_request_t *sr,
odx_write_args_t *args, smb_odx_token_t *tok)
{
struct tok_native1 *tn1;
smb_ofile_t *dst_ofile = sr->fid_ofile;
smb_ofile_t *src_ofile = NULL;
void *buffer = NULL;
size_t bufsize = smb2_odx_buf_size;
uint64_t src_offset;
uint32_t resid;
uint32_t xlen;
uint32_t status;
ASSERT(args->in_xlen > 0);
args->out_xlen = 0;
/*
* Limit the I/O size. (per above)
*/
if (args->in_xlen > smb2_odx_write_max)
args->in_xlen = smb2_odx_write_max;
/*
* Lookup the source ofile using the "token".
*/
tn1 = &tok->tok_u.u_tok_native1;
/*
* If the source ofile came from another tree, we need to
* get the other tree and use it for the fid lookup.
* Do that by temporarily changing sr->tid_tree around
* the call to smb_ofile_lookup_by_fid().
*/
if (tn1->tn1_tid != sr->smb_tid) {
smb_tree_t *saved_tree;
smb_tree_t *src_tree;
src_tree = smb_session_lookup_tree(sr->session,
(uint16_t)tn1->tn1_tid);
if (src_tree == NULL) {
status = NT_STATUS_INVALID_TOKEN;
goto out;
}
saved_tree = sr->tid_tree;
sr->tid_tree = src_tree;
src_ofile = smb_ofile_lookup_by_fid(sr,
(uint16_t)tn1->tn1_fid.temporal);
sr->tid_tree = saved_tree;
smb_tree_release(src_tree);
} else {
src_ofile = smb_ofile_lookup_by_fid(sr,
(uint16_t)tn1->tn1_fid.temporal);
}
if (src_ofile == NULL ||
src_ofile->f_persistid != tn1->tn1_fid.persistent) {
status = NT_STATUS_INVALID_TOKEN;
goto out;
}
/*
* Make sure src_ofile is open on a regular file, and
* granted access includes READ_DATA. These were all
* validated in ODX READ, so if these checks fail it
* means somebody messed with the token or something.
*/
if (!smb_node_is_file(src_ofile->f_node)) {
status = NT_STATUS_ACCESS_DENIED;
goto out;
}
status = smb_ofile_access(src_ofile, src_ofile->f_cr, FILE_READ_DATA);
if (status != NT_STATUS_SUCCESS)
goto out;
/*
* Get a buffer used for copying, always smb2_odx_buf_size
*
* Rather than sleep for this relatively large allocation,
* allow the allocation to fail and return an error.
* The client should then fall back to normal copy.
*/
buffer = kmem_alloc(bufsize, KM_NOSLEEP_LAZY);
if (buffer == NULL) {
status = NT_STATUS_INSUFF_SERVER_RESOURCES;
goto out;
}
/*
* Note: in_xoff is relative to the beginning of the "token"
* (a range of the source file tn1_off, tn1_eof). Make sure
* in_xoff is within the range represented by this token.
*/
src_offset = tn1->tn1_off + args->in_xoff;
if (src_offset >= tn1->tn1_eof ||
src_offset < tn1->tn1_off) {
status = NT_STATUS_INVALID_PARAMETER;
goto out;
}
/*
* Source offset+len vs. source EOF (see top comment)
*/
xlen = (uint32_t)args->in_xlen;
if ((src_offset + xlen) > tn1->tn1_eof) {
/*
* Copying would pass tn1_eof. Reduce xlen.
*/
DTRACE_PROBE3(crossed__eof, smb_request_t *, sr,
odx_write_args_t *, args, smb_odx_token_t *, tok);
xlen = (uint32_t)(tn1->tn1_eof - src_offset);
}
/*
* Copy src to dst for xlen. This MAY extend the dest file.
* Note: xlen may be not block-aligned now. Handled below.
*/
resid = xlen;
status = smb2_sparse_copy(sr, src_ofile, dst_ofile,
src_offset, args->in_dstoff, &resid, buffer, bufsize);
/*
* If the result was a partial copy, round down the reported
* transfer size to a block boundary. If we moved any data,
* suppress errors on this call. If an error was suppressed,
* it will happen again and be returned on the next call.
*/
if (status != 0 || resid != 0) {
xlen -= resid;
xlen &= ~OFFMASK;
args->out_xlen = xlen;
/* If we moved any data, suppress errors. */
if (xlen > 0)
status = 0;
goto out;
}
/*
* If the copying covered the whole in_xlen, we're done.
* The test is >= here just so we can guarantee < below.
*/
if (xlen >= args->in_xlen) {
args->out_xlen = args->in_xlen;
goto out;
}
/*
* Have: xlen < args->in_xlen
*
* Here we know xlen was reduced because the copy
* crossed the source EOF. See top comment.
* Set the rounded-up transfer size now, and
* deal with the remainder of the last block.
*/
args->out_xlen = (xlen + OFFMASK) & ~OFFMASK;
/*
* If smb2_sparse_copy passed wa_eof, that means we've
* extended the file, so the remainder of the last block
* written is beyond the destination EOF was, so there's
* no need to zero out the remainder. "We're done".
*/
args->in_dstoff += xlen;
if (args->in_dstoff >= args->wa_eof)
goto out;
/*
* Have: in_dstoff < wa_eof
*
* Zero out the unwritten part of the last block that
* falls before the destination EOF. (Not extending.)
* Here, resid is the length of the part we'll zero.
*/
resid = args->out_xlen - xlen;
if ((args->in_dstoff + resid) > args->wa_eof)
resid = args->wa_eof - args->in_dstoff;
if (resid > 0) {
int rc;
/*
* Zero out in_dstoff to wa_eof.
*/
rc = smb_fsop_freesp(sr, dst_ofile->f_cr, dst_ofile,
args->in_dstoff, resid);
if (rc != 0) {
status = smb_errno2status(rc);
}
}
out:
if (src_ofile != NULL)
smb_ofile_release(src_ofile);
if (buffer != NULL)
kmem_free(buffer, bufsize);
return (status);
}
/*
* Get an smb_odx_token_t from the (input) mbuf chain.
* Consumes exactly TOKEN_TOTAL_SIZE bytes.
*/
static int
smb_odx_get_token(mbuf_chain_t *mbc, smb_odx_token_t *tok)
{
mbuf_chain_t tok_mbc;
int start_pos = mbc->chain_offset;
int rc;
if (MBC_ROOM_FOR(mbc, TOKEN_TOTAL_SIZE) == 0)
return (-1);
/*
* No big-endian support in smb_mbc_encodef, so swap
* the big-endian fields: tok_type (32-bits),
* (reserved is 16-bit zero, so no swap),
* and tok_len (16-bits)
*/
rc = smb_mbc_decodef(
mbc, "l..w",
&tok->tok_type,
/* tok_reserved */
&tok->tok_len);
if (rc != 0)
return (rc);
tok->tok_type = BSWAP_32(tok->tok_type);
tok->tok_len = BSWAP_16(tok->tok_len);
if (tok->tok_len > TOKEN_MAX_PAYLOAD)
return (-1);
rc = MBC_SHADOW_CHAIN(&tok_mbc, mbc,
mbc->chain_offset, tok->tok_len);
if (rc != 0)
return (rc);
switch (tok->tok_type) {
case STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA:
/* no payload */
break;
case STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1:
rc = smb_odx_get_token_native1(&tok_mbc,
&tok->tok_u.u_tok_native1);
break;
default:
/* caller will error out */
break;
}
if (rc == 0) {
/* Advance past what we shadowed. */
mbc->chain_offset = start_pos + TOKEN_TOTAL_SIZE;
}
return (rc);
}
static int
smb_odx_get_token_native1(mbuf_chain_t *mbc, struct tok_native1 *tn1)
{
int rc;
rc = smb_mbc_decodef(
mbc, "qqqql",
&tn1->tn1_fid.persistent,
&tn1->tn1_fid.temporal,
&tn1->tn1_off,
&tn1->tn1_eof,
&tn1->tn1_tid);
return (rc);
}
/*
* Put an smb_odx_token_t into the (output) mbuf chain,
* padded to TOKEN_TOTAL_SIZE bytes.
*/
static int
smb_odx_put_token(mbuf_chain_t *mbc, smb_odx_token_t *tok)
{
int rc, padlen;
int start_pos = mbc->chain_offset;
int end_pos = start_pos + TOKEN_TOTAL_SIZE;
if (tok->tok_len > TOKEN_MAX_PAYLOAD)
return (-1);
/*
* No big-endian support in smb_mbc_encodef, so swap
* the big-endian fields: tok_type (32-bits),
* (reserved is 16-bit zero, so no swap),
* and tok_len (16-bits)
*/
rc = smb_mbc_encodef(
mbc, "lww",
BSWAP_32(tok->tok_type),
0, /* tok_reserved */
BSWAP_16(tok->tok_len));
if (rc != 0)
return (rc);
switch (tok->tok_type) {
case STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA:
/* no payload */
break;
case STORAGE_OFFLOAD_TOKEN_TYPE_NATIVE1:
rc = smb_odx_put_token_native1(mbc,
&tok->tok_u.u_tok_native1);
break;
default:
ASSERT(0);
return (-1);
}
/* Pad out to TOKEN_TOTAL_SIZE bytes. */
if (mbc->chain_offset < end_pos) {
padlen = end_pos - mbc->chain_offset;
(void) smb_mbc_encodef(mbc, "#.", padlen);
}
ASSERT(mbc->chain_offset == end_pos);
return (rc);
}
static int
smb_odx_put_token_native1(mbuf_chain_t *mbc, struct tok_native1 *tn1)
{
int rc;
rc = smb_mbc_encodef(
mbc, "qqqql",
tn1->tn1_fid.persistent,
tn1->tn1_fid.temporal,
tn1->tn1_off,
tn1->tn1_eof,
tn1->tn1_tid);
return (rc);
}
|