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