Drop the trailing slash.
[emacs.git] / lib-src / emacsserver.c
blobcf7a6dd78d55e6ca3c0e1cc264f8c49767f92e4b
1 /* Communication subprocess for GNU Emacs acting as server.
2 Copyright (C) 1986, 1987, 1992 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
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.
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. */
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. */
27 #define NO_SHORTNAMES
28 #include <../src/config.h>
29 #undef read
30 #undef write
31 #undef open
32 #undef close
33 #undef signal
36 #if !defined(HAVE_SOCKETS) && !defined(HAVE_SYSVIPC)
37 #include <stdio.h>
39 main ()
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);
46 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */
48 #if ! defined (HAVE_SYSVIPC)
49 /* BSD code is very different from SYSV IPC code */
51 #include <sys/types.h>
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>
59 extern int errno;
61 main ()
63 char system_name[32];
64 int s, infd, fromlen;
65 struct sockaddr_un server, fromunix;
66 char *homedir;
67 char *str, string[BUFSIZ], code[BUFSIZ];
68 FILE *infile;
69 FILE **openfiles;
70 int openfiles_size;
72 int geteuid ();
73 char *getenv ();
75 openfiles_size = 20;
76 openfiles = (FILE **) malloc (openfiles_size * sizeof (FILE *));
77 if (openfiles == 0)
78 abort ();
80 /*
81 * Open up an AF_UNIX socket in this person's home directory
84 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
86 perror ("socket");
87 exit (1);
89 server.sun_family = AF_UNIX;
90 #ifndef SERVER_HOME_DIR
91 gethostname (system_name, sizeof (system_name));
92 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name);
94 if (unlink (server.sun_path) == -1 && errno != ENOENT)
96 perror ("unlink");
97 exit (1);
99 #else
100 if ((homedir = getenv ("HOME")) == NULL)
102 fprintf (stderr,"No home directory\n");
103 exit (1);
105 strcpy (server.sun_path, homedir);
106 strcat (server.sun_path, "/.emacs_server");
107 /* Delete anyone else's old server. */
108 unlink (server.sun_path);
109 #endif
111 if (bind (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) < 0)
113 perror ("bind");
114 exit (1);
116 /* Only this user can send commands to this Emacs. */
117 chmod (server.sun_path, 0600);
119 * Now, just wait for everything to come in..
121 if (listen (s, 5) < 0)
123 perror ("listen");
124 exit (1);
127 /* Disable sigpipes in case luser kills client... */
128 signal (SIGPIPE, SIG_IGN);
129 for (;;)
131 int rmask = (1 << s) + 1;
132 if (select (s + 1, &rmask, 0, 0, 0) < 0)
133 perror ("select");
134 if (rmask & (1 << s)) /* client sends list of filenames */
136 fromlen = sizeof (fromunix);
137 fromunix.sun_family = AF_UNIX;
138 infd = accept (s, (struct sockaddr *) &fromunix, &fromlen); /* open socket fd */
139 if (infd < 0)
141 if (errno == EMFILE || errno == ENFILE)
142 printf ("Too many clients.\n");
143 else
144 perror ("accept");
145 continue;
148 if (infd >= openfiles_size)
150 openfiles_size *= 2;
151 openfiles = (FILE **) realloc (openfiles,
152 openfiles_size * sizeof (FILE *));
153 if (openfiles == 0)
154 abort ();
157 infile = fdopen (infd, "r+"); /* open stream */
158 if (infile == NULL)
160 printf ("Too many clients.\n");
161 write (infd, "Too many clients.\n", 18);
162 close (infd); /* Prevent descriptor leak.. */
163 continue;
165 str = fgets (string, BUFSIZ, infile);
166 if (str == NULL)
168 perror ("fgets");
169 close (infd); /* Prevent descriptor leak.. */
170 continue;
172 openfiles[infd] = infile;
173 printf ("Client: %d %s", infd, string);
174 /* If what we read did not end in a newline,
175 it means there is more. Keep reading from the socket
176 and outputting to Emacs, until we get the newline. */
177 while (string[strlen (string) - 1] != '\n')
179 if (fgets (string, BUFSIZ, infile) == 0)
180 break;
181 printf ("%s", string);
183 fflush (stdout);
184 fflush (infile);
185 continue;
187 else if (rmask & 1) /* emacs sends codeword, fd, and string message */
189 /* Read command codeword and fd */
190 clearerr (stdin);
191 scanf ("%s %d%*c", code, &infd);
192 if (ferror (stdin) || feof (stdin))
194 fprintf (stderr, "server: error reading from standard input\n");
195 exit (1);
198 /* Transfer text from Emacs to the client, up to a newline. */
199 infile = openfiles[infd];
200 while (1)
202 if (fgets (string, BUFSIZ, stdin) == 0)
203 break;
204 fprintf (infile, "%s", string);
205 if (string[strlen (string) - 1] == '\n')
206 break;
208 fflush (infile);
210 /* If command is close, close connection to client. */
211 if (strncmp (code, "Close:", 6) == 0)
212 if (infd > 2)
214 fclose (infile);
215 close (infd);
217 continue;
222 #else /* This is the SYSV IPC section */
224 #include <sys/types.h>
225 #include <sys/signal.h>
226 #include <sys/ipc.h>
227 #include <sys/msg.h>
228 #include <setjmp.h>
230 jmp_buf msgenv;
232 SIGTYPE
233 msgcatch ()
235 longjmp (msgenv, 1);
239 /* "THIS has to be fixed. Remember, stderr may not exist...-rlk."
240 Incorrect. This program runs as an inferior of Emacs.
241 Its stderr always exists--rms. */
242 #include <stdio.h>
244 main ()
246 int s, infd, fromlen;
247 key_t key;
248 struct msgbuf * msgp =
249 (struct msgbuf *) malloc (sizeof *msgp + BUFSIZ);
250 struct msqid_ds msg_st;
251 int p;
252 char *homedir, *getenv ();
253 char string[BUFSIZ];
254 FILE *infile;
257 * Create a message queue using ~/.emacs_server as the path for ftok
259 if ((homedir = getenv ("HOME")) == NULL)
261 fprintf (stderr,"No home directory\n");
262 exit (1);
264 strcpy (string, homedir);
265 strcat (string, "/.emacs_server");
266 creat (string, 0600);
267 key = ftok (string, 1); /* unlikely to be anyone else using it */
268 s = msgget (key, 0600 | IPC_CREAT);
269 if (s == -1)
271 perror ("msgget");
272 exit (1);
275 /* Fork so we can close connection even if parent dies */
276 p = fork ();
277 if (setjmp (msgenv))
279 msgctl (s, IPC_RMID, 0);
280 kill (p, SIGKILL);
281 exit (0);
283 signal (SIGTERM, msgcatch);
284 signal (SIGINT, msgcatch);
285 if (p > 0)
287 /* This is executed in the original process that did the fork above. */
288 /* Get pid of Emacs itself. */
289 p = getppid ();
290 setpgrp (); /* Gnu kills process group on exit */
291 while (1)
293 /* Is Emacs still alive? */
294 if (kill (p, 0) < 0)
296 msgctl (s, IPC_RMID, 0);
297 exit (0);
299 sleep (10);
303 /* This is executed in the child made by forking above. */
304 while (1)
306 if ((fromlen = msgrcv (s, msgp, BUFSIZ - 1, 1, 0)) < 0)
308 perror ("msgrcv");
309 exit (1);
311 else
313 msgctl (s, IPC_STAT, &msg_st);
314 strncpy (string, msgp->mtext, fromlen);
315 string[fromlen] = 0; /* make sure */
316 /* Newline is part of string.. */
317 printf ("Client: %d %s", s, string);
318 fflush (stdout);
319 /* Now, wait for a wakeup */
320 fgets (msgp->mtext, BUFSIZ, stdin);
321 msgp->mtext[strlen (msgp->mtext)-1] = 0;
322 /* strcpy (msgp->mtext, "done");*/
323 msgp->mtype = msg_st.msg_lspid;
324 msgsnd (s, msgp, strlen (msgp->mtext)+1, 0);
329 #endif /* HAVE_SYSVIPC */
331 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */