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.
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)
165 reply_with_error ("partition number must be >= 1");
169 char partnum_str[16];
170 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
172 RUN_PARTED (return -1, device, "rm", partnum_str, NULL);
179 do_part_disk (const char *device, const char *parttype)
181 parttype = check_parttype (parttype);
183 reply_with_error ("unknown partition type: common choices are \"gpt\" and \"msdos\"");
187 /* Align all partitions created this way to 64 sectors, and leave
188 * the last 64 sectors at the end of the disk free. This wastes
189 * 32K+32K = 64K on 512-byte sector disks. The rationale is:
191 * - aligned operations are faster
192 * - GPT requires at least 34 sectors at the end of the disk.
194 const char *startstr = "64s";
195 const char *endstr = "-64s";
197 RUN_PARTED (return -1,
200 /* See comment about about the parted mkpart command. */
201 "mkpart", STREQ (parttype, "gpt") ? "p1" : "primary",
202 startstr, endstr, NULL);
210 do_part_set_bootable (const char *device, int partnum, int bootable)
213 reply_with_error ("partition number must be >= 1");
219 snprintf (partstr, sizeof partstr, "%d", partnum);
221 RUN_PARTED (return -1,
222 device, "set", partstr, "boot", bootable ? "on" : "off", NULL);
230 do_part_set_name (const char *device, int partnum, const char *name)
233 reply_with_error ("partition number must be >= 1");
239 snprintf (partstr, sizeof partstr, "%d", partnum);
241 RUN_PARTED (return -1, device, "name", partstr, name, NULL);
248 /* Return the nth field from a string of ':'/';'-delimited strings.
249 * Useful for parsing the return value from 'parted -m'.
252 get_table_field (const char *line, int n)
254 const char *p = line;
256 while (*p && n > 0) {
257 p += strcspn (p, ":;") + 1;
262 reply_with_error ("not enough fields in output of parted print command: %s",
267 size_t len = strcspn (p, ":;");
268 char *q = strndup (p, len);
270 reply_with_perror ("strndup");
277 /* RHEL 5 parted doesn't have the -m (machine readable) option so we
278 * must do a lot more work to parse the output in
279 * print_partition_table below. Test for this option the first time
280 * this function is called.
283 test_parted_m_opt (void)
285 static int result = -1;
291 int r = commandr (NULL, &err, "parted", "-s", "-m", "/dev/null", NULL);
293 /* Test failed, eg. missing or completely unusable parted binary. */
294 reply_with_error ("could not run 'parted' command");
298 if (err && strstr (err, "invalid option -- m"))
305 print_partition_table (const char *device, int parted_has_m_opt)
310 if (parted_has_m_opt)
311 r = command (&out, &err, "parted", "-m", "--", device,
315 r = command (&out, &err, "parted", "-s", "--", device,
319 reply_with_error ("parted print: %s: %s", device,
320 /* Hack for parted 1.x which sends errors to stdout. */
332 do_part_get_parttype (const char *device)
334 int parted_has_m_opt = test_parted_m_opt ();
335 if (parted_has_m_opt == -1)
338 char *out = print_partition_table (device, parted_has_m_opt);
342 if (parted_has_m_opt) {
343 /* New-style parsing using the "machine-readable" format from
346 char **lines = split_lines (out);
352 if (lines[0] == NULL || STRNEQ (lines[0], "BYT;")) {
353 reply_with_error ("unknown signature, expected \"BYT;\" as first line of the output: %s",
354 lines[0] ? lines[0] : "(signature was null)");
355 free_strings (lines);
359 if (lines[1] == NULL) {
360 reply_with_error ("parted didn't return a line describing the device");
361 free_strings (lines);
365 /* lines[1] is something like:
366 * "/dev/sda:1953525168s:scsi:512:512:msdos:ATA Hitachi HDT72101;"
368 char *r = get_table_field (lines[1], 5);
370 free_strings (lines);
374 free_strings (lines);
376 /* If "loop" return an error (RHBZ#634246). */
377 if (STREQ (r, "loop")) {
379 reply_with_error ("not a partitioned device");
386 /* Old-style. Look for "\nPartition Table: <str>\n". */
387 char *p = strstr (out, "\nPartition Table: ");
389 reply_with_error ("parted didn't return Partition Table line");
395 char *q = strchr (p, '\n');
397 reply_with_error ("parted Partition Table has no end of line char");
407 reply_with_perror ("strdup");
411 /* If "loop" return an error (RHBZ#634246). */
412 if (STREQ (p, "loop")) {
414 reply_with_error ("not a partitioned device");
418 return p; /* caller frees */
422 guestfs_int_partition_list *
423 do_part_list (const char *device)
425 int parted_has_m_opt = test_parted_m_opt ();
426 if (parted_has_m_opt == -1)
429 char *out = print_partition_table (device, parted_has_m_opt);
433 char **lines = split_lines (out);
439 guestfs_int_partition_list *r;
441 if (parted_has_m_opt) {
442 /* New-style parsing using the "machine-readable" format from
445 * lines[0] is "BYT;", lines[1] is the device line which we ignore,
446 * lines[2..] are the partitions themselves. Count how many.
448 size_t nr_rows = 0, row;
449 for (row = 2; lines[row] != NULL; ++row)
452 r = malloc (sizeof *r);
454 reply_with_perror ("malloc");
457 r->guestfs_int_partition_list_len = nr_rows;
458 r->guestfs_int_partition_list_val =
459 malloc (nr_rows * sizeof (guestfs_int_partition));
460 if (r->guestfs_int_partition_list_val == NULL) {
461 reply_with_perror ("malloc");
465 /* Now parse the lines. */
467 for (i = 0, row = 2; lines[row] != NULL; ++i, ++row) {
468 if (sscanf (lines[row], "%d:%" SCNi64 "B:%" SCNi64 "B:%" SCNi64 "B",
469 &r->guestfs_int_partition_list_val[i].part_num,
470 &r->guestfs_int_partition_list_val[i].part_start,
471 &r->guestfs_int_partition_list_val[i].part_end,
472 &r->guestfs_int_partition_list_val[i].part_size) != 4) {
473 reply_with_error ("could not parse row from output of parted print command: %s", lines[row]);
479 /* Old-style. Start at the line following "^Number", up to the
482 size_t start = 0, end = 0, row;
484 for (row = 0; lines[row] != NULL; ++row)
485 if (STRPREFIX (lines[row], "Number")) {
491 reply_with_error ("parted output has no \"Number\" line");
495 for (row = start; lines[row] != NULL; ++row)
496 if (STREQ (lines[row], "")) {
502 reply_with_error ("parted output has no blank after end of table");
506 size_t nr_rows = end - start;
508 r = malloc (sizeof *r);
510 reply_with_perror ("malloc");
513 r->guestfs_int_partition_list_len = nr_rows;
514 r->guestfs_int_partition_list_val =
515 malloc (nr_rows * sizeof (guestfs_int_partition));
516 if (r->guestfs_int_partition_list_val == NULL) {
517 reply_with_perror ("malloc");
521 /* Now parse the lines. */
523 for (i = 0, row = start; row < end; ++i, ++row) {
524 if (sscanf (lines[row], " %d %" SCNi64 "B %" SCNi64 "B %" SCNi64 "B",
525 &r->guestfs_int_partition_list_val[i].part_num,
526 &r->guestfs_int_partition_list_val[i].part_start,
527 &r->guestfs_int_partition_list_val[i].part_end,
528 &r->guestfs_int_partition_list_val[i].part_size) != 4) {
529 reply_with_error ("could not parse row from output of parted print command: %s", lines[row]);
535 free_strings (lines);
539 free (r->guestfs_int_partition_list_val);
543 free_strings (lines);
548 do_part_get_bootable (const char *device, int partnum)
551 reply_with_error ("partition number must be >= 1");
555 int parted_has_m_opt = test_parted_m_opt ();
556 if (parted_has_m_opt == -1)
559 char *out = print_partition_table (device, parted_has_m_opt);
563 char **lines = split_lines (out);
569 if (parted_has_m_opt) {
570 /* New-style parsing using the "machine-readable" format from
573 * We want lines[1+partnum].
575 if (count_strings (lines) < (size_t) 1+partnum) {
576 reply_with_error ("partition number out of range: %d", partnum);
577 free_strings (lines);
581 char *boot = get_table_field (lines[1+partnum], 6);
583 free_strings (lines);
587 int r = STREQ (boot, "boot");
590 free_strings (lines);
595 /* Old-style: First look for the line matching "^Number". */
596 size_t start = 0, header, row;
598 for (row = 0; lines[row] != NULL; ++row)
599 if (STRPREFIX (lines[row], "Number")) {
606 reply_with_error ("parted output has no \"Number\" line");
607 free_strings (lines);
611 /* Now we have to look at the column number of the "Flags" field.
612 * This is because parted's output has no way to represent a
613 * missing field except as whitespace, so we cannot just count
614 * fields from the left. eg. The "File system" field is often
615 * missing in the output.
617 char *p = strstr (lines[header], "Flags");
619 reply_with_error ("parted output has no \"Flags\" field");
620 free_strings (lines);
623 size_t col = p - lines[header];
625 /* Look for the line corresponding to this partition number. */
626 row = start + partnum - 1;
627 if (row >= count_strings (lines) || !STRPREFIX (lines[row], " ")) {
628 reply_with_error ("partition number out of range: %d", partnum);
629 free_strings (lines);
633 int r = STRPREFIX (&lines[row][col], "boot");
634 free_strings (lines);
639 /* Currently we use sfdisk for getting and setting the ID byte. In
640 * future, extend parted to provide this functionality. As a result
641 * of using sfdisk, this won't work for non-MBR-style partitions, but
642 * that limitation is noted in the documentation and we can extend it
643 * later without breaking the ABI.
646 do_part_get_mbr_id (const char *device, int partnum)
649 reply_with_error ("partition number must be >= 1");
653 char partnum_str[16];
654 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
659 r = command (&out, &err, "sfdisk", "--print-id", device, partnum_str, NULL);
661 reply_with_error ("sfdisk --print-id: %s", err);
669 /* It's printed in hex ... */
671 if (sscanf (out, "%x", &id) != 1) {
672 reply_with_error ("sfdisk --print-id: cannot parse output: %s", out);
682 do_part_set_mbr_id (const char *device, int partnum, int idbyte)
685 reply_with_error ("partition number must be >= 1");
689 char partnum_str[16];
690 snprintf (partnum_str, sizeof partnum_str, "%d", partnum);
693 snprintf (idbyte_str, sizeof partnum_str, "%x", idbyte); /* NB: hex */
698 r = command (NULL, &err, "sfdisk",
699 "--change-id", device, partnum_str, idbyte_str, NULL);
701 reply_with_error ("sfdisk --change-id: %s", err);