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