Mercurial > emacs
annotate lib-src/emacsserver.c @ 14623:00ffbbef6304
(before-init-hook, after-init-hook): Doc fix.
(term-setup-hook): Doc fix.
(emacs-startup-hook): New defvar.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 21 Feb 1996 21:21:31 +0000 |
parents | ee40177f6c68 |
children | deab323dd651 |
rev | line source |
---|---|
204 | 1 /* Communication subprocess for GNU Emacs acting as server. |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
2 Copyright (C) 1986, 1987, 1992, 1994 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 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4178
diff
changeset
|
29 #include <../src/config.h> |
204 | 30 #undef read |
31 #undef write | |
32 #undef open | |
33 #undef close | |
3393 | 34 #undef signal |
204 | 35 |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
36 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) |
204 | 37 #include <stdio.h> |
38 | |
39 main () | |
40 { | |
41 fprintf (stderr, "Sorry, the Emacs server is supported only on systems\n"); | |
42 fprintf (stderr, "with Berkeley sockets or System V IPC.\n"); | |
43 exit (1); | |
44 } | |
45 | |
46 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
47 | |
11368
91abe61bb495
Test NO_SOCKETS_IN_FILE_SYSTEM.
Richard M. Stallman <rms@gnu.org>
parents:
11031
diff
changeset
|
48 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM) |
204 | 49 /* BSD code is very different from SYSV IPC code */ |
50 | |
4178
57e52e312188
Include types.h before file.h.
Richard M. Stallman <rms@gnu.org>
parents:
3594
diff
changeset
|
51 #include <sys/types.h> |
204 | 52 #include <sys/file.h> |
53 #include <sys/socket.h> | |
54 #include <sys/signal.h> | |
55 #include <sys/un.h> | |
56 #include <stdio.h> | |
57 #include <errno.h> | |
13925
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
58 #include <sys/stat.h> |
204 | 59 |
60 extern int errno; | |
61 | |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
62 /* 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
|
63 #ifdef FD_SET |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
64 /* 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
|
65 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
|
66 file. */ |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
67 #ifdef FD_SETSIZE |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
68 #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
|
69 #else |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
70 #define MAXDESC 64 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
71 #endif |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
72 #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
|
73 #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
|
74 #define MAXDESC 32 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
75 #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
|
76 |
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
77 /* 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
|
78 #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
|
79 #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
|
80 #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
|
81 #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
|
82 #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
|
83 |
204 | 84 main () |
85 { | |
470 | 86 char system_name[32]; |
204 | 87 int s, infd, fromlen; |
88 struct sockaddr_un server, fromunix; | |
89 char *homedir; | |
90 char *str, string[BUFSIZ], code[BUFSIZ]; | |
91 FILE *infile; | |
92 FILE **openfiles; | |
93 int openfiles_size; | |
13925
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
94 struct stat statbuf; |
204 | 95 |
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
96 #ifndef convex |
204 | 97 char *getenv (); |
8025
f25cb844c3dd
(main): Don't declare geteuid.
Richard M. Stallman <rms@gnu.org>
parents:
5856
diff
changeset
|
98 #endif |
204 | 99 |
100 openfiles_size = 20; | |
101 openfiles = (FILE **) malloc (openfiles_size * sizeof (FILE *)); | |
102 if (openfiles == 0) | |
103 abort (); | |
104 | |
105 /* | |
106 * Open up an AF_UNIX socket in this person's home directory | |
107 */ | |
108 | |
109 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) | |
110 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
111 perror_1 ("socket"); |
204 | 112 exit (1); |
113 } | |
114 server.sun_family = AF_UNIX; | |
470 | 115 #ifndef SERVER_HOME_DIR |
116 gethostname (system_name, sizeof (system_name)); | |
117 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name); | |
118 | |
119 if (unlink (server.sun_path) == -1 && errno != ENOENT) | |
120 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
121 perror_1 ("unlink"); |
470 | 122 exit (1); |
123 } | |
124 #else | |
125 if ((homedir = getenv ("HOME")) == NULL) | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
126 fatal_error ("No home directory\n"); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
127 |
204 | 128 strcpy (server.sun_path, homedir); |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
129 strcat (server.sun_path, "/.emacs-server-"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
130 gethostname (system_name, sizeof (system_name)); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
131 strcat (server.sun_path, system_name); |
470 | 132 /* Delete anyone else's old server. */ |
133 unlink (server.sun_path); | |
204 | 134 #endif |
135 | |
3594
aacca1901f73
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
Jim Blandy <jimb@redhat.com>
parents:
3393
diff
changeset
|
136 if (bind (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) < 0) |
204 | 137 { |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
138 perror_1 ("bind"); |
204 | 139 exit (1); |
140 } | |
141 /* 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
|
142 if (stat (server.sun_path, &statbuf) < 0) |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
143 { |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
144 perror_1 ("bind"); |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
145 exit (1); |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
146 } |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
147 |
5baf69817438
(main): Do chmod based on existing permission.
Karl Heuer <kwzh@gnu.org>
parents:
12415
diff
changeset
|
148 chmod (server.sun_path, statbuf.st_mode & 0600); |
204 | 149 /* |
150 * Now, just wait for everything to come in.. | |
151 */ | |
152 if (listen (s, 5) < 0) | |
153 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
154 perror_1 ("listen"); |
204 | 155 exit (1); |
156 } | |
157 | |
158 /* Disable sigpipes in case luser kills client... */ | |
159 signal (SIGPIPE, SIG_IGN); | |
160 for (;;) | |
161 { | |
8811
7cd89ebbe641
(FD_*) [HAVE_SOCKETS & !HAVE_SYSVIPC]: If not already defined, use simple
Karl Heuer <kwzh@gnu.org>
parents:
8482
diff
changeset
|
162 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
|
163 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
|
164 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
|
165 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
|
166 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
|
167 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
|
168 if (FD_ISSET (s, &rmask)) /* client sends list of filenames */ |
204 | 169 { |
170 fromlen = sizeof (fromunix); | |
171 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
|
172 infd = accept (s, (struct sockaddr *) &fromunix, &fromlen); |
204 | 173 if (infd < 0) |
174 { | |
175 if (errno == EMFILE || errno == ENFILE) | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
176 fprintf (stderr, "Error: too many clients.\n"); |
204 | 177 else |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
178 perror_1 ("accept"); |
204 | 179 continue; |
180 } | |
181 | |
182 if (infd >= openfiles_size) | |
183 { | |
184 openfiles_size *= 2; | |
185 openfiles = (FILE **) realloc (openfiles, | |
186 openfiles_size * sizeof (FILE *)); | |
187 if (openfiles == 0) | |
188 abort (); | |
189 } | |
190 | |
191 infile = fdopen (infd, "r+"); /* open stream */ | |
192 if (infile == NULL) | |
193 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
194 fprintf (stderr, "Error: too many clients.\n"); |
204 | 195 write (infd, "Too many clients.\n", 18); |
196 close (infd); /* Prevent descriptor leak.. */ | |
197 continue; | |
198 } | |
199 str = fgets (string, BUFSIZ, infile); | |
200 if (str == NULL) | |
201 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
202 perror_1 ("fgets"); |
204 | 203 close (infd); /* Prevent descriptor leak.. */ |
204 continue; | |
205 } | |
206 openfiles[infd] = infile; | |
207 printf ("Client: %d %s", infd, string); | |
208 /* If what we read did not end in a newline, | |
209 it means there is more. Keep reading from the socket | |
210 and outputting to Emacs, until we get the newline. */ | |
211 while (string[strlen (string) - 1] != '\n') | |
212 { | |
213 if (fgets (string, BUFSIZ, infile) == 0) | |
214 break; | |
215 printf ("%s", string); | |
216 } | |
217 fflush (stdout); | |
218 fflush (infile); | |
219 continue; | |
220 } | |
9418
5d8165cdb0d8
[! SYSVIPC] (main): Fix uses of FD_* macros: fd_set arg is a pointer,
Roland McGrath <roland@gnu.org>
parents:
8811
diff
changeset
|
221 else if (FD_ISSET (0, &rmask)) /* emacs sends codeword, fd, and string message */ |
204 | 222 { |
223 /* Read command codeword and fd */ | |
224 clearerr (stdin); | |
225 scanf ("%s %d%*c", code, &infd); | |
226 if (ferror (stdin) || feof (stdin)) | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
227 fatal_error ("server: error reading from standard input\n"); |
204 | 228 |
229 /* Transfer text from Emacs to the client, up to a newline. */ | |
230 infile = openfiles[infd]; | |
231 while (1) | |
232 { | |
233 if (fgets (string, BUFSIZ, stdin) == 0) | |
234 break; | |
235 fprintf (infile, "%s", string); | |
236 if (string[strlen (string) - 1] == '\n') | |
237 break; | |
238 } | |
239 fflush (infile); | |
240 | |
241 /* If command is close, close connection to client. */ | |
242 if (strncmp (code, "Close:", 6) == 0) | |
243 if (infd > 2) | |
244 { | |
245 fclose (infile); | |
246 close (infd); | |
247 } | |
248 continue; | |
249 } | |
250 } | |
251 } | |
252 | |
253 #else /* This is the SYSV IPC section */ | |
254 | |
255 #include <sys/types.h> | |
256 #include <sys/signal.h> | |
257 #include <sys/ipc.h> | |
258 #include <sys/msg.h> | |
259 #include <setjmp.h> | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
260 #include <errno.h> |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
261 #include <sys/utsname.h> |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
262 |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
263 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
|
264 |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
265 #ifndef errno |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
266 extern int errno; |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
267 #endif |
204 | 268 |
269 jmp_buf msgenv; | |
270 | |
620 | 271 SIGTYPE |
204 | 272 msgcatch () |
273 { | |
274 longjmp (msgenv, 1); | |
275 } | |
276 | |
277 | |
278 /* "THIS has to be fixed. Remember, stderr may not exist...-rlk." | |
279 Incorrect. This program runs as an inferior of Emacs. | |
280 Its stderr always exists--rms. */ | |
281 #include <stdio.h> | |
282 | |
283 main () | |
284 { | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
285 int s, infd, fromlen, ioproc; |
204 | 286 key_t key; |
287 struct msgbuf * msgp = | |
288 (struct msgbuf *) malloc (sizeof *msgp + BUFSIZ); | |
289 struct msqid_ds msg_st; | |
290 int p; | |
291 char *homedir, *getenv (); | |
292 char string[BUFSIZ]; | |
293 FILE *infile; | |
294 | |
295 /* | |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
296 * Create a message queue using ~/.emacs-server as the path for ftok |
204 | 297 */ |
298 if ((homedir = getenv ("HOME")) == NULL) | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
299 fatal_error ("No home directory\n"); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
300 |
204 | 301 strcpy (string, homedir); |
10123
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
302 #ifndef HAVE_LONG_FILE_NAMES |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
303 /* 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
|
304 strcat (string, "/.emacs-server"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
305 #else |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
306 strcat (string, "/.emacs-server-"); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
307 uname (&system_name); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
308 strcat (string, system_name.nodename); |
bb3d25f73eaf
[HAVE_SYSVIPC]: Include sys/utsname.h.
Richard M. Stallman <rms@gnu.org>
parents:
9593
diff
changeset
|
309 #endif |
204 | 310 creat (string, 0600); |
311 key = ftok (string, 1); /* unlikely to be anyone else using it */ | |
312 s = msgget (key, 0600 | IPC_CREAT); | |
313 if (s == -1) | |
314 { | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
315 perror_1 ("msgget"); |
204 | 316 exit (1); |
317 } | |
318 | |
319 /* Fork so we can close connection even if parent dies */ | |
320 p = fork (); | |
321 if (setjmp (msgenv)) | |
322 { | |
323 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
|
324 if (p > 0) |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
325 kill (p, SIGKILL); |
204 | 326 exit (0); |
327 } | |
328 signal (SIGTERM, msgcatch); | |
329 signal (SIGINT, msgcatch); | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
330 signal (SIGHUP, msgcatch); |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
331 if (p > 0) |
204 | 332 { |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
333 /* 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
|
334 /* Get pid of Emacs itself. */ |
204 | 335 p = getppid (); |
336 setpgrp (); /* Gnu kills process group on exit */ | |
337 while (1) | |
338 { | |
5856
16e98db8cc1b
(main) [HAVE_SYSVIPC]: Reverse test of fork value.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
339 /* Is Emacs still alive? */ |
204 | 340 if (kill (p, 0) < 0) |
341 { | |
342 msgctl (s, IPC_RMID, 0); | |
343 exit (0); | |
344 } | |
345 sleep (10); | |
346 } | |
347 } | |
348 | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
349 /* 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
|
350 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
|
351 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
352 ioproc = fork (); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
353 if (ioproc == 0) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
354 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
355 /* 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
|
356 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
|
357 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
|
358 while (fgets (msgp->mtext, BUFSIZ, stdin)) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
359 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
360 msgp->mtype = 1; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
361 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
|
362 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
363 exit (1); |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
364 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
365 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
366 /* In the process c1, |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
367 listen for messages from clients and pass them to Emacs. */ |
204 | 368 while (1) |
369 { | |
370 if ((fromlen = msgrcv (s, msgp, BUFSIZ - 1, 1, 0)) < 0) | |
371 { | |
9593
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
372 #ifdef EINTR |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
373 if (errno == EINTR) |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
374 continue; |
68882a46b5fc
[SYSV_IPC] (main): Catch SIGHUP as well. Don't
Richard M. Stallman <rms@gnu.org>
parents:
9418
diff
changeset
|
375 #endif |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
376 perror_1 ("msgrcv"); |
470 | 377 exit (1); |
204 | 378 } |
379 else | |
380 { | |
381 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
|
382 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
383 /* 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
|
384 ioproc. */ |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
385 if (msg_st.msg_lspid == ioproc) |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
386 { |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
387 char code[BUFSIZ]; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
388 int inproc; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
389 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
390 /* 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
|
391 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
|
392 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
|
393 msgp->mtype = inproc; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
394 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
|
395 continue; |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
396 } |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
397 |
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
398 /* 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
|
399 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
|
400 so server.el can tell us where to send the reply. */ |
204 | 401 strncpy (string, msgp->mtext, fromlen); |
402 string[fromlen] = 0; /* make sure */ | |
403 /* Newline is part of string.. */ | |
8482
ffbf38ae06d1
[SYSV_IPC] (main): Make a separate process
Richard M. Stallman <rms@gnu.org>
parents:
8410
diff
changeset
|
404 printf ("Client: %d %s", msg_st.msg_lspid, string); |
204 | 405 fflush (stdout); |
406 } | |
407 } | |
408 } | |
409 | |
410 #endif /* HAVE_SYSVIPC */ | |
411 | |
412 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */ | |
12415
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
413 |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
414 /* 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
|
415 |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
416 perror_1 (string) |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
417 char *string; |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
418 { |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
419 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
|
420 if (copy == 0) |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
421 fatal_error ("Virtual memory exhausted"); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
422 |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
423 strcpy (copy, "Error: "); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
424 strcat (copy, string); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
425 perror (copy); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
426 } |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
427 |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
428 fatal_error (string) |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
429 char *string; |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
430 { |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
431 fprintf (stderr, "%s", "Error: "); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
432 fprintf (stderr, string); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
433 exit (1); |
c07a5e8f40ae
Make all error messages start with `Error: '.
Richard M. Stallman <rms@gnu.org>
parents:
11368
diff
changeset
|
434 } |