1 /* Communication subprocess for GNU Emacs acting as server.
2 Copyright (C) 1986, 1987, 1992, 1994 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)
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, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
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. */
29 #include <../src/config.h>
36 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
41 fprintf (stderr
, "Sorry, the Emacs server is supported only on systems\n");
42 fprintf (stderr
, "with Berkeley sockets or System V IPC.\n");
46 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */
48 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM)
49 /* BSD code is very different from SYSV IPC code */
51 #include <sys/types.h>
53 #include <sys/socket.h>
54 #include <sys/signal.h>
62 /* Copied from src/process.c */
64 /* We could get this from param.h, but better not to depend on finding that.
65 And better not to risk that it might define other symbols used in this
68 #define MAXDESC FD_SETSIZE
72 #define SELECT_TYPE fd_set
75 #define SELECT_TYPE int
77 /* Define the macros to access a single-int bitmap of descriptors. */
78 #define FD_SET(n, p) (*(p) |= (1 << (n)))
79 #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
80 #define FD_ISSET(n, p) (*(p) & (1 << (n)))
81 #define FD_ZERO(p) (*(p) = 0)
82 #endif /* no FD_SET */
88 struct sockaddr_un server
, fromunix
;
90 char *str
, string
[BUFSIZ
], code
[BUFSIZ
];
101 openfiles
= (FILE **) malloc (openfiles_size
* sizeof (FILE *));
106 * Open up an AF_UNIX socket in this person's home directory
109 if ((s
= socket (AF_UNIX
, SOCK_STREAM
, 0)) < 0)
114 server
.sun_family
= AF_UNIX
;
115 #ifndef SERVER_HOME_DIR
116 gethostname (system_name
, sizeof (system_name
));
117 sprintf (server
.sun_path
, "/tmp/esrv%d-%s", geteuid (), system_name
);
119 if (unlink (server
.sun_path
) == -1 && errno
!= ENOENT
)
125 if ((homedir
= getenv ("HOME")) == NULL
)
126 fatal_error ("No home directory\n");
128 strcpy (server
.sun_path
, homedir
);
129 strcat (server
.sun_path
, "/.emacs-server-");
130 gethostname (system_name
, sizeof (system_name
));
131 strcat (server
.sun_path
, system_name
);
132 /* Delete anyone else's old server. */
133 unlink (server
.sun_path
);
136 if (bind (s
, (struct sockaddr
*) &server
, strlen (server
.sun_path
) + 2) < 0)
141 /* Only this user can send commands to this Emacs. */
142 if (stat (server
.sun_path
, &statbuf
) < 0)
148 chmod (server
.sun_path
, statbuf
.st_mode
& 0600);
150 * Now, just wait for everything to come in..
152 if (listen (s
, 5) < 0)
158 /* Disable sigpipes in case luser kills client... */
159 signal (SIGPIPE
, SIG_IGN
);
166 if (select (s
+ 1, &rmask
, 0, 0, 0) < 0)
168 if (FD_ISSET (s
, &rmask
)) /* client sends list of filenames */
170 fromlen
= sizeof (fromunix
);
171 fromunix
.sun_family
= AF_UNIX
;
172 infd
= accept (s
, (struct sockaddr
*) &fromunix
, &fromlen
);
175 if (errno
== EMFILE
|| errno
== ENFILE
)
176 fprintf (stderr
, "Error: too many clients.\n");
182 if (infd
>= openfiles_size
)
185 openfiles
= (FILE **) realloc (openfiles
,
186 openfiles_size
* sizeof (FILE *));
191 infile
= fdopen (infd
, "r+"); /* open stream */
194 fprintf (stderr
, "Error: too many clients.\n");
195 write (infd
, "Too many clients.\n", 18);
196 close (infd
); /* Prevent descriptor leak.. */
199 str
= fgets (string
, BUFSIZ
, infile
);
203 close (infd
); /* Prevent descriptor leak.. */
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')
213 if (fgets (string
, BUFSIZ
, infile
) == 0)
215 printf ("%s", string
);
221 else if (FD_ISSET (0, &rmask
)) /* emacs sends codeword, fd, and string message */
223 /* Read command codeword and fd */
225 scanf ("%s %d%*c", code
, &infd
);
226 if (ferror (stdin
) || feof (stdin
))
227 fatal_error ("server: error reading from standard input\n");
229 /* Transfer text from Emacs to the client, up to a newline. */
230 infile
= openfiles
[infd
];
233 if (fgets (string
, BUFSIZ
, stdin
) == 0)
235 fprintf (infile
, "%s", string
);
236 if (string
[strlen (string
) - 1] == '\n')
241 /* If command is close, close connection to client. */
242 if (strncmp (code
, "Close:", 6) == 0)
253 #else /* This is the SYSV IPC section */
255 #include <sys/types.h>
256 #include <sys/signal.h>
261 #include <sys/utsname.h>
263 struct utsname system_name
;
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. */
285 int s
, infd
, fromlen
, ioproc
;
287 struct msgbuf
* msgp
=
288 (struct msgbuf
*) malloc (sizeof *msgp
+ BUFSIZ
);
289 struct msqid_ds msg_st
;
291 char *homedir
, *getenv ();
296 * Create a message queue using ~/.emacs-server as the path for ftok
298 if ((homedir
= getenv ("HOME")) == NULL
)
299 fatal_error ("No home directory\n");
301 strcpy (string
, homedir
);
302 #ifndef HAVE_LONG_FILE_NAMES
303 /* If file names are short, we can't fit the host name. */
304 strcat (string
, "/.emacs-server");
306 strcat (string
, "/.emacs-server-");
307 uname (&system_name
);
308 strcat (string
, system_name
.nodename
);
310 creat (string
, 0600);
311 key
= ftok (string
, 1); /* unlikely to be anyone else using it */
312 s
= msgget (key
, 0600 | IPC_CREAT
);
319 /* Fork so we can close connection even if parent dies */
323 msgctl (s
, IPC_RMID
, 0);
328 signal (SIGTERM
, msgcatch
);
329 signal (SIGINT
, msgcatch
);
330 signal (SIGHUP
, msgcatch
);
333 /* This is executed in the original process that did the fork above. */
334 /* Get pid of Emacs itself. */
336 setpgrp (); /* Gnu kills process group on exit */
339 /* Is Emacs still alive? */
342 msgctl (s
, IPC_RMID
, 0);
349 /* This is executed in the child made by forking above.
350 Call it c1. Make another process, ioproc. */
355 /* In process ioproc, wait for text from Emacs,
356 and send it to the process c1.
357 This way, c1 only has to wait for one source of input. */
358 while (fgets (msgp
->mtext
, BUFSIZ
, stdin
))
361 msgsnd (s
, msgp
, strlen (msgp
->mtext
) + 1, 0);
366 /* In the process c1,
367 listen for messages from clients and pass them to Emacs. */
370 if ((fromlen
= msgrcv (s
, msgp
, BUFSIZ
- 1, 1, 0)) < 0)
381 msgctl (s
, IPC_STAT
, &msg_st
);
383 /* Distinguish whether the message came from a client, or from
385 if (msg_st
.msg_lspid
== ioproc
)
390 /* Message from ioproc: tell a client we are done. */
391 msgp
->mtext
[strlen (msgp
->mtext
)-1] = 0;
392 sscanf (msgp
->mtext
, "%s %d", code
, &inproc
);
393 msgp
->mtype
= inproc
;
394 msgsnd (s
, msgp
, strlen (msgp
->mtext
) + 1, 0);
398 /* This is a request from a client: copy to stdout
399 so that Emacs will get it. Include msg_lspid
400 so server.el can tell us where to send the reply. */
401 strncpy (string
, msgp
->mtext
, fromlen
);
402 string
[fromlen
] = 0; /* make sure */
403 /* Newline is part of string.. */
404 printf ("Client: %d %s", msg_st
.msg_lspid
, string
);
410 #endif /* HAVE_SYSVIPC */
412 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */
414 /* This is like perror but puts `Error: ' at the beginning. */
419 char *copy
= (char *) malloc (strlen (string
) + 8);
421 fatal_error ("Virtual memory exhausted");
423 strcpy (copy
, "Error: ");
424 strcat (copy
, string
);
431 fprintf (stderr
, "%s", "Error: ");
432 fprintf (stderr
, string
);