#ifndef SANDBOX_WIN_SRC_FILESYSTEM_DISPATCHER_H_
#define SANDBOX_WIN_SRC_FILESYSTEM_DISPATCHER_H_
#include <stdint.h>
#include <string>
#include <string_view>
#include "base/memory/raw_ptr.h"
#include "sandbox/win/src/crosscall_server.h"
#include "sandbox/win/src/ipc_tags.h"
#include "sandbox/win/src/sandbox_policy_base.h"
namespace sandbox {
class FilesystemDispatcher : public Dispatcher {
public:
explicit FilesystemDispatcher(PolicyBase* policy_base);
FilesystemDispatcher(const FilesystemDispatcher&) = delete;
FilesystemDispatcher& operator=(const FilesystemDispatcher&) = delete;
~FilesystemDispatcher() override {}
bool SetupService(InterceptionManager* manager, IpcTag service) override;
private:
bool NtCreateFile(IPCInfo* ipc,
std::wstring* name,
uint32_t attributes,
uint32_t desired_access,
uint32_t file_attributes,
uint32_t share_access,
uint32_t create_disposition,
uint32_t create_options);
bool NtOpenFile(IPCInfo* ipc,
std::wstring* name,
uint32_t attributes,
uint32_t desired_access,
uint32_t share_access,
uint32_t create_options);
bool NtQueryAttributesFile(IPCInfo* ipc,
std::wstring* name,
uint32_t attributes,
CountedBuffer* info);
bool NtQueryFullAttributesFile(IPCInfo* ipc,
std::wstring* name,
uint32_t attributes,
CountedBuffer* info);
bool NtSetInformationFile(IPCInfo* ipc,
HANDLE handle,
CountedBuffer* status,
CountedBuffer* info,
uint32_t length,
uint32_t info_class);
EvalResult EvalPolicy(IpcTag ipc_tag,
std::wstring_view name,
uint32_t desired_access = 0,
bool open_only = true);
raw_ptr<PolicyBase> policy_base_;
};
}
#endif