summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-07-29 09:14:17 +0200
committerLennart Poettering <lennart@poettering.net>2019-07-29 11:30:47 +0200
commit07b9f3f03c8a105483231b8fa97d673c041c584c (patch)
tree8b6a96a8d997118036f6b347c7d706dd76bafd07
parenta18a3aacd34643be46ed91f6c3f2971d01bfbc5f (diff)
downloadsystemd-07b9f3f03c8a105483231b8fa97d673c041c584c.tar.gz
nspawn: print an explanatory error when people try to use --volatile=yes on distros that are not /usr-merged
-rw-r--r--src/nspawn/nspawn-mount.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/src/nspawn/nspawn-mount.c b/src/nspawn/nspawn-mount.c
index 31f7f3e445..140df4e16b 100644
--- a/src/nspawn/nspawn-mount.c
+++ b/src/nspawn/nspawn-mount.c
@@ -1007,14 +1007,33 @@ static int setup_volatile_yes(
bool tmpfs_mounted = false, bind_mounted = false;
char template[] = "/tmp/nspawn-volatile-XXXXXX";
- _cleanup_free_ char *buf = NULL;
+ _cleanup_free_ char *buf = NULL, *bindir = NULL;
const char *f, *t, *options;
+ struct stat st;
int r;
assert(directory);
- /* --volatile=yes means we mount a tmpfs to the root dir, and the original /usr to use inside it, and that
- read-only. */
+ /* --volatile=yes means we mount a tmpfs to the root dir, and the original /usr to use inside it, and
+ * that read-only. Before we start setting this up let's validate if the image has the /usr merge
+ * implemented, and let's output a friendly log message if it hasn't. */
+
+ bindir = path_join(directory, "/bin");
+ if (!bindir)
+ return log_oom();
+ if (lstat(bindir, &st) < 0) {
+ if (errno != ENOENT)
+ return log_error_errno(errno, "Failed to stat /bin directory below image: %m");
+
+ /* ENOENT is fine, just means the image is probably just a naked /usr and we can create the
+ * rest. */
+ } else if (S_ISDIR(st.st_mode))
+ return log_error_errno(SYNTHETIC_ERRNO(EISDIR),
+ "Sorry, --volatile=yes mode is not supported with OS images that have not merged /bin/, /sbin/, /lib/, /lib64/ into /usr/. "
+ "Please work with your distribution and help them adopt the merged /usr scheme.");
+ else if (!S_ISLNK(st.st_mode))
+ return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
+ "Error starting image: if --volatile=yes is used /bin must be a symlink (for merged /usr support) or non-existent (in which case a symlink is created automatically).");
if (!mkdtemp(template))
return log_error_errno(errno, "Failed to create temporary directory: %m");