Implemented 'mount' and 'touch' commands.
[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.
34  *
35  * It's tempting to try a direct mount(2) syscall, but that doesn't
36  * do any autodetection, so we are better off calling out to
37  * /bin/mount.
38  */
39
40 int
41 do_mount (const char *device, const char *mountpoint)
42 {
43   int len, r, is_root;
44   char *mp;
45   char *error;
46
47   is_root = strcmp (mountpoint, "/") == 0;
48
49   if (!root_mounted && !is_root) {
50     reply_with_error ("mount: you must mount something on / first");
51     return -1;
52   }
53
54   len = strlen (mountpoint) + 9;
55
56   mp = malloc (len);
57   if (!mp) {
58     reply_with_perror ("malloc");
59     return -1;
60   }
61
62   snprintf (mp, len, "/sysroot%s", mountpoint);
63
64   r = command (NULL, &error,
65                "mount", "-o", "sync,noatime", device, mp, NULL);
66   if (r == -1) {
67     reply_with_error ("mount: %s on %s: %s", device, mountpoint, error);
68     free (error);
69     return -1;
70   }
71
72   if (is_root)
73     root_mounted = 1;
74
75   return 0;
76 }