blob: bf7d266586f682d2a24563b7118dca3594dc4ef4 [file] [log] [blame]
Cody Schuffelen147b88e2019-09-09 16:00:11 -07001#include "host/commands/assemble_cvd/flags.h"
Cody Schuffelen20ecaca2019-01-29 17:43:38 -08002
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -08003#include <dirent.h>
4#include <sys/types.h>
5#include <sys/stat.h>
Cody Schuffelen25c46432020-01-14 13:49:52 -08006#include <sys/statvfs.h>
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -08007#include <unistd.h>
Cody Schuffelen25c46432020-01-14 13:49:52 -08008
Jorge E. Moreirae049b792019-12-18 18:17:48 -08009#include <algorithm>
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080010#include <iostream>
Ram Muthiahaad97c52019-08-14 17:05:01 -070011#include <fstream>
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080012
Cody Schuffelenf4a1cdb2019-11-13 16:51:16 -080013#include <android-base/strings.h>
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080014#include <gflags/gflags.h>
15#include <glog/logging.h>
16
17#include "common/libs/utils/environment.h"
18#include "common/libs/utils/files.h"
Cody Schuffelen147b88e2019-09-09 16:00:11 -070019#include "host/commands/assemble_cvd/boot_image_unpacker.h"
20#include "host/commands/assemble_cvd/data_image.h"
21#include "host/commands/assemble_cvd/image_aggregator.h"
22#include "host/commands/assemble_cvd/assembler_defs.h"
Cody Schuffelenb737ef52019-09-25 14:54:38 -070023#include "host/commands/assemble_cvd/super_image_mixer.h"
Cody Schuffelen605e6852019-10-16 16:22:24 -070024#include "host/libs/config/fetcher_config.h"
Jorge E. Moreiraba626622019-01-28 17:47:50 -080025#include "host/libs/vm_manager/crosvm_manager.h"
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080026#include "host/libs/vm_manager/qemu_manager.h"
27#include "host/libs/vm_manager/vm_manager.h"
28
Cody Schuffelen47c57852019-12-13 13:50:50 -080029using vsoc::ForCurrentInstance;
Cody Schuffelene71fa352019-09-10 16:11:58 -070030using cvd::AssemblerExitCodes;
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080031
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080032DEFINE_string(cache_image, "", "Location of the cache partition image.");
Paul Trautrimba8f8e92019-03-12 17:55:48 +090033DEFINE_string(metadata_image, "", "Location of the metadata partition image "
34 "to be generated.");
35DEFINE_int32(blank_metadata_image_mb, 16,
36 "The size of the blank metadata image to generate, MB.");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080037DEFINE_int32(cpus, 2, "Virtual CPU count.");
38DEFINE_string(data_image, "", "Location of the data partition image.");
39DEFINE_string(data_policy, "use_existing", "How to handle userdata partition."
40 " Either 'use_existing', 'create_if_missing', 'resize_up_to', or "
41 "'always_create'.");
42DEFINE_int32(blank_data_image_mb, 0,
43 "The size of the blank data image to generate, MB.");
Alistair Delva4c70e262019-10-15 14:33:59 -070044DEFINE_string(blank_data_image_fmt, "f2fs",
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080045 "The fs format for the blank data image. Used with mkfs.");
46DEFINE_string(qemu_gdb, "",
Matthias Maennich454d7872019-02-06 16:35:17 +000047 "Debug flag to pass to qemu. e.g. -qemu_gdb=tcp::1234");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080048
49DEFINE_int32(x_res, 720, "Width of the screen in pixels");
50DEFINE_int32(y_res, 1280, "Height of the screen in pixels");
51DEFINE_int32(dpi, 160, "Pixels per inch for the screen");
52DEFINE_int32(refresh_rate_hz, 60, "Screen refresh rate in Hertz");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080053DEFINE_string(kernel_path, "",
54 "Path to the kernel. Overrides the one from the boot image");
Ram Muthiahaad97c52019-08-14 17:05:01 -070055DEFINE_string(initramfs_path, "", "Path to the initramfs");
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -080056DEFINE_bool(decompress_kernel, false,
Jorge E. Moreira36294042019-06-07 15:23:18 -070057 "Whether to decompress the kernel image.");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080058DEFINE_string(extra_kernel_cmdline, "",
59 "Additional flags to put on the kernel command line");
60DEFINE_int32(loop_max_part, 7, "Maximum number of loop partitions");
Jorge E. Moreira300f97f2019-04-09 13:48:01 -070061DEFINE_bool(guest_enforce_security, true,
Cody Schuffelen79d4c192019-12-04 15:13:26 -080062 "Whether to run in enforcing mode (non permissive).");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080063DEFINE_bool(guest_audit_security, true,
64 "Whether to log security audits.");
Alistair Delva33b861f2019-12-26 12:23:59 -080065DEFINE_bool(guest_force_normal_boot, true,
66 "Whether to force the boot sequence to skip recovery.");
Yifan Hong19d713e2019-05-01 14:12:07 -070067DEFINE_string(boot_image, "",
68 "Location of cuttlefish boot image. If empty it is assumed to be "
69 "boot.img in the directory specified by -system_image_dir.");
Ram Muthiah1aa02f82019-10-22 20:26:28 +000070DEFINE_string(vendor_boot_image, "",
71 "Location of cuttlefish vendor boot image. If empty it is assumed to "
72 "be vendor_boot.img in the directory specified by -system_image_dir.");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080073DEFINE_int32(memory_mb, 2048,
74 "Total amount of memory available for guest, MB.");
Cody Schuffelen47c57852019-12-13 13:50:50 -080075DEFINE_string(serial_number, ForCurrentInstance("CUTTLEFISHCVD"),
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080076 "Serial number to use for the device");
Cody Schuffelenab6d3452019-12-13 15:54:27 -080077DEFINE_string(assembly_dir,
78 cvd::StringFromEnv("HOME", ".") + "/cuttlefish_assembly",
79 "A directory to put generated files common between instances");
80DEFINE_string(instance_dir,
81 cvd::StringFromEnv("HOME", ".") + "/cuttlefish_runtime",
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080082 "A directory to put all instance specific files");
83DEFINE_string(
Alistair Strachan5ab095c2019-05-23 20:41:20 +000084 vm_manager, vm_manager::CrosvmManager::name(),
Jorge E. Moreiraba626622019-01-28 17:47:50 -080085 "What virtual machine manager to use, one of {qemu_cli, crosvm}");
Greg Hartmana3c552d2019-03-28 18:20:48 -070086DEFINE_string(
Greg Hartmanbc1bed42019-04-05 20:02:00 -070087 gpu_mode, vsoc::kGpuModeGuestSwiftshader,
88 "What gpu configuration to use, one of {guest_swiftshader, drm_virgl}");
Greg Hartmana3c552d2019-03-28 18:20:48 -070089
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080090DEFINE_string(system_image_dir, vsoc::DefaultGuestImagePath(""),
91 "Location of the system partition images.");
Alistair Strachan050ca932018-11-27 12:41:19 -080092DEFINE_string(super_image, "", "Location of the super partition image.");
Yifan Hong19d713e2019-05-01 14:12:07 -070093DEFINE_string(misc_image, "",
94 "Location of the misc partition image. If the image does not "
95 "exist, a blank new misc partition image is created.");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -080096
97DEFINE_bool(deprecated_boot_completed, false, "Log boot completed message to"
98 " host kernel. This is only used during transition of our clients."
99 " Will be deprecated soon.");
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800100DEFINE_bool(start_vnc_server, false, "Whether to start the vnc server process. "
101 "The VNC server runs at port 6443 + i for "
102 "the vsoc-i user or CUTTLEFISH_INSTANCE=i, "
103 "starting from 1.");
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800104
105DEFINE_bool(start_webrtc, false, "Whether to start the webrtc process.");
106
107DEFINE_string(
108 webrtc_assets_dir,
Jorge E. Moreira1f65a4a2019-11-08 15:23:32 -0800109 vsoc::DefaultHostArtifactsPath("usr/share/webrtc/assets"),
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800110 "Path to WebRTC webpage assets.");
111
112DEFINE_string(
113 webrtc_certs_dir,
Jorge E. Moreira1f65a4a2019-11-08 15:23:32 -0800114 vsoc::DefaultHostArtifactsPath("usr/share/webrtc/certs"),
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800115 "Path to WebRTC certificates directory.");
116
117DEFINE_string(
118 webrtc_public_ip,
Jorge E. Moreira1f65a4a2019-11-08 15:23:32 -0800119 "127.0.0.1",
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800120 "Public IPv4 address of your server, a.b.c.d format");
121
122DEFINE_bool(
123 webrtc_enable_adb_websocket,
124 false,
125 "If enabled, exposes local adb service through a websocket.");
126
Cody Schuffelen10743332019-04-15 16:50:49 -0700127DEFINE_string(adb_mode, "vsock_half_tunnel",
Cody Schuffelen3c35fd82019-12-11 18:39:46 -0800128 "Mode for ADB connection."
Cody Schuffelen63d10052019-02-26 12:21:53 -0800129 "'vsock_tunnel' for a TCP connection tunneled through vsock, "
130 "'native_vsock' for a direct connection to the guest ADB over "
131 "vsock, 'vsock_half_tunnel' for a TCP connection forwarded to "
132 "the guest ADB server, or a comma separated list of types as in "
Cody Schuffelen3c35fd82019-12-11 18:39:46 -0800133 "'native_vsock,vsock_half_tunnel'");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800134DEFINE_bool(run_adb_connector, true,
135 "Maintain adb connection by sending 'adb connect' commands to the "
Matthias Maennich454d7872019-02-06 16:35:17 +0000136 "server. Only relevant with -adb_mode=tunnel or vsock_tunnel");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800137
Cody Schuffelen47c57852019-12-13 13:50:50 -0800138DEFINE_string(uuid, vsoc::ForCurrentInstance(vsoc::kDefaultUuidPrefix),
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800139 "UUID to use for the device. Random if not specified");
140DEFINE_bool(daemon, false,
141 "Run cuttlefish in background, the launcher exits on boot "
142 "completed/failed");
143
144DEFINE_string(device_title, "", "Human readable name for the instance, "
145 "used by the vnc_server for its server title");
146DEFINE_string(setupwizard_mode, "DISABLED",
147 "One of DISABLED,OPTIONAL,REQUIRED");
148
149DEFINE_string(qemu_binary,
150 "/usr/bin/qemu-system-x86_64",
151 "The qemu binary to use");
Jorge E. Moreiraba626622019-01-28 17:47:50 -0800152DEFINE_string(crosvm_binary,
153 vsoc::DefaultHostArtifactsPath("bin/crosvm"),
154 "The Crosvm binary to use");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800155DEFINE_bool(restart_subprocesses, true, "Restart any crashed host process");
Jorge E. Moreirafd10cae2019-02-19 15:35:42 -0800156DEFINE_string(logcat_mode, "", "How to send android's log messages from "
157 "guest to host. One of [serial, vsock]");
Ram Muthiah6e9c98c2019-05-28 15:18:27 -0700158DEFINE_bool(enable_tombstone_receiver, true, "Enables the tombstone logger on "
Ram Muthiah792e2ad2019-04-19 11:19:46 -0700159 "both the guest and the host");
Cody Schuffelen1300f122019-05-28 18:24:34 -0700160DEFINE_bool(use_bootloader, false, "Boots the device using a bootloader");
161DEFINE_string(bootloader, "", "Bootloader binary path");
David Anderson637bfd62019-09-26 13:23:21 -0700162DEFINE_string(boot_slot, "", "Force booting into the given slot. If empty, "
163 "the slot will be chosen based on the misc partition if using a "
164 "bootloader. It will default to 'a' if empty and not using a "
165 "bootloader.");
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800166DEFINE_int32(num_instances, 1, "Number of Android guests to launch");
167DEFINE_bool(resume, true, "Resume using the disk from the last session, if "
168 "possible. i.e., if --noresume is passed, the disk "
169 "will be reset to the state it was initially launched "
170 "in. This flag is ignored if the underlying partition "
171 "images have been updated since the first launch.");
Yifan Hong19d713e2019-05-01 14:12:07 -0700172
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800173namespace {
174
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700175const std::string kKernelDefaultPath = "kernel";
176const std::string kInitramfsImg = "initramfs.img";
177const std::string kRamdiskConcatExt = ".concat";
Cody Schuffelen9fd95472019-10-04 13:49:57 -0700178
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800179bool ResolveInstanceFiles() {
180 if (FLAGS_system_image_dir.empty()) {
181 LOG(ERROR) << "--system_image_dir must be specified.";
182 return false;
183 }
184
185 // If user did not specify location of either of these files, expect them to
186 // be placed in --system_image_dir location.
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800187 std::string default_boot_image = FLAGS_system_image_dir + "/boot.img";
188 SetCommandLineOptionWithMode("boot_image", default_boot_image.c_str(),
189 google::FlagSettingMode::SET_FLAGS_DEFAULT);
190 std::string default_cache_image = FLAGS_system_image_dir + "/cache.img";
191 SetCommandLineOptionWithMode("cache_image", default_cache_image.c_str(),
192 google::FlagSettingMode::SET_FLAGS_DEFAULT);
193 std::string default_data_image = FLAGS_system_image_dir + "/userdata.img";
194 SetCommandLineOptionWithMode("data_image", default_data_image.c_str(),
195 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Paul Trautrimba8f8e92019-03-12 17:55:48 +0900196 std::string default_metadata_image = FLAGS_system_image_dir + "/metadata.img";
197 SetCommandLineOptionWithMode("metadata_image", default_metadata_image.c_str(),
198 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Alistair Strachan050ca932018-11-27 12:41:19 -0800199 std::string default_super_image = FLAGS_system_image_dir + "/super.img";
200 SetCommandLineOptionWithMode("super_image", default_super_image.c_str(),
201 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Yifan Hong19d713e2019-05-01 14:12:07 -0700202 std::string default_misc_image = FLAGS_system_image_dir + "/misc.img";
203 SetCommandLineOptionWithMode("misc_image", default_misc_image.c_str(),
204 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Ram Muthiah1aa02f82019-10-22 20:26:28 +0000205 std::string default_vendor_boot_image = FLAGS_system_image_dir
206 + "/vendor_boot.img";
207 SetCommandLineOptionWithMode("vendor_boot_image",
208 default_vendor_boot_image.c_str(),
209 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800210
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800211 return true;
212}
213
214std::string GetCuttlefishEnvPath() {
215 return cvd::StringFromEnv("HOME", ".") + "/.cuttlefish.sh";
216}
217
Cody Schuffelen2168c242019-12-13 16:15:27 -0800218std::string GetLegacyConfigFilePath(const vsoc::CuttlefishConfig& config) {
219 return config.ForDefaultInstance().PerInstancePath("cuttlefish_config.json");
220}
221
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800222int NumStreamers() {
223 auto start_flags = {FLAGS_start_vnc_server, FLAGS_start_webrtc};
224 return std::count(start_flags.begin(), start_flags.end(), true);
225}
226
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800227std::string StrForInstance(const std::string& prefix, int num) {
228 std::ostringstream stream;
229 stream << prefix << std::setfill('0') << std::setw(2) << num;
230 return stream.str();
231}
232
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800233// Initializes the config object and saves it to file. It doesn't return it, all
234// further uses of the config should happen through the singleton
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800235vsoc::CuttlefishConfig InitializeCuttlefishConfiguration(
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700236 const cvd::BootImageUnpacker& boot_image_unpacker,
237 const cvd::FetcherConfig& fetcher_config) {
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800238 // At most one streamer can be started.
239 CHECK(NumStreamers() <= 1);
240
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800241 vsoc::CuttlefishConfig tmp_config_obj;
Cody Schuffelenab6d3452019-12-13 15:54:27 -0800242 tmp_config_obj.set_assembly_dir(FLAGS_assembly_dir);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800243 if (!vm_manager::VmManager::IsValidName(FLAGS_vm_manager)) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800244 LOG(FATAL) << "Invalid vm_manager: " << FLAGS_vm_manager;
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800245 }
Greg Hartmana3c552d2019-03-28 18:20:48 -0700246 if (!vm_manager::VmManager::IsValidName(FLAGS_vm_manager)) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800247 LOG(FATAL) << "Invalid vm_manager: " << FLAGS_vm_manager;
Greg Hartmana3c552d2019-03-28 18:20:48 -0700248 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800249 tmp_config_obj.set_vm_manager(FLAGS_vm_manager);
Greg Hartmana3c552d2019-03-28 18:20:48 -0700250 tmp_config_obj.set_gpu_mode(FLAGS_gpu_mode);
Cody Schuffelen2de6ead2019-12-04 16:16:47 -0800251 if (vm_manager::VmManager::ConfigureGpuMode(tmp_config_obj.vm_manager(),
252 tmp_config_obj.gpu_mode()).empty()) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800253 LOG(FATAL) << "Invalid gpu_mode=" << FLAGS_gpu_mode <<
Greg Hartmana3c552d2019-03-28 18:20:48 -0700254 " does not work with vm_manager=" << FLAGS_vm_manager;
Greg Hartmana3c552d2019-03-28 18:20:48 -0700255 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800256
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800257 tmp_config_obj.set_cpus(FLAGS_cpus);
258 tmp_config_obj.set_memory_mb(FLAGS_memory_mb);
259
260 tmp_config_obj.set_dpi(FLAGS_dpi);
261 tmp_config_obj.set_setupwizard_mode(FLAGS_setupwizard_mode);
262 tmp_config_obj.set_x_res(FLAGS_x_res);
263 tmp_config_obj.set_y_res(FLAGS_y_res);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800264 tmp_config_obj.set_refresh_rate_hz(FLAGS_refresh_rate_hz);
265 tmp_config_obj.set_gdb_flag(FLAGS_qemu_gdb);
Cody Schuffelenf4a1cdb2019-11-13 16:51:16 -0800266 std::vector<std::string> adb = android::base::Split(FLAGS_adb_mode, ",");
Cody Schuffelen90b2fb22019-02-28 18:55:21 -0800267 tmp_config_obj.set_adb_mode(std::set<std::string>(adb.begin(), adb.end()));
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700268 std::string discovered_kernel = fetcher_config.FindCvdFileWithSuffix(kKernelDefaultPath);
269 std::string foreign_kernel = FLAGS_kernel_path.size() ? FLAGS_kernel_path : discovered_kernel;
270 if (foreign_kernel.size()) {
271 tmp_config_obj.set_kernel_image_path(foreign_kernel);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800272 tmp_config_obj.set_use_unpacked_kernel(false);
273 } else {
274 tmp_config_obj.set_kernel_image_path(
Cody Schuffelenf53ded12019-12-13 16:05:22 -0800275 tmp_config_obj.AssemblyPath(kKernelDefaultPath.c_str()));
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800276 tmp_config_obj.set_use_unpacked_kernel(true);
277 }
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800278 tmp_config_obj.set_decompress_kernel(FLAGS_decompress_kernel);
279 if (FLAGS_decompress_kernel) {
280 tmp_config_obj.set_decompressed_kernel_image_path(
Cody Schuffelenf53ded12019-12-13 16:05:22 -0800281 tmp_config_obj.AssemblyPath("vmlinux"));
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800282 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800283
Cody Schuffelenf53ded12019-12-13 16:05:22 -0800284 auto ramdisk_path = tmp_config_obj.AssemblyPath("ramdisk.img");
285 auto vendor_ramdisk_path = tmp_config_obj.AssemblyPath("vendor_ramdisk.img");
Cody Schuffelen1e645542019-11-19 15:44:22 -0800286 if (!boot_image_unpacker.HasRamdiskImage()) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800287 LOG(FATAL) << "A ramdisk is required, but the boot image did not have one.";
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800288 }
289
Cody Schuffelen2de6ead2019-12-04 16:16:47 -0800290 tmp_config_obj.set_boot_image_kernel_cmdline(boot_image_unpacker.kernel_cmdline());
291 tmp_config_obj.set_loop_max_part(FLAGS_loop_max_part);
292 tmp_config_obj.set_guest_enforce_security(FLAGS_guest_enforce_security);
293 tmp_config_obj.set_guest_audit_security(FLAGS_guest_audit_security);
Alistair Delva33b861f2019-12-26 12:23:59 -0800294 tmp_config_obj.set_guest_force_normal_boot(FLAGS_guest_force_normal_boot);
Cody Schuffelen2de6ead2019-12-04 16:16:47 -0800295 tmp_config_obj.set_extra_kernel_cmdline(FLAGS_extra_kernel_cmdline);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800296
297 tmp_config_obj.set_ramdisk_image_path(ramdisk_path);
Ram Muthiahd512c132019-10-23 17:20:45 -0700298 tmp_config_obj.set_vendor_ramdisk_image_path(vendor_ramdisk_path);
299
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700300 std::string discovered_ramdisk = fetcher_config.FindCvdFileWithSuffix(kInitramfsImg);
301 std::string foreign_ramdisk = FLAGS_initramfs_path.size () ? FLAGS_initramfs_path : discovered_ramdisk;
302 if (foreign_kernel.size() && !foreign_ramdisk.size()) {
Ram Muthiahd512c132019-10-23 17:20:45 -0700303 // If there's a kernel that's passed in without an initramfs, that implies
304 // user error or a kernel built with no modules. In either case, let's
305 // choose to avoid loading the modules from the vendor ramdisk which are
306 // built for the default cf kernel. Once boot occurs, user error will
307 // become obvious.
308 tmp_config_obj.set_final_ramdisk_path(ramdisk_path);
309 } else {
310 tmp_config_obj.set_final_ramdisk_path(ramdisk_path + kRamdiskConcatExt);
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700311 if(foreign_ramdisk.size()) {
312 tmp_config_obj.set_initramfs_path(foreign_ramdisk);
Ram Muthiahd512c132019-10-23 17:20:45 -0700313 }
Cody Schuffelen9fd95472019-10-04 13:49:57 -0700314 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800315
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800316 tmp_config_obj.set_deprecated_boot_completed(FLAGS_deprecated_boot_completed);
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800317 tmp_config_obj.set_logcat_receiver_binary(
318 vsoc::DefaultHostArtifactsPath("bin/logcat_receiver"));
319 tmp_config_obj.set_config_server_binary(
320 vsoc::DefaultHostArtifactsPath("bin/config_server"));
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800321
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800322 tmp_config_obj.set_qemu_binary(FLAGS_qemu_binary);
Jorge E. Moreiraba626622019-01-28 17:47:50 -0800323 tmp_config_obj.set_crosvm_binary(FLAGS_crosvm_binary);
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800324 tmp_config_obj.set_console_forwarder_binary(
325 vsoc::DefaultHostArtifactsPath("bin/console_forwarder"));
326 tmp_config_obj.set_kernel_log_monitor_binary(
327 vsoc::DefaultHostArtifactsPath("bin/kernel_log_monitor"));
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800328
329 tmp_config_obj.set_enable_vnc_server(FLAGS_start_vnc_server);
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800330 tmp_config_obj.set_vnc_server_binary(
331 vsoc::DefaultHostArtifactsPath("bin/vnc_server"));
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800332
Jorge E. Moreirae049b792019-12-18 18:17:48 -0800333 tmp_config_obj.set_enable_webrtc(FLAGS_start_webrtc);
334 tmp_config_obj.set_webrtc_binary(
335 vsoc::DefaultHostArtifactsPath("bin/webRTC"));
336 tmp_config_obj.set_webrtc_assets_dir(FLAGS_webrtc_assets_dir);
337 tmp_config_obj.set_webrtc_public_ip(FLAGS_webrtc_public_ip);
338 tmp_config_obj.set_webrtc_certs_dir(FLAGS_webrtc_certs_dir);
339
340 tmp_config_obj.set_webrtc_enable_adb_websocket(
341 FLAGS_webrtc_enable_adb_websocket);
342
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800343 tmp_config_obj.set_restart_subprocesses(FLAGS_restart_subprocesses);
344 tmp_config_obj.set_run_adb_connector(FLAGS_run_adb_connector);
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800345 tmp_config_obj.set_adb_connector_binary(
346 vsoc::DefaultHostArtifactsPath("bin/adb_connector"));
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800347 tmp_config_obj.set_socket_vsock_proxy_binary(
348 vsoc::DefaultHostArtifactsPath("bin/socket_vsock_proxy"));
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800349 tmp_config_obj.set_run_as_daemon(FLAGS_daemon);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800350
Cody Schuffelen2b51bab2019-01-29 18:14:48 -0800351 tmp_config_obj.set_data_policy(FLAGS_data_policy);
352 tmp_config_obj.set_blank_data_image_mb(FLAGS_blank_data_image_mb);
353 tmp_config_obj.set_blank_data_image_fmt(FLAGS_blank_data_image_fmt);
354
Jorge E. Moreirafd10cae2019-02-19 15:35:42 -0800355 tmp_config_obj.set_logcat_mode(FLAGS_logcat_mode);
Jorge E. Moreirafd10cae2019-02-19 15:35:42 -0800356
Ram Muthiah792e2ad2019-04-19 11:19:46 -0700357 tmp_config_obj.set_enable_tombstone_receiver(FLAGS_enable_tombstone_receiver);
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800358 tmp_config_obj.set_tombstone_receiver_binary(
359 vsoc::DefaultHostArtifactsPath("bin/tombstone_receiver"));
Ram Muthiah792e2ad2019-04-19 11:19:46 -0700360
Cody Schuffelen1300f122019-05-28 18:24:34 -0700361 tmp_config_obj.set_use_bootloader(FLAGS_use_bootloader);
362 tmp_config_obj.set_bootloader(FLAGS_bootloader);
363
David Anderson637bfd62019-09-26 13:23:21 -0700364 if (!FLAGS_boot_slot.empty()) {
365 tmp_config_obj.set_boot_slot(FLAGS_boot_slot);
366 }
367
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800368 tmp_config_obj.set_cuttlefish_env_path(GetCuttlefishEnvPath());
369
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800370 std::vector<int> instance_nums;
371 for (int i = 0; i < FLAGS_num_instances; i++) {
372 instance_nums.push_back(vsoc::GetInstance() + i);
373 }
374
375 for (const auto& num : instance_nums) {
376 auto instance = tmp_config_obj.ForInstance(num);
377 auto const_instance = const_cast<const vsoc::CuttlefishConfig&>(tmp_config_obj)
378 .ForInstance(num);
379 // Set this first so that calls to PerInstancePath below are correct
380 instance.set_instance_dir(FLAGS_instance_dir + "." + std::to_string(num));
381 instance.set_serial_number(FLAGS_serial_number + std::to_string(num));
382
383 instance.set_mobile_bridge_name(StrForInstance("cvd-mbr-", num));
384 instance.set_mobile_tap_name(StrForInstance("cvd-mtap-", num));
385
386 instance.set_wifi_tap_name(StrForInstance("cvd-wtap-", num));
387
388 instance.set_vsock_guest_cid(3 + num - 1);
389
390 instance.set_uuid(FLAGS_uuid);
391
392 instance.set_vnc_server_port(6444 + num - 1);
393 instance.set_host_port(6520 + num - 1);
394 instance.set_adb_ip_and_port("127.0.0.1:" + std::to_string(6520 + num - 1));
395
396 instance.set_device_title(FLAGS_device_title);
397
398 instance.set_virtual_disk_paths({const_instance.PerInstancePath("overlay.img")});
399 }
400
401 return tmp_config_obj;
402}
403
404bool SaveConfig(const vsoc::CuttlefishConfig& tmp_config_obj) {
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800405 auto config_file = GetConfigFilePath(tmp_config_obj);
406 auto config_link = vsoc::GetGlobalConfigFileLink();
407 // Save the config object before starting any host process
408 if (!tmp_config_obj.SaveToFile(config_file)) {
409 LOG(ERROR) << "Unable to save config object";
410 return false;
411 }
Cody Schuffelen2168c242019-12-13 16:15:27 -0800412 auto legacy_config_file = GetLegacyConfigFilePath(tmp_config_obj);
413 if (!tmp_config_obj.SaveToFile(legacy_config_file)) {
414 LOG(ERROR) << "Unable to save legacy config object";
415 return false;
416 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800417 setenv(vsoc::kCuttlefishConfigEnvVarName, config_file.c_str(), true);
418 if (symlink(config_file.c_str(), config_link.c_str()) != 0) {
419 LOG(ERROR) << "Failed to create symlink to config file at " << config_link
420 << ": " << strerror(errno);
421 return false;
422 }
423
424 return true;
425}
426
427void SetDefaultFlagsForQemu() {
Cody Schuffelen038d4d92019-11-04 15:09:03 -0800428 // TODO(b/144119457) Use the serial port.
429 SetCommandLineOptionWithMode("logcat_mode", cvd::kLogcatVsockMode,
Jorge E. Moreirafd10cae2019-02-19 15:35:42 -0800430 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Jorge E. Moreiraba626622019-01-28 17:47:50 -0800431}
432
433void SetDefaultFlagsForCrosvm() {
Jorge E. Moreirafd10cae2019-02-19 15:35:42 -0800434 SetCommandLineOptionWithMode("logcat_mode", cvd::kLogcatVsockMode,
435 google::FlagSettingMode::SET_FLAGS_DEFAULT);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800436}
437
438bool ParseCommandLineFlags(int* argc, char*** argv) {
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800439 google::ParseCommandLineNonHelpFlags(argc, argv, true);
440 bool invalid_manager = false;
441 if (FLAGS_vm_manager == vm_manager::QemuManager::name()) {
442 SetDefaultFlagsForQemu();
Jorge E. Moreiraba626622019-01-28 17:47:50 -0800443 } else if (FLAGS_vm_manager == vm_manager::CrosvmManager::name()) {
444 SetDefaultFlagsForCrosvm();
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800445 } else {
446 std::cerr << "Unknown Virtual Machine Manager: " << FLAGS_vm_manager
447 << std::endl;
448 invalid_manager = true;
449 }
Jorge E. Moreira1f65a4a2019-11-08 15:23:32 -0800450 if (NumStreamers() == 0) {
451 // This makes the vnc server the default streamer unless the user requests
452 // another via a --star_<streamer> flag, while at the same time it's
453 // possible to run without any streamer by setting --start_vnc_server=false.
454 SetCommandLineOptionWithMode("start_vnc_server", "true",
455 google::FlagSettingMode::SET_FLAGS_DEFAULT);
456 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800457 google::HandleCommandLineHelpFlags();
458 if (invalid_manager) {
459 return false;
460 }
461 // Set the env variable to empty (in case the caller passed a value for it).
462 unsetenv(vsoc::kCuttlefishConfigEnvVarName);
463
464 return ResolveInstanceFiles();
465}
466
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800467std::string cpp_basename(const std::string& str) {
468 char* copy = strdup(str.c_str()); // basename may modify its argument
469 std::string ret(basename(copy));
470 free(copy);
471 return ret;
472}
473
474bool CleanPriorFiles(const std::string& path, const std::set<std::string>& preserving) {
475 if (preserving.count(cpp_basename(path))) {
476 LOG(INFO) << "Preserving: " << path;
477 return true;
478 }
479 struct stat statbuf;
480 if (lstat(path.c_str(), &statbuf) < 0) {
481 int error_num = errno;
482 if (error_num == ENOENT) {
483 return true;
484 } else {
485 LOG(ERROR) << "Could not stat \"" << path << "\": " << strerror(error_num);
486 return false;
487 }
488 }
489 if ((statbuf.st_mode & S_IFMT) != S_IFDIR) {
490 LOG(INFO) << "Deleting: " << path;
491 if (unlink(path.c_str()) < 0) {
492 int error_num = errno;
493 LOG(ERROR) << "Could not unlink \"" << path << "\", error was " << strerror(error_num);
494 return false;
495 }
496 return true;
497 }
498 std::unique_ptr<DIR, int(*)(DIR*)> dir(opendir(path.c_str()), closedir);
499 if (!dir) {
500 int error_num = errno;
501 LOG(ERROR) << "Could not clean \"" << path << "\": error was " << strerror(error_num);
502 return false;
503 }
504 for (auto entity = readdir(dir.get()); entity != nullptr; entity = readdir(dir.get())) {
505 std::string entity_name(entity->d_name);
506 if (entity_name == "." || entity_name == "..") {
507 continue;
508 }
509 std::string entity_path = path + "/" + entity_name;
510 if (!CleanPriorFiles(entity_path.c_str(), preserving)) {
511 return false;
512 }
513 }
514 if (rmdir(path.c_str()) < 0) {
515 if (!(errno == EEXIST || errno == ENOTEMPTY)) {
516 // If EEXIST or ENOTEMPTY, probably because a file was preserved
517 int error_num = errno;
518 LOG(ERROR) << "Could not rmdir \"" << path << "\", error was " << strerror(error_num);
519 return false;
520 }
521 }
522 return true;
523}
524
525bool CleanPriorFiles(const std::vector<std::string>& paths, const std::set<std::string>& preserving) {
526 std::string prior_files;
527 for (auto path : paths) {
528 struct stat statbuf;
529 if (stat(path.c_str(), &statbuf) < 0 && errno != ENOENT) {
530 // If ENOENT, it doesn't exist yet, so there is no work to do'
531 int error_num = errno;
532 LOG(ERROR) << "Could not stat \"" << path << "\": " << strerror(error_num);
533 return false;
534 }
535 bool is_directory = (statbuf.st_mode & S_IFMT) == S_IFDIR;
536 prior_files += (is_directory ? (path + "/*") : path) + " ";
537 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800538 LOG(INFO) << "Assuming prior files of " << prior_files;
Alistair Delva7f09b732020-01-30 18:18:12 -0800539 std::string lsof_cmd = "lsof -t " + prior_files + " >/dev/null 2>&1";
540 int rval = std::system(lsof_cmd.c_str());
541 // lsof returns 0 if any of the files are open
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800542 if (WEXITSTATUS(rval) == 0) {
543 LOG(ERROR) << "Clean aborted: files are in use";
544 return false;
545 }
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800546 for (const auto& path : paths) {
547 if (!CleanPriorFiles(path, preserving)) {
548 LOG(ERROR) << "Remove of file under \"" << path << "\" failed";
549 return false;
550 }
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800551 }
552 return true;
553}
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800554
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800555bool CleanPriorFiles(const vsoc::CuttlefishConfig& config, const std::set<std::string>& preserving) {
556 std::vector<std::string> paths = {
557 // Everything in the assembly directory
558 FLAGS_assembly_dir,
559 // The environment file
560 GetCuttlefishEnvPath(),
561 // The global link to the config file
562 vsoc::GetGlobalConfigFileLink(),
563 };
564 for (const auto& instance : config.Instances()) {
565 paths.push_back(instance.instance_dir());
566 }
567 paths.push_back(FLAGS_instance_dir);
568 return CleanPriorFiles(paths, preserving);
569}
570
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800571bool DecompressKernel(const std::string& src, const std::string& dst) {
Cody Schuffelen3dff6982019-12-05 16:24:12 -0800572 cvd::Command decomp_cmd(vsoc::DefaultHostArtifactsPath("bin/extract-vmlinux"));
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800573 decomp_cmd.AddParameter(src);
574 auto output_file = cvd::SharedFD::Creat(dst.c_str(), 0666);
575 if (!output_file->IsOpen()) {
576 LOG(ERROR) << "Unable to create decompressed image file: "
577 << output_file->StrError();
578 return false;
579 }
580 decomp_cmd.RedirectStdIO(cvd::Subprocess::StdIOChannel::kStdOut, output_file);
Cody Schuffelene5670872019-12-10 15:04:59 -0800581 auto decomp_proc = decomp_cmd.Start();
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800582 return decomp_proc.Started() && decomp_proc.Wait() == 0;
583}
Cody Schuffelen78824ed2019-09-06 17:43:15 -0700584
585void ValidateAdbModeFlag(const vsoc::CuttlefishConfig& config) {
586 auto adb_modes = config.adb_mode();
587 adb_modes.erase(vsoc::AdbMode::Unknown);
588 if (adb_modes.size() < 1) {
589 LOG(INFO) << "ADB not enabled";
590 }
591}
592
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800593} // namespace
594
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700595namespace {
596
597std::vector<ImagePartition> disk_config() {
598 std::vector<ImagePartition> partitions;
Cody Schuffelen4f7e4412019-08-30 16:10:59 -0700599 partitions.push_back(ImagePartition {
600 .label = "super",
601 .image_file_path = FLAGS_super_image,
602 });
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700603 partitions.push_back(ImagePartition {
604 .label = "userdata",
605 .image_file_path = FLAGS_data_image,
606 });
607 partitions.push_back(ImagePartition {
608 .label = "cache",
609 .image_file_path = FLAGS_cache_image,
610 });
611 partitions.push_back(ImagePartition {
612 .label = "metadata",
613 .image_file_path = FLAGS_metadata_image,
614 });
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700615 partitions.push_back(ImagePartition {
616 .label = "boot",
617 .image_file_path = FLAGS_boot_image,
618 });
Yifan Hong19d713e2019-05-01 14:12:07 -0700619 partitions.push_back(ImagePartition {
620 .label = "misc",
621 .image_file_path = FLAGS_misc_image
622 });
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700623 return partitions;
624}
625
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800626std::chrono::system_clock::time_point LastUpdatedInputDisk() {
627 std::chrono::system_clock::time_point ret;
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700628 for (auto& partition : disk_config()) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800629 auto partition_mod_time = cvd::FileModificationTime(partition.image_file_path);
630 if (partition_mod_time > ret) {
631 ret = partition_mod_time;
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700632 }
633 }
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800634 return ret;
635}
636
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800637bool ShouldCreateCompositeDisk(const vsoc::CuttlefishConfig& config) {
638 if (!cvd::FileExists(config.composite_disk_path())) {
639 return true;
640 }
641 auto composite_age = cvd::FileModificationTime(config.composite_disk_path());
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800642 return composite_age < LastUpdatedInputDisk();
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700643}
644
Ram Muthiah3db0a562019-08-26 13:35:19 -0700645bool ConcatRamdisks(const std::string& new_ramdisk_path, const std::string& ramdisk_a_path,
646 const std::string& ramdisk_b_path) {
647 // clear out file of any pre-existing content
648 std::ofstream new_ramdisk(new_ramdisk_path, std::ios_base::binary | std::ios_base::trunc);
649 std::ifstream ramdisk_a(ramdisk_a_path, std::ios_base::binary);
650 std::ifstream ramdisk_b(ramdisk_b_path, std::ios_base::binary);
Ram Muthiahaad97c52019-08-14 17:05:01 -0700651
Ram Muthiah3db0a562019-08-26 13:35:19 -0700652 if(!new_ramdisk.is_open() || !ramdisk_a.is_open() || !ramdisk_b.is_open()) {
Ram Muthiahaad97c52019-08-14 17:05:01 -0700653 return false;
654 }
655
Ram Muthiah3db0a562019-08-26 13:35:19 -0700656 new_ramdisk << ramdisk_a.rdbuf() << ramdisk_b.rdbuf();
Ram Muthiahaad97c52019-08-14 17:05:01 -0700657 return true;
658}
659
Cody Schuffelen25c46432020-01-14 13:49:52 -0800660off_t AvailableSpaceAtPath(const std::string& path) {
661 struct statvfs vfs;
662 if (statvfs(path.c_str(), &vfs) != 0) {
663 int error_num = errno;
664 LOG(ERROR) << "Could not find space available at " << path << ", error was "
665 << strerror(error_num);
666 return 0;
667 }
668 return vfs.f_bsize * vfs.f_bavail; // block size * free blocks for unprivileged users
669}
670
671off_t USERDATA_IMAGE_RESERVED = 4l * (1l << 30l); // 4 GiB
672off_t AGGREGATE_IMAGE_RESERVED = 12l * (1l << 30l); // 12 GiB
673
674bool CreateCompositeDisk(const vsoc::CuttlefishConfig& config) {
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800675 if (!cvd::SharedFD::Open(config.composite_disk_path().c_str(), O_WRONLY | O_CREAT, 0644)->IsOpen()) {
676 LOG(ERROR) << "Could not ensure " << config.composite_disk_path() << " exists";
Cody Schuffelen25c46432020-01-14 13:49:52 -0800677 return false;
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700678 }
Cody Schuffelenc3fd6e52019-08-30 15:14:07 -0700679 if (FLAGS_vm_manager == vm_manager::CrosvmManager::name()) {
Cody Schuffelen25c46432020-01-14 13:49:52 -0800680 auto existing_size = cvd::FileSize(FLAGS_data_image);
681 auto available_space = AvailableSpaceAtPath(FLAGS_data_image);
682 if (available_space < USERDATA_IMAGE_RESERVED - existing_size) {
683 // TODO(schuffelen): Duplicate this check in run_cvd when it can run on a separate machine
684 LOG(ERROR) << "Not enough space in fs containing " << FLAGS_data_image;
685 LOG(ERROR) << "Wanted " << (USERDATA_IMAGE_RESERVED - existing_size);
686 LOG(ERROR) << "Got " << available_space;
687 return false;
688 }
Cody Schuffelena08d9dd2019-12-16 17:55:40 -0800689 std::string header_path = config.AssemblyPath("gpt_header.img");
690 std::string footer_path = config.AssemblyPath("gpt_footer.img");
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800691 CreateCompositeDisk(disk_config(), header_path, footer_path, config.composite_disk_path());
Cody Schuffelenc3fd6e52019-08-30 15:14:07 -0700692 } else {
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800693 auto existing_size = cvd::FileSize(config.composite_disk_path());
694 auto available_space = AvailableSpaceAtPath(config.composite_disk_path());
Cody Schuffelen25c46432020-01-14 13:49:52 -0800695 if (available_space < AGGREGATE_IMAGE_RESERVED - existing_size) {
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800696 LOG(ERROR) << "Not enough space to create " << config.composite_disk_path();
Cody Schuffelen25c46432020-01-14 13:49:52 -0800697 LOG(ERROR) << "Wanted " << (AGGREGATE_IMAGE_RESERVED - existing_size);
698 LOG(ERROR) << "Got " << available_space;
699 return false;
700 }
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800701 AggregateImage(disk_config(), config.composite_disk_path());
Cody Schuffelenc3fd6e52019-08-30 15:14:07 -0700702 }
Cody Schuffelen25c46432020-01-14 13:49:52 -0800703 return true;
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700704}
705
706} // namespace
707
Cody Schuffelen605e6852019-10-16 16:22:24 -0700708const vsoc::CuttlefishConfig* InitFilesystemAndCreateConfig(
Cody Schuffelenb737ef52019-09-25 14:54:38 -0700709 int* argc, char*** argv, cvd::FetcherConfig fetcher_config) {
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800710 if (!ParseCommandLineFlags(argc, argv)) {
711 LOG(ERROR) << "Failed to parse command arguments";
Cody Schuffelene71fa352019-09-10 16:11:58 -0700712 exit(AssemblerExitCodes::kArgumentParsingError);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800713 }
714
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800715 auto boot_img_unpacker =
716 cvd::BootImageUnpacker::FromImages(FLAGS_boot_image,
717 FLAGS_vendor_boot_image);
718 {
719 // The config object is created here, but only exists in memory until the
720 // SaveConfig line below. Don't launch cuttlefish subprocesses between these
721 // two operations, as those will assume they can read the config object from
722 // disk.
723 auto config = InitializeCuttlefishConfiguration(*boot_img_unpacker, fetcher_config);
724 std::set<std::string> preserving;
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800725 if (FLAGS_resume && ShouldCreateCompositeDisk(config)) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800726 LOG(WARNING) << "Requested resuming a previous session (the default behavior) "
727 << "but the base images have changed under the overlay, making the "
728 << "overlay incompatible. Wiping the overlay files.";
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800729 } else if (FLAGS_resume && !ShouldCreateCompositeDisk(config)) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800730 preserving.insert("overlay.img");
731 preserving.insert("gpt_header.img");
732 preserving.insert("gpt_footer.img");
733 preserving.insert("composite.img");
734 preserving.insert("access-kregistry");
A. Cody Schuffelenc17acda2020-01-23 15:54:40 -0800735 }
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800736 if (!CleanPriorFiles(config, preserving)) {
737 LOG(ERROR) << "Failed to clean prior files";
738 exit(AssemblerExitCodes::kPrioFilesCleanupError);
739 }
740 // Create assembly directory if it doesn't exist.
741 if (!cvd::DirectoryExists(FLAGS_assembly_dir.c_str())) {
742 LOG(INFO) << "Setting up " << FLAGS_assembly_dir;
743 if (mkdir(FLAGS_assembly_dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < 0
744 && errno != EEXIST) {
745 LOG(ERROR) << "Failed to create assembly directory: "
746 << FLAGS_assembly_dir << ". Error: " << errno;
747 exit(AssemblerExitCodes::kAssemblyDirCreationError);
748 }
749 }
750 for (const auto& instance : config.Instances()) {
751 // Create instance directory if it doesn't exist.
752 if (!cvd::DirectoryExists(instance.instance_dir().c_str())) {
753 LOG(INFO) << "Setting up " << FLAGS_instance_dir << ".N";
754 if (mkdir(instance.instance_dir().c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < 0
755 && errno != EEXIST) {
756 LOG(ERROR) << "Failed to create instance directory: "
757 << FLAGS_instance_dir << ". Error: " << errno;
758 exit(AssemblerExitCodes::kInstanceDirCreationError);
759 }
760 }
761 auto internal_dir = instance.instance_dir() + "/" + vsoc::kInternalDirName;
762 if (!cvd::DirectoryExists(internal_dir)) {
763 if (mkdir(internal_dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH) < 0
764 && errno != EEXIST) {
765 LOG(ERROR) << "Failed to create internal instance directory: "
766 << internal_dir << ". Error: " << errno;
767 exit(AssemblerExitCodes::kInstanceDirCreationError);
768 }
769 }
770 }
771 if (!SaveConfig(config)) {
772 LOG(ERROR) << "Failed to initialize configuration";
773 exit(AssemblerExitCodes::kCuttlefishConfigurationInitError);
Jorge E. Moreira1e8e2f12019-10-07 18:09:49 -0700774 }
775 }
776
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800777 std::string first_instance = FLAGS_instance_dir + "." + std::to_string(vsoc::GetInstance());
778 if (symlink(first_instance.c_str(), FLAGS_instance_dir.c_str()) < 0) {
779 LOG(ERROR) << "Could not symlink \"" << first_instance << "\" to \"" << FLAGS_instance_dir << "\"";
780 exit(cvd::kCuttlefishConfigurationInitError);
A. Cody Schuffelen3a60a872020-01-23 19:03:50 -0800781 }
782
Cody Schuffelen2b51bab2019-01-29 18:14:48 -0800783 if (!cvd::FileHasContent(FLAGS_boot_image)) {
784 LOG(ERROR) << "File not found: " << FLAGS_boot_image;
785 exit(cvd::kCuttlefishConfigurationInitError);
786 }
787
Ram Muthiah1aa02f82019-10-22 20:26:28 +0000788 if (!cvd::FileHasContent(FLAGS_vendor_boot_image)) {
789 LOG(ERROR) << "File not found: " << FLAGS_vendor_boot_image;
790 exit(cvd::kCuttlefishConfigurationInitError);
791 }
792
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800793 // Do this early so that the config object is ready for anything that needs it
794 auto config = vsoc::CuttlefishConfig::Get();
795 if (!config) {
796 LOG(ERROR) << "Failed to obtain config singleton";
Cody Schuffelene71fa352019-09-10 16:11:58 -0700797 exit(AssemblerExitCodes::kCuttlefishConfigurationInitError);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800798 }
799
800 if (!boot_img_unpacker->Unpack(config->ramdisk_image_path(),
Ram Muthiah1aa02f82019-10-22 20:26:28 +0000801 config->vendor_ramdisk_image_path(),
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800802 config->use_unpacked_kernel()
803 ? config->kernel_image_path()
804 : "")) {
805 LOG(ERROR) << "Failed to unpack boot image";
Cody Schuffelene71fa352019-09-10 16:11:58 -0700806 exit(AssemblerExitCodes::kBootImageUnpackError);
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800807 }
808
Ram Muthiah1aa02f82019-10-22 20:26:28 +0000809 // TODO(134522463) as part of the bootloader refactor, repack the vendor boot
810 // image and use the bootloader to load both the boot and vendor ramdisk.
811 // Until then, this hack to get gki modules into cuttlefish will suffice.
812
813 // If a vendor ramdisk comes in via this mechanism, let it supercede the one
814 // in the vendor boot image. This flag is what kernel presubmit testing uses
815 // to pass in the kernel ramdisk.
Ram Muthiahd512c132019-10-23 17:20:45 -0700816
817 // If no kernel is passed in or an initramfs is made available, the default
818 // vendor boot ramdisk or the initramfs provided should be appended to the
819 // boot ramdisk. If a kernel IS provided with no initramfs, it is safe to
820 // safe to assume that the kernel was built with no modules and expects no
821 // modules for cf to run properly.
Cody Schuffelencd3563a2019-10-29 16:35:06 -0700822 std::string discovered_kernel = fetcher_config.FindCvdFileWithSuffix(kKernelDefaultPath);
823 std::string foreign_kernel = FLAGS_kernel_path.size() ? FLAGS_kernel_path : discovered_kernel;
824 std::string discovered_ramdisk = fetcher_config.FindCvdFileWithSuffix(kInitramfsImg);
825 std::string foreign_ramdisk = FLAGS_initramfs_path.size () ? FLAGS_initramfs_path : discovered_ramdisk;
826 if(!foreign_kernel.size() || foreign_ramdisk.size()) {
Ram Muthiahd512c132019-10-23 17:20:45 -0700827 const std::string& vendor_ramdisk_path =
828 config->initramfs_path().size() ? config->initramfs_path()
829 : config->vendor_ramdisk_image_path();
830 if(!ConcatRamdisks(config->final_ramdisk_path(),
831 config->ramdisk_image_path(), vendor_ramdisk_path)) {
832 LOG(ERROR) << "Failed to concatenate ramdisk and vendor ramdisk";
833 exit(AssemblerExitCodes::kInitRamFsConcatError);
834 }
Ram Muthiahaad97c52019-08-14 17:05:01 -0700835 }
836
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800837 if (config->decompress_kernel()) {
838 if (!DecompressKernel(config->kernel_image_path(),
839 config->decompressed_kernel_image_path())) {
840 LOG(ERROR) << "Failed to decompress kernel";
Cody Schuffelene71fa352019-09-10 16:11:58 -0700841 exit(AssemblerExitCodes::kKernelDecompressError);
Jorge E. Moreira80ddd7f2019-02-04 16:30:13 -0800842 }
843 }
844
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800845 ValidateAdbModeFlag(*config);
846
Yifan Hong19d713e2019-05-01 14:12:07 -0700847 // Create misc if necessary
848 if (!InitializeMiscImage(FLAGS_misc_image)) {
849 exit(cvd::kCuttlefishConfigurationInitError);
850 }
851
Cody Schuffelen2b51bab2019-01-29 18:14:48 -0800852 // Create data if necessary
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700853 if (!ApplyDataImagePolicy(*config, FLAGS_data_image)) {
Cody Schuffelen2b51bab2019-01-29 18:14:48 -0800854 exit(cvd::kCuttlefishConfigurationInitError);
855 }
856
Cody Schuffelen69c19592019-05-31 16:00:30 -0700857 if (!cvd::FileExists(FLAGS_metadata_image)) {
858 CreateBlankImage(FLAGS_metadata_image, FLAGS_blank_metadata_image_mb, "none");
859 }
Paul Trautrimba8f8e92019-03-12 17:55:48 +0900860
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800861 for (const auto& instance : config->Instances()) {
862 if (!cvd::FileExists(instance.access_kregistry_path())) {
863 CreateBlankImage(instance.access_kregistry_path(), 1, "none", "64K");
864 }
Kenny Root1f50ee62020-01-24 12:06:19 -0800865 }
866
Cody Schuffelenb737ef52019-09-25 14:54:38 -0700867 if (SuperImageNeedsRebuilding(fetcher_config, *config)) {
868 if (!RebuildSuperImage(fetcher_config, *config, FLAGS_super_image)) {
869 LOG(ERROR) << "Super image rebuilding requested but could not be completed.";
870 exit(cvd::kCuttlefishConfigurationInitError);
871 }
872 }
873
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800874 if (ShouldCreateCompositeDisk(*config)) {
Cody Schuffelen25c46432020-01-14 13:49:52 -0800875 if (!CreateCompositeDisk(*config)) {
876 exit(cvd::kDiskSpaceError);
877 }
Cody Schuffelen3c99f5b2019-06-14 17:26:01 -0700878 }
879
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800880 for (auto instance : config->Instances()) {
881 auto overlay_path = instance.PerInstancePath("overlay.img");
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800882 if (!cvd::FileExists(overlay_path) || ShouldCreateCompositeDisk(*config) || !FLAGS_resume
883 || cvd::FileModificationTime(overlay_path) < cvd::FileModificationTime(config->composite_disk_path())) {
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800884 if (FLAGS_resume) {
885 LOG(WARNING) << "Requested to continue an existing session, but the overlay was "
886 << "newer than its underlying composite disk. Wiping the overlay.";
887 }
A. Cody Schuffelen4c287132020-02-07 17:04:23 -0800888 CreateQcowOverlay(config->crosvm_binary(), config->composite_disk_path(), overlay_path);
A. Cody Schuffelen9e2f73e2020-02-04 17:19:54 -0800889 CreateBlankImage(instance.access_kregistry_path(), 1, "none", "64K");
890 }
891 }
892
893 for (auto instance : config->Instances()) {
894 // Check that the files exist
895 for (const auto& file : instance.virtual_disk_paths()) {
896 if (!file.empty() && !cvd::FileHasContent(file.c_str())) {
897 LOG(ERROR) << "File not found: " << file;
898 exit(cvd::kCuttlefishConfigurationInitError);
899 }
Cody Schuffelen2b51bab2019-01-29 18:14:48 -0800900 }
901 }
902
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800903 return config;
904}
905
906std::string GetConfigFilePath(const vsoc::CuttlefishConfig& config) {
Cody Schuffelen2168c242019-12-13 16:15:27 -0800907 return config.AssemblyPath("cuttlefish_config.json");
Cody Schuffelen20ecaca2019-01-29 17:43:38 -0800908}