1 /* libguestfs - the guestfsd daemon
2 * Copyright (C) 2009-2011 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.
34 /* Takes optional arguments, consult optargs_bitmask. */
36 do_mkfs_opts (const char *fstype, const char *device, int blocksize, const char *features)
38 const char *argv[MAX_ARGS];
40 char blocksize_str[32];
43 char mke2fs[] = "mke2fs";
45 /* For ext2/3/4 run the mke2fs program directly. This is because
46 * the mkfs program "eats" some options, in particular the -F
49 if (STREQ (fstype, "ext2") || STREQ (fstype, "ext3") ||
50 STREQ (fstype, "ext4")) {
51 if (e2prog (mke2fs) == -1)
61 /* Force mke2fs to create a filesystem, even if it thinks it
62 * shouldn't (RHBZ#690819).
64 if (STREQ (fstype, "ext2") || STREQ (fstype, "ext3") ||
65 STREQ (fstype, "ext4"))
68 /* mkfs.ntfs requires the -Q argument otherwise it writes zeroes
69 * to every block and does bad block detection, neither of which
70 * are useful behaviour for virtual devices.
72 if (STREQ (fstype, "ntfs"))
75 /* mkfs.reiserfs produces annoying interactive prompts unless you
76 * tell it to be quiet.
78 if (STREQ (fstype, "reiserfs"))
82 if (STREQ (fstype, "jfs"))
85 /* For GFS, GFS2, assume a single node. */
86 if (STREQ (fstype, "gfs") || STREQ (fstype, "gfs2")) {
88 argv[i++] = "lock_nolock";
89 /* The man page says this is default, but it doesn't seem to be: */
92 /* Don't ask questions: */
96 /* Process blocksize parameter if set. */
97 if (optargs_bitmask & GUESTFS_MKFS_OPTS_BLOCKSIZE_BITMASK) {
98 if (blocksize <= 0 || !is_power_of_2 (blocksize)) {
99 reply_with_error ("block size must be > 0 and a power of 2");
103 if (STREQ (fstype, "vfat") ||
104 STREQ (fstype, "msdos")) {
105 /* For VFAT map the blocksize into a cluster size. However we
106 * have to determine the block device sector size in order to do
109 int sectorsize = do_blockdev_getss (device);
110 if (sectorsize == -1)
113 int sectors_per_cluster = blocksize / sectorsize;
114 if (sectors_per_cluster < 1 || sectors_per_cluster > 128) {
115 reply_with_error ("unsupported cluster size for %s filesystem (requested cluster size = %d, sector size = %d, trying sectors per cluster = %d)",
116 fstype, blocksize, sectorsize, sectors_per_cluster);
120 snprintf (blocksize_str, sizeof blocksize_str, "%d", sectors_per_cluster);
122 argv[i++] = blocksize_str;
124 else if (STREQ (fstype, "ntfs")) {
125 /* For NTFS map the blocksize into a cluster size. */
126 snprintf (blocksize_str, sizeof blocksize_str, "%d", blocksize);
128 argv[i++] = blocksize_str;
131 /* For all other filesystem types, try the -b option. */
132 snprintf (blocksize_str, sizeof blocksize_str, "%d", blocksize);
134 argv[i++] = blocksize_str;
138 if (optargs_bitmask & GUESTFS_MKFS_OPTS_FEATURES_BITMASK) {
140 argv[i++] = features;
149 r = commandv (NULL, &err, argv);
151 reply_with_error ("%s: %s: %s", fstype, device, err);
161 do_mkfs (const char *fstype, const char *device)
164 return do_mkfs_opts (fstype, device, 0, 0);
168 do_mkfs_b (const char *fstype, int blocksize, const char *device)
170 optargs_bitmask = GUESTFS_MKFS_OPTS_BLOCKSIZE_BITMASK;
171 return do_mkfs_opts (fstype, device, blocksize, 0);