| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__ | |
| 6 #define SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__ | |
| 7 | |
| 8 #include <stdint.h> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "base/strings/string16.h" | |
| 12 #include "sandbox/win/src/crosscall_server.h" | |
| 13 #include "sandbox/win/src/sandbox_policy_base.h" | |
| 14 | |
| 15 namespace sandbox { | |
| 16 | |
| 17 // This class handles file system-related IPC calls. | |
| 18 class FilesystemDispatcher : public Dispatcher { | |
| 19 public: | |
| 20 explicit FilesystemDispatcher(PolicyBase* policy_base); | |
| 21 ~FilesystemDispatcher() override {} | |
| 22 | |
| 23 // Dispatcher interface. | |
| 24 bool SetupService(InterceptionManager* manager, int service) override; | |
| 25 | |
| 26 private: | |
| 27 // Processes IPC requests coming from calls to NtCreateFile in the target. | |
| 28 bool NtCreateFile(IPCInfo* ipc, | |
| 29 base::string16* name, | |
| 30 uint32_t attributes, | |
| 31 uint32_t desired_access, | |
| 32 uint32_t file_attributes, | |
| 33 uint32_t share_access, | |
| 34 uint32_t create_disposition, | |
| 35 uint32_t create_options); | |
| 36 | |
| 37 // Processes IPC requests coming from calls to NtOpenFile in the target. | |
| 38 bool NtOpenFile(IPCInfo* ipc, | |
| 39 base::string16* name, | |
| 40 uint32_t attributes, | |
| 41 uint32_t desired_access, | |
| 42 uint32_t share_access, | |
| 43 uint32_t create_options); | |
| 44 | |
| 45 // Processes IPC requests coming from calls to NtQueryAttributesFile in the | |
| 46 // target. | |
| 47 bool NtQueryAttributesFile(IPCInfo* ipc, | |
| 48 base::string16* name, | |
| 49 uint32_t attributes, | |
| 50 CountedBuffer* info); | |
| 51 | |
| 52 // Processes IPC requests coming from calls to NtQueryFullAttributesFile in | |
| 53 // the target. | |
| 54 bool NtQueryFullAttributesFile(IPCInfo* ipc, | |
| 55 base::string16* name, | |
| 56 uint32_t attributes, | |
| 57 CountedBuffer* info); | |
| 58 | |
| 59 // Processes IPC requests coming from calls to NtSetInformationFile with the | |
| 60 // rename information class. | |
| 61 bool NtSetInformationFile(IPCInfo* ipc, | |
| 62 HANDLE handle, | |
| 63 CountedBuffer* status, | |
| 64 CountedBuffer* info, | |
| 65 uint32_t length, | |
| 66 uint32_t info_class); | |
| 67 | |
| 68 PolicyBase* policy_base_; | |
| 69 DISALLOW_COPY_AND_ASSIGN(FilesystemDispatcher); | |
| 70 }; | |
| 71 | |
| 72 } // namespace sandbox | |
| 73 | |
| 74 #endif // SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__ | |
| OLD | NEW |