96cb1a367f332e7aa53575e2f041e59c3b9f5e2d
[platform/kernel/u-boot.git] / cmd / eficonfig.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Menu-driven UEFI Variable maintenance
4  *
5  *  Copyright (c) 2022 Masahisa Kojima, Linaro Limited
6  */
7
8 #include <ansi.h>
9 #include <common.h>
10 #include <charset.h>
11 #include <efi_loader.h>
12 #include <efi_load_initrd.h>
13 #include <efi_config.h>
14 #include <efi_variable.h>
15 #include <log.h>
16 #include <malloc.h>
17 #include <menu.h>
18 #include <sort.h>
19 #include <watchdog.h>
20 #include <asm/unaligned.h>
21 #include <linux/delay.h>
22
23 static struct efi_simple_text_input_protocol *cin;
24
25 #define EFICONFIG_DESCRIPTION_MAX 32
26 #define EFICONFIG_OPTIONAL_DATA_MAX 64
27
28 /**
29  * struct eficonfig_filepath_info - structure to be used to store file path
30  *
31  * @name:       file or directory name
32  * @list:       list structure
33  */
34 struct eficonfig_filepath_info {
35         char *name;
36         struct list_head list;
37 };
38
39 /**
40  * struct eficonfig_boot_option - structure to be used for updating UEFI boot option
41  *
42  * @file_info:          user selected file info
43  * @initrd_info:        user selected initrd file info
44  * @boot_index:         index of the boot option
45  * @description:        pointer to the description string
46  * @optional_data:      pointer to the optional_data
47  * @edit_completed:     flag indicates edit complete
48  */
49 struct eficonfig_boot_option {
50         struct eficonfig_select_file_info file_info;
51         struct eficonfig_select_file_info initrd_info;
52         unsigned int boot_index;
53         u16 *description;
54         u16 *optional_data;
55         bool edit_completed;
56 };
57
58 /**
59  * struct eficonfig_volume_entry_data - structure to be used to store volume info
60  *
61  * @file_info:  pointer to file info structure
62  * @v:          pointer to the protocol interface
63  * @dp:         pointer to the device path
64  */
65 struct eficonfig_volume_entry_data {
66         struct eficonfig_select_file_info *file_info;
67         struct efi_simple_file_system_protocol *v;
68         struct efi_device_path *dp;
69 };
70
71 /**
72  * struct eficonfig_file_entry_data - structure to be used to store file info
73  *
74  * @file_info:          pointer to file info structure
75  * @is_directory:       flag to identify the directory or file
76  * @file_name:          name of directory or file
77  */
78 struct eficonfig_file_entry_data {
79         struct eficonfig_select_file_info *file_info;
80         bool is_directory;
81         char *file_name;
82 };
83
84 /**
85  * struct eficonfig_boot_selection_data - structure to be used to select the boot option entry
86  *
87  * @boot_index: index of the boot option
88  * @selected:           pointer to store the selected index in the BootOrder variable
89  */
90 struct eficonfig_boot_selection_data {
91         u16 boot_index;
92         int *selected;
93 };
94
95 /**
96  * struct eficonfig_boot_order_data - structure to be used to update BootOrder variable
97  *
98  * @boot_index:         boot option index
99  * @active:             flag to include the boot option into BootOrder variable
100  */
101 struct eficonfig_boot_order_data {
102         u32 boot_index;
103         bool active;
104 };
105
106 /**
107  * eficonfig_print_msg() - print message
108  *
109  * display the message to the user, user proceeds the screen
110  * with any key press.
111  *
112  * @items:              pointer to the structure of each menu entry
113  * @count:              the number of menu entry
114  * @menu_header:        pointer to the menu header string
115  * Return:      status code
116  */
117 void eficonfig_print_msg(char *msg)
118 {
119         /* Flush input */
120         while (tstc())
121                 getchar();
122
123         printf(ANSI_CURSOR_HIDE
124                ANSI_CLEAR_CONSOLE
125                ANSI_CURSOR_POSITION
126                "%s\n\n  Press any key to continue", 3, 4, msg);
127
128         getchar();
129 }
130
131 /**
132  * eficonfig_print_entry() - print each menu entry
133  *
134  * @data:       pointer to the data associated with each menu entry
135  */
136 static void eficonfig_print_entry(void *data)
137 {
138         struct eficonfig_entry *entry = data;
139         int reverse = (entry->efi_menu->active == entry->num);
140
141         /* TODO: support scroll or page for many entries */
142
143         /*
144          * Move cursor to line where the entry will be drawn (entry->num)
145          * First 3 lines(menu header) + 1 empty line
146          */
147         printf(ANSI_CURSOR_POSITION, entry->num + 4, 7);
148
149         if (reverse)
150                 puts(ANSI_COLOR_REVERSE);
151
152         printf("%s", entry->title);
153
154         if (reverse)
155                 puts(ANSI_COLOR_RESET);
156 }
157
158 /**
159  * eficonfig_display_statusline() - print status line
160  *
161  * @m:  pointer to the menu structure
162  */
163 static void eficonfig_display_statusline(struct menu *m)
164 {
165         struct eficonfig_entry *entry;
166
167         if (menu_default_choice(m, (void *)&entry) < 0)
168                 return;
169
170         printf(ANSI_CURSOR_POSITION
171               "\n%s\n"
172                ANSI_CURSOR_POSITION ANSI_CLEAR_LINE ANSI_CURSOR_POSITION
173                "  Press UP/DOWN to move, ENTER to select, ESC/CTRL+C to quit"
174                ANSI_CLEAR_LINE_TO_END ANSI_CURSOR_POSITION ANSI_CLEAR_LINE,
175                1, 1, entry->efi_menu->menu_header, entry->efi_menu->count + 5, 1,
176                entry->efi_menu->count + 6, 1, entry->efi_menu->count + 7, 1);
177 }
178
179 /**
180  * eficonfig_choice_entry() - user key input handler
181  *
182  * @data:       pointer to the efimenu structure
183  * Return:      key string to identify the selected entry
184  */
185 static char *eficonfig_choice_entry(void *data)
186 {
187         int esc = 0;
188         struct list_head *pos, *n;
189         struct eficonfig_entry *entry;
190         enum bootmenu_key key = BKEY_NONE;
191         struct efimenu *efi_menu = data;
192
193         while (1) {
194                 key = bootmenu_loop((struct bootmenu_data *)efi_menu, &esc);
195
196                 switch (key) {
197                 case BKEY_UP:
198                         if (efi_menu->active > 0)
199                                 --efi_menu->active;
200                         /* no menu key selected, regenerate menu */
201                         return NULL;
202                 case BKEY_DOWN:
203                         if (efi_menu->active < efi_menu->count - 1)
204                                 ++efi_menu->active;
205                         /* no menu key selected, regenerate menu */
206                         return NULL;
207                 case BKEY_SELECT:
208                         list_for_each_safe(pos, n, &efi_menu->list) {
209                                 entry = list_entry(pos, struct eficonfig_entry, list);
210                                 if (entry->num == efi_menu->active)
211                                         return entry->key;
212                         }
213                         break;
214                 case BKEY_QUIT:
215                         /* Quit by choosing the last entry */
216                         entry = list_last_entry(&efi_menu->list, struct eficonfig_entry, list);
217                         return entry->key;
218                 default:
219                         /* Pressed key is not valid, no need to regenerate the menu */
220                         break;
221                 }
222         }
223 }
224
225 /**
226  * eficonfig_destroy() - destroy efimenu
227  *
228  * @efi_menu:   pointer to the efimenu structure
229  */
230 void eficonfig_destroy(struct efimenu *efi_menu)
231 {
232         struct list_head *pos, *n;
233         struct eficonfig_entry *entry;
234
235         if (!efi_menu)
236                 return;
237
238         list_for_each_safe(pos, n, &efi_menu->list) {
239                 entry = list_entry(pos, struct eficonfig_entry, list);
240                 free(entry->title);
241                 list_del(&entry->list);
242                 free(entry);
243         }
244         free(efi_menu->menu_header);
245         free(efi_menu);
246 }
247
248 /**
249  * eficonfig_process_quit() - callback function for "Quit" entry
250  *
251  * @data:       pointer to the data
252  * Return:      status code
253  */
254 efi_status_t eficonfig_process_quit(void *data)
255 {
256         return EFI_ABORTED;
257 }
258
259 /**
260  * eficonfig_append_menu_entry() - append menu item
261  *
262  * @efi_menu:   pointer to the efimenu structure
263  * @title:      pointer to the entry title
264  * @func:       callback of each entry
265  * @data:       pointer to the data to be passed to each entry callback
266  * Return:      status code
267  */
268 efi_status_t eficonfig_append_menu_entry(struct efimenu *efi_menu,
269                                          char *title, eficonfig_entry_func func,
270                                          void *data)
271 {
272         struct eficonfig_entry *entry;
273
274         if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX)
275                 return EFI_OUT_OF_RESOURCES;
276
277         entry = calloc(1, sizeof(struct eficonfig_entry));
278         if (!entry)
279                 return EFI_OUT_OF_RESOURCES;
280
281         entry->title = title;
282         sprintf(entry->key, "%d", efi_menu->count);
283         entry->efi_menu = efi_menu;
284         entry->func = func;
285         entry->data = data;
286         entry->num = efi_menu->count++;
287         list_add_tail(&entry->list, &efi_menu->list);
288
289         return EFI_SUCCESS;
290 }
291
292 /**
293  * eficonfig_append_quit_entry() - append quit entry
294  *
295  * @efi_menu:   pointer to the efimenu structure
296  * Return:      status code
297  */
298 efi_status_t eficonfig_append_quit_entry(struct efimenu *efi_menu)
299 {
300         char *title;
301         efi_status_t ret;
302
303         title = strdup("Quit");
304         if (!title)
305                 return EFI_OUT_OF_RESOURCES;
306
307         ret = eficonfig_append_menu_entry(efi_menu, title, eficonfig_process_quit, NULL);
308         if (ret != EFI_SUCCESS)
309                 free(title);
310
311         return ret;
312 }
313
314 /**
315  * eficonfig_create_fixed_menu() - create fixed entry menu structure
316  *
317  * @items:      pointer to the menu entry item
318  * @count:      the number of menu entry
319  * Return:      pointer to the efimenu structure
320  */
321 void *eficonfig_create_fixed_menu(const struct eficonfig_item *items, int count)
322 {
323         u32 i;
324         char *title;
325         efi_status_t ret;
326         struct efimenu *efi_menu;
327         const struct eficonfig_item *iter = items;
328
329         efi_menu = calloc(1, sizeof(struct efimenu));
330         if (!efi_menu)
331                 return NULL;
332
333         INIT_LIST_HEAD(&efi_menu->list);
334         for (i = 0; i < count; i++, iter++) {
335                 title = strdup(iter->title);
336                 if (!title)
337                         goto out;
338
339                 ret = eficonfig_append_menu_entry(efi_menu, title, iter->func, iter->data);
340                 if (ret != EFI_SUCCESS) {
341                         free(title);
342                         goto out;
343                 }
344         }
345
346         return efi_menu;
347 out:
348         eficonfig_destroy(efi_menu);
349
350         return NULL;
351 }
352
353 /**
354  * eficonfig_process_common() - main handler for UEFI menu
355  *
356  * Construct the structures required to show the menu, then handle
357  * the user input interacting with u-boot menu functions.
358  *
359  * @efi_menu:           pointer to the efimenu structure
360  * @menu_header:        pointer to the menu header string
361  * Return:              status code
362  */
363 efi_status_t eficonfig_process_common(struct efimenu *efi_menu, char *menu_header)
364 {
365         struct menu *menu;
366         void *choice = NULL;
367         struct list_head *pos, *n;
368         struct eficonfig_entry *entry;
369         efi_status_t ret = EFI_SUCCESS;
370
371         if (efi_menu->count > EFICONFIG_ENTRY_NUM_MAX)
372                 return EFI_OUT_OF_RESOURCES;
373
374         efi_menu->delay = -1;
375         efi_menu->active = 0;
376
377         if (menu_header) {
378                 efi_menu->menu_header = strdup(menu_header);
379                 if (!efi_menu->menu_header)
380                         return EFI_OUT_OF_RESOURCES;
381         }
382
383         menu = menu_create(NULL, 0, 1, eficonfig_display_statusline,
384                            eficonfig_print_entry, eficonfig_choice_entry,
385                            efi_menu);
386         if (!menu)
387                 return EFI_INVALID_PARAMETER;
388
389         list_for_each_safe(pos, n, &efi_menu->list) {
390                 entry = list_entry(pos, struct eficonfig_entry, list);
391                 if (!menu_item_add(menu, entry->key, entry)) {
392                         ret = EFI_INVALID_PARAMETER;
393                         goto out;
394                 }
395         }
396
397         entry = list_first_entry_or_null(&efi_menu->list, struct eficonfig_entry, list);
398         if (entry)
399                 menu_default_set(menu, entry->key);
400
401         printf(ANSI_CURSOR_HIDE
402                ANSI_CLEAR_CONSOLE
403                ANSI_CURSOR_POSITION, 1, 1);
404
405         if (menu_get_choice(menu, &choice)) {
406                 entry = choice;
407                 if (entry->func)
408                         ret = entry->func(entry->data);
409         }
410 out:
411         menu_destroy(menu);
412
413         printf(ANSI_CLEAR_CONSOLE
414                ANSI_CURSOR_POSITION
415                ANSI_CURSOR_SHOW, 1, 1);
416
417         return ret;
418 }
419
420 /**
421  * eficonfig_volume_selected() - handler of volume selection
422  *
423  * @data:       pointer to the data of selected entry
424  * Return:      status code
425  */
426 static efi_status_t eficonfig_volume_selected(void *data)
427 {
428         struct eficonfig_volume_entry_data *info = data;
429
430         if (info) {
431                 info->file_info->current_volume = info->v;
432                 info->file_info->dp_volume = info->dp;
433         }
434
435         return EFI_SUCCESS;
436 }
437
438 /**
439  * eficonfig_create_device_path() - create device path
440  *
441  * @dp_volume:  pointer to the volume
442  * @current_path: pointer to the file path u16 string
443  * Return:
444  * device path or NULL. Caller must free the returned value
445  */
446 struct efi_device_path *eficonfig_create_device_path(struct efi_device_path *dp_volume,
447                                                      u16 *current_path)
448 {
449         char *p;
450         void *buf;
451         efi_uintn_t fp_size;
452         struct efi_device_path *dp;
453         struct efi_device_path_file_path *fp;
454
455         fp_size = sizeof(struct efi_device_path) + u16_strsize(current_path);
456         buf = calloc(1, fp_size + sizeof(END));
457         if (!buf)
458                 return NULL;
459
460         fp = buf;
461         fp->dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE,
462         fp->dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH,
463         fp->dp.length = (u16)fp_size;
464         u16_strcpy(fp->str, current_path);
465
466         p = buf;
467         p += fp_size;
468         *((struct efi_device_path *)p) = END;
469
470         dp = efi_dp_append(dp_volume, (struct efi_device_path *)buf);
471         free(buf);
472
473         return dp;
474 }
475
476 /**
477  * eficonfig_file_selected() - handler of file selection
478  *
479  * @data:       pointer to the data of selected entry
480  * Return:      status code
481  */
482 static efi_status_t eficonfig_file_selected(void *data)
483 {
484         u16 *tmp;
485         struct eficonfig_file_entry_data *info = data;
486
487         if (!info)
488                 return EFI_INVALID_PARAMETER;
489
490         if (!strcmp(info->file_name, "..\\")) {
491                 struct eficonfig_filepath_info *iter;
492                 struct list_head *pos, *n;
493                 int is_last;
494                 char *filepath;
495                 tmp = info->file_info->current_path;
496
497                 memset(info->file_info->current_path, 0, EFICONFIG_FILE_PATH_BUF_SIZE);
498                 filepath = calloc(1, EFICONFIG_FILE_PATH_MAX);
499                 if (!filepath)
500                         return EFI_OUT_OF_RESOURCES;
501
502                 list_for_each_safe(pos, n, &info->file_info->filepath_list) {
503                         iter = list_entry(pos, struct eficonfig_filepath_info, list);
504
505                         is_last = list_is_last(&iter->list, &info->file_info->filepath_list);
506                         if (is_last) {
507                                 list_del(&iter->list);
508                                 free(iter->name);
509                                 free(iter);
510                                 break;
511                         }
512                         strlcat(filepath, iter->name, EFICONFIG_FILE_PATH_MAX);
513                 }
514                 utf8_utf16_strcpy(&tmp, filepath);
515         } else {
516                 size_t new_len;
517                 struct eficonfig_filepath_info *filepath_info;
518
519                 new_len = u16_strlen(info->file_info->current_path) +
520                                      strlen(info->file_name);
521                 if (new_len >= EFICONFIG_FILE_PATH_MAX) {
522                         eficonfig_print_msg("File path is too long!");
523                         return EFI_INVALID_PARAMETER;
524                 }
525                 tmp = &info->file_info->current_path[u16_strlen(info->file_info->current_path)];
526                 utf8_utf16_strcpy(&tmp, info->file_name);
527
528                 filepath_info = calloc(1, sizeof(struct eficonfig_filepath_info));
529                 if (!filepath_info)
530                         return EFI_OUT_OF_RESOURCES;
531
532                 filepath_info->name = strdup(info->file_name);
533                 if (!filepath_info->name) {
534                         free(filepath_info);
535                         return EFI_OUT_OF_RESOURCES;
536                 }
537                 list_add_tail(&filepath_info->list, &info->file_info->filepath_list);
538
539                 if (!info->is_directory)
540                         info->file_info->file_selected = true;
541         }
542
543         return EFI_SUCCESS;
544 }
545
546 /**
547  * eficonfig_select_volume() - construct the volume selection menu
548  *
549  * @file_info:  pointer to the file selection structure
550  * Return:      status code
551  */
552 static efi_status_t eficonfig_select_volume(struct eficonfig_select_file_info *file_info)
553 {
554         u32 i;
555         efi_status_t ret;
556         efi_uintn_t count;
557         struct efimenu *efi_menu;
558         struct list_head *pos, *n;
559         struct efi_handler *handler;
560         struct eficonfig_entry *entry;
561         struct efi_device_path *device_path;
562         efi_handle_t *volume_handles = NULL;
563         struct efi_simple_file_system_protocol *v;
564
565         ret = efi_locate_handle_buffer_int(BY_PROTOCOL, &efi_simple_file_system_protocol_guid,
566                                            NULL, &count, (efi_handle_t **)&volume_handles);
567         if (ret != EFI_SUCCESS) {
568                 eficonfig_print_msg("No block device found!");
569                 return ret;
570         }
571
572         efi_menu = calloc(1, sizeof(struct efimenu));
573         if (!efi_menu)
574                 return EFI_OUT_OF_RESOURCES;
575
576         INIT_LIST_HEAD(&efi_menu->list);
577         for (i = 0; i < count; i++) {
578                 char *devname;
579                 struct efi_block_io *block_io;
580                 struct eficonfig_volume_entry_data *info;
581
582                 if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX - 1)
583                         break;
584
585                 ret = efi_search_protocol(volume_handles[i],
586                                           &efi_simple_file_system_protocol_guid, &handler);
587                 if (ret != EFI_SUCCESS)
588                         continue;
589                 ret = efi_protocol_open(handler, (void **)&v, efi_root, NULL,
590                                         EFI_OPEN_PROTOCOL_GET_PROTOCOL);
591                 if (ret != EFI_SUCCESS)
592                         continue;
593
594                 ret = efi_search_protocol(volume_handles[i], &efi_guid_device_path, &handler);
595                 if (ret != EFI_SUCCESS)
596                         continue;
597                 ret = efi_protocol_open(handler, (void **)&device_path,
598                                         efi_root, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
599                 if (ret != EFI_SUCCESS)
600                         continue;
601
602                 ret = efi_search_protocol(volume_handles[i], &efi_block_io_guid, &handler);
603                 if (ret != EFI_SUCCESS)
604                         continue;
605                 ret = efi_protocol_open(handler, (void **)&block_io,
606                                         efi_root, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
607                 if (ret != EFI_SUCCESS)
608                         continue;
609
610                 info = calloc(1, sizeof(struct eficonfig_volume_entry_data));
611                 if (!info) {
612                         ret = EFI_OUT_OF_RESOURCES;
613                         goto out;
614                 }
615
616                 devname = calloc(1, BOOTMENU_DEVICE_NAME_MAX);
617                 if (!devname) {
618                         free(info);
619                         ret = EFI_OUT_OF_RESOURCES;
620                         goto out;
621                 }
622                 ret = efi_disk_get_device_name(volume_handles[i], devname,
623                                                BOOTMENU_DEVICE_NAME_MAX);
624                 if (ret != EFI_SUCCESS) {
625                         free(info);
626                         goto out;
627                 }
628
629                 info->v = v;
630                 info->dp = device_path;
631                 info->file_info = file_info;
632                 ret = eficonfig_append_menu_entry(efi_menu, devname, eficonfig_volume_selected,
633                                                   info);
634                 if (ret != EFI_SUCCESS) {
635                         free(info);
636                         goto out;
637                 }
638         }
639
640         ret = eficonfig_append_quit_entry(efi_menu);
641         if (ret != EFI_SUCCESS)
642                 goto out;
643
644         ret = eficonfig_process_common(efi_menu, "  ** Select Volume **");
645 out:
646         efi_free_pool(volume_handles);
647         list_for_each_safe(pos, n, &efi_menu->list) {
648                 entry = list_entry(pos, struct eficonfig_entry, list);
649                 free(entry->data);
650         }
651         eficonfig_destroy(efi_menu);
652
653         return ret;
654 }
655
656 /**
657  * sort_file() - sort the file name in ascii order
658  *
659  * @data1:      pointer to the file entry data
660  * @data2:      pointer to the file entry data
661  * Return:      -1 if the data1 file name is less than data2 file name,
662  *              0 if both file name match,
663  *              1 if the data1 file name is greater thant data2 file name.
664  */
665 static int sort_file(const void *arg1, const void *arg2)
666 {
667         const struct eficonfig_file_entry_data *data1, *data2;
668
669         data1 = *((const struct eficonfig_file_entry_data **)arg1);
670         data2 = *((const struct eficonfig_file_entry_data **)arg2);
671
672         return strcasecmp(data1->file_name, data2->file_name);
673 }
674
675 /**
676  * eficonfig_create_file_entry() - construct the file menu entry
677  *
678  * @efi_menu:   pointer to the efimenu structure
679  * @count:      number of the directory and file
680  * @tmp_infos:  pointer to the entry data array
681  * @f:          pointer to the file handle
682  * @buf:        pointer to the buffer to store the directory information
683  * @file_info:  pointer to the file selection structure
684  * Return:      status code
685  */
686 static efi_status_t
687 eficonfig_create_file_entry(struct efimenu *efi_menu, u32 count,
688                             struct eficonfig_file_entry_data **tmp_infos,
689                             struct efi_file_handle *f, struct efi_file_info *buf,
690                             struct eficonfig_select_file_info *file_info)
691 {
692         char *name, *p;
693         efi_uintn_t len;
694         efi_status_t ret;
695         u32 i, entry_num = 0;
696         struct eficonfig_file_entry_data *info;
697
698         EFI_CALL(f->setpos(f, 0));
699         /* Read directory and construct menu structure */
700         for (i = 0; i < count; i++) {
701                 if (entry_num >= EFICONFIG_ENTRY_NUM_MAX - 1)
702                         break;
703
704                 len = sizeof(struct efi_file_info) + EFICONFIG_FILE_PATH_BUF_SIZE;
705                 ret = EFI_CALL(f->read(f, &len, buf));
706                 if (ret != EFI_SUCCESS || len == 0)
707                         break;
708
709                 info = calloc(1, sizeof(struct eficonfig_file_entry_data));
710                 if (!info) {
711                         ret = EFI_OUT_OF_RESOURCES;
712                         goto out;
713                 }
714
715                 /* append '\\' at the end of directory name */
716                 name = calloc(1, utf16_utf8_strlen(buf->file_name) + 2);
717                 if (!name) {
718                         ret = EFI_OUT_OF_RESOURCES;
719                         free(info);
720                         goto out;
721                 }
722                 p = name;
723                 utf16_utf8_strcpy(&p, buf->file_name);
724                 if (buf->attribute & EFI_FILE_DIRECTORY) {
725                         /* filter out u'.' */
726                         if (!u16_strcmp(buf->file_name, u".")) {
727                                 free(info);
728                                 free(name);
729                                 continue;
730                         }
731                         name[u16_strlen(buf->file_name)] = '\\';
732                         info->is_directory = true;
733                 }
734
735                 info->file_name = name;
736                 info->file_info = file_info;
737                 tmp_infos[entry_num++] = info;
738         }
739
740         qsort(tmp_infos, entry_num, sizeof(*tmp_infos),
741               (int (*)(const void *, const void *))sort_file);
742
743         for (i = 0; i < entry_num; i++) {
744                 ret = eficonfig_append_menu_entry(efi_menu, tmp_infos[i]->file_name,
745                                                   eficonfig_file_selected, tmp_infos[i]);
746                 if (ret != EFI_SUCCESS)
747                         goto out;
748         }
749
750 out:
751         return ret;
752 }
753
754 /**
755  * eficonfig_show_file_selection() - construct the file selection menu
756  *
757  * @file_info:  pointer to the file selection structure
758  * @root:       pointer to the file handle
759  * Return:      status code
760  */
761 static efi_status_t eficonfig_show_file_selection(struct eficonfig_select_file_info *file_info,
762                                                   struct efi_file_handle *root)
763 {
764         u32 count = 0, i;
765         efi_uintn_t len;
766         efi_status_t ret;
767         struct efimenu *efi_menu;
768         struct efi_file_handle *f;
769         struct efi_file_info *buf;
770         struct eficonfig_file_entry_data **tmp_infos;
771
772         buf = calloc(1, sizeof(struct efi_file_info) + EFICONFIG_FILE_PATH_BUF_SIZE);
773         if (!buf)
774                 return EFI_OUT_OF_RESOURCES;
775
776         while (!file_info->file_selected) {
777                 efi_menu = calloc(1, sizeof(struct efimenu));
778                 if (!efi_menu) {
779                         ret = EFI_OUT_OF_RESOURCES;
780                         goto out;
781                 }
782                 INIT_LIST_HEAD(&efi_menu->list);
783
784                 ret = EFI_CALL(root->open(root, &f, file_info->current_path,
785                                           EFI_FILE_MODE_READ, 0));
786                 if (ret != EFI_SUCCESS) {
787                         eficonfig_print_msg("Reading volume failed!");
788                         free(efi_menu);
789                         ret = EFI_ABORTED;
790                         goto out;
791                 }
792
793                 /* Count the number of directory entries */
794                 for (;;) {
795                         len = sizeof(struct efi_file_info) + EFICONFIG_FILE_PATH_BUF_SIZE;
796                         ret = EFI_CALL(f->read(f, &len, buf));
797                         if (ret != EFI_SUCCESS || len == 0)
798                                 break;
799
800                         count++;
801                 }
802
803                 /* allocate array to sort the entry */
804                 tmp_infos = calloc(count, sizeof(*tmp_infos));
805                 if (!tmp_infos) {
806                         ret = EFI_OUT_OF_RESOURCES;
807                         goto err;
808                 }
809
810                 ret = eficonfig_create_file_entry(efi_menu, count, tmp_infos,
811                                                   f, buf, file_info);
812                 if (ret != EFI_SUCCESS)
813                         goto err;
814
815                 ret = eficonfig_append_quit_entry(efi_menu);
816                 if (ret != EFI_SUCCESS)
817                         goto err;
818
819                 ret = eficonfig_process_common(efi_menu, "  ** Select File **");
820 err:
821                 EFI_CALL(f->close(f));
822                 eficonfig_destroy(efi_menu);
823
824                 if (tmp_infos) {
825                         for (i = 0; i < count; i++)
826                                 free(tmp_infos[i]);
827                 }
828
829                 free(tmp_infos);
830
831                 if (ret != EFI_SUCCESS)
832                         break;
833         }
834
835 out:
836         free(buf);
837
838         return ret;
839 }
840
841 /**
842  * handle_user_input() - handle user input
843  *
844  * @buf:        pointer to the buffer
845  * @buf_size:   size of the buffer
846  * @cursor_col: cursor column for user input
847  * @msg:        pointer to the string to display
848  * Return:      status code
849  */
850 static efi_status_t handle_user_input(u16 *buf, int buf_size,
851                                       int cursor_col, char *msg)
852 {
853         u16 *tmp;
854         efi_status_t ret;
855
856         printf(ANSI_CLEAR_CONSOLE
857                ANSI_CURSOR_POSITION
858                "%s"
859                ANSI_CURSOR_POSITION
860                "  Press ENTER to complete, ESC/CTRL+C to quit",
861                0, 1, msg, 8, 1);
862
863         /* tmp is used to accept user cancel */
864         tmp = calloc(1, buf_size * sizeof(u16));
865         if (!tmp)
866                 return EFI_OUT_OF_RESOURCES;
867
868         ret = efi_console_get_u16_string(cin, tmp, buf_size, NULL, 4, cursor_col);
869         if (ret == EFI_SUCCESS)
870                 u16_strcpy(buf, tmp);
871
872         free(tmp);
873
874         /* to stay the parent menu */
875         ret = (ret == EFI_ABORTED) ? EFI_NOT_READY : ret;
876
877         return ret;
878 }
879
880 /**
881  * eficonfig_boot_add_enter_description() - handle user input for description
882  *
883  * @data:       pointer to the internal boot option structure
884  * Return:      status code
885  */
886 static efi_status_t eficonfig_boot_add_enter_description(void *data)
887 {
888         struct eficonfig_boot_option *bo = data;
889
890         return handle_user_input(bo->description, EFICONFIG_DESCRIPTION_MAX, 22,
891                                  "\n  ** Edit Description **\n"
892                                  "\n"
893                                  "  enter description: ");
894 }
895
896 /**
897  * eficonfig_boot_add_optional_data() - handle user input for optional data
898  *
899  * @data:       pointer to the internal boot option structure
900  * Return:      status code
901  */
902 static efi_status_t eficonfig_boot_add_optional_data(void *data)
903 {
904         struct eficonfig_boot_option *bo = data;
905
906         return handle_user_input(bo->optional_data, EFICONFIG_OPTIONAL_DATA_MAX, 24,
907                                  "\n  ** Edit Optional Data **\n"
908                                  "\n"
909                                  "  enter optional data:");
910 }
911
912 /**
913  * eficonfig_boot_edit_save() - handler to save the boot option
914  *
915  * @data:       pointer to the internal boot option structure
916  * Return:      status code
917  */
918 static efi_status_t eficonfig_boot_edit_save(void *data)
919 {
920         struct eficonfig_boot_option *bo = data;
921
922         if (u16_strlen(bo->description) == 0) {
923                 eficonfig_print_msg("Boot Description is empty!");
924                 bo->edit_completed = false;
925                 return EFI_NOT_READY;
926         }
927         if (u16_strlen(bo->file_info.current_path) == 0) {
928                 eficonfig_print_msg("File is not selected!");
929                 bo->edit_completed = false;
930                 return EFI_NOT_READY;
931         }
932
933         bo->edit_completed = true;
934
935         return EFI_SUCCESS;
936 }
937
938 /**
939  * eficonfig_process_clear_file_selection() - callback function for "Clear" entry
940  *
941  * @data:       pointer to the data
942  * Return:      status code
943  */
944 efi_status_t eficonfig_process_clear_file_selection(void *data)
945 {
946         struct eficonfig_select_file_info *file_info = data;
947
948         /* clear the existing file information */
949         file_info->current_volume = NULL;
950         file_info->current_path[0] = u'\0';
951         file_info->dp_volume = NULL;
952
953         return EFI_ABORTED;
954 }
955
956 static struct eficonfig_item select_file_menu_items[] = {
957         {"Select File", eficonfig_process_select_file},
958         {"Clear", eficonfig_process_clear_file_selection},
959         {"Quit", eficonfig_process_quit},
960 };
961
962 /**
963  * eficonfig_process_show_file_option() - display select file option
964  *
965  * @file_info:  pointer to the file information structure
966  * Return:      status code
967  */
968 efi_status_t eficonfig_process_show_file_option(void *data)
969 {
970         efi_status_t ret;
971         struct efimenu *efi_menu;
972
973         select_file_menu_items[0].data = data;
974         select_file_menu_items[1].data = data;
975         efi_menu = eficonfig_create_fixed_menu(select_file_menu_items,
976                                                ARRAY_SIZE(select_file_menu_items));
977         if (!efi_menu)
978                 return EFI_OUT_OF_RESOURCES;
979
980         ret = eficonfig_process_common(efi_menu, "  ** Update File **");
981         if (ret != EFI_SUCCESS) /* User selects "Clear" or "Quit" */
982                 ret = EFI_NOT_READY;
983
984         eficonfig_destroy(efi_menu);
985
986         return ret;
987 }
988
989 /**
990  * eficonfig_process_select_file() - handle user file selection
991  *
992  * @data:       pointer to the data
993  * Return:      status code
994  */
995 efi_status_t eficonfig_process_select_file(void *data)
996 {
997         size_t len;
998         efi_status_t ret;
999         struct list_head *pos, *n;
1000         struct efi_file_handle *root;
1001         struct eficonfig_filepath_info *item;
1002         struct eficonfig_select_file_info *tmp = NULL;
1003         struct eficonfig_select_file_info *file_info = data;
1004
1005         tmp = calloc(1, sizeof(struct eficonfig_select_file_info));
1006         if (!tmp)
1007                 return EFI_OUT_OF_RESOURCES;
1008
1009         tmp->current_path = calloc(1, EFICONFIG_FILE_PATH_BUF_SIZE);
1010         if (!tmp->current_path) {
1011                 free(tmp);
1012                 return EFI_OUT_OF_RESOURCES;
1013         }
1014         INIT_LIST_HEAD(&tmp->filepath_list);
1015
1016         while (!tmp->file_selected) {
1017                 tmp->current_volume = NULL;
1018                 memset(tmp->current_path, 0, EFICONFIG_FILE_PATH_BUF_SIZE);
1019
1020                 ret = eficonfig_select_volume(tmp);
1021                 if (ret != EFI_SUCCESS)
1022                         goto out;
1023
1024                 if (!tmp->current_volume)
1025                         return EFI_INVALID_PARAMETER;
1026
1027                 ret = EFI_CALL(tmp->current_volume->open_volume(tmp->current_volume, &root));
1028                 if (ret != EFI_SUCCESS)
1029                         goto out;
1030
1031                 ret = eficonfig_show_file_selection(tmp, root);
1032                 if (ret == EFI_ABORTED)
1033                         continue;
1034                 if (ret != EFI_SUCCESS)
1035                         goto out;
1036         }
1037
1038 out:
1039         if (ret == EFI_SUCCESS) {
1040                 len = u16_strlen(tmp->current_path);
1041                 len = (len >= EFICONFIG_FILE_PATH_MAX) ? (EFICONFIG_FILE_PATH_MAX - 1) : len;
1042                 memcpy(file_info->current_path, tmp->current_path, len * sizeof(u16));
1043                 file_info->current_path[len] = u'\0';
1044                 file_info->current_volume = tmp->current_volume;
1045                 file_info->dp_volume = tmp->dp_volume;
1046         }
1047
1048         list_for_each_safe(pos, n, &tmp->filepath_list) {
1049                 item = list_entry(pos, struct eficonfig_filepath_info, list);
1050                 list_del(&item->list);
1051                 free(item->name);
1052                 free(item);
1053         }
1054         free(tmp->current_path);
1055         free(tmp);
1056
1057         /* to stay the parent menu */
1058         ret = (ret == EFI_ABORTED) ? EFI_NOT_READY : ret;
1059
1060         return ret;
1061 }
1062
1063 /**
1064  * eficonfig_get_unused_bootoption() - get unused "Boot####" index
1065  *
1066  * @buf:        pointer to the buffer to store boot option variable name
1067  * @buf_size:   buffer size
1068  * @index:      pointer to store the index in the BootOrder variable
1069  * Return:      status code
1070  */
1071 efi_status_t eficonfig_get_unused_bootoption(u16 *buf, efi_uintn_t buf_size,
1072                                              unsigned int *index)
1073 {
1074         u32 i;
1075         efi_status_t ret;
1076         efi_uintn_t size;
1077
1078         if (buf_size < u16_strsize(u"Boot####"))
1079                 return EFI_BUFFER_TOO_SMALL;
1080
1081         for (i = 0; i <= 0xFFFF; i++) {
1082                 size = 0;
1083                 efi_create_indexed_name(buf, buf_size, "Boot", i);
1084                 ret = efi_get_variable_int(buf, &efi_global_variable_guid,
1085                                            NULL, &size, NULL, NULL);
1086                 if (ret == EFI_BUFFER_TOO_SMALL)
1087                         continue;
1088                 else
1089                         break;
1090         }
1091
1092         if (i > 0xFFFF)
1093                 return EFI_OUT_OF_RESOURCES;
1094
1095         *index = i;
1096
1097         return EFI_SUCCESS;
1098 }
1099
1100 /**
1101  * eficonfig_set_boot_option() - set boot option
1102  *
1103  * @varname:            pointer to variable name
1104  * @dp:                 pointer to device path
1105  * @label:              pointer to label string
1106  * @optional_data:      pointer to optional data
1107  * Return:              status code
1108  */
1109 static efi_status_t eficonfig_set_boot_option(u16 *varname, struct efi_device_path *dp,
1110                                               efi_uintn_t dp_size, u16 *label, char *optional_data)
1111 {
1112         void *p = NULL;
1113         efi_status_t ret;
1114         efi_uintn_t size;
1115         struct efi_load_option lo;
1116
1117         lo.file_path = dp;
1118         lo.file_path_length = dp_size;
1119         lo.attributes = LOAD_OPTION_ACTIVE;
1120         lo.optional_data = optional_data;
1121         lo.label = label;
1122
1123         size = efi_serialize_load_option(&lo, (u8 **)&p);
1124         if (!size)
1125                 return EFI_INVALID_PARAMETER;
1126
1127         ret = efi_set_variable_int(varname, &efi_global_variable_guid,
1128                                    EFI_VARIABLE_NON_VOLATILE |
1129                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
1130                                    EFI_VARIABLE_RUNTIME_ACCESS,
1131                                    size, p, false);
1132         free(p);
1133
1134         return ret;
1135 }
1136
1137 /**
1138  * eficonfig_append_bootorder() - append new boot option in BootOrder variable
1139  *
1140  * @index:      "Boot####" index to append to BootOrder variable
1141  * Return:      status code
1142  */
1143 efi_status_t eficonfig_append_bootorder(u16 index)
1144 {
1145         u16 *bootorder;
1146         efi_status_t ret;
1147         u16 *new_bootorder = NULL;
1148         efi_uintn_t last, size, new_size;
1149
1150         /* append new boot option */
1151         bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
1152         last = size / sizeof(u16);
1153         new_size = size + sizeof(u16);
1154         new_bootorder = calloc(1, new_size);
1155         if (!new_bootorder) {
1156                 ret = EFI_OUT_OF_RESOURCES;
1157                 goto out;
1158         }
1159         memcpy(new_bootorder, bootorder, size);
1160         new_bootorder[last] = index;
1161
1162         ret = efi_set_variable_int(u"BootOrder", &efi_global_variable_guid,
1163                                    EFI_VARIABLE_NON_VOLATILE |
1164                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
1165                                    EFI_VARIABLE_RUNTIME_ACCESS,
1166                                    new_size, new_bootorder, false);
1167         if (ret != EFI_SUCCESS)
1168                 goto out;
1169
1170 out:
1171         free(bootorder);
1172         free(new_bootorder);
1173
1174         return ret;
1175 }
1176
1177 /**
1178  * create_boot_option_entry() - create boot option entry
1179  *
1180  * @efi_menu:   pointer to the efimenu structure
1181  * @title:      pointer to the entry title
1182  * @val:        pointer to boot option label
1183  * @func:       callback of each entry
1184  * @data:       pointer to the data to be passed to each entry callback
1185  * Return:      status code
1186  */
1187 static efi_status_t create_boot_option_entry(struct efimenu *efi_menu, char *title, u16 *val,
1188                                              eficonfig_entry_func func, void *data)
1189 {
1190         u32 len;
1191         char *p, *buf;
1192
1193         len = strlen(title) + 1;
1194         if (val)
1195                 len += utf16_utf8_strlen(val);
1196         buf = calloc(1, len);
1197         if (!buf)
1198                 return EFI_OUT_OF_RESOURCES;
1199
1200         strcpy(buf, title);
1201         if (val) {
1202                 p = buf + strlen(title);
1203                 utf16_utf8_strcpy(&p, val);
1204         }
1205
1206         return eficonfig_append_menu_entry(efi_menu, buf, func, data);
1207 }
1208
1209 /**
1210  * prepare_file_selection_entry() - prepare file selection entry
1211  *
1212  * @efi_menu:   pointer to the efimenu structure
1213  * @title:      pointer to the title string
1214  * @file_info:  pointer to the file info
1215  * Return:      status code
1216  */
1217 static efi_status_t prepare_file_selection_entry(struct efimenu *efi_menu, char *title,
1218                                                  struct eficonfig_select_file_info *file_info)
1219 {
1220         u32 len;
1221         efi_status_t ret;
1222         u16 *file_name = NULL, *p;
1223         efi_handle_t handle;
1224         char *devname;
1225
1226         devname = calloc(1, EFICONFIG_VOLUME_PATH_MAX + 1);
1227         if (!devname)
1228                 return EFI_OUT_OF_RESOURCES;
1229
1230         /* get the device name only when the user already selected the file path */
1231         handle = efi_dp_find_obj(file_info->dp_volume, NULL, NULL);
1232         if (handle) {
1233                 ret = efi_disk_get_device_name(handle, devname, EFICONFIG_VOLUME_PATH_MAX);
1234                 if (ret != EFI_SUCCESS)
1235                         goto out;
1236         }
1237
1238         /*
1239          * If the preconfigured volume does not exist in the system, display the text
1240          * converted volume device path instead of U-Boot friendly name(e.g. "usb 0:1").
1241          */
1242         if (!handle && file_info->dp_volume) {
1243                 u16 *dp_str;
1244                 char *q = devname;
1245
1246                 dp_str = efi_dp_str(file_info->dp_volume);
1247                 if (dp_str)
1248                         utf16_utf8_strncpy(&q, dp_str, EFICONFIG_VOLUME_PATH_MAX);
1249
1250                 efi_free_pool(dp_str);
1251         }
1252
1253         /* append u'/' to devname, it is just for display purpose. */
1254         if (file_info->current_path[0] != u'\0' && file_info->current_path[0] != u'/')
1255                 strlcat(devname, "/", EFICONFIG_VOLUME_PATH_MAX + 1);
1256
1257         len = strlen(devname);
1258         len += utf16_utf8_strlen(file_info->current_path) + 1;
1259         file_name = calloc(1, len * sizeof(u16));
1260         if (!file_name) {
1261                 ret = EFI_OUT_OF_RESOURCES;
1262                 goto out;
1263         }
1264
1265         p = file_name;
1266         utf8_utf16_strcpy(&p, devname);
1267         u16_strlcat(file_name, file_info->current_path, len);
1268         ret = create_boot_option_entry(efi_menu, title, file_name,
1269                                        eficonfig_process_show_file_option, file_info);
1270 out:
1271         free(devname);
1272         free(file_name);
1273
1274         return ret;
1275 }
1276
1277 /**
1278  * eficonfig_show_boot_option() - prepare menu entry for editing boot option
1279  *
1280  * Construct the structures to create edit boot option menu
1281  *
1282  * @bo:         pointer to the boot option
1283  * @header_str: pointer to the header string
1284  * Return:      status code
1285  */
1286 static efi_status_t eficonfig_show_boot_option(struct eficonfig_boot_option *bo,
1287                                                char *header_str)
1288 {
1289         efi_status_t ret;
1290         struct efimenu *efi_menu;
1291
1292         efi_menu = calloc(1, sizeof(struct efimenu));
1293         if (!efi_menu)
1294                 return EFI_OUT_OF_RESOURCES;
1295
1296         INIT_LIST_HEAD(&efi_menu->list);
1297
1298         ret = create_boot_option_entry(efi_menu, "Description: ", bo->description,
1299                                        eficonfig_boot_add_enter_description, bo);
1300         if (ret != EFI_SUCCESS)
1301                 goto out;
1302
1303         ret = prepare_file_selection_entry(efi_menu, "File: ", &bo->file_info);
1304         if (ret != EFI_SUCCESS)
1305                 goto out;
1306
1307         ret = prepare_file_selection_entry(efi_menu, "Initrd File: ", &bo->initrd_info);
1308         if (ret != EFI_SUCCESS)
1309                 goto out;
1310
1311         ret = create_boot_option_entry(efi_menu, "Optional Data: ", bo->optional_data,
1312                                        eficonfig_boot_add_optional_data, bo);
1313         if (ret != EFI_SUCCESS)
1314                 goto out;
1315
1316         ret = create_boot_option_entry(efi_menu, "Save", NULL,
1317                                        eficonfig_boot_edit_save, bo);
1318         if (ret != EFI_SUCCESS)
1319                 goto out;
1320
1321         ret = create_boot_option_entry(efi_menu, "Quit", NULL,
1322                                        eficonfig_process_quit, NULL);
1323         if (ret != EFI_SUCCESS)
1324                 goto out;
1325
1326         ret = eficonfig_process_common(efi_menu, header_str);
1327 out:
1328         eficonfig_destroy(efi_menu);
1329
1330         return ret;
1331 }
1332
1333 /**
1334  * fill_file_info() - fill the file info from efi_device_path structure
1335  *
1336  * @dp:         pointer to the device path
1337  * @file_info:  pointer to the file info structure
1338  * @device_dp:  pointer to the volume device path
1339  */
1340 static void fill_file_info(struct efi_device_path *dp,
1341                            struct eficonfig_select_file_info *file_info,
1342                            struct efi_device_path *device_dp)
1343 {
1344         u16 *file_str, *p;
1345         struct efi_device_path *file_dp = NULL;
1346
1347         efi_dp_split_file_path(dp, &device_dp, &file_dp);
1348         file_info->dp_volume = device_dp;
1349
1350         if (file_dp) {
1351                 file_str = efi_dp_str(file_dp);
1352                 /*
1353                  * efi_convert_device_path_to_text() automatically adds u'/' at the
1354                  * beginning of file name, remove u'/' before copying to current_path
1355                  */
1356                 p = file_str;
1357                 if (p[0] == u'/')
1358                         p++;
1359
1360                 u16_strcpy(file_info->current_path, p);
1361                 efi_free_pool(file_dp);
1362                 efi_free_pool(file_str);
1363         }
1364 }
1365
1366 /**
1367  * eficonfig_edit_boot_option() - prepare boot option structure for editing
1368  *
1369  * Construct the boot option structure and copy the existing value
1370  *
1371  * @varname:            pointer to the UEFI variable name
1372  * @bo:                 pointer to the boot option
1373  * @load_option:        pointer to the load option
1374  * @load_option_size:   size of the load option
1375  * @header_str:         pointer to the header string
1376  * Return       :       status code
1377  */
1378 static efi_status_t eficonfig_edit_boot_option(u16 *varname, struct eficonfig_boot_option *bo,
1379                                                void *load_option, efi_uintn_t load_option_size,
1380                                                char *header_str)
1381 {
1382         size_t len;
1383         efi_status_t ret;
1384         char *tmp = NULL, *p;
1385         struct efi_load_option lo = {0};
1386         efi_uintn_t final_dp_size;
1387         struct efi_device_path *dp = NULL;
1388         efi_uintn_t size = load_option_size;
1389         struct efi_device_path *final_dp = NULL;
1390         struct efi_device_path *device_dp = NULL;
1391         struct efi_device_path *initrd_dp = NULL;
1392         struct efi_device_path *initrd_device_dp = NULL;
1393
1394         const struct efi_initrd_dp id_dp = {
1395                 .vendor = {
1396                         {
1397                         DEVICE_PATH_TYPE_MEDIA_DEVICE,
1398                         DEVICE_PATH_SUB_TYPE_VENDOR_PATH,
1399                         sizeof(id_dp.vendor),
1400                         },
1401                         EFI_INITRD_MEDIA_GUID,
1402                 },
1403                 .end = {
1404                         DEVICE_PATH_TYPE_END,
1405                         DEVICE_PATH_SUB_TYPE_END,
1406                         sizeof(id_dp.end),
1407                 }
1408         };
1409
1410         bo->file_info.current_path = calloc(1, EFICONFIG_FILE_PATH_BUF_SIZE);
1411         if (!bo->file_info.current_path) {
1412                 ret =  EFI_OUT_OF_RESOURCES;
1413                 goto out;
1414         }
1415
1416         bo->initrd_info.current_path = calloc(1, EFICONFIG_FILE_PATH_BUF_SIZE);
1417         if (!bo->file_info.current_path) {
1418                 ret =  EFI_OUT_OF_RESOURCES;
1419                 goto out;
1420         }
1421
1422         bo->description = calloc(1, EFICONFIG_DESCRIPTION_MAX * sizeof(u16));
1423         if (!bo->description) {
1424                 ret =  EFI_OUT_OF_RESOURCES;
1425                 goto out;
1426         }
1427
1428         bo->optional_data = calloc(1, EFICONFIG_OPTIONAL_DATA_MAX * sizeof(u16));
1429         if (!bo->optional_data) {
1430                 ret =  EFI_OUT_OF_RESOURCES;
1431                 goto out;
1432         }
1433
1434         /* copy the preset value */
1435         if (load_option) {
1436                 ret = efi_deserialize_load_option(&lo, load_option, &size);
1437                 if (ret != EFI_SUCCESS)
1438                         goto out;
1439
1440                 if (!lo.label) {
1441                         ret = EFI_INVALID_PARAMETER;
1442                         goto out;
1443                 }
1444                 /* truncate the long label string */
1445                 if (u16_strlen(lo.label) >= EFICONFIG_DESCRIPTION_MAX)
1446                         lo.label[EFICONFIG_DESCRIPTION_MAX - 1] = u'\0';
1447
1448                 u16_strcpy(bo->description, lo.label);
1449
1450                 /* EFI image file path is a first instance */
1451                 if (lo.file_path)
1452                         fill_file_info(lo.file_path, &bo->file_info, device_dp);
1453
1454                 /* Initrd file path(optional) is placed at second instance. */
1455                 initrd_dp = efi_dp_from_lo(&lo, &efi_lf2_initrd_guid);
1456                 if (initrd_dp) {
1457                         fill_file_info(initrd_dp, &bo->initrd_info, initrd_device_dp);
1458                         efi_free_pool(initrd_dp);
1459                 }
1460
1461                 if (size > 0)
1462                         memcpy(bo->optional_data, lo.optional_data, size);
1463         }
1464
1465         while (1) {
1466                 ret = eficonfig_show_boot_option(bo, header_str);
1467                 if (ret == EFI_SUCCESS && bo->edit_completed)
1468                         break;
1469                 if (ret == EFI_NOT_READY)
1470                         continue;
1471                 if (ret != EFI_SUCCESS)
1472                         goto out;
1473         }
1474
1475         if (bo->initrd_info.dp_volume) {
1476                 dp = eficonfig_create_device_path(bo->initrd_info.dp_volume,
1477                                                  bo->initrd_info.current_path);
1478                 if (!dp) {
1479                         ret = EFI_OUT_OF_RESOURCES;
1480                         goto out;
1481                 }
1482                 initrd_dp = efi_dp_append((const struct efi_device_path *)&id_dp, dp);
1483                 efi_free_pool(dp);
1484         }
1485
1486         dp = eficonfig_create_device_path(bo->file_info.dp_volume, bo->file_info.current_path);
1487         if (!dp) {
1488                 ret = EFI_OUT_OF_RESOURCES;
1489                 goto out;
1490         }
1491         final_dp_size = efi_dp_size(dp) + sizeof(END);
1492         if (initrd_dp) {
1493                 final_dp = efi_dp_concat(dp, initrd_dp);
1494                 final_dp_size += efi_dp_size(initrd_dp) + sizeof(END);
1495         } else {
1496                 final_dp = efi_dp_dup(dp);
1497         }
1498         efi_free_pool(dp);
1499
1500         if (!final_dp)
1501                 goto out;
1502
1503         if (utf16_utf8_strlen(bo->optional_data)) {
1504                 len = utf16_utf8_strlen(bo->optional_data) + 1;
1505                 tmp = calloc(1, len);
1506                 if (!tmp)
1507                         goto out;
1508                 p = tmp;
1509                 utf16_utf8_strncpy(&p, bo->optional_data, u16_strlen(bo->optional_data));
1510         }
1511
1512         ret = eficonfig_set_boot_option(varname, final_dp, final_dp_size, bo->description, tmp);
1513 out:
1514         free(tmp);
1515         free(bo->optional_data);
1516         free(bo->description);
1517         free(bo->file_info.current_path);
1518         free(bo->initrd_info.current_path);
1519         efi_free_pool(device_dp);
1520         efi_free_pool(initrd_device_dp);
1521         efi_free_pool(initrd_dp);
1522         efi_free_pool(final_dp);
1523
1524         return ret;
1525 }
1526
1527 /**
1528  * eficonfig_process_add_boot_option() - handler to add boot option
1529  *
1530  * @data:       pointer to the data for each entry
1531  * Return:      status code
1532  */
1533 static efi_status_t eficonfig_process_add_boot_option(void *data)
1534 {
1535         u16 varname[9];
1536         efi_status_t ret;
1537         struct eficonfig_boot_option *bo = NULL;
1538
1539         bo = calloc(1, sizeof(struct eficonfig_boot_option));
1540         if (!bo)
1541                 return EFI_OUT_OF_RESOURCES;
1542
1543         ret = eficonfig_get_unused_bootoption(varname, sizeof(varname), &bo->boot_index);
1544         if (ret != EFI_SUCCESS)
1545                 return ret;
1546
1547         ret = eficonfig_edit_boot_option(varname, bo, NULL, 0,  "  ** Add Boot Option ** ");
1548         if (ret != EFI_SUCCESS)
1549                 goto out;
1550
1551         ret = eficonfig_append_bootorder((u16)bo->boot_index);
1552         if (ret != EFI_SUCCESS)
1553                 goto out;
1554
1555 out:
1556         free(bo);
1557
1558         /* to stay the parent menu */
1559         ret = (ret == EFI_ABORTED) ? EFI_SUCCESS : ret;
1560
1561         return ret;
1562 }
1563
1564 /**
1565  * eficonfig_process_boot_selected() - handler to select boot option entry
1566  *
1567  * @data:       pointer to the data for each entry
1568  * Return:      status code
1569  */
1570 static efi_status_t eficonfig_process_boot_selected(void *data)
1571 {
1572         struct eficonfig_boot_selection_data *info = data;
1573
1574         if (info)
1575                 *info->selected = info->boot_index;
1576
1577         return EFI_SUCCESS;
1578 }
1579
1580 /**
1581  * search_bootorder() - search the boot option index in BootOrder
1582  *
1583  * @bootorder:  pointer to the BootOrder variable
1584  * @num:        number of BootOrder entry
1585  * @target:     target boot option index to search
1586  * @index:      pointer to store the index of BootOrder variable
1587  * Return:      true if exists, false otherwise
1588  */
1589 static bool search_bootorder(u16 *bootorder, efi_uintn_t num, u32 target, u32 *index)
1590 {
1591         u32 i;
1592
1593         for (i = 0; i < num; i++) {
1594                 if (target == bootorder[i]) {
1595                         if (index)
1596                                 *index = i;
1597
1598                         return true;
1599                 }
1600         }
1601
1602         return false;
1603 }
1604
1605 /**
1606  * eficonfig_add_boot_selection_entry() - add boot option menu entry
1607  *
1608  * @efi_menu:   pointer to store the efimenu structure
1609  * @boot_index: boot option index to be added
1610  * @selected:   pointer to store the selected boot option index
1611  * Return:      status code
1612  */
1613 static efi_status_t eficonfig_add_boot_selection_entry(struct efimenu *efi_menu,
1614                                                        unsigned int boot_index,
1615                                                        unsigned int *selected)
1616 {
1617         char *buf, *p;
1618         efi_status_t ret;
1619         efi_uintn_t size;
1620         void *load_option;
1621         struct efi_load_option lo;
1622         u16 varname[] = u"Boot####";
1623         struct eficonfig_boot_selection_data *info;
1624
1625         efi_create_indexed_name(varname, sizeof(varname), "Boot", boot_index);
1626         load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
1627         if (!load_option)
1628                 return EFI_SUCCESS;
1629
1630         ret = efi_deserialize_load_option(&lo, load_option, &size);
1631         if (ret != EFI_SUCCESS) {
1632                 log_warning("Invalid load option for %ls\n", varname);
1633                 free(load_option);
1634                 return ret;
1635         }
1636
1637         if (size >= sizeof(efi_guid_t) &&
1638             !guidcmp(lo.optional_data, &efi_guid_bootmenu_auto_generated)) {
1639                 /*
1640                  * auto generated entry has GUID in optional_data,
1641                  * skip auto generated entry because it will be generated
1642                  * again even if it is edited or deleted.
1643                  */
1644                 free(load_option);
1645                 return EFI_SUCCESS;
1646         }
1647
1648         info = calloc(1, sizeof(struct eficonfig_boot_selection_data));
1649         if (!info) {
1650                 free(load_option);
1651                 return EFI_OUT_OF_RESOURCES;
1652         }
1653
1654         buf = calloc(1, utf16_utf8_strlen(lo.label) + 1);
1655         if (!buf) {
1656                 free(load_option);
1657                 free(info);
1658                 return EFI_OUT_OF_RESOURCES;
1659         }
1660         p = buf;
1661         utf16_utf8_strcpy(&p, lo.label);
1662         info->boot_index = boot_index;
1663         info->selected = selected;
1664         ret = eficonfig_append_menu_entry(efi_menu, buf, eficonfig_process_boot_selected, info);
1665         if (ret != EFI_SUCCESS) {
1666                 free(load_option);
1667                 free(info);
1668                 return ret;
1669         }
1670         free(load_option);
1671
1672         return EFI_SUCCESS;
1673 }
1674
1675 /**
1676  * eficonfig_show_boot_selection() - construct boot option menu entry
1677  *
1678  * @selected:   pointer to store the selected boot option index
1679  * Return:      status code
1680  */
1681 static efi_status_t eficonfig_show_boot_selection(unsigned int *selected)
1682 {
1683         u32 i;
1684         u16 *bootorder;
1685         efi_status_t ret;
1686         u16 *var_name16 = NULL;
1687         efi_uintn_t num, size, buf_size;
1688         struct efimenu *efi_menu;
1689         struct list_head *pos, *n;
1690         struct eficonfig_entry *entry;
1691
1692         efi_menu = calloc(1, sizeof(struct efimenu));
1693         if (!efi_menu)
1694                 return EFI_OUT_OF_RESOURCES;
1695
1696         bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
1697
1698         INIT_LIST_HEAD(&efi_menu->list);
1699         num = size / sizeof(u16);
1700         /* list the load option in the order of BootOrder variable */
1701         for (i = 0; i < num; i++) {
1702                 ret = eficonfig_add_boot_selection_entry(efi_menu, bootorder[i], selected);
1703                 if (ret != EFI_SUCCESS)
1704                         goto out;
1705
1706                 if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX - 1)
1707                         break;
1708         }
1709
1710         /* list the remaining load option not included in the BootOrder */
1711         buf_size = 128;
1712         var_name16 = malloc(buf_size);
1713         if (!var_name16)
1714                 return EFI_OUT_OF_RESOURCES;
1715
1716         var_name16[0] = 0;
1717         for (;;) {
1718                 int index;
1719                 efi_guid_t guid;
1720
1721                 ret = efi_next_variable_name(&buf_size, &var_name16, &guid);
1722                 if (ret == EFI_NOT_FOUND)
1723                         break;
1724                 if (ret != EFI_SUCCESS)
1725                         goto out;
1726
1727                 if (efi_varname_is_load_option(var_name16, &index)) {
1728                         /* If the index is included in the BootOrder, skip it */
1729                         if (search_bootorder(bootorder, num, index, NULL))
1730                                 continue;
1731
1732                         ret = eficonfig_add_boot_selection_entry(efi_menu, index, selected);
1733                         if (ret != EFI_SUCCESS)
1734                                 goto out;
1735                 }
1736
1737                 if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX - 1)
1738                         break;
1739         }
1740
1741         ret = eficonfig_append_quit_entry(efi_menu);
1742         if (ret != EFI_SUCCESS)
1743                 goto out;
1744
1745         ret = eficonfig_process_common(efi_menu, "  ** Select Boot Option **");
1746 out:
1747         list_for_each_safe(pos, n, &efi_menu->list) {
1748                 entry = list_entry(pos, struct eficonfig_entry, list);
1749                 free(entry->data);
1750         }
1751         eficonfig_destroy(efi_menu);
1752
1753         free(var_name16);
1754
1755         return ret;
1756 }
1757
1758 /**
1759  * eficonfig_process_edit_boot_option() - handler to edit boot option
1760  *
1761  * @data:       pointer to the data for each entry
1762  * Return:      status code
1763  */
1764 static efi_status_t eficonfig_process_edit_boot_option(void *data)
1765 {
1766         efi_status_t ret;
1767         efi_uintn_t size;
1768         struct eficonfig_boot_option *bo = NULL;
1769
1770         while (1) {
1771                 unsigned int selected;
1772                 void *load_option;
1773                 u16 varname[] = u"Boot####";
1774
1775                 ret = eficonfig_show_boot_selection(&selected);
1776                 if (ret != EFI_SUCCESS)
1777                         break;
1778
1779                 bo = calloc(1, sizeof(struct eficonfig_boot_option));
1780                 if (!bo) {
1781                         ret = EFI_OUT_OF_RESOURCES;
1782                         goto out;
1783                 }
1784
1785                 bo->boot_index = selected;
1786                 efi_create_indexed_name(varname, sizeof(varname), "Boot", selected);
1787                 load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
1788                 if (!load_option) {
1789                         free(bo);
1790                         ret = EFI_NOT_FOUND;
1791                         goto out;
1792                 }
1793
1794                 ret = eficonfig_edit_boot_option(varname, bo, load_option, size,
1795                                                  "  ** Edit Boot Option ** ");
1796
1797                 free(load_option);
1798                 free(bo);
1799                 if (ret != EFI_SUCCESS && ret != EFI_ABORTED)
1800                         break;
1801         }
1802 out:
1803         /* to stay the parent menu */
1804         ret = (ret == EFI_ABORTED) ? EFI_NOT_READY : ret;
1805
1806         return ret;
1807 }
1808
1809 /**
1810  * eficonfig_display_change_boot_order() - display the BootOrder list
1811  *
1812  * @efi_menu:   pointer to the efimenu structure
1813  * Return:      status code
1814  */
1815 static void eficonfig_display_change_boot_order(struct efimenu *efi_menu)
1816 {
1817         bool reverse;
1818         struct list_head *pos, *n;
1819         struct eficonfig_entry *entry;
1820
1821         printf(ANSI_CLEAR_CONSOLE ANSI_CURSOR_POSITION
1822                "\n  ** Change Boot Order **\n"
1823                ANSI_CURSOR_POSITION
1824                "  Press UP/DOWN to move, +/- to change order"
1825                ANSI_CURSOR_POSITION
1826                "  Press SPACE to activate or deactivate the entry"
1827                ANSI_CURSOR_POSITION
1828                "  Select [Save] to complete, ESC/CTRL+C to quit"
1829                ANSI_CURSOR_POSITION ANSI_CLEAR_LINE,
1830                1, 1, efi_menu->count + 5, 1, efi_menu->count + 6, 1,
1831                efi_menu->count + 7, 1,  efi_menu->count + 8, 1);
1832
1833         /* draw boot option list */
1834         list_for_each_safe(pos, n, &efi_menu->list) {
1835                 entry = list_entry(pos, struct eficonfig_entry, list);
1836                 reverse = (entry->num == efi_menu->active);
1837
1838                 printf(ANSI_CURSOR_POSITION, entry->num + 4, 7);
1839
1840                 if (reverse)
1841                         puts(ANSI_COLOR_REVERSE);
1842
1843                 if (entry->num < efi_menu->count - 2) {
1844                         if (((struct eficonfig_boot_order_data *)entry->data)->active)
1845                                 printf("[*]  ");
1846                         else
1847                                 printf("[ ]  ");
1848                 }
1849
1850                 printf("%s", entry->title);
1851
1852                 if (reverse)
1853                         puts(ANSI_COLOR_RESET);
1854         }
1855 }
1856
1857 /**
1858  * eficonfig_choice_change_boot_order() - handle the BootOrder update
1859  *
1860  * @efi_menu:   pointer to the efimenu structure
1861  * Return:      status code
1862  */
1863 static efi_status_t eficonfig_choice_change_boot_order(struct efimenu *efi_menu)
1864 {
1865         int esc = 0;
1866         struct list_head *pos, *n;
1867         enum bootmenu_key key = BKEY_NONE;
1868         struct eficonfig_entry *entry, *tmp;
1869
1870         while (1) {
1871                 key = bootmenu_loop(NULL, &esc);
1872
1873                 switch (key) {
1874                 case BKEY_PLUS:
1875                         if (efi_menu->active > 0) {
1876                                 list_for_each_safe(pos, n, &efi_menu->list) {
1877                                         entry = list_entry(pos, struct eficonfig_entry, list);
1878                                         if (entry->num == efi_menu->active)
1879                                                 break;
1880                                 }
1881                                 tmp = list_entry(pos->prev, struct eficonfig_entry, list);
1882                                 entry->num--;
1883                                 tmp->num++;
1884                                 list_del(&tmp->list);
1885                                 list_add(&tmp->list, &entry->list);
1886                         }
1887                         fallthrough;
1888                 case BKEY_UP:
1889                         if (efi_menu->active > 0)
1890                                 --efi_menu->active;
1891                         return EFI_NOT_READY;
1892                 case BKEY_MINUS:
1893                         if (efi_menu->active < efi_menu->count - 3) {
1894                                 list_for_each_safe(pos, n, &efi_menu->list) {
1895                                         entry = list_entry(pos, struct eficonfig_entry, list);
1896                                         if (entry->num == efi_menu->active)
1897                                                 break;
1898                                 }
1899                                 tmp = list_entry(pos->next, struct eficonfig_entry, list);
1900                                 entry->num++;
1901                                 tmp->num--;
1902                                 list_del(&entry->list);
1903                                 list_add(&entry->list, &tmp->list);
1904
1905                                 ++efi_menu->active;
1906                         }
1907                         return EFI_NOT_READY;
1908                 case BKEY_DOWN:
1909                         if (efi_menu->active < efi_menu->count - 1)
1910                                 ++efi_menu->active;
1911                         return EFI_NOT_READY;
1912                 case BKEY_SELECT:
1913                         /* "Save" */
1914                         if (efi_menu->active == efi_menu->count - 2)
1915                                 return EFI_SUCCESS;
1916
1917                         /* "Quit" */
1918                         if (efi_menu->active == efi_menu->count - 1)
1919                                 return EFI_ABORTED;
1920
1921                         break;
1922                 case BKEY_SPACE:
1923                         if (efi_menu->active < efi_menu->count - 2) {
1924                                 list_for_each_safe(pos, n, &efi_menu->list) {
1925                                         entry = list_entry(pos, struct eficonfig_entry, list);
1926                                         if (entry->num == efi_menu->active) {
1927                                                 struct eficonfig_boot_order_data *data = entry->data;
1928
1929                                                 data->active = !data->active;
1930                                                 return EFI_NOT_READY;
1931                                         }
1932                                 }
1933                         }
1934                         break;
1935                 case BKEY_QUIT:
1936                         return EFI_ABORTED;
1937                 default:
1938                         /* Pressed key is not valid, no need to regenerate the menu */
1939                         break;
1940                 }
1941         }
1942 }
1943
1944 /**
1945  * eficonfig_add_change_boot_order_entry() - add boot order entry
1946  *
1947  * @efi_menu:   pointer to the efimenu structure
1948  * @boot_index: boot option index to be added
1949  * @active:     flag to include the boot option into BootOrder
1950  * Return:      status code
1951  */
1952 static efi_status_t eficonfig_add_change_boot_order_entry(struct efimenu *efi_menu,
1953                                                           u32 boot_index, bool active)
1954 {
1955         char *title, *p;
1956         efi_status_t ret;
1957         efi_uintn_t size;
1958         void *load_option;
1959         struct efi_load_option lo;
1960         u16 varname[] = u"Boot####";
1961         struct eficonfig_boot_order_data *data;
1962
1963         efi_create_indexed_name(varname, sizeof(varname), "Boot", boot_index);
1964         load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
1965         if (!load_option)
1966                 return EFI_SUCCESS;
1967
1968         ret = efi_deserialize_load_option(&lo, load_option, &size);
1969         if (ret != EFI_SUCCESS)
1970                 goto out;
1971
1972         data = calloc(1, sizeof(*data));
1973         if (!data) {
1974                 ret = EFI_OUT_OF_RESOURCES;
1975                 goto out;
1976         }
1977
1978         title = calloc(1, utf16_utf8_strlen(lo.label) + 1);
1979         if (!title) {
1980                 free(data);
1981                 ret = EFI_OUT_OF_RESOURCES;
1982                 goto out;
1983         }
1984         p = title;
1985         utf16_utf8_strcpy(&p, lo.label);
1986
1987         data->boot_index = boot_index;
1988         data->active = active;
1989
1990         ret = eficonfig_append_menu_entry(efi_menu, title, NULL, data);
1991         if (ret != EFI_SUCCESS) {
1992                 free(data);
1993                 free(title);
1994                 goto out;
1995         }
1996
1997 out:
1998         free(load_option);
1999
2000         return ret;
2001 }
2002
2003 /**
2004  * eficonfig_create_change_boot_order_entry() - create boot order entry
2005  *
2006  * @efi_menu:   pointer to the efimenu structure
2007  * @bootorder:  pointer to the BootOrder variable
2008  * @num:        number of BootOrder entry
2009  * Return:      status code
2010  */
2011 static efi_status_t eficonfig_create_change_boot_order_entry(struct efimenu *efi_menu,
2012                                                              u16 *bootorder, efi_uintn_t num)
2013 {
2014         u32 i;
2015         char *title;
2016         efi_status_t ret;
2017         u16 *var_name16 = NULL;
2018         efi_uintn_t size, buf_size;
2019
2020         /* list the load option in the order of BootOrder variable */
2021         for (i = 0; i < num; i++) {
2022                 if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX - 2)
2023                         break;
2024
2025                 ret = eficonfig_add_change_boot_order_entry(efi_menu, bootorder[i], true);
2026                 if (ret != EFI_SUCCESS)
2027                         goto out;
2028         }
2029
2030         /* list the remaining load option not included in the BootOrder */
2031         buf_size = 128;
2032         var_name16 = malloc(buf_size);
2033         if (!var_name16)
2034                 return EFI_OUT_OF_RESOURCES;
2035
2036         var_name16[0] = 0;
2037         for (;;) {
2038                 int index;
2039                 efi_guid_t guid;
2040
2041                 if (efi_menu->count >= EFICONFIG_ENTRY_NUM_MAX - 2)
2042                         break;
2043
2044                 size = buf_size;
2045                 ret = efi_next_variable_name(&buf_size, &var_name16, &guid);
2046                 if (ret == EFI_NOT_FOUND)
2047                         break;
2048                 if (ret != EFI_SUCCESS)
2049                         goto out;
2050
2051                 if (efi_varname_is_load_option(var_name16, &index)) {
2052                         /* If the index is included in the BootOrder, skip it */
2053                         if (search_bootorder(bootorder, num, index, NULL))
2054                                 continue;
2055
2056                         ret = eficonfig_add_change_boot_order_entry(efi_menu, index, false);
2057                         if (ret != EFI_SUCCESS)
2058                                 goto out;
2059                 }
2060         }
2061
2062         /* add "Save" and "Quit" entries */
2063         title = strdup("Save");
2064         if (!title) {
2065                 ret = EFI_OUT_OF_RESOURCES;
2066                 goto out;
2067         }
2068
2069         ret = eficonfig_append_menu_entry(efi_menu, title, NULL, NULL);
2070         if (ret != EFI_SUCCESS)
2071                 goto out;
2072
2073         ret = eficonfig_append_quit_entry(efi_menu);
2074         if (ret != EFI_SUCCESS)
2075                 goto out;
2076
2077         efi_menu->active = 0;
2078 out:
2079         free(var_name16);
2080
2081         return ret;
2082 }
2083
2084 /**
2085  * eficonfig_process_change_boot_order() - handler to change boot order
2086  *
2087  * @data:       pointer to the data for each entry
2088  * Return:      status code
2089  */
2090 static efi_status_t eficonfig_process_change_boot_order(void *data)
2091 {
2092         u32 count;
2093         u16 *bootorder;
2094         efi_status_t ret;
2095         efi_uintn_t num, size;
2096         struct list_head *pos, *n;
2097         struct eficonfig_entry *entry;
2098         struct efimenu *efi_menu;
2099
2100         efi_menu = calloc(1, sizeof(struct efimenu));
2101         if (!efi_menu)
2102                 return EFI_OUT_OF_RESOURCES;
2103
2104         bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
2105
2106         INIT_LIST_HEAD(&efi_menu->list);
2107         num = size / sizeof(u16);
2108         ret = eficonfig_create_change_boot_order_entry(efi_menu, bootorder, num);
2109         if (ret != EFI_SUCCESS)
2110                 goto out;
2111
2112         while (1) {
2113                 eficonfig_display_change_boot_order(efi_menu);
2114
2115                 ret = eficonfig_choice_change_boot_order(efi_menu);
2116                 if (ret == EFI_SUCCESS) {
2117                         u16 *new_bootorder;
2118
2119                         new_bootorder = calloc(1, (efi_menu->count - 2) * sizeof(u16));
2120                         if (!new_bootorder) {
2121                                 ret = EFI_OUT_OF_RESOURCES;
2122                                 goto out;
2123                         }
2124
2125                         /* create new BootOrder  */
2126                         count = 0;
2127                         list_for_each_safe(pos, n, &efi_menu->list) {
2128                                 struct eficonfig_boot_order_data *data;
2129
2130                                 entry = list_entry(pos, struct eficonfig_entry, list);
2131                                 /* exit the loop when iteration reaches "Save" */
2132                                 if (!strncmp(entry->title, "Save", strlen("Save")))
2133                                         break;
2134
2135                                 data = entry->data;
2136                                 if (data->active)
2137                                         new_bootorder[count++] = data->boot_index;
2138                         }
2139
2140                         size = count * sizeof(u16);
2141                         ret = efi_set_variable_int(u"BootOrder", &efi_global_variable_guid,
2142                                                    EFI_VARIABLE_NON_VOLATILE |
2143                                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
2144                                                    EFI_VARIABLE_RUNTIME_ACCESS,
2145                                                    size, new_bootorder, false);
2146
2147                         free(new_bootorder);
2148                         goto out;
2149                 } else if (ret == EFI_NOT_READY) {
2150                         continue;
2151                 } else {
2152                         goto out;
2153                 }
2154         }
2155 out:
2156         free(bootorder);
2157         list_for_each_safe(pos, n, &efi_menu->list) {
2158                 entry = list_entry(pos, struct eficonfig_entry, list);
2159                 free(entry->data);
2160         }
2161         eficonfig_destroy(efi_menu);
2162
2163         /* to stay the parent menu */
2164         ret = (ret == EFI_ABORTED) ? EFI_NOT_READY : ret;
2165
2166         return ret;
2167 }
2168
2169 /**
2170  * delete_boot_option() - delete selected boot option
2171  *
2172  * @boot_index: boot option index to delete
2173  * Return:      status code
2174  */
2175 static efi_status_t delete_boot_option(u16 boot_index)
2176 {
2177         u16 *bootorder;
2178         u16 varname[9];
2179         efi_status_t ret;
2180         unsigned int index;
2181         efi_uintn_t num, size;
2182
2183         efi_create_indexed_name(varname, sizeof(varname),
2184                                 "Boot", boot_index);
2185         ret = efi_set_variable_int(varname, &efi_global_variable_guid,
2186                                    0, 0, NULL, false);
2187         if (ret != EFI_SUCCESS) {
2188                 log_err("delete boot option(%ls) failed\n", varname);
2189                 return ret;
2190         }
2191
2192         /* update BootOrder if necessary */
2193         bootorder = efi_get_var(u"BootOrder", &efi_global_variable_guid, &size);
2194         if (!bootorder)
2195                 return EFI_SUCCESS;
2196
2197         num = size / sizeof(u16);
2198         if (!search_bootorder(bootorder, num, boot_index, &index))
2199                 return EFI_SUCCESS;
2200
2201         memmove(&bootorder[index], &bootorder[index + 1],
2202                 (num - index - 1) * sizeof(u16));
2203         size -= sizeof(u16);
2204         ret = efi_set_variable_int(u"BootOrder", &efi_global_variable_guid,
2205                                    EFI_VARIABLE_NON_VOLATILE |
2206                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
2207                                    EFI_VARIABLE_RUNTIME_ACCESS,
2208                                    size, bootorder, false);
2209
2210         return ret;
2211 }
2212
2213 /**
2214  * eficonfig_process_delete_boot_option() - handler to delete boot option
2215  *
2216  * @data:       pointer to the data for each entry
2217  * Return:      status code
2218  */
2219 static efi_status_t eficonfig_process_delete_boot_option(void *data)
2220 {
2221         efi_status_t ret;
2222         unsigned int selected;
2223
2224         while (1) {
2225                 ret = eficonfig_show_boot_selection(&selected);
2226                 if (ret == EFI_SUCCESS)
2227                         ret = delete_boot_option(selected);
2228
2229                 if (ret != EFI_SUCCESS)
2230                         break;
2231         }
2232
2233         /* to stay the parent menu */
2234         ret = (ret == EFI_ABORTED) ? EFI_NOT_READY : ret;
2235
2236         return ret;
2237 }
2238
2239 /**
2240  * eficonfig_enumerate_boot_option() - enumerate the possible bootable media
2241  *
2242  * @opt:                pointer to the media boot option structure
2243  * @volume_handles:     pointer to the efi handles
2244  * @count:              number of efi handle
2245  * Return:              status code
2246  */
2247 efi_status_t eficonfig_enumerate_boot_option(struct eficonfig_media_boot_option *opt,
2248                                              efi_handle_t *volume_handles, efi_status_t count)
2249 {
2250         u32 i;
2251         struct efi_handler *handler;
2252         efi_status_t ret = EFI_SUCCESS;
2253
2254         for (i = 0; i < count; i++) {
2255                 u16 *p;
2256                 u16 dev_name[BOOTMENU_DEVICE_NAME_MAX];
2257                 char *optional_data;
2258                 struct efi_load_option lo;
2259                 char buf[BOOTMENU_DEVICE_NAME_MAX];
2260                 struct efi_device_path *device_path;
2261
2262                 ret = efi_search_protocol(volume_handles[i], &efi_guid_device_path, &handler);
2263                 if (ret != EFI_SUCCESS)
2264                         continue;
2265                 ret = efi_protocol_open(handler, (void **)&device_path,
2266                                         efi_root, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
2267                 if (ret != EFI_SUCCESS)
2268                         continue;
2269
2270                 ret = efi_disk_get_device_name(volume_handles[i], buf, BOOTMENU_DEVICE_NAME_MAX);
2271                 if (ret != EFI_SUCCESS)
2272                         continue;
2273
2274                 p = dev_name;
2275                 utf8_utf16_strncpy(&p, buf, strlen(buf));
2276
2277                 lo.label = dev_name;
2278                 lo.attributes = LOAD_OPTION_ACTIVE;
2279                 lo.file_path = device_path;
2280                 lo.file_path_length = efi_dp_size(device_path) + sizeof(END);
2281                 /*
2282                  * Set the dedicated guid to optional_data, it is used to identify
2283                  * the boot option that automatically generated by the bootmenu.
2284                  * efi_serialize_load_option() expects optional_data is null-terminated
2285                  * utf8 string, so set the "1234567" string to allocate enough space
2286                  * to store guid, instead of realloc the load_option.
2287                  */
2288                 lo.optional_data = "1234567";
2289                 opt[i].size = efi_serialize_load_option(&lo, (u8 **)&opt[i].lo);
2290                 if (!opt[i].size) {
2291                         ret = EFI_OUT_OF_RESOURCES;
2292                         goto out;
2293                 }
2294                 /* set the guid */
2295                 optional_data = (char *)opt[i].lo + (opt[i].size - u16_strsize(u"1234567"));
2296                 memcpy(optional_data, &efi_guid_bootmenu_auto_generated, sizeof(efi_guid_t));
2297         }
2298
2299 out:
2300         return ret;
2301 }
2302
2303 /**
2304  * eficonfig_delete_invalid_boot_option() - delete non-existing boot option
2305  *
2306  * @opt:                pointer to the media boot option structure
2307  * @count:              number of media boot option structure
2308  * Return:              status code
2309  */
2310 efi_status_t eficonfig_delete_invalid_boot_option(struct eficonfig_media_boot_option *opt,
2311                                                   efi_status_t count)
2312 {
2313         efi_uintn_t size;
2314         void *load_option;
2315         u32 i, list_size = 0;
2316         struct efi_load_option lo;
2317         u16 *var_name16 = NULL;
2318         u16 varname[] = u"Boot####";
2319         efi_status_t ret = EFI_SUCCESS;
2320         u16 *delete_index_list = NULL, *p;
2321         efi_uintn_t buf_size;
2322
2323         buf_size = 128;
2324         var_name16 = malloc(buf_size);
2325         if (!var_name16)
2326                 return EFI_OUT_OF_RESOURCES;
2327
2328         var_name16[0] = 0;
2329         for (;;) {
2330                 int index;
2331                 efi_guid_t guid;
2332                 efi_uintn_t tmp;
2333
2334                 ret = efi_next_variable_name(&buf_size, &var_name16, &guid);
2335                 if (ret == EFI_NOT_FOUND) {
2336                         /*
2337                          * EFI_NOT_FOUND indicates we retrieved all EFI variables.
2338                          * This should be treated as success.
2339                          */
2340                         ret = EFI_SUCCESS;
2341                         break;
2342                 }
2343                 if (ret != EFI_SUCCESS)
2344                         goto out;
2345
2346                 if (!efi_varname_is_load_option(var_name16, &index))
2347                         continue;
2348
2349                 efi_create_indexed_name(varname, sizeof(varname), "Boot", index);
2350                 load_option = efi_get_var(varname, &efi_global_variable_guid, &size);
2351                 if (!load_option)
2352                         continue;
2353
2354                 tmp = size;
2355                 ret = efi_deserialize_load_option(&lo, load_option, &size);
2356                 if (ret != EFI_SUCCESS)
2357                         goto next;
2358
2359                 if (size >= sizeof(efi_guid_bootmenu_auto_generated) &&
2360                     !guidcmp(lo.optional_data, &efi_guid_bootmenu_auto_generated)) {
2361                         for (i = 0; i < count; i++) {
2362                                 if (opt[i].size == tmp &&
2363                                     memcmp(opt[i].lo, load_option, tmp) == 0) {
2364                                         opt[i].exist = true;
2365                                         break;
2366                                 }
2367                         }
2368
2369                         /*
2370                          * The entire list of variables must be retrieved by
2371                          * efi_get_next_variable_name_int() before deleting the invalid
2372                          * boot option, just save the index here.
2373                          */
2374                         if (i == count) {
2375                                 p = realloc(delete_index_list, sizeof(u32) *
2376                                             (list_size + 1));
2377                                 if (!p) {
2378                                         ret = EFI_OUT_OF_RESOURCES;
2379                                         goto out;
2380                                 }
2381                                 delete_index_list = p;
2382                                 delete_index_list[list_size++] = index;
2383                         }
2384                 }
2385 next:
2386                 free(load_option);
2387         }
2388
2389         /* delete all invalid boot options */
2390         for (i = 0; i < list_size; i++) {
2391                 ret = delete_boot_option(delete_index_list[i]);
2392                 if (ret != EFI_SUCCESS)
2393                         goto out;
2394         }
2395
2396 out:
2397         free(var_name16);
2398         free(delete_index_list);
2399
2400         return ret;
2401 }
2402
2403 /**
2404  * eficonfig_generate_media_device_boot_option() - generate the media device boot option
2405  *
2406  * This function enumerates all devices supporting EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
2407  * and generate the bootmenu entries.
2408  * This function also provide the BOOT#### variable maintenance for
2409  * the media device entries.
2410  *   - Automatically create the BOOT#### variable for the newly detected device,
2411  *     this BOOT#### variable is distinguished by the special GUID
2412  *     stored in the EFI_LOAD_OPTION.optional_data
2413  *   - If the device is not attached to the system, the associated BOOT#### variable
2414  *     is automatically deleted.
2415  *
2416  * Return:      status code
2417  */
2418 efi_status_t eficonfig_generate_media_device_boot_option(void)
2419 {
2420         u32 i;
2421         efi_status_t ret;
2422         efi_uintn_t count;
2423         efi_handle_t *volume_handles = NULL;
2424         struct eficonfig_media_boot_option *opt = NULL;
2425
2426         ret = efi_locate_handle_buffer_int(BY_PROTOCOL, &efi_simple_file_system_protocol_guid,
2427                                            NULL, &count, (efi_handle_t **)&volume_handles);
2428         if (ret != EFI_SUCCESS)
2429                 return ret;
2430
2431         opt = calloc(count, sizeof(struct eficonfig_media_boot_option));
2432         if (!opt)
2433                 goto out;
2434
2435         /* enumerate all devices supporting EFI_SIMPLE_FILE_SYSTEM_PROTOCOL */
2436         ret = eficonfig_enumerate_boot_option(opt, volume_handles, count);
2437         if (ret != EFI_SUCCESS)
2438                 goto out;
2439
2440         /*
2441          * System hardware configuration may vary depending on the user setup.
2442          * The boot option is automatically added by the bootmenu.
2443          * If the device is not attached to the system, the boot option needs
2444          * to be deleted.
2445          */
2446         ret = eficonfig_delete_invalid_boot_option(opt, count);
2447         if (ret != EFI_SUCCESS)
2448                 goto out;
2449
2450         /* add non-existent boot option */
2451         for (i = 0; i < count; i++) {
2452                 u32 boot_index;
2453                 u16 var_name[9];
2454
2455                 if (!opt[i].exist) {
2456                         ret = eficonfig_get_unused_bootoption(var_name, sizeof(var_name),
2457                                                               &boot_index);
2458                         if (ret != EFI_SUCCESS)
2459                                 goto out;
2460
2461                         ret = efi_set_variable_int(var_name, &efi_global_variable_guid,
2462                                                    EFI_VARIABLE_NON_VOLATILE |
2463                                                    EFI_VARIABLE_BOOTSERVICE_ACCESS |
2464                                                    EFI_VARIABLE_RUNTIME_ACCESS,
2465                                                    opt[i].size, opt[i].lo, false);
2466                         if (ret != EFI_SUCCESS)
2467                                 goto out;
2468
2469                         ret = eficonfig_append_bootorder(boot_index);
2470                         if (ret != EFI_SUCCESS) {
2471                                 efi_set_variable_int(var_name, &efi_global_variable_guid,
2472                                                      0, 0, NULL, false);
2473                                 goto out;
2474                         }
2475                 }
2476         }
2477
2478 out:
2479         if (opt) {
2480                 for (i = 0; i < count; i++)
2481                         free(opt[i].lo);
2482         }
2483         free(opt);
2484         efi_free_pool(volume_handles);
2485
2486         return ret;
2487 }
2488
2489 /**
2490  * eficonfig_init() - do required initialization for eficonfig command
2491  *
2492  * Return:      status code
2493  */
2494 static efi_status_t eficonfig_init(void)
2495 {
2496         efi_status_t ret = EFI_SUCCESS;
2497         static bool init;
2498         struct efi_handler *handler;
2499
2500         if (!init) {
2501                 ret = efi_search_protocol(efi_root, &efi_guid_text_input_protocol, &handler);
2502                 if (ret != EFI_SUCCESS)
2503                         return ret;
2504
2505                 ret = efi_protocol_open(handler, (void **)&cin, efi_root, NULL,
2506                                         EFI_OPEN_PROTOCOL_GET_PROTOCOL);
2507                 if (ret != EFI_SUCCESS)
2508                         return ret;
2509         }
2510
2511         init = true;
2512
2513         return ret;
2514 }
2515
2516 static const struct eficonfig_item maintenance_menu_items[] = {
2517         {"Add Boot Option", eficonfig_process_add_boot_option},
2518         {"Edit Boot Option", eficonfig_process_edit_boot_option},
2519         {"Change Boot Order", eficonfig_process_change_boot_order},
2520         {"Delete Boot Option", eficonfig_process_delete_boot_option},
2521 #if (CONFIG_IS_ENABLED(EFI_SECURE_BOOT) && CONFIG_IS_ENABLED(EFI_MM_COMM_TEE))
2522         {"Secure Boot Configuration", eficonfig_process_secure_boot_config},
2523 #endif
2524         {"Quit", eficonfig_process_quit},
2525 };
2526
2527 /**
2528  * do_eficonfig() - execute `eficonfig` command
2529  *
2530  * @cmdtp:      table entry describing command
2531  * @flag:       bitmap indicating how the command was invoked
2532  * @argc:       number of arguments
2533  * @argv:       command line arguments
2534  * Return:      status code
2535  */
2536 static int do_eficonfig(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
2537 {
2538         efi_status_t ret;
2539         struct efimenu *efi_menu;
2540
2541         if (argc > 1)
2542                 return CMD_RET_USAGE;
2543
2544         ret = efi_init_obj_list();
2545         if (ret != EFI_SUCCESS) {
2546                 log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n",
2547                         ret & ~EFI_ERROR_MASK);
2548
2549                 return CMD_RET_FAILURE;
2550         }
2551
2552         ret = eficonfig_init();
2553         if (ret != EFI_SUCCESS)
2554                 return CMD_RET_FAILURE;
2555
2556         ret = eficonfig_generate_media_device_boot_option();
2557         if (ret != EFI_SUCCESS && ret != EFI_NOT_FOUND)
2558                 return ret;
2559
2560         while (1) {
2561                 efi_menu = eficonfig_create_fixed_menu(maintenance_menu_items,
2562                                                        ARRAY_SIZE(maintenance_menu_items));
2563                 if (!efi_menu)
2564                         return CMD_RET_FAILURE;
2565
2566                 ret = eficonfig_process_common(efi_menu, "  ** UEFI Maintenance Menu **");
2567                 eficonfig_destroy(efi_menu);
2568
2569                 if (ret == EFI_ABORTED)
2570                         break;
2571         }
2572
2573         return CMD_RET_SUCCESS;
2574 }
2575
2576 U_BOOT_CMD(
2577         eficonfig, 1, 0, do_eficonfig,
2578         "provide menu-driven UEFI variable maintenance interface",
2579         ""
2580 );