blob: 49a2e733ca4636f4dea51f6a843eb87d303d60f9 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SANDBOX_WIN_SRC_BROKER_SERVICES_H_
#define SANDBOX_WIN_SRC_BROKER_SERVICES_H_
#include <map>
#include <memory>
#include <set>
#include <string>
#include <string_view>
#include <utility>
#include "base/compiler_specific.h"
#include "base/containers/flat_map.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/win/scoped_handle.h"
#include "sandbox/win/src/alternate_desktop.h"
#include "sandbox/win/src/crosscall_server.h"
#include "sandbox/win/src/sandbox.h"
#include "sandbox/win/src/sandbox_policy_base.h"
#include "sandbox/win/src/sharedmem_ipc_server.h"
#include "sandbox/win/src/threadpool.h"
#include "sandbox/win/src/win_utils.h"
namespace sandbox {
// BrokerServicesBase ---------------------------------------------------------
// Broker implementation version 0
//
// This is an implementation of the interface BrokerServices and
// of the associated TargetProcess interface. In this implementation
// TargetProcess is a friend of BrokerServices where the later manages a
// collection of the former.
class BrokerServicesBase final : public BrokerServices,
public SingletonBase<BrokerServicesBase> {
public:
BrokerServicesBase();
BrokerServicesBase(const BrokerServicesBase&) = delete;
BrokerServicesBase& operator=(const BrokerServicesBase&) = delete;
~BrokerServicesBase();
// BrokerServices interface.
ResultCode Init() override;
ResultCode InitForTesting(
std::unique_ptr<BrokerServicesTargetTracker> target_tracker) override;
ResultCode CreateAlternateDesktop(Desktop desktop) override;
void DestroyDesktops() override;
std::unique_ptr<TargetPolicy> CreatePolicy() override;
std::unique_ptr<TargetPolicy> CreatePolicy(std::string_view key) override;
ResultCode SpawnTarget(const wchar_t* exe_path,
const wchar_t* command_line,
std::unique_ptr<TargetPolicy> policy,
DWORD* last_error,
PROCESS_INFORMATION* target) override;
ResultCode GetPolicyDiagnostics(
std::unique_ptr<PolicyDiagnosticsReceiver> receiver) override;
void SetStartingMitigations(MitigationFlags starting_mitigations) override;
bool RatchetDownSecurityMitigations(
MitigationFlags additional_flags) override;
std::wstring GetDesktopName(Desktop desktop) override;
static void FreezeTargetConfigForTesting(TargetConfig* config);
private:
// Implements Init and InitForTesting.
ResultCode Init(std::unique_ptr<BrokerServicesTargetTracker> target_tracker);
// Ensures the desktop integrity suits any process we are launching.
ResultCode UpdateDesktopIntegrity(Desktop desktop, IntegrityLevel integrity);
// The completion port used by the job objects to communicate events to
// the worker thread.
base::win::ScopedHandle job_port_;
// Handle to the worker thread that reacts to job notifications.
base::win::ScopedHandle job_thread_;
// Provides a pool of threads that are used to wait on the IPC calls.
// Owned by TargetEventsThread which is alive until our destructor.
raw_ptr<ThreadPool, DanglingUntriaged> thread_pool_ = nullptr;
// Handles for the alternate winstation (desktop==kAlternateWinstation).
std::unique_ptr<AlternateDesktop> alt_winstation_;
// Handles for the same winstation as the parent (desktop==kAlternateDesktop).
std::unique_ptr<AlternateDesktop> alt_desktop_;
// Cache of configs backing policies. Entries are retained until shutdown and
// used to prime policies created by CreatePolicy() with the same `tag`.
base::flat_map<std::string, std::unique_ptr<TargetConfig>> config_cache_;
};
} // namespace sandbox
#endif // SANDBOX_WIN_SRC_BROKER_SERVICES_H_