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.
33 * Parted 1.9 sends error messages to stdout, hence use of the
34 * COMMAND_FLAG_FOLD_STDOUT_ON_STDERR flag.
36 * parted occasionally fails to do ioctl(BLKRRPART) on the device,
37 * apparently because of some internal race in the code. We attempt
38 * to detect and recover from this error if we can.
41 recover_blkrrpart (const char *device, const char *err)
46 "Error informing the kernel about modifications to partition"))
49 r = command (NULL, NULL, "blockdev", "--rereadpt", device, NULL);
58 #define RUN_PARTED(device,...) \
63 r = commandf (NULL, &err, COMMAND_FLAG_FOLD_STDOUT_ON_STDERR, \
64 "parted", "-s", "--", (device), __VA_ARGS__); \
66 if (recover_blkrrpart ((device), err) == -1) { \
67 reply_with_error ("%s: parted: %s: %s", __func__, (device), err); \
77 check_parttype (const char *parttype)
79 /* Check and translate parttype. */
80 if (STREQ (parttype, "aix") ||
81 STREQ (parttype, "amiga") ||
82 STREQ (parttype, "bsd") ||
83 STREQ (parttype, "dasd") ||
84 STREQ (parttype, "dvh") ||
85 STREQ (parttype, "gpt") ||
86 STREQ (parttype, "mac") ||
87 STREQ (parttype, "msdos") ||
88 STREQ (parttype, "pc98") ||
89 STREQ (parttype, "sun"))
91 else if (STREQ (parttype, "rdb"))
93 else if (STREQ (parttype, "efi"))
95 else if (STREQ (parttype, "mbr"))
102 do_part_init (const char *device, const char *parttype)
104 parttype = check_parttype (parttype);
106 reply_with_error ("unknown partition type: common choices are \"gpt\" and \"msdos\"");
110 RUN_PARTED (device, "mklabel", parttype, NULL);
118 do_part_add (const char *device, const char *prlogex,
119 int64_t startsect, int64_t endsect)
124 /* Check and translate prlogex. */
125 if (STREQ (prlogex, "primary") ||
126 STREQ (prlogex, "logical") ||
127 STREQ (prlogex, "extended"))
129 else if (STREQ (prlogex, "p"))
131 else if (STREQ (prlogex, "l"))
133 else if (STREQ (prlogex, "e"))
134 prlogex = "extended";
136 reply_with_error ("unknown partition type: %s: this should be \"primary\", \"logical\" or \"extended\"", prlogex);
141 reply_with_error ("startsect cannot be negative");
144 /* but endsect can be negative */
146 snprintf (startstr, sizeof startstr, "%" PRIi64 "s", startsect);
147 snprintf (endstr, sizeof endstr, "%" PRIi64 "s", endsect);
149 /* XXX Bug: If the partition table type (which we don't know in this
150 * function) is GPT, then this parted command sets the _partition
151 * name_ to prlogex, eg. "primary". I would essentially describe
152 * this as a bug in the parted mkpart command.
154 RUN_PARTED (device, "mkpart", prlogex, startstr, endstr, NULL);
162 do_part_disk (const char *device, const char *parttype)
164 const char *startstr;
167 parttype = check_parttype (parttype);
169 reply_with_error ("unknown partition type: common choices are \"gpt\" and \"msdos\"");
173 /* Voooooodooooooooo (thanks Jim Meyering for working this out). */
174 if (STREQ (parttype, "msdos")) {
177 } else if (STREQ (parttype, "gpt")) {
188 /* See comment about about the parted mkpart command. */
189 "mkpart", STREQ (parttype, "gpt") ? "p1" : "primary",
190 startstr, endstr, NULL);
198 do_part_set_bootable (const char *device, int partnum, int bootable)
202 snprintf (partstr, sizeof partstr, "%d", partnum);
204 RUN_PARTED (device, "set", partstr, "boot", bootable ? "on" : "off", NULL);
212 do_part_set_name (const char *device, int partnum, const char *name)
216 snprintf (partstr, sizeof partstr, "%d", partnum);
218 RUN_PARTED (device, "name", partstr, name, NULL);
226 print_partition_table (const char *device)
232 r = command (&out, &err, "parted", "-m", "--", device,
236 reply_with_error ("parted print: %s: %s", device,
237 /* Hack for parted 1.x which sends errors to stdout. */
245 lines = split_lines (out);
251 if (lines[0] == NULL || STRNEQ (lines[0], "BYT;")) {
252 reply_with_error ("unknown signature, expected \"BYT;\" as first line of the output: %s",
253 lines[0] ? lines[0] : "(signature was null)");
254 free_strings (lines);
258 if (lines[1] == NULL) {
259 reply_with_error ("parted didn't return a line describing the device");
260 free_strings (lines);
268 do_part_get_parttype (const char *device)
273 lines = print_partition_table (device);
277 /* lines[1] is something like:
278 * "/dev/sda:1953525168s:scsi:512:512:msdos:ATA Hitachi HDT72101;"
280 if (strtok (lines[1], ":") == NULL /* device */
281 || strtok (NULL, ":") == NULL /* size */
282 || strtok (NULL, ":") == NULL /* transport */
283 || strtok (NULL, ":") == NULL /* sector size */
284 || strtok (NULL, ":") == NULL /* physical sector size */
285 || (r = strtok (NULL, ":")) == NULL /* return value */
287 reply_with_error ("too few fields in output from parted print command: %s", lines[1]);
288 free_strings (lines);
294 reply_with_perror ("strdup");
295 free_strings (lines);
299 free_strings (lines);
304 guestfs_int_partition_list *
305 do_part_list (const char *device)
308 size_t row, nr_rows, i;
309 guestfs_int_partition_list *r;
311 lines = print_partition_table (device);
315 /* lines[0] is "BYT;", lines[1] is the device line which we ignore,
316 * lines[2..] are the partitions themselves. Count how many.
319 for (row = 2; lines[row] != NULL; ++row)
322 r = malloc (sizeof *r);
324 reply_with_perror ("malloc");
327 r->guestfs_int_partition_list_len = nr_rows;
328 r->guestfs_int_partition_list_val =
329 malloc (nr_rows * sizeof (guestfs_int_partition));
330 if (r->guestfs_int_partition_list_val == NULL) {
331 reply_with_perror ("malloc");
335 /* Now parse the lines. */
336 for (i = 0, row = 2; lines[row] != NULL; ++i, ++row) {
337 if (sscanf (lines[row], "%d:%" SCNi64 "B:%" SCNi64 "B:%" SCNi64 "B",
338 &r->guestfs_int_partition_list_val[i].part_num,
339 &r->guestfs_int_partition_list_val[i].part_start,
340 &r->guestfs_int_partition_list_val[i].part_end,
341 &r->guestfs_int_partition_list_val[i].part_size) != 4) {
342 reply_with_error ("could not parse row from output of parted print command: %s", lines[row]);
347 free_strings (lines);
351 free (r->guestfs_int_partition_list_val);
355 free_strings (lines);