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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
fuchsia_web / webinstance_host / web_instance_host.cc [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "fuchsia_web/webinstance_host/web_instance_host.h"
#include <fuchsia/component/decl/cpp/fidl.h>
#include <fuchsia/io/cpp/fidl.h>
#include <lib/fit/function.h>
#include <lib/sys/cpp/component_context.h>
#include <lib/sys/cpp/outgoing_directory.h>
#include <lib/sys/cpp/service_directory.h>
#include <lib/vfs/cpp/pseudo_dir.h>
#include <lib/vfs/cpp/pseudo_file.h>
#include <lib/vfs/cpp/remote_dir.h>
#include <memory>
#include <string>
#include <string_view>
#include <utility>
#include <vector>
#include "base/check.h"
#include "base/containers/fixed_flat_map.h"
#include "base/fuchsia/fuchsia_logging.h"
#include "base/fuchsia/process_context.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/raw_ref.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/types/expected.h"
#include "base/types/expected_macros.h"
#include "components/fuchsia_component_support/serialize_arguments.h"
#include "fuchsia_web/webengine/switches.h"
#include "fuchsia_web/webinstance_host/web_instance_host_constants.h"
#include "fuchsia_web/webinstance_host/web_instance_host_internal.h"
namespace {
namespace fcdecl = ::fuchsia::component::decl;
// The name of the component collection hosting the instances.
constexpr char kCollectionName[] = "web_instances";
// Returns the default package URL for WebEngine.
// It is possible that this is not the actual URL for the current package.
// The package URL for the current component cannot be obtained programmatically
// (see fxbug.dev/51490), and this should always work in production, which is
// when this is needed.
// TODO(crbug.com/42050282): Remove when a different mechanism is available.
// TODO(crbug.com/40248894): Replace with constant once `with_webui` is removed.
std::string GetAbsoluteWebEnginePackageUrl(bool with_webui) {
return base::StrCat({"fuchsia-pkg://fuchsia.com/",
(with_webui ? "web_engine_with_webui" : "web_engine")});
}
// Returns the URL of the WebInstance component to be launched.
// `with_webui` is a test-only feature for `web_engine_shell` that causes
// `web_instance.cm` to be run from the `web_engine_with_webui` package rather
// than the production `web_engine` package.
std::string MakeWebInstanceComponentUrl(bool use_relative_url,
bool with_webui,
std::string_view component_name) {
return base::StrCat(
{(use_relative_url ? "" : GetAbsoluteWebEnginePackageUrl(with_webui)),
"#meta/", component_name});
}
// Returns the "/web_instances" dir from the component's outgoing directory,
// creating it if necessary.
vfs::PseudoDir* GetWebInstancesCollectionDir(
sys::OutgoingDirectory& outgoing_directory) {
return outgoing_directory.GetOrCreateDirectory(kCollectionName);
}
// Returns an instance's name given its unique id.
std::string InstanceNameFromId(const base::Uuid& id) {
return base::StrCat({kCollectionName, "_", id.AsLowercaseString()});
}
void DestroyInstance(fuchsia::component::Realm& realm,
const std::string& name) {
realm.DestroyChild(
fcdecl::ChildRef{.name = name, .collection = kCollectionName},
[](::fuchsia::component::Realm_DestroyChild_Result destroy_result) {
DCHECK(!destroy_result.is_err())
<< static_cast<uint32_t>(destroy_result.err());
});
}
void DestroyInstanceDirectory(vfs::PseudoDir* instances_dir,
const std::string& name) {
zx_status_t status = instances_dir->RemoveEntry(name);
ZX_DCHECK(status == ZX_OK, status);
}
struct Instance {
base::Uuid id;
fuchsia::component::BinderPtr binder_ptr;
Instance(base::Uuid id, fuchsia::component::BinderPtr binder_ptr)
: id(std::move(id)), binder_ptr(std::move(binder_ptr)) {}
};
// A helper class for building a web_instance as a dynamic child of the
// component that hosts WebInstanceHost.
class InstanceBuilder {
public:
static base::expected<std::unique_ptr<InstanceBuilder>, zx_status_t> Create(
sys::OutgoingDirectory& outgoing_directory,
fuchsia::component::Realm& realm,
const base::CommandLine& launch_args);
~InstanceBuilder();
base::CommandLine& args() { return args_; }
// Offers the services named in `services` to the instance as dynamic
// protocol offers.
void AppendOffersForServices(const std::vector<std::string>& services);
// Serves `service_directory` to the instance as the 'svc' read-write
// directory.
void ServeServiceDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> service_directory);
// Offers the read-only root-ssl-certificates directory from the parent.
void ServeRootSslCertificates();
// Serves `data_directory` to the instance as the `data` read-write
// directory.
void ServeDataDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> data_directory);
// Serves the directories in `providers` under the `content-directories`
// read-only directory.
zx_status_t ServeContentDirectories(
std::vector<fuchsia::web::ContentDirectoryProvider> providers);
// Serves `cdm_data_directory` to the instance as the `cdm_data` read-write
// directory.
void ServeCdmDataDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> cdm_data_directory);
// Serves `tmp_dir` to the instance as the `tmp` read-write directory.
void ServeTmpDirectory(fuchsia::io::DirectoryHandle tmp_dir);
// Sets an optional request to connect to the instance's `fuchsia.web/Debug`
// protocol upon `Build()`.
void SetDebugRequest(
fidl::InterfaceRequest<fuchsia::web::Debug> debug_request);
// Builds and returns the instance, or an error status value.
// `fuchsia.web/Debug` will be published in `outgoing_services_request` if
// `SetDebugRequest()` has been called.
Instance Build(
std::string_view instance_component_url,
fidl::InterfaceRequest<fuchsia::io::Directory> outgoing_services_request);
private:
InstanceBuilder(sys::OutgoingDirectory& outgoing_directory,
fuchsia::component::Realm& realm,
base::Uuid id,
std::string name,
vfs::PseudoDir* instance_dir,
const base::CommandLine& launch_args);
// Serves the arguments from the builder's `args()` command line in a file
// named `argv.json` via the instance's `command-line-config` read-only
// directory.
void ServeCommandLine();
// Adds offers from `void` for any optionally-offered directories that are not
// being served for the invoker.
void OfferMissingDirectoriesFromVoid();
// The directories that are optionally offered to `web_instance.cm` based on
// the invoker's configuration.
enum class OptionalDirectory {
kFirst = 0,
kCdmData = kFirst,
kCommandLineConfig,
kContentDirectories,
kData,
kTmp,
kCount,
};
// Returns a bitmask for `directory` for use with the `served_directories_`
// bitfield.
static uint32_t directory_bitmask(OptionalDirectory directory) {
return 1u << static_cast<int>(directory);
}
// Returns true if the host will serve `directory` to the instance.
bool is_directory_served(OptionalDirectory directory) const {
return served_directories_ & directory_bitmask(directory);
}
// Records that `directory` will be served to the instance.
void set_directory_served(OptionalDirectory directory) {
served_directories_ |= directory_bitmask(directory);
}
// Returns the capability and directory name for `directory`.
static std::string_view GetDirectoryName(OptionalDirectory directory);
// Serves `fs_directory` as `directory`. `fs_directory` may be specific to
// this instance (e.g., persistent data storage) or required only in
// particular configurations (e.g., CDM data storage), to the instance. Most
// common read-only directories (e.g., "root-ssl-certificates") should instead
// be offered statically to the `web_instances` collection.
void ServeOptionalDirectory(
OptionalDirectory directory,
std::unique_ptr<vfs::Node> fs_directory,
fuchsia::io::Operations rights);
// Offers the directory `directory` from `void`.
void OfferOptionalDirectoryFromVoid(OptionalDirectory directory);
// Serves the directory `name` as `offer` in the instance's subtree as a
// read-only or a read-write (if `writeable`) directory.
void ServeDirectory(std::string_view name,
std::unique_ptr<vfs::Node> fs_directory,
fuchsia::io::Operations rights);
const raw_ref<sys::OutgoingDirectory> outgoing_directory_;
const raw_ref<fuchsia::component::Realm> realm_;
const base::Uuid id_;
const std::string name_;
raw_ptr<vfs::PseudoDir> instance_dir_;
base::CommandLine args_;
// A bitfield of `directory_bitmask()` values indicating which optional
// directories are being served to the instance.
uint32_t served_directories_ = 0;
std::vector<fuchsia::component::decl::Offer> dynamic_offers_;
fidl::InterfaceRequest<fuchsia::web::Debug> debug_request_;
};
// static
base::expected<std::unique_ptr<InstanceBuilder>, zx_status_t>
InstanceBuilder::Create(sys::OutgoingDirectory& outgoing_directory,
fuchsia::component::Realm& realm,
const base::CommandLine& launch_args) {
// Pick a unique identifier for the new instance.
base::Uuid instance_id = base::Uuid::GenerateRandomV4();
auto instance_name = InstanceNameFromId(instance_id);
// Create a pseudo-directory to contain the various directory capabilities
// routed to this instance; i.e., `cdm_data`, `command-line-config`,
// `content-directories`, `data`, and `tmp`. The builder is responsible for
// removing it in case of error until `Build()` succeeds, at which point it is
// the caller's responsibility to remove it when the instance goes away.
auto instance_dir = std::make_unique<vfs::PseudoDir>();
auto* const instance_dir_ptr = instance_dir.get();
if (zx_status_t status =
GetWebInstancesCollectionDir(outgoing_directory)
->AddEntry(instance_name, std::move(instance_dir));
status != ZX_OK) {
ZX_DLOG(ERROR, status) << "AddEntry(name)";
return base::unexpected(status);
}
return base::WrapUnique(new InstanceBuilder(
outgoing_directory, realm, std::move(instance_id),
std::move(instance_name), instance_dir_ptr, launch_args));
}
InstanceBuilder::InstanceBuilder(sys::OutgoingDirectory& outgoing_directory,
fuchsia::component::Realm& realm,
base::Uuid id,
std::string name,
vfs::PseudoDir* instance_dir,
const base::CommandLine& launch_args)
: outgoing_directory_(outgoing_directory),
realm_(realm),
id_(std::move(id)),
name_(std::move(name)),
instance_dir_(instance_dir),
args_(launch_args) {}
InstanceBuilder::~InstanceBuilder() {
if (instance_dir_) {
DestroyInstanceDirectory(GetWebInstancesCollectionDir(*outgoing_directory_),
name_);
}
}
void InstanceBuilder::AppendOffersForServices(
const std::vector<std::string>& services) {
for (const auto& service_name : services) {
dynamic_offers_.push_back(fcdecl::Offer::WithProtocol(std::move(
fcdecl::OfferProtocol()
.set_source(fcdecl::Ref::WithParent({}))
.set_source_name(service_name)
.set_target_name(service_name)
.set_dependency_type(fcdecl::DependencyType::STRONG)
.set_availability(fcdecl::Availability::SAME_AS_TARGET))));
}
}
void InstanceBuilder::ServeServiceDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> service_directory) {
DCHECK(instance_dir_);
ServeDirectory("svc",
std::make_unique<vfs::RemoteDir>(std::move(service_directory)),
fuchsia::io::R_STAR_DIR);
}
void InstanceBuilder::ServeDataDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> data_directory) {
DCHECK(instance_dir_);
ServeOptionalDirectory(
OptionalDirectory::kData,
std::make_unique<vfs::RemoteDir>(std::move(data_directory)),
fuchsia::io::RW_STAR_DIR);
}
zx_status_t InstanceBuilder::ServeContentDirectories(
std::vector<fuchsia::web::ContentDirectoryProvider> providers) {
DCHECK(instance_dir_);
auto content_dirs = std::make_unique<vfs::PseudoDir>();
for (auto& provider : providers) {
zx_status_t status = content_dirs->AddEntry(
provider.name(), std::make_unique<vfs::RemoteDir>(
std::move(*provider.mutable_directory())));
if (status != ZX_OK) {
ZX_LOG(ERROR, status)
<< "Conflicting content directory name \"" << provider.name() << "\"";
return status;
}
}
ServeOptionalDirectory(OptionalDirectory::kContentDirectories,
std::move(content_dirs), fuchsia::io::R_STAR_DIR);
return ZX_OK;
}
void InstanceBuilder::ServeCdmDataDirectory(
fidl::InterfaceHandle<fuchsia::io::Directory> cdm_data_directory) {
DCHECK(instance_dir_);
ServeOptionalDirectory(
OptionalDirectory::kCdmData,
std::make_unique<vfs::RemoteDir>(std::move(cdm_data_directory)),
fuchsia::io::RW_STAR_DIR);
}
void InstanceBuilder::ServeTmpDirectory(fuchsia::io::DirectoryHandle tmp_dir) {
ServeOptionalDirectory(OptionalDirectory::kTmp,
std::make_unique<vfs::RemoteDir>(std::move(tmp_dir)),
fuchsia::io::RW_STAR_DIR);
}
void InstanceBuilder::SetDebugRequest(
fidl::InterfaceRequest<fuchsia::web::Debug> debug_request) {
debug_request_ = std::move(debug_request);
}
Instance InstanceBuilder::Build(
std::string_view instance_component_url,
fidl::InterfaceRequest<fuchsia::io::Directory> outgoing_services_request) {
ServeCommandLine();
// Create dynamic offers from `void` for any optional directories
// expected by web_instance.cm that are not being provided by the invoker.
OfferMissingDirectoriesFromVoid();
fcdecl::Child child_decl;
child_decl.set_name(name_);
child_decl.set_url(std::string(instance_component_url));
child_decl.set_startup(fcdecl::StartupMode::LAZY);
::fuchsia::component::CreateChildArgs create_child_args;
create_child_args.set_dynamic_offers(std::move(dynamic_offers_));
realm_->CreateChild(
fcdecl::CollectionRef{.name = kCollectionName}, std::move(child_decl),
std::move(create_child_args),
[](::fuchsia::component::Realm_CreateChild_Result create_result) {
LOG_IF(ERROR, create_result.is_err())
<< "CreateChild error: "
<< static_cast<uint32_t>(create_result.err());
});
fidl::InterfaceHandle<fuchsia::io::Directory> instance_services_handle;
realm_->OpenExposedDir(
fcdecl::ChildRef{.name = name_, .collection = kCollectionName},
instance_services_handle.NewRequest(),
[](::fuchsia::component::Realm_OpenExposedDir_Result open_result) {
LOG_IF(ERROR, open_result.is_err())
<< "OpenExposedDir error: "
<< static_cast<uint32_t>(open_result.err());
});
sys::ServiceDirectory instance_services(std::move(instance_services_handle));
fuchsia::component::BinderPtr binder_ptr;
instance_services.Connect(binder_ptr.NewRequest());
if (debug_request_) {
instance_services.Connect(std::move(debug_request_));
}
instance_services.CloneChannel(std::move(outgoing_services_request));
// Ownership of the child and `instance_dir_` are now passed to the caller.
instance_dir_ = nullptr;
return Instance(id_, std::move(binder_ptr));
}
void InstanceBuilder::ServeCommandLine() {
DCHECK(instance_dir_);
if (args_.argv().size() < 2) {
return;
}
auto config_dir = std::make_unique<vfs::PseudoDir>();
std::vector<uint8_t> data(
fuchsia_component_support::SerializeArguments(args_));
const auto data_size = data.size();
zx_status_t status = config_dir->AddEntry(
"argv.json",
std::make_unique<vfs::PseudoFile>(
data_size, [data = std::move(data)](std::vector<uint8_t>* output,
size_t max_bytes) {
DCHECK_EQ(max_bytes, data.size());
*output = data;
return ZX_OK;
}));
ZX_DCHECK(status == ZX_OK, status);
ServeOptionalDirectory(OptionalDirectory::kCommandLineConfig,
std::move(config_dir), fuchsia::io::R_STAR_DIR);
}
void InstanceBuilder::OfferMissingDirectoriesFromVoid() {
for (auto directory = OptionalDirectory::kFirst;
directory != OptionalDirectory::kCount;
directory =
static_cast<OptionalDirectory>(static_cast<int>(directory) + 1)) {
if (!is_directory_served(directory)) {
OfferOptionalDirectoryFromVoid(directory);
}
}
}
// static
std::string_view InstanceBuilder::GetDirectoryName(
OptionalDirectory directory) {
static constexpr auto kNames =
base::MakeFixedFlatMap<OptionalDirectory, std::string_view>({
{OptionalDirectory::kCdmData, "cdm_data"},
{OptionalDirectory::kCommandLineConfig, "command-line-config"},
{OptionalDirectory::kContentDirectories, "content-directories"},
{OptionalDirectory::kData, "data"},
{OptionalDirectory::kTmp, "tmp"},
});
static_assert(kNames.size() == static_cast<int>(OptionalDirectory::kCount));
return kNames.at(directory);
}
void InstanceBuilder::ServeOptionalDirectory(
OptionalDirectory directory,
std::unique_ptr<vfs::Node> fs_directory,
fuchsia::io::Operations rights) {
DCHECK(instance_dir_);
DCHECK(!is_directory_served(directory));
set_directory_served(directory);
ServeDirectory(GetDirectoryName(directory), std::move(fs_directory), rights);
}
void InstanceBuilder::OfferOptionalDirectoryFromVoid(
OptionalDirectory directory) {
DCHECK(!is_directory_served(directory));
const auto name = GetDirectoryName(directory);
dynamic_offers_.push_back(fcdecl::Offer::WithDirectory(
std::move(fcdecl::OfferDirectory()
.set_source(fcdecl::Ref::WithVoidType({}))
.set_source_name(std::string(name))
.set_target_name(std::string(name))
.set_dependency_type(fcdecl::DependencyType::STRONG)
.set_availability(fcdecl::Availability::OPTIONAL))));
}
void InstanceBuilder::ServeDirectory(
std::string_view name,
std::unique_ptr<vfs::Node> fs_directory,
fuchsia::io::Operations rights) {
DCHECK(instance_dir_);
zx_status_t status =
instance_dir_->AddEntry(std::string(name), std::move(fs_directory));
ZX_DCHECK(status == ZX_OK, status);
dynamic_offers_.push_back(fcdecl::Offer::WithDirectory(
std::move(fcdecl::OfferDirectory()
.set_source(fcdecl::Ref::WithSelf({}))
.set_source_name(kCollectionName)
.set_target_name(std::string(name))
.set_rights(rights)
.set_subdir(base::StrCat({name_, "/", name}))
.set_dependency_type(fcdecl::DependencyType::STRONG)
.set_availability(fcdecl::Availability::REQUIRED))));
}
void HandleCdmDataDirectoryParam(InstanceBuilder& builder,
fuchsia::web::CreateContextParams& params) {
if (!params.has_cdm_data_directory()) {
return;
}
static constexpr char kCdmDataPath[] = "/cdm_data";
builder.args().AppendSwitchNative(switches::kCdmDataDirectory, kCdmDataPath);
builder.ServeCdmDataDirectory(
std::move(*params.mutable_cdm_data_directory()));
if (params.has_cdm_data_quota_bytes()) {
builder.args().AppendSwitchNative(
switches::kCdmDataQuotaBytes,
base::NumberToString(params.cdm_data_quota_bytes()));
}
}
void HandleDataDirectoryParam(InstanceBuilder& builder,
fuchsia::web::CreateContextParams& params) {
if (!params.has_data_directory()) {
// Caller requested a web instance without any peristence.
builder.args().AppendSwitch(switches::kIncognito);
return;
}
builder.ServeDataDirectory(std::move(*params.mutable_data_directory()));
if (params.has_data_quota_bytes()) {
builder.args().AppendSwitchNative(
switches::kDataQuotaBytes,
base::NumberToString(params.data_quota_bytes()));
}
}
bool HandleContentDirectoriesParam(InstanceBuilder& builder,
fuchsia::web::CreateContextParams& params) {
if (!params.has_content_directories()) {
return true;
}
for (const auto& directory : params.content_directories()) {
if (!IsValidContentDirectoryName(directory.name())) {
DLOG(ERROR) << "Invalid directory name: " << directory.name();
return false;
}
}
builder.args().AppendSwitch(switches::kEnableContentDirectories);
return builder.ServeContentDirectories(
std::move(*params.mutable_content_directories())) == ZX_OK;
}
} // namespace
WebInstanceHost::WebInstanceHost(sys::OutgoingDirectory& outgoing_directory,
bool is_web_instance_component_in_same_package)
: outgoing_directory_(outgoing_directory),
is_web_instance_component_in_same_package_(
is_web_instance_component_in_same_package) {}
WebInstanceHost::~WebInstanceHost() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
Uninitialize();
}
zx_status_t WebInstanceHost::CreateInstanceForContextWithCopiedArgsAndUrl(
fuchsia::web::CreateContextParams params,
fidl::InterfaceRequest<fuchsia::io::Directory> outgoing_services_request,
base::CommandLine extra_args,
std::string_view component_name,
std::vector<std::string> services_to_offer) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
if (!is_initialized()) {
Initialize();
}
ASSIGN_OR_RETURN(auto builder,
InstanceBuilder::Create(*outgoing_directory_, *realm_,
std::move(extra_args)));
if (zx_status_t status = AppendLaunchArgs(params, builder->args());
status != ZX_OK) {
return status;
}
// Only one method of providing services should be used.
CHECK_NE(!services_to_offer.empty(), params.has_service_directory());
if (!services_to_offer.empty()) {
builder->AppendOffersForServices(services_to_offer);
} else {
builder->ServeServiceDirectory(
std::move(*params.mutable_service_directory()));
}
// The `config-data` directory is statically offered to all instances.
// The `root-ssl-certificates` directory is statically offered to all
// instances regardless of whether networking is requested.
HandleCdmDataDirectoryParam(*builder, params);
HandleDataDirectoryParam(*builder, params);
if (!HandleContentDirectoriesParam(*builder, params)) {
return ZX_ERR_INVALID_ARGS;
}
// TODO(crbug.com/40882309): Replace this with normal routing of tmp from
// web_engine_shell's parent down to web_instance.
if (tmp_dir_.is_valid()) {
builder->ServeTmpDirectory(std::move(tmp_dir_));
}
// If one or more Debug protocol clients are active then enable debugging,
// and connect the instance to the fuchsia.web.Debug proxy.
if (debug_proxy_.has_clients()) {
builder->args().AppendSwitch(switches::kEnableRemoteDebugMode);
fidl::InterfaceHandle<fuchsia::web::Debug> debug_handle;
builder->SetDebugRequest(debug_handle.NewRequest());
debug_proxy_.RegisterInstance(std::move(debug_handle));
}
const bool with_webui =
base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kWithWebui);
auto component_url_to_launch = MakeWebInstanceComponentUrl(
is_web_instance_component_in_same_package_, with_webui, component_name);
auto component_url_to_register = component_url_to_launch;
if (is_web_instance_component_in_same_package_) {
// RegisterWebInstanceProductData() requires an absolute component URL, but
// the package URL for the current component cannot be obtained
// programmatically (see fxbug.dev/51490). Use the default absolute package
// URL for WebEngine; this should always work in production, which is
// when registration is needed.
// TODO(crbug.com/42050282): Remove when a different mechanism is available.
component_url_to_register =
MakeWebInstanceComponentUrl(false, with_webui, component_name);
}
// Ensure WebInstance is registered before launching it.
RegisterWebInstanceProductData(component_url_to_register);
auto instance = builder->Build(component_url_to_launch,
std::move(outgoing_services_request));
// Monitor the instance's Binder to track its destruction.
instance.binder_ptr.set_error_handler(
[this, id = instance.id](zx_status_t status) {
this->OnComponentBinderClosed(id, status);
});
instances_.emplace(std::move(instance.id), std::move(instance.binder_ptr));
return ZX_OK;
}
void WebInstanceHost::Initialize() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
DCHECK(!realm_);
zx_status_t status =
base::ComponentContextForProcess()->svc()->Connect(realm_.NewRequest());
ZX_CHECK(status == ZX_OK, status) << "Connect(fuchsia.component/Realm)";
realm_.set_error_handler(
fit::bind_member(this, &WebInstanceHost::OnRealmError));
}
void WebInstanceHost::Uninitialize() {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Destroy all child instances and each one's outgoing directory subtree.
auto* const instances_dir =
GetWebInstancesCollectionDir(*outgoing_directory_);
for (auto& [id, binder_ptr] : instances_) {
const std::string name(InstanceNameFromId(id));
if (realm_) {
DestroyInstance(*realm_, name);
}
DestroyInstanceDirectory(instances_dir, name);
binder_ptr.Unbind();
}
instances_.clear();
realm_.Unbind();
// Note: the entry in the outgoing directory for the top-level instances dir
// is leaked in support of having multiple hosts active in a single process.
}
void WebInstanceHost::OnRealmError(zx_status_t status) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
ZX_LOG(ERROR, status) << "RealmBuilder channel error";
Uninitialize();
}
void WebInstanceHost::OnComponentBinderClosed(const base::Uuid& id,
zx_status_t status) {
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);
// Destroy the child instance.
const std::string name(InstanceNameFromId(id));
DestroyInstance(*realm_, name);
// Drop the directory subtree for the child instance.
DestroyInstanceDirectory(GetWebInstancesCollectionDir(*outgoing_directory_),
name);
// Drop the hold on the instance's Binder. Note: destroying the InterfacePtr
// here also deletes the lambda into which `id` was bound, so `id` must not
// be touched after this next statement.
auto count = instances_.erase(id);
DCHECK_EQ(count, 1UL);
if (instances_.empty()) {
Uninitialize();
}
}
WebInstanceHostWithServicesFromThisComponent::
WebInstanceHostWithServicesFromThisComponent(
sys::OutgoingDirectory& outgoing_directory,
bool is_web_instance_component_in_same_package)
: WebInstanceHost(outgoing_directory,
is_web_instance_component_in_same_package) {}
zx_status_t WebInstanceHostWithServicesFromThisComponent::
CreateInstanceForContextWithCopiedArgs(
fuchsia::web::CreateContextParams params,
fidl::InterfaceRequest<fuchsia::io::Directory>
outgoing_services_request,
const base::CommandLine& extra_args) {
// Services are offered from this Component, so they should not be provided.
CHECK(!params.has_service_directory());
std::vector<std::string> services;
const auto features = params.has_features()
? params.features()
: fuchsia::web::ContextFeatureFlags();
AppendDynamicServices(features, params.has_playready_key_system(), services);
return CreateInstanceForContextWithCopiedArgsAndUrl(
std::move(params), std::move(outgoing_services_request), extra_args,
"web_instance.cm", services);
}
WebInstanceHostWithoutServices::WebInstanceHostWithoutServices(
sys::OutgoingDirectory& outgoing_directory,
bool is_web_instance_component_in_same_package)
: WebInstanceHost(outgoing_directory,
is_web_instance_component_in_same_package) {}
zx_status_t
WebInstanceHostWithoutServices::CreateInstanceForContextWithCopiedArgs(
fuchsia::web::CreateContextParams params,
fidl::InterfaceRequest<fuchsia::io::Directory> outgoing_services_request,
const base::CommandLine& extra_args) {
// Services are not offered from this Component, so they must be provided.
CHECK(params.has_service_directory());
// Web UI resources are not supported with a service directory.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kWithWebui)) {
return ZX_ERR_INVALID_ARGS;
}
return CreateInstanceForContextWithCopiedArgsAndUrl(
std::move(params), std::move(outgoing_services_request), extra_args,
"web_instance_with_svc_directory.cm", {});
}