| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ | 5 #ifndef SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ |
| 6 #define SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ | 6 #define SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "sandbox/win/src/crosscall_server.h" | 10 #include "sandbox/win/src/crosscall_server.h" |
| 11 #include "sandbox/win/src/interception.h" | 11 #include "sandbox/win/src/interception.h" |
| 12 #include "sandbox/win/src/ipc_tags.h" | 12 #include "sandbox/win/src/ipc_tags.h" |
| 13 #include "sandbox/win/src/sandbox_policy_base.h" | 13 #include "sandbox/win/src/sandbox_policy.h" |
| 14 | 14 |
| 15 namespace sandbox { | 15 namespace sandbox { |
| 16 | 16 |
| 17 // Top level dispatcher which hands requests to the appropriate service | 17 // Top level dispatcher which hands requests to the appropriate service |
| 18 // dispatchers. | 18 // dispatchers. |
| 19 class TopLevelDispatcher : public Dispatcher { | 19 class TopLevelDispatcher : public Dispatcher { |
| 20 public: | 20 public: |
| 21 // |policy| must outlive this class. | 21 // |policy| must outlive this class. |
| 22 explicit TopLevelDispatcher(PolicyBase* policy); | 22 explicit TopLevelDispatcher(TargetPolicy* policy); |
| 23 ~TopLevelDispatcher() override; | 23 ~TopLevelDispatcher() override; |
| 24 | 24 |
| 25 Dispatcher* OnMessageReady(IPCParams* ipc, | 25 Dispatcher* OnMessageReady(IPCParams* ipc, |
| 26 CallbackGeneric* callback) override; | 26 CallbackGeneric* callback) override; |
| 27 bool SetupService(InterceptionManager* manager, int service) override; | 27 bool SetupService(InterceptionManager* manager, int service) override; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 // Test IPC provider. | 30 // Test IPC provider. |
| 31 bool Ping(IPCInfo* ipc, void* cookie); | 31 bool Ping(IPCInfo* ipc, void* cookie); |
| 32 | 32 |
| 33 // Returns a dispatcher from ipc_targets_. | 33 // Returns a dispatcher from ipc_targets_. |
| 34 Dispatcher* GetDispatcher(int ipc_tag); | 34 Dispatcher* GetDispatcher(int ipc_tag); |
| 35 | 35 |
| 36 PolicyBase* policy_; | 36 TargetPolicy* policy_; |
| 37 scoped_ptr<Dispatcher> filesystem_dispatcher_; | 37 scoped_ptr<Dispatcher> filesystem_dispatcher_; |
| 38 scoped_ptr<Dispatcher> named_pipe_dispatcher_; | 38 scoped_ptr<Dispatcher> named_pipe_dispatcher_; |
| 39 scoped_ptr<Dispatcher> thread_process_dispatcher_; | 39 scoped_ptr<Dispatcher> thread_process_dispatcher_; |
| 40 scoped_ptr<Dispatcher> sync_dispatcher_; | 40 scoped_ptr<Dispatcher> sync_dispatcher_; |
| 41 scoped_ptr<Dispatcher> registry_dispatcher_; | 41 scoped_ptr<Dispatcher> registry_dispatcher_; |
| 42 scoped_ptr<Dispatcher> handle_dispatcher_; | 42 scoped_ptr<Dispatcher> handle_dispatcher_; |
| 43 scoped_ptr<Dispatcher> process_mitigations_win32k_dispatcher_; | 43 scoped_ptr<Dispatcher> process_mitigations_win32k_dispatcher_; |
| 44 Dispatcher* ipc_targets_[IPC_LAST_TAG]; | 44 Dispatcher* ipc_targets_[IPC_LAST_TAG]; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(TopLevelDispatcher); | 46 DISALLOW_COPY_AND_ASSIGN(TopLevelDispatcher); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace sandbox | 49 } // namespace sandbox |
| 50 | 50 |
| 51 #endif // SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ | 51 #endif // SANDBOX_SRC_TOP_LEVEL_DISPATCHER_H__ |
| OLD | NEW |