(equalp): Use string-equal on strings.
[bpt/emacs.git] / lib-src / emacsclient.c
CommitLineData
efb859b4 1/* Client process that communicates with GNU Emacs acting as server.
92af894f 2 Copyright (C) 1986, 1987, 1994 Free Software Foundation, Inc.
46cec291
RS
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
92af894f 8the Free Software Foundation; either version 2, or (at your option)
46cec291
RS
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
46cec291
RS
20
21
22#define NO_SHORTNAMES
18160b98 23#include <../src/config.h>
46cec291
RS
24#undef read
25#undef write
26#undef open
46cec291 27#undef close
4e23f2ba 28#undef signal
46cec291
RS
29
30
b135a7cf 31#if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC)
46cec291
RS
32#include <stdio.h>
33
34main (argc, argv)
35 int argc;
36 char **argv;
37{
38 fprintf (stderr, "%s: Sorry, the Emacs server is supported only\n",
39 argv[0]);
40 fprintf (stderr, "on systems with Berkeley sockets or System V IPC.\n");
41 exit (1);
42}
43
44#else /* HAVE_SOCKETS or HAVE_SYSVIPC */
45
1e523e3d 46#if defined (HAVE_SOCKETS) && ! defined (NO_SOCKETS_IN_FILE_SYSTEM)
46cec291
RS
47/* BSD code is very different from SYSV IPC code */
48
49#include <sys/types.h>
50#include <sys/socket.h>
51#include <sys/un.h>
efb859b4 52#include <sys/stat.h>
46cec291
RS
53#include <stdio.h>
54#include <errno.h>
55
92af894f 56extern char *strerror ();
46cec291
RS
57extern int errno;
58
340ff9de 59int
46cec291
RS
60main (argc, argv)
61 int argc;
62 char **argv;
63{
64 char system_name[32];
65 int s, i;
66 FILE *out;
67 struct sockaddr_un server;
68 char *homedir, *cwd, *str;
69 char string[BUFSIZ];
70
71 char *getenv (), *getwd ();
7e1251a1 72 char *getcwd ();
46cec291
RS
73 int geteuid ();
74
75 if (argc < 2)
76 {
77 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
78 exit (1);
79 }
80
81 /*
82 * Open up an AF_UNIX socket in this person's home directory
83 */
84
85 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
86 {
87 fprintf (stderr, "%s: ", argv[0]);
88 perror ("socket");
89 exit (1);
90 }
91 server.sun_family = AF_UNIX;
92#ifndef SERVER_HOME_DIR
efb859b4
JB
93 {
94 struct stat statbfr;
95
96 gethostname (system_name, sizeof (system_name));
97 sprintf (server.sun_path, "/tmp/esrv%d-%s", geteuid (), system_name);
98
99 if (stat (server.sun_path, &statbfr) == -1)
100 {
c0acc3e1
JB
101 if (errno == ENOENT)
102 fprintf (stderr,
18a2fa91
KH
103 "%s: can't find socket; have you started the server?\n",
104 argv[0]);
c0acc3e1 105 else
18a2fa91
KH
106 fprintf (stderr, "%s: can't stat %s: %s\n",
107 argv[0], server.sun_path, strerror (errno));
efb859b4
JB
108 exit (1);
109 }
b135a7cf 110 if (statbfr.st_uid != geteuid ())
efb859b4 111 {
18a2fa91 112 fprintf (stderr, "%s: Invalid socket owner\n", argv[0]);
efb859b4
JB
113 exit (1);
114 }
115 }
46cec291
RS
116#else
117 if ((homedir = getenv ("HOME")) == NULL)
118 {
119 fprintf (stderr, "%s: No home directory\n", argv[0]);
120 exit (1);
121 }
122 strcpy (server.sun_path, homedir);
b135a7cf
RS
123 strcat (server.sun_path, "/.emacs-server-");
124 gethostname (system_name, sizeof (system_name));
125 strcat (server.sun_path, system_name);
46cec291
RS
126#endif
127
4e23f2ba
JB
128 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2)
129 < 0)
46cec291
RS
130 {
131 fprintf (stderr, "%s: ", argv[0]);
132 perror ("connect");
133 exit (1);
134 }
135 if ((out = fdopen (s, "r+")) == NULL)
136 {
137 fprintf (stderr, "%s: ", argv[0]);
138 perror ("fdopen");
139 exit (1);
140 }
141
ee6a193c 142#ifdef BSD
46cec291 143 cwd = getwd (string);
ee6a193c
RS
144#else
145 cwd = getcwd (string, sizeof string);
146#endif
46cec291
RS
147 if (cwd == 0)
148 {
149 /* getwd puts message in STRING if it fails. */
92af894f 150 fprintf (stderr, "%s: %s (%s)\n", argv[0], string, strerror (errno));
46cec291
RS
151 exit (1);
152 }
153
154 for (i = 1; i < argc; i++)
155 {
156 if (*argv[i] == '+')
157 {
158 char *p = argv[i] + 1;
159 while (*p >= '0' && *p <= '9') p++;
160 if (*p != 0)
161 fprintf (out, "%s/", cwd);
162 }
163 else if (*argv[i] != '/')
164 fprintf (out, "%s/", cwd);
165 fprintf (out, "%s ", argv[i]);
166 }
167 fprintf (out, "\n");
168 fflush (out);
169
170 printf ("Waiting for Emacs...");
171 fflush (stdout);
172
173 rewind (out); /* re-read the output */
174 str = fgets (string, BUFSIZ, out);
dc3c30fe 175 printf ("\n");
46cec291
RS
176
177 /* Now, wait for an answer and print any messages. */
178
179 while (str = fgets (string, BUFSIZ, out))
180 printf ("%s", str);
181
340ff9de 182 return 0;
46cec291
RS
183}
184
185#else /* This is the SYSV IPC section */
186
187#include <sys/types.h>
188#include <sys/ipc.h>
189#include <sys/msg.h>
b135a7cf 190#include <sys/utsname.h>
46cec291
RS
191#include <stdio.h>
192
1518a9eb 193char *getwd (), *getcwd (), *getenv ();
b135a7cf 194struct utsname system_name;
1518a9eb 195
46cec291
RS
196main (argc, argv)
197 int argc;
198 char **argv;
199{
200 int s;
201 key_t key;
1518a9eb
RS
202 /* Size of text allocated in MSGP. */
203 int size_allocated = BUFSIZ;
204 /* Amount of text used in MSGP. */
205 int used;
206 struct msgbuf *msgp
207 = (struct msgbuf *) malloc (sizeof (struct msgbuf) + size_allocated);
46cec291
RS
208 struct msqid_ds * msg_st;
209 char *homedir, buf[BUFSIZ];
210 char gwdirb[BUFSIZ];
211 char *cwd;
212 char *temp;
defb80d7 213 char *progname = argv[0];
46cec291
RS
214
215 if (argc < 2)
216 {
217 fprintf (stderr, "Usage: %s [+linenumber] filename\n", argv[0]);
218 exit (1);
219 }
220
221 /*
b135a7cf 222 * Create a message queue using ~/.emacs-server as the path for ftok
46cec291
RS
223 */
224 if ((homedir = getenv ("HOME")) == NULL)
225 {
226 fprintf (stderr, "%s: No home directory\n", argv[0]);
227 exit (1);
228 }
229 strcpy (buf, homedir);
b135a7cf
RS
230#ifndef HAVE_LONG_FILE_NAMES
231 /* If file names are short, we can't fit the host name. */
232 strcat (buf, "/.emacs-server");
233#else
234 strcat (buf, "/.emacs-server-");
235 uname (&system_name);
236 strcat (buf, system_name.nodename);
237#endif
46cec291
RS
238 creat (buf, 0600);
239 key = ftok (buf, 1); /* unlikely to be anyone else using it */
61a93162 240 s = msgget (key, 0600 | IPC_CREAT);
46cec291
RS
241 if (s == -1)
242 {
243 fprintf (stderr, "%s: ", argv[0]);
244 perror ("msgget");
245 exit (1);
246 }
247
248 /* Determine working dir, so we can prefix it to all the arguments. */
249#ifdef BSD
250 temp = getwd (gwdirb);
251#else
252 temp = getcwd (gwdirb, sizeof gwdirb);
253#endif
254
255 cwd = gwdirb;
256 if (temp != 0)
257 {
258 /* On some systems, cwd can look like `@machine/...';
259 ignore everything before the first slash in such a case. */
260 while (*cwd && *cwd != '/')
261 cwd++;
262 strcat (cwd, "/");
263 }
264 else
265 {
26396b1b 266 fprintf (stderr, "%s: %s\n", argv[0], cwd);
46cec291
RS
267 exit (1);
268 }
269
270 msgp->mtext[0] = 0;
1518a9eb 271 used = 0;
46cec291
RS
272 argc--; argv++;
273 while (argc)
274 {
1518a9eb 275 int need_cwd = 0;
cd33a5a0
RS
276 char *modified_arg = argv[0];
277 if (*modified_arg == '+')
46cec291 278 {
cd33a5a0 279 char *p = modified_arg + 1;
46cec291
RS
280 while (*p >= '0' && *p <= '9') p++;
281 if (*p != 0)
1518a9eb 282 need_cwd = 1;
46cec291 283 }
cd33a5a0 284 else if (*modified_arg != '/')
1518a9eb
RS
285 need_cwd = 1;
286
287 if (need_cwd)
288 used += strlen (cwd);
cd33a5a0 289 used += strlen (modified_arg) + 1;
1518a9eb
RS
290 while (used + 2 > size_allocated)
291 {
292 size_allocated *= 2;
293 msgp = (struct msgbuf *) realloc (msgp,
294 (sizeof (struct msgbuf)
295 + size_allocated));
296 }
297
298 if (need_cwd)
46cec291
RS
299 strcat (msgp->mtext, cwd);
300
cd33a5a0 301 strcat (msgp->mtext, modified_arg);
46cec291
RS
302 strcat (msgp->mtext, " ");
303 argv++; argc--;
304 }
305 strcat (msgp->mtext, "\n");
1518a9eb
RS
306#ifdef HPUX /* HPUX has a bug. */
307 if (strlen (msgp->mtext) >= 512)
308 {
18a2fa91 309 fprintf (stderr, "%s: args too long for msgsnd\n", progname);
1518a9eb
RS
310 exit (1);
311 }
312#endif
46cec291
RS
313 msgp->mtype = 1;
314 if (msgsnd (s, msgp, strlen (msgp->mtext)+1, 0) < 0)
315 {
defb80d7 316 fprintf (stderr, "%s: ", progname);
46cec291
RS
317 perror ("msgsnd");
318 exit (1);
319 }
320 /*
321 * Now, wait for an answer
322 */
323 printf ("Waiting for Emacs...");
324 fflush (stdout);
325
326 msgrcv (s, msgp, BUFSIZ, getpid (), 0); /* wait for anything back */
327 strcpy (buf, msgp->mtext);
328
dc3c30fe
KH
329 printf ("\n");
330 if (*buf)
331 printf ("%s\n", buf);
46cec291
RS
332 exit (0);
333}
334
335#endif /* HAVE_SYSVIPC */
336
337#endif /* HAVE_SOCKETS or HAVE_SYSVIPC */
27711600
RM
338\f
339#ifndef HAVE_STRERROR
340char *
341strerror (errnum)
342 int errnum;
343{
344 extern char *sys_errlist[];
345 extern int sys_nerr;
346
347 if (errnum >= 0 && errnum < sys_nerr)
348 return sys_errlist[errnum];
349 return (char *) "Unknown error";
350}
351
352#endif /* ! HAVE_STRERROR */