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