smb-fscc 0.11.2

FSCC (File System Control Codes) implementations 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
//! File Information Classes for getting file information.
//!
//! This module mostly exports [QueryFileInfo] enum, and all structs that can be used with it.
//!
//! [MS-FSCC 2.4](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/4718fc40-e539-4014-8e33-b675af74e3e1>)

use std::ops::Deref;

use binrw::{NullString, io::TakeSeekExt, prelude::*};

use super::{
    ChainedItemList, FileAccessMask, FileAttributes, FileBasicInformation, FileFullEaInformation,
    FileModeInformation, FileNameInformation, FilePipeInformation, FilePositionInformation,
};
use crate::{ReparseTag, file_info_classes};
use smb_dtyp::binrw_util::prelude::*;

file_info_classes! {
    /// Query file information classes.
    pub QueryFileInfo {
        pub Access = 8,
        pub Alignment = 17,
        pub All = 18,
        pub AlternateName = 21,
        pub AttributeTag = 35,
        pub Basic = 4,
        pub Compression = 28,
        pub Ea = 7,
        pub FullEa = 15,
        pub Id = 59,
        pub Internal = 6,
        pub Mode = 16,
        pub NetworkOpen = 34,
        pub NormalizedName = 48,
        pub Pipe = 23,
        pub PipeLocal = 24,
        pub PipeRemote  = 25,
        pub Position = 14,
        pub Standard = 5,
        pub Stream = 22,
    }
}

pub type QueryFileFullEaInformation = FileFullEaInformation;

pub type FileStreamInformation = ChainedItemList<FileStreamInformationInner, 8>;

/// Query the access rights of a file that were granted when the file was opened.
///
/// [MS-FSCC 2.4.1](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/01cf43d2-deb3-40d3-a39b-9e68693d7c90>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileAccessInformation {
    /// Contains values that specify the access rights that were granted when the file was opened.
    pub access_flags: FileAccessMask,
}

/// Query a collection of file information structures.
///
/// [MS-FSCC 2.4.2](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/95f3056a-ebc1-4f5d-b938-3f68a44677a6>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileAllInformation {
    /// Basic file information including timestamps and attributes.
    pub basic: FileBasicInformation,
    /// Standard file information about allocation size and file size.
    pub standard: FileStandardInformation,
    /// Internal file information including the file index number.
    pub internal: FileInternalInformation,
    /// Extended attribute information for the file.
    pub ea: FileEaInformation,
    /// Access rights information for the file.
    pub access: FileAccessInformation,
    /// Current file position information.
    pub position: FilePositionInformation,
    /// File mode information.
    pub mode: FileModeInformation,
    /// Buffer alignment requirements for the underlying device.
    pub alignment: FileAlignmentInformation,
    /// File name information.
    pub name: FileNameInformation,
}

/// Query the buffer alignment required by the underlying device.
///
/// [MS-FSCC 2.4.3](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/9b0b9971-85aa-4651-8438-f1c4298bcb0d>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u32))]
pub enum FileAlignmentInformation {
    /// Specifies that there are no alignment requirements for the device.
    Byte = 0,
    /// Specifies that data must be aligned on a 2-byte boundary.
    Word = 1,
    /// Specifies that data must be aligned on a 4-byte boundary.
    Long = 3,
    /// Specifies that data must be aligned on an 8-byte boundary.
    Quad = 7,
    /// Specifies that data must be aligned on a 16-byte boundary.
    Octa = 0xf,
    /// Specifies that data must be aligned on a 32-byte boundary.
    _32Byte = 0x1f,
    /// Specifies that data must be aligned on a 64-byte boundary.
    _64Byte = 0x3f,
    /// Specifies that data must be aligned on a 128-byte boundary.
    _128Byte = 0x7f,
    /// Specifies that data must be aligned on a 256-byte boundary.
    _256Byte = 0xff,
    /// Specifies that data must be aligned on a 512-byte boundary.
    _512Byte = 0x1ff,
}

/// Query the alternate name (8.3 short name) of a file.
///
/// [MS-FSCC 2.4.5](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/cb90d9e0-695d-4418-8d89-a29e2ba9faf8>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileAlternateNameInformation {
    /// The alternate name information, following the same structure as FileNameInformation.
    inner: FileNameInformation,
}

impl Deref for FileAlternateNameInformation {
    type Target = FileNameInformation;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

impl From<&str> for FileAlternateNameInformation {
    fn from(value: &str) -> Self {
        Self {
            inner: FileNameInformation::from(value),
        }
    }
}

/// Query file attribute and reparse tag information for a file.
///
/// [MS-FSCC 2.4.6](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/d295752f-ce89-4b98-8553-266d37c84f0e>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileAttributeTagInformation {
    /// File attributes as a bitmask of flags.
    pub file_attributes: FileAttributes,
    /// The reparse point tag value. If the file is not a reparse point, this value is undefined and should not be used.
    pub reparse_tag: ReparseTag,
}

/// Query compression information for a file.
///
/// [MS-FSCC 2.4.9](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/0a7e50c4-2839-438e-aa6c-0da7d681a5a7>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileCompressionInformation {
    /// The size of the compressed file in bytes.
    pub compressed_file_size: u64,
    /// The compression format used for the file.
    pub compression_format: FileCompressionFormat,
    /// The compression unit size in bytes as a power of 2.
    pub compression_unit: u8,
    /// The compression chunk size in bytes as a power of 2.
    pub chunk_shift: u8,
    /// The cluster size in bytes as a power of 2.
    pub cluster_shift: u8,

    #[bw(calc = [0; 3])]
    #[br(temp)]
    _reserved: [u8; 3],
}

/// Compression format values for file compression.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u16))]
pub enum FileCompressionFormat {
    /// The file is not compressed.
    None = 0,
    /// The file is compressed using the LZNT1 compression algorithm.
    Lznt1 = 2,
}

/// Query the size of the extended attributes (EA) for a file.
///
/// [MS-FSCC 2.4.13](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/db6cf109-ead8-441a-b29e-cb2032778b0f>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileEaInformation {
    /// The size in bytes of the extended attributes for the file.
    pub ea_size: u32,
}

/// Query the file system's 8-byte file reference number for a file.
///
/// [MS-FSCC 2.4.26](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/e4185a8a-ed8d-4f98-ab55-ca34dc8916e6>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileIdInformation {
    /// The serial number of the volume containing the file.
    pub volume_serial_number: u64,
    /// A 128-bit file identifier that uniquely identifies a file within the file system.
    pub file_id: u128,
}

/// Query the file system's 8-byte file reference number for a file.
///
/// [MS-FSCC 2.4.27](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/7d796611-2fa5-41ac-8178-b6fea3a017b3>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileInternalInformation {
    /// An 8-byte file reference number for the file. This number is generated and assigned to the file by the file system.
    pub index_number: u64,
}

/// Query network file open information for a file.
///
/// [MS-FSCC 2.4.34](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/26d261db-58d1-4513-a548-074448cbb146>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileNetworkOpenInformation {
    /// 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 changed.
    pub change_time: FileTime,
    /// The number of bytes that are allocated for the file.
    pub allocation_size: u64,
    /// The end of file location as a byte offset from the start of the file.
    pub end_of_file: u64,
    /// The file attributes.
    pub file_attributes: FileAttributes,
    #[bw(calc = 0)]
    #[br(temp)]
    _reserved: u32,
}

/// Query the normalized name of a file.
///
/// A normalized name is an absolute pathname where each short name component has been replaced with the corresponding long name component,
/// and each name component uses the exact letter casing stored on disk
///
/// [MS-FSCC 2.4.36](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/20bcadba-808c-4880-b757-4af93e41edf6>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileNormalizedNameInformation {
    /// The normalized name information, following the same structure as FileNameInformation.
    inner: FileNameInformation,
}

impl Deref for FileNormalizedNameInformation {
    type Target = FileNameInformation;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

impl From<&str> for FileNormalizedNameInformation {
    fn from(value: &str) -> Self {
        Self {
            inner: FileNameInformation::from(value),
        }
    }
}

/// Query information associated with a named pipe that is not specific to one end of the pipe or another.
///
/// [MS-FSCC 2.4.38](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/de9abdc7-b974-4ec3-a4dc-42853777f412>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FilePipeLocalInformation {
    /// The type of named pipe.
    pub named_pipe_type: NamedPipeType,
    /// The named pipe configuration.
    pub named_pipe_configuration: NamedPipeConfiguration,
    /// The maximum number of instances that can be created for this pipe.
    pub maximum_instances: u32,
    /// The number of current named pipe instances.
    pub current_instances: u32,
    /// The inbound quota in bytes.
    pub inbound_quota: u32,
    /// Bytes of data available to be read from the named pipe.
    pub read_data_available: u32,
    /// The outbound quota in bytes.
    pub outbound_quota: u32,
    /// The write quota in bytes.
    pub write_quota_available: u32,
    /// The named pipe state.
    pub named_pipe_state: NamedPipeState,
    /// Specifies whether the named pipe handle is for the client or server end of a named pipe.
    pub named_pipe_end: NamedPipeEnd,
}

/// Named pipe type values.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u32))]
pub enum NamedPipeType {
    /// The pipe is a byte-stream pipe.
    ByteStream = 0,
    /// The pipe is a message pipe.
    Message = 1,
}

/// Named pipe configuration values.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u32))]
pub enum NamedPipeConfiguration {
    /// The flow of data in the pipe goes from client to server only.
    Inbound = 0,
    /// The flow of data in the pipe goes from server to client only.
    Outbound = 1,
    /// The pipe is bidirectional; both server and client can read from and write to the pipe.
    FullDuplex = 2,
}

/// Named pipe state values.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u32))]
pub enum NamedPipeState {
    /// The pipe is disconnected.
    Disconnected = 1,
    /// The pipe is waiting for a client to connect.
    Listening = 2,
    /// The pipe is connected to a client.
    Connected = 3,
    /// The pipe is in the process of being closed.
    Closing = 4,
}

/// Named pipe end values.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[brw(repr(u32))]
pub enum NamedPipeEnd {
    /// The handle is for the client end of the named pipe.
    Client = 0,
    /// The handle is for the server end of the named pipe.
    Server = 1,
}

/// Query information that is associated with the remote end of a named pipe.
///
/// [MS-FSCC 2.4.39](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/4319b135-4472-482f-a0a3-6cc3a856c6b6>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FilePipeRemoteInformation {
    /// The time at which the data is collected.
    pub collect_data_time: FileTime,
    /// The maximum size, in bytes, of data that will be collected before transmission to the remote end of the named pipe.
    pub maximum_collection_count: u32,
}

/// Query standard information for a file.
///
/// [MS-FSCC 2.4.47](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/5afa7f66-619c-48f3-955f-68c4ece704ae>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileStandardInformation {
    /// The number of bytes that are allocated for the file.
    pub allocation_size: u64,
    /// The end of file location as a byte offset from the start of the file.
    pub end_of_file: u64,
    /// The number of non-deleted hard links to this file.
    pub number_of_links: u32,
    /// Set to TRUE if the file has been marked for deletion.
    pub delete_pending: Boolean,
    /// Set to TRUE if the file is a directory.
    pub directory: Boolean,
    #[bw(calc = 0)]
    #[br(temp)]
    _reserved: u16,
}

/// Enumerate the data streams for a file.
///
/// [MS-FSCC 2.4.49](<https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/f8762be6-3ab9-411e-a7d6-5cc68f70c78d>)
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
pub struct FileStreamInformationInner {
    #[bw(try_calc = stream_name.size().try_into())]
    stream_name_length: u32,
    /// The size, in bytes, of the stream.
    pub stream_size: u64,
    /// The number of bytes that are allocated for the stream.
    pub stream_allocation_size: u64,
    /// The name of the stream in Unicode.
    #[br(args { size: SizedStringSize::bytes(stream_name_length)})]
    pub stream_name: SizedWideString,
}

/// Query extended attributes for a file.
#[binrw::binrw]
#[derive(Debug, PartialEq, Eq)]
#[bw(import(has_next: bool))]
pub struct FileGetEaInformation {
    // Length does NOT include the null terminator.
    #[bw(try_calc = ea_name.len().try_into())]
    ea_name_length: u8,
    /// The name of the extended attribute.
    #[br(map_stream = |s| s.take_seek(ea_name_length as u64 + 1))]
    pub ea_name: NullString,
}

impl FileGetEaInformation {
    pub fn new<S: Into<String>>(name: S) -> Self {
        Self {
            ea_name: NullString::from(name.into()),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use smb_tests::*;
    use time::macros::datetime;

    fn get_file_access_information_for_test() -> FileAccessInformation {
        FileAccessInformation {
            access_flags: FileAccessMask::new()
                .with_file_read_data(true)
                .with_file_write_data(true)
                .with_file_append_data(true)
                .with_file_read_ea(true)
                .with_file_write_ea(true)
                .with_file_execute(true)
                .with_file_delete_child(true)
                .with_file_read_attributes(true)
                .with_file_write_attributes(true)
                .with_delete(true)
                .with_read_control(true)
                .with_write_dacl(true)
                .with_write_owner(true)
                .with_synchronize(true),
        }
    }
    const FILE_ACCESS_INFORMATION_FOR_TEST_STRING: &str = "ff011f00";
    test_binrw! {
        FileAccessInformation: get_file_access_information_for_test() => FILE_ACCESS_INFORMATION_FOR_TEST_STRING
    }

    fn get_file_alignment_information_for_test() -> FileAlignmentInformation {
        FileAlignmentInformation::Byte
    }
    const FILE_ALIGNMENT_INFORMATION_FOR_TEST_STRING: &str = "00000000";
    test_binrw! {
        FileAlignmentInformation: get_file_alignment_information_for_test() => FILE_ALIGNMENT_INFORMATION_FOR_TEST_STRING
    }

    test_binrw! {
        FileAlternateNameInformation: FileAlternateNameInformation::from("query_info_o") => "18000000710075006500720079005f0069006e0066006f005f006f00"
    }

    test_binrw! {
        // TODO: DFS reparse tag here can be cool
        struct FileAttributeTagInformation {
            file_attributes: FileAttributes::new()
                .with_archive(true),
            reparse_tag: ReparseTag::ReservedZero,
        } => "2000000000000000"
    }

    fn get_file_basic_information_for_test() -> FileBasicInformation {
        FileBasicInformation {
            creation_time: datetime!(2025-10-17 10:35:07.801764000).into(),
            last_access_time: datetime!(2025-10-17 10:35:07.801764000).into(),
            last_write_time: datetime!(2025-10-17 10:35:07.801764000).into(),
            change_time: datetime!(2025-10-17 10:35:07.801764000).into(),
            file_attributes: FileAttributes::new().with_archive(true),
        }
    }
    const FILE_BASIC_INFORMATION_FOR_TEST_STRING: &str =
        "681621b5513fdc01681621b5513fdc01681621b5513fdc01681621b5513fdc012000000000000000";

    test_binrw! {
        FileBasicInformation: get_file_basic_information_for_test() => FILE_BASIC_INFORMATION_FOR_TEST_STRING
    }

    test_binrw! {
        // TODO: something with actual compression
        struct FileCompressionInformation => no {
            compressed_file_size: 13,
            compression_format: FileCompressionFormat::None,
            compression_unit: 0,
            chunk_shift: 0,
            cluster_shift: 0,
        } => "0d000000000000000000000000000000"
    }

    fn get_internal_information_for_test() -> FileInternalInformation {
        FileInternalInformation {
            index_number: 0x33b16,
        }
    }
    const FILE_INTERNAL_INFORMATION_FOR_TEST_STRING: &str = "163b030000000000";

    test_binrw! {
         FileInternalInformation: get_internal_information_for_test() => FILE_INTERNAL_INFORMATION_FOR_TEST_STRING
    }

    fn get_file_mode_information_for_test() -> FileModeInformation {
        FileModeInformation::new().with_synchronous_io_non_alert(true)
    }

    const FILE_MODE_INFORMATION_FOR_TEST_STRING: &str = "20000000";

    test_binrw! {
        FileModeInformation: get_file_mode_information_for_test() => FILE_MODE_INFORMATION_FOR_TEST_STRING
    }

    test_binrw! {
        struct FileNetworkOpenInformation {
            creation_time: datetime!(2025-10-17 12:44:04.747034).into(),
            last_access_time: datetime!(2025-10-17 12:44:04.747034).into(),
            last_write_time: datetime!(2025-10-17 12:44:04.747034).into(),
            change_time: datetime!(2025-10-17 12:44:04.747034).into(),
            allocation_size: 4096,
            end_of_file: 13,
            file_attributes: FileAttributes::new().with_archive(true),
        } => "043fb5b8633fdc01043fb5b8633fdc01043fb5b8633fdc01043fb5b8633fdc0100100000000000000d000000000000002000000000000000"
    }

    test_binrw! {
        FileNormalizedNameInformation: FileNormalizedNameInformation::from("query_info_on.txt") => "22000000710075006500720079005f0069006e0066006f005f006f006e002e00740078007400"
    }

    fn get_file_position_information_for_test() -> FilePositionInformation {
        FilePositionInformation {
            current_byte_offset: 1024,
        }
    }
    const FILE_POSITION_INFORMATION_FOR_TEST_STRING: &str = "0004000000000000";

    test_binrw! {
        FilePositionInformation: get_file_position_information_for_test() => FILE_POSITION_INFORMATION_FOR_TEST_STRING
    }

    fn get_standard_information_for_test() -> FileStandardInformation {
        FileStandardInformation {
            allocation_size: 4096,
            end_of_file: 13,
            number_of_links: 0,
            delete_pending: true.into(),
            directory: false.into(),
        }
    }
    const FILE_STANDARD_INFORMATION_FOR_TEST_STRING: &str =
        "00100000000000000d000000000000000000000001000000";

    test_binrw! {FileStandardInformation: get_standard_information_for_test() => FILE_STANDARD_INFORMATION_FOR_TEST_STRING}

    fn get_file_name_information_for_test() -> FileNameInformation {
        FileNameInformation::from("File_Name.txt")
    }
    const FILE_NAME_INFORMATION_FOR_TEST_STRING: &str =
        "1a000000460069006c0065005f004e0061006d0065002e00740078007400";
    test_binrw!(
        FileNameInformation: get_file_name_information_for_test() =>
        FILE_NAME_INFORMATION_FOR_TEST_STRING
    );

    fn get_file_ea_information_for_test() -> FileEaInformation {
        FileEaInformation { ea_size: 208 }
    }
    const FILE_EA_INFORMATION_FOR_TEST_STRING: &str = "d0000000";
    test_binrw!(
        FileEaInformation: get_file_ea_information_for_test() =>
        FILE_EA_INFORMATION_FOR_TEST_STRING
    );

    const FILE_ALL_INFORMATION_FOR_TEST_STRING: &str = const_format::concatcp!(
        FILE_BASIC_INFORMATION_FOR_TEST_STRING,
        FILE_STANDARD_INFORMATION_FOR_TEST_STRING,
        FILE_INTERNAL_INFORMATION_FOR_TEST_STRING,
        FILE_EA_INFORMATION_FOR_TEST_STRING,
        FILE_ACCESS_INFORMATION_FOR_TEST_STRING,
        FILE_POSITION_INFORMATION_FOR_TEST_STRING,
        FILE_MODE_INFORMATION_FOR_TEST_STRING,
        FILE_ALIGNMENT_INFORMATION_FOR_TEST_STRING,
        FILE_NAME_INFORMATION_FOR_TEST_STRING
    );
    test_binrw! {
        FileAllInformation: FileAllInformation {basic:get_file_basic_information_for_test(),
            standard:get_standard_information_for_test(),
            internal: get_internal_information_for_test(),
            ea: get_file_ea_information_for_test(),
            access: get_file_access_information_for_test(),
            position: get_file_position_information_for_test(),
            mode: get_file_mode_information_for_test(),
            alignment: get_file_alignment_information_for_test(),
            name: get_file_name_information_for_test(),
        }
        => FILE_ALL_INFORMATION_FOR_TEST_STRING
    }

    test_binrw! {
        FileStreamInformation: FileStreamInformation::from(
            vec![
                FileStreamInformationInner { stream_size: 1096224, stream_allocation_size: 720896, stream_name: "::$DATA".into() },
                FileStreamInformationInner { stream_size: 7, stream_allocation_size: 8, stream_name: ":SmartScreen:$DATA".into() },
                FileStreamInformationInner { stream_size: 63, stream_allocation_size: 64, stream_name: ":Zone.Identifier:$DATA".into() },
            ]
        ) => "280000000e00000020ba10000000000000000b00000000003a003a002400440041005400410000004000000024000000070000000000000008000000000000003a0053006d00610072007400530063007200650065006e003a002400440041005400410000000000000000002c0000003f0000000000000040000000000000003a005a006f006e0065002e004900640065006e007400690066006900650072003a0024004400410054004100"
    }

    test_binrw! {
        struct FileIdInformation {
            volume_serial_number: 0xc86ef7996ef77f0e,
            file_id: 0x0000000000000000006a00000000cd5a,
        } => "0e7ff76e99f76ec85acd000000006a000000000000000000"
    }

    test_binrw! {
        struct FilePipeLocalInformation {
            named_pipe_type: NamedPipeType::Message,
            named_pipe_configuration: NamedPipeConfiguration::FullDuplex,
            maximum_instances: 0xffffffff,
            current_instances: 4,
            inbound_quota: 2048,
            read_data_available: 0,
            outbound_quota: 2048,
            write_quota_available: 1024,
            named_pipe_state: NamedPipeState::Connected,
            named_pipe_end: NamedPipeEnd::Client,
        } => "0100000002000000ffffffff04000000000800000000000000080000000400000300000000000000"
    }

    // Querying this is both no trivial, and also probably passes tests.
    // test_binrw! {
    //     struct FilePipeRemoteInformation {
    //     } => ""
    // }
}