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