1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009 Red Hat Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <sys/types.h>
31 /* You must mount something on "/" first, hence: */
34 /* The "simple mount" call offers no complex options, you can just
35 * mount a device on a mountpoint. The variations like mount_ro,
36 * mount_options and mount_vfs let you set progressively more things.
38 * It's tempting to try a direct mount(2) syscall, but that doesn't
39 * do any autodetection, so we are better off calling out to
44 do_mount_vfs (const char *options, const char *vfstype,
45 const char *device, const char *mountpoint)
51 ABS_PATH (mountpoint, 0, return -1);
53 is_root = STREQ (mountpoint, "/");
55 if (!root_mounted && !is_root) {
56 reply_with_error ("you must mount something on / first");
60 mp = sysroot_path (mountpoint);
62 reply_with_perror ("malloc");
67 r = command (NULL, &error,
68 "mount", "-o", options, "-t", vfstype, device, mp, NULL);
70 r = command (NULL, &error,
71 "mount", "-o", options, device, mp, NULL);
74 reply_with_error ("%s on %s: %s", device, mountpoint, error);
86 do_mount (const char *device, const char *mountpoint)
88 return do_mount_vfs ("sync,noatime", NULL, device, mountpoint);
92 do_mount_ro (const char *device, const char *mountpoint)
94 return do_mount_vfs ("ro", NULL, device, mountpoint);
98 do_mount_options (const char *options, const char *device,
99 const char *mountpoint)
101 return do_mount_vfs (options, NULL, device, mountpoint);
104 /* Again, use the external /bin/umount program, so that /etc/mtab
108 do_umount (const char *pathordevice)
115 is_dev = STREQLEN (pathordevice, "/dev/", 5);
116 buf = is_dev ? strdup (pathordevice)
117 : sysroot_path (pathordevice);
119 reply_with_perror ("malloc");
124 RESOLVE_DEVICE (buf, 0, { free (buf); return -1; });
126 r = command (NULL, &err, "umount", buf, NULL);
130 reply_with_error ("%s: %s", pathordevice, err);
137 /* update root_mounted? */
143 mounts_or_mountpoints (int mp)
148 int size = 0, alloc = 0;
151 char matching[5 + sysroot_len];
154 r = command (&out, &err, "mount", NULL);
156 reply_with_error ("mount: %s", err);
164 /* Lines have the format:
165 * /dev/foo on /mountpoint type ...
167 snprintf (matching, 5 + sysroot_len, " on %s", sysroot);
171 pend = strchr (p, '\n');
177 p2 = strstr (p, matching);
180 if (add_string (&ret, &size, &alloc, p) == -1) {
185 p2 += 4 + sysroot_len; /* skip " on /sysroot" */
186 len = strcspn (p2, " ");
188 if (len == 0) /* .. just /sysroot, so we turn it into "/" */
193 if (add_string (&ret, &size, &alloc, p2) == -1) {
205 if (add_string (&ret, &size, &alloc, NULL) == -1)
208 /* Convert /dev/mapper LV paths into canonical paths (RHBZ#646432). */
209 for (i = 0; ret[i] != NULL; i += mp ? 2 : 1) {
210 if (STRPREFIX (ret[i], "/dev/mapper/") || STRPREFIX (ret[i], "/dev/dm-")) {
212 r = lv_canonical (ret[i], &canonical);
221 /* Ignore the case where r == 0. This might happen where
222 * eg. a LUKS /dev/mapper device is mounted, but that won't
223 * correspond to any LV.
234 return mounts_or_mountpoints (0);
238 do_mountpoints (void)
240 return mounts_or_mountpoints (1);
243 /* Unmount everything mounted under /sysroot.
245 * We have to unmount in the correct order, so we sort the paths by
246 * longest first to ensure that child paths are unmounted by parent
249 * This call is more important than it appears at first, because it
250 * is widely used by both test and production code in order to
251 * get back to a known state (nothing mounted, everything synchronized).
254 compare_longest_first (const void *vp1, const void *vp2)
256 char * const *p1 = (char * const *) vp1;
257 char * const *p2 = (char * const *) vp2;
258 int n1 = strlen (*p1);
259 int n2 = strlen (*p2);
268 char **mounts = NULL;
269 int size = 0, alloc = 0;
270 char *p, *p2, *p3, *pend;
271 char matching[5 + sysroot_len];
273 r = command (&out, &err, "mount", NULL);
275 reply_with_error ("mount: %s", err);
283 /* Lines have the format:
284 * /dev/foo on /mountpoint type ...
286 snprintf (matching, 5 + sysroot_len, " on %s", sysroot);
290 pend = strchr (p, '\n');
296 p2 = strstr (p, matching);
299 p3 = p2 + strcspn (p2, " ");
301 if (add_string (&mounts, &size, &alloc, p2) == -1) {
311 qsort (mounts, size, sizeof (char *), compare_longest_first);
314 for (i = 0; i < size; ++i) {
315 r = command (NULL, &err, "umount", mounts[i], NULL);
317 reply_with_error ("umount: %s: %s", mounts[i], err);
319 free_stringslen (mounts, size);
325 free_stringslen (mounts, size);
327 /* We've unmounted root now, so ... */
333 /* Mount using the loopback device. You can't use the generic
334 * do_mount call for this because the first parameter isn't a
338 do_mount_loop (const char *file, const char *mountpoint)
344 /* We have to prefix /sysroot on both the filename and the mountpoint. */
345 mp = sysroot_path (mountpoint);
347 reply_with_perror ("malloc");
351 buf = sysroot_path (file);
353 reply_with_perror ("malloc");
358 r = command (NULL, &error, "mount", "-o", "loop", buf, mp, NULL);
362 reply_with_error ("%s on %s: %s", file, mountpoint, error);
370 /* Specialized calls mkmountpoint and rmmountpoint are really
371 * variations on mkdir and rmdir which do no checking and (in the
372 * mkmountpoint case) set the root_mounted flag.
375 do_mkmountpoint (const char *path)
379 /* NEED_ROOT (return -1); - we don't want this test for this call. */
380 ABS_PATH (path, 0, return -1);
383 r = mkdir (path, 0777);
387 reply_with_perror ("%s", path);
391 /* Set the flag so that filesystems can be mounted here,
392 * not just on /sysroot.
400 do_rmmountpoint (const char *path)
404 /* NEED_ROOT (return -1); - we don't want this test for this call. */
405 ABS_PATH (path, 0, return -1);
412 reply_with_perror ("%s", path);