summaryrefslogtreecommitdiff
path: root/src/shared/mkfs-util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/mkfs-util.c')
-rw-r--r--src/shared/mkfs-util.c64
1 files changed, 43 insertions, 21 deletions
diff --git a/src/shared/mkfs-util.c b/src/shared/mkfs-util.c
index 1056de1bec..fbf04aa7ae 100644
--- a/src/shared/mkfs-util.c
+++ b/src/shared/mkfs-util.c
@@ -39,6 +39,8 @@ int make_filesystem(
bool discard) {
_cleanup_free_ char *mkfs = NULL;
+ char mangled_label[8 + 3 + 1],
+ vol_id[CONST_MAX(ID128_UUID_STRING_MAX, 8 + 1)] = {};
int r;
assert(node);
@@ -63,15 +65,35 @@ int make_filesystem(
return log_oom();
}
+ if (streq(fstype, "vfat")) {
+ /* Classic FAT only allows 11 character uppercase labels */
+ strncpy(mangled_label, label, sizeof(mangled_label)-1);
+ mangled_label[sizeof(mangled_label)-1] = 0;
+ ascii_strupper(mangled_label);
+ label = mangled_label;
+
+ xsprintf(vol_id, "%08" PRIx32,
+ ((uint32_t) uuid.bytes[0] << 24) |
+ ((uint32_t) uuid.bytes[1] << 16) |
+ ((uint32_t) uuid.bytes[2] << 8) |
+ ((uint32_t) uuid.bytes[3])); /* Take first 32 bytes of UUID */
+ }
+
+ if (isempty(vol_id))
+ id128_to_uuid_string(uuid, vol_id);
+
r = safe_fork("(mkfs)", FORK_RESET_SIGNALS|FORK_RLIMIT_NOFILE_SAFE|FORK_DEATHSIG|FORK_LOG|FORK_WAIT|FORK_STDOUT_TO_STDERR, NULL);
if (r < 0)
return r;
if (r == 0) {
/* Child */
+
+ /* When changing this conditional, also adjust the log statement below. */
if (streq(fstype, "ext2"))
(void) execlp(mkfs, mkfs,
+ "-q",
"-L", label,
- "-U", ID128_TO_UUID_STRING(uuid),
+ "-U", vol_id,
"-I", "256",
"-m", "0",
"-E", discard ? "discard,lazy_itable_init=1" : "nodiscard,lazy_itable_init=1",
@@ -79,8 +101,9 @@ int make_filesystem(
else if (STR_IN_SET(fstype, "ext3", "ext4"))
(void) execlp(mkfs, mkfs,
+ "-q",
"-L", label,
- "-U", ID128_TO_UUID_STRING(uuid),
+ "-U", vol_id,
"-I", "256",
"-O", "has_journal",
"-m", "0",
@@ -89,8 +112,9 @@ int make_filesystem(
else if (streq(fstype, "btrfs")) {
(void) execlp(mkfs, mkfs,
+ "-q",
"-L", label,
- "-U", ID128_TO_UUID_STRING(uuid),
+ "-U", vol_id,
node,
discard ? NULL : "--nodiscard",
NULL);
@@ -98,9 +122,10 @@ int make_filesystem(
} else if (streq(fstype, "xfs")) {
const char *j;
- j = strjoina("uuid=", ID128_TO_UUID_STRING(uuid));
+ j = strjoina("uuid=", vol_id);
(void) execlp(mkfs, mkfs,
+ "-q",
"-L", label,
"-m", j,
"-m", "reflink=1",
@@ -108,34 +133,24 @@ int make_filesystem(
discard ? NULL : "-K",
NULL);
- } else if (streq(fstype, "vfat")) {
- char mangled_label[8 + 3 + 1], vol_id[8 + 1];
-
- /* Classic FAT only allows 11 character uppercase labels */
- strncpy(mangled_label, label, sizeof(mangled_label)-1);
- mangled_label[sizeof(mangled_label)-1] = 0;
- ascii_strupper(mangled_label);
-
- xsprintf(vol_id, "%08" PRIx32,
- ((uint32_t) uuid.bytes[0] << 24) |
- ((uint32_t) uuid.bytes[1] << 16) |
- ((uint32_t) uuid.bytes[2] << 8) |
- ((uint32_t) uuid.bytes[3])); /* Take first 32 byte of UUID */
+ } else if (streq(fstype, "vfat"))
(void) execlp(mkfs, mkfs,
"-i", vol_id,
- "-n", mangled_label,
+ "-n", label,
"-F", "32", /* yes, we force FAT32 here */
node, NULL);
- } else if (streq(fstype, "swap")) {
+ else if (streq(fstype, "swap"))
+ /* TODO: add --quiet here if
+ * https://github.com/util-linux/util-linux/issues/1499 resolved. */
(void) execlp(mkfs, mkfs,
"-L", label,
- "-U", ID128_TO_UUID_STRING(uuid),
+ "-U", vol_id,
node, NULL);
- } else
+ else
/* Generic fallback for all other file systems */
(void) execlp(mkfs, mkfs, node, NULL);
@@ -144,5 +159,12 @@ int make_filesystem(
_exit(EXIT_FAILURE);
}
+ if (STR_IN_SET(fstype, "ext2", "ext3", "ext4", "btrfs", "xfs", "vfat", "swap"))
+ log_info("%s successfully formatted as %s (label \"%s\", uuid %s)",
+ node, fstype, label, vol_id);
+ else
+ log_info("%s successfully formatted as %s (no label or uuid specified)",
+ node, fstype);
+
return 0;
}