blob: 7f4f133195af9f997b7f4550df458f8b75b0a1bf [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DLP_DLP_ADAPTOR_H_
#define DLP_DLP_ADAPTOR_H_
#include <memory>
#include <vector>
#include <brillo/dbus/async_event_sequencer.h>
#include <leveldb/db.h>
#include "dlp/dbus-proxies.h"
#include "dlp/fanotify_watcher.h"
#include "dlp/org.chromium.Dlp.h"
#include "dlp/proto_bindings/dlp_service.pb.h"
namespace brillo {
namespace dbus_utils {
class DBusObject;
}
} // namespace brillo
namespace dlp {
class DlpAdaptor : public org::chromium::DlpAdaptor,
public org::chromium::DlpInterface,
public FanotifyWatcher::Delegate {
public:
explicit DlpAdaptor(
std::unique_ptr<brillo::dbus_utils::DBusObject> dbus_object);
DlpAdaptor(const DlpAdaptor&) = delete;
DlpAdaptor& operator=(const DlpAdaptor&) = delete;
virtual ~DlpAdaptor();
// Registers the D-Bus object and interfaces.
void RegisterAsync(
const brillo::dbus_utils::AsyncEventSequencer::CompletionAction&
completion_callback);
// org::chromium::DlpInterface: (see org.chromium.Dlp.xml).
std::vector<uint8_t> SetDlpFilesPolicy(
const std::vector<uint8_t>& request_blob) override;
std::vector<uint8_t> AddFile(
const std::vector<uint8_t>& request_blob) override;
private:
// Opens the database |db_| to store files sources.
void InitDatabase();
// Initializes |fanotify_watcher_| if not yet started.
void EnsureFanotifyWatcherStarted();
void ProcessFileOpenRequest(ino_t inode,
int pid,
base::OnceCallback<void(bool)> callback) override;
// Callbacks on DlpPolicyMatched D-Bus request.
void OnDlpPolicyMatched(base::OnceCallback<void(bool)> callback,
const std::vector<uint8_t>& response_blob);
void OnDlpPolicyMatchedError(base::OnceCallback<void(bool)> callback,
brillo::Error* error);
// Can be nullptr if failed to initialize.
std::unique_ptr<leveldb::DB> db_;
std::vector<DlpFilesRule> policy_rules_;
std::unique_ptr<FanotifyWatcher> fanotify_watcher_;
std::unique_ptr<brillo::dbus_utils::DBusObject> dbus_object_;
std::unique_ptr<org::chromium::DlpFilesPolicyServiceProxy>
dlp_files_policy_service_;
};
} // namespace dlp
#endif // DLP_DLP_ADAPTOR_H_