]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/fdisk-menu.c
libfdisk: add geometry to API, cleanup
[thirdparty/util-linux.git] / disk-utils / fdisk-menu.c
CommitLineData
161b0d1a
KZ
1
2#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <ctype.h>
6#include <stdint.h>
7
8#include "c.h"
9#include "fdisk.h"
9f280903 10#include "pt-sun.h"
f02fecd1
KZ
11#include "pt-mbr.h"
12
161b0d1a 13struct menu_entry {
7e937b77
KZ
14 const char key; /* command key */
15 const char *title; /* help string */
16 unsigned int normal : 1, /* normal mode */
17 expert : 1, /* expert mode */
18 hidden : 1; /* be sensitive for this key,
19 but don't print it in help */
161b0d1a 20
7e937b77
KZ
21 enum fdisk_labeltype label; /* only for this label */
22 enum fdisk_labeltype exclude; /* all labels except this */
f92e1810 23 enum fdisk_labeltype parent; /* for nested PT */
161b0d1a
KZ
24};
25
26#define IS_MENU_SEP(e) ((e)->key == '-')
27#define IS_MENU_HID(e) ((e)->hidden)
28
29struct menu {
30 enum fdisk_labeltype label; /* only for this label */
31 enum fdisk_labeltype exclude; /* all labels except this */
32
f92e1810
KZ
33 unsigned int nonested : 1; /* don't make this menu active in nested PT */
34
a47fec81 35 int (*callback)(struct fdisk_context **,
a410f8df
KZ
36 const struct menu *,
37 const struct menu_entry *);
161b0d1a
KZ
38
39 struct menu_entry entries[]; /* NULL terminated array */
40};
41
42struct menu_context {
43 size_t menu_idx; /* the current menu */
44 size_t entry_idx; /* index with in the current menu */
45};
46
47#define MENU_CXT_EMPTY { 0, 0 }
8e40a677 48#define DECLARE_MENU_CB(x) \
a47fec81 49 static int x(struct fdisk_context **, \
8e40a677
KZ
50 const struct menu *, \
51 const struct menu_entry *)
161b0d1a 52
8e40a677 53DECLARE_MENU_CB(gpt_menu_cb);
9f280903 54DECLARE_MENU_CB(sun_menu_cb);
aae727f2 55DECLARE_MENU_CB(sgi_menu_cb);
8e40a677 56DECLARE_MENU_CB(geo_menu_cb);
f02fecd1 57DECLARE_MENU_CB(dos_menu_cb);
b529ea2a 58DECLARE_MENU_CB(bsd_menu_cb);
b3ac22ef 59DECLARE_MENU_CB(createlabel_menu_cb);
89309968 60DECLARE_MENU_CB(generic_menu_cb);
b9e94cd7 61
161b0d1a
KZ
62/*
63 * Menu entry macros:
64 * MENU_X* expert mode only
65 * MENU_B* both -- expert + normal mode
66 *
7e937b77
KZ
67 * *_E exclude this label
68 * *_H hidden
69 * *_L only for this label
161b0d1a
KZ
70 */
71
72/* separator */
73#define MENU_SEP(t) { .title = t, .key = '-', .normal = 1 }
74#define MENU_XSEP(t) { .title = t, .key = '-', .expert = 1 }
75#define MENU_BSEP(t) { .title = t, .key = '-', .expert = 1, .normal = 1 }
76
77/* entry */
78#define MENU_ENT(k, t) { .title = t, .key = k, .normal = 1 }
79#define MENU_ENT_E(k, t, l) { .title = t, .key = k, .normal = 1, .exclude = l }
7e937b77 80#define MENU_ENT_L(k, t, l) { .title = t, .key = k, .normal = 1, .label = l }
161b0d1a
KZ
81
82#define MENU_XENT(k, t) { .title = t, .key = k, .expert = 1 }
83#define MENU_XENT_H(k, t) { .title = t, .key = k, .expert = 1, .hidden = 1 }
84
85#define MENU_BENT(k, t) { .title = t, .key = k, .expert = 1, .normal = 1 }
27ddd4f1 86#define MENU_BENT_E(k, t, l) { .title = t, .key = k, .expert = 1, .normal = 1, .exclude = l }
161b0d1a 87
f92e1810
KZ
88#define MENU_ENT_NEST(k, t, l, p) { .title = t, .key = k, .normal = 1, .label = l, .parent = p }
89#define MENU_XENT_NEST(k, t, l, p) { .title = t, .key = k, .expert = 1, .label = l, .parent = p }
161b0d1a
KZ
90
91/* Generic menu */
92struct menu menu_generic = {
89309968 93 .callback = generic_menu_cb,
161b0d1a 94 .entries = {
6ae5e1e0 95 MENU_BSEP(N_("Generic")),
161b0d1a
KZ
96 MENU_ENT ('d', N_("delete a partition")),
97 MENU_ENT ('l', N_("list known partition types")),
98 MENU_ENT ('n', N_("add a new partition")),
99 MENU_BENT ('p', N_("print the partition table")),
6ae5e1e0 100 MENU_ENT ('t', N_("change a partition type")),
27ddd4f1 101 MENU_BENT_E('v', N_("verify the partition table"), FDISK_DISKLABEL_BSD),
161b0d1a 102
e916600f
KZ
103 MENU_XENT('d', N_("print the raw data of the first sector from the device")),
104 MENU_XENT('D', N_("print the raw data of the disklabel from the device")),
dd7ba604 105 MENU_XENT('f', N_("fix partitions order")),
6ae5e1e0 106
161b0d1a
KZ
107 MENU_SEP(N_("Misc")),
108 MENU_BENT ('m', N_("print this menu")),
109 MENU_ENT_E('u', N_("change display/entry units"), FDISK_DISKLABEL_GPT),
22ddf547 110 MENU_ENT_E('x', N_("extra functionality (experts only)"), FDISK_DISKLABEL_BSD),
161b0d1a 111
2a1a67df 112 MENU_BSEP(N_("Save & Exit")),
22ddf547
KZ
113 MENU_ENT_E('w', N_("write table to disk and exit"), FDISK_DISKLABEL_BSD),
114 MENU_ENT_L('w', N_("write table to disk"), FDISK_DISKLABEL_BSD),
161b0d1a
KZ
115 MENU_BENT ('q', N_("quit without saving changes")),
116 MENU_XENT ('r', N_("return to main menu")),
f92e1810
KZ
117
118 MENU_ENT_NEST('r', N_("return from BSD to DOS"), FDISK_DISKLABEL_BSD, FDISK_DISKLABEL_DOS),
161b0d1a
KZ
119
120 { 0, NULL }
121 }
122};
123
124struct menu menu_createlabel = {
b3ac22ef 125 .callback = createlabel_menu_cb,
22ddf547 126 .exclude = FDISK_DISKLABEL_BSD,
f92e1810 127 .nonested = 1,
161b0d1a
KZ
128 .entries = {
129 MENU_SEP(N_("Create a new label")),
130 MENU_ENT('g', N_("create a new empty GPT partition table")),
131 MENU_ENT('G', N_("create a new empty SGI (IRIX) partition table")),
132 MENU_ENT('o', N_("create a new empty DOS partition table")),
133 MENU_ENT('s', N_("create a new empty Sun partition table")),
134
135 /* backward compatibility -- be sensitive to 'g', but don't
136 * print it in the expert menu */
137 MENU_XENT_H('g', N_("create an IRIX (SGI) partition table")),
138 { 0, NULL }
139 }
140};
141
be9ba6f3 142struct menu menu_geo = {
8e40a677 143 .callback = geo_menu_cb,
22ddf547 144 .exclude = FDISK_DISKLABEL_GPT | FDISK_DISKLABEL_BSD,
be9ba6f3
KZ
145 .entries = {
146 MENU_XSEP(N_("Geometry")),
147 MENU_XENT('c', N_("change number of cylinders")),
148 MENU_XENT('h', N_("change number of heads")),
149 MENU_XENT('s', N_("change number of sectors/track")),
150 { 0, NULL }
151 }
152};
153
161b0d1a 154struct menu menu_gpt = {
b9e94cd7 155 .callback = gpt_menu_cb,
161b0d1a
KZ
156 .label = FDISK_DISKLABEL_GPT,
157 .entries = {
158 MENU_XSEP(N_("GPT")),
35b1f0a4 159 MENU_XENT('i', N_("change disk GUID")),
161b0d1a 160 MENU_XENT('n', N_("change partition name")),
35b1f0a4 161 MENU_XENT('u', N_("change partition UUID")),
f92e1810 162 MENU_XENT('M', N_("enter protective/hybrid MBR")),
f362d863
KZ
163
164 MENU_XSEP(""),
165 MENU_XENT('A', N_("toggle the legacy BIOS bootable flag")),
166 MENU_XENT('B', N_("toggle the no block IO protocol flag")),
167 MENU_XENT('R', N_("toggle the required partition flag")),
168 MENU_XENT('S', N_("toggle the GUID specific bits")),
169
161b0d1a
KZ
170 { 0, NULL }
171 }
172};
173
2a1a67df 174struct menu menu_sun = {
9f280903 175 .callback = sun_menu_cb,
2a1a67df
KZ
176 .label = FDISK_DISKLABEL_SUN,
177 .entries = {
178 MENU_BSEP(N_("Sun")),
aaa43826 179 MENU_ENT('a', N_("toggle the read-only flag")),
2a1a67df
KZ
180 MENU_ENT('c', N_("toggle the mountable flag")),
181
182 MENU_XENT('a', N_("change number of alternate cylinders")),
2a1a67df 183 MENU_XENT('e', N_("change number of extra sectors per cylinder")),
2a1a67df
KZ
184 MENU_XENT('i', N_("change interleave factor")),
185 MENU_XENT('o', N_("change rotation speed (rpm)")),
2a1a67df
KZ
186 MENU_XENT('y', N_("change number of physical cylinders")),
187 { 0, NULL }
188 }
189};
190
6ae5e1e0 191struct menu menu_sgi = {
aae727f2 192 .callback = sgi_menu_cb,
6ae5e1e0
KZ
193 .label = FDISK_DISKLABEL_SGI,
194 .entries = {
195 MENU_SEP(N_("SGI")),
196 MENU_ENT('a', N_("select bootable partition")),
197 MENU_ENT('b', N_("edit bootfile entry")),
198 MENU_ENT('c', N_("select sgi swap partition")),
aae727f2 199 MENU_ENT('i', N_("create SGI info")),
6ae5e1e0
KZ
200 { 0, NULL }
201 }
202};
203
204struct menu menu_dos = {
f02fecd1 205 .callback = dos_menu_cb,
6ae5e1e0
KZ
206 .label = FDISK_DISKLABEL_DOS,
207 .entries = {
208 MENU_BSEP(N_("DOS (MBR)")),
209 MENU_ENT('a', N_("toggle a bootable flag")),
210 MENU_ENT('b', N_("edit nested BSD disklabel")),
211 MENU_ENT('c', N_("toggle the dos compatibility flag")),
212
213 MENU_XENT('b', N_("move beginning of data in a partition")),
6ae5e1e0 214 MENU_XENT('i', N_("change the disk identifier")),
f92e1810
KZ
215
216 MENU_XENT_NEST('M', N_("return from protective/hybrid MBR to GPT"),
217 FDISK_DISKLABEL_DOS, FDISK_DISKLABEL_GPT),
6ae5e1e0
KZ
218 { 0, NULL }
219 }
220};
221
222struct menu menu_bsd = {
b529ea2a 223 .callback = bsd_menu_cb,
22ddf547 224 .label = FDISK_DISKLABEL_BSD,
6ae5e1e0
KZ
225 .entries = {
226 MENU_SEP(N_("BSD")),
227 MENU_ENT('e', N_("edit drive data")),
228 MENU_ENT('i', N_("install bootstrap")),
229 MENU_ENT('s', N_("show complete disklabel")),
6ae5e1e0 230 MENU_ENT('x', N_("link BSD partition to non-BSD partition")),
6ae5e1e0
KZ
231 { 0, NULL }
232 }
233};
234
161b0d1a 235static const struct menu *menus[] = {
6ae5e1e0
KZ
236 &menu_gpt,
237 &menu_sun,
238 &menu_sgi,
239 &menu_dos,
240 &menu_bsd,
be9ba6f3 241 &menu_geo,
161b0d1a
KZ
242 &menu_generic,
243 &menu_createlabel,
161b0d1a
KZ
244};
245
246static const struct menu_entry *next_menu_entry(
247 struct fdisk_context *cxt,
248 struct menu_context *mc)
249{
250 while (mc->menu_idx < ARRAY_SIZE(menus)) {
251 const struct menu *m = menus[mc->menu_idx];
252 const struct menu_entry *e = &(m->entries[mc->entry_idx]);
253
f92e1810
KZ
254 /*
255 * whole-menu filter
256 */
257
be9ba6f3 258 /* no more entries */
161b0d1a 259 if (e->title == NULL ||
be9ba6f3
KZ
260 /* menu wanted for specified labels only */
261 (m->label && cxt->label && !(m->label & cxt->label->id)) ||
f92e1810
KZ
262 /* unwanted for nested PT */
263 (m->nonested && cxt->parent) ||
be9ba6f3
KZ
264 /* menu excluded for specified labels */
265 (m->exclude && cxt->label && (m->exclude & cxt->label->id))) {
161b0d1a
KZ
266 mc->menu_idx++;
267 mc->entry_idx = 0;
268 continue;
269 }
270
f92e1810
KZ
271 /*
272 * per entry filter
273 */
274
7e937b77
KZ
275 /* excluded for the current label */
276 if ((e->exclude && cxt->label && e->exclude & cxt->label->id) ||
277 /* entry wanted for specified labels only */
278 (e->label && cxt->label && !(e->label & cxt->label->id)) ||
161b0d1a 279 /* exclude non-expert entries in expect mode */
6a632136 280 (e->expert == 0 && fdisk_is_details(cxt)) ||
f92e1810
KZ
281 /* nested only */
282 (e->parent && (!cxt->parent || cxt->parent->label->id != e->parent)) ||
161b0d1a 283 /* exclude non-normal entries in normal mode */
6a632136 284 (e->normal == 0 && !fdisk_is_details(cxt))) {
161b0d1a
KZ
285
286 mc->entry_idx++;
287 continue;
288 }
289 mc->entry_idx++;
290 return e;
291
292 }
293 return NULL;
294}
295
3b4f9f16
KZ
296/* returns @menu and menu entry for then @key */
297static const struct menu_entry *get_fdisk_menu_entry(
298 struct fdisk_context *cxt,
299 int key,
300 const struct menu **menu)
301{
302 struct menu_context mc = MENU_CXT_EMPTY;
303 const struct menu_entry *e;
304
305 while ((e = next_menu_entry(cxt, &mc))) {
306 if (IS_MENU_SEP(e) || e->key != key)
307 continue;
308
309 if (menu)
310 *menu = menus[mc.menu_idx];
311 return e;
312 }
313
314 return NULL;
315}
316
317static int menu_detect_collisions(struct fdisk_context *cxt)
318{
319 struct menu_context mc = MENU_CXT_EMPTY;
320 const struct menu_entry *e, *r;
321
322 while ((e = next_menu_entry(cxt, &mc))) {
323 if (IS_MENU_SEP(e))
324 continue;
325
326 r = get_fdisk_menu_entry(cxt, e->key, NULL);
327 if (!r) {
88141067 328 DBG(FRONTEND, ul_debug("warning: not found "
3b4f9f16
KZ
329 "entry for %c", e->key));
330 return -1;
331 }
332 if (r != e) {
88141067 333 DBG(FRONTEND, ul_debug("warning: duplicate key '%c'",
3b4f9f16 334 e->key));
88141067
KZ
335 DBG(FRONTEND, ul_debug(" : %s", e->title));
336 DBG(FRONTEND, ul_debug(" : %s", r->title));
3b4f9f16
KZ
337 abort();
338 }
339 }
340
341 return 0;
342}
343
1f75d1ce 344static int print_fdisk_menu(struct fdisk_context *cxt)
161b0d1a
KZ
345{
346 struct menu_context mc = MENU_CXT_EMPTY;
347 const struct menu_entry *e;
348
36050e70 349 ON_DBG(FRONTEND, menu_detect_collisions(cxt));
3b4f9f16 350
6a632136 351 if (fdisk_is_details(cxt))
39f01b7b 352 printf(_("\nHelp (expert commands):\n"));
161b0d1a 353 else
39f01b7b 354 printf(_("\nHelp:\n"));
161b0d1a
KZ
355
356 while ((e = next_menu_entry(cxt, &mc))) {
357 if (IS_MENU_HID(e))
358 continue; /* hidden entry */
f362d863
KZ
359 if (IS_MENU_SEP(e) && (!e->title || !*e->title))
360 printf("\n");
361 else if (IS_MENU_SEP(e)) {
496c979a 362 color_scheme_enable("help-title", UL_COLOR_BOLD);
161b0d1a 363 printf("\n %s\n", _(e->title));
80a1712f
KZ
364 color_disable();
365 } else
161b0d1a
KZ
366 printf(" %c %s\n", e->key, _(e->title));
367 }
368 fputc('\n', stdout);
369
f92e1810
KZ
370 if (cxt->parent)
371 fdisk_info(cxt, _("You're editing nested '%s' partition table, "
372 "primary partition table is '%s'."),
373 cxt->label->name,
374 cxt->parent->label->name);
375
161b0d1a
KZ
376 return 0;
377}
378
a410f8df
KZ
379/* Asks for command, verify the key and perform the command or
380 * returns the command key if no callback for the command is
381 * implemented.
382 *
a47fec81
KZ
383 * Note that this function might exchange the context pointer to
384 * switch to another (nested) context.
385 *
a410f8df
KZ
386 * Returns: <0 on error
387 * 0 on success (the command performed)
388 * >0 if no callback (then returns the key)
389 */
a47fec81 390int process_fdisk_menu(struct fdisk_context **cxt0)
a410f8df 391{
a47fec81 392 struct fdisk_context *cxt = *cxt0;
a410f8df
KZ
393 const struct menu_entry *ent;
394 const struct menu *menu;
395 int key, rc;
396 const char *prompt;
397 char buf[BUFSIZ];
398
6a632136 399 if (fdisk_is_details(cxt))
a410f8df
KZ
400 prompt = _("Expert command (m for help): ");
401 else
402 prompt = _("Command (m for help): ");
403
404 fputc('\n',stdout);
405 rc = get_user_reply(cxt, prompt, buf, sizeof(buf));
406 if (rc)
407 return rc;
408
409 key = buf[0];
410 ent = get_fdisk_menu_entry(cxt, key, &menu);
411 if (!ent) {
412 fdisk_warnx(cxt, _("%c: unknown command"), key);
413 return -EINVAL;
414 }
415
a47fec81 416 rc = 0;
88141067 417 DBG(FRONTEND, ul_debug("selected: key=%c, entry='%s'",
a410f8df 418 key, ent->title));
a410f8df
KZ
419
420 /* menu has implemented callback, use it */
27ddd4f1 421 if (menu->callback)
a47fec81
KZ
422 rc = menu->callback(cxt0, menu, ent);
423 else {
88141067 424 DBG(FRONTEND, ul_debug("no callback for key '%c'", key));
27ddd4f1 425 rc = -EINVAL;
a47fec81 426 }
a410f8df 427
88141067 428 DBG(FRONTEND, ul_debug("process menu done [rc=%d]", rc));
a47fec81 429 return rc;
a410f8df
KZ
430}
431
89309968
KZ
432/*
433 * Basic fdisk actions
434 */
435static int generic_menu_cb(struct fdisk_context **cxt0,
436 const struct menu *menu __attribute__((__unused__)),
437 const struct menu_entry *ent)
438{
439 struct fdisk_context *cxt = *cxt0;
440 int rc = 0;
27ddd4f1 441 size_t n;
89309968 442
27ddd4f1 443 /* actions shared between expert and normal mode */
89309968 444 switch (ent->key) {
89309968
KZ
445 case 'p':
446 list_disk_geometry(cxt);
9f670072 447 list_disklabel(cxt);
89309968 448 break;
df4bfa97 449 case 'w':
6a632136 450 if (fdisk_is_readonly(cxt)) {
e146ae4e
KZ
451 fdisk_warnx(cxt, _("Device open in read-only mode."));
452 break;
453 }
df4bfa97
KZ
454 rc = fdisk_write_disklabel(cxt);
455 if (rc)
fd56121a 456 err(EXIT_FAILURE, _("failed to write disklabel"));
df4bfa97
KZ
457 if (cxt->parent)
458 break; /* nested PT, don't leave */
459 fdisk_info(cxt, _("The partition table has been altered."));
a57639e1
KZ
460 rc = fdisk_reread_partition_table(cxt);
461 if (!rc)
6a632136 462 rc = fdisk_deassign_device(cxt, 0);
a57639e1 463 /* fallthrough */
89309968
KZ
464 case 'q':
465 fdisk_free_context(cxt);
a57639e1
KZ
466 fputc('\n', stdout);
467 exit(rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
27ddd4f1
KZ
468 case 'm':
469 rc = print_fdisk_menu(cxt);
470 break;
89309968
KZ
471 case 'v':
472 rc = fdisk_verify_disklabel(cxt);
473 break;
27ddd4f1
KZ
474 }
475
476 /* expert mode */
477 if (ent->expert) {
478 switch (ent->key) {
479 case 'd':
e916600f
KZ
480 dump_firstsector(cxt);
481 break;
482 case 'D':
483 dump_disklabel(cxt);
27ddd4f1 484 break;
dd7ba604
KZ
485 case 'f':
486 rc = fdisk_reorder_partitions(cxt);
487 break;
27ddd4f1 488 case 'r':
6a632136 489 rc = fdisk_enable_details(cxt, 0);
27ddd4f1
KZ
490 break;
491 }
492 return rc;
493 }
494
495 /* normal mode */
496 switch (ent->key) {
497 case 'd':
498 rc = fdisk_ask_partnum(cxt, &n, FALSE);
499 if (!rc)
500 rc = fdisk_delete_partition(cxt, n);
501 if (rc)
48d4d931 502 fdisk_warnx(cxt, _("Could not delete partition %zu"), n + 1);
27ddd4f1 503 else
48d4d931 504 fdisk_info(cxt, _("Partition %zu has been deleted."), n + 1);
27ddd4f1
KZ
505 break;
506 case 'l':
507 list_partition_types(cxt);
508 break;
509 case 'n':
510 rc = fdisk_add_partition(cxt, NULL);
511 break;
512 case 't':
513 change_partition_type(cxt);
514 break;
515 case 'u':
6a632136
KZ
516 fdisk_set_unit(cxt,
517 fdisk_use_cylinders(cxt) ? "sectors" :
27ddd4f1 518 "cylinders");
6a632136 519 if (fdisk_use_cylinders(cxt))
27ddd4f1
KZ
520 fdisk_info(cxt, _("Changing display/entry units to cylinders (DEPRECATED!)."));
521 else
522 fdisk_info(cxt, _("Changing display/entry units to sectors."));
523 break;
524 case 'x':
6a632136 525 fdisk_enable_details(cxt, 1);
27ddd4f1
KZ
526 break;
527 case 'r':
f92e1810 528 /* return from nested BSD to DOS */
27ddd4f1 529 if (cxt->parent) {
b5729667 530 *cxt0 = cxt->parent;
27ddd4f1 531
fd56121a 532 fdisk_info(cxt, _("Leaving nested disklabel."));
27ddd4f1 533 fdisk_free_context(cxt);
b5729667 534 cxt = *cxt0;
27ddd4f1
KZ
535 }
536 break;
89309968 537 }
27ddd4f1 538
89309968
KZ
539 return rc;
540}
541
8e40a677 542
b9e94cd7
KZ
543/*
544 * This is fdisk frontend for GPT specific libfdisk functions that
545 * are not expported by generic libfdisk API.
546 */
a47fec81 547static int gpt_menu_cb(struct fdisk_context **cxt0,
b9e94cd7
KZ
548 const struct menu *menu __attribute__((__unused__)),
549 const struct menu_entry *ent)
550{
a47fec81 551 struct fdisk_context *cxt = *cxt0;
f92e1810 552 struct fdisk_context *mbr;
b9e94cd7 553 size_t n;
f92e1810 554 int rc = 0;
b9e94cd7
KZ
555
556 assert(cxt);
557 assert(ent);
aa36c2cf 558 assert(fdisk_is_label(cxt, GPT));
b9e94cd7 559
88141067 560 DBG(FRONTEND, ul_debug("enter GPT menu"));
b9e94cd7 561
f92e1810
KZ
562 if (ent->expert) {
563 switch (ent->key) {
564 case 'i':
565 return fdisk_set_disklabel_id(cxt);
566 case 'M':
567 mbr = fdisk_new_nested_context(cxt, "dos");
568 if (!mbr)
569 return -ENOMEM;
570 *cxt0 = cxt = mbr;
6a632136 571 fdisk_enable_details(cxt, 1); /* keep us in expert mode */
f92e1810
KZ
572 fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
573 _("Entering protective/hybrid MBR disklabel."));
574 return 0;
575 }
35b1f0a4 576
f92e1810
KZ
577 /* actions where is necessary partnum */
578 rc = fdisk_ask_partnum(cxt, &n, FALSE);
579 if (rc)
580 return rc;
b9e94cd7 581
f92e1810
KZ
582 switch(ent->key) {
583 case 'u':
584 rc = fdisk_gpt_partition_set_uuid(cxt, n);
585 break;
586 case 'n':
587 rc = fdisk_gpt_partition_set_name(cxt, n);
588 break;
f362d863
KZ
589 case 'A':
590 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_LEGACYBOOT);
591 break;
592 case 'B':
593 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_NOBLOCK);
594 break;
595 case 'R':
596 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_REQUIRED);
597 break;
598 case 'S':
599 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_GUIDSPECIFIC);
600 break;
f92e1810 601 }
b9e94cd7
KZ
602 }
603 return rc;
604}
605
f02fecd1
KZ
606
607/*
608 * This is fdisk frontend for MBR specific libfdisk functions that
609 * are not expported by generic libfdisk API.
610 */
a47fec81 611static int dos_menu_cb(struct fdisk_context **cxt0,
f02fecd1
KZ
612 const struct menu *menu __attribute__((__unused__)),
613 const struct menu_entry *ent)
614{
a47fec81 615 struct fdisk_context *cxt = *cxt0;
f02fecd1
KZ
616 int rc = 0;
617
88141067 618 DBG(FRONTEND, ul_debug("enter DOS menu"));
a47fec81 619
f02fecd1
KZ
620 if (!ent->expert) {
621 switch (ent->key) {
622 case 'a':
623 {
624 size_t n;
625 rc = fdisk_ask_partnum(cxt, &n, FALSE);
626 if (!rc)
627 rc = fdisk_partition_toggle_flag(cxt, n, DOS_FLAG_ACTIVE);
628 break;
629 }
630 case 'b':
631 {
632 struct fdisk_context *bsd
633 = fdisk_new_nested_context(cxt, "bsd");
818d7924
KZ
634 if (!bsd)
635 return -ENOMEM;
aa36c2cf 636 if (!fdisk_has_label(bsd))
818d7924 637 rc = fdisk_create_disklabel(bsd, "bsd");
a47fec81
KZ
638 if (rc)
639 fdisk_free_context(bsd);
27ddd4f1 640 else {
a47fec81 641 *cxt0 = cxt = bsd;
f92e1810
KZ
642 fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
643 _("Entering nested BSD disklabel."));
27ddd4f1 644 }
f02fecd1
KZ
645 break;
646 }
647 case 'c':
648 toggle_dos_compatibility_flag(cxt);
649 break;
650 }
651 return rc;
652 }
653
654 /* expert mode */
655 switch (ent->key) {
656 case 'b':
657 {
658 size_t n;
659 rc = fdisk_ask_partnum(cxt, &n, FALSE);
660 if (!rc)
f8ad3899 661 rc = fdisk_dos_move_begin(cxt, n);
f02fecd1
KZ
662 break;
663 }
f02fecd1
KZ
664 case 'i':
665 rc = fdisk_set_disklabel_id(cxt);
666 break;
f92e1810
KZ
667 case 'M':
668 /* return from nested MBR to GPT */
669 if (cxt->parent) {
670 *cxt0 = cxt->parent;
671
672 fdisk_info(cxt, _("Leaving nested disklabel."));
673 fdisk_free_context(cxt);
674 cxt = *cxt0;
675 }
676 break;
f02fecd1
KZ
677 }
678 return rc;
679}
680
a47fec81 681static int sun_menu_cb(struct fdisk_context **cxt0,
9f280903
KZ
682 const struct menu *menu __attribute__((__unused__)),
683 const struct menu_entry *ent)
684{
a47fec81 685 struct fdisk_context *cxt = *cxt0;
9f280903
KZ
686 int rc = 0;
687
88141067 688 DBG(FRONTEND, ul_debug("enter SUN menu"));
a47fec81 689
9f280903
KZ
690 assert(cxt);
691 assert(ent);
aa36c2cf 692 assert(fdisk_is_label(cxt, SUN));
9f280903 693
88141067 694 DBG(FRONTEND, ul_debug("enter SUN menu"));
9f280903
KZ
695
696 /* normal mode */
697 if (!ent->expert) {
698 size_t n;
699
700 rc = fdisk_ask_partnum(cxt, &n, FALSE);
701 if (rc)
702 return rc;
703 switch (ent->key) {
704 case 'a':
705 rc = fdisk_partition_toggle_flag(cxt, n, SUN_FLAG_RONLY);
706 break;
707 case 'c':
708 rc = fdisk_partition_toggle_flag(cxt, n, SUN_FLAG_UNMNT);
709 break;
710 }
711 return rc;
712 }
713
714 /* expert mode */
715 switch (ent->key) {
716 case 'a':
717 rc = fdisk_sun_set_alt_cyl(cxt);
718 break;
719 case 'e':
720 rc = fdisk_sun_set_xcyl(cxt);
721 break;
722 case 'i':
723 rc = fdisk_sun_set_ilfact(cxt);
724 break;
725 case 'o':
726 rc = fdisk_sun_set_rspeed(cxt);
727 break;
728 case 'y':
729 rc = fdisk_sun_set_pcylcount(cxt);
730 break;
731 }
732 return rc;
733}
734
aae727f2
KZ
735static int sgi_menu_cb(struct fdisk_context **cxt0,
736 const struct menu *menu __attribute__((__unused__)),
737 const struct menu_entry *ent)
738{
739 struct fdisk_context *cxt = *cxt0;
740 int rc = -EINVAL;
741 size_t n = 0;
742
88141067 743 DBG(FRONTEND, ul_debug("enter SGI menu"));
aae727f2
KZ
744
745 assert(cxt);
746 assert(ent);
aa36c2cf 747 assert(fdisk_is_label(cxt, SGI));
aae727f2
KZ
748
749 if (ent->expert)
750 return rc;
751
752 switch (ent->key) {
753 case 'a':
754 rc = fdisk_ask_partnum(cxt, &n, FALSE);
755 if (!rc)
756 rc = fdisk_partition_toggle_flag(cxt, n, SGI_FLAG_BOOT);
757 break;
758 case 'b':
ac84272d 759 fdisk_sgi_set_bootfile(cxt);
aae727f2
KZ
760 break;
761 case 'c':
762 rc = fdisk_ask_partnum(cxt, &n, FALSE);
763 if (!rc)
764 rc = fdisk_partition_toggle_flag(cxt, n, SGI_FLAG_SWAP);
765 break;
766 case 'i':
ac84272d 767 rc = fdisk_sgi_create_info(cxt);
aae727f2
KZ
768 break;
769 }
770
771 return rc;
772}
773
b529ea2a
KZ
774/*
775 * This is fdisk frontend for BSD specific libfdisk functions that
776 * are not expported by generic libfdisk API.
777 */
778static int bsd_menu_cb(struct fdisk_context **cxt0,
779 const struct menu *menu __attribute__((__unused__)),
780 const struct menu_entry *ent)
781{
782 struct fdisk_context *cxt = *cxt0;
e563f055 783 int rc = 0, org;
b529ea2a
KZ
784
785 assert(cxt);
786 assert(ent);
aa36c2cf 787 assert(fdisk_is_label(cxt, BSD));
b529ea2a 788
88141067 789 DBG(FRONTEND, ul_debug("enter BSD menu"));
b529ea2a
KZ
790
791 switch(ent->key) {
792 case 'e':
793 rc = fdisk_bsd_edit_disklabel(cxt);
794 break;
795 case 'i':
796 rc = fdisk_bsd_write_bootstrap(cxt);
797 break;
798 case 's':
6a632136 799 org = fdisk_is_details(cxt);
e563f055 800
6a632136 801 fdisk_enable_details(cxt, 1);
9f670072 802 list_disklabel(cxt);
6a632136 803 fdisk_enable_details(cxt, org);
b529ea2a
KZ
804 break;
805 case 'x':
806 rc = fdisk_bsd_link_partition(cxt);
807 break;
808 }
809 return rc;
810}
811
8e40a677 812/* C/H/S commands */
a47fec81 813static int geo_menu_cb(struct fdisk_context **cxt0,
8e40a677
KZ
814 const struct menu *menu __attribute__((__unused__)),
815 const struct menu_entry *ent)
816{
a47fec81 817 struct fdisk_context *cxt = *cxt0;
8e40a677
KZ
818 int rc = -EINVAL;
819 uintmax_t c = 0, h = 0, s = 0;
820
88141067 821 DBG(FRONTEND, ul_debug("enter GEO menu"));
a47fec81 822
8e40a677
KZ
823 assert(cxt);
824 assert(ent);
825
826 switch (ent->key) {
827 case 'c':
828 rc = fdisk_ask_number(cxt, 1, cxt->geom.cylinders,
829 1048576, _("Number of cylinders"), &c);
830 break;
831 case 'h':
832 rc = fdisk_ask_number(cxt, 1, cxt->geom.heads,
833 256, _("Number of heads"), &h);
834 break;
835 case 's':
836 rc = fdisk_ask_number(cxt, 1, cxt->geom.sectors,
837 63, _("Number of sectors"), &s);
838 break;
839 }
840
841 if (!rc)
842 fdisk_override_geometry(cxt, c, h, s);
843 return rc;
844}
845
b3ac22ef
KZ
846static int createlabel_menu_cb(struct fdisk_context **cxt0,
847 const struct menu *menu __attribute__((__unused__)),
848 const struct menu_entry *ent)
849{
850 struct fdisk_context *cxt = *cxt0;
851 int rc = -EINVAL;
852
88141067 853 DBG(FRONTEND, ul_debug("enter Create label menu"));
b3ac22ef
KZ
854
855 assert(cxt);
856 assert(ent);
857
aae727f2
KZ
858 if (ent->expert) {
859 switch (ent->key) {
860 case 'g':
861 /* Deprecated, use 'G' in main menu, just for backward
862 * compatibility only. */
863 rc = fdisk_create_disklabel(cxt, "sgi");
864 break;
865 }
866 return rc;
867 }
868
b3ac22ef
KZ
869 switch (ent->key) {
870 case 'g':
871 fdisk_create_disklabel(cxt, "gpt");
872 break;
873 case 'G':
874 fdisk_create_disklabel(cxt, "sgi");
875 break;
876 case 'o':
877 fdisk_create_disklabel(cxt, "dos");
878 break;
879 case 's':
880 fdisk_create_disklabel(cxt, "sun");
881 break;
882 }
883 return rc;
884}