1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/dbus/arc/arc_appfuse_provider_client.h"
#include <utility>
#include "base/check_op.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "chromeos/ash/components/dbus/arc/fake_arc_appfuse_provider_client.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_proxy.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace ash {
namespace {
ArcAppfuseProviderClient* g_instance = nullptr;
class ArcAppfuseProviderClientImpl : public ArcAppfuseProviderClient {
public:
ArcAppfuseProviderClientImpl() = default;
ArcAppfuseProviderClientImpl(const ArcAppfuseProviderClientImpl&) = delete;
ArcAppfuseProviderClientImpl& operator=(const ArcAppfuseProviderClientImpl&) =
delete;
~ArcAppfuseProviderClientImpl() override = default;
// ArcAppfuseProviderClient override:
void Mount(uint32_t uid,
int32_t mount_id,
chromeos::DBusMethodCallback<base::ScopedFD> callback) override {
dbus::MethodCall method_call(arc::appfuse::kArcAppfuseProviderInterface,
arc::appfuse::kMountMethod);
dbus::MessageWriter writer(&method_call);
writer.AppendUint32(uid);
writer.AppendInt32(mount_id);
proxy_->CallMethod(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&ArcAppfuseProviderClientImpl::OnFDMethod,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
}
void Unmount(uint32_t uid,
int32_t mount_id,
chromeos::VoidDBusMethodCallback callback) override {
dbus::MethodCall method_call(arc::appfuse::kArcAppfuseProviderInterface,
arc::appfuse::kUnmountMethod);
dbus::MessageWriter writer(&method_call);
writer.AppendUint32(uid);
writer.AppendInt32(mount_id);
proxy_->CallMethod(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&ArcAppfuseProviderClientImpl::OnVoidDBusMethod,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
}
void OpenFile(
uint32_t uid,
int32_t mount_id,
int32_t file_id,
int32_t flags,
chromeos::DBusMethodCallback<base::ScopedFD> callback) override {
dbus::MethodCall method_call(arc::appfuse::kArcAppfuseProviderInterface,
arc::appfuse::kOpenFileMethod);
dbus::MessageWriter writer(&method_call);
writer.AppendUint32(uid);
writer.AppendInt32(mount_id);
writer.AppendInt32(file_id);
writer.AppendInt32(flags);
proxy_->CallMethod(
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
base::BindOnce(&ArcAppfuseProviderClientImpl::OnFDMethod,
weak_ptr_factory_.GetWeakPtr(), std::move(callback)));
}
// chromeos::DBusClient override.
void Init(dbus::Bus* bus) override {
proxy_ = bus->GetObjectProxy(
arc::appfuse::kArcAppfuseProviderServiceName,
dbus::ObjectPath(arc::appfuse::kArcAppfuseProviderServicePath));
}
private:
// Runs the callback with the method call result.
void OnVoidDBusMethod(chromeos::VoidDBusMethodCallback callback,
dbus::Response* response) {
std::move(callback).Run(response != nullptr);
}
void OnFDMethod(chromeos::DBusMethodCallback<base::ScopedFD> callback,
dbus::Response* response) {
if (!response) {
std::move(callback).Run(std::nullopt);
return;
}
dbus::MessageReader reader(response);
base::ScopedFD fd;
if (!reader.PopFileDescriptor(&fd)) {
LOG(ERROR) << "Failed to pop FD.";
std::move(callback).Run(std::nullopt);
return;
}
std::move(callback).Run(std::move(fd));
}
raw_ptr<dbus::ObjectProxy> proxy_ = nullptr;
base::WeakPtrFactory<ArcAppfuseProviderClientImpl> weak_ptr_factory_{this};
};
} // namespace
// static
ArcAppfuseProviderClient* ArcAppfuseProviderClient::Get() {
return g_instance;
}
// static
void ArcAppfuseProviderClient::Initialize(dbus::Bus* bus) {
CHECK(bus);
(new ArcAppfuseProviderClientImpl())->Init(bus);
}
// static
void ArcAppfuseProviderClient::InitializeFake() {
new FakeArcAppfuseProviderClient();
}
// static
void ArcAppfuseProviderClient::Shutdown() {
CHECK(g_instance);
delete g_instance;
}
ArcAppfuseProviderClient::ArcAppfuseProviderClient() {
CHECK(!g_instance);
g_instance = this;
}
ArcAppfuseProviderClient::~ArcAppfuseProviderClient() {
CHECK_EQ(g_instance, this);
g_instance = nullptr;
}
} // namespace ash
|