1 /* Communication subprocess for GNU Emacs acting as server.
2 Copyright (C) 1986, 1987, 1992, 1994, 1999 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>
33 #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
39 fprintf (stderr
, "Sorry, the Emacs server is supported only on systems\n");
40 fprintf (stderr
, "with Berkeley sockets or System V IPC.\n");
44 #else /* HAVE_SOCKETS or HAVE_SYSVIPC */
49 #if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM)
50 /* BSD code is very different from SYSV IPC code */
52 #include <sys/types.h>
54 #include <sys/socket.h>
68 /* Copied from src/process.c */
70 /* We could get this from param.h, but better not to depend on finding that.
71 And better not to risk that it might define other symbols used in this
74 #define MAXDESC FD_SETSIZE
78 #define SELECT_TYPE fd_set
81 #define SELECT_TYPE int
83 /* Define the macros to access a single-int bitmap of descriptors. */
84 #define FD_SET(n, p) (*(p) |= (1 << (n)))
85 #define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
86 #define FD_ISSET(n, p) (*(p) & (1 << (n)))
87 #define FD_ZERO(p) (*(p) = 0)
88 #endif /* no FD_SET */
90 /* This is the file name of the socket that we made. */
94 /* Name of this program. */
98 /* Handle fatal signals. */
100 /* This is the handler. */
106 signal (sig
, SIG_DFL
);
107 unlink (socket_name
);
108 kill (getpid (), sig
);
111 /* Set up to handle all the signals. */
116 signal (SIGHUP
, delete_socket
);
117 signal (SIGINT
, delete_socket
);
118 signal (SIGQUIT
, delete_socket
);
119 signal (SIGILL
, delete_socket
);
120 signal (SIGTRAP
, delete_socket
);
122 signal (SIGABRT
, delete_socket
);
125 signal (SIGHWE
, delete_socket
);
128 signal (SIGPRE
, delete_socket
);
131 signal (SIGORE
, delete_socket
);
134 signal (SIGUME
, delete_socket
);
137 signal (SIGDLK
, delete_socket
);
140 signal (SIGCPULIM
, delete_socket
);
143 /* This is missing on some systems - OS/2, for example. */
144 signal (SIGIOT
, delete_socket
);
147 signal (SIGEMT
, delete_socket
);
149 signal (SIGFPE
, delete_socket
);
151 signal (SIGBUS
, delete_socket
);
153 signal (SIGSEGV
, delete_socket
);
155 signal (SIGSYS
, delete_socket
);
157 signal (SIGTERM
, delete_socket
);
159 signal (SIGXCPU
, delete_socket
);
162 signal (SIGXFSZ
, delete_socket
);
166 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
167 signal (SIGXCPU
, delete_socket
);
169 signal (SIGIOINT
, delete_socket
);
171 signal (SIGGRANT
, delete_socket
);
172 signal (SIGRETRACT
, delete_socket
);
173 signal (SIGSOUND
, delete_socket
);
174 signal (SIGMSG
, delete_socket
);
178 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
183 fprintf (stderr
, "%s: ", progname
);
184 fprintf (stderr
, s1
, s2
);
185 fprintf (stderr
, "\n");
188 /* Print error message and exit. */
197 /* Like malloc but get fatal error if memory is exhausted. */
203 long *result
= (long *) malloc (size
);
205 fatal ("virtual memory exhausted", 0);
215 int system_name_length
;
218 SOCKLEN_TYPE fromlen
;
222 struct sockaddr_un server
, fromunix
;
224 char *str
, string
[BUFSIZ
], code
[BUFSIZ
];
237 openfiles
= (FILE **) malloc (openfiles_size
* sizeof (FILE *));
242 * Open up an AF_UNIX socket in this person's home directory
245 if ((s
= socket (AF_UNIX
, SOCK_STREAM
, 0)) < 0)
250 server
.sun_family
= AF_UNIX
;
252 system_name_length
= 32;
255 system_name
= (char *) xmalloc (system_name_length
+ 1);
257 /* system_name must be null-terminated string. */
258 system_name
[system_name_length
] = '\0';
260 if (gethostname (system_name
, system_name_length
) == 0)
264 system_name_length
*= 2;
267 #ifndef SERVER_HOME_DIR
268 sprintf (server
.sun_path
, "/tmp/esrv%d-%s", geteuid (), system_name
);
270 if (unlink (server
.sun_path
) == -1 && errno
!= ENOENT
)
276 if ((homedir
= getenv ("HOME")) == NULL
)
277 fatal_error ("No home directory\n");
279 strcpy (server
.sun_path
, homedir
);
280 strcat (server
.sun_path
, "/.emacs-server-");
281 strcat (server
.sun_path
, system_name
);
282 /* Delete anyone else's old server. */
283 unlink (server
.sun_path
);
286 /* Save the socket name so we can delete it. */
287 socket_name
= (char *) xmalloc (strlen (server
.sun_path
) + 1);
288 strcpy (socket_name
, server
.sun_path
);
292 if (bind (s
, (struct sockaddr
*) &server
, strlen (server
.sun_path
) + 2) < 0)
297 /* Only this user can send commands to this Emacs. */
298 if (stat (server
.sun_path
, &statbuf
) < 0)
304 chmod (server
.sun_path
, statbuf
.st_mode
& 0600);
306 * Now, just wait for everything to come in..
308 if (listen (s
, 5) < 0)
314 /* Disable sigpipes in case luser kills client... */
315 signal (SIGPIPE
, SIG_IGN
);
322 if (select (s
+ 1, &rmask
, 0, 0, 0) < 0)
324 if (FD_ISSET (s
, &rmask
)) /* client sends list of filenames */
326 fromlen
= sizeof (fromunix
);
327 fromunix
.sun_family
= AF_UNIX
;
328 infd
= accept (s
, (struct sockaddr
*) &fromunix
, &fromlen
);
331 if (errno
== EMFILE
|| errno
== ENFILE
)
332 fprintf (stderr
, "Error: too many clients.\n");
338 if (infd
>= openfiles_size
)
341 openfiles
= (FILE **) realloc (openfiles
,
342 openfiles_size
* sizeof (FILE *));
347 infile
= fdopen (infd
, "r+"); /* open stream */
350 fprintf (stderr
, "Error: too many clients.\n");
351 write (infd
, "Too many clients.\n", 18);
352 close (infd
); /* Prevent descriptor leak.. */
355 str
= fgets (string
, BUFSIZ
, infile
);
359 close (infd
); /* Prevent descriptor leak.. */
362 openfiles
[infd
] = infile
;
363 printf ("Client: %d %s", infd
, string
);
364 /* If what we read did not end in a newline,
365 it means there is more. Keep reading from the socket
366 and outputting to Emacs, until we get the newline. */
367 while (string
[strlen (string
) - 1] != '\n')
369 if (fgets (string
, BUFSIZ
, infile
) == 0)
371 printf ("%s", string
);
377 else if (FD_ISSET (0, &rmask
)) /* emacs sends codeword, fd, and string message */
379 /* Read command codeword and fd */
381 scanf ("%s %d%*c", code
, &infd
);
382 if (ferror (stdin
) || feof (stdin
))
383 fatal_error ("server: error reading from standard input\n");
385 /* Transfer text from Emacs to the client, up to a newline. */
386 infile
= openfiles
[infd
];
390 if (fgets (string
, BUFSIZ
, stdin
) == 0)
392 fprintf (infile
, "%s", string
);
393 if (string
[strlen (string
) - 1] == '\n')
398 /* If command is close, close connection to client. */
399 if (strncmp (code
, "Close:", 6) == 0)
410 #else /* This is the SYSV IPC section */
412 #include <sys/types.h>
417 #include <sys/utsname.h>
419 struct utsname system_name
;
434 /* "THIS has to be fixed. Remember, stderr may not exist...-rlk."
435 Incorrect. This program runs as an inferior of Emacs.
436 Its stderr always exists--rms. */
442 int s
, infd
, fromlen
, ioproc
;
444 struct msgbuf
* msgp
=
445 (struct msgbuf
*) malloc (sizeof *msgp
+ BUFSIZ
);
446 struct msqid_ds msg_st
;
448 char *homedir
, *getenv ();
453 * Create a message queue using ~/.emacs-server as the path for ftok
455 if ((homedir
= getenv ("HOME")) == NULL
)
456 fatal_error ("No home directory\n");
458 strcpy (string
, homedir
);
459 #ifndef HAVE_LONG_FILE_NAMES
460 /* If file names are short, we can't fit the host name. */
461 strcat (string
, "/.emacs-server");
463 strcat (string
, "/.emacs-server-");
464 uname (&system_name
);
465 strcat (string
, system_name
.nodename
);
467 creat (string
, 0600);
468 key
= ftok (string
, 1); /* unlikely to be anyone else using it */
469 s
= msgget (key
, 0600 | IPC_CREAT
);
476 /* Fork so we can close connection even if parent dies */
480 msgctl (s
, IPC_RMID
, 0);
485 signal (SIGTERM
, msgcatch
);
486 signal (SIGINT
, msgcatch
);
487 signal (SIGHUP
, msgcatch
);
490 /* This is executed in the original process that did the fork above. */
491 /* Get pid of Emacs itself. */
493 setpgrp (); /* Gnu kills process group on exit */
496 /* Is Emacs still alive? */
499 msgctl (s
, IPC_RMID
, 0);
506 /* This is executed in the child made by forking above.
507 Call it c1. Make another process, ioproc. */
512 /* In process ioproc, wait for text from Emacs,
513 and send it to the process c1.
514 This way, c1 only has to wait for one source of input. */
515 while (fgets (msgp
->mtext
, BUFSIZ
, stdin
))
518 msgsnd (s
, msgp
, strlen (msgp
->mtext
) + 1, 0);
523 /* In the process c1,
524 listen for messages from clients and pass them to Emacs. */
527 if ((fromlen
= msgrcv (s
, msgp
, BUFSIZ
- 1, 1, 0)) < 0)
538 msgctl (s
, IPC_STAT
, &msg_st
);
540 /* Distinguish whether the message came from a client, or from
542 if (msg_st
.msg_lspid
== ioproc
)
547 /* Message from ioproc: tell a client we are done. */
548 msgp
->mtext
[strlen (msgp
->mtext
)-1] = 0;
549 sscanf (msgp
->mtext
, "%s %d", code
, &inproc
);
550 msgp
->mtype
= inproc
;
551 msgsnd (s
, msgp
, strlen (msgp
->mtext
) + 1, 0);
555 /* This is a request from a client: copy to stdout
556 so that Emacs will get it. Include msg_lspid
557 so server.el can tell us where to send the reply. */
558 strncpy (string
, msgp
->mtext
, fromlen
);
559 string
[fromlen
] = 0; /* make sure */
560 /* Newline is part of string.. */
561 printf ("Client: %d %s", msg_st
.msg_lspid
, string
);
567 #endif /* HAVE_SYSVIPC */
570 /* This is like perror but puts `Error: ' at the beginning. */
576 char *copy
= (char *) malloc (strlen (string
) + 8);
578 fatal_error ("Virtual memory exhausted");
580 strcpy (copy
, "Error: ");
581 strcat (copy
, string
);
589 fprintf (stderr
, "%s", "Error: ");
590 fprintf (stderr
, string
);
593 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */