123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- /*
- * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/QuickSort.h>
- #include <AK/URL.h>
- #include <Applications/Terminal/TerminalSettingsWindowGML.h>
- #include <LibConfig/Client.h>
- #include <LibCore/ArgsParser.h>
- #include <LibCore/DirIterator.h>
- #include <LibCore/Process.h>
- #include <LibCore/System.h>
- #include <LibDesktop/Launcher.h>
- #include <LibGUI/Action.h>
- #include <LibGUI/ActionGroup.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/BoxLayout.h>
- #include <LibGUI/Button.h>
- #include <LibGUI/CheckBox.h>
- #include <LibGUI/ComboBox.h>
- #include <LibGUI/Event.h>
- #include <LibGUI/FontPicker.h>
- #include <LibGUI/Icon.h>
- #include <LibGUI/ItemListModel.h>
- #include <LibGUI/Menu.h>
- #include <LibGUI/Menubar.h>
- #include <LibGUI/OpacitySlider.h>
- #include <LibGUI/RadioButton.h>
- #include <LibGUI/SpinBox.h>
- #include <LibGUI/TextBox.h>
- #include <LibGUI/Widget.h>
- #include <LibGUI/Window.h>
- #include <LibGfx/Palette.h>
- #include <LibMain/Main.h>
- #include <LibVT/TerminalWidget.h>
- #include <assert.h>
- #include <errno.h>
- #include <pty.h>
- #include <pwd.h>
- #include <signal.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/ioctl.h>
- #include <sys/wait.h>
- #include <unistd.h>
- static void utmp_update(const char* tty, pid_t pid, bool create)
- {
- if (!tty)
- return;
- int utmpupdate_pid = fork();
- if (utmpupdate_pid < 0) {
- perror("fork");
- return;
- }
- if (utmpupdate_pid == 0) {
- // Be careful here! Because fork() only clones one thread it's
- // possible that we deadlock on anything involving a mutex,
- // including the heap! So resort to low-level APIs
- char pid_str[32];
- snprintf(pid_str, sizeof(pid_str), "%d", pid);
- execl("/bin/utmpupdate", "/bin/utmpupdate", "-f", "Terminal", "-p", pid_str, (create ? "-c" : "-d"), tty, nullptr);
- } else {
- wait_again:
- int status = 0;
- if (waitpid(utmpupdate_pid, &status, 0) < 0) {
- int err = errno;
- if (err == EINTR)
- goto wait_again;
- perror("waitpid");
- return;
- }
- if (WIFEXITED(status) && WEXITSTATUS(status) != 0)
- dbgln("Terminal: utmpupdate exited with status {}", WEXITSTATUS(status));
- else if (WIFSIGNALED(status))
- dbgln("Terminal: utmpupdate exited due to unhandled signal {}", WTERMSIG(status));
- }
- }
- static void run_command(String command, bool keep_open)
- {
- String shell = "/bin/Shell";
- auto* pw = getpwuid(getuid());
- if (pw && pw->pw_shell) {
- shell = pw->pw_shell;
- }
- endpwent();
- const char* args[5] = { shell.characters(), nullptr, nullptr, nullptr, nullptr };
- if (!command.is_empty()) {
- int arg_index = 1;
- if (keep_open)
- args[arg_index++] = "--keep-open";
- args[arg_index++] = "-c";
- args[arg_index++] = command.characters();
- }
- const char* envs[] = { "TERM=xterm", "PAGER=more", "PATH=/usr/local/bin:/usr/bin:/bin", nullptr };
- int rc = execve(shell.characters(), const_cast<char**>(args), const_cast<char**>(envs));
- if (rc < 0) {
- perror("execve");
- exit(1);
- }
- VERIFY_NOT_REACHED();
- }
- static RefPtr<GUI::Window> create_settings_window(VT::TerminalWidget& terminal)
- {
- auto window = GUI::Window::construct();
- window->set_window_type(GUI::WindowType::ToolWindow);
- window->set_title("Terminal settings");
- window->set_resizable(false);
- window->resize(200, 240);
- window->center_within(*terminal.window());
- auto& settings = window->set_main_widget<GUI::Widget>();
- settings.load_from_gml(terminal_settings_window_gml);
- auto& beep_bell_radio = *settings.find_descendant_of_type_named<GUI::RadioButton>("beep_bell_radio");
- auto& visual_bell_radio = *settings.find_descendant_of_type_named<GUI::RadioButton>("visual_bell_radio");
- auto& no_bell_radio = *settings.find_descendant_of_type_named<GUI::RadioButton>("no_bell_radio");
- switch (terminal.bell_mode()) {
- case VT::TerminalWidget::BellMode::Visible:
- visual_bell_radio.set_checked(true);
- break;
- case VT::TerminalWidget::BellMode::AudibleBeep:
- beep_bell_radio.set_checked(true);
- break;
- case VT::TerminalWidget::BellMode::Disabled:
- no_bell_radio.set_checked(true);
- break;
- }
- beep_bell_radio.on_checked = [&terminal](bool) {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::AudibleBeep);
- };
- visual_bell_radio.on_checked = [&terminal](bool) {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::Visible);
- };
- no_bell_radio.on_checked = [&terminal](bool) {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::Disabled);
- };
- auto& slider = *settings.find_descendant_of_type_named<GUI::OpacitySlider>("background_opacity_slider");
- slider.on_change = [&terminal](int value) {
- terminal.set_opacity(value);
- };
- slider.set_value(terminal.opacity());
- auto& history_size_spinbox = *settings.find_descendant_of_type_named<GUI::SpinBox>("history_size_spinbox");
- history_size_spinbox.set_value(terminal.max_history_size());
- history_size_spinbox.on_change = [&terminal](int value) {
- terminal.set_max_history_size(value);
- };
- // The settings window takes a reference to this vector, so it needs to outlive this scope.
- // As long as we ensure that only one settings window may be open at a time (which we do),
- // this should cause no problems.
- static Vector<String> color_scheme_names;
- color_scheme_names.clear();
- Core::DirIterator iterator("/res/terminal-colors", Core::DirIterator::SkipParentAndBaseDir);
- while (iterator.has_next()) {
- auto path = iterator.next_path();
- color_scheme_names.append(path.replace(".ini", ""));
- }
- quick_sort(color_scheme_names);
- auto& color_scheme_combo = *settings.find_descendant_of_type_named<GUI::ComboBox>("color_scheme_combo");
- color_scheme_combo.set_only_allow_values_from_model(true);
- color_scheme_combo.set_model(*GUI::ItemListModel<String>::create(color_scheme_names));
- color_scheme_combo.set_selected_index(color_scheme_names.find_first_index(terminal.color_scheme_name()).value());
- color_scheme_combo.set_enabled(color_scheme_names.size() > 1);
- color_scheme_combo.on_change = [&](auto&, const GUI::ModelIndex& index) {
- terminal.set_color_scheme(index.data().as_string());
- };
- return window;
- }
- static RefPtr<GUI::Window> create_find_window(VT::TerminalWidget& terminal)
- {
- auto window = GUI::Window::construct();
- window->set_window_type(GUI::WindowType::ToolWindow);
- window->set_title("Find in Terminal");
- window->set_resizable(false);
- window->resize(300, 90);
- auto& search = window->set_main_widget<GUI::Widget>();
- search.set_fill_with_background_color(true);
- search.set_background_role(ColorRole::Button);
- search.set_layout<GUI::VerticalBoxLayout>();
- search.layout()->set_margins(4);
- auto& find = search.add<GUI::Widget>();
- find.set_layout<GUI::HorizontalBoxLayout>();
- find.layout()->set_margins(4);
- find.set_fixed_height(30);
- auto& find_textbox = find.add<GUI::TextBox>();
- find_textbox.set_fixed_width(230);
- find_textbox.set_focus(true);
- if (terminal.has_selection())
- find_textbox.set_text(terminal.selected_text().replace("\n", " ", true));
- auto& find_backwards = find.add<GUI::Button>();
- find_backwards.set_fixed_width(25);
- find_backwards.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/upward-triangle.png").release_value_but_fixme_should_propagate_errors());
- auto& find_forwards = find.add<GUI::Button>();
- find_forwards.set_fixed_width(25);
- find_forwards.set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/downward-triangle.png").release_value_but_fixme_should_propagate_errors());
- find_textbox.on_return_pressed = [&]() {
- find_backwards.click();
- };
- find_textbox.on_shift_return_pressed = [&]() {
- find_forwards.click();
- };
- auto& match_case = search.add<GUI::CheckBox>("Case sensitive");
- auto& wrap_around = search.add<GUI::CheckBox>("Wrap around");
- find_backwards.on_click = [&](auto) {
- auto needle = find_textbox.text();
- if (needle.is_empty()) {
- return;
- }
- auto found_range = terminal.find_previous(needle, terminal.normalized_selection().start(), match_case.is_checked(), wrap_around.is_checked());
- if (found_range.is_valid()) {
- terminal.scroll_to_row(found_range.start().row());
- terminal.set_selection(found_range);
- }
- };
- find_forwards.on_click = [&](auto) {
- auto needle = find_textbox.text();
- if (needle.is_empty()) {
- return;
- }
- auto found_range = terminal.find_next(needle, terminal.normalized_selection().end(), match_case.is_checked(), wrap_around.is_checked());
- if (found_range.is_valid()) {
- terminal.scroll_to_row(found_range.start().row());
- terminal.set_selection(found_range);
- }
- };
- return window;
- }
- ErrorOr<int> serenity_main(Main::Arguments arguments)
- {
- TRY(Core::System::pledge("stdio tty rpath cpath wpath recvfd sendfd proc exec unix sigaction", nullptr));
- struct sigaction act;
- memset(&act, 0, sizeof(act));
- act.sa_flags = SA_NOCLDWAIT;
- act.sa_handler = SIG_IGN;
- TRY(Core::System::sigaction(SIGCHLD, &act, nullptr));
- auto app = GUI::Application::construct(arguments);
- TRY(Core::System::pledge("stdio tty rpath cpath wpath recvfd sendfd proc exec unix", nullptr));
- Config::pledge_domains("Terminal");
- const char* command_to_execute = nullptr;
- bool keep_open = false;
- Core::ArgsParser args_parser;
- args_parser.add_option(command_to_execute, "Execute this command inside the terminal", nullptr, 'e', "command");
- args_parser.add_option(keep_open, "Keep the terminal open after the command has finished executing", nullptr, 'k');
- args_parser.parse(arguments);
- if (keep_open && !command_to_execute) {
- warnln("Option -k can only be used in combination with -e.");
- return 1;
- }
- int ptm_fd;
- pid_t shell_pid = forkpty(&ptm_fd, nullptr, nullptr, nullptr);
- if (shell_pid < 0) {
- perror("forkpty");
- return 1;
- }
- if (shell_pid == 0) {
- close(ptm_fd);
- if (command_to_execute)
- run_command(command_to_execute, keep_open);
- else
- run_command(Config::read_string("Terminal", "Startup", "Command", ""), false);
- VERIFY_NOT_REACHED();
- }
- auto* pts_name = ptsname(ptm_fd);
- utmp_update(pts_name, shell_pid, true);
- auto app_icon = GUI::Icon::default_icon("app-terminal");
- auto window = GUI::Window::construct();
- window->set_title("Terminal");
- window->set_background_color(Color::Black);
- window->set_double_buffering_enabled(false);
- auto& terminal = window->set_main_widget<VT::TerminalWidget>(ptm_fd, true);
- terminal.on_command_exit = [&] {
- app->quit(0);
- };
- terminal.on_title_change = [&](auto title) {
- window->set_title(title);
- };
- terminal.on_terminal_size_change = [&](auto& size) {
- window->resize(size);
- };
- terminal.apply_size_increments_to_window(*window);
- window->set_icon(app_icon.bitmap_for_size(16));
- auto bell = Config::read_string("Terminal", "Window", "Bell", "Visible");
- if (bell == "AudibleBeep") {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::AudibleBeep);
- } else if (bell == "Disabled") {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::Disabled);
- } else {
- terminal.set_bell_mode(VT::TerminalWidget::BellMode::Visible);
- }
- RefPtr<GUI::Window> settings_window;
- RefPtr<GUI::Window> find_window;
- auto new_opacity = Config::read_i32("Terminal", "Window", "Opacity", 255);
- terminal.set_opacity(new_opacity);
- window->set_has_alpha_channel(new_opacity < 255);
- auto new_scrollback_size = Config::read_i32("Terminal", "Terminal", "MaxHistorySize", terminal.max_history_size());
- terminal.set_max_history_size(new_scrollback_size);
- auto open_settings_action = GUI::Action::create("&Settings", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png").release_value_but_fixme_should_propagate_errors(),
- [&](const GUI::Action&) {
- if (!settings_window)
- settings_window = create_settings_window(terminal);
- settings_window->show();
- settings_window->move_to_front();
- settings_window->on_close = [&]() {
- Config::write_i32("Terminal", "Window", "Opacity", terminal.opacity());
- Config::write_i32("Terminal", "Terminal", "MaxHistorySize", terminal.max_history_size());
- auto bell = terminal.bell_mode();
- auto bell_setting = String::empty();
- if (bell == VT::TerminalWidget::BellMode::AudibleBeep) {
- bell_setting = "AudibleBeep";
- } else if (bell == VT::TerminalWidget::BellMode::Disabled) {
- bell_setting = "Disabled";
- } else {
- bell_setting = "Visible";
- }
- Config::write_string("Terminal", "Window", "Bell", bell_setting);
- };
- });
- terminal.context_menu().add_separator();
- auto pick_font_action = GUI::Action::create("&Terminal Font...", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-font-editor.png").release_value_but_fixme_should_propagate_errors(),
- [&](auto&) {
- auto picker = GUI::FontPicker::construct(window, &terminal.font(), true);
- if (picker->exec() == GUI::Dialog::ExecOK) {
- terminal.set_font_and_resize_to_fit(*picker->font());
- window->resize(terminal.size());
- Config::write_string("Terminal", "Text", "Font", picker->font()->qualified_name());
- }
- });
- terminal.context_menu().add_action(pick_font_action);
- terminal.context_menu().add_separator();
- terminal.context_menu().add_action(open_settings_action);
- auto& file_menu = window->add_menu("&File");
- file_menu.add_action(GUI::Action::create("Open New &Terminal", { Mod_Ctrl | Mod_Shift, Key_N }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-terminal.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
- Core::Process::spawn("/bin/Terminal");
- }));
- file_menu.add_action(open_settings_action);
- file_menu.add_separator();
- file_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) {
- dbgln("Terminal: Quit menu activated!");
- GUI::Application::the()->quit();
- }));
- auto& edit_menu = window->add_menu("&Edit");
- edit_menu.add_action(terminal.copy_action());
- edit_menu.add_action(terminal.paste_action());
- edit_menu.add_separator();
- edit_menu.add_action(GUI::Action::create("&Find...", { Mod_Ctrl | Mod_Shift, Key_F }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/find.png").release_value_but_fixme_should_propagate_errors(),
- [&](auto&) {
- if (!find_window)
- find_window = create_find_window(terminal);
- find_window->show();
- find_window->move_to_front();
- }));
- auto& view_menu = window->add_menu("&View");
- view_menu.add_action(GUI::CommonActions::make_fullscreen_action([&](auto&) {
- window->set_fullscreen(!window->is_fullscreen());
- }));
- view_menu.add_action(terminal.clear_including_history_action());
- view_menu.add_separator();
- view_menu.add_action(pick_font_action);
- auto& help_menu = window->add_menu("&Help");
- help_menu.add_action(GUI::CommonActions::make_help_action([](auto&) {
- Desktop::Launcher::open(URL::create_with_file_protocol("/usr/share/man/man1/Terminal.md"), "/bin/Help");
- }));
- help_menu.add_action(GUI::CommonActions::make_about_action("Terminal", app_icon, window));
- window->on_close = [&]() {
- if (find_window)
- find_window->close();
- if (settings_window)
- settings_window->close();
- };
- TRY(Core::System::unveil("/res", "r"));
- TRY(Core::System::unveil("/bin", "r"));
- TRY(Core::System::unveil("/bin/Terminal", "x"));
- TRY(Core::System::unveil("/bin/utmpupdate", "x"));
- TRY(Core::System::unveil("/etc/FileIconProvider.ini", "r"));
- TRY(Core::System::unveil("/tmp/portal/launch", "rw"));
- TRY(Core::System::unveil("/tmp/portal/config", "rw"));
- TRY(Core::System::unveil(nullptr, nullptr));
- window->show();
- int result = app->exec();
- dbgln("Exiting terminal, updating utmp");
- utmp_update(pts_name, 0, false);
- return result;
- }
|