/** * Copyright 2021 Johannes Marbach * SPDX-License-Identifier: GPL-3.0-or-later */ #include "command_line.h" #include "config.h" #include "unl0kr.h" #include "../shared/backends.h" #include "../shared/display.h" #include "../shared/header.h" #include "../shared/indev.h" #include "../shared/keyboard.h" #include "../shared/log.h" #include "../shared/terminal.h" #include "../shared/theme.h" #include "../shared/themes.h" #include "../squeek2lvgl/sq2lv.h" #include "lvgl/lvgl.h" #include #include #include #include #include #include #include #include ul_cli_opts cli_opts; ul_config_opts conf_opts; /** * Static variables */ static bool is_alternate_theme = false; static bool is_password_obscured = true; static bool is_keyboard_hidden = false; static lv_obj_t *container; static lv_obj_t *keyboard; static int32_t content_height_with_kb; static int32_t content_height_without_kb; static int32_t content_pad_bottom_with_kb; static int32_t content_pad_bottom_without_kb; /** * Static prototypes */ /** * Handle LV_EVENT_CLICKED events from the theme toggle button. * * @param event the event object */ static void toggle_theme_btn_clicked_cb(lv_event_t *event); /** * Toggle between the light and dark theme. */ static void toggle_theme(void); /** * Set the UI theme. * * @param is_alternate true if the alternate theme should be applied, false if the default theme should be applied */ static void set_theme(bool is_alternate); /** * Get the UI theme. * * @param is_alternate true if the alternate theme should be selected, false if the default theme should be selected */ static const bbx_theme * get_theme(bool is_alternate); /** * Handle LV_EVENT_CLICKED events from the show/hide password toggle button. * * @param event the event object */ static void toggle_pw_btn_clicked_cb(lv_event_t *event); /** * Toggle between showing and hiding the password. */ static void toggle_password_obscured(void); /** * Show / hide the password. * * @param is_hidden true if the password should be hidden, false if it should be shown */ static void set_password_obscured(bool is_obscured); /** * Handle LV_EVENT_CLICKED events from the show/hide keyboard toggle button. * * @param event the event object */ static void toggle_kb_btn_clicked_cb(lv_event_t *event); /** * Toggle between showing and hiding the keyboard. */ static void toggle_keyboard_hidden(void); /** * Show / hide the keyboard * * @param is_hidden true if the keyboard should be hidden, false if it should be shown */ static void set_keyboard_hidden(bool is_hidden); /** * Callback for the pad animation. * * @param obj container widget * @param value the current value of the pad */ static void pad_anim_cb(void *obj, int32_t value); /** * Handle LV_EVENT_VALUE_CHANGED events from the keyboard layout dropdown. * * @param event the event object */ static void layout_dropdown_value_changed_cb(lv_event_t *event); /** * Handle LV_EVENT_CLICKED events from the shutdown button. * * @param event the event object */ static void shutdown_btn_clicked_cb(lv_event_t *event); /** * Handle confirmation events from the shutdown message box. * * @param event the event object */ static void shutdown_mbox_confirmed_cb(lv_event_t *event); /** * Handle declination events from the shutdown message box. * * @param event the event object */ static void shutdown_mbox_declined_cb(lv_event_t *event); /** * Handle LV_EVENT_VALUE_CHANGED events from the keyboard widget. * * @param event the event object */ static void keyboard_value_changed_cb(lv_event_t *event); /** * Handle LV_EVENT_READY events from the keyboard widget. * * @param event the event object */ static void keyboard_ready_cb(lv_event_t *event); /** * Handle LV_EVENT_READY events from the textarea widget. * * @param event the event object */ static void textarea_ready_cb(lv_event_t *event); /** * Print out the entered password and exit. * * @param textarea the textarea widget */ static void print_password_and_exit(lv_obj_t *textarea); /** * Shuts down the device. */ static void shutdown(void); /** * Handle termination signals sent to the process. * * @param signum the signal's number */ static void sigaction_handler(int signum); /** * Restore the terminal and exit from the program with EXIT_FAILURE. */ static void exit_failure(); /** * Static functions */ static void toggle_theme_btn_clicked_cb(lv_event_t *event) { LV_UNUSED(event); toggle_theme(); } static void toggle_theme(void) { is_alternate_theme = !is_alternate_theme; set_theme(is_alternate_theme); } static void set_theme(bool is_alternate) { bbx_theme_apply(get_theme(is_alternate)); } static const bbx_theme * get_theme(bool is_alternate) { return bbx_themes_themes[is_alternate ? conf_opts.theme.alternate_id : conf_opts.theme.default_id]; } static void toggle_pw_btn_clicked_cb(lv_event_t *event) { LV_UNUSED(event); toggle_password_obscured(); } static void toggle_password_obscured(void) { is_password_obscured = !is_password_obscured; set_password_obscured(is_password_obscured); } static void set_password_obscured(bool is_obscured) { lv_obj_t *textarea = lv_keyboard_get_textarea(keyboard); lv_textarea_set_password_mode(textarea, is_obscured); } static void toggle_kb_btn_clicked_cb(lv_event_t *event) { LV_UNUSED(event); toggle_keyboard_hidden(); } static void toggle_keyboard_hidden(void) { is_keyboard_hidden = !is_keyboard_hidden; set_keyboard_hidden(is_keyboard_hidden); } static void set_keyboard_hidden(bool is_hidden) { if (!conf_opts.general.animations) { lv_obj_set_height(container, is_hidden? content_height_without_kb : content_height_with_kb); lv_obj_set_style_pad_bottom(container, is_hidden? content_pad_bottom_without_kb : content_pad_bottom_with_kb, LV_PART_MAIN); return; } lv_anim_t keyboard_anim; lv_anim_init(&keyboard_anim); lv_anim_set_var(&keyboard_anim, container); lv_anim_set_exec_cb(&keyboard_anim, (lv_anim_exec_xcb_t) lv_obj_set_height); lv_anim_set_path_cb(&keyboard_anim, lv_anim_path_ease_out); lv_anim_set_time(&keyboard_anim, 500); lv_anim_set_values(&keyboard_anim, is_hidden? content_height_with_kb : content_height_without_kb, is_hidden? content_height_without_kb : content_height_with_kb); lv_anim_start(&keyboard_anim); if (content_pad_bottom_with_kb != content_pad_bottom_without_kb) { lv_anim_t pad_anim; lv_anim_init(&pad_anim); lv_anim_set_var(&pad_anim, container); lv_anim_set_exec_cb(&pad_anim, pad_anim_cb); lv_anim_set_path_cb(&pad_anim, lv_anim_path_ease_out); lv_anim_set_time(&pad_anim, 500); lv_anim_set_values(&pad_anim, is_hidden? content_pad_bottom_with_kb : content_pad_bottom_without_kb, is_hidden? content_pad_bottom_without_kb : content_pad_bottom_with_kb); lv_anim_start(&pad_anim); } } static void pad_anim_cb(void *obj, int32_t value) { lv_obj_set_style_pad_bottom(obj, value, LV_PART_MAIN); } static void layout_dropdown_value_changed_cb(lv_event_t *event) { lv_obj_t *dropdown = lv_event_get_target(event); uint16_t idx = lv_dropdown_get_selected(dropdown); sq2lv_switch_layout(keyboard, idx); } static void shutdown_btn_clicked_cb(lv_event_t *event) { LV_UNUSED(event); lv_obj_t *mbox = lv_msgbox_create(NULL); lv_msgbox_add_title(mbox, "Shutdown device?"); lv_obj_t *confirm_btn = lv_msgbox_add_footer_button(mbox, "Yes"); lv_obj_add_event_cb(confirm_btn, shutdown_mbox_confirmed_cb, LV_EVENT_CLICKED, NULL); lv_obj_t *decline_btn = lv_msgbox_add_footer_button(mbox, "No"); lv_obj_add_event_cb(decline_btn, shutdown_mbox_declined_cb, LV_EVENT_CLICKED, NULL); lv_obj_set_size(mbox, 400, LV_SIZE_CONTENT); lv_obj_center(mbox); } static void shutdown_mbox_confirmed_cb(lv_event_t *event) { LV_UNUSED(event); shutdown(); } static void shutdown_mbox_declined_cb(lv_event_t *event) { /* Find the containing message box for the clicked button */ lv_obj_t *obj = lv_event_get_target(event); while (obj && !lv_obj_check_type(obj, &lv_msgbox_class)) { obj = lv_obj_get_parent(obj); } if (!obj) { bbx_log(BBX_LOG_LEVEL_ERROR, "Could not find containing message box for clicked button"); return; } lv_msgbox_close(obj); } static void keyboard_value_changed_cb(lv_event_t *event) { lv_obj_t *kb = lv_event_get_target(event); uint16_t btn_id = lv_buttonmatrix_get_selected_button(kb); if (btn_id == LV_BUTTONMATRIX_BUTTON_NONE) { return; } if (sq2lv_is_layer_switcher(kb, btn_id)) { sq2lv_switch_layer(kb, btn_id); return; } lv_keyboard_def_event_cb(event); } static void keyboard_ready_cb(lv_event_t *event) { print_password_and_exit(lv_keyboard_get_textarea(lv_event_get_target(event))); } static void textarea_ready_cb(lv_event_t *event) { print_password_and_exit(lv_event_get_target(event)); } static void print_password_and_exit(lv_obj_t *textarea) { /* Print the password to STDOUT */ printf(cli_opts.newline? "%s\n" : "%s", lv_textarea_get_text(textarea)); /* Clear the screen so that when the password field was unobscured, it cannot * leak via stale display buffers after we've exited */ lv_obj_t *rect = lv_obj_create(lv_screen_active()); lv_obj_set_size(rect, LV_PCT(100), LV_PCT(100)); lv_obj_set_pos(rect, 0, 0); lv_obj_set_style_bg_opa(rect, LV_OPA_COVER, LV_PART_MAIN); lv_obj_set_style_bg_color(rect , lv_color_hex(get_theme(is_alternate_theme)->window.bg_color), LV_PART_MAIN); lv_refr_now(lv_display_get_default()); /* Force the screen to be drawn */ /* Trigger SIGTERM to exit */ sigaction_handler(SIGTERM); } static void shutdown(void) { sync(); reboot(RB_POWER_OFF); } static void sigaction_handler(int signum) { LV_UNUSED(signum); bbx_terminal_reset_current_terminal(); exit(0); } static void exit_failure() { bbx_terminal_reset_current_terminal(); exit(EXIT_FAILURE); } /** * Main */ int main(int argc, char *argv[]) { /* Parse command line options */ ul_cli_parse_opts(argc, argv, &cli_opts); /* Set up log level */ if (cli_opts.common.verbose) { bbx_log_set_level(BBX_LOG_LEVEL_VERBOSE); } /* Announce ourselves */ bbx_log(BBX_LOG_LEVEL_VERBOSE, "unl0kr %s", PROJECT_VERSION); /* Parse config files */ ul_config_init_opts(&conf_opts); ul_config_parse_file("/usr/share/unl0kr/unl0kr.conf", &conf_opts); ul_config_parse_directory("/usr/share/unl0kr/unl0kr.conf.d", &conf_opts); ul_config_parse_file("/etc/unl0kr.conf", &conf_opts); ul_config_parse_directory("/etc/unl0kr.conf.d", &conf_opts); ul_config_parse_files(cli_opts.config_files, cli_opts.num_config_files, &conf_opts); /* Prepare current TTY and clean up on termination */ bbx_terminal_prepare_current_terminal(!conf_opts.quirks.terminal_prevent_graphics_mode, !conf_opts.quirks.terminal_allow_keyboard_input); struct sigaction action; memset(&action, 0, sizeof(action)); action.sa_handler = sigaction_handler; sigaction(SIGINT, &action, NULL); sigaction(SIGTERM, &action, NULL); /* Initialise LVGL and set up logging callback */ lv_init(); lv_log_register_print_cb(bbx_log_print_cb); /* Populate display config */ bbx_display_config_t display_config = { .hor_res = cli_opts.common.hor_res, .ver_res = cli_opts.common.ver_res, .x_offset = cli_opts.common.x_offset, .y_offset = cli_opts.common.y_offset, .dpi = cli_opts.common.dpi, .fbdev_force_refresh = conf_opts.quirks.fbdev_force_refresh }; /* Initialize display */ lv_display_t *disp = bbx_display_create(conf_opts.general.backend, &display_config); if (!disp) { exit_failure(); } int fd_epoll = epoll_create1(EPOLL_CLOEXEC); if (fd_epoll == -1) { bbx_log(BBX_LOG_LEVEL_ERROR, "epoll_create1() is failed"); exit_failure(); } /* Attach input devices and start monitoring for new ones */ struct bbx_indev_opts input_config = { .keymap = &conf_opts.hw_keyboard, .keyboard = conf_opts.input.keyboard, .pointer = conf_opts.input.pointer, .touchscreen = conf_opts.input.touchscreen }; if (bbx_indev_init(fd_epoll, &input_config) == 0) exit_failure(); bbx_indev_set_key_power_cb(shutdown); /* Hide the on-screen keyboard by default if a physical keyboard is connected */ if (conf_opts.keyboard.autohide && bbx_indev_is_keyboard_connected()) { is_keyboard_hidden = true; } /* Initialise theme */ set_theme(is_alternate_theme); /* Figure out a few numbers for sizing and positioning */ const int32_t hor_res = lv_display_get_horizontal_resolution(disp); const int32_t ver_res = lv_display_get_vertical_resolution(disp); const int32_t keyboard_height = ver_res > hor_res ? ver_res / 2.5 : ver_res / 1.8; /* Height for 5 rows */ /* Prevent scrolling when keyboard is off-screen */ lv_obj_t *screen = lv_screen_active(); lv_theme_apply(screen); lv_obj_set_flex_flow(screen, LV_FLEX_FLOW_COLUMN); lv_obj_remove_flag(screen, LV_OBJ_FLAG_SCROLLABLE); /* Configure header */ bbx_header_config_t header_config; bbx_header_init_config(&header_config); header_config.theme_symbol = UL_SYMBOL_ADJUST; header_config.dropdown_options = sq2lv_layout_short_names; bbx_header_widgets_t header_widgets; lv_obj_t *header = bbx_header_create(screen, &header_config, &header_widgets); lv_obj_add_flag(header, BBX_WIDGET_HEADER); /* Add theme toggle to distinguish this widget type */ lv_obj_add_flag(header, BBX_WIDGET_HEADER); lv_theme_apply(header); /* Attach callbacks */ lv_obj_add_event_cb(header_widgets.theme_toggle_btn, toggle_theme_btn_clicked_cb, LV_EVENT_CLICKED, NULL); lv_obj_add_event_cb(header_widgets.keyboard_toggle_btn, toggle_kb_btn_clicked_cb, LV_EVENT_CLICKED, NULL); lv_obj_add_event_cb(header_widgets.layout_dropdown, layout_dropdown_value_changed_cb, LV_EVENT_VALUE_CHANGED, NULL); lv_obj_add_event_cb(header_widgets.shutdown_btn, shutdown_btn_clicked_cb, LV_EVENT_CLICKED, NULL); lv_obj_update_layout(header); content_height_without_kb = ver_res - lv_obj_get_height(header); content_height_with_kb = content_height_without_kb - keyboard_height; /* Container for a message and an input field */ container = lv_obj_create(screen); lv_obj_set_flex_flow(container, LV_FLEX_FLOW_COLUMN); lv_obj_set_flex_align(container, LV_FLEX_ALIGN_END, LV_FLEX_ALIGN_START, LV_FLEX_ALIGN_START); lv_obj_set_size(container, LV_PCT(100), is_keyboard_hidden? content_height_without_kb : content_height_with_kb); lv_obj_set_style_pad_top(container, 10, LV_PART_MAIN); lv_obj_set_style_pad_left(container, 20, LV_PART_MAIN); lv_obj_set_style_pad_right(container, 20, LV_PART_MAIN); int32_t content_pad_row = 10; /* Message for a user */ lv_obj_t *message_label = NULL; if (cli_opts.message) { lv_obj_set_style_pad_row(container, content_pad_row, LV_PART_MAIN); /* lv_label does not support wrapping and scrolling simultaneously, so we place it in a scrollable container */ lv_obj_t *message_container = lv_obj_create(container); lv_obj_set_width(message_container, LV_PCT(100)); lv_obj_set_flex_flow(message_container, LV_FLEX_FLOW_COLUMN); lv_obj_set_flex_grow(message_container, 1); lv_obj_t *message_spacer = lv_obj_create(message_container); lv_obj_set_width(message_spacer, 0); lv_obj_set_flex_grow(message_spacer, 1); message_label = lv_label_create(message_container); lv_obj_set_size(message_label, LV_PCT(100), LV_SIZE_CONTENT); lv_label_set_text(message_label, cli_opts.message); } /* Textarea flexbox */ lv_obj_t *textarea_container = lv_obj_create(container); lv_obj_set_size(textarea_container, LV_PCT(100), LV_SIZE_CONTENT); lv_obj_set_flex_flow(textarea_container, LV_FLEX_FLOW_ROW); /* Textarea */ lv_obj_t *textarea = lv_textarea_create(textarea_container); lv_textarea_set_one_line(textarea, true); lv_textarea_set_password_mode(textarea, conf_opts.textarea.obscured); is_password_obscured = conf_opts.textarea.obscured; lv_textarea_set_password_bullet(textarea, conf_opts.textarea.bullet); lv_textarea_set_placeholder_text(textarea, "Enter password..."); lv_obj_add_event_cb(textarea, textarea_ready_cb, LV_EVENT_READY, NULL); lv_obj_set_flex_grow(textarea, 1); lv_obj_add_state(textarea, LV_STATE_FOCUSED); /* Route physical keyboard input into textarea */ lv_group_add_obj(keyboard_input_group, textarea); lv_obj_update_layout(textarea); const int32_t textarea_height = lv_obj_get_height(textarea); /* Reveal / obscure password button */ lv_obj_t *toggle_pw_btn = lv_button_create(textarea_container); lv_obj_set_size(toggle_pw_btn, textarea_height, textarea_height); lv_obj_t *toggle_pw_btn_label = lv_label_create(toggle_pw_btn); lv_obj_center(toggle_pw_btn_label); lv_label_set_text(toggle_pw_btn_label, LV_SYMBOL_EYE_OPEN); lv_obj_add_event_cb(toggle_pw_btn, toggle_pw_btn_clicked_cb, LV_EVENT_CLICKED, NULL); /* The bottom pad is used to center content when the keyboard is hidden */ content_pad_bottom_with_kb = 20; int32_t content_native_height = textarea_height; if (cli_opts.message) { lv_obj_update_layout(message_label); content_native_height += content_pad_row + lv_obj_get_height(message_label); } content_pad_bottom_without_kb = (content_height_without_kb - content_native_height) / 2; if (content_pad_bottom_without_kb < content_pad_bottom_with_kb) content_pad_bottom_without_kb = content_pad_bottom_with_kb; lv_obj_set_style_pad_bottom(container, is_keyboard_hidden? content_pad_bottom_without_kb : content_pad_bottom_with_kb, LV_PART_MAIN); /* Keyboard (after textarea / label so that key popovers are not drawn over) */ bbx_keyboard_config_t keyboard_config; bbx_keyboard_init_config(&keyboard_config); keyboard_config.layout_id = (int)conf_opts.keyboard.layout_id; keyboard_config.height = keyboard_height; keyboard_config.popovers = conf_opts.keyboard.popovers; keyboard_config.value_changed_callback = keyboard_value_changed_cb; keyboard_config.ready_callback = keyboard_ready_cb; keyboard = bbx_keyboard_create(screen, textarea, &keyboard_config); /* Apply keyboard options */ sq2lv_switch_layout(keyboard, conf_opts.keyboard.layout_id); lv_dropdown_set_selected(header_widgets.layout_dropdown, conf_opts.keyboard.layout_id); /* Periodically run timer / task handler */ uint32_t timeout = conf_opts.general.timeout * 1000; /* ms */ while(1) { uint32_t time_till_next = lv_timer_handler(); if (timeout != 0) { uint32_t time_idle = lv_display_get_inactive_time(NULL); if (time_idle >= timeout) shutdown(); uint32_t time_till_shutdown = timeout - time_idle; if (time_till_shutdown < time_till_next) time_till_next = time_till_shutdown; } struct epoll_event event; int r = epoll_wait(fd_epoll, &event, 1, time_till_next); if (r == 0) continue; if (r > 0) { __extension__ void (*handler)() = event.data.ptr; handler(); continue; } if (errno == EINTR) continue; bbx_log(BBX_LOG_LEVEL_ERROR, "epoll_wait() is failed"); exit_failure(); } return 0; }