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