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