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