blob: 6479d3950b021b29363e73bdd1a7ae597773a5c7 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "services/service_manager/service_manager.h"
#include <stdint.h>
#include <utility>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/debug/alias.h"
#include "base/guid.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/process/process.h"
#include "base/process/process_handle.h"
#include "base/stl_util.h"
#include "base/strings/string_util.h"
#include "base/trace_event/trace_event.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "mojo/public/cpp/bindings/binding_set.h"
#include "services/service_manager/connect_util.h"
#include "services/service_manager/public/cpp/connector.h"
#include "services/service_manager/public/cpp/names.h"
#include "services/service_manager/public/cpp/service_context.h"
#include "services/service_manager/public/interfaces/connector.mojom.h"
#include "services/service_manager/public/interfaces/service.mojom.h"
#include "services/service_manager/public/interfaces/service_manager.mojom.h"
namespace service_manager {
namespace {
const char kCatalogName[] = "service:catalog";
const char kServiceManagerName[] = "service:service_manager";
const char kCapability_UserID[] = "service_manager:user_id";
const char kCapability_ClientProcess[] = "service_manager:client_process";
const char kCapability_InstanceName[] = "service_manager:instance_name";
const char kCapability_AllUsers[] = "service_manager:all_users";
const char kCapability_ServiceManager[] = "service_manager:service_manager";
} // namespace
Identity CreateServiceManagerIdentity() {
return Identity(kServiceManagerName, mojom::kRootUserID);
}
Identity CreateCatalogIdentity() {
return Identity(kCatalogName, mojom::kRootUserID);
}
InterfaceProviderSpec GetPermissiveInterfaceProviderSpec() {
InterfaceProviderSpec spec;
InterfaceSet interfaces;
interfaces.insert("*");
spec.requires["*"] = interfaces;
return spec;
}
bool HasCapability(const InterfaceProviderSpec& spec,
const std::string& capability) {
auto it = spec.requires.find(kServiceManagerName);
if (it == spec.requires.end())
return false;
return it->second.find(capability) != it->second.end();
}
// Encapsulates a connection to an instance of a service, tracked by the
// Service Manager.
class ServiceManager::Instance
: public mojom::Connector,
public mojom::PIDReceiver,
public Service,
public InterfaceFactory<mojom::ServiceManager>,
public mojom::ServiceManager {
public:
Instance(service_manager::ServiceManager* service_manager,
const Identity& identity,
const InterfaceProviderSpecMap& interface_provider_specs)
: service_manager_(service_manager),
id_(GenerateUniqueID()),
identity_(identity),
interface_provider_specs_(interface_provider_specs),
allow_any_application_(GetConnectionSpec().requires.count("*") == 1),
pid_receiver_binding_(this),
weak_factory_(this) {
if (identity_.name() == kServiceManagerName ||
identity_.name() == kCatalogName) {
pid_ = base::Process::Current().Pid();
}
DCHECK_NE(mojom::kInvalidInstanceID, id_);
}
~Instance() override {
// Shutdown all bindings before we close the runner. This way the process
// should see the pipes closed and exit, as well as waking up any potential
// sync/WaitForIncomingResponse().
service_.reset();
if (pid_receiver_binding_.is_bound())
pid_receiver_binding_.Close();
connectors_.CloseAllBindings();
service_manager_bindings_.CloseAllBindings();
// Notify the ServiceManager that this Instance is really going away.
service_manager_->OnInstanceStopped(identity_);
// Release |runner_| so that if we are called back to OnRunnerCompleted()
// we know we're in the destructor.
std::unique_ptr<NativeRunner> runner = std::move(runner_);
runner.reset();
}
Instance* parent() { return parent_; }
void AddChild(std::unique_ptr<Instance> child) {
child->parent_ = this;
children_.insert(std::make_pair(child.get(), std::move(child)));
}
void RemoveChild(Instance* child) {
auto it = children_.find(child);
DCHECK(it != children_.end());
// Deletes |child|.
children_.erase(it);
}
bool ConnectToService(std::unique_ptr<ConnectParams>* connect_params) {
if (!service_.is_bound())
return false;
std::unique_ptr<ConnectParams> params(std::move(*connect_params));
if (!params->connect_callback().is_null()) {
params->connect_callback().Run(mojom::ConnectResult::SUCCEEDED,
identity_.user_id());
}
InterfaceProviderSpecMap specs;
Instance* source = service_manager_->GetExistingInstance(params->source());
if (source)
specs = source->interface_provider_specs_;
service_->OnConnect(ServiceInfo(params->source(), specs),
params->TakeRemoteInterfaces());
return true;
}
void StartWithService(mojom::ServicePtr service) {
CHECK(!service_);
service_ = std::move(service);
service_.set_connection_error_handler(
base::Bind(&Instance::OnServiceLost, base::Unretained(this),
service_manager_->GetWeakPtr()));
service_->OnStart(ServiceInfo(identity_, interface_provider_specs_),
base::Bind(&Instance::OnInitializeResponse,
base::Unretained(this)));
}
void StartWithClientProcessConnection(
mojom::ClientProcessConnectionPtr client_process_connection) {
mojom::ServicePtr service;
service.Bind(mojom::ServicePtrInfo(
std::move(client_process_connection->service), 0));
pid_receiver_binding_.Bind(
std::move(client_process_connection->pid_receiver_request));
StartWithService(std::move(service));
}
void StartWithFilePath(const base::FilePath& path) {
CHECK(!service_);
runner_ = service_manager_->native_runner_factory_->Create(path);
bool start_sandboxed = false;
mojom::ServicePtr service = runner_->Start(
path, identity_, start_sandboxed,
base::Bind(&Instance::PIDAvailable, weak_factory_.GetWeakPtr()),
base::Bind(&Instance::OnRunnerCompleted, weak_factory_.GetWeakPtr()));
StartWithService(std::move(service));
}
mojom::RunningServiceInfoPtr CreateRunningServiceInfo() const {
mojom::RunningServiceInfoPtr info(mojom::RunningServiceInfo::New());
info->id = id_;
info->identity = identity_;
info->pid = pid_;
return info;
}
const InterfaceProviderSpec& GetConnectionSpec() const {
auto it = interface_provider_specs_.find(
mojom::kServiceManager_ConnectorSpec);
return it != interface_provider_specs_.end() ? it->second : empty_spec_;
}
const Identity& identity() const { return identity_; }
uint32_t id() const { return id_; }
// Service:
bool OnConnect(const ServiceInfo& remote_info,
InterfaceRegistry* registry) override {
Instance* source =
service_manager_->GetExistingInstance(remote_info.identity);
DCHECK(source);
if (HasCapability(source->GetConnectionSpec(),
kCapability_ServiceManager)) {
registry->AddInterface<mojom::ServiceManager>(this);
return true;
}
return false;
}
private:
// mojom::Connector implementation:
void Connect(const service_manager::Identity& in_target,
mojom::InterfaceProviderRequest remote_interfaces,
mojom::ClientProcessConnectionPtr client_process_connection,
const ConnectCallback& callback) override {
Identity target = in_target;
if (target.user_id() == mojom::kInheritUserID)
target.set_user_id(identity_.user_id());
if (!ValidateIdentity(target, callback))
return;
if (!ValidateClientProcessConnection(&client_process_connection, target,
callback)) {
return;
}
if (!ValidateConnectionSpec(target, callback))
return;
std::unique_ptr<ConnectParams> params(new ConnectParams);
params->set_source(identity_);
params->set_target(target);
params->set_remote_interfaces(std::move(remote_interfaces));
params->set_client_process_connection(std::move(client_process_connection));
params->set_connect_callback(callback);
service_manager_->Connect(
std::move(params), nullptr, weak_factory_.GetWeakPtr());
}
void Clone(mojom::ConnectorRequest request) override {
connectors_.AddBinding(this, std::move(request));
}
// mojom::PIDReceiver:
void SetPID(uint32_t pid) override {
PIDAvailable(pid);
}
// InterfaceFactory<mojom::ServiceManager>:
void Create(const Identity& remote_identity,
mojom::ServiceManagerRequest request) override {
service_manager_bindings_.AddBinding(this, std::move(request));
}
// mojom::ServiceManager implementation:
void AddListener(mojom::ServiceManagerListenerPtr listener) override {
// TODO(beng): this should only track the instances matching this user, and
// root.
service_manager_->AddListener(std::move(listener));
}
bool ValidateIdentity(const Identity& identity,
const ConnectCallback& callback) {
if (!IsValidName(identity.name())) {
LOG(ERROR) << "Error: invalid Name: " << identity.name();
callback.Run(mojom::ConnectResult::INVALID_ARGUMENT,
mojom::kInheritUserID);
return false;
}
if (!base::IsValidGUID(identity.user_id())) {
LOG(ERROR) << "Error: invalid user_id: " << identity.user_id();
callback.Run(mojom::ConnectResult::INVALID_ARGUMENT,
mojom::kInheritUserID);
return false;
}
return true;
}
bool ValidateClientProcessConnection(
mojom::ClientProcessConnectionPtr* client_process_connection,
const Identity& target,
const ConnectCallback& callback) {
if (!client_process_connection->is_null()) {
if (!HasCapability(GetConnectionSpec(), kCapability_ClientProcess)) {
LOG(ERROR) << "Instance: " << identity_.name() << " attempting "
<< "to register an instance for a process it created for "
<< "target: " << target.name() << " without the "
<< "service:service_manager{client_process} capability "
<< "class.";
callback.Run(mojom::ConnectResult::ACCESS_DENIED,
mojom::kInheritUserID);
return false;
}
if (!(*client_process_connection)->service.is_valid() ||
!(*client_process_connection)->pid_receiver_request.is_valid()) {
LOG(ERROR) << "Must supply both service AND "
<< "pid_receiver_request when sending "
<< "client_process_connection.";
callback.Run(mojom::ConnectResult::INVALID_ARGUMENT,
mojom::kInheritUserID);
return false;
}
if (service_manager_->GetExistingInstance(target)) {
LOG(ERROR) << "Cannot client process matching existing identity:"
<< "Name: " << target.name() << " User: "
<< target.user_id() << " Instance: " << target.instance();
callback.Run(mojom::ConnectResult::INVALID_ARGUMENT,
mojom::kInheritUserID);
return false;
}
}
return true;
}
bool ValidateConnectionSpec(const Identity& target,
const ConnectCallback& callback) {
InterfaceProviderSpec connection_spec = GetConnectionSpec();
// TODO(beng): Need to do the following additional policy validation of
// whether this instance is allowed to connect using:
// - a non-null client_process_connection.
if (target.user_id() != identity_.user_id() &&
target.user_id() != mojom::kRootUserID &&
!HasCapability(connection_spec, kCapability_UserID)) {
LOG(ERROR) << "Instance: " << identity_.name()
<< " running as: " << identity_.user_id()
<< " attempting to connect to: " << target.name()
<< " as: " << target.user_id() << " without "
<< " the service:service_manager{user_id} capability.";
callback.Run(mojom::ConnectResult::ACCESS_DENIED,
mojom::kInheritUserID);
return false;
}
if (!target.instance().empty() &&
target.instance() != GetNamePath(target.name()) &&
!HasCapability(connection_spec, kCapability_InstanceName)) {
LOG(ERROR) << "Instance: " << identity_.name() << " attempting to "
<< "connect to " << target.name()
<< " using Instance name: " << target.instance()
<< " without the "
<< "service:service_manager{instance_name} capability.";
callback.Run(mojom::ConnectResult::ACCESS_DENIED, mojom::kInheritUserID);
return false;
}
if (allow_any_application_ ||
connection_spec.requires.find(target.name()) !=
connection_spec.requires.end()) {
return true;
}
LOG(ERROR) << "InterfaceProviderSpec prevented connection from: "
<< identity_.name() << " to: " << target.name();
callback.Run(mojom::ConnectResult::ACCESS_DENIED, mojom::kInheritUserID);
return false;
}
uint32_t GenerateUniqueID() const {
static uint32_t id = mojom::kInvalidInstanceID;
++id;
CHECK_NE(mojom::kInvalidInstanceID, id);
return id;
}
void PIDAvailable(base::ProcessId pid) {
if (pid == base::kNullProcessId) {
service_manager_->OnInstanceError(this);
return;
}
pid_ = pid;
service_manager_->NotifyPIDAvailable(identity_, pid_);
}
void OnServiceLost(
base::WeakPtr<service_manager::ServiceManager> service_manager) {
service_.reset();
OnConnectionLost(service_manager);
}
void OnConnectionLost(
base::WeakPtr<service_manager::ServiceManager> service_manager) {
// Any time a Connector is lost or we lose the Service connection, it
// may have been the last pipe using this Instance. If so, clean up.
if (service_manager && !service_) {
if (connectors_.empty())
service_manager->OnInstanceError(this);
else
service_manager->OnInstanceUnreachable(this);
}
}
void OnInitializeResponse(mojom::ConnectorRequest connector_request) {
if (connector_request.is_pending()) {
connectors_.AddBinding(this, std::move(connector_request));
connectors_.set_connection_error_handler(
base::Bind(&Instance::OnConnectionLost, base::Unretained(this),
service_manager_->GetWeakPtr()));
}
}
// Callback when NativeRunner completes.
void OnRunnerCompleted() {
if (!runner_.get())
return; // We're in the destructor.
service_manager_->OnInstanceError(this);
}
service_manager::ServiceManager* const service_manager_;
// An id that identifies this instance. Distinct from pid, as a single process
// may vend multiple application instances, and this object may exist before a
// process is launched.
const uint32_t id_;
const Identity identity_;
const InterfaceProviderSpecMap interface_provider_specs_;
const InterfaceProviderSpec empty_spec_;
const bool allow_any_application_;
std::unique_ptr<NativeRunner> runner_;
mojom::ServicePtr service_;
mojo::Binding<mojom::PIDReceiver> pid_receiver_binding_;
mojo::BindingSet<mojom::Connector> connectors_;
mojo::BindingSet<mojom::ServiceManager> service_manager_bindings_;
base::ProcessId pid_ = base::kNullProcessId;
Instance* parent_ = nullptr;
InstanceMap children_;
base::WeakPtrFactory<Instance> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(Instance);
};
// static
ServiceManager::TestAPI::TestAPI(ServiceManager* service_manager)
: service_manager_(service_manager) {}
ServiceManager::TestAPI::~TestAPI() {}
bool ServiceManager::TestAPI::HasRunningInstanceForName(
const std::string& name) const {
for (const auto& entry : service_manager_->identity_to_instance_) {
if (entry.first.name() == name)
return true;
}
return false;
}
////////////////////////////////////////////////////////////////////////////////
// ServiceManager, public:
ServiceManager::ServiceManager(
std::unique_ptr<NativeRunnerFactory> native_runner_factory,
mojom::ServicePtr catalog)
: native_runner_factory_(std::move(native_runner_factory)),
weak_ptr_factory_(this) {
mojom::ServicePtr service;
mojom::ServiceRequest request = mojo::GetProxy(&service);
InterfaceProviderSpec spec;
spec.provides[kCapability_ServiceManager].insert(
"service_manager::mojom::ServiceManager");
spec.requires["*"].insert("service_manager:service_factory");
spec.requires["service:catalog"].insert("service_manager:resolver");
spec.requires["service:tracing"].insert("app");
InterfaceProviderSpecMap specs;
specs[mojom::kServiceManager_ConnectorSpec] = spec;
service_manager_instance_ =
CreateInstance(Identity(), CreateServiceManagerIdentity(), specs);
service_manager_instance_->StartWithService(std::move(service));
singletons_.insert(kServiceManagerName);
service_context_.reset(new ServiceContext(this, std::move(request)));
if (catalog)
InitCatalog(std::move(catalog));
}
ServiceManager::~ServiceManager() {
// Ensure we tear down the ServiceManager instance last. This is to avoid
// hitting bindings DCHECKs, since the ServiceManager or Catalog may at any
// given time own in-flight responders for Instances' Connector requests.
std::unique_ptr<Instance> service_manager_instance;
auto iter = root_instances_.find(service_manager_instance_);
DCHECK(iter != root_instances_.end());
service_manager_instance = std::move(iter->second);
root_instances_.clear();
}
void ServiceManager::SetServiceOverrides(
std::unique_ptr<ServiceOverrides> overrides) {
service_overrides_ = std::move(overrides);
}
void ServiceManager::SetInstanceQuitCallback(
base::Callback<void(const Identity&)> callback) {
instance_quit_callback_ = callback;
}
void ServiceManager::Connect(std::unique_ptr<ConnectParams> params) {
Connect(std::move(params), nullptr, nullptr);
}
mojom::ServiceRequest ServiceManager::StartEmbedderService(
const std::string& name) {
std::unique_ptr<ConnectParams> params(new ConnectParams);
Identity embedder_identity(name, mojom::kRootUserID);
params->set_source(embedder_identity);
params->set_target(embedder_identity);
mojom::ServicePtr service;
mojom::ServiceRequest request = mojo::GetProxy(&service);
Connect(std::move(params), std::move(service), nullptr);
return request;
}
////////////////////////////////////////////////////////////////////////////////
// ServiceManager, Service implementation:
bool ServiceManager::OnConnect(const ServiceInfo& remote_info,
InterfaceRegistry* registry) {
// The only interface we expose is mojom::ServiceManager, and access to this
// interface is brokered by a policy specific to each caller, managed by the
// caller's instance. Here we look to see who's calling, and forward to the
// caller's instance to continue.
Instance* instance = nullptr;
for (const auto& entry : identity_to_instance_) {
if (entry.first == remote_info.identity) {
instance = entry.second;
break;
}
}
DCHECK(instance);
return instance->OnConnect(remote_info, registry);
}
////////////////////////////////////////////////////////////////////////////////
// ServiceManager, private:
void ServiceManager::InitCatalog(mojom::ServicePtr catalog) {
// TODO(beng): It'd be great to build this from the manifest, however there's
// a bit of a chicken-and-egg problem.
InterfaceProviderSpec spec;
spec.provides["app"].insert("filesystem::mojom::Directory");
spec.provides["catalog:catalog"].insert("catalog::mojom::Catalog");
spec.provides["service_manager:resolver"].insert(
"service_manager::mojom::Resolver");
spec.provides["control"].insert("catalog::mojom::CatalogControl");
InterfaceProviderSpecMap specs;
specs[mojom::kServiceManager_ConnectorSpec] = spec;
Instance* instance = CreateInstance(
CreateServiceManagerIdentity(), CreateCatalogIdentity(), specs);
singletons_.insert(kCatalogName);
instance->StartWithService(std::move(catalog));
}
mojom::Resolver* ServiceManager::GetResolver(const Identity& identity) {
auto iter = identity_to_resolver_.find(identity);
if (iter != identity_to_resolver_.end())
return iter->second.get();
mojom::ResolverPtr resolver_ptr;
ConnectToInterface(this, identity, CreateCatalogIdentity(), &resolver_ptr);
mojom::Resolver* resolver = resolver_ptr.get();
identity_to_resolver_[identity] = std::move(resolver_ptr);
return resolver;
}
void ServiceManager::OnInstanceError(Instance* instance) {
// We never clean up the ServiceManager's own instance.
if (instance == service_manager_instance_)
return;
const Identity identity = instance->identity();
identity_to_instance_.erase(identity);
if (instance->parent()) {
// Deletes |instance|.
instance->parent()->RemoveChild(instance);
} else {
auto it = root_instances_.find(instance);
DCHECK(it != root_instances_.end());
// Deletes |instance|.
root_instances_.erase(it);
}
}
void ServiceManager::OnInstanceUnreachable(Instance* instance) {
// If an Instance becomes unreachable, new connection requests for this
// identity will elicit a new Instance instantiation. The unreachable instance
// remains alive.
identity_to_instance_.erase(instance->identity());
}
void ServiceManager::OnInstanceStopped(const Identity& identity) {
listeners_.ForAllPtrs([identity](mojom::ServiceManagerListener* listener) {
listener->OnServiceStopped(identity);
});
if (!instance_quit_callback_.is_null())
instance_quit_callback_.Run(identity);
}
void ServiceManager::Connect(std::unique_ptr<ConnectParams> params,
mojom::ServicePtr service,
base::WeakPtr<Instance> source_instance) {
TRACE_EVENT_INSTANT1("service_manager", "ServiceManager::Connect",
TRACE_EVENT_SCOPE_THREAD, "original_name",
params->target().name());
DCHECK(IsValidName(params->target().name()));
DCHECK(base::IsValidGUID(params->target().user_id()));
DCHECK_NE(mojom::kInheritUserID, params->target().user_id());
DCHECK(!service.is_bound() || !identity_to_instance_.count(params->target()));
// Connect to an existing matching instance, if possible.
if (!service.is_bound() && ConnectToExistingInstance(&params))
return;
// The catalog needs to see the source identity as that of the originating
// app so it loads the correct store. Since the catalog is itself run as root
// when this re-enters Connect() it'll be handled by
// ConnectToExistingInstance().
mojom::Resolver* resolver =
GetResolver(Identity(kServiceManagerName, params->target().user_id()));
std::string name = params->target().name();
resolver->ResolveMojoName(
name,
base::Bind(&service_manager::ServiceManager::OnGotResolvedName,
weak_ptr_factory_.GetWeakPtr(), base::Passed(&params),
base::Passed(&service), !!source_instance, source_instance));
}
ServiceManager::Instance* ServiceManager::GetExistingInstance(
const Identity& identity) const {
const auto& it = identity_to_instance_.find(identity);
Instance* instance = it != identity_to_instance_.end() ? it->second : nullptr;
if (instance)
return instance;
if (singletons_.find(identity.name()) != singletons_.end()) {
for (auto entry : identity_to_instance_) {
if (entry.first.name() == identity.name() &&
entry.first.instance() == identity.instance()) {
return entry.second;
}
}
}
return nullptr;
}
void ServiceManager::NotifyPIDAvailable(const Identity& identity,
base::ProcessId pid) {
listeners_.ForAllPtrs(
[identity, pid](mojom::ServiceManagerListener* listener) {
listener->OnServiceStarted(identity, pid);
});
}
bool ServiceManager::ConnectToExistingInstance(
std::unique_ptr<ConnectParams>* params) {
Instance* instance = GetExistingInstance((*params)->target());
return instance && instance->ConnectToService(params);
}
ServiceManager::Instance* ServiceManager::CreateInstance(
const Identity& source,
const Identity& target,
const InterfaceProviderSpecMap& specs) {
CHECK(target.user_id() != mojom::kInheritUserID);
auto instance = base::MakeUnique<Instance>(this, target, specs);
Instance* raw_instance = instance.get();
Instance* source_instance = GetExistingInstance(source);
if (source_instance)
source_instance->AddChild(std::move(instance));
else
root_instances_.insert(std::make_pair(raw_instance, std::move(instance)));
// NOTE: |instance| has been passed elsewhere. Use |raw_instance| from this
// point forward. It's safe for the extent of this method.
auto result =
identity_to_instance_.insert(std::make_pair(target, raw_instance));
DCHECK(result.second);
mojom::RunningServiceInfoPtr info = raw_instance->CreateRunningServiceInfo();
listeners_.ForAllPtrs([&info](mojom::ServiceManagerListener* listener) {
listener->OnServiceCreated(info.Clone());
});
return raw_instance;
}
void ServiceManager::AddListener(mojom::ServiceManagerListenerPtr listener) {
// TODO(beng): filter instances provided by those visible to this service.
std::vector<mojom::RunningServiceInfoPtr> instances;
instances.reserve(identity_to_instance_.size());
for (auto& instance : identity_to_instance_)
instances.push_back(instance.second->CreateRunningServiceInfo());
listener->OnInit(std::move(instances));
listeners_.AddPtr(std::move(listener));
}
void ServiceManager::CreateServiceWithFactory(const Identity& service_factory,
const std::string& name,
mojom::ServiceRequest request) {
mojom::ServiceFactory* factory = GetServiceFactory(service_factory);
factory->CreateService(std::move(request), name);
}
mojom::ServiceFactory* ServiceManager::GetServiceFactory(
const Identity& service_factory_identity) {
auto it = service_factories_.find(service_factory_identity);
if (it != service_factories_.end())
return it->second.get();
Identity source_identity(kServiceManagerName, mojom::kInheritUserID);
mojom::ServiceFactoryPtr factory;
ConnectToInterface(this, source_identity, service_factory_identity,
&factory);
mojom::ServiceFactory* factory_interface = factory.get();
factory.set_connection_error_handler(
base::Bind(&service_manager::ServiceManager::OnServiceFactoryLost,
weak_ptr_factory_.GetWeakPtr(), service_factory_identity));
service_factories_[service_factory_identity] = std::move(factory);
return factory_interface;
}
void ServiceManager::OnServiceFactoryLost(const Identity& which) {
// Remove the mapping.
auto it = service_factories_.find(which);
DCHECK(it != service_factories_.end());
service_factories_.erase(it);
}
void ServiceManager::OnGotResolvedName(std::unique_ptr<ConnectParams> params,
mojom::ServicePtr service,
bool has_source_instance,
base::WeakPtr<Instance> source_instance,
mojom::ResolveResultPtr result) {
// If this request was originated by a specific Instance and that Instance is
// no longer around, we ignore this response.
if (has_source_instance && !source_instance)
return;
std::string instance_name = params->target().instance();
if (instance_name == GetNamePath(params->target().name()) &&
result->qualifier != GetNamePath(result->resolved_name)) {
instance_name = result->qualifier;
}
// |result->interface_provider_specs| can be empty when there is no manifest,
// e.g. for URL types not resolvable by the resolver.
InterfaceProviderSpec connection_spec = GetPermissiveInterfaceProviderSpec();
auto it = result->interface_provider_specs.find(
mojom::kServiceManager_ConnectorSpec);
if (it != result->interface_provider_specs.end())
connection_spec = it->second;
const std::string user_id =
HasCapability(connection_spec, kCapability_AllUsers)
? base::GenerateGUID() : params->target().user_id();
const Identity target(params->target().name(), user_id, instance_name);
params->set_target(target);
// It's possible that when this manifest request was issued, another one was
// already in-progress and completed by the time this one did, and so the
// requested application may already be running.
if (ConnectToExistingInstance(&params))
return;
Identity source = params->source();
// Services that request "all_users" class from the Service Manager are
// allowed to field connection requests from any user. They also run with a
// synthetic user id generated here. The user id provided via Connect() is
// ignored. Additionally services with the "all_users" class are not tied to
// the lifetime of the service that started them, instead they are owned by
// the Service Manager.
Identity source_identity_for_creation;
if (HasCapability(connection_spec, kCapability_AllUsers)) {
singletons_.insert(target.name());
source_identity_for_creation = CreateServiceManagerIdentity();
} else {
source_identity_for_creation = params->source();
}
mojom::ClientProcessConnectionPtr client_process_connection =
params->TakeClientProcessConnection();
Instance* instance = CreateInstance(source_identity_for_creation,
target, result->interface_provider_specs);
// Below are various paths through which a new Instance can be bound to a
// Service proxy.
if (service.is_bound()) {
// If a ServicePtr was provided, there's no more work to do: someone
// is already holding a corresponding ServiceRequest.
instance->StartWithService(std::move(service));
} else if (!client_process_connection.is_null()) {
// Likewise if a ClientProcessConnection was given via Connect(), it
// provides the Service proxy to use.
instance->StartWithClientProcessConnection(
std::move(client_process_connection));
} else {
// Otherwise we create a new Service pipe.
mojom::ServiceRequest request = GetProxy(&service);
CHECK(!result->package_path.empty());
// The catalog was unable to read a manifest for this service. We can't do
// anything more.
// TODO(beng): There may be some cases where it's valid to have an empty
// spec, so we should probably include a return value in |result|.
if (result->interface_provider_specs.empty()) {
if (!params->connect_callback().is_null())
params->connect_callback().Run(mojom::ConnectResult::ACCESS_DENIED, "");
return;
}
if (target.name() != result->resolved_name) {
instance->StartWithService(std::move(service));
Identity factory(result->resolved_name, target.user_id(),
instance_name);
CreateServiceWithFactory(factory, target.name(), std::move(request));
} else {
base::FilePath package_path;
if (!service_overrides_ || !service_overrides_->GetExecutablePathOverride(
target.name(), &package_path)) {
package_path = result->package_path;
}
Identity source_instance_identity;
base::debug::Alias(&has_source_instance);
base::debug::Alias(&package_path);
base::debug::Alias(&source);
base::debug::Alias(&target);
if (source_instance)
source_instance_identity = source_instance->identity();
base::debug::Alias(&source_instance_identity);
#if defined(GOOGLE_CHROME_BUILD)
// We do not currently want to hit this code path in production, but it's
// happening somehow. https://crbug.com/649673.
CHECK(false);
#endif
instance->StartWithFilePath(package_path);
}
}
// Now that the instance has a Service, we can connect to it.
bool connected = instance->ConnectToService(&params);
DCHECK(connected);
}
base::WeakPtr<ServiceManager> ServiceManager::GetWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
} // namespace service_manager