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.
29 /* You must mount something on "/" first, hence: */
32 /* The "simple mount" call offers no complex options, you can just
33 * mount a device on a mountpoint. The variations like mount_ro,
34 * mount_options and mount_vfs let you set progressively more things.
36 * It's tempting to try a direct mount(2) syscall, but that doesn't
37 * do any autodetection, so we are better off calling out to
42 do_mount_vfs (char *options, char *vfstype,
43 char *device, char *mountpoint)
49 IS_DEVICE (device, -1);
51 is_root = strcmp (mountpoint, "/") == 0;
53 if (!root_mounted && !is_root) {
54 reply_with_error ("mount: you must mount something on / first");
58 len = strlen (mountpoint) + 9;
62 reply_with_perror ("malloc");
66 snprintf (mp, len, "/sysroot%s", mountpoint);
69 r = command (NULL, &error,
70 "mount", "-o", options, "-t", vfstype, device, mp, NULL);
72 r = command (NULL, &error,
73 "mount", "-o", options, device, mp, NULL);
75 reply_with_error ("mount: %s on %s: %s", device, mountpoint, error);
87 do_mount (char *device, char *mountpoint)
89 return do_mount_vfs ("sync,noatime", NULL, device, mountpoint);
93 do_mount_ro (char *device, char *mountpoint)
95 return do_mount_vfs ("ro", NULL, device, mountpoint);
99 do_mount_options (char *options, char *device,
102 return do_mount_vfs (options, NULL, device, mountpoint);
105 /* Again, use the external /bin/umount program, so that /etc/mtab
109 do_umount (char *pathordevice)
111 int len, freeit = 0, r;
115 if (strncmp (pathordevice, "/dev/", 5) == 0) {
119 len = strlen (pathordevice) + 9;
123 reply_with_perror ("malloc");
126 snprintf (buf, len, "/sysroot%s", pathordevice);
129 r = command (NULL, &err, "umount", buf, NULL);
130 if (freeit) free (buf);
132 reply_with_error ("umount: %s: %s", pathordevice, err);
139 /* update root_mounted? */
150 int size = 0, alloc = 0;
153 r = command (&out, &err, "mount", NULL);
155 reply_with_error ("mount: %s", err);
165 pend = strchr (p, '\n');
171 /* Lines have the format:
172 * /dev/foo on /mountpoint type ...
174 p2 = strstr (p, " on /sysroot");
177 if (add_string (&ret, &size, &alloc, p) == -1) {
188 if (add_string (&ret, &size, &alloc, NULL) == -1)
194 /* Unmount everything mounted under /sysroot.
196 * We have to unmount in the correct order, so we sort the paths by
197 * longest first to ensure that child paths are unmounted by parent
200 * This call is more important than it appears at first, because it
201 * is widely used by both test and production code in order to
202 * get back to a known state (nothing mounted, everything synchronized).
205 compare_longest_first (const void *vp1, const void *vp2)
207 char * const *p1 = (char * const *) vp1;
208 char * const *p2 = (char * const *) vp2;
209 int n1 = strlen (*p1);
210 int n2 = strlen (*p2);
219 char **mounts = NULL;
220 int size = 0, alloc = 0;
221 char *p, *p2, *p3, *pend;
223 r = command (&out, &err, "mount", NULL);
225 reply_with_error ("mount: %s", err);
235 pend = strchr (p, '\n');
241 /* Lines have the format:
242 * /dev/foo on /mountpoint type ...
244 p2 = strstr (p, " on /sysroot");
247 p3 = p2 + strcspn (p2, " ");
249 if (add_string (&mounts, &size, &alloc, p2) == -1) {
259 qsort (mounts, size, sizeof (char *), compare_longest_first);
262 for (i = 0; i < size; ++i) {
263 r = command (NULL, &err, "umount", mounts[i], NULL);
265 reply_with_error ("umount: %s: %s", mounts[i], err);
267 free_stringslen (mounts, size);
273 free_stringslen (mounts, size);
275 /* We've unmounted root now, so ... */