(file_mask_dialog): indentation.
[midnight-commander.git] / src / main.c
blobf00d4c0d7d9d99227ce858f8d889cf3189c87ae5
1 /*
2 Main program for the Midnight Commander
4 Copyright (C) 1994-2021
5 Free Software Foundation, Inc.
7 Written by:
8 Miguel de Icaza, 1994, 1995, 1996, 1997
9 Janne Kukonlehto, 1994, 1995
10 Norbert Warmuth, 1997
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 /** \file main.c
29 * \brief Source: this is a main module
32 #include <config.h>
34 #include <ctype.h>
35 #include <errno.h>
36 #include <locale.h>
37 #include <pwd.h> /* for username in xterm title */
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <sys/types.h>
42 #include <sys/wait.h>
43 #include <signal.h>
44 #include <unistd.h> /* getsid() */
46 #include "lib/global.h"
48 #include "lib/event.h"
49 #include "lib/tty/tty.h"
50 #include "lib/tty/key.h" /* For init_key() */
51 #include "lib/tty/mouse.h" /* init_mouse() */
52 #include "lib/skin.h"
53 #include "lib/filehighlight.h"
54 #include "lib/fileloc.h"
55 #include "lib/strutil.h"
56 #include "lib/util.h"
57 #include "lib/vfs/vfs.h" /* vfs_init(), vfs_shut() */
59 #include "filemanager/filemanager.h"
60 #include "filemanager/treestore.h" /* tree_store_save */
61 #include "filemanager/layout.h"
62 #include "filemanager/ext.h" /* flush_extension_file() */
63 #include "filemanager/command.h" /* cmdline */
64 #include "filemanager/panel.h" /* panalized_panel */
66 #include "vfs/plugins_init.h"
68 #include "events_init.h"
69 #include "args.h"
70 #ifdef ENABLE_SUBSHELL
71 #include "subshell/subshell.h"
72 #endif
73 #include "keymap.h"
74 #include "setup.h" /* load_setup() */
76 #ifdef HAVE_CHARSET
77 #include "lib/charsets.h"
78 #include "selcodepage.h"
79 #endif /* HAVE_CHARSET */
81 #include "consaver/cons.saver.h" /* cons_saver_pid */
83 /*** global variables ****************************************************************************/
85 /*** file scope macro definitions ****************************************************************/
87 /*** file scope type declarations ****************************************************************/
89 /*** file scope variables ************************************************************************/
91 /*** file scope functions ************************************************************************/
92 /* --------------------------------------------------------------------------------------------- */
94 static void
95 check_codeset (void)
97 const char *current_system_codepage = NULL;
99 current_system_codepage = str_detect_termencoding ();
101 #ifdef HAVE_CHARSET
103 const char *_display_codepage;
105 _display_codepage = get_codepage_id (mc_global.display_codepage);
107 if (strcmp (_display_codepage, current_system_codepage) != 0)
109 mc_global.display_codepage = get_codepage_index (current_system_codepage);
110 if (mc_global.display_codepage == -1)
111 mc_global.display_codepage = 0;
113 mc_config_set_string (mc_global.main_config, CONFIG_MISC_SECTION, "display_codepage",
114 cp_display);
117 #endif
119 mc_global.utf8_display = str_isutf8 (current_system_codepage);
122 /* --------------------------------------------------------------------------------------------- */
123 /** POSIX version. The only version we support. */
125 static void
126 OS_Setup (void)
128 const char *datadir_env;
130 mc_shell_init ();
132 /* This is the directory, where MC was installed, on Unix this is DATADIR */
133 /* and can be overriden by the MC_DATADIR environment variable */
134 datadir_env = g_getenv ("MC_DATADIR");
135 if (datadir_env != NULL)
136 mc_global.sysconfig_dir = g_strdup (datadir_env);
137 else
138 mc_global.sysconfig_dir = g_strdup (SYSCONFDIR);
140 mc_global.share_data_dir = g_strdup (DATADIR);
143 /* --------------------------------------------------------------------------------------------- */
145 static void
146 sigchld_handler_no_subshell (int sig)
148 #ifdef __linux__
149 int pid, status;
151 if (mc_global.tty.console_flag == '\0')
152 return;
154 /* COMMENT: if it were true that after the call to handle_console(..INIT)
155 the value of mc_global.tty.console_flag never changed, we could simply not install
156 this handler at all if (!mc_global.tty.console_flag && !mc_global.tty.use_subshell). */
158 /* That comment is no longer true. We need to wait() on a sigchld
159 handler (that's at least what the tarfs code expects currently). */
161 pid = waitpid (cons_saver_pid, &status, WUNTRACED | WNOHANG);
163 if (pid == cons_saver_pid)
165 if (WIFSTOPPED (status))
167 /* Someone has stopped cons.saver - restart it */
168 kill (pid, SIGCONT);
170 else
172 /* cons.saver has died - disable console saving */
173 handle_console (CONSOLE_DONE);
174 mc_global.tty.console_flag = '\0';
177 /* If we got here, some other child exited; ignore it */
178 #endif /* __linux__ */
180 (void) sig;
183 /* --------------------------------------------------------------------------------------------- */
185 static void
186 init_sigchld (void)
188 struct sigaction sigchld_action;
190 memset (&sigchld_action, 0, sizeof (sigchld_action));
191 sigchld_action.sa_handler =
192 #ifdef ENABLE_SUBSHELL
193 mc_global.tty.use_subshell ? sigchld_handler :
194 #endif /* ENABLE_SUBSHELL */
195 sigchld_handler_no_subshell;
197 sigemptyset (&sigchld_action.sa_mask);
199 #ifdef SA_RESTART
200 sigchld_action.sa_flags = SA_RESTART;
201 #endif /* !SA_RESTART */
203 if (sigaction (SIGCHLD, &sigchld_action, NULL) == -1)
205 #ifdef ENABLE_SUBSHELL
207 * This may happen on QNX Neutrino 6, where SA_RESTART
208 * is defined but not implemented. Fallback to no subshell.
210 mc_global.tty.use_subshell = FALSE;
211 #endif /* ENABLE_SUBSHELL */
215 /* --------------------------------------------------------------------------------------------- */
217 * Check MC_SID to prevent running one mc from another.
219 * @return TRUE if no parent mc in our session was found, FALSE otherwise.
222 static gboolean
223 check_sid (void)
225 pid_t my_sid, old_sid;
226 const char *sid_str;
228 sid_str = getenv ("MC_SID");
229 if (sid_str == NULL)
230 return TRUE;
232 old_sid = (pid_t) strtol (sid_str, NULL, 0);
233 if (old_sid == 0)
234 return TRUE;
236 my_sid = getsid (0);
237 if (my_sid == -1)
238 return TRUE;
240 /* The parent mc is in a different session, it's OK */
241 return (old_sid != my_sid);
244 /* --------------------------------------------------------------------------------------------- */
245 /*** public functions ****************************************************************************/
246 /* --------------------------------------------------------------------------------------------- */
249 main (int argc, char *argv[])
251 GError *mcerror = NULL;
252 int exit_code = EXIT_FAILURE;
254 mc_global.run_from_parent_mc = !check_sid ();
256 /* We had LC_CTYPE before, LC_ALL includs LC_TYPE as well */
257 #ifdef HAVE_SETLOCALE
258 (void) setlocale (LC_ALL, "");
259 #endif
260 (void) bindtextdomain (PACKAGE, LOCALEDIR);
261 (void) textdomain (PACKAGE);
263 /* do this before args parsing */
264 str_init_strings (NULL);
266 mc_setup_run_mode (argv); /* are we mc? editor? viewer? etc... */
268 if (!mc_args_parse (&argc, &argv, "mc", &mcerror))
270 startup_exit_falure:
271 fprintf (stderr, _("Failed to run:\n%s\n"), mcerror->message);
272 g_error_free (mcerror);
273 startup_exit_ok:
274 mc_shell_deinit ();
275 str_uninit_strings ();
276 return exit_code;
279 /* do this before mc_args_show_info () to view paths in the --datadir-info output */
280 OS_Setup ();
282 if (!g_path_is_absolute (mc_config_get_home_dir ()))
284 mc_propagate_error (&mcerror, 0, "%s: %s", _("Home directory path is not absolute"),
285 mc_config_get_home_dir ());
286 mc_event_deinit (NULL);
287 goto startup_exit_falure;
290 if (!mc_args_show_info ())
292 exit_code = EXIT_SUCCESS;
293 goto startup_exit_ok;
296 if (!events_init (&mcerror))
297 goto startup_exit_falure;
299 mc_config_init_config_paths (&mcerror);
300 if (mcerror != NULL)
302 mc_event_deinit (NULL);
303 goto startup_exit_falure;
306 vfs_init ();
307 vfs_plugins_init ();
309 load_setup ();
311 /* Must be done after load_setup because depends on mc_global.vfs.cd_symlinks */
312 vfs_setup_work_dir ();
314 /* Set up temporary directory after VFS initialization */
315 mc_tmpdir ();
317 /* do this after vfs initialization and vfs working directory setup
318 due to mc_setctl() and mcedit_arg_vpath_new() calls in mc_setup_by_args() */
319 if (!mc_setup_by_args (argc, argv, &mcerror))
321 vfs_shut ();
322 done_setup ();
323 g_free (saved_other_dir);
324 mc_event_deinit (NULL);
325 goto startup_exit_falure;
328 /* Resolve the other_dir panel option.
329 * 1. Must be done after vfs_setup_work_dir().
330 * 2. Must be done after mc_setup_by_args() because of mc_run_mode.
332 if (mc_global.mc_run_mode == MC_RUN_FULL)
334 char *buffer;
335 vfs_path_t *vpath;
337 buffer = mc_config_get_string (mc_global.panels_config, "Dirs", "other_dir", ".");
338 vpath = vfs_path_from_str (buffer);
339 if (vfs_file_is_local (vpath))
340 saved_other_dir = buffer;
341 else
342 g_free (buffer);
343 vfs_path_free (vpath, TRUE);
346 /* check terminal type
347 * $TERM must be set and not empty
348 * mc_global.tty.xterm_flag is used in init_key() and tty_init()
349 * Do this after mc_args_handle() where mc_args__force_xterm is set up.
351 mc_global.tty.xterm_flag = tty_check_term (mc_args__force_xterm);
353 /* NOTE: This has to be called before tty_init or whatever routine
354 calls any define_sequence */
355 init_key ();
357 /* Must be done before installing the SIGCHLD handler [[FIXME]] */
358 handle_console (CONSOLE_INIT);
360 #ifdef ENABLE_SUBSHELL
361 /* Disallow subshell when invoked as standalone viewer or editor from running mc */
362 if (mc_global.mc_run_mode != MC_RUN_FULL && mc_global.run_from_parent_mc)
363 mc_global.tty.use_subshell = FALSE;
365 if (mc_global.tty.use_subshell)
366 subshell_get_console_attributes ();
367 #endif /* ENABLE_SUBSHELL */
369 /* Install the SIGCHLD handler; must be done before init_subshell() */
370 init_sigchld ();
372 /* We need this, since ncurses endwin () doesn't restore the signals */
373 save_stop_handler ();
375 /* Must be done before init_subshell, to set up the terminal size: */
376 /* FIXME: Should be removed and LINES and COLS computed on subshell */
377 tty_init (!mc_args__nomouse, mc_global.tty.xterm_flag);
379 /* start check mc_global.display_codepage and mc_global.source_codepage */
380 check_codeset ();
382 /* Removing this from the X code let's us type C-c */
383 load_key_defs ();
385 keymap_load (!mc_args__nokeymap);
387 #ifdef USE_INTERNAL_EDIT
388 macros_list = g_array_new (TRUE, FALSE, sizeof (macros_t));
389 #endif /* USE_INTERNAL_EDIT */
391 tty_init_colors (mc_global.tty.disable_colors, mc_args__force_colors);
393 mc_skin_init (NULL, &mcerror);
394 dlg_set_default_colors ();
395 input_set_default_colors ();
396 if (mc_global.mc_run_mode == MC_RUN_FULL)
397 command_set_default_colors ();
399 mc_error_message (&mcerror, NULL);
401 #ifdef ENABLE_SUBSHELL
402 /* Done here to ensure that the subshell doesn't */
403 /* inherit the file descriptors opened below, etc */
404 if (mc_global.tty.use_subshell && mc_global.run_from_parent_mc)
406 int r;
408 r = query_dialog (_("Warning"),
409 _("GNU Midnight Commander\nis already running on this terminal.\n"
410 "Subshell support will be disabled."),
411 D_ERROR, 2, _("&OK"), _("&Quit"));
412 if (r == 0)
414 /* parent mc was found and the user wants to continue */
417 else
419 /* parent mc was found and the user wants to quit mc */
420 mc_global.midnight_shutdown = TRUE;
423 mc_global.tty.use_subshell = FALSE;
426 if (mc_global.tty.use_subshell)
427 init_subshell ();
428 #endif /* ENABLE_SUBSHELL */
430 if (!mc_global.midnight_shutdown)
432 /* Also done after init_subshell, to save any shell init file messages */
433 if (mc_global.tty.console_flag != '\0')
434 handle_console (CONSOLE_SAVE);
436 if (mc_global.tty.alternate_plus_minus)
437 application_keypad_mode ();
439 /* Done after subshell initialization to allow select and paste text by mouse
440 w/o Shift button in subshell in the native console */
441 init_mouse ();
443 /* Done after tty_enter_ca_mode (tty_init) because in VTE bracketed mode is
444 separate for the normal and alternate screens */
445 enable_bracketed_paste ();
447 /* subshell_prompt is NULL here */
448 mc_prompt = (geteuid () == 0) ? "# " : "$ ";
451 /* Program main loop */
452 if (mc_global.midnight_shutdown)
453 exit_code = EXIT_SUCCESS;
454 else
455 exit_code = do_nc ()? EXIT_SUCCESS : EXIT_FAILURE;
457 disable_bracketed_paste ();
459 disable_mouse ();
461 /* Save the tree store */
462 (void) tree_store_save ();
464 keymap_free ();
466 /* Virtual File System shutdown */
467 vfs_shut ();
469 flush_extension_file (); /* does only free memory */
471 mc_skin_deinit ();
472 tty_colors_done ();
474 tty_shutdown ();
476 done_setup ();
478 if (mc_global.tty.console_flag != '\0' && (quit & SUBSHELL_EXIT) == 0)
479 handle_console (CONSOLE_RESTORE);
480 if (mc_global.tty.alternate_plus_minus)
481 numeric_keypad_mode ();
483 (void) signal (SIGCHLD, SIG_DFL); /* Disable the SIGCHLD handler */
485 if (mc_global.tty.console_flag != '\0')
486 handle_console (CONSOLE_DONE);
488 if (mc_global.mc_run_mode == MC_RUN_FULL && mc_args__last_wd_file != NULL
489 && last_wd_string != NULL && !print_last_revert)
491 int last_wd_fd;
493 last_wd_fd = open (mc_args__last_wd_file, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL,
494 S_IRUSR | S_IWUSR);
495 if (last_wd_fd != -1)
497 ssize_t ret1;
498 int ret2;
499 ret1 = write (last_wd_fd, last_wd_string, strlen (last_wd_string));
500 ret2 = close (last_wd_fd);
501 (void) ret1;
502 (void) ret2;
505 g_free (last_wd_string);
507 mc_shell_deinit ();
509 done_key ();
511 #ifdef USE_INTERNAL_EDIT
512 if (macros_list != NULL)
514 guint i;
516 for (i = 0; i < macros_list->len; i++)
518 macros_t *macros;
520 macros = &g_array_index (macros_list, struct macros_t, i);
521 if (macros != NULL && macros->macro != NULL)
522 (void) g_array_free (macros->macro, TRUE);
524 (void) g_array_free (macros_list, TRUE);
526 #endif /* USE_INTERNAL_EDIT */
528 str_uninit_strings ();
530 if (mc_global.mc_run_mode != MC_RUN_EDITOR)
531 g_free (mc_run_param0);
532 else
533 g_list_free_full ((GList *) mc_run_param0, (GDestroyNotify) mcedit_arg_free);
535 g_free (mc_run_param1);
536 g_free (saved_other_dir);
538 mc_config_deinit_config_paths ();
540 (void) mc_event_deinit (&mcerror);
541 if (mcerror != NULL)
543 fprintf (stderr, _("\nFailed while close:\n%s\n"), mcerror->message);
544 g_error_free (mcerror);
545 exit_code = EXIT_FAILURE;
548 (void) putchar ('\n'); /* Hack to make shell's prompt start at left of screen */
550 return exit_code;
553 /* --------------------------------------------------------------------------------------------- */