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, 2009 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27 /* config.h defines these, which disables sockets altogether! */
34 # include <commctrl.h>
36 # define NO_SOCKETS_IN_FILE_SYSTEM
38 # define HSOCKET SOCKET
39 # define CLOSE_SOCKET closesocket
40 # define INITIALIZE() (initialize_sockets ())
42 #else /* !WINDOWSNT */
46 # ifdef HAVE_INET_SOCKETS
47 # include <netinet/in.h>
50 # include <arpa/inet.h>
52 # define INVALID_SOCKET -1
54 # define CLOSE_SOCKET close
61 #endif /* !WINDOWSNT */
75 #else /* not WINDOWSNT */
77 #endif /* not WINDOWSNT */
84 char *getenv (), *getwd ();
89 #define egetenv(VAR) w32_getenv(VAR)
91 #define egetenv(VAR) getenv(VAR)
95 #define VERSION "unspecified"
100 #define EXIT_SUCCESS 0
104 #define EXIT_FAILURE 1
119 /* Additional space when allocating buffers for filenames, etc. */
120 #define EXTRA_SPACE 100
123 /* Name used to invoke this program. */
126 /* The second argument to main. */
129 /* Nonzero means don't wait for a response from Emacs. --no-wait. */
132 /* Nonzero means args are expressions to be evaluated. --eval. */
135 /* Nonzero means don't open a new frame. Inverse of --create-frame. */
136 int current_frame
= 1;
138 /* The display on which Emacs should work. --display. */
139 char *display
= NULL
;
141 /* Nonzero means open a new Emacs frame on the current terminal. */
144 /* If non-NULL, the name of an editor to fallback to if the server
145 is not running. --alternate-editor. */
146 const char *alternate_editor
= NULL
;
148 /* If non-NULL, the filename of the UNIX socket. */
149 char *socket_name
= NULL
;
151 /* If non-NULL, the filename of the authentication file. */
152 char *server_file
= NULL
;
154 /* PID of the Emacs server process. */
157 void print_help_and_exit () NO_RETURN
;
159 struct option longopts
[] =
161 { "no-wait", no_argument
, NULL
, 'n' },
162 { "eval", no_argument
, NULL
, 'e' },
163 { "help", no_argument
, NULL
, 'H' },
164 { "version", no_argument
, NULL
, 'V' },
165 { "tty", no_argument
, NULL
, 't' },
166 { "nw", no_argument
, NULL
, 't' },
167 { "create-frame", no_argument
, NULL
, 'c' },
168 { "alternate-editor", required_argument
, NULL
, 'a' },
169 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
170 { "socket-name", required_argument
, NULL
, 's' },
172 { "server-file", required_argument
, NULL
, 'f' },
174 { "display", required_argument
, NULL
, 'd' },
180 /* Like malloc but get fatal error if memory is exhausted. */
186 long *result
= (long *) malloc (size
);
195 /* Like strdup but get a fatal error if memory is exhausted. */
198 xstrdup (const char *s
)
200 char *result
= strdup (s
);
210 #if !defined (HAVE_GET_CURRENT_DIR_NAME) || defined (BROKEN_GET_CURRENT_DIR_NAME)
213 #ifndef DIRECTORY_SEP
214 #define DIRECTORY_SEP '/'
216 #ifndef IS_DIRECTORY_SEP
217 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
219 #ifndef IS_DEVICE_SEP
221 #define IS_DEVICE_SEP(_c_) 0
223 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
227 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
231 /* Return the current working directory. Returns NULL on errors.
232 Any other returned value must be freed with free. This is used
233 only when get_current_dir_name is not defined on the system. */
235 get_current_dir_name ()
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. */
243 if ((pwd
= egetenv ("PWD")) != 0
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
250 && strlen (pwd
) < MAXPATHLEN
254 buf
= (char *) xmalloc (strlen (pwd
) + 1);
262 size_t buf_size
= 1024;
263 buf
= (char *) xmalloc (buf_size
);
268 if (getcwd (buf
, buf_size
) == buf
)
272 int tmp_errno
= errno
;
278 buf
= (char *) realloc (buf
, buf_size
);
286 /* We need MAXPATHLEN here. */
287 buf
= (char *) xmalloc (MAXPATHLEN
+ 1);
290 if (getwd (buf
) == NULL
)
292 int tmp_errno
= errno
;
305 #define REG_ROOT "SOFTWARE\\GNU\\Emacs"
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). */
311 w32_get_resource (predefined
, key
, type
)
316 HKEY hrootkey
= NULL
;
320 if (RegOpenKeyEx (predefined
, REG_ROOT
, 0, KEY_READ
, &hrootkey
) == ERROR_SUCCESS
)
322 if (RegQueryValueEx (hrootkey
, key
, NULL
, NULL
, NULL
, &cbData
) == ERROR_SUCCESS
)
324 result
= (char *) xmalloc (cbData
);
326 if ((RegQueryValueEx (hrootkey
, key
, NULL
, type
, result
, &cbData
) != ERROR_SUCCESS
)
334 RegCloseKey (hrootkey
);
341 getenv wrapper for Windows
343 This is needed to duplicate Emacs's behavior, which is to look for enviroment
344 variables in the registry if they don't appear in the environment.
353 if (value
= getenv (envvar
))
354 /* Found in the environment. */
357 if (! (value
= w32_get_resource (HKEY_CURRENT_USER
, envvar
, &dwType
)) &&
358 ! (value
= w32_get_resource (HKEY_LOCAL_MACHINE
, envvar
, &dwType
)))
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. */
367 if (dwType
== REG_SZ
)
368 /* Registry; no need to expand. */
371 if (dwType
== REG_EXPAND_SZ
)
375 if (size
= ExpandEnvironmentStrings (value
, NULL
, 0))
377 char *buffer
= (char *) xmalloc (size
);
378 if (ExpandEnvironmentStrings (value
, buffer
, size
))
380 /* Found and expanded. */
385 /* Error expanding. */
390 /* Not the right type, or not correctly expanded. */
398 static int window_app
= -1;
399 char szTitle
[MAX_PATH
];
403 /* Checking for STDOUT does not work; it's a valid handle also in
404 nonconsole apps. Testing for the console title seems to work. */
405 window_app
= (GetConsoleTitleA (szTitle
, MAX_PATH
) == 0);
407 InitCommonControls();
414 execvp wrapper for Windows. Quotes arguments with embedded spaces.
416 This is necessary due to the broken implementation of exec* routines in
417 the Microsoft libraries: they concatenate the arguments together without
418 quoting special characters, and pass the result to CreateProcess, with
419 predictably bad results. By contrast, Posix execvp passes the arguments
420 directly into the argv array of the child process.
423 w32_execvp (path
, argv
)
429 /* Required to allow a .BAT script as alternate editor. */
430 argv
[0] = (char *) alternate_editor
;
432 for (i
= 0; argv
[i
]; i
++)
433 if (strchr (argv
[i
], ' '))
435 char *quoted
= alloca (strlen (argv
[i
]) + 3);
436 sprintf (quoted
, "\"%s\"", argv
[i
]);
440 return execvp (path
, argv
);
444 #define execvp w32_execvp
446 /* Emulation of ttyname for Windows. */
453 #endif /* WINDOWSNT */
455 /* Display a normal or error message.
456 On Windows, use a message box if compiled as a Windows app. */
458 message (int is_error
, char *message
, ...)
463 va_start (args
, message
);
464 vsprintf (msg
, message
, args
);
468 if (w32_window_app ())
471 MessageBox (NULL
, msg
, "Emacsclient ERROR", MB_ICONERROR
);
473 MessageBox (NULL
, msg
, "Emacsclient", MB_ICONINFORMATION
);
478 FILE *f
= is_error
? stderr
: stdout
;
485 /* Decode the options from argv and argc.
486 The global variable `optind' will say how many arguments we used up. */
489 decode_options (argc
, argv
)
493 alternate_editor
= egetenv ("ALTERNATE_EDITOR");
497 int opt
= getopt_long_only (argc
, argv
,
498 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
511 /* If getopt returns 0, then it has already processed a
512 long-named option. We should do nothing. */
516 alternate_editor
= optarg
;
519 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
521 socket_name
= optarg
;
526 server_file
= optarg
;
529 /* We used to disallow this argument in w32, but it seems better
530 to allow it, for the occasional case where the user is
531 connecting with a w32 client to a server compiled with X11
546 message (FALSE
, "emacsclient %s\n", VERSION
);
560 print_help_and_exit ();
564 message (TRUE
, "Try `%s --help' for more information\n", progname
);
570 /* If the -c option is used (without -t) and no --display argument
571 is provided, try $DISPLAY.
572 Without the -c option, we used to set `display' to $DISPLAY by
573 default, but this changed the default behavior and is sometimes
574 inconvenient. So we force users to use "--display $DISPLAY" if
575 they want Emacs to connect to their current display. */
576 if (!current_frame
&& !tty
&& !display
)
578 display
= egetenv ("DISPLAY");
580 /* Under Cocoa, we don't really use displays the same way as in X,
581 so provide a dummy. */
582 if (!display
|| strlen (display
) == 0)
587 /* A null-string display is invalid. */
588 if (display
&& strlen (display
) == 0)
591 /* If no display is available, new frames are tty frames. */
592 if (!current_frame
&& !display
)
595 /* --no-wait implies --current-frame on ttys when there are file
596 arguments or expressions given. */
597 if (nowait
&& tty
&& argc
- optind
> 0)
601 if (alternate_editor
&& alternate_editor
[0] == '\0')
603 message (TRUE
, "--alternate-editor argument or ALTERNATE_EDITOR variable cannot be\n\
607 #endif /* WINDOWSNT */
612 print_help_and_exit ()
614 /* Spaces and tabs are significant in this message; they're chosen so the
615 message aligns properly both in a tty and in a Windows message box.
616 Please try to preserve them; otherwise the output is very hard to read
617 when using emacsclientw. */
619 "Usage: %s [OPTIONS] FILE...\n\
620 Tell the Emacs server to visit the specified files.\n\
621 Every FILE can be either just a FILENAME or [+LINE[:COLUMN]] FILENAME.\n\
623 The following OPTIONS are accepted:\n\
624 -V, --version Just print version info and return\n\
625 -H, --help Print this usage information message\n\
626 -nw, -t, --tty Open a new Emacs frame on the current terminal\n\
627 -c, --create-frame Create a new frame instead of trying to\n\
628 use the current Emacs frame\n\
629 -e, --eval Evaluate the FILE arguments as ELisp expressions\n\
630 -n, --no-wait Don't wait for the server to return\n\
631 -d, --display=DISPLAY Visit the file in the given display\n"
632 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
633 "-s, --socket-name=FILENAME\n\
634 Set filename of the UNIX socket for communication\n"
636 "-f, --server-file=FILENAME\n\
637 Set filename of the TCP authentication file\n\
638 -a, --alternate-editor=EDITOR\n\
639 Editor to fallback to if the server is not running\n"
641 " If EDITOR is the empty string, start Emacs in daemon\n\
642 mode and try connecting again\n"
643 #endif /* WINDOWSNT */
645 Report bugs to bug-gnu-emacs@gnu.org.\n", progname
);
650 Try to run a different command, or --if no alternate editor is
651 defined-- exit with an errorcode.
652 Uses argv, but gets it from the global variable main_argv.
657 if (alternate_editor
)
661 execvp (alternate_editor
, main_argv
+ i
);
662 message (TRUE
, "%s: error executing alternate editor \"%s\"\n",
663 progname
, alternate_editor
);
669 #if !defined (HAVE_SOCKETS) || !defined (HAVE_INET_SOCKETS)
678 message (TRUE
, "%s: Sorry, the Emacs server is supported only\n"
679 "on systems with Berkeley sockets.\n",
684 #else /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
687 # include <winsock2.h>
689 # include <sys/types.h>
690 # include <sys/socket.h>
694 #define AUTH_KEY_LENGTH 64
695 #define SEND_BUFFER_SIZE 4096
697 extern char *strerror ();
700 /* Buffer to accumulate data to send in TCP connections. */
701 char send_buffer
[SEND_BUFFER_SIZE
+ 1];
702 int sblen
= 0; /* Fill pointer for the send buffer. */
703 /* Socket used to communicate with the Emacs server process. */
704 HSOCKET emacs_socket
= 0;
706 /* On Windows, the socket library was historically separate from the standard
707 C library, so errors are handled differently. */
709 sock_err_message (function_name
)
715 FormatMessage (FORMAT_MESSAGE_FROM_SYSTEM
716 | FORMAT_MESSAGE_ALLOCATE_BUFFER
717 | FORMAT_MESSAGE_ARGUMENT_ARRAY
,
718 NULL
, WSAGetLastError (), 0, (LPTSTR
)&msg
, 0, NULL
);
720 message (TRUE
, "%s: %s: %s\n", progname
, function_name
, msg
);
724 message (TRUE
, "%s: %s: %s\n", progname
, function_name
, strerror (errno
));
729 /* Let's send the data to Emacs when either
730 - the data ends in "\n", or
731 - the buffer is full (but this shouldn't happen)
732 Otherwise, we just accumulate it. */
734 send_to_emacs (s
, data
)
740 int dlen
= strlen (data
);
741 if (dlen
+ sblen
>= SEND_BUFFER_SIZE
)
743 int part
= SEND_BUFFER_SIZE
- sblen
;
744 strncpy (&send_buffer
[sblen
], data
, part
);
746 sblen
= SEND_BUFFER_SIZE
;
750 strcpy (&send_buffer
[sblen
], data
);
757 if (sblen
== SEND_BUFFER_SIZE
758 || (sblen
> 0 && send_buffer
[sblen
-1] == '\n'))
760 int sent
= send (s
, send_buffer
, sblen
, 0);
762 strcpy (send_buffer
, &send_buffer
[sent
]);
769 /* In STR, insert a & before each &, each space, each newline, and
770 any initial -. Change spaces to underscores, too, so that the
771 return value never contains a space.
773 Does not change the string. Outputs the result to STREAM. */
775 quote_argument (s
, str
)
779 char *copy
= (char *) xmalloc (strlen (str
) * 2 + 1);
800 if (*p
== '&' || (*p
== '-' && p
== str
))
807 send_to_emacs (s
, copy
);
813 /* The inverse of quote_argument. Removes quoting in string STR by
814 modifying the string in place. Returns STR. */
817 unquote_argument (str
)
849 file_name_absolute_p (filename
)
850 const unsigned char *filename
;
852 /* Sanity check, it shouldn't happen. */
853 if (! filename
) return FALSE
;
855 /* /xxx is always an absolute path. */
856 if (filename
[0] == '/') return TRUE
;
858 /* Empty filenames (which shouldn't happen) are relative. */
859 if (filename
[0] == '\0') return FALSE
;
862 /* X:\xxx is always absolute. */
863 if (isalpha (filename
[0])
864 && filename
[1] == ':' && (filename
[2] == '\\' || filename
[2] == '/'))
867 /* Both \xxx and \\xxx\yyy are absolute. */
868 if (filename
[0] == '\\') return TRUE
;
875 /* Wrapper to make WSACleanup a cdecl, as required by atexit. */
877 __cdecl
close_winsock ()
882 /* Initialize the WinSock2 library. */
884 initialize_sockets ()
888 if (WSAStartup (MAKEWORD (2, 0), &wsaData
))
890 message (TRUE
, "%s: error initializing WinSock2\n", progname
);
894 atexit (close_winsock
);
896 #endif /* WINDOWSNT */
900 * Read the information needed to set up a TCP comm channel with
901 * the Emacs server: host, port, pid and authentication string.
904 get_server_config (server
, authentication
)
905 struct sockaddr_in
*server
;
906 char *authentication
;
913 if (file_name_absolute_p (server_file
))
914 config
= fopen (server_file
, "rb");
917 char *home
= egetenv ("HOME");
921 char *path
= alloca (strlen (home
) + strlen (server_file
)
923 sprintf (path
, "%s/.emacs.d/server/%s", home
, server_file
);
924 config
= fopen (path
, "rb");
927 if (!config
&& (home
= egetenv ("APPDATA")))
929 char *path
= alloca (strlen (home
) + strlen (server_file
)
931 sprintf (path
, "%s/.emacs.d/server/%s", home
, server_file
);
932 config
= fopen (path
, "rb");
940 if (fgets (dotted
, sizeof dotted
, config
)
941 && (port
= strchr (dotted
, ':'))
942 && (pid
= strchr (port
, ' ')))
949 message (TRUE
, "%s: invalid configuration info\n", progname
);
953 server
->sin_family
= AF_INET
;
954 server
->sin_addr
.s_addr
= inet_addr (dotted
);
955 server
->sin_port
= htons (atoi (port
));
957 if (! fread (authentication
, AUTH_KEY_LENGTH
, 1, config
))
959 message (TRUE
, "%s: cannot read authentication info\n", progname
);
965 emacs_pid
= atoi (pid
);
974 struct sockaddr_in server
;
975 struct linger l_arg
= {1, 1};
976 char auth_string
[AUTH_KEY_LENGTH
+ 1];
978 if (! get_server_config (&server
, auth_string
))
979 return INVALID_SOCKET
;
981 if (server
.sin_addr
.s_addr
!= inet_addr ("127.0.0.1"))
982 message (FALSE
, "%s: connected to remote socket at %s\n",
983 progname
, inet_ntoa (server
.sin_addr
));
986 * Open up an AF_INET socket
988 if ((s
= socket (AF_INET
, SOCK_STREAM
, IPPROTO_TCP
)) < 0)
990 sock_err_message ("socket");
991 return INVALID_SOCKET
;
997 if (connect (s
, (struct sockaddr
*) &server
, sizeof server
) < 0)
999 sock_err_message ("connect");
1000 return INVALID_SOCKET
;
1003 setsockopt (s
, SOL_SOCKET
, SO_LINGER
, (char *) &l_arg
, sizeof l_arg
);
1006 * Send the authentication
1008 auth_string
[AUTH_KEY_LENGTH
] = '\0';
1010 send_to_emacs (s
, "-auth ");
1011 send_to_emacs (s
, auth_string
);
1012 send_to_emacs (s
, " ");
1018 /* Returns 1 if PREFIX is a prefix of STRING. */
1020 strprefix (char *prefix
, char *string
)
1022 return !strncmp (prefix
, string
, strlen (prefix
));
1025 /* Get tty name and type. If successful, return the type in TTY_TYPE
1026 and the name in TTY_NAME, and return 1. Otherwise, fail if NOABORT
1027 is zero, or return 0 if NOABORT is non-zero. */
1030 find_tty (char **tty_type
, char **tty_name
, int noabort
)
1032 char *type
= egetenv ("TERM");
1033 char *name
= ttyname (fileno (stdout
));
1041 message (TRUE
, "%s: could not get terminal name\n", progname
);
1052 message (TRUE
, "%s: please set the TERM variable to your terminal type\n",
1058 if (strcmp (type
, "eterm") == 0)
1064 /* This causes nasty, MULTI_KBOARD-related input lockouts. */
1065 message (TRUE
, "%s: opening a frame in an Emacs term buffer"
1066 " is not supported\n", progname
);
1077 #if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
1079 /* Three possibilities:
1080 2 - can't be `stat'ed (sets errno)
1081 1 - isn't owned by us
1082 0 - success: none of the above */
1085 socket_status (socket_name
)
1088 struct stat statbfr
;
1090 if (stat (socket_name
, &statbfr
) == -1)
1093 if (statbfr
.st_uid
!= geteuid ())
1100 /* A signal handler that passes the signal to the Emacs process.
1101 Useful for SIGWINCH. */
1104 pass_signal_to_emacs (int signalnum
)
1106 int old_errno
= errno
;
1109 kill (emacs_pid
, signalnum
);
1111 signal (signalnum
, pass_signal_to_emacs
);
1115 /* Signal handler for SIGCONT; notify the Emacs process that it can
1116 now resume our tty frame. */
1119 handle_sigcont (int signalnum
)
1121 int old_errno
= errno
;
1123 if (tcgetpgrp (1) == getpgrp ())
1125 /* We are in the foreground. */
1126 send_to_emacs (emacs_socket
, "-resume \n");
1130 /* We are in the background; cancel the continue. */
1131 kill (getpid (), SIGSTOP
);
1134 signal (signalnum
, handle_sigcont
);
1138 /* Signal handler for SIGTSTP; notify the Emacs process that we are
1139 going to sleep. Normally the suspend is initiated by Emacs via
1140 server-handle-suspend-tty, but if the server gets out of sync with
1141 reality, we may get a SIGTSTP on C-z. Handling this signal and
1142 notifying Emacs about it should get things under control again. */
1145 handle_sigtstp (int signalnum
)
1147 int old_errno
= errno
;
1151 send_to_emacs (emacs_socket
, "-suspend \n");
1153 /* Unblock this signal and call the default handler by temporarily
1154 changing the handler and resignalling. */
1155 sigprocmask (SIG_BLOCK
, NULL
, &set
);
1156 sigdelset (&set
, signalnum
);
1157 signal (signalnum
, SIG_DFL
);
1158 kill (getpid (), signalnum
);
1159 sigprocmask (SIG_SETMASK
, &set
, NULL
); /* Let's the above signal through. */
1160 signal (signalnum
, handle_sigtstp
);
1166 /* Set up signal handlers before opening a frame on the current tty. */
1171 /* Set up signal handlers. */
1172 signal (SIGWINCH
, pass_signal_to_emacs
);
1174 /* Don't pass SIGINT and SIGQUIT to Emacs, because it has no way of
1175 deciding which terminal the signal came from. C-g is now a
1176 normal input event on secondary terminals. */
1178 signal (SIGINT
, pass_signal_to_emacs
);
1179 signal (SIGQUIT
, pass_signal_to_emacs
);
1182 signal (SIGCONT
, handle_sigcont
);
1183 signal (SIGTSTP
, handle_sigtstp
);
1184 signal (SIGTTOU
, handle_sigtstp
);
1192 struct sockaddr_un server
;
1195 * Open up an AF_UNIX socket in this person's home directory
1198 if ((s
= socket (AF_UNIX
, SOCK_STREAM
, 0)) < 0)
1200 message (TRUE
, "%s: socket: %s\n", progname
, strerror (errno
));
1201 return INVALID_SOCKET
;
1204 server
.sun_family
= AF_UNIX
;
1207 int sock_status
= 0;
1208 int default_sock
= !socket_name
;
1209 int saved_errno
= 0;
1210 char *server_name
= "server";
1213 if (socket_name
&& !index (socket_name
, '/') && !index (socket_name
, '\\'))
1214 { /* socket_name is a file name component. */
1215 server_name
= socket_name
;
1217 default_sock
= 1; /* Try both UIDs. */
1222 tmpdir
= egetenv ("TMPDIR");
1225 socket_name
= alloca (strlen (tmpdir
) + strlen (server_name
)
1227 sprintf (socket_name
, "%s/emacs%d/%s",
1228 tmpdir
, (int) geteuid (), server_name
);
1231 if (strlen (socket_name
) < sizeof (server
.sun_path
))
1232 strcpy (server
.sun_path
, socket_name
);
1235 message (TRUE
, "%s: socket-name %s too long\n",
1236 progname
, socket_name
);
1240 /* See if the socket exists, and if it's owned by us. */
1241 sock_status
= socket_status (server
.sun_path
);
1242 saved_errno
= errno
;
1243 if (sock_status
&& default_sock
)
1245 /* Failing that, see if LOGNAME or USER exist and differ from
1246 our euid. If so, look for a socket based on the UID
1247 associated with the name. This is reminiscent of the logic
1248 that init_editfns uses to set the global Vuser_full_name. */
1250 char *user_name
= (char *) egetenv ("LOGNAME");
1253 user_name
= (char *) egetenv ("USER");
1257 struct passwd
*pw
= getpwnam (user_name
);
1259 if (pw
&& (pw
->pw_uid
!= geteuid ()))
1261 /* We're running under su, apparently. */
1262 socket_name
= alloca (strlen (tmpdir
) + strlen (server_name
)
1264 sprintf (socket_name
, "%s/emacs%d/%s",
1265 tmpdir
, (int) pw
->pw_uid
, server_name
);
1267 if (strlen (socket_name
) < sizeof (server
.sun_path
))
1268 strcpy (server
.sun_path
, socket_name
);
1271 message (TRUE
, "%s: socket-name %s too long\n",
1272 progname
, socket_name
);
1273 exit (EXIT_FAILURE
);
1276 sock_status
= socket_status (server
.sun_path
);
1277 saved_errno
= errno
;
1280 errno
= saved_errno
;
1284 switch (sock_status
)
1287 /* There's a socket, but it isn't owned by us. This is OK if
1289 if (0 != geteuid ())
1291 message (TRUE
, "%s: Invalid socket owner\n", progname
);
1292 return INVALID_SOCKET
;
1298 if (saved_errno
== ENOENT
)
1300 "%s: can't find socket; have you started the server?\n\
1301 To start the server in Emacs, type \"M-x server-start\".\n",
1304 message (TRUE
, "%s: can't stat %s: %s\n",
1305 progname
, server
.sun_path
, strerror (saved_errno
));
1306 return INVALID_SOCKET
;
1310 if (connect (s
, (struct sockaddr
*) &server
, strlen (server
.sun_path
) + 2)
1313 message (TRUE
, "%s: connect: %s\n", progname
, strerror (errno
));
1314 return INVALID_SOCKET
;
1319 #endif /* ! NO_SOCKETS_IN_FILE_SYSTEM */
1322 set_socket (int no_exit_if_error
)
1328 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
1329 /* Explicit --socket-name argument. */
1332 s
= set_local_socket ();
1333 if ((s
!= INVALID_SOCKET
) || no_exit_if_error
)
1335 message (TRUE
, "%s: error accessing socket \"%s\"\n",
1336 progname
, socket_name
);
1337 exit (EXIT_FAILURE
);
1341 /* Explicit --server-file arg or EMACS_SERVER_FILE variable. */
1343 server_file
= egetenv ("EMACS_SERVER_FILE");
1347 s
= set_tcp_socket ();
1348 if ((s
!= INVALID_SOCKET
) || no_exit_if_error
)
1351 message (TRUE
, "%s: error accessing server file \"%s\"\n",
1352 progname
, server_file
);
1353 exit (EXIT_FAILURE
);
1356 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
1357 /* Implicit local socket. */
1358 s
= set_local_socket ();
1359 if (s
!= INVALID_SOCKET
)
1363 /* Implicit server file. */
1364 server_file
= "server";
1365 s
= set_tcp_socket ();
1366 if ((s
!= INVALID_SOCKET
) || no_exit_if_error
)
1369 /* No implicit or explicit socket, and no alternate editor. */
1370 message (TRUE
, "%s: No socket or alternate editor. Please use:\n\n"
1371 #ifndef NO_SOCKETS_IN_FILE_SYSTEM
1374 "\t--server-file (or environment variable EMACS_SERVER_FILE)\n\
1375 \t--alternate-editor (or environment variable ALTERNATE_EDITOR)\n",
1377 exit (EXIT_FAILURE
);
1381 FARPROC set_fg
; /* Pointer to AllowSetForegroundWindow. */
1382 FARPROC get_wc
; /* Pointer to RealGetWindowClassA. */
1385 w32_find_emacs_process (hWnd
, lParam
)
1392 /* Reject any window not of class "Emacs". */
1393 if (! get_wc (hWnd
, class, sizeof (class))
1394 || strcmp (class, "Emacs"))
1397 /* We only need the process id, not the thread id. */
1398 (void) GetWindowThreadProcessId (hWnd
, &pid
);
1400 /* Not the one we're looking for. */
1401 if (pid
!= (DWORD
) emacs_pid
) return TRUE
;
1403 /* OK, let's raise it. */
1406 /* Stop enumeration. */
1411 * Search for a window of class "Emacs" and owned by a process with
1412 * process id = emacs_pid. If found, allow it to grab the focus.
1419 /* It shouldn't happen when dealing with TCP sockets. */
1420 if (!emacs_pid
) return;
1422 if (!(hUser32
= LoadLibrary ("user32.dll"))) return;
1424 /* Modern Windows restrict which processes can set the foreground window.
1425 emacsclient can allow Emacs to grab the focus by calling the function
1426 AllowSetForegroundWindow. Unfortunately, older Windows (W95, W98 and
1427 NT) lack this function, so we have to check its availability. */
1428 if ((set_fg
= GetProcAddress (hUser32
, "AllowSetForegroundWindow"))
1429 && (get_wc
= GetProcAddress (hUser32
, "RealGetWindowClassA")))
1430 EnumWindows (w32_find_emacs_process
, (LPARAM
) 0);
1432 FreeLibrary (hUser32
);
1436 /* Start the emacs daemon and try to connect to it. */
1439 start_daemon_and_retry_set_socket (void)
1450 w
= waitpid (dpid
, &status
, WUNTRACED
| WCONTINUED
);
1452 if ((w
== -1) || !WIFEXITED (status
) || WEXITSTATUS(status
))
1454 message (TRUE
, "Error: Could not start the Emacs daemon\n");
1455 exit (EXIT_FAILURE
);
1458 /* Try connecting, the daemon should have started by now. */
1459 message (TRUE
, "Emacs daemon should have started, trying to connect again\n");
1460 if ((emacs_socket
= set_socket (1)) == INVALID_SOCKET
)
1462 message (TRUE
, "Error: Cannot connect even after starting the Emacs daemon\n");
1463 exit (EXIT_FAILURE
);
1468 fprintf (stderr
, "Error: Cannot fork!\n");
1473 char *d_argv
[] = {"emacs", "--daemon", 0 };
1474 if (socket_name
!= NULL
)
1476 /* Pass --daemon=socket_name as argument. */
1477 char *deq
= "--daemon=";
1478 char *daemon_arg
= alloca (strlen (deq
)
1479 + strlen (socket_name
) + 1);
1480 strcpy (daemon_arg
, deq
);
1481 strcat (daemon_arg
, socket_name
);
1482 d_argv
[1] = daemon_arg
;
1484 execvp ("emacs", d_argv
);
1485 message (TRUE
, "%s: error starting emacs daemon\n", progname
);
1487 #endif /* WINDOWSNT */
1495 int i
, rl
, needlf
= 0;
1497 char string
[BUFSIZ
+1];
1498 int null_socket_name
, null_server_file
, start_daemon_if_needed
;
1503 /* Process options. */
1504 decode_options (argc
, argv
);
1506 if ((argc
- optind
< 1) && !eval
&& current_frame
)
1508 message (TRUE
, "%s: file name or argument required\n"
1509 "Try `%s --help' for more information\n",
1510 progname
, progname
);
1511 exit (EXIT_FAILURE
);
1514 /* If alternate_editor is the empty string, start the emacs daemon
1515 in case of failure to connect. */
1516 start_daemon_if_needed
= (alternate_editor
1517 && (alternate_editor
[0] == '\0'));
1518 if (start_daemon_if_needed
)
1520 /* set_socket changes the values for socket_name and
1521 server_file, we need to reset them, if they were NULL before
1522 for the second call to set_socket. */
1523 null_socket_name
= (socket_name
== NULL
);
1524 null_server_file
= (server_file
== NULL
);
1527 if ((emacs_socket
= set_socket (alternate_editor
1528 || start_daemon_if_needed
)) == INVALID_SOCKET
)
1529 if (start_daemon_if_needed
)
1531 /* Reset socket_name and server_file if they were NULL
1532 before the set_socket call. */
1533 if (null_socket_name
)
1535 if (null_server_file
)
1538 start_daemon_and_retry_set_socket ();
1543 cwd
= get_current_dir_name ();
1546 /* getwd puts message in STRING if it fails. */
1547 message (TRUE
, "%s: %s\n", progname
,
1548 "Cannot get current working directory");
1556 /* Send over our environment and current directory. */
1559 extern char **environ
;
1561 for (i
= 0; environ
[i
]; i
++)
1563 char *name
= xstrdup (environ
[i
]);
1564 char *value
= strchr (name
, '=');
1565 send_to_emacs (emacs_socket
, "-env ");
1566 quote_argument (emacs_socket
, environ
[i
]);
1567 send_to_emacs (emacs_socket
, " ");
1569 send_to_emacs (emacs_socket
, "-dir ");
1570 quote_argument (emacs_socket
, cwd
);
1571 send_to_emacs (emacs_socket
, "/");
1572 send_to_emacs (emacs_socket
, " ");
1577 send_to_emacs (emacs_socket
, "-nowait ");
1580 send_to_emacs (emacs_socket
, "-current-frame ");
1584 send_to_emacs (emacs_socket
, "-display ");
1585 quote_argument (emacs_socket
, display
);
1586 send_to_emacs (emacs_socket
, " ");
1589 /* If using the current frame, send tty information to Emacs anyway.
1590 In daemon mode, Emacs may need to occupy this tty if no other
1591 frame is available. */
1592 if (tty
|| (current_frame
&& !eval
))
1594 char *tty_type
, *tty_name
;
1596 if (find_tty (&tty_type
, &tty_name
, !tty
))
1598 #if !defined (NO_SOCKETS_IN_FILE_SYSTEM)
1601 send_to_emacs (emacs_socket
, "-tty ");
1602 quote_argument (emacs_socket
, tty_name
);
1603 send_to_emacs (emacs_socket
, " ");
1604 quote_argument (emacs_socket
, tty_type
);
1605 send_to_emacs (emacs_socket
, " ");
1609 if (!current_frame
&& !tty
)
1610 send_to_emacs (emacs_socket
, "-window-system ");
1612 if ((argc
- optind
> 0))
1614 for (i
= optind
; i
< argc
; i
++)
1620 /* Don't prepend cwd or anything like that. */
1621 send_to_emacs (emacs_socket
, "-eval ");
1622 quote_argument (emacs_socket
, argv
[i
]);
1623 send_to_emacs (emacs_socket
, " ");
1627 if (*argv
[i
] == '+')
1629 char *p
= argv
[i
] + 1;
1630 while (isdigit ((unsigned char) *p
) || *p
== ':') p
++;
1633 send_to_emacs (emacs_socket
, "-position ");
1634 quote_argument (emacs_socket
, argv
[i
]);
1635 send_to_emacs (emacs_socket
, " ");
1641 else if (! file_name_absolute_p (argv
[i
]))
1645 /* Call GetFullPathName so filenames of the form X:Y, where X is
1646 a valid drive designator, are interpreted as drive:path, not
1647 file:stream, and treated as absolute.
1648 The user can still pass a file:stream if desired (for example,
1649 .\X:Y), but it is not very useful, as Emacs currently does a
1650 very bad job of dealing with NTFS streams. */
1652 char *filename
= (char *) xmalloc (MAX_PATH
);
1655 size
= GetFullPathName (argv
[i
], MAX_PATH
, filename
, NULL
);
1656 if (size
> 0 && size
< MAX_PATH
)
1666 send_to_emacs (emacs_socket
, "-file ");
1669 quote_argument (emacs_socket
, cwd
);
1670 send_to_emacs (emacs_socket
, "/");
1672 quote_argument (emacs_socket
, argv
[i
]);
1673 send_to_emacs (emacs_socket
, " ");
1678 /* Read expressions interactively. */
1679 while ((str
= fgets (string
, BUFSIZ
, stdin
)))
1681 send_to_emacs (emacs_socket
, "-eval ");
1682 quote_argument (emacs_socket
, str
);
1684 send_to_emacs (emacs_socket
, " ");
1687 send_to_emacs (emacs_socket
, "\n");
1689 /* Wait for an answer. */
1690 if (!eval
&& !tty
&& !nowait
)
1692 printf ("Waiting for Emacs...");
1698 /* Now, wait for an answer and print any messages. */
1699 while ((rl
= recv (emacs_socket
, string
, BUFSIZ
, 0)) > 0)
1704 p
= string
+ strlen (string
) - 1;
1705 while (p
> string
&& *p
== '\n')
1708 if (strprefix ("-emacs-pid ", string
))
1710 /* -emacs-pid PID: The process id of the Emacs process. */
1711 emacs_pid
= strtol (string
+ strlen ("-emacs-pid"), NULL
, 10);
1713 else if (strprefix ("-window-system-unsupported ", string
))
1715 /* -window-system-unsupported: Emacs was compiled without X
1716 support. Try again on the terminal. */
1721 else if (strprefix ("-print ", string
))
1723 /* -print STRING: Print STRING on the terminal. */
1724 str
= unquote_argument (string
+ strlen ("-print "));
1728 needlf
= str
[0] == '\0' ? needlf
: str
[strlen (str
) - 1] != '\n';
1730 else if (strprefix ("-error ", string
))
1732 /* -error DESCRIPTION: Signal an error on the terminal. */
1733 str
= unquote_argument (string
+ strlen ("-error "));
1736 fprintf (stderr
, "*ERROR*: %s", str
);
1737 needlf
= str
[0] == '\0' ? needlf
: str
[strlen (str
) - 1] != '\n';
1740 else if (strprefix ("-suspend ", string
))
1742 /* -suspend: Suspend this terminal, i.e., stop the process. */
1751 /* Unknown command. */
1754 printf ("*ERROR*: Unknown message: %s", string
);
1755 needlf
= string
[0] == '\0' ? needlf
: string
[strlen (string
) - 1] != '\n';
1764 CLOSE_SOCKET (emacs_socket
);
1765 return EXIT_SUCCESS
;
1768 #endif /* HAVE_SOCKETS && HAVE_INET_SOCKETS */
1771 #ifndef HAVE_STRERROR
1776 extern char *sys_errlist
[];
1777 extern int sys_nerr
;
1779 if (errnum
>= 0 && errnum
< sys_nerr
)
1780 return sys_errlist
[errnum
];
1781 return (char *) "Unknown error";
1784 #endif /* ! HAVE_STRERROR */
1786 /* arch-tag: f39bb9c4-73eb-477e-896d-50832e2ca9a7
1787 (do not change this comment) */
1789 /* emacsclient.c ends here */