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)
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. */
28 #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_SYSVIPC)
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>
65 struct sockaddr_un server
, fromunix
;
67 char *str
, string
[BUFSIZ
], code
[BUFSIZ
];
76 openfiles
= (FILE **) malloc (openfiles_size
* sizeof (FILE *));
81 * Open up an AF_UNIX socket in this person's home directory
84 if ((s
= socket (AF_UNIX
, SOCK_STREAM
, 0)) < 0)
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
)
100 if ((homedir
= getenv ("HOME")) == NULL
)
102 fprintf (stderr
,"No home directory\n");
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
);
111 if (bind (s
, (struct sockaddr
*) &server
, strlen (server
.sun_path
) + 2) < 0)
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)
127 /* Disable sigpipes in case luser kills client... */
128 signal (SIGPIPE
, SIG_IGN
);
131 int rmask
= (1 << s
) + 1;
132 if (select (s
+ 1, &rmask
, 0, 0, 0) < 0)
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 */
141 if (errno
== EMFILE
|| errno
== ENFILE
)
142 printf ("Too many clients.\n");
148 if (infd
>= openfiles_size
)
151 openfiles
= (FILE **) realloc (openfiles
,
152 openfiles_size
* sizeof (FILE *));
157 infile
= fdopen (infd
, "r+"); /* open stream */
160 printf ("Too many clients.\n");
161 write (infd
, "Too many clients.\n", 18);
162 close (infd
); /* Prevent descriptor leak.. */
165 str
= fgets (string
, BUFSIZ
, infile
);
169 close (infd
); /* Prevent descriptor leak.. */
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)
181 printf ("%s", string
);
187 else if (rmask
& 1) /* emacs sends codeword, fd, and string message */
189 /* Read command codeword and fd */
191 scanf ("%s %d%*c", code
, &infd
);
192 if (ferror (stdin
) || feof (stdin
))
194 fprintf (stderr
, "server: error reading from standard input\n");
198 /* Transfer text from Emacs to the client, up to a newline. */
199 infile
= openfiles
[infd
];
202 if (fgets (string
, BUFSIZ
, stdin
) == 0)
204 fprintf (infile
, "%s", string
);
205 if (string
[strlen (string
) - 1] == '\n')
210 /* If command is close, close connection to client. */
211 if (strncmp (code
, "Close:", 6) == 0)
222 #else /* This is the SYSV IPC section */
224 #include <sys/types.h>
225 #include <sys/signal.h>
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. */
246 int s
, infd
, fromlen
;
248 struct msgbuf
* msgp
=
249 (struct msgbuf
*) malloc (sizeof *msgp
+ BUFSIZ
);
250 struct msqid_ds msg_st
;
252 char *homedir
, *getenv ();
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");
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
);
275 /* Fork so we can close connection even if parent dies */
279 msgctl (s
, IPC_RMID
, 0);
283 signal (SIGTERM
, msgcatch
);
284 signal (SIGINT
, msgcatch
);
285 /* If parent goes away, remove message box and exit */
289 setpgrp (); /* Gnu kills process group on exit */
294 msgctl (s
, IPC_RMID
, 0);
303 if ((fromlen
= msgrcv (s
, msgp
, BUFSIZ
- 1, 1, 0)) < 0)
310 msgctl (s
, IPC_STAT
, &msg_st
);
311 strncpy (string
, msgp
->mtext
, fromlen
);
312 string
[fromlen
] = 0; /* make sure */
313 /* Newline is part of string.. */
314 printf ("Client: %d %s", s
, string
);
316 /* Now, wait for a wakeup */
317 fgets (msgp
->mtext
, BUFSIZ
, stdin
);
318 msgp
->mtext
[strlen (msgp
->mtext
)-1] = 0;
319 /* strcpy (msgp->mtext, "done");*/
320 msgp
->mtype
= msg_st
.msg_lspid
;
321 msgsnd (s
, msgp
, strlen (msgp
->mtext
)+1, 0);
326 #endif /* HAVE_SYSVIPC */
328 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */