* server.el, emacsclient.c: Use TMPDIR (default /tmp) instead of hardcoded /tmp.
[bpt/emacs.git] / lib-src / emacsclient.c
CommitLineData
efb859b4 1/* Client process that communicates with GNU Emacs acting as server.
92b47a4a 2 Copyright (C) 1986, 1987, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
a5b68355 3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
46cec291
RS
4
5This file is part of GNU Emacs.
6
294981c7 7GNU Emacs is free software: you can redistribute it and/or modify
46cec291 8it under the terms of the GNU General Public License as published by
294981c7
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
46cec291
RS
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
294981c7 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
46cec291
RS
19
20
e69233c2 21#ifdef HAVE_CONFIG_H
2f8fe2f4 22#include <config.h>
e69233c2
PJ
23#endif
24
aa0b6932 25#ifdef WINDOWSNT
aa0b6932 26
bc28de71
JB
27/* config.h defines these, which disables sockets altogether! */
28# undef _WINSOCKAPI_
29# undef _WINSOCK_H
30
411b80a5
JB
31# include <malloc.h>
32# include <stdlib.h>
42073bfb 33# include <windows.h>
dbf60b07 34# include <commctrl.h>
411b80a5 35
411b80a5
JB
36# define NO_SOCKETS_IN_FILE_SYSTEM
37
aa0b6932
JB
38# define HSOCKET SOCKET
39# define CLOSE_SOCKET closesocket
aa0b6932 40# define INITIALIZE() (initialize_sockets ())
411b80a5
JB
41
42#else /* !WINDOWSNT */
43
ed4a3730
JB
44# include <sys/types.h>
45
1e7823d0
JB
46# ifdef HAVE_INET_SOCKETS
47# include <netinet/in.h>
48# endif
411b80a5 49
e35fc962 50# define INVALID_SOCKET -1
aa0b6932
JB
51# define HSOCKET int
52# define CLOSE_SOCKET close
aa0b6932 53# define INITIALIZE()
411b80a5
JB
54
55#endif /* !WINDOWSNT */
aa0b6932 56
4e23f2ba 57#undef signal
46cec291 58
42073bfb 59#include <stdarg.h>
e69233c2 60#include <ctype.h>
8f9aaa0a 61#include <stdio.h>
aa0b6932 62#include "getopt.h"
79f13bba
DL
63#ifdef HAVE_UNISTD_H
64#include <unistd.h>
65#endif
8f9aaa0a 66
aa0b6932
JB
67#ifdef WINDOWSNT
68# include <io.h>
69#else /* not WINDOWSNT */
9f637eea 70# include <pwd.h>
aa0b6932 71#endif /* not WINDOWSNT */
dc4a4a14 72#include <sys/stat.h>
9f637eea 73
9628b887 74#include <signal.h>
4d553a13 75#include <errno.h>
9628b887
KL
76
77\f
8f9aaa0a 78char *getenv (), *getwd ();
5b9562c3 79char *(getcwd) ();
8f9aaa0a 80
7ce8671d
JB
81#ifdef WINDOWSNT
82char *w32_getenv ();
83#define egetenv(VAR) w32_getenv(VAR)
84#else
85#define egetenv(VAR) getenv(VAR)
86#endif
87
8f9aaa0a
RS
88#ifndef VERSION
89#define VERSION "unspecified"
90#endif
91\f
aa0b6932
JB
92
93#ifndef EXIT_SUCCESS
94#define EXIT_SUCCESS 0
95#endif
96
97#ifndef EXIT_FAILURE
98#define EXIT_FAILURE 1
99#endif
100
101#ifndef FALSE
102#define FALSE 0
103#endif
104
105#ifndef TRUE
106#define TRUE 1
107#endif
108
109#ifndef NO_RETURN
110#define NO_RETURN
111#endif
112\f
8f9aaa0a
RS
113/* Name used to invoke this program. */
114char *progname;
115
0a125897
KL
116/* The second argument to main. */
117char **main_argv;
118
749ae770 119/* Nonzero means don't wait for a response from Emacs. --no-wait. */
8f9aaa0a
RS
120int nowait = 0;
121
30be2360
SM
122/* Nonzero means args are expressions to be evaluated. --eval. */
123int eval = 0;
124
31fa6595
SM
125/* Nonzero means don't open a new frame. Inverse of --create-frame. */
126int current_frame = 1;
92071250 127
77134727
KL
128/* Nonzero means open a new graphical frame. */
129int window_system = 0;
130
30be2360
SM
131/* The display on which Emacs should work. --display. */
132char *display = NULL;
133
9628b887 134/* Nonzero means open a new Emacs frame on the current terminal. */
77134727 135int tty = 0;
9628b887 136
30be2360
SM
137/* If non-NULL, the name of an editor to fallback to if the server
138 is not running. --alternate-editor. */
b03d27bd 139const char *alternate_editor = NULL;
30be2360 140
3db926be 141/* If non-NULL, the filename of the UNIX socket. */
254107e4
RS
142char *socket_name = NULL;
143
aa0b6932
JB
144/* If non-NULL, the filename of the authentication file. */
145char *server_file = NULL;
146
c66648e0
JB
147/* PID of the Emacs server process. */
148int emacs_pid = 0;
149
2381d38d 150void print_help_and_exit () NO_RETURN;
7f3bff3e 151
8f9aaa0a
RS
152struct option longopts[] =
153{
749ae770 154 { "no-wait", no_argument, NULL, 'n' },
30be2360 155 { "eval", no_argument, NULL, 'e' },
8f9aaa0a
RS
156 { "help", no_argument, NULL, 'H' },
157 { "version", no_argument, NULL, 'V' },
b28c910d 158 { "tty", no_argument, NULL, 't' },
dc1cd5f7 159 { "nw", no_argument, NULL, 't' },
31fa6595 160 { "create-frame", no_argument, NULL, 'c' },
3cf8c6aa 161 { "alternate-editor", required_argument, NULL, 'a' },
b03d27bd 162#ifndef NO_SOCKETS_IN_FILE_SYSTEM
254107e4 163 { "socket-name", required_argument, NULL, 's' },
b03d27bd 164#endif
aa0b6932 165 { "server-file", required_argument, NULL, 'f' },
0ebec7d3 166#ifndef WINDOWSNT
30be2360 167 { "display", required_argument, NULL, 'd' },
0ebec7d3 168#endif
30be2360 169 { 0, 0, 0, 0 }
8f9aaa0a
RS
170};
171
974b73e8
KL
172\f
173/* Like malloc but get fatal error if memory is exhausted. */
174
175long *
176xmalloc (size)
177 unsigned int size;
178{
179 long *result = (long *) malloc (size);
180 if (result == NULL)
181 {
182 perror ("malloc");
183 exit (EXIT_FAILURE);
184 }
185 return result;
186}
187
188/* Like strdup but get a fatal error if memory is exhausted. */
189
190char *
191xstrdup (const char *s)
192{
193 char *result = strdup (s);
194 if (result == NULL)
195 {
196 perror ("strdup");
197 exit (EXIT_FAILURE);
198 }
199 return result;
200}
201
202/* From sysdep.c */
203#if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
204
cb06b8dc
SM
205/* From lisp.h */
206#ifndef DIRECTORY_SEP
207#define DIRECTORY_SEP '/'
208#endif
209#ifndef IS_DIRECTORY_SEP
210#define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
211#endif
212#ifndef IS_DEVICE_SEP
213#ifndef DEVICE_SEP
214#define IS_DEVICE_SEP(_c_) 0
215#else
216#define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
217#endif
218#endif
219#ifndef IS_ANY_SEP
220#define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
221#endif
222
223
974b73e8 224/* Return the current working directory. Returns NULL on errors.
5ab73228 225 Any other returned value must be freed with free. This is used
974b73e8
KL
226 only when get_current_dir_name is not defined on the system. */
227char*
228get_current_dir_name ()
229{
230 char *buf;
231 char *pwd;
232 struct stat dotstat, pwdstat;
233 /* If PWD is accurate, use it instead of calling getwd. PWD is
234 sometimes a nicer name, and using it may avoid a fatal error if a
235 parent directory is searchable but not readable. */
7ce8671d 236 if ((pwd = egetenv ("PWD")) != 0
974b73e8
KL
237 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
238 && stat (pwd, &pwdstat) == 0
239 && stat (".", &dotstat) == 0
240 && dotstat.st_ino == pwdstat.st_ino
241 && dotstat.st_dev == pwdstat.st_dev
242#ifdef MAXPATHLEN
243 && strlen (pwd) < MAXPATHLEN
244#endif
245 )
246 {
247 buf = (char *) xmalloc (strlen (pwd) + 1);
248 if (!buf)
249 return NULL;
250 strcpy (buf, pwd);
251 }
252#ifdef HAVE_GETCWD
253 else
254 {
255 size_t buf_size = 1024;
256 buf = (char *) xmalloc (buf_size);
257 if (!buf)
258 return NULL;
259 for (;;)
260 {
261 if (getcwd (buf, buf_size) == buf)
262 break;
263 if (errno != ERANGE)
264 {
265 int tmp_errno = errno;
266 free (buf);
267 errno = tmp_errno;
268 return NULL;
269 }
270 buf_size *= 2;
271 buf = (char *) realloc (buf, buf_size);
272 if (!buf)
273 return NULL;
274 }
275 }
276#else
277 else
278 {
279 /* We need MAXPATHLEN here. */
280 buf = (char *) xmalloc (MAXPATHLEN + 1);
281 if (!buf)
282 return NULL;
283 if (getwd (buf) == NULL)
284 {
285 int tmp_errno = errno;
286 free (buf);
287 errno = tmp_errno;
288 return NULL;
289 }
290 }
291#endif
292 return buf;
293}
294#endif
295
42073bfb 296#ifdef WINDOWSNT
7ce8671d
JB
297
298#define REG_ROOT "SOFTWARE\\GNU\\Emacs"
299
300/* Retrieve an environment variable from the Emacs subkeys of the registry.
301 Return NULL if the variable was not found, or it was empty.
302 This code is based on w32_get_resource (w32.c). */
303char *
304w32_get_resource (predefined, key, type)
305 HKEY predefined;
306 char *key;
307 LPDWORD type;
308{
309 HKEY hrootkey = NULL;
310 char *result = NULL;
311 DWORD cbData;
312
313 if (RegOpenKeyEx (predefined, REG_ROOT, 0, KEY_READ, &hrootkey) == ERROR_SUCCESS)
314 {
315 if (RegQueryValueEx (hrootkey, key, NULL, NULL, NULL, &cbData) == ERROR_SUCCESS)
316 {
317 result = (char *) xmalloc (cbData);
318
319 if ((RegQueryValueEx (hrootkey, key, NULL, type, result, &cbData) != ERROR_SUCCESS) ||
320 (*result == 0))
321 {
322 free (result);
323 result = NULL;
324 }
325 }
326
327 RegCloseKey (hrootkey);
328 }
329
330 return result;
331}
332
333/*
334 getenv wrapper for Windows
335
336 This is needed to duplicate Emacs's behavior, which is to look for enviroment
337 variables in the registry if they don't appear in the environment.
338*/
339char *
340w32_getenv (envvar)
341 char *envvar;
342{
343 char *value;
344 DWORD dwType;
345
346 if (value = getenv (envvar))
347 /* Found in the environment. */
348 return value;
349
350 if (! (value = w32_get_resource (HKEY_CURRENT_USER, envvar, &dwType)) &&
351 ! (value = w32_get_resource (HKEY_LOCAL_MACHINE, envvar, &dwType)))
352 /* Not found in the registry. */
353 return NULL;
354
355 if (dwType == REG_SZ)
356 /* Registry; no need to expand. */
357 return value;
358
359 if (dwType == REG_EXPAND_SZ)
360 {
361 DWORD size;
362
363 if (size = ExpandEnvironmentStrings (value, NULL, 0))
364 {
365 char *buffer = (char *) xmalloc (size);
366 if (ExpandEnvironmentStrings (value, buffer, size))
367 {
368 /* Found and expanded. */
369 free (value);
370 return buffer;
371 }
372
373 /* Error expanding. */
374 free (buffer);
375 }
376 }
377
378 /* Not the right type, or not correctly expanded. */
379 free (value);
380 return NULL;
381}
382
42073bfb 383int
f0384499 384w32_window_app ()
42073bfb
JB
385{
386 static int window_app = -1;
387 char szTitle[MAX_PATH];
388
389 if (window_app < 0)
dbf60b07
JR
390 {
391 /* Checking for STDOUT does not work; it's a valid handle also in
392 nonconsole apps. Testing for the console title seems to work. */
393 window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0);
394 if (window_app)
395 InitCommonControls();
396 }
42073bfb
JB
397
398 return window_app;
399}
105faa84
DN
400
401/*
cb06b8dc 402 execvp wrapper for Windows. Quotes arguments with embedded spaces.
105faa84
DN
403
404 This is necessary due to the broken implementation of exec* routines in
405 the Microsoft libraries: they concatenate the arguments together without
406 quoting special characters, and pass the result to CreateProcess, with
407 predictably bad results. By contrast, Posix execvp passes the arguments
408 directly into the argv array of the child process.
409*/
410int
411w32_execvp (path, argv)
412 char *path;
413 char **argv;
414{
415 int i;
416
417 /* Required to allow a .BAT script as alternate editor. */
418 argv[0] = (char *) alternate_editor;
419
420 for (i = 0; argv[i]; i++)
421 if (strchr (argv[i], ' '))
422 {
423 char *quoted = alloca (strlen (argv[i]) + 3);
424 sprintf (quoted, "\"%s\"", argv[i]);
425 argv[i] = quoted;
426 }
427
428 return execvp (path, argv);
429}
430
431#undef execvp
432#define execvp w32_execvp
433
434#endif /* WINDOWSNT */
42073bfb 435
f387c1ee
JB
436/* Display a normal or error message.
437 On Windows, use a message box if compiled as a Windows app. */
42073bfb
JB
438void
439message (int is_error, char *message, ...)
440{
c66648e0 441 char msg [2048];
42073bfb
JB
442 va_list args;
443
444 va_start (args, message);
42073bfb
JB
445 vsprintf (msg, message, args);
446 va_end (args);
447
448#ifdef WINDOWSNT
449 if (w32_window_app ())
450 {
451 if (is_error)
452 MessageBox (NULL, msg, "Emacsclient ERROR", MB_ICONERROR);
453 else
454 MessageBox (NULL, msg, "Emacsclient", MB_ICONINFORMATION);
455 }
456 else
457#endif
9219db75
JB
458 {
459 FILE *f = is_error ? stderr : stdout;
460
461 fputs (msg, f);
462 fflush (f);
463 }
42073bfb
JB
464}
465
8f9aaa0a 466/* Decode the options from argv and argc.
5212210c 467 The global variable `optind' will say how many arguments we used up. */
8f9aaa0a 468
5212210c 469void
8f9aaa0a
RS
470decode_options (argc, argv)
471 int argc;
472 char **argv;
473{
7ce8671d 474 alternate_editor = egetenv ("ALTERNATE_EDITOR");
0ea5797a 475
8f9aaa0a
RS
476 while (1)
477 {
dc1cd5f7 478 int opt = getopt_long_only (argc, argv,
b03d27bd 479#ifndef NO_SOCKETS_IN_FILE_SYSTEM
974b73e8 480 "VHnea:s:f:d:tc",
b03d27bd 481#else
974b73e8 482 "VHnea:f:d:tc",
b03d27bd 483#endif
974b73e8 484 longopts, 0);
8f9aaa0a
RS
485
486 if (opt == EOF)
487 break;
488
489 switch (opt)
490 {
491 case 0:
492 /* If getopt returns 0, then it has already processed a
493 long-named option. We should do nothing. */
494 break;
e69233c2 495
97e3214d
GM
496 case 'a':
497 alternate_editor = optarg;
498 break;
e69233c2 499
b03d27bd 500#ifndef NO_SOCKETS_IN_FILE_SYSTEM
254107e4
RS
501 case 's':
502 socket_name = optarg;
503 break;
b03d27bd 504#endif
254107e4 505
aa0b6932
JB
506 case 'f':
507 server_file = optarg;
508 break;
254107e4 509
0ea5797a
SM
510 /* We used to disallow this argument in w32, but it seems better
511 to allow it, for the occasional case where the user is
512 connecting with a w32 client to a server compiled with X11
513 support. */
514#if 1 /* !defined WINDOWS */
30be2360
SM
515 case 'd':
516 display = optarg;
517 break;
0ebec7d3 518#endif
30be2360 519
8f9aaa0a
RS
520 case 'n':
521 nowait = 1;
522 break;
523
30be2360
SM
524 case 'e':
525 eval = 1;
526 break;
527
8f9aaa0a 528 case 'V':
42073bfb 529 message (FALSE, "emacsclient %s\n", VERSION);
65396510 530 exit (EXIT_SUCCESS);
8f9aaa0a 531 break;
46cec291 532
819b8f00 533 case 't':
77134727 534 tty = 1;
c1b8e896 535 current_frame = 0;
77134727
KL
536 break;
537
e5299d8d 538 case 'c':
31fa6595 539 current_frame = 0;
9628b887 540 break;
0b0d3e0b 541
8f9aaa0a 542 case 'H':
8f9aaa0a 543 print_help_and_exit ();
20c396e8
JB
544 break;
545
546 default:
42073bfb 547 message (TRUE, "Try `%s --help' for more information\n", progname);
65396510 548 exit (EXIT_FAILURE);
20c396e8 549 break;
8f9aaa0a
RS
550 }
551 }
9628b887 552
9997dc15
SM
553 /* We used to set `display' to $DISPLAY by default, but this changed the
554 default behavior and is sometimes inconvenient. So instead of forcing
555 users to say "--display ''" when they want to use Emacs's existing tty
556 or display connection, we force them to use "--display $DISPLAY" if
557 they want Emacs to connect to their current display.
558 -c still implicitly passes --display $DISPLAY unless -t was specified
559 so as to try and mimick the behavior of `emacs' which either uses
560 the current tty or the current $DISPLAY. */
09317bf4 561 if (!current_frame && !tty && !display)
9997dc15
SM
562 display = egetenv ("DISPLAY");
563
0ea5797a
SM
564 if (display && strlen (display) == 0)
565 display = NULL;
566
92071250
KL
567 if (!tty && display)
568 window_system = 1;
9e2a2647 569#if !defined (WINDOWSNT)
9997dc15 570 else if (!current_frame)
92071250 571 tty = 1;
1d00cfd4 572#endif
c0f342ab 573
b8ccaf6f
KL
574 /* --no-wait implies --current-frame on ttys when there are file
575 arguments or expressions given. */
576 if (nowait && tty && argc - optind > 0)
92071250
KL
577 current_frame = 1;
578
579 if (current_frame)
580 {
581 tty = 0;
582 window_system = 0;
583 }
584
585 if (tty)
586 window_system = 0;
8f9aaa0a
RS
587}
588
974b73e8 589\f
7f3bff3e 590void
8f9aaa0a
RS
591print_help_and_exit ()
592{
c0f342ab
JB
593 /* Spaces and tabs are significant in this message; they're chosen so the
594 message aligns properly both in a tty and in a Windows message box.
595 Please try to preserve them; otherwise the output is very hard to read
596 when using emacsclientw. */
42073bfb 597 message (FALSE,
974b73e8 598 "Usage: %s [OPTIONS] FILE...\n\
30be2360
SM
599Tell the Emacs server to visit the specified files.\n\
600Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
20c396e8 601\n\
30be2360 602The following OPTIONS are accepted:\n\
c0f342ab
JB
603-V, --version Just print version info and return\n\
604-H, --help Print this usage information message\n\
dc1cd5f7 605-nw, -t, --tty Open a new Emacs frame on the current terminal\n\
c4b858e3 606-c, --create-frame Create a new frame instead of trying to\n\
c0f342ab
JB
607 use the current Emacs frame\n\
608-e, --eval Evaluate the FILE arguments as ELisp expressions\n\
d07529f3
JB
609-n, --no-wait Don't wait for the server to return\n\
610-d, --display=DISPLAY Visit the file in the given display\n"
aa0b6932
JB
611#ifndef NO_SOCKETS_IN_FILE_SYSTEM
612"-s, --socket-name=FILENAME\n\
c0f342ab 613 Set filename of the UNIX socket for communication\n"
aa0b6932
JB
614#endif
615"-f, --server-file=FILENAME\n\
c0f342ab 616 Set filename of the TCP authentication file\n\
30be2360 617-a, --alternate-editor=EDITOR\n\
c0f342ab 618 Editor to fallback to if the server is not running\n\
20c396e8 619\n\
30be2360 620Report bugs to bug-gnu-emacs@gnu.org.\n", progname);
65396510 621 exit (EXIT_SUCCESS);
8f9aaa0a 622}
5212210c 623
aa0b6932
JB
624/*
625 Try to run a different command, or --if no alternate editor is
626 defined-- exit with an errorcode.
cb06b8dc 627 Uses argv, but gets it from the global variable main_argv.
aa0b6932
JB
628*/
629void
974b73e8 630fail (void)
9002956f 631{
aa0b6932 632 if (alternate_editor)
9002956f 633 {
aa0b6932 634 int i = optind - 1;
4472aef4 635
974b73e8 636 execvp (alternate_editor, main_argv + i);
42073bfb 637 message (TRUE, "%s: error executing alternate editor \"%s\"\n",
974b73e8 638 progname, alternate_editor);
9002956f 639 }
aa0b6932 640 exit (EXIT_FAILURE);
9002956f
KL
641}
642
aa0b6932 643\f
1e7823d0 644#if !defined (HAVE_SOCKETS) || !defined (HAVE_INET_SOCKETS)
9002956f 645
aa0b6932
JB
646int
647main (argc, argv)
648 int argc;
649 char **argv;
9002956f 650{
974b73e8
KL
651 main_argv = argv;
652 progname = argv[0];
653 message (TRUE, "%s: Sorry, the Emacs server is supported only\n"
c0f342ab 654 "on systems with Berkeley sockets.\n",
aa0b6932 655 argv[0]);
974b73e8 656 fail ();
9002956f
KL
657}
658
1e7823d0 659#else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
2828d5f9 660
aa0b6932
JB
661#ifdef WINDOWSNT
662# include <winsock2.h>
2828d5f9 663#else
aa0b6932
JB
664# include <sys/types.h>
665# include <sys/socket.h>
666# include <sys/un.h>
aa0b6932
JB
667#endif
668
669#define AUTH_KEY_LENGTH 64
670#define SEND_BUFFER_SIZE 4096
671
672extern char *strerror ();
673extern int errno;
674
675/* Buffer to accumulate data to send in TCP connections. */
676char send_buffer[SEND_BUFFER_SIZE + 1];
677int sblen = 0; /* Fill pointer for the send buffer. */
4b7b77f6
JR
678/* Socket used to communicate with the Emacs server process. */
679HSOCKET emacs_socket = 0;
aa0b6932 680
d22b00e5
JR
681/* On Windows, the socket library was historically separate from the standard
682 C library, so errors are handled differently. */
683void
684sock_err_message (function_name)
685 char *function_name;
686{
687#ifdef WINDOWSNT
688 char* msg = NULL;
689
690 FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
691 | FORMAT_MESSAGE_ALLOCATE_BUFFER
692 | FORMAT_MESSAGE_ARGUMENT_ARRAY,
693 NULL, WSAGetLastError (), 0, (LPTSTR)&msg, 0, NULL);
694
695 message (TRUE, "%s: %s: %s\n", progname, function_name, msg);
696
697 LocalFree (msg);
698#else
699 message (TRUE, "%s: %s: %s\n", progname, function_name, strerror (errno));
700#endif
701}
702
703
aa0b6932
JB
704/* Let's send the data to Emacs when either
705 - the data ends in "\n", or
706 - the buffer is full (but this shouldn't happen)
707 Otherwise, we just accumulate it. */
b03d27bd
JB
708void
709send_to_emacs (s, data)
aa0b6932
JB
710 HSOCKET s;
711 char *data;
712{
713 while (data)
2828d5f9 714 {
aa0b6932
JB
715 int dlen = strlen (data);
716 if (dlen + sblen >= SEND_BUFFER_SIZE)
717 {
718 int part = SEND_BUFFER_SIZE - sblen;
719 strncpy (&send_buffer[sblen], data, part);
720 data += part;
721 sblen = SEND_BUFFER_SIZE;
722 }
723 else if (dlen)
724 {
725 strcpy (&send_buffer[sblen], data);
726 data = NULL;
727 sblen += dlen;
728 }
729 else
730 break;
731
732 if (sblen == SEND_BUFFER_SIZE
733 || (sblen > 0 && send_buffer[sblen-1] == '\n'))
734 {
735 int sent = send (s, send_buffer, sblen, 0);
736 if (sent != sblen)
737 strcpy (send_buffer, &send_buffer[sent]);
738 sblen -= sent;
739 }
2828d5f9 740 }
2828d5f9 741}
2828d5f9
KL
742
743\f
0b0d3e0b 744/* In STR, insert a & before each &, each space, each newline, and
a4cf2096 745 any initial -. Change spaces to underscores, too, so that the
0b0d3e0b
KL
746 return value never contains a space.
747
748 Does not change the string. Outputs the result to STREAM. */
87209357 749void
974b73e8 750quote_argument (s, str)
aa0b6932 751 HSOCKET s;
0b0d3e0b 752 char *str;
5212210c 753{
9002956f 754 char *copy = (char *) xmalloc (strlen (str) * 2 + 1);
5212210c
RS
755 char *p, *q;
756
0b0d3e0b 757 p = str;
5212210c
RS
758 q = copy;
759 while (*p)
760 {
761 if (*p == ' ')
762 {
f1db6a73 763 *q++ = '&';
5212210c
RS
764 *q++ = '_';
765 p++;
766 }
3cf8c6aa
SM
767 else if (*p == '\n')
768 {
769 *q++ = '&';
770 *q++ = 'n';
771 p++;
772 }
5212210c
RS
773 else
774 {
0b0d3e0b 775 if (*p == '&' || (*p == '-' && p == str))
f1db6a73 776 *q++ = '&';
5212210c
RS
777 *q++ = *p++;
778 }
779 }
f1db6a73 780 *q++ = 0;
5212210c 781
486ba65f 782 send_to_emacs (s, copy);
87209357
EZ
783
784 free (copy);
5212210c 785}
0c76956f 786
0b0d3e0b
KL
787
788/* The inverse of quote_argument. Removes quoting in string STR by
789 modifying the string in place. Returns STR. */
790
791char *
792unquote_argument (str)
793 char *str;
794{
795 char *p, *q;
796
797 if (! str)
798 return str;
799
800 p = str;
801 q = str;
802 while (*p)
803 {
804 if (*p == '&')
805 {
806 p++;
807 if (*p == '&')
808 *p = '&';
809 else if (*p == '_')
810 *p = ' ';
811 else if (*p == 'n')
812 *p = '\n';
813 else if (*p == '-')
814 *p = '-';
815 }
816 *q++ = *p++;
817 }
818 *q = 0;
819 return str;
820}
821
8f9aaa0a 822\f
b03d27bd
JB
823int
824file_name_absolute_p (filename)
825 const unsigned char *filename;
826{
827 /* Sanity check, it shouldn't happen. */
828 if (! filename) return FALSE;
829
830 /* /xxx is always an absolute path. */
831 if (filename[0] == '/') return TRUE;
832
833 /* Empty filenames (which shouldn't happen) are relative. */
834 if (filename[0] == '\0') return FALSE;
835
836#ifdef WINDOWSNT
71b8f735 837 /* X:\xxx is always absolute. */
5f7a4874 838 if (isalpha (filename[0])
cb0297bb 839 && filename[1] == ':' && (filename[2] == '\\' || filename[2] == '/'))
b03d27bd
JB
840 return TRUE;
841
842 /* Both \xxx and \\xxx\yyy are absolute. */
843 if (filename[0] == '\\') return TRUE;
844#endif
845
846 return FALSE;
847}
848
aa0b6932 849#ifdef WINDOWSNT
f0384499 850/* Wrapper to make WSACleanup a cdecl, as required by atexit. */
b03d27bd
JB
851void
852__cdecl close_winsock ()
aa0b6932
JB
853{
854 WSACleanup ();
855}
0c76956f 856
b03d27bd
JB
857/* Initialize the WinSock2 library. */
858void
859initialize_sockets ()
0c76956f 860{
aa0b6932
JB
861 WSADATA wsaData;
862
aa0b6932
JB
863 if (WSAStartup (MAKEWORD (2, 0), &wsaData))
864 {
78da39c6 865 message (TRUE, "%s: error initializing WinSock2\n", progname);
aa0b6932
JB
866 exit (EXIT_FAILURE);
867 }
868
869 atexit (close_winsock);
0c76956f 870}
e35fc962 871#endif /* WINDOWSNT */
974b73e8 872
8f9aaa0a 873\f
97e3214d 874/*
aa0b6932 875 * Read the information needed to set up a TCP comm channel with
434a6c5d 876 * the Emacs server: host, port, pid and authentication string.
0e0dced5 877 */
b03d27bd
JB
878int
879get_server_config (server, authentication)
aa0b6932
JB
880 struct sockaddr_in *server;
881 char *authentication;
97e3214d 882{
aa0b6932
JB
883 char dotted[32];
884 char *port;
434a6c5d 885 char *pid;
b03d27bd 886 FILE *config = NULL;
aa0b6932 887
b03d27bd
JB
888 if (file_name_absolute_p (server_file))
889 config = fopen (server_file, "rb");
890 else
97e3214d 891 {
7ce8671d 892 char *home = egetenv ("HOME");
88b46d84 893
aa0b6932
JB
894 if (home)
895 {
896 char *path = alloca (32 + strlen (home) + strlen (server_file));
897 sprintf (path, "%s/.emacs.d/server/%s", home, server_file);
898 config = fopen (path, "rb");
899 }
88b46d84 900#ifdef WINDOWSNT
7ce8671d 901 if (!config && (home = egetenv ("APPDATA")))
88b46d84
JB
902 {
903 char *path = alloca (32 + strlen (home) + strlen (server_file));
904 sprintf (path, "%s/.emacs.d/server/%s", home, server_file);
905 config = fopen (path, "rb");
906 }
907#endif
aa0b6932
JB
908 }
909
910 if (! config)
911 return FALSE;
912
913 if (fgets (dotted, sizeof dotted, config)
434a6c5d
JB
914 && (port = strchr (dotted, ':'))
915 && (pid = strchr (port, ' ')))
aa0b6932
JB
916 {
917 *port++ = '\0';
434a6c5d 918 *pid++ = '\0';
97e3214d
GM
919 }
920 else
921 {
78da39c6 922 message (TRUE, "%s: invalid configuration info\n", progname);
65396510 923 exit (EXIT_FAILURE);
97e3214d 924 }
97e3214d 925
aa0b6932
JB
926 server->sin_family = AF_INET;
927 server->sin_addr.s_addr = inet_addr (dotted);
928 server->sin_port = htons (atoi (port));
97e3214d 929
aa0b6932
JB
930 if (! fread (authentication, AUTH_KEY_LENGTH, 1, config))
931 {
78da39c6 932 message (TRUE, "%s: cannot read authentication info\n", progname);
aa0b6932
JB
933 exit (EXIT_FAILURE);
934 }
46cec291 935
aa0b6932 936 fclose (config);
97e3214d 937
c66648e0 938 emacs_pid = atoi (pid);
434a6c5d 939
aa0b6932 940 return TRUE;
97e3214d
GM
941}
942
aa0b6932
JB
943HSOCKET
944set_tcp_socket ()
945{
946 HSOCKET s;
947 struct sockaddr_in server;
aa0b6932
JB
948 struct linger l_arg = {1, 1};
949 char auth_string[AUTH_KEY_LENGTH + 1];
9628b887 950
aa0b6932
JB
951 if (! get_server_config (&server, auth_string))
952 return INVALID_SOCKET;
953
b03d27bd 954 if (server.sin_addr.s_addr != inet_addr ("127.0.0.1"))
9219db75 955 message (FALSE, "%s: connected to remote socket at %s\n",
b03d27bd
JB
956 progname, inet_ntoa (server.sin_addr));
957
aa0b6932
JB
958 /*
959 * Open up an AF_INET socket
960 */
961 if ((s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
962 {
d22b00e5 963 sock_err_message ("socket");
aa0b6932
JB
964 return INVALID_SOCKET;
965 }
966
967 /*
968 * Set up the socket
969 */
970 if (connect (s, (struct sockaddr *) &server, sizeof server) < 0)
971 {
d22b00e5 972 sock_err_message ("connect");
aa0b6932
JB
973 return INVALID_SOCKET;
974 }
975
aa0b6932
JB
976 setsockopt (s, SOL_SOCKET, SO_LINGER, (char *) &l_arg, sizeof l_arg);
977
978 /*
979 * Send the authentication
980 */
981 auth_string[AUTH_KEY_LENGTH] = '\0';
982
486ba65f
JR
983 send_to_emacs (s, "-auth ");
984 send_to_emacs (s, auth_string);
5ab73228 985 send_to_emacs (s, " ");
aa0b6932
JB
986
987 return s;
988}
989
b2ff54a0
JR
990
991/* Returns 1 if PREFIX is a prefix of STRING. */
992static int
993strprefix (char *prefix, char *string)
994{
cb06b8dc 995 return !strncmp (prefix, string, strlen (prefix));
b2ff54a0
JR
996}
997
998
aa0b6932 999#if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
46cec291 1000
9f637eea
GM
1001/* Three possibilities:
1002 2 - can't be `stat'ed (sets errno)
1003 1 - isn't owned by us
1004 0 - success: none of the above */
1005
1006static int
1007socket_status (socket_name)
1008 char *socket_name;
1009{
1010 struct stat statbfr;
1011
1012 if (stat (socket_name, &statbfr) == -1)
1013 return 2;
1014
1015 if (statbfr.st_uid != geteuid ())
1016 return 1;
0b0d3e0b 1017
9f637eea
GM
1018 return 0;
1019}
1020
974b73e8 1021\f
da8e1115
KL
1022/* A signal handler that passes the signal to the Emacs process.
1023 Useful for SIGWINCH. */
1024
9628b887 1025SIGTYPE
428a555e 1026pass_signal_to_emacs (int signalnum)
9628b887
KL
1027{
1028 int old_errno = errno;
1029
9f729af5 1030 if (emacs_pid)
428a555e 1031 kill (emacs_pid, signalnum);
9f729af5 1032
428a555e 1033 signal (signalnum, pass_signal_to_emacs);
9f729af5
KL
1034 errno = old_errno;
1035}
1036
0b0d3e0b
KL
1037/* Signal handler for SIGCONT; notify the Emacs process that it can
1038 now resume our tty frame. */
1039
1040SIGTYPE
1041handle_sigcont (int signalnum)
1042{
1043 int old_errno = errno;
1044
1045 if (tcgetpgrp (1) == getpgrp ())
1046 {
1047 /* We are in the foreground. */
486ba65f 1048 send_to_emacs (emacs_socket, "-resume \n");
0b0d3e0b
KL
1049 }
1050 else
1051 {
1052 /* We are in the background; cancel the continue. */
1053 kill (getpid (), SIGSTOP);
1054 }
c6c53c3e
KL
1055
1056 signal (signalnum, handle_sigcont);
0b0d3e0b
KL
1057 errno = old_errno;
1058}
1059
1060/* Signal handler for SIGTSTP; notify the Emacs process that we are
1061 going to sleep. Normally the suspend is initiated by Emacs via
1062 server-handle-suspend-tty, but if the server gets out of sync with
1063 reality, we may get a SIGTSTP on C-z. Handling this signal and
1064 notifying Emacs about it should get things under control again. */
1065
1066SIGTYPE
1067handle_sigtstp (int signalnum)
1068{
1069 int old_errno = errno;
1070 sigset_t set;
c0f342ab 1071
90843190 1072 if (emacs_socket)
486ba65f 1073 send_to_emacs (emacs_socket, "-suspend \n");
0b0d3e0b 1074
5ab73228 1075 /* Unblock this signal and call the default handler by temporarily
0b0d3e0b
KL
1076 changing the handler and resignalling. */
1077 sigprocmask (SIG_BLOCK, NULL, &set);
1078 sigdelset (&set, signalnum);
1079 signal (signalnum, SIG_DFL);
1080 kill (getpid (), signalnum);
1081 sigprocmask (SIG_SETMASK, &set, NULL); /* Let's the above signal through. */
1082 signal (signalnum, handle_sigtstp);
1083
1084 errno = old_errno;
1085}
da8e1115 1086/* Set up signal handlers before opening a frame on the current tty. */
0b0d3e0b 1087
4d553a13
KL
1088void
1089init_signals (void)
9628b887
KL
1090{
1091 /* Set up signal handlers. */
428a555e 1092 signal (SIGWINCH, pass_signal_to_emacs);
4ca927b4
KL
1093
1094 /* Don't pass SIGINT and SIGQUIT to Emacs, because it has no way of
1095 deciding which terminal the signal came from. C-g is now a
1096 normal input event on secondary terminals. */
1097#if 0
428a555e
KL
1098 signal (SIGINT, pass_signal_to_emacs);
1099 signal (SIGQUIT, pass_signal_to_emacs);
4ca927b4 1100#endif
0b0d3e0b
KL
1101
1102 signal (SIGCONT, handle_sigcont);
1103 signal (SIGTSTP, handle_sigtstp);
1104 signal (SIGTTOU, handle_sigtstp);
9628b887
KL
1105}
1106
46cec291 1107
aa0b6932
JB
1108HSOCKET
1109set_local_socket ()
46cec291 1110{
aa0b6932 1111 HSOCKET s;
46cec291 1112 struct sockaddr_un server;
46cec291 1113
e69233c2 1114 /*
46cec291
RS
1115 * Open up an AF_UNIX socket in this person's home directory
1116 */
1117
1118 if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)
1119 {
42073bfb 1120 message (TRUE, "%s: socket: %s\n", progname, strerror (errno));
aa0b6932 1121 return INVALID_SOCKET;
46cec291 1122 }
e69233c2 1123
46cec291 1124 server.sun_family = AF_UNIX;
c5fee545 1125
c5fee545 1126 {
9f637eea 1127 int sock_status = 0;
5c9659d3 1128 int default_sock = !socket_name;
b80bf66e 1129 int saved_errno = 0;
0734b0d0 1130 char *server_name = "server";
f77b11a0 1131 char *tmpdir;
0b0d3e0b 1132
0734b0d0
SM
1133 if (socket_name && !index (socket_name, '/') && !index (socket_name, '\\'))
1134 { /* socket_name is a file name component. */
d3a6748c
KL
1135 server_name = socket_name;
1136 socket_name = NULL;
1137 default_sock = 1; /* Try both UIDs. */
0734b0d0 1138 }
efb859b4 1139
5c9659d3 1140 if (default_sock)
254107e4 1141 {
f77b11a0
JB
1142 tmpdir = egetenv ("TMPDIR");
1143 if (!tmpdir)
1144 tmpdir = "/tmp";
1145 socket_name = alloca (32 + strlen (tmpdir) + strlen (server_name));
1146 sprintf (socket_name, "%s/emacs%d/%s",
1147 tmpdir, (int) geteuid (), server_name);
254107e4
RS
1148 }
1149
1150 if (strlen (socket_name) < sizeof (server.sun_path))
1151 strcpy (server.sun_path, socket_name);
1152 else
819b8f00 1153 {
78da39c6 1154 message (TRUE, "%s: socket-name %s too long\n",
974b73e8 1155 progname, socket_name);
819b8f00
KL
1156 fail ();
1157 }
efb859b4 1158
9f637eea
GM
1159 /* See if the socket exists, and if it's owned by us. */
1160 sock_status = socket_status (server.sun_path);
152b6e83 1161 saved_errno = errno;
5c9659d3 1162 if (sock_status && default_sock)
efb859b4 1163 {
9f637eea
GM
1164 /* Failing that, see if LOGNAME or USER exist and differ from
1165 our euid. If so, look for a socket based on the UID
1166 associated with the name. This is reminiscent of the logic
1167 that init_editfns uses to set the global Vuser_full_name. */
e69233c2 1168
7ce8671d 1169 char *user_name = (char *) egetenv ("LOGNAME");
293f9f2a 1170
9f637eea 1171 if (!user_name)
7ce8671d 1172 user_name = (char *) egetenv ("USER");
e69233c2 1173
9f637eea
GM
1174 if (user_name)
1175 {
1176 struct passwd *pw = getpwnam (user_name);
293f9f2a 1177
9f637eea
GM
1178 if (pw && (pw->pw_uid != geteuid ()))
1179 {
1180 /* We're running under su, apparently. */
f77b11a0
JB
1181 socket_name = alloca (32 + strlen (tmpdir)
1182 + strlen (server_name));
1183 sprintf (socket_name, "%s/emacs%d/%s",
1184 tmpdir, (int) pw->pw_uid, server_name);
5c9659d3
SM
1185
1186 if (strlen (socket_name) < sizeof (server.sun_path))
1187 strcpy (server.sun_path, socket_name);
1188 else
1189 {
78da39c6 1190 message (TRUE, "%s: socket-name %s too long\n",
aa0b6932 1191 progname, socket_name);
65396510 1192 exit (EXIT_FAILURE);
5c9659d3
SM
1193 }
1194
9f637eea 1195 sock_status = socket_status (server.sun_path);
b80bf66e 1196 saved_errno = errno;
9f637eea 1197 }
293f9f2a
RS
1198 else
1199 errno = saved_errno;
9f637eea 1200 }
efb859b4 1201 }
e69233c2 1202
aa0b6932
JB
1203 switch (sock_status)
1204 {
1205 case 1:
974b73e8
KL
1206 /* There's a socket, but it isn't owned by us. This is OK if
1207 we are root. */
1208 if (0 != geteuid ())
1209 {
1210 message (TRUE, "%s: Invalid socket owner\n", progname);
aa0b6932 1211 return INVALID_SOCKET;
974b73e8
KL
1212 }
1213 break;
aa0b6932
JB
1214
1215 case 2:
974b73e8
KL
1216 /* `stat' failed */
1217 if (saved_errno == ENOENT)
1218 message (TRUE,
1219 "%s: can't find socket; have you started the server?\n\
45adde32 1220To start the server in Emacs, type \"M-x server-start\".\n",
aa0b6932 1221 progname);
974b73e8
KL
1222 else
1223 message (TRUE, "%s: can't stat %s: %s\n",
aa0b6932 1224 progname, server.sun_path, strerror (saved_errno));
974b73e8 1225 return INVALID_SOCKET;
aa0b6932 1226 }
efb859b4 1227 }
46cec291 1228
4e23f2ba
JB
1229 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2)
1230 < 0)
46cec291 1231 {
42073bfb 1232 message (TRUE, "%s: connect: %s\n", progname, strerror (errno));
aa0b6932 1233 return INVALID_SOCKET;
46cec291 1234 }
23a7488d 1235
aa0b6932
JB
1236 return s;
1237}
1238#endif /* ! NO_SOCKETS_IN_FILE_SYSTEM */
1239
1240HSOCKET
1241set_socket ()
1242{
b03d27bd 1243 HSOCKET s;
c0f342ab 1244
b03d27bd 1245 INITIALIZE ();
c0f342ab 1246
aa0b6932 1247#ifndef NO_SOCKETS_IN_FILE_SYSTEM
b03d27bd
JB
1248 /* Explicit --socket-name argument. */
1249 if (socket_name)
46cec291 1250 {
b03d27bd
JB
1251 s = set_local_socket ();
1252 if ((s != INVALID_SOCKET) || alternate_editor)
974b73e8 1253 return s;
355a326e 1254 message (TRUE, "%s: error accessing socket \"%s\"\n",
974b73e8 1255 progname, socket_name);
b03d27bd 1256 exit (EXIT_FAILURE);
46cec291 1257 }
b03d27bd
JB
1258#endif
1259
1260 /* Explicit --server-file arg or EMACS_SERVER_FILE variable. */
1261 if (!server_file)
7ce8671d 1262 server_file = egetenv ("EMACS_SERVER_FILE");
46cec291 1263
b03d27bd 1264 if (server_file)
23a7488d 1265 {
b03d27bd
JB
1266 s = set_tcp_socket ();
1267 if ((s != INVALID_SOCKET) || alternate_editor)
974b73e8 1268 return s;
c0f342ab 1269
78da39c6 1270 message (TRUE, "%s: error accessing server file \"%s\"\n",
974b73e8 1271 progname, server_file);
b03d27bd 1272 exit (EXIT_FAILURE);
23a7488d 1273 }
c0f342ab 1274
b03d27bd
JB
1275#ifndef NO_SOCKETS_IN_FILE_SYSTEM
1276 /* Implicit local socket. */
1277 s = set_local_socket ();
1278 if (s != INVALID_SOCKET)
1279 return s;
1280#endif
23a7488d 1281
b03d27bd
JB
1282 /* Implicit server file. */
1283 server_file = "server";
1284 s = set_tcp_socket ();
1285 if ((s != INVALID_SOCKET) || alternate_editor)
1286 return s;
1287
1288 /* No implicit or explicit socket, and no alternate editor. */
42073bfb 1289 message (TRUE, "%s: No socket or alternate editor. Please use:\n\n"
b03d27bd
JB
1290#ifndef NO_SOCKETS_IN_FILE_SYSTEM
1291"\t--socket-name\n"
ee6a193c 1292#endif
b03d27bd
JB
1293"\t--server-file (or environment variable EMACS_SERVER_FILE)\n\
1294\t--alternate-editor (or environment variable ALTERNATE_EDITOR)\n",
1295 progname);
1296 exit (EXIT_FAILURE);
aa0b6932 1297}
46cec291 1298
0e0dced5
JB
1299#ifdef WINDOWSNT
1300FARPROC set_fg; /* Pointer to AllowSetForegroundWindow. */
1301FARPROC get_wc; /* Pointer to RealGetWindowClassA. */
1302
1303BOOL CALLBACK
1304w32_find_emacs_process (hWnd, lParam)
1305 HWND hWnd;
1306 LPARAM lParam;
1307{
1308 DWORD pid;
1309 char class[6];
1310
1311 /* Reject any window not of class "Emacs". */
1312 if (! get_wc (hWnd, class, sizeof (class))
1313 || strcmp (class, "Emacs"))
1314 return TRUE;
1315
1316 /* We only need the process id, not the thread id. */
1317 (void) GetWindowThreadProcessId (hWnd, &pid);
1318
1319 /* Not the one we're looking for. */
1320 if (pid != (DWORD) emacs_pid) return TRUE;
1321
1322 /* OK, let's raise it. */
1323 set_fg (emacs_pid);
1324
1325 /* Stop enumeration. */
1326 return FALSE;
1327}
1328
1329/*
1330 * Search for a window of class "Emacs" and owned by a process with
1331 * process id = emacs_pid. If found, allow it to grab the focus.
1332 */
1333void
1334w32_give_focus ()
1335{
1336 HMODULE hUser32;
1337
71b8f735 1338 /* It shouldn't happen when dealing with TCP sockets. */
0e0dced5
JB
1339 if (!emacs_pid) return;
1340
1341 if (!(hUser32 = LoadLibrary ("user32.dll"))) return;
1342
1343 /* Modern Windows restrict which processes can set the foreground window.
1344 emacsclient can allow Emacs to grab the focus by calling the function
1345 AllowSetForegroundWindow. Unfortunately, older Windows (W95, W98 and
1346 NT) lack this function, so we have to check its availability. */
1347 if ((set_fg = GetProcAddress (hUser32, "AllowSetForegroundWindow"))
1348 && (get_wc = GetProcAddress (hUser32, "RealGetWindowClassA")))
1349 EnumWindows (w32_find_emacs_process, (LPARAM) 0);
1350
1351 FreeLibrary (hUser32);
1352}
1353#endif
1354
aa0b6932
JB
1355int
1356main (argc, argv)
1357 int argc;
1358 char **argv;
1359{
aa0b6932 1360 int i, rl, needlf = 0;
974b73e8 1361 char *cwd, *str;
aa0b6932
JB
1362 char string[BUFSIZ+1];
1363
974b73e8 1364 main_argv = argv;
aa0b6932
JB
1365 progname = argv[0];
1366
1367 /* Process options. */
1368 decode_options (argc, argv);
1369
974b73e8 1370 if ((argc - optind < 1) && !eval && !tty && !window_system)
23a7488d 1371 {
974b73e8
KL
1372 message (TRUE, "%s: file name or argument required\n"
1373 "Try `%s --help' for more information\n",
1374 progname, progname);
aa0b6932 1375 exit (EXIT_FAILURE);
23a7488d
RS
1376 }
1377
4b7b77f6 1378 if ((emacs_socket = set_socket ()) == INVALID_SOCKET)
974b73e8 1379 fail ();
aa0b6932 1380
974b73e8
KL
1381
1382 cwd = get_current_dir_name ();
46cec291
RS
1383 if (cwd == 0)
1384 {
1385 /* getwd puts message in STRING if it fails. */
974b73e8
KL
1386 message (TRUE, "%s: %s\n", progname,
1387 "Cannot get current working directory");
819b8f00 1388 fail ();
46cec291
RS
1389 }
1390
c66648e0 1391#ifdef WINDOWSNT
0e0dced5 1392 w32_give_focus ();
c66648e0
JB
1393#endif
1394
9002956f 1395 /* Send over our environment. */
59e085e0
KL
1396 if (!current_frame)
1397 {
1398 extern char **environ;
1399 int i;
1400 for (i = 0; environ[i]; i++)
1401 {
1402 char *name = xstrdup (environ[i]);
1403 char *value = strchr (name, '=');
486ba65f
JR
1404 send_to_emacs (emacs_socket, "-env ");
1405 quote_argument (emacs_socket, environ[i]);
1406 send_to_emacs (emacs_socket, " ");
59e085e0
KL
1407 }
1408 }
9002956f 1409
2828d5f9
KL
1410 /* Send over our current directory. */
1411 if (!current_frame)
1412 {
486ba65f
JR
1413 send_to_emacs (emacs_socket, "-dir ");
1414 quote_argument (emacs_socket, cwd);
1415 send_to_emacs (emacs_socket, "/");
1416 send_to_emacs (emacs_socket, " ");
2828d5f9
KL
1417 }
1418
6afdd335 1419 retry:
5212210c 1420 if (nowait)
486ba65f 1421 send_to_emacs (emacs_socket, "-nowait ");
292d74a3 1422
92071250 1423 if (current_frame)
486ba65f 1424 send_to_emacs (emacs_socket, "-current-frame ");
c0f342ab 1425
30be2360 1426 if (display)
87209357 1427 {
486ba65f
JR
1428 send_to_emacs (emacs_socket, "-display ");
1429 quote_argument (emacs_socket, display);
1430 send_to_emacs (emacs_socket, " ");
87209357 1431 }
30be2360 1432
77134727 1433 if (tty)
9628b887 1434 {
7ce8671d 1435 char *type = egetenv ("TERM");
b2ff54a0
JR
1436 char *tty_name = NULL;
1437#ifndef WINDOWSNT
d5dabcb5 1438 tty_name = ttyname (fileno (stdout));
b2ff54a0 1439#endif
0b0d3e0b 1440
4d553a13 1441 if (! tty_name)
2fc0cf2a 1442 {
974b73e8 1443 message (TRUE, "%s: could not get terminal name\n", progname);
2fc0cf2a
KL
1444 fail ();
1445 }
1446
1447 if (! type)
1448 {
974b73e8 1449 message (TRUE, "%s: please set the TERM variable to your terminal type\n",
2fc0cf2a
KL
1450 progname);
1451 fail ();
1452 }
1453
1454 if (! strcmp (type, "eterm"))
1455 {
1456 /* This causes nasty, MULTI_KBOARD-related input lockouts. */
974b73e8 1457 message (TRUE, "%s: opening a frame in an Emacs term buffer"
2fc0cf2a
KL
1458 " is not supported\n", progname);
1459 fail ();
1460 }
b2ff54a0 1461#if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
4d553a13 1462 init_signals ();
b2ff54a0 1463#endif
0b0d3e0b 1464
486ba65f
JR
1465 send_to_emacs (emacs_socket, "-tty ");
1466 quote_argument (emacs_socket, tty_name);
1467 send_to_emacs (emacs_socket, " ");
1468 quote_argument (emacs_socket, type);
1469 send_to_emacs (emacs_socket, " ");
9628b887 1470 }
77134727
KL
1471
1472 if (window_system)
486ba65f 1473 send_to_emacs (emacs_socket, "-window-system ");
0b0d3e0b 1474
87209357 1475 if ((argc - optind > 0))
5212210c 1476 {
87209357 1477 for (i = optind; i < argc; i++)
46cec291 1478 {
0b0d3e0b
KL
1479 int relative = 0;
1480
87209357 1481 if (eval)
0b0d3e0b 1482 {
974b73e8 1483 /* Don't prepend cwd or anything like that. */
486ba65f
JR
1484 send_to_emacs (emacs_socket, "-eval ");
1485 quote_argument (emacs_socket, argv[i]);
1486 send_to_emacs (emacs_socket, " ");
0b0d3e0b
KL
1487 continue;
1488 }
1489
1490 if (*argv[i] == '+')
1491 {
87209357
EZ
1492 char *p = argv[i] + 1;
1493 while (isdigit ((unsigned char) *p) || *p == ':') p++;
0b0d3e0b
KL
1494 if (*p == 0)
1495 {
486ba65f
JR
1496 send_to_emacs (emacs_socket, "-position ");
1497 quote_argument (emacs_socket, argv[i]);
1498 send_to_emacs (emacs_socket, " ");
0b0d3e0b
KL
1499 continue;
1500 }
1501 else
1502 relative = 1;
1503 }
50f271cb
JB
1504 else if (! file_name_absolute_p (argv[i]))
1505#ifndef WINDOWSNT
1506 relative = 1;
1507#else
1508 /* Call GetFullPathName so filenames of the form X:Y, where X is
1509 a valid drive designator, are interpreted as drive:path, not
1510 file:stream, and treated as absolute.
1511 The user can still pass a file:stream if desired (for example,
31e25350 1512 .\X:Y), but it is not very useful, as Emacs currently does a
c966fd27 1513 very bad job of dealing with NTFS streams. */
50f271cb
JB
1514 {
1515 char *filename = (char *) xmalloc (MAX_PATH);
1516 DWORD size;
1517
1518 size = GetFullPathName (argv[i], MAX_PATH, filename, NULL);
1519 if (size > 0 && size < MAX_PATH)
1520 argv[i] = filename;
1521 else
1522 {
1523 relative = 1;
1524 free (filename);
1525 }
1526 }
1527#endif
0b0d3e0b 1528
486ba65f 1529 send_to_emacs (emacs_socket, "-file ");
0b0d3e0b
KL
1530 if (relative)
1531 {
486ba65f
JR
1532 quote_argument (emacs_socket, cwd);
1533 send_to_emacs (emacs_socket, "/");
0b0d3e0b 1534 }
486ba65f
JR
1535 quote_argument (emacs_socket, argv[i]);
1536 send_to_emacs (emacs_socket, " ");
0b0d3e0b 1537 }
46cec291 1538 }
87209357
EZ
1539 else
1540 {
77134727 1541 if (!tty && !window_system)
9628b887
KL
1542 {
1543 while ((str = fgets (string, BUFSIZ, stdin)))
1544 {
0b0d3e0b 1545 if (eval)
486ba65f 1546 send_to_emacs (emacs_socket, "-eval ");
0b0d3e0b 1547 else
486ba65f
JR
1548 send_to_emacs (emacs_socket, "-file ");
1549 quote_argument (emacs_socket, str);
9628b887 1550 }
486ba65f 1551 send_to_emacs (emacs_socket, " ");
9628b887 1552 }
87209357 1553 }
0b0d3e0b 1554
486ba65f 1555 send_to_emacs (emacs_socket, "\n");
46cec291 1556
fc2040c0
KL
1557 /* Wait for an answer. */
1558 if (!eval && !tty && !nowait)
30be2360
SM
1559 {
1560 printf ("Waiting for Emacs...");
1561 needlf = 2;
1562 }
46cec291 1563 fflush (stdout);
0b0d3e0b 1564 fsync (1);
46cec291 1565
3cf8c6aa 1566 /* Now, wait for an answer and print any messages. */
4b7b77f6 1567 while ((rl = recv (emacs_socket, string, BUFSIZ, 0)) > 0)
3cf8c6aa 1568 {
974b73e8
KL
1569 char *p;
1570 string[rl] = '\0';
1571
1572 p = string + strlen (string) - 1;
1573 while (p > string && *p == '\n')
0b0d3e0b
KL
1574 *p-- = 0;
1575
31fa6595 1576 if (strprefix ("-emacs-pid ", string))
4d553a13 1577 {
6afdd335 1578 /* -emacs-pid PID: The process id of the Emacs process. */
77134727
KL
1579 emacs_pid = strtol (string + strlen ("-emacs-pid"), NULL, 10);
1580 }
974b73e8 1581 else if (strprefix ("-window-system-unsupported ", string))
6afdd335
KL
1582 {
1583 /* -window-system-unsupported: Emacs was compiled without X
1584 support. Try again on the terminal. */
1585 window_system = 0;
1586 nowait = 0;
1587 tty = 1;
1588 goto retry;
1589 }
974b73e8 1590 else if (strprefix ("-print ", string))
77134727 1591 {
6afdd335 1592 /* -print STRING: Print STRING on the terminal. */
974b73e8 1593 str = unquote_argument (string + strlen ("-print "));
0b0d3e0b 1594 if (needlf)
77134727 1595 printf ("\n");
0b0d3e0b
KL
1596 printf ("%s", str);
1597 needlf = str[0] == '\0' ? needlf : str[strlen (str) - 1] != '\n';
77134727 1598 }
974b73e8 1599 else if (strprefix ("-error ", string))
77134727 1600 {
6afdd335 1601 /* -error DESCRIPTION: Signal an error on the terminal. */
974b73e8 1602 str = unquote_argument (string + strlen ("-error "));
0b0d3e0b
KL
1603 if (needlf)
1604 printf ("\n");
974b73e8 1605 fprintf (stderr, "*ERROR*: %s", str);
0b0d3e0b
KL
1606 needlf = str[0] == '\0' ? needlf : str[strlen (str) - 1] != '\n';
1607 }
c801ad51 1608#ifdef SIGSTOP
382707ec 1609 else if (strprefix ("-suspend ", string))
0b0d3e0b 1610 {
6afdd335 1611 /* -suspend: Suspend this terminal, i.e., stop the process. */
0b0d3e0b 1612 if (needlf)
77134727 1613 printf ("\n");
0b0d3e0b
KL
1614 needlf = 0;
1615 kill (0, SIGSTOP);
4d553a13 1616 }
b2ff54a0 1617#endif
4d553a13
KL
1618 else
1619 {
6afdd335 1620 /* Unknown command. */
0b0d3e0b 1621 if (needlf)
4d553a13 1622 printf ("\n");
974b73e8
KL
1623 printf ("*ERROR*: Unknown message: %s", string);
1624 needlf = string[0] == '\0' ? needlf : string[strlen (string) - 1] != '\n';
4d553a13 1625 }
3cf8c6aa
SM
1626 }
1627
1628 if (needlf)
1629 printf ("\n");
1630 fflush (stdout);
0b0d3e0b 1631 fsync (1);
23a7488d 1632
4b7b77f6 1633 CLOSE_SOCKET (emacs_socket);
65396510 1634 return EXIT_SUCCESS;
46cec291
RS
1635}
1636
1e7823d0 1637#endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
aa0b6932 1638
27711600
RM
1639\f
1640#ifndef HAVE_STRERROR
1641char *
1642strerror (errnum)
1643 int errnum;
1644{
1645 extern char *sys_errlist[];
1646 extern int sys_nerr;
1647
1648 if (errnum >= 0 && errnum < sys_nerr)
1649 return sys_errlist[errnum];
1650 return (char *) "Unknown error";
1651}
1652
1653#endif /* ! HAVE_STRERROR */
ab5796a9
MB
1654
1655/* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
1656 (do not change this comment) */
65396510
TTN
1657
1658/* emacsclient.c ends here */