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