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