1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2010-2011 Calxeda, Inc.
4 * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
12 #include <linux/delay.h>
13 #include <linux/list.h>
21 * Internally, each item in a menu is represented by a struct menu_item.
23 * These items will be alloc'd and initialized by menu_item_add and destroyed
24 * by menu_item_destroy, and the consumer of the interface never sees that
25 * this struct is used at all.
30 struct list_head list;
34 * The menu is composed of a list of items along with settings and callbacks
35 * provided by the user. An incomplete definition of this struct is available
36 * in menu.h, but the full definition is here to prevent consumers from
37 * relying on its contents.
40 struct menu_item *default_item;
44 void (*display_statusline)(struct menu *);
45 void (*item_data_print)(void *);
46 char *(*item_choice)(void *);
47 void *item_choice_data;
48 struct list_head items;
53 * An iterator function for menu items. callback will be called for each item
54 * in m, with m, a pointer to the item, and extra being passed to callback. If
55 * callback returns a value other than NULL, iteration stops and the value
56 * return by callback is returned from menu_items_iter. This allows it to be
57 * used for search type operations. It is also safe for callback to remove the
58 * item from the list of items.
60 static inline void *menu_items_iter(struct menu *m,
61 void *(*callback)(struct menu *, struct menu_item *, void *),
64 struct list_head *pos, *n;
65 struct menu_item *item;
68 list_for_each_safe(pos, n, &m->items) {
69 item = list_entry(pos, struct menu_item, list);
71 ret = callback(m, item, extra);
81 * Print a menu_item. If the consumer provided an item_data_print function
82 * when creating the menu, call it with a pointer to the item's private data.
83 * Otherwise, print the key of the item.
85 static inline void *menu_item_print(struct menu *m,
86 struct menu_item *item,
89 if (!m->item_data_print) {
93 m->item_data_print(item->data);
100 * Free the memory used by a menu item. This includes the memory used by its
103 static inline void *menu_item_destroy(struct menu *m,
104 struct menu_item *item,
116 * Display a menu so the user can make a choice of an item. First display its
117 * title, if any, and then each item in the menu.
119 static inline void menu_display(struct menu *m)
125 if (m->display_statusline)
126 m->display_statusline(m);
128 menu_items_iter(m, menu_item_print, NULL);
132 * Check if an item's key matches a provided string, pointed to by extra. If
133 * extra is NULL, an item with a NULL key will match. Otherwise, the item's
134 * key has to match according to strcmp.
136 * This is called via menu_items_iter, so it returns a pointer to the item if
137 * the key matches, and returns NULL otherwise.
139 static inline void *menu_item_key_match(struct menu *m,
140 struct menu_item *item, void *extra)
142 char *item_key = extra;
144 if (!item_key || !item->key) {
145 if (item_key == item->key)
151 if (strcmp(item->key, item_key) == 0)
158 * Find the first item with a key matching item_key, if any exists.
160 static inline struct menu_item *menu_item_by_key(struct menu *m,
163 return menu_items_iter(m, menu_item_key_match, item_key);
167 * Set *choice to point to the default item's data, if any default item was
168 * set, and returns 1. If no default item was set, returns -ENOENT.
170 int menu_default_choice(struct menu *m, void **choice)
172 if (m->default_item) {
173 *choice = m->default_item->data;
181 * Displays the menu and asks the user to choose an item. *choice will point
182 * to the private data of the item the user chooses. The user makes a choice
183 * by inputting a string matching the key of an item. Invalid choices will
184 * cause the user to be prompted again, repeatedly, until the user makes a
185 * valid choice. The user can exit the menu without making a choice via ^c.
187 * Returns 1 if the user made a choice, or -EINTR if they bail via ^c.
189 static inline int menu_interactive_choice(struct menu *m, void **choice)
191 char cbuf[CONFIG_SYS_CBSIZE];
192 struct menu_item *choice_item = NULL;
195 while (!choice_item) {
200 if (!m->item_choice) {
201 readret = cli_readline_into_buffer("Enter choice: ",
205 choice_item = menu_item_by_key(m, cbuf);
207 printf("%s not found\n", cbuf);
208 } else if (readret == -1) {
209 printf("<INTERRUPT>\n");
212 return menu_default_choice(m, choice);
215 char *key = m->item_choice(m->item_choice_data);
218 choice_item = menu_item_by_key(m, key);
225 *choice = choice_item->data;
231 * menu_default_set() - Sets the default choice for the menu. This is safe to
232 * call more than once on a menu.
234 * m - Points to a menu created by menu_create().
236 * item_key - Points to a string that, when compared using strcmp, matches the
237 * key for an existing item in the menu.
239 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOENT if no item with a
240 * key matching item_key is found.
242 int menu_default_set(struct menu *m, char *item_key)
244 struct menu_item *item;
249 item = menu_item_by_key(m, item_key);
254 m->default_item = item;
260 * menu_get_choice() - Returns the user's selected menu entry, or the default
261 * if the menu is set to not prompt or the timeout expires. This is safe to
262 * call more than once.
264 * m - Points to a menu created by menu_create().
266 * choice - Points to a location that will store a pointer to the selected
267 * menu item. If no item is selected or there is an error, no value will be
268 * written at the location it points to.
270 * Returns 1 if successful, -EINVAL if m or choice is NULL, -ENOENT if no
271 * default has been set and the menu is set to not prompt or the timeout
272 * expires, or -EINTR if the user exits the menu via ^c.
274 int menu_get_choice(struct menu *m, void **choice)
283 return menu_default_choice(m, choice);
285 return menu_interactive_choice(m, choice);
289 * menu_item_add() - Adds or replaces a menu item. Note that this replaces the
290 * data of an item if it already exists, but doesn't change the order of the
293 * m - Points to a menu created by menu_create().
295 * item_key - Points to a string that will uniquely identify the item. The
296 * string will be copied to internal storage, and is safe to discard after
297 * passing to menu_item_add.
299 * item_data - An opaque pointer associated with an item. It is never
300 * dereferenced internally, but will be passed to the item_data_print, and
301 * will be returned from menu_get_choice if the menu item is selected.
303 * Returns 1 if successful, -EINVAL if m is NULL, or -ENOMEM if there is
304 * insufficient memory to add the menu item.
306 int menu_item_add(struct menu *m, char *item_key, void *item_data)
308 struct menu_item *item;
313 item = menu_item_by_key(m, item_key);
316 item->data = item_data;
320 item = malloc(sizeof *item);
324 item->key = strdup(item_key);
331 item->data = item_data;
333 list_add_tail(&item->list, &m->items);
340 * menu_create() - Creates a menu handle with default settings
342 * title - If not NULL, points to a string that will be displayed before the
343 * list of menu items. It will be copied to internal storage, and is safe to
344 * discard after passing to menu_create().
346 * timeout - A delay in seconds to wait for user input. If 0, timeout is
347 * disabled, and the default choice will be returned unless prompt is 1.
349 * prompt - If 0, don't ask for user input unless there is an interrupted
350 * timeout. If 1, the user will be prompted for input regardless of the value
353 * display_statusline - If not NULL, will be called to show a statusline when
354 * the menu is displayed.
356 * item_data_print - If not NULL, will be called for each item when the menu
357 * is displayed, with the pointer to the item's data passed as the argument.
358 * If NULL, each item's key will be printed instead. Since an item's key is
359 * what must be entered to select an item, the item_data_print function should
360 * make it obvious what the key for each entry is.
362 * item_choice - If not NULL, will be called when asking the user to choose an
363 * item. Returns a key string corresponding to the chosen item or NULL if
364 * no item has been selected.
366 * item_choice_data - Will be passed as the argument to the item_choice function
368 * Returns a pointer to the menu if successful, or NULL if there is
369 * insufficient memory available to create the menu.
371 struct menu *menu_create(char *title, int timeout, int prompt,
372 void (*display_statusline)(struct menu *),
373 void (*item_data_print)(void *),
374 char *(*item_choice)(void *),
375 void *item_choice_data)
379 m = malloc(sizeof *m);
384 m->default_item = NULL;
386 m->timeout = timeout;
387 m->display_statusline = display_statusline;
388 m->item_data_print = item_data_print;
389 m->item_choice = item_choice;
390 m->item_choice_data = item_choice_data;
394 m->title = strdup(title);
403 INIT_LIST_HEAD(&m->items);
409 * menu_destroy() - frees the memory used by a menu and its items.
411 * m - Points to a menu created by menu_create().
413 * Returns 1 if successful, or -EINVAL if m is NULL.
415 int menu_destroy(struct menu *m)
420 menu_items_iter(m, menu_item_destroy, NULL);
430 enum bootmenu_key bootmenu_autoboot_loop(struct bootmenu_data *menu,
431 struct cli_ch_state *cch)
433 enum bootmenu_key key = BKEY_NONE;
436 while (menu->delay > 0) {
438 printf(ANSI_CURSOR_POSITION, menu->count + 5, 3);
439 printf("Hit any key to stop autoboot: %d ", menu->delay);
440 for (i = 0; i < 100; ++i) {
452 ichar = cli_ch_process(cch, c);
478 printf(ANSI_CURSOR_POSITION ANSI_CLEAR_LINE, menu->count + 5, 1);
480 if (menu->delay == 0)
486 enum bootmenu_key bootmenu_conv_key(int ichar)
488 enum bootmenu_key key;
492 /* enter key was pressed */
526 enum bootmenu_key bootmenu_loop(struct bootmenu_data *menu,
527 struct cli_ch_state *cch)
529 enum bootmenu_key key;
532 c = cli_ch_process(cch, 0);
534 while (!c && !tstc()) {
537 c = cli_ch_process(cch, -ETIMEDOUT);
541 c = cli_ch_process(cch, c);
545 key = bootmenu_conv_key(c);