Mercurial > emacs
annotate lib-src/emacsserver.c @ 45757:3f48cd2eb90a lexbind-base
Added read-directory-name.
Added format-mode-line.
| author | Kim F. Storm <storm@cua.dk> |
|---|---|
| date | Tue, 11 Jun 2002 22:33:52 +0000 |
| parents | 83c1951257f1 |
| children |
| rev | line source |
|---|---|
| 204 | 1 /* Communication subprocess for GNU Emacs acting as server. |
|
26083
134b57acef68
Add support for large files. Merge glibc 2.1.2.
Paul Eggert <eggert@twinsun.com>
parents:
25448
diff
changeset
|
2 Copyright (C) 1986, 1987, 1992, 1994, 1999 Free Software Foundation, Inc. |
| 204 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 620 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 204 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13925
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13925
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
| 204 | 20 |
| 21 | |
| 22 /* The GNU Emacs edit server process is run as a subprocess of Emacs | |
| 23 under control of the file lisp/server.el. | |
| 24 This program accepts communication from client (program emacsclient.c) | |
| 25 and passes their commands (consisting of keyboard characters) | |
| 26 up to the Emacs which then executes them. */ | |
| 27 | |
| 28 #define NO_SHORTNAMES | |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
29 |
|
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
30 #ifdef HAVE_CONFIG_H |
| 42412 | 31 #include <config.h> |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
32 #endif |
|
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
33 |
| 16449 | 34 #include <signal.h> |
| 3393 | 35 #undef signal |
| 204 | 36 |
|
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
37 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
| 204 | 38 #include <stdio.h> |
| 39 | |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
40 int |
| 204 | 41 main () |
| 42 { | |
| 43 fprintf (stderr, "Sorry, the Emacs server is supported only on systems\n"); | |
| 44 fprintf (stderr, "with Berkeley sockets or System V IPC.\n"); | |
| 45 exit (1); | |
| 46 } | |
| 47 | |
| 48 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
| 49 | |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
50 void perror_1 (); |
|
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
51 void fatal_error (); |
|
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
52 |
|
11368
91abe61bb495
Test NO_SOCKETS_IN_FILE_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
11031
diff
changeset
|
53 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM) |
| 204 | 54 /* BSD code is very different from SYSV IPC code */ |
| 55 | |
|
4178
57e52e312188
Include types.h before file.h.
Richard M. Stallman <rms@gnu.org>
parents:
3594
diff
changeset
|
56 #include <sys/types.h> |
| 204 | 57 #include <sys/file.h> |
| 58 #include <sys/socket.h> | |
| 59 #include <sys/un.h> | |
| 60 #include <stdio.h> | |
| 61 #include <errno.h> | |
|
13925
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
62 #include <sys/stat.h> |
| 204 | 63 |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
64 #ifdef HAVE_UNISTD_H |
|
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
65 #include <unistd.h> |
|
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
66 #endif |
|
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
67 |
|
25448
95f7147cb572
Include <stdlib.h> if available. Don't declare errno if it's a macro.
Andreas Schwab <schwab@suse.de>
parents:
25261
diff
changeset
|
68 #ifndef errno |
| 204 | 69 extern int errno; |
|
25448
95f7147cb572
Include <stdlib.h> if available. Don't declare errno if it's a macro.
Andreas Schwab <schwab@suse.de>
parents:
25261
diff
changeset
|
70 #endif |
| 204 | 71 |
|
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
72 /* Copied from src/process.c */ |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
73 #ifdef FD_SET |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
74 /* We could get this from param.h, but better not to depend on finding that. |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
75 And better not to risk that it might define other symbols used in this |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
76 file. */ |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
77 #ifdef FD_SETSIZE |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
78 #define MAXDESC FD_SETSIZE |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
79 #else |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
80 #define MAXDESC 64 |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
81 #endif |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
82 #define SELECT_TYPE fd_set |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
83 #else /* no FD_SET */ |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
84 #define MAXDESC 32 |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
85 #define SELECT_TYPE int |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
86 |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
87 /* Define the macros to access a single-int bitmap of descriptors. */ |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
88 #define FD_SET(n, p) (*(p) |= (1 << (n))) |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
89 #define FD_CLR(n, p) (*(p) &= ~(1 << (n))) |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
90 #define FD_ISSET(n, p) (*(p) & (1 << (n))) |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
91 #define FD_ZERO(p) (*(p) = 0) |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
92 #endif /* no FD_SET */ |
|
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
93 |
|
16070
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
94 /* This is the file name of the socket that we made. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
95 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
96 char *socket_name; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
97 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
98 /* Name of this program. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
99 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
100 char *progname; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
101 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
102 /* Handle fatal signals. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
103 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
104 /* This is the handler. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
105 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
106 SIGTYPE |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
107 delete_socket (sig) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
108 int sig; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
109 { |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
110 signal (sig, SIG_DFL); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
111 unlink (socket_name); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
112 kill (getpid (), sig); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
113 } |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
114 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
115 /* Set up to handle all the signals. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
116 |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
117 void |
|
16070
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
118 handle_signals () |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
119 { |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
120 signal (SIGHUP, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
121 signal (SIGINT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
122 signal (SIGQUIT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
123 signal (SIGILL, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
124 signal (SIGTRAP, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
125 #ifdef SIGABRT |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
126 signal (SIGABRT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
127 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
128 #ifdef SIGHWE |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
129 signal (SIGHWE, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
130 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
131 #ifdef SIGPRE |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
132 signal (SIGPRE, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
133 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
134 #ifdef SIGORE |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
135 signal (SIGORE, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
136 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
137 #ifdef SIGUME |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
138 signal (SIGUME, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
139 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
140 #ifdef SIGDLK |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
141 signal (SIGDLK, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
142 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
143 #ifdef SIGCPULIM |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
144 signal (SIGCPULIM, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
145 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
146 #ifdef SIGIOT |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
147 /* This is missing on some systems - OS/2, for example. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
148 signal (SIGIOT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
149 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
150 #ifdef SIGEMT |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
151 signal (SIGEMT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
152 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
153 signal (SIGFPE, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
154 #ifdef SIGBUS |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
155 signal (SIGBUS, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
156 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
157 signal (SIGSEGV, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
158 #ifdef SIGSYS |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
159 signal (SIGSYS, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
160 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
161 signal (SIGTERM, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
162 #ifdef SIGXCPU |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
163 signal (SIGXCPU, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
164 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
165 #ifdef SIGXFSZ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
166 signal (SIGXFSZ, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
167 #endif /* SIGXFSZ */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
168 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
169 #ifdef AIX |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
170 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
171 signal (SIGXCPU, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
172 #ifndef _I386 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
173 signal (SIGIOINT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
174 #endif |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
175 signal (SIGGRANT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
176 signal (SIGRETRACT, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
177 signal (SIGSOUND, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
178 signal (SIGMSG, delete_socket); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
179 #endif /* AIX */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
180 } |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
181 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
182 /* Print error message. `s1' is printf control string, `s2' is arg for it. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
183 void |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
184 error (s1, s2) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
185 char *s1, *s2; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
186 { |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
187 fprintf (stderr, "%s: ", progname); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
188 fprintf (stderr, s1, s2); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
189 fprintf (stderr, "\n"); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
190 } |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
191 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
192 /* Print error message and exit. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
193 void |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
194 fatal (s1, s2) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
195 char *s1, *s2; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
196 { |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
197 error (s1, s2); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
198 exit (1); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
199 } |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
200 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
201 /* Like malloc but get fatal error if memory is exhausted. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
202 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
203 long * |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
204 xmalloc (size) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
205 unsigned int size; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
206 { |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
207 long *result = (long *) malloc (size); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
208 if (result == NULL) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
209 fatal ("virtual memory exhausted", 0); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
210 return result; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
211 } |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
212 |
|
15682
9f7228c75a4b
[__GNU_LIBRARY__]: Use size_t for fromlen.
Karl Heuer <kwzh@gnu.org>
parents:
15591
diff
changeset
|
213 int |
|
16070
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
214 main (argc, argv) |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
215 int argc; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
216 char **argv; |
| 204 | 217 { |
|
24083
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
218 char *system_name; |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
219 int system_name_length; |
|
16137
dc1387f877d4
(main): Declare `fromlen' as size_t, undo previous change.
Erik Naggum <erik@naggum.no>
parents:
16122
diff
changeset
|
220 int s, infd; |
|
19344
1151154e9ba4
(main): use SOCKLEN_TYPE for fromlen, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
16449
diff
changeset
|
221 #ifdef SOCKLEN_TYPE |
|
1151154e9ba4
(main): use SOCKLEN_TYPE for fromlen, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
16449
diff
changeset
|
222 SOCKLEN_TYPE fromlen; |
|
1151154e9ba4
(main): use SOCKLEN_TYPE for fromlen, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
16449
diff
changeset
|
223 #else |
|
16137
dc1387f877d4
(main): Declare `fromlen' as size_t, undo previous change.
Erik Naggum <erik@naggum.no>
parents:
16122
diff
changeset
|
224 size_t fromlen; |
|
19344
1151154e9ba4
(main): use SOCKLEN_TYPE for fromlen, if it is defined.
Richard M. Stallman <rms@gnu.org>
parents:
16449
diff
changeset
|
225 #endif |
|
16137
dc1387f877d4
(main): Declare `fromlen' as size_t, undo previous change.
Erik Naggum <erik@naggum.no>
parents:
16122
diff
changeset
|
226 struct sockaddr_un server, fromunix; |
|
34952
a3e7758ab661
(main) <homedir>: Make its declaration conditional
Eli Zaretskii <eliz@gnu.org>
parents:
26083
diff
changeset
|
227 #ifdef SERVER_HOME_DIR |
| 204 | 228 char *homedir; |
|
34952
a3e7758ab661
(main) <homedir>: Make its declaration conditional
Eli Zaretskii <eliz@gnu.org>
parents:
26083
diff
changeset
|
229 #endif |
| 204 | 230 char *str, string[BUFSIZ], code[BUFSIZ]; |
| 231 FILE *infile; | |
| 232 FILE **openfiles; | |
| 233 int openfiles_size; | |
|
13925
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
234 struct stat statbuf; |
| 204 | 235 |
|
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
236 #ifndef convex |
| 204 | 237 char *getenv (); |
|
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
238 #endif |
| 204 | 239 |
|
16070
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
240 progname = argv[0]; |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
241 |
| 204 | 242 openfiles_size = 20; |
| 243 openfiles = (FILE **) malloc (openfiles_size * sizeof (FILE *)); | |
| 244 if (openfiles == 0) | |
| 245 abort (); | |
| 246 | |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
247 /* |
| 204 | 248 * Open up an AF_UNIX socket in this person's home directory |
| 249 */ | |
| 250 | |
| 251 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
| 252 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
253 perror_1 ("socket"); |
| 204 | 254 exit (1); |
| 255 } | |
| 256 server.sun_family = AF_UNIX; | |
|
25261
89be69860eeb
(main): Move the dynamic allocation of
Karl Heuer <kwzh@gnu.org>
parents:
24382
diff
changeset
|
257 |
|
24083
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
258 system_name_length = 32; |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
259 while (1) |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
260 { |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
261 system_name = (char *) xmalloc (system_name_length + 1); |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
262 |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
263 /* system_name must be null-terminated string. */ |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
264 system_name[system_name_length] = '\0'; |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
265 |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
266 if (gethostname (system_name, system_name_length) == 0) |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
267 break; |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
268 |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
269 free (system_name); |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
270 system_name_length *= 2; |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
271 } |
|
33b162fe4507
(main): Eliminate arbitrary limit on
Richard M. Stallman <rms@gnu.org>
parents:
23413
diff
changeset
|
272 |
|
25261
89be69860eeb
(main): Move the dynamic allocation of
Karl Heuer <kwzh@gnu.org>
parents:
24382
diff
changeset
|
273 #ifndef SERVER_HOME_DIR |
|
39722
a94d9387d8cd
(main): Cast geteuid in sprintf to int.
Gerd Moellmann <gerd@gnu.org>
parents:
34952
diff
changeset
|
274 sprintf (server.sun_path, "/tmp/esrv%d-%s", (int) geteuid (), system_name); |
| 470 | 275 |
| 276 if (unlink (server.sun_path) == -1 && errno != ENOENT) | |
| 277 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
278 perror_1 ("unlink"); |
| 470 | 279 exit (1); |
| 280 } | |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
281 #else |
| 470 | 282 if ((homedir = getenv ("HOME")) == NULL) |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
283 fatal_error ("No home directory\n"); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
284 |
| 204 | 285 strcpy (server.sun_path, homedir); |
|
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
286 strcat (server.sun_path, "/.emacs-server-"); |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
287 strcat (server.sun_path, system_name); |
| 470 | 288 /* Delete anyone else's old server. */ |
| 289 unlink (server.sun_path); | |
| 204 | 290 #endif |
| 291 | |
|
16070
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
292 /* Save the socket name so we can delete it. */ |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
293 socket_name = (char *) xmalloc (strlen (server.sun_path) + 1); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
294 strcpy (socket_name, server.sun_path); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
295 |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
296 handle_signals (); |
|
5aa311b84644
On fatal signal, delete socket-file:
Richard M. Stallman <rms@gnu.org>
parents:
15719
diff
changeset
|
297 |
|
3594
aacca1901f73
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
3393
diff
changeset
|
298 if (bind (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) < 0) |
| 204 | 299 { |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
300 perror_1 ("bind"); |
| 204 | 301 exit (1); |
| 302 } | |
| 303 /* Only this user can send commands to this Emacs. */ | |
|
13925
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
304 if (stat (server.sun_path, &statbuf) < 0) |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
305 { |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
306 perror_1 ("bind"); |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
307 exit (1); |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
308 } |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
309 |
|
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
310 chmod (server.sun_path, statbuf.st_mode & 0600); |
| 204 | 311 /* |
| 312 * Now, just wait for everything to come in.. | |
| 313 */ | |
| 314 if (listen (s, 5) < 0) | |
| 315 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
316 perror_1 ("listen"); |
| 204 | 317 exit (1); |
| 318 } | |
| 319 | |
| 320 /* Disable sigpipes in case luser kills client... */ | |
| 321 signal (SIGPIPE, SIG_IGN); | |
| 322 for (;;) | |
| 323 { | |
|
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
324 SELECT_TYPE rmask; |
|
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
325 FD_ZERO (&rmask); |
|
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
326 FD_SET (0, &rmask); |
|
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
327 FD_SET (s, &rmask); |
|
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
328 if (select (s + 1, &rmask, 0, 0, 0) < 0) |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
329 perror_1 ("select"); |
|
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
330 if (FD_ISSET (s, &rmask)) /* client sends list of filenames */ |
| 204 | 331 { |
| 332 fromlen = sizeof (fromunix); | |
| 333 fromunix.sun_family = AF_UNIX; | |
|
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
334 infd = accept (s, (struct sockaddr *) &fromunix, &fromlen); |
| 204 | 335 if (infd < 0) |
| 336 { | |
| 337 if (errno == EMFILE || errno == ENFILE) | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
338 fprintf (stderr, "Error: too many clients.\n"); |
| 204 | 339 else |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
340 perror_1 ("accept"); |
| 204 | 341 continue; |
| 342 } | |
| 343 | |
| 344 if (infd >= openfiles_size) | |
| 345 { | |
| 346 openfiles_size *= 2; | |
| 347 openfiles = (FILE **) realloc (openfiles, | |
| 348 openfiles_size * sizeof (FILE *)); | |
| 349 if (openfiles == 0) | |
| 350 abort (); | |
| 351 } | |
| 352 | |
| 353 infile = fdopen (infd, "r+"); /* open stream */ | |
| 354 if (infile == NULL) | |
| 355 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
356 fprintf (stderr, "Error: too many clients.\n"); |
| 204 | 357 write (infd, "Too many clients.\n", 18); |
| 358 close (infd); /* Prevent descriptor leak.. */ | |
| 359 continue; | |
| 360 } | |
| 361 str = fgets (string, BUFSIZ, infile); | |
| 362 if (str == NULL) | |
| 363 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
364 perror_1 ("fgets"); |
| 204 | 365 close (infd); /* Prevent descriptor leak.. */ |
| 366 continue; | |
| 367 } | |
| 368 openfiles[infd] = infile; | |
| 369 printf ("Client: %d %s", infd, string); | |
| 370 /* If what we read did not end in a newline, | |
| 371 it means there is more. Keep reading from the socket | |
| 372 and outputting to Emacs, until we get the newline. */ | |
| 373 while (string[strlen (string) - 1] != '\n') | |
| 374 { | |
| 375 if (fgets (string, BUFSIZ, infile) == 0) | |
| 376 break; | |
| 377 printf ("%s", string); | |
| 378 } | |
| 379 fflush (stdout); | |
| 380 fflush (infile); | |
| 381 continue; | |
| 382 } | |
|
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
383 else if (FD_ISSET (0, &rmask)) /* emacs sends codeword, fd, and string message */ |
| 204 | 384 { |
| 385 /* Read command codeword and fd */ | |
| 386 clearerr (stdin); | |
| 387 scanf ("%s %d%*c", code, &infd); | |
| 388 if (ferror (stdin) || feof (stdin)) | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
389 fatal_error ("server: error reading from standard input\n"); |
| 204 | 390 |
| 391 /* Transfer text from Emacs to the client, up to a newline. */ | |
| 392 infile = openfiles[infd]; | |
|
15591
deab323dd651
(main) [HAVE_SOCKETS]: Call rewind before writing to infile.
Miles Bader <miles@gnu.org>
parents:
14186
diff
changeset
|
393 rewind (infile); |
| 204 | 394 while (1) |
| 395 { | |
| 396 if (fgets (string, BUFSIZ, stdin) == 0) | |
| 397 break; | |
| 398 fprintf (infile, "%s", string); | |
| 399 if (string[strlen (string) - 1] == '\n') | |
| 400 break; | |
| 401 } | |
| 402 fflush (infile); | |
| 403 | |
| 404 /* If command is close, close connection to client. */ | |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
405 if (strncmp (code, "Close:", 6) == 0) |
|
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
406 if (infd > 2) |
| 204 | 407 { |
| 408 fclose (infile); | |
| 409 close (infd); | |
| 410 } | |
| 411 continue; | |
|
42178
681d2b02da2d
Conditionally include config.h.
Pavel Jan?k <Pavel@Janik.cz>
parents:
42133
diff
changeset
|
412 } |
| 204 | 413 } |
| 414 } | |
| 415 | |
| 416 #else /* This is the SYSV IPC section */ | |
| 417 | |
| 418 #include <sys/types.h> | |
| 419 #include <sys/ipc.h> | |
| 420 #include <sys/msg.h> | |
| 421 #include <setjmp.h> | |
|
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
422 #include <errno.h> |
|
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
423 #include <sys/utsname.h> |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
424 |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
425 struct utsname system_name; |
|
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
426 |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
427 #ifndef errno |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
428 extern int errno; |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
429 #endif |
| 204 | 430 |
| 431 jmp_buf msgenv; | |
| 432 | |
| 620 | 433 SIGTYPE |
| 204 | 434 msgcatch () |
| 435 { | |
| 436 longjmp (msgenv, 1); | |
| 437 } | |
| 438 | |
| 439 | |
| 440 /* "THIS has to be fixed. Remember, stderr may not exist...-rlk." | |
| 441 Incorrect. This program runs as an inferior of Emacs. | |
| 442 Its stderr always exists--rms. */ | |
| 443 #include <stdio.h> | |
| 444 | |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
445 int |
| 204 | 446 main () |
| 447 { | |
|
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
448 int s, infd, fromlen, ioproc; |
| 204 | 449 key_t key; |
| 450 struct msgbuf * msgp = | |
| 451 (struct msgbuf *) malloc (sizeof *msgp + BUFSIZ); | |
| 452 struct msqid_ds msg_st; | |
| 453 int p; | |
| 454 char *homedir, *getenv (); | |
| 455 char string[BUFSIZ]; | |
| 456 FILE *infile; | |
| 457 | |
| 458 /* | |
|
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
459 * Create a message queue using ~/.emacs-server as the path for ftok |
| 204 | 460 */ |
| 461 if ((homedir = getenv ("HOME")) == NULL) | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
462 fatal_error ("No home directory\n"); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
463 |
| 204 | 464 strcpy (string, homedir); |
|
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
465 #ifndef HAVE_LONG_FILE_NAMES |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
466 /* If file names are short, we can't fit the host name. */ |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
467 strcat (string, "/.emacs-server"); |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
468 #else |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
469 strcat (string, "/.emacs-server-"); |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
470 uname (&system_name); |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
471 strcat (string, system_name.nodename); |
|
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
472 #endif |
| 204 | 473 creat (string, 0600); |
| 474 key = ftok (string, 1); /* unlikely to be anyone else using it */ | |
| 475 s = msgget (key, 0600 | IPC_CREAT); | |
| 476 if (s == -1) | |
| 477 { | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
478 perror_1 ("msgget"); |
| 204 | 479 exit (1); |
| 480 } | |
| 481 | |
| 482 /* Fork so we can close connection even if parent dies */ | |
| 483 p = fork (); | |
| 484 if (setjmp (msgenv)) | |
| 485 { | |
| 486 msgctl (s, IPC_RMID, 0); | |
|
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
487 if (p > 0) |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
488 kill (p, SIGKILL); |
| 204 | 489 exit (0); |
| 490 } | |
| 491 signal (SIGTERM, msgcatch); | |
| 492 signal (SIGINT, msgcatch); | |
|
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
493 signal (SIGHUP, msgcatch); |
|
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
494 if (p > 0) |
| 204 | 495 { |
|
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
496 /* This is executed in the original process that did the fork above. */ |
|
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
497 /* Get pid of Emacs itself. */ |
| 204 | 498 p = getppid (); |
| 499 setpgrp (); /* Gnu kills process group on exit */ | |
| 500 while (1) | |
| 501 { | |
|
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
502 /* Is Emacs still alive? */ |
| 204 | 503 if (kill (p, 0) < 0) |
| 504 { | |
| 505 msgctl (s, IPC_RMID, 0); | |
| 506 exit (0); | |
| 507 } | |
| 508 sleep (10); | |
| 509 } | |
| 510 } | |
| 511 | |
|
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
512 /* This is executed in the child made by forking above. |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
513 Call it c1. Make another process, ioproc. */ |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
514 |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
515 ioproc = fork (); |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
516 if (ioproc == 0) |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
517 { |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
518 /* In process ioproc, wait for text from Emacs, |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
519 and send it to the process c1. |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
520 This way, c1 only has to wait for one source of input. */ |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
521 while (fgets (msgp->mtext, BUFSIZ, stdin)) |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
522 { |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
523 msgp->mtype = 1; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
524 msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0); |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
525 } |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
526 exit (1); |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
527 } |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
528 |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
529 /* In the process c1, |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
530 listen for messages from clients and pass them to Emacs. */ |
| 204 | 531 while (1) |
| 532 { | |
| 533 if ((fromlen = msgrcv (s, msgp, BUFSIZ - 1, 1, 0)) < 0) | |
| 534 { | |
|
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
535 #ifdef EINTR |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
536 if (errno == EINTR) |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
537 continue; |
|
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
538 #endif |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
539 perror_1 ("msgrcv"); |
| 470 | 540 exit (1); |
| 204 | 541 } |
| 542 else | |
| 543 { | |
| 544 msgctl (s, IPC_STAT, &msg_st); | |
|
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
545 |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
546 /* Distinguish whether the message came from a client, or from |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
547 ioproc. */ |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
548 if (msg_st.msg_lspid == ioproc) |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
549 { |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
550 char code[BUFSIZ]; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
551 int inproc; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
552 |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
553 /* Message from ioproc: tell a client we are done. */ |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
554 msgp->mtext[strlen (msgp->mtext)-1] = 0; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
555 sscanf (msgp->mtext, "%s %d", code, &inproc); |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
556 msgp->mtype = inproc; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
557 msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0); |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
558 continue; |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
559 } |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
560 |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
561 /* This is a request from a client: copy to stdout |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
562 so that Emacs will get it. Include msg_lspid |
|
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
563 so server.el can tell us where to send the reply. */ |
| 204 | 564 strncpy (string, msgp->mtext, fromlen); |
| 565 string[fromlen] = 0; /* make sure */ | |
| 566 /* Newline is part of string.. */ | |
|
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
567 printf ("Client: %d %s", msg_st.msg_lspid, string); |
| 204 | 568 fflush (stdout); |
| 569 } | |
| 570 } | |
| 571 } | |
| 572 | |
| 573 #endif /* HAVE_SYSVIPC */ | |
| 574 | |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
575 |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
576 /* This is like perror but puts `Error: ' at the beginning. */ |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
577 |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
578 void |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
579 perror_1 (string) |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
580 char *string; |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
581 { |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
582 char *copy = (char *) malloc (strlen (string) + 8); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
583 if (copy == 0) |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
584 fatal_error ("Virtual memory exhausted"); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
585 |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
586 strcpy (copy, "Error: "); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
587 strcat (copy, string); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
588 perror (copy); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
589 } |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
590 |
|
21388
1a8c44e38d9c
Include <unistd.h> if available.
Andreas Schwab <schwab@suse.de>
parents:
19344
diff
changeset
|
591 void |
|
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
592 fatal_error (string) |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
593 char *string; |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
594 { |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
595 fprintf (stderr, "%s", "Error: "); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
596 fprintf (stderr, string); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
597 exit (1); |
|
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
598 } |
|
24382
740c8322ca39
(perror_1, fatal_error): Don't compile unless needed.
Karl Heuer <kwzh@gnu.org>
parents:
24083
diff
changeset
|
599 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ |
