daemon: debug segv correct use of dereferencing NULL.
[libguestfs.git] / daemon / mkfs.c
1 /* libguestfs - the guestfsd daemon
2  * Copyright (C) 2009-2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 #include <fcntl.h>
26 #include <dirent.h>
27 #include <sys/stat.h>
28
29 #include "daemon.h"
30 #include "actions.h"
31
32 #define MAX_ARGS 64
33
34 /* Takes optional arguments, consult optargs_bitmask. */
35 int
36 do_mkfs_opts (const char *fstype, const char *device, int blocksize,
37               const char *features, int inode, int sectorsize)
38 {
39   const char *argv[MAX_ARGS];
40   size_t i = 0;
41   char blocksize_str[32];
42   char inode_str[32];
43   char sectorsize_str[32];
44   int r;
45   char *err;
46   char mke2fs[] = "mke2fs";
47   int extfs = 0;
48
49   if (STREQ (fstype, "ext2") || STREQ (fstype, "ext3") ||
50       STREQ (fstype, "ext4"))
51     extfs = 1;
52
53   /* For ext2/3/4 run the mke2fs program directly.  This is because
54    * the mkfs program "eats" some options, in particular the -F
55    * option.
56    */
57   if (extfs) {
58     if (e2prog (mke2fs) == -1)
59       return -1;
60     ADD_ARG (argv, i, mke2fs);
61   }
62   else
63     ADD_ARG (argv, i, "mkfs");
64
65   ADD_ARG (argv, i, "-t");
66   ADD_ARG (argv, i, fstype);
67
68   /* Force mke2fs to create a filesystem, even if it thinks it
69    * shouldn't (RHBZ#690819).
70    */
71   if (extfs)
72     ADD_ARG (argv, i, "-F");
73
74   /* mkfs.ntfs requires the -Q argument otherwise it writes zeroes
75    * to every block and does bad block detection, neither of which
76    * are useful behaviour for virtual devices.
77    */
78   if (STREQ (fstype, "ntfs"))
79     ADD_ARG (argv, i, "-Q");
80
81   /* mkfs.reiserfs produces annoying interactive prompts unless you
82    * tell it to be quiet.
83    * mkfs.jfs is the same
84    * mkfs.xfs must force to make xfs filesystem when the device already
85    * has a filesystem on it
86    */
87   if (STREQ (fstype, "reiserfs") || STREQ (fstype, "jfs") ||
88       STREQ (fstype, "xfs"))
89     ADD_ARG(argv, i, "-f");
90
91   /* For GFS, GFS2, assume a single node. */
92   if (STREQ (fstype, "gfs") || STREQ (fstype, "gfs2")) {
93     ADD_ARG (argv, i, "-p");
94     ADD_ARG (argv, i, "lock_nolock");
95     /* The man page says this is default, but it doesn't seem to be: */
96     ADD_ARG (argv, i, "-j");
97     ADD_ARG (argv, i, "1");
98     /* Don't ask questions: */
99     ADD_ARG (argv, i, "-O");
100   }
101
102   /* Process blocksize parameter if set. */
103   if (optargs_bitmask & GUESTFS_MKFS_OPTS_BLOCKSIZE_BITMASK) {
104     if (blocksize <= 0 || !is_power_of_2 (blocksize)) {
105       reply_with_error ("block size must be > 0 and a power of 2");
106       return -1;
107     }
108
109     if (STREQ (fstype, "vfat") ||
110         STREQ (fstype, "msdos")) {
111       /* For VFAT map the blocksize into a cluster size.  However we
112        * have to determine the block device sector size in order to do
113        * this.
114        */
115       int sectorsize = do_blockdev_getss (device);
116       if (sectorsize == -1)
117         return -1;
118
119       int sectors_per_cluster = blocksize / sectorsize;
120       if (sectors_per_cluster < 1 || sectors_per_cluster > 128) {
121         reply_with_error ("unsupported cluster size for %s filesystem (requested cluster size = %d, sector size = %d, trying sectors per cluster = %d)",
122                           fstype, blocksize, sectorsize, sectors_per_cluster);
123         return -1;
124       }
125
126       snprintf (blocksize_str, sizeof blocksize_str, "%d", sectors_per_cluster);
127       ADD_ARG (argv, i, "-s");
128       ADD_ARG (argv, i, blocksize_str);
129     }
130     else if (STREQ (fstype, "ntfs")) {
131       /* For NTFS map the blocksize into a cluster size. */
132       snprintf (blocksize_str, sizeof blocksize_str, "%d", blocksize);
133       ADD_ARG (argv, i, "-c");
134       ADD_ARG (argv, i, blocksize_str);
135     }
136     else {
137       /* For all other filesystem types, try the -b option. */
138       snprintf (blocksize_str, sizeof blocksize_str, "%d", blocksize);
139       ADD_ARG (argv, i, "-b");
140       ADD_ARG (argv, i, blocksize_str);
141     }
142   }
143
144   if (optargs_bitmask & GUESTFS_MKFS_OPTS_FEATURES_BITMASK) {
145     ADD_ARG (argv, i, "-O");
146     ADD_ARG (argv, i, features);
147   }
148
149   if (optargs_bitmask & GUESTFS_MKFS_OPTS_INODE_BITMASK) {
150     if (!extfs) {
151       reply_with_error ("inode size (-I) can only be set on ext2/3/4 filesystems");
152       return -1;
153     }
154
155     if (inode <= 0) {
156       reply_with_error ("inode size must be larger than zero");
157       return -1;
158     }
159
160     snprintf (inode_str, sizeof inode_str, "%d", inode);
161     ADD_ARG (argv, i, "-I");
162     ADD_ARG (argv, i, inode_str);
163   }
164
165   if (optargs_bitmask & GUESTFS_MKFS_OPTS_SECTORSIZE_BITMASK) {
166     if (!STREQ (fstype, "ufs")) {
167       reply_with_error ("sector size (-S) can only be set on ufs filesystems");
168       return -1;
169     }
170
171     if (sectorsize <= 0) {
172       reply_with_error ("sector size must be larger than zero");
173       return -1;
174     }
175
176     snprintf (sectorsize_str, sizeof sectorsize_str, "%d", sectorsize);
177     ADD_ARG (argv, i, "-S");
178     ADD_ARG (argv, i, sectorsize_str);
179   }
180
181   ADD_ARG (argv, i, device);
182   ADD_ARG (argv, i, NULL);
183
184   r = commandv (NULL, &err, argv);
185   if (r == -1) {
186     reply_with_error ("%s: %s: %s", fstype, device, err);
187     free (err);
188     return -1;
189   }
190
191   free (err);
192   return 0;
193 }
194
195 int
196 do_mkfs (const char *fstype, const char *device)
197 {
198   optargs_bitmask = 0;
199   return do_mkfs_opts (fstype, device, 0, 0, 0, 0);
200 }
201
202 int
203 do_mkfs_b (const char *fstype, int blocksize, const char *device)
204 {
205   optargs_bitmask = GUESTFS_MKFS_OPTS_BLOCKSIZE_BITMASK;
206   return do_mkfs_opts (fstype, device, blocksize, 0, 0, 0);
207 }