]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/sfdisk.c
Merge branch 'fix-ger-translation-chrt-help' of https://github.com/Thermi/util-linux
[thirdparty/util-linux.git] / disk-utils / sfdisk.c
CommitLineData
fd6b7a7f 1/*
fd6b7a7f 2 * Copyright (C) 1995 Andries E. Brouwer (aeb@cwi.nl)
1881390d 3 * Copyright (C) 2014 Karel Zak <kzak@redhat.com>
fd6b7a7f
KZ
4 *
5 * This program is free software. You can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation: either Version 1
8 * or (at your option) any later version.
9 *
10 * A.V. Le Blanc (LeBlanc@mcc.ac.uk) wrote Linux fdisk 1992-1994,
11 * patched by various people (faith@cs.unc.edu, martin@cs.unc.edu,
12 * leisner@sdsp.mc.xerox.com, esr@snark.thyrsus.com, aeb@cwi.nl)
13 * 1993-1995, with version numbers (as far as I have seen) 0.93 - 2.0e.
14 * This program had (head,sector,cylinder) as basic unit, and was
15 * (therefore) broken in several ways for the use on larger disks -
16 * for example, my last patch (from 2.0d to 2.0e) was required
17 * to allow a partition to cross cylinder 8064, and to write an
18 * extended partition past the 4GB mark.
19 *
1881390d
KZ
20 * Karel Zak wrote new sfdisk based on libfdisk from util-linux
21 * in 2014.
fd6b7a7f
KZ
22 */
23
1881390d 24#include <unistd.h>
fd6b7a7f 25#include <stdio.h>
1881390d
KZ
26#include <stdlib.h>
27#include <string.h>
fd6b7a7f 28#include <ctype.h>
1881390d 29#include <errno.h>
fd6b7a7f 30#include <getopt.h>
fd6b7a7f 31#include <sys/stat.h>
9c1f9dd3 32#include <assert.h>
f42205d8 33#include <fcntl.h>
053939a4 34#include <libsmartcols.h>
7159b496 35#ifdef HAVE_LIBREADLINE
57ebfde2 36# define _FUNCTION_DEF
7159b496
KZ
37# include <readline/readline.h>
38#endif
8acff75a 39#include <libgen.h>
11ef0c35
KZ
40
41#include "c.h"
109dbc4f 42#include "xalloc.h"
1881390d
KZ
43#include "nls.h"
44#include "debug.h"
9912f01b 45#include "strutils.h"
1881390d 46#include "closestream.h"
9c1f9dd3 47#include "colors.h"
d2eb1457 48#include "blkdev.h"
ab02d87e 49#include "all-io.h"
6340e913 50#include "rpmatch.h"
b0ff9a76 51#include "optutils.h"
fd6b7a7f 52
1881390d 53#include "libfdisk.h"
9c1f9dd3 54#include "fdisk-list.h"
fd6b7a7f
KZ
55
56/*
1881390d 57 * sfdisk debug stuff (see fdisk.h and include/debug.h)
fd6b7a7f 58 */
2ba641e5 59static UL_DEBUG_DEFINE_MASK(sfdisk);
819d9a29 60UL_DEBUG_DEFINE_MASKNAMES(sfdisk) = UL_DEBUG_EMPTY_MASKNAMES;
fd6b7a7f 61
1881390d
KZ
62#define SFDISKPROG_DEBUG_INIT (1 << 1)
63#define SFDISKPROG_DEBUG_PARSE (1 << 2)
64#define SFDISKPROG_DEBUG_MISC (1 << 3)
e8813494 65#define SFDISKPROG_DEBUG_ASK (1 << 4)
1881390d 66#define SFDISKPROG_DEBUG_ALL 0xFFFF
fd6b7a7f 67
1881390d
KZ
68#define DBG(m, x) __UL_DBG(sfdisk, SFDISKPROG_DEBUG_, m, x)
69#define ON_DBG(m, x) __UL_DBG_CALL(sfdisk, SFDISKPROG_DEBUG_, m, x)
fd6b7a7f 70
9c1f9dd3 71enum {
d2c47697 72 ACT_FDISK = 1,
9c1f9dd3
KZ
73 ACT_ACTIVATE,
74 ACT_CHANGE_ID,
75 ACT_DUMP,
76 ACT_LIST,
8abdb912 77 ACT_LIST_FREE,
9c1f9dd3 78 ACT_LIST_TYPES,
9a17d946 79 ACT_REORDER,
d2eb1457 80 ACT_SHOW_SIZE,
d420a7f9 81 ACT_SHOW_GEOM,
8eab3194
KZ
82 ACT_VERIFY,
83 ACT_PARTTYPE,
351fad50 84 ACT_PARTUUID,
e36fb07a 85 ACT_PARTLABEL,
bc9e8547 86 ACT_PARTATTRS,
aab9be66 87 ACT_DELETE
9c1f9dd3
KZ
88};
89
90struct sfdisk {
3692c28d 91 int act; /* ACT_* */
7324f1bf 92 int partno; /* -N <partno>, default -1 */
3d6db3fd
KZ
93 int wipemode; /* remove foreign signatures from disk */
94 int pwipemode; /* remove foreign signatures from partitions */
7324f1bf 95 const char *label; /* --label <label> */
e1422de3 96 const char *label_nested; /* --label-nested <label> */
ab02d87e 97 const char *backup_file; /* -O <path> */
f42205d8 98 const char *move_typescript; /* --movedata <typescript> */
7159b496 99 char *prompt;
9c1f9dd3 100
f42205d8
KZ
101 struct fdisk_context *cxt; /* libfdisk context */
102 struct fdisk_partition *orig_pa; /* -N <partno> before the change */
d2c47697 103
f0edb076 104 unsigned int verify : 1, /* call fdisk_verify_disklabel() */
9e930041 105 quiet : 1, /* suppress extra messages */
8be199ea 106 interactive : 1, /* running on tty */
db48b6a1
KZ
107 noreread : 1, /* don't check device is in use */
108 force : 1, /* do also stupid things */
ab02d87e 109 backup : 1, /* backup sectors before write PT */
e54b1c6f 110 container : 1, /* PT contains container (MBR extended) partitions */
347a7f77 111 append : 1, /* don't create new PT, append partitions only */
a592b4b5 112 json : 1, /* JSON dump */
f42205d8 113 movedata: 1, /* move data after resize */
d4a90151 114 notell : 1, /* don't tell kernel aout new PT */
f01f2528 115 noact : 1; /* do not write to device */
9c1f9dd3
KZ
116};
117
7159b496 118#define SFDISK_PROMPT ">>> "
fd6b7a7f 119
1881390d
KZ
120static void sfdiskprog_init_debug(void)
121{
a15dca2f 122 __UL_INIT_DEBUG_FROM_ENV(sfdisk, SFDISKPROG_DEBUG_, 0, SFDISK_DEBUG);
fd6b7a7f
KZ
123}
124
e8813494
KZ
125
126static int get_user_reply(const char *prompt, char *buf, size_t bufsz)
127{
128 char *p;
129 size_t sz;
130
7159b496
KZ
131#ifdef HAVE_LIBREADLINE
132 if (isatty(STDIN_FILENO)) {
133 p = readline(prompt);
134 if (!p)
135 return 1;
9f34182d 136 xstrncpy(buf, p, bufsz);
7159b496
KZ
137 free(p);
138 } else
139#endif
140 {
141 fputs(prompt, stdout);
142 fflush(stdout);
e8813494 143
7159b496
KZ
144 if (!fgets(buf, bufsz, stdin))
145 return 1;
146 }
e8813494
KZ
147
148 for (p = buf; *p && !isgraph(*p); p++); /* get first non-blank */
149
150 if (p > buf)
151 memmove(buf, p, p - buf); /* remove blank space */
152 sz = strlen(buf);
153 if (sz && *(buf + sz - 1) == '\n')
154 *(buf + sz - 1) = '\0';
155
156 DBG(ASK, ul_debug("user's reply: >>>%s<<<", buf));
157 return 0;
158}
159
ffab025d 160static int ask_callback(struct fdisk_context *cxt __attribute__((__unused__)),
f0edb076
KZ
161 struct fdisk_ask *ask,
162 void *data)
9c1f9dd3 163{
f0edb076 164 struct sfdisk *sf = (struct sfdisk *) data;
e8813494
KZ
165 int rc = 0;
166
9c1f9dd3
KZ
167 assert(ask);
168
169 switch(fdisk_ask_get_type(ask)) {
170 case FDISK_ASKTYPE_INFO:
f0edb076
KZ
171 if (sf->quiet)
172 break;
9c1f9dd3
KZ
173 fputs(fdisk_ask_print_get_mesg(ask), stdout);
174 fputc('\n', stdout);
175 break;
176 case FDISK_ASKTYPE_WARNX:
95aae4fc 177 fflush(stdout);
9c1f9dd3
KZ
178 color_scheme_fenable("warn", UL_COLOR_RED, stderr);
179 fputs(fdisk_ask_print_get_mesg(ask), stderr);
180 color_fdisable(stderr);
181 fputc('\n', stderr);
182 break;
183 case FDISK_ASKTYPE_WARN:
95aae4fc 184 fflush(stdout);
9c1f9dd3
KZ
185 color_scheme_fenable("warn", UL_COLOR_RED, stderr);
186 fputs(fdisk_ask_print_get_mesg(ask), stderr);
187 errno = fdisk_ask_print_get_errno(ask);
188 fprintf(stderr, ": %m\n");
189 color_fdisable(stderr);
190 break;
e8813494
KZ
191 case FDISK_ASKTYPE_YESNO:
192 {
89770db4 193 char buf[BUFSIZ] = { '\0' };
e8813494
KZ
194 fputc('\n', stdout);
195 do {
196 int x;
197 fputs(fdisk_ask_get_query(ask), stdout);
198 rc = get_user_reply(_(" [Y]es/[N]o: "), buf, sizeof(buf));
199 if (rc)
200 break;
201 x = rpmatch(buf);
cd2a6f1c 202 if (x == RPMATCH_YES || x == RPMATCH_NO) {
e8813494
KZ
203 fdisk_ask_yesno_set_result(ask, x);
204 break;
205 }
206 } while(1);
207 DBG(ASK, ul_debug("yes-no ask: reply '%s' [rc=%d]", buf, rc));
208 break;
209 }
9c1f9dd3
KZ
210 default:
211 break;
212 }
e8813494 213 return rc;
9c1f9dd3
KZ
214}
215
216static void sfdisk_init(struct sfdisk *sf)
217{
218 fdisk_init_debug(0);
053939a4 219 scols_init_debug(0);
9c1f9dd3
KZ
220 sfdiskprog_init_debug();
221
9c1f9dd3
KZ
222 sf->cxt = fdisk_new_context();
223 if (!sf->cxt)
224 err(EXIT_FAILURE, _("failed to allocate libfdisk context"));
f0edb076 225 fdisk_set_ask(sf->cxt, ask_callback, (void *) sf);
62656395 226 fdisk_enable_bootbits_protection(sf->cxt, 1);
e1422de3
KZ
227
228 if (sf->label_nested) {
229 struct fdisk_context *x = fdisk_new_nested_context(sf->cxt,
230 sf->label_nested);
231 if (!x)
232 err(EXIT_FAILURE, _("failed to allocate nested libfdisk context"));
233 /* the original context is available by fdisk_get_parent() */
234 sf->cxt = x;
235 }
9c1f9dd3
KZ
236}
237
238static int sfdisk_deinit(struct sfdisk *sf)
239{
e1422de3 240 struct fdisk_context *parent;
9c1f9dd3
KZ
241
242 assert(sf);
243 assert(sf->cxt);
244
e1422de3
KZ
245 parent = fdisk_get_parent(sf->cxt);
246 if (parent) {
247 fdisk_unref_context(sf->cxt);
248 sf->cxt = parent;
249 }
250
9c1f9dd3 251 fdisk_unref_context(sf->cxt);
7159b496 252 free(sf->prompt);
9c1f9dd3 253
7159b496 254 memset(sf, 0, sizeof(*sf));
5d365139 255 return 0;
9c1f9dd3
KZ
256}
257
f42205d8
KZ
258static struct fdisk_partition *get_partition(struct fdisk_context *cxt, size_t partno)
259{
260 struct fdisk_table *tb = NULL;
261 struct fdisk_partition *pa;
262
263 if (fdisk_get_partitions(cxt, &tb) != 0)
264 return NULL;
265
266 pa = fdisk_table_get_partition_by_partno(tb, partno);
267 if (pa)
268 fdisk_ref_partition(pa);
269 fdisk_unref_table(tb);
270 return pa;
271}
272
ab02d87e
KZ
273static void backup_sectors(struct sfdisk *sf,
274 const char *tpl,
275 const char *name,
276 const char *devname,
9bbcf43f 277 uint64_t offset, size_t size)
ab02d87e
KZ
278{
279 char *fname;
280 int fd, devfd;
281
282 devfd = fdisk_get_devfd(sf->cxt);
283 assert(devfd >= 0);
284
fdbd7bb9 285 xasprintf(&fname, "%s0x%08"PRIx64".bak", tpl, offset);
ab02d87e
KZ
286
287 fd = open(fname, O_CREAT | O_WRONLY, S_IRUSR | S_IWUSR);
288 if (fd < 0)
289 goto fail;
290
9bbcf43f 291 if (lseek(devfd, (off_t) offset, SEEK_SET) == (off_t) -1) {
ab02d87e
KZ
292 fdisk_warn(sf->cxt, _("cannot seek %s"), devname);
293 goto fail;
294 } else {
295 unsigned char *buf = xmalloc(size);
296
297 if (read_all(devfd, (char *) buf, size) != (ssize_t) size) {
298 fdisk_warn(sf->cxt, _("cannot read %s"), devname);
6387bf33 299 free(buf);
ab02d87e
KZ
300 goto fail;
301 }
302 if (write_all(fd, buf, size) != 0) {
303 fdisk_warn(sf->cxt, _("cannot write %s"), fname);
6387bf33 304 free(buf);
ab02d87e
KZ
305 goto fail;
306 }
307 free(buf);
308 }
309
310 fdisk_info(sf->cxt, _("%12s (offset %5ju, size %5ju): %s"),
311 name, (uintmax_t) offset, (uintmax_t) size, fname);
312 close(fd);
313 free(fname);
314 return;
315fail:
316 errx(EXIT_FAILURE, _("%s: failed to create a backup"), devname);
317}
318
f42205d8
KZ
319static char *mk_backup_filename_tpl(const char *filename, const char *devname, const char *suffix)
320{
321 char *tpl = NULL;
322 char *name, *buf = xstrdup(devname);
323
324 name = basename(buf);
325
326 if (!filename) {
327 const char *home = getenv ("HOME");
328 if (!home)
329 errx(EXIT_FAILURE, _("failed to create a backup file, $HOME undefined"));
330 xasprintf(&tpl, "%s/sfdisk-%s%s", home, name, suffix);
331 } else
332 xasprintf(&tpl, "%s-%s%s", filename, name, suffix);
333
334 free(buf);
335 return tpl;
336}
337
338
ab02d87e
KZ
339static void backup_partition_table(struct sfdisk *sf, const char *devname)
340{
341 const char *name;
342 char *tpl;
9bbcf43f 343 uint64_t offset = 0;
ab02d87e
KZ
344 size_t size = 0;
345 int i = 0;
346
347 assert(sf);
348
349 if (!fdisk_has_label(sf->cxt))
350 return;
351
f42205d8 352 tpl = mk_backup_filename_tpl(sf->backup_file, devname, "-");
ab02d87e
KZ
353
354 color_scheme_enable("header", UL_COLOR_BOLD);
355 fdisk_info(sf->cxt, _("Backup files:"));
356 color_disable();
357
358 while (fdisk_locate_disklabel(sf->cxt, i++, &name, &offset, &size) == 0 && size)
359 backup_sectors(sf, tpl, name, devname, offset, size);
360
361 if (!sf->quiet)
362 fputc('\n', stdout);
363 free(tpl);
364}
365
f42205d8
KZ
366static int move_partition_data(struct sfdisk *sf, size_t partno, struct fdisk_partition *orig_pa)
367{
368 struct fdisk_partition *pa = get_partition(sf->cxt, partno);
2d1fa4fd
KZ
369 char *devname = NULL, *typescript = NULL, *buf = NULL;
370 FILE *f = NULL;
d85a7fa7 371 int ok = 0, fd, backward = 0;
f42205d8
KZ
372 fdisk_sector_t nsectors, from, to, step, i;
373 size_t ss, step_bytes, cc;
374 uintmax_t src, dst;
2d1fa4fd 375 int errsv;
f42205d8
KZ
376
377 assert(sf->movedata);
378
379 if (!pa)
1a60a5ec 380 warnx(_("failed to read new partition from device; ignoring --move-data"));
f42205d8 381 else if (!fdisk_partition_has_size(pa))
1a60a5ec 382 warnx(_("failed to get size of the new partition; ignoring --move-data"));
f42205d8 383 else if (!fdisk_partition_has_start(pa))
1a60a5ec 384 warnx(_("failed to get start of the new partition; ignoring --move-data"));
f42205d8 385 else if (!fdisk_partition_has_size(orig_pa))
1a60a5ec 386 warnx(_("failed to get size of the old partition; ignoring --move-data"));
f42205d8 387 else if (!fdisk_partition_has_start(orig_pa))
1a60a5ec 388 warnx(_("failed to get start of the old partition; ignoring --move-data"));
f42205d8 389 else if (fdisk_partition_get_start(pa) == fdisk_partition_get_start(orig_pa))
1a60a5ec 390 warnx(_("start of the partition has not been moved; ignoring --move-data"));
f42205d8 391 else if (fdisk_partition_get_size(orig_pa) < fdisk_partition_get_size(pa))
1a60a5ec 392 warnx(_("new partition is smaller than original; ignoring --move-data"));
f42205d8
KZ
393 else
394 ok = 1;
395 if (!ok)
396 return -EINVAL;
397
d85a7fa7
KZ
398 DBG(MISC, ul_debug("moving data"));
399
f42205d8
KZ
400 fd = fdisk_get_devfd(sf->cxt);
401
402 ss = fdisk_get_sector_size(sf->cxt);
403 nsectors = fdisk_partition_get_size(orig_pa);
404 from = fdisk_partition_get_start(orig_pa);
405 to = fdisk_partition_get_start(pa);
d85a7fa7
KZ
406
407 if ((to >= from && from + nsectors >= to) ||
408 (from >= to && to + nsectors >= from)) {
409 /* source and target overlay, check if we need to copy
410 * backwardly from end of the source */
411 DBG(MISC, ul_debug("overlay between source and target"));
412 backward = from < to;
413 DBG(MISC, ul_debug(" copy order: %s", backward ? "backward" : "forward"));
414
415 step = from > to ? from - to : to - from;
416 if (step > nsectors)
417 step = nsectors;
418 } else
419 step = nsectors;
420
421 /* make step usable for malloc() */
422 if (step * ss > (getpagesize() * 256U))
f42205d8 423 step = (getpagesize() * 256) / ss;
d85a7fa7
KZ
424
425 /* align the step (note that nsectors does not have to be power of 2) */
426 while (nsectors % step)
427 step--;
428
f42205d8 429 step_bytes = step * ss;
fdbd7bb9 430 DBG(MISC, ul_debug(" step: %ju (%zu bytes)", (uintmax_t)step, step_bytes));
f42205d8
KZ
431
432#if defined(POSIX_FADV_SEQUENTIAL) && defined(HAVE_POSIX_FADVISE)
d85a7fa7
KZ
433 if (!backward)
434 posix_fadvise(fd, from * ss, nsectors * ss, POSIX_FADV_SEQUENTIAL);
f42205d8
KZ
435#endif
436 devname = fdisk_partname(fdisk_get_devname(sf->cxt), partno+1);
437 typescript = mk_backup_filename_tpl(sf->move_typescript, devname, ".move");
438
439 if (!sf->quiet) {
440 fdisk_info(sf->cxt,"");
441 color_scheme_enable("header", UL_COLOR_BOLD);
442 fdisk_info(sf->cxt, _("Data move:"));
443 color_disable();
444 fdisk_info(sf->cxt, _(" typescript file: %s"), typescript);
445 printf(_(" old start: %ju, new start: %ju (move %ju sectors)\n"),
fdbd7bb9 446 (uintmax_t) from, (uintmax_t) to, (uintmax_t) nsectors);
f42205d8
KZ
447 fflush(stdout);
448 }
449
450 if (sf->interactive) {
451 int yes = 0;
452 fdisk_ask_yesno(sf->cxt, _("Do you want to move partition data?"), &yes);
453 if (!yes) {
454 fdisk_info(sf->cxt, _("Leaving."));
455 return 0;
456 }
457 }
458
459 f = fopen(typescript, "w");
460 if (!f)
461 goto fail;
462
463 /* don't translate */
464 fprintf(f, "# sfdisk: " PACKAGE_STRING "\n");
465 fprintf(f, "# Disk: %s\n", devname);
466 fprintf(f, "# Partition: %zu\n", partno + 1);
467 fprintf(f, "# Operation: move data\n");
fdbd7bb9
RM
468 fprintf(f, "# Original start offset (sectors/bytes): %ju/%ju\n",
469 (uintmax_t)from, (uintmax_t)from * ss);
470 fprintf(f, "# New start offset (sectors/bytes): %ju/%ju\n",
471 (uintmax_t)to, (uintmax_t)to * ss);
472 fprintf(f, "# Area size (sectors/bytes): %ju/%ju\n",
473 (uintmax_t)nsectors, (uintmax_t)nsectors * ss);
d85a7fa7 474 fprintf(f, "# Sector size: %zu\n", ss);
f42205d8 475 fprintf(f, "# Step size (in bytes): %zu\n", step_bytes);
fdbd7bb9 476 fprintf(f, "# Steps: %ju\n", (uintmax_t)(nsectors / step));
f42205d8
KZ
477 fprintf(f, "#\n");
478 fprintf(f, "# <step>: <from> <to> (step offsets in bytes)\n");
479
480 src = (backward ? from + nsectors : from) * ss;
481 dst = (backward ? to + nsectors : to) * ss;
482 buf = xmalloc(step_bytes);
483
31c79e18
KZ
484 DBG(MISC, ul_debug(" initial: src=%ju dst=%ju", src, dst));
485
f42205d8
KZ
486 for (cc = 1, i = 0; i < nsectors; i += step, cc++) {
487 ssize_t rc;
488
489 if (backward)
490 src -= step_bytes, dst -= step_bytes;
491
31c79e18
KZ
492 DBG(MISC, ul_debug("#%05zu: src=%ju dst=%ju", cc, src, dst));
493
494 /* read source */
495 if (lseek(fd, src, SEEK_SET) == (off_t) -1)
496 goto fail;
f42205d8
KZ
497 rc = read(fd, buf, step_bytes);
498 if (rc < 0 || rc != (ssize_t) step_bytes)
499 goto fail;
500
31c79e18
KZ
501 /* write target */
502 if (lseek(fd, dst, SEEK_SET) == (off_t) -1)
503 goto fail;
f42205d8
KZ
504 rc = write(fd, buf, step_bytes);
505 if (rc < 0 || rc != (ssize_t) step_bytes)
506 goto fail;
507 fsync(fd);
508
31c79e18 509 /* write log */
f42205d8
KZ
510 fprintf(f, "%05zu: %12ju %12ju\n", cc, src, dst);
511
512#if defined(POSIX_FADV_DONTNEED) && defined(HAVE_POSIX_FADVISE)
513 posix_fadvise(fd, src, step_bytes, POSIX_FADV_DONTNEED);
514#endif
515 if (!backward)
516 src += step_bytes, dst += step_bytes;
517 }
518
519 fclose(f);
520 free(buf);
521 free(devname);
522 free(typescript);
2d1fa4fd 523
f42205d8
KZ
524 return 0;
525fail:
2d1fa4fd 526 errsv = -errno;
31c79e18 527 warn(_("%s: failed to move data"), devname);
2d1fa4fd
KZ
528 if (f)
529 fclose(f);
530 free(buf);
531 free(devname);
532 free(typescript);
533
534 return errsv;
f42205d8
KZ
535}
536
351fad50
KZ
537static int write_changes(struct sfdisk *sf)
538{
539 int rc = 0;
540
541 if (sf->noact)
54fefa07 542 fdisk_info(sf->cxt, _("The partition table is unchanged (--no-act)."));
351fad50
KZ
543 else {
544 rc = fdisk_write_disklabel(sf->cxt);
f42205d8
KZ
545 if (rc == 0 && sf->movedata && sf->orig_pa)
546 rc = move_partition_data(sf, sf->partno, sf->orig_pa);
351fad50
KZ
547 if (!rc) {
548 fdisk_info(sf->cxt, _("\nThe partition table has been altered."));
a60d6b52
KZ
549 if (!sf->notell) {
550 /* Let's wait a little bit. It's possible that our
551 * system is still busy with a previous re-read
552 * ioctl (on sfdisk start) or with another task
553 * related to the write to the device.
554 */
555 xusleep(250000);
d4a90151 556 fdisk_reread_partition_table(sf->cxt);
a60d6b52 557 }
351fad50
KZ
558 }
559 }
560 if (!rc)
d4a90151
KZ
561 rc = fdisk_deassign_device(sf->cxt,
562 sf->noact || sf->notell); /* no-sync */
351fad50
KZ
563 return rc;
564}
ab02d87e 565
148f6e6d
KZ
566/*
567 * sfdisk --list [<device ..]
568 */
9c1f9dd3
KZ
569static int command_list_partitions(struct sfdisk *sf, int argc, char **argv)
570{
fed30483 571 int fail = 0;
9c1f9dd3
KZ
572 fdisk_enable_listonly(sf->cxt, 1);
573
207de32a 574 if (argc) {
d2eb1457 575 int i, ct = 0;
8a8d204c
KZ
576
577 for (i = 0; i < argc; i++) {
578 if (ct)
579 fputs("\n\n", stdout);
fed30483
KZ
580 if (print_device_pt(sf->cxt, argv[i], 1, sf->verify) != 0)
581 fail++;
582 ct++;
8a8d204c 583 }
9c1f9dd3 584 } else
d2c47697 585 print_all_devices_pt(sf->cxt, sf->verify);
9c1f9dd3 586
fed30483 587 return fail;
9c1f9dd3
KZ
588}
589
8abdb912
KZ
590/*
591 * sfdisk --list-free [<device ..]
592 */
593static int command_list_freespace(struct sfdisk *sf, int argc, char **argv)
594{
fed30483 595 int fail = 0;
8abdb912
KZ
596 fdisk_enable_listonly(sf->cxt, 1);
597
598 if (argc) {
599 int i, ct = 0;
600
601 for (i = 0; i < argc; i++) {
602 if (ct)
603 fputs("\n\n", stdout);
fed30483
KZ
604 if (print_device_freespace(sf->cxt, argv[i], 1) != 0)
605 fail++;
606 ct++;
8abdb912
KZ
607 }
608 } else
609 print_all_devices_freespace(sf->cxt);
610
fed30483 611 return fail;
8abdb912
KZ
612}
613
058dd97a
KZ
614/*
615 * sfdisk --list-types
616 */
617static int command_list_types(struct sfdisk *sf)
618{
619 const struct fdisk_parttype *t;
620 struct fdisk_label *lb;
621 const char *name;
622 size_t i = 0;
623 int codes;
624
625 assert(sf);
626 assert(sf->cxt);
627
628 name = sf->label ? sf->label : "dos";
629 lb = fdisk_get_label(sf->cxt, name);
630 if (!lb)
631 errx(EXIT_FAILURE, _("unsupported label '%s'"), name);
632
633 codes = fdisk_label_has_code_parttypes(lb);
634 fputs(_("Id Name\n\n"), stdout);
635
636 while ((t = fdisk_label_get_parttype(lb, i++))) {
637 if (codes)
638 printf("%2x %s\n", fdisk_parttype_get_code(t),
639 fdisk_parttype_get_name(t));
640 else
641 printf("%s %s\n", fdisk_parttype_get_string(t),
642 fdisk_parttype_get_name(t));
643 }
644
645 return 0;
646}
647
d2c47697
KZ
648static int verify_device(struct sfdisk *sf, const char *devname)
649{
650 int rc = 1;
651
652 fdisk_enable_listonly(sf->cxt, 1);
653
654 if (fdisk_assign_device(sf->cxt, devname, 1)) {
54fefa07 655 warn(_("cannot open %s"), devname);
d2c47697
KZ
656 return 1;
657 }
658
659 color_scheme_enable("header", UL_COLOR_BOLD);
660 fdisk_info(sf->cxt, "%s:", devname);
661 color_disable();
662
663 if (!fdisk_has_label(sf->cxt))
664 fdisk_info(sf->cxt, _("unrecognized partition table type"));
665 else
666 rc = fdisk_verify_disklabel(sf->cxt);
667
668 fdisk_deassign_device(sf->cxt, 1);
669 return rc;
670}
671
672/*
673 * sfdisk --verify [<device ..]
674 */
675static int command_verify(struct sfdisk *sf, int argc, char **argv)
676{
677 int nfails = 0, ct = 0;
678
679 if (argc) {
680 int i;
681 for (i = 0; i < argc; i++) {
682 if (i)
683 fdisk_info(sf->cxt, " ");
684 if (verify_device(sf, argv[i]) < 0)
685 nfails++;
686 }
687 } else {
688 FILE *f = NULL;
689 char *dev;
690
691 while ((dev = next_proc_partition(&f))) {
692 if (ct)
693 fdisk_info(sf->cxt, " ");
694 if (verify_device(sf, dev) < 0)
695 nfails++;
696 free(dev);
697 ct++;
698 }
699 }
700
701 return nfails;
702}
703
148f6e6d 704static int get_size(const char *dev, int silent, uintmax_t *sz)
d2eb1457 705{
148f6e6d
KZ
706 int fd, rc = 0;
707
708 fd = open(dev, O_RDONLY);
d2eb1457
KZ
709 if (fd < 0) {
710 if (!silent)
54fefa07 711 warn(_("cannot open %s"), dev);
d2eb1457
KZ
712 return -errno;
713 }
d2eb1457
KZ
714
715 if (blkdev_get_sectors(fd, (unsigned long long *) sz) == -1) {
716 if (!silent)
717 warn(_("Cannot get size of %s"), dev);
718 rc = -errno;
719 }
720
721 close(fd);
722 return rc;
723}
724
148f6e6d
KZ
725/*
726 * sfdisk --show-size [<device ..]
727 *
728 * (silly, but just for backward compatibility)
729 */
d2eb1457
KZ
730static int command_show_size(struct sfdisk *sf __attribute__((__unused__)),
731 int argc, char **argv)
732{
733 uintmax_t sz;
734
735 if (argc) {
736 int i;
737 for (i = 0; i < argc; i++) {
738 if (get_size(argv[i], 0, &sz) == 0)
739 printf("%ju\n", sz / 2);
740 }
741 } else {
742 FILE *f = NULL;
743 uintmax_t total = 0;
744 char *dev;
745
746 while ((dev = next_proc_partition(&f))) {
747 if (get_size(dev, 1, &sz) == 0) {
748 printf("%s: %9ju\n", dev, sz / 2);
749 total += sz / 2;
750 }
751 free(dev);
752 }
753 if (total)
754 printf(_("total: %ju blocks\n"), total);
755 }
756
757 return 0;
758}
759
d420a7f9
KZ
760static int print_geom(struct sfdisk *sf, const char *devname)
761{
762 fdisk_enable_listonly(sf->cxt, 1);
763
764 if (fdisk_assign_device(sf->cxt, devname, 1)) {
54fefa07 765 warn(_("cannot open %s"), devname);
d420a7f9
KZ
766 return 1;
767 }
768
769 fdisk_info(sf->cxt, "%s: %ju cylinders, %ju heads, %ju sectors/track",
770 devname,
771 (uintmax_t) fdisk_get_geom_cylinders(sf->cxt),
772 (uintmax_t) fdisk_get_geom_heads(sf->cxt),
773 (uintmax_t) fdisk_get_geom_sectors(sf->cxt));
774
775 fdisk_deassign_device(sf->cxt, 1);
776 return 0;
777}
778
779/*
780 * sfdisk --show-geometry [<device ..]
781 */
782static int command_show_geometry(struct sfdisk *sf, int argc, char **argv)
783{
784 int nfails = 0;
785
786 if (argc) {
787 int i;
788 for (i = 0; i < argc; i++) {
789 if (print_geom(sf, argv[i]) < 0)
790 nfails++;
791 }
792 } else {
793 FILE *f = NULL;
794 char *dev;
795
796 while ((dev = next_proc_partition(&f))) {
797 if (print_geom(sf, dev) < 0)
798 nfails++;
799 free(dev);
800 }
801 }
802
803 return nfails;
804}
805
254b1dfc
KZ
806/*
807 * sfdisk --activate <device> [<partno> ...]
808 */
54b13b0c
KZ
809static int command_activate(struct sfdisk *sf, int argc, char **argv)
810{
21ca986d 811 int rc, nparts, i, listonly;
54b13b0c
KZ
812 struct fdisk_partition *pa = NULL;
813 const char *devname = NULL;
814
21ca986d 815 if (argc < 1)
54b13b0c 816 errx(EXIT_FAILURE, _("no disk device specified"));
8eab3194
KZ
817 devname = argv[0];
818
21ca986d
KZ
819 /* --activate <device> */
820 listonly = argc == 1;
54b13b0c 821
21ca986d 822 rc = fdisk_assign_device(sf->cxt, devname, listonly);
54b13b0c
KZ
823 if (rc)
824 err(EXIT_FAILURE, _("cannot open %s"), devname);
825
5d5ca9de 826 if (fdisk_is_label(sf->cxt, GPT)) {
a77bd80d
KZ
827 if (fdisk_gpt_is_hybrid(sf->cxt))
828 errx(EXIT_FAILURE, _("toggle boot flags is unsupported for Hybrid GPT/MBR"));
829
5d5ca9de
KZ
830 /* Switch from GPT to PMBR */
831 sf->cxt = fdisk_new_nested_context(sf->cxt, "dos");
832 if (!sf->cxt)
833 err(EXIT_FAILURE, _("cannot switch to PMBR"));
49032ef7
KZ
834 fdisk_info(sf->cxt, _("Activation is unsupported for GPT -- entering nested PMBR."));
835
5d5ca9de
KZ
836 } else if (!fdisk_is_label(sf->cxt, DOS))
837 errx(EXIT_FAILURE, _("toggle boot flags is supported for MBR or PMBR only"));
54b13b0c 838
ab02d87e
KZ
839 if (!listonly && sf->backup)
840 backup_partition_table(sf, devname);
21ca986d 841
54b13b0c
KZ
842 nparts = fdisk_get_npartitions(sf->cxt);
843 for (i = 0; i < nparts; i++) {
844 char *data = NULL;
845
846 /* note that fdisk_get_partition() reuses the @pa pointer, you
847 * don't have to (re)allocate it */
848 if (fdisk_get_partition(sf->cxt, i, &pa) != 0)
849 continue;
850
851 /* sfdisk --activate list bootable partitions */
21ca986d 852 if (listonly) {
54b13b0c
KZ
853 if (!fdisk_partition_is_bootable(pa))
854 continue;
855 if (fdisk_partition_to_string(pa, sf->cxt,
856 FDISK_FIELD_DEVICE, &data) == 0) {
857 printf("%s\n", data);
858 free(data);
859 }
860
861 /* deactivate all active partitions */
862 } else if (fdisk_partition_is_bootable(pa))
a1ef792f 863 fdisk_toggle_partition_flag(sf->cxt, i, DOS_FLAG_ACTIVE);
54b13b0c
KZ
864 }
865
866 /* sfdisk --activate <partno> [..] */
867 for (i = 1; i < argc; i++) {
8175ed3d
KZ
868 int n;
869
870 if (i == 1 && strcmp(argv[1], "-") == 0)
871 break;
872 n = strtou32_or_err(argv[i], _("failed to parse partition number"));
54b13b0c 873
a1ef792f 874 rc = fdisk_toggle_partition_flag(sf->cxt, n - 1, DOS_FLAG_ACTIVE);
254b1dfc
KZ
875 if (rc)
876 errx(EXIT_FAILURE,
43a1ccec 877 _("%s: partition %d: failed to toggle bootable flag"),
254b1dfc 878 devname, i + 1);
54b13b0c
KZ
879 }
880
881 fdisk_unref_partition(pa);
5d5ca9de 882
351fad50
KZ
883 if (listonly)
884 rc = fdisk_deassign_device(sf->cxt, 1);
885 else
886 rc = write_changes(sf);
54b13b0c
KZ
887 return rc;
888}
889
aab9be66
KZ
890/*
891 * sfdisk --delete <device> [<partno> ...]
892 */
893static int command_delete(struct sfdisk *sf, int argc, char **argv)
894{
895 size_t i;
896 const char *devname = NULL;
897
898 if (argc < 1)
899 errx(EXIT_FAILURE, _("no disk device specified"));
900 devname = argv[0];
901
902 if (fdisk_assign_device(sf->cxt, devname, 0) != 0)
903 err(EXIT_FAILURE, _("cannot open %s"), devname);
904
905 if (sf->backup)
906 backup_partition_table(sf, devname);
907
9e930041 908 /* delete all */
aab9be66
KZ
909 if (argc == 1) {
910 size_t nparts = fdisk_get_npartitions(sf->cxt);
911 for (i = 0; i < nparts; i++) {
912 if (fdisk_is_partition_used(sf->cxt, i) &&
913 fdisk_delete_partition(sf->cxt, i) != 0)
914 errx(EXIT_FAILURE, _("%s: partition %zu: failed to delete"), devname, i + 1);
915 }
916 /* delete specified */
917 } else {
918 for (i = 1; i < (size_t) argc; i++) {
919 size_t n = strtou32_or_err(argv[i], _("failed to parse partition number"));
920
921 if (fdisk_delete_partition(sf->cxt, n - 1) != 0)
922 errx(EXIT_FAILURE, _("%s: partition %zu: failed to delete"), devname, n);
923 }
924 }
925
926 return write_changes(sf);
927}
928
9a17d946
KZ
929/*
930 * sfdisk --reorder <device>
931 */
932static int command_reorder(struct sfdisk *sf, int argc, char **argv)
933{
934 const char *devname = NULL;
935 int rc;
936
937 if (argc)
938 devname = argv[0];
939 if (!devname)
940 errx(EXIT_FAILURE, _("no disk device specified"));
941
942 rc = fdisk_assign_device(sf->cxt, devname, 0); /* read-write */
943 if (rc)
944 err(EXIT_FAILURE, _("cannot open %s"), devname);
945
946 if (sf->backup)
947 backup_partition_table(sf, devname);
948
9e930041 949 if (fdisk_reorder_partitions(sf->cxt) == 1) /* unchanged */
9a17d946
KZ
950 rc = fdisk_deassign_device(sf->cxt, 1);
951 else
952 rc = write_changes(sf);
953
954 return rc;
955}
956
957
148f6e6d
KZ
958/*
959 * sfdisk --dump <device>
960 */
8a8d204c
KZ
961static int command_dump(struct sfdisk *sf, int argc, char **argv)
962{
963 const char *devname = NULL;
964 struct fdisk_script *dp;
965 int rc;
966
967 if (argc)
968 devname = argv[0];
969 if (!devname)
970 errx(EXIT_FAILURE, _("no disk device specified"));
971
f01f2528 972 rc = fdisk_assign_device(sf->cxt, devname, 1); /* read-only */
8a8d204c
KZ
973 if (rc)
974 err(EXIT_FAILURE, _("cannot open %s"), devname);
975
c49b765a
KZ
976 if (!fdisk_has_label(sf->cxt))
977 errx(EXIT_FAILURE, _("%s: does not contain a recognized partition table"), devname);
978
8a8d204c
KZ
979 dp = fdisk_new_script(sf->cxt);
980 if (!dp)
981 err(EXIT_FAILURE, _("failed to allocate dump struct"));
982
983 rc = fdisk_script_read_context(dp, NULL);
984 if (rc)
c49b765a 985 errx(EXIT_FAILURE, _("%s: failed to dump partition table"), devname);
8a8d204c 986
a592b4b5
KZ
987 if (sf->json)
988 fdisk_script_enable_json(dp, 1);
8a8d204c
KZ
989 fdisk_script_write_file(dp, stdout);
990
991 fdisk_unref_script(dp);
f01f2528 992 fdisk_deassign_device(sf->cxt, 1); /* no-sync() */
8a8d204c
KZ
993 return 0;
994}
995
3a5bdedf
KZ
996static void assign_device_partition(struct sfdisk *sf,
997 const char *devname,
998 size_t partno,
999 int rdonly)
1000{
1001 int rc;
1002 size_t n;
1003 struct fdisk_label *lb = NULL;
1004
1005 assert(sf);
1006 assert(devname);
1007
1008 /* read-only when a new <type> undefined */
1009 rc = fdisk_assign_device(sf->cxt, devname, rdonly);
1010 if (rc)
1011 err(EXIT_FAILURE, _("cannot open %s"), devname);
1012
1013 lb = fdisk_get_label(sf->cxt, NULL);
1014 if (!lb)
62eea9ce 1015 errx(EXIT_FAILURE, _("%s: no partition table found"), devname);
3a5bdedf
KZ
1016
1017 n = fdisk_get_npartitions(sf->cxt);
1018 if (partno > n)
54fefa07
BS
1019 errx(EXIT_FAILURE, _("%s: partition %zu: partition table contains "
1020 "only %zu partitions"), devname, partno, n);
3a5bdedf 1021 if (!fdisk_is_partition_used(sf->cxt, partno - 1))
54fefa07 1022 errx(EXIT_FAILURE, _("%s: partition %zu: partition is unused"),
3a5bdedf
KZ
1023 devname, partno);
1024}
1025
8eab3194 1026/*
e36fb07a 1027 * sfdisk --part-type <device> <partno> [<type>]
8eab3194
KZ
1028 */
1029static int command_parttype(struct sfdisk *sf, int argc, char **argv)
1030{
3a5bdedf 1031 size_t partno;
8eab3194 1032 struct fdisk_parttype *type = NULL;
3a5bdedf 1033 struct fdisk_label *lb;
8eab3194
KZ
1034 const char *devname = NULL, *typestr = NULL;
1035
1036 if (!argc)
1037 errx(EXIT_FAILURE, _("no disk device specified"));
1038 devname = argv[0];
1039
1040 if (argc < 2)
1041 errx(EXIT_FAILURE, _("no partition number specified"));
1042 partno = strtou32_or_err(argv[1], _("failed to parse partition number"));
1043
1044 if (argc == 3)
1045 typestr = argv[2];
1046 else if (argc > 3)
6e834d67 1047 errx(EXIT_FAILURE, _("unexpected arguments"));
8eab3194
KZ
1048
1049 /* read-only when a new <type> undefined */
3a5bdedf 1050 assign_device_partition(sf, devname, partno, !typestr);
8eab3194
KZ
1051
1052 lb = fdisk_get_label(sf->cxt, NULL);
8eab3194
KZ
1053
1054 /* print partition type */
1055 if (!typestr) {
1056 const struct fdisk_parttype *t = NULL;
2e73a998 1057 struct fdisk_partition *pa = NULL;
8eab3194
KZ
1058
1059 if (fdisk_get_partition(sf->cxt, partno - 1, &pa) == 0)
1060 t = fdisk_partition_get_type(pa);
1061 if (!t)
1062 errx(EXIT_FAILURE, _("%s: partition %zu: failed to get partition type"),
1063 devname, partno);
1064
1065 if (fdisk_label_has_code_parttypes(lb))
1066 printf("%2x\n", fdisk_parttype_get_code(t));
1067 else
1068 printf("%s\n", fdisk_parttype_get_string(t));
1069
1070 fdisk_unref_partition(pa);
2e73a998 1071 fdisk_deassign_device(sf->cxt, 1);
8eab3194
KZ
1072 return 0;
1073 }
1074
ab02d87e
KZ
1075 if (sf->backup)
1076 backup_partition_table(sf, devname);
1077
bf031d89 1078 /* parse <type> and apply to PT */
8eab3194 1079 type = fdisk_label_parse_parttype(lb, typestr);
bf031d89 1080 if (!type)
2e73a998 1081 errx(EXIT_FAILURE, _("failed to parse %s partition type '%s'"),
8eab3194 1082 fdisk_label_get_name(lb), typestr);
8eab3194 1083
2e73a998
KZ
1084 else if (fdisk_set_partition_type(sf->cxt, partno - 1, type) != 0)
1085 errx(EXIT_FAILURE, _("%s: partition %zu: failed to set partition type"),
1086 devname, partno);
dfc6db2a 1087 fdisk_unref_parttype(type);
351fad50 1088 return write_changes(sf);
3a5bdedf
KZ
1089}
1090
1091/*
e36fb07a 1092 * sfdisk --part-uuid <device> <partno> [<uuid>]
3a5bdedf
KZ
1093 */
1094static int command_partuuid(struct sfdisk *sf, int argc, char **argv)
1095{
3a5bdedf
KZ
1096 size_t partno;
1097 struct fdisk_partition *pa = NULL;
1098 const char *devname = NULL, *uuid = NULL;
1099
1100 if (!argc)
1101 errx(EXIT_FAILURE, _("no disk device specified"));
1102 devname = argv[0];
1103
1104 if (argc < 2)
1105 errx(EXIT_FAILURE, _("no partition number specified"));
1106 partno = strtou32_or_err(argv[1], _("failed to parse partition number"));
1107
1108 if (argc == 3)
1109 uuid = argv[2];
1110 else if (argc > 3)
6e834d67 1111 errx(EXIT_FAILURE, _("unexpected arguments"));
3a5bdedf
KZ
1112
1113 /* read-only if uuid not given */
1114 assign_device_partition(sf, devname, partno, !uuid);
1115
1116 /* print partition uuid */
1117 if (!uuid) {
f0f2be20 1118 const char *str = NULL;
3a5bdedf
KZ
1119
1120 if (fdisk_get_partition(sf->cxt, partno - 1, &pa) == 0)
1121 str = fdisk_partition_get_uuid(pa);
1122 if (!str)
1123 errx(EXIT_FAILURE, _("%s: partition %zu: failed to get partition UUID"),
1124 devname, partno);
1125 printf("%s\n", str);
1126 fdisk_unref_partition(pa);
1127 fdisk_deassign_device(sf->cxt, 1);
1128 return 0;
1129 }
1130
1131 if (sf->backup)
1132 backup_partition_table(sf, devname);
1133
1134 pa = fdisk_new_partition();
1135 if (!pa)
1136 err(EXIT_FAILURE, _("failed to allocate partition object"));
1137
1138 if (fdisk_partition_set_uuid(pa, uuid) != 0 ||
1139 fdisk_set_partition(sf->cxt, partno - 1, pa) != 0)
1140 errx(EXIT_FAILURE, _("%s: partition %zu: failed to set partition UUID"),
1141 devname, partno);
351fad50
KZ
1142 fdisk_unref_partition(pa);
1143 return write_changes(sf);
1144}
1145
1146/*
e36fb07a 1147 * sfdisk --part-label <device> <partno> [<label>]
351fad50 1148 */
e36fb07a 1149static int command_partlabel(struct sfdisk *sf, int argc, char **argv)
351fad50
KZ
1150{
1151 size_t partno;
1152 struct fdisk_partition *pa = NULL;
1153 const char *devname = NULL, *name = NULL;
1154
1155 if (!argc)
1156 errx(EXIT_FAILURE, _("no disk device specified"));
1157 devname = argv[0];
1158
1159 if (argc < 2)
1160 errx(EXIT_FAILURE, _("no partition number specified"));
1161 partno = strtou32_or_err(argv[1], _("failed to parse partition number"));
1162
1163 if (argc == 3)
1164 name = argv[2];
1165 else if (argc > 3)
6e834d67 1166 errx(EXIT_FAILURE, _("unexpected arguments"));
351fad50
KZ
1167
1168 /* read-only if name not given */
1169 assign_device_partition(sf, devname, partno, !name);
1170
1171 /* print partition name */
1172 if (!name) {
f0f2be20 1173 const char *str = NULL;
351fad50
KZ
1174
1175 if (fdisk_get_partition(sf->cxt, partno - 1, &pa) == 0)
1176 str = fdisk_partition_get_name(pa);
1177 if (!str)
1178 errx(EXIT_FAILURE, _("%s: partition %zu: failed to get partition name"),
1179 devname, partno);
1180 printf("%s\n", str);
1181 fdisk_unref_partition(pa);
1182 fdisk_deassign_device(sf->cxt, 1);
1183 return 0;
1184 }
1185
1186 if (sf->backup)
1187 backup_partition_table(sf, devname);
1188
1189 pa = fdisk_new_partition();
1190 if (!pa)
1191 err(EXIT_FAILURE, _("failed to allocate partition object"));
1192
1193 if (fdisk_partition_set_name(pa, name) != 0 ||
1194 fdisk_set_partition(sf->cxt, partno - 1, pa) != 0)
1195 errx(EXIT_FAILURE, _("%s: partition %zu: failed to set partition name"),
1196 devname, partno);
1197
1198 fdisk_unref_partition(pa);
1199 return write_changes(sf);
8eab3194
KZ
1200}
1201
bc9e8547
KZ
1202/*
1203 * sfdisk --part-attrs <device> <partno> [<attrs>]
1204 */
1205static int command_partattrs(struct sfdisk *sf, int argc, char **argv)
1206{
1207 size_t partno;
1208 struct fdisk_partition *pa = NULL;
1209 const char *devname = NULL, *attrs = NULL;
1210
1211 if (!argc)
1212 errx(EXIT_FAILURE, _("no disk device specified"));
1213 devname = argv[0];
1214
1215 if (argc < 2)
1216 errx(EXIT_FAILURE, _("no partition number specified"));
1217 partno = strtou32_or_err(argv[1], _("failed to parse partition number"));
1218
1219 if (argc == 3)
1220 attrs = argv[2];
1221 else if (argc > 3)
6e834d67 1222 errx(EXIT_FAILURE, _("unexpected arguments"));
bc9e8547
KZ
1223
1224 /* read-only if name not given */
1225 assign_device_partition(sf, devname, partno, !attrs);
1226
1227 /* print partition name */
1228 if (!attrs) {
f0f2be20 1229 const char *str = NULL;
bc9e8547
KZ
1230
1231 if (fdisk_get_partition(sf->cxt, partno - 1, &pa) == 0)
1232 str = fdisk_partition_get_attrs(pa);
1233 if (str)
1234 printf("%s\n", str);
1235 fdisk_unref_partition(pa);
1236 fdisk_deassign_device(sf->cxt, 1);
1237 return 0;
1238 }
1239
1240 if (sf->backup)
1241 backup_partition_table(sf, devname);
1242
1243 pa = fdisk_new_partition();
1244 if (!pa)
1245 err(EXIT_FAILURE, _("failed to allocate partition object"));
1246
1247 if (fdisk_partition_set_attrs(pa, attrs) != 0 ||
1248 fdisk_set_partition(sf->cxt, partno - 1, pa) != 0)
1249 errx(EXIT_FAILURE, _("%s: partition %zu: failed to set partition attributes"),
1250 devname, partno);
1251
1252 fdisk_unref_partition(pa);
1253 return write_changes(sf);
1254}
1255
b4df449f 1256static void sfdisk_print_partition(struct sfdisk *sf, size_t n)
7324f1bf 1257{
c3bc7483 1258 struct fdisk_partition *pa = NULL;
7324f1bf
KZ
1259 char *data;
1260
1261 assert(sf);
1262
f0edb076
KZ
1263 if (sf->quiet)
1264 return;
7324f1bf
KZ
1265 if (fdisk_get_partition(sf->cxt, n, &pa) != 0)
1266 return;
1267
1268 fdisk_partition_to_string(pa, sf->cxt, FDISK_FIELD_DEVICE, &data);
1269 printf("%12s : ", data);
1270
1271 fdisk_partition_to_string(pa, sf->cxt, FDISK_FIELD_START, &data);
1272 printf("%12s ", data);
1273
1274 fdisk_partition_to_string(pa, sf->cxt, FDISK_FIELD_END, &data);
1275 printf("%12s ", data);
1276
1277 fdisk_partition_to_string(pa, sf->cxt, FDISK_FIELD_SIZE, &data);
1278 printf("(%s) ", data);
1279
1280 fdisk_partition_to_string(pa, sf->cxt, FDISK_FIELD_TYPE, &data);
1281 printf("%s\n", data);
1282
1283 fdisk_unref_partition(pa);
1284}
1285
3186f4a9
KZ
1286static void command_fdisk_help(void)
1287{
1288 fputs(_("\nHelp:\n"), stdout);
1289
1290 fputc('\n', stdout);
1291 color_scheme_enable("help-title", UL_COLOR_BOLD);
1292 fputs(_(" Commands:\n"), stdout);
1293 color_disable();
e8813494 1294 fputs(_(" write write table to disk and exit\n"), stdout);
6e834d67 1295 fputs(_(" quit show new situation and wait for user's feedback before write\n"), stdout);
e8813494 1296 fputs(_(" abort exit sfdisk shell\n"), stdout);
62eea9ce
BS
1297 fputs(_(" print display the partition table\n"), stdout);
1298 fputs(_(" help show this help text\n"), stdout);
333c3761 1299 fputc('\n', stdout);
62eea9ce 1300 fputs(_(" Ctrl-D the same as 'quit'\n"), stdout);
3186f4a9
KZ
1301
1302 fputc('\n', stdout);
1303 color_scheme_enable("help-title", UL_COLOR_BOLD);
1304 fputs(_(" Input format:\n"), stdout);
1305 color_disable();
6e834d67 1306 fputs(_(" <start>, <size>, <type>, <bootable>\n"), stdout);
3186f4a9
KZ
1307
1308 fputc('\n', stdout);
62eea9ce
BS
1309 fputs(_(" <start> Beginning of the partition in sectors, or bytes if\n"
1310 " specified in the format <number>{K,M,G,T,P,E,Z,Y}.\n"
1311 " The default is the first free space.\n"), stdout);
3186f4a9
KZ
1312
1313 fputc('\n', stdout);
62eea9ce
BS
1314 fputs(_(" <size> Size of the partition in sectors, or bytes if\n"
1315 " specified in the format <number>{K,M,G,T,P,E,Z,Y}.\n"
1316 " The default is all available space.\n"), stdout);
3186f4a9
KZ
1317
1318 fputc('\n', stdout);
62eea9ce 1319 fputs(_(" <type> The partition type. Default is a Linux data partition.\n"), stdout);
6ebc3785
KZ
1320 fputs(_(" MBR: hex or L,S,E,X,U,R,V shortcuts.\n"), stdout);
1321 fputs(_(" GPT: UUID or L,S,H,U,R,V shortcuts.\n"), stdout);
3186f4a9
KZ
1322
1323 fputc('\n', stdout);
62eea9ce 1324 fputs(_(" <bootable> Use '*' to mark an MBR partition as bootable.\n"), stdout);
3186f4a9
KZ
1325
1326 fputc('\n', stdout);
1327 color_scheme_enable("help-title", UL_COLOR_BOLD);
1328 fputs(_(" Example:\n"), stdout);
1329 color_disable();
62eea9ce 1330 fputs(_(" , 4G Creates a 4GiB partition at default start offset.\n"), stdout);
3186f4a9
KZ
1331 fputc('\n', stdout);
1332}
1333
e8813494
KZ
1334enum {
1335 SFDISK_DONE_NONE = 0,
1336 SFDISK_DONE_EOF,
1337 SFDISK_DONE_ABORT,
1338 SFDISK_DONE_WRITE,
1339 SFDISK_DONE_ASK
1340};
1341
1342/* returns: 0 on success, <0 on error, 1 successfully stop sfdisk */
1343static int loop_control_commands(struct sfdisk *sf,
1344 struct fdisk_script *dp,
1345 char *buf)
1346{
1347 const char *p = skip_blank(buf);
1348 int rc = SFDISK_DONE_NONE;
1349
1350 if (strcmp(p, "print") == 0)
1351 list_disklabel(sf->cxt);
1352 else if (strcmp(p, "help") == 0)
1353 command_fdisk_help();
1354 else if (strcmp(p, "quit") == 0)
1355 rc = SFDISK_DONE_ASK;
1356 else if (strcmp(p, "write") == 0)
1357 rc = SFDISK_DONE_WRITE;
1358 else if (strcmp(p, "abort") == 0)
1359 rc = SFDISK_DONE_ABORT;
1360 else {
8be199ea 1361 if (sf->interactive)
e8813494
KZ
1362 fdisk_warnx(sf->cxt, _("unsupported command"));
1363 else {
1364 fdisk_warnx(sf->cxt, _("line %d: unsupported command"),
1365 fdisk_script_get_nlines(dp));
1366 rc = -EINVAL;
1367 }
1368 }
1369 return rc;
1370}
1371
e54b1c6f
KZ
1372static int has_container(struct sfdisk *sf)
1373{
1374 size_t i, nparts;
1375 struct fdisk_partition *pa = NULL;
1376
1377 if (sf->container)
1378 return sf->container;
1379
1380 nparts = fdisk_get_npartitions(sf->cxt);
e54b1c6f
KZ
1381 for (i = 0; i < nparts; i++) {
1382 if (fdisk_get_partition(sf->cxt, i, &pa) != 0)
1383 continue;
1384 if (fdisk_partition_is_container(pa)) {
1385 sf->container = 1;
1386 break;
1387 }
1388 }
1389
1390 fdisk_unref_partition(pa);
1391 return sf->container;
1392}
1393
347a7f77
KZ
1394static size_t last_pt_partno(struct sfdisk *sf)
1395{
1396 size_t i, nparts, partno = 0;
1397 struct fdisk_partition *pa = NULL;
1398
1399
1400 nparts = fdisk_get_npartitions(sf->cxt);
1401 for (i = 0; i < nparts; i++) {
1402 size_t x;
1403
1404 if (fdisk_get_partition(sf->cxt, i, &pa) != 0 ||
1405 !fdisk_partition_is_used(pa))
1406 continue;
1407 x = fdisk_partition_get_partno(pa);
1408 if (x > partno)
1409 partno = x;
1410 }
1411
1412 fdisk_unref_partition(pa);
1413 return partno;
1414}
1415
3ba8e422 1416#ifdef HAVE_LIBREADLINE
7159b496
KZ
1417static char *sfdisk_fgets(struct fdisk_script *dp,
1418 char *buf, size_t bufsz, FILE *f)
1419{
1420 struct sfdisk *sf = (struct sfdisk *) fdisk_script_get_userdata(dp);
1421
1422 assert(dp);
1423 assert(buf);
1424 assert(bufsz > 2);
1425
3ba8e422 1426 if (sf->interactive) {
7159b496
KZ
1427 char *p = readline(sf->prompt);
1428 size_t len;
1429
1430 if (!p)
1431 return NULL;
1432 len = strlen(p);
1433 if (len > bufsz - 2)
1434 len = bufsz - 2;
1435
1436 memcpy(buf, p, len);
1437 buf[len] = '\n'; /* append \n to be compatible with libc fgetc() */
1438 buf[len + 1] = '\0';
1439 free(p);
3ba8e422 1440 fflush(stdout);
7159b496
KZ
1441 return buf;
1442 }
7159b496
KZ
1443 return fgets(buf, bufsz, f);
1444}
3ba8e422 1445#endif
7159b496 1446
2928068a
KZ
1447static int ignore_partition(struct fdisk_partition *pa)
1448{
1449 /* incomplete partition setting */
1450 if (!fdisk_partition_has_start(pa) && !fdisk_partition_start_is_default(pa))
1451 return 1;
1452 if (!fdisk_partition_has_size(pa) && !fdisk_partition_end_is_default(pa))
1453 return 1;
1454
1455 /* probably dump from old sfdisk with start=0 size=0 */
1456 if (fdisk_partition_has_start(pa) && fdisk_partition_get_start(pa) == 0 &&
1457 fdisk_partition_has_size(pa) && fdisk_partition_get_size(pa) == 0)
1458 return 1;
1459
1460 return 0;
1461}
1462
bb881527
KZ
1463static void follow_wipe_mode(struct sfdisk *sf)
1464{
1465 int dowipe = sf->wipemode == WIPEMODE_ALWAYS ? 1 : 0;
1466
1467 if (sf->interactive && sf->wipemode == WIPEMODE_AUTO)
1468 dowipe = 1; /* do it in interactive mode */
1469
1470 if (fdisk_is_ptcollision(sf->cxt) && sf->wipemode != WIPEMODE_NEVER)
1471 dowipe = 1; /* always wipe old PT */
1472
1473 fdisk_enable_wipe(sf->cxt, dowipe);
1474 if (sf->quiet)
1475 return;
1476
1477 if (dowipe) {
1478 if (!fdisk_is_ptcollision(sf->cxt)) {
1479 fdisk_info(sf->cxt, _("The old %s signature will be removed by a write command."),
1480 fdisk_get_collision(sf->cxt));
1481 fputc('\n', stderr);
1482 }
1483 } else {
1484 fdisk_warnx(sf->cxt, _(
1485 "The old %s signature may remain on the device. "
1486 "It is recommended to wipe the device with wipefs(8) or "
1487 "sfdisk --wipe, in order to avoid possible collisions."),
1488 fdisk_get_collision(sf->cxt));
1489 fputc('\n', stderr);
1490 }
1491}
1492
3d6db3fd
KZ
1493static int wipe_partition(struct sfdisk *sf, size_t partno)
1494{
1495 int rc, yes = 0;
c308e205 1496 char *fstype = NULL;
3d6db3fd
KZ
1497 struct fdisk_partition *tmp = NULL;
1498
1499 DBG(MISC, ul_debug("checking for signature"));
1500
1501 rc = fdisk_get_partition(sf->cxt, partno, &tmp);
1502 if (rc)
1503 goto done;
1504
1505 rc = fdisk_partition_to_string(tmp, sf->cxt, FDISK_FIELD_FSTYPE, &fstype);
1506 if (rc || fstype == NULL)
1507 goto done;
f42205d8 1508
3d6db3fd
KZ
1509 fdisk_warnx(sf->cxt, _("Partition #%zu contains a %s signature."), partno + 1, fstype);
1510
1511 if (sf->pwipemode == WIPEMODE_AUTO && isatty(STDIN_FILENO))
1512 fdisk_ask_yesno(sf->cxt, _("Do you want to remove the signature?"), &yes);
1513 else if (sf->pwipemode == WIPEMODE_ALWAYS)
1514 yes = 1;
1515
1516 if (yes) {
1517 fdisk_info(sf->cxt, _("The signature will be removed by a write command."));
1518 rc = fdisk_wipe_partition(sf->cxt, partno, TRUE);
1519 }
1520done:
1521 fdisk_unref_partition(tmp);
1522 free(fstype);
1523 DBG(MISC, ul_debug("partition wipe check end [rc=%d]", rc));
1524 return rc;
1525}
f42205d8 1526
ad8cd66a
KZ
1527static void refresh_prompt_buffer(struct sfdisk *sf, const char *devname,
1528 size_t next_partno, int created)
1529{
1530 if (created) {
1531 char *partname = fdisk_partname(devname, next_partno + 1);
1532 if (!partname)
1533 err(EXIT_FAILURE, _("failed to allocate partition name"));
1534
1535 if (!sf->prompt || !startswith(sf->prompt, partname)) {
1536 free(sf->prompt);
1537 xasprintf(&sf->prompt,"%s: ", partname);
1538 }
1539 free(partname);
1540 } else if (!sf->prompt || !startswith(sf->prompt, SFDISK_PROMPT)) {
1541 free(sf->prompt);
1542 sf->prompt = xstrdup(SFDISK_PROMPT);
1543 }
1544}
1545
254b1dfc
KZ
1546/*
1547 * sfdisk <device> [[-N] <partno>]
1548 *
1549 * Note that the option -N is there for backward compatibility only.
1550 */
7324f1bf 1551static int command_fdisk(struct sfdisk *sf, int argc, char **argv)
9c1f9dd3 1552{
3d6db3fd 1553 int rc = 0, partno = sf->partno, created = 0, unused = 0;
7324f1bf
KZ
1554 struct fdisk_script *dp;
1555 struct fdisk_table *tb = NULL;
1556 const char *devname = NULL, *label;
1557 char buf[BUFSIZ];
c3bc7483 1558 size_t next_partno = (size_t) -1;
9c1f9dd3 1559
8a8d204c
KZ
1560 if (argc)
1561 devname = argv[0];
254b1dfc 1562 if (partno < 0 && argc > 1)
54b13b0c 1563 partno = strtou32_or_err(argv[1],
9c1f9dd3 1564 _("failed to parse partition number"));
8a8d204c 1565 if (!devname)
9c1f9dd3
KZ
1566 errx(EXIT_FAILURE, _("no disk device specified"));
1567
347a7f77
KZ
1568 rc = fdisk_assign_device(sf->cxt, devname, 0);
1569 if (rc)
1570 err(EXIT_FAILURE, _("cannot open %s"), devname);
b4df449f 1571
7324f1bf
KZ
1572 dp = fdisk_new_script(sf->cxt);
1573 if (!dp)
1574 err(EXIT_FAILURE, _("failed to allocate script handler"));
347a7f77 1575 fdisk_set_script(sf->cxt, dp);
3ba8e422 1576#ifdef HAVE_LIBREADLINE
7159b496 1577 fdisk_script_set_fgets(dp, sfdisk_fgets);
3ba8e422 1578#endif
7159b496 1579 fdisk_script_set_userdata(dp, (void *) sf);
9c1f9dd3 1580
b4df449f
KZ
1581 /*
1582 * Don't create a new disklabel when [-N] <partno> specified. In this
1583 * case reuse already specified disklabel. Let's check that the disk
1584 * really contains the partition.
1585 */
1586 if (partno >= 0) {
1587 size_t n;
d754d554 1588
b4df449f 1589 if (!fdisk_has_label(sf->cxt))
54fefa07
BS
1590 errx(EXIT_FAILURE, _("%s: cannot modify partition %d: "
1591 "no partition table was found"),
d754d554 1592 devname, partno + 1);
b4df449f
KZ
1593 n = fdisk_get_npartitions(sf->cxt);
1594 if ((size_t) partno > n)
54fefa07
BS
1595 errx(EXIT_FAILURE, _("%s: cannot modify partition %d: "
1596 "partition table contains only %zu "
1597 "partitions"),
d754d554
KZ
1598 devname, partno + 1, n);
1599
3d6db3fd 1600 if (!fdisk_is_partition_used(sf->cxt, partno)) {
d754d554
KZ
1601 fdisk_warnx(sf->cxt, _("warning: %s: partition %d is not defined yet"),
1602 devname, partno + 1);
3d6db3fd
KZ
1603 unused = 1;
1604 }
b4df449f
KZ
1605 created = 1;
1606 next_partno = partno;
f42205d8
KZ
1607
1608 if (sf->movedata)
1609 sf->orig_pa = get_partition(sf->cxt, partno);
b4df449f
KZ
1610 }
1611
347a7f77
KZ
1612 if (sf->append) {
1613 created = 1;
1614 next_partno = last_pt_partno(sf) + 1;
1615 }
1616
8be199ea 1617 if (!sf->quiet && sf->interactive) {
3186f4a9
KZ
1618 color_scheme_enable("welcome", UL_COLOR_GREEN);
1619 fdisk_info(sf->cxt, _("\nWelcome to sfdisk (%s)."), PACKAGE_STRING);
1620 color_disable();
1621 fdisk_info(sf->cxt, _("Changes will remain in memory only, until you decide to write them.\n"
1622 "Be careful before using the write command.\n"));
1623 }
1624
db48b6a1
KZ
1625 if (!sf->noact && !sf->noreread) {
1626 if (!sf->quiet)
1627 fputs(_("Checking that no-one is using this disk right now ..."), stdout);
ea0acfc3 1628 if (fdisk_device_is_used(sf->cxt)) {
9d9a1b87
KZ
1629 if (!sf->quiet)
1630 fputs(_(" FAILED\n\n"), stdout);
db48b6a1
KZ
1631
1632 fdisk_warnx(sf->cxt, _(
1633 "This disk is currently in use - repartitioning is probably a bad idea.\n"
1634 "Umount all file systems, and swapoff all swap partitions on this disk.\n"
1635 "Use the --no-reread flag to suppress this check.\n"));
1636
1637 if (!sf->force)
1638 errx(EXIT_FAILURE, _("Use the --force flag to overrule all checks."));
9d9a1b87 1639 } else if (!sf->quiet)
db48b6a1
KZ
1640 fputs(_(" OK\n\n"), stdout);
1641 }
1642
bb881527
KZ
1643 if (fdisk_get_collision(sf->cxt))
1644 follow_wipe_mode(sf);
15b5e942 1645
ab02d87e
KZ
1646 if (sf->backup)
1647 backup_partition_table(sf, devname);
1648
f0edb076
KZ
1649 if (!sf->quiet) {
1650 list_disk_geometry(sf->cxt);
1651 if (fdisk_has_label(sf->cxt)) {
1652 fdisk_info(sf->cxt, _("\nOld situation:"));
1653 list_disklabel(sf->cxt);
1654 }
3186f4a9 1655 }
7324f1bf
KZ
1656
1657 if (sf->label)
1658 label = sf->label;
1659 else if (fdisk_has_label(sf->cxt))
1660 label = fdisk_label_get_name(fdisk_get_label(sf->cxt, NULL));
1661 else
1662 label = "dos"; /* just for backward compatibility */
1663
1664 fdisk_script_set_header(dp, "label", label);
1665
15b5e942 1666
8be199ea 1667 if (!sf->quiet && sf->interactive) {
3186f4a9
KZ
1668 if (!fdisk_has_label(sf->cxt) && !sf->label)
1669 fdisk_info(sf->cxt,
1670 _("\nsfdisk is going to create a new '%s' disk label.\n"
1671 "Use 'label: <name>' before you define a first partition\n"
1672 "to override the default."), label);
1673 fdisk_info(sf->cxt, _("\nType 'help' to get more information.\n"));
f0edb076 1674 } else if (!sf->quiet)
3186f4a9 1675 fputc('\n', stdout);
7324f1bf
KZ
1676
1677 tb = fdisk_script_get_table(dp);
c3bc7483 1678 assert(tb);
7324f1bf
KZ
1679
1680 do {
c3bc7483 1681 size_t nparts;
7324f1bf 1682
c3bc7483
KZ
1683 DBG(PARSE, ul_debug("<---next-line--->"));
1684 if (next_partno == (size_t) -1)
1685 next_partno = fdisk_table_get_nents(tb);
1686
e54b1c6f
KZ
1687 if (created
1688 && partno < 0
347a7f77 1689 && next_partno == fdisk_get_npartitions(sf->cxt)
e54b1c6f
KZ
1690 && !has_container(sf)) {
1691 fdisk_info(sf->cxt, _("All partitions used."));
1692 rc = SFDISK_DONE_ASK;
1693 break;
1694 }
1695
ad8cd66a 1696 refresh_prompt_buffer(sf, devname, next_partno, created);
91cce31a
KZ
1697
1698
c809b20a 1699 if (sf->prompt && (sf->interactive || !sf->quiet)) {
3ba8e422 1700#ifndef HAVE_LIBREADLINE
3ba8e422
KZ
1701 fputs(sf->prompt, stdout);
1702#else
c809b20a
KZ
1703 if (!sf->interactive)
1704 fputs(sf->prompt, stdout);
3ba8e422 1705#endif
c809b20a
KZ
1706 }
1707
7324f1bf 1708 rc = fdisk_script_read_line(dp, stdin, buf, sizeof(buf));
e8813494 1709 if (rc < 0) {
c3bc7483 1710 DBG(PARSE, ul_debug("script parsing failed, trying sfdisk specific commands"));
7324f1bf 1711 buf[sizeof(buf) - 1] = '\0';
e8813494
KZ
1712 rc = loop_control_commands(sf, dp, buf);
1713 if (rc)
7324f1bf 1714 break;
7324f1bf 1715 continue;
e8813494
KZ
1716 } else if (rc == 1) {
1717 rc = SFDISK_DONE_EOF;
91cce31a
KZ
1718 if (!sf->quiet)
1719 fputs(_("Done.\n"), stdout);
e8813494 1720 break;
7324f1bf
KZ
1721 }
1722
1723 nparts = fdisk_table_get_nents(tb);
1724 if (nparts) {
4813a521 1725 size_t cur_partno = (size_t) -1;
7324f1bf
KZ
1726 struct fdisk_partition *pa = fdisk_table_get_partition(tb, nparts - 1);
1727
c3bc7483 1728 assert(pa);
3186f4a9 1729
2928068a
KZ
1730 if (ignore_partition(pa)) {
1731 fdisk_info(sf->cxt, _("Ignoring partition."));
1732 next_partno++;
3186f4a9
KZ
1733 continue;
1734 }
b4df449f 1735 if (!created) { /* create a new disklabel */
7324f1bf
KZ
1736 rc = fdisk_apply_script_headers(sf->cxt, dp);
1737 created = !rc;
90dc69e4
KZ
1738 if (rc)
1739 fdisk_warnx(sf->cxt, _(
1740 "Failed to apply script headers, "
1741 "disk label not created."));
bb881527
KZ
1742
1743 if (rc == 0 && fdisk_get_collision(sf->cxt))
1744 follow_wipe_mode(sf);
7324f1bf 1745 }
b4df449f 1746 if (!rc && partno >= 0) { /* -N <partno>, modify partition */
0ecf3ab5 1747 rc = fdisk_set_partition(sf->cxt, partno, pa);
31c79e18 1748 rc = rc == 0 ? SFDISK_DONE_ASK : SFDISK_DONE_ABORT;
b4df449f 1749 break;
a8a4887b 1750 } else if (!rc) { /* add partition */
91cce31a 1751 if (!sf->interactive && !sf->quiet &&
ad8cd66a
KZ
1752 (!sf->prompt || startswith(sf->prompt, SFDISK_PROMPT))) {
1753 refresh_prompt_buffer(sf, devname, next_partno, created);
1754 fputs(sf->prompt, stdout);
1755 }
c3bc7483 1756 rc = fdisk_add_partition(sf->cxt, pa, &cur_partno);
a8a4887b
KZ
1757 if (rc) {
1758 errno = -rc;
91cce31a 1759 fdisk_warn(sf->cxt, _("Failed to add #%d partition"), next_partno + 1);
a8a4887b
KZ
1760 }
1761 }
7324f1bf 1762
3d6db3fd
KZ
1763 /* wipe partition on success
1764 *
1765 * Note that unused=1 means -N <partno> for unused,
1766 * otherwise we wipe only newly created partitions.
1767 */
1768 if (rc == 0 && (unused || partno < 0)) {
1769 rc = wipe_partition(sf, unused ? (size_t) partno : cur_partno);
1770 if (rc)
1771 errno = -rc;
1772 }
1773
1774 if (!rc) {
1775 /* success print result */
8be199ea
KZ
1776 if (sf->interactive)
1777 sfdisk_print_partition(sf, cur_partno);
c3bc7483 1778 next_partno = cur_partno + 1;
90dc69e4 1779 } else if (pa) /* error, drop partition from script */
7324f1bf
KZ
1780 fdisk_table_remove_partition(tb, pa);
1781 } else
3186f4a9 1782 fdisk_info(sf->cxt, _("Script header accepted."));
e54b1c6f 1783
90dc69e4
KZ
1784 if (rc && !sf->interactive) {
1785 rc = SFDISK_DONE_ABORT;
1786 break;
1787 }
7324f1bf 1788 } while (1);
254b1dfc 1789
35ca5118 1790 /* create empty disk label if label, but no partition specified */
9d4081cd 1791 if ((rc == SFDISK_DONE_EOF || rc == SFDISK_DONE_WRITE) && created == 0
35ca5118
KZ
1792 && fdisk_script_has_force_label(dp) == 1
1793 && fdisk_table_get_nents(tb) == 0
1794 && fdisk_script_get_header(dp, "label")) {
1795
1796 int xrc = fdisk_apply_script_headers(sf->cxt, dp);
1797 created = !xrc;
1798 if (xrc) {
1799 fdisk_warnx(sf->cxt, _(
1800 "Failed to apply script headers, "
1801 "disk label not created."));
1802 rc = SFDISK_DONE_ABORT;
1803 }
1804 }
1805
f0edb076 1806 if (!sf->quiet && rc != SFDISK_DONE_ABORT) {
3186f4a9 1807 fdisk_info(sf->cxt, _("\nNew situation:"));
35ca5118 1808 list_disk_identifier(sf->cxt);
7324f1bf
KZ
1809 list_disklabel(sf->cxt);
1810 }
e8813494
KZ
1811
1812 switch (rc) {
1813 case SFDISK_DONE_ASK:
05af8bd4 1814 case SFDISK_DONE_EOF:
8be199ea 1815 if (sf->interactive) {
e8813494
KZ
1816 int yes = 0;
1817 fdisk_ask_yesno(sf->cxt, _("Do you want to write this to disk?"), &yes);
1818 if (!yes) {
f01f2528 1819 fdisk_info(sf->cxt, _("Leaving."));
e8813494
KZ
1820 rc = 0;
1821 break;
1822 }
1823 }
76ae3fe3 1824 /* fallthrough */
e8813494 1825 case SFDISK_DONE_WRITE:
351fad50 1826 rc = write_changes(sf);
e8813494
KZ
1827 break;
1828 case SFDISK_DONE_ABORT:
b4df449f 1829 default: /* rc < 0 on error */
f0edb076 1830 fdisk_info(sf->cxt, _("Leaving.\n"));
e8813494 1831 break;
3186f4a9 1832 }
e8813494 1833
7324f1bf 1834 fdisk_unref_script(dp);
9c1f9dd3
KZ
1835 return rc;
1836}
1837
86be6a32 1838static void __attribute__((__noreturn__)) usage(void)
1881390d 1839{
86be6a32 1840 FILE *out = stdout;
1881390d 1841 fputs(USAGE_HEADER, out);
fd6b7a7f 1842
1881390d 1843 fprintf(out,
43a1ccec
KZ
1844 _(" %1$s [options] <dev> [[-N] <part>]\n"
1845 " %1$s [options] <command>\n"), program_invocation_short_name);
1846
451dbcfa
BS
1847 fputs(USAGE_SEPARATOR, out);
1848 fputs(_("Display or manipulate a disk partition table.\n"), out);
1849
6e2d5a44 1850 fputs(USAGE_COMMANDS, out);
5d5ca9de 1851 fputs(_(" -A, --activate <dev> [<part> ...] list or set bootable (P)MBR partitions\n"), out);
d420a7f9 1852 fputs(_(" -d, --dump <dev> dump partition table (usable for later input)\n"), out);
a592b4b5 1853 fputs(_(" -J, --json <dev> dump partition table in JSON format\n"), out);
d420a7f9
KZ
1854 fputs(_(" -g, --show-geometry [<dev> ...] list geometry of all or specified devices\n"), out);
1855 fputs(_(" -l, --list [<dev> ...] list partitions of each device\n"), out);
9e930041 1856 fputs(_(" -F, --list-free [<dev> ...] list unpartitioned free areas of each device\n"), out);
9a17d946 1857 fputs(_(" -r, --reorder <dev> fix partitions order (by start offset)\n"), out);
43a1ccec
KZ
1858 fputs(_(" -s, --show-size [<dev> ...] list sizes of all or specified devices\n"), out);
1859 fputs(_(" -T, --list-types print the recognized types (see -X)\n"), out);
3f43f5d0 1860 fputs(_(" -V, --verify [<dev> ...] test whether partitions seem correct\n"), out);
aab9be66 1861 fputs(_(" --delete <dev> [<part> ...] delete all or specified partitions\n"), out);
43a1ccec 1862
e36fb07a
KZ
1863 fputs(USAGE_SEPARATOR, out);
1864 fputs(_(" --part-label <dev> <part> [<str>] print or change partition label\n"), out);
1865 fputs(_(" --part-type <dev> <part> [<type>] print or change partition type\n"), out);
1866 fputs(_(" --part-uuid <dev> <part> [<uuid>] print or change partition uuid\n"), out);
bc9e8547 1867 fputs(_(" --part-attrs <dev> <part> [<str>] print or change partition attributes\n"), out);
e36fb07a 1868
43a1ccec 1869 fputs(USAGE_SEPARATOR, out);
ab02d87e
KZ
1870 fputs(_(" <dev> device (usually disk) path\n"), out);
1871 fputs(_(" <part> partition number\n"), out);
1872 fputs(_(" <type> partition type, GUID for GPT, hex for MBR\n"), out);
fd6b7a7f 1873
1881390d 1874 fputs(USAGE_OPTIONS, out);
703ab082 1875 fputs(_(" -a, --append append partitions to existing partition table\n"), out);
ab02d87e 1876 fputs(_(" -b, --backup backup partition table sectors (see -O)\n"), out);
57eae223 1877 fputs(_(" --bytes print SIZE in bytes rather than in human readable format\n"), out);
f42205d8 1878 fputs(_(" --move-data[=<typescript>] move partition data after relocation (requires -N)\n"), out);
ab02d87e 1879 fputs(_(" -f, --force disable all consistency checking\n"), out);
da25898b
KZ
1880 fputs(_(" --color[=<when>] colorize output (auto, always or never)\n"), out);
1881 fprintf(out,
1882 " %s\n", USAGE_COLORS_DEFAULT);
ab02d87e 1883 fputs(_(" -N, --partno <num> specify partition number\n"), out);
ab02d87e
KZ
1884 fputs(_(" -n, --no-act do everything except write to device\n"), out);
1885 fputs(_(" --no-reread do not check whether the device is in use\n"), out);
d4a90151 1886 fputs(_(" --no-tell-kernel do not tell kernel about changes\n"), out);
57eae223
BS
1887 fputs(_(" -O, --backup-file <path> override default backup file name\n"), out);
1888 fputs(_(" -o, --output <list> output columns\n"), out);
1889 fputs(_(" -q, --quiet suppress extra info messages\n"), out);
15b5e942 1890 fputs(_(" -w, --wipe <mode> wipe signatures (auto, always or never)\n"), out);
9e930041 1891 fputs(_(" -W, --wipe-partitions <mode> wipe signatures from new partitions (auto, always or never)\n"), out);
57eae223
BS
1892 fputs(_(" -X, --label <name> specify label type (dos, gpt, ...)\n"), out);
1893 fputs(_(" -Y, --label-nested <name> specify nested label type (dos, bsd)\n"), out);
35ce145f 1894 fputs(USAGE_SEPARATOR, out);
349ac672 1895 fputs(_(" -G, --show-pt-geometry deprecated, alias to --show-geometry\n"), out);
6e834d67 1896 fputs(_(" -L, --Linux deprecated, only for backward compatibility\n"), out);
57eae223 1897 fputs(_(" -u, --unit S deprecated, only sector unit is supported\n"), out);
058dd97a 1898
1881390d 1899 fputs(USAGE_SEPARATOR, out);
b1a294c4
RM
1900 printf( " -h, --help %s\n", USAGE_OPTSTR_HELP);
1901 printf( " -v, --version %s\n", USAGE_OPTSTR_VERSION);
fd6b7a7f 1902
01f9286c
KZ
1903 list_available_columns(out);
1904
f45f3ec3 1905 printf(USAGE_MAN_TAIL("sfdisk(8)"));
86be6a32 1906 exit(EXIT_SUCCESS);
fd6b7a7f
KZ
1907}
1908
9c1f9dd3 1909
1881390d
KZ
1910int main(int argc, char *argv[])
1911{
01f9286c 1912 const char *outarg = NULL;
8de07279 1913 int rc = -EINVAL, c, longidx = -1, bytes = 0;
da25898b 1914 int colormode = UL_COLORMODE_UNDEF;
7324f1bf 1915 struct sfdisk _sf = {
8be199ea 1916 .partno = -1,
15b5e942 1917 .wipemode = WIPEMODE_AUTO,
3d6db3fd 1918 .pwipemode = WIPEMODE_AUTO,
8be199ea 1919 .interactive = isatty(STDIN_FILENO) ? 1 : 0,
7324f1bf 1920 }, *sf = &_sf;
1881390d 1921
8eab3194
KZ
1922 enum {
1923 OPT_CHANGE_ID = CHAR_MAX + 1,
1924 OPT_PRINT_ID,
db48b6a1 1925 OPT_ID,
351fad50 1926 OPT_NOREREAD,
e36fb07a
KZ
1927 OPT_PARTUUID,
1928 OPT_PARTLABEL,
1929 OPT_PARTTYPE,
bc9e8547 1930 OPT_PARTATTRS,
da25898b 1931 OPT_BYTES,
f42205d8
KZ
1932 OPT_COLOR,
1933 OPT_MOVEDATA,
d4a90151
KZ
1934 OPT_DELETE,
1935 OPT_NOTELL
8eab3194
KZ
1936 };
1937
1881390d 1938 static const struct option longopts[] = {
703ab082
KZ
1939 { "activate",no_argument, NULL, 'A' },
1940 { "append", no_argument, NULL, 'a' },
ab02d87e
KZ
1941 { "backup", no_argument, NULL, 'b' },
1942 { "backup-file", required_argument, NULL, 'O' },
354f8cc8 1943 { "bytes", no_argument, NULL, OPT_BYTES },
da25898b 1944 { "color", optional_argument, NULL, OPT_COLOR },
aab9be66 1945 { "delete", no_argument, NULL, OPT_DELETE },
8a8d204c 1946 { "dump", no_argument, NULL, 'd' },
1881390d 1947 { "help", no_argument, NULL, 'h' },
db48b6a1 1948 { "force", no_argument, NULL, 'f' },
a592b4b5 1949 { "json", no_argument, NULL, 'J' },
7324f1bf 1950 { "label", required_argument, NULL, 'X' },
e1422de3 1951 { "label-nested", required_argument, NULL, 'Y' },
d2c47697 1952 { "list", no_argument, NULL, 'l' },
8abdb912 1953 { "list-free", no_argument, NULL, 'F' },
058dd97a 1954 { "list-types", no_argument, NULL, 'T' },
f01f2528 1955 { "no-act", no_argument, NULL, 'n' },
db48b6a1 1956 { "no-reread", no_argument, NULL, OPT_NOREREAD },
d4a90151 1957 { "no-tell-kernel", no_argument, NULL, OPT_NOTELL },
f42205d8 1958 { "move-data", optional_argument, NULL, OPT_MOVEDATA },
01f9286c 1959 { "output", required_argument, NULL, 'o' },
d2c47697 1960 { "partno", required_argument, NULL, 'N' },
9a17d946 1961 { "reorder", no_argument, NULL, 'r' },
d420a7f9 1962 { "show-geometry", no_argument, NULL, 'g' },
f0edb076 1963 { "quiet", no_argument, NULL, 'q' },
d2c47697
KZ
1964 { "verify", no_argument, NULL, 'V' },
1965 { "version", no_argument, NULL, 'v' },
15b5e942 1966 { "wipe", required_argument, NULL, 'w' },
3d6db3fd 1967 { "wipe-partitions", required_argument, NULL, 'W' },
e36fb07a
KZ
1968
1969 { "part-uuid", no_argument, NULL, OPT_PARTUUID },
1970 { "part-label", no_argument, NULL, OPT_PARTLABEL },
1971 { "part-type", no_argument, NULL, OPT_PARTTYPE },
bc9e8547 1972 { "part-attrs", no_argument, NULL, OPT_PARTATTRS },
35ce145f 1973
349ac672 1974 { "show-pt-geometry", no_argument, NULL, 'G' }, /* deprecated */
b0ff9a76 1975 { "unit", required_argument, NULL, 'u' }, /* deprecated */
35ce145f 1976 { "Linux", no_argument, NULL, 'L' }, /* deprecated */
b0ff9a76 1977 { "show-size", no_argument, NULL, 's' }, /* deprecated */
8eab3194 1978
8eab3194 1979 { "change-id",no_argument, NULL, OPT_CHANGE_ID }, /* deprecated */
e36fb07a 1980 { "id", no_argument, NULL, 'c' }, /* deprecated */
8eab3194
KZ
1981 { "print-id",no_argument, NULL, OPT_PRINT_ID }, /* deprecated */
1982
87918040 1983 { NULL, 0, NULL, 0 },
1881390d 1984 };
b0ff9a76
CM
1985 static const ul_excl_t excl[] = { /* rows and cols in ASCII order */
1986 { 's','u'}, /* --show-size --unit */
1987 { 0 }
1988 };
1989 int excl_st[ARRAY_SIZE(excl)] = UL_EXCL_STATUS_INIT;
1990
1881390d
KZ
1991
1992 setlocale(LC_ALL, "");
1993 bindtextdomain(PACKAGE, LOCALEDIR);
1994 textdomain(PACKAGE);
2c308875 1995 close_stdout_atexit();
1881390d 1996
f7c6c31f 1997 while ((c = getopt_long(argc, argv, "aAbcdfFgGhJlLo:O:nN:qrsTu:vVX:Y:w:W:",
8eab3194 1998 longopts, &longidx)) != -1) {
b0ff9a76
CM
1999
2000 err_exclusive_options(c, longopts, excl, excl_st);
2001
1881390d 2002 switch(c) {
703ab082 2003 case 'A':
54b13b0c
KZ
2004 sf->act = ACT_ACTIVATE;
2005 break;
703ab082 2006 case 'a':
347a7f77
KZ
2007 sf->append = 1;
2008 break;
ab02d87e
KZ
2009 case 'b':
2010 sf->backup = 1;
2011 break;
8eab3194
KZ
2012 case OPT_CHANGE_ID:
2013 case OPT_PRINT_ID:
2014 case OPT_ID:
6e834d67 2015 warnx(_("%s is deprecated in favour of --part-type"),
8eab3194 2016 longopts[longidx].name);
e36fb07a 2017 sf->act = ACT_PARTTYPE;
54efd378 2018 break;
8eab3194 2019 case 'c':
6e834d67 2020 warnx(_("--id is deprecated in favour of --part-type"));
8eab3194
KZ
2021 sf->act = ACT_PARTTYPE;
2022 break;
a592b4b5
KZ
2023 case 'J':
2024 sf->json = 1;
2025 /* fallthrough */
e36fb07a
KZ
2026 case 'd':
2027 sf->act = ACT_DUMP;
2028 break;
8abdb912
KZ
2029 case 'F':
2030 sf->act = ACT_LIST_FREE;
2031 break;
db48b6a1
KZ
2032 case 'f':
2033 sf->force = 1;
2034 break;
f7c6c31f
SB
2035 case 'G':
2036 warnx(_("--show-pt-geometry is no more implemented. Using --show-geometry."));
76ae3fe3 2037 /* fallthrough */
e36fb07a
KZ
2038 case 'g':
2039 sf->act = ACT_SHOW_GEOM;
2040 break;
1881390d 2041 case 'h':
86be6a32 2042 usage();
1881390d 2043 break;
9c1f9dd3
KZ
2044 case 'l':
2045 sf->act = ACT_LIST;
2046 break;
35ce145f 2047 case 'L':
e36fb07a 2048 warnx(_("--Linux option is unnecessary and deprecated"));
35ce145f 2049 break;
01f9286c
KZ
2050 case 'o':
2051 outarg = optarg;
2052 break;
ab02d87e
KZ
2053 case 'O':
2054 sf->backup = 1;
2055 sf->backup_file = optarg;
2056 break;
f01f2528
KZ
2057 case 'n':
2058 sf->noact = 1;
2059 break;
254b1dfc 2060 case 'N':
b4df449f 2061 sf->partno = strtou32_or_err(optarg, _("failed to parse partition number")) - 1;
7324f1bf 2062 break;
f0edb076
KZ
2063 case 'q':
2064 sf->quiet = 1;
2065 break;
9a17d946
KZ
2066 case 'r':
2067 sf->act = ACT_REORDER;
2068 break;
d2eb1457
KZ
2069 case 's':
2070 sf->act = ACT_SHOW_SIZE;
2071 break;
058dd97a
KZ
2072 case 'T':
2073 sf->act = ACT_LIST_TYPES;
2074 break;
d420a7f9 2075 case 'u':
d420a7f9 2076 if (*optarg != 'S')
54fefa07 2077 errx(EXIT_FAILURE, _("unsupported unit '%c'"), *optarg);
d420a7f9 2078 break;
1881390d 2079 case 'v':
2c308875 2080 print_version(EXIT_SUCCESS);
d2c47697
KZ
2081 case 'V':
2082 sf->verify = 1;
2083 break;
15b5e942
KZ
2084 case 'w':
2085 sf->wipemode = wipemode_from_string(optarg);
2086 if (sf->wipemode < 0)
2087 errx(EXIT_FAILURE, _("unsupported wipe mode"));
2088 break;
3d6db3fd
KZ
2089 case 'W':
2090 sf->pwipemode = wipemode_from_string(optarg);
2091 if (sf->pwipemode < 0)
2092 errx(EXIT_FAILURE, _("unsupported wipe mode"));
2093 break;
e36fb07a
KZ
2094 case 'X':
2095 sf->label = optarg;
2096 break;
e1422de3
KZ
2097 case 'Y':
2098 sf->label_nested = optarg;
2099 break;
e36fb07a
KZ
2100
2101 case OPT_PARTUUID:
2102 sf->act = ACT_PARTUUID;
2103 break;
2104 case OPT_PARTTYPE:
2105 sf->act = ACT_PARTTYPE;
2106 break;
2107 case OPT_PARTLABEL:
2108 sf->act = ACT_PARTLABEL;
351fad50 2109 break;
bc9e8547
KZ
2110 case OPT_PARTATTRS:
2111 sf->act = ACT_PARTATTRS;
2112 break;
db48b6a1
KZ
2113 case OPT_NOREREAD:
2114 sf->noreread = 1;
2115 break;
354f8cc8 2116 case OPT_BYTES:
8de07279 2117 bytes = 1;
354f8cc8 2118 break;
da25898b
KZ
2119 case OPT_COLOR:
2120 colormode = UL_COLORMODE_AUTO;
2121 if (optarg)
2122 colormode = colormode_or_err(optarg,
2123 _("unsupported color mode"));
2124 break;
f42205d8
KZ
2125 case OPT_MOVEDATA:
2126 sf->movedata = 1;
2127 sf->move_typescript = optarg;
2128 break;
aab9be66
KZ
2129 case OPT_DELETE:
2130 sf->act = ACT_DELETE;
2131 break;
d4a90151
KZ
2132 case OPT_NOTELL:
2133 sf->notell = 1;
2134 break;
7324f1bf 2135 default:
677ec86c 2136 errtryhelp(EXIT_FAILURE);
37b94458 2137 }
37b94458 2138 }
fd6b7a7f 2139
da25898b
KZ
2140 colors_init(colormode, "sfdisk");
2141
8de07279
KZ
2142 sfdisk_init(sf);
2143 if (bytes)
2144 fdisk_set_size_unit(sf->cxt, FDISK_SIZEUNIT_BYTES);
2145
01f9286c
KZ
2146 if (outarg)
2147 init_fields(NULL, outarg, NULL);
22853e4a 2148
d2c47697
KZ
2149 if (sf->verify && !sf->act)
2150 sf->act = ACT_VERIFY; /* --verify make be used with --list too */
2151 else if (!sf->act)
2152 sf->act = ACT_FDISK; /* default */
2153
f42205d8
KZ
2154 if (sf->movedata && !(sf->act == ACT_FDISK && sf->partno >= 0))
2155 errx(EXIT_FAILURE, _("--movedata requires -N"));
2156
9c1f9dd3 2157 switch (sf->act) {
54b13b0c
KZ
2158 case ACT_ACTIVATE:
2159 rc = command_activate(sf, argc - optind, argv + optind);
2160 break;
2161
aab9be66
KZ
2162 case ACT_DELETE:
2163 rc = command_delete(sf, argc - optind, argv + optind);
2164 break;
2165
9c1f9dd3
KZ
2166 case ACT_LIST:
2167 rc = command_list_partitions(sf, argc - optind, argv + optind);
2168 break;
fd6b7a7f 2169
058dd97a
KZ
2170 case ACT_LIST_TYPES:
2171 rc = command_list_types(sf);
2172 break;
2173
8abdb912
KZ
2174 case ACT_LIST_FREE:
2175 rc = command_list_freespace(sf, argc - optind, argv + optind);
2176 break;
2177
9c1f9dd3 2178 case ACT_FDISK:
7324f1bf 2179 rc = command_fdisk(sf, argc - optind, argv + optind);
9c1f9dd3 2180 break;
8a8d204c
KZ
2181
2182 case ACT_DUMP:
2183 rc = command_dump(sf, argc - optind, argv + optind);
2184 break;
d2eb1457
KZ
2185
2186 case ACT_SHOW_SIZE:
2187 rc = command_show_size(sf, argc - optind, argv + optind);
2188 break;
d2c47697 2189
d420a7f9
KZ
2190 case ACT_SHOW_GEOM:
2191 rc = command_show_geometry(sf, argc - optind, argv + optind);
2192 break;
2193
d2c47697
KZ
2194 case ACT_VERIFY:
2195 rc = command_verify(sf, argc - optind, argv + optind);
2196 break;
8eab3194
KZ
2197
2198 case ACT_PARTTYPE:
2199 rc = command_parttype(sf, argc - optind, argv + optind);
2200 break;
3a5bdedf
KZ
2201
2202 case ACT_PARTUUID:
2203 rc = command_partuuid(sf, argc - optind, argv + optind);
2204 break;
2205
e36fb07a
KZ
2206 case ACT_PARTLABEL:
2207 rc = command_partlabel(sf, argc - optind, argv + optind);
351fad50
KZ
2208 break;
2209
bc9e8547
KZ
2210 case ACT_PARTATTRS:
2211 rc = command_partattrs(sf, argc - optind, argv + optind);
2212 break;
2213
9a17d946
KZ
2214 case ACT_REORDER:
2215 rc = command_reorder(sf, argc - optind, argv + optind);
2216 break;
9c1f9dd3 2217 }
fd6b7a7f 2218
9c1f9dd3 2219 sfdisk_deinit(sf);
fd6b7a7f 2220
1881390d
KZ
2221 DBG(MISC, ul_debug("bye! [rc=%d]", rc));
2222 return rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
4b1cc035
KZ
2223}
2224