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
use crate::sys;
use crate::AccessMask;
use crate::FillFindData;
use crate::GlobalContext;
use crate::WriteWideCStringCell;
use std::mem::MaybeUninit;

/// Function trampolines
pub(crate) static OPERATIONS: sys::DOKAN_OPERATIONS = sys::DOKAN_OPERATIONS {
    ZwCreateFile: Some(create_file_callback),
    FindFiles: Some(find_files_callback),
    GetVolumeInformation: Some(get_volume_information_callback),
    Mounted: Some(mounted_callback),
    Unmounted: Some(unmounted_callback),
    ..sys::DOKAN_OPERATIONS::new()
};

unsafe fn slice_from_c_wstr_ptr<'a>(ptr: *const u16) -> &'a [u16] {
    let len = libc::wcslen(ptr);
    std::slice::from_raw_parts(ptr, len)
}

unsafe fn extract_global_context<'a>(
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> &'a mut GlobalContext {
    debug_assert!(!dokan_file_info.is_null());
    let options = (*dokan_file_info).DokanOptions;
    debug_assert!(!options.is_null());
    let options = &*options;
    debug_assert!(options.GlobalContext != 0);
    &mut *(options.GlobalContext as *mut GlobalContext)
}

unsafe extern "stdcall" fn create_file_callback(
    file_name: sys::LPCWSTR,
    _security_context: sys::PDOKAN_IO_SECURITY_CONTEXT,
    desired_access: sys::ACCESS_MASK,
    _file_attributes: sys::ULONG,
    _share_access: sys::ULONG,
    _create_disposition: sys::ULONG,
    _create_options: sys::ULONG,
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> sys::NTSTATUS {
    let result = std::panic::catch_unwind(|| {
        let global_context = extract_global_context(dokan_file_info);
        let file_name = slice_from_c_wstr_ptr(file_name);
        let desired_access = AccessMask::from_bits_retain(desired_access);
        let mut is_dir = (*dokan_file_info).IsDirectory != 0;

        let result = global_context
            .filesystem
            .create_file(file_name, desired_access, &mut is_dir);

        (*dokan_file_info).IsDirectory = u8::from(is_dir);

        result
    });

    match result {
        Ok(code) => code,
        Err(_e) => sys::STATUS_INTERNAL_ERROR,
    }
}

unsafe extern "stdcall" fn find_files_callback(
    file_name: sys::LPCWSTR,
    fill_find_data: sys::PFillFindData,
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> sys::NTSTATUS {
    let result = std::panic::catch_unwind(|| {
        let global_context = extract_global_context(dokan_file_info);
        let file_name = slice_from_c_wstr_ptr(file_name);
        let fill_find_data = FillFindData {
            func: fill_find_data,
            dokan_file_info: &mut *dokan_file_info,
        };

        global_context
            .filesystem
            .find_files(file_name, fill_find_data)
    });

    match result {
        Ok(code) => code,
        Err(_e) => sys::STATUS_INTERNAL_ERROR,
    }
}

unsafe extern "stdcall" fn get_volume_information_callback(
    volume_name_buffer: sys::LPWSTR,
    volume_name_size: sys::DWORD,
    volume_serial_number: sys::LPDWORD,
    maximum_component_length: sys::LPDWORD,
    file_system_flags: sys::LPDWORD,
    file_system_name_buffer: sys::LPWSTR,
    file_system_name_size: sys::DWORD,
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> sys::NTSTATUS {
    let result = std::panic::catch_unwind(|| {
        let global_context = extract_global_context(dokan_file_info);

        let volume_name = std::slice::from_raw_parts_mut(
            volume_name_buffer.cast::<MaybeUninit<u16>>(),
            volume_name_size.try_into().unwrap(),
        );
        volume_name[0].write(0);
        let volume_name = WriteWideCStringCell::new(volume_name);

        // Defaults chosen from memfs example
        volume_serial_number.write(0x19831116);
        maximum_component_length.write(255);

        file_system_flags.write(0);

        let file_system_name = std::slice::from_raw_parts_mut(
            file_system_name_buffer.cast::<MaybeUninit<u16>>(),
            file_system_name_size.try_into().unwrap(),
        );
        file_system_name[0].write(0);
        let file_system_name = WriteWideCStringCell::new(file_system_name);

        global_context.filesystem.get_volume_information(
            volume_name,
            &mut *volume_serial_number,
            &mut *maximum_component_length,
            &mut *file_system_flags.cast(),
            file_system_name,
        )
    });

    match result {
        Ok(code) => code,
        Err(_e) => sys::STATUS_INTERNAL_ERROR,
    }
}

unsafe extern "stdcall" fn mounted_callback(
    mount_point: sys::LPCWSTR,
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> sys::NTSTATUS {
    let result = std::panic::catch_unwind(|| {
        let global_context = extract_global_context(dokan_file_info);
        let mount_point = slice_from_c_wstr_ptr(mount_point);

        global_context.filesystem.mounted(mount_point)
    });

    match result {
        Ok(code) => code,
        Err(_e) => sys::STATUS_INTERNAL_ERROR,
    }
}

unsafe extern "stdcall" fn unmounted_callback(
    dokan_file_info: sys::PDOKAN_FILE_INFO,
) -> sys::NTSTATUS {
    let result = std::panic::catch_unwind(|| {
        let global_context = extract_global_context(dokan_file_info);

        global_context.filesystem.unmounted()
    });

    match result {
        Ok(code) => code,
        Err(_e) => sys::STATUS_INTERNAL_ERROR,
    }
}