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