#include "dbus/bus.h"
#include <stddef.h>
#include <memory>
#include <utility>
#include "base/containers/contains.h"
#include "base/files/file_descriptor_watcher_posix.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/strcat.h"
#include "base/strings/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/sequenced_task_runner.h"
#include "base/threading/scoped_blocking_call.h"
#include "base/threading/thread.h"
#include "base/threading/thread_restrictions.h"
#include "base/time/time.h"
#include "base/timer/elapsed_timer.h"
#include "dbus/error.h"
#include "dbus/exported_object.h"
#include "dbus/message.h"
#include "dbus/object_manager.h"
#include "dbus/object_path.h"
#include "dbus/object_proxy.h"
#include "dbus/scoped_dbus_error.h"
namespace dbus {
namespace {
const char kDisconnectedSignal[] = "Disconnected";
const char kDisconnectedMatchRule[] =
"type='signal', path='/org/freedesktop/DBus/Local',"
"interface='org.freedesktop.DBus.Local', member='Disconnected'";
const char kNameOwnerChangedSignal[] = "NameOwnerChanged";
const char kServiceNameOwnerChangeMatchRule[] =
"type='signal',interface='org.freedesktop.DBus',"
"member='NameOwnerChanged',path='/org/freedesktop/DBus',"
"sender='org.freedesktop.DBus',arg0='%s'";
class Watch {
public:
explicit Watch(DBusWatch* watch) : raw_watch_(watch) {
dbus_watch_set_data(raw_watch_, this, nullptr);
}
Watch(const Watch&) = delete;
Watch& operator=(const Watch&) = delete;
~Watch() { dbus_watch_set_data(raw_watch_, nullptr, nullptr); }
bool IsReadyToBeWatched() {
return dbus_watch_get_enabled(raw_watch_);
}
void StartWatching() {
const int file_descriptor = dbus_watch_get_unix_fd(raw_watch_);
const unsigned int flags = dbus_watch_get_flags(raw_watch_);
if (flags & DBUS_WATCH_READABLE) {
read_watcher_ = base::FileDescriptorWatcher::WatchReadable(
file_descriptor,
base::BindRepeating(&Watch::OnFileReady, base::Unretained(this),
DBUS_WATCH_READABLE));
}
if (flags & DBUS_WATCH_WRITABLE) {
write_watcher_ = base::FileDescriptorWatcher::WatchWritable(
file_descriptor,
base::BindRepeating(&Watch::OnFileReady, base::Unretained(this),
DBUS_WATCH_WRITABLE));
}
}
void StopWatching() {
read_watcher_.reset();
write_watcher_.reset();
}
private:
void OnFileReady(unsigned int flags) {
CHECK(dbus_watch_handle(raw_watch_, flags)) << "Unable to allocate memory";
}
raw_ptr<DBusWatch> raw_watch_;
std::unique_ptr<base::FileDescriptorWatcher::Controller> read_watcher_;
std::unique_ptr<base::FileDescriptorWatcher::Controller> write_watcher_;
};
class Timeout {
public:
explicit Timeout(DBusTimeout* timeout) : raw_timeout_(timeout) {
dbus_timeout_set_data(raw_timeout_, this, nullptr);
}
Timeout(const Timeout&) = delete;
Timeout& operator=(const Timeout&) = delete;
~Timeout() {
dbus_timeout_set_data(raw_timeout_, nullptr, nullptr);
}
bool IsReadyToBeMonitored() {
return dbus_timeout_get_enabled(raw_timeout_);
}
void StartMonitoring(Bus* bus) {
bus->GetDBusTaskRunner()->PostDelayedTask(
FROM_HERE,
base::BindOnce(&Timeout::HandleTimeout, weak_ptr_factory_.GetWeakPtr()),
GetInterval());
}
void StopMonitoring() { weak_ptr_factory_.InvalidateWeakPtrs(); }
base::TimeDelta GetInterval() {
return base::Milliseconds(dbus_timeout_get_interval(raw_timeout_));
}
private:
void HandleTimeout() { CHECK(dbus_timeout_handle(raw_timeout_)); }
raw_ptr<DBusTimeout> raw_timeout_;
base::WeakPtrFactory<Timeout> weak_ptr_factory_{this};
};
Error ToError(const internal::ScopedDBusError& error) {
return error.is_set() ? Error(error.name(), error.message()) : Error();
}
}
Bus::Options::Options() = default;
Bus::Options::~Options() = default;
Bus::Options::Options(Bus::Options&&) = default;
Bus::Options& Bus::Options::operator=(Bus::Options&&) = default;
Bus::Bus(Options options)
: bus_type_(options.bus_type),
connection_type_(options.connection_type),
dbus_task_runner_(options.dbus_task_runner),
on_shutdown_(base::WaitableEvent::ResetPolicy::AUTOMATIC,
base::WaitableEvent::InitialState::NOT_SIGNALED),
connection_(nullptr),
origin_thread_id_(base::PlatformThread::CurrentId()),
async_operations_set_up_(false),
shutdown_completed_(false),
num_pending_watches_(0),
num_pending_timeouts_(0),
address_(options.address) {
dbus_threads_init_default();
if (base::SequencedTaskRunner::HasCurrentDefault())
origin_task_runner_ = base::SequencedTaskRunner::GetCurrentDefault();
}
Bus::~Bus() {
DCHECK(!connection_);
DCHECK(owned_service_names_.empty());
DCHECK(match_rules_added_.empty());
DCHECK(filter_functions_added_.empty());
DCHECK(registered_object_paths_.empty());
DCHECK_EQ(0, num_pending_watches_);
}
ObjectProxy* Bus::GetObjectProxy(std::string_view service_name,
const ObjectPath& object_path) {
return GetObjectProxyWithOptions(service_name, object_path,
ObjectProxy::DEFAULT_OPTIONS);
}
ObjectProxy* Bus::GetObjectProxyWithOptions(std::string_view service_name,
const ObjectPath& object_path,
int options) {
AssertOnOriginThread();
const ObjectProxyTable::key_type key(
base::StrCat({service_name, object_path.value()}), options);
ObjectProxyTable::iterator iter = object_proxy_table_.find(key);
if (iter != object_proxy_table_.end()) {
return iter->second.get();
}
scoped_refptr<ObjectProxy> object_proxy =
new ObjectProxy(this, service_name, object_path, options);
object_proxy_table_[key] = object_proxy;
return object_proxy.get();
}
bool Bus::RemoveObjectProxy(std::string_view service_name,
const ObjectPath& object_path,
base::OnceClosure callback) {
return RemoveObjectProxyWithOptions(service_name, object_path,
ObjectProxy::DEFAULT_OPTIONS,
std::move(callback));
}
bool Bus::RemoveObjectProxyWithOptions(std::string_view service_name,
const ObjectPath& object_path,
int options,
base::OnceClosure callback) {
AssertOnOriginThread();
const ObjectProxyTable::key_type key(
base::StrCat({service_name, object_path.value()}), options);
ObjectProxyTable::iterator iter = object_proxy_table_.find(key);
if (iter != object_proxy_table_.end()) {
scoped_refptr<ObjectProxy> object_proxy = iter->second;
object_proxy_table_.erase(iter);
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::RemoveObjectProxyInternal, this,
object_proxy, std::move(callback)));
return true;
}
return false;
}
void Bus::RemoveObjectProxyInternal(scoped_refptr<ObjectProxy> object_proxy,
base::OnceClosure callback) {
AssertOnDBusThread();
object_proxy->Detach();
GetOriginTaskRunner()->PostTask(FROM_HERE, std::move(callback));
}
ExportedObject* Bus::GetExportedObject(const ObjectPath& object_path) {
AssertOnOriginThread();
ExportedObjectTable::iterator iter = exported_object_table_.find(object_path);
if (iter != exported_object_table_.end()) {
return iter->second.get();
}
scoped_refptr<ExportedObject> exported_object =
new ExportedObject(this, object_path);
exported_object_table_[object_path] = exported_object;
return exported_object.get();
}
void Bus::UnregisterExportedObject(const ObjectPath& object_path) {
AssertOnOriginThread();
ExportedObjectTable::iterator iter = exported_object_table_.find(object_path);
if (iter == exported_object_table_.end())
return;
scoped_refptr<ExportedObject> exported_object = iter->second;
exported_object_table_.erase(iter);
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::UnregisterExportedObjectInternal, this,
exported_object));
}
void Bus::UnregisterExportedObjectInternal(
scoped_refptr<ExportedObject> exported_object) {
AssertOnDBusThread();
exported_object->Unregister();
}
ObjectManager* Bus::GetObjectManager(const std::string& service_name,
const ObjectPath& object_path) {
AssertOnOriginThread();
const ObjectManagerTable::key_type key(service_name + object_path.value());
ObjectManagerTable::iterator iter = object_manager_table_.find(key);
if (iter != object_manager_table_.end()) {
return iter->second.get();
}
scoped_refptr<ObjectManager> object_manager =
ObjectManager::Create(this, service_name, object_path);
object_manager_table_[key] = object_manager;
return object_manager.get();
}
bool Bus::RemoveObjectManager(const std::string& service_name,
const ObjectPath& object_path,
base::OnceClosure callback) {
AssertOnOriginThread();
DCHECK(!callback.is_null());
const ObjectManagerTable::key_type key(service_name + object_path.value());
ObjectManagerTable::iterator iter = object_manager_table_.find(key);
if (iter == object_manager_table_.end())
return false;
scoped_refptr<ObjectManager> object_manager = iter->second;
object_manager_table_.erase(iter);
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::RemoveObjectManagerInternal, this,
object_manager, std::move(callback)));
return true;
}
void Bus::RemoveObjectManagerInternal(
scoped_refptr<dbus::ObjectManager> object_manager,
base::OnceClosure callback) {
AssertOnDBusThread();
DCHECK(object_manager.get());
object_manager->CleanUp();
GetOriginTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::RemoveObjectManagerInternalHelper, this,
object_manager, std::move(callback)));
}
void Bus::RemoveObjectManagerInternalHelper(
scoped_refptr<dbus::ObjectManager> object_manager,
base::OnceClosure callback) {
AssertOnOriginThread();
DCHECK(object_manager);
object_manager = nullptr;
std::move(callback).Run();
}
bool Bus::Connect() {
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
if (connection_)
return true;
internal::ScopedDBusError dbus_error;
if (bus_type_ == CUSTOM_ADDRESS) {
if (connection_type_ == PRIVATE) {
connection_ =
dbus_connection_open_private(address_.c_str(), dbus_error.get());
} else {
connection_ = dbus_connection_open(address_.c_str(), dbus_error.get());
}
} else {
const DBusBusType dbus_bus_type = static_cast<DBusBusType>(bus_type_);
if (connection_type_ == PRIVATE) {
connection_ = dbus_bus_get_private(dbus_bus_type, dbus_error.get());
} else {
connection_ = dbus_bus_get(dbus_bus_type, dbus_error.get());
}
}
if (!connection_) {
LOG(ERROR) << "Failed to connect to the bus: "
<< (dbus_error.is_set() ? dbus_error.message() : "");
return false;
}
if (bus_type_ == CUSTOM_ADDRESS) {
if (!dbus_bus_register(connection_, dbus_error.get())) {
LOG(ERROR) << "Failed to register the bus component: "
<< (dbus_error.is_set() ? dbus_error.message() : "");
return false;
}
}
dbus_connection_set_exit_on_disconnect(connection_, false);
AddFilterFunction(Bus::OnConnectionDisconnectedFilter, this);
Error error;
AddMatch(kDisconnectedMatchRule, &error);
return true;
}
void Bus::ClosePrivateConnection() {
AssertOnDBusThread();
DCHECK_EQ(PRIVATE, connection_type_)
<< "non-private connection should not be closed";
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
dbus_connection_close(connection_);
}
void Bus::ShutdownAndBlock() {
AssertOnDBusThread();
if (shutdown_completed_)
return;
for (ExportedObjectTable::iterator iter = exported_object_table_.begin();
iter != exported_object_table_.end(); ++iter) {
iter->second->Unregister();
}
for (std::set<std::string>::iterator iter = owned_service_names_.begin();
iter != owned_service_names_.end();) {
const std::string& service_name = *iter++;
ReleaseOwnership(service_name);
}
if (!owned_service_names_.empty()) {
LOG(ERROR) << "Failed to release all service names. # of services left: "
<< owned_service_names_.size();
}
for (ObjectProxyTable::iterator iter = object_proxy_table_.begin();
iter != object_proxy_table_.end(); ++iter) {
iter->second->Detach();
}
for (ObjectManagerTable::iterator iter = object_manager_table_.begin();
iter != object_manager_table_.end(); ++iter) {
iter->second->CleanUp();
}
object_proxy_table_.clear();
exported_object_table_.clear();
if (connection_) {
base::ScopedBlockingCall scoped_blocking_call(
FROM_HERE, base::BlockingType::MAY_BLOCK);
Error error;
RemoveFilterFunction(Bus::OnConnectionDisconnectedFilter, this);
RemoveMatch(kDisconnectedMatchRule, &error);
if (connection_type_ == PRIVATE)
ClosePrivateConnection();
dbus_connection_unref(connection_);
}
connection_ = nullptr;
shutdown_completed_ = true;
}
void Bus::ShutdownOnDBusThreadAndBlock() {
AssertOnOriginThread();
DCHECK(dbus_task_runner_);
GetDBusTaskRunner()->PostTask(
FROM_HERE,
base::BindOnce(&Bus::ShutdownOnDBusThreadAndBlockInternal, this));
base::ScopedAllowBaseSyncPrimitivesOutsideBlockingScope allow_wait;
const int kTimeoutSecs = 3;
const base::TimeDelta timeout(base::Seconds(kTimeoutSecs));
const bool signaled = on_shutdown_.TimedWait(timeout);
LOG_IF(ERROR, !signaled) << "Failed to shutdown the bus";
}
void Bus::RequestOwnership(const std::string& service_name,
ServiceOwnershipOptions options,
OnOwnershipCallback on_ownership_callback) {
AssertOnOriginThread();
GetDBusTaskRunner()->PostTask(
FROM_HERE,
base::BindOnce(&Bus::RequestOwnershipInternal, this, service_name,
options, std::move(on_ownership_callback)));
}
void Bus::RequestOwnershipInternal(const std::string& service_name,
ServiceOwnershipOptions options,
OnOwnershipCallback on_ownership_callback) {
AssertOnDBusThread();
bool success = Connect();
if (success)
success = RequestOwnershipAndBlock(service_name, options);
GetOriginTaskRunner()->PostTask(
FROM_HERE,
base::BindOnce(std::move(on_ownership_callback), service_name, success));
}
bool Bus::RequestOwnershipAndBlock(const std::string& service_name,
ServiceOwnershipOptions options) {
DCHECK(connection_);
AssertOnDBusThread();
if (base::Contains(owned_service_names_, service_name)) {
return true;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
internal::ScopedDBusError error;
const int result = dbus_bus_request_name(connection_,
service_name.c_str(),
options,
error.get());
if (result != DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER) {
LOG(ERROR) << "Failed to get the ownership of " << service_name << ": "
<< (error.is_set() ? error.message() : "");
return false;
}
owned_service_names_.insert(service_name);
return true;
}
bool Bus::ReleaseOwnership(const std::string& service_name) {
DCHECK(connection_);
AssertOnDBusThread();
std::set<std::string>::iterator found =
owned_service_names_.find(service_name);
if (found == owned_service_names_.end()) {
LOG(ERROR) << service_name << " is not owned by the bus";
return false;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
internal::ScopedDBusError error;
const int result = dbus_bus_release_name(connection_, service_name.c_str(),
error.get());
if (result == DBUS_RELEASE_NAME_REPLY_RELEASED ||
result == DBUS_RELEASE_NAME_REPLY_NON_EXISTENT) {
owned_service_names_.erase(found);
return true;
} else {
LOG(ERROR) << "Failed to release the ownership of " << service_name << ": "
<< (error.is_set() ? error.message() : "")
<< ", result code: " << result;
return false;
}
}
bool Bus::SetUpAsyncOperations() {
DCHECK(connection_);
AssertOnDBusThread();
if (async_operations_set_up_)
return true;
ProcessAllIncomingDataIfAny();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
bool success = dbus_connection_set_watch_functions(
connection_, &Bus::OnAddWatchThunk, &Bus::OnRemoveWatchThunk,
&Bus::OnToggleWatchThunk, this, nullptr);
CHECK(success) << "Unable to allocate memory";
success = dbus_connection_set_timeout_functions(
connection_, &Bus::OnAddTimeoutThunk, &Bus::OnRemoveTimeoutThunk,
&Bus::OnToggleTimeoutThunk, this, nullptr);
CHECK(success) << "Unable to allocate memory";
dbus_connection_set_dispatch_status_function(
connection_, &Bus::OnDispatchStatusChangedThunk, this, nullptr);
async_operations_set_up_ = true;
return true;
}
base::expected<std::unique_ptr<Response>, Error> Bus::SendWithReplyAndBlock(
DBusMessage* request,
int timeout_ms) {
DCHECK(connection_);
AssertOnDBusThread();
base::ElapsedTimer elapsed;
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
internal::ScopedDBusError dbus_error;
DBusMessage* reply = dbus_connection_send_with_reply_and_block(
connection_, request, timeout_ms, dbus_error.get());
constexpr base::TimeDelta kLongCall = base::Seconds(1);
LOG_IF(WARNING, elapsed.Elapsed() >= kLongCall)
<< "Bus::SendWithReplyAndBlock took "
<< elapsed.Elapsed().InMilliseconds() << "ms to process message: "
<< "type=" << dbus_message_type_to_string(dbus_message_get_type(request))
<< ", path=" << dbus_message_get_path(request)
<< ", interface=" << dbus_message_get_interface(request)
<< ", member=" << dbus_message_get_member(request);
if (!reply) {
return base::unexpected(ToError(dbus_error));
}
return base::ok(Response::FromRawMessage(reply));
}
void Bus::SendWithReply(DBusMessage* request,
DBusPendingCall** pending_call,
int timeout_ms) {
DCHECK(connection_);
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
const bool success = dbus_connection_send_with_reply(
connection_, request, pending_call, timeout_ms);
CHECK(success) << "Unable to allocate memory";
}
void Bus::Send(DBusMessage* request, uint32_t* serial) {
DCHECK(connection_);
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
const bool success = dbus_connection_send(connection_, request, serial);
CHECK(success) << "Unable to allocate memory";
}
void Bus::AddFilterFunction(DBusHandleMessageFunction filter_function,
void* user_data) {
DCHECK(connection_);
AssertOnDBusThread();
std::pair<DBusHandleMessageFunction, void*> filter_data_pair =
std::make_pair(filter_function, user_data);
if (base::Contains(filter_functions_added_, filter_data_pair)) {
VLOG(1) << "Filter function already exists: " << filter_function
<< " with associated data: " << user_data;
return;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
const bool success = dbus_connection_add_filter(connection_, filter_function,
user_data, nullptr);
CHECK(success) << "Unable to allocate memory";
filter_functions_added_.insert(filter_data_pair);
}
void Bus::RemoveFilterFunction(DBusHandleMessageFunction filter_function,
void* user_data) {
DCHECK(connection_);
AssertOnDBusThread();
std::pair<DBusHandleMessageFunction, void*> filter_data_pair =
std::make_pair(filter_function, user_data);
if (!base::Contains(filter_functions_added_, filter_data_pair)) {
VLOG(1) << "Requested to remove an unknown filter function: "
<< filter_function
<< " with associated data: " << user_data;
return;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
dbus_connection_remove_filter(connection_, filter_function, user_data);
filter_functions_added_.erase(filter_data_pair);
}
void Bus::AddMatch(const std::string& match_rule, Error* error) {
DCHECK(connection_);
DCHECK(error);
AssertOnDBusThread();
std::map<std::string, int>::iterator iter =
match_rules_added_.find(match_rule);
if (iter != match_rules_added_.end()) {
iter->second++;
VLOG(1) << "Match rule already exists: " << match_rule;
return;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
internal::ScopedDBusError dbus_error;
dbus_bus_add_match(connection_, match_rule.c_str(), dbus_error.get());
if (dbus_error.is_set()) {
*error = Error(dbus_error.name(), dbus_error.message());
}
match_rules_added_[match_rule] = 1;
}
bool Bus::RemoveMatch(const std::string& match_rule, Error* error) {
DCHECK(connection_);
DCHECK(error);
AssertOnDBusThread();
std::map<std::string, int>::iterator iter =
match_rules_added_.find(match_rule);
if (iter == match_rules_added_.end()) {
LOG(ERROR) << "Requested to remove an unknown match rule: " << match_rule;
return false;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
iter->second--;
if (iter->second == 0) {
internal::ScopedDBusError dbus_error;
dbus_bus_remove_match(connection_, match_rule.c_str(), dbus_error.get());
if (dbus_error.is_set()) {
*error = Error(dbus_error.name(), dbus_error.message());
}
match_rules_added_.erase(match_rule);
}
return true;
}
bool Bus::TryRegisterObjectPath(const ObjectPath& object_path,
const DBusObjectPathVTable* vtable,
void* user_data,
Error* error) {
return TryRegisterObjectPathInternal(
object_path, vtable, user_data, error,
dbus_connection_try_register_object_path);
}
bool Bus::TryRegisterFallback(const ObjectPath& object_path,
const DBusObjectPathVTable* vtable,
void* user_data,
Error* error) {
DCHECK(error);
return TryRegisterObjectPathInternal(object_path, vtable, user_data, error,
dbus_connection_try_register_fallback);
}
bool Bus::TryRegisterObjectPathInternal(
const ObjectPath& object_path,
const DBusObjectPathVTable* vtable,
void* user_data,
Error* error,
TryRegisterObjectPathFunction* register_function) {
DCHECK(connection_);
DCHECK(error);
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
if (base::Contains(registered_object_paths_, object_path)) {
LOG(ERROR) << "Object path already registered: " << object_path.value();
return false;
}
internal::ScopedDBusError dbus_error;
const bool success =
register_function(connection_, object_path.value().c_str(), vtable,
user_data, dbus_error.get());
if (success) {
registered_object_paths_.insert(object_path);
} else if (dbus_error.is_set()) {
*error = Error(dbus_error.name(), dbus_error.message());
}
return success;
}
void Bus::UnregisterObjectPath(const ObjectPath& object_path) {
DCHECK(connection_);
AssertOnDBusThread();
if (!base::Contains(registered_object_paths_, object_path)) {
LOG(ERROR) << "Requested to unregister an unknown object path: "
<< object_path.value();
return;
}
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
const bool success = dbus_connection_unregister_object_path(
connection_,
object_path.value().c_str());
CHECK(success) << "Unable to allocate memory";
registered_object_paths_.erase(object_path);
}
void Bus::ShutdownOnDBusThreadAndBlockInternal() {
AssertOnDBusThread();
ShutdownAndBlock();
on_shutdown_.Signal();
}
void Bus::ProcessAllIncomingDataIfAny() {
AssertOnDBusThread();
if (!connection_)
return;
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
if (dbus_connection_get_dispatch_status(connection_) ==
DBUS_DISPATCH_DATA_REMAINS) {
while (dbus_connection_dispatch(connection_) ==
DBUS_DISPATCH_DATA_REMAINS) {
}
}
}
base::SequencedTaskRunner* Bus::GetDBusTaskRunner() {
if (dbus_task_runner_)
return dbus_task_runner_.get();
else
return GetOriginTaskRunner();
}
base::SequencedTaskRunner* Bus::GetOriginTaskRunner() {
DCHECK(origin_task_runner_);
return origin_task_runner_.get();
}
bool Bus::HasDBusThread() {
return dbus_task_runner_ != nullptr;
}
void Bus::AssertOnOriginThread() {
if (origin_task_runner_) {
CHECK(origin_task_runner_->RunsTasksInCurrentSequence());
} else {
CHECK_EQ(origin_thread_id_, base::PlatformThread::CurrentId());
}
}
void Bus::AssertOnDBusThread() {
if (dbus_task_runner_) {
CHECK(dbus_task_runner_->RunsTasksInCurrentSequence());
} else {
AssertOnOriginThread();
}
}
std::string Bus::GetServiceOwnerAndBlock(const std::string& service_name,
GetServiceOwnerOption options) {
AssertOnDBusThread();
MethodCall get_name_owner_call("org.freedesktop.DBus", "GetNameOwner");
MessageWriter writer(&get_name_owner_call);
writer.AppendString(service_name);
VLOG(1) << "Method call: " << get_name_owner_call.ToString();
const ObjectPath obj_path("/org/freedesktop/DBus");
if (!get_name_owner_call.SetDestination("org.freedesktop.DBus") ||
!get_name_owner_call.SetPath(obj_path)) {
if (options == REPORT_ERRORS)
LOG(ERROR) << "Failed to get name owner.";
return "";
}
auto result = SendWithReplyAndBlock(get_name_owner_call.raw_message(),
ObjectProxy::TIMEOUT_USE_DEFAULT);
if (!result.has_value()) {
if (options == REPORT_ERRORS) {
LOG(ERROR) << "Failed to get name owner. Got " << result.error().name()
<< ": " << result.error().message();
}
return "";
}
MessageReader reader(result->get());
std::string service_owner;
if (!reader.PopString(&service_owner))
service_owner.clear();
return service_owner;
}
void Bus::GetServiceOwner(const std::string& service_name,
GetServiceOwnerCallback callback) {
AssertOnOriginThread();
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::GetServiceOwnerInternal, this,
service_name, std::move(callback)));
}
void Bus::GetServiceOwnerInternal(const std::string& service_name,
GetServiceOwnerCallback callback) {
AssertOnDBusThread();
std::string service_owner;
if (Connect())
service_owner = GetServiceOwnerAndBlock(service_name, SUPPRESS_ERRORS);
GetOriginTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(std::move(callback), service_owner));
}
void Bus::ListenForServiceOwnerChange(
const std::string& service_name,
const ServiceOwnerChangeCallback& callback) {
AssertOnOriginThread();
DCHECK(!service_name.empty());
DCHECK(!callback.is_null());
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::ListenForServiceOwnerChangeInternal, this,
service_name, callback));
}
void Bus::ListenForServiceOwnerChangeInternal(
const std::string& service_name,
const ServiceOwnerChangeCallback& callback) {
AssertOnDBusThread();
DCHECK(!service_name.empty());
DCHECK(!callback.is_null());
if (!Connect() || !SetUpAsyncOperations())
return;
if (service_owner_changed_listener_map_.empty())
AddFilterFunction(Bus::OnServiceOwnerChangedFilter, this);
ServiceOwnerChangedListenerMap::iterator it =
service_owner_changed_listener_map_.find(service_name);
if (it == service_owner_changed_listener_map_.end()) {
const std::string name_owner_changed_match_rule =
base::StringPrintf(kServiceNameOwnerChangeMatchRule,
service_name.c_str());
dbus::Error error;
AddMatch(name_owner_changed_match_rule, &error);
if (error.IsValid()) {
LOG(ERROR) << "Failed to add match rule for " << service_name
<< ". Got " << error.name() << ": " << error.message();
return;
}
service_owner_changed_listener_map_[service_name].push_back(callback);
return;
}
std::vector<ServiceOwnerChangeCallback>& callbacks = it->second;
for (size_t i = 0; i < callbacks.size(); ++i) {
if (callbacks[i] == callback)
return;
}
callbacks.push_back(callback);
}
void Bus::UnlistenForServiceOwnerChange(
const std::string& service_name,
const ServiceOwnerChangeCallback& callback) {
AssertOnOriginThread();
DCHECK(!service_name.empty());
DCHECK(!callback.is_null());
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::UnlistenForServiceOwnerChangeInternal,
this, service_name, callback));
}
void Bus::UnlistenForServiceOwnerChangeInternal(
const std::string& service_name,
const ServiceOwnerChangeCallback& callback) {
AssertOnDBusThread();
DCHECK(!service_name.empty());
DCHECK(!callback.is_null());
ServiceOwnerChangedListenerMap::iterator it =
service_owner_changed_listener_map_.find(service_name);
if (it == service_owner_changed_listener_map_.end())
return;
std::vector<ServiceOwnerChangeCallback>& callbacks = it->second;
for (size_t i = 0; i < callbacks.size(); ++i) {
if (callbacks[i] == callback) {
callbacks.erase(callbacks.begin() + i);
break;
}
}
if (!callbacks.empty())
return;
const std::string name_owner_changed_match_rule =
base::StringPrintf(kServiceNameOwnerChangeMatchRule,
service_name.c_str());
Error error;
RemoveMatch(name_owner_changed_match_rule, &error);
service_owner_changed_listener_map_.erase(it);
if (service_owner_changed_listener_map_.empty())
RemoveFilterFunction(Bus::OnServiceOwnerChangedFilter, this);
}
std::string Bus::GetConnectionName() {
if (!connection_)
return "";
return dbus_bus_get_unique_name(connection_);
}
bool Bus::IsConnected() {
return connection_ != nullptr;
}
dbus_bool_t Bus::OnAddWatch(DBusWatch* raw_watch) {
AssertOnDBusThread();
Watch* watch = new Watch(raw_watch);
if (watch->IsReadyToBeWatched()) {
watch->StartWatching();
}
++num_pending_watches_;
return true;
}
void Bus::OnRemoveWatch(DBusWatch* raw_watch) {
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch));
delete watch;
--num_pending_watches_;
}
void Bus::OnToggleWatch(DBusWatch* raw_watch) {
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
Watch* watch = static_cast<Watch*>(dbus_watch_get_data(raw_watch));
if (watch->IsReadyToBeWatched())
watch->StartWatching();
else
watch->StopWatching();
}
dbus_bool_t Bus::OnAddTimeout(DBusTimeout* raw_timeout) {
AssertOnDBusThread();
Timeout* timeout = new Timeout(raw_timeout);
if (timeout->IsReadyToBeMonitored()) {
timeout->StartMonitoring(this);
}
++num_pending_timeouts_;
return true;
}
void Bus::OnRemoveTimeout(DBusTimeout* raw_timeout) {
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
Timeout* timeout = static_cast<Timeout*>(dbus_timeout_get_data(raw_timeout));
delete timeout;
--num_pending_timeouts_;
}
void Bus::OnToggleTimeout(DBusTimeout* raw_timeout) {
AssertOnDBusThread();
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
Timeout* timeout = static_cast<Timeout*>(dbus_timeout_get_data(raw_timeout));
if (timeout->IsReadyToBeMonitored()) {
timeout->StartMonitoring(this);
} else {
timeout->StopMonitoring();
}
}
void Bus::OnDispatchStatusChanged(DBusConnection* connection,
DBusDispatchStatus status) {
DCHECK_EQ(connection, connection_);
AssertOnDBusThread();
GetDBusTaskRunner()->PostTask(
FROM_HERE, base::BindOnce(&Bus::ProcessAllIncomingDataIfAny, this));
}
void Bus::OnServiceOwnerChanged(DBusMessage* message) {
DCHECK(message);
AssertOnDBusThread();
dbus_message_ref(message);
std::unique_ptr<Signal> signal(Signal::FromRawMessage(message));
if (signal->GetMember() != kNameOwnerChangedSignal ||
signal->GetInterface() != DBUS_INTERFACE_DBUS ||
signal->GetSender() != DBUS_SERVICE_DBUS) {
return;
}
MessageReader reader(signal.get());
std::string service_name;
std::string old_owner;
std::string new_owner;
if (!reader.PopString(&service_name) ||
!reader.PopString(&old_owner) ||
!reader.PopString(&new_owner)) {
return;
}
ServiceOwnerChangedListenerMap::const_iterator it =
service_owner_changed_listener_map_.find(service_name);
if (it == service_owner_changed_listener_map_.end())
return;
const std::vector<ServiceOwnerChangeCallback>& callbacks = it->second;
for (size_t i = 0; i < callbacks.size(); ++i) {
GetOriginTaskRunner()->PostTask(FROM_HERE,
base::BindOnce(callbacks[i], new_owner));
}
}
dbus_bool_t Bus::OnAddWatchThunk(DBusWatch* raw_watch, void* data) {
Bus* self = static_cast<Bus*>(data);
return self->OnAddWatch(raw_watch);
}
void Bus::OnRemoveWatchThunk(DBusWatch* raw_watch, void* data) {
Bus* self = static_cast<Bus*>(data);
self->OnRemoveWatch(raw_watch);
}
void Bus::OnToggleWatchThunk(DBusWatch* raw_watch, void* data) {
Bus* self = static_cast<Bus*>(data);
self->OnToggleWatch(raw_watch);
}
dbus_bool_t Bus::OnAddTimeoutThunk(DBusTimeout* raw_timeout, void* data) {
Bus* self = static_cast<Bus*>(data);
return self->OnAddTimeout(raw_timeout);
}
void Bus::OnRemoveTimeoutThunk(DBusTimeout* raw_timeout, void* data) {
Bus* self = static_cast<Bus*>(data);
self->OnRemoveTimeout(raw_timeout);
}
void Bus::OnToggleTimeoutThunk(DBusTimeout* raw_timeout, void* data) {
Bus* self = static_cast<Bus*>(data);
self->OnToggleTimeout(raw_timeout);
}
void Bus::OnDispatchStatusChangedThunk(DBusConnection* connection,
DBusDispatchStatus status,
void* data) {
Bus* self = static_cast<Bus*>(data);
self->OnDispatchStatusChanged(connection, status);
}
DBusHandlerResult Bus::OnConnectionDisconnectedFilter(
DBusConnection* connection,
DBusMessage* message,
void* data) {
if (dbus_message_is_signal(message,
DBUS_INTERFACE_LOCAL,
kDisconnectedSignal)) {
LOG(FATAL) << "D-Bus connection was disconnected. Aborting.";
}
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
DBusHandlerResult Bus::OnServiceOwnerChangedFilter(
DBusConnection* connection,
DBusMessage* message,
void* data) {
if (dbus_message_is_signal(message,
DBUS_INTERFACE_DBUS,
kNameOwnerChangedSignal)) {
Bus* self = static_cast<Bus*>(data);
self->OnServiceOwnerChanged(message);
}
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
}