1991-03-04 02:59:40 +00:00
|
|
|
|
/* Communication subprocess for GNU Emacs acting as server.
|
Add support for large files. Merge glibc 2.1.2.
* b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
movemail.c, pop.c:
Do not include <stdlib.h>, as <config.h> does this now.
* b2m.c, emacsserver.c, etags.c, profile.c:
Include <config.h> before any system include files.
* emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
test-distrib.c:
(read, write, open, close): Do not undef.
* getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
(const): Do not define if HAVE_CONFIG_H; that's config.h's job.
* getopt.h: Adopt glibc 2.1.2.
1999-10-19 07:17:20 +00:00
|
|
|
|
Copyright (C) 1986, 1987, 1992, 1994, 1999 Free Software Foundation, Inc.
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1992-04-24 08:11:28 +00:00
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
1991-03-04 02:59:40 +00:00
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU Emacs; see the file COPYING. If not, write to
|
1996-01-15 09:18:04 +00:00
|
|
|
|
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The GNU Emacs edit server process is run as a subprocess of Emacs
|
|
|
|
|
under control of the file lisp/server.el.
|
|
|
|
|
This program accepts communication from client (program emacsclient.c)
|
|
|
|
|
and passes their commands (consisting of keyboard characters)
|
|
|
|
|
up to the Emacs which then executes them. */
|
|
|
|
|
|
|
|
|
|
#define NO_SHORTNAMES
|
1993-09-10 06:15:46 +00:00
|
|
|
|
#include <../src/config.h>
|
Add support for large files. Merge glibc 2.1.2.
* b2m.c, emacsclient.c, emacsserver.c, fakemail.c, make-docfile.c,
movemail.c, pop.c:
Do not include <stdlib.h>, as <config.h> does this now.
* b2m.c, emacsserver.c, etags.c, profile.c:
Include <config.h> before any system include files.
* emacsclient.c, emacsserver.c, fakemail.c, movemail.c, pop.c,
test-distrib.c:
(read, write, open, close): Do not undef.
* getopt.c, getopt1.c: Adopt glibc 2.1.2, with the following fix:
(const): Do not define if HAVE_CONFIG_H; that's config.h's job.
* getopt.h: Adopt glibc 2.1.2.
1999-10-19 07:17:20 +00:00
|
|
|
|
#include <signal.h>
|
1993-06-01 08:08:38 +00:00
|
|
|
|
#undef signal
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
1994-12-07 07:38:00 +00:00
|
|
|
|
#if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
|
1991-03-04 02:59:40 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
int
|
1991-03-04 02:59:40 +00:00
|
|
|
|
main ()
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Sorry, the Emacs server is supported only on systems\n");
|
|
|
|
|
fprintf (stderr, "with Berkeley sockets or System V IPC.\n");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* HAVE_SOCKETS or HAVE_SYSVIPC */
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
void perror_1 ();
|
|
|
|
|
void fatal_error ();
|
|
|
|
|
|
1995-04-11 01:44:46 +00:00
|
|
|
|
#if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM)
|
1991-03-04 02:59:40 +00:00
|
|
|
|
/* BSD code is very different from SYSV IPC code */
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1993-07-20 05:16:51 +00:00
|
|
|
|
#include <sys/file.h>
|
1991-03-04 02:59:40 +00:00
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
#include <sys/un.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
1996-01-03 04:23:26 +00:00
|
|
|
|
#include <sys/stat.h>
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-08-30 15:07:30 +00:00
|
|
|
|
#ifndef errno
|
1991-03-04 02:59:40 +00:00
|
|
|
|
extern int errno;
|
1999-08-30 15:07:30 +00:00
|
|
|
|
#endif
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
1994-09-17 00:02:50 +00:00
|
|
|
|
/* Copied from src/process.c */
|
|
|
|
|
#ifdef FD_SET
|
|
|
|
|
/* We could get this from param.h, but better not to depend on finding that.
|
|
|
|
|
And better not to risk that it might define other symbols used in this
|
|
|
|
|
file. */
|
|
|
|
|
#ifdef FD_SETSIZE
|
|
|
|
|
#define MAXDESC FD_SETSIZE
|
|
|
|
|
#else
|
|
|
|
|
#define MAXDESC 64
|
|
|
|
|
#endif
|
|
|
|
|
#define SELECT_TYPE fd_set
|
|
|
|
|
#else /* no FD_SET */
|
|
|
|
|
#define MAXDESC 32
|
|
|
|
|
#define SELECT_TYPE int
|
|
|
|
|
|
|
|
|
|
/* Define the macros to access a single-int bitmap of descriptors. */
|
|
|
|
|
#define FD_SET(n, p) (*(p) |= (1 << (n)))
|
|
|
|
|
#define FD_CLR(n, p) (*(p) &= ~(1 << (n)))
|
|
|
|
|
#define FD_ISSET(n, p) (*(p) & (1 << (n)))
|
|
|
|
|
#define FD_ZERO(p) (*(p) = 0)
|
|
|
|
|
#endif /* no FD_SET */
|
|
|
|
|
|
1996-09-02 05:39:36 +00:00
|
|
|
|
/* This is the file name of the socket that we made. */
|
|
|
|
|
|
|
|
|
|
char *socket_name;
|
|
|
|
|
|
|
|
|
|
/* Name of this program. */
|
|
|
|
|
|
|
|
|
|
char *progname;
|
|
|
|
|
|
|
|
|
|
/* Handle fatal signals. */
|
|
|
|
|
|
|
|
|
|
/* This is the handler. */
|
|
|
|
|
|
|
|
|
|
SIGTYPE
|
|
|
|
|
delete_socket (sig)
|
|
|
|
|
int sig;
|
|
|
|
|
{
|
|
|
|
|
signal (sig, SIG_DFL);
|
|
|
|
|
unlink (socket_name);
|
|
|
|
|
kill (getpid (), sig);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set up to handle all the signals. */
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
void
|
1996-09-02 05:39:36 +00:00
|
|
|
|
handle_signals ()
|
|
|
|
|
{
|
|
|
|
|
signal (SIGHUP, delete_socket);
|
|
|
|
|
signal (SIGINT, delete_socket);
|
|
|
|
|
signal (SIGQUIT, delete_socket);
|
|
|
|
|
signal (SIGILL, delete_socket);
|
|
|
|
|
signal (SIGTRAP, delete_socket);
|
|
|
|
|
#ifdef SIGABRT
|
|
|
|
|
signal (SIGABRT, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGHWE
|
|
|
|
|
signal (SIGHWE, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGPRE
|
|
|
|
|
signal (SIGPRE, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGORE
|
|
|
|
|
signal (SIGORE, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGUME
|
|
|
|
|
signal (SIGUME, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGDLK
|
|
|
|
|
signal (SIGDLK, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGCPULIM
|
|
|
|
|
signal (SIGCPULIM, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGIOT
|
|
|
|
|
/* This is missing on some systems - OS/2, for example. */
|
|
|
|
|
signal (SIGIOT, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGEMT
|
|
|
|
|
signal (SIGEMT, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
signal (SIGFPE, delete_socket);
|
|
|
|
|
#ifdef SIGBUS
|
|
|
|
|
signal (SIGBUS, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
signal (SIGSEGV, delete_socket);
|
|
|
|
|
#ifdef SIGSYS
|
|
|
|
|
signal (SIGSYS, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
signal (SIGTERM, delete_socket);
|
|
|
|
|
#ifdef SIGXCPU
|
|
|
|
|
signal (SIGXCPU, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef SIGXFSZ
|
|
|
|
|
signal (SIGXFSZ, delete_socket);
|
|
|
|
|
#endif /* SIGXFSZ */
|
|
|
|
|
|
|
|
|
|
#ifdef AIX
|
|
|
|
|
/* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
|
|
|
|
|
signal (SIGXCPU, delete_socket);
|
|
|
|
|
#ifndef _I386
|
|
|
|
|
signal (SIGIOINT, delete_socket);
|
|
|
|
|
#endif
|
|
|
|
|
signal (SIGGRANT, delete_socket);
|
|
|
|
|
signal (SIGRETRACT, delete_socket);
|
|
|
|
|
signal (SIGSOUND, delete_socket);
|
|
|
|
|
signal (SIGMSG, delete_socket);
|
|
|
|
|
#endif /* AIX */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print error message. `s1' is printf control string, `s2' is arg for it. */
|
|
|
|
|
void
|
|
|
|
|
error (s1, s2)
|
|
|
|
|
char *s1, *s2;
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "%s: ", progname);
|
|
|
|
|
fprintf (stderr, s1, s2);
|
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Print error message and exit. */
|
|
|
|
|
void
|
|
|
|
|
fatal (s1, s2)
|
|
|
|
|
char *s1, *s2;
|
|
|
|
|
{
|
|
|
|
|
error (s1, s2);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like malloc but get fatal error if memory is exhausted. */
|
|
|
|
|
|
|
|
|
|
long *
|
|
|
|
|
xmalloc (size)
|
|
|
|
|
unsigned int size;
|
|
|
|
|
{
|
|
|
|
|
long *result = (long *) malloc (size);
|
|
|
|
|
if (result == NULL)
|
|
|
|
|
fatal ("virtual memory exhausted", 0);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
1996-07-15 21:26:39 +00:00
|
|
|
|
int
|
1996-09-02 05:39:36 +00:00
|
|
|
|
main (argc, argv)
|
|
|
|
|
int argc;
|
|
|
|
|
char **argv;
|
1991-03-04 02:59:40 +00:00
|
|
|
|
{
|
1999-01-16 21:44:56 +00:00
|
|
|
|
char *system_name;
|
|
|
|
|
int system_name_length;
|
1996-09-07 01:06:09 +00:00
|
|
|
|
int s, infd;
|
1997-08-14 04:16:00 +00:00
|
|
|
|
#ifdef SOCKLEN_TYPE
|
|
|
|
|
SOCKLEN_TYPE fromlen;
|
|
|
|
|
#else
|
1996-09-07 01:06:09 +00:00
|
|
|
|
size_t fromlen;
|
1997-08-14 04:16:00 +00:00
|
|
|
|
#endif
|
1996-09-07 01:06:09 +00:00
|
|
|
|
struct sockaddr_un server, fromunix;
|
2001-01-02 13:52:04 +00:00
|
|
|
|
#ifdef SERVER_HOME_DIR
|
1991-03-04 02:59:40 +00:00
|
|
|
|
char *homedir;
|
2001-01-02 13:52:04 +00:00
|
|
|
|
#endif
|
1991-03-04 02:59:40 +00:00
|
|
|
|
char *str, string[BUFSIZ], code[BUFSIZ];
|
|
|
|
|
FILE *infile;
|
|
|
|
|
FILE **openfiles;
|
|
|
|
|
int openfiles_size;
|
1996-01-03 04:23:26 +00:00
|
|
|
|
struct stat statbuf;
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
1994-06-23 19:26:02 +00:00
|
|
|
|
#ifndef convex
|
1991-03-04 02:59:40 +00:00
|
|
|
|
char *getenv ();
|
1994-06-23 19:26:02 +00:00
|
|
|
|
#endif
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
1996-09-02 05:39:36 +00:00
|
|
|
|
progname = argv[0];
|
|
|
|
|
|
1991-03-04 02:59:40 +00:00
|
|
|
|
openfiles_size = 20;
|
|
|
|
|
openfiles = (FILE **) malloc (openfiles_size * sizeof (FILE *));
|
|
|
|
|
if (openfiles == 0)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open up an AF_UNIX socket in this person's home directory
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("socket");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
server.sun_family = AF_UNIX;
|
1999-01-16 21:44:56 +00:00
|
|
|
|
|
1999-08-14 04:08:25 +00:00
|
|
|
|
system_name_length = 32;
|
1999-01-16 21:44:56 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
system_name = (char *) xmalloc (system_name_length + 1);
|
|
|
|
|
|
|
|
|
|
/* system_name must be null-terminated string. */
|
|
|
|
|
system_name[system_name_length] = '\0';
|
|
|
|
|
|
|
|
|
|
if (gethostname (system_name, system_name_length) == 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
free (system_name);
|
|
|
|
|
system_name_length *= 2;
|
|
|
|
|
}
|
|
|
|
|
|
1999-08-14 04:08:25 +00:00
|
|
|
|
#ifndef SERVER_HOME_DIR
|
1991-12-21 07:03:14 +00:00
|
|
|
|
sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name);
|
|
|
|
|
|
|
|
|
|
if (unlink (server.sun_path) == -1 && errno != ENOENT)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("unlink");
|
1991-12-21 07:03:14 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
if ((homedir = getenv ("HOME")) == NULL)
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fatal_error ("No home directory\n");
|
|
|
|
|
|
1991-03-04 02:59:40 +00:00
|
|
|
|
strcpy (server.sun_path, homedir);
|
1994-12-07 07:38:00 +00:00
|
|
|
|
strcat (server.sun_path, "/.emacs-server-");
|
|
|
|
|
strcat (server.sun_path, system_name);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
/* Delete anyone else's old server. */
|
|
|
|
|
unlink (server.sun_path);
|
1991-12-21 07:03:14 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1996-09-02 05:39:36 +00:00
|
|
|
|
/* Save the socket name so we can delete it. */
|
|
|
|
|
socket_name = (char *) xmalloc (strlen (server.sun_path) + 1);
|
|
|
|
|
strcpy (socket_name, server.sun_path);
|
|
|
|
|
|
|
|
|
|
handle_signals ();
|
|
|
|
|
|
1993-06-09 12:41:31 +00:00
|
|
|
|
if (bind (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2) < 0)
|
1991-03-04 02:59:40 +00:00
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("bind");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
/* Only this user can send commands to this Emacs. */
|
1996-01-03 04:23:26 +00:00
|
|
|
|
if (stat (server.sun_path, &statbuf) < 0)
|
|
|
|
|
{
|
|
|
|
|
perror_1 ("bind");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
chmod (server.sun_path, statbuf.st_mode & 0600);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Now, just wait for everything to come in..
|
|
|
|
|
*/
|
|
|
|
|
if (listen (s, 5) < 0)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("listen");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Disable sigpipes in case luser kills client... */
|
|
|
|
|
signal (SIGPIPE, SIG_IGN);
|
|
|
|
|
for (;;)
|
|
|
|
|
{
|
1994-09-17 00:02:50 +00:00
|
|
|
|
SELECT_TYPE rmask;
|
1994-10-10 04:55:59 +00:00
|
|
|
|
FD_ZERO (&rmask);
|
|
|
|
|
FD_SET (0, &rmask);
|
|
|
|
|
FD_SET (s, &rmask);
|
1994-09-17 00:02:50 +00:00
|
|
|
|
if (select (s + 1, &rmask, 0, 0, 0) < 0)
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("select");
|
1994-10-10 04:55:59 +00:00
|
|
|
|
if (FD_ISSET (s, &rmask)) /* client sends list of filenames */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
{
|
|
|
|
|
fromlen = sizeof (fromunix);
|
|
|
|
|
fromunix.sun_family = AF_UNIX;
|
1994-09-17 00:02:50 +00:00
|
|
|
|
infd = accept (s, (struct sockaddr *) &fromunix, &fromlen);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
if (infd < 0)
|
|
|
|
|
{
|
|
|
|
|
if (errno == EMFILE || errno == ENFILE)
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fprintf (stderr, "Error: too many clients.\n");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
else
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("accept");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (infd >= openfiles_size)
|
|
|
|
|
{
|
|
|
|
|
openfiles_size *= 2;
|
|
|
|
|
openfiles = (FILE **) realloc (openfiles,
|
|
|
|
|
openfiles_size * sizeof (FILE *));
|
|
|
|
|
if (openfiles == 0)
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
infile = fdopen (infd, "r+"); /* open stream */
|
|
|
|
|
if (infile == NULL)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fprintf (stderr, "Error: too many clients.\n");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
write (infd, "Too many clients.\n", 18);
|
|
|
|
|
close (infd); /* Prevent descriptor leak.. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
str = fgets (string, BUFSIZ, infile);
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("fgets");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
close (infd); /* Prevent descriptor leak.. */
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
openfiles[infd] = infile;
|
|
|
|
|
printf ("Client: %d %s", infd, string);
|
|
|
|
|
/* If what we read did not end in a newline,
|
|
|
|
|
it means there is more. Keep reading from the socket
|
|
|
|
|
and outputting to Emacs, until we get the newline. */
|
|
|
|
|
while (string[strlen (string) - 1] != '\n')
|
|
|
|
|
{
|
|
|
|
|
if (fgets (string, BUFSIZ, infile) == 0)
|
|
|
|
|
break;
|
|
|
|
|
printf ("%s", string);
|
|
|
|
|
}
|
|
|
|
|
fflush (stdout);
|
|
|
|
|
fflush (infile);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
1994-10-10 04:55:59 +00:00
|
|
|
|
else if (FD_ISSET (0, &rmask)) /* emacs sends codeword, fd, and string message */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
{
|
|
|
|
|
/* Read command codeword and fd */
|
|
|
|
|
clearerr (stdin);
|
|
|
|
|
scanf ("%s %d%*c", code, &infd);
|
|
|
|
|
if (ferror (stdin) || feof (stdin))
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fatal_error ("server: error reading from standard input\n");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
|
|
|
|
/* Transfer text from Emacs to the client, up to a newline. */
|
|
|
|
|
infile = openfiles[infd];
|
1996-07-03 02:05:29 +00:00
|
|
|
|
rewind (infile);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
if (fgets (string, BUFSIZ, stdin) == 0)
|
|
|
|
|
break;
|
|
|
|
|
fprintf (infile, "%s", string);
|
|
|
|
|
if (string[strlen (string) - 1] == '\n')
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
fflush (infile);
|
|
|
|
|
|
|
|
|
|
/* If command is close, close connection to client. */
|
|
|
|
|
if (strncmp (code, "Close:", 6) == 0)
|
|
|
|
|
if (infd > 2)
|
|
|
|
|
{
|
|
|
|
|
fclose (infile);
|
|
|
|
|
close (infd);
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* This is the SYSV IPC section */
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/ipc.h>
|
|
|
|
|
#include <sys/msg.h>
|
|
|
|
|
#include <setjmp.h>
|
1994-10-18 11:23:18 +00:00
|
|
|
|
#include <errno.h>
|
1994-12-07 07:38:00 +00:00
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
|
|
|
|
|
struct utsname system_name;
|
1994-10-18 11:23:18 +00:00
|
|
|
|
|
|
|
|
|
#ifndef errno
|
|
|
|
|
extern int errno;
|
|
|
|
|
#endif
|
1991-03-04 02:59:40 +00:00
|
|
|
|
|
|
|
|
|
jmp_buf msgenv;
|
|
|
|
|
|
1992-04-24 08:11:28 +00:00
|
|
|
|
SIGTYPE
|
1991-03-04 02:59:40 +00:00
|
|
|
|
msgcatch ()
|
|
|
|
|
{
|
|
|
|
|
longjmp (msgenv, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* "THIS has to be fixed. Remember, stderr may not exist...-rlk."
|
|
|
|
|
Incorrect. This program runs as an inferior of Emacs.
|
|
|
|
|
Its stderr always exists--rms. */
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
int
|
1991-03-04 02:59:40 +00:00
|
|
|
|
main ()
|
|
|
|
|
{
|
1994-08-08 07:08:17 +00:00
|
|
|
|
int s, infd, fromlen, ioproc;
|
1991-03-04 02:59:40 +00:00
|
|
|
|
key_t key;
|
|
|
|
|
struct msgbuf * msgp =
|
|
|
|
|
(struct msgbuf *) malloc (sizeof *msgp + BUFSIZ);
|
|
|
|
|
struct msqid_ds msg_st;
|
|
|
|
|
int p;
|
|
|
|
|
char *homedir, *getenv ();
|
|
|
|
|
char string[BUFSIZ];
|
|
|
|
|
FILE *infile;
|
|
|
|
|
|
|
|
|
|
/*
|
1994-12-07 07:38:00 +00:00
|
|
|
|
* Create a message queue using ~/.emacs-server as the path for ftok
|
1991-03-04 02:59:40 +00:00
|
|
|
|
*/
|
|
|
|
|
if ((homedir = getenv ("HOME")) == NULL)
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fatal_error ("No home directory\n");
|
|
|
|
|
|
1991-03-04 02:59:40 +00:00
|
|
|
|
strcpy (string, homedir);
|
1994-12-07 07:38:00 +00:00
|
|
|
|
#ifndef HAVE_LONG_FILE_NAMES
|
|
|
|
|
/* If file names are short, we can't fit the host name. */
|
|
|
|
|
strcat (string, "/.emacs-server");
|
|
|
|
|
#else
|
|
|
|
|
strcat (string, "/.emacs-server-");
|
|
|
|
|
uname (&system_name);
|
|
|
|
|
strcat (string, system_name.nodename);
|
|
|
|
|
#endif
|
1991-03-04 02:59:40 +00:00
|
|
|
|
creat (string, 0600);
|
|
|
|
|
key = ftok (string, 1); /* unlikely to be anyone else using it */
|
|
|
|
|
s = msgget (key, 0600 | IPC_CREAT);
|
|
|
|
|
if (s == -1)
|
|
|
|
|
{
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("msgget");
|
1991-03-04 02:59:40 +00:00
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fork so we can close connection even if parent dies */
|
|
|
|
|
p = fork ();
|
|
|
|
|
if (setjmp (msgenv))
|
|
|
|
|
{
|
|
|
|
|
msgctl (s, IPC_RMID, 0);
|
1994-10-18 11:23:18 +00:00
|
|
|
|
if (p > 0)
|
|
|
|
|
kill (p, SIGKILL);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
exit (0);
|
|
|
|
|
}
|
|
|
|
|
signal (SIGTERM, msgcatch);
|
|
|
|
|
signal (SIGINT, msgcatch);
|
1994-10-18 11:23:18 +00:00
|
|
|
|
signal (SIGHUP, msgcatch);
|
1994-02-08 23:57:30 +00:00
|
|
|
|
if (p > 0)
|
1991-03-04 02:59:40 +00:00
|
|
|
|
{
|
1994-02-08 23:57:30 +00:00
|
|
|
|
/* This is executed in the original process that did the fork above. */
|
|
|
|
|
/* Get pid of Emacs itself. */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
p = getppid ();
|
|
|
|
|
setpgrp (); /* Gnu kills process group on exit */
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
1994-02-08 23:57:30 +00:00
|
|
|
|
/* Is Emacs still alive? */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
if (kill (p, 0) < 0)
|
|
|
|
|
{
|
|
|
|
|
msgctl (s, IPC_RMID, 0);
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|
|
|
|
|
sleep (10);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1994-08-08 07:08:17 +00:00
|
|
|
|
/* This is executed in the child made by forking above.
|
|
|
|
|
Call it c1. Make another process, ioproc. */
|
|
|
|
|
|
|
|
|
|
ioproc = fork ();
|
|
|
|
|
if (ioproc == 0)
|
|
|
|
|
{
|
|
|
|
|
/* In process ioproc, wait for text from Emacs,
|
|
|
|
|
and send it to the process c1.
|
|
|
|
|
This way, c1 only has to wait for one source of input. */
|
|
|
|
|
while (fgets (msgp->mtext, BUFSIZ, stdin))
|
|
|
|
|
{
|
|
|
|
|
msgp->mtype = 1;
|
|
|
|
|
msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0);
|
|
|
|
|
}
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* In the process c1,
|
|
|
|
|
listen for messages from clients and pass them to Emacs. */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
if ((fromlen = msgrcv (s, msgp, BUFSIZ - 1, 1, 0)) < 0)
|
|
|
|
|
{
|
1994-10-18 11:23:18 +00:00
|
|
|
|
#ifdef EINTR
|
|
|
|
|
if (errno == EINTR)
|
|
|
|
|
continue;
|
|
|
|
|
#endif
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 ("msgrcv");
|
1991-12-21 07:03:14 +00:00
|
|
|
|
exit (1);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
msgctl (s, IPC_STAT, &msg_st);
|
1994-08-08 07:08:17 +00:00
|
|
|
|
|
|
|
|
|
/* Distinguish whether the message came from a client, or from
|
|
|
|
|
ioproc. */
|
|
|
|
|
if (msg_st.msg_lspid == ioproc)
|
|
|
|
|
{
|
|
|
|
|
char code[BUFSIZ];
|
|
|
|
|
int inproc;
|
|
|
|
|
|
|
|
|
|
/* Message from ioproc: tell a client we are done. */
|
|
|
|
|
msgp->mtext[strlen (msgp->mtext)-1] = 0;
|
|
|
|
|
sscanf (msgp->mtext, "%s %d", code, &inproc);
|
|
|
|
|
msgp->mtype = inproc;
|
|
|
|
|
msgsnd (s, msgp, strlen (msgp->mtext) + 1, 0);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is a request from a client: copy to stdout
|
|
|
|
|
so that Emacs will get it. Include msg_lspid
|
|
|
|
|
so server.el can tell us where to send the reply. */
|
1991-03-04 02:59:40 +00:00
|
|
|
|
strncpy (string, msgp->mtext, fromlen);
|
|
|
|
|
string[fromlen] = 0; /* make sure */
|
|
|
|
|
/* Newline is part of string.. */
|
1994-08-08 07:08:17 +00:00
|
|
|
|
printf ("Client: %d %s", msg_st.msg_lspid, string);
|
1991-03-04 02:59:40 +00:00
|
|
|
|
fflush (stdout);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* HAVE_SYSVIPC */
|
|
|
|
|
|
1995-06-28 20:10:12 +00:00
|
|
|
|
|
|
|
|
|
/* This is like perror but puts `Error: ' at the beginning. */
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
void
|
1995-06-28 20:10:12 +00:00
|
|
|
|
perror_1 (string)
|
|
|
|
|
char *string;
|
|
|
|
|
{
|
|
|
|
|
char *copy = (char *) malloc (strlen (string) + 8);
|
|
|
|
|
if (copy == 0)
|
|
|
|
|
fatal_error ("Virtual memory exhausted");
|
|
|
|
|
|
|
|
|
|
strcpy (copy, "Error: ");
|
|
|
|
|
strcat (copy, string);
|
|
|
|
|
perror (copy);
|
|
|
|
|
}
|
|
|
|
|
|
1998-04-06 10:14:26 +00:00
|
|
|
|
void
|
1995-06-28 20:10:12 +00:00
|
|
|
|
fatal_error (string)
|
|
|
|
|
char *string;
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "%s", "Error: ");
|
|
|
|
|
fprintf (stderr, string);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1999-02-22 20:51:02 +00:00
|
|
|
|
#endif /* HAVE_SOCKETS or HAVE_SYSVIPC */
|