smb-msg 0.11.2

SMB Messages and structures for `smb-rs`
Documentation
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
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
//! Create & Close (files) requests and responses.

use std::fmt::{Debug, Display};
use std::io::Cursor;

#[cfg(feature = "client")]
use std::io::SeekFrom;

use super::header::Status;
use super::*;
use binrw::io::TakeSeekExt;
use binrw::prelude::*;
use modular_bitfield::prelude::*;
use smb_dtyp::SecurityDescriptor;
use smb_dtyp::{Guid, binrw_util::prelude::*};
use smb_fscc::*;
use smb_msg_derive::*;

/// 2.2.14.1: SMB2_FILEID
#[binrw::binrw]
#[derive(PartialEq, Eq, Clone, Copy, Default)]
pub struct FileId {
    pub persistent: u64,
    pub volatile: u64,
}

impl FileId {
    pub const EMPTY: FileId = FileId {
        persistent: 0,
        volatile: 0,
    };
    /// A file ID that is used to indicate that the file ID is not valid,
    /// with setting all bits to 1 - {0xFFFFFFFFFFFFFFFF, 0xFFFFFFFFFFFFFFFF}.
    pub const FULL: FileId = FileId {
        persistent: u64::MAX,
        volatile: u64::MAX,
    };
}

impl From<[u8; 16]> for FileId {
    fn from(data: [u8; 16]) -> Self {
        let mut cursor = Cursor::new(data);
        Self::read_le(&mut cursor).unwrap()
    }
}

impl From<Guid> for FileId {
    fn from(guid: Guid) -> Self {
        let mut cursor = Cursor::new(Vec::new());
        guid.write_le(&mut cursor).unwrap();
        <Self as From<[u8; 16]>>::from(cursor.into_inner().try_into().unwrap())
    }
}

impl Display for FileId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{{{:x}|{:x}}}", self.persistent, self.volatile)
    }
}

impl Debug for FileId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "FileId({})", self)
    }
}

/// The SMB2 CREATE Request packet is sent by a client to request either creation of
/// or access to a file. In case of a named pipe or printer, the server creates a new file.
///
/// Reference: MS-SMB2 2.2.13
#[smb_request(size = 57)]
pub struct CreateRequest {
    /// SecurityFlags
    reserved: u8,
    /// The requested oplock level for this file open
    pub requested_oplock_level: OplockLevel,
    /// The impersonation level requested by the application issuing the create request
    pub impersonation_level: ImpersonationLevel,
    /// SmbCreateFlags
    reserved: u64,
    reserved: u64,
    /// The level of access required for the file or pipe
    pub desired_access: FileAccessMask,
    /// File attributes to be applied when creating or opening the file
    pub file_attributes: FileAttributes,
    /// Specifies the sharing mode for the open
    pub share_access: ShareAccessFlags,
    /// Defines the action the server must take if the file already exists
    pub create_disposition: CreateDisposition,
    /// Options to be applied when creating or opening the file
    pub create_options: CreateOptions,
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _name_offset: PosMarker<u16>,
    #[bw(try_calc = name.size().try_into())]
    #[br(temp)]
    name_length: u16, // bytes
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _create_contexts_offset: PosMarker<u32>,
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _create_contexts_length: PosMarker<u32>,

    /// The Unicode file name to be created or opened
    #[brw(align_before = 8)]
    #[bw(write_with = PosMarker::write_aoff, args(&_name_offset))]
    #[br(args { size: SizedStringSize::bytes16(name_length) })]
    pub name: SizedWideString,

    /// The list of create contexts sent in this request.
    /// Use the [`CreateContextRequestData`]`::first_...` function family to get the first context of a specific type.
    #[brw(align_before = 8)]
    #[br(map_stream = |s| s.take_seek(_create_contexts_length.value.into()))]
    #[bw(write_with = PosMarker::write_roff_size, args(&_create_contexts_offset, &_create_contexts_length))]
    pub contexts: ChainedItemList<CreateContextRequest, 8>,
}

/// The impersonation level requested by the application issuing the create request.
///
/// Reference: MS-SMB2 2.2.13
#[smb_request_binrw]
#[derive(Copy, Clone)]
#[brw(repr(u32))]
pub enum ImpersonationLevel {
    /// The application-requested impersonation level is Anonymous
    Anonymous = 0x0,
    /// The application-requested impersonation level is Identification
    Identification = 0x1,
    /// The application-requested impersonation level is Impersonation
    Impersonation = 0x2,
    /// The application-requested impersonation level is Delegate
    Delegate = 0x3,
}

/// Defines the action the server must take if the file already exists.
/// For opening named pipes, this field can be set to any value and is ignored by the server.
///
/// Reference: MS-SMB2 2.2.13
#[smb_request_binrw]
#[derive(Copy, Clone, Default)]
#[brw(repr(u32))]
pub enum CreateDisposition {
    /// If the file already exists, supersede it. Otherwise, create the file
    Superseded = 0x0,
    /// If the file already exists, return success; otherwise, fail the operation
    #[default]
    Open = 0x1,
    /// If the file already exists, fail the operation; otherwise, create the file
    Create = 0x2,
    /// Open the file if it already exists; otherwise, create the file
    OpenIf = 0x3,
    /// Overwrite the file if it already exists; otherwise, fail the operation
    Overwrite = 0x4,
    /// Overwrite the file if it already exists; otherwise, create the file
    OverwriteIf = 0x5,
}

/// Options to be applied when creating or opening the file.
///
/// Reference: MS-SMB2 2.2.13
#[smb_dtyp::mbitfield]
pub struct CreateOptions {
    /// The file being created or opened is a directory file
    pub directory_file: bool,
    /// The server performs file write-through
    pub write_through: bool,
    /// Application intends to read or write at sequential offsets
    pub sequential_only: bool,
    /// File buffering is not performed on this open
    pub no_intermediate_buffering: bool,

    /// Should be set to 0 and is ignored by the server
    pub synchronous_io_alert: bool,
    /// Should be set to 0 and is ignored by the server
    pub synchronous_io_nonalert: bool,
    /// If the name matches an existing directory file, the server must fail the request
    pub non_directory_file: bool,
    #[skip]
    __: bool,

    /// Should be set to 0 and is ignored by the server
    pub complete_if_oplocked: bool,
    /// The caller does not understand how to handle extended attributes
    pub no_ea_knowledge: bool,
    /// Should be set to 0 and is ignored by the server
    pub open_remote_instance: bool,
    /// Application intends to read or write at random offsets
    pub random_access: bool,

    /// The file must be automatically deleted when the last open request is closed
    pub delete_on_close: bool,
    /// Should be set to 0 and the server must fail the request if set
    pub open_by_file_id: bool,
    /// The file is being opened for backup intent
    pub open_for_backup_intent: bool,
    /// The file cannot be compressed
    pub no_compression: bool,

    /// Should be set to 0 and is ignored by the server
    pub open_requiring_oplock: bool,
    /// Should be set to 0 and is ignored by the server
    pub disallow_exclusive: bool,
    #[skip]
    __: B2,

    /// Should be set to 0 and the server must fail the request if set
    pub reserve_opfilter: bool,
    /// If the file is a reparse point, open the reparse point itself
    pub open_reparse_point: bool,
    /// In HSM environment, the file should not be recalled from tertiary storage
    pub open_no_recall: bool,
    /// Open file to query for free space
    pub open_for_free_space_query: bool,

    #[skip]
    __: B8,
}

/// Specifies the sharing mode for the open.
///
/// Reference: MS-SMB2 2.2.13
#[smb_dtyp::mbitfield]
pub struct ShareAccessFlags {
    /// Other opens are allowed to read this file while this open is present
    pub read: bool,
    /// Other opens are allowed to write this file while this open is present
    pub write: bool,
    /// Other opens are allowed to delete or rename this file while this open is present
    pub delete: bool,
    #[skip]
    __: B29,
}

/// The SMB2 CREATE Response packet is sent by the server to notify the client of
/// the status of its SMB2 CREATE Request.
///
/// Reference: MS-SMB2 2.2.14
#[smb_response(size = 89)]
pub struct CreateResponse {
    /// The oplock level that is granted to the client for this open
    pub oplock_level: OplockLevel,
    /// Response flags indicating properties of the opened file
    pub flags: CreateResponseFlags,
    /// The action taken in establishing the open
    pub create_action: CreateAction,
    /// The time when the file was created
    pub creation_time: FileTime,
    /// The time the file was last accessed
    pub last_access_time: FileTime,
    /// The time when data was last written to the file
    pub last_write_time: FileTime,
    /// The time when the file was last modified
    pub change_time: FileTime,
    /// The size, in bytes, of the data that is allocated to the file
    pub allocation_size: u64,
    /// The size, in bytes, of the file
    pub endof_file: u64,
    /// The attributes of the file
    pub file_attributes: FileAttributes,
    reserved: u32,
    /// The identifier of the open to a file or pipe that was established
    pub file_id: FileId,
    // assert it's 8-aligned
    #[br(assert(create_contexts_offset.value & 0x7 == 0))]
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    create_contexts_offset: PosMarker<u32>, // from smb header start
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    create_contexts_length: PosMarker<u32>, // bytes

    /// The list of create contexts returned in this response.
    /// Use the [`CreateContextResponseData`]`::first_...` function family to get the first context of a specific type.
    #[br(seek_before = SeekFrom::Start(create_contexts_offset.value as u64))]
    #[br(map_stream = |s| s.take_seek(create_contexts_length.value.into()))]
    #[bw(write_with = PosMarker::write_roff_size, args(&create_contexts_offset, &create_contexts_length))]
    pub create_contexts: ChainedItemList<CreateContextResponse, 8>,
}

/// Response flags indicating properties of the opened file.
/// Only valid for SMB 3.x dialect family.
///
/// Reference: MS-SMB2 2.2.14
#[smb_dtyp::mbitfield]
pub struct CreateResponseFlags {
    /// When set, indicates the last portion of the file path is a reparse point
    pub reparsepoint: bool,
    #[skip]
    __: B7,
}

/// The action taken in establishing the open.
///
/// Reference: MS-SMB2 2.2.14
#[smb_response_binrw]
#[brw(repr(u32))]
pub enum CreateAction {
    /// An existing file was deleted and a new file was created in its place
    Superseded = 0x0,
    /// An existing file was opened
    Opened = 0x1,
    /// A new file was created
    Created = 0x2,
    /// An existing file was overwritten
    Overwritten = 0x3,
}

macro_rules! create_context_half {
    (
        $struct_name:ident {
            $(
                $context_type:ident : $req_type:ty,
            )+
        }
    ) => {
    pastey::paste! {


/// The common definition that wrap around all create contexts, for both request and response.
/// Create contexts are used to pass additional information to the server or receive additional
/// information from the server in the CREATE request and response.
///
/// This is meant to be used within a [`ChainedItemList<T>`][smb_fscc::ChainedItemList<T>]!
///
/// Reference: MS-SMB2 2.2.13, 2.2.14
#[[<smb_ $struct_name:lower _binrw>]]
#[bw(import(is_last: bool))]
#[allow(clippy::manual_non_exhaustive)]
pub struct [<CreateContext $struct_name:camel>]
{
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _name_offset: PosMarker<u16>, // relative to ChainedItem (any access must consider +CHAINED_ITEM_PREFIX_SIZE from start of item)
    #[bw(calc = u16::try_from(name.len()).unwrap())]
    #[br(temp)]
    name_length: u16,
    reserved: u16,
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _data_offset: PosMarker<u16>,
    #[bw(calc = PosMarker::default())]
    #[br(temp)]
    _data_length: PosMarker<u32>,

    /// The name of the create context
    #[brw(align_before = 8)]
    #[br(count = name_length)]
    #[br(seek_before = _name_offset.seek_from(_name_offset.value as u64 - CHAINED_ITEM_PREFIX_SIZE as u64))]
    #[bw(write_with = PosMarker::write_roff_plus, args(&_name_offset, CHAINED_ITEM_PREFIX_SIZE as u64))]
    pub name: Vec<u8>,

    /// The data payload of the create context
    #[bw(align_before = 8)]
    #[br(assert(_data_offset.value % 8 == 0))]
    #[bw(write_with = PosMarker::write_roff_size_b_plus, args(&_data_offset, &_data_length, &_name_offset, CHAINED_ITEM_PREFIX_SIZE as u64))]
    #[br(seek_before = _name_offset.seek_from_if(_data_offset.value as u64 - CHAINED_ITEM_PREFIX_SIZE as u64, _data_length.value > 0))]
    #[br(map_stream = |s| s.take_seek(_data_length.value.into()), args(&name))]
    pub data: [<CreateContext $struct_name Data>],
}

/// This trait is automatically implemented for all
#[doc = concat!("[`Create", stringify!($struct_name), "`]")]
/// create context values.
pub trait [<CreateContextData $struct_name Value>] : Into<[<CreateContext $struct_name:camel>]> {
    const CONTEXT_NAME: &'static [u8];
}

#[doc = concat!("The [`Create", stringify!($struct_name), "`] Context data enum. ")]
#[[<smb_ $struct_name:lower _binrw>]]
#[br(import(name: &Vec<u8>))]
pub enum [<CreateContext $struct_name Data>] {
    $(
        #[br(pre_assert(name.as_slice() == CreateContextType::[<$context_type:upper>].name()))]
        [<$context_type:camel $struct_name>]($req_type),
    )+
}

impl [<CreateContext $struct_name Data>] {
    pub fn name(&self) -> &'static [u8] {
        match self {
            $(
                Self::[<$context_type:camel $struct_name>](_) => CreateContextType::[<$context_type:upper _NAME>],
            )+
        }
    }

    $(
        pub fn [<as_ $context_type:snake>](&self) -> Option<&$req_type> {
            match self {
                Self::[<$context_type:camel $struct_name>](a) => Some(a),
                _ => None,
            }
        }

        #[doc = concat!("Get the first `", stringify!($context_type), "` create context from the list, if any.")]
        ///
        /// _Note: this function is auto-generated by the `make_create_context!` macro._
        pub fn [<first_ $context_type:snake>](val: &[[<CreateContext $struct_name:camel>]]) -> Option<&$req_type> {
            for ctx in val {
                if let Self::[<$context_type:camel $struct_name>](a) = &ctx.data {
                    return Some(a);
                }
            }
            None
        }
    )+
}

$(
    impl [<CreateContextData $struct_name Value>] for $req_type {
        const CONTEXT_NAME: &'static [u8] = CreateContextType::[<$context_type:upper _NAME>];
    }

    impl From<$req_type> for [<CreateContext $struct_name:camel>] {
        fn from(req: $req_type) -> Self {
            [<CreateContext $struct_name:camel>] {
                name: <$req_type as [<CreateContextData $struct_name Value>]>::CONTEXT_NAME.to_vec(),
                data: [<CreateContext $struct_name Data>]::[<$context_type:camel $struct_name>](req),
            }
        }
    }

    impl TryInto<$req_type> for [<CreateContext $struct_name:camel>] {
        type Error = crate::SmbMsgError;
        fn try_into(self) -> crate::Result<$req_type> {
            match self.data {
                [<CreateContext $struct_name Data>]::[<$context_type:camel $struct_name>](a) => Ok(a),
                _ => Err(crate::SmbMsgError::UnexpectedContent {
                    expected: stringify!($req_type),
                    actual: "", // self.data.name(), TODO: Fix this by making name() a string.
                }),
            }
        }
    }
)+
        }
    }
}

/// Internal macro to generate request/response context enums for create.
macro_rules! make_create_context {
    (
        $(
            $(#[doc = $docstring:literal])*
            $context_type:ident : $class_name:literal, $req_type:ty $(, $res_type:ty)?;
        )+
    ) => {
        pastey::paste!{

/// This enum contains all the types of create contexts.
pub enum CreateContextType {
    $(
        $(#[doc = $docstring])*
        [<$context_type:upper>],
    )+
}

impl CreateContextType {
    $(
        #[doc = concat!("The name for the `", stringify!($context_type), "` create context.")]
        pub const [<$context_type:upper _NAME>]: &[u8] = $class_name;
    )+

    pub fn from_name(name: &[u8]) -> Option<CreateContextType> {
        match name {
            $(
                Self::[<$context_type:upper _NAME>] => Some(Self::[<$context_type:upper>]),
            )+
            _ => None,
        }
    }

    pub fn name(&self) -> &[u8] {
        match self {
            $(
                Self::[<$context_type:upper>] => Self::[<$context_type:upper _NAME>],
            )+
        }
    }
}
        }

        create_context_half! {
            Request {
                $($context_type: $req_type,)+
            }
        }

        create_context_half! {
            Response {
                $($($context_type: $res_type,)?)+
            }
        }
    }
}

make_create_context!(
    /// The data contains the extended attributes that MUST be stored on the created file.
    exta: b"ExtA", ChainedItemList<FileFullEaInformation>;
    /// The data contains a security descriptor that MUST be stored on the created file.
    secd: b"SecD", SecurityDescriptor;
    /// The client is requesting the open to be durable
    dhnq: b"DHnQ", DurableHandleRequest, DurableHandleResponse;
    /// The client is requesting to reconnect to a durable open after being disconnected
    dhnc: b"DHNc", DurableHandleReconnect;
    /// The data contains the required allocation size of the newly created file.
    alsi: b"AlSi", AllocationSize;
    /// The client is requesting that the server return maximal access information.
    mxac: b"MxAc", QueryMaximalAccessRequest, QueryMaximalAccessResponse;
    /// The client is requesting that the server open an earlier version of the file identified by the provided time stamp.
    twrp: b"TWrp", TimewarpToken;
    /// The client is requesting that the server return a 32-byte opaque BLOB that uniquely identifies the file being opened on disk.
    qfid: b"QFid", QueryOnDiskIdReq, QueryOnDiskIdResp;
    /// The client is requesting that the server return a lease. This value is only supported for the SMB 2.1 and 3.x dialect family.
    rqls: b"RqLs", RequestLease, RequestLease; // v1+2, request & response are the same
    /// The client is requesting the open to be durable. This value is only supported for the SMB 3.x dialect family.
    dh2q: b"DH2Q", DurableHandleRequestV2, DH2QResp;
    /// The client is requesting to reconnect to a durable open after being disconnected. This value is only supported for the SMB 3.x dialect family.
    dh2c: b"DH2C", DurableHandleReconnectV2;
    /// The client is supplying an identifier provided by an application instance while opening a file. This value is only supported for the SMB 3.x dialect family.
    appinstid: b"\x45\xBC\xA6\x6A\xEF\xA7\xF7\x4A\x90\x08\xFA\x46\x2E\x14\x4D\x74", AppInstanceId, AppInstanceId;
    /// The client is supplying a version to correspond to the application instance identifier.  This value is only supported for SMB 3.1.1 dialect.
    appinstver: b"\xB9\x82\xD0\xB7\x3B\x56\x07\x4F\xA0\x7B\x52\x4A\x81\x16\xA0\x10", AppInstanceVersion, AppInstanceVersion;
    /// Provided by an application while opening a shared virtual disk file.
    /// This Create Context value is not valid for the SMB 2.002, SMB 2.1, and SMB 3.0 dialects
    svhdxopendev: b"\x9C\xCB\xCF\x9E\x04\xC1\xE6\x43\x98\x0E\x15\x8D\xA1\xF6\xEC\x83", SvhdxOpenDeviceContext, SvhdxOpenDeviceContext;
);

/// Request for a durable handle that can survive brief network disconnections.
///
/// Reference: MS-SMB2 2.2.13.2.3
#[smb_request_binrw]
pub struct DurableHandleRequest {
    reserved: u128,
}

/// Response indicating the server has marked the open as durable.
///
/// Reference: MS-SMB2 2.2.14.2.3
#[smb_response_binrw]
pub struct DurableHandleResponse {
    reserved: u64,
}

/// Request to reestablish a durable open after being disconnected.
///
/// Reference: MS-SMB2 2.2.13.2.4
#[smb_request_binrw]
pub struct DurableHandleReconnect {
    /// The file ID for the open that is being reestablished
    pub durable_request: FileId,
}
/// Request for the server to retrieve maximal access information.
///
/// Reference: MS-SMB2 2.2.13.2.5
#[smb_request_binrw]
#[derive(Default)]
pub struct QueryMaximalAccessRequest {
    /// Optional timestamp for the query
    #[br(parse_with = binread_if_has_data)]
    pub timestamp: Option<FileTime>,
}

/// Specifies the allocation size for a newly created or overwritten file.
///
/// Reference: MS-SMB2 2.2.13.2.6
#[smb_request_binrw]
pub struct AllocationSize {
    /// The size, in bytes, that the newly created file must have reserved on disk
    pub allocation_size: u64,
}

/// Request to open a version of the file at a previous point in time.
///
/// Reference: MS-SMB2 2.2.13.2.7
#[smb_request_binrw]
pub struct TimewarpToken {
    /// The timestamp of the version of the file to be opened
    pub timestamp: FileTime,
}

/// Request for the server to return a lease on a file or directory.
/// Also used by the server to respond with a granted lease.
///
/// Reference: MS-SMB2 2.2.13.2.8, 2.2.13.2.10, 2.2.14.2.10, 2.2.14.2.11
#[smb_message_binrw]
pub enum RequestLease {
    RqLsReqv1(RequestLeaseV1),
    RqLsReqv2(RequestLeaseV2),
}

/// Version 1 lease request and response (SMB 2.1 and 3.x dialect family).
/// Contains the lease key, state, flags, and duration.
///
/// Reference: MS-SMB2 2.2.13.2.8, 2.2.14.2.10
#[smb_message_binrw]
pub struct RequestLeaseV1 {
    /// Client-generated key that identifies the owner of the lease
    pub lease_key: u128,
    /// The requested lease state
    pub lease_state: LeaseState,
    #[bw(calc = 0)]
    #[br(assert(lease_flags == 0))]
    lease_flags: u32,
    #[bw(calc = 0)]
    #[br(assert(lease_duration == 0))]
    lease_duration: u64,
}

/// Version 2 lease request and response (SMB 3.x dialect family only).
/// Includes parent lease key and epoch tracking for lease state changes.
///
/// Reference: MS-SMB2 2.2.13.2.10, 2.2.14.2.11
#[smb_message_binrw]
pub struct RequestLeaseV2 {
    /// Client-generated key that identifies the owner of the lease
    pub lease_key: u128,
    /// The requested lease state
    pub lease_state: LeaseState,
    /// Lease flags
    pub lease_flags: LeaseFlags,
    #[bw(calc = 0)]
    #[br(assert(lease_duration == 0))]
    lease_duration: u64,
    /// Key that identifies the owner of the lease for the parent directory
    pub parent_lease_key: u128,
    /// Epoch value used to track lease state changes
    pub epoch: u16,
    reserved: u16,
}

/// Flags for lease requests and responses.
///
/// Reference: MS-SMB2 2.2.13.2.10, 2.2.14.2.10, 2.2.14.2.11
#[smb_dtyp::mbitfield]
pub struct LeaseFlags {
    #[skip]
    __: B2,
    /// When set, indicates that the ParentLeaseKey is set
    pub parent_lease_key_set: bool,
    #[skip]
    __: B29,
}

/// Request for the server to return an identifier for the open file.
///
/// Reference: MS-SMB2 2.2.13.2.9
#[smb_request_binrw]
pub struct QueryOnDiskIdReq;

/// Request for a durable or persistent handle (SMB 3.x dialect family only).
///
/// Reference: MS-SMB2 2.2.13.2.11
#[smb_request_binrw]
pub struct DurableHandleRequestV2 {
    /// Time in milliseconds for which the server reserves the handle after failover
    pub timeout: u32,
    /// Flags indicating whether a persistent handle is requested
    pub flags: DurableHandleV2Flags,
    reserved: u64,
    /// GUID that identifies the create request
    pub create_guid: Guid,
}

/// Flags for durable handle v2 requests.
///
/// Reference: MS-SMB2 2.2.13.2.11
#[smb_dtyp::mbitfield]
pub struct DurableHandleV2Flags {
    #[skip]
    __: bool,
    /// When set, a persistent handle is requested
    pub persistent: bool,
    #[skip]
    __: B30,
}

/// Request to reestablish a durable open (SMB 3.x dialect family only).
///
/// Reference: MS-SMB2 2.2.13.2.12
#[smb_request_binrw]
pub struct DurableHandleReconnectV2 {
    /// The file ID for the open that is being reestablished
    file_id: FileId,
    /// Unique ID that identifies the create request
    create_guid: Guid,
    /// Flags indicating whether a persistent handle is requested
    flags: DurableHandleV2Flags,
}

/// Application instance identifier (SMB 3.x dialect family only).
///
/// Reference: MS-SMB2 2.2.13.2.13
#[smb_request_response(size = 20)]
pub struct AppInstanceId {
    reserved: u16,
    /// Unique ID that identifies an application instance
    pub app_instance_id: Guid,
}

/// Application instance version (SMB 3.1.1 dialect only).
///
/// Reference: MS-SMB2 2.2.13.2.15
#[smb_request_response(size = 24)]
pub struct AppInstanceVersion {
    reserved: u16,
    reserved: u16,
    reserved: u32,
    /// Most significant value of the version
    pub app_instance_version_high: u64,
    /// Least significant value of the version
    pub app_instance_version_low: u64,
}

/// Context for opening a shared virtual disk file.
///
/// Reference: MS-SMB2 2.2.13.2.14, MS-RSVD 2.2.4.12, 2.2.4.32
#[smb_message_binrw]
pub enum SvhdxOpenDeviceContext {
    V1(SvhdxOpenDeviceContextV1),
    V2(SvhdxOpenDeviceContextV2),
}

/// Version 1 context for opening a shared virtual disk file.
///
/// Reference: MS-RSVD 2.2.4.12
#[smb_message_binrw]
pub struct SvhdxOpenDeviceContextV1 {
    pub version: u32,
    pub has_initiator_id: Boolean,
    reserved: u8,
    reserved: u16,
    pub initiator_id: Guid,
    pub flags: u32,
    pub originator_flags: u32,
    pub open_request_id: u64,
    pub initiator_host_name_length: u16,
    pub initiator_host_name: [u16; 126 / 2],
}

/// Version 2 context for opening a shared virtual disk file.
///
/// Reference: MS-RSVD 2.2.4.32
#[smb_message_binrw]
pub struct SvhdxOpenDeviceContextV2 {
    pub version: u32,
    pub has_initiator_id: Boolean,
    reserved: u8,
    reserved: u16,
    pub initiator_id: Guid,
    pub flags: u32,
    pub originator_flags: u32,
    pub open_request_id: u64,
    pub initiator_host_name_length: u16,
    pub initiator_host_name: [u16; 126 / 2],
    pub virtual_disk_properties_initialized: u32,
    pub server_service_version: u32,
    pub virtual_sector_size: u32,
    pub physical_sector_size: u32,
    pub virtual_size: u64,
}

#[smb_response_binrw]
pub struct QueryMaximalAccessResponse {
    // MS-SMB2, 2.2.14.2.5: "MaximalAccess field is valid only if QueryStatus is STATUS_SUCCESS.
    // he status code MUST be one of those defined in [MS-ERREF] section 2.3"
    /// Use [`is_success()`][Self::is_success] to check if the query was successful.
    pub query_status: Status,

    /// The maximal access mask for the opened file.
    ///
    /// Use [`maximal_access()`][Self::maximal_access] to get the access mask if the query was successful.
    pub maximal_access: FileAccessMask,
}

impl QueryMaximalAccessResponse {
    /// Returns true if the query was successful.
    pub fn is_success(&self) -> bool {
        self.query_status == Status::Success
    }

    /// Returns the maximal access mask if the query was successful.
    pub fn maximal_access(&self) -> Option<FileAccessMask> {
        if self.is_success() {
            Some(self.maximal_access)
        } else {
            None
        }
    }
}

/// Response containing disk file and volume identifiers for the opened file.
///
/// Reference: MS-SMB2 2.2.14.2.9
#[smb_response_binrw]
pub struct QueryOnDiskIdResp {
    /// 64-bit file identifier for the open on disk
    pub file_id: u64,
    /// 64-bit volume identifier
    pub volume_id: u64,
    reserved: u128,
}

/// Response for SMB 3.x durable or persistent handle request.
/// Indicates successful creation of a durable/persistent handle.
///
/// Reference: MS-SMB2 2.2.14.2.12
#[smb_response_binrw]
pub struct DH2QResp {
    /// Time in milliseconds the server waits for client reconnect after failover
    pub timeout: u32,
    /// Flags indicating whether a persistent handle was granted
    pub flags: DurableHandleV2Flags,
}

/// The SMB2 CLOSE Request packet is used by the client to close an instance of a file
/// that was opened previously with a successful SMB2 CREATE Request.
///
/// Reference: MS-SMB2 2.2.15
#[smb_request(size = 24)]
pub struct CloseRequest {
    #[bw(calc = CloseFlags::new().with_postquery_attrib(true))]
    #[br(assert(_flags == CloseFlags::new().with_postquery_attrib(true)))]
    _flags: CloseFlags,
    reserved: u32,
    /// The identifier of the open to a file or named pipe that is being closed
    pub file_id: FileId,
}

/// The SMB2 CLOSE Response packet is sent by the server to indicate that an SMB2 CLOSE Request
/// was processed successfully.
///
/// Reference: MS-SMB2 2.2.16
#[smb_response(size = 60)]
pub struct CloseResponse {
    pub flags: CloseFlags,
    reserved: u32,
    /// The time when the file was created
    pub creation_time: FileTime,
    /// The time when the file was last accessed
    pub last_access_time: FileTime,
    /// The time when data was last written to the file
    pub last_write_time: FileTime,
    /// The time when the file was last modified
    pub change_time: FileTime,
    /// The size, in bytes, of the data that is allocated to the file
    pub allocation_size: u64,
    /// The size, in bytes, of the file
    pub endof_file: u64,
    /// The attributes of the file
    pub file_attributes: FileAttributes,
}

/// Flags indicating how to process the CLOSE operation.
///
/// Reference: MS-SMB2 2.2.15, 2.2.16
#[smb_dtyp::mbitfield]
pub struct CloseFlags {
    /// If set in request, the server MUST set the attribute fields in the response to valid values.
    /// If set in response, the client MUST use the attribute fields that are returned.
    pub postquery_attrib: bool,
    #[skip]
    __: B15,
}

#[cfg(test)]
mod tests {
    use crate::*;

    use super::*;

    test_request! {
        Create {
            requested_oplock_level: OplockLevel::None,
            impersonation_level: ImpersonationLevel::Impersonation,
            desired_access: FileAccessMask::from_bytes(0x00100081u32.to_le_bytes()),
            file_attributes: FileAttributes::new(),
            share_access: ShareAccessFlags::new()
                .with_read(true)
                .with_write(true)
                .with_delete(true),
            create_disposition: CreateDisposition::Open,
            create_options: CreateOptions::new()
                .with_synchronous_io_nonalert(true)
                .with_disallow_exclusive(true),
            name: "hello".into(),
            contexts: vec![
                DurableHandleRequestV2 {
                    timeout: 0,
                    flags: DurableHandleV2Flags::new(),
                    create_guid: 0x821680290c007b8b11efc0a0c679a320u128.to_le_bytes().into(),
                }
                .into(),
                QueryMaximalAccessRequest::default().into(),
                QueryOnDiskIdReq.into(),
            ]
            .into(),
        } => "390000000200000000000000000000000000000000000000810010000000000007000000010000002000020078000a008800000068
        000000680065006c006c006f0000000000000038000000100004000000180020000000444832510000000000000000000000000000000000
        00000020a379c6a0c0ef118b7b000c29801682180000001000040000001800000000004d7841630000000000000000100004000000180000
        0000005146696400000000"
    }

    test_response! {
        Create {
                oplock_level: OplockLevel::None,
                flags: CreateResponseFlags::new(),
                create_action: CreateAction::Opened,
                creation_time: 133783827154208828.into(),
                last_access_time: 133797832406291912.into(),
                last_write_time: 133783939554544738.into(),
                change_time: 133783939554544738.into(),
                allocation_size: 0,
                endof_file: 0,
                file_attributes: FileAttributes::new().with_directory(true),
                file_id: 950737950337192747837452976457u128.to_le_bytes().into(),
                create_contexts: vec![
                    QueryMaximalAccessResponse {
                        query_status: Status::Success,
                        maximal_access: FileAccessMask::from_bytes(0x001f01ffu32.to_le_bytes()),
                    }
                    .into(),
                    QueryOnDiskIdResp {
                        file_id: 0x400000001e72a,
                        volume_id: 0xb017cfd9,
                    }
                    .into(),
                ]
                .into()
            } => "59000000010000003c083896ae4bdb01c8554b706b58db01620ccdc1c84bdb01620ccdc1c84bdb0100000000000000000000
            0000000000001000000000000000490100000c000000090000000c0000009800000058000000200000001000040000001800080000
            004d7841630000000000000000ff011f000000000010000400000018002000000051466964000000002ae7010000000400d9cf17b0
            0000000000000000000000000000000000000000"
    }

    #[cfg(feature = "client")]
    use smb_dtyp::make_guid;

    test_response_read! {
        server2016: Create {
            oplock_level: OplockLevel::None,
            flags: CreateResponseFlags::new(),
            create_action: CreateAction::Opened,
            creation_time: FileTime::ZERO,
            last_access_time: FileTime::ZERO,
            last_write_time: FileTime::ZERO,
            change_time: FileTime::ZERO,
            allocation_size: 4096,
            endof_file: 0,
            file_attributes: FileAttributes::new().with_normal(true),
            file_id: make_guid!("00000001-0001-0000-0100-000001000000").into(),
            create_contexts: vec![
                QueryMaximalAccessResponse {
                    query_status: Status::NotMapped, // Server 2016 IPC$ bug
                    maximal_access: FileAccessMask::default(),
                }
                .into(),
                QueryOnDiskIdResp {
                    file_id: 0xffff870415d75290,
                    volume_id: 0xffffe682cb589c90,
                }
                .into(),
            ].into(),
        } => "59000000010000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000
        000000008000000076007300010000000100000001000000010000009800000058000000200000001000040000001800080000004d7841
        6300000000730000c0000000000000000010000400000018002000000051466964000000009052d7150487ffff909c58cb82e6ffff0000
        0000000000000000000000000000"
    }

    /*
    Tests to add for contexts:
    dhnc: b"DHNc", DurableHandleReconnect, DurableHandleReconnect,
    dh2c: b"DH2C", DurableHandleReconnectV2, DurableHandleReconnectV2,
    appinstid: b"\x45\xBC\xA6\x6A\xEF\xA7\xF7\x4A\x90\x08\xFA\x46\x2E\x14\x4D\x74", AppInstanceId, AppInstanceId,
    appinstver: b"\xB9\x82\xD0\xB7\x3B\x56\x07\x4F\xA0\x7B\x52\x4A\x81\x16\xA0\x10", AppInstanceVersion, AppInstanceVersion,
    svhdxopendev: b"\x9C\xCB\xCF\x9E\x04\xC1\xE6\x43\x98\x0E\x15\x8D\xA1\xF6\xEC\x83", SvhdxOpenDeviceContext, SvhdxOpenDeviceContext,
     */

    use smb_dtyp::guid;
    use time::macros::datetime;

    // Tests for the following contexts are not implemented here:
    // - ExtA - already tested in smb-fscc & query info/ea tests
    // - SecD - already tested in smb-dtyp tests

    test_binrw_request! {
        struct DurableHandleRequest {} => "00000000000000000000000000000000"
    }

    test_binrw_response! {
        struct DurableHandleResponse {} => "0000000000000000"
    }

    test_binrw_request! {
        struct QueryMaximalAccessRequest {
            timestamp: None,
        } => ""
    }

    test_binrw_response! {
        struct QueryMaximalAccessResponse {
            query_status: Status::Success,
            maximal_access: FileAccessMask::from_bytes(0x001f01ffu32.to_le_bytes()),
        } => "00000000ff011f00"
    }

    test_binrw_request! {
        struct QueryOnDiskIdReq {} => ""
    }

    test_binrw_response! {
        struct QueryOnDiskIdResp {
            file_id: 0x2ae7010000000400,
            volume_id: 0xd9cf17b000000000,
        } => "000400000001e72a 00000000b017cfd9 00000000000000000000000000000000"
    }

    // TODO(TEST): RqLsV1
    test_binrw_request! {
        RequestLease => rqlsv2: RequestLease::RqLsReqv2(RequestLeaseV2 {
            lease_key: guid!("b69d8fd8-184b-7c4d-a359-40c8a53cd2b7").as_u128(),
            lease_state: LeaseState::new().with_read_caching(true).with_handle_caching(true),
            lease_flags: LeaseFlags::new().with_parent_lease_key_set(true),
            parent_lease_key: guid!("2d158ea3-55db-f749-9cd1-095496a06627").as_u128(),
            epoch: 0
        }) => "d88f9db64b184d7ca35940c8a53cd2b703000000040000000000000000000000a38e152ddb5549f79cd1095496a0662700000000"
    }

    test_binrw_request! {
        struct AllocationSize {
            allocation_size: 0xebfef0d4c000,
        } => "00c0d4f0feeb0000"
    }

    test_binrw_request! {
        struct DurableHandleRequestV2 {
            create_guid: guid!("5a08e844-45c3-234d-87c6-596d2bc8bca5"),
            flags: DurableHandleV2Flags::new(),
            timeout: 0,
        } => "0000000000000000000000000000000044e8085ac3454d2387c6596d2bc8bca5"
    }

    test_binrw_response! {
        struct DH2QResp {
            timeout: 180000,
            flags: DurableHandleV2Flags::new(),
        } => "20bf020000000000"
    }

    test_binrw_request! {
        struct TimewarpToken {
            timestamp: datetime!(2025-01-20 15:36:20.277632400).into(),
        } => "048fa10d516bdb01"
    }

    test_binrw_request! {
        struct DurableHandleReconnectV2 {
            file_id: guid!("000000b3-0008-0000-dd00-000008000000").into(),
            create_guid: guid!("a23e428c-1bac-7e43-8451-91f9f2277a95"),
            flags: DurableHandleV2Flags::new(),
        } => "b300000008000000dd000000080000008c423ea2ac1b437e845191f9f2277a9500000000"
    }
}