]> git.ipfire.org Git - thirdparty/util-linux.git/blob - disk-utils/fdisk.c
Merge remote-tracking branch 'jwpi/hwclock-date7'
[thirdparty/util-linux.git] / disk-utils / fdisk.c
1 /*
2 * Copyright (C) 1992 A. V. Le Blanc (LeBlanc@mcc.ac.uk)
3 * Copyright (C) 2012 Davidlohr Bueso <dave@gnu.org>
4 *
5 * Copyright (C) 2007-2013 Karel Zak <kzak@redhat.com>
6 *
7 * This program is free software. You can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation: either version 1 or
10 * (at your option) any later version.
11 */
12 #include <unistd.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <fcntl.h>
17 #include <ctype.h>
18 #include <errno.h>
19 #include <getopt.h>
20 #include <sys/stat.h>
21 #include <sys/time.h>
22 #include <time.h>
23 #include <limits.h>
24 #include <libsmartcols.h>
25 #ifdef HAVE_LIBREADLINE
26 # define _FUNCTION_DEF
27 # include <readline/readline.h>
28 #endif
29
30 #include "c.h"
31 #include "xalloc.h"
32 #include "all-io.h"
33 #include "nls.h"
34 #include "rpmatch.h"
35 #include "blkdev.h"
36 #include "mbsalign.h"
37 #include "pathnames.h"
38 #include "canonicalize.h"
39 #include "strutils.h"
40 #include "closestream.h"
41 #include "pager.h"
42
43 #include "fdisk.h"
44
45 #include "pt-sun.h" /* to toggle flags */
46
47 #ifdef HAVE_LINUX_COMPILER_H
48 # include <linux/compiler.h>
49 #endif
50 #ifdef HAVE_LINUX_BLKPG_H
51 # include <linux/blkpg.h>
52 #endif
53
54 int pwipemode = WIPEMODE_AUTO;
55 static int wipemode = WIPEMODE_AUTO;
56
57 /*
58 * fdisk debug stuff (see fdisk.h and include/debug.h)
59 */
60 UL_DEBUG_DEFINE_MASK(fdisk);
61 UL_DEBUG_DEFINE_MASKNAMES(fdisk) = UL_DEBUG_EMPTY_MASKNAMES;
62
63 static void fdiskprog_init_debug(void)
64 {
65 __UL_INIT_DEBUG(fdisk, FDISKPROG_DEBUG_, 0, FDISK_DEBUG);
66 }
67
68 #ifdef HAVE_LIBREADLINE
69 static char *rl_fgets(char *s, int n, FILE *stream, const char *prompt)
70 {
71 char *p;
72
73 rl_outstream = stream;
74 p = readline(prompt);
75 if (!p)
76 return NULL;
77
78 strncpy(s, p, n);
79 s[n - 1] = '\0';
80 free(p);
81 return s;
82 }
83 #endif
84
85 int get_user_reply(struct fdisk_context *cxt, const char *prompt,
86 char *buf, size_t bufsz)
87 {
88 char *p;
89 size_t sz;
90
91 do {
92 #ifdef HAVE_LIBREADLINE
93 if (isatty(STDIN_FILENO)) {
94 if (!rl_fgets(buf, bufsz, stdout, prompt)) {
95 if (fdisk_label_is_changed(fdisk_get_label(cxt, NULL))) {
96 if (rl_fgets(buf, bufsz, stderr,
97 _("\nDo you really want to quit? "))
98 && !rpmatch(buf))
99 continue;
100 }
101 fdisk_unref_context(cxt);
102 exit(EXIT_FAILURE);
103 } else
104 break;
105 }
106 else
107 #endif
108 {
109 fputs(prompt, stdout);
110 fflush(stdout);
111 if (!fgets(buf, bufsz, stdin)) {
112 if (fdisk_label_is_changed(fdisk_get_label(cxt, NULL))) {
113 fprintf(stderr, _("\nDo you really want to quit? "));
114
115 if (fgets(buf, bufsz, stdin) && !rpmatch(buf))
116 continue;
117 }
118 fdisk_unref_context(cxt);
119 exit(EXIT_FAILURE);
120 } else
121 break;
122 }
123 } while (1);
124
125 for (p = buf; *p && !isgraph(*p); p++); /* get first non-blank */
126
127 if (p > buf)
128 memmove(buf, p, p - buf); /* remove blank space */
129 sz = strlen(buf);
130 if (sz && *(buf + sz - 1) == '\n')
131 *(buf + sz - 1) = '\0';
132
133 DBG(ASK, ul_debug("user's reply: >>>%s<<<", buf));
134 return 0;
135 }
136
137 static int ask_menu(struct fdisk_context *cxt, struct fdisk_ask *ask,
138 char *buf, size_t bufsz)
139
140 {
141 const char *q = fdisk_ask_get_query(ask);
142 int dft = fdisk_ask_menu_get_default(ask);
143
144 if (q) {
145 fputs(q, stdout); /* print header */
146 fputc('\n', stdout);
147 }
148
149 do {
150 char prompt[128];
151 int key, c, rc;
152 const char *name, *desc;
153 size_t i = 0;
154
155 /* print menu items */
156 while (fdisk_ask_menu_get_item(ask, i++, &key, &name, &desc) == 0)
157 fprintf(stdout, " %c %s (%s)\n", key, name, desc);
158
159 /* ask for key */
160 snprintf(prompt, sizeof(prompt), _("Select (default %c): "), dft);
161 rc = get_user_reply(cxt, prompt, buf, bufsz);
162 if (rc)
163 return rc;
164 if (!*buf) {
165 fdisk_info(cxt, _("Using default response %c."), dft);
166 c = dft;
167 } else
168 c = tolower(buf[0]);
169
170 /* check result */
171 i = 0;
172 while (fdisk_ask_menu_get_item(ask, i++, &key, NULL, NULL) == 0) {
173 if (c == key) {
174 fdisk_ask_menu_set_result(ask, c);
175 return 0; /* success */
176 }
177 }
178 fdisk_warnx(cxt, _("Value out of range."));
179 } while (1);
180
181 return -EINVAL;
182 }
183
184
185 #define tochar(num) ((int) ('a' + num - 1))
186 static int ask_number(struct fdisk_context *cxt,
187 struct fdisk_ask *ask,
188 char *buf, size_t bufsz)
189 {
190 char prompt[128] = { '\0' };
191 const char *q = fdisk_ask_get_query(ask);
192 const char *range = fdisk_ask_number_get_range(ask);
193
194 uint64_t dflt = fdisk_ask_number_get_default(ask),
195 low = fdisk_ask_number_get_low(ask),
196 high = fdisk_ask_number_get_high(ask);
197 int inchar = fdisk_ask_number_inchars(ask);
198
199 assert(q);
200
201 DBG(ASK, ul_debug("asking for number "
202 "['%s', <%"PRIu64",%"PRIu64">, default=%"PRIu64", range: %s]",
203 q, low, high, dflt, range));
204
205 if (range && dflt >= low && dflt <= high) {
206 if (inchar)
207 snprintf(prompt, sizeof(prompt), _("%s (%s, default %c): "),
208 q, range, tochar(dflt));
209 else
210 snprintf(prompt, sizeof(prompt), _("%s (%s, default %"PRIu64"): "),
211 q, range, dflt);
212
213 } else if (dflt >= low && dflt <= high) {
214 if (inchar)
215 snprintf(prompt, sizeof(prompt), _("%s (%c-%c, default %c): "),
216 q, tochar(low), tochar(high), tochar(dflt));
217 else
218 snprintf(prompt, sizeof(prompt),
219 _("%s (%"PRIu64"-%"PRIu64", default %"PRIu64"): "),
220 q, low, high, dflt);
221 } else if (inchar)
222 snprintf(prompt, sizeof(prompt), _("%s (%c-%c): "),
223 q, tochar(low), tochar(high));
224 else
225 snprintf(prompt, sizeof(prompt), _("%s (%"PRIu64"-%"PRIu64"): "),
226 q, low, high);
227
228 do {
229 int rc = get_user_reply(cxt, prompt, buf, bufsz);
230 uint64_t num;
231
232 if (rc)
233 return rc;
234 if (!*buf && dflt >= low && dflt <= high)
235 return fdisk_ask_number_set_result(ask, dflt);
236
237 if (isdigit_string(buf)) {
238 char *end;
239
240 errno = 0;
241 num = strtoumax(buf, &end, 10);
242 if (errno || buf == end || (end && *end))
243 continue;
244 } else if (inchar && isalpha(*buf)) {
245 num = tolower(*buf) - 'a' + 1;
246 } else
247 rc = -EINVAL;
248
249 if (rc == 0 && num >= low && num <= high)
250 return fdisk_ask_number_set_result(ask, num);
251
252 fdisk_warnx(cxt, _("Value out of range."));
253 } while (1);
254
255 return -1;
256 }
257
258 static int ask_offset(struct fdisk_context *cxt,
259 struct fdisk_ask *ask,
260 char *buf, size_t bufsz)
261 {
262 char prompt[128] = { '\0' };
263 const char *q = fdisk_ask_get_query(ask);
264 const char *range = fdisk_ask_number_get_range(ask);
265
266 uint64_t dflt = fdisk_ask_number_get_default(ask),
267 low = fdisk_ask_number_get_low(ask),
268 high = fdisk_ask_number_get_high(ask),
269 base = fdisk_ask_number_get_base(ask);
270
271 assert(q);
272
273 DBG(ASK, ul_debug("asking for offset ['%s', <%"PRIu64",%"PRIu64">, base=%"PRIu64", default=%"PRIu64", range: %s]",
274 q, low, high, base, dflt, range));
275
276 if (range && dflt >= low && dflt <= high)
277 snprintf(prompt, sizeof(prompt), _("%s (%s, default %"PRIu64"): "),
278 q, range, dflt);
279 else if (dflt >= low && dflt <= high)
280 snprintf(prompt, sizeof(prompt),
281 _("%s (%"PRIu64"-%"PRIu64", default %"PRIu64"): "),
282 q, low, high, dflt);
283 else
284 snprintf(prompt, sizeof(prompt), _("%s (%"PRIu64"-%"PRIu64"): "),
285 q, low, high);
286
287 do {
288 uintmax_t num = 0;
289 char sig = 0, *p;
290 int pwr = 0;
291
292 int rc = get_user_reply(cxt, prompt, buf, bufsz);
293 if (rc)
294 return rc;
295 if (!*buf && dflt >= low && dflt <= high)
296 return fdisk_ask_number_set_result(ask, dflt);
297
298 p = buf;
299 if (*p == '+' || *p == '-') {
300 sig = *buf;
301 p++;
302 }
303
304 rc = parse_size(p, &num, &pwr);
305 if (rc)
306 continue;
307 DBG(ASK, ul_debug("parsed size: %ju", num));
308 if (sig && pwr) {
309 /* +{size}{K,M,...} specified, the "num" is in bytes */
310 uint64_t unit = fdisk_ask_number_get_unit(ask);
311 num += unit/2; /* round */
312 num /= unit;
313 }
314 if (sig == '+')
315 num += base;
316 else if (sig == '-')
317 num = base - num;
318
319 DBG(ASK, ul_debug("final offset: %ju [sig: %c, power: %d, %s]",
320 num, sig, pwr,
321 sig ? "relative" : "absolute"));
322 if (num >= low && num <= high) {
323 if (sig && pwr)
324 fdisk_ask_number_set_relative(ask, 1);
325 return fdisk_ask_number_set_result(ask, (uint64_t)num);
326 }
327 fdisk_warnx(cxt, _("Value out of range."));
328 } while (1);
329
330 return -1;
331 }
332
333 static unsigned int info_count;
334
335 static void fputs_info(struct fdisk_ask *ask, FILE *out)
336 {
337 const char *msg;
338 assert(ask);
339
340 msg = fdisk_ask_print_get_mesg(ask);
341 if (!msg)
342 return;
343 if (info_count == 1)
344 fputc('\n', out);
345
346 fputs(msg, out);
347 fputc('\n', out);
348 }
349
350 int ask_callback(struct fdisk_context *cxt, struct fdisk_ask *ask,
351 void *data __attribute__((__unused__)))
352 {
353 int rc = 0;
354 char buf[BUFSIZ];
355
356 assert(cxt);
357 assert(ask);
358
359 if (fdisk_ask_get_type(ask) != FDISK_ASKTYPE_INFO)
360 info_count = 0;
361
362 switch(fdisk_ask_get_type(ask)) {
363 case FDISK_ASKTYPE_MENU:
364 return ask_menu(cxt, ask, buf, sizeof(buf));
365 case FDISK_ASKTYPE_NUMBER:
366 return ask_number(cxt, ask, buf, sizeof(buf));
367 case FDISK_ASKTYPE_OFFSET:
368 return ask_offset(cxt, ask, buf, sizeof(buf));
369 case FDISK_ASKTYPE_INFO:
370 if (!fdisk_is_listonly(cxt))
371 info_count++;
372 fputs_info(ask, stdout);
373 break;
374 case FDISK_ASKTYPE_WARNX:
375 fflush(stdout);
376 color_scheme_fenable("warn", UL_COLOR_RED, stderr);
377 fputs(fdisk_ask_print_get_mesg(ask), stderr);
378 color_fdisable(stderr);
379 fputc('\n', stderr);
380 break;
381 case FDISK_ASKTYPE_WARN:
382 fflush(stdout);
383 color_scheme_fenable("warn", UL_COLOR_RED, stderr);
384 fputs(fdisk_ask_print_get_mesg(ask), stderr);
385 errno = fdisk_ask_print_get_errno(ask);
386 fprintf(stderr, ": %m\n");
387 color_fdisable(stderr);
388 break;
389 case FDISK_ASKTYPE_YESNO:
390 fputc('\n', stdout);
391 do {
392 int x;
393 fputs(fdisk_ask_get_query(ask), stdout);
394 rc = get_user_reply(cxt, _(" [Y]es/[N]o: "), buf, sizeof(buf));
395 if (rc)
396 break;
397 x = rpmatch(buf);
398 if (x == RPMATCH_YES || x == RPMATCH_NO) {
399 fdisk_ask_yesno_set_result(ask, x);
400 break;
401 }
402 } while(1);
403 DBG(ASK, ul_debug("yes-no ask: reply '%s' [rc=%d]", buf, rc));
404 break;
405 case FDISK_ASKTYPE_STRING:
406 {
407 char prmt[BUFSIZ];
408 snprintf(prmt, sizeof(prmt), "%s: ", fdisk_ask_get_query(ask));
409 fputc('\n', stdout);
410 rc = get_user_reply(cxt, prmt, buf, sizeof(buf));
411 if (rc == 0)
412 fdisk_ask_string_set_result(ask, xstrdup(buf));
413 DBG(ASK, ul_debug("string ask: reply '%s' [rc=%d]", buf, rc));
414 break;
415 }
416 default:
417 warnx(_("internal error: unsupported dialog type %d"), fdisk_ask_get_type(ask));
418 return -EINVAL;
419 }
420 return rc;
421 }
422
423 static struct fdisk_parttype *ask_partition_type(struct fdisk_context *cxt)
424 {
425 const char *q;
426 struct fdisk_label *lb;
427
428 assert(cxt);
429 lb = fdisk_get_label(cxt, NULL);
430
431 if (!lb)
432 return NULL;
433
434 q = fdisk_label_has_code_parttypes(lb) ?
435 _("Partition type (type L to list all types): ") :
436 _("Hex code (type L to list all codes): ");
437 do {
438 char buf[256];
439 int rc = get_user_reply(cxt, q, buf, sizeof(buf));
440
441 if (rc)
442 break;
443
444 if (buf[1] == '\0' && toupper(*buf) == 'L')
445 list_partition_types(cxt);
446 else if (*buf)
447 return fdisk_label_parse_parttype(lb, buf);
448 } while (1);
449
450 return NULL;
451 }
452
453
454 void list_partition_types(struct fdisk_context *cxt)
455 {
456 size_t ntypes = 0;
457 struct fdisk_label *lb;
458
459 assert(cxt);
460 lb = fdisk_get_label(cxt, NULL);
461 if (!lb)
462 return;
463 ntypes = fdisk_label_get_nparttypes(lb);
464 if (!ntypes)
465 return;
466
467 if (fdisk_label_has_code_parttypes(lb)) {
468 /*
469 * Prints in 4 columns in format <hex> <name>
470 */
471 size_t last[4], done = 0, next = 0, size;
472 int i;
473
474 size = ntypes;
475
476 for (i = 3; i >= 0; i--)
477 last[3 - i] = done += (size + i - done) / (i + 1);
478 i = done = 0;
479
480 do {
481 #define NAME_WIDTH 15
482 char name[NAME_WIDTH * MB_LEN_MAX];
483 size_t width = NAME_WIDTH;
484 const struct fdisk_parttype *t = fdisk_label_get_parttype(lb, next);
485 size_t ret;
486
487 if (fdisk_parttype_get_name(t)) {
488 printf("%c%2x ", i ? ' ' : '\n',
489 fdisk_parttype_get_code(t));
490 ret = mbsalign(_(fdisk_parttype_get_name(t)),
491 name, sizeof(name),
492 &width, MBS_ALIGN_LEFT, 0);
493
494 if (ret == (size_t)-1 || ret >= sizeof(name))
495 printf("%-15.15s",
496 _(fdisk_parttype_get_name(t)));
497 else
498 fputs(name, stdout);
499 }
500
501 next = last[i++] + done;
502 if (i > 3 || next >= last[i]) {
503 i = 0;
504 next = ++done;
505 }
506 } while (done < last[0]);
507
508 } else {
509 /*
510 * Prints 1 column in format <idx> <name> <typestr>
511 */
512 size_t i;
513
514 pager_open();
515
516 for (i = 0; i < ntypes; i++) {
517 const struct fdisk_parttype *t = fdisk_label_get_parttype(lb, i);
518 printf("%3zu %-30s %s\n", i + 1,
519 fdisk_parttype_get_name(t),
520 fdisk_parttype_get_string(t));
521 }
522
523 pager_close();
524 }
525 putchar('\n');
526 }
527
528 void toggle_dos_compatibility_flag(struct fdisk_context *cxt)
529 {
530 struct fdisk_label *lb = fdisk_get_label(cxt, "dos");
531 int flag;
532
533 if (!lb)
534 return;
535
536 flag = !fdisk_dos_is_compatible(lb);
537 fdisk_info(cxt, flag ?
538 _("DOS Compatibility flag is set (DEPRECATED!)") :
539 _("DOS Compatibility flag is not set"));
540
541 fdisk_dos_enable_compatible(lb, flag);
542
543 if (fdisk_is_label(cxt, DOS))
544 fdisk_reset_alignment(cxt); /* reset the current label */
545 }
546
547 void change_partition_type(struct fdisk_context *cxt)
548 {
549 size_t i;
550 struct fdisk_parttype *t = NULL;
551 struct fdisk_partition *pa = NULL;
552 const char *old = NULL;
553
554 assert(cxt);
555
556 if (fdisk_ask_partnum(cxt, &i, FALSE))
557 return;
558
559 if (fdisk_get_partition(cxt, i, &pa)) {
560 fdisk_warnx(cxt, _("Partition %zu does not exist yet!"), i + 1);
561 return;
562 }
563
564 t = (struct fdisk_parttype *) fdisk_partition_get_type(pa);
565 old = t ? fdisk_parttype_get_name(t) : _("Unknown");
566
567 do {
568 t = ask_partition_type(cxt);
569 } while (!t);
570
571 if (fdisk_set_partition_type(cxt, i, t) == 0)
572 fdisk_info(cxt,
573 _("Changed type of partition '%s' to '%s'."),
574 old, t ? fdisk_parttype_get_name(t) : _("Unknown"));
575 else
576 fdisk_info(cxt,
577 _("Type of partition %zu is unchanged: %s."),
578 i + 1, old);
579
580 fdisk_unref_partition(pa);
581 fdisk_unref_parttype(t);
582 }
583
584 int print_partition_info(struct fdisk_context *cxt)
585 {
586 struct fdisk_partition *pa = NULL;
587 int rc = 0;
588 size_t i, nfields;
589 int *fields = NULL;
590 struct fdisk_label *lb = fdisk_get_label(cxt, NULL);
591
592 if ((rc = fdisk_ask_partnum(cxt, &i, FALSE)))
593 return rc;
594
595 if ((rc = fdisk_get_partition(cxt, i, &pa))) {
596 fdisk_warnx(cxt, _("Partition %zu does not exist yet!"), i + 1);
597 return rc;
598 }
599
600 if ((rc = fdisk_label_get_fields_ids_all(lb, cxt, &fields, &nfields)))
601 goto clean_data;
602
603 for (i = 0; i < nfields; ++i) {
604 int id = fields[i];
605 char *data = NULL;
606 const struct fdisk_field *fd = fdisk_label_get_field(lb, id);
607
608 if (!fd)
609 continue;
610
611 rc = fdisk_partition_to_string(pa, cxt, id, &data);
612 if (rc < 0)
613 goto clean_data;
614 if (!data || !*data)
615 continue;
616 fdisk_info(cxt, _("%15s: %s"), fdisk_field_get_name(fd), data);
617 free(data);
618 }
619
620 clean_data:
621 fdisk_unref_partition(pa);
622 free(fields);
623 return rc;
624 }
625
626 static size_t skip_empty(const unsigned char *buf, size_t i, size_t sz)
627 {
628 size_t next;
629 const unsigned char *p0 = buf + i;
630
631 for (next = i + 16; next < sz; next += 16) {
632 if (memcmp(p0, buf + next, 16) != 0)
633 break;
634 }
635
636 return next == i + 16 ? i : next;
637 }
638
639 static void dump_buffer(off_t base, unsigned char *buf, size_t sz, int all)
640 {
641 size_t i, l, next = 0;
642
643 if (!buf)
644 return;
645 for (i = 0, l = 0; i < sz; i++, l++) {
646 if (l == 0) {
647 if (all == 0 && !next)
648 next = skip_empty(buf, i, sz);
649 printf("%08jx ", (intmax_t)base + i);
650 }
651 printf(" %02x", buf[i]);
652 if (l == 7) /* words separator */
653 fputs(" ", stdout);
654 else if (l == 15) {
655 fputc('\n', stdout); /* next line */
656 l = -1;
657 if (next > i) {
658 printf("*\n");
659 i = next - 1;
660 }
661 next = 0;
662 }
663 }
664 if (l > 0)
665 printf("\n");
666 }
667
668 static void dump_blkdev(struct fdisk_context *cxt, const char *name,
669 uint64_t offset, size_t size, int all)
670 {
671 int fd = fdisk_get_devfd(cxt);
672
673 fdisk_info(cxt, _("\n%s: offset = %"PRIu64", size = %zu bytes."),
674 name, offset, size);
675
676 assert(fd >= 0);
677
678 if (lseek(fd, (off_t) offset, SEEK_SET) == (off_t) -1)
679 fdisk_warn(cxt, _("cannot seek"));
680 else {
681 unsigned char *buf = xmalloc(size);
682
683 if (read_all(fd, (char *) buf, size) != (ssize_t) size)
684 fdisk_warn(cxt, _("cannot read"));
685 else
686 dump_buffer(offset, buf, size, all);
687 free(buf);
688 }
689 }
690
691 void dump_firstsector(struct fdisk_context *cxt)
692 {
693 int all = !isatty(STDOUT_FILENO);
694
695 assert(cxt);
696
697 dump_blkdev(cxt, _("First sector"), 0, fdisk_get_sector_size(cxt), all);
698 }
699
700 void dump_disklabel(struct fdisk_context *cxt)
701 {
702 int all = !isatty(STDOUT_FILENO);
703 int i = 0;
704 const char *name = NULL;
705 uint64_t offset = 0;
706 size_t size = 0;
707
708 assert(cxt);
709
710 while (fdisk_locate_disklabel(cxt, i++, &name, &offset, &size) == 0 && size)
711 dump_blkdev(cxt, name, offset, size, all);
712 }
713
714 static fdisk_sector_t get_dev_blocks(char *dev)
715 {
716 int fd, ret;
717 fdisk_sector_t size;
718
719 if ((fd = open(dev, O_RDONLY)) < 0)
720 err(EXIT_FAILURE, _("cannot open %s"), dev);
721 ret = blkdev_get_sectors(fd, (unsigned long long *) &size);
722 close(fd);
723 if (ret < 0)
724 err(EXIT_FAILURE, _("BLKGETSIZE ioctl failed on %s"), dev);
725 return size/2;
726 }
727
728
729 void follow_wipe_mode(struct fdisk_context *cxt)
730 {
731 int dowipe = wipemode == WIPEMODE_ALWAYS ? 1 : 0;
732
733 if (isatty(STDIN_FILENO) && wipemode == WIPEMODE_AUTO)
734 dowipe = 1; /* do it in interactive mode */
735
736 if (fdisk_is_ptcollision(cxt) && wipemode != WIPEMODE_NEVER)
737 dowipe = 1; /* always remove old PT */
738
739 fdisk_enable_wipe(cxt, dowipe);
740 if (dowipe)
741 fdisk_warnx(cxt, _(
742 "The old %s signature will be removed by a write command."),
743 fdisk_get_collision(cxt));
744 else
745 fdisk_warnx(cxt, _(
746 "The old %s signature may remain on the device. "
747 "It is recommended to wipe the device with wipefs(8) or "
748 "fdisk --wipe, in order to avoid possible collisions."),
749 fdisk_get_collision(cxt));
750 }
751
752 static void __attribute__ ((__noreturn__)) usage(FILE *out)
753 {
754 fputs(USAGE_HEADER, out);
755
756 fprintf(out,
757 _(" %1$s [options] <disk> change partition table\n"
758 " %1$s [options] -l [<disk>] list partition table(s)\n"),
759 program_invocation_short_name);
760
761 fputs(USAGE_SEPARATOR, out);
762 fputs(_("Display or manipulate a disk partition table.\n"), out);
763
764 fputs(USAGE_OPTIONS, out);
765 fputs(_(" -b, --sector-size <size> physical and logical sector size\n"), out);
766 fputs(_(" -B, --protect-boot don't erase bootbits when creating a new label\n"), out);
767 fputs(_(" -c, --compatibility[=<mode>] mode is 'dos' or 'nondos' (default)\n"), out);
768 fputs(_(" -L, --color[=<when>] colorize output (auto, always or never)\n"), out);
769 fprintf(out,
770 " %s\n", USAGE_COLORS_DEFAULT);
771 fputs(_(" -l, --list display partitions and exit\n"), out);
772 fputs(_(" -o, --output <list> output columns\n"), out);
773 fputs(_(" -t, --type <type> recognize specified partition table type only\n"), out);
774 fputs(_(" -u, --units[=<unit>] display units: 'cylinders' or 'sectors' (default)\n"), out);
775 fputs(_(" -s, --getsz display device size in 512-byte sectors [DEPRECATED]\n"), out);
776 fputs(_(" --bytes print SIZE in bytes rather than in human readable format\n"), out);
777 fputs(_(" -w, --wipe <mode> wipe signatures (auto, always or never)\n"), out);
778 fputs(_(" -W, --wipe-partitions <mode> wipe signatures from new partitions (auto, always or never)\n"), out);
779
780 fputs(USAGE_SEPARATOR, out);
781 fputs(_(" -C, --cylinders <number> specify the number of cylinders\n"), out);
782 fputs(_(" -H, --heads <number> specify the number of heads\n"), out);
783 fputs(_(" -S, --sectors <number> specify the number of sectors per track\n"), out);
784
785 fputs(USAGE_SEPARATOR, out);
786 fputs(USAGE_HELP, out);
787 fputs(USAGE_VERSION, out);
788
789 list_available_columns(out);
790
791 fprintf(out, USAGE_MAN_TAIL("fdisk(8)"));
792 exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
793 }
794
795
796 enum {
797 ACT_FDISK = 0, /* default */
798 ACT_LIST,
799 ACT_SHOWSIZE
800 };
801
802 int main(int argc, char **argv)
803 {
804 int rc, i, c, act = ACT_FDISK;
805 int colormode = UL_COLORMODE_UNDEF;
806 struct fdisk_context *cxt;
807 char *outarg = NULL;
808 enum {
809 OPT_BYTES = CHAR_MAX + 1
810 };
811 static const struct option longopts[] = {
812 { "bytes", no_argument, NULL, OPT_BYTES },
813 { "color", optional_argument, NULL, 'L' },
814 { "compatibility", optional_argument, NULL, 'c' },
815 { "cylinders", required_argument, NULL, 'C' },
816 { "heads", required_argument, NULL, 'H' },
817 { "sectors", required_argument, NULL, 'S' },
818 { "getsz", no_argument, NULL, 's' },
819 { "help", no_argument, NULL, 'h' },
820 { "list", no_argument, NULL, 'l' },
821 { "sector-size", required_argument, NULL, 'b' },
822 { "type", required_argument, NULL, 't' },
823 { "units", optional_argument, NULL, 'u' },
824 { "version", no_argument, NULL, 'V' },
825 { "output", no_argument, NULL, 'o' },
826 { "protect-boot", no_argument, NULL, 'B' },
827 { "wipe", required_argument, NULL, 'w' },
828 { "wipe-partitions",required_argument, NULL, 'W' },
829 { NULL, 0, NULL, 0 }
830 };
831
832 setlocale(LC_ALL, "");
833 bindtextdomain(PACKAGE, LOCALEDIR);
834 textdomain(PACKAGE);
835 atexit(close_stdout);
836
837 fdisk_init_debug(0);
838 scols_init_debug(0);
839 fdiskprog_init_debug();
840
841 cxt = fdisk_new_context();
842 if (!cxt)
843 err(EXIT_FAILURE, _("failed to allocate libfdisk context"));
844
845 fdisk_set_ask(cxt, ask_callback, NULL);
846
847 while ((c = getopt_long(argc, argv, "b:Bc::C:hH:lL::o:sS:t:u::vVw:W:",
848 longopts, NULL)) != -1) {
849 switch (c) {
850 case 'b':
851 {
852 size_t sz = strtou32_or_err(optarg,
853 _("invalid sector size argument"));
854 if (sz != 512 && sz != 1024 && sz != 2048 && sz != 4096)
855 usage(stderr);
856 fdisk_save_user_sector_size(cxt, sz, sz);
857 break;
858 }
859 case 'B':
860 fdisk_enable_bootbits_protection(cxt, 1);
861 break;
862 case 'C':
863 fdisk_save_user_geometry(cxt,
864 strtou32_or_err(optarg,
865 _("invalid cylinders argument")),
866 0, 0);
867 break;
868 case 'c':
869 if (optarg) {
870 /* this setting is independent on the current
871 * actively used label
872 */
873 char *p = *optarg == '=' ? optarg + 1 : optarg;
874 struct fdisk_label *lb = fdisk_get_label(cxt, "dos");
875
876 if (!lb)
877 err(EXIT_FAILURE, _("not found DOS label driver"));
878 if (strcmp(p, "dos") == 0)
879 fdisk_dos_enable_compatible(lb, TRUE);
880 else if (strcmp(p, "nondos") == 0)
881 fdisk_dos_enable_compatible(lb, FALSE);
882 else {
883 warnx(_("unknown compatibility mode '%s'"), p);
884 usage(stderr);
885 }
886 }
887 /* use default if no optarg specified */
888 break;
889 case 'H':
890 fdisk_save_user_geometry(cxt, 0,
891 strtou32_or_err(optarg,
892 _("invalid heads argument")),
893 0);
894 break;
895 case 'S':
896 fdisk_save_user_geometry(cxt, 0, 0,
897 strtou32_or_err(optarg,
898 _("invalid sectors argument")));
899 break;
900 case 'l':
901 act = ACT_LIST;
902 break;
903 case 'L':
904 colormode = UL_COLORMODE_AUTO;
905 if (optarg)
906 colormode = colormode_or_err(optarg,
907 _("unsupported color mode"));
908 break;
909 case 'o':
910 outarg = optarg;
911 break;
912 case 's':
913 act = ACT_SHOWSIZE;
914 break;
915 case 't':
916 {
917 struct fdisk_label *lb = NULL;
918
919 while (fdisk_next_label(cxt, &lb) == 0)
920 fdisk_label_set_disabled(lb, 1);
921
922 lb = fdisk_get_label(cxt, optarg);
923 if (!lb)
924 errx(EXIT_FAILURE, _("unsupported disklabel: %s"), optarg);
925 fdisk_label_set_disabled(lb, 0);
926 break;
927 }
928 case 'u':
929 if (optarg && *optarg == '=')
930 optarg++;
931 if (fdisk_set_unit(cxt, optarg) != 0)
932 usage(stderr);
933 break;
934 case 'V': /* preferred for util-linux */
935 case 'v': /* for backward compatibility only */
936 printf(UTIL_LINUX_VERSION);
937 return EXIT_SUCCESS;
938 case 'w':
939 wipemode = wipemode_from_string(optarg);
940 if (wipemode < 0)
941 errx(EXIT_FAILURE, _("unsupported wipe mode"));
942 break;
943 case 'W':
944 pwipemode = wipemode_from_string(optarg);
945 if (pwipemode < 0)
946 errx(EXIT_FAILURE, _("unsupported wipe mode"));
947 break;
948 case 'h':
949 usage(stdout);
950 case OPT_BYTES:
951 fdisk_set_size_unit(cxt, FDISK_SIZEUNIT_BYTES);
952 break;
953 default:
954 errtryhelp(EXIT_FAILURE);
955 }
956 }
957
958 if (argc-optind != 1 && fdisk_has_user_device_properties(cxt))
959 warnx(_("The device properties (sector size and geometry) should"
960 " be used with one specified device only."));
961
962 colors_init(colormode, "fdisk");
963
964 switch (act) {
965 case ACT_LIST:
966 fdisk_enable_listonly(cxt, 1);
967 init_fields(cxt, outarg, NULL);
968
969 if (argc > optind) {
970 int k;
971 int ct = 0;
972
973 for (rc = 0, k = optind; k < argc; k++) {
974 if (ct)
975 fputs("\n\n", stdout);
976
977 rc += print_device_pt(cxt, argv[k], 1, 0);
978 ct++;
979 }
980 if (rc)
981 return EXIT_FAILURE;
982 } else
983 print_all_devices_pt(cxt, 0);
984 break;
985
986 case ACT_SHOWSIZE:
987 /* deprecated */
988 if (argc - optind <= 0)
989 usage(stderr);
990
991 for (i = optind; i < argc; i++) {
992 uintmax_t blks = get_dev_blocks(argv[i]);
993
994 if (argc - optind == 1)
995 printf("%ju\n", blks);
996 else
997 printf("%s: %ju\n", argv[i], blks);
998 }
999 break;
1000
1001 case ACT_FDISK:
1002 if (argc-optind != 1)
1003 usage(stderr);
1004
1005 /* Here starts interactive mode, use fdisk_{warn,info,..} functions */
1006 color_scheme_enable("welcome", UL_COLOR_GREEN);
1007 fdisk_info(cxt, _("Welcome to fdisk (%s)."), PACKAGE_STRING);
1008 color_disable();
1009 fdisk_info(cxt, _("Changes will remain in memory only, until you decide to write them.\n"
1010 "Be careful before using the write command.\n"));
1011
1012 rc = fdisk_assign_device(cxt, argv[optind], 0);
1013 if (rc == -EACCES) {
1014 rc = fdisk_assign_device(cxt, argv[optind], 1);
1015 if (rc == 0)
1016 fdisk_warnx(cxt, _("Device is open in read-only mode."));
1017 }
1018 if (rc)
1019 err(EXIT_FAILURE, _("cannot open %s"), argv[optind]);
1020
1021 fflush(stdout);
1022
1023 if (fdisk_get_collision(cxt))
1024 follow_wipe_mode(cxt);
1025
1026 if (!fdisk_has_label(cxt)) {
1027 fdisk_info(cxt, _("Device does not contain a recognized partition table."));
1028 fdisk_create_disklabel(cxt, NULL);
1029
1030 } else if (fdisk_is_label(cxt, GPT) && fdisk_gpt_is_hybrid(cxt))
1031 fdisk_warnx(cxt, _(
1032 "A hybrid GPT was detected. You have to sync "
1033 "the hybrid MBR manually (expert command 'M')."));
1034
1035 init_fields(cxt, outarg, NULL); /* -o <columns> */
1036
1037 while (1)
1038 process_fdisk_menu(&cxt);
1039 }
1040
1041 fdisk_unref_context(cxt);
1042 return EXIT_SUCCESS;
1043 }