Use `process-live-p' in Tramp
[emacs.git] / lisp / net / tramp.el
blob4e9d4c29cd4df73b8d70465e8337cfc8ba74a638
1 ;;; tramp.el --- Transparent Remote Access, Multiple Protocol
3 ;; Copyright (C) 1998-2016 Free Software Foundation, Inc.
5 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
6 ;; Michael Albinus <michael.albinus@gmx.de>
7 ;; Keywords: comm, processes
8 ;; Package: tramp
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; This package provides remote file editing, similar to ange-ftp.
28 ;; The difference is that ange-ftp uses FTP to transfer files between
29 ;; the local and the remote host, whereas tramp.el uses a combination
30 ;; of rsh and rcp or other work-alike programs, such as ssh/scp.
32 ;; For more detailed instructions, please see the info file.
34 ;; Notes:
35 ;; -----
37 ;; This package only works for Emacs 23.1 and higher.
39 ;; Also see the todo list at the bottom of this file.
41 ;; The current version of Tramp can be retrieved from the following URL:
42 ;; http://ftp.gnu.org/gnu/tramp/
44 ;; There's a mailing list for this, as well. Its name is:
45 ;; tramp-devel@gnu.org
46 ;; You can use the Web to subscribe, under the following URL:
47 ;; http://lists.gnu.org/mailman/listinfo/tramp-devel
49 ;; For the adventurous, the current development sources are available
50 ;; via Git. You can find instructions about this at the following URL:
51 ;; http://savannah.gnu.org/projects/tramp/
53 ;; Don't forget to put on your asbestos longjohns, first!
55 ;;; Code:
57 (require 'tramp-compat)
59 ;; Pacify byte-compiler.
60 (eval-when-compile
61 (require 'cl))
62 (defvar eshell-path-env)
64 ;;; User Customizable Internal Variables:
66 (defgroup tramp nil
67 "Edit remote files with a combination of ssh, scp, etc."
68 :group 'files
69 :group 'comm
70 :link '(custom-manual "(tramp)Top")
71 :version "22.1")
73 ;; Maybe we need once a real Tramp mode, with key bindings etc.
74 ;;;###autoload
75 (defcustom tramp-mode t
76 "Whether Tramp is enabled.
77 If it is set to nil, all remote file names are used literally."
78 :group 'tramp
79 :type 'boolean
80 :require 'tramp)
82 (defcustom tramp-verbose 3
83 "Verbosity level for Tramp messages.
84 Any level x includes messages for all levels 1 .. x-1. The levels are
86 0 silent (no tramp messages at all)
87 1 errors
88 2 warnings
89 3 connection to remote hosts (default level)
90 4 activities
91 5 internal
92 6 sent and received strings
93 7 file caching
94 8 connection properties
95 9 test commands
96 10 traces (huge)."
97 :group 'tramp
98 :type 'integer
99 :require 'tramp)
101 (defcustom tramp-backup-directory-alist nil
102 "Alist of filename patterns and backup directory names.
103 Each element looks like (REGEXP . DIRECTORY), with the same meaning like
104 in `backup-directory-alist'. If a Tramp file is backed up, and DIRECTORY
105 is a local file name, the backup directory is prepended with Tramp file
106 name prefix \(method, user, host) of file.
108 \(setq tramp-backup-directory-alist backup-directory-alist)
110 gives the same backup policy for Tramp files on their hosts like the
111 policy for local files."
112 :group 'tramp
113 :type '(repeat (cons (regexp :tag "Regexp matching filename")
114 (directory :tag "Backup directory name")))
115 :require 'tramp)
117 (defcustom tramp-auto-save-directory nil
118 "Put auto-save files in this directory, if set.
119 The idea is to use a local directory so that auto-saving is faster.
120 This setting has precedence over `auto-save-file-name-transforms'."
121 :group 'tramp
122 :type '(choice (const :tag "Use default" nil)
123 (directory :tag "Auto save directory name"))
124 :require 'tramp)
126 (defcustom tramp-encoding-shell
127 (or (tramp-compat-funcall 'w32-shell-name) "/bin/sh")
128 "Use this program for encoding and decoding commands on the local host.
129 This shell is used to execute the encoding and decoding command on the
130 local host, so if you want to use `~' in those commands, you should
131 choose a shell here which groks tilde expansion. `/bin/sh' normally
132 does not understand tilde expansion.
134 For encoding and decoding, commands like the following are executed:
136 /bin/sh -c COMMAND < INPUT > OUTPUT
138 This variable can be used to change the \"/bin/sh\" part. See the
139 variable `tramp-encoding-command-switch' for the \"-c\" part.
141 If the shell must be forced to be interactive, see
142 `tramp-encoding-command-interactive'.
144 Note that this variable is not used for remote commands. There are
145 mechanisms in tramp.el which automatically determine the right shell to
146 use for the remote host."
147 :group 'tramp
148 :type '(file :must-match t)
149 :require 'tramp)
151 (defcustom tramp-encoding-command-switch
152 (if (tramp-compat-funcall 'w32-shell-dos-semantics) "/c" "-c")
153 "Use this switch together with `tramp-encoding-shell' for local commands.
154 See the variable `tramp-encoding-shell' for more information."
155 :group 'tramp
156 :type 'string
157 :require 'tramp)
159 (defcustom tramp-encoding-command-interactive
160 (unless (tramp-compat-funcall 'w32-shell-dos-semantics) "-i")
161 "Use this switch together with `tramp-encoding-shell' for interactive shells.
162 See the variable `tramp-encoding-shell' for more information."
163 :version "24.1"
164 :group 'tramp
165 :type '(choice (const nil) string)
166 :require 'tramp)
168 ;;;###tramp-autoload
169 (defvar tramp-methods nil
170 "Alist of methods for remote files.
171 This is a list of entries of the form (NAME PARAM1 PARAM2 ...).
172 Each NAME stands for a remote access method. Each PARAM is a
173 pair of the form (KEY VALUE). The following KEYs are defined:
174 * `tramp-remote-shell'
175 This specifies the shell to use on the remote host. This
176 MUST be a Bourne-like shell. It is normally not necessary to
177 set this to any value other than \"/bin/sh\": Tramp wants to
178 use a shell which groks tilde expansion, but it can search
179 for it. Also note that \"/bin/sh\" exists on all Unixen,
180 this might not be true for the value that you decide to use.
181 You Have Been Warned.
182 * `tramp-remote-shell-login'
183 This specifies the arguments to let `tramp-remote-shell' run
184 as a login shell. It defaults to (\"-l\"), but some shells,
185 like ksh, require another argument. See
186 `tramp-connection-properties' for a way to overwrite the
187 default value.
188 * `tramp-remote-shell-args'
189 For implementation of `shell-command', this specifies the
190 arguments to let `tramp-remote-shell' run a single command.
191 * `tramp-login-program'
192 This specifies the name of the program to use for logging in to the
193 remote host. This may be the name of rsh or a workalike program,
194 or the name of telnet or a workalike, or the name of su or a workalike.
195 * `tramp-login-args'
196 This specifies the list of arguments to pass to the above
197 mentioned program. Please note that this is a list of list of arguments,
198 that is, normally you don't want to put \"-a -b\" or \"-f foo\"
199 here. Instead, you want a list (\"-a\" \"-b\"), or (\"-f\" \"foo\").
200 There are some patterns: \"%h\" in this list is replaced by the host
201 name, \"%u\" is replaced by the user name, \"%p\" is replaced by the
202 port number, and \"%%\" can be used to obtain a literal percent character.
203 If a list containing \"%h\", \"%u\" or \"%p\" is unchanged during
204 expansion (i.e. no host or no user specified), this list is not used as
205 argument. By this, arguments like (\"-l\" \"%u\") are optional.
206 \"%t\" is replaced by the temporary file name produced with
207 `tramp-make-tramp-temp-file'. \"%k\" indicates the keep-date
208 parameter of a program, if exists. \"%c\" adds additional
209 `tramp-ssh-controlmaster-options' options for the first hop.
210 * `tramp-login-env'
211 A list of environment variables and their values, which will
212 be set when calling `tramp-login-program'.
213 * `tramp-async-args'
214 When an asynchronous process is started, we know already that
215 the connection works. Therefore, we can pass additional
216 parameters to suppress diagnostic messages, in order not to
217 tamper the process output.
218 * `tramp-copy-program'
219 This specifies the name of the program to use for remotely copying
220 the file; this might be the absolute filename of scp or the name of
221 a workalike program. It is always applied on the local host.
222 * `tramp-copy-args'
223 This specifies the list of parameters to pass to the above mentioned
224 program, the hints for `tramp-login-args' also apply here.
225 * `tramp-copy-env'
226 A list of environment variables and their values, which will
227 be set when calling `tramp-copy-program'.
228 * `tramp-remote-copy-program'
229 The listener program to be applied on remote side, if needed.
230 * `tramp-remote-copy-args'
231 The list of parameters to pass to the listener program, the hints
232 for `tramp-login-args' also apply here. Additionally, \"%r\" could
233 be used here and in `tramp-copy-args'. It denotes a randomly
234 chosen port for the remote listener.
235 * `tramp-copy-keep-date'
236 This specifies whether the copying program when the preserves the
237 timestamp of the original file.
238 * `tramp-copy-keep-tmpfile'
239 This specifies whether a temporary local file shall be kept
240 for optimization reasons (useful for \"rsync\" methods).
241 * `tramp-copy-recursive'
242 Whether the operation copies directories recursively.
243 * `tramp-default-port'
244 The default port of a method is needed in case of gateway connections.
245 Additionally, it is used as indication which method is prepared for
246 passing gateways.
247 * `tramp-gw-args'
248 As the attribute name says, additional arguments are specified here
249 when a method is applied via a gateway.
250 * `tramp-tmpdir'
251 A directory on the remote host for temporary files. If not
252 specified, \"/tmp\" is taken as default.
253 * `tramp-connection-timeout'
254 This is the maximum time to be spent for establishing a connection.
255 In general, the global default value shall be used, but for
256 some methods, like \"su\" or \"sudo\", a shorter timeout
257 might be desirable.
259 What does all this mean? Well, you should specify `tramp-login-program'
260 for all methods; this program is used to log in to the remote site. Then,
261 there are two ways to actually transfer the files between the local and the
262 remote side. One way is using an additional scp-like program. If you want
263 to do this, set `tramp-copy-program' in the method.
265 Another possibility for file transfer is inline transfer, i.e. the
266 file is passed through the same buffer used by `tramp-login-program'. In
267 this case, the file contents need to be protected since the
268 `tramp-login-program' might use escape codes or the connection might not
269 be eight-bit clean. Therefore, file contents are encoded for transit.
270 See the variables `tramp-local-coding-commands' and
271 `tramp-remote-coding-commands' for details.
273 So, to summarize: if the method is an out-of-band method, then you
274 must specify `tramp-copy-program' and `tramp-copy-args'. If it is an
275 inline method, then these two parameters should be nil. Methods which
276 are fit for gateways must have `tramp-default-port' at least.
278 Notes:
280 When using `su' or `sudo' the phrase \"open connection to a remote
281 host\" sounds strange, but it is used nevertheless, for consistency.
282 No connection is opened to a remote host, but `su' or `sudo' is
283 started on the local host. You should specify a remote host
284 `localhost' or the name of the local host. Another host name is
285 useful only in combination with `tramp-default-proxies-alist'.")
287 (defcustom tramp-default-method
288 ;; An external copy method seems to be preferred, because it performs
289 ;; much better for large files, and it hasn't too serious delays
290 ;; for small files. But it must be ensured that there aren't
291 ;; permanent password queries. Either a password agent like
292 ;; "ssh-agent" or "Pageant" shall run, or the optional
293 ;; password-cache.el or auth-sources.el packages shall be active for
294 ;; password caching. If we detect that the user is running OpenSSH
295 ;; 4.0 or newer, we could reuse the connection, which calls also for
296 ;; an external method.
297 (cond
298 ;; PuTTY is installed. We don't take it, if it is installed on a
299 ;; non-windows system, or pscp from the pssh (parallel ssh) package
300 ;; is found.
301 ((and (eq system-type 'windows-nt) (executable-find "pscp")) "pscp")
302 ;; There is an ssh installation.
303 ((executable-find "scp") "scp")
304 ;; Fallback.
305 (t "ftp"))
306 "Default method to use for transferring files.
307 See `tramp-methods' for possibilities.
308 Also see `tramp-default-method-alist'."
309 :group 'tramp
310 :type 'string
311 :require 'tramp)
313 ;;;###tramp-autoload
314 (defcustom tramp-default-method-alist nil
315 "Default method to use for specific host/user pairs.
316 This is an alist of items (HOST USER METHOD). The first matching item
317 specifies the method to use for a file name which does not specify a
318 method. HOST and USER are regular expressions or nil, which is
319 interpreted as a regular expression which always matches. If no entry
320 matches, the variable `tramp-default-method' takes effect.
322 If the file name does not specify the user, lookup is done using the
323 empty string for the user name.
325 See `tramp-methods' for a list of possibilities for METHOD."
326 :group 'tramp
327 :type '(repeat (list (choice :tag "Host regexp" regexp sexp)
328 (choice :tag "User regexp" regexp sexp)
329 (choice :tag "Method name" string (const nil))))
330 :require 'tramp)
332 (defcustom tramp-default-user nil
333 "Default user to use for transferring files.
334 It is nil by default; otherwise settings in configuration files like
335 \"~/.ssh/config\" would be overwritten. Also see `tramp-default-user-alist'.
337 This variable is regarded as obsolete, and will be removed soon."
338 :group 'tramp
339 :type '(choice (const nil) string)
340 :require 'tramp)
342 ;;;###tramp-autoload
343 (defcustom tramp-default-user-alist nil
344 "Default user to use for specific method/host pairs.
345 This is an alist of items (METHOD HOST USER). The first matching item
346 specifies the user to use for a file name which does not specify a
347 user. METHOD and USER are regular expressions or nil, which is
348 interpreted as a regular expression which always matches. If no entry
349 matches, the variable `tramp-default-user' takes effect.
351 If the file name does not specify the method, lookup is done using the
352 empty string for the method name."
353 :group 'tramp
354 :type '(repeat (list (choice :tag "Method regexp" regexp sexp)
355 (choice :tag " Host regexp" regexp sexp)
356 (choice :tag " User name" string (const nil))))
357 :require 'tramp)
359 (defcustom tramp-default-host (system-name)
360 "Default host to use for transferring files.
361 Useful for su and sudo methods mostly."
362 :group 'tramp
363 :type 'string
364 :require 'tramp)
366 ;;;###tramp-autoload
367 (defcustom tramp-default-host-alist nil
368 "Default host to use for specific method/user pairs.
369 This is an alist of items (METHOD USER HOST). The first matching item
370 specifies the host to use for a file name which does not specify a
371 host. METHOD and HOST are regular expressions or nil, which is
372 interpreted as a regular expression which always matches. If no entry
373 matches, the variable `tramp-default-host' takes effect.
375 If the file name does not specify the method, lookup is done using the
376 empty string for the method name."
377 :group 'tramp
378 :version "24.4"
379 :type '(repeat (list (choice :tag "Method regexp" regexp sexp)
380 (choice :tag " User regexp" regexp sexp)
381 (choice :tag " Host name" string (const nil))))
382 :require 'tramp)
384 (defcustom tramp-default-proxies-alist nil
385 "Route to be followed for specific host/user pairs.
386 This is an alist of items (HOST USER PROXY). The first matching
387 item specifies the proxy to be passed for a file name located on
388 a remote target matching USER@HOST. HOST and USER are regular
389 expressions. PROXY must be a Tramp filename without a localname
390 part. Method and user name on PROXY are optional, which is
391 interpreted with the default values. PROXY can contain the
392 patterns %h and %u, which are replaced by the strings matching
393 HOST or USER, respectively.
395 HOST, USER or PROXY could also be Lisp forms, which will be
396 evaluated. The result must be a string or nil, which is
397 interpreted as a regular expression which always matches."
398 :group 'tramp
399 :type '(repeat (list (choice :tag "Host regexp" regexp sexp)
400 (choice :tag "User regexp" regexp sexp)
401 (choice :tag " Proxy name" string (const nil))))
402 :require 'tramp)
404 (defcustom tramp-save-ad-hoc-proxies nil
405 "Whether to save ad-hoc proxies persistently."
406 :group 'tramp
407 :version "24.3"
408 :type 'boolean
409 :require 'tramp)
411 (defcustom tramp-restricted-shell-hosts-alist
412 (when (memq system-type '(windows-nt))
413 (list (concat "\\`" (regexp-quote (system-name)) "\\'")))
414 "List of hosts, which run a restricted shell.
415 This is a list of regular expressions, which denote hosts running
416 a registered shell like \"rbash\". Those hosts can be used as
417 proxies only, see `tramp-default-proxies-alist'. If the local
418 host runs a registered shell, it shall be added to this list, too."
419 :version "24.3"
420 :group 'tramp
421 :type '(repeat (regexp :tag "Host regexp"))
422 :require 'tramp)
424 ;;;###tramp-autoload
425 (defconst tramp-local-host-regexp
426 (concat
427 "\\`"
428 (regexp-opt
429 (list "localhost" "localhost6" (system-name) "127.0.0.1" "::1") t)
430 "\\'")
431 "Host names which are regarded as local host.")
433 (defvar tramp-completion-function-alist nil
434 "Alist of methods for remote files.
435 This is a list of entries of the form \(NAME PAIR1 PAIR2 ...).
436 Each NAME stands for a remote access method. Each PAIR is of the form
437 \(FUNCTION FILE). FUNCTION is responsible to extract user names and host
438 names from FILE for completion. The following predefined FUNCTIONs exists:
440 * `tramp-parse-rhosts' for \"~/.rhosts\" like files,
441 * `tramp-parse-shosts' for \"~/.ssh/known_hosts\" like files,
442 * `tramp-parse-sconfig' for \"~/.ssh/config\" like files,
443 * `tramp-parse-shostkeys' for \"~/.ssh2/hostkeys/*\" like files,
444 * `tramp-parse-sknownhosts' for \"~/.ssh2/knownhosts/*\" like files,
445 * `tramp-parse-hosts' for \"/etc/hosts\" like files,
446 * `tramp-parse-passwd' for \"/etc/passwd\" like files.
447 * `tramp-parse-etc-group' for \"/etc/group\" like files.
448 * `tramp-parse-netrc' for \"~/.netrc\" like files.
449 * `tramp-parse-putty' for PuTTY registered sessions.
451 FUNCTION can also be a user defined function. For more details see
452 the info pages.")
454 (defconst tramp-echo-mark-marker "_echo"
455 "String marker to surround echoed commands.")
457 (defconst tramp-echo-mark-marker-length (length tramp-echo-mark-marker)
458 "String length of `tramp-echo-mark-marker'.")
460 (defconst tramp-echo-mark
461 (concat tramp-echo-mark-marker
462 (make-string tramp-echo-mark-marker-length ?\b))
463 "String mark to be transmitted around shell commands.
464 Used to separate their echo from the output they produce. This
465 will only be used if we cannot disable remote echo via stty.
466 This string must have no effect on the remote shell except for
467 producing some echo which can later be detected by
468 `tramp-echoed-echo-mark-regexp'. Using `tramp-echo-mark-marker',
469 followed by an equal number of backspaces to erase them will
470 usually suffice.")
472 (defconst tramp-echoed-echo-mark-regexp
473 (format "%s\\(\b\\( \b\\)?\\)\\{%d\\}"
474 tramp-echo-mark-marker tramp-echo-mark-marker-length)
475 "Regexp which matches `tramp-echo-mark' as it gets echoed by
476 the remote shell.")
478 (defcustom tramp-local-end-of-line
479 (if (memq system-type '(windows-nt)) "\r\n" "\n")
480 "String used for end of line in local processes."
481 :version "24.1"
482 :group 'tramp
483 :type 'string
484 :require 'tramp)
486 (defcustom tramp-rsh-end-of-line "\n"
487 "String used for end of line in rsh connections.
488 I don't think this ever needs to be changed, so please tell me about it
489 if you need to change this."
490 :group 'tramp
491 :type 'string
492 :require 'tramp)
494 (defcustom tramp-login-prompt-regexp
495 ".*\\(user\\|login\\)\\( .*\\)?: *"
496 "Regexp matching login-like prompts.
497 The regexp should match at end of buffer.
499 Sometimes the prompt is reported to look like \"login as:\"."
500 :group 'tramp
501 :type 'regexp
502 :require 'tramp)
504 (defcustom tramp-shell-prompt-pattern
505 ;; Allow a prompt to start right after a ^M since it indeed would be
506 ;; displayed at the beginning of the line (and Zsh uses it). This
507 ;; regexp works only for GNU Emacs.
508 ;; Allow also [] style prompts. They can appear only during
509 ;; connection initialization; Tramp redefines the prompt afterwards.
510 (concat "\\(?:^\\|\r\\)"
511 "[^]#$%>\n]*#?[]#$%>] *\\(\e\\[[0-9;]*[a-zA-Z] *\\)*")
512 "Regexp to match prompts from remote shell.
513 Normally, Tramp expects you to configure `shell-prompt-pattern'
514 correctly, but sometimes it happens that you are connecting to a
515 remote host which sends a different kind of shell prompt. Therefore,
516 Tramp recognizes things matched by `shell-prompt-pattern' as prompt,
517 and also things matched by this variable. The default value of this
518 variable is similar to the default value of `shell-prompt-pattern',
519 which should work well in many cases.
521 This regexp must match both `tramp-initial-end-of-output' and
522 `tramp-end-of-output'."
523 :group 'tramp
524 :type 'regexp
525 :require 'tramp)
527 (defcustom tramp-password-prompt-regexp
528 (format "^.*\\(%s\\).*:\^@? *"
529 ;; `password-word-equivalents' has been introduced with Emacs 24.4.
530 (if (boundp 'password-word-equivalents)
531 (regexp-opt (symbol-value 'password-word-equivalents))
532 "password\\|passphrase"))
533 "Regexp matching password-like prompts.
534 The regexp should match at end of buffer.
536 The `sudo' program appears to insert a `^@' character into the prompt."
537 :version "24.4"
538 :group 'tramp
539 :type 'regexp
540 :require 'tramp)
542 (defcustom tramp-wrong-passwd-regexp
543 (concat "^.*"
544 ;; These strings should be on the last line
545 (regexp-opt '("Permission denied"
546 "Login incorrect"
547 "Login Incorrect"
548 "Connection refused"
549 "Connection closed"
550 "Timeout, server not responding."
551 "Sorry, try again."
552 "Name or service not known"
553 "Host key verification failed."
554 "No supported authentication methods left to try!") t)
555 ".*"
556 "\\|"
557 "^.*\\("
558 ;; Here comes a list of regexes, separated by \\|
559 "Received signal [0-9]+"
560 "\\).*")
561 "Regexp matching a `login failed' message.
562 The regexp should match at end of buffer."
563 :group 'tramp
564 :type 'regexp
565 :require 'tramp)
567 (defcustom tramp-yesno-prompt-regexp
568 (concat
569 (regexp-opt '("Are you sure you want to continue connecting (yes/no)?") t)
570 "\\s-*")
571 "Regular expression matching all yes/no queries which need to be confirmed.
572 The confirmation should be done with yes or no.
573 The regexp should match at end of buffer.
574 See also `tramp-yn-prompt-regexp'."
575 :group 'tramp
576 :type 'regexp
577 :require 'tramp)
579 (defcustom tramp-yn-prompt-regexp
580 (concat
581 (regexp-opt '("Store key in cache? (y/n)"
582 "Update cached key? (y/n, Return cancels connection)")
584 "\\s-*")
585 "Regular expression matching all y/n queries which need to be confirmed.
586 The confirmation should be done with y or n.
587 The regexp should match at end of buffer.
588 See also `tramp-yesno-prompt-regexp'."
589 :group 'tramp
590 :type 'regexp
591 :require 'tramp)
593 (defcustom tramp-terminal-prompt-regexp
594 (concat "\\("
595 "TERM = (.*)"
596 "\\|"
597 "Terminal type\\? \\[.*\\]"
598 "\\)\\s-*")
599 "Regular expression matching all terminal setting prompts.
600 The regexp should match at end of buffer.
601 The answer will be provided by `tramp-action-terminal', which see."
602 :group 'tramp
603 :type 'regexp
604 :require 'tramp)
606 (defcustom tramp-operation-not-permitted-regexp
607 (concat "\\(" "preserving times.*" "\\|" "set mode" "\\)" ":\\s-*"
608 (regexp-opt '("Operation not permitted") t))
609 "Regular expression matching keep-date problems in (s)cp operations.
610 Copying has been performed successfully already, so this message can
611 be ignored safely."
612 :group 'tramp
613 :type 'regexp
614 :require 'tramp)
616 (defcustom tramp-copy-failed-regexp
617 (concat "\\(.+: "
618 (regexp-opt '("Permission denied"
619 "not a regular file"
620 "is a directory"
621 "No such file or directory")
623 "\\)\\s-*")
624 "Regular expression matching copy problems in (s)cp operations."
625 :group 'tramp
626 :type 'regexp
627 :require 'tramp)
629 (defcustom tramp-process-alive-regexp
631 "Regular expression indicating a process has finished.
632 In fact this expression is empty by intention, it will be used only to
633 check regularly the status of the associated process.
634 The answer will be provided by `tramp-action-process-alive',
635 `tramp-action-out-of-band', which see."
636 :group 'tramp
637 :type 'regexp
638 :require 'tramp)
640 (defconst tramp-temp-name-prefix "tramp."
641 "Prefix to use for temporary files.
642 If this is a relative file name (such as \"tramp.\"), it is considered
643 relative to the directory name returned by the function
644 `tramp-compat-temporary-file-directory' (which see). It may also be an
645 absolute file name; don't forget to include a prefix for the filename
646 part, though.")
648 (defconst tramp-temp-buffer-name " *tramp temp*"
649 "Buffer name for a temporary buffer.
650 It shall be used in combination with `generate-new-buffer-name'.")
652 (defvar tramp-temp-buffer-file-name nil
653 "File name of a persistent local temporary file.
654 Useful for \"rsync\" like methods.")
655 (make-variable-buffer-local 'tramp-temp-buffer-file-name)
656 (put 'tramp-temp-buffer-file-name 'permanent-local t)
658 ;;;###autoload
659 (defcustom tramp-syntax 'ftp
660 "Tramp filename syntax to be used.
662 It can have the following values:
664 `ftp' -- Ange-FTP like syntax
665 `sep' -- Syntax as defined for XEmacs originally."
666 :group 'tramp
667 :version "24.4"
668 :type '(choice (const :tag "Ange-FTP" ftp)
669 (const :tag "XEmacs" sep))
670 :require 'tramp)
672 (defconst tramp-prefix-format
673 (cond ((equal tramp-syntax 'ftp) "/")
674 ((equal tramp-syntax 'sep) "/[")
675 (t (error "Wrong `tramp-syntax' defined")))
676 "String matching the very beginning of Tramp file names.
677 Used in `tramp-make-tramp-file-name'.")
679 (defconst tramp-prefix-regexp
680 (concat "^" (regexp-quote tramp-prefix-format))
681 "Regexp matching the very beginning of Tramp file names.
682 Should always start with \"^\". Derived from `tramp-prefix-format'.")
684 (defconst tramp-method-regexp
685 "[a-zA-Z_0-9-]+"
686 "Regexp matching methods identifiers.")
688 (defconst tramp-postfix-method-format
689 (cond ((equal tramp-syntax 'ftp) ":")
690 ((equal tramp-syntax 'sep) "/")
691 (t (error "Wrong `tramp-syntax' defined")))
692 "String matching delimiter between method and user or host names.
693 Used in `tramp-make-tramp-file-name'.")
695 (defconst tramp-postfix-method-regexp
696 (regexp-quote tramp-postfix-method-format)
697 "Regexp matching delimiter between method and user or host names.
698 Derived from `tramp-postfix-method-format'.")
700 (defconst tramp-user-regexp "[^/|: \t]+"
701 "Regexp matching user names.")
703 ;;;###tramp-autoload
704 (defconst tramp-prefix-domain-format "%"
705 "String matching delimiter between user and domain names.")
707 ;;;###tramp-autoload
708 (defconst tramp-prefix-domain-regexp
709 (regexp-quote tramp-prefix-domain-format)
710 "Regexp matching delimiter between user and domain names.
711 Derived from `tramp-prefix-domain-format'.")
713 (defconst tramp-domain-regexp "[-a-zA-Z0-9_.]+"
714 "Regexp matching domain names.")
716 (defconst tramp-user-with-domain-regexp
717 (concat "\\(" tramp-user-regexp "\\)"
718 tramp-prefix-domain-regexp
719 "\\(" tramp-domain-regexp "\\)")
720 "Regexp matching user names with domain names.")
722 (defconst tramp-postfix-user-format "@"
723 "String matching delimiter between user and host names.
724 Used in `tramp-make-tramp-file-name'.")
726 (defconst tramp-postfix-user-regexp
727 (regexp-quote tramp-postfix-user-format)
728 "Regexp matching delimiter between user and host names.
729 Derived from `tramp-postfix-user-format'.")
731 (defconst tramp-host-regexp "[a-zA-Z0-9_.-]+"
732 "Regexp matching host names.")
734 (defconst tramp-prefix-ipv6-format
735 (cond ((equal tramp-syntax 'ftp) "[")
736 ((equal tramp-syntax 'sep) "")
737 (t (error "Wrong `tramp-syntax' defined")))
738 "String matching left hand side of IPv6 addresses.
739 Used in `tramp-make-tramp-file-name'.")
741 (defconst tramp-prefix-ipv6-regexp
742 (regexp-quote tramp-prefix-ipv6-format)
743 "Regexp matching left hand side of IPv6 addresses.
744 Derived from `tramp-prefix-ipv6-format'.")
746 ;; The following regexp is a bit sloppy. But it shall serve our
747 ;; purposes. It covers also IPv4 mapped IPv6 addresses, like in
748 ;; "::ffff:192.168.0.1".
749 (defconst tramp-ipv6-regexp
750 "\\(?:\\(?:[a-zA-Z0-9]+\\)?:\\)+[a-zA-Z0-9.]+"
751 "Regexp matching IPv6 addresses.")
753 (defconst tramp-postfix-ipv6-format
754 (cond ((equal tramp-syntax 'ftp) "]")
755 ((equal tramp-syntax 'sep) "")
756 (t (error "Wrong `tramp-syntax' defined")))
757 "String matching right hand side of IPv6 addresses.
758 Used in `tramp-make-tramp-file-name'.")
760 (defconst tramp-postfix-ipv6-regexp
761 (regexp-quote tramp-postfix-ipv6-format)
762 "Regexp matching right hand side of IPv6 addresses.
763 Derived from `tramp-postfix-ipv6-format'.")
765 (defconst tramp-prefix-port-format
766 (cond ((equal tramp-syntax 'ftp) "#")
767 ((equal tramp-syntax 'sep) "#")
768 (t (error "Wrong `tramp-syntax' defined")))
769 "String matching delimiter between host names and port numbers.")
771 (defconst tramp-prefix-port-regexp
772 (regexp-quote tramp-prefix-port-format)
773 "Regexp matching delimiter between host names and port numbers.
774 Derived from `tramp-prefix-port-format'.")
776 (defconst tramp-port-regexp "[0-9]+"
777 "Regexp matching port numbers.")
779 (defconst tramp-host-with-port-regexp
780 (concat "\\(" tramp-host-regexp "\\)"
781 tramp-prefix-port-regexp
782 "\\(" tramp-port-regexp "\\)")
783 "Regexp matching host names with port numbers.")
785 (defconst tramp-postfix-hop-format "|"
786 "String matching delimiter after ad-hoc hop definitions.")
788 (defconst tramp-postfix-hop-regexp
789 (regexp-quote tramp-postfix-hop-format)
790 "Regexp matching delimiter after ad-hoc hop definitions.
791 Derived from `tramp-postfix-hop-format'.")
793 (defconst tramp-postfix-host-format
794 (cond ((equal tramp-syntax 'ftp) ":")
795 ((equal tramp-syntax 'sep) "]")
796 (t (error "Wrong `tramp-syntax' defined")))
797 "String matching delimiter between host names and localnames.
798 Used in `tramp-make-tramp-file-name'.")
800 (defconst tramp-postfix-host-regexp
801 (regexp-quote tramp-postfix-host-format)
802 "Regexp matching delimiter between host names and localnames.
803 Derived from `tramp-postfix-host-format'.")
805 (defconst tramp-localname-regexp ".*$"
806 "Regexp matching localnames.")
808 (defconst tramp-unknown-id-string "UNKNOWN"
809 "String used to denote an unknown user or group")
811 (defconst tramp-unknown-id-integer -1
812 "Integer used to denote an unknown user or group")
814 ;;; File name format:
816 (defconst tramp-remote-file-name-spec-regexp
817 (concat
818 "\\(?:" "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp "\\)?"
819 "\\(?:" "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp "\\)?"
820 "\\(" "\\(?:" tramp-host-regexp "\\|"
821 tramp-prefix-ipv6-regexp "\\(?:" tramp-ipv6-regexp "\\)?"
822 tramp-postfix-ipv6-regexp "\\)"
823 "\\(?:" tramp-prefix-port-regexp tramp-port-regexp "\\)?" "\\)?")
824 "Regular expression matching a Tramp file name between prefix and postfix.")
826 (defconst tramp-file-name-structure
827 (list
828 (concat
829 tramp-prefix-regexp
830 "\\(" "\\(?:" tramp-remote-file-name-spec-regexp
831 tramp-postfix-hop-regexp "\\)+" "\\)?"
832 tramp-remote-file-name-spec-regexp tramp-postfix-host-regexp
833 "\\(" tramp-localname-regexp "\\)")
834 5 6 7 8 1)
835 "List of six elements (REGEXP METHOD USER HOST FILE HOP), detailing \
836 the Tramp file name structure.
838 The first element REGEXP is a regular expression matching a Tramp file
839 name. The regex should contain parentheses around the method name,
840 the user name, the host name, and the file name parts.
842 The second element METHOD is a number, saying which pair of
843 parentheses matches the method name. The third element USER is
844 similar, but for the user name. The fourth element HOST is similar,
845 but for the host name. The fifth element FILE is for the file name.
846 The last element HOP is the ad-hoc hop definition, which could be a
847 cascade of several hops.
849 These numbers are passed directly to `match-string', which see. That
850 means the opening parentheses are counted to identify the pair.
852 See also `tramp-file-name-regexp'.")
854 ;;;###autoload
855 (defconst tramp-file-name-regexp-unified
856 (if (memq system-type '(cygwin windows-nt))
857 "\\`/\\(\\[.*\\]\\|[^/|:]\\{2,\\}[^/|]*\\):"
858 "\\`/[^/|:][^/|]*:")
859 "Value for `tramp-file-name-regexp' for unified remoting.
860 See `tramp-file-name-structure' for more explanations.
862 On W32 systems, the volume letter must be ignored.")
864 ;;;###autoload
865 (defconst tramp-file-name-regexp-separate "\\`/\\[.*\\]"
866 "Value for `tramp-file-name-regexp' for separate remoting.
867 See `tramp-file-name-structure' for more explanations.")
869 ;;;###autoload
870 (defconst tramp-file-name-regexp
871 (cond ((equal tramp-syntax 'ftp) tramp-file-name-regexp-unified)
872 ((equal tramp-syntax 'sep) tramp-file-name-regexp-separate)
873 (t (error "Wrong `tramp-syntax' defined")))
874 "Regular expression matching file names handled by Tramp.
875 This regexp should match Tramp file names but no other file names.
876 When tramp.el is loaded, this regular expression is prepended to
877 `file-name-handler-alist', and that is searched sequentially. Thus,
878 if the Tramp entry appears rather early in the `file-name-handler-alist'
879 and is a bit too general, then some files might be considered Tramp
880 files which are not really Tramp files.
882 Please note that the entry in `file-name-handler-alist' is made when
883 this file \(tramp.el) is loaded. This means that this variable must be set
884 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
885 updated after changing this variable.
887 Also see `tramp-file-name-structure'.")
889 ;;;###autoload
890 (defconst tramp-completion-file-name-regexp-unified
891 (if (memq system-type '(cygwin windows-nt))
892 "\\`/[^/]\\{2,\\}\\'" "\\`/[^/]*\\'")
893 "Value for `tramp-completion-file-name-regexp' for unified remoting.
894 See `tramp-file-name-structure' for more explanations.
896 On W32 systems, the volume letter must be ignored.")
898 ;;;###autoload
899 (defconst tramp-completion-file-name-regexp-separate
900 "\\`/\\([[][^]]*\\)?\\'"
901 "Value for `tramp-completion-file-name-regexp' for separate remoting.
902 See `tramp-file-name-structure' for more explanations.")
904 ;;;###autoload
905 (defconst tramp-completion-file-name-regexp
906 (cond ((equal tramp-syntax 'ftp) tramp-completion-file-name-regexp-unified)
907 ((equal tramp-syntax 'sep) tramp-completion-file-name-regexp-separate)
908 (t (error "Wrong `tramp-syntax' defined")))
909 "Regular expression matching file names handled by Tramp completion.
910 This regexp should match partial Tramp file names only.
912 Please note that the entry in `file-name-handler-alist' is made when
913 this file \(tramp.el) is loaded. This means that this variable must be set
914 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
915 updated after changing this variable.
917 Also see `tramp-file-name-structure'.")
919 ;; Chunked sending kludge. We set this to 500 for black-listed constellations
920 ;; known to have a bug in `process-send-string'; some ssh connections appear
921 ;; to drop bytes when data is sent too quickly. There is also a connection
922 ;; buffer local variable, which is computed depending on remote host properties
923 ;; when `tramp-chunksize' is zero or nil.
924 (defcustom tramp-chunksize (when (memq system-type '(hpux)) 500)
925 ;; Parentheses in docstring starting at beginning of line are escaped.
926 ;; Fontification is messed up when
927 ;; `open-paren-in-column-0-is-defun-start' set to t.
928 "If non-nil, chunksize for sending input to local process.
929 It is necessary only on systems which have a buggy `process-send-string'
930 implementation. The necessity, whether this variable must be set, can be
931 checked via the following code:
933 (with-temp-buffer
934 (let* ((user \"xxx\") (host \"yyy\")
935 (init 0) (step 50)
936 (sent init) (received init))
937 (while (= sent received)
938 (setq sent (+ sent step))
939 (erase-buffer)
940 (let ((proc (start-process (buffer-name) (current-buffer)
941 \"ssh\" \"-l\" user host \"wc\" \"-c\")))
942 (when (process-live-p proc)
943 (process-send-string proc (make-string sent ?\\ ))
944 (process-send-eof proc)
945 (process-send-eof proc))
946 (while (not (progn (goto-char (point-min))
947 (re-search-forward \"\\\\w+\" (point-max) t)))
948 (accept-process-output proc 1))
949 (when (process-live-p proc)
950 (setq received (string-to-number (match-string 0)))
951 (delete-process proc)
952 (message \"Bytes sent: %s\\tBytes received: %s\" sent received)
953 (sit-for 0))))
954 (if (> sent (+ init step))
955 (message \"You should set `tramp-chunksize' to a maximum of %s\"
956 (- sent step))
957 (message \"Test does not work\")
958 (display-buffer (current-buffer))
959 (sit-for 30))))
961 In the Emacs normally running Tramp, evaluate the above code
962 \(replace \"xxx\" and \"yyy\" by the remote user and host name,
963 respectively). You can do this, for example, by pasting it into
964 the `*scratch*' buffer and then hitting C-j with the cursor after the
965 last closing parenthesis. Note that it works only if you have configured
966 \"ssh\" to run without password query, see ssh-agent(1).
968 You will see the number of bytes sent successfully to the remote host.
969 If that number exceeds 1000, you can stop the execution by hitting
970 C-g, because your Emacs is likely clean.
972 When it is necessary to set `tramp-chunksize', you might consider to
973 use an out-of-the-band method \(like \"scp\") instead of an internal one
974 \(like \"ssh\"), because setting `tramp-chunksize' to non-nil decreases
975 performance.
977 If your Emacs is buggy, the code stops and gives you an indication
978 about the value `tramp-chunksize' should be set. Maybe you could just
979 experiment a bit, e.g. changing the values of `init' and `step'
980 in the third line of the code.
982 Please raise a bug report via \"M-x tramp-bug\" if your system needs
983 this variable to be set as well."
984 :group 'tramp
985 :type '(choice (const nil) integer)
986 :require 'tramp)
988 ;; Logging in to a remote host normally requires obtaining a pty. But
989 ;; Emacs on MacOS X has process-connection-type set to nil by default,
990 ;; so on those systems Tramp doesn't obtain a pty. Here, we allow
991 ;; for an override of the system default.
992 (defcustom tramp-process-connection-type t
993 "Overrides `process-connection-type' for connections from Tramp.
994 Tramp binds `process-connection-type' to the value given here before
995 opening a connection to a remote host."
996 :group 'tramp
997 :type '(choice (const nil) (const t) (const pty))
998 :require 'tramp)
1000 (defcustom tramp-connection-timeout 60
1001 "Defines the max time to wait for establishing a connection (in seconds).
1002 This can be overwritten for different connection types in `tramp-methods'.
1004 The timeout does not include the time reading a password."
1005 :group 'tramp
1006 :version "24.4"
1007 :type 'integer
1008 :require 'tramp)
1010 (defcustom tramp-connection-min-time-diff 5
1011 "Defines seconds between two consecutive connection attempts.
1012 This is necessary as self defense mechanism, in order to avoid
1013 yo-yo connection attempts when the remote host is unavailable.
1015 A value of 0 or nil suppresses this check. This might be
1016 necessary, when several out-of-order copy operations are
1017 performed, or when several asynchronous processes will be started
1018 in a short time frame. In those cases it is recommended to
1019 let-bind this variable."
1020 :group 'tramp
1021 :version "24.4"
1022 :type '(choice (const nil) integer)
1023 :require 'tramp)
1025 (defcustom tramp-completion-reread-directory-timeout 10
1026 "Defines seconds since last remote command before rereading a directory.
1027 A remote directory might have changed its contents. In order to
1028 make it visible during file name completion in the minibuffer,
1029 Tramp flushes its cache and rereads the directory contents when
1030 more than `tramp-completion-reread-directory-timeout' seconds
1031 have been gone since last remote command execution. A value of t
1032 would require an immediate reread during filename completion, nil
1033 means to use always cached values for the directory contents."
1034 :group 'tramp
1035 :type '(choice (const nil) (const t) integer)
1036 :require 'tramp)
1038 ;;; Internal Variables:
1040 (defvar tramp-current-method nil
1041 "Connection method for this *tramp* buffer.")
1043 (defvar tramp-current-user nil
1044 "Remote login name for this *tramp* buffer.")
1046 (defvar tramp-current-host nil
1047 "Remote host for this *tramp* buffer.")
1049 (defvar tramp-current-connection nil
1050 "Last connection timestamp.")
1052 (defconst tramp-completion-file-name-handler-alist
1053 '((expand-file-name . tramp-completion-handle-expand-file-name)
1054 (file-name-all-completions
1055 . tramp-completion-handle-file-name-all-completions)
1056 (file-name-completion . tramp-completion-handle-file-name-completion))
1057 "Alist of completion handler functions.
1058 Used for file names matching `tramp-file-name-regexp'. Operations
1059 not mentioned here will be handled by Tramp's file name handler
1060 functions, or the normal Emacs functions.")
1062 ;; Handlers for foreign methods, like FTP or SMB, shall be plugged here.
1063 ;;;###tramp-autoload
1064 (defvar tramp-foreign-file-name-handler-alist nil
1065 "Alist of elements (FUNCTION . HANDLER) for foreign methods handled specially.
1066 If (FUNCTION FILENAME) returns non-nil, then all I/O on that file is done by
1067 calling HANDLER.")
1069 ;;; Internal functions which must come first:
1071 ;; `user-error' has appeared in Emacs 24.3.
1072 (defsubst tramp-user-error (vec-or-proc format &rest args)
1073 "Signal a pilot error."
1074 (apply
1075 'tramp-error vec-or-proc
1076 (if (fboundp 'user-error) 'user-error 'error) format args))
1078 ;; Conversion functions between external representation and
1079 ;; internal data structure. Convenience functions for internal
1080 ;; data structure.
1082 (defun tramp-get-method-parameter (vec param)
1083 "Return the method parameter PARAM.
1084 If VEC is a vector, check first in connection properties.
1085 Afterwards, check in `tramp-methods'. If the `tramp-methods'
1086 entry does not exist, return nil."
1087 (let ((hash-entry
1088 (replace-regexp-in-string "^tramp-" "" (symbol-name param))))
1089 (if (tramp-connection-property-p vec hash-entry)
1090 ;; We use the cached property.
1091 (tramp-get-connection-property vec hash-entry nil)
1092 ;; Use the static value from `tramp-methods'.
1093 (let ((methods-entry
1094 (assoc param (assoc (tramp-file-name-method vec) tramp-methods))))
1095 (when methods-entry (cadr methods-entry))))))
1097 (defun tramp-file-name-p (vec)
1098 "Check, whether VEC is a Tramp object."
1099 (and (vectorp vec) (= 5 (length vec))))
1101 (defun tramp-file-name-method (vec)
1102 "Return method component of VEC."
1103 (and (tramp-file-name-p vec) (aref vec 0)))
1105 (defun tramp-file-name-user (vec)
1106 "Return user component of VEC."
1107 (and (tramp-file-name-p vec) (aref vec 1)))
1109 (defun tramp-file-name-host (vec)
1110 "Return host component of VEC."
1111 (and (tramp-file-name-p vec) (aref vec 2)))
1113 (defun tramp-file-name-localname (vec)
1114 "Return localname component of VEC."
1115 (and (tramp-file-name-p vec) (aref vec 3)))
1117 (defun tramp-file-name-hop (vec)
1118 "Return hop component of VEC."
1119 (and (tramp-file-name-p vec) (aref vec 4)))
1121 ;; The user part of a Tramp file name vector can be of kind
1122 ;; "user%domain". Sometimes, we must extract these parts.
1123 (defun tramp-file-name-real-user (vec)
1124 "Return the user name of VEC without domain."
1125 (save-match-data
1126 (let ((user (tramp-file-name-user vec)))
1127 (if (and (stringp user)
1128 (string-match tramp-user-with-domain-regexp user))
1129 (match-string 1 user)
1130 user))))
1132 (defun tramp-file-name-domain (vec)
1133 "Return the domain name of VEC."
1134 (save-match-data
1135 (let ((user (tramp-file-name-user vec)))
1136 (and (stringp user)
1137 (string-match tramp-user-with-domain-regexp user)
1138 (match-string 2 user)))))
1140 ;; The host part of a Tramp file name vector can be of kind
1141 ;; "host#port". Sometimes, we must extract these parts.
1142 (defun tramp-file-name-real-host (vec)
1143 "Return the host name of VEC without port."
1144 (save-match-data
1145 (let ((host (tramp-file-name-host vec)))
1146 (if (and (stringp host)
1147 (string-match tramp-host-with-port-regexp host))
1148 (match-string 1 host)
1149 host))))
1151 (defun tramp-file-name-port (vec)
1152 "Return the port number of VEC."
1153 (save-match-data
1154 (let ((method (tramp-file-name-method vec))
1155 (host (tramp-file-name-host vec)))
1156 (or (and (stringp host)
1157 (string-match tramp-host-with-port-regexp host)
1158 (string-to-number (match-string 2 host)))
1159 (tramp-get-method-parameter vec 'tramp-default-port)))))
1161 ;;;###tramp-autoload
1162 (defun tramp-tramp-file-p (name)
1163 "Return t if NAME is a string with Tramp file name syntax."
1164 (save-match-data
1165 (and (stringp name)
1166 (string-match tramp-file-name-regexp name))))
1168 (defun tramp-find-method (method user host)
1169 "Return the right method string to use.
1170 This is METHOD, if non-nil. Otherwise, do a lookup in
1171 `tramp-default-method-alist'."
1172 (let ((result
1173 (or method
1174 (let ((choices tramp-default-method-alist)
1175 lmethod item)
1176 (while choices
1177 (setq item (pop choices))
1178 (when (and (string-match (or (nth 0 item) "") (or host ""))
1179 (string-match (or (nth 1 item) "") (or user "")))
1180 (setq lmethod (nth 2 item))
1181 (setq choices nil)))
1182 lmethod)
1183 tramp-default-method)))
1184 ;; We must mark, whether a default value has been used.
1185 (if (or method (null result))
1186 result
1187 (propertize result 'tramp-default t))))
1189 (defun tramp-find-user (method user host)
1190 "Return the right user string to use.
1191 This is USER, if non-nil. Otherwise, do a lookup in
1192 `tramp-default-user-alist'."
1193 (let ((result
1194 (or user
1195 (let ((choices tramp-default-user-alist)
1196 luser item)
1197 (while choices
1198 (setq item (pop choices))
1199 (when (and (string-match (or (nth 0 item) "") (or method ""))
1200 (string-match (or (nth 1 item) "") (or host "")))
1201 (setq luser (nth 2 item))
1202 (setq choices nil)))
1203 luser)
1204 tramp-default-user)))
1205 ;; We must mark, whether a default value has been used.
1206 (if (or user (null result))
1207 result
1208 (propertize result 'tramp-default t))))
1210 (defun tramp-find-host (method user host)
1211 "Return the right host string to use.
1212 This is HOST, if non-nil. Otherwise, it is `tramp-default-host'."
1213 (or (and (> (length host) 0) host)
1214 (let ((choices tramp-default-host-alist)
1215 lhost item)
1216 (while choices
1217 (setq item (pop choices))
1218 (when (and (string-match (or (nth 0 item) "") (or method ""))
1219 (string-match (or (nth 1 item) "") (or user "")))
1220 (setq lhost (nth 2 item))
1221 (setq choices nil)))
1222 lhost)
1223 tramp-default-host))
1225 (defun tramp-check-proper-method-and-host (vec)
1226 "Check method and host name of VEC."
1227 (let ((method (tramp-file-name-method vec))
1228 (user (tramp-file-name-user vec))
1229 (host (tramp-file-name-host vec))
1230 (methods (mapcar 'car tramp-methods)))
1231 (when (and method (not (member method methods)))
1232 (tramp-cleanup-connection vec)
1233 (tramp-user-error vec "Unknown method \"%s\"" method))
1234 (when (and (equal tramp-syntax 'ftp) host
1235 (or (null method) (get-text-property 0 'tramp-default method))
1236 (or (null user) (get-text-property 0 'tramp-default user))
1237 (member host methods))
1238 (tramp-cleanup-connection vec)
1239 (tramp-user-error vec "Host name must not match method \"%s\"" host))))
1241 (defun tramp-dissect-file-name (name &optional nodefault)
1242 "Return a `tramp-file-name' structure.
1243 The structure consists of remote method, remote user, remote host,
1244 localname (file name on remote host) and hop. If NODEFAULT is
1245 non-nil, the file name parts are not expanded to their default
1246 values."
1247 (save-match-data
1248 (let ((match (string-match (nth 0 tramp-file-name-structure) name)))
1249 (unless match (tramp-user-error nil "Not a Tramp file name: \"%s\"" name))
1250 (let ((method (match-string (nth 1 tramp-file-name-structure) name))
1251 (user (match-string (nth 2 tramp-file-name-structure) name))
1252 (host (match-string (nth 3 tramp-file-name-structure) name))
1253 (localname (match-string (nth 4 tramp-file-name-structure) name))
1254 (hop (match-string (nth 5 tramp-file-name-structure) name)))
1255 (when host
1256 (when (string-match tramp-prefix-ipv6-regexp host)
1257 (setq host (replace-match "" nil t host)))
1258 (when (string-match tramp-postfix-ipv6-regexp host)
1259 (setq host (replace-match "" nil t host))))
1260 (if nodefault
1261 (vector method user host localname hop)
1262 (vector
1263 (tramp-find-method method user host)
1264 (tramp-find-user method user host)
1265 (tramp-find-host method user host)
1266 localname hop))))))
1268 (defun tramp-buffer-name (vec)
1269 "A name for the connection buffer VEC."
1270 ;; We must use `tramp-file-name-real-host', because for gateway
1271 ;; methods the default port will be expanded later on, which would
1272 ;; tamper the name.
1273 (let ((method (tramp-file-name-method vec))
1274 (user (tramp-file-name-user vec))
1275 (host (tramp-file-name-real-host vec)))
1276 (if (not (zerop (length user)))
1277 (format "*tramp/%s %s@%s*" method user host)
1278 (format "*tramp/%s %s*" method host))))
1280 (defun tramp-make-tramp-file-name (method user host localname &optional hop)
1281 "Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME.
1282 When not nil, an optional HOP is prepended."
1283 (concat tramp-prefix-format hop
1284 (when (not (zerop (length method)))
1285 (concat method tramp-postfix-method-format))
1286 (when (not (zerop (length user)))
1287 (concat user tramp-postfix-user-format))
1288 (when host
1289 (if (string-match tramp-ipv6-regexp host)
1290 (concat tramp-prefix-ipv6-format host tramp-postfix-ipv6-format)
1291 host))
1292 tramp-postfix-host-format
1293 (when localname localname)))
1295 (defun tramp-completion-make-tramp-file-name (method user host localname)
1296 "Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME.
1297 It must not be a complete Tramp file name, but as long as there are
1298 necessary only. This function will be used in file name completion."
1299 (concat tramp-prefix-format
1300 (when (not (zerop (length method)))
1301 (concat method tramp-postfix-method-format))
1302 (when (not (zerop (length user)))
1303 (concat user tramp-postfix-user-format))
1304 (when (not (zerop (length host)))
1305 (concat
1306 (if (string-match tramp-ipv6-regexp host)
1307 (concat
1308 tramp-prefix-ipv6-format host tramp-postfix-ipv6-format)
1309 host)
1310 tramp-postfix-host-format))
1311 (when localname localname)))
1313 (defun tramp-get-buffer (vec)
1314 "Get the connection buffer to be used for VEC."
1315 (or (get-buffer (tramp-buffer-name vec))
1316 (with-current-buffer (get-buffer-create (tramp-buffer-name vec))
1317 (setq buffer-undo-list t)
1318 (setq default-directory
1319 (tramp-make-tramp-file-name
1320 (tramp-file-name-method vec)
1321 (tramp-file-name-user vec)
1322 (tramp-file-name-host vec)
1323 "/"))
1324 (current-buffer))))
1326 (defun tramp-get-connection-buffer (vec)
1327 "Get the connection buffer to be used for VEC.
1328 In case a second asynchronous communication has been started, it is different
1329 from `tramp-get-buffer'."
1330 (or (tramp-get-connection-property vec "process-buffer" nil)
1331 (tramp-get-buffer vec)))
1333 (defun tramp-get-connection-name (vec)
1334 "Get the connection name to be used for VEC.
1335 In case a second asynchronous communication has been started, it is different
1336 from the default one."
1337 (or (tramp-get-connection-property vec "process-name" nil)
1338 (tramp-buffer-name vec)))
1340 (defun tramp-get-connection-process (vec)
1341 "Get the connection process to be used for VEC.
1342 In case a second asynchronous communication has been started, it is different
1343 from the default one."
1344 (get-process (tramp-get-connection-name vec)))
1346 (defun tramp-debug-buffer-name (vec)
1347 "A name for the debug buffer for VEC."
1348 ;; We must use `tramp-file-name-real-host', because for gateway
1349 ;; methods the default port will be expanded later on, which would
1350 ;; tamper the name.
1351 (let ((method (tramp-file-name-method vec))
1352 (user (tramp-file-name-user vec))
1353 (host (tramp-file-name-real-host vec)))
1354 (if (not (zerop (length user)))
1355 (format "*debug tramp/%s %s@%s*" method user host)
1356 (format "*debug tramp/%s %s*" method host))))
1358 (defconst tramp-debug-outline-regexp
1359 "[0-9]+:[0-9]+:[0-9]+\\.[0-9]+ [a-z0-9-]+ (\\([0-9]+\\)) #"
1360 "Used for highlighting Tramp debug buffers in `outline-mode'.")
1362 (defun tramp-debug-outline-level ()
1363 "Return the depth to which a statement is nested in the outline.
1364 Point must be at the beginning of a header line.
1366 The outline level is equal to the verbosity of the Tramp message."
1367 (1+ (string-to-number (match-string 1))))
1369 (defun tramp-get-debug-buffer (vec)
1370 "Get the debug buffer for VEC."
1371 (with-current-buffer
1372 (get-buffer-create (tramp-debug-buffer-name vec))
1373 (when (bobp)
1374 (setq buffer-undo-list t)
1375 ;; So it does not get loaded while `outline-regexp' is let-bound.
1376 (require 'outline)
1377 ;; Activate `outline-mode'. This runs `text-mode-hook' and
1378 ;; `outline-mode-hook'. We must prevent that local processes
1379 ;; die. Yes: I've seen `flyspell-mode', which starts "ispell".
1380 ;; Furthermore, `outline-regexp' must have the correct value
1381 ;; already, because it is used by `font-lock-compile-keywords'.
1382 (let ((default-directory (tramp-compat-temporary-file-directory))
1383 (outline-regexp tramp-debug-outline-regexp))
1384 (outline-mode))
1385 (set (make-local-variable 'outline-regexp) tramp-debug-outline-regexp)
1386 (set (make-local-variable 'outline-level) 'tramp-debug-outline-level))
1387 (current-buffer)))
1389 (defsubst tramp-debug-message (vec fmt-string &rest arguments)
1390 "Append message to debug buffer.
1391 Message is formatted with FMT-STRING as control string and the remaining
1392 ARGUMENTS to actually emit the message (if applicable)."
1393 (with-current-buffer (tramp-get-debug-buffer vec)
1394 (goto-char (point-max))
1395 ;; Headline.
1396 (when (bobp)
1397 (insert
1398 (format
1399 ";; Emacs: %s Tramp: %s -*- mode: outline; -*-"
1400 emacs-version tramp-version))
1401 (when (>= tramp-verbose 10)
1402 (insert
1403 (format
1404 "\n;; Location: %s Git: %s"
1405 (locate-library "tramp") (tramp-repository-get-version)))))
1406 (unless (bolp)
1407 (insert "\n"))
1408 ;; Timestamp.
1409 (let ((now (current-time)))
1410 (insert (format-time-string "%T." now))
1411 (insert (format "%06d " (nth 2 now))))
1412 ;; Calling Tramp function. We suppress compat and trace functions
1413 ;; from being displayed.
1414 (let ((btn 1) btf fn)
1415 (while (not fn)
1416 (setq btf (nth 1 (backtrace-frame btn)))
1417 (if (not btf)
1418 (setq fn "")
1419 (when (symbolp btf)
1420 (setq fn (symbol-name btf))
1421 (unless
1422 (and
1423 (string-match "^tramp" fn)
1424 (not
1425 (string-match
1426 (concat
1428 (regexp-opt
1429 '("tramp-backtrace"
1430 "tramp-compat-condition-case-unless-debug"
1431 "tramp-compat-funcall"
1432 "tramp-condition-case-unless-debug"
1433 "tramp-debug-message"
1434 "tramp-error"
1435 "tramp-error-with-buffer"
1436 "tramp-message"
1437 "tramp-user-error")
1439 "$")
1440 fn)))
1441 (setq fn nil)))
1442 (setq btn (1+ btn))))
1443 ;; The following code inserts filename and line number. Should
1444 ;; be inactive by default, because it is time consuming.
1445 ; (let ((ffn (find-function-noselect (intern fn))))
1446 ; (insert
1447 ; (format
1448 ; "%s:%d: "
1449 ; (file-name-nondirectory (buffer-file-name (car ffn)))
1450 ; (with-current-buffer (car ffn)
1451 ; (1+ (count-lines (point-min) (cdr ffn)))))))
1452 (insert (format "%s " fn)))
1453 ;; The message.
1454 (insert (apply #'format-message fmt-string arguments))))
1456 (defvar tramp-message-show-message t
1457 "Show Tramp message in the minibuffer.
1458 This variable is used to disable messages from `tramp-error'.
1459 The messages are visible anyway, because an error is raised.")
1461 (defsubst tramp-message (vec-or-proc level fmt-string &rest arguments)
1462 "Emit a message depending on verbosity level.
1463 VEC-OR-PROC identifies the Tramp buffer to use. It can be either a
1464 vector or a process. LEVEL says to be quiet if `tramp-verbose' is
1465 less than LEVEL. The message is emitted only if `tramp-verbose' is
1466 greater than or equal to LEVEL.
1468 The message is also logged into the debug buffer when `tramp-verbose'
1469 is greater than or equal 4.
1471 Calls functions `message' and `tramp-debug-message' with FMT-STRING as
1472 control string and the remaining ARGUMENTS to actually emit the message (if
1473 applicable)."
1474 (ignore-errors
1475 (when (<= level tramp-verbose)
1476 ;; Match data must be preserved!
1477 (save-match-data
1478 ;; Display only when there is a minimum level.
1479 (when (and tramp-message-show-message (<= level 3))
1480 (apply 'message
1481 (concat
1482 (cond
1483 ((= level 0) "")
1484 ((= level 1) "")
1485 ((= level 2) "Warning: ")
1486 (t "Tramp: "))
1487 fmt-string)
1488 arguments))
1489 ;; Log only when there is a minimum level.
1490 (when (>= tramp-verbose 4)
1491 ;; Translate proc to vec.
1492 (when (processp vec-or-proc)
1493 (let ((tramp-verbose 0))
1494 (setq vec-or-proc
1495 (tramp-get-connection-property vec-or-proc "vector" nil))))
1496 ;; Append connection buffer for error messages.
1497 (when (= level 1)
1498 (let ((tramp-verbose 0))
1499 (with-current-buffer (tramp-get-connection-buffer vec-or-proc)
1500 (setq fmt-string (concat fmt-string "\n%s")
1501 arguments (append arguments (list (buffer-string)))))))
1502 ;; Do it.
1503 (when (vectorp vec-or-proc)
1504 (apply 'tramp-debug-message
1505 vec-or-proc
1506 (concat (format "(%d) # " level) fmt-string)
1507 arguments)))))))
1509 (defsubst tramp-backtrace (&optional vec-or-proc)
1510 "Dump a backtrace into the debug buffer.
1511 If VEC-OR-PROC is nil, the buffer *debug tramp* is used. This
1512 function is meant for debugging purposes."
1513 (if vec-or-proc
1514 (tramp-message vec-or-proc 10 "\n%s" (with-output-to-string (backtrace)))
1515 (if (>= tramp-verbose 10)
1516 (with-output-to-temp-buffer "*debug tramp*" (backtrace)))))
1518 (defsubst tramp-error (vec-or-proc signal fmt-string &rest arguments)
1519 "Emit an error.
1520 VEC-OR-PROC identifies the connection to use, SIGNAL is the
1521 signal identifier to be raised, remaining arguments passed to
1522 `tramp-message'. Finally, signal SIGNAL is raised."
1523 (let (tramp-message-show-message)
1524 (tramp-backtrace vec-or-proc)
1525 (when vec-or-proc
1526 (tramp-message
1527 vec-or-proc 1 "%s"
1528 (error-message-string
1529 (list signal
1530 (get signal 'error-message)
1531 (apply #'format-message fmt-string arguments)))))
1532 (signal signal (list (apply #'format-message fmt-string arguments)))))
1534 (defsubst tramp-error-with-buffer
1535 (buf vec-or-proc signal fmt-string &rest arguments)
1536 "Emit an error, and show BUF.
1537 If BUF is nil, show the connection buf. Wait for 30\", or until
1538 an input event arrives. The other arguments are passed to `tramp-error'."
1539 (save-window-excursion
1540 (let* ((buf (or (and (bufferp buf) buf)
1541 (and (processp vec-or-proc) (process-buffer vec-or-proc))
1542 (and (vectorp vec-or-proc)
1543 (tramp-get-connection-buffer vec-or-proc))))
1544 (vec (or (and (vectorp vec-or-proc) vec-or-proc)
1545 (and buf (with-current-buffer buf
1546 (tramp-dissect-file-name default-directory))))))
1547 (unwind-protect
1548 (apply 'tramp-error vec-or-proc signal fmt-string arguments)
1549 ;; Save exit.
1550 (when (and buf
1551 tramp-message-show-message
1552 (not (zerop tramp-verbose))
1553 (not (tramp-completion-mode-p))
1554 ;; Show only when Emacs has started already.
1555 (current-message))
1556 (let ((enable-recursive-minibuffers t))
1557 ;; `tramp-error' does not show messages. So we must do it
1558 ;; ourselves.
1559 (apply 'message fmt-string arguments)
1560 ;; Show buffer.
1561 (pop-to-buffer buf)
1562 (discard-input)
1563 (sit-for 30)))
1564 ;; Reset timestamp. It would be wrong after waiting for a while.
1565 (when (equal (butlast (append vec nil) 2)
1566 (car tramp-current-connection))
1567 (setcdr tramp-current-connection (current-time)))))))
1569 (defmacro with-parsed-tramp-file-name (filename var &rest body)
1570 "Parse a Tramp filename and make components available in the body.
1572 First arg FILENAME is evaluated and dissected into its components.
1573 Second arg VAR is a symbol. It is used as a variable name to hold
1574 the filename structure. It is also used as a prefix for the variables
1575 holding the components. For example, if VAR is the symbol `foo', then
1576 `foo' will be bound to the whole structure, `foo-method' will be bound to
1577 the method component, and so on for `foo-user', `foo-host', `foo-localname',
1578 `foo-hop'.
1580 Remaining args are Lisp expressions to be evaluated (inside an implicit
1581 `progn').
1583 If VAR is nil, then we bind `v' to the structure and `method', `user',
1584 `host', `localname', `hop' to the components."
1585 (let ((bindings
1586 (mapcar (lambda (elem)
1587 `(,(if var (intern (format "%s-%s" var elem)) elem)
1588 (,(intern (format "tramp-file-name-%s" elem))
1589 ,(or var 'v))))
1590 '(method user host localname hop))))
1591 `(let* ((,(or var 'v) (tramp-dissect-file-name ,filename))
1592 ,@bindings)
1593 ;; We don't know which of those vars will be used, so we bind them all,
1594 ;; and then add here a dummy use of all those variables, so we don't get
1595 ;; flooded by warnings about those vars `body' didn't use.
1596 (ignore ,@(mapcar #'car bindings))
1597 ,@body)))
1599 (put 'with-parsed-tramp-file-name 'lisp-indent-function 2)
1600 (put 'with-parsed-tramp-file-name 'edebug-form-spec '(form symbolp body))
1601 (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-parsed-tramp-file-name\\>"))
1603 (defun tramp-progress-reporter-update (reporter &optional value)
1604 "Report progress of an operation for Tramp."
1605 (let* ((parameters (cdr reporter))
1606 (message (aref parameters 3)))
1607 (when (string-match message (or (current-message) ""))
1608 (progress-reporter-update reporter value))))
1610 (defmacro with-tramp-progress-reporter (vec level message &rest body)
1611 "Executes BODY, spinning a progress reporter with MESSAGE.
1612 If LEVEL does not fit for visible messages, there are only traces
1613 without a visible progress reporter."
1614 (declare (indent 3) (debug t))
1615 `(progn
1616 (tramp-message ,vec ,level "%s..." ,message)
1617 (let ((cookie "failed")
1619 ;; We start a pulsing progress reporter after 3 seconds. Feature
1620 ;; introduced in Emacs 24.1.
1621 (when (and tramp-message-show-message
1622 ;; Display only when there is a minimum level.
1623 (<= ,level (min tramp-verbose 3)))
1624 (ignore-errors
1625 (let ((pr (make-progress-reporter ,message nil nil)))
1626 (when pr
1627 (run-at-time
1628 3 0.1 #'tramp-progress-reporter-update pr)))))))
1629 (unwind-protect
1630 ;; Execute the body.
1631 (prog1 (progn ,@body) (setq cookie "done"))
1632 ;; Stop progress reporter.
1633 (if tm (cancel-timer tm))
1634 (tramp-message ,vec ,level "%s...%s" ,message cookie)))))
1636 (font-lock-add-keywords
1637 'emacs-lisp-mode '("\\<with-tramp-progress-reporter\\>"))
1639 (defmacro with-tramp-file-property (vec file property &rest body)
1640 "Check in Tramp cache for PROPERTY, otherwise execute BODY and set cache.
1641 FILE must be a local file name on a connection identified via VEC."
1642 `(if (file-name-absolute-p ,file)
1643 (let ((value (tramp-get-file-property ,vec ,file ,property 'undef)))
1644 (when (eq value 'undef)
1645 ;; We cannot pass @body as parameter to
1646 ;; `tramp-set-file-property' because it mangles our
1647 ;; debug messages.
1648 (setq value (progn ,@body))
1649 (tramp-set-file-property ,vec ,file ,property value))
1650 value)
1651 ,@body))
1653 (put 'with-tramp-file-property 'lisp-indent-function 3)
1654 (put 'with-tramp-file-property 'edebug-form-spec t)
1655 (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-file-property\\>"))
1657 (defmacro with-tramp-connection-property (key property &rest body)
1658 "Check in Tramp for property PROPERTY, otherwise executes BODY and set."
1659 `(let ((value (tramp-get-connection-property ,key ,property 'undef)))
1660 (when (eq value 'undef)
1661 ;; We cannot pass ,@body as parameter to
1662 ;; `tramp-set-connection-property' because it mangles our debug
1663 ;; messages.
1664 (setq value (progn ,@body))
1665 (tramp-set-connection-property ,key ,property value))
1666 value))
1668 (put 'with-tramp-connection-property 'lisp-indent-function 2)
1669 (put 'with-tramp-connection-property 'edebug-form-spec t)
1670 (font-lock-add-keywords
1671 'emacs-lisp-mode '("\\<with-tramp-connection-property\\>"))
1673 (defun tramp-drop-volume-letter (name)
1674 "Cut off unnecessary drive letter from file NAME.
1675 The functions `tramp-*-handle-expand-file-name' call `expand-file-name'
1676 locally on a remote file name. When the local system is a W32 system
1677 but the remote system is Unix, this introduces a superfluous drive
1678 letter into the file name. This function removes it."
1679 (save-match-data
1680 (if (string-match "\\`[a-zA-Z]:/" name)
1681 (replace-match "/" nil t name)
1682 name)))
1684 ;;; Config Manipulation Functions:
1686 ;;;###tramp-autoload
1687 (defun tramp-set-completion-function (method function-list)
1688 "Sets the list of completion functions for METHOD.
1689 FUNCTION-LIST is a list of entries of the form (FUNCTION FILE).
1690 The FUNCTION is intended to parse FILE according its syntax.
1691 It might be a predefined FUNCTION, or a user defined FUNCTION.
1692 For the list of predefined FUNCTIONs see `tramp-completion-function-alist'.
1694 Example:
1696 (tramp-set-completion-function
1697 \"ssh\"
1698 \\='((tramp-parse-sconfig \"/etc/ssh_config\")
1699 (tramp-parse-sconfig \"~/.ssh/config\")))"
1701 (let ((r function-list)
1702 (v function-list))
1703 (setq tramp-completion-function-alist
1704 (delete (assoc method tramp-completion-function-alist)
1705 tramp-completion-function-alist))
1707 (while v
1708 ;; Remove double entries.
1709 (when (member (car v) (cdr v))
1710 (setcdr v (delete (car v) (cdr v))))
1711 ;; Check for function and file or registry key.
1712 (unless (and (functionp (nth 0 (car v)))
1713 (cond
1714 ;; Windows registry.
1715 ((string-match "^HKEY_CURRENT_USER" (nth 1 (car v)))
1716 (and (memq system-type '(cygwin windows-nt))
1717 (zerop
1718 (tramp-call-process
1719 v "reg" nil nil nil "query" (nth 1 (car v))))))
1720 ;; Zeroconf service type.
1721 ((string-match
1722 "^_[[:alpha:]]+\\._[[:alpha:]]+$" (nth 1 (car v))))
1723 ;; Configuration file.
1724 (t (file-exists-p (nth 1 (car v))))))
1725 (setq r (delete (car v) r)))
1726 (setq v (cdr v)))
1728 (when r
1729 (add-to-list 'tramp-completion-function-alist
1730 (cons method r)))))
1732 (defun tramp-get-completion-function (method)
1733 "Returns a list of completion functions for METHOD.
1734 For definition of that list see `tramp-set-completion-function'."
1735 (append
1736 `(;; Default settings are taken into account.
1737 (tramp-parse-default-user-host ,method)
1738 ;; Hosts visited once shall be remembered.
1739 (tramp-parse-connection-properties ,method))
1740 ;; The method related defaults.
1741 (cdr (assoc method tramp-completion-function-alist))))
1744 ;;; Fontification of `read-file-name':
1746 (defvar tramp-rfn-eshadow-overlay)
1747 (make-variable-buffer-local 'tramp-rfn-eshadow-overlay)
1749 (defun tramp-rfn-eshadow-setup-minibuffer ()
1750 "Set up a minibuffer for `file-name-shadow-mode'.
1751 Adds another overlay hiding filename parts according to Tramp's
1752 special handling of `substitute-in-file-name'."
1753 (when (symbol-value 'minibuffer-completing-file-name)
1754 (setq tramp-rfn-eshadow-overlay
1755 (make-overlay (minibuffer-prompt-end) (minibuffer-prompt-end)))
1756 ;; Copy rfn-eshadow-overlay properties.
1757 (let ((props (overlay-properties (symbol-value 'rfn-eshadow-overlay))))
1758 (while props
1759 ;; The `field' property prevents correct minibuffer
1760 ;; completion; we exclude it.
1761 (if (not (eq (car props) 'field))
1762 (overlay-put tramp-rfn-eshadow-overlay (pop props) (pop props))
1763 (pop props) (pop props))))))
1765 (add-hook 'rfn-eshadow-setup-minibuffer-hook
1766 'tramp-rfn-eshadow-setup-minibuffer)
1767 (add-hook 'tramp-unload-hook
1768 (lambda ()
1769 (remove-hook 'rfn-eshadow-setup-minibuffer-hook
1770 'tramp-rfn-eshadow-setup-minibuffer)))
1772 (defconst tramp-rfn-eshadow-update-overlay-regexp
1773 (format "[^%s/~]*\\(/\\|~\\)" tramp-postfix-host-format))
1775 (defun tramp-rfn-eshadow-update-overlay ()
1776 "Update `rfn-eshadow-overlay' to cover shadowed part of minibuffer input.
1777 This is intended to be used as a minibuffer `post-command-hook' for
1778 `file-name-shadow-mode'; the minibuffer should have already
1779 been set up by `rfn-eshadow-setup-minibuffer'."
1780 ;; In remote files name, there is a shadowing just for the local part.
1781 (ignore-errors
1782 (let ((end (or (overlay-end (symbol-value 'rfn-eshadow-overlay))
1783 (minibuffer-prompt-end)))
1784 ;; We do not want to send any remote command.
1785 (non-essential t))
1786 (when
1787 (tramp-tramp-file-p
1788 (buffer-substring-no-properties end (point-max)))
1789 (save-excursion
1790 (save-restriction
1791 (narrow-to-region
1792 (1+ (or (string-match
1793 tramp-rfn-eshadow-update-overlay-regexp
1794 (buffer-string) end)
1795 end))
1796 (point-max))
1797 (let ((rfn-eshadow-overlay tramp-rfn-eshadow-overlay)
1798 (rfn-eshadow-update-overlay-hook nil)
1799 file-name-handler-alist)
1800 (move-overlay rfn-eshadow-overlay (point-max) (point-max))
1801 (rfn-eshadow-update-overlay))))))))
1803 (add-hook 'rfn-eshadow-update-overlay-hook
1804 'tramp-rfn-eshadow-update-overlay)
1805 (add-hook 'tramp-unload-hook
1806 (lambda ()
1807 (remove-hook 'rfn-eshadow-update-overlay-hook
1808 'tramp-rfn-eshadow-update-overlay)))
1810 ;; Inodes don't exist for some file systems. Therefore we must
1811 ;; generate virtual ones. Used in `find-buffer-visiting'. The method
1812 ;; applied might be not so efficient (Ange-FTP uses hashes). But
1813 ;; performance isn't the major issue given that file transfer will
1814 ;; take time.
1815 (defvar tramp-inodes 0
1816 "Keeps virtual inodes numbers.")
1818 ;; Devices must distinguish physical file systems. The device numbers
1819 ;; provided by "lstat" aren't unique, because we operate on different hosts.
1820 ;; So we use virtual device numbers, generated by Tramp. Both Ange-FTP and
1821 ;; EFS use device number "-1". In order to be different, we use device number
1822 ;; (-1 . x), whereby "x" is unique for a given (method user host).
1823 (defvar tramp-devices 0
1824 "Keeps virtual device numbers.")
1826 (defun tramp-default-file-modes (filename)
1827 "Return file modes of FILENAME as integer.
1828 If the file modes of FILENAME cannot be determined, return the
1829 value of `default-file-modes', without execute permissions."
1830 (or (file-modes filename)
1831 (logand (default-file-modes) (string-to-number "0666" 8))))
1833 (defun tramp-replace-environment-variables (filename)
1834 "Replace environment variables in FILENAME.
1835 Return the string with the replaced variables."
1836 (or (ignore-errors
1837 ;; Optional arg has been introduced with Emacs 24 (?).
1838 (tramp-compat-funcall 'substitute-env-vars filename 'only-defined))
1839 ;; We need an own implementation.
1840 (save-match-data
1841 (let ((idx (string-match "$\\(\\w+\\)" filename)))
1842 ;; `$' is coded as `$$'.
1843 (when (and idx
1844 (or (zerop idx) (not (eq ?$ (aref filename (1- idx)))))
1845 (getenv (match-string 1 filename)))
1846 (setq filename
1847 (replace-match
1848 (substitute-in-file-name (match-string 0 filename))
1849 t nil filename)))
1850 filename))))
1852 (defun tramp-find-file-name-coding-system-alist (filename tmpname)
1853 "Like `find-operation-coding-system' for Tramp filenames.
1854 Tramp's `insert-file-contents' and `write-region' work over
1855 temporary file names. If `file-coding-system-alist' contains an
1856 expression, which matches more than the file name suffix, the
1857 coding system might not be determined. This function repairs it."
1858 (let (result)
1859 (dolist (elt file-coding-system-alist result)
1860 (when (and (consp elt) (string-match (car elt) filename))
1861 ;; We found a matching entry in `file-coding-system-alist'.
1862 ;; So we add a similar entry, but with the temporary file name
1863 ;; as regexp.
1864 (add-to-list
1865 'result (cons (regexp-quote tmpname) (cdr elt)) 'append)))))
1867 (defun tramp-run-real-handler (operation args)
1868 "Invoke normal file name handler for OPERATION.
1869 First arg specifies the OPERATION, second arg is a list of arguments to
1870 pass to the OPERATION."
1871 (let* ((inhibit-file-name-handlers
1872 `(tramp-file-name-handler
1873 tramp-vc-file-name-handler
1874 tramp-completion-file-name-handler
1875 cygwin-mount-name-hook-function
1876 cygwin-mount-map-drive-hook-function
1878 ,(and (eq inhibit-file-name-operation operation)
1879 inhibit-file-name-handlers)))
1880 (inhibit-file-name-operation operation))
1881 (apply operation args)))
1883 ;;;###autoload
1884 (progn (defun tramp-completion-run-real-handler (operation args)
1885 "Invoke `tramp-file-name-handler' for OPERATION.
1886 First arg specifies the OPERATION, second arg is a list of arguments to
1887 pass to the OPERATION."
1888 (let* ((inhibit-file-name-handlers
1889 `(tramp-completion-file-name-handler
1890 cygwin-mount-name-hook-function
1891 cygwin-mount-map-drive-hook-function
1893 ,(and (eq inhibit-file-name-operation operation)
1894 inhibit-file-name-handlers)))
1895 (inhibit-file-name-operation operation))
1896 (apply operation args))))
1898 ;; We handle here all file primitives. Most of them have the file
1899 ;; name as first parameter; nevertheless we check for them explicitly
1900 ;; in order to be signaled if a new primitive appears. This
1901 ;; scenario is needed because there isn't a way to decide by
1902 ;; syntactical means whether a foreign method must be called. It would
1903 ;; ease the life if `file-name-handler-alist' would support a decision
1904 ;; function as well but regexp only.
1905 (defun tramp-file-name-for-operation (operation &rest args)
1906 "Return file name related to OPERATION file primitive.
1907 ARGS are the arguments OPERATION has been called with."
1908 (cond
1909 ;; FILE resp DIRECTORY.
1910 ((member operation
1911 '(access-file byte-compiler-base-file-name delete-directory
1912 delete-file diff-latest-backup-file directory-file-name
1913 directory-files directory-files-and-attributes
1914 dired-compress-file dired-uncache
1915 file-accessible-directory-p file-attributes
1916 file-directory-p file-executable-p file-exists-p
1917 file-local-copy file-modes
1918 file-name-as-directory file-name-directory
1919 file-name-nondirectory file-name-sans-versions
1920 file-ownership-preserved-p file-readable-p
1921 file-regular-p file-remote-p file-symlink-p file-truename
1922 file-writable-p find-backup-file-name find-file-noselect
1923 get-file-buffer insert-directory insert-file-contents
1924 load make-directory make-directory-internal
1925 set-file-modes set-file-times substitute-in-file-name
1926 unhandled-file-name-directory vc-registered
1927 ;; Emacs 24+ only.
1928 file-acl file-notify-add-watch file-selinux-context
1929 set-file-acl set-file-selinux-context))
1930 (if (file-name-absolute-p (nth 0 args))
1931 (nth 0 args)
1932 (expand-file-name (nth 0 args))))
1933 ;; FILE DIRECTORY resp FILE1 FILE2.
1934 ((member operation
1935 '(add-name-to-file copy-directory copy-file expand-file-name
1936 file-name-all-completions file-name-completion
1937 file-newer-than-file-p make-symbolic-link rename-file
1938 ;; Emacs 24+ only.
1939 file-equal-p file-in-directory-p))
1940 (save-match-data
1941 (cond
1942 ((tramp-tramp-file-p (nth 0 args)) (nth 0 args))
1943 ((tramp-tramp-file-p (nth 1 args)) (nth 1 args))
1944 (t (buffer-file-name (current-buffer))))))
1945 ;; START END FILE.
1946 ((eq operation 'write-region)
1947 (nth 2 args))
1948 ;; BUFFER.
1949 ((member operation
1950 '(make-auto-save-file-name
1951 set-visited-file-modtime verify-visited-file-modtime))
1952 (buffer-file-name
1953 (if (bufferp (nth 0 args)) (nth 0 args) (current-buffer))))
1954 ;; COMMAND.
1955 ((member operation
1956 '(process-file shell-command start-file-process
1957 ;; Emacs 25.2+ only.
1958 make-nearby-temp-file temporary-file-directory))
1959 default-directory)
1960 ;; PROC.
1961 ((member operation
1962 '(;; Emacs 24+ only.
1963 file-notify-rm-watch
1964 ;; Emacs 25+ only.
1965 file-notify-valid-p))
1966 (when (processp (nth 0 args))
1967 (with-current-buffer (process-buffer (nth 0 args))
1968 default-directory)))
1969 ;; Unknown file primitive.
1970 (t (error "unknown file I/O primitive: %s" operation))))
1972 (defun tramp-find-foreign-file-name-handler
1973 (filename &optional operation completion)
1974 "Return foreign file name handler if exists."
1975 (when (tramp-tramp-file-p filename)
1976 (let ((v (tramp-dissect-file-name filename t))
1977 (handler tramp-foreign-file-name-handler-alist)
1978 elt res)
1979 ;; When we are not fully sure that filename completion is safe,
1980 ;; we should not return a handler.
1981 (when (or (not completion)
1982 (tramp-file-name-method v) (tramp-file-name-user v)
1983 (and (tramp-file-name-host v)
1984 (not (member (tramp-file-name-host v)
1985 (mapcar 'car tramp-methods))))
1986 ;; Some operations are safe by default.
1987 (member
1988 operation
1989 '(file-name-as-directory
1990 file-name-directory
1991 file-name-nondirectory)))
1992 (while handler
1993 (setq elt (car handler)
1994 handler (cdr handler))
1995 (when (funcall (car elt) filename)
1996 (setq handler nil
1997 res (cdr elt))))
1998 res))))
2000 (defvar tramp-debug-on-error nil
2001 "Like `debug-on-error' but used Tramp internal.")
2003 (defmacro tramp-condition-case-unless-debug
2004 (var bodyform &rest handlers)
2005 "Like `condition-case-unless-debug' but `tramp-debug-on-error'."
2006 `(let ((debug-on-error tramp-debug-on-error))
2007 (tramp-compat-condition-case-unless-debug ,var ,bodyform ,@handlers)))
2009 ;; Main function.
2010 (defun tramp-file-name-handler (operation &rest args)
2011 "Invoke Tramp file name handler.
2012 Falls back to normal file name handler if no Tramp file name handler exists."
2013 (if tramp-mode
2014 (save-match-data
2015 (let* ((filename
2016 (tramp-replace-environment-variables
2017 (apply 'tramp-file-name-for-operation operation args)))
2018 (completion (tramp-completion-mode-p))
2019 (foreign
2020 (tramp-find-foreign-file-name-handler
2021 filename operation completion))
2022 result)
2023 (with-parsed-tramp-file-name filename nil
2024 ;; Call the backend function.
2025 (if foreign
2026 (tramp-condition-case-unless-debug err
2027 (let ((sf (symbol-function foreign)))
2028 ;; Some packages set the default directory to a
2029 ;; remote path, before respective Tramp packages
2030 ;; are already loaded. This results in
2031 ;; recursive loading. Therefore, we load the
2032 ;; Tramp packages locally.
2033 (when (and (listp sf) (eq (car sf) 'autoload))
2034 (let ((default-directory
2035 (tramp-compat-temporary-file-directory)))
2036 (load (cadr sf) 'noerror 'nomessage)))
2037 ;; If `non-essential' is non-nil, Tramp shall
2038 ;; not open a new connection.
2039 ;; If Tramp detects that it shouldn't continue
2040 ;; to work, it throws the `suppress' event.
2041 ;; This could happen for example, when Tramp
2042 ;; tries to open the same connection twice in a
2043 ;; short time frame.
2044 ;; In both cases, we try the default handler then.
2045 (setq result
2046 (catch 'non-essential
2047 (catch 'suppress
2048 (apply foreign operation args))))
2049 (cond
2050 ((eq result 'non-essential)
2051 (tramp-message
2052 v 5 "Non-essential received in operation %s"
2053 (cons operation args))
2054 (tramp-run-real-handler operation args))
2055 ((eq result 'suppress)
2056 (let (tramp-message-show-message)
2057 (tramp-message
2058 v 1 "Suppress received in operation %s"
2059 (cons operation args))
2060 (tramp-cleanup-connection v t)
2061 (tramp-run-real-handler operation args)))
2062 (t result)))
2064 ;; Trace that somebody has interrupted the operation.
2065 ((debug quit)
2066 (let (tramp-message-show-message)
2067 (tramp-message
2068 v 1 "Interrupt received in operation %s"
2069 (cons operation args)))
2070 ;; Propagate the quit signal.
2071 (signal (car err) (cdr err)))
2073 ;; When we are in completion mode, some failed
2074 ;; operations shall return at least a default value
2075 ;; in order to give the user a chance to correct the
2076 ;; file name in the minibuffer.
2077 ;; In order to get a full backtrace, one could apply
2078 ;; (setq tramp-debug-on-error t)
2079 (error
2080 (cond
2081 ((and completion (zerop (length localname))
2082 (memq operation '(file-exists-p file-directory-p)))
2084 ((and completion (zerop (length localname))
2085 (memq operation
2086 '(expand-file-name file-name-as-directory)))
2087 filename)
2088 ;; Propagate the error.
2089 (t (signal (car err) (cdr err))))))
2091 ;; Nothing to do for us. However, since we are in
2092 ;; `tramp-mode', we must suppress the volume letter on
2093 ;; MS Windows.
2094 (setq result (tramp-run-real-handler operation args))
2095 (if (stringp result)
2096 (tramp-drop-volume-letter result)
2097 result)))))
2099 ;; When `tramp-mode' is not enabled, we don't do anything.
2100 (tramp-run-real-handler operation args)))
2102 ;; In Emacs, there is some concurrency due to timers. If a timer
2103 ;; interrupts Tramp and wishes to use the same connection buffer as
2104 ;; the "main" Emacs, then garbage might occur in the connection
2105 ;; buffer. Therefore, we need to make sure that a timer does not use
2106 ;; the same connection buffer as the "main" Emacs. We implement a
2107 ;; cheap global lock, instead of locking each connection buffer
2108 ;; separately. The global lock is based on two variables,
2109 ;; `tramp-locked' and `tramp-locker'. `tramp-locked' is set to true
2110 ;; (with setq) to indicate a lock. But Tramp also calls itself during
2111 ;; processing of a single file operation, so we need to allow
2112 ;; recursive calls. That's where the `tramp-locker' variable comes in
2113 ;; -- it is let-bound to t during the execution of the current
2114 ;; handler. So if `tramp-locked' is t and `tramp-locker' is also t,
2115 ;; then we should just proceed because we have been called
2116 ;; recursively. But if `tramp-locker' is nil, then we are a timer
2117 ;; interrupting the "main" Emacs, and then we signal an error.
2119 (defvar tramp-locked nil
2120 "If non-nil, then Tramp is currently busy.
2121 Together with `tramp-locker', this implements a locking mechanism
2122 preventing reentrant calls of Tramp.")
2124 (defvar tramp-locker nil
2125 "If non-nil, then a caller has locked Tramp.
2126 Together with `tramp-locked', this implements a locking mechanism
2127 preventing reentrant calls of Tramp.")
2129 ;; Avoid recursive loading of tramp.el.
2130 ;;;###autoload(defun tramp-completion-file-name-handler (operation &rest args)
2131 ;;;###autoload (tramp-completion-run-real-handler operation args))
2133 (defun tramp-completion-file-name-handler (operation &rest args)
2134 "Invoke Tramp file name completion handler.
2135 Falls back to normal file name handler if no Tramp file name handler exists."
2136 (let ((fn (assoc operation tramp-completion-file-name-handler-alist)))
2137 (if (and
2138 ;; When `tramp-mode' is not enabled, we don't do anything.
2139 fn tramp-mode (tramp-completion-mode-p)
2140 ;; For other syntaxes than `sep', the regexp matches many common
2141 ;; situations where the user doesn't actually want to use Tramp.
2142 ;; So to avoid autoloading Tramp after typing just "/s", we
2143 ;; disable this part of the completion, unless the user implicitly
2144 ;; indicated his interest in using a fancier completion system.
2145 (or (eq tramp-syntax 'sep)
2146 (featurep 'tramp) ;; If it's loaded, we may as well use it.
2147 ;; `partial-completion-mode' is obsoleted with Emacs 24.1.
2148 (and (boundp 'partial-completion-mode)
2149 (symbol-value 'partial-completion-mode))
2150 ;; FIXME: These may have been loaded even if the user never
2151 ;; intended to use them.
2152 (featurep 'ido)
2153 (featurep 'icicles)))
2154 (save-match-data (apply (cdr fn) args))
2155 (tramp-completion-run-real-handler operation args))))
2157 ;;;###autoload
2158 (progn (defun tramp-autoload-file-name-handler (operation &rest args)
2159 "Load Tramp file name handler, and perform OPERATION."
2160 ;; Avoid recursive loading of tramp.el.
2161 (let ((default-directory temporary-file-directory))
2162 (load "tramp" nil t))
2163 (apply operation args)))
2165 ;; `tramp-autoload-file-name-handler' must be registered before
2166 ;; evaluation of site-start and init files, because there might exist
2167 ;; remote files already, f.e. files kept via recentf-mode. We cannot
2168 ;; autoload `tramp-file-name-handler', because it would result in
2169 ;; recursive loading of tramp.el when `default-directory' is set to
2170 ;; remote.
2171 ;;;###autoload
2172 (progn (defun tramp-register-autoload-file-name-handlers ()
2173 "Add Tramp file name handlers to `file-name-handler-alist' during autoload."
2174 (add-to-list 'file-name-handler-alist
2175 (cons tramp-file-name-regexp
2176 'tramp-autoload-file-name-handler))
2177 (put 'tramp-autoload-file-name-handler 'safe-magic t)
2178 (add-to-list 'file-name-handler-alist
2179 (cons tramp-completion-file-name-regexp
2180 'tramp-completion-file-name-handler))
2181 (put 'tramp-completion-file-name-handler 'safe-magic t)))
2183 ;;;###autoload
2184 (tramp-register-autoload-file-name-handlers)
2186 (defun tramp-register-file-name-handlers ()
2187 "Add Tramp file name handlers to `file-name-handler-alist'."
2188 ;; Remove autoloaded handlers from file name handler alist. Useful,
2189 ;; if `tramp-syntax' has been changed.
2190 (dolist (fnh '(tramp-file-name-handler
2191 tramp-completion-file-name-handler
2192 tramp-autoload-file-name-handler))
2193 (let ((a1 (rassq fnh file-name-handler-alist)))
2194 (setq file-name-handler-alist (delq a1 file-name-handler-alist))))
2195 ;; Add the handlers.
2196 (add-to-list 'file-name-handler-alist
2197 (cons tramp-file-name-regexp 'tramp-file-name-handler))
2198 (put 'tramp-file-name-handler 'safe-magic t)
2199 (add-to-list 'file-name-handler-alist
2200 (cons tramp-completion-file-name-regexp
2201 'tramp-completion-file-name-handler))
2202 (put 'tramp-completion-file-name-handler 'safe-magic t)
2203 ;; If jka-compr or epa-file are already loaded, move them to the
2204 ;; front of `file-name-handler-alist'.
2205 (dolist (fnh '(epa-file-handler jka-compr-handler))
2206 (let ((entry (rassoc fnh file-name-handler-alist)))
2207 (when entry
2208 (setq file-name-handler-alist
2209 (cons entry (delete entry file-name-handler-alist)))))))
2211 (eval-after-load 'tramp (tramp-register-file-name-handlers))
2213 (defun tramp-exists-file-name-handler (operation &rest args)
2214 "Check, whether OPERATION runs a file name handler."
2215 ;; The file name handler is determined on base of either an
2216 ;; argument, `buffer-file-name', or `default-directory'.
2217 (ignore-errors
2218 (let* ((buffer-file-name "/")
2219 (default-directory "/")
2220 (fnha file-name-handler-alist)
2221 (check-file-name-operation operation)
2222 (file-name-handler-alist
2223 (list
2224 (cons "/"
2225 (lambda (operation &rest args)
2226 "Returns OPERATION if it is the one to be checked."
2227 (if (equal check-file-name-operation operation)
2228 operation
2229 (let ((file-name-handler-alist fnha))
2230 (apply operation args))))))))
2231 (equal (apply operation args) operation))))
2233 ;;;###autoload
2234 (defun tramp-unload-file-name-handlers ()
2235 "Unload Tramp file name handlers from `file-name-handler-alist'."
2236 (setq file-name-handler-alist
2237 (delete (rassoc 'tramp-file-name-handler
2238 file-name-handler-alist)
2239 (delete (rassoc 'tramp-completion-file-name-handler
2240 file-name-handler-alist)
2241 file-name-handler-alist))))
2243 (add-hook 'tramp-unload-hook 'tramp-unload-file-name-handlers)
2245 ;;; File name handler functions for completion mode:
2247 ;;;###autoload
2248 (defvar tramp-completion-mode nil
2249 "If non-nil, external packages signal that they are in file name completion.
2251 This is necessary, because Tramp uses a heuristic depending on last
2252 input event. This fails when external packages use other characters
2253 but <TAB>, <SPACE> or ?\\? for file name completion. This variable
2254 should never be set globally, the intention is to let-bind it.")
2256 ;; Necessary because `tramp-file-name-regexp-unified' and
2257 ;; `tramp-completion-file-name-regexp-unified' aren't different. If
2258 ;; nil, `tramp-completion-run-real-handler' is called (i.e. forwarding
2259 ;; to `tramp-file-name-handler'). Otherwise, it takes
2260 ;; `tramp-run-real-handler'. Using `last-input-event' is a little bit
2261 ;; risky, because completing a file might require loading other files,
2262 ;; like "~/.netrc", and for them it shouldn't be decided based on that
2263 ;; variable. On the other hand, those files shouldn't have partial
2264 ;; Tramp file name syntax. Maybe another variable should be introduced
2265 ;; overwriting this check in such cases. Or we change Tramp file name
2266 ;; syntax in order to avoid ambiguities.
2267 (defun tramp-completion-mode-p ()
2268 "Check, whether method / user name / host name completion is active."
2270 ;; Signal from outside. `non-essential' has been introduced in Emacs 24.
2271 (and (boundp 'non-essential) (symbol-value 'non-essential))
2272 tramp-completion-mode
2273 (equal last-input-event 'tab)
2274 (and (natnump last-input-event)
2276 ;; ?\t has event-modifier 'control.
2277 (equal last-input-event ?\t)
2278 (and (not (event-modifiers last-input-event))
2279 (or (equal last-input-event ?\?)
2280 (equal last-input-event ?\ )))))))
2282 (defun tramp-connectable-p (filename)
2283 "Check, whether it is possible to connect the remote host w/o side-effects.
2284 This is true, if either the remote host is already connected, or if we are
2285 not in completion mode."
2286 (and (tramp-tramp-file-p filename)
2287 (or (not (tramp-completion-mode-p))
2288 (tramp-compat-process-live-p
2289 (tramp-get-connection-process
2290 (tramp-dissect-file-name filename))))))
2292 (defun tramp-completion-handle-expand-file-name (name &optional dir)
2293 "Like `expand-file-name' for Tramp files."
2294 (if (tramp-completion-mode-p)
2295 (progn
2296 ;; If DIR is not given, use `default-directory' or "/".
2297 (setq dir (or dir default-directory "/"))
2298 ;; Unless NAME is absolute, concat DIR and NAME.
2299 (unless (file-name-absolute-p name)
2300 (setq name (concat (file-name-as-directory dir) name)))
2301 ;; Return NAME.
2302 name)
2304 (tramp-completion-run-real-handler
2305 'expand-file-name (list name dir))))
2307 ;; Method, host name and user name completion.
2308 ;; `tramp-completion-dissect-file-name' returns a list of
2309 ;; tramp-file-name structures. For all of them we return possible completions.
2310 (defun tramp-completion-handle-file-name-all-completions (filename directory)
2311 "Like `file-name-all-completions' for partial Tramp files."
2313 (let ((fullname
2314 (tramp-drop-volume-letter (expand-file-name filename directory)))
2315 hop result result1)
2317 ;; Suppress hop from completion.
2318 (when (string-match
2319 (concat
2320 tramp-prefix-regexp
2321 "\\(" "\\(" tramp-remote-file-name-spec-regexp
2322 tramp-postfix-hop-regexp
2323 "\\)+" "\\)")
2324 fullname)
2325 (setq hop (match-string 1 fullname)
2326 fullname (replace-match "" nil nil fullname 1)))
2328 ;; Possible completion structures.
2329 (dolist (elt (tramp-completion-dissect-file-name fullname))
2330 (let* ((method (tramp-file-name-method elt))
2331 (user (tramp-file-name-user elt))
2332 (host (tramp-file-name-host elt))
2333 (localname (tramp-file-name-localname elt))
2334 (m (tramp-find-method method user host))
2335 (tramp-current-user user) ; see `tramp-parse-passwd'
2336 all-user-hosts)
2338 (unless localname ;; Nothing to complete.
2340 (if (or user host)
2342 ;; Method dependent user / host combinations.
2343 (progn
2344 (mapc
2345 (lambda (x)
2346 (setq all-user-hosts
2347 (append all-user-hosts
2348 (funcall (nth 0 x) (nth 1 x)))))
2349 (tramp-get-completion-function m))
2351 (setq result
2352 (append result
2353 (mapcar
2354 (lambda (x)
2355 (tramp-get-completion-user-host
2356 method user host (nth 0 x) (nth 1 x)))
2357 (delq nil all-user-hosts)))))
2359 ;; Possible methods.
2360 (setq result
2361 (append result (tramp-get-completion-methods m)))))))
2363 ;; Unify list, add hop, remove nil elements.
2364 (dolist (elt result)
2365 (when elt
2366 (string-match tramp-prefix-regexp elt)
2367 (setq elt (replace-match (concat tramp-prefix-format hop) nil nil elt))
2368 (add-to-list
2369 'result1
2370 (substring elt (length (tramp-drop-volume-letter directory))))))
2372 ;; Complete local parts.
2373 (append
2374 result1
2375 (ignore-errors
2376 (apply (if (tramp-connectable-p fullname)
2377 'tramp-completion-run-real-handler
2378 'tramp-run-real-handler)
2379 'file-name-all-completions (list (list filename directory)))))))
2381 ;; Method, host name and user name completion for a file.
2382 (defun tramp-completion-handle-file-name-completion
2383 (filename directory &optional predicate)
2384 "Like `file-name-completion' for Tramp files."
2385 (try-completion
2386 filename
2387 (mapcar 'list (file-name-all-completions filename directory))
2388 (when (and predicate
2389 (tramp-connectable-p (expand-file-name filename directory)))
2390 (lambda (x) (funcall predicate (expand-file-name (car x) directory))))))
2392 ;; I misuse a little bit the tramp-file-name structure in order to handle
2393 ;; completion possibilities for partial methods / user names / host names.
2394 ;; Return value is a list of tramp-file-name structures according to possible
2395 ;; completions. If "localname" is non-nil it means there
2396 ;; shouldn't be a completion anymore.
2398 ;; Expected results:
2400 ;; "/x" "/[x" "/x@" "/[x@" "/x@y" "/[x@y"
2401 ;; [nil nil "x" nil] [nil "x" nil nil] [nil "x" "y" nil]
2402 ;; [nil "x" nil nil]
2403 ;; ["x" nil nil nil]
2405 ;; "/x:" "/x:y" "/x:y:"
2406 ;; [nil nil "x" ""] [nil nil "x" "y"] ["x" nil "y" ""]
2407 ;; "/[x/" "/[x/y"
2408 ;; ["x" nil "" nil] ["x" nil "y" nil]
2409 ;; ["x" "" nil nil] ["x" "y" nil nil]
2411 ;; "/x:y@" "/x:y@z" "/x:y@z:"
2412 ;; [nil nil "x" "y@"] [nil nil "x" "y@z"] ["x" "y" "z" ""]
2413 ;; "/[x/y@" "/[x/y@z"
2414 ;; ["x" nil "y" nil] ["x" "y" "z" nil]
2415 (defun tramp-completion-dissect-file-name (name)
2416 "Returns a list of `tramp-file-name' structures.
2417 They are collected by `tramp-completion-dissect-file-name1'."
2419 (let* ((result)
2420 (x-nil "\\|\\(\\)")
2421 (tramp-completion-ipv6-regexp
2422 (format
2423 "[^%s]*"
2424 (if (zerop (length tramp-postfix-ipv6-format))
2425 tramp-postfix-host-format
2426 tramp-postfix-ipv6-format)))
2427 ;; "/method" "/[method"
2428 (tramp-completion-file-name-structure1
2429 (list (concat tramp-prefix-regexp "\\(" tramp-method-regexp x-nil "\\)$")
2430 1 nil nil nil))
2431 ;; "/user" "/[user"
2432 (tramp-completion-file-name-structure2
2433 (list (concat tramp-prefix-regexp "\\(" tramp-user-regexp x-nil "\\)$")
2434 nil 1 nil nil))
2435 ;; "/host" "/[host"
2436 (tramp-completion-file-name-structure3
2437 (list (concat tramp-prefix-regexp "\\(" tramp-host-regexp x-nil "\\)$")
2438 nil nil 1 nil))
2439 ;; "/[ipv6" "/[ipv6"
2440 (tramp-completion-file-name-structure4
2441 (list (concat tramp-prefix-regexp
2442 tramp-prefix-ipv6-regexp
2443 "\\(" tramp-completion-ipv6-regexp x-nil "\\)$")
2444 nil nil 1 nil))
2445 ;; "/user@host" "/[user@host"
2446 (tramp-completion-file-name-structure5
2447 (list (concat tramp-prefix-regexp
2448 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
2449 "\\(" tramp-host-regexp x-nil "\\)$")
2450 nil 1 2 nil))
2451 ;; "/user@[ipv6" "/[user@ipv6"
2452 (tramp-completion-file-name-structure6
2453 (list (concat tramp-prefix-regexp
2454 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
2455 tramp-prefix-ipv6-regexp
2456 "\\(" tramp-completion-ipv6-regexp x-nil "\\)$")
2457 nil 1 2 nil))
2458 ;; "/method:user" "/[method/user"
2459 (tramp-completion-file-name-structure7
2460 (list (concat tramp-prefix-regexp
2461 "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp
2462 "\\(" tramp-user-regexp x-nil "\\)$")
2463 1 2 nil nil))
2464 ;; "/method:host" "/[method/host"
2465 (tramp-completion-file-name-structure8
2466 (list (concat tramp-prefix-regexp
2467 "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp
2468 "\\(" tramp-host-regexp x-nil "\\)$")
2469 1 nil 2 nil))
2470 ;; "/method:[ipv6" "/[method/ipv6"
2471 (tramp-completion-file-name-structure9
2472 (list (concat tramp-prefix-regexp
2473 "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp
2474 tramp-prefix-ipv6-regexp
2475 "\\(" tramp-completion-ipv6-regexp x-nil "\\)$")
2476 1 nil 2 nil))
2477 ;; "/method:user@host" "/[method/user@host"
2478 (tramp-completion-file-name-structure10
2479 (list (concat tramp-prefix-regexp
2480 "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp
2481 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
2482 "\\(" tramp-host-regexp x-nil "\\)$")
2483 1 2 3 nil))
2484 ;; "/method:user@[ipv6" "/[method/user@ipv6"
2485 (tramp-completion-file-name-structure11
2486 (list (concat tramp-prefix-regexp
2487 "\\(" tramp-method-regexp "\\)" tramp-postfix-method-regexp
2488 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
2489 tramp-prefix-ipv6-regexp
2490 "\\(" tramp-completion-ipv6-regexp x-nil "\\)$")
2491 1 2 3 nil)))
2493 (mapc (lambda (structure)
2494 (add-to-list 'result
2495 (tramp-completion-dissect-file-name1 structure name)))
2496 (list
2497 tramp-completion-file-name-structure1
2498 tramp-completion-file-name-structure2
2499 tramp-completion-file-name-structure3
2500 tramp-completion-file-name-structure4
2501 tramp-completion-file-name-structure5
2502 tramp-completion-file-name-structure6
2503 tramp-completion-file-name-structure7
2504 tramp-completion-file-name-structure8
2505 tramp-completion-file-name-structure9
2506 tramp-completion-file-name-structure10
2507 tramp-completion-file-name-structure11
2508 tramp-file-name-structure))
2510 (delq nil result)))
2512 (defun tramp-completion-dissect-file-name1 (structure name)
2513 "Returns a `tramp-file-name' structure matching STRUCTURE.
2514 The structure consists of remote method, remote user,
2515 remote host and localname (filename on remote host)."
2517 (save-match-data
2518 (when (string-match (nth 0 structure) name)
2519 (let ((method (and (nth 1 structure)
2520 (match-string (nth 1 structure) name)))
2521 (user (and (nth 2 structure)
2522 (match-string (nth 2 structure) name)))
2523 (host (and (nth 3 structure)
2524 (match-string (nth 3 structure) name)))
2525 (localname (and (nth 4 structure)
2526 (match-string (nth 4 structure) name))))
2527 (vector method user host localname nil)))))
2529 ;; This function returns all possible method completions, adding the
2530 ;; trailing method delimiter.
2531 (defun tramp-get-completion-methods (partial-method)
2532 "Returns all method completions for PARTIAL-METHOD."
2533 (mapcar
2534 (lambda (method)
2535 (and method
2536 (string-match (concat "^" (regexp-quote partial-method)) method)
2537 (tramp-completion-make-tramp-file-name method nil nil nil)))
2538 (mapcar 'car tramp-methods)))
2540 ;; Compares partial user and host names with possible completions.
2541 (defun tramp-get-completion-user-host
2542 (method partial-user partial-host user host)
2543 "Returns the most expanded string for user and host name completion.
2544 PARTIAL-USER must match USER, PARTIAL-HOST must match HOST."
2545 (cond
2547 ((and partial-user partial-host)
2548 (if (and host
2549 (string-match (concat "^" (regexp-quote partial-host)) host)
2550 (string-equal partial-user (or user partial-user)))
2551 (setq user partial-user)
2552 (setq user nil
2553 host nil)))
2555 (partial-user
2556 (setq host nil)
2557 (unless
2558 (and user (string-match (concat "^" (regexp-quote partial-user)) user))
2559 (setq user nil)))
2561 (partial-host
2562 (setq user nil)
2563 (unless
2564 (and host (string-match (concat "^" (regexp-quote partial-host)) host))
2565 (setq host nil)))
2567 (t (setq user nil
2568 host nil)))
2570 (unless (zerop (+ (length user) (length host)))
2571 (tramp-completion-make-tramp-file-name method user host nil)))
2573 (defun tramp-parse-default-user-host (method)
2574 "Return a list of (user host) tuples allowed to access for METHOD.
2575 This function is added always in `tramp-get-completion-function'
2576 for all methods. Resulting data are derived from default settings."
2577 `((,(tramp-find-user method nil nil) ,(tramp-find-host method nil nil))))
2579 ;; Generic function.
2580 (defun tramp-parse-group (regexp match-level skip-regexp)
2581 "Return a (user host) tuple allowed to access.
2582 User is always nil."
2583 (let (result)
2584 (when (re-search-forward regexp (point-at-eol) t)
2585 (setq result (list nil (match-string match-level))))
2587 (> (skip-chars-forward skip-regexp) 0)
2588 (forward-line 1))
2589 result))
2591 ;; Generic function.
2592 (defun tramp-parse-file (filename function)
2593 "Return a list of (user host) tuples allowed to access.
2594 User is always nil."
2595 ;; On Windows, there are problems in completion when
2596 ;; `default-directory' is remote.
2597 (let ((default-directory (tramp-compat-temporary-file-directory)))
2598 (when (file-readable-p filename)
2599 (with-temp-buffer
2600 (insert-file-contents filename)
2601 (goto-char (point-min))
2602 (loop while (not (eobp)) collect (funcall function))))))
2604 ;;;###tramp-autoload
2605 (defun tramp-parse-rhosts (filename)
2606 "Return a list of (user host) tuples allowed to access.
2607 Either user or host may be nil."
2608 (tramp-parse-file filename 'tramp-parse-rhosts-group))
2610 (defun tramp-parse-rhosts-group ()
2611 "Return a (user host) tuple allowed to access.
2612 Either user or host may be nil."
2613 (let ((result)
2614 (regexp
2615 (concat
2616 "^\\(" tramp-host-regexp "\\)"
2617 "\\([ \t]+" "\\(" tramp-user-regexp "\\)" "\\)?")))
2618 (when (re-search-forward regexp (point-at-eol) t)
2619 (setq result (append (list (match-string 3) (match-string 1)))))
2620 (forward-line 1)
2621 result))
2623 ;;;###tramp-autoload
2624 (defun tramp-parse-shosts (filename)
2625 "Return a list of (user host) tuples allowed to access.
2626 User is always nil."
2627 (tramp-parse-file filename 'tramp-parse-shosts-group))
2629 (defun tramp-parse-shosts-group ()
2630 "Return a (user host) tuple allowed to access.
2631 User is always nil."
2632 (tramp-parse-group (concat "^\\(" tramp-host-regexp "\\)") 1 ","))
2634 ;;;###tramp-autoload
2635 (defun tramp-parse-sconfig (filename)
2636 "Return a list of (user host) tuples allowed to access.
2637 User is always nil."
2638 (tramp-parse-file filename 'tramp-parse-sconfig-group))
2640 (defun tramp-parse-sconfig-group ()
2641 "Return a (user host) tuple allowed to access.
2642 User is always nil."
2643 (tramp-parse-group
2644 (concat "^[ \t]*Host[ \t]+" "\\(" tramp-host-regexp "\\)") 1 ","))
2646 ;; Generic function.
2647 (defun tramp-parse-shostkeys-sknownhosts (dirname regexp)
2648 "Return a list of (user host) tuples allowed to access.
2649 User is always nil."
2650 ;; On Windows, there are problems in completion when
2651 ;; `default-directory' is remote.
2652 (let* ((default-directory (tramp-compat-temporary-file-directory))
2653 (files (and (file-directory-p dirname) (directory-files dirname))))
2654 (loop for f in files
2655 when (and (not (string-match "^\\.\\.?$" f)) (string-match regexp f))
2656 collect (list nil (match-string 1 f)))))
2658 ;;;###tramp-autoload
2659 (defun tramp-parse-shostkeys (dirname)
2660 "Return a list of (user host) tuples allowed to access.
2661 User is always nil."
2662 (tramp-parse-shostkeys-sknownhosts
2663 dirname (concat "^key_[0-9]+_\\(" tramp-host-regexp "\\)\\.pub$")))
2665 ;;;###tramp-autoload
2666 (defun tramp-parse-sknownhosts (dirname)
2667 "Return a list of (user host) tuples allowed to access.
2668 User is always nil."
2669 (tramp-parse-shostkeys-sknownhosts
2670 dirname
2671 (concat "^\\(" tramp-host-regexp "\\)\\.ssh-\\(dss\\|rsa\\)\\.pub$")))
2673 ;;;###tramp-autoload
2674 (defun tramp-parse-hosts (filename)
2675 "Return a list of (user host) tuples allowed to access.
2676 User is always nil."
2677 (tramp-parse-file filename 'tramp-parse-hosts-group))
2679 (defun tramp-parse-hosts-group ()
2680 "Return a (user host) tuple allowed to access.
2681 User is always nil."
2682 (tramp-parse-group
2683 (concat "^\\(" tramp-ipv6-regexp "\\|" tramp-host-regexp "\\)") 1 " \t"))
2685 ;;;###tramp-autoload
2686 (defun tramp-parse-passwd (filename)
2687 "Return a list of (user host) tuples allowed to access.
2688 Host is always \"localhost\"."
2689 (with-tramp-connection-property nil "parse-passwd"
2690 (if (executable-find "getent")
2691 (with-temp-buffer
2692 (when (zerop (tramp-call-process nil "getent" nil t nil "passwd"))
2693 (goto-char (point-min))
2694 (loop while (not (eobp)) collect
2695 (tramp-parse-etc-group-group))))
2696 (tramp-parse-file filename 'tramp-parse-passwd-group))))
2698 (defun tramp-parse-passwd-group ()
2699 "Return a (user host) tuple allowed to access.
2700 Host is always \"localhost\"."
2701 (let ((result)
2702 (regexp (concat "^\\(" tramp-user-regexp "\\):")))
2703 (when (re-search-forward regexp (point-at-eol) t)
2704 (setq result (list (match-string 1) "localhost")))
2705 (forward-line 1)
2706 result))
2708 ;;;###tramp-autoload
2709 (defun tramp-parse-etc-group (filename)
2710 "Return a list of (group host) tuples allowed to access.
2711 Host is always \"localhost\"."
2712 (with-tramp-connection-property nil "parse-group"
2713 (if (executable-find "getent")
2714 (with-temp-buffer
2715 (when (zerop (tramp-call-process nil "getent" nil t nil "group"))
2716 (goto-char (point-min))
2717 (loop while (not (eobp)) collect
2718 (tramp-parse-etc-group-group))))
2719 (tramp-parse-file filename 'tramp-parse-etc-group-group))))
2721 (defun tramp-parse-etc-group-group ()
2722 "Return a (group host) tuple allowed to access.
2723 Host is always \"localhost\"."
2724 (let ((result)
2725 (split (split-string (buffer-substring (point) (point-at-eol)) ":")))
2726 (when (member (user-login-name) (split-string (nth 3 split) "," 'omit))
2727 (setq result (list (nth 0 split) "localhost")))
2728 (forward-line 1)
2729 result))
2731 ;;;###tramp-autoload
2732 (defun tramp-parse-netrc (filename)
2733 "Return a list of (user host) tuples allowed to access.
2734 User may be nil."
2735 (tramp-parse-file filename 'tramp-parse-netrc-group))
2737 (defun tramp-parse-netrc-group ()
2738 "Return a (user host) tuple allowed to access.
2739 User may be nil."
2740 (let ((result)
2741 (regexp
2742 (concat
2743 "^[ \t]*machine[ \t]+" "\\(" tramp-host-regexp "\\)"
2744 "\\([ \t]+login[ \t]+" "\\(" tramp-user-regexp "\\)" "\\)?")))
2745 (when (re-search-forward regexp (point-at-eol) t)
2746 (setq result (list (match-string 3) (match-string 1))))
2747 (forward-line 1)
2748 result))
2750 ;;;###tramp-autoload
2751 (defun tramp-parse-putty (registry-or-dirname)
2752 "Return a list of (user host) tuples allowed to access.
2753 User is always nil."
2754 (if (memq system-type '(windows-nt))
2755 (with-tramp-connection-property nil "parse-putty"
2756 (with-temp-buffer
2757 (when (zerop (tramp-call-process
2758 nil "reg" nil t nil "query" registry-or-dirname))
2759 (goto-char (point-min))
2760 (loop while (not (eobp)) collect
2761 (tramp-parse-putty-group registry-or-dirname)))))
2762 ;; UNIX case.
2763 (tramp-parse-shostkeys-sknownhosts
2764 registry-or-dirname (concat "^\\(" tramp-host-regexp "\\)$"))))
2766 (defun tramp-parse-putty-group (registry)
2767 "Return a (user host) tuple allowed to access.
2768 User is always nil."
2769 (let ((result)
2770 (regexp (concat (regexp-quote registry) "\\\\\\(.+\\)")))
2771 (when (re-search-forward regexp (point-at-eol) t)
2772 (setq result (list nil (match-string 1))))
2773 (forward-line 1)
2774 result))
2776 ;;; Common file name handler functions for different backends:
2778 (defvar tramp-handle-file-local-copy-hook nil
2779 "Normal hook to be run at the end of `tramp-*-handle-file-local-copy'.")
2781 (defvar tramp-handle-write-region-hook nil
2782 "Normal hook to be run at the end of `tramp-*-handle-write-region'.")
2784 (defun tramp-handle-directory-file-name (directory)
2785 "Like `directory-file-name' for Tramp files."
2786 ;; If localname component of filename is "/", leave it unchanged.
2787 ;; Otherwise, remove any trailing slash from localname component.
2788 ;; Method, host, etc, are unchanged. Does it make sense to try
2789 ;; to avoid parsing the filename?
2790 (with-parsed-tramp-file-name directory nil
2791 (if (and (not (zerop (length localname)))
2792 (eq (aref localname (1- (length localname))) ?/)
2793 (not (string= localname "/")))
2794 (substring directory 0 -1)
2795 directory)))
2797 (defun tramp-handle-directory-files (directory &optional full match nosort)
2798 "Like `directory-files' for Tramp files."
2799 (when (file-directory-p directory)
2800 (setq directory (file-name-as-directory (expand-file-name directory)))
2801 (let ((temp (nreverse (file-name-all-completions "" directory)))
2802 result item)
2804 (while temp
2805 (setq item (directory-file-name (pop temp)))
2806 (when (or (null match) (string-match match item))
2807 (push (if full (concat directory item) item)
2808 result)))
2809 (if nosort result (sort result 'string<)))))
2811 (defun tramp-handle-directory-files-and-attributes
2812 (directory &optional full match nosort id-format)
2813 "Like `directory-files-and-attributes' for Tramp files."
2814 (mapcar
2815 (lambda (x)
2816 (cons x (file-attributes
2817 (if full x (expand-file-name x directory)) id-format)))
2818 (directory-files directory full match nosort)))
2820 (defun tramp-handle-dired-uncache (dir)
2821 "Like `dired-uncache' for Tramp files."
2822 (with-parsed-tramp-file-name
2823 (if (file-directory-p dir) dir (file-name-directory dir)) nil
2824 (tramp-flush-directory-property v localname)))
2826 (defun tramp-handle-file-accessible-directory-p (filename)
2827 "Like `file-accessible-directory-p' for Tramp files."
2828 (and (file-directory-p filename)
2829 (file-readable-p filename)))
2831 (defun tramp-handle-file-equal-p (filename1 filename2)
2832 "Like `file-equalp-p' for Tramp files."
2833 ;; Native `file-equalp-p' calls `file-truename', which requires a
2834 ;; remote connection. This can be avoided, if FILENAME1 and
2835 ;; FILENAME2 are not located on the same remote host.
2836 (when (string-equal
2837 (file-remote-p (expand-file-name filename1))
2838 (file-remote-p (expand-file-name filename2)))
2839 (tramp-run-real-handler 'file-equal-p (list filename1 filename2))))
2841 (defun tramp-handle-file-exists-p (filename)
2842 "Like `file-exists-p' for Tramp files."
2843 (not (null (file-attributes filename))))
2845 (defun tramp-handle-file-in-directory-p (filename directory)
2846 "Like `file-in-directory-p' for Tramp files."
2847 ;; Native `file-in-directory-p' calls `file-truename', which
2848 ;; requires a remote connection. This can be avoided, if FILENAME
2849 ;; and DIRECTORY are not located on the same remote host.
2850 (when (string-equal
2851 (file-remote-p (expand-file-name filename))
2852 (file-remote-p (expand-file-name directory)))
2853 (tramp-run-real-handler 'file-in-directory-p (list filename directory))))
2855 (defun tramp-handle-file-modes (filename)
2856 "Like `file-modes' for Tramp files."
2857 (let ((truename (or (file-truename filename) filename)))
2858 (when (file-exists-p truename)
2859 (tramp-mode-string-to-int (nth 8 (file-attributes truename))))))
2861 ;; Localname manipulation functions that grok Tramp localnames...
2862 (defun tramp-handle-file-name-as-directory (file)
2863 "Like `file-name-as-directory' but aware of Tramp files."
2864 ;; `file-name-as-directory' would be sufficient except localname is
2865 ;; the empty string.
2866 (let ((v (tramp-dissect-file-name file t)))
2867 ;; Run the command on the localname portion only unless we are in
2868 ;; completion mode.
2869 (tramp-make-tramp-file-name
2870 (tramp-file-name-method v)
2871 (tramp-file-name-user v)
2872 (tramp-file-name-host v)
2873 (if (and (tramp-completion-mode-p)
2874 (zerop (length (tramp-file-name-localname v))))
2876 (tramp-run-real-handler
2877 'file-name-as-directory (list (or (tramp-file-name-localname v) ""))))
2878 (tramp-file-name-hop v))))
2880 (defun tramp-handle-file-name-completion
2881 (filename directory &optional predicate)
2882 "Like `file-name-completion' for Tramp files."
2883 (unless (tramp-tramp-file-p directory)
2884 (error
2885 "tramp-handle-file-name-completion invoked on non-tramp directory `%s'"
2886 directory))
2887 (let (hits-ignored-extensions)
2889 (try-completion
2890 filename (file-name-all-completions filename directory)
2891 (lambda (x)
2892 (when (funcall (or predicate 'identity) (expand-file-name x directory))
2893 (not
2894 (and
2895 completion-ignored-extensions
2896 (string-match
2897 (concat (regexp-opt completion-ignored-extensions 'paren) "$") x)
2898 ;; We remember the hit.
2899 (push x hits-ignored-extensions))))))
2900 ;; No match. So we try again for ignored files.
2901 (try-completion filename hits-ignored-extensions))))
2903 (defun tramp-handle-file-name-directory (file)
2904 "Like `file-name-directory' but aware of Tramp files."
2905 ;; Everything except the last filename thing is the directory. We
2906 ;; cannot apply `with-parsed-tramp-file-name', because this expands
2907 ;; the remote file name parts. This is a problem when we are in
2908 ;; file name completion.
2909 (let ((v (tramp-dissect-file-name file t)))
2910 ;; Run the command on the localname portion only.
2911 (tramp-make-tramp-file-name
2912 (tramp-file-name-method v)
2913 (tramp-file-name-user v)
2914 (tramp-file-name-host v)
2915 (tramp-run-real-handler
2916 'file-name-directory (list (or (tramp-file-name-localname v) "")))
2917 (tramp-file-name-hop v))))
2919 (defun tramp-handle-file-name-nondirectory (file)
2920 "Like `file-name-nondirectory' but aware of Tramp files."
2921 (with-parsed-tramp-file-name file nil
2922 (tramp-run-real-handler 'file-name-nondirectory (list localname))))
2924 (defun tramp-handle-file-newer-than-file-p (file1 file2)
2925 "Like `file-newer-than-file-p' for Tramp files."
2926 (cond
2927 ((not (file-exists-p file1)) nil)
2928 ((not (file-exists-p file2)) t)
2929 (t (time-less-p (nth 5 (file-attributes file2))
2930 (nth 5 (file-attributes file1))))))
2932 (defun tramp-handle-file-regular-p (filename)
2933 "Like `file-regular-p' for Tramp files."
2934 (and (file-exists-p filename)
2935 (eq ?- (aref (nth 8 (file-attributes filename)) 0))))
2937 (defun tramp-handle-file-remote-p (filename &optional identification connected)
2938 "Like `file-remote-p' for Tramp files."
2939 ;; We do not want traces in the debug buffer.
2940 (let ((tramp-verbose (min tramp-verbose 3)))
2941 (when (tramp-tramp-file-p filename)
2942 (let* ((v (tramp-dissect-file-name filename))
2943 (p (tramp-get-connection-process v))
2944 (c (and (tramp-compat-process-live-p p)
2945 (tramp-get-connection-property p "connected" nil))))
2946 ;; We expand the file name only, if there is already a connection.
2947 (with-parsed-tramp-file-name
2948 (if c (expand-file-name filename) filename) nil
2949 (and (or (not connected) c)
2950 (cond
2951 ((eq identification 'method) method)
2952 ((eq identification 'user) user)
2953 ((eq identification 'host) host)
2954 ((eq identification 'localname) localname)
2955 ((eq identification 'hop) hop)
2956 (t (tramp-make-tramp-file-name method user host "" hop)))))))))
2958 (defun tramp-handle-file-symlink-p (filename)
2959 "Like `file-symlink-p' for Tramp files."
2960 (with-parsed-tramp-file-name filename nil
2961 (let ((x (car (file-attributes filename))))
2962 (when (stringp x)
2963 (if (file-name-absolute-p x)
2964 (tramp-make-tramp-file-name method user host x)
2965 x)))))
2967 (defun tramp-handle-find-backup-file-name (filename)
2968 "Like `find-backup-file-name' for Tramp files."
2969 (with-parsed-tramp-file-name filename nil
2970 (let ((backup-directory-alist
2971 (if tramp-backup-directory-alist
2972 (mapcar
2973 (lambda (x)
2974 (cons
2975 (car x)
2976 (if (and (stringp (cdr x))
2977 (file-name-absolute-p (cdr x))
2978 (not (tramp-file-name-p (cdr x))))
2979 (tramp-make-tramp-file-name method user host (cdr x))
2980 (cdr x))))
2981 tramp-backup-directory-alist)
2982 backup-directory-alist)))
2983 (tramp-run-real-handler 'find-backup-file-name (list filename)))))
2985 (defun tramp-handle-insert-directory
2986 (filename switches &optional wildcard full-directory-p)
2987 "Like `insert-directory' for Tramp files."
2988 (unless switches (setq switches ""))
2989 ;; Mark trailing "/".
2990 (when (and (zerop (length (file-name-nondirectory filename)))
2991 (not full-directory-p))
2992 (setq switches (concat switches "F")))
2993 (with-parsed-tramp-file-name (expand-file-name filename) nil
2994 (with-tramp-progress-reporter v 0 (format "Opening directory %s" filename)
2995 (require 'ls-lisp)
2996 (let (ls-lisp-use-insert-directory-program start)
2997 (tramp-run-real-handler
2998 'insert-directory
2999 (list filename switches wildcard full-directory-p))
3000 ;; `ls-lisp' always returns full listings. We must remove
3001 ;; superfluous parts.
3002 (unless (string-match "l" switches)
3003 (save-excursion
3004 (goto-char (point-min))
3005 (while (setq start
3006 (text-property-not-all
3007 (point) (point-at-eol) 'dired-filename t))
3008 (delete-region
3009 start
3010 (or (text-property-any start (point-at-eol) 'dired-filename t)
3011 (point-at-eol)))
3012 (if (= (point-at-bol) (point-at-eol))
3013 ;; Empty line.
3014 (delete-region (point) (progn (forward-line) (point)))
3015 (forward-line)))))))))
3017 (defun tramp-handle-insert-file-contents
3018 (filename &optional visit beg end replace)
3019 "Like `insert-file-contents' for Tramp files."
3020 (barf-if-buffer-read-only)
3021 (setq filename (expand-file-name filename))
3022 (let (result local-copy remote-copy)
3023 (with-parsed-tramp-file-name filename nil
3024 (unwind-protect
3025 (if (not (file-exists-p filename))
3026 (tramp-error
3027 v 'file-error "File `%s' not found on remote host" filename)
3029 (with-tramp-progress-reporter
3030 v 3 (format-message "Inserting `%s'" filename)
3031 (condition-case err
3032 (if (and (tramp-local-host-p v)
3033 (let (file-name-handler-alist)
3034 (file-readable-p localname)))
3035 ;; Short track: if we are on the local host, we can
3036 ;; run directly.
3037 (setq result
3038 (tramp-run-real-handler
3039 'insert-file-contents
3040 (list localname visit beg end replace)))
3042 ;; When we shall insert only a part of the file, we
3043 ;; copy this part. This works only for the shell file
3044 ;; name handlers.
3045 (when (and (or beg end)
3046 (tramp-get-method-parameter
3047 v 'tramp-login-program))
3048 (setq remote-copy (tramp-make-tramp-temp-file v))
3049 ;; This is defined in tramp-sh.el. Let's assume
3050 ;; this is loaded already.
3051 (tramp-compat-funcall
3052 'tramp-send-command
3054 (cond
3055 ((and beg end)
3056 (format "dd bs=1 skip=%d if=%s count=%d of=%s"
3057 beg (tramp-shell-quote-argument localname)
3058 (- end beg) remote-copy))
3059 (beg
3060 (format "dd bs=1 skip=%d if=%s of=%s"
3061 beg (tramp-shell-quote-argument localname)
3062 remote-copy))
3063 (end
3064 (format "dd bs=1 count=%d if=%s of=%s"
3065 end (tramp-shell-quote-argument localname)
3066 remote-copy))))
3067 (setq tramp-temp-buffer-file-name nil beg nil end nil))
3069 ;; `insert-file-contents-literally' takes care to
3070 ;; avoid calling jka-compr.el and epa.el. By
3071 ;; let-binding `inhibit-file-name-operation', we
3072 ;; propagate that care to the `file-local-copy'
3073 ;; operation.
3074 (setq local-copy
3075 (let ((inhibit-file-name-operation
3076 (when (eq inhibit-file-name-operation
3077 'insert-file-contents)
3078 'file-local-copy)))
3079 (cond
3080 ((stringp remote-copy)
3081 (file-local-copy
3082 (tramp-make-tramp-file-name
3083 method user host remote-copy)))
3084 ((stringp tramp-temp-buffer-file-name)
3085 (copy-file
3086 filename tramp-temp-buffer-file-name 'ok)
3087 tramp-temp-buffer-file-name)
3088 (t (file-local-copy filename)))))
3090 ;; When the file is not readable for the owner, it
3091 ;; cannot be inserted, even if it is readable for the
3092 ;; group or for everybody.
3093 (set-file-modes local-copy (string-to-number "0600" 8))
3095 (when (and (null remote-copy)
3096 (tramp-get-method-parameter
3097 v 'tramp-copy-keep-tmpfile))
3098 ;; We keep the local file for performance reasons,
3099 ;; useful for "rsync".
3100 (setq tramp-temp-buffer-file-name local-copy))
3102 ;; We must ensure that `file-coding-system-alist'
3103 ;; matches `local-copy'.
3104 (let ((file-coding-system-alist
3105 (tramp-find-file-name-coding-system-alist
3106 filename local-copy)))
3107 (setq result
3108 (insert-file-contents
3109 local-copy visit beg end replace))))
3110 (error
3111 (add-hook 'find-file-not-found-functions
3112 `(lambda () (signal ',(car err) ',(cdr err)))
3113 nil t)
3114 (signal (car err) (cdr err))))))
3116 ;; Save exit.
3117 (progn
3118 (when visit
3119 (setq buffer-file-name filename)
3120 (setq buffer-read-only (not (file-writable-p filename)))
3121 (set-visited-file-modtime)
3122 (set-buffer-modified-p nil))
3123 (when (and (stringp local-copy)
3124 (or remote-copy (null tramp-temp-buffer-file-name)))
3125 (delete-file local-copy))
3126 (when (stringp remote-copy)
3127 (delete-file
3128 (tramp-make-tramp-file-name method user host remote-copy)))))
3130 ;; Result.
3131 (list (expand-file-name filename)
3132 (cadr result)))))
3134 (defun tramp-handle-load (file &optional noerror nomessage nosuffix must-suffix)
3135 "Like `load' for Tramp files."
3136 (with-parsed-tramp-file-name (expand-file-name file) nil
3137 (unless nosuffix
3138 (cond ((file-exists-p (concat file ".elc"))
3139 (setq file (concat file ".elc")))
3140 ((file-exists-p (concat file ".el"))
3141 (setq file (concat file ".el")))))
3142 (when must-suffix
3143 ;; The first condition is always true for absolute file names.
3144 ;; Included for safety's sake.
3145 (unless (or (file-name-directory file)
3146 (string-match "\\.elc?\\'" file))
3147 (tramp-error
3148 v 'file-error
3149 "File `%s' does not include a `.el' or `.elc' suffix" file)))
3150 (unless noerror
3151 (when (not (file-exists-p file))
3152 (tramp-error v 'file-error "Cannot load nonexistent file `%s'" file)))
3153 (if (not (file-exists-p file))
3155 (let ((tramp-message-show-message (not nomessage)))
3156 (with-tramp-progress-reporter v 0 (format "Loading %s" file)
3157 (let ((local-copy (file-local-copy file)))
3158 (unwind-protect
3159 (load local-copy noerror t nosuffix must-suffix)
3160 (delete-file local-copy)))))
3161 t)))
3163 (defun tramp-handle-make-symbolic-link
3164 (filename linkname &optional _ok-if-already-exists)
3165 "Like `make-symbolic-link' for Tramp files."
3166 (with-parsed-tramp-file-name
3167 (if (tramp-tramp-file-p filename) filename linkname) nil
3168 (tramp-error v 'file-error "make-symbolic-link not supported")))
3170 (defun tramp-handle-shell-command
3171 (command &optional output-buffer error-buffer)
3172 "Like `shell-command' for Tramp files."
3173 (let* ((asynchronous (string-match "[ \t]*&[ \t]*\\'" command))
3174 ;; We cannot use `shell-file-name' and `shell-command-switch',
3175 ;; they are variables of the local host.
3176 (args (append
3177 (cons
3178 (tramp-get-method-parameter
3179 (tramp-dissect-file-name default-directory)
3180 'tramp-remote-shell)
3181 (tramp-get-method-parameter
3182 (tramp-dissect-file-name default-directory)
3183 'tramp-remote-shell-args))
3184 (list (substring command 0 asynchronous))))
3185 current-buffer-p
3186 (output-buffer
3187 (cond
3188 ((bufferp output-buffer) output-buffer)
3189 ((stringp output-buffer) (get-buffer-create output-buffer))
3190 (output-buffer
3191 (setq current-buffer-p t)
3192 (current-buffer))
3193 (t (get-buffer-create
3194 (if asynchronous
3195 "*Async Shell Command*"
3196 "*Shell Command Output*")))))
3197 (error-buffer
3198 (cond
3199 ((bufferp error-buffer) error-buffer)
3200 ((stringp error-buffer) (get-buffer-create error-buffer))))
3201 (buffer
3202 (if (and (not asynchronous) error-buffer)
3203 (with-parsed-tramp-file-name default-directory nil
3204 (list output-buffer (tramp-make-tramp-temp-file v)))
3205 output-buffer))
3206 (p (get-buffer-process output-buffer)))
3208 ;; Check whether there is another process running. Tramp does not
3209 ;; support 2 (asynchronous) processes in parallel.
3210 (when p
3211 (if (yes-or-no-p "A command is running. Kill it? ")
3212 (ignore-errors (kill-process p))
3213 (tramp-user-error p "Shell command in progress")))
3215 (if current-buffer-p
3216 (progn
3217 (barf-if-buffer-read-only)
3218 (push-mark nil t))
3219 (with-current-buffer output-buffer
3220 (setq buffer-read-only nil)
3221 (erase-buffer)))
3223 (if (and (not current-buffer-p) (integerp asynchronous))
3224 (prog1
3225 ;; Run the process.
3226 (setq p (apply 'start-file-process "*Async Shell*" buffer args))
3227 ;; Display output.
3228 (with-current-buffer output-buffer
3229 (display-buffer output-buffer '(nil (allow-no-window . t)))
3230 (setq mode-line-process '(":%s"))
3231 (shell-mode)
3232 (set-process-sentinel p 'shell-command-sentinel)
3233 (set-process-filter p 'comint-output-filter)))
3235 (prog1
3236 ;; Run the process.
3237 (apply 'process-file (car args) nil buffer nil (cdr args))
3238 ;; Insert error messages if they were separated.
3239 (when (listp buffer)
3240 (with-current-buffer error-buffer
3241 (insert-file-contents (cadr buffer)))
3242 (delete-file (cadr buffer)))
3243 (if current-buffer-p
3244 ;; This is like exchange-point-and-mark, but doesn't
3245 ;; activate the mark. It is cleaner to avoid activation,
3246 ;; even though the command loop would deactivate the mark
3247 ;; because we inserted text.
3248 (goto-char (prog1 (mark t)
3249 (set-marker (mark-marker) (point)
3250 (current-buffer))))
3251 ;; There's some output, display it.
3252 (when (with-current-buffer output-buffer (> (point-max) (point-min)))
3253 (display-message-or-buffer output-buffer)))))))
3255 (defun tramp-handle-substitute-in-file-name (filename)
3256 "Like `substitute-in-file-name' for Tramp files.
3257 \"//\" and \"/~\" substitute only in the local filename part."
3258 ;; First, we must replace environment variables.
3259 (setq filename (tramp-replace-environment-variables filename))
3260 (with-parsed-tramp-file-name filename nil
3261 ;; Ignore in LOCALNAME everything before "//" or "/~".
3262 (when (and (stringp localname) (string-match ".+?/\\(/\\|~\\)" localname))
3263 (setq filename
3264 (concat (file-remote-p filename)
3265 (replace-match "\\1" nil nil localname)))
3266 ;; "/m:h:~" does not work for completion. We use "/m:h:~/".
3267 (when (string-match "~$" filename)
3268 (setq filename (concat filename "/"))))
3269 ;; We do not want to replace environment variables, again.
3270 (let (process-environment)
3271 (tramp-run-real-handler 'substitute-in-file-name (list filename)))))
3273 (defun tramp-handle-set-visited-file-modtime (&optional time-list)
3274 "Like `set-visited-file-modtime' for Tramp files."
3275 (unless (buffer-file-name)
3276 (error "Can't set-visited-file-modtime: buffer `%s' not visiting a file"
3277 (buffer-name)))
3278 (unless time-list
3279 (let ((remote-file-name-inhibit-cache t))
3280 ;; '(-1 65535) means file doesn't exists yet.
3281 (setq time-list
3282 (or (nth 5 (file-attributes (buffer-file-name))) '(-1 65535)))))
3283 ;; We use '(0 0) as a don't-know value.
3284 (unless (equal time-list '(0 0))
3285 (tramp-run-real-handler 'set-visited-file-modtime (list time-list))))
3287 (defun tramp-handle-verify-visited-file-modtime (&optional buf)
3288 "Like `verify-visited-file-modtime' for Tramp files.
3289 At the time `verify-visited-file-modtime' calls this function, we
3290 already know that the buffer is visiting a file and that
3291 `visited-file-modtime' does not return 0. Do not call this
3292 function directly, unless those two cases are already taken care
3293 of."
3294 (with-current-buffer (or buf (current-buffer))
3295 (let ((f (buffer-file-name)))
3296 ;; There is no file visiting the buffer, or the buffer has no
3297 ;; recorded last modification time, or there is no established
3298 ;; connection.
3299 (if (or (not f)
3300 (eq (visited-file-modtime) 0)
3301 (not (file-remote-p f nil 'connected)))
3303 (with-parsed-tramp-file-name f nil
3304 (let* ((remote-file-name-inhibit-cache t)
3305 (attr (file-attributes f))
3306 (modtime (nth 5 attr))
3307 (mt (visited-file-modtime)))
3309 (cond
3310 ;; File exists, and has a known modtime.
3311 ((and attr (not (equal modtime '(0 0))))
3312 (< (abs (tramp-time-diff
3313 modtime
3314 ;; For compatibility, deal with both the old
3315 ;; (HIGH . LOW) and the new (HIGH LOW) return
3316 ;; values of `visited-file-modtime'.
3317 (if (atom (cdr mt))
3318 (list (car mt) (cdr mt))
3319 mt)))
3321 ;; Modtime has the don't know value.
3322 (attr t)
3323 ;; If file does not exist, say it is not modified if and
3324 ;; only if that agrees with the buffer's record.
3325 (t (equal mt '(-1 65535))))))))))
3327 (defun tramp-handle-file-notify-add-watch (filename _flags _callback)
3328 "Like `file-notify-add-watch' for Tramp files."
3329 ;; This is the default handler. tramp-gvfs.el and tramp-sh.el have
3330 ;; their own one.
3331 (setq filename (expand-file-name filename))
3332 (with-parsed-tramp-file-name filename nil
3333 (tramp-error
3334 v 'file-notify-error "File notification not supported for `%s'" filename)))
3336 (defun tramp-handle-file-notify-rm-watch (proc)
3337 "Like `file-notify-rm-watch' for Tramp files."
3338 ;; The descriptor must be a process object.
3339 (unless (processp proc)
3340 (tramp-error proc 'file-notify-error "Not a valid descriptor %S" proc))
3341 (tramp-message proc 6 "Kill %S" proc)
3342 (delete-process proc))
3344 (defun tramp-handle-file-notify-valid-p (proc)
3345 "Like `file-notify-valid-p' for Tramp files."
3346 (and (tramp-compat-process-live-p proc)
3347 ;; Sometimes, the process is still in status `run' when the
3348 ;; file or directory to be watched is deleted already.
3349 (with-current-buffer (process-buffer proc)
3350 (file-exists-p
3351 (concat (file-remote-p default-directory)
3352 (process-get proc 'watch-name))))))
3354 ;;; Functions for establishing connection:
3356 ;; The following functions are actions to be taken when seeing certain
3357 ;; prompts from the remote host. See the variable
3358 ;; `tramp-actions-before-shell' for usage of these functions.
3360 (defun tramp-action-login (_proc vec)
3361 "Send the login name."
3362 (when (not (stringp tramp-current-user))
3363 (setq tramp-current-user
3364 (with-tramp-connection-property vec "login-as"
3365 (save-window-excursion
3366 (let ((enable-recursive-minibuffers t))
3367 (pop-to-buffer (tramp-get-connection-buffer vec))
3368 (read-string (match-string 0)))))))
3369 (with-current-buffer (tramp-get-connection-buffer vec)
3370 (tramp-message vec 6 "\n%s" (buffer-string)))
3371 (tramp-message vec 3 "Sending login name `%s'" tramp-current-user)
3372 (tramp-send-string vec (concat tramp-current-user tramp-local-end-of-line)))
3374 (defun tramp-action-password (proc vec)
3375 "Query the user for a password."
3376 (with-current-buffer (process-buffer proc)
3377 (let ((enable-recursive-minibuffers t)
3378 (case-fold-search t))
3379 ;; Let's check whether a wrong password has been sent already.
3380 ;; Sometimes, the process returns a new password request
3381 ;; immediately after rejecting the previous (wrong) one.
3382 (unless (tramp-get-connection-property vec "first-password-request" nil)
3383 (tramp-clear-passwd vec))
3384 (goto-char (point-min))
3385 (tramp-check-for-regexp proc tramp-password-prompt-regexp)
3386 (tramp-message vec 3 "Sending %s" (match-string 1))
3387 ;; We don't call `tramp-send-string' in order to hide the
3388 ;; password from the debug buffer.
3389 (process-send-string
3390 proc (concat (tramp-read-passwd proc) tramp-local-end-of-line))
3391 ;; Hide password prompt.
3392 (narrow-to-region (point-max) (point-max)))))
3394 (defun tramp-action-succeed (_proc _vec)
3395 "Signal success in finding shell prompt."
3396 (throw 'tramp-action 'ok))
3398 (defun tramp-action-permission-denied (proc _vec)
3399 "Signal permission denied."
3400 (kill-process proc)
3401 (throw 'tramp-action 'permission-denied))
3403 (defun tramp-action-yesno (proc vec)
3404 "Ask the user for confirmation using `yes-or-no-p'.
3405 Send \"yes\" to remote process on confirmation, abort otherwise.
3406 See also `tramp-action-yn'."
3407 (save-window-excursion
3408 (let ((enable-recursive-minibuffers t))
3409 (save-match-data (pop-to-buffer (tramp-get-connection-buffer vec)))
3410 (unless (yes-or-no-p (match-string 0))
3411 (kill-process proc)
3412 (throw 'tramp-action 'permission-denied))
3413 (with-current-buffer (tramp-get-connection-buffer vec)
3414 (tramp-message vec 6 "\n%s" (buffer-string)))
3415 (tramp-send-string vec (concat "yes" tramp-local-end-of-line)))))
3417 (defun tramp-action-yn (proc vec)
3418 "Ask the user for confirmation using `y-or-n-p'.
3419 Send \"y\" to remote process on confirmation, abort otherwise.
3420 See also `tramp-action-yesno'."
3421 (save-window-excursion
3422 (let ((enable-recursive-minibuffers t))
3423 (save-match-data (pop-to-buffer (tramp-get-connection-buffer vec)))
3424 (unless (y-or-n-p (match-string 0))
3425 (kill-process proc)
3426 (throw 'tramp-action 'permission-denied))
3427 (with-current-buffer (tramp-get-connection-buffer vec)
3428 (tramp-message vec 6 "\n%s" (buffer-string)))
3429 (tramp-send-string vec (concat "y" tramp-local-end-of-line)))))
3431 (defun tramp-action-terminal (_proc vec)
3432 "Tell the remote host which terminal type to use.
3433 The terminal type can be configured with `tramp-terminal-type'."
3434 (tramp-message vec 5 "Setting `%s' as terminal type." tramp-terminal-type)
3435 (with-current-buffer (tramp-get-connection-buffer vec)
3436 (tramp-message vec 6 "\n%s" (buffer-string)))
3437 (tramp-send-string vec (concat tramp-terminal-type tramp-local-end-of-line)))
3439 (defun tramp-action-process-alive (proc _vec)
3440 "Check, whether a process has finished."
3441 (unless (tramp-compat-process-live-p proc)
3442 (throw 'tramp-action 'process-died)))
3444 (defun tramp-action-out-of-band (proc vec)
3445 "Check, whether an out-of-band copy has finished."
3446 ;; There might be pending output for the exit status.
3447 (tramp-accept-process-output proc 0.1)
3448 (cond ((and (not (tramp-compat-process-live-p proc))
3449 (zerop (process-exit-status proc)))
3450 (tramp-message vec 3 "Process has finished.")
3451 (throw 'tramp-action 'ok))
3452 ((or (and (memq (process-status proc) '(stop exit))
3453 (not (zerop (process-exit-status proc))))
3454 (memq (process-status proc) '(signal)))
3455 ;; `scp' could have copied correctly, but set modes could have failed.
3456 ;; This can be ignored.
3457 (with-current-buffer (process-buffer proc)
3458 (goto-char (point-min))
3459 (if (re-search-forward tramp-operation-not-permitted-regexp nil t)
3460 (progn
3461 (tramp-message vec 5 "'set mode' error ignored.")
3462 (tramp-message vec 3 "Process has finished.")
3463 (throw 'tramp-action 'ok))
3464 (tramp-message vec 3 "Process has died.")
3465 (throw 'tramp-action 'out-of-band-failed))))
3466 (t nil)))
3468 ;;; Functions for processing the actions:
3470 (defun tramp-process-one-action (proc vec actions)
3471 "Wait for output from the shell and perform one action."
3472 (let ((case-fold-search t)
3473 found todo item pattern action)
3474 (while (not found)
3475 ;; Reread output once all actions have been performed.
3476 ;; Obviously, the output was not complete.
3477 (tramp-accept-process-output proc 1)
3478 (setq todo actions)
3479 (while todo
3480 (setq item (pop todo))
3481 (setq pattern (format "\\(%s\\)\\'" (symbol-value (nth 0 item))))
3482 (setq action (nth 1 item))
3483 (tramp-message
3484 vec 5 "Looking for regexp \"%s\" from remote shell" pattern)
3485 (when (tramp-check-for-regexp proc pattern)
3486 (tramp-message vec 5 "Call `%s'" (symbol-name action))
3487 (setq found (funcall action proc vec)))))
3488 found))
3490 (defun tramp-process-actions (proc vec pos actions &optional timeout)
3491 "Perform ACTIONS until success or TIMEOUT.
3492 PROC and VEC indicate the remote connection to be used. POS, if
3493 set, is the starting point of the region to be deleted in the
3494 connection buffer."
3495 ;; Enable `auth-source'. We must use tramp-current-* variables in
3496 ;; case we have several hops.
3497 (tramp-set-connection-property
3498 (tramp-dissect-file-name
3499 (tramp-make-tramp-file-name
3500 tramp-current-method tramp-current-user tramp-current-host ""))
3501 "first-password-request" t)
3502 (save-restriction
3503 (with-tramp-progress-reporter
3504 proc 3 "Waiting for prompts from remote shell"
3505 (let (exit)
3506 (if timeout
3507 (with-timeout (timeout (setq exit 'timeout))
3508 (while (not exit)
3509 (setq exit
3510 (catch 'tramp-action
3511 (tramp-process-one-action proc vec actions)))))
3512 (while (not exit)
3513 (setq exit
3514 (catch 'tramp-action
3515 (tramp-process-one-action proc vec actions)))))
3516 (with-current-buffer (tramp-get-connection-buffer vec)
3517 (widen)
3518 (tramp-message vec 6 "\n%s" (buffer-string)))
3519 (unless (eq exit 'ok)
3520 (tramp-clear-passwd vec)
3521 (delete-process proc)
3522 (tramp-error-with-buffer
3523 (tramp-get-connection-buffer vec) vec 'file-error
3524 (cond
3525 ((eq exit 'permission-denied) "Permission denied")
3526 ((eq exit 'out-of-band-failed)
3527 (format-message
3528 "Copy failed, see buffer `%s' for details"
3529 (tramp-get-connection-buffer vec)))
3530 ((eq exit 'process-died)
3531 (substitute-command-keys
3532 (concat
3533 "Tramp failed to connect. If this happens repeatedly, try\n"
3534 " `\\[tramp-cleanup-this-connection]'")))
3535 ((eq exit 'timeout)
3536 (format-message
3537 "Timeout reached, see buffer `%s' for details"
3538 (tramp-get-connection-buffer vec)))
3539 (t "Login failed")))))
3540 (when (numberp pos)
3541 (with-current-buffer (tramp-get-connection-buffer vec)
3542 (let (buffer-read-only) (delete-region pos (point))))))))
3544 ;;; Utility functions:
3546 (defun tramp-accept-process-output (&optional proc timeout timeout-msecs)
3547 "Like `accept-process-output' for Tramp processes.
3548 This is needed in order to hide `last-coding-system-used', which is set
3549 for process communication also."
3550 (with-current-buffer (process-buffer proc)
3551 ;; FIXME: If there is a gateway process, we need communication
3552 ;; between several processes. Too complicate to implement, so we
3553 ;; read output from all processes.
3554 (let ((p (if (tramp-get-connection-property proc "gateway" nil) nil proc))
3555 buffer-read-only last-coding-system-used)
3556 ;; Under Windows XP, accept-process-output doesn't return
3557 ;; sometimes. So we add an additional timeout.
3558 (with-timeout ((or timeout 1))
3559 (accept-process-output p timeout timeout-msecs (and proc t)))
3560 (tramp-message proc 10 "%s %s %s\n%s"
3561 proc (process-status proc) p (buffer-string)))))
3563 (defun tramp-check-for-regexp (proc regexp)
3564 "Check, whether REGEXP is contained in process buffer of PROC.
3565 Erase echoed commands if exists."
3566 (with-current-buffer (process-buffer proc)
3567 (goto-char (point-min))
3569 ;; Check whether we need to remove echo output.
3570 (when (and (tramp-get-connection-property proc "check-remote-echo" nil)
3571 (re-search-forward tramp-echoed-echo-mark-regexp nil t))
3572 (let ((begin (match-beginning 0)))
3573 (when (re-search-forward tramp-echoed-echo-mark-regexp nil t)
3574 ;; Discard echo from remote output.
3575 (tramp-set-connection-property proc "check-remote-echo" nil)
3576 (tramp-message proc 5 "echo-mark found")
3577 (forward-line 1)
3578 (delete-region begin (point))
3579 (goto-char (point-min)))))
3581 (when (or (not (tramp-get-connection-property proc "check-remote-echo" nil))
3582 ;; Sometimes, the echo string is suppressed on the remote side.
3583 (not (string-equal
3584 (substring-no-properties
3585 tramp-echo-mark-marker
3586 0 (min tramp-echo-mark-marker-length (1- (point-max))))
3587 (buffer-substring-no-properties
3588 (point-min)
3589 (min (+ (point-min) tramp-echo-mark-marker-length)
3590 (point-max))))))
3591 ;; No echo to be handled, now we can look for the regexp.
3592 ;; Sometimes, lines are much to long, and we run into a "Stack
3593 ;; overflow in regexp matcher". For example, //DIRED// lines of
3594 ;; directory listings with some thousand files. Therefore, we
3595 ;; look from the end.
3596 (goto-char (point-max))
3597 (ignore-errors (re-search-backward regexp nil t)))))
3599 (defun tramp-wait-for-regexp (proc timeout regexp)
3600 "Wait for a REGEXP to appear from process PROC within TIMEOUT seconds.
3601 Expects the output of PROC to be sent to the current buffer. Returns
3602 the string that matched, or nil. Waits indefinitely if TIMEOUT is
3603 nil."
3604 (with-current-buffer (process-buffer proc)
3605 (let ((found (tramp-check-for-regexp proc regexp)))
3606 (cond (timeout
3607 (with-timeout (timeout)
3608 (while (not found)
3609 (tramp-accept-process-output proc 1)
3610 (unless (tramp-compat-process-live-p proc)
3611 (tramp-error-with-buffer
3612 nil proc 'file-error "Process has died"))
3613 (setq found (tramp-check-for-regexp proc regexp)))))
3615 (while (not found)
3616 (tramp-accept-process-output proc 1)
3617 (unless (tramp-compat-process-live-p proc)
3618 (tramp-error-with-buffer
3619 nil proc 'file-error "Process has died"))
3620 (setq found (tramp-check-for-regexp proc regexp)))))
3621 (tramp-message proc 6 "\n%s" (buffer-string))
3622 (when (not found)
3623 (if timeout
3624 (tramp-error
3625 proc 'file-error "[[Regexp `%s' not found in %d secs]]"
3626 regexp timeout)
3627 (tramp-error proc 'file-error "[[Regexp `%s' not found]]" regexp)))
3628 found)))
3630 ;; It seems that Tru64 Unix does not like it if long strings are sent
3631 ;; to it in one go. (This happens when sending the Perl
3632 ;; `file-attributes' implementation, for instance.) Therefore, we
3633 ;; have this function which sends the string in chunks.
3634 (defun tramp-send-string (vec string)
3635 "Send the STRING via connection VEC.
3637 The STRING is expected to use Unix line-endings, but the lines sent to
3638 the remote host use line-endings as defined in the variable
3639 `tramp-rsh-end-of-line'. The communication buffer is erased before sending."
3640 (let* ((p (tramp-get-connection-process vec))
3641 (chunksize (tramp-get-connection-property p "chunksize" nil)))
3642 (unless p
3643 (tramp-error
3644 vec 'file-error "Can't send string to remote host -- not logged in"))
3645 (tramp-set-connection-property p "last-cmd-time" (current-time))
3646 (tramp-message vec 10 "%s" string)
3647 (with-current-buffer (tramp-get-connection-buffer vec)
3648 ;; Clean up the buffer. We cannot call `erase-buffer' because
3649 ;; narrowing might be in effect.
3650 (let (buffer-read-only) (delete-region (point-min) (point-max)))
3651 ;; Replace "\n" by `tramp-rsh-end-of-line'.
3652 (setq string
3653 (mapconcat
3654 'identity (split-string string "\n") tramp-rsh-end-of-line))
3655 (unless (or (string= string "")
3656 (string-equal (substring string -1) tramp-rsh-end-of-line))
3657 (setq string (concat string tramp-rsh-end-of-line)))
3658 ;; Send the string.
3659 (if (and chunksize (not (zerop chunksize)))
3660 (let ((pos 0)
3661 (end (length string)))
3662 (while (< pos end)
3663 (tramp-message
3664 vec 10 "Sending chunk from %s to %s"
3665 pos (min (+ pos chunksize) end))
3666 (process-send-string
3667 p (substring string pos (min (+ pos chunksize) end)))
3668 (setq pos (+ pos chunksize))))
3669 (process-send-string p string)))))
3671 (defun tramp-get-inode (vec)
3672 "Returns the virtual inode number.
3673 If it doesn't exist, generate a new one."
3674 (with-tramp-file-property vec (tramp-file-name-localname vec) "inode"
3675 (setq tramp-inodes (1+ tramp-inodes))))
3677 (defun tramp-get-device (vec)
3678 "Returns the virtual device number.
3679 If it doesn't exist, generate a new one."
3680 (with-tramp-connection-property (tramp-get-connection-process vec) "device"
3681 (cons -1 (setq tramp-devices (1+ tramp-devices)))))
3683 (defun tramp-equal-remote (file1 file2)
3684 "Check, whether the remote parts of FILE1 and FILE2 are identical.
3685 The check depends on method, user and host name of the files. If
3686 one of the components is missing, the default values are used.
3687 The local file name parts of FILE1 and FILE2 are not taken into
3688 account.
3690 Example:
3692 (tramp-equal-remote \"/ssh::/etc\" \"/<your host name>:/home\")
3694 would yield t. On the other hand, the following check results in nil:
3696 (tramp-equal-remote \"/sudo::/etc\" \"/su::/etc\")"
3697 (and (tramp-tramp-file-p file1)
3698 (tramp-tramp-file-p file2)
3699 (string-equal (file-remote-p file1) (file-remote-p file2))))
3701 ;;;###tramp-autoload
3702 (defun tramp-mode-string-to-int (mode-string)
3703 "Converts a ten-letter `drwxrwxrwx'-style mode string into mode bits."
3704 (let* (case-fold-search
3705 (mode-chars (string-to-vector mode-string))
3706 (owner-read (aref mode-chars 1))
3707 (owner-write (aref mode-chars 2))
3708 (owner-execute-or-setid (aref mode-chars 3))
3709 (group-read (aref mode-chars 4))
3710 (group-write (aref mode-chars 5))
3711 (group-execute-or-setid (aref mode-chars 6))
3712 (other-read (aref mode-chars 7))
3713 (other-write (aref mode-chars 8))
3714 (other-execute-or-sticky (aref mode-chars 9)))
3715 (save-match-data
3716 (logior
3717 (cond
3718 ((char-equal owner-read ?r) (string-to-number "00400" 8))
3719 ((char-equal owner-read ?-) 0)
3720 (t (error "Second char `%c' must be one of `r-'" owner-read)))
3721 (cond
3722 ((char-equal owner-write ?w) (string-to-number "00200" 8))
3723 ((char-equal owner-write ?-) 0)
3724 (t (error "Third char `%c' must be one of `w-'" owner-write)))
3725 (cond
3726 ((char-equal owner-execute-or-setid ?x) (string-to-number "00100" 8))
3727 ((char-equal owner-execute-or-setid ?S) (string-to-number "04000" 8))
3728 ((char-equal owner-execute-or-setid ?s) (string-to-number "04100" 8))
3729 ((char-equal owner-execute-or-setid ?-) 0)
3730 (t (error "Fourth char `%c' must be one of `xsS-'"
3731 owner-execute-or-setid)))
3732 (cond
3733 ((char-equal group-read ?r) (string-to-number "00040" 8))
3734 ((char-equal group-read ?-) 0)
3735 (t (error "Fifth char `%c' must be one of `r-'" group-read)))
3736 (cond
3737 ((char-equal group-write ?w) (string-to-number "00020" 8))
3738 ((char-equal group-write ?-) 0)
3739 (t (error "Sixth char `%c' must be one of `w-'" group-write)))
3740 (cond
3741 ((char-equal group-execute-or-setid ?x) (string-to-number "00010" 8))
3742 ((char-equal group-execute-or-setid ?S) (string-to-number "02000" 8))
3743 ((char-equal group-execute-or-setid ?s) (string-to-number "02010" 8))
3744 ((char-equal group-execute-or-setid ?-) 0)
3745 (t (error "Seventh char `%c' must be one of `xsS-'"
3746 group-execute-or-setid)))
3747 (cond
3748 ((char-equal other-read ?r) (string-to-number "00004" 8))
3749 ((char-equal other-read ?-) 0)
3750 (t (error "Eighth char `%c' must be one of `r-'" other-read)))
3751 (cond
3752 ((char-equal other-write ?w) (string-to-number "00002" 8))
3753 ((char-equal other-write ?-) 0)
3754 (t (error "Ninth char `%c' must be one of `w-'" other-write)))
3755 (cond
3756 ((char-equal other-execute-or-sticky ?x) (string-to-number "00001" 8))
3757 ((char-equal other-execute-or-sticky ?T) (string-to-number "01000" 8))
3758 ((char-equal other-execute-or-sticky ?t) (string-to-number "01001" 8))
3759 ((char-equal other-execute-or-sticky ?-) 0)
3760 (t (error "Tenth char `%c' must be one of `xtT-'"
3761 other-execute-or-sticky)))))))
3763 (defconst tramp-file-mode-type-map
3764 '((0 . "-") ; Normal file (SVID-v2 and XPG2)
3765 (1 . "p") ; fifo
3766 (2 . "c") ; character device
3767 (3 . "m") ; multiplexed character device (v7)
3768 (4 . "d") ; directory
3769 (5 . "?") ; Named special file (XENIX)
3770 (6 . "b") ; block device
3771 (7 . "?") ; multiplexed block device (v7)
3772 (8 . "-") ; regular file
3773 (9 . "n") ; network special file (HP-UX)
3774 (10 . "l") ; symlink
3775 (11 . "?") ; ACL shadow inode (Solaris, not userspace)
3776 (12 . "s") ; socket
3777 (13 . "D") ; door special (Solaris)
3778 (14 . "w")) ; whiteout (BSD)
3779 "A list of file types returned from the `stat' system call.
3780 This is used to map a mode number to a permission string.")
3782 ;;;###tramp-autoload
3783 (defun tramp-file-mode-from-int (mode)
3784 "Turn an integer representing a file mode into an ls(1)-like string."
3785 (let ((type (cdr
3786 (assoc (logand (lsh mode -12) 15) tramp-file-mode-type-map)))
3787 (user (logand (lsh mode -6) 7))
3788 (group (logand (lsh mode -3) 7))
3789 (other (logand (lsh mode -0) 7))
3790 (suid (> (logand (lsh mode -9) 4) 0))
3791 (sgid (> (logand (lsh mode -9) 2) 0))
3792 (sticky (> (logand (lsh mode -9) 1) 0)))
3793 (setq user (tramp-file-mode-permissions user suid "s"))
3794 (setq group (tramp-file-mode-permissions group sgid "s"))
3795 (setq other (tramp-file-mode-permissions other sticky "t"))
3796 (concat type user group other)))
3798 (defun tramp-file-mode-permissions (perm suid suid-text)
3799 "Convert a permission bitset into a string.
3800 This is used internally by `tramp-file-mode-from-int'."
3801 (let ((r (> (logand perm 4) 0))
3802 (w (> (logand perm 2) 0))
3803 (x (> (logand perm 1) 0)))
3804 (concat (or (and r "r") "-")
3805 (or (and w "w") "-")
3806 (or (and suid x suid-text) ; suid, execute
3807 (and suid (upcase suid-text)) ; suid, !execute
3808 (and x "x") "-")))) ; !suid
3810 ;;;###tramp-autoload
3811 (defun tramp-get-local-uid (id-format)
3812 "The uid of the local user, in ID-FORMAT.
3813 ID-FORMAT valid values are `string' and `integer'."
3814 (if (equal id-format 'integer) (user-uid) (user-login-name)))
3816 ;;;###tramp-autoload
3817 (defun tramp-get-local-gid (id-format)
3818 "The gid of the local user, in ID-FORMAT.
3819 ID-FORMAT valid values are `string' and `integer'."
3820 ;; `group-gid' has been introduced with Emacs 24.4.
3821 (if (and (fboundp 'group-gid) (equal id-format 'integer))
3822 (tramp-compat-funcall 'group-gid)
3823 (nth 3 (file-attributes "~/" id-format))))
3825 (defun tramp-get-local-locale (&optional vec)
3826 "Determine locale, supporting UTF8 if possible.
3827 VEC is used for tracing."
3828 ;; We use key nil for local connection properties.
3829 (with-tramp-connection-property nil "locale"
3830 (let ((candidates '("en_US.utf8" "C.utf8" "en_US.UTF-8"))
3831 locale)
3832 (with-temp-buffer
3833 (unless (or (memq system-type '(windows-nt))
3834 (not (zerop (tramp-call-process
3835 nil "locale" nil t nil "-a"))))
3836 (while candidates
3837 (goto-char (point-min))
3838 (if (string-match (format "^%s\r?$" (regexp-quote (car candidates)))
3839 (buffer-string))
3840 (setq locale (car candidates)
3841 candidates nil)
3842 (setq candidates (cdr candidates))))))
3843 ;; Return value.
3844 (when vec (tramp-message vec 7 "locale %s" (or locale "C")))
3845 (or locale "C"))))
3847 ;;;###tramp-autoload
3848 (defun tramp-check-cached-permissions (vec access)
3849 "Check `file-attributes' caches for VEC.
3850 Return t if according to the cache access type ACCESS is known to
3851 be granted."
3852 (let ((result nil)
3853 (offset (cond
3854 ((eq ?r access) 1)
3855 ((eq ?w access) 2)
3856 ((eq ?x access) 3))))
3857 (dolist (suffix '("string" "integer") result)
3858 (setq
3859 result
3861 result
3862 (let ((file-attr
3864 (tramp-get-file-property
3865 vec (tramp-file-name-localname vec)
3866 (concat "file-attributes-" suffix) nil)
3867 (file-attributes
3868 (tramp-make-tramp-file-name
3869 (tramp-file-name-method vec)
3870 (tramp-file-name-user vec)
3871 (tramp-file-name-host vec)
3872 (tramp-file-name-localname vec)
3873 (tramp-file-name-hop vec))
3874 (intern suffix))))
3875 (remote-uid
3876 (tramp-get-connection-property
3877 vec (concat "uid-" suffix) nil))
3878 (remote-gid
3879 (tramp-get-connection-property
3880 vec (concat "gid-" suffix) nil))
3881 (unknown-id
3882 (if (string-equal suffix "string")
3883 tramp-unknown-id-string tramp-unknown-id-integer)))
3884 (and
3885 file-attr
3887 ;; Not a symlink
3888 (eq t (car file-attr))
3889 (null (car file-attr)))
3891 ;; World accessible.
3892 (eq access (aref (nth 8 file-attr) (+ offset 6)))
3893 ;; User accessible and owned by user.
3894 (and
3895 (eq access (aref (nth 8 file-attr) offset))
3896 (or (equal remote-uid (nth 2 file-attr))
3897 (equal unknown-id (nth 2 file-attr))))
3898 ;; Group accessible and owned by user's
3899 ;; principal group.
3900 (and
3901 (eq access (aref (nth 8 file-attr) (+ offset 3)))
3902 (or (equal remote-gid (nth 3 file-attr))
3903 (equal unknown-id (nth 3 file-attr))))))))))))
3905 ;;;###tramp-autoload
3906 (defun tramp-local-host-p (vec)
3907 "Return t if this points to the local host, nil otherwise."
3908 ;; We cannot use `tramp-file-name-real-host'. A port is an
3909 ;; indication for an ssh tunnel or alike.
3910 (let ((host (tramp-file-name-host vec)))
3911 (and
3912 (stringp host)
3913 (string-match tramp-local-host-regexp host)
3914 ;; The method shall be applied to one of the shell file name
3915 ;; handlers. `tramp-local-host-p' is also called for "smb" and
3916 ;; alike, where it must fail.
3917 (tramp-get-method-parameter vec 'tramp-login-program)
3918 ;; The local temp directory must be writable for the other user.
3919 (file-writable-p
3920 (tramp-make-tramp-file-name
3921 (tramp-file-name-method vec)
3922 (tramp-file-name-user vec)
3923 host
3924 (tramp-compat-temporary-file-directory)))
3925 ;; On some systems, chown runs only for root.
3926 (or (zerop (user-uid))
3927 ;; This is defined in tramp-sh.el. Let's assume this is
3928 ;; loaded already.
3929 (zerop (tramp-compat-funcall 'tramp-get-remote-uid vec 'integer))))))
3931 (defun tramp-get-remote-tmpdir (vec)
3932 "Return directory for temporary files on the remote host identified by VEC."
3933 (let ((dir (tramp-make-tramp-file-name
3934 (tramp-file-name-method vec)
3935 (tramp-file-name-user vec)
3936 (tramp-file-name-host vec)
3937 (or (tramp-get-method-parameter vec 'tramp-tmpdir) "/tmp"))))
3938 (with-tramp-connection-property vec "tmpdir"
3939 (or (and (file-directory-p dir) (file-writable-p dir)
3940 (file-remote-p dir 'localname))
3941 (tramp-error vec 'file-error "Directory %s not accessible" dir)))
3942 dir))
3944 ;;;###tramp-autoload
3945 (defun tramp-make-tramp-temp-file (vec)
3946 "Create a temporary file on the remote host identified by VEC.
3947 Return the local name of the temporary file."
3948 (let ((prefix (expand-file-name
3949 tramp-temp-name-prefix (tramp-get-remote-tmpdir vec)))
3950 result)
3951 (while (not result)
3952 ;; `make-temp-file' would be the natural choice for
3953 ;; implementation. But it calls `write-region' internally,
3954 ;; which also needs a temporary file - we would end in an
3955 ;; infinite loop.
3956 (setq result (make-temp-name prefix))
3957 (if (file-exists-p result)
3958 (setq result nil)
3959 ;; This creates the file by side effect.
3960 (set-file-times result)
3961 (set-file-modes result (string-to-number "0700" 8))))
3963 ;; Return the local part.
3964 (with-parsed-tramp-file-name result nil localname)))
3966 (defun tramp-delete-temp-file-function ()
3967 "Remove temporary files related to current buffer."
3968 (when (stringp tramp-temp-buffer-file-name)
3969 (ignore-errors (delete-file tramp-temp-buffer-file-name))))
3971 (add-hook 'kill-buffer-hook 'tramp-delete-temp-file-function)
3972 (add-hook 'tramp-unload-hook
3973 (lambda ()
3974 (remove-hook 'kill-buffer-hook
3975 'tramp-delete-temp-file-function)))
3977 (defun tramp-handle-make-auto-save-file-name ()
3978 "Like `make-auto-save-file-name' for Tramp files.
3979 Returns a file name in `tramp-auto-save-directory' for autosaving
3980 this file, if that variable is non-nil."
3981 (when (stringp tramp-auto-save-directory)
3982 (setq tramp-auto-save-directory
3983 (expand-file-name tramp-auto-save-directory)))
3984 ;; Create directory.
3985 (unless (or (null tramp-auto-save-directory)
3986 (file-exists-p tramp-auto-save-directory))
3987 (make-directory tramp-auto-save-directory t))
3989 (let ((system-type 'not-windows)
3990 (auto-save-file-name-transforms
3991 (if (null tramp-auto-save-directory)
3992 auto-save-file-name-transforms))
3993 (buffer-file-name
3994 (if (null tramp-auto-save-directory)
3995 buffer-file-name
3996 (expand-file-name
3997 (tramp-subst-strs-in-string
3998 '(("_" . "|")
3999 ("/" . "_a")
4000 (":" . "_b")
4001 ("|" . "__")
4002 ("[" . "_l")
4003 ("]" . "_r"))
4004 (buffer-file-name))
4005 tramp-auto-save-directory))))
4006 ;; Run plain `make-auto-save-file-name'.
4007 (tramp-run-real-handler 'make-auto-save-file-name nil)))
4009 (defun tramp-subst-strs-in-string (alist string)
4010 "Replace all occurrences of the string FROM with TO in STRING.
4011 ALIST is of the form ((FROM . TO) ...)."
4012 (save-match-data
4013 (while alist
4014 (let* ((pr (car alist))
4015 (from (car pr))
4016 (to (cdr pr)))
4017 (while (string-match (regexp-quote from) string)
4018 (setq string (replace-match to t t string)))
4019 (setq alist (cdr alist))))
4020 string))
4022 (defun tramp-handle-temporary-file-directory ()
4023 "Like `temporary-file-directory' for Tramp files."
4024 (catch 'result
4025 (dolist (dir `(,(ignore-errors
4026 (tramp-get-remote-tmpdir
4027 (tramp-dissect-file-name default-directory)))
4028 ,default-directory))
4029 (when (and (stringp dir) (file-directory-p dir) (file-writable-p dir))
4030 (throw 'result (expand-file-name dir))))))
4032 (defun tramp-handle-make-nearby-temp-file (prefix &optional dir-flag suffix)
4033 "Like `make-nearby-temp-file' for Tramp files."
4034 (let ((temporary-file-directory
4035 (tramp-compat-temporary-file-directory-function)))
4036 (make-temp-file prefix dir-flag suffix)))
4038 ;;; Compatibility functions section:
4040 (defun tramp-call-process
4041 (vec program &optional infile destination display &rest args)
4042 "Calls `call-process' on the local host.
4043 It always returns a return code. The Lisp error raised when
4044 PROGRAM is nil is trapped also, returning 1. Furthermore, traces
4045 are written with verbosity of 6."
4046 (let ((default-directory (tramp-compat-temporary-file-directory))
4047 (v (or vec
4048 (vector tramp-current-method tramp-current-user
4049 tramp-current-host nil nil)))
4050 (destination (if (eq destination t) (current-buffer) destination))
4051 output error result)
4052 (tramp-message
4053 v 6 "`%s %s' %s %s"
4054 program (mapconcat 'identity args " ") infile destination)
4055 (condition-case err
4056 (with-temp-buffer
4057 (setq result
4058 (apply
4059 'call-process program infile (or destination t) display args))
4060 ;; `result' could also be an error string.
4061 (when (stringp result)
4062 (setq error result
4063 result 1))
4064 (with-current-buffer
4065 (if (bufferp destination) destination (current-buffer))
4066 (setq output (buffer-string))))
4067 (error
4068 (setq error (error-message-string err)
4069 result 1)))
4070 (if (zerop (length error))
4071 (tramp-message v 6 "%d\n%s" result output)
4072 (tramp-message v 6 "%d\n%s\n%s" result output error))
4073 result))
4075 (defun tramp-call-process-region
4076 (vec start end program &optional delete buffer display &rest args)
4077 "Calls `call-process-region' on the local host.
4078 It always returns a return code. The Lisp error raised when
4079 PROGRAM is nil is trapped also, returning 1. Furthermore, traces
4080 are written with verbosity of 6."
4081 (let ((default-directory (tramp-compat-temporary-file-directory))
4082 (v (or vec
4083 (vector tramp-current-method tramp-current-user
4084 tramp-current-host nil nil)))
4085 (buffer (if (eq buffer t) (current-buffer) buffer))
4086 result)
4087 (tramp-message
4088 v 6 "`%s %s' %s %s %s %s"
4089 program (mapconcat 'identity args " ") start end delete buffer)
4090 (condition-case err
4091 (progn
4092 (setq result
4093 (apply
4094 'call-process-region
4095 start end program delete buffer display args))
4096 ;; `result' could also be an error string.
4097 (when (stringp result)
4098 (signal 'file-error (list result)))
4099 (with-current-buffer (if (bufferp buffer) buffer (current-buffer))
4100 (if (zerop result)
4101 (tramp-message v 6 "%d" result)
4102 (tramp-message v 6 "%d\n%s" result (buffer-string)))))
4103 (error
4104 (setq result 1)
4105 (tramp-message v 6 "%d\n%s" result (error-message-string err))))
4106 result))
4108 ;;;###tramp-autoload
4109 (defun tramp-read-passwd (proc &optional prompt)
4110 "Read a password from user (compat function).
4111 Consults the auth-source package.
4112 Invokes `password-read' if available, `read-passwd' else."
4113 (let* ((case-fold-search t)
4114 (key (tramp-make-tramp-file-name
4115 tramp-current-method tramp-current-user
4116 tramp-current-host ""))
4117 (pw-prompt
4118 (or prompt
4119 (with-current-buffer (process-buffer proc)
4120 (tramp-check-for-regexp proc tramp-password-prompt-regexp)
4121 (format "%s for %s " (capitalize (match-string 1)) key))))
4122 ;; We suspend the timers while reading the password.
4123 (stimers (with-timeout-suspend))
4124 auth-info auth-passwd)
4126 (unwind-protect
4127 (with-parsed-tramp-file-name key nil
4128 (prog1
4130 ;; See if auth-sources contains something useful.
4131 ;; `auth-source-user-or-password' is an obsoleted
4132 ;; function since Emacs 24.1, it has been replaced by
4133 ;; `auth-source-search'.
4134 (ignore-errors
4135 (and (tramp-get-connection-property
4136 v "first-password-request" nil)
4137 ;; Try with Tramp's current method.
4138 (if (fboundp 'auth-source-search)
4139 (setq auth-info
4140 (auth-source-search
4141 :max 1
4142 :user (or tramp-current-user t)
4143 :host tramp-current-host
4144 :port tramp-current-method)
4145 auth-passwd (plist-get
4146 (nth 0 auth-info) :secret)
4147 auth-passwd (if (functionp auth-passwd)
4148 (funcall auth-passwd)
4149 auth-passwd))
4150 (tramp-compat-funcall 'auth-source-user-or-password
4151 "password" tramp-current-host tramp-current-method))))
4152 ;; Try the password cache.
4153 (let ((password (password-read pw-prompt key)))
4154 (password-cache-add key password)
4155 password)
4156 ;; Else, get the password interactively.
4157 (read-passwd pw-prompt))
4158 (tramp-set-connection-property v "first-password-request" nil)))
4159 ;; Reenable the timers.
4160 (with-timeout-unsuspend stimers))))
4162 ;;;###tramp-autoload
4163 (defun tramp-clear-passwd (vec)
4164 "Clear password cache for connection related to VEC."
4165 (let ((hop (tramp-file-name-hop vec)))
4166 (when hop
4167 ;; Clear also the passwords of the hops.
4168 (tramp-clear-passwd
4169 (tramp-dissect-file-name
4170 (concat
4171 tramp-prefix-format
4172 (replace-regexp-in-string
4173 (concat tramp-postfix-hop-regexp "$")
4174 tramp-postfix-host-format hop))))))
4175 (password-cache-remove
4176 (tramp-make-tramp-file-name
4177 (tramp-file-name-method vec)
4178 (tramp-file-name-user vec)
4179 (tramp-file-name-host vec)
4180 "")))
4182 ;; Snarfed code from time-date.el and parse-time.el
4184 (defconst tramp-half-a-year '(241 17024)
4185 "Evaluated by \"(days-to-time 183)\".")
4187 (defconst tramp-parse-time-months
4188 '(("jan" . 1) ("feb" . 2) ("mar" . 3)
4189 ("apr" . 4) ("may" . 5) ("jun" . 6)
4190 ("jul" . 7) ("aug" . 8) ("sep" . 9)
4191 ("oct" . 10) ("nov" . 11) ("dec" . 12))
4192 "Alist mapping month names to integers.")
4194 ;;;###tramp-autoload
4195 (defun tramp-time-diff (t1 t2)
4196 "Return the difference between the two times, in seconds.
4197 T1 and T2 are time values (as returned by `current-time' for example)."
4198 ;; Starting with Emacs 25.1, we could change this to use `time-subtract'.
4199 (float-time (tramp-compat-funcall 'subtract-time t1 t2)))
4201 ;; Currently (as of Emacs 20.5), the function `shell-quote-argument'
4202 ;; does not deal well with newline characters. Newline is replaced by
4203 ;; backslash newline. But if, say, the string `a backslash newline b'
4204 ;; is passed to a shell, the shell will expand this into "ab",
4205 ;; completely omitting the newline. This is not what was intended.
4206 ;; It does not appear to be possible to make the function
4207 ;; `shell-quote-argument' work with newlines without making it
4208 ;; dependent on the shell used. But within this package, we know that
4209 ;; we will always use a Bourne-like shell, so we use an approach which
4210 ;; groks newlines.
4212 ;; The approach is simple: we call `shell-quote-argument', then
4213 ;; massage the newline part of the result.
4215 ;; This function should produce a string which is grokked by a Unix
4216 ;; shell, even if the Emacs is running on Windows. Since this is the
4217 ;; kludges section, we bind `system-type' in such a way that
4218 ;; `shell-quote-argument' behaves as if on Unix.
4220 ;; Thanks to Mario DeWeerd for the hint that it is sufficient for this
4221 ;; function to work with Bourne-like shells.
4223 ;; CCC: This function should be rewritten so that
4224 ;; `shell-quote-argument' is not used. This way, we are safe from
4225 ;; changes in `shell-quote-argument'.
4226 ;;;###tramp-autoload
4227 (defun tramp-shell-quote-argument (s)
4228 "Similar to `shell-quote-argument', but groks newlines.
4229 Only works for Bourne-like shells."
4230 (let ((system-type 'not-windows))
4231 (save-match-data
4232 (let ((result (shell-quote-argument s))
4233 (nl (regexp-quote (format "\\%s" tramp-rsh-end-of-line))))
4234 (when (and (>= (length result) 2)
4235 (string= (substring result 0 2) "\\~"))
4236 (setq result (substring result 1)))
4237 (while (string-match nl result)
4238 (setq result (replace-match (format "'%s'" tramp-rsh-end-of-line)
4239 t t result)))
4240 result))))
4242 ;;; Integration of eshell.el:
4244 ;; eshell.el keeps the path in `eshell-path-env'. We must change it
4245 ;; when `default-directory' points to another host.
4246 (defun tramp-eshell-directory-change ()
4247 "Set `eshell-path-env' to $PATH of the host related to `default-directory'."
4248 (setq eshell-path-env
4249 (if (tramp-tramp-file-p default-directory)
4250 (with-parsed-tramp-file-name default-directory nil
4251 (mapconcat
4252 'identity
4254 ;; When `tramp-own-remote-path' is in `tramp-remote-path',
4255 ;; the remote path is only set in the session cache.
4256 (tramp-get-connection-property
4257 (tramp-get-connection-process v) "remote-path" nil)
4258 (tramp-get-connection-property v "remote-path" nil))
4259 ":"))
4260 (getenv "PATH"))))
4262 (eval-after-load "esh-util"
4263 '(progn
4264 (tramp-eshell-directory-change)
4265 (add-hook 'eshell-directory-change-hook
4266 'tramp-eshell-directory-change)
4267 (add-hook 'tramp-unload-hook
4268 (lambda ()
4269 (remove-hook 'eshell-directory-change-hook
4270 'tramp-eshell-directory-change)))))
4272 ;; Checklist for `tramp-unload-hook'
4273 ;; - Unload all `tramp-*' packages
4274 ;; - Reset `file-name-handler-alist'
4275 ;; - Cleanup hooks where Tramp functions are in
4276 ;; - Cleanup advised functions
4277 ;; - Cleanup autoloads
4278 ;;;###autoload
4279 (defun tramp-unload-tramp ()
4280 "Discard Tramp from loading remote files."
4281 (interactive)
4282 ;; ange-ftp settings must be enabled.
4283 (tramp-compat-funcall 'tramp-ftp-enable-ange-ftp)
4284 ;; Maybe it's not loaded yet.
4285 (ignore-errors (unload-feature 'tramp 'force)))
4287 (provide 'tramp)
4289 ;;; TODO:
4291 ;; * In Emacs 21, `insert-directory' shows total number of bytes used
4292 ;; by the files in that directory. Add this here.
4293 ;; * Avoid screen blanking when hitting `g' in dired. (Eli Tziperman)
4294 ;; * Better error checking. At least whenever we see something
4295 ;; strange when doing zerop, we should kill the process and start
4296 ;; again. (Greg Stark)
4297 ;; * Username and hostname completion.
4298 ;; ** Try to avoid usage of `last-input-event' in `tramp-completion-mode-p'.
4299 ;; * Make `tramp-default-user' obsolete.
4300 ;; * Implement a general server-local-variable mechanism, as there are
4301 ;; probably other variables that need different values for different
4302 ;; servers too. The user could then configure a variable (such as
4303 ;; tramp-server-local-variable-alist) to define any such variables
4304 ;; that they need to, which would then be let bound as appropriate
4305 ;; in tramp functions. (Jason Rumney)
4306 ;; * Make shadowfile.el grok Tramp filenames. (Bug#4526, Bug#4846)
4307 ;; * I was wondering if it would be possible to use tramp even if I'm
4308 ;; actually using sshfs. But when I launch a command I would like
4309 ;; to get it executed on the remote machine where the files really
4310 ;; are. (Andrea Crotti)
4311 ;; * Run emerge on two remote files. Bug is described here:
4312 ;; <http://www.mail-archive.com/tramp-devel@nongnu.org/msg01041.html>.
4313 ;; (Bug#6850)
4314 ;; * Use also port to distinguish connections. This is needed for
4315 ;; different hosts sitting behind a single router (distinguished by
4316 ;; different port numbers). (Tzvi Edelman)
4318 ;;; tramp.el ends here
4320 ;; Local Variables:
4321 ;; mode: Emacs-Lisp
4322 ;; coding: utf-8
4323 ;; End: