]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/fdisk.c
build-sys: add UL_REQUIRES_PROGRAM() macro, use it for asciidoc
[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;
006607ab
KZ
483
484 if (fdisk_label_has_parttypes_shortcuts(lb))
485 q = fdisk_label_has_code_parttypes(lb) ?
486 _("Hex code or alias (type L to list all): ") :
487 _("Partition type or alias (type L to list all): ");
488 else
489 q = fdisk_label_has_code_parttypes(lb) ?
490 _("Hex code (type L to list all codes): ") :
491 _("Partition type (type L to list all types): ");
d6b3ba41 492 do {
89770db4 493 char buf[256] = { '\0' };
c1154128 494 int rc = get_user_reply(q, buf, sizeof(buf));
d6b3ba41 495
19e4cfef
KZ
496 if (rc) {
497 if (rc == -ECANCELED)
498 *canceled = 1;
d6b3ba41 499 break;
19e4cfef 500 }
d6b3ba41
KZ
501
502 if (buf[1] == '\0' && toupper(*buf) == 'L')
503 list_partition_types(cxt);
e6effcac 504 else if (*buf) {
006607ab
KZ
505 struct fdisk_parttype *t = fdisk_label_advparse_parttype(lb, buf,
506 FDISK_PARTTYPE_PARSE_DATA
507 | FDISK_PARTTYPE_PARSE_ALIAS
8d720dbe 508 | FDISK_PARTTYPE_PARSE_NAME
006607ab 509 | FDISK_PARTTYPE_PARSE_SEQNUM);
e6effcac
KZ
510 if (!t)
511 fdisk_info(cxt, _("Failed to parse '%s' partition type."), buf);
512 return t;
513 }
d6b3ba41
KZ
514 } while (1);
515
516 return NULL;
517}
518
8d2f4498 519
7b575fcc 520void list_partition_types(struct fdisk_context *cxt)
6dbe3af9 521{
006607ab 522 size_t ntypes = 0, next = 0;
f45f5c83 523 struct fdisk_label *lb;
006607ab 524 int pager = 0;
6dbe3af9 525
a745611d
KZ
526 assert(cxt);
527 lb = fdisk_get_label(cxt, NULL);
528 if (!lb)
529 return;
530 ntypes = fdisk_label_get_nparttypes(lb);
531 if (!ntypes)
7b575fcc 532 return;
2b6fc908 533
a745611d 534 if (fdisk_label_has_code_parttypes(lb)) {
7b575fcc
KZ
535 /*
536 * Prints in 4 columns in format <hex> <name>
537 */
006607ab 538 size_t last[4], done = 0, size;
76f17cf2 539 int i;
b8d22034 540
76f17cf2 541 size = ntypes;
7b575fcc
KZ
542
543 for (i = 3; i >= 0; i--)
544 last[3 - i] = done += (size + i - done) / (i + 1);
545 i = done = 0;
546
547 do {
548 #define NAME_WIDTH 15
549 char name[NAME_WIDTH * MB_LEN_MAX];
550 size_t width = NAME_WIDTH;
a745611d 551 const struct fdisk_parttype *t = fdisk_label_get_parttype(lb, next);
7b575fcc
KZ
552 size_t ret;
553
e6d0c4c1 554 if (fdisk_parttype_get_name(t)) {
5d271cef 555 printf("%s%02x ", i ? " " : "\n",
a745611d
KZ
556 fdisk_parttype_get_code(t));
557 ret = mbsalign(_(fdisk_parttype_get_name(t)),
558 name, sizeof(name),
559 &width, MBS_ALIGN_LEFT, 0);
7b575fcc 560
76f17cf2 561 if (ret == (size_t)-1 || ret >= sizeof(name))
a745611d
KZ
562 printf("%-15.15s",
563 _(fdisk_parttype_get_name(t)));
76f17cf2
KZ
564 else
565 fputs(name, stdout);
566 }
7b575fcc
KZ
567
568 next = last[i++] + done;
569 if (i > 3 || next >= last[i]) {
570 i = 0;
571 next = ++done;
572 }
573 } while (done < last[0]);
574
006607ab 575 putchar('\n');
7b575fcc
KZ
576 } else {
577 /*
578 * Prints 1 column in format <idx> <name> <typestr>
579 */
76f17cf2 580 size_t i;
7b575fcc 581
8d2f4498 582 pager_open();
006607ab 583 pager = 1;
8d2f4498 584
a745611d
KZ
585 for (i = 0; i < ntypes; i++) {
586 const struct fdisk_parttype *t = fdisk_label_get_parttype(lb, i);
587 printf("%3zu %-30s %s\n", i + 1,
588 fdisk_parttype_get_name(t),
589 fdisk_parttype_get_string(t));
76f17cf2 590 }
8d2f4498 591
7b575fcc 592 }
006607ab
KZ
593
594
595 /*
596 * Aliases
597 */
598 if (fdisk_label_has_parttypes_shortcuts(lb)) {
599 const char *alias = NULL, *typestr = NULL;
600 int rc = 0;
601
602 fputs(_("\nAliases:\n"), stdout);
603
604 for (next = 0; rc == 0 || rc == 2; next++) {
605 /* rc: <0 error, 0 success, 1 end, 2 deprecated */
606 rc = fdisk_label_get_parttype_shortcut(lb,
607 next, &typestr, NULL, &alias);
608 if (rc == 0)
609 printf(" %-14s - %s\n", alias, typestr);
610 }
611 }
612
613 if (pager)
614 pager_close();
615
6dbe3af9
KZ
616}
617
f02fecd1 618void toggle_dos_compatibility_flag(struct fdisk_context *cxt)
852ce62b 619{
6a632136 620 struct fdisk_label *lb = fdisk_get_label(cxt, "dos");
852ce62b
KZ
621 int flag;
622
623 if (!lb)
624 return;
625
626 flag = !fdisk_dos_is_compatible(lb);
09f0c3d9
KZ
627 fdisk_info(cxt, flag ?
628 _("DOS Compatibility flag is set (DEPRECATED!)") :
629 _("DOS Compatibility flag is not set"));
edd7b958 630
852ce62b
KZ
631 fdisk_dos_enable_compatible(lb, flag);
632
aa36c2cf 633 if (fdisk_is_label(cxt, DOS))
09f0c3d9 634 fdisk_reset_alignment(cxt); /* reset the current label */
6dbe3af9
KZ
635}
636
27ddd4f1 637void change_partition_type(struct fdisk_context *cxt)
e53ced85 638{
641a75ca 639 size_t i;
85151521
KZ
640 struct fdisk_parttype *t = NULL;
641 struct fdisk_partition *pa = NULL;
642 const char *old = NULL;
19e4cfef 643 int canceled = 0;
6dbe3af9 644
e3661531 645 assert(cxt);
e3661531 646
641a75ca 647 if (fdisk_ask_partnum(cxt, &i, FALSE))
24f4bbff 648 return;
2b6fc908 649
85151521
KZ
650 if (fdisk_get_partition(cxt, i, &pa)) {
651 fdisk_warnx(cxt, _("Partition %zu does not exist yet!"), i + 1);
652 return;
653 }
654
655 t = (struct fdisk_parttype *) fdisk_partition_get_type(pa);
e6d0c4c1 656 old = t ? fdisk_parttype_get_name(t) : _("Unknown");
85151521
KZ
657
658 do {
19e4cfef
KZ
659 t = ask_partition_type(cxt, &canceled);
660 if (canceled)
661 break;
85151521
KZ
662 } while (!t);
663
e6effcac 664 if (canceled == 0 && t && fdisk_set_partition_type(cxt, i, t) == 0)
0477369a 665 fdisk_info(cxt,
85151521 666 _("Changed type of partition '%s' to '%s'."),
a745611d 667 old, t ? fdisk_parttype_get_name(t) : _("Unknown"));
85151521
KZ
668 else
669 fdisk_info(cxt,
670 _("Type of partition %zu is unchanged: %s."),
671 i + 1, old);
672
d6cfa8b3 673 fdisk_unref_partition(pa);
4bd02cdf 674 fdisk_unref_parttype(t);
6dbe3af9
KZ
675}
676
3e3b51b3
JLB
677int print_partition_info(struct fdisk_context *cxt)
678{
679 struct fdisk_partition *pa = NULL;
6360bcca 680 int rc = 0;
3e3b51b3
JLB
681 size_t i, nfields;
682 int *fields = NULL;
683 struct fdisk_label *lb = fdisk_get_label(cxt, NULL);
684
685 if ((rc = fdisk_ask_partnum(cxt, &i, FALSE)))
686 return rc;
687
688 if ((rc = fdisk_get_partition(cxt, i, &pa))) {
689 fdisk_warnx(cxt, _("Partition %zu does not exist yet!"), i + 1);
690 return rc;
691 }
692
6360bcca 693 if ((rc = fdisk_label_get_fields_ids_all(lb, cxt, &fields, &nfields)))
3e3b51b3 694 goto clean_data;
3e3b51b3
JLB
695
696 for (i = 0; i < nfields; ++i) {
697 int id = fields[i];
698 char *data = NULL;
699 const struct fdisk_field *fd = fdisk_label_get_field(lb, id);
700
701 if (!fd)
702 continue;
703
704 rc = fdisk_partition_to_string(pa, cxt, id, &data);
705 if (rc < 0)
706 goto clean_data;
6360bcca
KZ
707 if (!data || !*data)
708 continue;
14056588 709 fdisk_info(cxt, "%15s: %s", fdisk_field_get_name(fd), data);
3e3b51b3
JLB
710 free(data);
711 }
712
713clean_data:
714 fdisk_unref_partition(pa);
715 free(fields);
716 return rc;
717}
718
e916600f
KZ
719static size_t skip_empty(const unsigned char *buf, size_t i, size_t sz)
720{
721 size_t next;
722 const unsigned char *p0 = buf + i;
723
724 for (next = i + 16; next < sz; next += 16) {
725 if (memcmp(p0, buf + next, 16) != 0)
726 break;
727 }
728
729 return next == i + 16 ? i : next;
730}
6dbe3af9 731
e916600f 732static void dump_buffer(off_t base, unsigned char *buf, size_t sz, int all)
09f0c3d9 733{
e916600f
KZ
734 size_t i, l, next = 0;
735
736 if (!buf)
737 return;
738 for (i = 0, l = 0; i < sz; i++, l++) {
739 if (l == 0) {
740 if (all == 0 && !next)
741 next = skip_empty(buf, i, sz);
fdbd7bb9 742 printf("%08jx ", (intmax_t)base + i);
e916600f
KZ
743 }
744 printf(" %02x", buf[i]);
745 if (l == 7) /* words separator */
746 fputs(" ", stdout);
747 else if (l == 15) {
748 fputc('\n', stdout); /* next line */
6dbe3af9 749 l = -1;
e916600f
KZ
750 if (next > i) {
751 printf("*\n");
752 i = next - 1;
753 }
754 next = 0;
6dbe3af9
KZ
755 }
756 }
757 if (l > 0)
758 printf("\n");
6dbe3af9
KZ
759}
760
e916600f 761static void dump_blkdev(struct fdisk_context *cxt, const char *name,
9bbcf43f 762 uint64_t offset, size_t size, int all)
e53ced85 763{
8eccde20
KZ
764 int fd = fdisk_get_devfd(cxt);
765
fdbd7bb9 766 fdisk_info(cxt, _("\n%s: offset = %"PRIu64", size = %zu bytes."),
e916600f
KZ
767 name, offset, size);
768
8eccde20
KZ
769 assert(fd >= 0);
770
9bbcf43f 771 if (lseek(fd, (off_t) offset, SEEK_SET) == (off_t) -1)
e916600f 772 fdisk_warn(cxt, _("cannot seek"));
5afed187
KZ
773 else {
774 unsigned char *buf = xmalloc(size);
775
8eccde20 776 if (read_all(fd, (char *) buf, size) != (ssize_t) size)
5afed187
KZ
777 fdisk_warn(cxt, _("cannot read"));
778 else
779 dump_buffer(offset, buf, size, all);
780 free(buf);
781 }
e916600f
KZ
782}
783
784void dump_firstsector(struct fdisk_context *cxt)
785{
786 int all = !isatty(STDOUT_FILENO);
787
e3661531 788 assert(cxt);
6dbe3af9 789
8eccde20 790 dump_blkdev(cxt, _("First sector"), 0, fdisk_get_sector_size(cxt), all);
e916600f
KZ
791}
792
793void dump_disklabel(struct fdisk_context *cxt)
794{
795 int all = !isatty(STDOUT_FILENO);
796 int i = 0;
797 const char *name = NULL;
9bbcf43f 798 uint64_t offset = 0;
e916600f
KZ
799 size_t size = 0;
800
801 assert(cxt);
e3661531 802
e916600f
KZ
803 while (fdisk_locate_disklabel(cxt, i++, &name, &offset, &size) == 0 && size)
804 dump_blkdev(cxt, name, offset, size, all);
6dbe3af9
KZ
805}
806
0073a4cf 807static fdisk_sector_t get_dev_blocks(char *dev)
6da365de 808{
bbe67996 809 int fd, ret;
0073a4cf 810 fdisk_sector_t size;
6da365de
DB
811
812 if ((fd = open(dev, O_RDONLY)) < 0)
289dcc90 813 err(EXIT_FAILURE, _("cannot open %s"), dev);
0073a4cf 814 ret = blkdev_get_sectors(fd, (unsigned long long *) &size);
6da365de 815 close(fd);
bbe67996
SK
816 if (ret < 0)
817 err(EXIT_FAILURE, _("BLKGETSIZE ioctl failed on %s"), dev);
6da365de
DB
818 return size/2;
819}
820
5635d195
KZ
821
822void follow_wipe_mode(struct fdisk_context *cxt)
823{
824 int dowipe = wipemode == WIPEMODE_ALWAYS ? 1 : 0;
825
826 if (isatty(STDIN_FILENO) && wipemode == WIPEMODE_AUTO)
827 dowipe = 1; /* do it in interactive mode */
828
829 if (fdisk_is_ptcollision(cxt) && wipemode != WIPEMODE_NEVER)
830 dowipe = 1; /* always remove old PT */
831
832 fdisk_enable_wipe(cxt, dowipe);
833 if (dowipe)
834 fdisk_warnx(cxt, _(
6cd671d4 835 "The device contains '%s' signature and it will be removed by a write command. "
ce16f04e 836 "See fdisk(8) man page and --wipe option for more details."),
5635d195
KZ
837 fdisk_get_collision(cxt));
838 else
839 fdisk_warnx(cxt, _(
6cd671d4 840 "The device contains '%s' signature and it may remain on the device. "
5635d195
KZ
841 "It is recommended to wipe the device with wipefs(8) or "
842 "fdisk --wipe, in order to avoid possible collisions."),
843 fdisk_get_collision(cxt));
844}
845
6e1eda6f 846static void __attribute__((__noreturn__)) usage(void)
e3a4aaa7 847{
6e1eda6f
RM
848 FILE *out = stdout;
849
e3a4aaa7
KZ
850 fputs(USAGE_HEADER, out);
851
852 fprintf(out,
7eeb2c82
WS
853 _(" %1$s [options] <disk> change partition table\n"
854 " %1$s [options] -l [<disk>...] list partition table(s)\n"),
e3a4aaa7
KZ
855 program_invocation_short_name);
856
451dbcfa
BS
857 fputs(USAGE_SEPARATOR, out);
858 fputs(_("Display or manipulate a disk partition table.\n"), out);
859
e3a4aaa7
KZ
860 fputs(USAGE_OPTIONS, out);
861 fputs(_(" -b, --sector-size <size> physical and logical sector size\n"), out);
718b6f0c 862 fputs(_(" -B, --protect-boot don't erase bootbits when creating a new label\n"), out);
e3a4aaa7 863 fputs(_(" -c, --compatibility[=<mode>] mode is 'dos' or 'nondos' (default)\n"), out);
a7466bdc
SK
864 fprintf(out,
865 _(" -L, --color[=<when>] colorize output (%s, %s or %s)\n"), "auto", "always", "never");
5d51dc2a
KZ
866 fprintf(out,
867 " %s\n", USAGE_COLORS_DEFAULT);
9e930041 868 fputs(_(" -l, --list display partitions and exit\n"), out);
99d78b2f
KZ
869 fputs(_(" -x, --list-details like --list but with more details\n"), out);
870
f2229320 871 fputs(_(" -n, --noauto-pt don't create default partition table on empty devices\n"), out);
2d7dffeb 872 fputs(_(" -o, --output <list> output columns\n"), out);
e3a4aaa7
KZ
873 fputs(_(" -t, --type <type> recognize specified partition table type only\n"), out);
874 fputs(_(" -u, --units[=<unit>] display units: 'cylinders' or 'sectors' (default)\n"), out);
875 fputs(_(" -s, --getsz display device size in 512-byte sectors [DEPRECATED]\n"), out);
354f8cc8 876 fputs(_(" --bytes print SIZE in bytes rather than in human readable format\n"), out);
9cd88771
KZ
877 fprintf(out,
878 _(" --lock[=<mode>] use exclusive device lock (%s, %s or %s)\n"), "yes", "no", "nonblock");
a7466bdc
SK
879 fprintf(out,
880 _(" -w, --wipe <mode> wipe signatures (%s, %s or %s)\n"), "auto", "always", "never");
881 fprintf(out,
882 _(" -W, --wipe-partitions <mode> wipe signatures from new partitions (%s, %s or %s)\n"), "auto", "always", "never");
e3a4aaa7
KZ
883
884 fputs(USAGE_SEPARATOR, out);
4b4e391a
KZ
885 fputs(_(" -C, --cylinders <number> specify the number of cylinders\n"), out);
886 fputs(_(" -H, --heads <number> specify the number of heads\n"), out);
887 fputs(_(" -S, --sectors <number> specify the number of sectors per track\n"), out);
e3a4aaa7
KZ
888
889 fputs(USAGE_SEPARATOR, out);
f45f3ec3 890 printf(USAGE_HELP_OPTIONS(31));
e3a4aaa7 891
fff8ad58
KZ
892 list_available_columns(out);
893
f45f3ec3 894 printf(USAGE_MAN_TAIL("fdisk(8)"));
6e1eda6f 895 exit(EXIT_SUCCESS);
e3a4aaa7
KZ
896}
897
898
5b72b3dd
KZ
899enum {
900 ACT_FDISK = 0, /* default */
901 ACT_LIST,
99d78b2f 902 ACT_LIST_DETAILS,
5b72b3dd
KZ
903 ACT_SHOWSIZE
904};
905
e1144767
DB
906int main(int argc, char **argv)
907{
f2229320 908 int rc, i, c, act = ACT_FDISK, noauto_pt = 0;
d0c9ddc3 909 int colormode = UL_COLORMODE_UNDEF;
4e0e8253 910 struct fdisk_context *cxt;
fff8ad58 911 char *outarg = NULL;
9cd88771 912 const char *devname, *lockmode = NULL;
354f8cc8 913 enum {
9cd88771
KZ
914 OPT_BYTES = CHAR_MAX + 1,
915 OPT_LOCK
354f8cc8 916 };
e3a4aaa7 917 static const struct option longopts[] = {
354f8cc8 918 { "bytes", no_argument, NULL, OPT_BYTES },
e3a4aaa7
KZ
919 { "color", optional_argument, NULL, 'L' },
920 { "compatibility", optional_argument, NULL, 'c' },
4b4e391a 921 { "cylinders", required_argument, NULL, 'C' },
f1970cc5 922 { "heads", required_argument, NULL, 'H' },
4b4e391a 923 { "sectors", required_argument, NULL, 'S' },
e3a4aaa7
KZ
924 { "getsz", no_argument, NULL, 's' },
925 { "help", no_argument, NULL, 'h' },
926 { "list", no_argument, NULL, 'l' },
99d78b2f 927 { "list-details", no_argument, NULL, 'x' },
9cd88771 928 { "lock", optional_argument, NULL, OPT_LOCK },
f2229320 929 { "noauto-pt", no_argument, NULL, 'n' },
e3a4aaa7
KZ
930 { "sector-size", required_argument, NULL, 'b' },
931 { "type", required_argument, NULL, 't' },
932 { "units", optional_argument, NULL, 'u' },
933 { "version", no_argument, NULL, 'V' },
2d7dffeb 934 { "output", no_argument, NULL, 'o' },
aeb9a30b 935 { "protect-boot", no_argument, NULL, 'B' },
cb9a4b00 936 { "wipe", required_argument, NULL, 'w' },
ba465623 937 { "wipe-partitions",required_argument, NULL, 'W' },
e3a4aaa7
KZ
938 { NULL, 0, NULL, 0 }
939 };
940
7eda085c
KZ
941 setlocale(LC_ALL, "");
942 bindtextdomain(PACKAGE, LOCALEDIR);
943 textdomain(PACKAGE);
2c308875 944 close_stdout_atexit();
2b6fc908 945
4e0e8253 946 fdisk_init_debug(0);
053939a4 947 scols_init_debug(0);
e6d0c4c1
KZ
948 fdiskprog_init_debug();
949
4e0e8253
KZ
950 cxt = fdisk_new_context();
951 if (!cxt)
952 err(EXIT_FAILURE, _("failed to allocate libfdisk context"));
953
6a632136 954 fdisk_set_ask(cxt, ask_callback, NULL);
416c43a9 955
f2229320 956 while ((c = getopt_long(argc, argv, "b:Bc::C:hH:lL::no:sS:t:u::vVw:W:x",
e3a4aaa7 957 longopts, NULL)) != -1) {
2b6fc908
KZ
958 switch (c) {
959 case 'b':
6bcd192c
KZ
960 {
961 size_t sz = strtou32_or_err(optarg,
962 _("invalid sector size argument"));
963 if (sz != 512 && sz != 1024 && sz != 2048 && sz != 4096)
6e1eda6f 964 errx(EXIT_FAILURE, _("invalid sector size argument"));
6bcd192c 965 fdisk_save_user_sector_size(cxt, sz, sz);
2b6fc908 966 break;
6bcd192c 967 }
9ff89c5d 968 case 'B':
aeb9a30b
KZ
969 fdisk_enable_bootbits_protection(cxt, 1);
970 break;
0e6f4a20 971 case 'C':
1653f0b0
KZ
972 fdisk_save_user_geometry(cxt,
973 strtou32_or_err(optarg,
974 _("invalid cylinders argument")),
975 0, 0);
0e6f4a20 976 break;
78498b7b 977 case 'c':
852ce62b 978 if (optarg) {
2b0bc17b 979 /* this setting is independent on the current
e3a4aaa7
KZ
980 * actively used label
981 */
982 char *p = *optarg == '=' ? optarg + 1 : optarg;
6a632136 983 struct fdisk_label *lb = fdisk_get_label(cxt, "dos");
e3a4aaa7 984
852ce62b
KZ
985 if (!lb)
986 err(EXIT_FAILURE, _("not found DOS label driver"));
e3a4aaa7 987 if (strcmp(p, "dos") == 0)
852ce62b 988 fdisk_dos_enable_compatible(lb, TRUE);
e3a4aaa7 989 else if (strcmp(p, "nondos") == 0)
852ce62b 990 fdisk_dos_enable_compatible(lb, FALSE);
6e1eda6f
RM
991 else
992 errx(EXIT_FAILURE, _("unknown compatibility mode '%s'"), p);
852ce62b
KZ
993 }
994 /* use default if no optarg specified */
78498b7b 995 break;
0e6f4a20 996 case 'H':
1653f0b0
KZ
997 fdisk_save_user_geometry(cxt, 0,
998 strtou32_or_err(optarg,
999 _("invalid heads argument")),
1000 0);
0e6f4a20
KZ
1001 break;
1002 case 'S':
1653f0b0
KZ
1003 fdisk_save_user_geometry(cxt, 0, 0,
1004 strtou32_or_err(optarg,
1005 _("invalid sectors argument")));
0e6f4a20 1006 break;
2b6fc908 1007 case 'l':
5b72b3dd 1008 act = ACT_LIST;
2b6fc908 1009 break;
99d78b2f
KZ
1010 case 'x':
1011 act = ACT_LIST_DETAILS;
1012 break;
80a1712f 1013 case 'L':
5d51dc2a 1014 colormode = UL_COLORMODE_AUTO;
80a1712f
KZ
1015 if (optarg)
1016 colormode = colormode_or_err(optarg,
1017 _("unsupported color mode"));
1018 break;
f2229320
KZ
1019 case 'n':
1020 noauto_pt = 1;
1021 break;
fff8ad58
KZ
1022 case 'o':
1023 outarg = optarg;
1024 break;
2b6fc908 1025 case 's':
5b72b3dd 1026 act = ACT_SHOWSIZE;
2b6fc908 1027 break;
565b7da6
KZ
1028 case 't':
1029 {
1030 struct fdisk_label *lb = NULL;
1031
6a632136 1032 while (fdisk_next_label(cxt, &lb) == 0)
565b7da6
KZ
1033 fdisk_label_set_disabled(lb, 1);
1034
6a632136 1035 lb = fdisk_get_label(cxt, optarg);
565b7da6
KZ
1036 if (!lb)
1037 errx(EXIT_FAILURE, _("unsupported disklabel: %s"), optarg);
1038 fdisk_label_set_disabled(lb, 0);
1ce1a112 1039 break;
565b7da6 1040 }
2b6fc908 1041 case 'u':
ec10aa67
KZ
1042 if (optarg && *optarg == '=')
1043 optarg++;
6a632136 1044 if (fdisk_set_unit(cxt, optarg) != 0)
6e1eda6f 1045 errx(EXIT_FAILURE, _("unsupported unit"));
2b6fc908 1046 break;
e3a4aaa7
KZ
1047 case 'V': /* preferred for util-linux */
1048 case 'v': /* for backward compatibility only */
2c308875 1049 print_version(EXIT_SUCCESS);
cb9a4b00
KZ
1050 case 'w':
1051 wipemode = wipemode_from_string(optarg);
1052 if (wipemode < 0)
1053 errx(EXIT_FAILURE, _("unsupported wipe mode"));
1054 break;
ba465623
KZ
1055 case 'W':
1056 pwipemode = wipemode_from_string(optarg);
1057 if (pwipemode < 0)
1058 errx(EXIT_FAILURE, _("unsupported wipe mode"));
1059 break;
e1144767 1060 case 'h':
6e1eda6f 1061 usage();
354f8cc8
KZ
1062 case OPT_BYTES:
1063 fdisk_set_size_unit(cxt, FDISK_SIZEUNIT_BYTES);
1064 break;
9cd88771
KZ
1065 case OPT_LOCK:
1066 lockmode = "1";
1067 if (optarg) {
1068 if (*optarg == '=')
1069 optarg++;
1070 lockmode = optarg;
1071 }
1072 break;
2b6fc908 1073 default:
677ec86c 1074 errtryhelp(EXIT_FAILURE);
2b6fc908 1075 }
6dbe3af9 1076 }
2b6fc908 1077
6bcd192c
KZ
1078 if (argc-optind != 1 && fdisk_has_user_device_properties(cxt))
1079 warnx(_("The device properties (sector size and geometry) should"
1080 " be used with one specified device only."));
7eda085c 1081
d0c9ddc3 1082 colors_init(colormode, "fdisk");
c1154128 1083 is_interactive = isatty(STDIN_FILENO);
ffcf0540 1084
5b72b3dd
KZ
1085 switch (act) {
1086 case ACT_LIST:
99d78b2f 1087 case ACT_LIST_DETAILS:
6a632136 1088 fdisk_enable_listonly(cxt, 1);
99d78b2f
KZ
1089
1090 if (act == ACT_LIST_DETAILS)
1091 fdisk_enable_details(cxt, 1);
1092
fff8ad58 1093 init_fields(cxt, outarg, NULL);
ffcf0540 1094
2b6fc908
KZ
1095 if (argc > optind) {
1096 int k;
8fdd483c 1097
4a52959d
WS
1098 for (rc = 0, k = optind; k < argc; k++)
1099 rc += print_device_pt(cxt, argv[k], 1, 0, k != optind);
8fdd483c 1100
8fdd483c
KZ
1101 if (rc)
1102 return EXIT_FAILURE;
ea4824f1 1103 } else
d2c47697 1104 print_all_devices_pt(cxt, 0);
5b72b3dd 1105 break;
2b6fc908 1106
5b72b3dd 1107 case ACT_SHOWSIZE:
9564e46c 1108 /* deprecated */
6e1eda6f
RM
1109 if (argc - optind <= 0) {
1110 warnx(_("bad usage"));
1111 errtryhelp(EXIT_FAILURE);
1112 }
6da365de 1113 for (i = optind; i < argc; i++) {
0073a4cf
KZ
1114 uintmax_t blks = get_dev_blocks(argv[i]);
1115
5b72b3dd 1116 if (argc - optind == 1)
0073a4cf 1117 printf("%ju\n", blks);
2b6fc908 1118 else
0073a4cf 1119 printf("%s: %ju\n", argv[i], blks);
6dbe3af9 1120 }
5b72b3dd 1121 break;
6dbe3af9 1122
5b72b3dd 1123 case ACT_FDISK:
6e1eda6f
RM
1124 if (argc-optind != 1) {
1125 warnx(_("bad usage"));
1126 errtryhelp(EXIT_FAILURE);
1127 }
7eda085c 1128
5b72b3dd 1129 /* Here starts interactive mode, use fdisk_{warn,info,..} functions */
496c979a 1130 color_scheme_enable("welcome", UL_COLOR_GREEN);
09f0c3d9 1131 fdisk_info(cxt, _("Welcome to fdisk (%s)."), PACKAGE_STRING);
80a1712f
KZ
1132 color_disable();
1133 fdisk_info(cxt, _("Changes will remain in memory only, until you decide to write them.\n"
1134 "Be careful before using the write command.\n"));
2d8988bd 1135
9cd88771
KZ
1136 devname = argv[optind];
1137 rc = fdisk_assign_device(cxt, devname, 0);
e146ae4e 1138 if (rc == -EACCES) {
9cd88771 1139 rc = fdisk_assign_device(cxt, devname, 1);
e146ae4e 1140 if (rc == 0)
62eea9ce 1141 fdisk_warnx(cxt, _("Device is open in read-only mode."));
e146ae4e
KZ
1142 }
1143 if (rc)
9cd88771 1144 err(EXIT_FAILURE, _("cannot open %s"), devname);
2d8988bd 1145
5b72b3dd 1146 fflush(stdout);
56c07b96 1147
9cd88771
KZ
1148 if (!fdisk_is_readonly(cxt)
1149 && blkdev_lock(fdisk_get_devfd(cxt), devname, lockmode) != 0) {
1150 fdisk_deassign_device(cxt, 1);
1151 fdisk_unref_context(cxt);
1152 return EXIT_FAILURE;
1153 }
1154
5635d195
KZ
1155 if (fdisk_get_collision(cxt))
1156 follow_wipe_mode(cxt);
cb9a4b00 1157
aa36c2cf 1158 if (!fdisk_has_label(cxt)) {
2d8988bd 1159 fdisk_info(cxt, _("Device does not contain a recognized partition table."));
f2229320
KZ
1160 if (!noauto_pt)
1161 fdisk_create_disklabel(cxt, NULL);
433d05ff 1162
aa36c2cf 1163 } else if (fdisk_is_label(cxt, GPT) && fdisk_gpt_is_hybrid(cxt))
433d05ff 1164 fdisk_warnx(cxt, _(
09af3db4 1165 "A hybrid GPT was detected. You have to sync "
433d05ff 1166 "the hybrid MBR manually (expert command 'M')."));
6dbe3af9 1167
fff8ad58
KZ
1168 init_fields(cxt, outarg, NULL); /* -o <columns> */
1169
fadd8e08
KZ
1170 if (!fdisk_is_readonly(cxt)) {
1171 fdisk_get_partitions(cxt, &original_layout);
1172 device_is_used = fdisk_device_is_used(cxt);
1173 }
1174
5b72b3dd
KZ
1175 while (1)
1176 process_fdisk_menu(&cxt);
1177 }
9777759a 1178
c7119037 1179 fdisk_unref_context(cxt);
5b72b3dd 1180 return EXIT_SUCCESS;
6dbe3af9 1181}