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.
5 #ifndef SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__
6 #define SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__
8 #include "base/basictypes.h"
9 #include "base/strings/string16.h"
10 #include "sandbox/win/src/crosscall_server.h"
11 #include "sandbox/win/src/sandbox_policy_base.h"
15 // This class handles file system-related IPC calls.
16 class FilesystemDispatcher
: public Dispatcher
{
18 explicit FilesystemDispatcher(PolicyBase
* policy_base
);
19 ~FilesystemDispatcher() {}
21 // Dispatcher interface.
22 virtual bool SetupService(InterceptionManager
* manager
, int service
);
25 // Processes IPC requests coming from calls to NtCreateFile in the target.
26 bool NtCreateFile(IPCInfo
* ipc
,
29 uint32 desired_access
,
30 uint32 file_attributes
,
32 uint32 create_disposition
,
33 uint32 create_options
);
35 // Processes IPC requests coming from calls to NtOpenFile in the target.
36 bool NtOpenFile(IPCInfo
* ipc
,
39 uint32 desired_access
,
41 uint32 create_options
);
43 // Processes IPC requests coming from calls to NtQueryAttributesFile in the
45 bool NtQueryAttributesFile(IPCInfo
* ipc
,
50 // Processes IPC requests coming from calls to NtQueryFullAttributesFile in
52 bool NtQueryFullAttributesFile(IPCInfo
* ipc
,
57 // Processes IPC requests coming from calls to NtSetInformationFile with the
58 // rename information class.
59 bool NtSetInformationFile(IPCInfo
* ipc
,
61 CountedBuffer
* status
,
66 PolicyBase
* policy_base_
;
67 DISALLOW_COPY_AND_ASSIGN(FilesystemDispatcher
);
70 } // namespace sandbox
72 #endif // SANDBOX_SRC_FILESYSTEM_DISPATCHER_H__