]> code.delx.au - gnu-emacs/blob - src/emacs.c
; Merge from origin/emacs-25
[gnu-emacs] / src / emacs.c
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2
3 Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2016 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or (at
11 your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21 #define INLINE EXTERN_INLINE
22 #include <config.h>
23
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <stdio.h>
27
28 #include <sys/types.h>
29 #include <sys/file.h>
30 #include <unistd.h>
31
32 #include <close-stream.h>
33
34 #define MAIN_PROGRAM
35 #include "lisp.h"
36
37 #ifdef WINDOWSNT
38 #include <fcntl.h>
39 #include <sys/socket.h>
40 #include <mbstring.h>
41 #include "w32.h"
42 #include "w32heap.h"
43 #endif
44
45 #if defined WINDOWSNT || defined HAVE_NTGUI
46 #include "w32select.h"
47 #include "w32font.h"
48 #include "w32common.h"
49 #endif
50
51 #if defined CYGWIN
52 #include "cygw32.h"
53 #endif
54
55 #ifdef MSDOS
56 #include <binary-io.h>
57 #include "dosfns.h"
58 #endif
59
60 #ifdef HAVE_LIBSYSTEMD
61 # include <systemd/sd-daemon.h>
62 # include <sys/socket.h>
63 #endif
64
65 #ifdef HAVE_WINDOW_SYSTEM
66 #include TERM_HEADER
67 #endif /* HAVE_WINDOW_SYSTEM */
68
69 #include "coding.h"
70 #include "intervals.h"
71 #include "character.h"
72 #include "buffer.h"
73 #include "window.h"
74 #include "xwidget.h"
75 #include "atimer.h"
76 #include "blockinput.h"
77 #include "syssignal.h"
78 #include "process.h"
79 #include "frame.h"
80 #include "termhooks.h"
81 #include "keyboard.h"
82 #include "keymap.h"
83 #include "category.h"
84 #include "charset.h"
85 #include "composite.h"
86 #include "dispextern.h"
87 #include "regex.h"
88 #include "sheap.h"
89 #include "syntax.h"
90 #include "sysselect.h"
91 #include "systime.h"
92 #include "puresize.h"
93
94 #include "gnutls.h"
95
96 #if (defined PROFILING \
97 && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
98 # include <sys/gmon.h>
99 extern void moncontrol (int mode);
100 #endif
101
102 #ifdef HAVE_SETLOCALE
103 #include <locale.h>
104 #endif
105
106 #if HAVE_WCHAR_H
107 # include <wchar.h>
108 #endif
109
110 #ifdef HAVE_SETRLIMIT
111 #include <sys/time.h>
112 #include <sys/resource.h>
113 #endif
114
115 #ifdef HAVE_PERSONALITY_LINUX32
116 #include <sys/personality.h>
117 #endif
118
119 static const char emacs_version[] = PACKAGE_VERSION;
120 static const char emacs_copyright[] = COPYRIGHT;
121 static const char emacs_bugreport[] = PACKAGE_BUGREPORT;
122
123 /* Empty lisp strings. To avoid having to build any others. */
124 Lisp_Object empty_unibyte_string, empty_multibyte_string;
125
126 #ifdef WINDOWSNT
127 /* Cache for externally loaded libraries. */
128 Lisp_Object Vlibrary_cache;
129 #endif
130
131 /* Set after Emacs has started up the first time.
132 Prevents reinitialization of the Lisp world and keymaps
133 on subsequent starts. */
134 bool initialized;
135
136 /* Set to true if this instance of Emacs might dump. */
137 #ifndef DOUG_LEA_MALLOC
138 static
139 #endif
140 bool might_dump;
141
142 #ifdef DARWIN_OS
143 extern void unexec_init_emacs_zone (void);
144 #endif
145
146 /* If true, Emacs should not attempt to use a window-specific code,
147 but instead should use the virtual terminal under which it was started. */
148 bool inhibit_window_system;
149
150 /* If true, a filter or a sentinel is running. Tested to save the match
151 data on the first attempt to change it inside asynchronous code. */
152 bool running_asynch_code;
153
154 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
155 /* If true, -d was specified, meaning we're using some window system. */
156 bool display_arg;
157 #endif
158
159 /* An address near the bottom of the stack.
160 Tells GC how to save a copy of the stack. */
161 char *stack_bottom;
162
163 #ifdef GNU_LINUX
164 /* The gap between BSS end and heap start as far as we can tell. */
165 static uprintmax_t heap_bss_diff;
166 #endif
167
168 /* To run as a daemon under Cocoa or Windows, we must do a fork+exec,
169 not a simple fork.
170
171 On Cocoa, CoreFoundation lib fails in forked process:
172 http://developer.apple.com/ReleaseNotes/
173 CoreFoundation/CoreFoundation.html)
174
175 On Windows, a Cygwin fork child cannot access the USER subsystem.
176
177 We mark being in the exec'd process by a daemon name argument of
178 form "--daemon=\nFD0,FD1\nNAME" where FD are the pipe file descriptors,
179 NAME is the original daemon name, if any. */
180 #if defined NS_IMPL_COCOA || (defined HAVE_NTGUI && defined CYGWIN)
181 # define DAEMON_MUST_EXEC
182 #endif
183
184 /* True means running Emacs without interactive terminal. */
185 bool noninteractive;
186
187 /* True means remove site-lisp directories from load-path. */
188 bool no_site_lisp;
189
190 /* True means put details like time stamps into builds. */
191 bool build_details;
192
193 /* Name for the server started by the daemon.*/
194 static char *daemon_name;
195
196 #ifndef WINDOWSNT
197 /* Pipe used to send exit notification to the daemon parent at
198 startup. */
199 int daemon_pipe[2];
200 #else
201 HANDLE w32_daemon_event;
202 #endif
203
204 /* Save argv and argc. */
205 char **initial_argv;
206 int initial_argc;
207
208 static void sort_args (int argc, char **argv);
209 static void syms_of_emacs (void);
210
211 /* C99 needs each string to be at most 4095 characters, and the usage
212 strings below are split to not overflow this limit. */
213 static char const *const usage_message[] =
214 { "\
215 \n\
216 Run Emacs, the extensible, customizable, self-documenting real-time\n\
217 display editor. The recommended way to start Emacs for normal editing\n\
218 is with no options at all.\n\
219 \n\
220 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
221 read the main documentation for these command-line arguments.\n\
222 \n\
223 Initialization options:\n\
224 \n\
225 ",
226 "\
227 --batch do not do interactive display; implies -q\n\
228 --chdir DIR change to directory DIR\n\
229 --daemon start a server in the background\n\
230 --debug-init enable Emacs Lisp debugger for init file\n\
231 --display, -d DISPLAY use X server DISPLAY\n\
232 ",
233 "\
234 --no-build-details do not add build details such as time stamps\n\
235 --no-desktop do not load a saved desktop\n\
236 --no-init-file, -q load neither ~/.emacs nor default.el\n\
237 --no-loadup, -nl do not load loadup.el into bare Emacs\n\
238 --no-site-file do not load site-start.el\n\
239 --no-x-resources do not load X resources\n\
240 --no-site-lisp, -nsl do not add site-lisp directories to load-path\n\
241 --no-splash do not display a splash screen on startup\n\
242 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\
243 ",
244 "\
245 --quick, -Q equivalent to:\n\
246 -q --no-site-file --no-site-lisp --no-splash\n\
247 --no-x-resources\n\
248 --script FILE run FILE as an Emacs Lisp script\n\
249 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
250 --user, -u USER load ~USER/.emacs instead of your own\n\
251 \n\
252 ",
253 "\
254 Action options:\n\
255 \n\
256 FILE visit FILE using find-file\n\
257 +LINE go to line LINE in next FILE\n\
258 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\
259 --directory, -L DIR prepend DIR to load-path (with :DIR, append DIR)\n\
260 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
261 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
262 ",
263 "\
264 --file FILE visit FILE using find-file\n\
265 --find-file FILE visit FILE using find-file\n\
266 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\
267 --insert FILE insert contents of FILE into current buffer\n\
268 --kill exit without asking for confirmation\n\
269 --load, -l FILE load Emacs Lisp FILE using the load function\n\
270 --visit FILE visit FILE using find-file\n\
271 \n\
272 ",
273 "\
274 Display options:\n\
275 \n\
276 --background-color, -bg COLOR window background color\n\
277 --basic-display, -D disable many display features;\n\
278 used for debugging Emacs\n\
279 --border-color, -bd COLOR main border color\n\
280 --border-width, -bw WIDTH width of main border\n\
281 ",
282 "\
283 --color, --color=MODE override color mode for character terminals;\n\
284 MODE defaults to `auto', and\n\
285 can also be `never', `always',\n\
286 or a mode name like `ansi8'\n\
287 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
288 --font, -fn FONT default font; must be fixed-width\n\
289 --foreground-color, -fg COLOR window foreground color\n\
290 ",
291 "\
292 --fullheight, -fh make the first frame high as the screen\n\
293 --fullscreen, -fs make the first frame fullscreen\n\
294 --fullwidth, -fw make the first frame wide as the screen\n\
295 --maximized, -mm make the first frame maximized\n\
296 --geometry, -g GEOMETRY window geometry\n\
297 ",
298 "\
299 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\
300 --iconic start Emacs in iconified state\n\
301 --internal-border, -ib WIDTH width between text and main border\n\
302 --line-spacing, -lsp PIXELS additional space to put between lines\n\
303 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
304 --name NAME title for initial Emacs frame\n\
305 ",
306 "\
307 --no-blinking-cursor, -nbc disable blinking cursor\n\
308 --reverse-video, -r, -rv switch foreground and background\n\
309 --title, -T TITLE title for initial Emacs frame\n\
310 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
311 --xrm XRESOURCES set additional X resources\n\
312 --parent-id XID set parent window\n\
313 --help display this help and exit\n\
314 --version output version information and exit\n\
315 \n\
316 ",
317 "\
318 You can generally also specify long option names with a single -; for\n\
319 example, -batch as well as --batch. You can use any unambiguous\n\
320 abbreviation for a --option.\n\
321 \n\
322 Various environment variables and window system resources also affect\n\
323 the operation of Emacs. See the main documentation.\n\
324 \n\
325 Report bugs to " PACKAGE_BUGREPORT ". First, please see the Bugs\n\
326 section of the Emacs manual or the file BUGS.\n"
327 };
328
329 \f
330 /* True if handling a fatal error already. */
331 bool fatal_error_in_progress;
332
333 #ifdef HAVE_NS
334 /* NS autrelease pool, for memory management. */
335 static void *ns_pool;
336 #endif
337
338 #if !HAVE_SETLOCALE
339 static char *
340 setlocale (int cat, char const *locale)
341 {
342 return 0;
343 }
344 #endif
345
346 /* True if the current system locale uses UTF-8 encoding. */
347 static bool
348 using_utf8 (void)
349 {
350 #ifdef HAVE_WCHAR_H
351 wchar_t wc;
352 mbstate_t mbs = { 0 };
353 return mbrtowc (&wc, "\xc4\x80", 2, &mbs) == 2 && wc == 0x100;
354 #else
355 return false;
356 #endif
357 }
358
359
360 /* Report a fatal error due to signal SIG, output a backtrace of at
361 most BACKTRACE_LIMIT lines, and exit. */
362 _Noreturn void
363 terminate_due_to_signal (int sig, int backtrace_limit)
364 {
365 signal (sig, SIG_DFL);
366
367 if (attempt_orderly_shutdown_on_fatal_signal)
368 {
369 /* If fatal error occurs in code below, avoid infinite recursion. */
370 if (! fatal_error_in_progress)
371 {
372 fatal_error_in_progress = 1;
373
374 totally_unblock_input ();
375 if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT)
376 Fkill_emacs (make_number (sig));
377
378 shut_down_emacs (sig, Qnil);
379 emacs_backtrace (backtrace_limit);
380 }
381 }
382
383 /* Signal the same code; this time it will really be fatal.
384 Since we're in a signal handler, the signal is blocked, so we
385 have to unblock it if we want to really receive it. */
386 #ifndef MSDOS
387 {
388 sigset_t unblocked;
389 sigemptyset (&unblocked);
390 sigaddset (&unblocked, sig);
391 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
392 }
393 #endif
394
395 emacs_raise (sig);
396
397 /* This shouldn't be executed, but it prevents a warning. */
398 exit (1);
399 }
400 \f
401 /* Code for dealing with Lisp access to the Unix command line. */
402
403 static void
404 init_cmdargs (int argc, char **argv, int skip_args, char *original_pwd)
405 {
406 int i;
407 Lisp_Object name, dir, handler;
408 ptrdiff_t count = SPECPDL_INDEX ();
409 Lisp_Object raw_name;
410 AUTO_STRING (slash_colon, "/:");
411
412 initial_argv = argv;
413 initial_argc = argc;
414
415 #ifdef WINDOWSNT
416 /* Must use argv[0] converted to UTF-8, as it begets many standard
417 file and directory names. */
418 {
419 char argv0[MAX_UTF8_PATH];
420
421 if (filename_from_ansi (argv[0], argv0) == 0)
422 raw_name = build_unibyte_string (argv0);
423 else
424 raw_name = build_unibyte_string (argv[0]);
425 }
426 #else
427 raw_name = build_unibyte_string (argv[0]);
428 #endif
429
430 /* Add /: to the front of the name
431 if it would otherwise be treated as magic. */
432 handler = Ffind_file_name_handler (raw_name, Qt);
433 if (! NILP (handler))
434 raw_name = concat2 (slash_colon, raw_name);
435
436 Vinvocation_name = Ffile_name_nondirectory (raw_name);
437 Vinvocation_directory = Ffile_name_directory (raw_name);
438
439 /* If we got no directory in argv[0], search PATH to find where
440 Emacs actually came from. */
441 if (NILP (Vinvocation_directory))
442 {
443 Lisp_Object found;
444 int yes = openp (Vexec_path, Vinvocation_name,
445 Vexec_suffixes, &found, make_number (X_OK), false);
446 if (yes == 1)
447 {
448 /* Add /: to the front of the name
449 if it would otherwise be treated as magic. */
450 handler = Ffind_file_name_handler (found, Qt);
451 if (! NILP (handler))
452 found = concat2 (slash_colon, found);
453 Vinvocation_directory = Ffile_name_directory (found);
454 }
455 }
456
457 if (!NILP (Vinvocation_directory)
458 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
459 /* Emacs was started with relative path, like ./emacs.
460 Make it absolute. */
461 {
462 Lisp_Object odir =
463 original_pwd ? build_unibyte_string (original_pwd) : Qnil;
464
465 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, odir);
466 }
467
468 Vinstallation_directory = Qnil;
469
470 if (!NILP (Vinvocation_directory))
471 {
472 dir = Vinvocation_directory;
473 #ifdef WINDOWSNT
474 /* If we are running from the build directory, set DIR to the
475 src subdirectory of the Emacs tree, like on Posix
476 platforms. */
477 if (SBYTES (dir) > sizeof ("/i386/") - 1
478 && 0 == strcmp (SSDATA (dir) + SBYTES (dir) - sizeof ("/i386/") + 1,
479 "/i386/"))
480 dir = Fexpand_file_name (build_string ("../.."), dir);
481 #else /* !WINDOWSNT */
482 #endif
483 name = Fexpand_file_name (Vinvocation_name, dir);
484 while (1)
485 {
486 Lisp_Object tem, lib_src_exists;
487 Lisp_Object etc_exists, info_exists;
488
489 /* See if dir contains subdirs for use by Emacs.
490 Check for the ones that would exist in a build directory,
491 not including lisp and info. */
492 tem = Fexpand_file_name (build_string ("lib-src"), dir);
493 lib_src_exists = Ffile_exists_p (tem);
494
495 #ifdef MSDOS
496 /* MSDOS installations frequently remove lib-src, but we still
497 must set installation-directory, or else info won't find
498 its files (it uses the value of installation-directory). */
499 tem = Fexpand_file_name (build_string ("info"), dir);
500 info_exists = Ffile_exists_p (tem);
501 #else
502 info_exists = Qnil;
503 #endif
504
505 if (!NILP (lib_src_exists) || !NILP (info_exists))
506 {
507 tem = Fexpand_file_name (build_string ("etc"), dir);
508 etc_exists = Ffile_exists_p (tem);
509 if (!NILP (etc_exists))
510 {
511 Vinstallation_directory
512 = Ffile_name_as_directory (dir);
513 break;
514 }
515 }
516
517 /* See if dir's parent contains those subdirs. */
518 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
519 lib_src_exists = Ffile_exists_p (tem);
520
521
522 #ifdef MSDOS
523 /* See the MSDOS commentary above. */
524 tem = Fexpand_file_name (build_string ("../info"), dir);
525 info_exists = Ffile_exists_p (tem);
526 #else
527 info_exists = Qnil;
528 #endif
529
530 if (!NILP (lib_src_exists) || !NILP (info_exists))
531 {
532 tem = Fexpand_file_name (build_string ("../etc"), dir);
533 etc_exists = Ffile_exists_p (tem);
534 if (!NILP (etc_exists))
535 {
536 tem = Fexpand_file_name (build_string (".."), dir);
537 Vinstallation_directory
538 = Ffile_name_as_directory (tem);
539 break;
540 }
541 }
542
543 /* If the Emacs executable is actually a link,
544 next try the dir that the link points into. */
545 tem = Ffile_symlink_p (name);
546 if (!NILP (tem))
547 {
548 name = Fexpand_file_name (tem, dir);
549 dir = Ffile_name_directory (name);
550 }
551 else
552 break;
553 }
554 }
555
556 Vcommand_line_args = Qnil;
557
558 for (i = argc - 1; i >= 0; i--)
559 {
560 if (i == 0 || i > skip_args)
561 /* For the moment, we keep arguments as is in unibyte strings.
562 They are decoded in the function command-line after we know
563 locale-coding-system. */
564 Vcommand_line_args
565 = Fcons (build_unibyte_string (argv[i]), Vcommand_line_args);
566 }
567
568 unbind_to (count, Qnil);
569 }
570
571 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
572 doc: /* Return the program name that was used to run Emacs.
573 Any directory names are omitted. */)
574 (void)
575 {
576 return Fcopy_sequence (Vinvocation_name);
577 }
578
579 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
580 0, 0, 0,
581 doc: /* Return the directory name in which the Emacs executable was located. */)
582 (void)
583 {
584 return Fcopy_sequence (Vinvocation_directory);
585 }
586
587 \f
588 /* Test whether the next argument in ARGV matches SSTR or a prefix of
589 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
590 (the argument is supposed to have a value) store in *VALPTR either
591 the next argument or the portion of this one after the equal sign.
592 ARGV is read starting at position *SKIPPTR; this index is advanced
593 by the number of arguments used.
594
595 Too bad we can't just use getopt for all of this, but we don't have
596 enough information to do it right. */
597
598 static bool
599 argmatch (char **argv, int argc, const char *sstr, const char *lstr,
600 int minlen, char **valptr, int *skipptr)
601 {
602 char *p = NULL;
603 ptrdiff_t arglen;
604 char *arg;
605
606 /* Don't access argv[argc]; give up in advance. */
607 if (argc <= *skipptr + 1)
608 return 0;
609
610 arg = argv[*skipptr+1];
611 if (arg == NULL)
612 return 0;
613 if (strcmp (arg, sstr) == 0)
614 {
615 if (valptr != NULL)
616 {
617 *valptr = argv[*skipptr+2];
618 *skipptr += 2;
619 }
620 else
621 *skipptr += 1;
622 return 1;
623 }
624 arglen = (valptr != NULL && (p = strchr (arg, '=')) != NULL
625 ? p - arg : strlen (arg));
626 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
627 return 0;
628 else if (valptr == NULL)
629 {
630 *skipptr += 1;
631 return 1;
632 }
633 else if (p != NULL)
634 {
635 *valptr = p+1;
636 *skipptr += 1;
637 return 1;
638 }
639 else if (argv[*skipptr+2] != NULL)
640 {
641 *valptr = argv[*skipptr+2];
642 *skipptr += 2;
643 return 1;
644 }
645 else
646 {
647 return 0;
648 }
649 }
650
651 /* Close standard output and standard error, reporting any write
652 errors as best we can. This is intended for use with atexit. */
653 static void
654 close_output_streams (void)
655 {
656 if (close_stream (stdout) != 0)
657 {
658 emacs_perror ("Write error to standard output");
659 _exit (EXIT_FAILURE);
660 }
661
662 if (close_stream (stderr) != 0)
663 _exit (EXIT_FAILURE);
664 }
665
666 /* ARGSUSED */
667 int
668 main (int argc, char **argv)
669 {
670 Lisp_Object dummy;
671 char stack_bottom_variable;
672 bool do_initial_setlocale;
673 bool dumping;
674 int skip_args = 0;
675 #ifdef HAVE_SETRLIMIT
676 struct rlimit rlim;
677 #endif
678 bool no_loadup = 0;
679 char *junk = 0;
680 char *dname_arg = 0;
681 #ifdef DAEMON_MUST_EXEC
682 char dname_arg2[80];
683 #endif
684 char *ch_to_dir = 0;
685
686 /* If we use --chdir, this records the original directory. */
687 char *original_pwd = 0;
688
689 stack_base = &dummy;
690
691 #ifndef CANNOT_DUMP
692 might_dump = !initialized;
693 #endif
694
695 #ifdef GNU_LINUX
696 if (!initialized)
697 {
698 char *heap_start = my_heap_start ();
699 heap_bss_diff = heap_start - max (my_endbss, my_endbss_static);
700 }
701 #endif
702
703 #if defined WINDOWSNT || defined HAVE_NTGUI
704 /* Set global variables used to detect Windows version. Do this as
705 early as possible. (unexw32.c calls this function as well, but
706 the additional call here is harmless.) */
707 cache_system_info ();
708 #ifdef WINDOWSNT
709 /* On Windows 9X, we have to load UNICOWS.DLL as early as possible,
710 to have non-stub implementations of APIs we need to convert file
711 names between UTF-8 and the system's ANSI codepage. */
712 maybe_load_unicows_dll ();
713 #endif
714 /* This has to be done before module_init is called below, so that
715 the latter could use the thread ID of the main thread. */
716 w32_init_main_thread ();
717 #endif
718
719 #ifdef RUN_TIME_REMAP
720 if (initialized)
721 run_time_remap (argv[0]);
722 #endif
723
724 /* If using unexmacosx.c (set by s/darwin.h), we must do this. */
725 #ifdef DARWIN_OS
726 if (!initialized)
727 unexec_init_emacs_zone ();
728 #endif
729
730 init_standard_fds ();
731 atexit (close_output_streams);
732
733 #ifdef HAVE_MODULES
734 module_init ();
735 #endif
736
737 sort_args (argc, argv);
738 argc = 0;
739 while (argv[argc]) argc++;
740
741 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))
742 {
743 const char *version, *copyright;
744 if (initialized)
745 {
746 Lisp_Object tem, tem2;
747 tem = Fsymbol_value (intern_c_string ("emacs-version"));
748 tem2 = Fsymbol_value (intern_c_string ("emacs-copyright"));
749 if (!STRINGP (tem))
750 {
751 fprintf (stderr, "Invalid value of 'emacs-version'\n");
752 exit (1);
753 }
754 if (!STRINGP (tem2))
755 {
756 fprintf (stderr, "Invalid value of 'emacs-copyright'\n");
757 exit (1);
758 }
759 else
760 {
761 version = SSDATA (tem);
762 copyright = SSDATA (tem2);
763 }
764 }
765 else
766 {
767 version = emacs_version;
768 copyright = emacs_copyright;
769 }
770 printf ("%s %s\n", PACKAGE_NAME, version);
771 printf ("%s\n", copyright);
772 printf ("%s comes with ABSOLUTELY NO WARRANTY.\n", PACKAGE_NAME);
773 printf ("You may redistribute copies of %s\n", PACKAGE_NAME);
774 printf ("under the terms of the GNU General Public License.\n");
775 printf ("For more information about these matters, ");
776 printf ("see the file named COPYING.\n");
777 exit (0);
778 }
779
780 if (argmatch (argv, argc, "-chdir", "--chdir", 4, &ch_to_dir, &skip_args))
781 {
782 #ifdef WINDOWSNT
783 /* argv[] array is kept in its original ANSI codepage encoding,
784 we need to convert to UTF-8, for chdir to work. */
785 char newdir[MAX_UTF8_PATH];
786
787 filename_from_ansi (ch_to_dir, newdir);
788 ch_to_dir = newdir;
789 #endif
790 original_pwd = emacs_get_current_dir_name ();
791 if (chdir (ch_to_dir) != 0)
792 {
793 fprintf (stderr, "%s: Can't chdir to %s: %s\n",
794 argv[0], ch_to_dir, strerror (errno));
795 exit (1);
796 }
797 }
798
799 dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0
800 || strcmp (argv[argc - 1], "bootstrap") == 0);
801
802 #ifdef HAVE_PERSONALITY_LINUX32
803 if (dumping && ! getenv ("EMACS_HEAP_EXEC"))
804 {
805 /* Set this so we only do this once. */
806 xputenv ("EMACS_HEAP_EXEC=true");
807
808 /* A flag to turn off address randomization which is introduced
809 in linux kernel shipped with fedora core 4 */
810 #define ADD_NO_RANDOMIZE 0x0040000
811 personality (PER_LINUX32 | ADD_NO_RANDOMIZE);
812 #undef ADD_NO_RANDOMIZE
813
814 execvp (argv[0], argv);
815
816 /* If the exec fails, try to dump anyway. */
817 emacs_perror (argv[0]);
818 }
819 #endif /* HAVE_PERSONALITY_LINUX32 */
820
821 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK) && !defined (CYGWIN)
822 /* Extend the stack space available. Don't do that if dumping,
823 since some systems (e.g. DJGPP) might define a smaller stack
824 limit at that time. And it's not needed on Cygwin, since emacs
825 is built with an 8MB stack. Moreover, the setrlimit call can
826 cause problems on Cygwin
827 (https://www.cygwin.com/ml/cygwin/2015-07/msg00096.html). */
828 if (1
829 #ifndef CANNOT_DUMP
830 && (!noninteractive || initialized)
831 #endif
832 && !getrlimit (RLIMIT_STACK, &rlim))
833 {
834 long newlim;
835 /* Approximate the amount regex.c needs per unit of re_max_failures. */
836 int ratio = 20 * sizeof (char *);
837 /* Then add 33% to cover the size of the smaller stacks that regex.c
838 successively allocates and discards, on its way to the maximum. */
839 ratio += ratio / 3;
840 /* Add in some extra to cover
841 what we're likely to use for other reasons. */
842 newlim = re_max_failures * ratio + 200000;
843 #ifdef __NetBSD__
844 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
845 stack allocation routine for new process that the allocation
846 fails if stack limit is not on page boundary. So, round up the
847 new limit to page boundary. */
848 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize ();
849 #endif
850 if (newlim > rlim.rlim_max)
851 {
852 newlim = rlim.rlim_max;
853 /* Don't let regex.c overflow the stack we have. */
854 re_max_failures = (newlim - 200000) / ratio;
855 }
856 if (rlim.rlim_cur < newlim)
857 rlim.rlim_cur = newlim;
858
859 setrlimit (RLIMIT_STACK, &rlim);
860 }
861 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK and not CYGWIN */
862
863 /* Record (approximately) where the stack begins. */
864 stack_bottom = &stack_bottom_variable;
865
866 clearerr (stdin);
867
868 emacs_backtrace (-1);
869
870 #if !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC
871 /* Arrange to get warning messages as memory fills up. */
872 memory_warnings (0, malloc_warning);
873
874 /* Call malloc at least once, to run malloc_initialize_hook.
875 Also call realloc and free for consistency. */
876 free (realloc (malloc (4), 4));
877
878 #endif /* not SYSTEM_MALLOC and not HYBRID_MALLOC */
879
880 #ifdef MSDOS
881 SET_BINARY (fileno (stdin));
882 fflush (stdout);
883 SET_BINARY (fileno (stdout));
884 #endif /* MSDOS */
885
886 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
887 The build procedure uses this while dumping, to ensure that the
888 dumped Emacs does not have its system locale tables initialized,
889 as that might cause screwups when the dumped Emacs starts up. */
890 {
891 char *lc_all = getenv ("LC_ALL");
892 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
893 }
894
895 /* Set locale now, so that initial error messages are localized properly.
896 fixup_locale must wait until later, since it builds strings. */
897 if (do_initial_setlocale)
898 setlocale (LC_ALL, "");
899 text_quoting_flag = using_utf8 ();
900
901 inhibit_window_system = 0;
902
903 /* Handle the -t switch, which specifies filename to use as terminal. */
904 while (1)
905 {
906 char *term;
907 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
908 {
909 emacs_close (STDIN_FILENO);
910 emacs_close (STDOUT_FILENO);
911 int result = emacs_open (term, O_RDWR, 0);
912 if (result != STDIN_FILENO
913 || (fcntl (STDIN_FILENO, F_DUPFD_CLOEXEC, STDOUT_FILENO)
914 != STDOUT_FILENO))
915 {
916 char *errstring = strerror (errno);
917 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
918 exit (EXIT_FAILURE);
919 }
920 if (! isatty (STDIN_FILENO))
921 {
922 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
923 exit (EXIT_FAILURE);
924 }
925 fprintf (stderr, "Using %s\n", term);
926 #ifdef HAVE_WINDOW_SYSTEM
927 inhibit_window_system = true; /* -t => -nw */
928 #endif
929 }
930 else
931 break;
932 }
933
934 /* Command line option --no-windows is deprecated and thus not mentioned
935 in the manual and usage information. */
936 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args)
937 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
938 inhibit_window_system = 1;
939
940 /* Handle the -batch switch, which means don't do interactive display. */
941 noninteractive = 0;
942 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
943 {
944 noninteractive = 1;
945 Vundo_outer_limit = Qnil;
946 }
947 if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args))
948 {
949 noninteractive = 1; /* Set batch mode. */
950 /* Convert --script to -scriptload, un-skip it, and sort again
951 so that it will be handled in proper sequence. */
952 /* FIXME broken for --script=FILE - is that supposed to work? */
953 argv[skip_args - 1] = (char *) "-scriptload";
954 skip_args -= 2;
955 sort_args (argc, argv);
956 }
957
958 /* Handle the --help option, which gives a usage message. */
959 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
960 {
961 int i;
962 printf ("Usage: %s [OPTION-OR-FILENAME]...\n", argv[0]);
963 for (i = 0; i < ARRAYELTS (usage_message); i++)
964 fputs (usage_message[i], stdout);
965 exit (0);
966 }
967
968 #ifndef WINDOWSNT
969 /* Make sure IS_DAEMON starts up as false. */
970 daemon_pipe[1] = 0;
971 #else
972 w32_daemon_event = NULL;
973 #endif
974
975
976 int sockfd = -1;
977
978 if (argmatch (argv, argc, "-daemon", "--daemon", 5, NULL, &skip_args)
979 || argmatch (argv, argc, "-daemon", "--daemon", 5, &dname_arg, &skip_args))
980 {
981 #ifndef DOS_NT
982 pid_t f;
983
984 /* Start as a daemon: fork a new child process which will run the
985 rest of the initialization code, then exit.
986
987 Detaching a daemon requires the following steps:
988 - fork
989 - setsid
990 - exit the parent
991 - close the tty file-descriptors
992
993 We only want to do the last 2 steps once the daemon is ready to
994 serve requests, i.e. after loading .emacs (initialization).
995 OTOH initialization may start subprocesses (e.g. ispell) and these
996 should be run from the proper process (the one that will end up
997 running as daemon) and with the proper "session id" in order for
998 them to keep working after detaching, so fork and setsid need to be
999 performed before initialization.
1000
1001 We want to avoid exiting before the server socket is ready, so
1002 use a pipe for synchronization. The parent waits for the child
1003 to close its end of the pipe (using `daemon-initialized')
1004 before exiting. */
1005 if (emacs_pipe (daemon_pipe) != 0)
1006 {
1007 fprintf (stderr, "Cannot pipe!\n");
1008 exit (1);
1009 }
1010
1011 #ifdef HAVE_LIBSYSTEMD
1012 /* Read the number of sockets passed through by systemd. */
1013 int systemd_socket = sd_listen_fds (1);
1014
1015 if (systemd_socket > 1)
1016 fprintf (stderr,
1017 ("\n"
1018 "Warning: systemd passed more than one socket to Emacs.\n"
1019 "Try 'Accept=false' in the Emacs socket unit file.\n"));
1020 else if (systemd_socket == 1
1021 && (0 < sd_is_socket (SD_LISTEN_FDS_START,
1022 AF_UNSPEC, SOCK_STREAM, 1)))
1023 sockfd = SD_LISTEN_FDS_START;
1024 #endif /* HAVE_LIBSYSTEMD */
1025
1026 #ifndef DAEMON_MUST_EXEC
1027 #ifdef USE_GTK
1028 fprintf (stderr, "\nWarning: due to a long standing Gtk+ bug\nhttp://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
1029 Emacs might crash when run in daemon mode and the X11 connection is unexpectedly lost.\n\
1030 Using an Emacs configured with --with-x-toolkit=lucid does not have this problem.\n");
1031 #endif /* USE_GTK */
1032 f = fork ();
1033 #else /* DAEMON_MUST_EXEC */
1034 if (!dname_arg || !strchr (dname_arg, '\n'))
1035 f = fork (); /* in orig */
1036 else
1037 f = 0; /* in exec'd */
1038 #endif /* !DAEMON_MUST_EXEC */
1039 if (f > 0)
1040 {
1041 int retval;
1042 char buf[1];
1043
1044 /* Close unused writing end of the pipe. */
1045 emacs_close (daemon_pipe[1]);
1046
1047 /* Just wait for the child to close its end of the pipe. */
1048 do
1049 {
1050 retval = read (daemon_pipe[0], &buf, 1);
1051 }
1052 while (retval == -1 && errno == EINTR);
1053
1054 if (retval < 0)
1055 {
1056 fprintf (stderr, "Error reading status from child\n");
1057 exit (1);
1058 }
1059 else if (retval == 0)
1060 {
1061 fprintf (stderr, "Error: server did not start correctly\n");
1062 exit (1);
1063 }
1064
1065 emacs_close (daemon_pipe[0]);
1066 exit (0);
1067 }
1068 if (f < 0)
1069 {
1070 emacs_perror ("fork");
1071 exit (EXIT_CANCELED);
1072 }
1073
1074 #ifdef DAEMON_MUST_EXEC
1075 {
1076 /* In orig process, forked as child, OR in exec'd. */
1077 if (!dname_arg || !strchr (dname_arg, '\n'))
1078 { /* In orig, child: now exec w/special daemon name. */
1079 char fdStr[80];
1080 int fdStrlen =
1081 snprintf (fdStr, sizeof fdStr,
1082 "--daemon=\n%d,%d\n%s", daemon_pipe[0],
1083 daemon_pipe[1], dname_arg ? dname_arg : "");
1084
1085 if (! (0 <= fdStrlen && fdStrlen < sizeof fdStr))
1086 {
1087 fprintf (stderr, "daemon: child name too long\n");
1088 exit (EXIT_CANNOT_INVOKE);
1089 }
1090
1091 argv[skip_args] = fdStr;
1092
1093 fcntl (daemon_pipe[0], F_SETFD, 0);
1094 fcntl (daemon_pipe[1], F_SETFD, 0);
1095 execvp (argv[0], argv);
1096 emacs_perror (argv[0]);
1097 exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
1098 }
1099
1100 /* In exec'd: parse special dname into pipe and name info. */
1101 if (!dname_arg || !strchr (dname_arg, '\n')
1102 || strlen (dname_arg) < 1 || strlen (dname_arg) > 70)
1103 {
1104 fprintf (stderr, "emacs daemon: daemon name absent or too long\n");
1105 exit (EXIT_CANNOT_INVOKE);
1106 }
1107 dname_arg2[0] = '\0';
1108 sscanf (dname_arg, "\n%d,%d\n%s", &(daemon_pipe[0]), &(daemon_pipe[1]),
1109 dname_arg2);
1110 dname_arg = *dname_arg2 ? dname_arg2 : NULL;
1111 fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC);
1112 }
1113 #endif /* DAEMON_MUST_EXEC */
1114
1115 /* Close unused reading end of the pipe. */
1116 emacs_close (daemon_pipe[0]);
1117
1118 setsid ();
1119 #elif defined(WINDOWSNT)
1120 /* Indicate that we want daemon mode. */
1121 w32_daemon_event = CreateEvent (NULL, TRUE, FALSE, W32_DAEMON_EVENT);
1122 if (w32_daemon_event == NULL)
1123 {
1124 fprintf (stderr, "Couldn't create MS-Windows event for daemon: %s\n",
1125 w32_strerror (0));
1126 exit (1);
1127 }
1128 #else /* MSDOS */
1129 fprintf (stderr, "This platform does not support the -daemon flag.\n");
1130 exit (1);
1131 #endif /* MSDOS */
1132 if (dname_arg)
1133 daemon_name = xstrdup (dname_arg);
1134 }
1135
1136 #if defined HAVE_PTHREAD && !defined SYSTEM_MALLOC \
1137 && !defined DOUG_LEA_MALLOC && !defined HYBRID_MALLOC
1138 # ifndef CANNOT_DUMP
1139 /* Do not make gmalloc thread-safe when creating bootstrap-emacs, as
1140 that causes an infinite recursive loop with FreeBSD. See
1141 Bug#14569. The part of this bug involving Cygwin is no longer
1142 relevant, now that Cygwin defines HYBRID_MALLOC. */
1143 if (!noninteractive || initialized)
1144 # endif
1145 malloc_enable_thread ();
1146 #endif
1147
1148 init_signals (dumping);
1149
1150 noninteractive1 = noninteractive;
1151
1152 /* Perform basic initializations (not merely interning symbols). */
1153
1154 if (!initialized)
1155 {
1156 init_alloc_once ();
1157 init_obarray ();
1158 init_eval_once ();
1159 init_charset_once ();
1160 init_coding_once ();
1161 init_syntax_once (); /* Create standard syntax table. */
1162 init_category_once (); /* Create standard category table. */
1163 init_casetab_once (); /* Must be done before init_buffer_once. */
1164 init_buffer_once (); /* Create buffer table and some buffers. */
1165 init_minibuf_once (); /* Create list of minibuffers. */
1166 /* Must precede init_window_once. */
1167
1168 /* Call syms_of_xfaces before init_window_once because that
1169 function creates Vterminal_frame. Termcap frames now use
1170 faces, and the face implementation uses some symbols as
1171 face names. */
1172 syms_of_xfaces ();
1173 /* XXX syms_of_keyboard uses some symbols in keymap.c. It would
1174 be better to arrange things not to have this dependency. */
1175 syms_of_keymap ();
1176 /* Call syms_of_keyboard before init_window_once because
1177 keyboard sets up symbols that include some face names that
1178 the X support will want to use. This can happen when
1179 CANNOT_DUMP is defined. */
1180 syms_of_keyboard ();
1181
1182 /* Called before syms_of_fileio, because it sets up Qerror_condition. */
1183 syms_of_data ();
1184 syms_of_fns (); /* Before syms_of_charset which uses hashtables. */
1185 syms_of_fileio ();
1186 /* Before syms_of_coding to initialize Vgc_cons_threshold. */
1187 syms_of_alloc ();
1188 /* May call Ffuncall and so GC, thus the latter should be initialized. */
1189 init_print_once ();
1190 /* Before syms_of_coding because it initializes Qcharsetp. */
1191 syms_of_charset ();
1192 /* Before init_window_once, because it sets up the
1193 Vcoding_system_hash_table. */
1194 syms_of_coding (); /* This should be after syms_of_fileio. */
1195
1196 init_window_once (); /* Init the window system. */
1197 #ifdef HAVE_WINDOW_SYSTEM
1198 init_fringe_once (); /* Swap bitmaps if necessary. */
1199 #endif /* HAVE_WINDOW_SYSTEM */
1200 }
1201
1202 init_alloc ();
1203
1204 if (do_initial_setlocale)
1205 {
1206 fixup_locale ();
1207 Vsystem_messages_locale = Vprevious_system_messages_locale;
1208 Vsystem_time_locale = Vprevious_system_time_locale;
1209 }
1210
1211 init_eval ();
1212 init_atimer ();
1213 running_asynch_code = 0;
1214 init_random ();
1215
1216 no_loadup
1217 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1218
1219 no_site_lisp
1220 = argmatch (argv, argc, "-nsl", "--no-site-lisp", 11, NULL, &skip_args);
1221
1222 build_details = ! argmatch (argv, argc, "-no-build-details",
1223 "--no-build-details", 7, NULL, &skip_args);
1224
1225 #ifdef HAVE_NS
1226 ns_pool = ns_alloc_autorelease_pool ();
1227 #ifdef NS_IMPL_GNUSTEP
1228 /* GNUstep stupidly resets our locale settings after we made them. */
1229 fixup_locale ();
1230 #endif
1231
1232 if (!noninteractive)
1233 {
1234 #ifdef NS_IMPL_COCOA
1235 /* Started from GUI? */
1236 /* FIXME: Do the right thing if getenv returns NULL, or if
1237 chdir fails. */
1238 if (! inhibit_window_system && ! isatty (STDIN_FILENO) && ! ch_to_dir)
1239 chdir (getenv ("HOME"));
1240 if (skip_args < argc)
1241 {
1242 if (!strncmp (argv[skip_args], "-psn", 4))
1243 {
1244 skip_args += 1;
1245 if (! ch_to_dir) chdir (getenv ("HOME"));
1246 }
1247 else if (skip_args+1 < argc && !strncmp (argv[skip_args+1], "-psn", 4))
1248 {
1249 skip_args += 2;
1250 if (! ch_to_dir) chdir (getenv ("HOME"));
1251 }
1252 }
1253 #endif /* COCOA */
1254 }
1255 #endif /* HAVE_NS */
1256
1257 #ifdef HAVE_X_WINDOWS
1258 /* Stupid kludge to catch command-line display spec. We can't
1259 handle this argument entirely in window system dependent code
1260 because we don't even know which window system dependent code
1261 to run until we've recognized this argument. */
1262 {
1263 char *displayname = 0;
1264 int count_before = skip_args;
1265
1266 /* Skip any number of -d options, but only use the last one. */
1267 while (1)
1268 {
1269 int count_before_this = skip_args;
1270
1271 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1272 display_arg = 1;
1273 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1274 display_arg = 1;
1275 else
1276 break;
1277
1278 count_before = count_before_this;
1279 }
1280
1281 /* If we have the form --display=NAME,
1282 convert it into -d name.
1283 This requires inserting a new element into argv. */
1284 if (displayname && count_before < skip_args)
1285 {
1286 if (skip_args == count_before + 1)
1287 {
1288 memmove (argv + count_before + 3, argv + count_before + 2,
1289 (argc - (count_before + 2)) * sizeof *argv);
1290 argv[count_before + 2] = displayname;
1291 argc++;
1292 }
1293 argv[count_before + 1] = (char *) "-d";
1294 }
1295
1296 if (! no_site_lisp)
1297 {
1298 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1299 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1300 no_site_lisp = 1;
1301 }
1302
1303 /* Don't actually discard this arg. */
1304 skip_args = count_before;
1305 }
1306 #else /* !HAVE_X_WINDOWS */
1307 if (! no_site_lisp)
1308 {
1309 int count_before = skip_args;
1310
1311 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1312 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1313 no_site_lisp = 1;
1314
1315 skip_args = count_before;
1316 }
1317 #endif
1318
1319 /* argmatch must not be used after here,
1320 except when building temacs
1321 because the -d argument has not been skipped in skip_args. */
1322
1323 #ifdef MSDOS
1324 /* Call early 'cause init_environment needs it. */
1325 init_dosfns ();
1326 /* Set defaults for several environment variables. */
1327 if (initialized)
1328 init_environment (argc, argv, skip_args);
1329 else
1330 tzset ();
1331 #endif /* MSDOS */
1332
1333 #ifdef HAVE_KQUEUE
1334 globals_of_kqueue ();
1335 #endif
1336
1337 #ifdef HAVE_GFILENOTIFY
1338 globals_of_gfilenotify ();
1339 #endif
1340
1341 #ifdef WINDOWSNT
1342 globals_of_w32 ();
1343 #ifdef HAVE_W32NOTIFY
1344 globals_of_w32notify ();
1345 #endif
1346 /* Initialize environment from registry settings. */
1347 init_environment (argv);
1348 init_ntproc (dumping); /* must precede init_editfns. */
1349 #endif
1350
1351 #ifdef HAVE_NS
1352 /* Initialize the locale from user defaults. */
1353 ns_init_locale ();
1354 #endif
1355
1356 /* Initialize and GC-protect Vinitial_environment and
1357 Vprocess_environment before set_initial_environment fills them
1358 in. */
1359 if (!initialized)
1360 syms_of_callproc ();
1361 /* egetenv is a pretty low-level facility, which may get called in
1362 many circumstances; it seems flimsy to put off initializing it
1363 until calling init_callproc. Do not do it when dumping. */
1364 if (! dumping)
1365 set_initial_environment ();
1366
1367 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1368 if this is not done. Do it after set_global_environment so that we
1369 don't pollute Vglobal_environment. */
1370 /* Setting LANG here will defeat the startup locale processing... */
1371 #ifdef AIX
1372 xputenv ("LANG=C");
1373 #endif
1374
1375 /* Init buffer storage and default directory of main buffer. */
1376 init_buffer (initialized);
1377
1378 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1379
1380 /* Must precede init_lread. */
1381 init_cmdargs (argc, argv, skip_args, original_pwd);
1382
1383 if (initialized)
1384 {
1385 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1386 Lisp_Object old_log_max;
1387 old_log_max = Vmessage_log_max;
1388 XSETFASTINT (Vmessage_log_max, 0);
1389 message_dolog ("", 0, 1, 0);
1390 Vmessage_log_max = old_log_max;
1391 }
1392
1393 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1394 init_fileio ();
1395 init_lread ();
1396 #ifdef WINDOWSNT
1397 /* Check to see if Emacs has been installed correctly. */
1398 check_windows_init_file ();
1399 #endif
1400
1401 /* Intern the names of all standard functions and variables;
1402 define standard keys. */
1403
1404 if (!initialized)
1405 {
1406 /* The basic levels of Lisp must come first. Note that
1407 syms_of_data and some others have already been called. */
1408 syms_of_chartab ();
1409 syms_of_lread ();
1410 syms_of_print ();
1411 syms_of_eval ();
1412 syms_of_floatfns ();
1413
1414 syms_of_buffer ();
1415 syms_of_bytecode ();
1416 syms_of_callint ();
1417 syms_of_casefiddle ();
1418 syms_of_casetab ();
1419 syms_of_category ();
1420 syms_of_ccl ();
1421 syms_of_character ();
1422 syms_of_cmds ();
1423 syms_of_dired ();
1424 syms_of_display ();
1425 syms_of_doc ();
1426 syms_of_editfns ();
1427 syms_of_emacs ();
1428 syms_of_filelock ();
1429 syms_of_indent ();
1430 syms_of_insdel ();
1431 /* syms_of_keymap (); */
1432 syms_of_macros ();
1433 syms_of_marker ();
1434 syms_of_minibuf ();
1435 syms_of_process ();
1436 syms_of_search ();
1437 syms_of_frame ();
1438 syms_of_syntax ();
1439 syms_of_terminal ();
1440 syms_of_term ();
1441 syms_of_undo ();
1442
1443 #ifdef HAVE_MODULES
1444 syms_of_module ();
1445 #endif
1446
1447 #ifdef HAVE_SOUND
1448 syms_of_sound ();
1449 #endif
1450 syms_of_textprop ();
1451 syms_of_composite ();
1452 #ifdef WINDOWSNT
1453 syms_of_ntproc ();
1454 #endif /* WINDOWSNT */
1455 #if defined CYGWIN
1456 syms_of_cygw32 ();
1457 #endif
1458 syms_of_window ();
1459 syms_of_xdisp ();
1460 syms_of_font ();
1461 #ifdef HAVE_WINDOW_SYSTEM
1462 syms_of_fringe ();
1463 syms_of_image ();
1464 #endif /* HAVE_WINDOW_SYSTEM */
1465 #ifdef HAVE_X_WINDOWS
1466 syms_of_xterm ();
1467 syms_of_xfns ();
1468 syms_of_xmenu ();
1469 syms_of_fontset ();
1470 syms_of_xwidget ();
1471 syms_of_xsettings ();
1472 #ifdef HAVE_X_SM
1473 syms_of_xsmfns ();
1474 #endif
1475 #ifdef HAVE_X11
1476 syms_of_xselect ();
1477 #endif
1478 #endif /* HAVE_X_WINDOWS */
1479
1480 #ifdef HAVE_LIBXML2
1481 syms_of_xml ();
1482 #endif
1483
1484 #ifdef HAVE_ZLIB
1485 syms_of_decompress ();
1486 #endif
1487
1488 syms_of_menu ();
1489
1490 #ifdef HAVE_NTGUI
1491 syms_of_w32term ();
1492 syms_of_w32fns ();
1493 syms_of_w32menu ();
1494 syms_of_fontset ();
1495 #endif /* HAVE_NTGUI */
1496
1497 #if defined WINDOWSNT || defined HAVE_NTGUI
1498 syms_of_w32select ();
1499 #endif
1500
1501 #ifdef MSDOS
1502 syms_of_xmenu ();
1503 syms_of_dosfns ();
1504 syms_of_msdos ();
1505 syms_of_win16select ();
1506 #endif /* MSDOS */
1507
1508 #ifdef HAVE_NS
1509 syms_of_nsterm ();
1510 syms_of_nsfns ();
1511 syms_of_nsmenu ();
1512 syms_of_nsselect ();
1513 syms_of_fontset ();
1514 #endif /* HAVE_NS */
1515
1516 syms_of_gnutls ();
1517
1518 #ifdef HAVE_INOTIFY
1519 syms_of_inotify ();
1520 #endif /* HAVE_INOTIFY */
1521
1522 #ifdef HAVE_KQUEUE
1523 syms_of_kqueue ();
1524 #endif /* HAVE_KQUEUE */
1525
1526 #ifdef HAVE_GFILENOTIFY
1527 syms_of_gfilenotify ();
1528 #endif /* HAVE_GFILENOTIFY */
1529
1530 #ifdef HAVE_DBUS
1531 syms_of_dbusbind ();
1532 #endif /* HAVE_DBUS */
1533
1534 #ifdef WINDOWSNT
1535 syms_of_ntterm ();
1536 #ifdef HAVE_W32NOTIFY
1537 syms_of_w32notify ();
1538 #endif /* HAVE_W32NOTIFY */
1539 #endif /* WINDOWSNT */
1540
1541 syms_of_profiler ();
1542
1543 keys_of_casefiddle ();
1544 keys_of_cmds ();
1545 keys_of_buffer ();
1546 keys_of_keyboard ();
1547 keys_of_keymap ();
1548 keys_of_window ();
1549 }
1550 else
1551 {
1552 /* Initialization that must be done even if the global variable
1553 initialized is non zero. */
1554 #ifdef HAVE_NTGUI
1555 globals_of_w32font ();
1556 globals_of_w32fns ();
1557 globals_of_w32menu ();
1558 #endif /* HAVE_NTGUI */
1559
1560 #if defined WINDOWSNT || defined HAVE_NTGUI
1561 globals_of_w32select ();
1562 #endif
1563 }
1564
1565 init_charset ();
1566
1567 /* This calls putenv and so must precede init_process_emacs. Also,
1568 it sets Voperating_system_release, which init_process_emacs uses. */
1569 init_editfns (dumping);
1570
1571 /* These two call putenv. */
1572 #ifdef HAVE_DBUS
1573 init_dbusbind ();
1574 #endif
1575 #ifdef USE_GTK
1576 init_xterm ();
1577 #endif
1578
1579 /* This can create a thread that may call getenv, so it must follow
1580 all calls to putenv and setenv. Also, this sets up
1581 add_keyboard_wait_descriptor, which init_display uses. */
1582 init_process_emacs (sockfd);
1583
1584 init_keyboard (); /* This too must precede init_sys_modes. */
1585 if (!noninteractive)
1586 init_display (); /* Determine terminal type. Calls init_sys_modes. */
1587 #if HAVE_W32NOTIFY
1588 else
1589 init_crit (); /* w32notify.c needs this in batch mode. */
1590 #endif /* HAVE_W32NOTIFY */
1591 init_xdisp ();
1592 #ifdef HAVE_WINDOW_SYSTEM
1593 init_fringe ();
1594 #endif /* HAVE_WINDOW_SYSTEM */
1595 init_macros ();
1596 init_window ();
1597 init_font ();
1598
1599 if (!initialized)
1600 {
1601 char *file;
1602 /* Handle -l loadup, args passed by Makefile. */
1603 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1604 {
1605 #ifdef WINDOWSNT
1606 char file_utf8[MAX_UTF8_PATH];
1607
1608 if (filename_from_ansi (file, file_utf8) == 0)
1609 file = file_utf8;
1610 #endif
1611 Vtop_level = list2 (Qload, build_unibyte_string (file));
1612 }
1613 /* Unless next switch is -nl, load "loadup.el" first thing. */
1614 if (! no_loadup)
1615 Vtop_level = list2 (Qload, build_string ("loadup.el"));
1616 }
1617
1618 /* Set up for profiling. This is known to work on FreeBSD,
1619 GNU/Linux and MinGW. It might work on some other systems too.
1620 Give it a try and tell us if it works on your system. To compile
1621 for profiling, use the configure option --enable-profiling. */
1622 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined (__MINGW32__)
1623 #ifdef PROFILING
1624 if (initialized)
1625 {
1626 #ifdef __MINGW32__
1627 extern unsigned char etext asm ("etext");
1628 #else
1629 extern char etext;
1630 #endif
1631
1632 atexit (_mcleanup);
1633 monstartup ((uintptr_t) __executable_start, (uintptr_t) &etext);
1634 }
1635 else
1636 moncontrol (0);
1637 #endif
1638 #endif
1639
1640 initialized = 1;
1641
1642 /* Enter editor command loop. This never returns. */
1643 Frecursive_edit ();
1644 /* NOTREACHED */
1645 return 0;
1646 }
1647 \f
1648 /* Sort the args so we can find the most important ones
1649 at the beginning of argv. */
1650
1651 /* First, here's a table of all the standard options. */
1652
1653 struct standard_args
1654 {
1655 const char *name;
1656 const char *longname;
1657 int priority;
1658 int nargs;
1659 };
1660
1661 static const struct standard_args standard_args[] =
1662 {
1663 { "-version", "--version", 150, 0 },
1664 { "-chdir", "--chdir", 130, 1 },
1665 { "-t", "--terminal", 120, 1 },
1666 { "-nw", "--no-window-system", 110, 0 },
1667 { "-nw", "--no-windows", 110, 0 },
1668 { "-batch", "--batch", 100, 0 },
1669 { "-script", "--script", 100, 1 },
1670 { "-daemon", "--daemon", 99, 0 },
1671 { "-help", "--help", 90, 0 },
1672 { "-nl", "--no-loadup", 70, 0 },
1673 { "-nsl", "--no-site-lisp", 65, 0 },
1674 { "-no-build-details", "--no-build-details", 63, 0 },
1675 /* -d must come last before the options handled in startup.el. */
1676 { "-d", "--display", 60, 1 },
1677 { "-display", 0, 60, 1 },
1678 /* Now for the options handled in `command-line' (startup.el). */
1679 /* (Note that to imply -nsl, -Q is partially handled here.) */
1680 { "-Q", "--quick", 55, 0 },
1681 { "-quick", 0, 55, 0 },
1682 { "-q", "--no-init-file", 50, 0 },
1683 { "-no-init-file", 0, 50, 0 },
1684 { "-no-x-resources", "--no-x-resources", 40, 0 },
1685 { "-no-site-file", "--no-site-file", 40, 0 },
1686 { "-u", "--user", 30, 1 },
1687 { "-user", 0, 30, 1 },
1688 { "-debug-init", "--debug-init", 20, 0 },
1689 { "-iconic", "--iconic", 15, 0 },
1690 { "-D", "--basic-display", 12, 0},
1691 { "-basic-display", 0, 12, 0},
1692 { "-nbc", "--no-blinking-cursor", 12, 0 },
1693 /* Now for the options handled in `command-line-1' (startup.el). */
1694 { "-nbi", "--no-bitmap-icon", 10, 0 },
1695 { "-bg", "--background-color", 10, 1 },
1696 { "-background", 0, 10, 1 },
1697 { "-fg", "--foreground-color", 10, 1 },
1698 { "-foreground", 0, 10, 1 },
1699 { "-bd", "--border-color", 10, 1 },
1700 { "-bw", "--border-width", 10, 1 },
1701 { "-ib", "--internal-border", 10, 1 },
1702 { "-ms", "--mouse-color", 10, 1 },
1703 { "-cr", "--cursor-color", 10, 1 },
1704 { "-fn", "--font", 10, 1 },
1705 { "-font", 0, 10, 1 },
1706 { "-fs", "--fullscreen", 10, 0 },
1707 { "-fw", "--fullwidth", 10, 0 },
1708 { "-fh", "--fullheight", 10, 0 },
1709 { "-mm", "--maximized", 10, 0 },
1710 { "-g", "--geometry", 10, 1 },
1711 { "-geometry", 0, 10, 1 },
1712 { "-T", "--title", 10, 1 },
1713 { "-title", 0, 10, 1 },
1714 { "-name", "--name", 10, 1 },
1715 { "-xrm", "--xrm", 10, 1 },
1716 { "-parent-id", "--parent-id", 10, 1 },
1717 { "-r", "--reverse-video", 5, 0 },
1718 { "-rv", 0, 5, 0 },
1719 { "-reverse", 0, 5, 0 },
1720 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1721 { "-vb", "--vertical-scroll-bars", 5, 0 },
1722 { "-color", "--color", 5, 0},
1723 { "-no-splash", "--no-splash", 3, 0 },
1724 { "-no-desktop", "--no-desktop", 3, 0 },
1725 #ifdef HAVE_NS
1726 { "-NSAutoLaunch", 0, 5, 1 },
1727 { "-NXAutoLaunch", 0, 5, 1 },
1728 { "-_NSMachLaunch", 0, 85, 1 },
1729 { "-MachLaunch", 0, 85, 1 },
1730 { "-macosx", 0, 85, 0 },
1731 { "-NSHost", 0, 85, 1 },
1732 #endif
1733 /* These have the same priority as ordinary file name args,
1734 so they are not reordered with respect to those. */
1735 { "-L", "--directory", 0, 1 },
1736 { "-directory", 0, 0, 1 },
1737 { "-l", "--load", 0, 1 },
1738 { "-load", 0, 0, 1 },
1739 /* This has no longname, because using --scriptload confuses sort_args,
1740 because then the --script long option seems to match twice; ie
1741 you can't have a long option which is a prefix of another long
1742 option. In any case, this is entirely an internal option. */
1743 { "-scriptload", NULL, 0, 1 },
1744 { "-f", "--funcall", 0, 1 },
1745 { "-funcall", 0, 0, 1 },
1746 { "-eval", "--eval", 0, 1 },
1747 { "-execute", "--execute", 0, 1 },
1748 { "-find-file", "--find-file", 0, 1 },
1749 { "-visit", "--visit", 0, 1 },
1750 { "-file", "--file", 0, 1 },
1751 { "-insert", "--insert", 0, 1 },
1752 #ifdef HAVE_NS
1753 { "-NXOpen", 0, 0, 1 },
1754 { "-NXOpenTemp", 0, 0, 1 },
1755 { "-NSOpen", 0, 0, 1 },
1756 { "-NSOpenTemp", 0, 0, 1 },
1757 { "-GSFilePath", 0, 0, 1 },
1758 #endif
1759 /* This should be processed after ordinary file name args and the like. */
1760 { "-kill", "--kill", -10, 0 },
1761 };
1762
1763 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1764 so that the highest priority ones come first.
1765 Do not change the order of elements of equal priority.
1766 If an option takes an argument, keep it and its argument together.
1767
1768 If an option that takes no argument appears more
1769 than once, eliminate all but one copy of it. */
1770
1771 static void
1772 sort_args (int argc, char **argv)
1773 {
1774 char **new = xmalloc (argc * sizeof *new);
1775 /* For each element of argv,
1776 the corresponding element of options is:
1777 0 for an option that takes no arguments,
1778 1 for an option that takes one argument, etc.
1779 -1 for an ordinary non-option argument. */
1780 int *options = xnmalloc (argc, sizeof *options);
1781 int *priority = xnmalloc (argc, sizeof *priority);
1782 int to = 1;
1783 int incoming_used = 1;
1784 int from;
1785 int i;
1786
1787 /* Categorize all the options,
1788 and figure out which argv elts are option arguments. */
1789 for (from = 1; from < argc; from++)
1790 {
1791 options[from] = -1;
1792 priority[from] = 0;
1793 if (argv[from][0] == '-')
1794 {
1795 int match;
1796
1797 /* If we have found "--", don't consider
1798 any more arguments as options. */
1799 if (argv[from][1] == '-' && argv[from][2] == 0)
1800 {
1801 /* Leave the "--", and everything following it, at the end. */
1802 for (; from < argc; from++)
1803 {
1804 priority[from] = -100;
1805 options[from] = -1;
1806 }
1807 break;
1808 }
1809
1810 /* Look for a match with a known old-fashioned option. */
1811 for (i = 0; i < ARRAYELTS (standard_args); i++)
1812 if (!strcmp (argv[from], standard_args[i].name))
1813 {
1814 options[from] = standard_args[i].nargs;
1815 priority[from] = standard_args[i].priority;
1816 if (from + standard_args[i].nargs >= argc)
1817 fatal ("Option '%s' requires an argument\n", argv[from]);
1818 from += standard_args[i].nargs;
1819 goto done;
1820 }
1821
1822 /* Look for a match with a known long option.
1823 MATCH is -1 if no match so far, -2 if two or more matches so far,
1824 >= 0 (the table index of the match) if just one match so far. */
1825 if (argv[from][1] == '-')
1826 {
1827 char const *equals = strchr (argv[from], '=');
1828 ptrdiff_t thislen =
1829 equals ? equals - argv[from] : strlen (argv[from]);
1830
1831 match = -1;
1832
1833 for (i = 0; i < ARRAYELTS (standard_args); i++)
1834 if (standard_args[i].longname
1835 && !strncmp (argv[from], standard_args[i].longname,
1836 thislen))
1837 {
1838 if (match == -1)
1839 match = i;
1840 else
1841 match = -2;
1842 }
1843
1844 /* If we found exactly one match, use that. */
1845 if (match >= 0)
1846 {
1847 options[from] = standard_args[match].nargs;
1848 priority[from] = standard_args[match].priority;
1849 /* If --OPTION=VALUE syntax is used,
1850 this option uses just one argv element. */
1851 if (equals != 0)
1852 options[from] = 0;
1853 if (from + options[from] >= argc)
1854 fatal ("Option '%s' requires an argument\n", argv[from]);
1855 from += options[from];
1856 }
1857 /* FIXME When match < 0, shouldn't there be some error,
1858 or at least indication to the user that there was a
1859 problem? */
1860 }
1861 done: ;
1862 }
1863 }
1864
1865 /* Copy the arguments, in order of decreasing priority, to NEW. */
1866 new[0] = argv[0];
1867 while (incoming_used < argc)
1868 {
1869 int best = -1;
1870 int best_priority = -9999;
1871
1872 /* Find the highest priority remaining option.
1873 If several have equal priority, take the first of them. */
1874 for (from = 1; from < argc; from++)
1875 {
1876 if (argv[from] != 0 && priority[from] > best_priority)
1877 {
1878 best_priority = priority[from];
1879 best = from;
1880 }
1881 /* Skip option arguments--they are tied to the options. */
1882 if (options[from] > 0)
1883 from += options[from];
1884 }
1885
1886 if (best < 0)
1887 emacs_abort ();
1888
1889 /* Copy the highest priority remaining option, with its args, to NEW.
1890 Unless it is a duplicate of the previous one. */
1891 if (! (options[best] == 0
1892 && ! strcmp (new[to - 1], argv[best])))
1893 {
1894 new[to++] = argv[best];
1895 for (i = 0; i < options[best]; i++)
1896 new[to++] = argv[best + i + 1];
1897 }
1898
1899 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1900
1901 /* Clear out this option in ARGV. */
1902 argv[best] = 0;
1903 for (i = 0; i < options[best]; i++)
1904 argv[best + i + 1] = 0;
1905 }
1906
1907 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1908 while (to < argc)
1909 new[to++] = 0;
1910
1911 memcpy (argv, new, sizeof (char *) * argc);
1912
1913 xfree (options);
1914 xfree (new);
1915 xfree (priority);
1916 }
1917 \f
1918 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1919 doc: /* Exit the Emacs job and kill it.
1920 If ARG is an integer, return ARG as the exit program code.
1921 If ARG is a string, stuff it as keyboard input.
1922
1923 This function is called upon receipt of the signals SIGTERM
1924 or SIGHUP, and upon SIGINT in batch mode.
1925
1926 The value of `kill-emacs-hook', if not void,
1927 is a list of functions (of no args),
1928 all of which are called before Emacs is actually killed. */
1929 attributes: noreturn)
1930 (Lisp_Object arg)
1931 {
1932 int exit_code;
1933
1934 /* Fsignal calls emacs_abort () if it sees that waiting_for_input is
1935 set. */
1936 waiting_for_input = 0;
1937 run_hook (Qkill_emacs_hook);
1938
1939 #ifdef HAVE_X_WINDOWS
1940 /* Transfer any clipboards we own to the clipboard manager. */
1941 x_clipboard_manager_save_all ();
1942 #endif
1943
1944 shut_down_emacs (0, (STRINGP (arg) && !feof (stdin)) ? arg : Qnil);
1945
1946 #ifdef HAVE_NS
1947 ns_release_autorelease_pool (ns_pool);
1948 #endif
1949
1950 /* If we have an auto-save list file,
1951 kill it because we are exiting Emacs deliberately (not crashing).
1952 Do it after shut_down_emacs, which does an auto-save. */
1953 if (STRINGP (Vauto_save_list_file_name))
1954 {
1955 Lisp_Object listfile;
1956 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
1957 unlink (SSDATA (listfile));
1958 }
1959
1960 if (INTEGERP (arg))
1961 exit_code = (XINT (arg) < 0
1962 ? XINT (arg) | INT_MIN
1963 : XINT (arg) & INT_MAX);
1964 else
1965 exit_code = EXIT_SUCCESS;
1966 exit (exit_code);
1967 }
1968
1969
1970 /* Perform an orderly shutdown of Emacs. Autosave any modified
1971 buffers, kill any child processes, clean up the terminal modes (if
1972 we're in the foreground), and other stuff like that. Don't perform
1973 any redisplay; this may be called when Emacs is shutting down in
1974 the background, or after its X connection has died.
1975
1976 If SIG is a signal number, print a message for it.
1977
1978 This is called by fatal signal handlers, X protocol error handlers,
1979 and Fkill_emacs. */
1980
1981 void
1982 shut_down_emacs (int sig, Lisp_Object stuff)
1983 {
1984 /* Prevent running of hooks from now on. */
1985 Vrun_hooks = Qnil;
1986
1987 /* Don't update display from now on. */
1988 Vinhibit_redisplay = Qt;
1989
1990 /* If we are controlling the terminal, reset terminal modes. */
1991 #ifndef DOS_NT
1992 {
1993 pid_t pgrp = getpgrp ();
1994 pid_t tpgrp = tcgetpgrp (0);
1995 if ((tpgrp != -1) && tpgrp == pgrp)
1996 {
1997 reset_all_sys_modes ();
1998 if (sig && sig != SIGTERM)
1999 {
2000 static char const format[] = "Fatal error %d: ";
2001 char buf[sizeof format - 2 + INT_STRLEN_BOUND (int)];
2002 int buflen = sprintf (buf, format, sig);
2003 char const *sig_desc = safe_strsignal (sig);
2004 emacs_write (STDERR_FILENO, buf, buflen);
2005 emacs_write (STDERR_FILENO, sig_desc, strlen (sig_desc));
2006 }
2007 }
2008 }
2009 #else
2010 fflush (stdout);
2011 reset_all_sys_modes ();
2012 #endif
2013
2014 stuff_buffered_input (stuff);
2015
2016 inhibit_sentinels = 1;
2017 kill_buffer_processes (Qnil);
2018 Fdo_auto_save (Qt, Qnil);
2019
2020 unlock_all_files ();
2021
2022 /* There is a tendency for a SIGIO signal to arrive within exit,
2023 and cause a SIGHUP because the input descriptor is already closed. */
2024 unrequest_sigio ();
2025
2026 /* Do this only if terminating normally, we want glyph matrices
2027 etc. in a core dump. */
2028 if (sig == 0 || sig == SIGTERM)
2029 {
2030 check_glyph_memory ();
2031 check_message_stack ();
2032 }
2033
2034 #ifdef MSDOS
2035 dos_cleanup ();
2036 #endif
2037
2038 #ifdef HAVE_NS
2039 ns_term_shutdown (sig);
2040 #endif
2041
2042 #ifdef HAVE_LIBXML2
2043 xml_cleanup_parser ();
2044 #endif
2045
2046 #ifdef WINDOWSNT
2047 term_ntproc (0);
2048 #endif
2049 }
2050
2051
2052 \f
2053 #ifndef CANNOT_DUMP
2054
2055 #include "unexec.h"
2056
2057 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
2058 doc: /* Dump current state of Emacs into executable file FILENAME.
2059 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2060 This is used in the file `loadup.el' when building Emacs.
2061
2062 You must run Emacs in batch mode in order to dump it. */)
2063 (Lisp_Object filename, Lisp_Object symfile)
2064 {
2065 Lisp_Object tem;
2066 Lisp_Object symbol;
2067 ptrdiff_t count = SPECPDL_INDEX ();
2068
2069 check_pure_size ();
2070
2071 if (! noninteractive)
2072 error ("Dumping Emacs works only in batch mode");
2073
2074 if (!might_dump)
2075 error ("Emacs can be dumped only once");
2076
2077 #ifdef GNU_LINUX
2078
2079 /* Warn if the gap between BSS end and heap start is larger than this. */
2080 # define MAX_HEAP_BSS_DIFF (1024*1024)
2081
2082 if (heap_bss_diff > MAX_HEAP_BSS_DIFF)
2083 {
2084 fprintf (stderr, "**************************************************\n");
2085 fprintf (stderr, "Warning: Your system has a gap between BSS and the\n");
2086 fprintf (stderr, "heap (%"pMu" bytes). This usually means that exec-shield\n",
2087 heap_bss_diff);
2088 fprintf (stderr, "or something similar is in effect. The dump may\n");
2089 fprintf (stderr, "fail because of this. See the section about\n");
2090 fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n");
2091 fprintf (stderr, "**************************************************\n");
2092 }
2093 #endif /* GNU_LINUX */
2094
2095 /* Bind `command-line-processed' to nil before dumping,
2096 so that the dumped Emacs will process its command line
2097 and set up to work with X windows if appropriate. */
2098 symbol = intern ("command-line-processed");
2099 specbind (symbol, Qnil);
2100
2101 CHECK_STRING (filename);
2102 filename = Fexpand_file_name (filename, Qnil);
2103 filename = ENCODE_FILE (filename);
2104 if (!NILP (symfile))
2105 {
2106 CHECK_STRING (symfile);
2107 if (SCHARS (symfile))
2108 {
2109 symfile = Fexpand_file_name (symfile, Qnil);
2110 symfile = ENCODE_FILE (symfile);
2111 }
2112 }
2113
2114 tem = Vpurify_flag;
2115 Vpurify_flag = Qnil;
2116
2117 #ifdef HYBRID_MALLOC
2118 {
2119 static char const fmt[] = "%d of %d static heap bytes used";
2120 char buf[sizeof fmt + 2 * (INT_STRLEN_BOUND (int) - 2)];
2121 int max_usage = max_bss_sbrk_ptr - bss_sbrk_buffer;
2122 sprintf (buf, fmt, max_usage, STATIC_HEAP_SIZE);
2123 /* Don't log messages, because at this point buffers cannot be created. */
2124 message1_nolog (buf);
2125 }
2126 #endif
2127
2128 fflush (stdout);
2129 /* Tell malloc where start of impure now is. */
2130 /* Also arrange for warnings when nearly out of space. */
2131 #if !defined SYSTEM_MALLOC && !defined HYBRID_MALLOC
2132 #ifndef WINDOWSNT
2133 /* On Windows, this was done before dumping, and that once suffices.
2134 Meanwhile, my_edata is not valid on Windows. */
2135 memory_warnings (my_edata, malloc_warning);
2136 #endif /* not WINDOWSNT */
2137 #endif /* not SYSTEM_MALLOC and not HYBRID_MALLOC */
2138
2139 alloc_unexec_pre ();
2140
2141 unexec (SSDATA (filename), !NILP (symfile) ? SSDATA (symfile) : 0);
2142
2143 alloc_unexec_post ();
2144
2145 #ifdef WINDOWSNT
2146 Vlibrary_cache = Qnil;
2147 #endif
2148 #ifdef HAVE_WINDOW_SYSTEM
2149 reset_image_types ();
2150 #endif
2151
2152 Vpurify_flag = tem;
2153
2154 return unbind_to (count, Qnil);
2155 }
2156
2157 #endif /* not CANNOT_DUMP */
2158 \f
2159 #if HAVE_SETLOCALE
2160 /* Recover from setlocale (LC_ALL, ""). */
2161 void
2162 fixup_locale (void)
2163 {
2164 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2165 so that numbers are read and printed properly for Emacs Lisp. */
2166 setlocale (LC_NUMERIC, "C");
2167 }
2168
2169 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2170 DESIRED_LOCALE. */
2171 static void
2172 synchronize_locale (int category, Lisp_Object *plocale, Lisp_Object desired_locale)
2173 {
2174 if (! EQ (*plocale, desired_locale))
2175 {
2176 *plocale = desired_locale;
2177 #ifdef WINDOWSNT
2178 /* Changing categories like LC_TIME usually requires specifying
2179 an encoding suitable for the new locale, but MS-Windows's
2180 'setlocale' will only switch the encoding when LC_ALL is
2181 specified. So we ignore CATEGORY, use LC_ALL instead, and
2182 then restore LC_NUMERIC to "C", so reading and printing
2183 numbers is unaffected. */
2184 setlocale (LC_ALL, (STRINGP (desired_locale)
2185 ? SSDATA (desired_locale)
2186 : ""));
2187 fixup_locale ();
2188 #else /* !WINDOWSNT */
2189 setlocale (category, (STRINGP (desired_locale)
2190 ? SSDATA (desired_locale)
2191 : ""));
2192 #endif /* !WINDOWSNT */
2193 }
2194 }
2195
2196 /* Set system time locale to match Vsystem_time_locale, if possible. */
2197 void
2198 synchronize_system_time_locale (void)
2199 {
2200 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2201 Vsystem_time_locale);
2202 }
2203
2204 /* Set system messages locale to match Vsystem_messages_locale, if
2205 possible. */
2206 void
2207 synchronize_system_messages_locale (void)
2208 {
2209 #ifdef LC_MESSAGES
2210 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2211 Vsystem_messages_locale);
2212 #endif
2213 }
2214 #endif /* HAVE_SETLOCALE */
2215 \f
2216
2217 Lisp_Object
2218 decode_env_path (const char *evarname, const char *defalt, bool empty)
2219 {
2220 const char *path, *p;
2221 Lisp_Object lpath, element, tem;
2222 /* Default is to use "." for empty path elements.
2223 But if argument EMPTY is true, use nil instead. */
2224 Lisp_Object empty_element = empty ? Qnil : build_string (".");
2225 #ifdef WINDOWSNT
2226 bool defaulted = 0;
2227 static const char *emacs_dir_env = "%emacs_dir%/";
2228 const size_t emacs_dir_len = strlen (emacs_dir_env);
2229 const char *edir = egetenv ("emacs_dir");
2230 char emacs_dir[MAX_UTF8_PATH];
2231
2232 /* egetenv looks in process-environment, which holds the variables
2233 in their original system-locale encoding. We need emacs_dir to
2234 be in UTF-8. */
2235 if (edir)
2236 filename_from_ansi (edir, emacs_dir);
2237 #endif
2238
2239 /* It's okay to use getenv here, because this function is only used
2240 to initialize variables when Emacs starts up, and isn't called
2241 after that. */
2242 if (evarname != 0)
2243 path = getenv (evarname);
2244 else
2245 path = 0;
2246 if (!path)
2247 {
2248 path = defalt;
2249 #ifdef WINDOWSNT
2250 defaulted = 1;
2251 #endif
2252 }
2253 #ifdef DOS_NT
2254 /* Ensure values from the environment use the proper directory separator. */
2255 if (path)
2256 {
2257 char *path_copy;
2258
2259 #ifdef WINDOWSNT
2260 char *path_utf8, *q, *d;
2261 int cnv_result;
2262
2263 /* Convert each element of PATH to UTF-8. */
2264 p = path_copy = alloca (strlen (path) + 1);
2265 strcpy (path_copy, path);
2266 d = path_utf8 = alloca (4 * strlen (path) + 1);
2267 *d = '\0';
2268 do {
2269 q = _mbschr (p, SEPCHAR);
2270 if (q)
2271 *q = '\0';
2272 cnv_result = filename_from_ansi (p, d);
2273 if (q)
2274 {
2275 *q++ = SEPCHAR;
2276 p = q;
2277 /* If conversion of this PATH elements fails, make sure
2278 destination pointer will stay put, thus effectively
2279 ignoring the offending element. */
2280 if (cnv_result == 0)
2281 {
2282 d += strlen (d);
2283 *d++ = SEPCHAR;
2284 }
2285 }
2286 else if (cnv_result != 0 && d > path_utf8)
2287 d[-1] = '\0'; /* remove last semi-colon and null-terminate PATH */
2288 } while (q);
2289 path_copy = path_utf8;
2290 #else /* MSDOS */
2291 path_copy = alloca (strlen (path) + 1);
2292 strcpy (path_copy, path);
2293 #endif
2294 dostounix_filename (path_copy);
2295 path = path_copy;
2296 }
2297 #endif
2298 lpath = Qnil;
2299 while (1)
2300 {
2301 p = strchr (path, SEPCHAR);
2302 if (!p)
2303 p = path + strlen (path);
2304 element = ((p - path) ? make_unibyte_string (path, p - path)
2305 : empty_element);
2306 if (! NILP (element))
2307 {
2308 #ifdef WINDOWSNT
2309 /* Relative file names in the default path are interpreted as
2310 being relative to $emacs_dir. */
2311 if (edir && defaulted
2312 && strncmp (path, emacs_dir_env, emacs_dir_len) == 0)
2313 element = Fexpand_file_name (Fsubstring
2314 (element,
2315 make_number (emacs_dir_len),
2316 Qnil),
2317 build_unibyte_string (emacs_dir));
2318 #endif
2319
2320 /* Add /: to the front of the name
2321 if it would otherwise be treated as magic. */
2322 tem = Ffind_file_name_handler (element, Qt);
2323
2324 /* However, if the handler says "I'm safe",
2325 don't bother adding /:. */
2326 if (SYMBOLP (tem))
2327 {
2328 Lisp_Object prop;
2329 prop = Fget (tem, intern ("safe-magic"));
2330 if (! NILP (prop))
2331 tem = Qnil;
2332 }
2333
2334 if (! NILP (tem))
2335 {
2336 AUTO_STRING (slash_colon, "/:");
2337 element = concat2 (slash_colon, element);
2338 }
2339 } /* !NILP (element) */
2340
2341 lpath = Fcons (element, lpath);
2342 if (*p)
2343 path = p + 1;
2344 else
2345 break;
2346 }
2347 return Fnreverse (lpath);
2348 }
2349
2350 DEFUN ("daemonp", Fdaemonp, Sdaemonp, 0, 0, 0,
2351 doc: /* Return non-nil if the current emacs process is a daemon.
2352 If the daemon was given a name argument, return that name. */)
2353 (void)
2354 {
2355 if (IS_DAEMON)
2356 if (daemon_name)
2357 return build_string (daemon_name);
2358 else
2359 return Qt;
2360 else
2361 return Qnil;
2362 }
2363
2364 DEFUN ("daemon-initialized", Fdaemon_initialized, Sdaemon_initialized, 0, 0, 0,
2365 doc: /* Mark the Emacs daemon as being initialized.
2366 This finishes the daemonization process by doing the other half of detaching
2367 from the parent process and its tty file descriptors. */)
2368 (void)
2369 {
2370 bool err = 0;
2371
2372 if (!IS_DAEMON)
2373 error ("This function can only be called if emacs is run as a daemon");
2374
2375 if (!DAEMON_RUNNING)
2376 error ("The daemon has already been initialized");
2377
2378 if (NILP (Vafter_init_time))
2379 error ("This function can only be called after loading the init files");
2380 #ifndef WINDOWSNT
2381 int nfd;
2382
2383 /* Get rid of stdin, stdout and stderr. */
2384 nfd = emacs_open ("/dev/null", O_RDWR, 0);
2385 err |= nfd < 0;
2386 err |= dup2 (nfd, STDIN_FILENO) < 0;
2387 err |= dup2 (nfd, STDOUT_FILENO) < 0;
2388 err |= dup2 (nfd, STDERR_FILENO) < 0;
2389 err |= emacs_close (nfd) != 0;
2390
2391 /* Closing the pipe will notify the parent that it can exit.
2392 FIXME: In case some other process inherited the pipe, closing it here
2393 won't notify the parent because it's still open elsewhere, so we
2394 additionally send a byte, just to make sure the parent really exits.
2395 Instead, we should probably close the pipe in start-process and
2396 call-process to make sure the pipe is never inherited by
2397 subprocesses. */
2398 err |= write (daemon_pipe[1], "\n", 1) < 0;
2399 err |= emacs_close (daemon_pipe[1]) != 0;
2400 /* Set it to an invalid value so we know we've already run this function. */
2401 daemon_pipe[1] = -1;
2402 #else /* WINDOWSNT */
2403 /* Signal the waiting emacsclient process. */
2404 err |= SetEvent (w32_daemon_event) == 0;
2405 err |= CloseHandle (w32_daemon_event) == 0;
2406 /* Set it to an invalid value so we know we've already run this function. */
2407 w32_daemon_event = INVALID_HANDLE_VALUE;
2408 #endif
2409
2410 if (err)
2411 error ("I/O error during daemon initialization");
2412 return Qt;
2413 }
2414
2415 void
2416 syms_of_emacs (void)
2417 {
2418 DEFSYM (Qfile_name_handler_alist, "file-name-handler-alist");
2419 DEFSYM (Qrisky_local_variable, "risky-local-variable");
2420 DEFSYM (Qkill_emacs, "kill-emacs");
2421 DEFSYM (Qkill_emacs_hook, "kill-emacs-hook");
2422
2423 #ifndef CANNOT_DUMP
2424 defsubr (&Sdump_emacs);
2425 #endif
2426
2427 defsubr (&Skill_emacs);
2428
2429 defsubr (&Sinvocation_name);
2430 defsubr (&Sinvocation_directory);
2431 defsubr (&Sdaemonp);
2432 defsubr (&Sdaemon_initialized);
2433
2434 DEFVAR_LISP ("command-line-args", Vcommand_line_args,
2435 doc: /* Args passed by shell to Emacs, as a list of strings.
2436 Many arguments are deleted from the list as they are processed. */);
2437
2438 DEFVAR_LISP ("system-type", Vsystem_type,
2439 doc: /* The value is a symbol indicating the type of operating system you are using.
2440 Special values:
2441 `gnu' compiled for a GNU Hurd system.
2442 `gnu/linux' compiled for a GNU/Linux system.
2443 `gnu/kfreebsd' compiled for a GNU system with a FreeBSD kernel.
2444 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2445 `ms-dos' compiled as an MS-DOS application.
2446 `windows-nt' compiled as a native W32 application.
2447 `cygwin' compiled using the Cygwin library.
2448 Anything else (in Emacs 26, the possibilities are: aix, berkeley-unix,
2449 hpux, usg-unix-v) indicates some sort of Unix system. */);
2450 Vsystem_type = intern_c_string (SYSTEM_TYPE);
2451 /* See configure.ac for the possible SYSTEM_TYPEs. */
2452
2453 DEFVAR_LISP ("system-configuration", Vsystem_configuration,
2454 doc: /* Value is string indicating configuration Emacs was built for. */);
2455 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2456
2457 DEFVAR_LISP ("system-configuration-options", Vsystem_configuration_options,
2458 doc: /* String containing the configuration options Emacs was built with. */);
2459 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2460
2461 DEFVAR_LISP ("system-configuration-features", Vsystem_configuration_features,
2462 doc: /* String listing some of the main features this Emacs was compiled with.
2463 An element of the form \"FOO\" generally means that HAVE_FOO was
2464 defined during the build.
2465
2466 This is mainly intended for diagnostic purposes in bug reports.
2467 Don't rely on it for testing whether a feature you want to use is available. */);
2468 Vsystem_configuration_features = build_string (EMACS_CONFIG_FEATURES);
2469
2470 DEFVAR_BOOL ("noninteractive", noninteractive1,
2471 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2472
2473 DEFVAR_LISP ("kill-emacs-hook", Vkill_emacs_hook,
2474 doc: /* Hook run when `kill-emacs' is called.
2475 Since `kill-emacs' may be invoked when the terminal is disconnected (or
2476 in other similar situations), functions placed on this hook should not
2477 expect to be able to interact with the user. To ask for confirmation,
2478 see `kill-emacs-query-functions' instead.
2479
2480 Before Emacs 24.1, the hook was not run in batch mode, i.e., if
2481 `noninteractive' was non-nil. */);
2482 Vkill_emacs_hook = Qnil;
2483
2484 DEFVAR_LISP ("path-separator", Vpath_separator,
2485 doc: /* String containing the character that separates directories in
2486 search paths, such as PATH and other similar environment variables. */);
2487 {
2488 char c = SEPCHAR;
2489 Vpath_separator = make_string (&c, 1);
2490 }
2491
2492 DEFVAR_LISP ("invocation-name", Vinvocation_name,
2493 doc: /* The program name that was used to run Emacs.
2494 Any directory names are omitted. */);
2495
2496 DEFVAR_LISP ("invocation-directory", Vinvocation_directory,
2497 doc: /* The directory in which the Emacs executable was found, to run it.
2498 The value is nil if that directory's name is not known. */);
2499
2500 DEFVAR_LISP ("installation-directory", Vinstallation_directory,
2501 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2502 In an installed Emacs, this is normally nil. It is non-nil if
2503 both `lib-src' (on MS-DOS, `info') and `etc' directories are found
2504 within the variable `invocation-directory' or its parent. For example,
2505 this is the case when running an uninstalled Emacs executable from its
2506 build directory. */);
2507 Vinstallation_directory = Qnil;
2508
2509 DEFVAR_LISP ("system-messages-locale", Vsystem_messages_locale,
2510 doc: /* System locale for messages. */);
2511 Vsystem_messages_locale = Qnil;
2512
2513 DEFVAR_LISP ("previous-system-messages-locale",
2514 Vprevious_system_messages_locale,
2515 doc: /* Most recently used system locale for messages. */);
2516 Vprevious_system_messages_locale = Qnil;
2517
2518 DEFVAR_LISP ("system-time-locale", Vsystem_time_locale,
2519 doc: /* System locale for time. */);
2520 Vsystem_time_locale = Qnil;
2521
2522 DEFVAR_LISP ("previous-system-time-locale", Vprevious_system_time_locale,
2523 doc: /* Most recently used system locale for time. */);
2524 Vprevious_system_time_locale = Qnil;
2525
2526 DEFVAR_LISP ("before-init-time", Vbefore_init_time,
2527 doc: /* Value of `current-time' before Emacs begins initialization. */);
2528 Vbefore_init_time = Qnil;
2529
2530 DEFVAR_LISP ("after-init-time", Vafter_init_time,
2531 doc: /* Value of `current-time' after loading the init files.
2532 This is nil during initialization. */);
2533 Vafter_init_time = Qnil;
2534
2535 DEFVAR_BOOL ("inhibit-x-resources", inhibit_x_resources,
2536 doc: /* If non-nil, X resources, Windows Registry settings, and NS defaults are not used. */);
2537 inhibit_x_resources = 0;
2538
2539 DEFVAR_LISP ("emacs-copyright", Vemacs_copyright,
2540 doc: /* Short copyright string for this version of Emacs. */);
2541 Vemacs_copyright = build_string (emacs_copyright);
2542
2543 DEFVAR_LISP ("emacs-version", Vemacs_version,
2544 doc: /* Version numbers of this version of Emacs. */);
2545 Vemacs_version = build_string (emacs_version);
2546
2547 DEFVAR_LISP ("report-emacs-bug-address", Vreport_emacs_bug_address,
2548 doc: /* Address of mailing list for GNU Emacs bugs. */);
2549 Vreport_emacs_bug_address = build_string (emacs_bugreport);
2550
2551 DEFVAR_LISP ("dynamic-library-alist", Vdynamic_library_alist,
2552 doc: /* Alist of dynamic libraries vs external files implementing them.
2553 Each element is a list (LIBRARY FILE...), where the car is a symbol
2554 representing a supported external library, and the rest are strings giving
2555 alternate filenames for that library.
2556
2557 Emacs tries to load the library from the files in the order they appear on
2558 the list; if none is loaded, the running session of Emacs won't have access
2559 to that library.
2560
2561 Note that image types `pbm' and `xbm' do not need entries in this variable
2562 because they do not depend on external libraries and are always available.
2563
2564 Also note that this is not a generic facility for accessing external
2565 libraries; only those already known by Emacs will be loaded. */);
2566 Vdynamic_library_alist = Qnil;
2567 Fput (intern_c_string ("dynamic-library-alist"), Qrisky_local_variable, Qt);
2568
2569 #ifdef WINDOWSNT
2570 Vlibrary_cache = Qnil;
2571 staticpro (&Vlibrary_cache);
2572 #endif
2573 }