* server.el, emacsclient.c: Use TMPDIR (default /tmp) instead of hardcoded /tmp.
[bpt/emacs.git] / lib-src / emacsclient.c
... / ...
CommitLineData
1/* Client process that communicates with GNU Emacs acting as server.
2 Copyright (C) 1986, 1987, 1994, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
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
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20
21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
24
25#ifdef WINDOWSNT
26
27/* config.h defines these, which disables sockets altogether! */
28# undef _WINSOCKAPI_
29# undef _WINSOCK_H
30
31# include <malloc.h>
32# include <stdlib.h>
33# include <windows.h>
34# include <commctrl.h>
35
36# define NO_SOCKETS_IN_FILE_SYSTEM
37
38# define HSOCKET SOCKET
39# define CLOSE_SOCKET closesocket
40# define INITIALIZE() (initialize_sockets ())
41
42#else /* !WINDOWSNT */
43
44# include <sys/types.h>
45
46# ifdef HAVE_INET_SOCKETS
47# include <netinet/in.h>
48# endif
49
50# define INVALID_SOCKET -1
51# define HSOCKET int
52# define CLOSE_SOCKET close
53# define INITIALIZE()
54
55#endif /* !WINDOWSNT */
56
57#undef signal
58
59#include <stdarg.h>
60#include <ctype.h>
61#include <stdio.h>
62#include "getopt.h"
63#ifdef HAVE_UNISTD_H
64#include <unistd.h>
65#endif
66
67#ifdef WINDOWSNT
68# include <io.h>
69#else /* not WINDOWSNT */
70# include <pwd.h>
71#endif /* not WINDOWSNT */
72#include <sys/stat.h>
73
74#include <signal.h>
75#include <errno.h>
76
77\f
78char *getenv (), *getwd ();
79char *(getcwd) ();
80
81#ifdef WINDOWSNT
82char *w32_getenv ();
83#define egetenv(VAR) w32_getenv(VAR)
84#else
85#define egetenv(VAR) getenv(VAR)
86#endif
87
88#ifndef VERSION
89#define VERSION "unspecified"
90#endif
91\f
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
113/* Name used to invoke this program. */
114char *progname;
115
116/* The second argument to main. */
117char **main_argv;
118
119/* Nonzero means don't wait for a response from Emacs. --no-wait. */
120int nowait = 0;
121
122/* Nonzero means args are expressions to be evaluated. --eval. */
123int eval = 0;
124
125/* Nonzero means don't open a new frame. Inverse of --create-frame. */
126int current_frame = 1;
127
128/* Nonzero means open a new graphical frame. */
129int window_system = 0;
130
131/* The display on which Emacs should work. --display. */
132char *display = NULL;
133
134/* Nonzero means open a new Emacs frame on the current terminal. */
135int tty = 0;
136
137/* If non-NULL, the name of an editor to fallback to if the server
138 is not running. --alternate-editor. */
139const char *alternate_editor = NULL;
140
141/* If non-NULL, the filename of the UNIX socket. */
142char *socket_name = NULL;
143
144/* If non-NULL, the filename of the authentication file. */
145char *server_file = NULL;
146
147/* PID of the Emacs server process. */
148int emacs_pid = 0;
149
150void print_help_and_exit () NO_RETURN;
151
152struct option longopts[] =
153{
154 { "no-wait", no_argument, NULL, 'n' },
155 { "eval", no_argument, NULL, 'e' },
156 { "help", no_argument, NULL, 'H' },
157 { "version", no_argument, NULL, 'V' },
158 { "tty", no_argument, NULL, 't' },
159 { "nw", no_argument, NULL, 't' },
160 { "create-frame", no_argument, NULL, 'c' },
161 { "alternate-editor", required_argument, NULL, 'a' },
162#ifndef NO_SOCKETS_IN_FILE_SYSTEM
163 { "socket-name", required_argument, NULL, 's' },
164#endif
165 { "server-file", required_argument, NULL, 'f' },
166#ifndef WINDOWSNT
167 { "display", required_argument, NULL, 'd' },
168#endif
169 { 0, 0, 0, 0 }
170};
171
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
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
224/* Return the current working directory. Returns NULL on errors.
225 Any other returned value must be freed with free. This is used
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. */
236 if ((pwd = egetenv ("PWD")) != 0
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
296#ifdef WINDOWSNT
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
383int
384w32_window_app ()
385{
386 static int window_app = -1;
387 char szTitle[MAX_PATH];
388
389 if (window_app < 0)
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 }
397
398 return window_app;
399}
400
401/*
402 execvp wrapper for Windows. Quotes arguments with embedded spaces.
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 */
435
436/* Display a normal or error message.
437 On Windows, use a message box if compiled as a Windows app. */
438void
439message (int is_error, char *message, ...)
440{
441 char msg [2048];
442 va_list args;
443
444 va_start (args, message);
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
458 {
459 FILE *f = is_error ? stderr : stdout;
460
461 fputs (msg, f);
462 fflush (f);
463 }
464}
465
466/* Decode the options from argv and argc.
467 The global variable `optind' will say how many arguments we used up. */
468
469void
470decode_options (argc, argv)
471 int argc;
472 char **argv;
473{
474 alternate_editor = egetenv ("ALTERNATE_EDITOR");
475
476 while (1)
477 {
478 int opt = getopt_long_only (argc, argv,
479#ifndef NO_SOCKETS_IN_FILE_SYSTEM
480 "VHnea:s:f:d:tc",
481#else
482 "VHnea:f:d:tc",
483#endif
484 longopts, 0);
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;
495
496 case 'a':
497 alternate_editor = optarg;
498 break;
499
500#ifndef NO_SOCKETS_IN_FILE_SYSTEM
501 case 's':
502 socket_name = optarg;
503 break;
504#endif
505
506 case 'f':
507 server_file = optarg;
508 break;
509
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 */
515 case 'd':
516 display = optarg;
517 break;
518#endif
519
520 case 'n':
521 nowait = 1;
522 break;
523
524 case 'e':
525 eval = 1;
526 break;
527
528 case 'V':
529 message (FALSE, "emacsclient %s\n", VERSION);
530 exit (EXIT_SUCCESS);
531 break;
532
533 case 't':
534 tty = 1;
535 current_frame = 0;
536 break;
537
538 case 'c':
539 current_frame = 0;
540 break;
541
542 case 'H':
543 print_help_and_exit ();
544 break;
545
546 default:
547 message (TRUE, "Try `%s --help' for more information\n", progname);
548 exit (EXIT_FAILURE);
549 break;
550 }
551 }
552
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. */
561 if (!current_frame && !tty && !display)
562 display = egetenv ("DISPLAY");
563
564 if (display && strlen (display) == 0)
565 display = NULL;
566
567 if (!tty && display)
568 window_system = 1;
569#if !defined (WINDOWSNT)
570 else if (!current_frame)
571 tty = 1;
572#endif
573
574 /* --no-wait implies --current-frame on ttys when there are file
575 arguments or expressions given. */
576 if (nowait && tty && argc - optind > 0)
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;
587}
588
589\f
590void
591print_help_and_exit ()
592{
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. */
597 message (FALSE,
598 "Usage: %s [OPTIONS] FILE...\n\
599Tell the Emacs server to visit the specified files.\n\
600Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
601\n\
602The following OPTIONS are accepted:\n\
603-V, --version Just print version info and return\n\
604-H, --help Print this usage information message\n\
605-nw, -t, --tty Open a new Emacs frame on the current terminal\n\
606-c, --create-frame Create a new frame instead of trying to\n\
607 use the current Emacs frame\n\
608-e, --eval Evaluate the FILE arguments as ELisp expressions\n\
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"
611#ifndef NO_SOCKETS_IN_FILE_SYSTEM
612"-s, --socket-name=FILENAME\n\
613 Set filename of the UNIX socket for communication\n"
614#endif
615"-f, --server-file=FILENAME\n\
616 Set filename of the TCP authentication file\n\
617-a, --alternate-editor=EDITOR\n\
618 Editor to fallback to if the server is not running\n\
619\n\
620Report bugs to bug-gnu-emacs@gnu.org.\n", progname);
621 exit (EXIT_SUCCESS);
622}
623
624/*
625 Try to run a different command, or --if no alternate editor is
626 defined-- exit with an errorcode.
627 Uses argv, but gets it from the global variable main_argv.
628*/
629void
630fail (void)
631{
632 if (alternate_editor)
633 {
634 int i = optind - 1;
635
636 execvp (alternate_editor, main_argv + i);
637 message (TRUE, "%s: error executing alternate editor \"%s\"\n",
638 progname, alternate_editor);
639 }
640 exit (EXIT_FAILURE);
641}
642
643\f
644#if !defined (HAVE_SOCKETS) || !defined (HAVE_INET_SOCKETS)
645
646int
647main (argc, argv)
648 int argc;
649 char **argv;
650{
651 main_argv = argv;
652 progname = argv[0];
653 message (TRUE, "%s: Sorry, the Emacs server is supported only\n"
654 "on systems with Berkeley sockets.\n",
655 argv[0]);
656 fail ();
657}
658
659#else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
660
661#ifdef WINDOWSNT
662# include <winsock2.h>
663#else
664# include <sys/types.h>
665# include <sys/socket.h>
666# include <sys/un.h>
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. */
678/* Socket used to communicate with the Emacs server process. */
679HSOCKET emacs_socket = 0;
680
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
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. */
708void
709send_to_emacs (s, data)
710 HSOCKET s;
711 char *data;
712{
713 while (data)
714 {
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 }
740 }
741}
742
743\f
744/* In STR, insert a & before each &, each space, each newline, and
745 any initial -. Change spaces to underscores, too, so that the
746 return value never contains a space.
747
748 Does not change the string. Outputs the result to STREAM. */
749void
750quote_argument (s, str)
751 HSOCKET s;
752 char *str;
753{
754 char *copy = (char *) xmalloc (strlen (str) * 2 + 1);
755 char *p, *q;
756
757 p = str;
758 q = copy;
759 while (*p)
760 {
761 if (*p == ' ')
762 {
763 *q++ = '&';
764 *q++ = '_';
765 p++;
766 }
767 else if (*p == '\n')
768 {
769 *q++ = '&';
770 *q++ = 'n';
771 p++;
772 }
773 else
774 {
775 if (*p == '&' || (*p == '-' && p == str))
776 *q++ = '&';
777 *q++ = *p++;
778 }
779 }
780 *q++ = 0;
781
782 send_to_emacs (s, copy);
783
784 free (copy);
785}
786
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
822\f
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
837 /* X:\xxx is always absolute. */
838 if (isalpha (filename[0])
839 && filename[1] == ':' && (filename[2] == '\\' || filename[2] == '/'))
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
849#ifdef WINDOWSNT
850/* Wrapper to make WSACleanup a cdecl, as required by atexit. */
851void
852__cdecl close_winsock ()
853{
854 WSACleanup ();
855}
856
857/* Initialize the WinSock2 library. */
858void
859initialize_sockets ()
860{
861 WSADATA wsaData;
862
863 if (WSAStartup (MAKEWORD (2, 0), &wsaData))
864 {
865 message (TRUE, "%s: error initializing WinSock2\n", progname);
866 exit (EXIT_FAILURE);
867 }
868
869 atexit (close_winsock);
870}
871#endif /* WINDOWSNT */
872
873\f
874/*
875 * Read the information needed to set up a TCP comm channel with
876 * the Emacs server: host, port, pid and authentication string.
877 */
878int
879get_server_config (server, authentication)
880 struct sockaddr_in *server;
881 char *authentication;
882{
883 char dotted[32];
884 char *port;
885 char *pid;
886 FILE *config = NULL;
887
888 if (file_name_absolute_p (server_file))
889 config = fopen (server_file, "rb");
890 else
891 {
892 char *home = egetenv ("HOME");
893
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 }
900#ifdef WINDOWSNT
901 if (!config && (home = egetenv ("APPDATA")))
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
908 }
909
910 if (! config)
911 return FALSE;
912
913 if (fgets (dotted, sizeof dotted, config)
914 && (port = strchr (dotted, ':'))
915 && (pid = strchr (port, ' ')))
916 {
917 *port++ = '\0';
918 *pid++ = '\0';
919 }
920 else
921 {
922 message (TRUE, "%s: invalid configuration info\n", progname);
923 exit (EXIT_FAILURE);
924 }
925
926 server->sin_family = AF_INET;
927 server->sin_addr.s_addr = inet_addr (dotted);
928 server->sin_port = htons (atoi (port));
929
930 if (! fread (authentication, AUTH_KEY_LENGTH, 1, config))
931 {
932 message (TRUE, "%s: cannot read authentication info\n", progname);
933 exit (EXIT_FAILURE);
934 }
935
936 fclose (config);
937
938 emacs_pid = atoi (pid);
939
940 return TRUE;
941}
942
943HSOCKET
944set_tcp_socket ()
945{
946 HSOCKET s;
947 struct sockaddr_in server;
948 struct linger l_arg = {1, 1};
949 char auth_string[AUTH_KEY_LENGTH + 1];
950
951 if (! get_server_config (&server, auth_string))
952 return INVALID_SOCKET;
953
954 if (server.sin_addr.s_addr != inet_addr ("127.0.0.1"))
955 message (FALSE, "%s: connected to remote socket at %s\n",
956 progname, inet_ntoa (server.sin_addr));
957
958 /*
959 * Open up an AF_INET socket
960 */
961 if ((s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0)
962 {
963 sock_err_message ("socket");
964 return INVALID_SOCKET;
965 }
966
967 /*
968 * Set up the socket
969 */
970 if (connect (s, (struct sockaddr *) &server, sizeof server) < 0)
971 {
972 sock_err_message ("connect");
973 return INVALID_SOCKET;
974 }
975
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
983 send_to_emacs (s, "-auth ");
984 send_to_emacs (s, auth_string);
985 send_to_emacs (s, " ");
986
987 return s;
988}
989
990
991/* Returns 1 if PREFIX is a prefix of STRING. */
992static int
993strprefix (char *prefix, char *string)
994{
995 return !strncmp (prefix, string, strlen (prefix));
996}
997
998
999#if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
1000
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;
1017
1018 return 0;
1019}
1020
1021\f
1022/* A signal handler that passes the signal to the Emacs process.
1023 Useful for SIGWINCH. */
1024
1025SIGTYPE
1026pass_signal_to_emacs (int signalnum)
1027{
1028 int old_errno = errno;
1029
1030 if (emacs_pid)
1031 kill (emacs_pid, signalnum);
1032
1033 signal (signalnum, pass_signal_to_emacs);
1034 errno = old_errno;
1035}
1036
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. */
1048 send_to_emacs (emacs_socket, "-resume \n");
1049 }
1050 else
1051 {
1052 /* We are in the background; cancel the continue. */
1053 kill (getpid (), SIGSTOP);
1054 }
1055
1056 signal (signalnum, handle_sigcont);
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;
1071
1072 if (emacs_socket)
1073 send_to_emacs (emacs_socket, "-suspend \n");
1074
1075 /* Unblock this signal and call the default handler by temporarily
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}
1086/* Set up signal handlers before opening a frame on the current tty. */
1087
1088void
1089init_signals (void)
1090{
1091 /* Set up signal handlers. */
1092 signal (SIGWINCH, pass_signal_to_emacs);
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
1098 signal (SIGINT, pass_signal_to_emacs);
1099 signal (SIGQUIT, pass_signal_to_emacs);
1100#endif
1101
1102 signal (SIGCONT, handle_sigcont);
1103 signal (SIGTSTP, handle_sigtstp);
1104 signal (SIGTTOU, handle_sigtstp);
1105}
1106
1107
1108HSOCKET
1109set_local_socket ()
1110{
1111 HSOCKET s;
1112 struct sockaddr_un server;
1113
1114 /*
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 {
1120 message (TRUE, "%s: socket: %s\n", progname, strerror (errno));
1121 return INVALID_SOCKET;
1122 }
1123
1124 server.sun_family = AF_UNIX;
1125
1126 {
1127 int sock_status = 0;
1128 int default_sock = !socket_name;
1129 int saved_errno = 0;
1130 char *server_name = "server";
1131 char *tmpdir;
1132
1133 if (socket_name && !index (socket_name, '/') && !index (socket_name, '\\'))
1134 { /* socket_name is a file name component. */
1135 server_name = socket_name;
1136 socket_name = NULL;
1137 default_sock = 1; /* Try both UIDs. */
1138 }
1139
1140 if (default_sock)
1141 {
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);
1148 }
1149
1150 if (strlen (socket_name) < sizeof (server.sun_path))
1151 strcpy (server.sun_path, socket_name);
1152 else
1153 {
1154 message (TRUE, "%s: socket-name %s too long\n",
1155 progname, socket_name);
1156 fail ();
1157 }
1158
1159 /* See if the socket exists, and if it's owned by us. */
1160 sock_status = socket_status (server.sun_path);
1161 saved_errno = errno;
1162 if (sock_status && default_sock)
1163 {
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. */
1168
1169 char *user_name = (char *) egetenv ("LOGNAME");
1170
1171 if (!user_name)
1172 user_name = (char *) egetenv ("USER");
1173
1174 if (user_name)
1175 {
1176 struct passwd *pw = getpwnam (user_name);
1177
1178 if (pw && (pw->pw_uid != geteuid ()))
1179 {
1180 /* We're running under su, apparently. */
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);
1185
1186 if (strlen (socket_name) < sizeof (server.sun_path))
1187 strcpy (server.sun_path, socket_name);
1188 else
1189 {
1190 message (TRUE, "%s: socket-name %s too long\n",
1191 progname, socket_name);
1192 exit (EXIT_FAILURE);
1193 }
1194
1195 sock_status = socket_status (server.sun_path);
1196 saved_errno = errno;
1197 }
1198 else
1199 errno = saved_errno;
1200 }
1201 }
1202
1203 switch (sock_status)
1204 {
1205 case 1:
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);
1211 return INVALID_SOCKET;
1212 }
1213 break;
1214
1215 case 2:
1216 /* `stat' failed */
1217 if (saved_errno == ENOENT)
1218 message (TRUE,
1219 "%s: can't find socket; have you started the server?\n\
1220To start the server in Emacs, type \"M-x server-start\".\n",
1221 progname);
1222 else
1223 message (TRUE, "%s: can't stat %s: %s\n",
1224 progname, server.sun_path, strerror (saved_errno));
1225 return INVALID_SOCKET;
1226 }
1227 }
1228
1229 if (connect (s, (struct sockaddr *) &server, strlen (server.sun_path) + 2)
1230 < 0)
1231 {
1232 message (TRUE, "%s: connect: %s\n", progname, strerror (errno));
1233 return INVALID_SOCKET;
1234 }
1235
1236 return s;
1237}
1238#endif /* ! NO_SOCKETS_IN_FILE_SYSTEM */
1239
1240HSOCKET
1241set_socket ()
1242{
1243 HSOCKET s;
1244
1245 INITIALIZE ();
1246
1247#ifndef NO_SOCKETS_IN_FILE_SYSTEM
1248 /* Explicit --socket-name argument. */
1249 if (socket_name)
1250 {
1251 s = set_local_socket ();
1252 if ((s != INVALID_SOCKET) || alternate_editor)
1253 return s;
1254 message (TRUE, "%s: error accessing socket \"%s\"\n",
1255 progname, socket_name);
1256 exit (EXIT_FAILURE);
1257 }
1258#endif
1259
1260 /* Explicit --server-file arg or EMACS_SERVER_FILE variable. */
1261 if (!server_file)
1262 server_file = egetenv ("EMACS_SERVER_FILE");
1263
1264 if (server_file)
1265 {
1266 s = set_tcp_socket ();
1267 if ((s != INVALID_SOCKET) || alternate_editor)
1268 return s;
1269
1270 message (TRUE, "%s: error accessing server file \"%s\"\n",
1271 progname, server_file);
1272 exit (EXIT_FAILURE);
1273 }
1274
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
1281
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. */
1289 message (TRUE, "%s: No socket or alternate editor. Please use:\n\n"
1290#ifndef NO_SOCKETS_IN_FILE_SYSTEM
1291"\t--socket-name\n"
1292#endif
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);
1297}
1298
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
1338 /* It shouldn't happen when dealing with TCP sockets. */
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
1355int
1356main (argc, argv)
1357 int argc;
1358 char **argv;
1359{
1360 int i, rl, needlf = 0;
1361 char *cwd, *str;
1362 char string[BUFSIZ+1];
1363
1364 main_argv = argv;
1365 progname = argv[0];
1366
1367 /* Process options. */
1368 decode_options (argc, argv);
1369
1370 if ((argc - optind < 1) && !eval && !tty && !window_system)
1371 {
1372 message (TRUE, "%s: file name or argument required\n"
1373 "Try `%s --help' for more information\n",
1374 progname, progname);
1375 exit (EXIT_FAILURE);
1376 }
1377
1378 if ((emacs_socket = set_socket ()) == INVALID_SOCKET)
1379 fail ();
1380
1381
1382 cwd = get_current_dir_name ();
1383 if (cwd == 0)
1384 {
1385 /* getwd puts message in STRING if it fails. */
1386 message (TRUE, "%s: %s\n", progname,
1387 "Cannot get current working directory");
1388 fail ();
1389 }
1390
1391#ifdef WINDOWSNT
1392 w32_give_focus ();
1393#endif
1394
1395 /* Send over our environment. */
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, '=');
1404 send_to_emacs (emacs_socket, "-env ");
1405 quote_argument (emacs_socket, environ[i]);
1406 send_to_emacs (emacs_socket, " ");
1407 }
1408 }
1409
1410 /* Send over our current directory. */
1411 if (!current_frame)
1412 {
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, " ");
1417 }
1418
1419 retry:
1420 if (nowait)
1421 send_to_emacs (emacs_socket, "-nowait ");
1422
1423 if (current_frame)
1424 send_to_emacs (emacs_socket, "-current-frame ");
1425
1426 if (display)
1427 {
1428 send_to_emacs (emacs_socket, "-display ");
1429 quote_argument (emacs_socket, display);
1430 send_to_emacs (emacs_socket, " ");
1431 }
1432
1433 if (tty)
1434 {
1435 char *type = egetenv ("TERM");
1436 char *tty_name = NULL;
1437#ifndef WINDOWSNT
1438 tty_name = ttyname (fileno (stdout));
1439#endif
1440
1441 if (! tty_name)
1442 {
1443 message (TRUE, "%s: could not get terminal name\n", progname);
1444 fail ();
1445 }
1446
1447 if (! type)
1448 {
1449 message (TRUE, "%s: please set the TERM variable to your terminal type\n",
1450 progname);
1451 fail ();
1452 }
1453
1454 if (! strcmp (type, "eterm"))
1455 {
1456 /* This causes nasty, MULTI_KBOARD-related input lockouts. */
1457 message (TRUE, "%s: opening a frame in an Emacs term buffer"
1458 " is not supported\n", progname);
1459 fail ();
1460 }
1461#if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
1462 init_signals ();
1463#endif
1464
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, " ");
1470 }
1471
1472 if (window_system)
1473 send_to_emacs (emacs_socket, "-window-system ");
1474
1475 if ((argc - optind > 0))
1476 {
1477 for (i = optind; i < argc; i++)
1478 {
1479 int relative = 0;
1480
1481 if (eval)
1482 {
1483 /* Don't prepend cwd or anything like that. */
1484 send_to_emacs (emacs_socket, "-eval ");
1485 quote_argument (emacs_socket, argv[i]);
1486 send_to_emacs (emacs_socket, " ");
1487 continue;
1488 }
1489
1490 if (*argv[i] == '+')
1491 {
1492 char *p = argv[i] + 1;
1493 while (isdigit ((unsigned char) *p) || *p == ':') p++;
1494 if (*p == 0)
1495 {
1496 send_to_emacs (emacs_socket, "-position ");
1497 quote_argument (emacs_socket, argv[i]);
1498 send_to_emacs (emacs_socket, " ");
1499 continue;
1500 }
1501 else
1502 relative = 1;
1503 }
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,
1512 .\X:Y), but it is not very useful, as Emacs currently does a
1513 very bad job of dealing with NTFS streams. */
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
1528
1529 send_to_emacs (emacs_socket, "-file ");
1530 if (relative)
1531 {
1532 quote_argument (emacs_socket, cwd);
1533 send_to_emacs (emacs_socket, "/");
1534 }
1535 quote_argument (emacs_socket, argv[i]);
1536 send_to_emacs (emacs_socket, " ");
1537 }
1538 }
1539 else
1540 {
1541 if (!tty && !window_system)
1542 {
1543 while ((str = fgets (string, BUFSIZ, stdin)))
1544 {
1545 if (eval)
1546 send_to_emacs (emacs_socket, "-eval ");
1547 else
1548 send_to_emacs (emacs_socket, "-file ");
1549 quote_argument (emacs_socket, str);
1550 }
1551 send_to_emacs (emacs_socket, " ");
1552 }
1553 }
1554
1555 send_to_emacs (emacs_socket, "\n");
1556
1557 /* Wait for an answer. */
1558 if (!eval && !tty && !nowait)
1559 {
1560 printf ("Waiting for Emacs...");
1561 needlf = 2;
1562 }
1563 fflush (stdout);
1564 fsync (1);
1565
1566 /* Now, wait for an answer and print any messages. */
1567 while ((rl = recv (emacs_socket, string, BUFSIZ, 0)) > 0)
1568 {
1569 char *p;
1570 string[rl] = '\0';
1571
1572 p = string + strlen (string) - 1;
1573 while (p > string && *p == '\n')
1574 *p-- = 0;
1575
1576 if (strprefix ("-emacs-pid ", string))
1577 {
1578 /* -emacs-pid PID: The process id of the Emacs process. */
1579 emacs_pid = strtol (string + strlen ("-emacs-pid"), NULL, 10);
1580 }
1581 else if (strprefix ("-window-system-unsupported ", string))
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 }
1590 else if (strprefix ("-print ", string))
1591 {
1592 /* -print STRING: Print STRING on the terminal. */
1593 str = unquote_argument (string + strlen ("-print "));
1594 if (needlf)
1595 printf ("\n");
1596 printf ("%s", str);
1597 needlf = str[0] == '\0' ? needlf : str[strlen (str) - 1] != '\n';
1598 }
1599 else if (strprefix ("-error ", string))
1600 {
1601 /* -error DESCRIPTION: Signal an error on the terminal. */
1602 str = unquote_argument (string + strlen ("-error "));
1603 if (needlf)
1604 printf ("\n");
1605 fprintf (stderr, "*ERROR*: %s", str);
1606 needlf = str[0] == '\0' ? needlf : str[strlen (str) - 1] != '\n';
1607 }
1608#ifdef SIGSTOP
1609 else if (strprefix ("-suspend ", string))
1610 {
1611 /* -suspend: Suspend this terminal, i.e., stop the process. */
1612 if (needlf)
1613 printf ("\n");
1614 needlf = 0;
1615 kill (0, SIGSTOP);
1616 }
1617#endif
1618 else
1619 {
1620 /* Unknown command. */
1621 if (needlf)
1622 printf ("\n");
1623 printf ("*ERROR*: Unknown message: %s", string);
1624 needlf = string[0] == '\0' ? needlf : string[strlen (string) - 1] != '\n';
1625 }
1626 }
1627
1628 if (needlf)
1629 printf ("\n");
1630 fflush (stdout);
1631 fsync (1);
1632
1633 CLOSE_SOCKET (emacs_socket);
1634 return EXIT_SUCCESS;
1635}
1636
1637#endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
1638
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 */
1654
1655/* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
1656 (do not change this comment) */
1657
1658/* emacsclient.c ends here */