]> git.ipfire.org Git - thirdparty/util-linux.git/blame - disk-utils/fdisk-menu.c
nsenter: add + to getopt_long()
[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")),
6ae5e1e0 105
161b0d1a
KZ
106 MENU_SEP(N_("Misc")),
107 MENU_BENT ('m', N_("print this menu")),
108 MENU_ENT_E('u', N_("change display/entry units"), FDISK_DISKLABEL_GPT),
22ddf547 109 MENU_ENT_E('x', N_("extra functionality (experts only)"), FDISK_DISKLABEL_BSD),
161b0d1a 110
2a1a67df 111 MENU_BSEP(N_("Save & Exit")),
22ddf547
KZ
112 MENU_ENT_E('w', N_("write table to disk and exit"), FDISK_DISKLABEL_BSD),
113 MENU_ENT_L('w', N_("write table to disk"), FDISK_DISKLABEL_BSD),
161b0d1a
KZ
114 MENU_BENT ('q', N_("quit without saving changes")),
115 MENU_XENT ('r', N_("return to main menu")),
f92e1810
KZ
116
117 MENU_ENT_NEST('r', N_("return from BSD to DOS"), FDISK_DISKLABEL_BSD, FDISK_DISKLABEL_DOS),
161b0d1a
KZ
118
119 { 0, NULL }
120 }
121};
122
123struct menu menu_createlabel = {
b3ac22ef 124 .callback = createlabel_menu_cb,
22ddf547 125 .exclude = FDISK_DISKLABEL_BSD,
f92e1810 126 .nonested = 1,
161b0d1a
KZ
127 .entries = {
128 MENU_SEP(N_("Create a new label")),
129 MENU_ENT('g', N_("create a new empty GPT partition table")),
130 MENU_ENT('G', N_("create a new empty SGI (IRIX) partition table")),
131 MENU_ENT('o', N_("create a new empty DOS partition table")),
132 MENU_ENT('s', N_("create a new empty Sun partition table")),
133
134 /* backward compatibility -- be sensitive to 'g', but don't
135 * print it in the expert menu */
136 MENU_XENT_H('g', N_("create an IRIX (SGI) partition table")),
137 { 0, NULL }
138 }
139};
140
be9ba6f3 141struct menu menu_geo = {
8e40a677 142 .callback = geo_menu_cb,
22ddf547 143 .exclude = FDISK_DISKLABEL_GPT | FDISK_DISKLABEL_BSD,
be9ba6f3
KZ
144 .entries = {
145 MENU_XSEP(N_("Geometry")),
146 MENU_XENT('c', N_("change number of cylinders")),
147 MENU_XENT('h', N_("change number of heads")),
148 MENU_XENT('s', N_("change number of sectors/track")),
149 { 0, NULL }
150 }
151};
152
161b0d1a 153struct menu menu_gpt = {
b9e94cd7 154 .callback = gpt_menu_cb,
161b0d1a
KZ
155 .label = FDISK_DISKLABEL_GPT,
156 .entries = {
157 MENU_XSEP(N_("GPT")),
35b1f0a4 158 MENU_XENT('i', N_("change disk GUID")),
161b0d1a 159 MENU_XENT('n', N_("change partition name")),
35b1f0a4 160 MENU_XENT('u', N_("change partition UUID")),
f92e1810 161 MENU_XENT('M', N_("enter protective/hybrid MBR")),
f362d863
KZ
162
163 MENU_XSEP(""),
164 MENU_XENT('A', N_("toggle the legacy BIOS bootable flag")),
165 MENU_XENT('B', N_("toggle the no block IO protocol flag")),
166 MENU_XENT('R', N_("toggle the required partition flag")),
167 MENU_XENT('S', N_("toggle the GUID specific bits")),
168
161b0d1a
KZ
169 { 0, NULL }
170 }
171};
172
2a1a67df 173struct menu menu_sun = {
9f280903 174 .callback = sun_menu_cb,
2a1a67df
KZ
175 .label = FDISK_DISKLABEL_SUN,
176 .entries = {
177 MENU_BSEP(N_("Sun")),
aaa43826 178 MENU_ENT('a', N_("toggle the read-only flag")),
2a1a67df
KZ
179 MENU_ENT('c', N_("toggle the mountable flag")),
180
181 MENU_XENT('a', N_("change number of alternate cylinders")),
2a1a67df 182 MENU_XENT('e', N_("change number of extra sectors per cylinder")),
2a1a67df
KZ
183 MENU_XENT('i', N_("change interleave factor")),
184 MENU_XENT('o', N_("change rotation speed (rpm)")),
2a1a67df
KZ
185 MENU_XENT('y', N_("change number of physical cylinders")),
186 { 0, NULL }
187 }
188};
189
6ae5e1e0 190struct menu menu_sgi = {
aae727f2 191 .callback = sgi_menu_cb,
6ae5e1e0
KZ
192 .label = FDISK_DISKLABEL_SGI,
193 .entries = {
194 MENU_SEP(N_("SGI")),
195 MENU_ENT('a', N_("select bootable partition")),
196 MENU_ENT('b', N_("edit bootfile entry")),
197 MENU_ENT('c', N_("select sgi swap partition")),
aae727f2 198 MENU_ENT('i', N_("create SGI info")),
6ae5e1e0
KZ
199 { 0, NULL }
200 }
201};
202
203struct menu menu_dos = {
f02fecd1 204 .callback = dos_menu_cb,
6ae5e1e0
KZ
205 .label = FDISK_DISKLABEL_DOS,
206 .entries = {
207 MENU_BSEP(N_("DOS (MBR)")),
208 MENU_ENT('a', N_("toggle a bootable flag")),
209 MENU_ENT('b', N_("edit nested BSD disklabel")),
210 MENU_ENT('c', N_("toggle the dos compatibility flag")),
211
212 MENU_XENT('b', N_("move beginning of data in a partition")),
6ae5e1e0 213 MENU_XENT('f', N_("fix partition order")),
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
KZ
279 /* exclude non-expert entries in expect mode */
280 (e->expert == 0 && fdisk_context_display_details(cxt)) ||
f92e1810
KZ
281 /* nested only */
282 (e->parent && (!cxt->parent || cxt->parent->label->id != e->parent)) ||
161b0d1a
KZ
283 /* exclude non-normal entries in normal mode */
284 (e->normal == 0 && !fdisk_context_display_details(cxt))) {
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
161b0d1a 351 if (fdisk_context_display_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)) {
80a1712f 362 color_enable(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
399 if (fdisk_context_display_details(cxt))
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':
e146ae4e
KZ
450 if (fdisk_context_is_readonly(cxt)) {
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)
462 rc = fdisk_context_deassign_device(cxt);
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
KZ
484 break;
485 case 'r':
486 rc = fdisk_context_enable_details(cxt, 0);
487 break;
488 }
489 return rc;
490 }
491
492 /* normal mode */
493 switch (ent->key) {
494 case 'd':
495 rc = fdisk_ask_partnum(cxt, &n, FALSE);
496 if (!rc)
497 rc = fdisk_delete_partition(cxt, n);
498 if (rc)
48d4d931 499 fdisk_warnx(cxt, _("Could not delete partition %zu"), n + 1);
27ddd4f1 500 else
48d4d931 501 fdisk_info(cxt, _("Partition %zu has been deleted."), n + 1);
27ddd4f1
KZ
502 break;
503 case 'l':
504 list_partition_types(cxt);
505 break;
506 case 'n':
507 rc = fdisk_add_partition(cxt, NULL);
508 break;
509 case 't':
510 change_partition_type(cxt);
511 break;
512 case 'u':
513 fdisk_context_set_unit(cxt,
514 fdisk_context_use_cylinders(cxt) ? "sectors" :
515 "cylinders");
516 if (fdisk_context_use_cylinders(cxt))
517 fdisk_info(cxt, _("Changing display/entry units to cylinders (DEPRECATED!)."));
518 else
519 fdisk_info(cxt, _("Changing display/entry units to sectors."));
520 break;
521 case 'x':
522 fdisk_context_enable_details(cxt, 1);
523 break;
524 case 'r':
f92e1810 525 /* return from nested BSD to DOS */
27ddd4f1 526 if (cxt->parent) {
b5729667 527 *cxt0 = cxt->parent;
27ddd4f1 528
fd56121a 529 fdisk_info(cxt, _("Leaving nested disklabel."));
27ddd4f1 530 fdisk_free_context(cxt);
b5729667 531 cxt = *cxt0;
27ddd4f1
KZ
532 }
533 break;
89309968 534 }
27ddd4f1 535
89309968
KZ
536 return rc;
537}
538
8e40a677 539
b9e94cd7
KZ
540/*
541 * This is fdisk frontend for GPT specific libfdisk functions that
542 * are not expported by generic libfdisk API.
543 */
a47fec81 544static int gpt_menu_cb(struct fdisk_context **cxt0,
b9e94cd7
KZ
545 const struct menu *menu __attribute__((__unused__)),
546 const struct menu_entry *ent)
547{
a47fec81 548 struct fdisk_context *cxt = *cxt0;
f92e1810 549 struct fdisk_context *mbr;
b9e94cd7 550 size_t n;
f92e1810 551 int rc = 0;
b9e94cd7
KZ
552
553 assert(cxt);
554 assert(ent);
555 assert(fdisk_is_disklabel(cxt, GPT));
556
88141067 557 DBG(FRONTEND, ul_debug("enter GPT menu"));
b9e94cd7 558
f92e1810
KZ
559 if (ent->expert) {
560 switch (ent->key) {
561 case 'i':
562 return fdisk_set_disklabel_id(cxt);
563 case 'M':
564 mbr = fdisk_new_nested_context(cxt, "dos");
565 if (!mbr)
566 return -ENOMEM;
567 *cxt0 = cxt = mbr;
568 fdisk_context_enable_details(cxt, 1); /* keep us in expert mode */
569 fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
570 _("Entering protective/hybrid MBR disklabel."));
571 return 0;
572 }
35b1f0a4 573
f92e1810
KZ
574 /* actions where is necessary partnum */
575 rc = fdisk_ask_partnum(cxt, &n, FALSE);
576 if (rc)
577 return rc;
b9e94cd7 578
f92e1810
KZ
579 switch(ent->key) {
580 case 'u':
581 rc = fdisk_gpt_partition_set_uuid(cxt, n);
582 break;
583 case 'n':
584 rc = fdisk_gpt_partition_set_name(cxt, n);
585 break;
f362d863
KZ
586 case 'A':
587 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_LEGACYBOOT);
588 break;
589 case 'B':
590 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_NOBLOCK);
591 break;
592 case 'R':
593 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_REQUIRED);
594 break;
595 case 'S':
596 rc = fdisk_partition_toggle_flag(cxt, n, GPT_FLAG_GUIDSPECIFIC);
597 break;
f92e1810 598 }
b9e94cd7
KZ
599 }
600 return rc;
601}
602
f02fecd1
KZ
603
604/*
605 * This is fdisk frontend for MBR specific libfdisk functions that
606 * are not expported by generic libfdisk API.
607 */
a47fec81 608static int dos_menu_cb(struct fdisk_context **cxt0,
f02fecd1
KZ
609 const struct menu *menu __attribute__((__unused__)),
610 const struct menu_entry *ent)
611{
a47fec81 612 struct fdisk_context *cxt = *cxt0;
f02fecd1
KZ
613 int rc = 0;
614
88141067 615 DBG(FRONTEND, ul_debug("enter DOS menu"));
a47fec81 616
f02fecd1
KZ
617 if (!ent->expert) {
618 switch (ent->key) {
619 case 'a':
620 {
621 size_t n;
622 rc = fdisk_ask_partnum(cxt, &n, FALSE);
623 if (!rc)
624 rc = fdisk_partition_toggle_flag(cxt, n, DOS_FLAG_ACTIVE);
625 break;
626 }
627 case 'b':
628 {
629 struct fdisk_context *bsd
630 = fdisk_new_nested_context(cxt, "bsd");
818d7924
KZ
631 if (!bsd)
632 return -ENOMEM;
633 if (!fdisk_dev_has_disklabel(bsd))
634 rc = fdisk_create_disklabel(bsd, "bsd");
a47fec81
KZ
635 if (rc)
636 fdisk_free_context(bsd);
27ddd4f1 637 else {
a47fec81 638 *cxt0 = cxt = bsd;
f92e1810
KZ
639 fdisk_sinfo(cxt, FDISK_INFO_SUCCESS,
640 _("Entering nested BSD disklabel."));
27ddd4f1 641 }
f02fecd1
KZ
642 break;
643 }
644 case 'c':
645 toggle_dos_compatibility_flag(cxt);
646 break;
647 }
648 return rc;
649 }
650
651 /* expert mode */
652 switch (ent->key) {
653 case 'b':
654 {
655 size_t n;
656 rc = fdisk_ask_partnum(cxt, &n, FALSE);
657 if (!rc)
f8ad3899 658 rc = fdisk_dos_move_begin(cxt, n);
f02fecd1
KZ
659 break;
660 }
f02fecd1 661 case 'f':
f8ad3899 662 rc = fdisk_dos_fix_order(cxt);
f02fecd1
KZ
663 break;
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);
692 assert(fdisk_is_disklabel(cxt, SUN));
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);
747 assert(fdisk_is_disklabel(cxt, SGI));
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);
22ddf547 787 assert(fdisk_is_disklabel(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':
e563f055
KZ
799 org = fdisk_context_display_details(cxt);
800
801 fdisk_context_enable_details(cxt, 1);
9f670072 802 list_disklabel(cxt);
e563f055 803 fdisk_context_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}