]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/hw.c
installer: Mount BTRFS layout before installing the system
[ipfire-2.x.git] / src / installer / hw.c
CommitLineData
f0fa1795
MT
1/*#############################################################################
2# #
3# IPFire - An Open Source Firewall Distribution #
e404dab5 4# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
f0fa1795
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
25fcce25
MT
21#ifndef _GNU_SOURCE
22#define _GNU_SOURCE
23#endif
24
f0fa1795 25#include <assert.h>
d7dd283b 26#include <blkid/blkid.h>
ade96ba8 27#include <errno.h>
d7dd283b 28#include <fcntl.h>
f0fa1795 29#include <libudev.h>
c0511f3a 30#include <linux/loop.h>
d7dd283b 31#include <math.h>
f0fa1795
MT
32#include <stdio.h>
33#include <stdlib.h>
34#include <string.h>
d7dd283b 35#include <sys/ioctl.h>
f0fa1795 36#include <sys/mount.h>
c0511f3a 37#include <sys/stat.h>
25fcce25 38#include <sys/swap.h>
5be66d81 39#include <sys/sysinfo.h>
92e78233 40#include <sys/utsname.h>
f0fa1795
MT
41#include <unistd.h>
42
5315fae6
MT
43#include <libsmooth.h>
44
f0fa1795 45#include "hw.h"
25fcce25 46
8e3b022a
SS
47extern FILE* flog;
48
46b56e20 49static int system_chroot(const char* output, const char* path, const char* cmd) {
f5007e9c
MT
50 char chroot_cmd[STRING_SIZE];
51
52 snprintf(chroot_cmd, sizeof(chroot_cmd), "/usr/sbin/chroot %s %s", path, cmd);
53
46b56e20 54 return mysystem(output, chroot_cmd);
f5007e9c
MT
55}
56
f0fa1795 57struct hw* hw_init() {
5fb499f1 58 struct hw* hw = calloc(1, sizeof(*hw));
f0fa1795
MT
59 assert(hw);
60
61 // Initialize libudev
62 hw->udev = udev_new();
63 if (!hw->udev) {
64 fprintf(stderr, "Could not create udev instance\n");
65 exit(1);
66 }
67
92e78233
MT
68 // What architecture are we running on?
69 struct utsname uname_data;
70 int ret = uname(&uname_data);
71 if (ret == 0)
72 snprintf(hw->arch, sizeof(hw->arch), "%s", uname_data.machine);
73
8fbadfc7 74 // Should we install in EFI mode?
7dc7880d
MT
75 if ((strcmp(hw->arch, "x86_64") == 0) || (strcmp(hw->arch, "aarch64") == 0))
76 hw->efi = 1;
5fb499f1 77
f0fa1795
MT
78 return hw;
79}
80
81void hw_free(struct hw* hw) {
82 if (hw->udev)
83 udev_unref(hw->udev);
84
85 free(hw);
86}
87
88static int strstartswith(const char* a, const char* b) {
89 return (strncmp(a, b, strlen(b)) == 0);
90}
91
c0511f3a
MT
92static char loop_device[STRING_SIZE];
93
94static int setup_loop_device(const char* source, const char* device) {
95 int file_fd = open(source, O_RDWR);
96 if (file_fd < 0)
97 goto ERROR;
98
99 int device_fd = -1;
100 if ((device_fd = open(device, O_RDWR)) < 0)
101 goto ERROR;
102
103 if (ioctl(device_fd, LOOP_SET_FD, file_fd) < 0)
104 goto ERROR;
105
106 close(file_fd);
107 close(device_fd);
108
109 return 0;
110
111ERROR:
112 if (file_fd >= 0)
113 close(file_fd);
114
115 if (device_fd >= 0) {
116 ioctl(device_fd, LOOP_CLR_FD, 0);
117 close(device_fd);
118 }
119
120 return -1;
121}
122
25fcce25 123int hw_mount(const char* source, const char* target, const char* fs, int flags) {
c0511f3a
MT
124 const char* loop_device = "/dev/loop0";
125
85f2892b
MT
126 // Create target if it does not exist
127 if (access(target, X_OK) != 0)
128 mkdir(target, S_IRWXU|S_IRWXG|S_IRWXO);
129
c0511f3a
MT
130 struct stat st;
131 stat(source, &st);
132
133 if (S_ISREG(st.st_mode)) {
134 int r = setup_loop_device(source, loop_device);
135 if (r == 0) {
136 source = loop_device;
137 } else {
138 return -1;
139 }
140 }
141
366b40c7 142 return mount(source, target, fs, flags, NULL);
f0fa1795
MT
143}
144
ced15fdf
MT
145static int hw_bind_mount(const char* source, const char* prefix) {
146 if (!source || !prefix) {
147 errno = EINVAL;
148 return 1;
149 }
150
151 char target[PATH_MAX];
152 int r;
153
154 // Format target
155 r = snprintf(target, sizeof(target) - 1, "%s/%s", prefix, source);
156 if (r < 0)
157 return 1;
158
159 // Ensure target exists
160 mkdir(target, S_IRWXU|S_IRWXG|S_IRWXO);
ade96ba8 161
ced15fdf
MT
162 return hw_mount(source, target, NULL, MS_BIND);
163}
164
165int hw_umount(const char* source, const char* prefix) {
166 char target[PATH_MAX];
167 int r;
ade96ba8 168
ced15fdf
MT
169 if (prefix)
170 r = snprintf(target, sizeof(target) - 1, "%s/%s", prefix, source);
171 else
172 r = snprintf(target, sizeof(target) - 1, "%s", source);
173 if (r < 0)
174 return r;
175
176 // Perform umount
177 r = umount2(target, 0);
178 if (r) {
179 switch (errno) {
180 // Try again with force if umount wasn't successful
181 case EBUSY:
182 sleep(1);
183
184 r = umount2(target, MNT_FORCE);
185 break;
186
187 // target wasn't a mountpoint. Ignore.
188 case EINVAL:
189 r = 0;
190 break;
91588cb4
MT
191
192 // target doesn't exist
193 case ENOENT:
194 r = 0;
195 break;
ced15fdf 196 }
ade96ba8
MT
197 }
198
199 return r;
f0fa1795
MT
200}
201
202static int hw_test_source_medium(const char* path) {
25fcce25 203 int ret = hw_mount(path, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
f0fa1795 204
68a50dd1
AF
205 if (ret != 0) {
206 // 2nd try, ntfs for a rufus converted usb key
207 ret = hw_mount(path, SOURCE_MOUNT_PATH, "ntfs3", MS_RDONLY);
208 }
209 if (ret != 0) {
210 // 3rd try, vfat for a rufus converted usb key
211 ret = hw_mount(path, SOURCE_MOUNT_PATH, "vfat", MS_RDONLY);
212 }
213
f0fa1795
MT
214 // If the source could not be mounted we
215 // cannot proceed.
5315fae6 216 if (ret != 0)
f0fa1795
MT
217 return ret;
218
219 // Check if the test file exists.
5315fae6 220 ret = access(SOURCE_TEST_FILE, R_OK);
f0fa1795
MT
221
222 // Umount the test device.
ced15fdf 223 hw_umount(SOURCE_MOUNT_PATH, NULL);
f0fa1795 224
fb76fc51 225 return ret;
f0fa1795
MT
226}
227
228char* hw_find_source_medium(struct hw* hw) {
229 char* ret = NULL;
230
231 struct udev_enumerate* enumerate = udev_enumerate_new(hw->udev);
232
233 udev_enumerate_add_match_subsystem(enumerate, "block");
234 udev_enumerate_scan_devices(enumerate);
235
236 struct udev_list_entry* devices = udev_enumerate_get_list_entry(enumerate);
237
238 struct udev_list_entry* dev_list_entry;
239 udev_list_entry_foreach(dev_list_entry, devices) {
240 const char* path = udev_list_entry_get_name(dev_list_entry);
241 struct udev_device* dev = udev_device_new_from_syspath(hw->udev, path);
242
243 const char* dev_path = udev_device_get_devnode(dev);
244
245 // Skip everything what we cannot work with
246 if (strstartswith(dev_path, "/dev/loop") || strstartswith(dev_path, "/dev/fd") ||
4a0d9bef 247 strstartswith(dev_path, "/dev/ram") || strstartswith(dev_path, "/dev/md"))
f0fa1795
MT
248 continue;
249
5315fae6 250 if (hw_test_source_medium(dev_path) == 0) {
f0fa1795
MT
251 ret = strdup(dev_path);
252 }
253
254 udev_device_unref(dev);
255
256 // If a suitable device was found the search will end.
257 if (ret)
258 break;
259 }
260
261 udev_enumerate_unref(enumerate);
262
263 return ret;
264}
d7dd283b
MT
265
266static struct hw_disk** hw_create_disks() {
267 struct hw_disk** ret = malloc(sizeof(*ret) * (HW_MAX_DISKS + 1));
268
269 return ret;
270}
271
272static unsigned long long hw_block_device_get_size(const char* dev) {
273 int fd = open(dev, O_RDONLY);
274 if (fd < 0)
275 return 0;
276
277 unsigned long long size = blkid_get_dev_size(fd);
278 close(fd);
279
280 return size;
281}
282
ee00d203 283struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive) {
d7dd283b
MT
284 struct hw_disk** ret = hw_create_disks();
285 struct hw_disk** disks = ret;
286
68a50dd1
AF
287 // Determine the disk device of source if it is a partition
288 char* sourcedisk = NULL;
289 char syssource[PATH_MAX];
290 (void)snprintf(syssource, sizeof(syssource) - 1, "/sys/class/block/%s", sourcedrive + 5);
291 struct udev_device* s_dev = udev_device_new_from_syspath(hw->udev, syssource);
292 const char* s_devtype = udev_device_get_property_value(s_dev, "DEVTYPE");
293 if (s_devtype && (strcmp(s_devtype, "partition") == 0)) {
294 struct udev_device* p_dev = udev_device_get_parent_with_subsystem_devtype(s_dev,"block","disk");
295 if (p_dev) {
296 sourcedisk = udev_device_get_devnode(p_dev);
297 }
298 }
299 if (!sourcedisk) sourcedisk = sourcedrive;
300
d7dd283b
MT
301 struct udev_enumerate* enumerate = udev_enumerate_new(hw->udev);
302
303 udev_enumerate_add_match_subsystem(enumerate, "block");
304 udev_enumerate_scan_devices(enumerate);
305
306 struct udev_list_entry* devices = udev_enumerate_get_list_entry(enumerate);
307
308 struct udev_list_entry* dev_list_entry;
309 unsigned int i = HW_MAX_DISKS;
310 udev_list_entry_foreach(dev_list_entry, devices) {
311 const char* path = udev_list_entry_get_name(dev_list_entry);
312 struct udev_device* dev = udev_device_new_from_syspath(hw->udev, path);
313
314 const char* dev_path = udev_device_get_devnode(dev);
315
316 // Skip everything what we cannot work with
317 if (strstartswith(dev_path, "/dev/loop") || strstartswith(dev_path, "/dev/fd") ||
4a0d9bef
MT
318 strstartswith(dev_path, "/dev/ram") || strstartswith(dev_path, "/dev/sr") ||
319 strstartswith(dev_path, "/dev/md")) {
d7dd283b
MT
320 udev_device_unref(dev);
321 continue;
322 }
323
68a50dd1
AF
324 // Skip sourcedisk if we need to
325 if (sourcedisk && (strcmp(dev_path, sourcedisk) == 0)) {
d7dd283b
MT
326 udev_device_unref(dev);
327 continue;
328 }
329
ee00d203
MT
330 // DEVTYPE must be disk (otherwise we will see all sorts of partitions here)
331 const char* devtype = udev_device_get_property_value(dev, "DEVTYPE");
332 if (devtype && (strcmp(devtype, "disk") != 0)) {
d7dd283b
MT
333 udev_device_unref(dev);
334 continue;
335 }
336
337 // Skip devices with a size of zero
338 unsigned long long size = hw_block_device_get_size(dev_path);
339 if (size == 0) {
340 udev_device_unref(dev);
341 continue;
342 }
343
344 struct hw_disk* disk = malloc(sizeof(*disk));
345 if (disk == NULL)
346 return NULL;
347
348 disk->ref = 1;
349
350 strncpy(disk->path, dev_path, sizeof(disk->path));
0c8b2d99 351 const char* p = disk->path + 5;
d7dd283b
MT
352
353 disk->size = size;
354
355 // Vendor
356 const char* vendor = udev_device_get_property_value(dev, "ID_VENDOR");
357 if (!vendor)
358 vendor = udev_device_get_sysattr_value(dev, "vendor");
359 if (!vendor)
360 vendor = udev_device_get_sysattr_value(dev, "manufacturer");
d7dd283b 361
4c812463
MT
362 if (vendor)
363 strncpy(disk->vendor, vendor, sizeof(disk->vendor));
364 else
365 *disk->vendor = '\0';
d7dd283b
MT
366
367 // Model
368 const char* model = udev_device_get_property_value(dev, "ID_MODEL");
369 if (!model)
370 model = udev_device_get_sysattr_value(dev, "model");
371 if (!model)
372 model = udev_device_get_sysattr_value(dev, "product");
d7dd283b 373
4c812463
MT
374 if (model)
375 strncpy(disk->model, model, sizeof(disk->model));
376 else
377 *disk->model = '\0';
378
379 // Format description
380 char size_str[STRING_SIZE];
381 snprintf(size_str, sizeof(size_str), "%4.1fGB", (double)disk->size / pow(1024, 3));
d7dd283b 382
4c812463
MT
383 if (*disk->vendor && *disk->model) {
384 snprintf(disk->description, sizeof(disk->description),
0c8b2d99 385 "%s - %s - %s - %s", size_str, p, disk->vendor, disk->model);
4c812463
MT
386
387 } else if (*disk->vendor || *disk->model) {
388 snprintf(disk->description, sizeof(disk->description),
0c8b2d99 389 "%s - %s - %s", size_str, p, (*disk->vendor) ? disk->vendor : disk->model);
4c812463
MT
390
391 } else {
392 snprintf(disk->description, sizeof(disk->description),
0c8b2d99 393 "%s - %s", size_str, p);
4c812463 394 }
d7dd283b 395
29afd408
MT
396 // Cut off the description string after 40 characters
397 disk->description[41] = '\0';
398
d7dd283b
MT
399 *disks++ = disk;
400
401 if (--i == 0)
402 break;
403
404 udev_device_unref(dev);
405 }
406
407 udev_enumerate_unref(enumerate);
408
409 *disks = NULL;
410
411 return ret;
412}
413
414void hw_free_disks(struct hw_disk** disks) {
415 struct hw_disk** disk = disks;
416
417 while (*disk != NULL) {
418 if (--(*disk)->ref == 0)
419 free(*disk);
420
421 disk++;
422 }
423
424 free(disks);
425}
426
335c5bd1 427unsigned int hw_count_disks(const struct hw_disk** disks) {
d7dd283b
MT
428 unsigned int ret = 0;
429
430 while (*disks++)
431 ret++;
432
433 return ret;
434}
435
436struct hw_disk** hw_select_disks(struct hw_disk** disks, int* selection) {
437 struct hw_disk** ret = hw_create_disks();
438 struct hw_disk** selected_disks = ret;
439
335c5bd1 440 unsigned int num_disks = hw_count_disks((const struct hw_disk**)disks);
d7dd283b
MT
441
442 for (unsigned int i = 0; i < num_disks; i++) {
ee43f517 443 if (!selection || selection[i]) {
d7dd283b
MT
444 struct hw_disk *selected_disk = disks[i];
445 selected_disk->ref++;
446
447 *selected_disks++ = selected_disk;
448 }
449 }
450
451 // Set sentinel
452 *selected_disks = NULL;
453
454 return ret;
455}
456
a3e135c8
MT
457struct hw_disk** hw_select_first_disk(const struct hw_disk** disks) {
458 struct hw_disk** ret = hw_create_disks();
459 struct hw_disk** selected_disks = ret;
460
461 unsigned int num_disks = hw_count_disks(disks);
462 assert(num_disks > 0);
463
464 for (unsigned int i = 0; i < num_disks; i++) {
465 struct hw_disk *disk = disks[i];
466 disk->ref++;
467
468 *selected_disks++ = disk;
469 break;
470 }
471
472 // Set sentinel
473 *selected_disks = NULL;
474
475 return ret;
476}
477
25fcce25
MT
478static unsigned long long hw_swap_size(struct hw_destination* dest) {
479 unsigned long long memory = hw_memory();
480
481 unsigned long long swap_size = memory / 4;
482
483 // Min. swap size is 128MB
484 if (swap_size < MB2BYTES(128))
485 swap_size = MB2BYTES(128);
486
487 // Cap swap size to 1GB
488 else if (swap_size > MB2BYTES(1024))
489 swap_size = MB2BYTES(1024);
490
491 return swap_size;
492}
493
25fcce25 494static unsigned long long hw_boot_size(struct hw_destination* dest) {
ffdc6fbb 495 return MB2BYTES(512);
25fcce25
MT
496}
497
a691d4b3
MT
498static int hw_device_has_p_suffix(const struct hw_destination* dest) {
499 // All RAID devices have the p suffix.
500 if (dest->is_raid)
501 return 1;
502
503 // Devices with a number at the end have the p suffix, too.
504 // e.g. mmcblk0, cciss0
126d3570 505 unsigned int last_char = strlen(dest->path) - 1;
a691d4b3
MT
506 if ((dest->path[last_char] >= '0') && (dest->path[last_char] <= '9'))
507 return 1;
508
509 return 0;
510}
511
92e78233 512static int hw_calculate_partition_table(struct hw* hw, struct hw_destination* dest, int disable_swap) {
48d6a112
MT
513 char path[DEV_SIZE];
514 int part_idx = 1;
515
a691d4b3
MT
516 snprintf(path, sizeof(path), "%s%s", dest->path,
517 hw_device_has_p_suffix(dest) ? "p" : "");
48d6a112
MT
518 dest->part_boot_idx = 0;
519
25fcce25
MT
520 // Determine the size of the target block device
521 if (dest->is_raid) {
522 dest->size = (dest->disk1->size >= dest->disk2->size) ?
5315fae6 523 dest->disk2->size : dest->disk1->size;
22581f51
MT
524
525 // The RAID will install some metadata at the end of the disk
526 // and we will save up some space for that.
527 dest->size -= MB2BYTES(2);
25fcce25
MT
528 } else {
529 dest->size = dest->disk1->size;
530 }
531
802a123b
MT
532 // As we add some extra space before the beginning of the first
533 // partition, we need to substract that here.
534 dest->size -= MB2BYTES(1);
535
536 // Add some more space for partition tables, etc.
537 dest->size -= MB2BYTES(1);
538
c577571e
MT
539 // The disk has to have at least 2GB
540 if (dest->size <= MB2BYTES(2048))
541 return -1;
542
48d6a112
MT
543 // Determine partition table
544 dest->part_table = HW_PART_TABLE_MSDOS;
545
546 // Disks over 2TB need to use GPT
547 if (dest->size >= MB2BYTES(2047 * 1024))
548 dest->part_table = HW_PART_TABLE_GPT;
549
550 // We also use GPT on raid disks by default
551 else if (dest->is_raid)
552 dest->part_table = HW_PART_TABLE_GPT;
553
554 // When using GPT, GRUB2 needs a little bit of space to put
555 // itself in.
5689fc72 556 if (dest->part_table == HW_PART_TABLE_GPT) {
48d6a112
MT
557 snprintf(dest->part_bootldr, sizeof(dest->part_bootldr),
558 "%s%d", path, part_idx);
559
560 dest->size_bootldr = MB2BYTES(4);
561
562 dest->part_boot_idx = part_idx++;
563 } else {
564 *dest->part_bootldr = '\0';
565 dest->size_bootldr = 0;
566 }
567
58a46f0b
SS
568 // Disable seperate boot partition for BTRFS installations.
569 if(dest->filesystem == HW_FS_BTRFS) {
570 dest->size_boot = 0;
571 } else {
572 dest->size_boot = hw_boot_size(dest);
573 }
c577571e 574
92e78233
MT
575 // Create an EFI partition when running in EFI mode
576 if (hw->efi)
577 dest->size_boot_efi = MB2BYTES(32);
578 else
579 dest->size_boot_efi = 0;
580
c577571e
MT
581 // Determine the size of the data partition.
582 unsigned long long space_left = dest->size - \
92e78233 583 (dest->size_bootldr + dest->size_boot + dest->size_boot_efi);
c577571e
MT
584
585 // If we have less than 2GB left, we disable swap
586 if (space_left <= MB2BYTES(2048))
587 disable_swap = 1;
25fcce25 588
a8fca245
MT
589 // Should we use swap?
590 if (disable_swap)
591 dest->size_swap = 0;
592 else
593 dest->size_swap = hw_swap_size(dest);
594
c577571e
MT
595 // Subtract swap
596 space_left -= dest->size_swap;
25fcce25 597
c577571e
MT
598 // Root is getting what ever is left
599 dest->size_root = space_left;
25fcce25
MT
600
601 // Set partition names
25fcce25 602 if (dest->size_boot > 0) {
48d6a112
MT
603 if (dest->part_boot_idx == 0)
604 dest->part_boot_idx = part_idx;
25fcce25
MT
605
606 snprintf(dest->part_boot, sizeof(dest->part_boot), "%s%d", path, part_idx++);
607 } else
608 *dest->part_boot = '\0';
609
92e78233
MT
610 if (dest->size_boot_efi > 0) {
611 dest->part_boot_efi_idx = part_idx;
612
613 snprintf(dest->part_boot_efi, sizeof(dest->part_boot_efi),
614 "%s%d", path, part_idx++);
58e840bd 615 } else {
92e78233 616 *dest->part_boot_efi = '\0';
58e840bd
MT
617 dest->part_boot_efi_idx = 0;
618 }
92e78233 619
25fcce25
MT
620 if (dest->size_swap > 0)
621 snprintf(dest->part_swap, sizeof(dest->part_swap), "%s%d", path, part_idx++);
622 else
623 *dest->part_swap = '\0';
624
625 // There is always a root partition
48d6a112 626 if (dest->part_boot_idx == 0)
25fcce25
MT
627 dest->part_boot_idx = part_idx;
628
629 snprintf(dest->part_root, sizeof(dest->part_root), "%s%d", path, part_idx++);
630
25fcce25
MT
631 return 0;
632}
633
92e78233 634struct hw_destination* hw_make_destination(struct hw* hw, int part_type, struct hw_disk** disks, int disable_swap) {
d7dd283b
MT
635 struct hw_destination* dest = malloc(sizeof(*dest));
636
637 if (part_type == HW_PART_TYPE_NORMAL) {
638 dest->disk1 = *disks;
639 dest->disk2 = NULL;
640
641 strncpy(dest->path, dest->disk1->path, sizeof(dest->path));
642
643 } else if (part_type == HW_PART_TYPE_RAID1) {
644 dest->disk1 = *disks++;
645 dest->disk2 = *disks;
4a0d9bef 646 dest->raid_level = 1;
d7dd283b
MT
647
648 snprintf(dest->path, sizeof(dest->path), "/dev/md0");
649 }
650
651 // Is this a RAID device?
652 dest->is_raid = (part_type > HW_PART_TYPE_NORMAL);
653
92e78233 654 int r = hw_calculate_partition_table(hw, dest, disable_swap);
25fcce25
MT
655 if (r)
656 return NULL;
d7dd283b 657
25fcce25
MT
658 // Set default filesystem
659 dest->filesystem = HW_FS_DEFAULT;
d7dd283b
MT
660
661 return dest;
662}
c4e96674
MT
663
664unsigned long long hw_memory() {
5be66d81 665 struct sysinfo si;
c4e96674 666
5be66d81
MT
667 int r = sysinfo(&si);
668 if (r < 0)
669 return 0;
c4e96674 670
5be66d81 671 return si.totalram;
c4e96674 672}
25fcce25 673
d2f993a7
MT
674static int hw_zero_out_device(const char* path, int bytes) {
675 char block[512];
676 memset(block, 0, sizeof(block));
677
678 int blocks = bytes / sizeof(block);
679
680 int fd = open(path, O_WRONLY);
681 if (fd < 0)
682 return -1;
683
684 unsigned int bytes_written = 0;
685 while (blocks-- > 0) {
686 bytes_written += write(fd, block, sizeof(block));
687 }
688
689 fsync(fd);
690 close(fd);
691
692 return bytes_written;
693}
694
0e491487
MT
695static int try_open(const char* path) {
696 FILE* f = fopen(path, "r");
697 if (f) {
698 fclose(f);
699 return 0;
700 }
701
702 return -1;
703}
704
46b56e20 705int hw_create_partitions(struct hw_destination* dest, const char* output) {
d2f993a7
MT
706 // Before we write a new partition table to the disk, we will erase
707 // the first couple of megabytes at the beginning of the device to
708 // get rid of all left other things like bootloaders and partition tables.
709 // This solves some problems when changing from MBR to GPT partitions or
710 // the other way around.
711 int r = hw_zero_out_device(dest->path, MB2BYTES(10));
712 if (r <= 0)
713 return r;
25fcce25 714
d2f993a7 715 char* cmd = NULL;
25fcce25
MT
716 asprintf(&cmd, "/usr/sbin/parted -s %s -a optimal", dest->path);
717
718 // Set partition type
719 if (dest->part_table == HW_PART_TABLE_MSDOS)
720 asprintf(&cmd, "%s mklabel msdos", cmd);
721 else if (dest->part_table == HW_PART_TABLE_GPT)
722 asprintf(&cmd, "%s mklabel gpt", cmd);
723
802a123b 724 unsigned long long part_start = MB2BYTES(1);
25fcce25 725
48d6a112 726 if (*dest->part_bootldr) {
802a123b 727 asprintf(&cmd, "%s mkpart %s ext2 %lluB %lluB", cmd,
48d6a112 728 (dest->part_table == HW_PART_TABLE_GPT) ? "BOOTLDR" : "primary",
802a123b 729 part_start, part_start + dest->size_bootldr - 1);
48d6a112
MT
730
731 part_start += dest->size_bootldr;
732 }
733
25fcce25 734 if (*dest->part_boot) {
802a123b 735 asprintf(&cmd, "%s mkpart %s ext2 %lluB %lluB", cmd,
25fcce25 736 (dest->part_table == HW_PART_TABLE_GPT) ? "BOOT" : "primary",
802a123b 737 part_start, part_start + dest->size_boot - 1);
25fcce25
MT
738
739 part_start += dest->size_boot;
740 }
741
92e78233
MT
742 if (*dest->part_boot_efi) {
743 asprintf(&cmd, "%s mkpart %s fat32 %lluB %lluB", cmd,
744 (dest->part_table == HW_PART_TABLE_GPT) ? "ESP" : "primary",
745 part_start, part_start + dest->size_boot_efi - 1);
746
747 part_start += dest->size_boot_efi;
748 }
749
25fcce25 750 if (*dest->part_swap) {
802a123b 751 asprintf(&cmd, "%s mkpart %s linux-swap %lluB %lluB", cmd,
25fcce25 752 (dest->part_table == HW_PART_TABLE_GPT) ? "SWAP" : "primary",
802a123b 753 part_start, part_start + dest->size_swap - 1);
25fcce25
MT
754
755 part_start += dest->size_swap;
756 }
757
758 if (*dest->part_root) {
802a123b 759 asprintf(&cmd, "%s mkpart %s ext2 %lluB %lluB", cmd,
25fcce25 760 (dest->part_table == HW_PART_TABLE_GPT) ? "ROOT" : "primary",
802a123b 761 part_start, part_start + dest->size_root - 1);
25fcce25
MT
762
763 part_start += dest->size_root;
764 }
765
e9cf574d 766 if (dest->part_boot_idx > 0)
25fcce25
MT
767 asprintf(&cmd, "%s set %d boot on", cmd, dest->part_boot_idx);
768
92e78233
MT
769 if (dest->part_boot_efi_idx > 0)
770 asprintf(&cmd, "%s set %d esp on", cmd, dest->part_boot_efi_idx);
771
e9cf574d 772 if (dest->part_table == HW_PART_TABLE_GPT) {
48d6a112
MT
773 if (*dest->part_bootldr) {
774 asprintf(&cmd, "%s set %d bios_grub on", cmd, dest->part_boot_idx);
775 }
25fcce25
MT
776 }
777
46b56e20 778 r = mysystem(output, cmd);
25fcce25 779
268090a8
MT
780 // Wait until the system re-read the partition table
781 if (r == 0) {
782 unsigned int counter = 10;
783
784 while (counter-- > 0) {
785 sleep(1);
786
0e491487 787 if (*dest->part_bootldr && (try_open(dest->part_bootldr) != 0))
48d6a112
MT
788 continue;
789
0e491487 790 if (*dest->part_boot && (try_open(dest->part_boot) != 0))
268090a8
MT
791 continue;
792
92e78233
MT
793 if (*dest->part_boot_efi && (try_open(dest->part_boot_efi) != 0))
794 continue;
795
0e491487 796 if (*dest->part_swap && (try_open(dest->part_swap) != 0))
268090a8
MT
797 continue;
798
0e491487 799 if (*dest->part_root && (try_open(dest->part_root) != 0))
268090a8
MT
800 continue;
801
268090a8
MT
802 // All partitions do exist, exiting the loop.
803 break;
804 }
805 }
806
25fcce25
MT
807 if (cmd)
808 free(cmd);
809
810 return r;
811}
812
46b56e20 813static int hw_format_filesystem(const char* path, int fs, const char* output) {
25fcce25 814 char cmd[STRING_SIZE] = "\0";
0465449e 815 int r;
25fcce25
MT
816
817 // Swap
818 if (fs == HW_FS_SWAP) {
819 snprintf(cmd, sizeof(cmd), "/sbin/mkswap -v1 %s &>/dev/null", path);
25fcce25
MT
820
821 // EXT4
822 } else if (fs == HW_FS_EXT4) {
5208ceed 823 snprintf(cmd, sizeof(cmd), "/sbin/mke2fs -FF -T ext4 %s", path);
25fcce25
MT
824
825 // EXT4 w/o journal
826 } else if (fs == HW_FS_EXT4_WO_JOURNAL) {
5208ceed 827 snprintf(cmd, sizeof(cmd), "/sbin/mke2fs -FF -T ext4 -O ^has_journal %s", path);
70a44b52
MT
828
829 // XFS
830 } else if (fs == HW_FS_XFS) {
831 snprintf(cmd, sizeof(cmd), "/sbin/mkfs.xfs -f %s", path);
92e78233 832
130815d3
SS
833 // BTRFS
834 } else if (fs == HW_FS_BTRFS) {
0465449e
SS
835 r = hw_create_btrfs_layout(path, output);
836
837 return r;
130815d3 838
92e78233
MT
839 // FAT32
840 } else if (fs == HW_FS_FAT32) {
841 snprintf(cmd, sizeof(cmd), "/sbin/mkfs.vfat %s", path);
25fcce25
MT
842 }
843
844 assert(*cmd);
845
0465449e 846 r = mysystem(output, cmd);
25fcce25
MT
847
848 return r;
849}
850
46b56e20 851int hw_create_filesystems(struct hw_destination* dest, const char* output) {
25fcce25
MT
852 int r;
853
854 // boot
855 if (*dest->part_boot) {
46b56e20 856 r = hw_format_filesystem(dest->part_boot, dest->filesystem, output);
25fcce25
MT
857 if (r)
858 return r;
859 }
860
92e78233
MT
861 // ESP
862 if (*dest->part_boot_efi) {
863 r = hw_format_filesystem(dest->part_boot_efi, HW_FS_FAT32, output);
864 if (r)
865 return r;
866 }
867
25fcce25
MT
868 // swap
869 if (*dest->part_swap) {
46b56e20 870 r = hw_format_filesystem(dest->part_swap, HW_FS_SWAP, output);
25fcce25
MT
871 if (r)
872 return r;
873 }
874
875 // root
46b56e20 876 r = hw_format_filesystem(dest->part_root, dest->filesystem, output);
25fcce25
MT
877 if (r)
878 return r;
879
25fcce25
MT
880 return 0;
881}
882
0465449e
SS
883int hw_create_btrfs_layout(const char* path, const char* output) {
884 const struct btrfs_subvolumes* subvolume = NULL;
885 char cmd[STRING_SIZE];
886 char volume[STRING_SIZE];
887 int r;
888
889 r = snprintf(cmd, sizeof(cmd), "/usr/bin/mkfs.btrfs -f %s", path);
890 if (r < 0) {
891 return r;
892 }
893
894 // Create the main BTRFS file system.
895 r = mysystem(output, cmd);
896
897 if (r) {
898 return r;
899 }
900
901
902 // We need to mount the FS in order to create any subvolumes.
903 r = hw_mount(path, DESTINATION_MOUNT_PATH, "btrfs", 0);
904
905 if (r) {
906 return r;
907 }
908
909 // Loop through the list of subvolumes to create.
910 for ( subvolume = btrfs_subvolumes; subvolume->name; subvolume++ ) {
911 r = snprintf(volume, sizeof(volume), "%s", subvolume->name);
912
913 // Abort if snprintf fails.
914 if (r < 0) {
915 return r;
916 }
917
918 // Call function to create the subvolume
919 r = hw_create_btrfs_subvolume(output, volume);
920
921 if (r) {
922 return r;
923 }
924 }
925
926 // Umount the main BTRFS after subvolume creation.
927 r = hw_umount(DESTINATION_MOUNT_PATH, 0);
928
929 if (r) {
930 return r;
931 }
932
933 return 0;
934}
935
25fcce25
MT
936int hw_mount_filesystems(struct hw_destination* dest, const char* prefix) {
937 char target[STRING_SIZE];
e7740eaf 938 int r;
25fcce25
MT
939
940 assert(*prefix == '/');
941
942 const char* filesystem;
943 switch (dest->filesystem) {
25fcce25
MT
944 case HW_FS_EXT4:
945 case HW_FS_EXT4_WO_JOURNAL:
946 filesystem = "ext4";
947 break;
948
70a44b52
MT
949 case HW_FS_XFS:
950 filesystem = "xfs";
951 break;
952
130815d3
SS
953 case HW_FS_BTRFS:
954 filesystem = "btrfs";
955 break;
956
92e78233
MT
957 case HW_FS_FAT32:
958 filesystem = "vfat";
959 break;
960
25fcce25
MT
961 default:
962 assert(0);
963 }
964
965 // root
e7740eaf
SS
966 if (dest->filesystem == HW_FS_BTRFS) {
967 r = hw_mount_btrfs_subvolumes(dest->part_root);
968
969 if (r)
970 return r;
971 } else {
972 r = hw_mount(dest->part_root, prefix, filesystem, 0);
973
974 if (r)
975 return r;
976 }
25fcce25
MT
977
978 // boot
fbeac096
SS
979 snprintf(target, sizeof(target), "%s%s", prefix, HW_PATH_BOOT);
980 r = mkdir(target, S_IRWXU|S_IRWXG|S_IRWXO);
981
982 if (r) {
983 hw_umount_filesystems(dest, prefix);
25fcce25 984
fbeac096
SS
985 return r;
986 }
987
988 if (*dest->part_boot) {
25fcce25
MT
989 r = hw_mount(dest->part_boot, target, filesystem, 0);
990 if (r) {
991 hw_umount_filesystems(dest, prefix);
992
993 return r;
994 }
995 }
996
92e78233
MT
997 // ESP
998 if (*dest->part_boot_efi) {
999 snprintf(target, sizeof(target), "%s%s", prefix, HW_PATH_BOOT_EFI);
1000 mkdir(target, S_IRWXU|S_IRWXG|S_IRWXO);
1001
1002 r = hw_mount(dest->part_boot_efi, target, "vfat", 0);
1003 if (r) {
1004 hw_umount_filesystems(dest, prefix);
1005
1006 return r;
1007 }
1008 }
1009
25fcce25
MT
1010 // swap
1011 if (*dest->part_swap) {
1012 r = swapon(dest->part_swap, 0);
1013 if (r) {
1014 hw_umount_filesystems(dest, prefix);
1015
1016 return r;
1017 }
1018 }
1019
1020 // bind-mount misc filesystems
ced15fdf
MT
1021 r = hw_bind_mount("/dev", prefix);
1022 if (r)
1023 return r;
25fcce25 1024
ced15fdf
MT
1025 r = hw_bind_mount("/proc", prefix);
1026 if (r)
1027 return r;
25fcce25 1028
ced15fdf
MT
1029 r = hw_bind_mount("/sys", prefix);
1030 if (r)
1031 return r;
25fcce25 1032
ced15fdf
MT
1033 r = hw_bind_mount("/sys/firmware/efi/efivars", prefix);
1034 if (r && errno != ENOENT)
1035 return r;
25fcce25
MT
1036
1037 return 0;
1038}
1039
e7740eaf
SS
1040int hw_mount_btrfs_subvolumes(const char* source) {
1041 const struct btrfs_subvolumes* subvolume = NULL;
1042 char path[STRING_SIZE];
1043 char options[STRING_SIZE];
1044 int r;
1045
1046 // Loop through the list of known subvolumes.
1047 for ( subvolume = btrfs_subvolumes; subvolume->name; subvolume++ ) {
1048 // Assign subvolume path.
1049 r = snprintf(path, sizeof(path), "%s%s", DESTINATION_MOUNT_PATH, subvolume->mount_path);
1050
1051 if (r < 0) {
1052 return r;
1053 }
1054
1055 // Assign subvolume name.
1056 r = snprintf(options, sizeof(options), "subvol=%s,", subvolume->name);
1057 if (r < 0) {
1058 return r;
1059 }
1060
1061 // Create the directory.
1062 r = hw_mkdir(path, S_IRWXU|S_IRWXG|S_IRWXO);
1063
1064 // Abort if the directory could not be created.
1065 if(r != 0 && errno != EEXIST)
1066 return r;
1067
1068 // Print log message
1069 fprintf(flog, "Mounting subvolume %s to %s\n", subvolume->name, subvolume->mount_path);
1070
1071 // Try to mount the subvolume.
1072 r = mount(source, path, "btrfs", NULL, options);
1073
1074 if (r) {
1075 return r;
1076 }
1077 }
1078
1079 return 0;
1080}
1081
25fcce25 1082int hw_umount_filesystems(struct hw_destination* dest, const char* prefix) {
ade96ba8
MT
1083 int r;
1084 char target[STRING_SIZE];
1085
ddd32a5c
MT
1086 // Write all buffers to disk before umounting
1087 hw_sync();
1088
92e78233
MT
1089 // ESP
1090 if (*dest->part_boot_efi) {
ced15fdf 1091 r = hw_umount(HW_PATH_BOOT_EFI, prefix);
92e78233
MT
1092 if (r)
1093 return -1;
1094 }
1095
25fcce25
MT
1096 // boot
1097 if (*dest->part_boot) {
ced15fdf 1098 r = hw_umount(HW_PATH_BOOT, prefix);
ade96ba8
MT
1099 if (r)
1100 return -1;
25fcce25
MT
1101 }
1102
25fcce25
MT
1103 // swap
1104 if (*dest->part_swap) {
1105 swapoff(dest->part_swap);
1106 }
1107
1108 // misc filesystems
ced15fdf
MT
1109 r = hw_umount("/sys/firmware/efi/efivars", prefix);
1110 if (r)
1111 return -1;
1112
1113 r = hw_umount("/sys", prefix);
1114 if (r)
1115 return -1;
1116
1117 r = hw_umount("/proc", prefix);
1118 if (r)
1119 return -1;
1120
1121 r = hw_umount("/dev", prefix);
1122 if (r)
1123 return -1;
25fcce25 1124
ade96ba8 1125 // root
ced15fdf 1126 r = hw_umount(prefix, NULL);
ade96ba8
MT
1127 if (r)
1128 return -1;
1129
25fcce25
MT
1130 return 0;
1131}
4a0d9bef 1132
d78fffa0 1133int hw_destroy_raid_superblocks(const struct hw_destination* dest, const char* output) {
d2fafe03
MT
1134 char cmd[STRING_SIZE];
1135
46b56e20
MT
1136 hw_stop_all_raid_arrays(output);
1137 hw_stop_all_raid_arrays(output);
d2fafe03
MT
1138
1139 if (dest->disk1) {
46b56e20
MT
1140 snprintf(cmd, sizeof(cmd), "/sbin/mdadm --zero-superblock %s", dest->disk1->path);
1141 mysystem(output, cmd);
d2fafe03
MT
1142 }
1143
1144 if (dest->disk2) {
46b56e20
MT
1145 snprintf(cmd, sizeof(cmd), "/sbin/mdadm --zero-superblock %s", dest->disk2->path);
1146 mysystem(output, cmd);
d2fafe03
MT
1147 }
1148
1149 return 0;
1150}
1151
46b56e20 1152int hw_setup_raid(struct hw_destination* dest, const char* output) {
4a0d9bef 1153 char* cmd = NULL;
7b4790d3 1154 int r;
4a0d9bef
MT
1155
1156 assert(dest->is_raid);
1157
d2fafe03
MT
1158 // Stop all RAID arrays that might be around (again).
1159 // It seems that there is some sort of race-condition with udev re-enabling
1160 // the raid arrays and therefore locking the disks.
46b56e20 1161 r = hw_destroy_raid_superblocks(dest, output);
d2fafe03 1162
7b4790d3
MT
1163 asprintf(&cmd, "echo \"y\" | /sbin/mdadm --create --verbose --metadata=%s --auto=mdp %s",
1164 RAID_METADATA, dest->path);
4a0d9bef
MT
1165
1166 switch (dest->raid_level) {
1167 case 1:
1168 asprintf(&cmd, "%s --level=1 --raid-devices=2", cmd);
1169 break;
1170
1171 default:
1172 assert(0);
1173 }
1174
1175 if (dest->disk1) {
1176 asprintf(&cmd, "%s %s", cmd, dest->disk1->path);
d2f993a7
MT
1177
1178 // Clear all data at the beginning
1179 r = hw_zero_out_device(dest->disk1->path, MB2BYTES(10));
1180 if (r <= 0)
1181 return r;
4a0d9bef
MT
1182 }
1183
1184 if (dest->disk2) {
1185 asprintf(&cmd, "%s %s", cmd, dest->disk2->path);
d2f993a7
MT
1186
1187 // Clear all data at the beginning
1188 r = hw_zero_out_device(dest->disk2->path, MB2BYTES(10));
1189 if (r <= 0)
1190 return r;
4a0d9bef
MT
1191 }
1192
46b56e20 1193 r = mysystem(output, cmd);
4a0d9bef
MT
1194 free(cmd);
1195
1196 // Wait a moment until the device has been properly brought up
1197 if (r == 0) {
1198 unsigned int counter = 10;
1199 while (counter-- > 0) {
1200 sleep(1);
1201
fde37387
MT
1202 // If the raid device has not yet been properly brought up,
1203 // opening it will fail with the message: Device or resource busy
1204 // Hence we will wait a bit until it becomes usable.
0e491487 1205 if (try_open(dest->path) == 0)
4a0d9bef
MT
1206 break;
1207 }
1208 }
1209
1210 return r;
1211}
1212
46b56e20
MT
1213int hw_stop_all_raid_arrays(const char* output) {
1214 return mysystem(output, "/sbin/mdadm --stop --scan --verbose");
4a0d9bef 1215}
f5007e9c 1216
92e78233 1217int hw_install_bootloader(struct hw* hw, struct hw_destination* dest, const char* output) {
f5007e9c 1218 char cmd[STRING_SIZE];
f5007e9c 1219
12034118
MT
1220 snprintf(cmd, sizeof(cmd), "/usr/bin/install-bootloader %s", dest->path);
1221 int r = system_chroot(output, DESTINATION_MOUNT_PATH, cmd);
92e78233
MT
1222 if (r)
1223 return r;
1224
ade96ba8
MT
1225 hw_sync();
1226
92e78233 1227 return 0;
f5007e9c 1228}
7f69d8a4
MT
1229
1230static char* hw_get_uuid(const char* dev) {
1231 blkid_probe p = blkid_new_probe_from_filename(dev);
1232 const char* buffer = NULL;
1233 char* uuid = NULL;
1234
1235 if (!p)
1236 return NULL;
1237
1238 blkid_do_probe(p);
1239 blkid_probe_lookup_value(p, "UUID", &buffer, NULL);
1240
1241 if (buffer)
1242 uuid = strdup(buffer);
1243
1244 blkid_free_probe(p);
1245
1246 return uuid;
1247}
1248
335c5bd1
MT
1249#define FSTAB_FMT "UUID=%s %-8s %-4s %-10s %d %d\n"
1250
7f69d8a4
MT
1251int hw_write_fstab(struct hw_destination* dest) {
1252 FILE* f = fopen(DESTINATION_MOUNT_PATH "/etc/fstab", "w");
1253 if (!f)
1254 return -1;
1255
7f69d8a4
MT
1256 char* uuid = NULL;
1257
1258 // boot
1259 if (*dest->part_boot) {
1260 uuid = hw_get_uuid(dest->part_boot);
1261
1262 if (uuid) {
e404dab5 1263 fprintf(f, FSTAB_FMT, uuid, "/boot", "auto", "defaults,nodev,noexec,nosuid", 1, 2);
7f69d8a4
MT
1264 free(uuid);
1265 }
1266 }
1267
92e78233
MT
1268 // ESP
1269 if (*dest->part_boot_efi) {
1270 uuid = hw_get_uuid(dest->part_boot_efi);
1271
1272 if (uuid) {
1273 fprintf(f, FSTAB_FMT, uuid, "/boot/efi", "auto", "defaults", 1, 2);
1274 free(uuid);
1275 }
1276 }
1277
1278
7f69d8a4
MT
1279 // swap
1280 if (*dest->part_swap) {
1281 uuid = hw_get_uuid(dest->part_swap);
1282
1283 if (uuid) {
335c5bd1 1284 fprintf(f, FSTAB_FMT, uuid, "swap", "swap", "defaults,pri=1", 0, 0);
7f69d8a4
MT
1285 free(uuid);
1286 }
1287 }
1288
1289 // root
1290 uuid = hw_get_uuid(dest->part_root);
1291 if (uuid) {
335c5bd1 1292 fprintf(f, FSTAB_FMT, uuid, "/", "auto", "defaults", 1, 1);
7f69d8a4
MT
1293 free(uuid);
1294 }
1295
7f69d8a4
MT
1296 fclose(f);
1297
1298 return 0;
1299}
282ec35e
MT
1300
1301void hw_sync() {
1302 sync();
1303 sync();
1304 sync();
1305}
7d114284
MT
1306
1307int hw_start_networking(const char* output) {
1308 return mysystem(output, "/usr/bin/start-networking.sh");
1309}
38c6822d
MT
1310
1311char* hw_find_backup_file(const char* output, const char* search_path) {
1312 char path[STRING_SIZE];
1313
1314 snprintf(path, sizeof(path), "%s/backup.ipf", search_path);
1315 int r = access(path, R_OK);
1316
1317 if (r == 0)
1318 return strdup(path);
1319
1320 return NULL;
1321}
1322
1323int hw_restore_backup(const char* output, const char* backup_path, const char* destination) {
1324 char command[STRING_SIZE];
1325
3f8e70f6
MT
1326 snprintf(command, sizeof(command), "/bin/tar xzpf %s -C %s "
1327 "--exclude-from=%s/var/ipfire/backup/exclude --exclude-from=%s/var/ipfire/backup/exclude.user",
1328 backup_path, destination, destination, destination);
38c6822d
MT
1329 int rc = mysystem(output, command);
1330
1331 if (rc)
1332 return -1;
1333
1334 return 0;
1335}
0465449e 1336
e0a7cdd8
SS
1337int hw_mkdir(const char *dir) {
1338 char tmp[STRING_SIZE];
1339 char *p = NULL;
1340 size_t len;
1341 int r;
1342
1343 snprintf(tmp, sizeof(tmp),"%s",dir);
1344 len = strlen(tmp);
1345
1346 if (tmp[len - 1] == '/') {
1347 tmp[len - 1] = 0;
1348 }
1349
1350 for (p = tmp + 1; *p; p++) {
1351 if (*p == '/') {
1352 *p = 0;
1353
1354 // Create target if it does not exist
1355 if (access(tmp, X_OK) != 0) {
1356 r = mkdir(tmp, S_IRWXU|S_IRWXG|S_IRWXO);
1357
1358 if (r) {
1359 return r;
1360 }
1361 }
1362
1363 *p = '/';
1364 }
1365 }
1366
1367 // Create target if it does not exist
1368 if (access(tmp, X_OK) != 0) {
1369 r = mkdir(tmp, S_IRWXU|S_IRWXG|S_IRWXO);
1370
1371 if (r) {
1372 return r;
1373 }
1374 }
1375
1376 return 0;
1377}
1378
1379
0465449e
SS
1380int hw_create_btrfs_subvolume(const char* output, const char* subvolume) {
1381 char command [STRING_SIZE];
1382 int r;
1383
1384 // Abort if the command could not be assigned.
1385 r = snprintf(command, sizeof(command), "/usr/bin/btrfs subvolume create %s/%s", DESTINATION_MOUNT_PATH, subvolume);
1386 if (r < 0) {
1387 return r;
1388 }
1389
1390 // Create the subvolume
1391 r = mysystem(output, command);
1392
1393 if (r) {
1394 return r;
1395 }
1396
1397 return 0;
1398}