From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 05/13] installer: Make btrfs functions static
Date: Fri, 05 Apr 2024 12:59:34 +0000 [thread overview]
Message-ID: <20240405125942.1803058-5-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 9677 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/installer/hw.c | 284 ++++++++++++++++++++-------------------------
1 file changed, 129 insertions(+), 155 deletions(-)
diff --git a/src/installer/hw.c b/src/installer/hw.c
index 72d736bb1..f4a84804d 100644
--- a/src/installer/hw.c
+++ b/src/installer/hw.c
@@ -811,6 +811,65 @@ int hw_create_partitions(struct hw_destination* dest, const char* output) {
return r;
}
+static int hw_create_btrfs_subvolume(const char* output, const char* subvolume) {
+ char command [STRING_SIZE];
+ int r;
+
+ // Abort if the command could not be assigned.
+ r = snprintf(command, sizeof(command), "/usr/bin/btrfs subvolume create %s/%s", DESTINATION_MOUNT_PATH, subvolume);
+ if (r < 0)
+ return r;
+
+ // Create the subvolume
+ r = mysystem(output, command);
+ if (r)
+ return r;
+
+ return 0;
+}
+
+static int hw_create_btrfs_layout(const char* path, const char* output) {
+ const struct btrfs_subvolumes* subvolume = NULL;
+ char cmd[STRING_SIZE];
+ char volume[STRING_SIZE];
+ int r;
+
+ r = snprintf(cmd, sizeof(cmd), "/usr/bin/mkfs.btrfs -f %s", path);
+ if (r < 0)
+ return r;
+
+ // Create the main BTRFS file system.
+ r = mysystem(output, cmd);
+ if (r)
+ return r;
+
+ // We need to mount the FS in order to create any subvolumes.
+ r = hw_mount(path, DESTINATION_MOUNT_PATH, "btrfs", 0);
+ if (r)
+ return r;
+
+ // Loop through the list of subvolumes to create.
+ for ( subvolume = btrfs_subvolumes; subvolume->name; subvolume++ ) {
+ r = snprintf(volume, sizeof(volume), "%s", subvolume->name);
+
+ // Abort if snprintf fails.
+ if (r < 0)
+ return r;
+
+ // Call function to create the subvolume
+ r = hw_create_btrfs_subvolume(output, volume);
+ if (r)
+ return r;
+ }
+
+ // Umount the main BTRFS after subvolume creation.
+ r = hw_umount(DESTINATION_MOUNT_PATH, 0);
+ if (r)
+ return r;
+
+ return 0;
+}
+
static int hw_format_filesystem(const char* path, int fs, const char* output) {
char cmd[STRING_SIZE] = "\0";
int r;
@@ -881,54 +940,38 @@ int hw_create_filesystems(struct hw_destination* dest, const char* output) {
return 0;
}
-int hw_create_btrfs_layout(const char* path, const char* output) {
+static int hw_mount_btrfs_subvolumes(const char* source) {
const struct btrfs_subvolumes* subvolume = NULL;
- char cmd[STRING_SIZE];
- char volume[STRING_SIZE];
+ char path[STRING_SIZE];
+ char options[STRING_SIZE];
int r;
- r = snprintf(cmd, sizeof(cmd), "/usr/bin/mkfs.btrfs -f %s", path);
- if (r < 0) {
- return r;
- }
-
- // Create the main BTRFS file system.
- r = mysystem(output, cmd);
-
- if (r) {
- return r;
- }
-
-
- // We need to mount the FS in order to create any subvolumes.
- r = hw_mount(path, DESTINATION_MOUNT_PATH, "btrfs", 0);
-
- if (r) {
- return r;
- }
-
- // Loop through the list of subvolumes to create.
- for ( subvolume = btrfs_subvolumes; subvolume->name; subvolume++ ) {
- r = snprintf(volume, sizeof(volume), "%s", subvolume->name);
+ // Loop through the list of known subvolumes.
+ for (subvolume = btrfs_subvolumes; subvolume->name; subvolume++) {
+ // Assign subvolume path.
+ r = snprintf(path, sizeof(path), "%s%s", DESTINATION_MOUNT_PATH, subvolume->mount_path);
+ if (r < 0)
+ return r;
- // Abort if snprintf fails.
- if (r < 0) {
+ // Assign subvolume name.
+ r = snprintf(options, sizeof(options), "subvol=%s,%s", subvolume->name, BTRFS_MOUNT_OPTIONS);
+ if (r < 0)
return r;
- }
- // Call function to create the subvolume
- r = hw_create_btrfs_subvolume(output, volume);
+ // Create the directory.
+ r = hw_mkdir(path, S_IRWXU|S_IRWXG|S_IRWXO);
- if (r) {
+ // Abort if the directory could not be created.
+ if(r != 0 && errno != EEXIST)
return r;
- }
- }
- // Umount the main BTRFS after subvolume creation.
- r = hw_umount(DESTINATION_MOUNT_PATH, 0);
+ // Print log message
+ fprintf(flog, "Mounting subvolume %s to %s\n", subvolume->name, subvolume->mount_path);
- if (r) {
- return r;
+ // Try to mount the subvolume.
+ r = mount(source, path, "btrfs", NULL, options);
+ if (r)
+ return r;
}
return 0;
@@ -966,12 +1009,10 @@ int hw_mount_filesystems(struct hw_destination* dest, const char* prefix) {
// root
if (dest->filesystem == HW_FS_BTRFS) {
r = hw_mount_btrfs_subvolumes(dest->part_root);
-
if (r)
return r;
} else {
r = hw_mount(dest->part_root, prefix, filesystem, 0);
-
if (r)
return r;
}
@@ -1038,46 +1079,65 @@ int hw_mount_filesystems(struct hw_destination* dest, const char* prefix) {
return 0;
}
-int hw_mount_btrfs_subvolumes(const char* source) {
+static int hw_umount_btrfs_layout() {
const struct btrfs_subvolumes* subvolume = NULL;
char path[STRING_SIZE];
- char options[STRING_SIZE];
+ int counter = 0;
+ int retry = 1;
int r;
- // Loop through the list of known subvolumes.
- for ( subvolume = btrfs_subvolumes; subvolume->name; subvolume++ ) {
- // Assign subvolume path.
- r = snprintf(path, sizeof(path), "%s%s", DESTINATION_MOUNT_PATH, subvolume->mount_path);
-
- if (r < 0) {
- return r;
- }
+ do {
+ // Reset the retry marker
+ retry = 0;
- // Assign subvolume name.
- r = snprintf(options, sizeof(options), "subvol=%s,%s", subvolume->name, BTRFS_MOUNT_OPTIONS);
- if (r < 0) {
- return r;
- }
+ // Loop through the list of subvolumes
+ for (subvolume = btrfs_subvolumes; subvolume->name; subvolume++) {
+ // Abort if the subvolume path could not be assigned.
+ r = snprintf(path, sizeof(path), "%s%s", DESTINATION_MOUNT_PATH, subvolume->mount_path);
+ if (r < 0)
+ return r;
- // Create the directory.
- r = hw_mkdir(path, S_IRWXU|S_IRWXG|S_IRWXO);
+ // Try to umount the subvolume.
+ r = umount2(path, 0);
- // Abort if the directory could not be created.
- if(r != 0 && errno != EEXIST)
- return r;
+ // Handle return codes.
+ if (r) {
+ switch(errno) {
+ case EBUSY:
+ // Set marker to retry the umount.
+ retry = 1;
- // Print log message
- fprintf(flog, "Mounting subvolume %s to %s\n", subvolume->name, subvolume->mount_path);
+ // Ignore if the subvolume could not be unmounted yet,
+ // because it is still used.
+ continue;
- // Try to mount the subvolume.
- r = mount(source, path, "btrfs", NULL, options);
+ case EINVAL:
+ // Ignore if the subvolume already has been unmounted
+ continue;
+ case ENOENT:
+ // Ignore if the directory does not longer exist.
+ continue;
+ default:
+ fprintf(flog, "Could not umount %s from %s - Error: %d\n", subvolume->name, path, r);
+ return r;
+ }
+ }
- if (r) {
- return r;
+ // Print log message
+ fprintf(flog, "Umounted %s from %s\n", subvolume->name, path);
}
- }
-
- return 0;
+
+ // Abort loop if all mountpoins got umounted
+ if (retry == 0)
+ return 0;
+
+ // Abort after five failed umount attempts
+ if (counter == 5)
+ return -1;
+
+ // Increment counter.
+ counter++;
+ } while (1);
}
int hw_umount_filesystems(struct hw_destination* dest, const char* prefix) {
@@ -1136,71 +1196,6 @@ int hw_umount_filesystems(struct hw_destination* dest, const char* prefix) {
return 0;
}
-int hw_umount_btrfs_layout() {
- const struct btrfs_subvolumes* subvolume = NULL;
- char path[STRING_SIZE];
- int counter = 0;
- int retry = 1;
- int r;
-
- do {
- // Reset the retry marker
- retry = 0;
-
- // Loop through the list of subvolumes
- for (subvolume = btrfs_subvolumes; subvolume->name; subvolume++) {
- // Abort if the subvolume path could not be assigned.
- r = snprintf(path, sizeof(path), "%s%s", DESTINATION_MOUNT_PATH, subvolume->mount_path);
-
- if (r < 0) {
- return r;
- }
-
- // Try to umount the subvolume.
- r = umount2(path, 0);
-
- // Handle return codes.
- if (r) {
- switch(errno) {
- case EBUSY:
- // Set marker to retry the umount.
- retry = 1;
-
- // Ignore if the subvolume could not be unmounted yet,
- // because it is still used.
- continue;
-
- case EINVAL:
- // Ignore if the subvolume already has been unmounted
- continue;
- case ENOENT:
- // Ignore if the directory does not longer exist.
- continue;
- default:
- fprintf(flog, "Could not umount %s from %s - Error: %d\n", subvolume->name, path, r);
- return r;
- }
- }
-
- // Print log message
- fprintf(flog, "Umounted %s from %s\n", subvolume->name, path);
- }
-
- // Abort loop if all mountpoins got umounted
- if (retry == 0) {
- return 0;
- }
-
- // Abort after five failed umount attempts
- if (counter == 5) {
- return -1;
- }
-
- // Increment counter.
- counter++;
- } while (1);
-}
-
int hw_destroy_raid_superblocks(const struct hw_destination* dest, const char* output) {
char cmd[STRING_SIZE];
@@ -1463,24 +1458,3 @@ int hw_mkdir(const char *dir) {
return 0;
}
-
-
-int hw_create_btrfs_subvolume(const char* output, const char* subvolume) {
- char command [STRING_SIZE];
- int r;
-
- // Abort if the command could not be assigned.
- r = snprintf(command, sizeof(command), "/usr/bin/btrfs subvolume create %s/%s", DESTINATION_MOUNT_PATH, subvolume);
- if (r < 0) {
- return r;
- }
-
- // Create the subvolume
- r = mysystem(output, command);
-
- if (r) {
- return r;
- }
-
- return 0;
-}
--
2.39.2
next prev parent reply other threads:[~2024-04-05 12:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-05 12:59 [PATCH 01/13] installer: Update language files Michael Tremer
2024-04-05 12:59 ` [PATCH 02/13] installer: Translate BTRFS string Michael Tremer
2024-04-05 12:59 ` [PATCH 03/13] installer: Remove obsolete macros from configure script Michael Tremer
2024-04-05 12:59 ` [PATCH 04/13] installer: Fix lots of constify issues Michael Tremer
2024-04-05 12:59 ` Michael Tremer [this message]
2024-04-05 12:59 ` [PATCH 06/13] installer: Make hw_mkdir static Michael Tremer
2024-04-05 12:59 ` [PATCH 07/13] installer: Remove unused variables Michael Tremer
2024-04-05 12:59 ` [PATCH 08/13] installer: Fix use of uninitialized variable Michael Tremer
2024-04-05 12:59 ` [PATCH 09/13] installer: Correctly pass mount flags Michael Tremer
2024-04-05 12:59 ` [PATCH 10/13] installer: Replace all uses of strncpy with snprintf Michael Tremer
2024-04-05 12:59 ` [PATCH 11/13] installer: Pass correct length of hostname to sethostname() Michael Tremer
2024-04-05 12:59 ` [PATCH 12/13] installer: Fix more const warnings Michael Tremer
2024-04-05 12:59 ` [PATCH 13/13] installer: Fix using uninitialized variables Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240405125942.1803058-5-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox