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