1820f8a8e4b79ea2a9b1a1987a77bb55adad5464
[libguestfs.git] / daemon / mount.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009 Red Hat Inc.
3  *
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.
8  *
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.
13  *
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.
17  */
18
19 #include <config.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25
26 #include "daemon.h"
27 #include "actions.h"
28
29 /* You must mount something on "/" first, hence: */
30 int root_mounted = 0;
31
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.
35  *
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
38  * /bin/mount.
39  */
40
41 int
42 do_mount_vfs (char *options, char *vfstype,
43               char *device, char *mountpoint)
44 {
45   int len, r, is_root;
46   char *mp;
47   char *error;
48
49   IS_DEVICE (device, -1);
50
51   is_root = strcmp (mountpoint, "/") == 0;
52
53   if (!root_mounted && !is_root) {
54     reply_with_error ("mount: you must mount something on / first");
55     return -1;
56   }
57
58   len = strlen (mountpoint) + 9;
59
60   mp = malloc (len);
61   if (!mp) {
62     reply_with_perror ("malloc");
63     return -1;
64   }
65
66   snprintf (mp, len, "/sysroot%s", mountpoint);
67
68   if (vfstype)
69     r = command (NULL, &error,
70                  "mount", "-o", options, "-t", vfstype, device, mp, NULL);
71   else
72     r = command (NULL, &error,
73                  "mount", "-o", options, device, mp, NULL);
74   free (mp);
75   if (r == -1) {
76     reply_with_error ("mount: %s on %s: %s", device, mountpoint, error);
77     free (error);
78     return -1;
79   }
80
81   if (is_root)
82     root_mounted = 1;
83
84   return 0;
85 }
86
87 int
88 do_mount (char *device, char *mountpoint)
89 {
90   return do_mount_vfs ("sync,noatime", NULL, device, mountpoint);
91 }
92
93 int
94 do_mount_ro (char *device, char *mountpoint)
95 {
96   return do_mount_vfs ("ro", NULL, device, mountpoint);
97 }
98
99 int
100 do_mount_options (char *options, char *device,
101                   char *mountpoint)
102 {
103   return do_mount_vfs (options, NULL, device, mountpoint);
104 }
105
106 /* Again, use the external /bin/umount program, so that /etc/mtab
107  * is kept updated.
108  */
109 int
110 do_umount (char *pathordevice)
111 {
112   int len, freeit = 0, r;
113   char *buf;
114   char *err;
115
116   if (strncmp (pathordevice, "/dev/", 5) == 0) {
117     buf = pathordevice;
118     IS_DEVICE (buf, -1);
119   } else {
120     len = strlen (pathordevice) + 9;
121     freeit = 1;
122     buf = malloc (len);
123     if (buf == NULL) {
124       reply_with_perror ("malloc");
125       return -1;
126     }
127     snprintf (buf, len, "/sysroot%s", pathordevice);
128   }
129
130   r = command (NULL, &err, "umount", buf, NULL);
131   if (freeit) free (buf);
132   if (r == -1) {
133     reply_with_error ("umount: %s: %s", pathordevice, err);
134     free (err);
135     return -1;
136   }
137
138   free (err);
139
140   /* update root_mounted? */
141
142   return 0;
143 }
144
145 char **
146 do_mounts (void)
147 {
148   char *out, *err;
149   int r;
150   char **ret = NULL;
151   int size = 0, alloc = 0;
152   char *p, *pend, *p2;
153
154   r = command (&out, &err, "mount", NULL);
155   if (r == -1) {
156     reply_with_error ("mount: %s", err);
157     free (out);
158     free (err);
159     return NULL;
160   }
161
162   free (err);
163
164   p = out;
165   while (p) {
166     pend = strchr (p, '\n');
167     if (pend) {
168       *pend = '\0';
169       pend++;
170     }
171
172     /* Lines have the format:
173      *   /dev/foo on /mountpoint type ...
174      */
175     p2 = strstr (p, " on /sysroot");
176     if (p2 != NULL) {
177       *p2 = '\0';
178       if (add_string (&ret, &size, &alloc, p) == -1) {
179         free (out);
180         return NULL;
181       }
182     }
183
184     p = pend;
185   }
186
187   free (out);
188
189   if (add_string (&ret, &size, &alloc, NULL) == -1)
190     return NULL;
191
192   return ret;
193 }
194
195 /* Unmount everything mounted under /sysroot.
196  *
197  * We have to unmount in the correct order, so we sort the paths by
198  * longest first to ensure that child paths are unmounted by parent
199  * paths.
200  *
201  * This call is more important than it appears at first, because it
202  * is widely used by both test and production code in order to
203  * get back to a known state (nothing mounted, everything synchronized).
204  */
205 static int
206 compare_longest_first (const void *vp1, const void *vp2)
207 {
208   char * const *p1 = (char * const *) vp1;
209   char * const *p2 = (char * const *) vp2;
210   int n1 = strlen (*p1);
211   int n2 = strlen (*p2);
212   return n2 - n1;
213 }
214
215 int
216 do_umount_all (void)
217 {
218   char *out, *err;
219   int i, r;
220   char **mounts = NULL;
221   int size = 0, alloc = 0;
222   char *p, *p2, *p3, *pend;
223
224   r = command (&out, &err, "mount", NULL);
225   if (r == -1) {
226     reply_with_error ("mount: %s", err);
227     free (out);
228     free (err);
229     return -1;
230   }
231
232   free (err);
233
234   p = out;
235   while (p) {
236     pend = strchr (p, '\n');
237     if (pend) {
238       *pend = '\0';
239       pend++;
240     }
241
242     /* Lines have the format:
243      *   /dev/foo on /mountpoint type ...
244      */
245     p2 = strstr (p, " on /sysroot");
246     if (p2 != NULL) {
247       p2 += 4;
248       p3 = p2 + strcspn (p2, " ");
249       *p3 = '\0';
250       if (add_string (&mounts, &size, &alloc, p2) == -1) {
251         free (out);
252         return -1;
253       }
254     }
255
256     p = pend;
257   }
258   free (out);
259
260   qsort (mounts, size, sizeof (char *), compare_longest_first);
261
262   /* Unmount them. */
263   for (i = 0; i < size; ++i) {
264     r = command (NULL, &err, "umount", mounts[i], NULL);
265     if (r == -1) {
266       reply_with_error ("umount: %s: %s", mounts[i], err);
267       free (err);
268       free_stringslen (mounts, size);
269       return -1;
270     }
271     free (err);
272   }
273
274   free_stringslen (mounts, size);
275
276   /* We've unmounted root now, so ... */
277   root_mounted = 0;
278
279   return 0;
280 }
281
282 /* Mount using the loopback device.  You can't use the generic
283  * do_mount call for this because the first parameter isn't a
284  * device.
285  */
286 int
287 do_mount_loop (char *file, char *mountpoint)
288 {
289   int len, r;
290   char *buf, *mp;
291   char *error;
292
293   NEED_ROOT (-1);
294   ABS_PATH (file, -1);
295
296   /* We have to prefix /sysroot on both the filename and the mountpoint. */
297   len = strlen (mountpoint) + 9;
298   mp = malloc (len);
299   if (!mp) {
300     reply_with_perror ("malloc");
301     return -1;
302   }
303   snprintf (mp, len, "/sysroot%s", mountpoint);
304
305   len = strlen (file) + 9;
306   buf = malloc (len);
307   if (!file) {
308     reply_with_perror ("malloc");
309     free (mp);
310     return -1;
311   }
312   snprintf (buf, len, "/sysroot%s", file);
313
314   r = command (NULL, &error, "mount", "-o", "loop", buf, mp, NULL);
315   free (mp);
316   free (buf);
317   if (r == -1) {
318     reply_with_error ("mount: %s on %s: %s", file, mountpoint, error);
319     free (error);
320     return -1;
321   }
322
323   return 0;
324 }