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(error,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 (return -1, 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 (return -1, device, "mkpart", prlogex, startstr, endstr, NULL);
162 do_part_del (const char *device, int partnum)
164 char partnum_str[16];
165 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
167 RUN_PARTED (return -1, device, "rm", partnum_str, NULL);
174 do_part_disk (const char *device, const char *parttype)
176 const char *startstr;
179 parttype = check_parttype (parttype);
181 reply_with_error ("unknown partition type: common choices are \"gpt\" and \"msdos\"");
185 /* Voooooodooooooooo (thanks Jim Meyering for working this out). */
186 if (STREQ (parttype, "msdos")) {
189 } else if (STREQ (parttype, "gpt")) {
198 RUN_PARTED (return -1,
201 /* See comment about about the parted mkpart command. */
202 "mkpart", STREQ (parttype, "gpt") ? "p1" : "primary",
203 startstr, endstr, NULL);
211 do_part_set_bootable (const char *device, int partnum, int bootable)
215 snprintf (partstr, sizeof partstr, "%d", partnum);
217 RUN_PARTED (return -1,
218 device, "set", partstr, "boot", bootable ? "on" : "off", NULL);
226 do_part_set_name (const char *device, int partnum, const char *name)
230 snprintf (partstr, sizeof partstr, "%d", partnum);
232 RUN_PARTED (return -1, device, "name", partstr, name, NULL);
239 /* Return the nth field from a string of ':'/';'-delimited strings.
240 * Useful for parsing the return value from print_partition_table
244 get_table_field (const char *line, int n)
246 const char *p = line;
248 while (*p && n > 0) {
249 p += strcspn (p, ":;") + 1;
254 reply_with_error ("not enough fields in output of parted print command: %s",
259 size_t len = strcspn (p, ":;");
260 char *q = strndup (p, len);
262 reply_with_perror ("strndup");
270 print_partition_table (const char *device)
276 r = command (&out, &err, "parted", "-m", "--", device,
280 reply_with_error ("parted print: %s: %s", device,
281 /* Hack for parted 1.x which sends errors to stdout. */
289 lines = split_lines (out);
295 if (lines[0] == NULL || STRNEQ (lines[0], "BYT;")) {
296 reply_with_error ("unknown signature, expected \"BYT;\" as first line of the output: %s",
297 lines[0] ? lines[0] : "(signature was null)");
298 free_strings (lines);
302 if (lines[1] == NULL) {
303 reply_with_error ("parted didn't return a line describing the device");
304 free_strings (lines);
312 do_part_get_parttype (const char *device)
314 char **lines = print_partition_table (device);
318 /* lines[1] is something like:
319 * "/dev/sda:1953525168s:scsi:512:512:msdos:ATA Hitachi HDT72101;"
321 char *r = get_table_field (lines[1], 5);
323 free_strings (lines);
327 free_strings (lines);
332 guestfs_int_partition_list *
333 do_part_list (const char *device)
336 size_t row, nr_rows, i;
337 guestfs_int_partition_list *r;
339 lines = print_partition_table (device);
343 /* lines[0] is "BYT;", lines[1] is the device line which we ignore,
344 * lines[2..] are the partitions themselves. Count how many.
347 for (row = 2; lines[row] != NULL; ++row)
350 r = malloc (sizeof *r);
352 reply_with_perror ("malloc");
355 r->guestfs_int_partition_list_len = nr_rows;
356 r->guestfs_int_partition_list_val =
357 malloc (nr_rows * sizeof (guestfs_int_partition));
358 if (r->guestfs_int_partition_list_val == NULL) {
359 reply_with_perror ("malloc");
363 /* Now parse the lines. */
364 for (i = 0, row = 2; lines[row] != NULL; ++i, ++row) {
365 if (sscanf (lines[row], "%d:%" SCNi64 "B:%" SCNi64 "B:%" SCNi64 "B",
366 &r->guestfs_int_partition_list_val[i].part_num,
367 &r->guestfs_int_partition_list_val[i].part_start,
368 &r->guestfs_int_partition_list_val[i].part_end,
369 &r->guestfs_int_partition_list_val[i].part_size) != 4) {
370 reply_with_error ("could not parse row from output of parted print command: %s", lines[row]);
375 free_strings (lines);
379 free (r->guestfs_int_partition_list_val);
383 free_strings (lines);
388 do_part_get_bootable (const char *device, int partnum)
390 char **lines = print_partition_table (device);
394 /* We want lines[1+partnum]. */
395 if (count_strings (lines) < 1+partnum) {
396 reply_with_error ("partition number out of range: %d", partnum);
397 free_strings (lines);
401 char *boot = get_table_field (lines[1+partnum], 6);
403 free_strings (lines);
407 int r = STREQ (boot, "boot");
410 free_strings (lines);
415 /* Currently we use sfdisk for getting and setting the ID byte. In
416 * future, extend parted to provide this functionality. As a result
417 * of using sfdisk, this won't work for non-MBR-style partitions, but
418 * that limitation is noted in the documentation and we can extend it
419 * later without breaking the ABI.
422 do_part_get_mbr_id (const char *device, int partnum)
424 char partnum_str[16];
425 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
430 r = command (&out, &err, "sfdisk", "--print-id", device, partnum_str, NULL);
432 reply_with_error ("sfdisk --print-id: %s", err);
440 /* It's printed in hex ... */
442 if (sscanf (out, "%x", &id) != 1) {
443 reply_with_error ("sfdisk --print-id: cannot parse output: %s", out);
453 do_part_set_mbr_id (const char *device, int partnum, int idbyte)
455 char partnum_str[16];
456 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
459 snprintf (idbyte_str, sizeof partnum_str, "%x", idbyte); /* NB: hex */
464 r = command (NULL, &err, "sfdisk",
465 "--change-id", device, partnum_str, idbyte_str, NULL);
467 reply_with_error ("sfdisk --change-id: %s", err);