1 ;;; tramp.el --- Transparent Remote Access, Multiple Protocol
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
6 ;; (copyright statements below in code to be updated with the above notice)
8 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
9 ;; Michael Albinus <michael.albinus@gmx.de>
10 ;; Keywords: comm, processes
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 ;; This package provides remote file editing, similar to ange-ftp.
30 ;; The difference is that ange-ftp uses FTP to transfer files between
31 ;; the local and the remote host, whereas tramp.el uses a combination
32 ;; of rsh and rcp or other work-alike programs, such as ssh/scp.
34 ;; For more detailed instructions, please see the info file.
39 ;; This package only works for Emacs 22.1 and higher, and for XEmacs 21.4
40 ;; and higher. For XEmacs 21, you need the package `fsf-compat' for
41 ;; the `with-timeout' macro.
43 ;; Also see the todo list at the bottom of this file.
45 ;; The current version of Tramp can be retrieved from the following URL:
46 ;; http://ftp.gnu.org/gnu/tramp/
48 ;; There's a mailing list for this, as well. Its name is:
49 ;; tramp-devel@gnu.org
50 ;; You can use the Web to subscribe, under the following URL:
51 ;; http://lists.gnu.org/mailman/listinfo/tramp-devel
53 ;; For the adventurous, the current development sources are available
54 ;; via CVS. You can find instructions about this at the following URL:
55 ;; http://savannah.gnu.org/projects/tramp/
56 ;; Click on "CVS" in the navigation bar near the top.
58 ;; Don't forget to put on your asbestos longjohns, first!
62 ;; Since Emacs 23.1, loading messages have been disabled during
63 ;; autoload. However, loading Tramp takes a while, and it could
64 ;; happen while typing a filename in the minibuffer. Therefore, Tramp
65 ;; shall inform about.
66 (when (and load-in-progress
(null (current-message)))
67 (message "Loading tramp..."))
69 ;; The Tramp version number and bug report address, as prepared by configure.
71 (add-hook 'tramp-unload-hook
73 (when (featurep 'trampver
)
74 (unload-feature 'trampver
'force
))))
76 (require 'tramp-compat
)
77 (add-hook 'tramp-unload-hook
79 (when (featurep 'tramp-compat
)
80 (unload-feature 'tramp-compat
'force
))))
82 (require 'format-spec
)
83 ;; As long as password.el is not part of (X)Emacs, it shouldn't
85 (if (featurep 'xemacs
)
86 (load "password" 'noerror
)
87 (or (require 'password-cache nil
'noerror
)
88 (require 'password nil
'noerror
))) ; from No Gnus, also in tar ball
94 (if (featurep 'xemacs
)
95 (load "auth-source" 'noerror
)
96 (require 'auth-source nil
'noerror
)))
98 ;; Requiring 'tramp-cache results in an endless loop.
99 (autoload 'tramp-get-file-property
"tramp-cache")
100 (autoload 'tramp-set-file-property
"tramp-cache")
101 (autoload 'tramp-flush-file-property
"tramp-cache")
102 (autoload 'tramp-flush-directory-property
"tramp-cache")
103 (autoload 'tramp-get-connection-property
"tramp-cache")
104 (autoload 'tramp-set-connection-property
"tramp-cache")
105 (autoload 'tramp-flush-connection-property
"tramp-cache")
106 (autoload 'tramp-parse-connection-properties
"tramp-cache")
107 (add-hook 'tramp-unload-hook
109 (when (featurep 'tramp-cache
)
110 (unload-feature 'tramp-cache
'force
))))
112 (autoload 'tramp-uuencode-region
"tramp-uu"
113 "Implementation of `uuencode' in Lisp.")
114 (add-hook 'tramp-unload-hook
116 (when (featurep 'tramp-uu
)
117 (unload-feature 'tramp-uu
'force
))))
119 (autoload 'uudecode-decode-region
"uudecode")
121 ;; The following Tramp packages must be loaded after tramp.el, because
122 ;; they require it as well.
123 (eval-after-load "tramp"
128 ;; Tramp interactive commands.
131 ;; Load foreign FTP method.
132 (if (featurep 'xemacs
) 'tramp-efs
'tramp-ftp
)
134 ;; tramp-smb uses "smbclient" from Samba. Not available
135 ;; under Cygwin and Windows, because they don't offer
136 ;; "smbclient". And even not necessary there, because Emacs
137 ;; supports UNC file names like "//host/share/localname".
138 (unless (memq system-type
'(cygwin windows-nt
)) 'tramp-smb
)
140 ;; Load foreign FISH method.
143 ;; tramp-gvfs needs D-Bus messages. Available since Emacs 23
144 ;; on some system types. We don't call `dbus-ping', because
145 ;; this would load dbus.el.
146 (when (and (featurep 'dbusbind
)
148 (tramp-compat-funcall 'dbus-get-unique-name
:session
)
150 (tramp-compat-process-running-p "gvfs-fuse-daemon"))
153 ;; Load gateways. It needs `make-network-process' from Emacs 22.
154 (when (functionp 'make-network-process
) 'tramp-gw
)
156 ;; tramp-imap needs both epa (from Emacs 23.1) and imap-hash
157 ;; (from Emacs 23.2).
158 (when (and (locate-library "epa") (locate-library "imap-hash"))
162 ;; We have used just some basic tests, whether a package shall
163 ;; be added. There might still be other errors during loading,
164 ;; which we will catch here.
165 (catch 'tramp-loading
167 (add-hook 'tramp-unload-hook
169 (when (featurep (quote ,feature
))
170 (unload-feature (quote ,feature
) 'force
)))))
171 (unless (featurep feature
)
172 (message "Loading %s failed, ignoring this package" feature
)))))
174 ;;; User Customizable Internal Variables:
177 "Edit remote files with a combination of rsh and rcp or similar programs."
182 ;; Maybe we need once a real Tramp mode, with key bindings etc.
184 (defcustom tramp-mode t
185 "*Whether Tramp is enabled.
186 If it is set to nil, all remote file names are used literally."
190 (defcustom tramp-verbose
3
191 "*Verbosity level for Tramp messages.
192 Any level x includes messages for all levels 1 .. x-1. The levels are
194 0 silent (no tramp messages at all)
197 3 connection to remote hosts (default level)
200 6 sent and received strings
202 8 connection properties
210 (when (boundp 'backup-directory-alist
)
211 (defcustom tramp-backup-directory-alist nil
212 "Alist of filename patterns and backup directory names.
213 Each element looks like (REGEXP . DIRECTORY), with the same meaning like
214 in `backup-directory-alist'. If a Tramp file is backed up, and DIRECTORY
215 is a local file name, the backup directory is prepended with Tramp file
216 name prefix \(method, user, host\) of file.
218 \(setq tramp-backup-directory-alist backup-directory-alist\)
220 gives the same backup policy for Tramp files on their hosts like the
221 policy for local files."
223 :type
'(repeat (cons (regexp :tag
"Regexp matching filename")
224 (directory :tag
"Backup directory name"))))))
226 ;; XEmacs case. We cannot check for `bkup-backup-directory-info', because
227 ;; the package "backup-dir" might not be loaded yet.
229 (when (featurep 'xemacs
)
230 (defcustom tramp-bkup-backup-directory-info nil
231 "*Alist of (FILE-REGEXP BACKUP-DIR OPTIONS ...))
232 It has the same meaning like `bkup-backup-directory-info' from package
233 `backup-dir'. If a Tramp file is backed up, and BACKUP-DIR is a local
234 file name, the backup directory is prepended with Tramp file name prefix
235 \(method, user, host\) of file.
237 \(setq tramp-bkup-backup-directory-info bkup-backup-directory-info\)
239 gives the same backup policy for Tramp files on their hosts like the
240 policy for local files."
242 (list (regexp :tag
"File regexp")
243 (string :tag
"Backup Dir")
248 (const search-upward
))))
251 (defcustom tramp-auto-save-directory nil
252 "*Put auto-save files in this directory, if set.
253 The idea is to use a local directory so that auto-saving is faster."
255 :type
'(choice (const nil
) string
))
257 (defcustom tramp-encoding-shell
258 (if (memq system-type
'(windows-nt))
261 "*Use this program for encoding and decoding commands on the local host.
262 This shell is used to execute the encoding and decoding command on the
263 local host, so if you want to use `~' in those commands, you should
264 choose a shell here which groks tilde expansion. `/bin/sh' normally
265 does not understand tilde expansion.
267 For encoding and deocding, commands like the following are executed:
269 /bin/sh -c COMMAND < INPUT > OUTPUT
271 This variable can be used to change the \"/bin/sh\" part. See the
272 variable `tramp-encoding-command-switch' for the \"-c\" part.
274 Note that this variable is not used for remote commands. There are
275 mechanisms in tramp.el which automatically determine the right shell to
276 use for the remote host."
278 :type
'(file :must-match t
))
280 (defcustom tramp-encoding-command-switch
281 (if (string-match "cmd\\.exe" tramp-encoding-shell
)
284 "*Use this switch together with `tramp-encoding-shell' for local commands.
285 See the variable `tramp-encoding-shell' for more information."
289 (defcustom tramp-inline-compress-start-size
4096
290 "*The minimum size of compressing where inline transfer.
291 When inline transfer, compress transfered data of file
292 whose size is this value or above (up to `tramp-copy-size-limit').
293 If it is nil, no compression at all will be applied."
295 :type
'(choice (const nil
) integer
))
297 (defcustom tramp-copy-size-limit
10240
298 "*The maximum file size where inline copying is preferred over an out-of-the-band copy.
299 If it is nil, inline out-of-the-band copy will be used without a check."
301 :type
'(choice (const nil
) integer
))
303 (defcustom tramp-terminal-type
"dumb"
304 "*Value of TERM environment variable for logging in to remote host.
305 Because Tramp wants to parse the output of the remote shell, it is easily
306 confused by ANSI color escape sequences and suchlike. Often, shell init
307 files conditionalize this setup based on the TERM environment variable."
311 ;; ksh on OpenBSD 4.5 requires, that PS1 contains a `#' character for
312 ;; root users. It uses the `$' character for other users. In order
313 ;; to guarantee a proper prompt, we use "#$" for the prompt.
315 (defvar tramp-end-of-output
318 (md5 (concat (prin1-to-string process-environment
) (current-time-string))))
319 "String used to recognize end of output.
320 The '$' character at the end is quoted; the string cannot be
321 detected as prompt when being sent on echoing hosts, therefore.")
323 (defconst tramp-initial-end-of-output
"#$ "
324 "Prompt when establishing a connection.")
326 (defvar tramp-methods
327 `(("rcp" (tramp-login-program "rsh")
328 (tramp-login-args (("%h") ("-l" "%u")))
329 (tramp-remote-sh "/bin/sh")
330 (tramp-copy-program "rcp")
331 (tramp-copy-args (("-p" "%k") ("-r")))
332 (tramp-copy-keep-date t
)
333 (tramp-copy-recursive t
)
334 (tramp-password-end-of-line nil
))
335 ("scp" (tramp-login-program "ssh")
336 (tramp-login-args (("-l" "%u") ("-p" "%p")
337 ("-e" "none") ("%h")))
338 (tramp-async-args (("-q")))
339 (tramp-remote-sh "/bin/sh")
340 (tramp-copy-program "scp")
341 (tramp-copy-args (("-P" "%p") ("-p" "%k")
343 (tramp-copy-keep-date t
)
344 (tramp-copy-recursive t
)
345 (tramp-password-end-of-line nil
)
346 (tramp-gw-args (("-o"
347 "GlobalKnownHostsFile=/dev/null")
348 ("-o" "UserKnownHostsFile=/dev/null")
349 ("-o" "StrictHostKeyChecking=no")))
350 (tramp-default-port 22))
351 ("scp1" (tramp-login-program "ssh")
352 (tramp-login-args (("-l" "%u") ("-p" "%p")
353 ("-1") ("-e" "none") ("%h")))
354 (tramp-async-args (("-q")))
355 (tramp-remote-sh "/bin/sh")
356 (tramp-copy-program "scp")
357 (tramp-copy-args (("-1") ("-P" "%p") ("-p" "%k")
359 (tramp-copy-keep-date t
)
360 (tramp-copy-recursive t
)
361 (tramp-password-end-of-line nil
)
362 (tramp-gw-args (("-o"
363 "GlobalKnownHostsFile=/dev/null")
364 ("-o" "UserKnownHostsFile=/dev/null")
365 ("-o" "StrictHostKeyChecking=no")))
366 (tramp-default-port 22))
367 ("scp2" (tramp-login-program "ssh")
368 (tramp-login-args (("-l" "%u") ("-p" "%p")
369 ("-2") ("-e" "none") ("%h")))
370 (tramp-async-args (("-q")))
371 (tramp-remote-sh "/bin/sh")
372 (tramp-copy-program "scp")
373 (tramp-copy-args (("-2") ("-P" "%p") ("-p" "%k")
375 (tramp-copy-keep-date t
)
376 (tramp-copy-recursive t
)
377 (tramp-password-end-of-line nil
)
378 (tramp-gw-args (("-o"
379 "GlobalKnownHostsFile=/dev/null")
380 ("-o" "UserKnownHostsFile=/dev/null")
381 ("-o" "StrictHostKeyChecking=no")))
382 (tramp-default-port 22))
384 (tramp-login-program "ssh1")
385 (tramp-login-args (("%h") ("-l" "%u") ("-p" "%p")
387 (tramp-remote-sh "/bin/sh")
388 (tramp-copy-program "scp1")
389 (tramp-copy-args (("-p" "%k") ("-r")))
390 (tramp-copy-keep-date t
)
391 (tramp-copy-recursive t
)
392 (tramp-password-end-of-line nil
))
394 (tramp-login-program "ssh2")
395 (tramp-login-args (("%h") ("-l" "%u") ("-p" "%p")
397 (tramp-remote-sh "/bin/sh")
398 (tramp-copy-program "scp2")
399 (tramp-copy-args (("-p" "%k") ("-r")))
400 (tramp-copy-keep-date t
)
401 (tramp-copy-recursive t
)
402 (tramp-password-end-of-line nil
))
403 ("sftp" (tramp-login-program "ssh")
404 (tramp-login-args (("-l" "%u") ("-p" "%p")
405 ("-e" "none") ("%h")))
406 (tramp-async-args (("-q")))
407 (tramp-remote-sh "/bin/sh")
408 (tramp-copy-program "sftp")
409 (tramp-copy-args nil
)
410 (tramp-copy-keep-date nil
)
411 (tramp-password-end-of-line nil
))
412 ("rsync" (tramp-login-program "ssh")
413 (tramp-login-args (("-l" "%u") ("-p" "%p")
414 ("-e" "none") ("%h")))
415 (tramp-async-args (("-q")))
416 (tramp-remote-sh "/bin/sh")
417 (tramp-copy-program "rsync")
418 (tramp-copy-args (("-e" "ssh") ("-t" "%k") ("-r")))
419 (tramp-copy-keep-date t
)
420 (tramp-copy-keep-tmpfile t
)
421 (tramp-copy-recursive t
)
422 (tramp-password-end-of-line nil
))
424 (tramp-login-program "ssh")
425 (tramp-login-args (("-l" "%u") ("-p" "%p")
426 ("-o" "ControlPath=%t.%%r@%%h:%%p")
427 ("-o" "ControlMaster=yes")
428 ("-e" "none") ("%h")))
429 (tramp-async-args (("-q")))
430 (tramp-remote-sh "/bin/sh")
431 (tramp-copy-program "rsync")
432 (tramp-copy-args (("-t" "%k") ("-r")))
433 (tramp-copy-env (("RSYNC_RSH")
436 " -o ControlPath=%t.%%r@%%h:%%p"
437 " -o ControlMaster=auto"))))
438 (tramp-copy-keep-date t
)
439 (tramp-copy-keep-tmpfile t
)
440 (tramp-copy-recursive t
)
441 (tramp-password-end-of-line nil
))
442 ("remcp" (tramp-login-program "remsh")
443 (tramp-login-args (("%h") ("-l" "%u")))
444 (tramp-remote-sh "/bin/sh")
445 (tramp-copy-program "rcp")
446 (tramp-copy-args (("-p" "%k")))
447 (tramp-copy-keep-date t
)
448 (tramp-password-end-of-line nil
))
449 ("rsh" (tramp-login-program "rsh")
450 (tramp-login-args (("%h") ("-l" "%u")))
451 (tramp-remote-sh "/bin/sh")
452 (tramp-copy-program nil
)
453 (tramp-copy-args nil
)
454 (tramp-copy-keep-date nil
)
455 (tramp-password-end-of-line nil
))
456 ("ssh" (tramp-login-program "ssh")
457 (tramp-login-args (("-l" "%u") ("-p" "%p")
458 ("-e" "none") ("%h")))
459 (tramp-async-args (("-q")))
460 (tramp-remote-sh "/bin/sh")
461 (tramp-copy-program nil
)
462 (tramp-copy-args nil
)
463 (tramp-copy-keep-date nil
)
464 (tramp-password-end-of-line nil
)
465 (tramp-gw-args (("-o"
466 "GlobalKnownHostsFile=/dev/null")
467 ("-o" "UserKnownHostsFile=/dev/null")
468 ("-o" "StrictHostKeyChecking=no")))
469 (tramp-default-port 22))
470 ("ssh1" (tramp-login-program "ssh")
471 (tramp-login-args (("-l" "%u") ("-p" "%p")
472 ("-1") ("-e" "none") ("%h")))
473 (tramp-async-args (("-q")))
474 (tramp-remote-sh "/bin/sh")
475 (tramp-copy-program nil
)
476 (tramp-copy-args nil
)
477 (tramp-copy-keep-date nil
)
478 (tramp-password-end-of-line nil
)
479 (tramp-gw-args (("-o"
480 "GlobalKnownHostsFile=/dev/null")
481 ("-o" "UserKnownHostsFile=/dev/null")
482 ("-o" "StrictHostKeyChecking=no")))
483 (tramp-default-port 22))
484 ("ssh2" (tramp-login-program "ssh")
485 (tramp-login-args (("-l" "%u") ("-p" "%p")
486 ("-2") ("-e" "none") ("%h")))
487 (tramp-async-args (("-q")))
488 (tramp-remote-sh "/bin/sh")
489 (tramp-copy-program nil
)
490 (tramp-copy-args nil
)
491 (tramp-copy-keep-date nil
)
492 (tramp-password-end-of-line nil
)
493 (tramp-gw-args (("-o"
494 "GlobalKnownHostsFile=/dev/null")
495 ("-o" "UserKnownHostsFile=/dev/null")
496 ("-o" "StrictHostKeyChecking=no")))
497 (tramp-default-port 22))
499 (tramp-login-program "ssh1")
500 (tramp-login-args (("%h") ("-l" "%u") ("-p" "%p")
502 (tramp-async-args (("-q")))
503 (tramp-remote-sh "/bin/sh")
504 (tramp-copy-program nil
)
505 (tramp-copy-args nil
)
506 (tramp-copy-keep-date nil
)
507 (tramp-password-end-of-line nil
))
509 (tramp-login-program "ssh2")
510 (tramp-login-args (("%h") ("-l" "%u") ("-p" "%p")
512 (tramp-remote-sh "/bin/sh")
513 (tramp-copy-program nil
)
514 (tramp-copy-args nil
)
515 (tramp-copy-keep-date nil
)
516 (tramp-password-end-of-line nil
))
517 ("remsh" (tramp-login-program "remsh")
518 (tramp-login-args (("%h") ("-l" "%u")))
519 (tramp-remote-sh "/bin/sh")
520 (tramp-copy-program nil
)
521 (tramp-copy-args nil
)
522 (tramp-copy-keep-date nil
)
523 (tramp-password-end-of-line nil
))
525 (tramp-login-program "telnet")
526 (tramp-login-args (("%h") ("%p")))
527 (tramp-remote-sh "/bin/sh")
528 (tramp-copy-program nil
)
529 (tramp-copy-args nil
)
530 (tramp-copy-keep-date nil
)
531 (tramp-password-end-of-line nil
)
532 (tramp-default-port 23))
533 ("su" (tramp-login-program "su")
534 (tramp-login-args (("-") ("%u")))
535 (tramp-remote-sh "/bin/sh")
536 (tramp-copy-program nil
)
537 (tramp-copy-args nil
)
538 (tramp-copy-keep-date nil
)
539 (tramp-password-end-of-line nil
))
540 ("sudo" (tramp-login-program "sudo")
541 (tramp-login-args (("-u" "%u")
542 ("-s") ("-H") ("-p" "Password:")))
543 (tramp-remote-sh "/bin/sh")
544 (tramp-copy-program nil
)
545 (tramp-copy-args nil
)
546 (tramp-copy-keep-date nil
)
547 (tramp-password-end-of-line nil
))
548 ("scpc" (tramp-login-program "ssh")
549 (tramp-login-args (("-l" "%u") ("-p" "%p")
550 ("-o" "ControlPath=%t.%%r@%%h:%%p")
551 ("-o" "ControlMaster=yes")
552 ("-e" "none") ("%h")))
553 (tramp-async-args (("-q")))
554 (tramp-remote-sh "/bin/sh")
555 (tramp-copy-program "scp")
556 (tramp-copy-args (("-P" "%p") ("-p" "%k") ("-q") ("-r")
557 ("-o" "ControlPath=%t.%%r@%%h:%%p")
558 ("-o" "ControlMaster=auto")))
559 (tramp-copy-keep-date t
)
560 (tramp-copy-recursive t
)
561 (tramp-password-end-of-line nil
)
562 (tramp-gw-args (("-o"
563 "GlobalKnownHostsFile=/dev/null")
564 ("-o" "UserKnownHostsFile=/dev/null")
565 ("-o" "StrictHostKeyChecking=no")))
566 (tramp-default-port 22))
567 ("scpx" (tramp-login-program "ssh")
568 (tramp-login-args (("-l" "%u") ("-p" "%p")
569 ("-e" "none") ("-t" "-t")
571 (tramp-async-args (("-q")))
572 (tramp-remote-sh "/bin/sh")
573 (tramp-copy-program "scp")
574 (tramp-copy-args (("-P" "%p") ("-p" "%k")
576 (tramp-copy-keep-date t
)
577 (tramp-copy-recursive t
)
578 (tramp-password-end-of-line nil
)
579 (tramp-gw-args (("-o"
580 "GlobalKnownHostsFile=/dev/null")
581 ("-o" "UserKnownHostsFile=/dev/null")
582 ("-o" "StrictHostKeyChecking=no")))
583 (tramp-default-port 22))
584 ("sshx" (tramp-login-program "ssh")
585 (tramp-login-args (("-l" "%u") ("-p" "%p")
586 ("-e" "none") ("-t" "-t")
588 (tramp-async-args (("-q")))
589 (tramp-remote-sh "/bin/sh")
590 (tramp-copy-program nil
)
591 (tramp-copy-args nil
)
592 (tramp-copy-keep-date nil
)
593 (tramp-password-end-of-line nil
)
594 (tramp-gw-args (("-o"
595 "GlobalKnownHostsFile=/dev/null")
596 ("-o" "UserKnownHostsFile=/dev/null")
597 ("-o" "StrictHostKeyChecking=no")))
598 (tramp-default-port 22))
600 (tramp-login-program "krlogin")
601 (tramp-login-args (("%h") ("-l" "%u") ("-x")))
602 (tramp-remote-sh "/bin/sh")
603 (tramp-copy-program nil
)
604 (tramp-copy-args nil
)
605 (tramp-copy-keep-date nil
)
606 (tramp-password-end-of-line nil
))
607 ("plink" (tramp-login-program "plink")
608 (tramp-login-args (("-l" "%u") ("-P" "%p")
610 (tramp-remote-sh "/bin/sh")
611 (tramp-copy-program nil
)
612 (tramp-copy-args nil
)
613 (tramp-copy-keep-date nil
)
614 (tramp-password-end-of-line "xy") ;see docstring for "xy"
615 (tramp-default-port 22))
617 (tramp-login-program "plink")
618 (tramp-login-args (("-l" "%u") ("-P" "%p")
619 ("-1" "-ssh") ("%h")))
620 (tramp-remote-sh "/bin/sh")
621 (tramp-copy-program nil
)
622 (tramp-copy-args nil
)
623 (tramp-copy-keep-date nil
)
624 (tramp-password-end-of-line "xy") ;see docstring for "xy"
625 (tramp-default-port 22))
627 (tramp-login-program "plink")
628 ;; ("%h") must be a single element, see
629 ;; `tramp-compute-multi-hops'.
630 (tramp-login-args (("-load") ("%h") ("-t")
632 "env 'TERM=%s' 'PROMPT_COMMAND=' 'PS1=%s'"
634 tramp-initial-end-of-output
))
636 (tramp-remote-sh "/bin/sh")
637 (tramp-copy-program nil
)
638 (tramp-copy-args nil
)
639 (tramp-copy-keep-date nil
)
640 (tramp-password-end-of-line nil
))
641 ("pscp" (tramp-login-program "plink")
642 (tramp-login-args (("-l" "%u") ("-P" "%p")
644 (tramp-remote-sh "/bin/sh")
645 (tramp-copy-program "pscp")
646 (tramp-copy-args (("-P" "%p") ("-scp") ("-p" "%k")
648 (tramp-copy-keep-date t
)
649 (tramp-copy-recursive t
)
650 (tramp-password-end-of-line "xy") ;see docstring for "xy"
651 (tramp-default-port 22))
652 ("psftp" (tramp-login-program "plink")
653 (tramp-login-args (("-l" "%u") ("-P" "%p")
655 (tramp-remote-sh "/bin/sh")
656 (tramp-copy-program "pscp")
657 (tramp-copy-args (("-P" "%p") ("-sftp") ("-p" "%k")
659 (tramp-copy-keep-date t
)
660 (tramp-copy-recursive t
)
661 (tramp-password-end-of-line "xy")) ;see docstring for "xy"
662 ("fcp" (tramp-login-program "fsh")
663 (tramp-login-args (("%h") ("-l" "%u") ("sh" "-i")))
664 (tramp-remote-sh "/bin/sh -i")
665 (tramp-copy-program "fcp")
666 (tramp-copy-args (("-p" "%k")))
667 (tramp-copy-keep-date t
)
668 (tramp-password-end-of-line nil
)))
669 "*Alist of methods for remote files.
670 This is a list of entries of the form (NAME PARAM1 PARAM2 ...).
671 Each NAME stands for a remote access method. Each PARAM is a
672 pair of the form (KEY VALUE). The following KEYs are defined:
674 This specifies the Bourne shell to use on the remote host. This
675 MUST be a Bourne-like shell. It is normally not necessary to set
676 this to any value other than \"/bin/sh\": Tramp wants to use a shell
677 which groks tilde expansion, but it can search for it. Also note
678 that \"/bin/sh\" exists on all Unixen, this might not be true for
679 the value that you decide to use. You Have Been Warned.
680 * `tramp-login-program'
681 This specifies the name of the program to use for logging in to the
682 remote host. This may be the name of rsh or a workalike program,
683 or the name of telnet or a workalike, or the name of su or a workalike.
685 This specifies the list of arguments to pass to the above
686 mentioned program. Please note that this is a list of list of arguments,
687 that is, normally you don't want to put \"-a -b\" or \"-f foo\"
688 here. Instead, you want a list (\"-a\" \"-b\"), or (\"-f\" \"foo\").
689 There are some patterns: \"%h\" in this list is replaced by the host
690 name, \"%u\" is replaced by the user name, \"%p\" is replaced by the
691 port number, and \"%%\" can be used to obtain a literal percent character.
692 If a list containing \"%h\", \"%u\" or \"%p\" is unchanged during
693 expansion (i.e. no host or no user specified), this list is not used as
694 argument. By this, arguments like (\"-l\" \"%u\") are optional.
695 \"%t\" is replaced by the temporary file name produced with
696 `tramp-make-tramp-temp-file'. \"%k\" indicates the keep-date
697 parameter of a program, if exists.
699 When an asynchronous process is started, we know already that
700 the connection works. Therefore, we can pass additional
701 parameters to suppress diagnostic messages, in order not to
702 tamper the process output.
703 * `tramp-copy-program'
704 This specifies the name of the program to use for remotely copying
705 the file; this might be the absolute filename of rcp or the name of
708 This specifies the list of parameters to pass to the above mentioned
709 program, the hints for `tramp-login-args' also apply here.
710 * `tramp-copy-keep-date'
711 This specifies whether the copying program when the preserves the
712 timestamp of the original file.
713 * `tramp-copy-keep-tmpfile'
714 This specifies whether a temporary local file shall be kept
715 for optimization reasons (useful for \"rsync\" methods).
716 * `tramp-copy-recursive'
717 Whether the operation copies directories recursively.
718 * `tramp-default-port'
719 The default port of a method is needed in case of gateway connections.
720 Additionally, it is used as indication which method is prepared for
723 As the attribute name says, additional arguments are specified here
724 when a method is applied via a gateway.
725 * `tramp-password-end-of-line'
726 This specifies the string to use for terminating the line after
727 submitting the password. If this method parameter is nil, then the
728 value of the normal variable `tramp-default-password-end-of-line'
729 is used. This parameter is necessary because the \"plink\" program
730 requires any two characters after sending the password. These do
731 not have to be newline or carriage return characters. Other login
732 programs are happy with just one character, the newline character.
733 We use \"xy\" as the value for methods using \"plink\".
735 What does all this mean? Well, you should specify `tramp-login-program'
736 for all methods; this program is used to log in to the remote site. Then,
737 there are two ways to actually transfer the files between the local and the
738 remote side. One way is using an additional rcp-like program. If you want
739 to do this, set `tramp-copy-program' in the method.
741 Another possibility for file transfer is inline transfer, i.e. the
742 file is passed through the same buffer used by `tramp-login-program'. In
743 this case, the file contents need to be protected since the
744 `tramp-login-program' might use escape codes or the connection might not
745 be eight-bit clean. Therefore, file contents are encoded for transit.
746 See the variables `tramp-local-coding-commands' and
747 `tramp-remote-coding-commands' for details.
749 So, to summarize: if the method is an out-of-band method, then you
750 must specify `tramp-copy-program' and `tramp-copy-args'. If it is an
751 inline method, then these two parameters should be nil. Methods which
752 are fit for gateways must have `tramp-default-port' at least.
756 When using `su' or `sudo' the phrase `open connection to a remote
757 host' sounds strange, but it is used nevertheless, for consistency.
758 No connection is opened to a remote host, but `su' or `sudo' is
759 started on the local host. You should specify a remote host
760 `localhost' or the name of the local host. Another host name is
761 useful only in combination with `tramp-default-proxies-alist'.")
763 (defun tramp-detect-ssh-controlmaster ()
764 "Call ssh to detect whether it supports the ControlMaster argument.
765 This function may return nil when the argument is supported, but
766 shouldn't return t when it isn't."
769 (call-process "ssh" nil t nil
"-o" "ControlMaster")
770 (goto-char (point-min))
771 (search-forward-regexp "Missing ControlMaster argument" nil t
))))
773 (defcustom tramp-default-method
774 ;; An external copy method seems to be preferred, because it is much
775 ;; more performant for large files, and it hasn't too serious delays
776 ;; for small files. But it must be ensured that there aren't
777 ;; permanent password queries. Either a password agent like
778 ;; "ssh-agent" or "Pageant" shall run, or the optional
779 ;; password-cache.el or auth-sources.el packages shall be active for
780 ;; password caching. "scpc" is chosen if we detect that the user is
781 ;; running OpenSSH 4.0 or newer.
783 ;; PuTTY is installed. We don't take it, if it is installed on a
784 ;; non-windows system, or pscp from the pssh (parallel ssh) package
786 ((and (eq system-type
'windows-nt
)
787 (executable-find "pscp"))
788 (if (or (fboundp 'password-read
)
789 (fboundp 'auth-source-user-or-password
)
790 ;; Pageant is running.
791 (tramp-compat-process-running-p "Pageant"))
794 ;; There is an ssh installation.
795 ((executable-find "scp")
797 ((tramp-detect-ssh-controlmaster) "scpc")
798 ((or (fboundp 'password-read
)
799 (fboundp 'auth-source-user-or-password
)
800 ;; ssh-agent is running.
801 (getenv "SSH_AUTH_SOCK")
802 (getenv "SSH_AGENT_PID"))
807 "*Default method to use for transferring files.
808 See `tramp-methods' for possibilities.
809 Also see `tramp-default-method-alist'."
813 (defcustom tramp-default-method-alist
814 '(("\\`localhost\\'" "\\`root\\'" "su"))
815 "*Default method to use for specific host/user pairs.
816 This is an alist of items (HOST USER METHOD). The first matching item
817 specifies the method to use for a file name which does not specify a
818 method. HOST and USER are regular expressions or nil, which is
819 interpreted as a regular expression which always matches. If no entry
820 matches, the variable `tramp-default-method' takes effect.
822 If the file name does not specify the user, lookup is done using the
823 empty string for the user name.
825 See `tramp-methods' for a list of possibilities for METHOD."
827 :type
'(repeat (list (choice :tag
"Host regexp" regexp sexp
)
828 (choice :tag
"User regexp" regexp sexp
)
829 (choice :tag
"Method name" string
(const nil
)))))
831 (defcustom tramp-default-user
833 "*Default user to use for transferring files.
834 It is nil by default; otherwise settings in configuration files like
835 \"~/.ssh/config\" would be overwritten. Also see `tramp-default-user-alist'.
837 This variable is regarded as obsolete, and will be removed soon."
839 :type
'(choice (const nil
) string
))
841 (defcustom tramp-default-user-alist
842 `(("\\`su\\(do\\)?\\'" nil
"root")
843 ("\\`r\\(em\\)?\\(cp\\|sh\\)\\|telnet\\|plink1?\\'"
844 nil
,(user-login-name)))
845 "*Default user to use for specific method/host pairs.
846 This is an alist of items (METHOD HOST USER). The first matching item
847 specifies the user to use for a file name which does not specify a
848 user. METHOD and USER are regular expressions or nil, which is
849 interpreted as a regular expression which always matches. If no entry
850 matches, the variable `tramp-default-user' takes effect.
852 If the file name does not specify the method, lookup is done using the
853 empty string for the method name."
855 :type
'(repeat (list (choice :tag
"Method regexp" regexp sexp
)
856 (choice :tag
" Host regexp" regexp sexp
)
857 (choice :tag
" User name" string
(const nil
)))))
859 (defcustom tramp-default-host
861 "*Default host to use for transferring files.
862 Useful for su and sudo methods mostly."
866 (defcustom tramp-default-proxies-alist nil
867 "*Route to be followed for specific host/user pairs.
868 This is an alist of items (HOST USER PROXY). The first matching
869 item specifies the proxy to be passed for a file name located on
870 a remote target matching USER@HOST. HOST and USER are regular
871 expressions. PROXY must be a Tramp filename without a localname
872 part. Method and user name on PROXY are optional, which is
873 interpreted with the default values. PROXY can contain the
874 patterns %h and %u, which are replaced by the strings matching
875 HOST or USER, respectively.
877 HOST, USER or PROXY could also be Lisp forms, which will be
878 evaluated. The result must be a string or nil, which is
879 interpreted as a regular expression which always matches."
881 :type
'(repeat (list (choice :tag
"Host regexp" regexp sexp
)
882 (choice :tag
"User regexp" regexp sexp
)
883 (choice :tag
" Proxy name" string
(const nil
)))))
885 (defconst tramp-local-host-regexp
887 "^" (regexp-opt (list "localhost" (system-name) "127\.0\.0\.1" "::1") t
) "$")
888 "*Host names which are regarded as local host.")
890 (defconst tramp-completion-function-alist-rsh
891 '((tramp-parse-rhosts "/etc/hosts.equiv")
892 (tramp-parse-rhosts "~/.rhosts"))
893 "Default list of (FUNCTION FILE) pairs to be examined for rsh methods.")
895 (defconst tramp-completion-function-alist-ssh
896 '((tramp-parse-rhosts "/etc/hosts.equiv")
897 (tramp-parse-rhosts "/etc/shosts.equiv")
898 (tramp-parse-shosts "/etc/ssh_known_hosts")
899 (tramp-parse-sconfig "/etc/ssh_config")
900 (tramp-parse-shostkeys "/etc/ssh2/hostkeys")
901 (tramp-parse-sknownhosts "/etc/ssh2/knownhosts")
902 (tramp-parse-rhosts "~/.rhosts")
903 (tramp-parse-rhosts "~/.shosts")
904 (tramp-parse-shosts "~/.ssh/known_hosts")
905 (tramp-parse-sconfig "~/.ssh/config")
906 (tramp-parse-shostkeys "~/.ssh2/hostkeys")
907 (tramp-parse-sknownhosts "~/.ssh2/knownhosts"))
908 "Default list of (FUNCTION FILE) pairs to be examined for ssh methods.")
910 (defconst tramp-completion-function-alist-telnet
911 '((tramp-parse-hosts "/etc/hosts"))
912 "Default list of (FUNCTION FILE) pairs to be examined for telnet methods.")
914 (defconst tramp-completion-function-alist-su
915 '((tramp-parse-passwd "/etc/passwd"))
916 "Default list of (FUNCTION FILE) pairs to be examined for su methods.")
918 (defconst tramp-completion-function-alist-putty
920 "HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions"))
921 "Default list of (FUNCTION REGISTRY) pairs to be examined for putty methods.")
923 (defvar tramp-completion-function-alist nil
924 "*Alist of methods for remote files.
925 This is a list of entries of the form \(NAME PAIR1 PAIR2 ...\).
926 Each NAME stands for a remote access method. Each PAIR is of the form
927 \(FUNCTION FILE\). FUNCTION is responsible to extract user names and host
928 names from FILE for completion. The following predefined FUNCTIONs exists:
930 * `tramp-parse-rhosts' for \"~/.rhosts\" like files,
931 * `tramp-parse-shosts' for \"~/.ssh/known_hosts\" like files,
932 * `tramp-parse-sconfig' for \"~/.ssh/config\" like files,
933 * `tramp-parse-shostkeys' for \"~/.ssh2/hostkeys/*\" like files,
934 * `tramp-parse-sknownhosts' for \"~/.ssh2/knownhosts/*\" like files,
935 * `tramp-parse-hosts' for \"/etc/hosts\" like files,
936 * `tramp-parse-passwd' for \"/etc/passwd\" like files.
937 * `tramp-parse-netrc' for \"~/.netrc\" like files.
938 * `tramp-parse-putty' for PuTTY registry keys.
940 FUNCTION can also be a customer defined function. For more details see
943 (eval-after-load "tramp"
945 (tramp-set-completion-function
946 "rcp" tramp-completion-function-alist-rsh
)
947 (tramp-set-completion-function
948 "scp" tramp-completion-function-alist-ssh
)
949 (tramp-set-completion-function
950 "scp1" tramp-completion-function-alist-ssh
)
951 (tramp-set-completion-function
952 "scp2" tramp-completion-function-alist-ssh
)
953 (tramp-set-completion-function
954 "scp1_old" tramp-completion-function-alist-ssh
)
955 (tramp-set-completion-function
956 "scp2_old" tramp-completion-function-alist-ssh
)
957 (tramp-set-completion-function
958 "rsync" tramp-completion-function-alist-ssh
)
959 (tramp-set-completion-function
960 "rsyncc" tramp-completion-function-alist-ssh
)
961 (tramp-set-completion-function
962 "remcp" tramp-completion-function-alist-rsh
)
963 (tramp-set-completion-function
964 "rsh" tramp-completion-function-alist-rsh
)
965 (tramp-set-completion-function
966 "ssh" tramp-completion-function-alist-ssh
)
967 (tramp-set-completion-function
968 "ssh1" tramp-completion-function-alist-ssh
)
969 (tramp-set-completion-function
970 "ssh2" tramp-completion-function-alist-ssh
)
971 (tramp-set-completion-function
972 "ssh1_old" tramp-completion-function-alist-ssh
)
973 (tramp-set-completion-function
974 "ssh2_old" tramp-completion-function-alist-ssh
)
975 (tramp-set-completion-function
976 "remsh" tramp-completion-function-alist-rsh
)
977 (tramp-set-completion-function
978 "telnet" tramp-completion-function-alist-telnet
)
979 (tramp-set-completion-function
980 "su" tramp-completion-function-alist-su
)
981 (tramp-set-completion-function
982 "sudo" tramp-completion-function-alist-su
)
983 (tramp-set-completion-function
984 "scpx" tramp-completion-function-alist-ssh
)
985 (tramp-set-completion-function
986 "sshx" tramp-completion-function-alist-ssh
)
987 (tramp-set-completion-function
988 "krlogin" tramp-completion-function-alist-rsh
)
989 (tramp-set-completion-function
990 "plink" tramp-completion-function-alist-ssh
)
991 (tramp-set-completion-function
992 "plink1" tramp-completion-function-alist-ssh
)
993 (tramp-set-completion-function
994 "plinkx" tramp-completion-function-alist-putty
)
995 (tramp-set-completion-function
996 "pscp" tramp-completion-function-alist-ssh
)
997 (tramp-set-completion-function
998 "fcp" tramp-completion-function-alist-ssh
)))
1000 (defconst tramp-echo-mark-marker
"_echo"
1001 "String marker to surround echoed commands.")
1003 (defconst tramp-echo-mark-marker-length
(length tramp-echo-mark-marker
)
1004 "String length of `tramp-echo-mark-marker'.")
1006 (defconst tramp-echo-mark
1007 (concat tramp-echo-mark-marker
1008 (make-string tramp-echo-mark-marker-length ?
\b))
1009 "String mark to be transmitted around shell commands.
1010 Used to separate their echo from the output they produce. This
1011 will only be used if we cannot disable remote echo via stty.
1012 This string must have no effect on the remote shell except for
1013 producing some echo which can later be detected by
1014 `tramp-echoed-echo-mark-regexp'. Using `tramp-echo-mark-marker',
1015 followed by an equal number of backspaces to erase them will
1018 (defconst tramp-echoed-echo-mark-regexp
1019 (format "%s\\(\b\\( \b\\)?\\)\\{%d\\}"
1020 tramp-echo-mark-marker tramp-echo-mark-marker-length
)
1021 "Regexp which matches `tramp-echo-mark' as it gets echoed by
1024 (defcustom tramp-rsh-end-of-line
"\n"
1025 "*String used for end of line in rsh connections.
1026 I don't think this ever needs to be changed, so please tell me about it
1027 if you need to change this.
1028 Also see the method parameter `tramp-password-end-of-line' and the normal
1029 variable `tramp-default-password-end-of-line'."
1033 (defcustom tramp-default-password-end-of-line
1034 tramp-rsh-end-of-line
1035 "*String used for end of line after sending a password.
1036 This variable provides the default value for the method parameter
1037 `tramp-password-end-of-line', see `tramp-methods' for more details.
1039 It seems that people using plink under Windows need to send
1040 \"\\r\\n\" (carriage-return, then newline) after a password, but just
1041 \"\\n\" after all other lines. This variable can be used for the
1042 password, see `tramp-rsh-end-of-line' for the other cases.
1044 The default value is to use the same value as `tramp-rsh-end-of-line'."
1048 ;; "getconf PATH" yields:
1049 ;; HP-UX: /usr/bin:/usr/ccs/bin:/opt/ansic/bin:/opt/langtools/bin:/opt/fortran/bin
1050 ;; Solaris: /usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/SUNWspro/bin
1051 ;; GNU/Linux (Debian, Suse): /bin:/usr/bin
1052 ;; FreeBSD: /usr/bin:/bin:/usr/sbin:/sbin: - beware trailing ":"!
1054 (defcustom tramp-remote-path
1055 '(tramp-default-remote-path "/usr/sbin" "/usr/local/bin"
1056 "/local/bin" "/local/freeware/bin" "/local/gnu/bin"
1057 "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin")
1058 "*List of directories to search for executables on remote host.
1059 For every remote host, this variable will be set buffer local,
1060 keeping the list of existing directories on that host.
1062 You can use `~' in this list, but when searching for a shell which groks
1063 tilde expansion, all directory names starting with `~' will be ignored.
1065 `Default Directories' represent the list of directories given by
1066 the command \"getconf PATH\". It is recommended to use this
1067 entry on top of this list, because these are the default
1068 directories for POSIX compatible commands.
1070 `Private Directories' are the settings of the $PATH environment,
1071 as given in your `~/.profile'."
1073 :type
'(repeat (choice
1074 (const :tag
"Default Directories" tramp-default-remote-path
)
1075 (const :tag
"Private Directories" tramp-own-remote-path
)
1076 (string :tag
"Directory"))))
1078 (defcustom tramp-remote-process-environment
1079 `("HISTFILE=$HOME/.tramp_history" "HISTSIZE=1" "LC_ALL=C"
1080 ,(format "TERM=%s" tramp-terminal-type
)
1081 "EMACS=t" ;; Deprecated.
1082 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version
)
1083 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH="
1084 "autocorrect=" "correct=")
1086 "*List of environment variables to be set on the remote host.
1088 Each element should be a string of the form ENVVARNAME=VALUE. An
1089 entry ENVVARNAME= diables the corresponding environment variable,
1090 which might have been set in the init files like ~/.profile.
1092 Special handling is applied to the PATH environment, which should
1093 not be set here. Instead of, it should be set via `tramp-remote-path'."
1095 :type
'(repeat string
))
1097 (defcustom tramp-login-prompt-regexp
1098 ".*ogin\\( .*\\)?: *"
1099 "*Regexp matching login-like prompts.
1100 The regexp should match at end of buffer.
1102 Sometimes the prompt is reported to look like \"login as:\"."
1106 (defcustom tramp-shell-prompt-pattern
1107 ;; Allow a prompt to start right after a ^M since it indeed would be
1108 ;; displayed at the beginning of the line (and Zsh uses it). This
1109 ;; regexp works only for GNU Emacs.
1110 (concat (if (featurep 'xemacs
) "" "\\(?:^\\|\r\\)")
1111 "[^#$%>\n]*#?[#$%>] *\\(\e\\[[0-9;]*[a-zA-Z] *\\)*")
1112 "Regexp to match prompts from remote shell.
1113 Normally, Tramp expects you to configure `shell-prompt-pattern'
1114 correctly, but sometimes it happens that you are connecting to a
1115 remote host which sends a different kind of shell prompt. Therefore,
1116 Tramp recognizes things matched by `shell-prompt-pattern' as prompt,
1117 and also things matched by this variable. The default value of this
1118 variable is similar to the default value of `shell-prompt-pattern',
1119 which should work well in many cases.
1121 This regexp must match both `tramp-initial-end-of-output' and
1122 `tramp-end-of-output'."
1126 (defcustom tramp-password-prompt-regexp
1127 "^.*\\([pP]assword\\|[pP]assphrase\\).*:\^@? *"
1128 "*Regexp matching password-like prompts.
1129 The regexp should match at end of buffer.
1131 The `sudo' program appears to insert a `^@' character into the prompt."
1135 (defcustom tramp-wrong-passwd-regexp
1137 ;; These strings should be on the last line
1138 (regexp-opt '("Permission denied"
1141 "Connection refused"
1143 "Timeout, server not responding."
1145 "Name or service not known"
1146 "Host key verification failed."
1147 "No supported authentication methods left to try!") t
)
1151 ;; Here comes a list of regexes, separated by \\|
1152 "Received signal [0-9]+"
1154 "*Regexp matching a `login failed' message.
1155 The regexp should match at end of buffer."
1159 (defcustom tramp-yesno-prompt-regexp
1161 (regexp-opt '("Are you sure you want to continue connecting (yes/no)?") t
)
1163 "Regular expression matching all yes/no queries which need to be confirmed.
1164 The confirmation should be done with yes or no.
1165 The regexp should match at end of buffer.
1166 See also `tramp-yn-prompt-regexp'."
1170 (defcustom tramp-yn-prompt-regexp
1172 (regexp-opt '("Store key in cache? (y/n)"
1173 "Update cached key? (y/n, Return cancels connection)") t
)
1175 "Regular expression matching all y/n queries which need to be confirmed.
1176 The confirmation should be done with y or n.
1177 The regexp should match at end of buffer.
1178 See also `tramp-yesno-prompt-regexp'."
1182 (defcustom tramp-terminal-prompt-regexp
1186 "Terminal type\\? \\[.*\\]"
1188 "Regular expression matching all terminal setting prompts.
1189 The regexp should match at end of buffer.
1190 The answer will be provided by `tramp-action-terminal', which see."
1194 (defcustom tramp-operation-not-permitted-regexp
1195 (concat "\\(" "preserving times.*" "\\|" "set mode" "\\)" ":\\s-*"
1196 (regexp-opt '("Operation not permitted") t
))
1197 "Regular expression matching keep-date problems in (s)cp operations.
1198 Copying has been performed successfully already, so this message can
1203 (defcustom tramp-copy-failed-regexp
1205 (regexp-opt '("Permission denied"
1206 "not a regular file"
1208 "No such file or directory") t
)
1210 "Regular expression matching copy problems in (s)cp operations."
1214 (defcustom tramp-process-alive-regexp
1216 "Regular expression indicating a process has finished.
1217 In fact this expression is empty by intention, it will be used only to
1218 check regularly the status of the associated process.
1219 The answer will be provided by `tramp-action-process-alive',
1220 `tramp-action-out-of-band', which see."
1224 (defcustom tramp-temp-name-prefix
"tramp."
1225 "*Prefix to use for temporary files.
1226 If this is a relative file name (such as \"tramp.\"), it is considered
1227 relative to the directory name returned by the function
1228 `tramp-compat-temporary-file-directory' (which see). It may also be an
1229 absolute file name; don't forget to include a prefix for the filename
1234 (defconst tramp-temp-buffer-name
" *tramp temp*"
1235 "Buffer name for a temporary buffer.
1236 It shall be used in combination with `generate-new-buffer-name'.")
1238 (defvar tramp-temp-buffer-file-name nil
1239 "File name of a persistent local temporary file.
1240 Useful for \"rsync\" like methods.")
1241 (make-variable-buffer-local 'tramp-temp-buffer-file-name
)
1243 (defcustom tramp-sh-extra-args
'(("/bash\\'" .
"-norc -noprofile"))
1244 "*Alist specifying extra arguments to pass to the remote shell.
1245 Entries are (REGEXP . ARGS) where REGEXP is a regular expression
1246 matching the shell file name and ARGS is a string specifying the
1249 This variable is only used when Tramp needs to start up another shell
1250 for tilde expansion. The extra arguments should typically prevent the
1251 shell from reading its init file."
1253 ;; This might be the wrong way to test whether the widget type
1254 ;; `alist' is available. Who knows the right way to test it?
1255 :type
(if (get 'alist
'widget-type
)
1256 '(alist :key-type string
:value-type string
)
1257 '(repeat (cons string string
))))
1259 ;; XEmacs is distributed with few Lisp packages. Further packages are
1260 ;; installed using EFS. If we use a unified filename format, then
1261 ;; Tramp is required in addition to EFS. (But why can't Tramp just
1262 ;; disable EFS when Tramp is loaded? Then XEmacs can ship with EFS
1263 ;; just like before.) Another reason for using a separate filename
1264 ;; syntax on XEmacs is that EFS hooks into XEmacs in many places, but
1265 ;; Tramp only knows how to deal with `file-name-handler-alist', not
1266 ;; the other places.
1268 ;; Currently, we have the choice between 'ftp, 'sep, and 'url.
1270 (defcustom tramp-syntax
1271 (if (featurep 'xemacs
) 'sep
'ftp
)
1272 "Tramp filename syntax to be used.
1274 It can have the following values:
1276 'ftp -- Ange-FTP respective EFS like syntax (GNU Emacs default)
1277 'sep -- Syntax as defined for XEmacs (not available yet for GNU Emacs)
1278 'url -- URL-like syntax."
1280 :type
(if (featurep 'xemacs
)
1281 '(choice (const :tag
"EFS" ftp
)
1282 (const :tag
"XEmacs" sep
)
1283 (const :tag
"URL" url
))
1284 '(choice (const :tag
"Ange-FTP" ftp
)
1285 (const :tag
"URL" url
))))
1287 (defconst tramp-prefix-format
1288 (cond ((equal tramp-syntax
'ftp
) "/")
1289 ((equal tramp-syntax
'sep
) "/[")
1290 ((equal tramp-syntax
'url
) "/")
1291 (t (error "Wrong `tramp-syntax' defined")))
1292 "*String matching the very beginning of Tramp file names.
1293 Used in `tramp-make-tramp-file-name'.")
1295 (defconst tramp-prefix-regexp
1296 (concat "^" (regexp-quote tramp-prefix-format
))
1297 "*Regexp matching the very beginning of Tramp file names.
1298 Should always start with \"^\". Derived from `tramp-prefix-format'.")
1300 (defconst tramp-method-regexp
1302 "*Regexp matching methods identifiers.")
1304 (defconst tramp-postfix-method-format
1305 (cond ((equal tramp-syntax
'ftp
) ":")
1306 ((equal tramp-syntax
'sep
) "/")
1307 ((equal tramp-syntax
'url
) "://")
1308 (t (error "Wrong `tramp-syntax' defined")))
1309 "*String matching delimeter between method and user or host names.
1310 Used in `tramp-make-tramp-file-name'.")
1312 (defconst tramp-postfix-method-regexp
1313 (regexp-quote tramp-postfix-method-format
)
1314 "*Regexp matching delimeter between method and user or host names.
1315 Derived from `tramp-postfix-method-format'.")
1317 (defconst tramp-user-regexp
1319 "*Regexp matching user names.")
1321 (defconst tramp-prefix-domain-format
"%"
1322 "*String matching delimeter between user and domain names.")
1324 (defconst tramp-prefix-domain-regexp
1325 (regexp-quote tramp-prefix-domain-format
)
1326 "*Regexp matching delimeter between user and domain names.
1327 Derived from `tramp-prefix-domain-format'.")
1329 (defconst tramp-domain-regexp
1331 "*Regexp matching domain names.")
1333 (defconst tramp-user-with-domain-regexp
1334 (concat "\\(" tramp-user-regexp
"\\)"
1335 tramp-prefix-domain-regexp
1336 "\\(" tramp-domain-regexp
"\\)")
1337 "*Regexp matching user names with domain names.")
1339 (defconst tramp-postfix-user-format
1341 "*String matching delimeter between user and host names.
1342 Used in `tramp-make-tramp-file-name'.")
1344 (defconst tramp-postfix-user-regexp
1345 (regexp-quote tramp-postfix-user-format
)
1346 "*Regexp matching delimeter between user and host names.
1347 Derived from `tramp-postfix-user-format'.")
1349 (defconst tramp-host-regexp
1351 "*Regexp matching host names.")
1353 (defconst tramp-prefix-ipv6-format
1354 (cond ((equal tramp-syntax
'ftp
) "[")
1355 ((equal tramp-syntax
'sep
) "")
1356 ((equal tramp-syntax
'url
) "[")
1357 (t (error "Wrong `tramp-syntax' defined")))
1358 "*String matching left hand side of IPv6 addresses.
1359 Used in `tramp-make-tramp-file-name'.")
1361 (defconst tramp-prefix-ipv6-regexp
1362 (regexp-quote tramp-prefix-ipv6-format
)
1363 "*Regexp matching left hand side of IPv6 addresses.
1364 Derived from `tramp-prefix-ipv6-format'.")
1366 ;; The following regexp is a bit sloppy. But it shall serve our
1367 ;; purposes. It covers also IPv4 mapped IPv6 addresses, like in
1368 ;; "::ffff:192.168.0.1".
1369 (defconst tramp-ipv6-regexp
1370 "\\(?:\\(?:[a-zA-Z0-9]+\\)?:\\)+[a-zA-Z0-9.]+"
1371 "*Regexp matching IPv6 addresses.")
1373 (defconst tramp-postfix-ipv6-format
1374 (cond ((equal tramp-syntax
'ftp
) "]")
1375 ((equal tramp-syntax
'sep
) "")
1376 ((equal tramp-syntax
'url
) "]")
1377 (t (error "Wrong `tramp-syntax' defined")))
1378 "*String matching right hand side of IPv6 addresses.
1379 Used in `tramp-make-tramp-file-name'.")
1381 (defconst tramp-postfix-ipv6-regexp
1382 (regexp-quote tramp-postfix-ipv6-format
)
1383 "*Regexp matching right hand side of IPv6 addresses.
1384 Derived from `tramp-postfix-ipv6-format'.")
1386 (defconst tramp-prefix-port-format
1387 (cond ((equal tramp-syntax
'ftp
) "#")
1388 ((equal tramp-syntax
'sep
) "#")
1389 ((equal tramp-syntax
'url
) ":")
1390 (t (error "Wrong `tramp-syntax' defined")))
1391 "*String matching delimeter between host names and port numbers.")
1393 (defconst tramp-prefix-port-regexp
1394 (regexp-quote tramp-prefix-port-format
)
1395 "*Regexp matching delimeter between host names and port numbers.
1396 Derived from `tramp-prefix-port-format'.")
1398 (defconst tramp-port-regexp
1400 "*Regexp matching port numbers.")
1402 (defconst tramp-host-with-port-regexp
1403 (concat "\\(" tramp-host-regexp
"\\)"
1404 tramp-prefix-port-regexp
1405 "\\(" tramp-port-regexp
"\\)")
1406 "*Regexp matching host names with port numbers.")
1408 (defconst tramp-postfix-host-format
1409 (cond ((equal tramp-syntax
'ftp
) ":")
1410 ((equal tramp-syntax
'sep
) "]")
1411 ((equal tramp-syntax
'url
) "")
1412 (t (error "Wrong `tramp-syntax' defined")))
1413 "*String matching delimeter between host names and localnames.
1414 Used in `tramp-make-tramp-file-name'.")
1416 (defconst tramp-postfix-host-regexp
1417 (regexp-quote tramp-postfix-host-format
)
1418 "*Regexp matching delimeter between host names and localnames.
1419 Derived from `tramp-postfix-host-format'.")
1421 (defconst tramp-localname-regexp
1423 "*Regexp matching localnames.")
1425 ;; File name format.
1427 (defconst tramp-file-name-structure
1431 "\\(" "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
"\\)?"
1432 "\\(" "\\(" tramp-user-regexp
"\\)" tramp-postfix-user-regexp
"\\)?"
1433 "\\(" "\\(" tramp-host-regexp
1435 tramp-prefix-ipv6-regexp tramp-ipv6-regexp
1436 tramp-postfix-ipv6-regexp
"\\)"
1437 "\\(" tramp-prefix-port-regexp tramp-port-regexp
"\\)?" "\\)?"
1438 tramp-postfix-host-regexp
1439 "\\(" tramp-localname-regexp
"\\)")
1442 "*List of five elements (REGEXP METHOD USER HOST FILE), detailing \
1443 the Tramp file name structure.
1445 The first element REGEXP is a regular expression matching a Tramp file
1446 name. The regex should contain parentheses around the method name,
1447 the user name, the host name, and the file name parts.
1449 The second element METHOD is a number, saying which pair of
1450 parentheses matches the method name. The third element USER is
1451 similar, but for the user name. The fourth element HOST is similar,
1452 but for the host name. The fifth element FILE is for the file name.
1453 These numbers are passed directly to `match-string', which see. That
1454 means the opening parentheses are counted to identify the pair.
1456 See also `tramp-file-name-regexp'.")
1459 (defconst tramp-file-name-regexp-unified
1460 (if (memq system-type
'(cygwin windows-nt
))
1461 "\\`/\\([^[/:]\\{2,\\}\\|[^/]\\{2,\\}]\\):"
1462 "\\`/\\([^[/:]+\\|[^/]+]\\):")
1463 "Value for `tramp-file-name-regexp' for unified remoting.
1464 Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and
1465 Tramp. See `tramp-file-name-structure' for more explanations.
1467 On W32 systems, the volume letter must be ignored.")
1470 (defconst tramp-file-name-regexp-separate
1472 "Value for `tramp-file-name-regexp' for separate remoting.
1473 XEmacs uses a separate filename syntax for Tramp and EFS.
1474 See `tramp-file-name-structure' for more explanations.")
1477 (defconst tramp-file-name-regexp-url
1479 "Value for `tramp-file-name-regexp' for URL-like remoting.
1480 See `tramp-file-name-structure' for more explanations.")
1483 (defconst tramp-file-name-regexp
1484 (cond ((equal tramp-syntax
'ftp
) tramp-file-name-regexp-unified
)
1485 ((equal tramp-syntax
'sep
) tramp-file-name-regexp-separate
)
1486 ((equal tramp-syntax
'url
) tramp-file-name-regexp-url
)
1487 (t (error "Wrong `tramp-syntax' defined")))
1488 "*Regular expression matching file names handled by Tramp.
1489 This regexp should match Tramp file names but no other file names.
1490 When tramp.el is loaded, this regular expression is prepended to
1491 `file-name-handler-alist', and that is searched sequentially. Thus,
1492 if the Tramp entry appears rather early in the `file-name-handler-alist'
1493 and is a bit too general, then some files might be considered Tramp
1494 files which are not really Tramp files.
1496 Please note that the entry in `file-name-handler-alist' is made when
1497 this file \(tramp.el\) is loaded. This means that this variable must be set
1498 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
1499 updated after changing this variable.
1501 Also see `tramp-file-name-structure'.")
1504 (defconst tramp-root-regexp
1505 (if (memq system-type
'(cygwin windows-nt
))
1506 "\\`\\([a-zA-Z]:\\)?/"
1508 "Beginning of an incomplete Tramp file name.
1509 Usually, it is just \"\\\\`/\". On W32 systems, there might be a
1510 volume letter, which will be removed by `tramp-drop-volume-letter'.")
1513 (defconst tramp-completion-file-name-regexp-unified
1514 (if (memq system-type
'(cygwin windows-nt
))
1515 (concat tramp-root-regexp
"[^/]\\{2,\\}\\'")
1516 (concat tramp-root-regexp
"[^/]*\\'"))
1517 "Value for `tramp-completion-file-name-regexp' for unified remoting.
1518 GNU Emacs uses a unified filename syntax for Tramp and Ange-FTP.
1519 See `tramp-file-name-structure' for more explanations.
1521 On W32 systems, the volume letter must be ignored.")
1524 (defconst tramp-completion-file-name-regexp-separate
1525 (concat tramp-root-regexp
"\\([[][^]]*\\)?\\'")
1526 "Value for `tramp-completion-file-name-regexp' for separate remoting.
1527 XEmacs uses a separate filename syntax for Tramp and EFS.
1528 See `tramp-file-name-structure' for more explanations.")
1531 (defconst tramp-completion-file-name-regexp-url
1532 (concat tramp-root-regexp
"[^/:]+\\(:\\(/\\(/[^/]*\\)?\\)?\\)?\\'")
1533 "Value for `tramp-completion-file-name-regexp' for URL-like remoting.
1534 See `tramp-file-name-structure' for more explanations.")
1537 (defconst tramp-completion-file-name-regexp
1538 (cond ((equal tramp-syntax
'ftp
) tramp-completion-file-name-regexp-unified
)
1539 ((equal tramp-syntax
'sep
) tramp-completion-file-name-regexp-separate
)
1540 ((equal tramp-syntax
'url
) tramp-completion-file-name-regexp-url
)
1541 (t (error "Wrong `tramp-syntax' defined")))
1542 "*Regular expression matching file names handled by Tramp completion.
1543 This regexp should match partial Tramp file names only.
1545 Please note that the entry in `file-name-handler-alist' is made when
1546 this file (tramp.el) is loaded. This means that this variable must be set
1547 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
1548 updated after changing this variable.
1550 Also see `tramp-file-name-structure'.")
1552 (defconst tramp-actions-before-shell
1553 '((tramp-login-prompt-regexp tramp-action-login
)
1554 (tramp-password-prompt-regexp tramp-action-password
)
1555 (tramp-wrong-passwd-regexp tramp-action-permission-denied
)
1556 (shell-prompt-pattern tramp-action-succeed
)
1557 (tramp-shell-prompt-pattern tramp-action-succeed
)
1558 (tramp-yesno-prompt-regexp tramp-action-yesno
)
1559 (tramp-yn-prompt-regexp tramp-action-yn
)
1560 (tramp-terminal-prompt-regexp tramp-action-terminal
)
1561 (tramp-process-alive-regexp tramp-action-process-alive
))
1562 "List of pattern/action pairs.
1563 Whenever a pattern matches, the corresponding action is performed.
1564 Each item looks like (PATTERN ACTION).
1566 The PATTERN should be a symbol, a variable. The value of this
1567 variable gives the regular expression to search for. Note that the
1568 regexp must match at the end of the buffer, \"\\'\" is implicitly
1571 The ACTION should also be a symbol, but a function. When the
1572 corresponding PATTERN matches, the ACTION function is called.")
1574 (defconst tramp-actions-copy-out-of-band
1575 '((tramp-password-prompt-regexp tramp-action-password
)
1576 (tramp-wrong-passwd-regexp tramp-action-permission-denied
)
1577 (tramp-copy-failed-regexp tramp-action-permission-denied
)
1578 (tramp-process-alive-regexp tramp-action-out-of-band
))
1579 "List of pattern/action pairs.
1580 This list is used for copying/renaming with out-of-band methods.
1582 See `tramp-actions-before-shell' for more info.")
1584 ;; Chunked sending kludge. We set this to 500 for black-listed constellations
1585 ;; known to have a bug in `process-send-string'; some ssh connections appear
1586 ;; to drop bytes when data is sent too quickly. There is also a connection
1587 ;; buffer local variable, which is computed depending on remote host properties
1588 ;; when `tramp-chunksize' is zero or nil.
1589 (defcustom tramp-chunksize
1590 (when (and (not (featurep 'xemacs
))
1591 (memq system-type
'(hpux)))
1593 ;; Parentheses in docstring starting at beginning of line are escaped.
1594 ;; Fontification is messed up when
1595 ;; `open-paren-in-column-0-is-defun-start' set to t.
1596 "*If non-nil, chunksize for sending input to local process.
1597 It is necessary only on systems which have a buggy `process-send-string'
1598 implementation. The necessity, whether this variable must be set, can be
1599 checked via the following code:
1602 (let* ((user \"xxx\") (host \"yyy\")
1604 (sent init) (received init))
1605 (while (= sent received)
1606 (setq sent (+ sent step))
1608 (let ((proc (start-process (buffer-name) (current-buffer)
1609 \"ssh\" \"-l\" user host \"wc\" \"-c\")))
1610 (when (memq (process-status proc) '(run open))
1611 (process-send-string proc (make-string sent ?\\ ))
1612 (process-send-eof proc)
1613 (process-send-eof proc))
1614 (while (not (progn (goto-char (point-min))
1615 (re-search-forward \"\\\\w+\" (point-max) t)))
1616 (accept-process-output proc 1))
1617 (when (memq (process-status proc) '(run open))
1618 (setq received (string-to-number (match-string 0)))
1619 (delete-process proc)
1620 (message \"Bytes sent: %s\\tBytes received: %s\" sent received)
1622 (if (> sent (+ init step))
1623 (message \"You should set `tramp-chunksize' to a maximum of %s\"
1625 (message \"Test does not work\")
1626 (display-buffer (current-buffer))
1629 In the Emacs normally running Tramp, evaluate the above code
1630 \(replace \"xxx\" and \"yyy\" by the remote user and host name,
1631 respectively\). You can do this, for example, by pasting it into
1632 the `*scratch*' buffer and then hitting C-j with the cursor after the
1633 last closing parenthesis. Note that it works only if you have configured
1634 \"ssh\" to run without password query, see ssh-agent\(1\).
1636 You will see the number of bytes sent successfully to the remote host.
1637 If that number exceeds 1000, you can stop the execution by hitting
1638 C-g, because your Emacs is likely clean.
1640 When it is necessary to set `tramp-chunksize', you might consider to
1641 use an out-of-the-band method \(like \"scp\"\) instead of an internal one
1642 \(like \"ssh\"\), because setting `tramp-chunksize' to non-nil decreases
1645 If your Emacs is buggy, the code stops and gives you an indication
1646 about the value `tramp-chunksize' should be set. Maybe you could just
1647 experiment a bit, e.g. changing the values of `init' and `step'
1648 in the third line of the code.
1650 Please raise a bug report via \"M-x tramp-bug\" if your system needs
1651 this variable to be set as well."
1653 :type
'(choice (const nil
) integer
))
1655 ;; Logging in to a remote host normally requires obtaining a pty. But
1656 ;; Emacs on MacOS X has process-connection-type set to nil by default,
1657 ;; so on those systems Tramp doesn't obtain a pty. Here, we allow
1658 ;; for an override of the system default.
1659 (defcustom tramp-process-connection-type t
1660 "Overrides `process-connection-type' for connections from Tramp.
1661 Tramp binds process-connection-type to the value given here before
1662 opening a connection to a remote host."
1664 :type
'(choice (const nil
) (const t
) (const pty
)))
1666 (defcustom tramp-completion-reread-directory-timeout
10
1667 "Defines seconds since last remote command before rereading a directory.
1668 A remote directory might have changed its contents. In order to
1669 make it visible during file name completion in the minibuffer,
1670 Tramp flushes its cache and rereads the directory contents when
1671 more than `tramp-completion-reread-directory-timeout' seconds
1672 have been gone since last remote command execution. A value of 0
1673 would require an immediate reread during filename completion, nil
1674 means to use always cached values for the directory contents."
1676 :type
'(choice (const nil
) integer
))
1678 ;;; Internal Variables:
1680 (defvar tramp-current-method nil
1681 "Connection method for this *tramp* buffer.")
1683 (defvar tramp-current-user nil
1684 "Remote login name for this *tramp* buffer.")
1686 (defvar tramp-current-host nil
1687 "Remote host for this *tramp* buffer.")
1689 (defconst tramp-uudecode
1690 "(echo begin 600 /tmp/tramp.$$; tail +2) | uudecode
1692 rm -f /tmp/tramp.$$"
1693 "Shell function to implement `uudecode' to standard output.
1694 Many systems support `uudecode -o /dev/stdout' or `uudecode -o -'
1695 for this or `uudecode -p', but some systems don't, and for them
1696 we have this shell function.")
1698 (defconst tramp-perl-file-truename
1701 use Cwd \"realpath\";
1704 my ($volume, @dirs) = @_;
1705 my $real = realpath(File::Spec->catpath(
1706 $volume, File::Spec->catdir(@dirs), \"\"));
1708 my ($vol, $dir) = File::Spec->splitpath($real, 1);
1709 return ($vol, File::Spec->splitdir($dir));
1712 my $last = pop(@dirs);
1713 ($volume, @dirs) = recursive($volume, @dirs);
1715 return ($volume, @dirs);
1719 $result = realpath($ARGV[0]);
1721 my ($vol, $dir) = File::Spec->splitpath($ARGV[0], 1);
1722 ($vol, @dirs) = recursive($vol, File::Spec->splitdir($dir));
1724 $result = File::Spec->catpath($vol, File::Spec->catdir(@dirs), \"\");
1727 if ($ARGV[0] =~ /\\/$/) {
1728 $result = $result . \"/\";
1731 print \"\\\"$result\\\"\\n\";
1732 ' \"$1\" 2>/dev/null"
1733 "Perl script to produce output suitable for use with `file-truename'
1734 on the remote file system.
1735 Escape sequence %s is replaced with name of Perl binary.
1736 This string is passed to `format', so percent characters need to be doubled.")
1738 (defconst tramp-perl-file-name-all-completions
1748 opendir(d, $ARGV[0]) || die(\"$ARGV[0]: $!\\nfail\\n\");
1749 @files = readdir(d); closedir(d);
1750 foreach $f (@files) {
1751 if (case(substr($f, 0, length($ARGV[1]))) eq case($ARGV[1])) {
1752 if (-d \"$ARGV[0]/$f\") {
1761 ' \"$1\" \"$2\" \"$3\" 2>/dev/null"
1762 "Perl script to produce output suitable for use with
1763 `file-name-all-completions' on the remote file system. Escape
1764 sequence %s is replaced with name of Perl binary. This string is
1765 passed to `format', so percent characters need to be doubled.")
1767 ;; Perl script to implement `file-attributes' in a Lisp `read'able
1768 ;; output. If you are hacking on this, note that you get *no* output
1769 ;; unless this spits out a complete line, including the '\n' at the
1771 ;; The device number is returned as "-1", because there will be a virtual
1772 ;; device number set in `tramp-handle-file-attributes'.
1773 (defconst tramp-perl-file-attributes
1775 @stat = lstat($ARGV[0]);
1780 if (($stat[2] & 0170000) == 0120000)
1782 $type = readlink($ARGV[0]);
1783 $type = \"\\\"$type\\\"\";
1785 elsif (($stat[2] & 0170000) == 040000)
1793 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
1794 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
1796 \"(%%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) -1)\\n\",
1801 $stat[8] >> 16 & 0xffff,
1803 $stat[9] >> 16 & 0xffff,
1805 $stat[10] >> 16 & 0xffff,
1809 $stat[1] >> 16 & 0xffff,
1811 );' \"$1\" \"$2\" 2>/dev/null"
1812 "Perl script to produce output suitable for use with `file-attributes'
1813 on the remote file system.
1814 Escape sequence %s is replaced with name of Perl binary.
1815 This string is passed to `format', so percent characters need to be doubled.")
1817 (defconst tramp-perl-directory-files-and-attributes
1819 chdir($ARGV[0]) or printf(\"\\\"Cannot change to $ARGV[0]: $''!''\\\"\\n\"), exit();
1820 opendir(DIR,\".\") or printf(\"\\\"Cannot open directory $ARGV[0]: $''!''\\\"\\n\"), exit();
1821 @list = readdir(DIR);
1825 for($i = 0; $i < $n; $i++)
1827 $filename = $list[$i];
1828 @stat = lstat($filename);
1829 if (($stat[2] & 0170000) == 0120000)
1831 $type = readlink($filename);
1832 $type = \"\\\"$type\\\"\";
1834 elsif (($stat[2] & 0170000) == 040000)
1842 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
1843 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
1845 \"(\\\"%%s\\\" %%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) (%%u . %%u))\\n\",
1851 $stat[8] >> 16 & 0xffff,
1853 $stat[9] >> 16 & 0xffff,
1855 $stat[10] >> 16 & 0xffff,
1859 $stat[1] >> 16 & 0xffff,
1861 $stat[0] >> 16 & 0xffff,
1864 printf(\")\\n\");' \"$1\" \"$2\" 2>/dev/null"
1865 "Perl script implementing `directory-files-attributes' as Lisp `read'able
1867 Escape sequence %s is replaced with name of Perl binary.
1868 This string is passed to `format', so percent characters need to be doubled.")
1870 ;; ;; These two use uu encoding.
1871 ;; (defvar tramp-perl-encode "%s -e'\
1872 ;; print qq(begin 644 xxx\n);
1875 ;; while (read(STDIN, $s, 45)) {
1876 ;; print pack(q(u), $s);
1881 ;; "Perl program to use for encoding a file.
1882 ;; Escape sequence %s is replaced with name of Perl binary.")
1884 ;; (defvar tramp-perl-decode "%s -ne '
1885 ;; print unpack q(u), $_;
1887 ;; "Perl program to use for decoding a file.
1888 ;; Escape sequence %s is replaced with name of Perl binary.")
1890 ;; These two use base64 encoding.
1891 (defconst tramp-perl-encode-with-module
1892 "%s -MMIME::Base64 -0777 -ne 'print encode_base64($_)' 2>/dev/null"
1893 "Perl program to use for encoding a file.
1894 Escape sequence %s is replaced with name of Perl binary.
1895 This string is passed to `format', so percent characters need to be doubled.
1896 This implementation requires the MIME::Base64 Perl module to be installed
1897 on the remote host.")
1899 (defconst tramp-perl-decode-with-module
1900 "%s -MMIME::Base64 -0777 -ne 'print decode_base64($_)' 2>/dev/null"
1901 "Perl program to use for decoding a file.
1902 Escape sequence %s is replaced with name of Perl binary.
1903 This string is passed to `format', so percent characters need to be doubled.
1904 This implementation requires the MIME::Base64 Perl module to be installed
1905 on the remote host.")
1907 (defconst tramp-perl-encode
1909 # This script contributed by Juanma Barranquero <lektu@terra.es>.
1910 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
1911 # 2011 Free Software Foundation, Inc.
1916 map {(substr(unpack(q(B8), chr $i++), 2, 6), $_)}
1917 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/);
1922 # We read in chunks of 54 bytes, to generate output lines
1923 # of 72 chars (plus end of line)
1926 while (my $data = <STDIN>) {
1929 # Only for the last chunk, and only if did not fill the last three-byte packet
1931 my $mod = length($data) %% 3;
1932 $pad = q(=) x (3 - $mod) if $mod;
1935 # Not the fastest method, but it is simple: unpack to binary string, split
1936 # by groups of 6 bits and convert back from binary to byte; then map into
1937 # the translation table
1941 (substr(unpack(q(B*), $data) . q(00000), 0, 432) =~ /....../g)),
1945 "Perl program to use for encoding a file.
1946 Escape sequence %s is replaced with name of Perl binary.
1947 This string is passed to `format', so percent characters need to be doubled.")
1949 (defconst tramp-perl-decode
1951 # This script contributed by Juanma Barranquero <lektu@terra.es>.
1952 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
1953 # 2011 Free Software Foundation, Inc.
1958 map {($_, substr(unpack(q(B8), chr $i++), 2, 6))}
1959 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/)
1962 my %%bytes = map {(unpack(q(B8), chr $_), chr $_)} 0 .. 255;
1966 # We are going to accumulate into $pending to accept any line length
1967 # (we do not check they are <= 76 chars as the RFC says)
1970 while (my $data = <STDIN>) {
1973 # If we find one or two =, we have reached the end and
1974 # any following data is to be discarded
1975 my $finished = $data =~ s/(==?).*/$1/;
1978 my $len = length($pending);
1979 my $chunk = substr($pending, 0, $len & ~3);
1980 $pending = substr($pending, $len & ~3 + 1);
1982 # Easy method: translate from chars to (pregenerated) six-bit packets, join,
1983 # split in 8-bit chunks and convert back to char.
1986 ((join q(), map {$trans{$_} || q()} split //, $chunk) =~ /......../g);
1990 "Perl program to use for decoding a file.
1991 Escape sequence %s is replaced with name of Perl binary.
1992 This string is passed to `format', so percent characters need to be doubled.")
1994 (defconst tramp-vc-registered-read-file-names
1997 if %s \"$file\"; then
1998 echo \"(\\\"$file\\\" \\\"file-exists-p\\\" t)\"
2000 echo \"(\\\"$file\\\" \\\"file-exists-p\\\" nil)\"
2002 if %s \"$file\"; then
2003 echo \"(\\\"$file\\\" \\\"file-readable-p\\\" t)\"
2005 echo \"(\\\"$file\\\" \\\"file-readable-p\\\" nil)\"
2009 "Script to check existence of VC related files.
2010 It must be send formatted with two strings; the tests for file
2011 existence, and file readability. Input shall be read via
2012 here-document, otherwise the command could exceed maximum length
2015 (defconst tramp-file-mode-type-map
2016 '((0 .
"-") ; Normal file (SVID-v2 and XPG2)
2018 (2 .
"c") ; character device
2019 (3 .
"m") ; multiplexed character device (v7)
2020 (4 .
"d") ; directory
2021 (5 .
"?") ; Named special file (XENIX)
2022 (6 .
"b") ; block device
2023 (7 .
"?") ; multiplexed block device (v7)
2024 (8 .
"-") ; regular file
2025 (9 .
"n") ; network special file (HP-UX)
2026 (10 .
"l") ; symlink
2027 (11 .
"?") ; ACL shadow inode (Solaris, not userspace)
2029 (13 .
"D") ; door special (Solaris)
2030 (14 .
"w")) ; whiteout (BSD)
2031 "A list of file types returned from the `stat' system call.
2032 This is used to map a mode number to a permission string.")
2034 ;; New handlers should be added here. The following operations can be
2035 ;; handled using the normal primitives: file-name-sans-versions,
2037 (defconst tramp-file-name-handler-alist
2038 '((load . tramp-handle-load
)
2039 (make-symbolic-link . tramp-handle-make-symbolic-link
)
2040 (file-name-as-directory . tramp-handle-file-name-as-directory
)
2041 (file-name-directory . tramp-handle-file-name-directory
)
2042 (file-name-nondirectory . tramp-handle-file-name-nondirectory
)
2043 (file-truename . tramp-handle-file-truename
)
2044 (file-exists-p . tramp-handle-file-exists-p
)
2045 (file-directory-p . tramp-handle-file-directory-p
)
2046 (file-executable-p . tramp-handle-file-executable-p
)
2047 (file-readable-p . tramp-handle-file-readable-p
)
2048 (file-regular-p . tramp-handle-file-regular-p
)
2049 (file-symlink-p . tramp-handle-file-symlink-p
)
2050 (file-writable-p . tramp-handle-file-writable-p
)
2051 (file-ownership-preserved-p . tramp-handle-file-ownership-preserved-p
)
2052 (file-newer-than-file-p . tramp-handle-file-newer-than-file-p
)
2053 (file-attributes . tramp-handle-file-attributes
)
2054 (file-modes . tramp-handle-file-modes
)
2055 (directory-files . tramp-handle-directory-files
)
2056 (directory-files-and-attributes . tramp-handle-directory-files-and-attributes
)
2057 (file-name-all-completions . tramp-handle-file-name-all-completions
)
2058 (file-name-completion . tramp-handle-file-name-completion
)
2059 (add-name-to-file . tramp-handle-add-name-to-file
)
2060 (copy-file . tramp-handle-copy-file
)
2061 (copy-directory . tramp-handle-copy-directory
)
2062 (rename-file . tramp-handle-rename-file
)
2063 (set-file-modes . tramp-handle-set-file-modes
)
2064 (set-file-times . tramp-handle-set-file-times
)
2065 (make-directory . tramp-handle-make-directory
)
2066 (delete-directory . tramp-handle-delete-directory
)
2067 (delete-file . tramp-handle-delete-file
)
2068 (directory-file-name . tramp-handle-directory-file-name
)
2069 ;; `executable-find' is not official yet.
2070 (executable-find . tramp-handle-executable-find
)
2071 (start-file-process . tramp-handle-start-file-process
)
2072 (process-file . tramp-handle-process-file
)
2073 (shell-command . tramp-handle-shell-command
)
2074 (insert-directory . tramp-handle-insert-directory
)
2075 (expand-file-name . tramp-handle-expand-file-name
)
2076 (substitute-in-file-name . tramp-handle-substitute-in-file-name
)
2077 (file-local-copy . tramp-handle-file-local-copy
)
2078 (file-remote-p . tramp-handle-file-remote-p
)
2079 (insert-file-contents . tramp-handle-insert-file-contents
)
2080 (insert-file-contents-literally
2081 . tramp-handle-insert-file-contents-literally
)
2082 (write-region . tramp-handle-write-region
)
2083 (find-backup-file-name . tramp-handle-find-backup-file-name
)
2084 (make-auto-save-file-name . tramp-handle-make-auto-save-file-name
)
2085 (unhandled-file-name-directory . tramp-handle-unhandled-file-name-directory
)
2086 (dired-compress-file . tramp-handle-dired-compress-file
)
2087 (dired-recursive-delete-directory
2088 . tramp-handle-dired-recursive-delete-directory
)
2089 (dired-uncache . tramp-handle-dired-uncache
)
2090 (set-visited-file-modtime . tramp-handle-set-visited-file-modtime
)
2091 (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime
)
2092 (file-selinux-context . tramp-handle-file-selinux-context
)
2093 (set-file-selinux-context . tramp-handle-set-file-selinux-context
)
2094 (vc-registered . tramp-handle-vc-registered
))
2095 "Alist of handler functions.
2096 Operations not mentioned here will be handled by the normal Emacs functions.")
2098 ;; Handlers for partial Tramp file names. For Emacs just
2099 ;; `file-name-all-completions' is needed.
2101 (defconst tramp-completion-file-name-handler-alist
2102 '((file-name-all-completions . tramp-completion-handle-file-name-all-completions
)
2103 (file-name-completion . tramp-completion-handle-file-name-completion
))
2104 "Alist of completion handler functions.
2105 Used for file names matching `tramp-file-name-regexp'. Operations not
2106 mentioned here will be handled by `tramp-file-name-handler-alist' or the
2107 normal Emacs functions.")
2109 ;; Handlers for foreign methods, like FTP or SMB, shall be plugged here.
2110 (defvar tramp-foreign-file-name-handler-alist
2111 ;; (identity . tramp-sh-file-name-handler) should always be the last
2112 ;; entry, because `identity' always matches.
2113 '((identity . tramp-sh-file-name-handler
))
2114 "Alist of elements (FUNCTION . HANDLER) for foreign methods handled specially.
2115 If (FUNCTION FILENAME) returns non-nil, then all I/O on that file is done by
2118 ;;; Internal functions which must come first:
2120 (defsubst tramp-debug-message
(vec fmt-string
&rest args
)
2121 "Append message to debug buffer.
2122 Message is formatted with FMT-STRING as control string and the remaining
2123 ARGS to actually emit the message (if applicable)."
2124 (when (get-buffer (tramp-buffer-name vec
))
2125 (with-current-buffer (tramp-get-debug-buffer vec
)
2126 (goto-char (point-max))
2131 ";; %sEmacs: %s Tramp: %s -*- mode: outline; -*-"
2132 (if (featurep 'sxemacs
) "SX" (if (featurep 'xemacs
) "X" "GNU "))
2133 emacs-version tramp-version
)))
2137 (let ((now (current-time)))
2138 (insert (format-time-string "%T." now
))
2139 (insert (format "%06d " (nth 2 now
))))
2140 ;; Calling function.
2141 (let ((btn 1) btf fn
)
2143 (setq btf
(nth 1 (backtrace-frame btn
)))
2147 (setq fn
(symbol-name btf
))
2148 (unless (and (string-match "^tramp" fn
)
2150 "^tramp\\(-debug\\)?\\(-message\\|-error\\|-compat-funcall\\)$"
2153 (setq btn
(1+ btn
))))
2154 ;; The following code inserts filename and line number.
2155 ;; Should be deactivated by default, because it is time
2157 ; (let ((ffn (find-function-noselect (intern fn))))
2161 ; (file-name-nondirectory (buffer-file-name (car ffn)))
2162 ; (with-current-buffer (car ffn)
2163 ; (1+ (count-lines (point-min) (cdr ffn)))))))
2164 (insert (format "%s " fn
)))
2166 (insert (apply 'format fmt-string args
)))))
2168 (defvar tramp-message-show-message t
2169 "Show Tramp message in the minibuffer.
2170 This variable is used to disable messages from `tramp-error'.
2171 The messages are visible anyway, because an error is raised.")
2173 (defsubst tramp-message
(vec-or-proc level fmt-string
&rest args
)
2174 "Emit a message depending on verbosity level.
2175 VEC-OR-PROC identifies the Tramp buffer to use. It can be either a
2176 vector or a process. LEVEL says to be quiet if `tramp-verbose' is
2177 less than LEVEL. The message is emitted only if `tramp-verbose' is
2178 greater than or equal to LEVEL.
2180 The message is also logged into the debug buffer when `tramp-verbose'
2181 is greater than or equal 4.
2183 Calls functions `message' and `tramp-debug-message' with FMT-STRING as
2184 control string and the remaining ARGS to actually emit the message (if
2187 (when (<= level tramp-verbose
)
2188 ;; Match data must be preserved!
2190 ;; Display only when there is a minimum level.
2191 (when (and tramp-message-show-message
(<= level
3))
2197 ((= level
2) "Warning: ")
2201 ;; Log only when there is a minimum level.
2202 (when (>= tramp-verbose
4)
2203 (when (and vec-or-proc
2204 (processp vec-or-proc
)
2205 (buffer-name (process-buffer vec-or-proc
)))
2206 (with-current-buffer (process-buffer vec-or-proc
)
2207 ;; Translate proc to vec.
2208 (setq vec-or-proc
(tramp-dissect-file-name default-directory
))))
2209 (when (and vec-or-proc
(vectorp vec-or-proc
))
2210 (apply 'tramp-debug-message
2212 (concat (format "(%d) # " level
) fmt-string
)
2214 ;; Suppress all errors.
2217 (defsubst tramp-error
(vec-or-proc signal fmt-string
&rest args
)
2219 VEC-OR-PROC identifies the connection to use, SIGNAL is the
2220 signal identifier to be raised, remaining args passed to
2221 `tramp-message'. Finally, signal SIGNAL is raised."
2222 (let (tramp-message-show-message)
2225 (error-message-string
2227 (get signal
'error-message
)
2228 (apply 'format fmt-string args
))))
2229 (signal signal
(list (apply 'format fmt-string args
)))))
2231 (defsubst tramp-error-with-buffer
2232 (buffer vec-or-proc signal fmt-string
&rest args
)
2233 "Emit an error, and show BUFFER.
2234 If BUFFER is nil, show the connection buffer. Wait for 30\", or until
2235 an input event arrives. The other arguments are passed to `tramp-error'."
2236 (save-window-excursion
2238 (apply 'tramp-error vec-or-proc signal fmt-string args
)
2239 (when (and vec-or-proc
2240 (not (zerop tramp-verbose
))
2241 (not (tramp-completion-mode-p)))
2242 (let ((enable-recursive-minibuffers t
))
2244 (or (and (bufferp buffer
) buffer
)
2245 (and (processp vec-or-proc
) (process-buffer vec-or-proc
))
2246 (tramp-get-buffer vec-or-proc
)))
2249 (defmacro with-parsed-tramp-file-name
(filename var
&rest body
)
2250 "Parse a Tramp filename and make components available in the body.
2252 First arg FILENAME is evaluated and dissected into its components.
2253 Second arg VAR is a symbol. It is used as a variable name to hold
2254 the filename structure. It is also used as a prefix for the variables
2255 holding the components. For example, if VAR is the symbol `foo', then
2256 `foo' will be bound to the whole structure, `foo-method' will be bound to
2257 the method component, and so on for `foo-user', `foo-host', `foo-localname'.
2259 Remaining args are Lisp expressions to be evaluated (inside an implicit
2262 If VAR is nil, then we bind `v' to the structure and `method', `user',
2263 `host', `localname' to the components."
2264 `(let* ((,(or var
'v
) (tramp-dissect-file-name ,filename
))
2265 (,(if var
(intern (concat (symbol-name var
) "-method")) 'method
)
2266 (tramp-file-name-method ,(or var
'v
)))
2267 (,(if var
(intern (concat (symbol-name var
) "-user")) 'user
)
2268 (tramp-file-name-user ,(or var
'v
)))
2269 (,(if var
(intern (concat (symbol-name var
) "-host")) 'host
)
2270 (tramp-file-name-host ,(or var
'v
)))
2271 (,(if var
(intern (concat (symbol-name var
) "-localname")) 'localname
)
2272 (tramp-file-name-localname ,(or var
'v
))))
2275 (put 'with-parsed-tramp-file-name
'lisp-indent-function
2)
2276 (put 'with-parsed-tramp-file-name
'edebug-form-spec
'(form symbolp body
))
2277 (font-lock-add-keywords 'emacs-lisp-mode
'("\\<with-parsed-tramp-file-name\\>"))
2279 (defmacro with-file-property
(vec file property
&rest body
)
2280 "Check in Tramp cache for PROPERTY, otherwise execute BODY and set cache.
2281 FILE must be a local file name on a connection identified via VEC."
2282 `(if (file-name-absolute-p ,file
)
2283 (let ((value (tramp-get-file-property ,vec
,file
,property
'undef
)))
2284 (when (eq value
'undef
)
2285 ;; We cannot pass @body as parameter to
2286 ;; `tramp-set-file-property' because it mangles our
2288 (setq value
(progn ,@body
))
2289 (tramp-set-file-property ,vec
,file
,property value
))
2293 (put 'with-file-property
'lisp-indent-function
3)
2294 (put 'with-file-property
'edebug-form-spec t
)
2295 (font-lock-add-keywords 'emacs-lisp-mode
'("\\<with-file-property\\>"))
2297 (defmacro with-connection-property
(key property
&rest body
)
2298 "Check in Tramp for property PROPERTY, otherwise executes BODY and set."
2299 `(let ((value (tramp-get-connection-property ,key
,property
'undef
)))
2300 (when (eq value
'undef
)
2301 ;; We cannot pass ,@body as parameter to
2302 ;; `tramp-set-connection-property' because it mangles our debug
2304 (setq value
(progn ,@body
))
2305 (tramp-set-connection-property ,key
,property value
))
2308 (put 'with-connection-property
'lisp-indent-function
2)
2309 (put 'with-connection-property
'edebug-form-spec t
)
2310 (font-lock-add-keywords 'emacs-lisp-mode
'("\\<with-connection-property\\>"))
2312 (defun tramp-progress-reporter-update (reporter &optional value
)
2313 (let* ((parameters (cdr reporter
))
2314 (message (aref parameters
3)))
2315 (when (string-match message
(or (current-message) ""))
2316 (funcall 'progress-reporter-update reporter value
))))
2318 (defmacro with-progress-reporter
(vec level message
&rest body
)
2319 "Executes BODY, spinning a progress reporter with MESSAGE.
2320 If LEVEL does not fit for visible messages, or if this is a
2321 nested call of the macro, there are only traces without a visible
2324 (tramp-message ,vec
,level
"%s..." ,message
)
2325 ;; We start a pulsing progress reporter after 3 seconds. Feature
2326 ;; introduced in Emacs 24.1.
2327 (when (and tramp-message-show-message
2328 ;; Display only when there is a minimum level.
2329 (<= ,level
(min tramp-verbose
3)))
2331 (setq pr
(tramp-compat-funcall 'make-progress-reporter
,message
)
2333 (run-at-time 3 0.1 'tramp-progress-reporter-update pr
)))
2336 ;; Execute the body. Unset `tramp-message-show-message' when
2337 ;; the timer object is created, in order to suppress
2338 ;; concurrent timers.
2339 (let ((tramp-message-show-message
2340 (and tramp-message-show-message
(not tm
))))
2342 ;; Stop progress reporter.
2343 (if tm
(tramp-compat-funcall 'cancel-timer tm
))
2344 (tramp-message ,vec
,level
"%s...done" ,message
))))
2346 (put 'with-progress-reporter
'lisp-indent-function
3)
2347 (put 'with-progress-reporter
'edebug-form-spec t
)
2348 (font-lock-add-keywords 'emacs-lisp-mode
'("\\<with-progress-reporter\\>"))
2350 (eval-and-compile ;; Silence compiler.
2351 (if (memq system-type
'(cygwin windows-nt
))
2352 (defun tramp-drop-volume-letter (name)
2353 "Cut off unnecessary drive letter from file NAME.
2354 The function `tramp-handle-expand-file-name' calls `expand-file-name'
2355 locally on a remote file name. When the local system is a W32 system
2356 but the remote system is Unix, this introduces a superfluous drive
2357 letter into the file name. This function removes it."
2359 (if (string-match tramp-root-regexp name
)
2360 (replace-match "/" nil t name
)
2363 (defalias 'tramp-drop-volume-letter
'identity
)))
2365 (defsubst tramp-make-tramp-temp-file
(vec)
2366 "Create a temporary file on the remote host identified by VEC.
2367 Return the local name of the temporary file."
2369 (tramp-make-tramp-file-name
2370 (tramp-file-name-method vec
)
2371 (tramp-file-name-user vec
)
2372 (tramp-file-name-host vec
)
2373 (tramp-drop-volume-letter
2375 tramp-temp-name-prefix
(tramp-get-remote-tmpdir vec
)))))
2378 ;; `make-temp-file' would be the natural choice for
2379 ;; implementation. But it calls `write-region' internally,
2380 ;; which also needs a temporary file - we would end in an
2382 (setq result
(make-temp-name prefix
))
2383 (if (file-exists-p result
)
2385 ;; This creates the file by side effect.
2386 (set-file-times result
)
2387 (set-file-modes result
(tramp-octal-to-decimal "0700"))))
2389 ;; Return the local part.
2390 (with-parsed-tramp-file-name result nil localname
)))
2393 ;;; Config Manipulation Functions:
2395 (defun tramp-set-completion-function (method function-list
)
2396 "Sets the list of completion functions for METHOD.
2397 FUNCTION-LIST is a list of entries of the form (FUNCTION FILE).
2398 The FUNCTION is intended to parse FILE according its syntax.
2399 It might be a predefined FUNCTION, or a user defined FUNCTION.
2400 Predefined FUNCTIONs are `tramp-parse-rhosts', `tramp-parse-shosts',
2401 `tramp-parse-sconfig', `tramp-parse-hosts', `tramp-parse-passwd',
2402 and `tramp-parse-netrc'.
2406 (tramp-set-completion-function
2408 '((tramp-parse-sconfig \"/etc/ssh_config\")
2409 (tramp-parse-sconfig \"~/.ssh/config\")))"
2411 (let ((r function-list
)
2413 (setq tramp-completion-function-alist
2414 (delete (assoc method tramp-completion-function-alist
)
2415 tramp-completion-function-alist
))
2418 ;; Remove double entries.
2419 (when (member (car v
) (cdr v
))
2420 (setcdr v
(delete (car v
) (cdr v
))))
2421 ;; Check for function and file or registry key.
2422 (unless (and (functionp (nth 0 (car v
)))
2423 (if (string-match "^HKEY_CURRENT_USER" (nth 1 (car v
)))
2424 ;; Windows registry.
2425 (and (memq system-type
'(cygwin windows-nt
))
2427 (tramp-local-call-process
2428 "reg" nil nil nil
"query" (nth 1 (car v
)))))
2429 ;; Configuration file.
2430 (file-exists-p (nth 1 (car v
)))))
2431 (setq r
(delete (car v
) r
)))
2435 (add-to-list 'tramp-completion-function-alist
2438 (defun tramp-get-completion-function (method)
2439 "Returns a list of completion functions for METHOD.
2440 For definition of that list see `tramp-set-completion-function'."
2442 ;; Hosts visited once shall be remembered.
2443 `(tramp-parse-connection-properties ,method
)
2444 ;; The method related defaults.
2445 (cdr (assoc method tramp-completion-function-alist
))))
2448 ;;; Fontification of `read-file-name':
2450 ;; rfn-eshadow.el is part of Emacs 22. It is autoloaded.
2451 (defvar tramp-rfn-eshadow-overlay
)
2452 (make-variable-buffer-local 'tramp-rfn-eshadow-overlay
)
2454 (defun tramp-rfn-eshadow-setup-minibuffer ()
2455 "Set up a minibuffer for `file-name-shadow-mode'.
2456 Adds another overlay hiding filename parts according to Tramp's
2457 special handling of `substitute-in-file-name'."
2458 (when (symbol-value 'minibuffer-completing-file-name
)
2459 (setq tramp-rfn-eshadow-overlay
2460 (tramp-compat-funcall
2462 (tramp-compat-funcall 'minibuffer-prompt-end
)
2463 (tramp-compat-funcall 'minibuffer-prompt-end
)))
2464 ;; Copy rfn-eshadow-overlay properties.
2465 (let ((props (tramp-compat-funcall
2466 'overlay-properties
(symbol-value 'rfn-eshadow-overlay
))))
2468 (tramp-compat-funcall
2469 'overlay-put tramp-rfn-eshadow-overlay
(pop props
) (pop props
))))))
2471 (when (boundp 'rfn-eshadow-setup-minibuffer-hook
)
2472 (add-hook 'rfn-eshadow-setup-minibuffer-hook
2473 'tramp-rfn-eshadow-setup-minibuffer
)
2474 (add-hook 'tramp-unload-hook
2476 (remove-hook 'rfn-eshadow-setup-minibuffer-hook
2477 'tramp-rfn-eshadow-setup-minibuffer
))))
2479 (defconst tramp-rfn-eshadow-update-overlay-regexp
2480 (format "[^%s/~]*\\(/\\|~\\)" tramp-postfix-host-format
))
2482 (defun tramp-rfn-eshadow-update-overlay ()
2483 "Update `rfn-eshadow-overlay' to cover shadowed part of minibuffer input.
2484 This is intended to be used as a minibuffer `post-command-hook' for
2485 `file-name-shadow-mode'; the minibuffer should have already
2486 been set up by `rfn-eshadow-setup-minibuffer'."
2487 ;; In remote files name, there is a shadowing just for the local part.
2488 (let ((end (or (tramp-compat-funcall
2489 'overlay-end
(symbol-value 'rfn-eshadow-overlay
))
2490 (tramp-compat-funcall 'minibuffer-prompt-end
))))
2493 (tramp-compat-funcall 'buffer-substring-no-properties end
(point-max)))
2497 (1+ (or (string-match
2498 tramp-rfn-eshadow-update-overlay-regexp
(buffer-string) end
)
2501 (let ((rfn-eshadow-overlay tramp-rfn-eshadow-overlay
)
2502 (rfn-eshadow-update-overlay-hook nil
))
2503 (tramp-compat-funcall
2504 'move-overlay rfn-eshadow-overlay
(point-max) (point-max))
2505 (tramp-compat-funcall 'rfn-eshadow-update-overlay
)))))))
2507 (when (boundp 'rfn-eshadow-update-overlay-hook
)
2508 (add-hook 'rfn-eshadow-update-overlay-hook
2509 'tramp-rfn-eshadow-update-overlay
)
2510 (add-hook 'tramp-unload-hook
2512 (remove-hook 'rfn-eshadow-update-overlay-hook
2513 'tramp-rfn-eshadow-update-overlay
))))
2516 ;;; Integration of eshell.el:
2519 (defvar eshell-path-env
))
2521 ;; eshell.el keeps the path in `eshell-path-env'. We must change it
2522 ;; when `default-directory' points to another host.
2523 (defun tramp-eshell-directory-change ()
2524 "Set `eshell-path-env' to $PATH of the host related to `default-directory'."
2525 (setq eshell-path-env
2526 (if (file-remote-p default-directory
)
2527 (with-parsed-tramp-file-name default-directory nil
2530 (tramp-get-remote-path v
)
2534 (eval-after-load "esh-util"
2536 (tramp-eshell-directory-change)
2537 (add-hook 'eshell-directory-change-hook
2538 'tramp-eshell-directory-change
)
2539 (add-hook 'tramp-unload-hook
2541 (remove-hook 'eshell-directory-change-hook
2542 'tramp-eshell-directory-change
)))))
2545 ;;; File Name Handler Functions:
2547 (defun tramp-handle-make-symbolic-link
2548 (filename linkname
&optional ok-if-already-exists
)
2549 "Like `make-symbolic-link' for Tramp files.
2550 If LINKNAME is a non-Tramp file, it is used verbatim as the target of
2551 the symlink. If LINKNAME is a Tramp file, only the localname component is
2552 used as the target of the symlink.
2554 If LINKNAME is a Tramp file and the localname component is relative, then
2555 it is expanded first, before the localname component is taken. Note that
2556 this can give surprising results if the user/host for the source and
2557 target of the symlink differ."
2558 (with-parsed-tramp-file-name linkname l
2559 (let ((ln (tramp-get-remote-ln l
))
2560 (cwd (tramp-run-real-handler
2561 'file-name-directory
(list l-localname
))))
2565 "Making a symbolic link. ln(1) does not exist on the remote host."))
2567 ;; Do the 'confirm if exists' thing.
2568 (when (file-exists-p linkname
)
2570 (if (or (null ok-if-already-exists
) ; not allowed to exist
2571 (and (numberp ok-if-already-exists
)
2574 "File %s already exists; make it a link anyway? "
2577 l
'file-already-exists
"File %s already exists" l-localname
)
2578 (delete-file linkname
)))
2580 ;; If FILENAME is a Tramp name, use just the localname component.
2581 (when (tramp-tramp-file-p filename
)
2583 (tramp-file-name-localname
2584 (tramp-dissect-file-name (expand-file-name filename
)))))
2586 (tramp-flush-file-property l
(file-name-directory l-localname
))
2587 (tramp-flush-file-property l l-localname
)
2589 ;; Right, they are on the same host, regardless of user, method, etc.
2590 ;; We now make the link on the remote machine. This will occur as the user
2591 ;; that FILENAME belongs to.
2593 (tramp-send-command-and-check
2596 "cd %s && %s -sf %s %s"
2597 (tramp-shell-quote-argument cwd
)
2599 (tramp-shell-quote-argument filename
)
2600 (tramp-shell-quote-argument l-localname
))
2603 (defun tramp-handle-load (file &optional noerror nomessage nosuffix must-suffix
)
2604 "Like `load' for Tramp files."
2605 (with-parsed-tramp-file-name (expand-file-name file
) nil
2607 (cond ((file-exists-p (concat file
".elc"))
2608 (setq file
(concat file
".elc")))
2609 ((file-exists-p (concat file
".el"))
2610 (setq file
(concat file
".el")))))
2612 ;; The first condition is always true for absolute file names.
2613 ;; Included for safety's sake.
2614 (unless (or (file-name-directory file
)
2615 (string-match "\\.elc?\\'" file
))
2618 "File `%s' does not include a `.el' or `.elc' suffix" file
)))
2620 (when (not (file-exists-p file
))
2621 (tramp-error v
'file-error
"Cannot load nonexistent file `%s'" file
)))
2622 (if (not (file-exists-p file
))
2624 (let ((tramp-message-show-message (not nomessage
)))
2625 (with-progress-reporter v
0 (format "Loading %s" file
)
2626 (let ((local-copy (file-local-copy file
)))
2627 ;; MUST-SUFFIX doesn't exist on XEmacs, so let it default to nil.
2629 (load local-copy noerror t t
)
2630 (delete-file local-copy
)))))
2633 ;; Localname manipulation functions that grok Tramp localnames...
2634 (defun tramp-handle-file-name-as-directory (file)
2635 "Like `file-name-as-directory' but aware of Tramp files."
2636 ;; `file-name-as-directory' would be sufficient except localname is
2637 ;; the empty string.
2638 (let ((v (tramp-dissect-file-name file t
)))
2639 ;; Run the command on the localname portion only.
2640 (tramp-make-tramp-file-name
2641 (tramp-file-name-method v
)
2642 (tramp-file-name-user v
)
2643 (tramp-file-name-host v
)
2644 (tramp-run-real-handler
2645 'file-name-as-directory
(list (or (tramp-file-name-localname v
) ""))))))
2647 (defun tramp-handle-file-name-directory (file)
2648 "Like `file-name-directory' but aware of Tramp files."
2649 ;; Everything except the last filename thing is the directory. We
2650 ;; cannot apply `with-parsed-tramp-file-name', because this expands
2651 ;; the remote file name parts. This is a problem when we are in
2652 ;; file name completion.
2653 (let ((v (tramp-dissect-file-name file t
)))
2654 ;; Run the command on the localname portion only.
2655 (tramp-make-tramp-file-name
2656 (tramp-file-name-method v
)
2657 (tramp-file-name-user v
)
2658 (tramp-file-name-host v
)
2659 (tramp-run-real-handler
2660 'file-name-directory
(list (or (tramp-file-name-localname v
) ""))))))
2662 (defun tramp-handle-file-name-nondirectory (file)
2663 "Like `file-name-nondirectory' but aware of Tramp files."
2664 (with-parsed-tramp-file-name file nil
2665 (tramp-run-real-handler 'file-name-nondirectory
(list localname
))))
2667 (defun tramp-handle-file-truename (filename &optional counter prev-dirs
)
2668 "Like `file-truename' for Tramp files."
2669 (with-parsed-tramp-file-name (expand-file-name filename
) nil
2670 (with-file-property v localname
"file-truename"
2671 (let ((result nil
)) ; result steps in reverse order
2672 (tramp-message v
4 "Finding true name for `%s'" filename
)
2674 ;; Use GNU readlink --canonicalize-missing where available.
2675 ((tramp-get-remote-readlink v
)
2677 (tramp-send-command-and-read
2679 (format "echo \"\\\"`%s --canonicalize-missing %s`\\\"\""
2680 (tramp-get-remote-readlink v
)
2681 (tramp-shell-quote-argument localname
)))))
2683 ;; Use Perl implementation.
2684 ((and (tramp-get-remote-perl v
)
2685 (tramp-get-connection-property v
"perl-file-spec" nil
)
2686 (tramp-get-connection-property v
"perl-cwd-realpath" nil
))
2687 (tramp-maybe-send-script
2688 v tramp-perl-file-truename
"tramp_perl_file_truename")
2690 (tramp-send-command-and-read
2692 (format "tramp_perl_file_truename %s"
2693 (tramp-shell-quote-argument localname
)))))
2695 ;; Do it yourself. We bind `directory-sep-char' here for
2696 ;; XEmacs on Windows, which would otherwise use backslash.
2697 (t (let* ((directory-sep-char ?
/)
2698 (steps (tramp-compat-split-string localname
"/"))
2699 (localnamedir (tramp-run-real-handler
2700 'file-name-as-directory
(list localname
)))
2701 (is-dir (string= localname localnamedir
))
2704 ;; Don't make the following value larger than
2705 ;; necessary. People expect an error message in a
2706 ;; timely fashion when something is wrong;
2707 ;; otherwise they might think that Emacs is hung.
2708 ;; Of course, correctness has to come first.
2711 (while (and steps
(< numchase numchase-limit
))
2712 (setq thisstep
(pop steps
))
2715 (mapconcat 'identity
2716 (append '("") (reverse result
) (list thisstep
))
2718 (setq symlink-target
2719 (nth 0 (file-attributes
2720 (tramp-make-tramp-file-name
2722 (mapconcat 'identity
2727 (cond ((string= "." thisstep
)
2728 (tramp-message v
5 "Ignoring step `.'"))
2729 ((string= ".." thisstep
)
2730 (tramp-message v
5 "Processing step `..'")
2732 ((stringp symlink-target
)
2733 ;; It's a symlink, follow it.
2734 (tramp-message v
5 "Follow symlink to %s" symlink-target
)
2735 (setq numchase
(1+ numchase
))
2736 (when (file-name-absolute-p symlink-target
)
2738 ;; If the symlink was absolute, we'll get a string like
2739 ;; "/user@host:/some/target"; extract the
2740 ;; "/some/target" part from it.
2741 (when (tramp-tramp-file-p symlink-target
)
2742 (unless (tramp-equal-remote filename symlink-target
)
2745 "Symlink target `%s' on wrong host" symlink-target
))
2746 (setq symlink-target localname
))
2748 (append (tramp-compat-split-string
2753 (setq result
(cons thisstep result
)))))
2754 (when (>= numchase numchase-limit
)
2757 "Maximum number (%d) of symlinks exceeded" numchase-limit
))
2758 (setq result
(reverse result
))
2759 ;; Combine list to form string.
2762 (mapconcat 'identity
(cons "" result
) "/")
2764 (when (and is-dir
(or (string= "" result
)
2765 (not (string= (substring result -
1) "/"))))
2766 (setq result
(concat result
"/"))))))
2768 (tramp-message v
4 "True name of `%s' is `%s'" filename result
)
2769 (tramp-make-tramp-file-name method user host result
)))))
2773 (defun tramp-handle-file-exists-p (filename)
2774 "Like `file-exists-p' for Tramp files."
2775 (with-parsed-tramp-file-name filename nil
2776 (with-file-property v localname
"file-exists-p"
2777 (or (not (null (tramp-get-file-property
2778 v localname
"file-attributes-integer" nil
)))
2779 (not (null (tramp-get-file-property
2780 v localname
"file-attributes-string" nil
)))
2781 (zerop (tramp-send-command-and-check
2785 (tramp-get-file-exists-command v
)
2786 (tramp-shell-quote-argument localname
))))))))
2788 ;; Inodes don't exist for some file systems. Therefore we must
2789 ;; generate virtual ones. Used in `find-buffer-visiting'. The method
2790 ;; applied might be not so efficient (Ange-FTP uses hashes). But
2791 ;; performance isn't the major issue given that file transfer will
2793 (defvar tramp-inodes nil
2794 "Keeps virtual inodes numbers.")
2796 ;; Devices must distinguish physical file systems. The device numbers
2797 ;; provided by "lstat" aren't unique, because we operate on different hosts.
2798 ;; So we use virtual device numbers, generated by Tramp. Both Ange-FTP and
2799 ;; EFS use device number "-1". In order to be different, we use device number
2800 ;; (-1 . x), whereby "x" is unique for a given (method user host).
2801 (defvar tramp-devices nil
2802 "Keeps virtual device numbers.")
2804 ;; CCC: This should check for an error condition and signal failure
2805 ;; when something goes wrong.
2806 ;; Daniel Pittman <daniel@danann.net>
2807 (defun tramp-handle-file-attributes (filename &optional id-format
)
2808 "Like `file-attributes' for Tramp files."
2809 (unless id-format
(setq id-format
'integer
))
2810 ;; Don't modify `last-coding-system-used' by accident.
2811 (let ((last-coding-system-used last-coding-system-used
))
2812 (with-parsed-tramp-file-name (expand-file-name filename
) nil
2813 (with-file-property v localname
(format "file-attributes-%s" id-format
)
2815 (tramp-convert-file-attributes
2818 ((tramp-get-remote-stat v
)
2819 (tramp-do-file-attributes-with-stat v localname id-format
))
2820 ((tramp-get-remote-perl v
)
2821 (tramp-do-file-attributes-with-perl v localname id-format
))
2823 (tramp-do-file-attributes-with-ls v localname id-format
)))))))))
2825 (defun tramp-do-file-attributes-with-ls (vec localname
&optional id-format
)
2826 "Implement `file-attributes' for Tramp files using the ls(1) command."
2828 res-inode res-filemodes res-numlinks
2829 res-uid res-gid res-size res-symlink-target
)
2830 (tramp-message vec
5 "file attributes with ls: %s" localname
)
2833 (format "(%s %s || %s -h %s) && %s %s %s"
2834 (tramp-get-file-exists-command vec
)
2835 (tramp-shell-quote-argument localname
)
2836 (tramp-get-test-command vec
)
2837 (tramp-shell-quote-argument localname
)
2838 (tramp-get-ls-command vec
)
2839 (if (eq id-format
'integer
) "-ildn" "-ild")
2840 (tramp-shell-quote-argument localname
)))
2841 ;; parse `ls -l' output ...
2842 (with-current-buffer (tramp-get-buffer vec
)
2843 (when (> (buffer-size) 0)
2844 (goto-char (point-min))
2848 (read (current-buffer))
2849 (invalid-read-syntax
2850 (when (and (equal (cadr err
)
2851 "Integer constant overflow in reader")
2853 "^[0-9]+\\([0-9][0-9][0-9][0-9][0-9]\\)\\'"
2855 (let* ((big (read (substring (car (cddr err
)) 0
2856 (match-beginning 1))))
2857 (small (read (match-string 1 (car (cddr err
)))))
2858 (twiddle (/ small
65536)))
2859 (cons (+ big twiddle
)
2860 (- small
(* twiddle
65536))))))))
2861 ;; ... file mode flags
2862 (setq res-filemodes
(symbol-name (read (current-buffer))))
2864 (setq res-numlinks
(read (current-buffer)))
2866 (setq res-uid
(read (current-buffer)))
2867 (setq res-gid
(read (current-buffer)))
2868 (if (eq id-format
'integer
)
2870 (unless (numberp res-uid
) (setq res-uid -
1))
2871 (unless (numberp res-gid
) (setq res-gid -
1)))
2873 (unless (stringp res-uid
) (setq res-uid
(symbol-name res-uid
)))
2874 (unless (stringp res-gid
) (setq res-gid
(symbol-name res-gid
)))))
2876 (setq res-size
(read (current-buffer)))
2877 ;; From the file modes, figure out other stuff.
2878 (setq symlinkp
(eq ?l
(aref res-filemodes
0)))
2879 (setq dirp
(eq ?d
(aref res-filemodes
0)))
2880 ;; if symlink, find out file name pointed to
2882 (search-forward "-> ")
2883 (setq res-symlink-target
2884 (buffer-substring (point) (tramp-compat-line-end-position))))
2885 ;; return data gathered
2887 ;; 0. t for directory, string (name linked to) for symbolic
2889 (or dirp res-symlink-target
)
2890 ;; 1. Number of links to file.
2896 ;; 4. Last access time, as a list of two integers. First
2897 ;; integer has high-order 16 bits of time, second has low 16
2899 ;; 5. Last modification time, likewise.
2900 ;; 6. Last status change time, likewise.
2901 '(0 0) '(0 0) '(0 0) ;CCC how to find out?
2902 ;; 7. Size in bytes (-1, if number is out of range).
2904 ;; 8. File modes, as a string of ten letters or dashes as in ls -l.
2906 ;; 9. t if file's gid would change if file were deleted and
2907 ;; recreated. Will be set in `tramp-convert-file-attributes'
2909 ;; 10. inode number.
2911 ;; 11. Device number. Will be replaced by a virtual device number.
2915 (defun tramp-do-file-attributes-with-perl
2916 (vec localname
&optional id-format
)
2917 "Implement `file-attributes' for Tramp files using a Perl script."
2918 (tramp-message vec
5 "file attributes with perl: %s" localname
)
2919 (tramp-maybe-send-script
2920 vec tramp-perl-file-attributes
"tramp_perl_file_attributes")
2921 (tramp-send-command-and-read
2923 (format "tramp_perl_file_attributes %s %s"
2924 (tramp-shell-quote-argument localname
) id-format
)))
2926 (defun tramp-do-file-attributes-with-stat
2927 (vec localname
&optional id-format
)
2928 "Implement `file-attributes' for Tramp files using stat(1) command."
2929 (tramp-message vec
5 "file attributes with stat: %s" localname
)
2930 (tramp-send-command-and-read
2933 ;; On Opsware, pdksh (which is the true name of ksh there) doesn't
2934 ;; parse correctly the sequence "((". Therefore, we add a space.
2935 "( (%s %s || %s -h %s) && %s -c '( (\"%%N\") %%h %s %s %%Xe0 %%Ye0 %%Ze0 %%se0 \"%%A\" t %%ie0 -1)' %s || echo nil)"
2936 (tramp-get-file-exists-command vec
)
2937 (tramp-shell-quote-argument localname
)
2938 (tramp-get-test-command vec
)
2939 (tramp-shell-quote-argument localname
)
2940 (tramp-get-remote-stat vec
)
2941 (if (eq id-format
'integer
) "%u" "\"%U\"")
2942 (if (eq id-format
'integer
) "%g" "\"%G\"")
2943 (tramp-shell-quote-argument localname
))))
2945 (defun tramp-handle-set-visited-file-modtime (&optional time-list
)
2946 "Like `set-visited-file-modtime' for Tramp files."
2947 (unless (buffer-file-name)
2948 (error "Can't set-visited-file-modtime: buffer `%s' not visiting a file"
2951 (tramp-run-real-handler 'set-visited-file-modtime
(list time-list
))
2952 (let ((f (buffer-file-name))
2954 (with-parsed-tramp-file-name f nil
2955 (let* ((attr (file-attributes f
))
2956 ;; '(-1 65535) means file doesn't exists yet.
2957 (modtime (or (nth 5 attr
) '(-1 65535))))
2958 (when (boundp 'last-coding-system-used
)
2959 (setq coding-system-used
(symbol-value 'last-coding-system-used
)))
2960 ;; We use '(0 0) as a don't-know value. See also
2961 ;; `tramp-do-file-attributes-with-ls'.
2962 (if (not (equal modtime
'(0 0)))
2963 (tramp-run-real-handler 'set-visited-file-modtime
(list modtime
))
2967 (format "%s -ild %s"
2968 (tramp-get-ls-command v
)
2969 (tramp-shell-quote-argument localname
)))
2970 (setq attr
(buffer-substring (point)
2971 (progn (end-of-line) (point)))))
2972 (tramp-set-file-property
2973 v localname
"visited-file-modtime-ild" attr
))
2974 (when (boundp 'last-coding-system-used
)
2975 (set 'last-coding-system-used coding-system-used
))
2978 ;; This function makes the same assumption as
2979 ;; `tramp-handle-set-visited-file-modtime'.
2980 (defun tramp-handle-verify-visited-file-modtime (buf)
2981 "Like `verify-visited-file-modtime' for Tramp files.
2982 At the time `verify-visited-file-modtime' calls this function, we
2983 already know that the buffer is visiting a file and that
2984 `visited-file-modtime' does not return 0. Do not call this
2985 function directly, unless those two cases are already taken care
2987 (with-current-buffer buf
2988 (let ((f (buffer-file-name)))
2989 ;; There is no file visiting the buffer, or the buffer has no
2990 ;; recorded last modification time, or there is no established
2993 (eq (visited-file-modtime) 0)
2994 (not (tramp-file-name-handler 'file-remote-p f nil
'connected
)))
2996 (with-parsed-tramp-file-name f nil
2997 (tramp-flush-file-property v localname
)
2998 (let* ((attr (file-attributes f
))
2999 (modtime (nth 5 attr
))
3000 (mt (visited-file-modtime)))
3003 ;; File exists, and has a known modtime.
3004 ((and attr
(not (equal modtime
'(0 0))))
3005 (< (abs (tramp-time-diff
3007 ;; For compatibility, deal with both the old
3008 ;; (HIGH . LOW) and the new (HIGH LOW) return
3009 ;; values of `visited-file-modtime'.
3011 (list (car mt
) (cdr mt
))
3014 ;; Modtime has the don't know value.
3018 (format "%s -ild %s"
3019 (tramp-get-ls-command v
)
3020 (tramp-shell-quote-argument localname
)))
3021 (with-current-buffer (tramp-get-buffer v
)
3022 (setq attr
(buffer-substring
3023 (point) (progn (end-of-line) (point)))))
3026 (tramp-get-file-property
3027 v localname
"visited-file-modtime-ild" "")))
3028 ;; If file does not exist, say it is not modified if and
3029 ;; only if that agrees with the buffer's record.
3030 (t (equal mt
'(-1 65535))))))))))
3032 (defun tramp-handle-set-file-modes (filename mode
)
3033 "Like `set-file-modes' for Tramp files."
3034 (with-parsed-tramp-file-name filename nil
3035 (tramp-flush-file-property v localname
)
3036 (unless (zerop (tramp-send-command-and-check
3038 (format "chmod %s %s"
3039 (tramp-decimal-to-octal mode
)
3040 (tramp-shell-quote-argument localname
))))
3041 ;; FIXME: extract the proper text from chmod's stderr.
3043 v
'file-error
"Error while changing file's mode %s" filename
))))
3045 (defun tramp-handle-set-file-times (filename &optional time
)
3046 "Like `set-file-times' for Tramp files."
3048 (if (file-remote-p filename
)
3049 (with-parsed-tramp-file-name filename nil
3050 (tramp-flush-file-property v localname
)
3051 (let ((time (if (or (null time
) (equal time
'(0 0)))
3054 ;; With GNU Emacs, `format-time-string' has an optional
3055 ;; parameter UNIVERSAL. This is preferred, because we
3056 ;; could handle the case when the remote host is
3057 ;; located in a different time zone as the local host.
3058 (utc (not (featurep 'xemacs
))))
3059 (tramp-send-command-and-check
3060 v
(format "%s touch -t %s %s"
3061 (if utc
"TZ=UTC; export TZ;" "")
3063 (format-time-string "%Y%m%d%H%M.%S" time t
)
3064 (format-time-string "%Y%m%d%H%M.%S" time
))
3065 (tramp-shell-quote-argument localname
)))))
3067 ;; We handle also the local part, because in older Emacsen,
3068 ;; without `set-file-times', this function is an alias for this.
3069 ;; We are local, so we don't need the UTC settings.
3070 (tramp-local-call-process
3071 "touch" nil nil nil
"-t"
3072 (format-time-string "%Y%m%d%H%M.%S" time
)
3073 (tramp-shell-quote-argument filename
)))))
3075 (defun tramp-set-file-uid-gid (filename &optional uid gid
)
3076 "Set the ownership for FILENAME.
3077 If UID and GID are provided, these values are used; otherwise uid
3078 and gid of the corresponding user is taken. Both parameters must be integers."
3079 ;; Modern Unices allow chown only for root. So we might need
3080 ;; another implementation, see `dired-do-chown'. OTOH, it is mostly
3081 ;; working with su(do)? when it is needed, so it shall succeed in
3082 ;; the majority of cases.
3083 ;; Don't modify `last-coding-system-used' by accident.
3084 (let ((last-coding-system-used last-coding-system-used
))
3085 (if (file-remote-p filename
)
3086 (with-parsed-tramp-file-name filename nil
3087 (if (and (zerop (user-uid)) (tramp-local-host-p v
))
3088 ;; If we are root on the local host, we can do it directly.
3089 (tramp-set-file-uid-gid localname uid gid
)
3090 (let ((uid (or (and (integerp uid
) uid
)
3091 (tramp-get-remote-uid v
'integer
)))
3092 (gid (or (and (integerp gid
) gid
)
3093 (tramp-get-remote-gid v
'integer
))))
3096 "chown %d:%d %s" uid gid
3097 (tramp-shell-quote-argument localname
))))))
3099 ;; We handle also the local part, because there doesn't exist
3100 ;; `set-file-uid-gid'. On W32 "chown" might not work.
3101 (let ((uid (or (and (integerp uid
) uid
) (tramp-get-local-uid 'integer
)))
3102 (gid (or (and (integerp gid
) gid
) (tramp-get-local-gid 'integer
))))
3103 (tramp-local-call-process
3105 (format "%d:%d" uid gid
) (tramp-shell-quote-argument filename
))))))
3107 (defun tramp-remote-selinux-p (vec)
3108 "Check, whether SELINUX is enabled on the remote host."
3109 (with-connection-property (tramp-get-connection-process vec
) "selinux-p"
3110 (let ((result (tramp-find-executable
3111 vec
"getenforce" (tramp-get-remote-path vec
) t t
)))
3114 (tramp-send-command-and-read
3115 vec
(format "echo \\\"`%S`\\\"" result
))
3118 (defun tramp-handle-file-selinux-context (filename)
3119 "Like `file-selinux-context' for Tramp files."
3120 (with-parsed-tramp-file-name filename nil
3121 (with-file-property v localname
"file-selinux-context"
3122 (let ((context '(nil nil nil nil
))
3123 (regexp (concat "\\([a-z0-9_]+\\):" "\\([a-z0-9_]+\\):"
3124 "\\([a-z0-9_]+\\):" "\\([a-z0-9_]+\\)")))
3125 (when (and (tramp-remote-selinux-p v
)
3126 (zerop (tramp-send-command-and-check
3129 (tramp-get-ls-command v
)
3130 (tramp-shell-quote-argument localname
)))))
3131 (with-current-buffer (tramp-get-connection-buffer v
)
3132 (goto-char (point-min))
3133 (when (re-search-forward regexp
(tramp-compat-line-end-position) t
)
3134 (setq context
(list (match-string 1) (match-string 2)
3135 (match-string 3) (match-string 4))))))
3136 ;; Return the context.
3139 (defun tramp-handle-set-file-selinux-context (filename context
)
3140 "Like `set-file-selinux-context' for Tramp files."
3141 (with-parsed-tramp-file-name filename nil
3142 (if (and (consp context
)
3143 (tramp-remote-selinux-p v
)
3144 (zerop (tramp-send-command-and-check
3145 v
(format "chcon %s %s %s %s %s"
3146 (if (stringp (nth 0 context
))
3147 (format "--user=%s" (nth 0 context
)) "")
3148 (if (stringp (nth 1 context
))
3149 (format "--role=%s" (nth 1 context
)) "")
3150 (if (stringp (nth 2 context
))
3151 (format "--type=%s" (nth 2 context
)) "")
3152 (if (stringp (nth 3 context
))
3153 (format "--range=%s" (nth 3 context
)) "")
3154 (tramp-shell-quote-argument localname
)))))
3155 (tramp-set-file-property v localname
"file-selinux-context" context
)
3156 (tramp-set-file-property v localname
"file-selinux-context" 'undef
)))
3157 ;; We always return nil.
3160 ;; Simple functions using the `test' command.
3162 (defun tramp-handle-file-executable-p (filename)
3163 "Like `file-executable-p' for Tramp files."
3164 (with-parsed-tramp-file-name filename nil
3165 (with-file-property v localname
"file-executable-p"
3166 ;; Examine `file-attributes' cache to see if request can be
3167 ;; satisfied without remote operation.
3168 (or (tramp-check-cached-permissions v ?x
)
3169 (zerop (tramp-run-test "-x" filename
))))))
3171 (defun tramp-handle-file-readable-p (filename)
3172 "Like `file-readable-p' for Tramp files."
3173 (with-parsed-tramp-file-name filename nil
3174 (with-file-property v localname
"file-readable-p"
3175 ;; Examine `file-attributes' cache to see if request can be
3176 ;; satisfied without remote operation.
3177 (or (tramp-check-cached-permissions v ?r
)
3178 (zerop (tramp-run-test "-r" filename
))))))
3180 ;; When the remote shell is started, it looks for a shell which groks
3181 ;; tilde expansion. Here, we assume that all shells which grok tilde
3182 ;; expansion will also provide a `test' command which groks `-nt' (for
3183 ;; newer than). If this breaks, tell me about it and I'll try to do
3184 ;; something smarter about it.
3185 (defun tramp-handle-file-newer-than-file-p (file1 file2
)
3186 "Like `file-newer-than-file-p' for Tramp files."
3187 (cond ((not (file-exists-p file1
))
3189 ((not (file-exists-p file2
))
3191 ;; We are sure both files exist at this point.
3194 ;; We try to get the mtime of both files. If they are not
3195 ;; equal to the "dont-know" value, then we subtract the times
3196 ;; and obtain the result.
3197 (let ((fa1 (file-attributes file1
))
3198 (fa2 (file-attributes file2
)))
3199 (if (and (not (equal (nth 5 fa1
) '(0 0)))
3200 (not (equal (nth 5 fa2
) '(0 0))))
3201 (> 0 (tramp-time-diff (nth 5 fa2
) (nth 5 fa1
)))
3202 ;; If one of them is the dont-know value, then we can
3203 ;; still try to run a shell command on the remote host.
3204 ;; However, this only works if both files are Tramp
3205 ;; files and both have the same method, same user, same
3207 (unless (tramp-equal-remote file1 file2
)
3208 (with-parsed-tramp-file-name
3209 (if (tramp-tramp-file-p file1
) file1 file2
) nil
3212 "Files %s and %s must have same method, user, host"
3214 (with-parsed-tramp-file-name file1 nil
3215 (zerop (tramp-run-test2
3216 (tramp-get-test-nt-command v
) file1 file2
)))))))))
3218 ;; Functions implemented using the basic functions above.
3220 (defun tramp-handle-file-modes (filename)
3221 "Like `file-modes' for Tramp files."
3222 (let ((truename (or (file-truename filename
) filename
)))
3223 (when (file-exists-p truename
)
3224 (tramp-mode-string-to-int (nth 8 (file-attributes truename
))))))
3226 (defun tramp-default-file-modes (filename)
3227 "Return file modes of FILENAME as integer.
3228 If the file modes of FILENAME cannot be determined, return the
3229 value of `default-file-modes', without execute permissions."
3230 (or (file-modes filename
)
3231 (logand (default-file-modes) (tramp-octal-to-decimal "0666"))))
3233 (defun tramp-handle-file-directory-p (filename)
3234 "Like `file-directory-p' for Tramp files."
3235 ;; Care must be taken that this function returns `t' for symlinks
3236 ;; pointing to directories. Surely the most obvious implementation
3237 ;; would be `test -d', but that returns false for such symlinks.
3238 ;; CCC: Stefan Monnier says that `test -d' follows symlinks. And
3239 ;; I now think he's right. So we could be using `test -d', couldn't
3242 ;; Alternatives: `cd %s', `test -d %s'
3243 (with-parsed-tramp-file-name filename nil
3244 (with-file-property v localname
"file-directory-p"
3245 (zerop (tramp-run-test "-d" filename
)))))
3247 (defun tramp-handle-file-regular-p (filename)
3248 "Like `file-regular-p' for Tramp files."
3249 (and (file-exists-p filename
)
3250 (eq ?-
(aref (nth 8 (file-attributes filename
)) 0))))
3252 (defun tramp-handle-file-symlink-p (filename)
3253 "Like `file-symlink-p' for Tramp files."
3254 (with-parsed-tramp-file-name filename nil
3255 (let ((x (car (file-attributes filename
))))
3257 ;; When Tramp is running on VMS, then `file-name-absolute-p'
3258 ;; might do weird things.
3259 (if (file-name-absolute-p x
)
3260 (tramp-make-tramp-file-name method user host x
)
3263 (defun tramp-handle-file-writable-p (filename)
3264 "Like `file-writable-p' for Tramp files."
3265 (with-parsed-tramp-file-name filename nil
3266 (with-file-property v localname
"file-writable-p"
3267 (if (file-exists-p filename
)
3268 ;; Examine `file-attributes' cache to see if request can be
3269 ;; satisfied without remote operation.
3270 (or (tramp-check-cached-permissions v ?w
)
3271 (zerop (tramp-run-test "-w" filename
)))
3272 ;; If file doesn't exist, check if directory is writable.
3273 (and (zerop (tramp-run-test
3274 "-d" (file-name-directory filename
)))
3275 (zerop (tramp-run-test
3276 "-w" (file-name-directory filename
))))))))
3278 (defun tramp-handle-file-ownership-preserved-p (filename)
3279 "Like `file-ownership-preserved-p' for Tramp files."
3280 (with-parsed-tramp-file-name filename nil
3281 (with-file-property v localname
"file-ownership-preserved-p"
3282 (let ((attributes (file-attributes filename
)))
3283 ;; Return t if the file doesn't exist, since it's true that no
3284 ;; information would be lost by an (attempted) delete and create.
3285 (or (null attributes
)
3286 (= (nth 2 attributes
) (tramp-get-remote-uid v
'integer
)))))))
3288 ;; Other file name ops.
3290 (defun tramp-handle-directory-file-name (directory)
3291 "Like `directory-file-name' for Tramp files."
3292 ;; If localname component of filename is "/", leave it unchanged.
3293 ;; Otherwise, remove any trailing slash from localname component.
3294 ;; Method, host, etc, are unchanged. Does it make sense to try
3295 ;; to avoid parsing the filename?
3296 (with-parsed-tramp-file-name directory nil
3297 (if (and (not (zerop (length localname
)))
3298 (eq (aref localname
(1- (length localname
))) ?
/)
3299 (not (string= localname
"/")))
3300 (substring directory
0 -
1)
3303 ;; Directory listings.
3305 (defun tramp-handle-directory-files
3306 (directory &optional full match nosort files-only
)
3307 "Like `directory-files' for Tramp files."
3308 ;; FILES-ONLY is valid for XEmacs only.
3309 (when (file-directory-p directory
)
3310 (setq directory
(file-name-as-directory (expand-file-name directory
)))
3311 (let ((temp (nreverse (file-name-all-completions "" directory
)))
3315 (setq item
(directory-file-name (pop temp
)))
3316 (when (and (or (null match
) (string-match match item
))
3317 (or (null files-only
)
3319 (and (equal files-only t
) (file-regular-p item
))
3320 ;; Directories only.
3321 (file-directory-p item
)))
3322 (push (if full
(concat directory item
) item
)
3324 (if nosort result
(sort result
'string
<)))))
3326 (defun tramp-handle-directory-files-and-attributes
3327 (directory &optional full match nosort id-format
)
3328 "Like `directory-files-and-attributes' for Tramp files."
3329 (unless id-format
(setq id-format
'integer
))
3330 (when (file-directory-p directory
)
3331 (setq directory
(expand-file-name directory
))
3334 (with-parsed-tramp-file-name directory nil
3337 (format "directory-files-and-attributes-%s" id-format
)
3342 (tramp-convert-file-attributes v
(cdr x
))))
3344 ((tramp-get-remote-stat v
)
3345 (tramp-do-directory-files-and-attributes-with-stat
3346 v localname id-format
))
3347 ((tramp-get-remote-perl v
)
3348 (tramp-do-directory-files-and-attributes-with-perl
3349 v localname id-format
)))))))))
3353 (setq item
(pop temp
))
3354 (when (or (null match
) (string-match match
(car item
)))
3356 (setcar item
(expand-file-name (car item
) directory
)))
3357 (push item result
)))
3361 (sort result
(lambda (x y
) (string< (car x
) (car y
))))))))
3363 (defun tramp-do-directory-files-and-attributes-with-perl
3364 (vec localname
&optional id-format
)
3365 "Implement `directory-files-and-attributes' for Tramp files using a Perl script."
3366 (tramp-message vec
5 "directory-files-and-attributes with perl: %s" localname
)
3367 (tramp-maybe-send-script
3368 vec tramp-perl-directory-files-and-attributes
3369 "tramp_perl_directory_files_and_attributes")
3371 (tramp-send-command-and-read
3373 (format "tramp_perl_directory_files_and_attributes %s %s"
3374 (tramp-shell-quote-argument localname
) id-format
))))
3375 (when (stringp object
) (tramp-error vec
'file-error object
))
3378 (defun tramp-do-directory-files-and-attributes-with-stat
3379 (vec localname
&optional id-format
)
3380 "Implement `directory-files-and-attributes' for Tramp files using stat(1) command."
3381 (tramp-message vec
5 "directory-files-and-attributes with stat: %s" localname
)
3382 (tramp-send-command-and-read
3386 ;; We must care about filenames with spaces, or starting with
3387 ;; "-"; this would confuse xargs. "ls -aQ" might be a solution,
3388 ;; but it does not work on all remote systems. Therefore, we
3389 ;; quote the filenames via sed.
3390 "cd %s; echo \"(\"; (%s -a | sed -e s/\\$/\\\"/g -e s/^/\\\"/g | xargs "
3391 "%s -c '(\"%%n\" (\"%%N\") %%h %s %s %%Xe0 %%Ye0 %%Ze0 %%se0 \"%%A\" t %%ie0 -1)'); "
3393 (tramp-shell-quote-argument localname
)
3394 (tramp-get-ls-command vec
)
3395 (tramp-get-remote-stat vec
)
3396 (if (eq id-format
'integer
) "%u" "\"%U\"")
3397 (if (eq id-format
'integer
) "%g" "\"%G\""))))
3399 ;; This function should return "foo/" for directories and "bar" for
3401 (defun tramp-handle-file-name-all-completions (filename directory
)
3402 "Like `file-name-all-completions' for Tramp files."
3403 (unless (save-match-data (string-match "/" filename
))
3404 (with-parsed-tramp-file-name (expand-file-name directory
) nil
3413 ;; Ignore if expired
3414 (or (not (integerp tramp-completion-reread-directory-timeout
))
3415 (<= (tramp-time-diff
3417 (tramp-get-file-property
3418 v localname
"last-completion" '(0 0 0)))
3419 tramp-completion-reread-directory-timeout
))
3421 ;; Try cache entries for filename, filename with last
3422 ;; character removed, filename with last two characters
3423 ;; removed, ..., and finally the empty string - all
3424 ;; concatenated to the local directory name
3426 ;; This is inefficient for very long filenames, pity
3427 ;; `reduce' is not available...
3434 (tramp-get-file-property
3436 (concat localname
(substring filename
0 x
))
3437 "file-name-all-completions"
3439 (when cache-hit
(list cache-hit
))))
3440 (tramp-compat-number-sequence (length filename
) 0 -
1)))))
3442 ;; Cache expired or no matching cache entry found so we need
3443 ;; to perform a remote operation
3445 ;; Get a list of directories and files, including reliably
3446 ;; tagging the directories with a trailing '/'. Because I
3447 ;; rock. --daniel@danann.net
3449 ;; Changed to perform `cd' in the same remote op and only
3450 ;; get entries starting with `filename'. Capture any `cd'
3451 ;; error messages. Ensure any `cd' and `echo' aliases are
3455 (if (tramp-get-remote-perl v
)
3457 (tramp-maybe-send-script
3458 v tramp-perl-file-name-all-completions
3459 "tramp_perl_file_name_all_completions")
3460 (format "tramp_perl_file_name_all_completions %s %s %d"
3461 (tramp-shell-quote-argument localname
)
3462 (tramp-shell-quote-argument filename
)
3464 ;; `read-file-name-completion-ignore-case'
3465 ;; is introduced with Emacs 22.1.
3467 'read-file-name-completion-ignore-case
)
3468 'read-file-name-completion-ignore-case
3469 'completion-ignore-case
))
3473 "(\\cd %s 2>&1 && (%s %s -a 2>/dev/null"
3474 ;; `ls' with wildcard might fail with `Argument
3475 ;; list too long' error in some corner cases; if
3476 ;; `ls' fails after `cd' succeeded, chances are
3477 ;; that's the case, so let's retry without
3478 ;; wildcard. This will return "too many" entries
3479 ;; but that isn't harmful.
3480 " || %s -a 2>/dev/null)"
3481 " | while read f; do"
3482 " if %s -d \"$f\" 2>/dev/null;"
3483 " then \\echo \"$f/\"; else \\echo \"$f\"; fi; done"
3484 " && \\echo ok) || \\echo fail")
3485 (tramp-shell-quote-argument localname
)
3486 (tramp-get-ls-command v
)
3487 ;; When `filename' is empty, just `ls' without
3488 ;; filename argument is more efficient than `ls *'
3489 ;; for very large directories and might avoid the
3490 ;; `Argument list too long' error.
3492 ;; With and only with wildcard, we need to add
3493 ;; `-d' to prevent `ls' from descending into
3495 (if (zerop (length filename
))
3497 (concat (tramp-shell-quote-argument filename
) "* -d"))
3498 (tramp-get-ls-command v
)
3499 (tramp-get-test-command v
))))
3501 ;; Now grab the output.
3502 (with-current-buffer (tramp-get-buffer v
)
3503 (goto-char (point-max))
3505 ;; Check result code, found in last line of output
3507 (if (looking-at "^fail$")
3509 ;; Grab error message from line before last line
3510 ;; (it was put there by `cd 2>&1')
3514 "tramp-handle-file-name-all-completions: %s"
3516 (point) (tramp-compat-line-end-position))))
3517 ;; For peace of mind, if buffer doesn't end in `fail'
3518 ;; then it should end in `ok'. If neither are in the
3519 ;; buffer something went seriously wrong on the remote
3521 (unless (looking-at "^ok$")
3525 tramp-handle-file-name-all-completions: internal error accessing `%s': `%s'"
3526 (tramp-shell-quote-argument localname
) (buffer-string))))
3528 (while (zerop (forward-line -
1))
3529 (push (buffer-substring
3530 (point) (tramp-compat-line-end-position))
3533 ;; Because the remote op went through OK we know the
3534 ;; directory we `cd'-ed to exists
3535 (tramp-set-file-property
3536 v localname
"file-exists-p" t
)
3538 ;; Because the remote op went through OK we know every
3539 ;; file listed by `ls' exists.
3540 (mapc (lambda (entry)
3541 (tramp-set-file-property
3542 v
(concat localname entry
) "file-exists-p" t
))
3545 (tramp-set-file-property
3546 v localname
"last-completion" (current-time))
3548 ;; Store result in the cache
3549 (tramp-set-file-property
3550 v
(concat localname filename
)
3551 "file-name-all-completions"
3554 (defun tramp-handle-file-name-completion
3555 (filename directory
&optional predicate
)
3556 "Like `file-name-completion' for Tramp files."
3557 (unless (tramp-tramp-file-p directory
)
3559 "tramp-handle-file-name-completion invoked on non-tramp directory `%s'"
3563 (mapcar 'list
(file-name-all-completions filename directory
))
3565 (lambda (x) (funcall predicate
(expand-file-name (car x
) directory
))))))
3569 (defun tramp-handle-add-name-to-file
3570 (filename newname
&optional ok-if-already-exists
)
3571 "Like `add-name-to-file' for Tramp files."
3572 (unless (tramp-equal-remote filename newname
)
3573 (with-parsed-tramp-file-name
3574 (if (tramp-tramp-file-p filename
) filename newname
) nil
3577 "add-name-to-file: %s"
3578 "only implemented for same method, same user, same host")))
3579 (with-parsed-tramp-file-name filename v1
3580 (with-parsed-tramp-file-name newname v2
3581 (let ((ln (when v1
(tramp-get-remote-ln v1
))))
3582 (when (and (not ok-if-already-exists
)
3583 (file-exists-p newname
)
3584 (not (numberp ok-if-already-exists
))
3587 "File %s already exists; make it a new name anyway? "
3591 "add-name-to-file: file %s already exists" newname
))
3592 (tramp-flush-file-property v2
(file-name-directory v2-localname
))
3593 (tramp-flush-file-property v2 v2-localname
)
3594 (tramp-barf-unless-okay
3596 (format "%s %s %s" ln
(tramp-shell-quote-argument v1-localname
)
3597 (tramp-shell-quote-argument v2-localname
))
3598 "error with add-name-to-file, see buffer `%s' for details"
3601 (defun tramp-handle-copy-file
3602 (filename newname
&optional ok-if-already-exists keep-date
3603 preserve-uid-gid preserve-selinux-context
)
3604 "Like `copy-file' for Tramp files."
3605 (setq filename
(expand-file-name filename
))
3606 (setq newname
(expand-file-name newname
))
3608 ;; At least one file a Tramp file?
3609 ((or (tramp-tramp-file-p filename
)
3610 (tramp-tramp-file-p newname
))
3611 (tramp-do-copy-or-rename-file
3612 'copy filename newname ok-if-already-exists keep-date
3613 preserve-uid-gid preserve-selinux-context
))
3615 (preserve-selinux-context
3616 (tramp-run-real-handler
3618 (list filename newname ok-if-already-exists keep-date
3619 preserve-uid-gid preserve-selinux-context
)))
3621 (tramp-run-real-handler
3623 (list filename newname ok-if-already-exists keep-date preserve-uid-gid
)))
3625 (tramp-run-real-handler
3626 'copy-file
(list filename newname ok-if-already-exists keep-date
)))))
3628 (defun tramp-handle-copy-directory (dirname newname
&optional keep-date parents
)
3629 "Like `copy-directory' for Tramp files."
3630 (let ((t1 (tramp-tramp-file-p dirname
))
3631 (t2 (tramp-tramp-file-p newname
)))
3632 (with-parsed-tramp-file-name (if t1 dirname newname
) nil
3633 (if (and (tramp-get-method-parameter method
'tramp-copy-recursive
)
3634 ;; When DIRNAME and NEWNAME are remote, they must have
3636 (or (null t1
) (null t2
)
3638 (tramp-file-name-method (tramp-dissect-file-name dirname
))
3639 (tramp-file-name-method (tramp-dissect-file-name newname
)))))
3640 ;; scp or rsync DTRT.
3642 (setq dirname
(directory-file-name (expand-file-name dirname
))
3643 newname
(directory-file-name (expand-file-name newname
)))
3644 (if (and (file-directory-p newname
)
3645 (not (string-equal (file-name-nondirectory dirname
)
3646 (file-name-nondirectory newname
))))
3649 (file-name-nondirectory dirname
) newname
)))
3650 (if (not (file-directory-p (file-name-directory newname
)))
3651 (make-directory (file-name-directory newname
) parents
))
3652 (tramp-do-copy-or-rename-file-out-of-band
3653 'copy dirname newname keep-date
))
3654 ;; We must do it file-wise.
3655 (tramp-run-real-handler
3656 'copy-directory
(list dirname newname keep-date parents
)))
3658 ;; When newname did exist, we have wrong cached values.
3660 (with-parsed-tramp-file-name newname nil
3661 (tramp-flush-file-property v
(file-name-directory localname
))
3662 (tramp-flush-file-property v localname
))))))
3664 (defun tramp-handle-rename-file
3665 (filename newname
&optional ok-if-already-exists
)
3666 "Like `rename-file' for Tramp files."
3667 ;; Check if both files are local -- invoke normal rename-file.
3668 ;; Otherwise, use Tramp from local system.
3669 (setq filename
(expand-file-name filename
))
3670 (setq newname
(expand-file-name newname
))
3671 ;; At least one file a Tramp file?
3672 (if (or (tramp-tramp-file-p filename
)
3673 (tramp-tramp-file-p newname
))
3674 (tramp-do-copy-or-rename-file
3675 'rename filename newname ok-if-already-exists t t
)
3676 (tramp-run-real-handler
3677 'rename-file
(list filename newname ok-if-already-exists
))))
3679 (defun tramp-do-copy-or-rename-file
3680 (op filename newname
&optional ok-if-already-exists keep-date
3681 preserve-uid-gid preserve-selinux-context
)
3682 "Copy or rename a remote file.
3683 OP must be `copy' or `rename' and indicates the operation to perform.
3684 FILENAME specifies the file to copy or rename, NEWNAME is the name of
3685 the new file (for copy) or the new name of the file (for rename).
3686 OK-IF-ALREADY-EXISTS means don't barf if NEWNAME exists already.
3687 KEEP-DATE means to make sure that NEWNAME has the same timestamp
3688 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
3689 the uid and gid if both files are on the same host.
3690 PRESERVE-SELINUX-CONTEXT activates selinux commands.
3692 This function is invoked by `tramp-handle-copy-file' and
3693 `tramp-handle-rename-file'. It is an error if OP is neither of `copy'
3694 and `rename'. FILENAME and NEWNAME must be absolute file names."
3695 (unless (memq op
'(copy rename
))
3696 (error "Unknown operation `%s', must be `copy' or `rename'" op
))
3697 (let ((t1 (tramp-tramp-file-p filename
))
3698 (t2 (tramp-tramp-file-p newname
))
3699 (context (and preserve-selinux-context
3700 (apply 'file-selinux-context
(list filename
))))
3703 (with-parsed-tramp-file-name (if t1 filename newname
) nil
3704 (when (and (not ok-if-already-exists
) (file-exists-p newname
))
3706 v
'file-already-exists
"File %s already exists" newname
))
3708 (with-progress-reporter
3709 v
0 (format "%s %s to %s"
3710 (if (eq op
'copy
) "Copying" "Renaming")
3714 ;; Both are Tramp files.
3716 (with-parsed-tramp-file-name filename v1
3717 (with-parsed-tramp-file-name newname v2
3719 ;; Shortcut: if method, host, user are the same for
3720 ;; both files, we invoke `cp' or `mv' on the remote
3722 ((tramp-equal-remote filename newname
)
3723 (tramp-do-copy-or-rename-file-directly
3725 ok-if-already-exists keep-date preserve-uid-gid
))
3727 ;; Try out-of-band operation.
3728 ((tramp-method-out-of-band-p
3729 v1
(nth 7 (file-attributes filename
)))
3730 (tramp-do-copy-or-rename-file-out-of-band
3731 op filename newname keep-date
))
3733 ;; No shortcut was possible. So we copy the file
3734 ;; first. If the operation was `rename', we go back
3735 ;; and delete the original file (if the copy was
3736 ;; successful). The approach is simple-minded: we
3737 ;; create a new buffer, insert the contents of the
3738 ;; source file into it, then write out the buffer to
3739 ;; the target file. The advantage is that it doesn't
3740 ;; matter which filename handlers are used for the
3741 ;; source and target file.
3743 (tramp-do-copy-or-rename-file-via-buffer
3744 op filename newname keep-date
))))))
3746 ;; One file is a Tramp file, the other one is local.
3749 ;; Fast track on local machine.
3750 ((tramp-local-host-p v
)
3751 (tramp-do-copy-or-rename-file-directly
3753 ok-if-already-exists keep-date preserve-uid-gid
))
3755 ;; If the Tramp file has an out-of-band method, the
3756 ;; corresponding copy-program can be invoked.
3757 ((tramp-method-out-of-band-p v
(nth 7 (file-attributes filename
)))
3758 (tramp-do-copy-or-rename-file-out-of-band
3759 op filename newname keep-date
))
3761 ;; Use the inline method via a Tramp buffer.
3762 (t (tramp-do-copy-or-rename-file-via-buffer
3763 op filename newname keep-date
))))
3766 ;; One of them must be a Tramp file.
3767 (error "Tramp implementation says this cannot happen")))
3769 ;; Handle `preserve-selinux-context'.
3770 (when context
(apply 'set-file-selinux-context
(list newname context
)))
3772 ;; In case of `rename', we must flush the cache of the source file.
3773 (when (and t1
(eq op
'rename
))
3774 (with-parsed-tramp-file-name filename v1
3775 (tramp-flush-file-property v1
(file-name-directory localname
))
3776 (tramp-flush-file-property v1 localname
)))
3778 ;; When newname did exist, we have wrong cached values.
3780 (with-parsed-tramp-file-name newname v2
3781 (tramp-flush-file-property v2
(file-name-directory localname
))
3782 (tramp-flush-file-property v2 localname
)))))))
3784 (defun tramp-do-copy-or-rename-file-via-buffer (op filename newname keep-date
)
3785 "Use an Emacs buffer to copy or rename a file.
3786 First arg OP is either `copy' or `rename' and indicates the operation.
3787 FILENAME is the source file, NEWNAME the target file.
3788 KEEP-DATE is non-nil if NEWNAME should have the same timestamp as FILENAME."
3790 ;; We must disable multibyte, because binary data shall not be
3792 (set-buffer-multibyte nil
)
3793 (let ((coding-system-for-read 'binary
)
3794 (jka-compr-inhibit t
))
3795 (insert-file-contents-literally filename
))
3796 ;; We don't want the target file to be compressed, so we let-bind
3797 ;; `jka-compr-inhibit' to t.
3798 (let ((coding-system-for-write 'binary
)
3799 (jka-compr-inhibit t
))
3800 (write-region (point-min) (point-max) newname
)))
3801 ;; KEEP-DATE handling.
3802 (when keep-date
(set-file-times newname
(nth 5 (file-attributes filename
))))
3804 (set-file-modes newname
(tramp-default-file-modes filename
))
3805 ;; If the operation was `rename', delete the original file.
3806 (unless (eq op
'copy
) (delete-file filename
)))
3808 (defun tramp-do-copy-or-rename-file-directly
3809 (op filename newname ok-if-already-exists keep-date preserve-uid-gid
)
3810 "Invokes `cp' or `mv' on the remote system.
3811 OP must be one of `copy' or `rename', indicating `cp' or `mv',
3812 respectively. FILENAME specifies the file to copy or rename,
3813 NEWNAME is the name of the new file (for copy) or the new name of
3814 the file (for rename). Both files must reside on the same host.
3815 KEEP-DATE means to make sure that NEWNAME has the same timestamp
3816 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
3817 the uid and gid from FILENAME."
3818 (let ((t1 (tramp-tramp-file-p filename
))
3819 (t2 (tramp-tramp-file-p newname
))
3820 (file-times (nth 5 (file-attributes filename
)))
3821 (file-modes (tramp-default-file-modes filename
)))
3822 (with-parsed-tramp-file-name (if t1 filename newname
) nil
3823 (let* ((cmd (cond ((and (eq op
'copy
) preserve-uid-gid
) "cp -f -p")
3824 ((eq op
'copy
) "cp -f")
3825 ((eq op
'rename
) "mv -f")
3828 "Unknown operation `%s', must be `copy' or `rename'"
3832 (tramp-file-name-handler 'file-remote-p filename
'localname
)
3836 (tramp-file-name-handler 'file-remote-p newname
'localname
)
3838 (prefix (file-remote-p (if t1 filename newname
)))
3842 ;; Both files are on a remote host, with same user.
3845 (tramp-send-command-and-check
3847 (format "%s %s %s" cmd
3848 (tramp-shell-quote-argument localname1
)
3849 (tramp-shell-quote-argument localname2
))))
3850 (with-current-buffer (tramp-get-buffer v
)
3851 (goto-char (point-min))
3855 ;; Mask cp -f error.
3857 tramp-operation-not-permitted-regexp nil t
))
3859 (tramp-error-with-buffer
3861 "Copying directly failed, see buffer `%s' for details."
3864 ;; We are on the local host.
3867 ;; We can do it directly.
3868 ((let (file-name-handler-alist)
3869 (and (file-readable-p localname1
)
3870 (file-writable-p (file-name-directory localname2
))
3871 (or (file-directory-p localname2
)
3872 (file-writable-p localname2
))))
3874 (tramp-compat-copy-file
3875 localname1 localname2 ok-if-already-exists
3876 keep-date preserve-uid-gid
)
3877 (tramp-run-real-handler
3878 'rename-file
(list localname1 localname2 ok-if-already-exists
))))
3880 ;; We can do it directly with `tramp-send-command'
3881 ((and (file-readable-p (concat prefix localname1
))
3883 (file-name-directory (concat prefix localname2
)))
3884 (or (file-directory-p (concat prefix localname2
))
3885 (file-writable-p (concat prefix localname2
))))
3886 (tramp-do-copy-or-rename-file-directly
3887 op
(concat prefix localname1
) (concat prefix localname2
)
3888 ok-if-already-exists keep-date t
)
3889 ;; We must change the ownership to the local user.
3890 (tramp-set-file-uid-gid
3891 (concat prefix localname2
)
3892 (tramp-get-local-uid 'integer
)
3893 (tramp-get-local-gid 'integer
)))
3895 ;; We need a temporary file in between.
3897 ;; Create the temporary file.
3898 (let ((tmpfile (tramp-compat-make-temp-file localname1
)))
3905 (tramp-send-command-and-check
3908 (tramp-shell-quote-argument localname1
)
3909 (tramp-shell-quote-argument tmpfile
))))
3910 (tramp-error-with-buffer
3912 "Copying directly failed, see buffer `%s' for details."
3913 (tramp-get-buffer v
)))
3914 ;; We must change the ownership as remote user.
3915 ;; Since this does not work reliable, we also
3916 ;; give read permissions.
3918 (concat prefix tmpfile
) (tramp-octal-to-decimal "0777"))
3919 (tramp-set-file-uid-gid
3920 (concat prefix tmpfile
)
3921 (tramp-get-local-uid 'integer
)
3922 (tramp-get-local-gid 'integer
)))
3925 (tramp-compat-copy-file
3926 localname1 tmpfile t
3927 keep-date preserve-uid-gid
)
3928 (tramp-run-real-handler
3930 (list localname1 tmpfile t
)))
3931 ;; We must change the ownership as local user.
3932 ;; Since this does not work reliable, we also
3933 ;; give read permissions.
3934 (set-file-modes tmpfile
(tramp-octal-to-decimal "0777"))
3935 (tramp-set-file-uid-gid
3937 (tramp-get-remote-uid v
'integer
)
3938 (tramp-get-remote-gid v
'integer
))))
3940 ;; Move the temporary file to its destination.
3945 (tramp-send-command-and-check
3948 (tramp-shell-quote-argument tmpfile
)
3949 (tramp-shell-quote-argument localname2
))))
3950 (tramp-error-with-buffer
3952 "Copying directly failed, see buffer `%s' for details."
3953 (tramp-get-buffer v
))))
3955 (tramp-run-real-handler
3957 (list tmpfile localname2 ok-if-already-exists
)))))
3961 (delete-file tmpfile
)
3964 ;; Set the time and mode. Mask possible errors.
3967 (set-file-times newname file-times
)
3968 (set-file-modes newname file-modes
))
3971 (defun tramp-do-copy-or-rename-file-out-of-band (op filename newname keep-date
)
3972 "Invoke rcp program to copy.
3973 The method used must be an out-of-band method."
3974 (let ((t1 (tramp-tramp-file-p filename
))
3975 (t2 (tramp-tramp-file-p newname
))
3976 copy-program copy-args copy-env copy-keep-date port spec
3979 (with-parsed-tramp-file-name (if t1 filename newname
) nil
3982 ;; Both are Tramp files. We shall optimize it, when the
3983 ;; methods for filename and newname are the same.
3984 (let* ((dir-flag (file-directory-p filename
))
3985 (tmpfile (tramp-compat-make-temp-file localname dir-flag
)))
3989 (file-name-nondirectory newname
) tmpfile
)))
3992 (tramp-do-copy-or-rename-file-out-of-band
3993 op filename tmpfile keep-date
)
3994 (tramp-do-copy-or-rename-file-out-of-band
3995 'rename tmpfile newname keep-date
))
3999 (tramp-compat-delete-directory
4000 (expand-file-name ".." tmpfile
) 'recursive
)
4001 (delete-file tmpfile
))
4004 ;; Expand hops. Might be necessary for gateway methods.
4005 (setq v
(car (tramp-compute-multi-hops v
)))
4006 (aset v
3 localname
)
4008 ;; Check which ones of source and target are Tramp files.
4009 (setq source
(if t1
(tramp-make-copy-program-file-name v
) filename
)
4011 (if (and (file-directory-p filename
)
4013 (file-name-nondirectory filename
)
4014 (file-name-nondirectory newname
)))
4015 'file-name-directory
4017 (if t2
(tramp-make-copy-program-file-name v
) newname
)))
4019 ;; Check for port number. Until now, there's no need for handling
4020 ;; like method, user, host.
4021 (setq host
(tramp-file-name-real-host v
)
4022 port
(tramp-file-name-port v
)
4023 port
(or (and port
(number-to-string port
)) ""))
4025 ;; Compose copy command.
4026 (setq spec
(format-spec-make
4027 ?h host ?u user ?p port
4028 ?t
(tramp-get-connection-property
4029 (tramp-get-connection-process v
) "temp-file" "")
4030 ?k
(if keep-date
" " ""))
4031 copy-program
(tramp-get-method-parameter
4032 method
'tramp-copy-program
)
4033 copy-keep-date
(tramp-get-method-parameter
4034 method
'tramp-copy-keep-date
)
4042 ;; " " is indication for keep-date argument.
4043 (delete " " (mapcar (lambda (y) (format-spec y spec
)) x
)))
4044 (unless (member "" x
) (mapconcat 'identity x
" ")))
4045 (tramp-get-method-parameter method
'tramp-copy-args
)))
4051 (setq x
(mapcar (lambda (y) (format-spec y spec
)) x
))
4052 (unless (member "" x
) (mapconcat 'identity x
" ")))
4053 (tramp-get-method-parameter method
'tramp-copy-env
))))
4055 ;; Check for program.
4056 (when (and (fboundp 'executable-find
)
4057 (not (let ((default-directory
4058 (tramp-compat-temporary-file-directory)))
4059 (executable-find copy-program
))))
4061 v
'file-error
"Cannot find copy program: %s" copy-program
))
4063 ;; Set variables for computing the prompt for reading
4065 (setq tramp-current-method
(tramp-file-name-method v
)
4066 tramp-current-user
(tramp-file-name-user v
)
4067 tramp-current-host
(tramp-file-name-host v
))
4071 ;; The default directory must be remote.
4072 (let ((default-directory
4073 (file-name-directory (if t1 filename newname
)))
4074 (process-environment (copy-sequence process-environment
)))
4075 ;; Set the transfer process properties.
4076 (tramp-set-connection-property
4077 v
"process-name" (buffer-name (current-buffer)))
4078 (tramp-set-connection-property
4079 v
"process-buffer" (current-buffer))
4081 (tramp-message v
5 "%s=\"%s\"" (car copy-env
) (cadr copy-env
))
4082 (setenv (pop copy-env
) (pop copy-env
)))
4084 ;; Use an asynchronous process. By this, password can
4085 ;; be handled. The default directory must be local, in
4086 ;; order to apply the correct `copy-program'. We don't
4087 ;; set a timeout, because the copying of large files can
4088 ;; last longer than 60 secs.
4089 (let ((p (let ((default-directory
4090 (tramp-compat-temporary-file-directory)))
4091 (apply 'start-process
4092 (tramp-get-connection-property
4093 v
"process-name" nil
)
4094 (tramp-get-connection-property
4095 v
"process-buffer" nil
)
4097 (append copy-args
(list source target
))))))
4099 v
6 "%s" (mapconcat 'identity
(process-command p
) " "))
4100 (tramp-set-process-query-on-exit-flag p nil
)
4101 (tramp-process-actions p v tramp-actions-copy-out-of-band
))))
4103 ;; Reset the transfer process properties.
4104 (tramp-set-connection-property v
"process-name" nil
)
4105 (tramp-set-connection-property v
"process-buffer" nil
))
4107 ;; Handle KEEP-DATE argument.
4108 (when (and keep-date
(not copy-keep-date
))
4109 (set-file-times newname
(nth 5 (file-attributes filename
))))
4112 (unless (and keep-date copy-keep-date
)
4114 (set-file-modes newname
(tramp-default-file-modes filename
)))))
4116 ;; If the operation was `rename', delete the original file.
4117 (unless (eq op
'copy
)
4118 (if (file-regular-p filename
)
4119 (delete-file filename
)
4120 (tramp-compat-delete-directory filename
'recursive
))))))
4122 (defun tramp-handle-make-directory (dir &optional parents
)
4123 "Like `make-directory' for Tramp files."
4124 (setq dir
(expand-file-name dir
))
4125 (with-parsed-tramp-file-name dir nil
4126 (tramp-flush-directory-property v
(file-name-directory localname
))
4128 (tramp-barf-unless-okay
4131 (if parents
"mkdir -p" "mkdir")
4132 (tramp-shell-quote-argument localname
))
4133 "Couldn't make directory %s" dir
))))
4135 (defun tramp-handle-delete-directory (directory &optional recursive
)
4136 "Like `delete-directory' for Tramp files."
4137 (setq directory
(expand-file-name directory
))
4138 (with-parsed-tramp-file-name directory nil
4139 (tramp-flush-file-property v
(file-name-directory localname
))
4140 (tramp-flush-directory-property v localname
)
4141 (unless (zerop (tramp-send-command-and-check
4145 (if recursive
"rm -rf" "rmdir")
4146 (tramp-shell-quote-argument localname
))))
4147 (tramp-error v
'file-error
"Couldn't delete %s" directory
))))
4149 (defun tramp-handle-delete-file (filename &optional trash
)
4150 "Like `delete-file' for Tramp files."
4151 (setq filename
(expand-file-name filename
))
4152 (with-parsed-tramp-file-name filename nil
4153 (tramp-flush-file-property v
(file-name-directory localname
))
4154 (tramp-flush-file-property v localname
)
4157 (tramp-send-command-and-check
4159 (or (and trash
(tramp-get-remote-trash v
)) "rm -f")
4160 (tramp-shell-quote-argument localname
))))
4161 (tramp-error v
'file-error
"Couldn't delete %s" filename
))))
4165 ;; CCC: This does not seem to be enough. Something dies when
4166 ;; we try and delete two directories under Tramp :/
4167 (defun tramp-handle-dired-recursive-delete-directory (filename)
4168 "Recursively delete the directory given.
4169 This is like `dired-recursive-delete-directory' for Tramp files."
4170 (with-parsed-tramp-file-name filename nil
4171 ;; Run a shell command 'rm -r <localname>'
4172 ;; Code shamelessly stolen from the dired implementation and, um, hacked :)
4173 (unless (file-exists-p filename
)
4174 (tramp-error v
'file-error
"No such directory: %s" filename
))
4175 ;; Which is better, -r or -R? (-r works for me <daniel@danann.net>)
4178 (format "rm -rf %s" (tramp-shell-quote-argument localname
))
4179 ;; Don't read the output, do it explicitely.
4181 ;; Wait for the remote system to return to us...
4182 ;; This might take a while, allow it plenty of time.
4183 (tramp-wait-for-output (tramp-get-connection-process v
) 120)
4184 ;; Make sure that it worked...
4185 (tramp-flush-file-property v
(file-name-directory localname
))
4186 (tramp-flush-directory-property v localname
)
4187 (and (file-exists-p filename
)
4189 v
'file-error
"Failed to recursively delete %s" filename
))))
4191 (defun tramp-handle-dired-compress-file (file &rest ok-flag
)
4192 "Like `dired-compress-file' for Tramp files."
4193 ;; OK-FLAG is valid for XEmacs only, but not implemented.
4194 ;; Code stolen mainly from dired-aux.el.
4195 (with-parsed-tramp-file-name file nil
4196 (tramp-flush-file-property v localname
)
4199 (if (not (featurep 'xemacs
))
4201 (symbol-value 'dired-compress-file-suffixes
)
4202 ;; XEmacs has `dired-compression-method-alist', which is
4203 ;; transformed into `dired-compress-file-suffixes' structure.
4206 (list (concat (regexp-quote (nth 1 x
)) "\\'")
4208 (mapconcat 'identity
(nth 3 x
) " ")))
4209 (symbol-value 'dired-compression-method-alist
))))
4211 ;; See if any suffix rule matches this file name.
4213 (let (case-fold-search)
4214 (if (string-match (car (car suffixes
)) localname
)
4215 (setq suffix
(car suffixes
) suffixes nil
))
4216 (setq suffixes
(cdr suffixes
))))
4218 (cond ((file-symlink-p file
)
4220 ((and suffix
(nth 2 suffix
))
4221 ;; We found an uncompression rule.
4222 (with-progress-reporter v
0 (format "Uncompressing %s" file
)
4224 (tramp-send-command-and-check
4225 v
(concat (nth 2 suffix
) " "
4226 (tramp-shell-quote-argument localname
))))
4227 ;; `dired-remove-file' is not defined in XEmacs.
4228 (tramp-compat-funcall 'dired-remove-file file
)
4229 (string-match (car suffix
) file
)
4230 (concat (substring file
0 (match-beginning 0))))))
4232 ;; We don't recognize the file as compressed, so compress it.
4234 (with-progress-reporter v
0 (format "Compressing %s" file
)
4236 (tramp-send-command-and-check
4237 v
(concat "gzip -f "
4238 (tramp-shell-quote-argument localname
))))
4239 ;; `dired-remove-file' is not defined in XEmacs.
4240 (tramp-compat-funcall 'dired-remove-file file
)
4241 (cond ((file-exists-p (concat file
".gz"))
4242 (concat file
".gz"))
4243 ((file-exists-p (concat file
".z"))
4247 (defun tramp-handle-dired-uncache (dir &optional dir-p
)
4248 "Like `dired-uncache' for Tramp files."
4249 ;; DIR-P is valid for XEmacs only.
4250 (with-parsed-tramp-file-name
4251 (if (or dir-p
(file-directory-p dir
)) dir
(file-name-directory dir
)) nil
4252 (tramp-flush-directory-property v localname
)))
4254 ;; Pacify byte-compiler. The function is needed on XEmacs only. I'm
4255 ;; not sure at all that this is the right way to do it, but let's hope
4256 ;; it works for now, and wait for a guru to point out the Right Way to
4258 ;;(eval-when-compile
4259 ;; (unless (fboundp 'dired-insert-set-properties)
4260 ;; (fset 'dired-insert-set-properties 'ignore)))
4261 ;; Gerd suggests this:
4262 (eval-when-compile (require 'dired
))
4263 ;; Note that dired is required at run-time, too, when it is needed.
4264 ;; It is only needed on XEmacs for the function
4265 ;; `dired-insert-set-properties'.
4267 (defun tramp-handle-insert-directory
4268 (filename switches
&optional wildcard full-directory-p
)
4269 "Like `insert-directory' for Tramp files."
4270 (setq filename
(expand-file-name filename
))
4271 (with-parsed-tramp-file-name filename nil
4272 (if (and (featurep 'ls-lisp
)
4273 (not (symbol-value 'ls-lisp-use-insert-directory-program
)))
4274 (tramp-run-real-handler
4275 'insert-directory
(list filename switches wildcard full-directory-p
))
4276 (when (stringp switches
)
4277 (setq switches
(split-string switches
)))
4278 (when (and (member "--dired" switches
)
4279 (not (tramp-get-ls-command-with-dired v
)))
4280 (setq switches
(delete "--dired" switches
)))
4282 (setq wildcard
(tramp-run-real-handler
4283 'file-name-nondirectory
(list localname
)))
4284 (setq localname
(tramp-run-real-handler
4285 'file-name-directory
(list localname
))))
4286 (unless full-directory-p
4287 (setq switches
(add-to-list 'switches
"-d" 'append
)))
4288 (setq switches
(mapconcat 'tramp-shell-quote-argument switches
" "))
4290 (setq switches
(concat switches
" " wildcard
)))
4292 v
4 "Inserting directory `ls %s %s', wildcard %s, fulldir %s"
4293 switches filename
(if wildcard
"yes" "no")
4294 (if full-directory-p
"yes" "no"))
4295 ;; If `full-directory-p', we just say `ls -l FILENAME'.
4296 ;; Else we chdir to the parent directory, then say `ls -ld BASENAME'.
4297 (if full-directory-p
4300 (format "%s %s %s 2>/dev/null"
4301 (tramp-get-ls-command v
)
4305 (tramp-shell-quote-argument (concat localname
".")))))
4306 (tramp-barf-unless-okay
4308 (format "cd %s" (tramp-shell-quote-argument
4309 (tramp-run-real-handler
4310 'file-name-directory
(list localname
))))
4312 (tramp-shell-quote-argument
4313 (tramp-run-real-handler 'file-name-directory
(list localname
))))
4317 (tramp-get-ls-command v
)
4321 (tramp-run-real-handler
4322 'file-name-nondirectory
(list localname
)))))
4324 (tramp-shell-quote-argument
4325 (tramp-run-real-handler
4326 'file-name-nondirectory
(list localname
)))))))
4327 (let ((beg (point)))
4328 ;; We cannot use `insert-buffer-substring' because the Tramp
4329 ;; buffer changes its contents before insertion due to calling
4330 ;; `expand-file' and alike.
4332 (with-current-buffer (tramp-get-buffer v
)
4335 ;; Check for "--dired" output.
4337 (when (looking-at "//SUBDIRED//")
4339 (when (looking-at "//DIRED//\\s-+")
4340 (let ((databeg (match-end 0))
4341 (end (tramp-compat-line-end-position)))
4342 ;; Now read the numeric positions of file names.
4344 (while (< (point) end
)
4345 (let ((start (+ beg
(read (current-buffer))))
4346 (end (+ beg
(read (current-buffer)))))
4347 (if (memq (char-after end
) '(?
\n ?\
))
4348 ;; End is followed by \n or by " -> ".
4349 (put-text-property start end
'dired-filename t
))))))
4350 ;; Remove trailing lines.
4351 (goto-char (tramp-compat-line-beginning-position))
4352 (while (looking-at "//")
4354 (delete-region (match-beginning 0) (point)))
4356 ;; The inserted file could be from somewhere else.
4357 (when (and (not wildcard
) (not full-directory-p
))
4358 (goto-char (point-max))
4359 (when (file-symlink-p filename
)
4360 (goto-char (search-backward "->" beg
'noerror
)))
4362 (if (zerop (length (file-name-nondirectory filename
)))
4364 (file-name-nondirectory filename
))
4366 (replace-match (file-relative-name filename
) t
))
4368 (goto-char (point-max))))))
4370 (defun tramp-handle-unhandled-file-name-directory (filename)
4371 "Like `unhandled-file-name-directory' for Tramp files."
4372 ;; With Emacs 23, we could simply return `nil'. But we must keep it
4373 ;; for backward compatibility.
4374 (expand-file-name "~/"))
4376 ;; Canonicalization of file names.
4378 (defun tramp-handle-expand-file-name (name &optional dir
)
4379 "Like `expand-file-name' for Tramp files.
4380 If the localname part of the given filename starts with \"/../\" then
4381 the result will be a local, non-Tramp, filename."
4382 ;; If DIR is not given, use DEFAULT-DIRECTORY or "/".
4383 (setq dir
(or dir default-directory
"/"))
4384 ;; Unless NAME is absolute, concat DIR and NAME.
4385 (unless (file-name-absolute-p name
)
4386 (setq name
(concat (file-name-as-directory dir
) name
)))
4387 ;; If NAME is not a Tramp file, run the real handler.
4388 (if (not (tramp-connectable-p name
))
4389 (tramp-run-real-handler 'expand-file-name
(list name nil
))
4391 (with-parsed-tramp-file-name name nil
4392 (unless (tramp-run-real-handler 'file-name-absolute-p
(list localname
))
4393 (setq localname
(concat "~/" localname
)))
4394 ;; Tilde expansion if necessary. This needs a shell which
4395 ;; groks tilde expansion! The function `tramp-find-shell' is
4396 ;; supposed to find such a shell on the remote host. Please
4397 ;; tell me about it when this doesn't work on your system.
4398 (when (string-match "\\`\\(~[^/]*\\)\\(.*\\)\\'" localname
)
4399 (let ((uname (match-string 1 localname
))
4400 (fname (match-string 2 localname
)))
4401 ;; We cannot simply apply "~/", because under sudo "~/" is
4402 ;; expanded to the local user home directory but to the
4403 ;; root home directory. On the other hand, using always
4404 ;; the default user name for tilde expansion is not
4405 ;; appropriate either, because ssh and companions might
4406 ;; use a user name from the config file.
4407 (when (and (string-equal uname
"~")
4408 (string-match "\\`su\\(do\\)?\\'" method
))
4409 (setq uname
(concat uname user
)))
4411 (with-connection-property v uname
4413 v
(format "cd %s; pwd" (tramp-shell-quote-argument uname
)))
4414 (with-current-buffer (tramp-get-buffer v
)
4415 (goto-char (point-min))
4417 (point) (tramp-compat-line-end-position)))))
4418 (setq localname
(concat uname fname
))))
4419 ;; There might be a double slash, for example when "~/"
4420 ;; expands to "/". Remove this.
4421 (while (string-match "//" localname
)
4422 (setq localname
(replace-match "/" t t localname
)))
4423 ;; No tilde characters in file name, do normal
4424 ;; `expand-file-name' (this does "/./" and "/../"). We bind
4425 ;; `directory-sep-char' here for XEmacs on Windows, which would
4426 ;; otherwise use backslash. `default-directory' is bound,
4427 ;; because on Windows there would be problems with UNC shares or
4429 (let ((directory-sep-char ?
/)
4430 (default-directory (tramp-compat-temporary-file-directory)))
4431 (tramp-make-tramp-file-name
4433 (tramp-drop-volume-letter
4434 (tramp-run-real-handler
4435 'expand-file-name
(list localname
))))))))
4437 (defun tramp-replace-environment-variables (filename)
4438 "Replace environment variables in FILENAME.
4439 Return the string with the replaced variables."
4441 (let ((idx (string-match "$\\(\\w+\\)" filename
)))
4442 ;; `$' is coded as `$$'.
4444 (or (zerop idx
) (not (eq ?$
(aref filename
(1- idx
)))))
4445 (getenv (match-string 1 filename
)))
4448 (substitute-in-file-name (match-string 0 filename
))
4452 (defun tramp-handle-substitute-in-file-name (filename)
4453 "Like `substitute-in-file-name' for Tramp files.
4454 \"//\" and \"/~\" substitute only in the local filename part.
4455 If the URL Tramp syntax is chosen, \"//\" as method delimeter and \"/~\" at
4456 beginning of local filename are not substituted."
4457 ;; First, we must replace environment variables.
4458 (setq filename
(tramp-replace-environment-variables filename
))
4459 (with-parsed-tramp-file-name filename nil
4460 (if (equal tramp-syntax
'url
)
4461 ;; We need to check localname only. The other parts cannot contain
4463 (if (and (> (length localname
) 1)
4464 (or (string-match "//" localname
)
4465 (string-match "/~" localname
1)))
4466 (tramp-run-real-handler 'substitute-in-file-name
(list filename
))
4467 (tramp-make-tramp-file-name
4468 (when method
(substitute-in-file-name method
))
4469 (when user
(substitute-in-file-name user
))
4470 (when host
(substitute-in-file-name host
))
4472 (tramp-run-real-handler
4473 'substitute-in-file-name
(list localname
)))))
4474 ;; Ignore in LOCALNAME everything before "//" or "/~".
4475 (when (and (stringp localname
) (string-match ".+?/\\(/\\|~\\)" localname
))
4477 (concat (file-remote-p filename
)
4478 (replace-match "\\1" nil nil localname
)))
4479 ;; "/m:h:~" does not work for completion. We use "/m:h:~/".
4480 (when (string-match "~$" filename
)
4481 (setq filename
(concat filename
"/"))))
4482 (tramp-run-real-handler 'substitute-in-file-name
(list filename
)))))
4484 ;; In XEmacs, electricity is implemented via a key map for ?/ and ?~,
4485 ;; which calls corresponding functions (see minibuf.el).
4486 (when (fboundp 'minibuffer-electric-separator
)
4491 (around ,(intern (format "tramp-advice-%s" x
)) activate
)
4492 "Invoke `substitute-in-file-name' for Tramp files."
4493 (if (and (symbol-value 'minibuffer-electric-file-name-behavior
)
4494 (tramp-tramp-file-p (buffer-substring)))
4495 ;; We don't need to handle `last-input-event', because
4496 ;; due to the key map we know it must be ?/ or ?~.
4497 (let ((s (concat (buffer-substring (point-min) (point))
4498 (string last-command-char
))))
4499 (delete-region (point-min) (point))
4500 (insert (substitute-in-file-name s
))
4501 (setq ad-return-value last-command-char
))
4507 (ad-remove-advice ',x
'around
',(intern (format "tramp-advice-%s" x
)))
4508 (ad-activate ',x
)))))
4510 '(minibuffer-electric-separator
4511 minibuffer-electric-tilde
)))
4514 ;;; Remote commands:
4516 (defun tramp-handle-executable-find (command)
4517 "Like `executable-find' for Tramp files."
4518 (with-parsed-tramp-file-name default-directory nil
4519 (tramp-find-executable v command
(tramp-get-remote-path v
) t
)))
4521 (defun tramp-process-sentinel (proc event
)
4522 "Flush file caches."
4523 (unless (memq (process-status proc
) '(run open
))
4524 (let ((vec (tramp-get-connection-property proc
"vector" nil
)))
4526 (tramp-message vec
5 "Sentinel called: `%s' `%s'" proc event
)
4527 (tramp-flush-directory-property vec
"")))))
4529 ;; We use BUFFER also as connection buffer during setup. Because of
4530 ;; this, its original contents must be saved, and restored once
4531 ;; connection has been setup.
4532 (defun tramp-handle-start-file-process (name buffer program
&rest args
)
4533 "Like `start-file-process' for Tramp files."
4534 (with-parsed-tramp-file-name default-directory nil
4535 ;; When PROGRAM is nil, we just provide a tty.
4537 (when (stringp program
)
4538 (format "cd %s; exec %s"
4539 (tramp-shell-quote-argument localname
)
4540 (mapconcat 'tramp-shell-quote-argument
4541 (cons program args
) " "))))
4542 (tramp-process-connection-type
4543 (or (null program
) tramp-process-connection-type
))
4544 (bmp (and (buffer-live-p buffer
) (buffer-modified-p buffer
)))
4551 ;; BUFFER can be nil. We use a temporary buffer.
4552 (setq buffer
(generate-new-buffer tramp-temp-buffer-name
)))
4553 (while (get-process name1
)
4554 ;; NAME must be unique as process name.
4556 name1
(format "%s<%d>" name i
)))
4558 ;; Set the new process properties.
4559 (tramp-set-connection-property v
"process-name" name
)
4560 (tramp-set-connection-property v
"process-buffer" buffer
)
4561 ;; Activate narrowing in order to save BUFFER contents.
4562 ;; Clear also the modification time; otherwise we might
4563 ;; be interrupted by `verify-visited-file-modtime'.
4564 (with-current-buffer (tramp-get-connection-buffer v
)
4565 (let ((buffer-undo-list t
))
4566 (clear-visited-file-modtime)
4567 (narrow-to-region (point-max) (point-max))
4569 ;; Send the command.
4570 (tramp-send-command v command nil t
) ; nooutput
4571 ;; Check, whether a pty is associated.
4572 (tramp-maybe-open-connection v
)
4573 (unless (process-get
4574 (tramp-get-connection-process v
) 'remote-tty
)
4577 "pty association is not supported for `%s'" name
)))))
4578 (let ((p (tramp-get-connection-process v
)))
4579 ;; Set sentinel and query flag for this process.
4580 (tramp-set-connection-property p
"vector" v
)
4581 (set-process-sentinel p
'tramp-process-sentinel
)
4582 (tramp-set-process-query-on-exit-flag p t
)
4586 (with-current-buffer (tramp-get-connection-buffer v
)
4587 (if (string-match tramp-temp-buffer-name
(buffer-name))
4589 (set-process-buffer (tramp-get-connection-process v
) nil
)
4590 (kill-buffer (current-buffer)))
4591 (set-buffer-modified-p bmp
)))
4592 (tramp-set-connection-property v
"process-name" nil
)
4593 (tramp-set-connection-property v
"process-buffer" nil
)))))
4595 (defun tramp-handle-process-file
4596 (program &optional infile destination display
&rest args
)
4597 "Like `process-file' for Tramp files."
4598 ;; The implementation is not complete yet.
4599 (when (and (numberp destination
) (zerop destination
))
4600 (error "Implementation does not handle immediate return"))
4602 (with-parsed-tramp-file-name default-directory nil
4603 (let (command input tmpinput stderr tmpstderr outbuf ret
)
4605 (setq command
(mapconcat 'tramp-shell-quote-argument
4606 (cons program args
) " "))
4609 (setq input
"/dev/null")
4610 (setq infile
(expand-file-name infile
))
4611 (if (tramp-equal-remote default-directory infile
)
4612 ;; INFILE is on the same remote host.
4613 (setq input
(with-parsed-tramp-file-name infile nil localname
))
4614 ;; INFILE must be copied to remote host.
4615 (setq input
(tramp-make-tramp-temp-file v
)
4616 tmpinput
(tramp-make-tramp-file-name method user host input
))
4617 (copy-file infile tmpinput t
)))
4618 (when input
(setq command
(format "%s <%s" command input
)))
4620 ;; Determine output.
4623 ((bufferp destination
)
4624 (setq outbuf destination
))
4626 ((stringp destination
)
4627 (setq outbuf
(get-buffer-create destination
)))
4628 ;; (REAL-DESTINATION ERROR-DESTINATION)
4629 ((consp destination
)
4632 ((bufferp (car destination
))
4633 (setq outbuf
(car destination
)))
4634 ((stringp (car destination
))
4635 (setq outbuf
(get-buffer-create (car destination
))))
4637 (setq outbuf
(current-buffer))))
4640 ((stringp (cadr destination
))
4641 (setcar (cdr destination
) (expand-file-name (cadr destination
)))
4642 (if (tramp-equal-remote default-directory
(cadr destination
))
4643 ;; stderr is on the same remote host.
4644 (setq stderr
(with-parsed-tramp-file-name
4645 (cadr destination
) nil localname
))
4646 ;; stderr must be copied to remote host. The temporary
4647 ;; file must be deleted after execution.
4648 (setq stderr
(tramp-make-tramp-temp-file v
)
4649 tmpstderr
(tramp-make-tramp-file-name
4650 method user host stderr
))))
4651 ;; stderr to be discarded.
4652 ((null (cadr destination
))
4653 (setq stderr
"/dev/null"))))
4656 (setq outbuf
(current-buffer))))
4657 (when stderr
(setq command
(format "%s 2>%s" command stderr
)))
4659 ;; Send the command. It might not return in time, so we protect
4660 ;; it. Call it in a subshell, in order to preserve working
4665 (tramp-send-command-and-check
4666 v
(format "\\cd %s; %s"
4667 (tramp-shell-quote-argument localname
)
4670 ;; We should show the output anyway.
4672 (with-current-buffer outbuf
4674 (with-current-buffer (tramp-get-connection-buffer v
)
4676 (when display
(display-buffer outbuf
))))
4677 ;; When the user did interrupt, we should do it also. We use
4678 ;; return code -1 as marker.
4680 (kill-buffer (tramp-get-connection-buffer v
))
4684 (kill-buffer (tramp-get-connection-buffer v
))
4687 ;; Provide error file.
4688 (when tmpstderr
(rename-file tmpstderr
(cadr destination
) t
))
4690 ;; Cleanup. We remove all file cache values for the connection,
4691 ;; because the remote process could have changed them.
4692 (when tmpinput
(delete-file tmpinput
))
4694 ;; `process-file-side-effects' has been introduced with GNU
4695 ;; Emacs 23.2. If set to `nil', no remote file will be changed
4696 ;; by `program'. If it doesn't exist, we assume its default
4698 (unless (and (boundp 'process-file-side-effects
)
4699 (not (symbol-value 'process-file-side-effects
)))
4700 (tramp-flush-directory-property v
""))
4702 ;; Return exit status.
4707 (defun tramp-local-call-process
4708 (program &optional infile destination display
&rest args
)
4709 "Calls `call-process' on the local host.
4710 This is needed because for some Emacs flavors Tramp has
4711 defadviced `call-process' to behave like `process-file'. The
4712 Lisp error raised when PROGRAM is nil is trapped also, returning 1."
4713 (let ((default-directory
4714 (if (file-remote-p default-directory
)
4715 (tramp-compat-temporary-file-directory)
4716 default-directory
)))
4717 (if (executable-find program
)
4718 (apply 'call-process program infile destination display args
)
4721 (defun tramp-handle-call-process-region
4722 (start end program
&optional delete buffer display
&rest args
)
4723 "Like `call-process-region' for Tramp files."
4724 (let ((tmpfile (tramp-compat-make-temp-file "")))
4725 (write-region start end tmpfile
)
4726 (when delete
(delete-region start end
))
4728 (apply 'call-process program tmpfile buffer display args
)
4729 (delete-file tmpfile
))))
4731 (defun tramp-handle-shell-command
4732 (command &optional output-buffer error-buffer
)
4733 "Like `shell-command' for Tramp files."
4734 (let* ((asynchronous (string-match "[ \t]*&[ \t]*\\'" command
))
4735 ;; We cannot use `shell-file-name' and `shell-command-switch',
4736 ;; they are variables of the local host.
4738 (tramp-get-method-parameter
4739 (tramp-file-name-method
4740 (tramp-dissect-file-name default-directory
))
4742 "-c" (substring command
0 asynchronous
)))
4746 ((bufferp output-buffer
) output-buffer
)
4747 ((stringp output-buffer
) (get-buffer-create output-buffer
))
4749 (setq current-buffer-p t
)
4751 (t (get-buffer-create
4753 "*Async Shell Command*"
4754 "*Shell Command Output*")))))
4757 ((bufferp error-buffer
) error-buffer
)
4758 ((stringp error-buffer
) (get-buffer-create error-buffer
))))
4760 (if (and (not asynchronous
) error-buffer
)
4761 (with-parsed-tramp-file-name default-directory nil
4762 (list output-buffer
(tramp-make-tramp-temp-file v
)))
4764 (p (get-buffer-process output-buffer
)))
4766 ;; Check whether there is another process running. Tramp does not
4767 ;; support 2 (asynchronous) processes in parallel.
4769 (if (yes-or-no-p "A command is running. Kill it? ")
4773 (error "Shell command in progress")))
4775 (if current-buffer-p
4777 (barf-if-buffer-read-only)
4779 (with-current-buffer output-buffer
4780 (setq buffer-read-only nil
)
4783 (if (and (not current-buffer-p
) (integerp asynchronous
))
4786 (apply 'start-file-process
"*Async Shell*" buffer args
)
4788 (pop-to-buffer output-buffer
)
4789 (setq mode-line-process
'(":%s"))
4790 (require 'shell
) (shell-mode))
4794 (apply 'process-file
(car args
) nil buffer nil
(cdr args
))
4795 ;; Insert error messages if they were separated.
4796 (when (listp buffer
)
4797 (with-current-buffer error-buffer
4798 (insert-file-contents (cadr buffer
)))
4799 (delete-file (cadr buffer
)))
4800 (if current-buffer-p
4801 ;; This is like exchange-point-and-mark, but doesn't
4802 ;; activate the mark. It is cleaner to avoid activation,
4803 ;; even though the command loop would deactivate the mark
4804 ;; because we inserted text.
4805 (goto-char (prog1 (mark t
)
4806 (set-marker (mark-marker) (point)
4808 ;; There's some output, display it.
4809 (when (with-current-buffer output-buffer
(> (point-max) (point-min)))
4810 (if (functionp 'display-message-or-buffer
)
4811 (tramp-compat-funcall 'display-message-or-buffer output-buffer
)
4812 (pop-to-buffer output-buffer
))))))))
4816 (defvar tramp-handle-file-local-copy-hook nil
4817 "Normal hook to be run at the end of `tramp-handle-file-local-copy'.")
4819 (defun tramp-handle-file-local-copy (filename)
4820 "Like `file-local-copy' for Tramp files."
4822 (with-parsed-tramp-file-name filename nil
4823 (unless (file-exists-p filename
)
4826 "Cannot make local copy of non-existing file `%s'" filename
))
4828 (let* ((size (nth 7 (file-attributes filename
)))
4829 (rem-enc (tramp-get-inline-coding v
"remote-encoding" size
))
4830 (loc-dec (tramp-get-inline-coding v
"local-decoding" size
))
4831 (tmpfile (tramp-compat-make-temp-file filename
)))
4835 ;; `copy-file' handles direct copy and out-of-band methods.
4836 ((or (tramp-local-host-p v
)
4837 (tramp-method-out-of-band-p v size
))
4838 (copy-file filename tmpfile t t
))
4840 ;; Use inline encoding for file transfer.
4843 (with-progress-reporter
4844 v
3 (format "Encoding remote file %s" filename
)
4845 (tramp-barf-unless-okay
4846 v
(format rem-enc
(tramp-shell-quote-argument localname
))
4847 "Encoding remote file failed"))
4849 (if (functionp loc-dec
)
4850 ;; If local decoding is a function, we call it. We
4851 ;; must disable multibyte, because
4852 ;; `uudecode-decode-region' doesn't handle it
4855 (set-buffer-multibyte nil
)
4856 (insert-buffer-substring (tramp-get-buffer v
))
4857 (with-progress-reporter
4858 v
3 (format "Decoding remote file %s with function %s"
4860 (funcall loc-dec
(point-min) (point-max))
4861 ;; Unset `file-name-handler-alist'. Otherwise,
4862 ;; epa-file gets confused.
4863 (let (file-name-handler-alist
4864 (coding-system-for-write 'binary
))
4865 (write-region (point-min) (point-max) tmpfile
))))
4867 ;; If tramp-decoding-function is not defined for this
4868 ;; method, we invoke tramp-decoding-command instead.
4869 (let ((tmpfile2 (tramp-compat-make-temp-file filename
)))
4870 ;; Unset `file-name-handler-alist'. Otherwise,
4871 ;; epa-file gets confused.
4872 (let (file-name-handler-alist
4873 (coding-system-for-write 'binary
))
4874 (write-region (point-min) (point-max) tmpfile2
))
4875 (with-progress-reporter
4876 v
3 (format "Decoding remote file %s with command %s"
4879 (tramp-call-local-coding-command
4880 loc-dec tmpfile2 tmpfile
)
4881 (delete-file tmpfile2
)))))
4883 ;; Set proper permissions.
4884 (set-file-modes tmpfile
(tramp-default-file-modes filename
))
4885 ;; Set local user ownership.
4886 (tramp-set-file-uid-gid tmpfile
)))
4888 ;; Oops, I don't know what to do.
4890 v
'file-error
"Wrong method specification for `%s'" method
)))
4894 (delete-file tmpfile
)
4895 (signal (car err
) (cdr err
))))
4897 (run-hooks 'tramp-handle-file-local-copy-hook
)
4900 (defun tramp-handle-file-remote-p (filename &optional identification connected
)
4901 "Like `file-remote-p' for Tramp files."
4902 (let ((tramp-verbose 3))
4903 (when (tramp-tramp-file-p filename
)
4904 (let* ((v (tramp-dissect-file-name filename
))
4905 (p (tramp-get-connection-process v
))
4906 (c (and p
(processp p
) (memq (process-status p
) '(run open
)))))
4907 ;; We expand the file name only, if there is already a connection.
4908 (with-parsed-tramp-file-name
4909 (if c
(expand-file-name filename
) filename
) nil
4910 (and (or (not connected
) c
)
4912 ((eq identification
'method
) method
)
4913 ((eq identification
'user
) user
)
4914 ((eq identification
'host
) host
)
4915 ((eq identification
'localname
) localname
)
4916 (t (tramp-make-tramp-file-name method user host
"")))))))))
4918 (defun tramp-find-file-name-coding-system-alist (filename tmpname
)
4919 "Like `find-operation-coding-system' for Tramp filenames.
4920 Tramp's `insert-file-contents' and `write-region' work over
4921 temporary file names. If `file-coding-system-alist' contains an
4922 expression, which matches more than the file name suffix, the
4923 coding system might not be determined. This function repairs it."
4925 (dolist (elt file-coding-system-alist result
)
4926 (when (and (consp elt
) (string-match (car elt
) filename
))
4927 ;; We found a matching entry in `file-coding-system-alist'.
4928 ;; So we add a similar entry, but with the temporary file name
4931 'result
(cons (regexp-quote tmpname
) (cdr elt
)) 'append
)))))
4933 (defun tramp-handle-insert-file-contents
4934 (filename &optional visit beg end replace
)
4935 "Like `insert-file-contents' for Tramp files."
4936 (barf-if-buffer-read-only)
4937 (setq filename
(expand-file-name filename
))
4938 (let (result local-copy remote-copy
)
4939 (with-parsed-tramp-file-name filename nil
4941 (if (not (file-exists-p filename
))
4942 ;; We don't raise a Tramp error, because it might be
4943 ;; suppressed, like in `find-file-noselect-1'.
4945 (list "File not found on remote host" filename
))
4947 (if (and (tramp-local-host-p v
)
4948 (let (file-name-handler-alist)
4949 (file-readable-p localname
)))
4950 ;; Short track: if we are on the local host, we can
4953 (tramp-run-real-handler
4954 'insert-file-contents
4955 (list localname visit beg end replace
)))
4957 ;; When we shall insert only a part of the file, we copy
4960 (setq remote-copy
(tramp-make-tramp-temp-file v
))
4965 (format "tail -c +%d %s | head -c +%d >%s"
4966 (1+ beg
) (tramp-shell-quote-argument localname
)
4967 (- end beg
) remote-copy
))
4969 (format "tail -c +%d %s >%s"
4970 (1+ beg
) (tramp-shell-quote-argument localname
)
4973 (format "head -c +%d %s >%s"
4974 (1+ end
) (tramp-shell-quote-argument localname
)
4977 ;; `insert-file-contents-literally' takes care to avoid
4978 ;; calling jka-compr. By let-binding
4979 ;; `inhibit-file-name-operation', we propagate that care
4980 ;; to the `file-local-copy' operation.
4982 (let ((inhibit-file-name-operation
4983 (when (eq inhibit-file-name-operation
4984 'insert-file-contents
)
4987 ((stringp remote-copy
)
4989 (tramp-make-tramp-file-name
4990 method user host remote-copy
)))
4991 ((stringp tramp-temp-buffer-file-name
)
4992 (copy-file filename tramp-temp-buffer-file-name
'ok
)
4993 tramp-temp-buffer-file-name
)
4994 (t (file-local-copy filename
)))))
4996 ;; When the file is not readable for the owner, it
4997 ;; cannot be inserted, even it is redable for the group
4998 ;; or for everybody.
4999 (set-file-modes local-copy
(tramp-octal-to-decimal "0600"))
5001 (when (and (null remote-copy
)
5002 (tramp-get-method-parameter
5003 method
'tramp-copy-keep-tmpfile
))
5004 ;; We keep the local file for performance reasons,
5005 ;; useful for "rsync".
5006 (setq tramp-temp-buffer-file-name local-copy
)
5007 (put 'tramp-temp-buffer-file-name
'permanent-local t
))
5009 (with-progress-reporter
5010 v
3 (format "Inserting local temp file `%s'" local-copy
)
5011 ;; We must ensure that `file-coding-system-alist'
5012 ;; matches `local-copy'.
5013 (let ((file-coding-system-alist
5014 (tramp-find-file-name-coding-system-alist
5015 filename local-copy
)))
5017 (insert-file-contents
5018 local-copy nil nil nil replace
))))))
5023 (setq buffer-file-name filename
)
5024 (setq buffer-read-only
(not (file-writable-p filename
)))
5025 (set-visited-file-modtime)
5026 (set-buffer-modified-p nil
)
5027 ;; For root, preserve owner and group when editing files.
5028 (when (string-equal (file-remote-p filename
'user
) "root")
5029 (set (make-local-variable 'backup-by-copying-when-mismatch
) t
)))
5030 (when (and (stringp local-copy
)
5031 (or remote-copy
(null tramp-temp-buffer-file-name
)))
5032 (delete-file local-copy
))
5033 (when (stringp remote-copy
)
5035 (tramp-make-tramp-file-name method user host remote-copy
))))))
5038 (list (expand-file-name filename
)
5041 ;; This is needed for XEmacs only. Code stolen from files.el.
5042 (defun tramp-handle-insert-file-contents-literally
5043 (filename &optional visit beg end replace
)
5044 "Like `insert-file-contents-literally' for Tramp files."
5045 (let ((format-alist nil
)
5046 (after-insert-file-functions nil
)
5047 (coding-system-for-read 'no-conversion
)
5048 (coding-system-for-write 'no-conversion
)
5049 (find-buffer-file-type-function
5050 (if (fboundp 'find-buffer-file-type
)
5051 (symbol-function 'find-buffer-file-type
)
5053 (inhibit-file-name-handlers '(jka-compr-handler image-file-handler
))
5054 (inhibit-file-name-operation 'insert-file-contents
))
5057 (fset 'find-buffer-file-type
(lambda (filename) t
))
5058 (insert-file-contents filename visit beg end replace
))
5060 (if find-buffer-file-type-function
5061 (fset 'find-buffer-file-type find-buffer-file-type-function
)
5062 (fmakunbound 'find-buffer-file-type
)))))
5064 (defun tramp-handle-find-backup-file-name (filename)
5065 "Like `find-backup-file-name' for Tramp files."
5066 (with-parsed-tramp-file-name filename nil
5067 ;; We set both variables. It doesn't matter whether it is
5069 (let ((backup-directory-alist
5071 (when (boundp 'backup-directory-alist
)
5072 (if (symbol-value 'tramp-backup-directory-alist
)
5077 (if (and (stringp (cdr x
))
5078 (file-name-absolute-p (cdr x
))
5079 (not (tramp-file-name-p (cdr x
))))
5080 (tramp-make-tramp-file-name method user host
(cdr x
))
5082 (symbol-value 'tramp-backup-directory-alist
))
5083 (symbol-value 'backup-directory-alist
))))
5085 (bkup-backup-directory-info
5087 (when (boundp 'bkup-backup-directory-info
)
5088 (if (symbol-value 'tramp-bkup-backup-directory-info
)
5094 (if (and (stringp (car (cdr x
)))
5095 (file-name-absolute-p (car (cdr x
)))
5096 (not (tramp-file-name-p (car (cdr x
)))))
5097 (tramp-make-tramp-file-name
5098 method user host
(car (cdr x
)))
5101 (symbol-value 'tramp-bkup-backup-directory-info
))
5102 (symbol-value 'bkup-backup-directory-info
)))))
5104 (tramp-run-real-handler 'find-backup-file-name
(list filename
)))))
5106 (defun tramp-handle-make-auto-save-file-name ()
5107 "Like `make-auto-save-file-name' for Tramp files.
5108 Returns a file name in `tramp-auto-save-directory' for autosaving this file."
5109 (let ((tramp-auto-save-directory tramp-auto-save-directory
)
5111 (tramp-subst-strs-in-string
5118 (buffer-file-name))))
5119 ;; File name must be unique. This is ensured with Emacs 22 (see
5120 ;; UNIQUIFY element of `auto-save-file-name-transforms'); but for
5121 ;; all other cases we must do it ourselves.
5122 (when (boundp 'auto-save-file-name-transforms
)
5125 (when (and (string-match (car x
) buffer-file-name
)
5126 (not (car (cddr x
))))
5127 (setq tramp-auto-save-directory
5128 (or tramp-auto-save-directory
5129 (tramp-compat-temporary-file-directory)))))
5130 (symbol-value 'auto-save-file-name-transforms
)))
5131 ;; Create directory.
5132 (when tramp-auto-save-directory
5133 (setq buffer-file-name
5134 (expand-file-name buffer-file-name tramp-auto-save-directory
))
5135 (unless (file-exists-p tramp-auto-save-directory
)
5136 (make-directory tramp-auto-save-directory t
)))
5137 ;; Run plain `make-auto-save-file-name'. There might be an advice when
5138 ;; it is not a magic file name operation (since Emacs 22).
5139 ;; We must deactivate it temporarily.
5140 (if (not (ad-is-active 'make-auto-save-file-name
))
5141 (tramp-run-real-handler 'make-auto-save-file-name nil
)
5143 (ad-deactivate 'make-auto-save-file-name
)
5145 (tramp-run-real-handler 'make-auto-save-file-name nil
)
5146 (ad-activate 'make-auto-save-file-name
)))))
5148 (defvar tramp-handle-write-region-hook nil
5149 "Normal hook to be run at the end of `tramp-handle-write-region'.")
5151 ;; CCC grok LOCKNAME
5152 (defun tramp-handle-write-region
5153 (start end filename
&optional append visit lockname confirm
)
5154 "Like `write-region' for Tramp files."
5155 (setq filename
(expand-file-name filename
))
5156 (with-parsed-tramp-file-name filename nil
5157 ;; Following part commented out because we don't know what to do about
5158 ;; file locking, and it does not appear to be a problem to ignore it.
5159 ;; Ange-ftp ignores it, too.
5160 ;; (when (and lockname (stringp lockname))
5161 ;; (setq lockname (expand-file-name lockname)))
5162 ;; (unless (or (eq lockname nil)
5163 ;; (string= lockname filename))
5165 ;; "tramp-handle-write-region: LOCKNAME must be nil or equal FILENAME"))
5167 ;; XEmacs takes a coding system as the seventh argument, not `confirm'.
5168 (when (and (not (featurep 'xemacs
)) confirm
(file-exists-p filename
))
5169 (unless (y-or-n-p (format "File %s exists; overwrite anyway? " filename
))
5170 (tramp-error v
'file-error
"File not overwritten")))
5172 (let ((uid (or (nth 2 (tramp-compat-file-attributes filename
'integer
))
5173 (tramp-get-remote-uid v
'integer
)))
5174 (gid (or (nth 3 (tramp-compat-file-attributes filename
'integer
))
5175 (tramp-get-remote-gid v
'integer
))))
5177 (if (and (tramp-local-host-p v
)
5178 ;; `file-writable-p' calls `file-expand-file-name'. We
5179 ;; cannot use `tramp-run-real-handler' therefore.
5180 (let (file-name-handler-alist)
5182 (file-writable-p (file-name-directory localname
))
5183 (or (file-directory-p localname
)
5184 (file-writable-p localname
)))))
5185 ;; Short track: if we are on the local host, we can run directly.
5186 (tramp-run-real-handler
5188 (list start end localname append
'no-message lockname confirm
))
5190 (let ((modes (save-excursion (tramp-default-file-modes filename
)))
5191 ;; We use this to save the value of
5192 ;; `last-coding-system-used' after writing the tmp
5193 ;; file. At the end of the function, we set
5194 ;; `last-coding-system-used' to this saved value. This
5195 ;; way, any intermediary coding systems used while
5196 ;; talking to the remote shell or suchlike won't hose
5197 ;; this variable. This approach was snarfed from
5200 ;; Write region into a tmp file. This isn't really
5201 ;; needed if we use an encoding function, but currently
5202 ;; we use it always because this makes the logic
5204 (tmpfile (or tramp-temp-buffer-file-name
5205 (tramp-compat-make-temp-file filename
))))
5207 ;; If `append' is non-nil, we copy the file locally, and let
5208 ;; the native `write-region' implementation do the job.
5209 (when append
(copy-file filename tmpfile
'ok
))
5211 ;; We say `no-message' here because we don't want the
5212 ;; visited file modtime data to be clobbered from the temp
5213 ;; file. We call `set-visited-file-modtime' ourselves later
5214 ;; on. We must ensure that `file-coding-system-alist'
5215 ;; matches `tmpfile'.
5216 (let (file-name-handler-alist
5217 (file-coding-system-alist
5218 (tramp-find-file-name-coding-system-alist filename tmpfile
)))
5220 (tramp-run-real-handler
5222 (list start end tmpfile append
'no-message lockname confirm
))
5224 (setq tramp-temp-buffer-file-name nil
)
5225 (delete-file tmpfile
)
5226 (signal (car err
) (cdr err
))))
5228 ;; Now, `last-coding-system-used' has the right value. Remember it.
5229 (when (boundp 'last-coding-system-used
)
5230 (setq coding-system-used
5231 (symbol-value 'last-coding-system-used
))))
5233 ;; The permissions of the temporary file should be set. If
5234 ;; filename does not exist (eq modes nil) it has been
5235 ;; renamed to the backup file. This case `save-buffer'
5236 ;; handles permissions.
5237 ;; Ensure, that it is still readable.
5240 tmpfile
(logior (or modes
0) (tramp-octal-to-decimal "0400"))))
5242 ;; This is a bit lengthy due to the different methods
5243 ;; possible for file transfer. First, we check whether the
5244 ;; method uses an rcp program. If so, we call it.
5245 ;; Otherwise, both encoding and decoding command must be
5246 ;; specified. However, if the method _also_ specifies an
5247 ;; encoding function, then that is used for encoding the
5248 ;; contents of the tmp file.
5249 (let* ((size (nth 7 (file-attributes tmpfile
)))
5250 (rem-dec (tramp-get-inline-coding v
"remote-decoding" size
))
5251 (loc-enc (tramp-get-inline-coding v
"local-encoding" size
)))
5253 ;; `copy-file' handles direct copy and out-of-band methods.
5254 ((or (tramp-local-host-p v
)
5255 (tramp-method-out-of-band-p v size
))
5256 (if (and (not (stringp start
))
5257 (= (or end
(point-max)) (point-max))
5258 (= (or start
(point-min)) (point-min))
5259 (tramp-get-method-parameter
5260 method
'tramp-copy-keep-tmpfile
))
5262 (setq tramp-temp-buffer-file-name tmpfile
)
5264 ;; We keep the local file for performance
5265 ;; reasons, useful for "rsync".
5266 (copy-file tmpfile filename t
)
5268 (setq tramp-temp-buffer-file-name nil
)
5269 (delete-file tmpfile
)
5270 (signal (car err
) (cdr err
)))))
5271 (setq tramp-temp-buffer-file-name nil
)
5272 ;; Don't rename, in order to keep context in SELinux.
5274 (copy-file tmpfile filename t
)
5275 (delete-file tmpfile
))))
5277 ;; Use inline file transfer.
5282 (set-buffer-multibyte nil
)
5283 ;; Use encoding function or command.
5284 (if (functionp loc-enc
)
5285 (with-progress-reporter
5286 v
3 (format "Encoding region using function `%s'"
5288 (let ((coding-system-for-read 'binary
))
5289 (insert-file-contents-literally tmpfile
))
5290 ;; The following `let' is a workaround for the
5291 ;; base64.el that comes with pgnus-0.84. If
5292 ;; both of the following conditions are
5293 ;; satisfied, it tries to write to a local
5294 ;; file in default-directory, but at this
5295 ;; point, default-directory is remote.
5296 ;; (`call-process-region' can't write to
5297 ;; remote files, it seems.) The file in
5298 ;; question is a tmp file anyway.
5299 (let ((default-directory
5300 (tramp-compat-temporary-file-directory)))
5301 (funcall loc-enc
(point-min) (point-max))))
5303 (with-progress-reporter
5304 v
3 (format "Encoding region using command `%s'"
5306 (unless (zerop (tramp-call-local-coding-command
5310 (concat "Cannot write to `%s', "
5311 "local encoding command `%s' failed")
5312 filename loc-enc
))))
5314 ;; Send buffer into remote decoding command which
5315 ;; writes to remote file. Because this happens on
5316 ;; the remote host, we cannot use the function.
5317 (with-progress-reporter
5319 (format "Decoding region into remote file %s" filename
)
5320 (goto-char (point-max))
5321 (unless (bolp) (newline))
5325 (concat rem-dec
" <<'EOF'\n%sEOF")
5326 (tramp-shell-quote-argument localname
)
5328 (tramp-barf-unless-okay
5330 "Couldn't write region to `%s', decode using `%s' failed"
5332 ;; When `file-precious-flag' is set, the region is
5333 ;; written to a temporary file. Check that the
5334 ;; checksum is equal to that from the local tmpfile.
5335 (when file-precious-flag
5338 ;; cksum runs locally, if possible.
5339 (zerop (tramp-local-call-process "cksum" tmpfile t
))
5340 ;; cksum runs remotely.
5342 (tramp-send-command-and-check
5346 (tramp-shell-quote-argument localname
))))
5347 ;; ... they are different.
5351 (with-current-buffer (tramp-get-buffer v
)
5355 (concat "Couldn't write region to `%s',"
5356 " decode using `%s' failed")
5357 filename rem-dec
)))))
5360 (delete-file tmpfile
)))
5362 ;; That's not expected.
5366 (concat "Method `%s' should specify both encoding and "
5367 "decoding command or an rcp program")
5370 ;; Make `last-coding-system-used' have the right value.
5371 (when coding-system-used
5372 (set 'last-coding-system-used coding-system-used
))))
5374 (tramp-flush-file-property v
(file-name-directory localname
))
5375 (tramp-flush-file-property v localname
)
5377 ;; We must protect `last-coding-system-used', now we have set it
5378 ;; to its correct value.
5379 (let (last-coding-system-used (need-chown t
))
5380 ;; Set file modification time.
5381 (when (or (eq visit t
) (stringp visit
))
5382 (let ((file-attr (file-attributes filename
)))
5383 (set-visited-file-modtime
5384 ;; We must pass modtime explicitely, because filename can
5385 ;; be different from (buffer-file-name), f.e. if
5386 ;; `file-precious-flag' is set.
5388 (when (and (eq (nth 2 file-attr
) uid
)
5389 (eq (nth 3 file-attr
) gid
))
5390 (setq need-chown nil
))))
5392 ;; Set the ownership.
5394 (tramp-set-file-uid-gid filename uid gid
))
5395 (when (or (eq visit t
) (null visit
) (stringp visit
))
5396 (tramp-message v
0 "Wrote %s" filename
))
5397 (run-hooks 'tramp-handle-write-region-hook
)))))
5399 (defvar tramp-vc-registered-file-names nil
5400 "List used to collect file names, which are checked during `vc-registered'.")
5402 ;; VC backends check for the existence of various different special
5403 ;; files. This is very time consuming, because every single check
5404 ;; requires a remote command (the file cache must be invalidated).
5405 ;; Therefore, we apply a kind of optimization. We install the file
5406 ;; name handler `tramp-vc-file-name-handler', which does nothing but
5407 ;; remembers all file names for which `file-exists-p' or
5408 ;; `file-readable-p' has been applied. A first run of `vc-registered'
5409 ;; is performed. Afterwards, a script is applied for all collected
5410 ;; file names, using just one remote command. The result of this
5411 ;; script is used to fill the file cache with actual values. Now we
5412 ;; can reset the file name handlers, and we make a second run of
5413 ;; `vc-registered', which returns the expected result without sending
5414 ;; any other remote command.
5415 (defun tramp-handle-vc-registered (file)
5416 "Like `vc-registered' for Tramp files."
5417 (with-temp-message ""
5418 (with-parsed-tramp-file-name file nil
5419 (with-progress-reporter
5420 v
3 (format "Checking `vc-registered' for %s" file
)
5422 ;; There could be new files, created by the vc backend. We
5423 ;; cannot reuse the old cache entries, therefore.
5424 (let (tramp-vc-registered-file-names
5425 (tramp-cache-inhibit-cache (current-time))
5426 (file-name-handler-alist
5427 `((,tramp-file-name-regexp . tramp-vc-file-name-handler
))))
5429 ;; Here we collect only file names, which need an operation.
5430 (tramp-run-real-handler 'vc-registered
(list file
))
5431 (tramp-message v
10 "\n%s" tramp-vc-registered-file-names
)
5433 ;; Send just one command, in order to fill the cache.
5434 (when tramp-vc-registered-file-names
5435 (tramp-maybe-send-script
5437 (format tramp-vc-registered-read-file-names
5438 (tramp-get-file-exists-command v
)
5439 (format "%s -r" (tramp-get-test-command v
)))
5440 "tramp_vc_registered_read_file_names")
5444 (tramp-send-command-and-read
5447 "tramp_vc_registered_read_file_names <<'EOF'\n%s\nEOF\n"
5448 (mapconcat 'tramp-shell-quote-argument
5449 tramp-vc-registered-file-names
5452 (tramp-set-file-property
5453 v
(car elt
) (cadr elt
) (cadr (cdr elt
))))))
5455 ;; Second run. Now all `file-exists-p' or `file-readable-p'
5456 ;; calls shall be answered from the file cache. We unset
5457 ;; `process-file-side-effects' in order to keep the cache when
5458 ;; `process-file' calls appear.
5459 (let (process-file-side-effects)
5460 (tramp-run-real-handler 'vc-registered
(list file
)))))))
5463 (progn (defun tramp-run-real-handler (operation args
)
5464 "Invoke normal file name handler for OPERATION.
5465 First arg specifies the OPERATION, second arg is a list of arguments to
5466 pass to the OPERATION."
5467 (let* ((inhibit-file-name-handlers
5468 `(tramp-file-name-handler
5469 tramp-vc-file-name-handler
5470 tramp-completion-file-name-handler
5471 cygwin-mount-name-hook-function
5472 cygwin-mount-map-drive-hook-function
5474 ,(and (eq inhibit-file-name-operation operation
)
5475 inhibit-file-name-handlers
)))
5476 (inhibit-file-name-operation operation
))
5477 (apply operation args
))))
5480 (progn (defun tramp-completion-run-real-handler (operation args
)
5481 "Invoke `tramp-file-name-handler' for OPERATION.
5482 First arg specifies the OPERATION, second arg is a list of arguments to
5483 pass to the OPERATION."
5484 (let* ((inhibit-file-name-handlers
5485 `(tramp-completion-file-name-handler
5486 cygwin-mount-name-hook-function
5487 cygwin-mount-map-drive-hook-function
5489 ,(and (eq inhibit-file-name-operation operation
)
5490 inhibit-file-name-handlers
)))
5491 (inhibit-file-name-operation operation
))
5492 (apply operation args
))))
5494 ;; We handle here all file primitives. Most of them have the file
5495 ;; name as first parameter; nevertheless we check for them explicitly
5496 ;; in order to be signaled if a new primitive appears. This
5497 ;; scenario is needed because there isn't a way to decide by
5498 ;; syntactical means whether a foreign method must be called. It would
5499 ;; ease the life if `file-name-handler-alist' would support a decision
5500 ;; function as well but regexp only.
5501 (defun tramp-file-name-for-operation (operation &rest args
)
5502 "Return file name related to OPERATION file primitive.
5503 ARGS are the arguments OPERATION has been called with."
5505 ;; FILE resp DIRECTORY.
5507 (list 'access-file
'byte-compiler-base-file-name
'delete-directory
5508 'delete-file
'diff-latest-backup-file
'directory-file-name
5509 'directory-files
'directory-files-and-attributes
5510 'dired-compress-file
'dired-uncache
5511 'file-accessible-directory-p
'file-attributes
5512 'file-directory-p
'file-executable-p
'file-exists-p
5513 'file-local-copy
'file-remote-p
'file-modes
5514 'file-name-as-directory
'file-name-directory
5515 'file-name-nondirectory
'file-name-sans-versions
5516 'file-ownership-preserved-p
'file-readable-p
5517 'file-regular-p
'file-symlink-p
'file-truename
5518 'file-writable-p
'find-backup-file-name
'find-file-noselect
5519 'get-file-buffer
'insert-directory
'insert-file-contents
5520 'load
'make-directory
'make-directory-internal
5521 'set-file-modes
'substitute-in-file-name
5522 'unhandled-file-name-directory
'vc-registered
5526 'file-selinux-context
'set-file-selinux-context
5528 'abbreviate-file-name
'create-file-buffer
5529 'dired-file-modtime
'dired-make-compressed-filename
5530 'dired-recursive-delete-directory
'dired-set-file-modtime
5531 'dired-shell-unhandle-file-name
'dired-uucode-file
5532 'insert-file-contents-literally
'make-temp-name
'recover-file
5533 'vm-imap-check-mail
'vm-pop-check-mail
'vm-spool-check-mail
))
5534 (if (file-name-absolute-p (nth 0 args
))
5536 (expand-file-name (nth 0 args
))))
5537 ;; FILE DIRECTORY resp FILE1 FILE2.
5539 (list 'add-name-to-file
'copy-file
'expand-file-name
5540 'file-name-all-completions
'file-name-completion
5541 'file-newer-than-file-p
'make-symbolic-link
'rename-file
5545 'dired-make-relative-symlink
5546 'vm-imap-move-mail
'vm-pop-move-mail
'vm-spool-move-mail
))
5549 ((string-match tramp-file-name-regexp
(nth 0 args
)) (nth 0 args
))
5550 ((string-match tramp-file-name-regexp
(nth 1 args
)) (nth 1 args
))
5551 (t (buffer-file-name (current-buffer))))))
5553 ((eq operation
'write-region
)
5557 (list 'set-visited-file-modtime
'verify-visited-file-modtime
5559 'make-auto-save-file-name
5563 (if (bufferp (nth 0 args
)) (nth 0 args
) (current-buffer))))
5566 (list ;; not in Emacs 23+.
5575 'dired-print-file
'dired-shell-call-process
5577 'executable-find
'start-process
5578 'call-process
'call-process-region
))
5580 ;; Unknown file primitive.
5581 (t (error "unknown file I/O primitive: %s" operation
))))
5583 (defun tramp-find-foreign-file-name-handler (filename)
5584 "Return foreign file name handler if exists."
5585 (when (tramp-tramp-file-p filename
)
5586 (let ((v (tramp-dissect-file-name filename t
))
5587 (handler tramp-foreign-file-name-handler-alist
)
5589 ;; When we are not fully sure that filename completion is safe,
5590 ;; we should not return a handler.
5591 (when (or (tramp-file-name-method v
) (tramp-file-name-user v
)
5592 (and (tramp-file-name-host v
)
5593 (not (member (tramp-file-name-host v
)
5594 (mapcar 'car tramp-methods
))))
5595 (not (tramp-completion-mode-p)))
5597 (setq elt
(car handler
)
5598 handler
(cdr handler
))
5599 (when (funcall (car elt
) filename
)
5606 (defun tramp-file-name-handler (operation &rest args
)
5607 "Invoke Tramp file name handler.
5608 Falls back to normal file name handler if no Tramp file name handler exists."
5612 (tramp-replace-environment-variables
5613 (apply 'tramp-file-name-for-operation operation args
)))
5614 (completion (tramp-completion-mode-p))
5615 (foreign (tramp-find-foreign-file-name-handler filename
)))
5616 (with-parsed-tramp-file-name filename nil
5617 ;; Call the backend function.
5620 (apply foreign operation args
)
5622 ;; Trace that somebody has interrupted the
5625 (let (tramp-message-show-message)
5627 v
1 "Interrupt received in operation %s"
5628 (append (list operation
) args
)))
5629 ;; Propagate the quit signal.
5630 (signal (car err
) (cdr err
)))
5632 ;; When we are in completion mode, some failed
5633 ;; operations shall return at least a default value
5634 ;; in order to give the user a chance to correct the
5635 ;; file name in the minibuffer.
5638 ((and completion
(zerop (length localname
))
5639 (memq operation
'(file-exists-p file-directory-p
)))
5641 ((and completion
(zerop (length localname
))
5643 '(expand-file-name file-name-as-directory
)))
5645 ;; Propagate the error.
5646 (t (signal (car err
) (cdr err
))))))
5648 ;; Nothing to do for us.
5649 (tramp-run-real-handler operation args
)))))
5651 ;; When `tramp-mode' is not enabled, we don't do anything.
5652 (tramp-run-real-handler operation args
)))
5654 ;; In Emacs, there is some concurrency due to timers. If a timer
5655 ;; interrupts Tramp and wishes to use the same connection buffer as
5656 ;; the "main" Emacs, then garbage might occur in the connection
5657 ;; buffer. Therefore, we need to make sure that a timer does not use
5658 ;; the same connection buffer as the "main" Emacs. We implement a
5659 ;; cheap global lock, instead of locking each connection buffer
5660 ;; separately. The global lock is based on two variables,
5661 ;; `tramp-locked' and `tramp-locker'. `tramp-locked' is set to true
5662 ;; (with setq) to indicate a lock. But Tramp also calls itself during
5663 ;; processing of a single file operation, so we need to allow
5664 ;; recursive calls. That's where the `tramp-locker' variable comes in
5665 ;; -- it is let-bound to t during the execution of the current
5666 ;; handler. So if `tramp-locked' is t and `tramp-locker' is also t,
5667 ;; then we should just proceed because we have been called
5668 ;; recursively. But if `tramp-locker' is nil, then we are a timer
5669 ;; interrupting the "main" Emacs, and then we signal an error.
5671 (defvar tramp-locked nil
5672 "If non-nil, then Tramp is currently busy.
5673 Together with `tramp-locker', this implements a locking mechanism
5674 preventing reentrant calls of Tramp.")
5676 (defvar tramp-locker nil
5677 "If non-nil, then a caller has locked Tramp.
5678 Together with `tramp-locked', this implements a locking mechanism
5679 preventing reentrant calls of Tramp.")
5681 (defun tramp-sh-file-name-handler (operation &rest args
)
5682 "Invoke remote-shell Tramp file name handler.
5683 Fall back to normal file name handler if no Tramp handler exists."
5684 (when (and tramp-locked
(not tramp-locker
))
5685 (setq tramp-locked nil
)
5686 (signal 'file-error
(list "Forbidden reentrant call of Tramp")))
5687 (let ((tl tramp-locked
))
5690 (setq tramp-locked t
)
5691 (let ((tramp-locker t
))
5693 (let ((fn (assoc operation tramp-file-name-handler-alist
)))
5695 (apply (cdr fn
) args
)
5696 (tramp-run-real-handler operation args
))))))
5697 (setq tramp-locked tl
))))
5699 (defun tramp-vc-file-name-handler (operation &rest args
)
5700 "Invoke special file name handler, which collects files to be handled."
5703 (tramp-replace-environment-variables
5704 (apply 'tramp-file-name-for-operation operation args
)))
5705 (fn (assoc operation tramp-file-name-handler-alist
)))
5706 (with-parsed-tramp-file-name filename nil
5708 ;; That's what we want: file names, for which checks are
5709 ;; applied. We assume, that VC uses only `file-exists-p' and
5710 ;; `file-readable-p' checks; otherwise we must extend the
5711 ;; list. We do not perform any action, but return nil, in
5712 ;; order to keep `vc-registered' running.
5713 ((and fn
(memq operation
'(file-exists-p file-readable-p
)))
5714 (add-to-list 'tramp-vc-registered-file-names localname
'append
)
5716 ;; Tramp file name handlers like `expand-file-name'. They
5719 (save-match-data (apply (cdr fn
) args
)))
5720 ;; Default file name handlers, we don't care.
5721 (t (tramp-run-real-handler operation args
)))))))
5724 (progn (defun tramp-completion-file-name-handler (operation &rest args
)
5725 "Invoke Tramp file name completion handler.
5726 Falls back to normal file name handler if no Tramp file name handler exists."
5727 ;; We bind `directory-sep-char' here for XEmacs on Windows, which
5728 ;; would otherwise use backslash.
5729 (let ((directory-sep-char ?
/)
5730 (fn (assoc operation tramp-completion-file-name-handler-alist
)))
5732 ;; When `tramp-mode' is not enabled, we don't do anything.
5734 ;; For other syntaxes than `sep', the regexp matches many common
5735 ;; situations where the user doesn't actually want to use Tramp.
5736 ;; So to avoid autoloading Tramp after typing just "/s", we
5737 ;; disable this part of the completion, unless the user implicitly
5738 ;; indicated his interest in using a fancier completion system.
5739 (or (eq tramp-syntax
'sep
)
5740 (featurep 'tramp
) ;; If it's loaded, we may as well use it.
5741 ;; `partial-completion-mode' does not exist in XEmacs.
5742 ;; It is obsoleted with Emacs 24.1.
5743 (and (boundp 'partial-completion-mode
)
5744 (symbol-value 'partial-completion-mode
))
5745 ;; FIXME: These may have been loaded even if the user never
5746 ;; intended to use them.
5748 (featurep 'icicles
)))
5749 (save-match-data (apply (cdr fn
) args
))
5750 (tramp-completion-run-real-handler operation args
)))))
5753 (progn (defun tramp-register-file-name-handlers ()
5754 "Add Tramp file name handlers to `file-name-handler-alist'."
5755 ;; Remove autoloaded handlers from file name handler alist. Useful,
5756 ;; if `tramp-syntax' has been changed.
5757 (let ((a1 (rassq 'tramp-file-name-handler file-name-handler-alist
)))
5758 (setq file-name-handler-alist
(delq a1 file-name-handler-alist
)))
5760 'tramp-completion-file-name-handler file-name-handler-alist
)))
5761 (setq file-name-handler-alist
(delq a1 file-name-handler-alist
)))
5762 ;; Add the handlers.
5763 (add-to-list 'file-name-handler-alist
5764 (cons tramp-file-name-regexp
'tramp-file-name-handler
))
5765 (put 'tramp-file-name-handler
'safe-magic t
)
5766 (add-to-list 'file-name-handler-alist
5767 (cons tramp-completion-file-name-regexp
5768 'tramp-completion-file-name-handler
))
5769 (put 'tramp-completion-file-name-handler
'safe-magic t
)
5770 ;; If jka-compr or epa-file are already loaded, move them to the
5771 ;; front of `file-name-handler-alist'.
5772 (dolist (fnh '(epa-file-handler jka-compr-handler
))
5773 (let ((entry (rassoc fnh file-name-handler-alist
)))
5775 (setq file-name-handler-alist
5776 (cons entry
(delete entry file-name-handler-alist
))))))))
5778 ;; `tramp-file-name-handler' must be registered before evaluation of
5779 ;; site-start and init files, because there might exist remote files
5780 ;; already, f.e. files kept via recentf-mode.
5781 ;;;###autoload(tramp-register-file-name-handlers)
5782 (tramp-register-file-name-handlers)
5785 (defun tramp-unload-file-name-handlers ()
5786 (setq file-name-handler-alist
5787 (delete (rassoc 'tramp-file-name-handler
5788 file-name-handler-alist
)
5789 (delete (rassoc 'tramp-completion-file-name-handler
5790 file-name-handler-alist
)
5791 file-name-handler-alist
))))
5793 (add-hook 'tramp-unload-hook
'tramp-unload-file-name-handlers
)
5795 ;;; File name handler functions for completion mode:
5797 (defvar tramp-completion-mode nil
5798 "If non-nil, external packages signal that they are in file name completion.
5800 This is necessary, because Tramp uses a heuristic depending on last
5801 input event. This fails when external packages use other characters
5802 but <TAB>, <SPACE> or ?\\? for file name completion. This variable
5803 should never be set globally, the intention is to let-bind it.")
5805 ;; Necessary because `tramp-file-name-regexp-unified' and
5806 ;; `tramp-completion-file-name-regexp-unified' aren't different. If
5807 ;; nil, `tramp-completion-run-real-handler' is called (i.e. forwarding
5808 ;; to `tramp-file-name-handler'). Otherwise, it takes
5809 ;; `tramp-run-real-handler'. Using `last-input-event' is a little bit
5810 ;; risky, because completing a file might require loading other files,
5811 ;; like "~/.netrc", and for them it shouldn't be decided based on that
5812 ;; variable. On the other hand, those files shouldn't have partial
5813 ;; Tramp file name syntax. Maybe another variable should be introduced
5814 ;; overwriting this check in such cases. Or we change Tramp file name
5815 ;; syntax in order to avoid ambiguities, like in XEmacs ...
5816 (defun tramp-completion-mode-p ()
5817 "Check, whether method / user name / host name completion is active."
5819 ;; Signal from outside. `non-essential' has been introduced in Emacs 24.
5820 (and (boundp 'non-essential
) (symbol-value 'non-essential
))
5821 tramp-completion-mode
5823 (equal last-input-event
'tab
)
5824 (and (natnump last-input-event
)
5826 ;; ?\t has event-modifier 'control.
5827 (equal last-input-event ?
\t)
5828 (and (not (event-modifiers last-input-event
))
5829 (or (equal last-input-event ?
\?)
5830 (equal last-input-event ?\
)))))
5832 (and (featurep 'xemacs
)
5833 ;; `last-input-event' might be nil.
5834 (not (null last-input-event
))
5835 ;; `last-input-event' may have no character approximation.
5836 (tramp-compat-funcall 'event-to-character last-input-event
)
5838 ;; ?\t has event-modifier 'control.
5840 (tramp-compat-funcall 'event-to-character last-input-event
) ?
\t)
5841 (and (not (event-modifiers last-input-event
))
5843 (tramp-compat-funcall 'event-to-character last-input-event
)
5846 (tramp-compat-funcall 'event-to-character last-input-event
)
5849 (defun tramp-connectable-p (filename)
5850 "Check, whether it is possible to connect the remote host w/o side-effects.
5851 This is true, if either the remote host is already connected, or if we are
5852 not in completion mode."
5853 (and (tramp-tramp-file-p filename
)
5854 (with-parsed-tramp-file-name filename nil
5855 (or (get-buffer (tramp-buffer-name v
))
5856 (not (tramp-completion-mode-p))))))
5858 ;; Method, host name and user name completion.
5859 ;; `tramp-completion-dissect-file-name' returns a list of
5860 ;; tramp-file-name structures. For all of them we return possible completions.
5862 (defun tramp-completion-handle-file-name-all-completions (filename directory
)
5863 "Like `file-name-all-completions' for partial Tramp files."
5865 (let* ((fullname (tramp-drop-volume-letter
5866 (expand-file-name filename directory
)))
5867 ;; Possible completion structures.
5868 (v (tramp-completion-dissect-file-name fullname
))
5872 (let* ((car (car v
))
5873 (method (tramp-file-name-method car
))
5874 (user (tramp-file-name-user car
))
5875 (host (tramp-file-name-host car
))
5876 (localname (tramp-file-name-localname car
))
5877 (m (tramp-find-method method user host
))
5878 (tramp-current-user user
) ; see `tramp-parse-passwd'
5881 (unless localname
;; Nothing to complete.
5885 ;; Method dependent user / host combinations.
5889 (setq all-user-hosts
5890 (append all-user-hosts
5891 (funcall (nth 0 x
) (nth 1 x
)))))
5892 (tramp-get-completion-function m
))
5898 (tramp-get-completion-user-host
5899 method user host
(nth 0 x
) (nth 1 x
)))
5900 (delq nil all-user-hosts
)))))
5902 ;; Possible methods.
5904 (append result
(tramp-get-completion-methods m
)))))
5908 ;; Unify list, remove nil elements.
5910 (let ((car (car result
)))
5914 (substring car
(length (tramp-drop-volume-letter directory
)))))
5915 (setq result
(cdr result
))))
5917 ;; Complete local parts.
5921 (apply (if (tramp-connectable-p fullname
)
5922 'tramp-completion-run-real-handler
5923 'tramp-run-real-handler
)
5924 'file-name-all-completions
(list (list filename directory
)))
5927 ;; Method, host name and user name completion for a file.
5929 (defun tramp-completion-handle-file-name-completion
5930 (filename directory
&optional predicate
)
5931 "Like `file-name-completion' for Tramp files."
5934 (mapcar 'list
(file-name-all-completions filename directory
))
5935 (when (and predicate
5936 (tramp-connectable-p (expand-file-name filename directory
)))
5937 (lambda (x) (funcall predicate
(expand-file-name (car x
) directory
))))))
5939 ;; I misuse a little bit the tramp-file-name structure in order to handle
5940 ;; completion possibilities for partial methods / user names / host names.
5941 ;; Return value is a list of tramp-file-name structures according to possible
5942 ;; completions. If "localname" is non-nil it means there
5943 ;; shouldn't be a completion anymore.
5945 ;; Expected results:
5947 ;; "/x" "/[x" "/x@" "/[x@" "/x@y" "/[x@y"
5948 ;; [nil nil "x" nil] [nil "x" nil nil] [nil "x" "y" nil]
5949 ;; [nil "x" nil nil]
5950 ;; ["x" nil nil nil]
5952 ;; "/x:" "/x:y" "/x:y:"
5953 ;; [nil nil "x" ""] [nil nil "x" "y"] ["x" nil "y" ""]
5955 ;; ["x" nil "" nil] ["x" nil "y" nil]
5956 ;; ["x" "" nil nil] ["x" "y" nil nil]
5958 ;; "/x:y@" "/x:y@z" "/x:y@z:"
5959 ;; [nil nil "x" "y@"] [nil nil "x" "y@z"] ["x" "y" "z" ""]
5960 ;; "/[x/y@" "/[x/y@z"
5961 ;; ["x" nil "y" nil] ["x" "y" "z" nil]
5962 (defun tramp-completion-dissect-file-name (name)
5963 "Returns a list of `tramp-file-name' structures.
5964 They are collected by `tramp-completion-dissect-file-name1'."
5968 (tramp-completion-ipv6-regexp
5971 (if (zerop (length tramp-postfix-ipv6-format
))
5972 tramp-postfix-host-format
5973 tramp-postfix-ipv6-format
)))
5974 ;; "/method" "/[method"
5975 (tramp-completion-file-name-structure1
5976 (list (concat tramp-prefix-regexp
"\\(" tramp-method-regexp x-nil
"\\)$")
5979 (tramp-completion-file-name-structure2
5980 (list (concat tramp-prefix-regexp
"\\(" tramp-user-regexp x-nil
"\\)$")
5983 (tramp-completion-file-name-structure3
5984 (list (concat tramp-prefix-regexp
"\\(" tramp-host-regexp x-nil
"\\)$")
5986 ;; "/[ipv6" "/[ipv6"
5987 (tramp-completion-file-name-structure4
5988 (list (concat tramp-prefix-regexp
5989 tramp-prefix-ipv6-regexp
5990 "\\(" tramp-completion-ipv6-regexp x-nil
"\\)$")
5992 ;; "/user@host" "/[user@host"
5993 (tramp-completion-file-name-structure5
5994 (list (concat tramp-prefix-regexp
5995 "\\(" tramp-user-regexp
"\\)" tramp-postfix-user-regexp
5996 "\\(" tramp-host-regexp x-nil
"\\)$")
5998 ;; "/user@[ipv6" "/[user@ipv6"
5999 (tramp-completion-file-name-structure6
6000 (list (concat tramp-prefix-regexp
6001 "\\(" tramp-user-regexp
"\\)" tramp-postfix-user-regexp
6002 tramp-prefix-ipv6-regexp
6003 "\\(" tramp-completion-ipv6-regexp x-nil
"\\)$")
6005 ;; "/method:user" "/[method/user" "/method://user"
6006 (tramp-completion-file-name-structure7
6007 (list (concat tramp-prefix-regexp
6008 "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
6009 "\\(" tramp-user-regexp x-nil
"\\)$")
6011 ;; "/method:host" "/[method/host" "/method://host"
6012 (tramp-completion-file-name-structure8
6013 (list (concat tramp-prefix-regexp
6014 "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
6015 "\\(" tramp-host-regexp x-nil
"\\)$")
6017 ;; "/method:[ipv6" "/[method/ipv6" "/method://[ipv6"
6018 (tramp-completion-file-name-structure9
6019 (list (concat tramp-prefix-regexp
6020 "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
6021 tramp-prefix-ipv6-regexp
6022 "\\(" tramp-completion-ipv6-regexp x-nil
"\\)$")
6024 ;; "/method:user@host" "/[method/user@host" "/method://user@host"
6025 (tramp-completion-file-name-structure10
6026 (list (concat tramp-prefix-regexp
6027 "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
6028 "\\(" tramp-user-regexp
"\\)" tramp-postfix-user-regexp
6029 "\\(" tramp-host-regexp x-nil
"\\)$")
6031 ;; "/method:user@[ipv6" "/[method/user@ipv6" "/method://user@[ipv6"
6032 (tramp-completion-file-name-structure11
6033 (list (concat tramp-prefix-regexp
6034 "\\(" tramp-method-regexp
"\\)" tramp-postfix-method-regexp
6035 "\\(" tramp-user-regexp
"\\)" tramp-postfix-user-regexp
6036 tramp-prefix-ipv6-regexp
6037 "\\(" tramp-completion-ipv6-regexp x-nil
"\\)$")
6039 ;; "/method: "/method:/"
6040 (tramp-completion-file-name-structure12
6042 (if (equal tramp-syntax
'url
)
6043 (concat tramp-prefix-regexp
6044 "\\(" tramp-method-regexp
"\\)"
6045 "\\(" (substring tramp-postfix-method-regexp
0 1)
6046 "\\|" (substring tramp-postfix-method-regexp
1 2) "\\)"
6048 ;; Should not match if not URL syntax.
6049 (concat tramp-prefix-regexp
"/$"))
6051 ;; "/method: "/method:/"
6052 (tramp-completion-file-name-structure13
6054 (if (equal tramp-syntax
'url
)
6055 (concat tramp-prefix-regexp
6056 "\\(" tramp-method-regexp
"\\)"
6057 "\\(" (substring tramp-postfix-method-regexp
0 1)
6058 "\\|" (substring tramp-postfix-method-regexp
1 2) "\\)"
6060 ;; Should not match if not URL syntax.
6061 (concat tramp-prefix-regexp
"/$"))
6064 (mapc (lambda (regexp)
6065 (add-to-list 'result
6066 (tramp-completion-dissect-file-name1 regexp name
)))
6068 tramp-completion-file-name-structure1
6069 tramp-completion-file-name-structure2
6070 tramp-completion-file-name-structure3
6071 tramp-completion-file-name-structure4
6072 tramp-completion-file-name-structure5
6073 tramp-completion-file-name-structure6
6074 tramp-completion-file-name-structure7
6075 tramp-completion-file-name-structure8
6076 tramp-completion-file-name-structure9
6077 tramp-completion-file-name-structure10
6078 tramp-completion-file-name-structure11
6079 tramp-completion-file-name-structure12
6080 tramp-completion-file-name-structure13
6081 tramp-file-name-structure
))
6085 (defun tramp-completion-dissect-file-name1 (structure name
)
6086 "Returns a `tramp-file-name' structure matching STRUCTURE.
6087 The structure consists of remote method, remote user,
6088 remote host and localname (filename on remote host)."
6091 (when (string-match (nth 0 structure
) name
)
6092 (let ((method (and (nth 1 structure
)
6093 (match-string (nth 1 structure
) name
)))
6094 (user (and (nth 2 structure
)
6095 (match-string (nth 2 structure
) name
)))
6096 (host (and (nth 3 structure
)
6097 (match-string (nth 3 structure
) name
)))
6098 (localname (and (nth 4 structure
)
6099 (match-string (nth 4 structure
) name
))))
6100 (vector method user host localname
)))))
6102 ;; This function returns all possible method completions, adding the
6103 ;; trailing method delimeter.
6104 (defun tramp-get-completion-methods (partial-method)
6105 "Returns all method completions for PARTIAL-METHOD."
6109 (string-match (concat "^" (regexp-quote partial-method
)) method
)
6110 (tramp-completion-make-tramp-file-name method nil nil nil
)))
6111 (mapcar 'car tramp-methods
)))
6113 ;; Compares partial user and host names with possible completions.
6114 (defun tramp-get-completion-user-host (method partial-user partial-host user host
)
6115 "Returns the most expanded string for user and host name completion.
6116 PARTIAL-USER must match USER, PARTIAL-HOST must match HOST."
6119 ((and partial-user partial-host
)
6121 (string-match (concat "^" (regexp-quote partial-host
)) host
)
6122 (string-equal partial-user
(or user partial-user
)))
6123 (setq user partial-user
)
6130 (and user
(string-match (concat "^" (regexp-quote partial-user
)) user
))
6136 (and host
(string-match (concat "^" (regexp-quote partial-host
)) host
))
6142 (unless (zerop (+ (length user
) (length host
)))
6143 (tramp-completion-make-tramp-file-name method user host nil
)))
6145 (defun tramp-parse-rhosts (filename)
6146 "Return a list of (user host) tuples allowed to access.
6147 Either user or host may be nil."
6148 ;; On Windows, there are problems in completion when
6149 ;; `default-directory' is remote.
6150 (let ((default-directory (tramp-compat-temporary-file-directory))
6152 (when (file-readable-p filename
)
6154 (insert-file-contents filename
)
6155 (goto-char (point-min))
6157 (push (tramp-parse-rhosts-group) res
))))
6160 (defun tramp-parse-rhosts-group ()
6161 "Return a (user host) tuple allowed to access.
6162 Either user or host may be nil."
6166 "^\\(" tramp-host-regexp
"\\)"
6167 "\\([ \t]+" "\\(" tramp-user-regexp
"\\)" "\\)?")))
6168 (narrow-to-region (point) (tramp-compat-line-end-position))
6169 (when (re-search-forward regexp nil t
)
6170 (setq result
(append (list (match-string 3) (match-string 1)))))
6175 (defun tramp-parse-shosts (filename)
6176 "Return a list of (user host) tuples allowed to access.
6177 User is always nil."
6178 ;; On Windows, there are problems in completion when
6179 ;; `default-directory' is remote.
6180 (let ((default-directory (tramp-compat-temporary-file-directory))
6182 (when (file-readable-p filename
)
6184 (insert-file-contents filename
)
6185 (goto-char (point-min))
6187 (push (tramp-parse-shosts-group) res
))))
6190 (defun tramp-parse-shosts-group ()
6191 "Return a (user host) tuple allowed to access.
6192 User is always nil."
6194 (regexp (concat "^\\(" tramp-host-regexp
"\\)")))
6195 (narrow-to-region (point) (tramp-compat-line-end-position))
6196 (when (re-search-forward regexp nil t
)
6197 (setq result
(list nil
(match-string 1))))
6200 (> (skip-chars-forward ",") 0)
6204 (defun tramp-parse-sconfig (filename)
6205 "Return a list of (user host) tuples allowed to access.
6206 User is always nil."
6207 ;; On Windows, there are problems in completion when
6208 ;; `default-directory' is remote.
6209 (let ((default-directory (tramp-compat-temporary-file-directory))
6211 (when (file-readable-p filename
)
6213 (insert-file-contents filename
)
6214 (goto-char (point-min))
6216 (push (tramp-parse-sconfig-group) res
))))
6219 (defun tramp-parse-sconfig-group ()
6220 "Return a (user host) tuple allowed to access.
6221 User is always nil."
6223 (regexp (concat "^[ \t]*Host[ \t]+" "\\(" tramp-host-regexp
"\\)")))
6224 (narrow-to-region (point) (tramp-compat-line-end-position))
6225 (when (re-search-forward regexp nil t
)
6226 (setq result
(list nil
(match-string 1))))
6229 (> (skip-chars-forward ",") 0)
6233 (defun tramp-parse-shostkeys (dirname)
6234 "Return a list of (user host) tuples allowed to access.
6235 User is always nil."
6236 ;; On Windows, there are problems in completion when
6237 ;; `default-directory' is remote.
6238 (let* ((default-directory (tramp-compat-temporary-file-directory))
6239 (regexp (concat "^key_[0-9]+_\\(" tramp-host-regexp
"\\)\\.pub$"))
6240 (files (when (file-directory-p dirname
) (directory-files dirname
)))
6243 (when (string-match regexp
(car files
))
6244 (push (list nil
(match-string 1 (car files
))) result
))
6245 (setq files
(cdr files
)))
6248 (defun tramp-parse-sknownhosts (dirname)
6249 "Return a list of (user host) tuples allowed to access.
6250 User is always nil."
6251 ;; On Windows, there are problems in completion when
6252 ;; `default-directory' is remote.
6253 (let* ((default-directory (tramp-compat-temporary-file-directory))
6254 (regexp (concat "^\\(" tramp-host-regexp
6255 "\\)\\.ssh-\\(dss\\|rsa\\)\\.pub$"))
6256 (files (when (file-directory-p dirname
) (directory-files dirname
)))
6259 (when (string-match regexp
(car files
))
6260 (push (list nil
(match-string 1 (car files
))) result
))
6261 (setq files
(cdr files
)))
6264 (defun tramp-parse-hosts (filename)
6265 "Return a list of (user host) tuples allowed to access.
6266 User is always nil."
6267 ;; On Windows, there are problems in completion when
6268 ;; `default-directory' is remote.
6269 (let ((default-directory (tramp-compat-temporary-file-directory))
6271 (when (file-readable-p filename
)
6273 (insert-file-contents filename
)
6274 (goto-char (point-min))
6276 (push (tramp-parse-hosts-group) res
))))
6279 (defun tramp-parse-hosts-group ()
6280 "Return a (user host) tuple allowed to access.
6281 User is always nil."
6284 (concat "^\\(" tramp-ipv6-regexp
"\\|" tramp-host-regexp
"\\)")))
6285 (narrow-to-region (point) (tramp-compat-line-end-position))
6286 (when (re-search-forward regexp nil t
)
6287 (setq result
(list nil
(match-string 1))))
6290 (> (skip-chars-forward " \t") 0)
6294 ;; For su-alike methods it would be desirable to return "root@localhost"
6295 ;; as default. Unfortunately, we have no information whether any user name
6296 ;; has been typed already. So we use `tramp-current-user' as indication,
6297 ;; assuming it is set in `tramp-completion-handle-file-name-all-completions'.
6298 (defun tramp-parse-passwd (filename)
6299 "Return a list of (user host) tuples allowed to access.
6300 Host is always \"localhost\"."
6301 ;; On Windows, there are problems in completion when
6302 ;; `default-directory' is remote.
6303 (let ((default-directory (tramp-compat-temporary-file-directory))
6305 (if (zerop (length tramp-current-user
))
6307 (when (file-readable-p filename
)
6309 (insert-file-contents filename
)
6310 (goto-char (point-min))
6312 (push (tramp-parse-passwd-group) res
))))
6315 (defun tramp-parse-passwd-group ()
6316 "Return a (user host) tuple allowed to access.
6317 Host is always \"localhost\"."
6319 (regexp (concat "^\\(" tramp-user-regexp
"\\):")))
6320 (narrow-to-region (point) (tramp-compat-line-end-position))
6321 (when (re-search-forward regexp nil t
)
6322 (setq result
(list (match-string 1) "localhost")))
6327 (defun tramp-parse-netrc (filename)
6328 "Return a list of (user host) tuples allowed to access.
6330 ;; On Windows, there are problems in completion when
6331 ;; `default-directory' is remote.
6332 (let ((default-directory (tramp-compat-temporary-file-directory))
6334 (when (file-readable-p filename
)
6336 (insert-file-contents filename
)
6337 (goto-char (point-min))
6339 (push (tramp-parse-netrc-group) res
))))
6342 (defun tramp-parse-netrc-group ()
6343 "Return a (user host) tuple allowed to access.
6348 "^[ \t]*machine[ \t]+" "\\(" tramp-host-regexp
"\\)"
6349 "\\([ \t]+login[ \t]+" "\\(" tramp-user-regexp
"\\)" "\\)?")))
6350 (narrow-to-region (point) (tramp-compat-line-end-position))
6351 (when (re-search-forward regexp nil t
)
6352 (setq result
(list (match-string 3) (match-string 1))))
6357 (defun tramp-parse-putty (registry)
6358 "Return a list of (user host) tuples allowed to access.
6359 User is always nil."
6360 ;; On Windows, there are problems in completion when
6361 ;; `default-directory' is remote.
6362 (let ((default-directory (tramp-compat-temporary-file-directory))
6365 (when (zerop (tramp-local-call-process "reg" nil t nil
"query" registry
))
6366 (goto-char (point-min))
6368 (push (tramp-parse-putty-group registry
) res
))))
6371 (defun tramp-parse-putty-group (registry)
6372 "Return a (user host) tuple allowed to access.
6373 User is always nil."
6375 (regexp (concat (regexp-quote registry
) "\\\\\\(.+\\)")))
6376 (narrow-to-region (point) (tramp-compat-line-end-position))
6377 (when (re-search-forward regexp nil t
)
6378 (setq result
(list nil
(match-string 1))))
6383 ;;; Internal Functions:
6385 (defun tramp-maybe-send-script (vec script name
)
6386 "Define in remote shell function NAME implemented as SCRIPT.
6387 Only send the definition if it has not already been done."
6388 (let* ((p (tramp-get-connection-process vec
))
6389 (scripts (tramp-get-connection-property p
"scripts" nil
)))
6390 (unless (member name scripts
)
6391 (with-progress-reporter vec
5 (format "Sending script `%s'" name
)
6392 ;; The script could contain a call of Perl. This is masked with `%s'.
6393 (tramp-send-command-and-check
6395 (format "%s () {\n%s\n}" name
6396 (format script
(tramp-get-remote-perl vec
))))
6397 (tramp-set-connection-property p
"scripts" (cons name scripts
))))))
6399 (defun tramp-set-auto-save ()
6400 (when (and ;; ange-ftp has its own auto-save mechanism
6401 (eq (tramp-find-foreign-file-name-handler (buffer-file-name))
6402 'tramp-sh-file-name-handler
)
6404 (auto-save-mode 1)))
6405 (add-hook 'find-file-hooks
'tramp-set-auto-save t
)
6406 (add-hook 'tramp-unload-hook
6408 (remove-hook 'find-file-hooks
'tramp-set-auto-save
)))
6410 (defun tramp-run-test (switch filename
)
6411 "Run `test' on the remote system, given a SWITCH and a FILENAME.
6412 Returns the exit code of the `test' program."
6413 (with-parsed-tramp-file-name filename nil
6414 (tramp-send-command-and-check
6418 (tramp-get-test-command v
)
6420 (tramp-shell-quote-argument localname
)))))
6422 (defun tramp-run-test2 (format-string file1 file2
)
6423 "Run `test'-like program on the remote system, given FILE1, FILE2.
6424 FORMAT-STRING contains the program name, switches, and place holders.
6425 Returns the exit code of the `test' program. Barfs if the methods,
6426 hosts, or files, disagree."
6427 (unless (tramp-equal-remote file1 file2
)
6428 (with-parsed-tramp-file-name (if (tramp-tramp-file-p file1
) file1 file2
) nil
6431 "tramp-run-test2 only implemented for same method, user, host")))
6432 (with-parsed-tramp-file-name file1 v1
6433 (with-parsed-tramp-file-name file1 v2
6434 (tramp-send-command-and-check
6436 (format format-string
6437 (tramp-shell-quote-argument v1-localname
)
6438 (tramp-shell-quote-argument v2-localname
))))))
6440 (defun tramp-buffer-name (vec)
6441 "A name for the connection buffer VEC."
6442 ;; We must use `tramp-file-name-real-host', because for gateway
6443 ;; methods the default port will be expanded later on, which would
6445 (let ((method (tramp-file-name-method vec
))
6446 (user (tramp-file-name-user vec
))
6447 (host (tramp-file-name-real-host vec
)))
6448 (if (not (zerop (length user
)))
6449 (format "*tramp/%s %s@%s*" method user host
)
6450 (format "*tramp/%s %s*" method host
))))
6452 (defun tramp-delete-temp-file-function ()
6453 "Remove temporary files related to current buffer."
6454 (when (stringp tramp-temp-buffer-file-name
)
6456 (delete-file tramp-temp-buffer-file-name
)
6459 (add-hook 'kill-buffer-hook
'tramp-delete-temp-file-function
)
6460 (add-hook 'tramp-cache-unload-hook
6462 (remove-hook 'kill-buffer-hook
6463 'tramp-delete-temp-file-function
)))
6465 (defun tramp-get-buffer (vec)
6466 "Get the connection buffer to be used for VEC."
6467 (or (get-buffer (tramp-buffer-name vec
))
6468 (with-current-buffer (get-buffer-create (tramp-buffer-name vec
))
6469 (setq buffer-undo-list t
)
6470 (setq default-directory
6471 (tramp-make-tramp-file-name
6472 (tramp-file-name-method vec
)
6473 (tramp-file-name-user vec
)
6474 (tramp-file-name-host vec
)
6478 (defun tramp-get-connection-buffer (vec)
6479 "Get the connection buffer to be used for VEC.
6480 In case a second asynchronous communication has been started, it is different
6481 from `tramp-get-buffer'."
6482 (or (tramp-get-connection-property vec
"process-buffer" nil
)
6483 (tramp-get-buffer vec
)))
6485 (defun tramp-get-connection-process (vec)
6486 "Get the connection process to be used for VEC.
6487 In case a second asynchronous communication has been started, it is different
6488 from the default one."
6490 (or (tramp-get-connection-property vec
"process-name" nil
)
6491 (tramp-buffer-name vec
))))
6493 (defun tramp-debug-buffer-name (vec)
6494 "A name for the debug buffer for VEC."
6495 ;; We must use `tramp-file-name-real-host', because for gateway
6496 ;; methods the default port will be expanded later on, which would
6498 (let ((method (tramp-file-name-method vec
))
6499 (user (tramp-file-name-user vec
))
6500 (host (tramp-file-name-real-host vec
)))
6501 (if (not (zerop (length user
)))
6502 (format "*debug tramp/%s %s@%s*" method user host
)
6503 (format "*debug tramp/%s %s*" method host
))))
6505 (defconst tramp-debug-outline-regexp
6506 "[0-9]+:[0-9]+:[0-9]+\\.[0-9]+ [a-z0-9-]+ (\\([0-9]+\\)) #")
6508 (defun tramp-get-debug-buffer (vec)
6509 "Get the debug buffer for VEC."
6510 (with-current-buffer
6511 (get-buffer-create (tramp-debug-buffer-name vec
))
6513 (setq buffer-undo-list t
)
6514 ;; Activate `outline-mode'. This runs `text-mode-hook' and
6515 ;; `outline-mode-hook'. We must prevent that local processes
6516 ;; die. Yes: I've seen `flyspell-mode', which starts "ispell".
6517 ;; Furthermore, `outline-regexp' must have the correct value
6518 ;; already, because it is used by `font-lock-compile-keywords'.
6519 (let ((default-directory (tramp-compat-temporary-file-directory))
6520 (outline-regexp tramp-debug-outline-regexp
))
6522 (set (make-local-variable 'outline-regexp
) tramp-debug-outline-regexp
)
6523 (set (make-local-variable 'outline-level
) 'tramp-outline-level
))
6526 (defun tramp-outline-level ()
6527 "Return the depth to which a statement is nested in the outline.
6528 Point must be at the beginning of a header line.
6530 The outline level is equal to the verbosity of the Tramp message."
6531 (1+ (string-to-number (match-string 1))))
6533 (defun tramp-find-executable
6534 (vec progname dirlist
&optional ignore-tilde ignore-path
)
6535 "Searches for PROGNAME in $PATH and all directories mentioned in DIRLIST.
6536 First arg VEC specifies the connection, PROGNAME is the program
6537 to search for, and DIRLIST gives the list of directories to
6538 search. If IGNORE-TILDE is non-nil, directory names starting
6539 with `~' will be ignored. If IGNORE-PATH is non-nil, searches
6542 Returns the absolute file name of PROGNAME, if found, and nil otherwise.
6544 This function expects to be in the right *tramp* buffer."
6545 (with-current-buffer (tramp-get-connection-buffer vec
)
6547 ;; Check whether the executable is in $PATH. "which(1)" does not
6548 ;; report always a correct error code; therefore we check the
6549 ;; number of words it returns.
6551 (tramp-send-command vec
(format "which \\%s | wc -w" progname
))
6552 (goto-char (point-min))
6553 (if (looking-at "^\\s-*1$")
6554 (setq result
(concat "\\" progname
))))
6557 ;; Remove all ~/foo directories from dirlist. In XEmacs,
6558 ;; `remove' is in CL, and we want to avoid CL dependencies.
6561 (setq d
(car dirlist
))
6562 (setq dirlist
(cdr dirlist
))
6563 (unless (char-equal ?~
(aref d
0))
6564 (setq newdl
(cons d newdl
))))
6565 (setq dirlist
(nreverse newdl
))))
6568 (format (concat "while read d; "
6569 "do if test -x $d/%s -a -f $d/%s; "
6570 "then echo tramp_executable $d/%s; "
6571 "break; fi; done <<'EOF'\n"
6573 progname progname progname
(mapconcat 'identity dirlist
"\n")))
6574 (goto-char (point-max))
6575 (when (search-backward "tramp_executable " nil t
)
6576 (skip-chars-forward "^ ")
6577 (skip-chars-forward " ")
6578 (setq result
(buffer-substring
6579 (point) (tramp-compat-line-end-position)))))
6582 (defun tramp-set-remote-path (vec)
6583 "Sets the remote environment PATH to existing directories.
6584 I.e., for each directory in `tramp-remote-path', it is tested
6585 whether it exists and if so, it is added to the environment
6587 (tramp-message vec
5 (format "Setting $PATH environment variable"))
6589 vec
(format "PATH=%s; export PATH"
6590 (mapconcat 'identity
(tramp-get-remote-path vec
) ":"))))
6592 ;; ------------------------------------------------------------
6593 ;; -- Communication with external shell --
6594 ;; ------------------------------------------------------------
6596 (defun tramp-find-file-exists-command (vec)
6597 "Find a command on the remote host for checking if a file exists.
6598 Here, we are looking for a command which has zero exit status if the
6599 file exists and nonzero exit status otherwise."
6600 (let ((existing "/")
6602 (tramp-shell-quote-argument "/ this file does not exist "))
6604 ;; The algorithm is as follows: we try a list of several commands.
6605 ;; For each command, we first run `$cmd /' -- this should return
6606 ;; true, as the root directory always exists. And then we run
6607 ;; `$cmd /this\ file\ does\ not\ exist ', hoping that the file indeed
6608 ;; does not exist. This should return false. We use the first
6609 ;; command we find that seems to work.
6610 ;; The list of commands to try is as follows:
6611 ;; `ls -d' This works on most systems, but NetBSD 1.4
6612 ;; has a bug: `ls' always returns zero exit
6613 ;; status, even for files which don't exist.
6614 ;; `test -e' Some Bourne shells have a `test' builtin
6615 ;; which does not know the `-e' option.
6616 ;; `/bin/test -e' For those, the `test' binary on disk normally
6617 ;; provides the option. Alas, the binary
6618 ;; is sometimes `/bin/test' and sometimes it's
6620 ;; `/usr/bin/test -e' In case `/bin/test' does not exist.
6622 (and (setq result
(format "%s -e" (tramp-get-test-command vec
)))
6623 (zerop (tramp-send-command-and-check
6624 vec
(format "%s %s" result existing
)))
6625 (not (zerop (tramp-send-command-and-check
6626 vec
(format "%s %s" result nonexisting
)))))
6627 (and (setq result
"/bin/test -e")
6628 (zerop (tramp-send-command-and-check
6629 vec
(format "%s %s" result existing
)))
6630 (not (zerop (tramp-send-command-and-check
6631 vec
(format "%s %s" result nonexisting
)))))
6632 (and (setq result
"/usr/bin/test -e")
6633 (zerop (tramp-send-command-and-check
6634 vec
(format "%s %s" result existing
)))
6635 (not (zerop (tramp-send-command-and-check
6636 vec
(format "%s %s" result nonexisting
)))))
6637 (and (setq result
(format "%s -d" (tramp-get-ls-command vec
)))
6638 (zerop (tramp-send-command-and-check
6639 vec
(format "%s %s" result existing
)))
6640 (not (zerop (tramp-send-command-and-check
6641 vec
(format "%s %s" result nonexisting
))))))
6643 vec
'file-error
"Couldn't find command to check if file exists"))
6646 (defun tramp-open-shell (vec shell
)
6647 "Opens shell SHELL."
6648 (with-progress-reporter vec
5 (format "Opening remote shell `%s'" shell
)
6649 ;; Find arguments for this shell.
6650 (let ((tramp-end-of-output tramp-initial-end-of-output
)
6651 (alist tramp-sh-extra-args
)
6653 (while (and alist
(null extra-args
))
6654 (setq item
(pop alist
))
6655 (when (string-match (car item
) shell
)
6656 (setq extra-args
(cdr item
))))
6657 (when extra-args
(setq shell
(concat shell
" " extra-args
)))
6659 vec
(format "exec env ENV='' PROMPT_COMMAND='' PS1=%s PS2='' PS3='' %s"
6660 (shell-quote-argument tramp-end-of-output
) shell
)
6664 vec
(format "PS1=%s" (shell-quote-argument tramp-end-of-output
)) t
)
6665 (tramp-send-command vec
"PS2=''" t
)
6666 (tramp-send-command vec
"PS3=''" t
)
6667 (tramp-send-command vec
"PROMPT_COMMAND=''" t
)))
6669 (defun tramp-find-shell (vec)
6670 "Opens a shell on the remote host which groks tilde expansion."
6671 (unless (tramp-get-connection-property vec
"remote-shell" nil
)
6673 (with-current-buffer (tramp-get-buffer vec
)
6674 (tramp-send-command vec
"echo ~root" t
)
6676 ((or (string-match "^~root$" (buffer-string))
6677 ;; The default shell (ksh93) of OpenSolaris is buggy.
6678 (string-equal (tramp-get-connection-property vec
"uname" "")
6681 (or (tramp-find-executable
6682 vec
"bash" (tramp-get-remote-path vec
) t t
)
6683 (tramp-find-executable
6684 vec
"ksh" (tramp-get-remote-path vec
) t t
)))
6688 "Couldn't find a shell which groks tilde expansion"))
6690 vec
5 "Starting remote shell `%s' for tilde expansion" shell
)
6691 (tramp-open-shell vec shell
))
6694 vec
5 "Remote `%s' groks tilde expansion, good"
6695 (tramp-set-connection-property
6697 (tramp-get-method-parameter
6698 (tramp-file-name-method vec
) 'tramp-remote-sh
)))))))))
6700 ;; ------------------------------------------------------------
6701 ;; -- Functions for establishing connection --
6702 ;; ------------------------------------------------------------
6704 ;; The following functions are actions to be taken when seeing certain
6705 ;; prompts from the remote host. See the variable
6706 ;; `tramp-actions-before-shell' for usage of these functions.
6708 (defun tramp-action-login (proc vec
)
6709 "Send the login name."
6710 (when (not (stringp tramp-current-user
))
6711 (save-window-excursion
6712 (let ((enable-recursive-minibuffers t
))
6713 (pop-to-buffer (tramp-get-connection-buffer vec
))
6714 (setq tramp-current-user
(read-string (match-string 0))))))
6715 (tramp-message vec
3 "Sending login name `%s'" tramp-current-user
)
6716 (with-current-buffer (tramp-get-connection-buffer vec
)
6717 (tramp-message vec
6 "\n%s" (buffer-string)))
6718 (tramp-send-string vec tramp-current-user
))
6720 (defun tramp-action-password (proc vec
)
6721 "Query the user for a password."
6722 (with-current-buffer (process-buffer proc
)
6723 (tramp-check-for-regexp proc tramp-password-prompt-regexp
)
6724 (tramp-message vec
3 "Sending %s" (match-string 1))
6725 (tramp-enter-password proc
)
6726 ;; Hide password prompt.
6727 (narrow-to-region (point-max) (point-max))))
6729 (defun tramp-action-succeed (proc vec
)
6730 "Signal success in finding shell prompt."
6731 (throw 'tramp-action
'ok
))
6733 (defun tramp-action-permission-denied (proc vec
)
6734 "Signal permission denied."
6736 (throw 'tramp-action
'permission-denied
))
6738 (defun tramp-action-yesno (proc vec
)
6739 "Ask the user for confirmation using `yes-or-no-p'.
6740 Send \"yes\" to remote process on confirmation, abort otherwise.
6741 See also `tramp-action-yn'."
6742 (save-window-excursion
6743 (let ((enable-recursive-minibuffers t
))
6744 (save-match-data (pop-to-buffer (tramp-get-connection-buffer vec
)))
6745 (unless (yes-or-no-p (match-string 0))
6747 (throw 'tramp-action
'permission-denied
))
6748 (with-current-buffer (tramp-get-connection-buffer vec
)
6749 (tramp-message vec
6 "\n%s" (buffer-string)))
6750 (tramp-send-string vec
"yes"))))
6752 (defun tramp-action-yn (proc vec
)
6753 "Ask the user for confirmation using `y-or-n-p'.
6754 Send \"y\" to remote process on confirmation, abort otherwise.
6755 See also `tramp-action-yesno'."
6756 (save-window-excursion
6757 (let ((enable-recursive-minibuffers t
))
6758 (save-match-data (pop-to-buffer (tramp-get-connection-buffer vec
)))
6759 (unless (y-or-n-p (match-string 0))
6761 (throw 'tramp-action
'permission-denied
))
6762 (with-current-buffer (tramp-get-connection-buffer vec
)
6763 (tramp-message vec
6 "\n%s" (buffer-string)))
6764 (tramp-send-string vec
"y"))))
6766 (defun tramp-action-terminal (proc vec
)
6767 "Tell the remote host which terminal type to use.
6768 The terminal type can be configured with `tramp-terminal-type'."
6769 (tramp-message vec
5 "Setting `%s' as terminal type." tramp-terminal-type
)
6770 (with-current-buffer (tramp-get-connection-buffer vec
)
6771 (tramp-message vec
6 "\n%s" (buffer-string)))
6772 (tramp-send-string vec tramp-terminal-type
))
6774 (defun tramp-action-process-alive (proc vec
)
6775 "Check, whether a process has finished."
6776 (unless (memq (process-status proc
) '(run open
))
6777 (throw 'tramp-action
'process-died
)))
6779 (defun tramp-action-out-of-band (proc vec
)
6780 "Check, whether an out-of-band copy has finished."
6781 (cond ((and (memq (process-status proc
) '(stop exit
))
6782 (zerop (process-exit-status proc
)))
6783 (tramp-message vec
3 "Process has finished.")
6784 (throw 'tramp-action
'ok
))
6785 ((or (and (memq (process-status proc
) '(stop exit
))
6786 (not (zerop (process-exit-status proc
))))
6787 (memq (process-status proc
) '(signal)))
6788 ;; `scp' could have copied correctly, but set modes could have failed.
6789 ;; This can be ignored.
6790 (with-current-buffer (process-buffer proc
)
6791 (goto-char (point-min))
6792 (if (re-search-forward tramp-operation-not-permitted-regexp nil t
)
6794 (tramp-message vec
5 "'set mode' error ignored.")
6795 (tramp-message vec
3 "Process has finished.")
6796 (throw 'tramp-action
'ok
))
6797 (tramp-message vec
3 "Process has died.")
6798 (throw 'tramp-action
'process-died
))))
6801 ;; Functions for processing the actions.
6803 (defun tramp-process-one-action (proc vec actions
)
6804 "Wait for output from the shell and perform one action."
6805 (let (found todo item pattern action
)
6807 ;; Reread output once all actions have been performed.
6808 ;; Obviously, the output was not complete.
6809 (tramp-accept-process-output proc
1)
6812 (setq item
(pop todo
))
6813 (setq pattern
(format "\\(%s\\)\\'" (symbol-value (nth 0 item
))))
6814 (setq action
(nth 1 item
))
6816 vec
5 "Looking for regexp \"%s\" from remote shell" pattern
)
6817 (when (tramp-check-for-regexp proc pattern
)
6818 (tramp-message vec
5 "Call `%s'" (symbol-name action
))
6819 (setq found
(funcall action proc vec
)))))
6822 (defun tramp-process-actions (proc vec actions
&optional timeout
)
6823 "Perform actions until success or TIMEOUT."
6824 ;; Preserve message for `progress-reporter'.
6825 (with-temp-message ""
6826 ;; Enable auth-source and password-cache.
6827 (tramp-set-connection-property vec
"first-password-request" t
)
6831 (tramp-message proc
3 "Waiting for prompts from remote shell")
6833 (catch 'tramp-action
6835 (with-timeout (timeout)
6836 (tramp-process-one-action proc vec actions
))
6837 (tramp-process-one-action proc vec actions
)))))
6838 (with-current-buffer (tramp-get-connection-buffer vec
)
6840 (tramp-message vec
6 "\n%s" (buffer-string)))
6841 (unless (eq exit
'ok
)
6842 (tramp-clear-passwd vec
)
6843 (tramp-error-with-buffer
6846 ((eq exit
'permission-denied
) "Permission denied")
6847 ((eq exit
'process-died
) "Process died")
6848 (t "Login failed"))))))))
6850 ;; Utility functions.
6852 (defun tramp-accept-process-output (&optional proc timeout timeout-msecs
)
6853 "Like `accept-process-output' for Tramp processes.
6854 This is needed in order to hide `last-coding-system-used', which is set
6855 for process communication also."
6856 (with-current-buffer (process-buffer proc
)
6857 (tramp-message proc
10 "%s %s" proc
(process-status proc
))
6858 (let (buffer-read-only last-coding-system-used
)
6859 ;; Under Windows XP, accept-process-output doesn't return
6860 ;; sometimes. So we add an additional timeout.
6861 (with-timeout ((or timeout
1))
6862 (accept-process-output proc timeout timeout-msecs
)))
6863 (tramp-message proc
10 "\n%s" (buffer-string))))
6865 (defun tramp-check-for-regexp (proc regexp
)
6866 "Check, whether REGEXP is contained in process buffer of PROC.
6867 Erase echoed commands if exists."
6868 (with-current-buffer (process-buffer proc
)
6869 (goto-char (point-min))
6871 ;; Check whether we need to remove echo output.
6872 (when (and (tramp-get-connection-property proc
"check-remote-echo" nil
)
6873 (re-search-forward tramp-echoed-echo-mark-regexp nil t
))
6874 (let ((begin (match-beginning 0)))
6875 (when (re-search-forward tramp-echoed-echo-mark-regexp nil t
)
6876 ;; Discard echo from remote output.
6877 (tramp-set-connection-property proc
"check-remote-echo" nil
)
6878 (tramp-message proc
5 "echo-mark found")
6880 (delete-region begin
(point))
6881 (goto-char (point-min)))))
6883 (when (or (not (tramp-get-connection-property proc
"check-remote-echo" nil
))
6884 ;; Sometimes, the echo string is suppressed on the remote side.
6886 (tramp-compat-funcall
6887 'substring-no-properties tramp-echo-mark-marker
6888 0 (min tramp-echo-mark-marker-length
(1- (point-max))))
6889 (tramp-compat-funcall
6890 'buffer-substring-no-properties
6891 1 (min (1+ tramp-echo-mark-marker-length
) (point-max))))))
6892 ;; No echo to be handled, now we can look for the regexp.
6893 (goto-char (point-min))
6894 (re-search-forward regexp nil t
))))
6896 (defun tramp-wait-for-regexp (proc timeout regexp
)
6897 "Wait for a REGEXP to appear from process PROC within TIMEOUT seconds.
6898 Expects the output of PROC to be sent to the current buffer. Returns
6899 the string that matched, or nil. Waits indefinitely if TIMEOUT is
6901 (with-current-buffer (process-buffer proc
)
6902 (let ((found (tramp-check-for-regexp proc regexp
))
6903 (start-time (current-time)))
6905 ;; Work around a bug in XEmacs 21, where the timeout
6906 ;; expires faster than it should. This degenerates
6907 ;; to polling for buggy XEmacsen, but oh, well.
6908 (while (and (not found
)
6909 (< (tramp-time-diff (current-time) start-time
)
6911 (with-timeout (timeout)
6913 (tramp-accept-process-output proc
1)
6914 (unless (memq (process-status proc
) '(run open
))
6915 (tramp-error-with-buffer
6916 nil proc
'file-error
"Process has died"))
6917 (setq found
(tramp-check-for-regexp proc regexp
))))))
6920 (tramp-accept-process-output proc
1)
6921 (unless (memq (process-status proc
) '(run open
))
6922 (tramp-error-with-buffer
6923 nil proc
'file-error
"Process has died"))
6924 (setq found
(tramp-check-for-regexp proc regexp
)))))
6925 (tramp-message proc
6 "\n%s" (buffer-string))
6929 proc
'file-error
"[[Regexp `%s' not found in %d secs]]"
6931 (tramp-error proc
'file-error
"[[Regexp `%s' not found]]" regexp
)))
6934 (defun tramp-barf-if-no-shell-prompt (proc timeout
&rest error-args
)
6935 "Wait for shell prompt and barf if none appears.
6936 Looks at process PROC to see if a shell prompt appears in TIMEOUT
6937 seconds. If not, it produces an error message with the given ERROR-ARGS."
6939 (tramp-wait-for-regexp
6942 "\\(%s\\|%s\\)\\'" shell-prompt-pattern tramp-shell-prompt-pattern
))
6943 (apply 'tramp-error-with-buffer nil proc
'file-error error-args
)))
6945 ;; We don't call `tramp-send-string' in order to hide the password
6946 ;; from the debug buffer, and because end-of-line handling of the
6948 (defun tramp-enter-password (proc)
6949 "Prompt for a password and send it to the remote end."
6950 (process-send-string
6951 proc
(concat (tramp-read-passwd proc
)
6952 (or (tramp-get-method-parameter
6953 tramp-current-method
6954 'tramp-password-end-of-line
)
6955 tramp-default-password-end-of-line
))))
6957 (defun tramp-open-connection-setup-interactive-shell (proc vec
)
6958 "Set up an interactive shell.
6959 Mainly sets the prompt and the echo correctly. PROC is the shell
6960 process to set up. VEC specifies the connection."
6961 (let ((tramp-end-of-output tramp-initial-end-of-output
))
6962 ;; It is useful to set the prompt in the following command because
6963 ;; some people have a setting for $PS1 which /bin/sh doesn't know
6964 ;; about and thus /bin/sh will display a strange prompt. For
6965 ;; example, if $PS1 has "${CWD}" in the value, then ksh will
6966 ;; display the current working directory but /bin/sh will display
6967 ;; a dollar sign. The following command line sets $PS1 to a sane
6968 ;; value, and works under Bourne-ish shells as well as csh-like
6969 ;; shells. Daniel Pittman reports that the unusual positioning of
6970 ;; the single quotes makes it work under `rc', too. We also unset
6971 ;; the variable $ENV because that is read by some sh
6972 ;; implementations (eg, bash when called as sh) on startup; this
6973 ;; way, we avoid the startup file clobbering $PS1. $PROMP_COMMAND
6974 ;; is another way to set the prompt in /bin/bash, it must be
6975 ;; discarded as well.
6978 (tramp-get-method-parameter (tramp-file-name-method vec
) 'tramp-remote-sh
))
6981 (tramp-message vec
5 "Setting up remote shell environment")
6982 (tramp-send-command vec
"stty -inlcr -echo kill '^U' erase '^H'" t
)
6983 ;; Check whether the echo has really been disabled. Some
6984 ;; implementations, like busybox of embedded GNU/Linux, don't
6985 ;; support disabling.
6986 (tramp-send-command vec
"echo foo" t
)
6987 (with-current-buffer (process-buffer proc
)
6988 (goto-char (point-min))
6989 (when (looking-at "echo foo")
6990 (tramp-set-connection-property proc
"remote-echo" t
)
6991 (tramp-message vec
5 "Remote echo still on. Ok.")
6992 ;; Make sure backspaces and their echo are enabled and no line
6993 ;; width magic interferes with them.
6994 (tramp-send-command vec
"stty icanon erase ^H cols 32767" t
))))
6996 (tramp-message vec
5 "Setting shell prompt")
6998 vec
(format "PS1=%s" (shell-quote-argument tramp-end-of-output
)) t
)
6999 (tramp-send-command vec
"PS2=''" t
)
7000 (tramp-send-command vec
"PS3=''" t
)
7001 (tramp-send-command vec
"PROMPT_COMMAND=''" t
)
7003 ;; Try to set up the coding system correctly.
7004 ;; CCC this can't be the right way to do it. Hm.
7005 (tramp-message vec
5 "Determining coding system")
7006 (tramp-send-command vec
"echo foo ; echo bar" t
)
7007 (with-current-buffer (process-buffer proc
)
7008 (goto-char (point-min))
7009 (if (featurep 'mule
)
7010 ;; Use MULE to select the right EOL convention for communicating
7011 ;; with the process.
7012 (let* ((cs (or (tramp-compat-funcall 'process-coding-system proc
)
7013 (cons 'undecided
'undecided
)))
7014 cs-decode cs-encode
)
7015 (when (symbolp cs
) (setq cs
(cons cs cs
)))
7016 (setq cs-decode
(car cs
))
7017 (setq cs-encode
(cdr cs
))
7018 (unless cs-decode
(setq cs-decode
'undecided
))
7019 (unless cs-encode
(setq cs-encode
'undecided
))
7020 (setq cs-encode
(tramp-coding-system-change-eol-conversion
7022 (when (search-forward "\r" nil t
)
7023 (setq cs-decode
(tramp-coding-system-change-eol-conversion
7025 (tramp-compat-funcall
7026 'set-buffer-process-coding-system cs-decode cs-encode
)
7028 vec
5 "Setting coding system to `%s' and `%s'" cs-decode cs-encode
))
7029 ;; Look for ^M and do something useful if found.
7030 (when (search-forward "\r" nil t
)
7031 ;; We have found a ^M but cannot frob the process coding system
7032 ;; because we're running on a non-MULE Emacs. Let's try
7034 (tramp-send-command vec
"stty -onlcr" t
))))
7036 (tramp-send-command vec
"set +o vi +o emacs" t
)
7038 ;; Check whether the output of "uname -sr" has been changed. If
7039 ;; yes, this is a strong indication that we must expire all
7040 ;; connection properties. We start again with
7041 ;; `tramp-maybe-open-connection', it will be catched there.
7042 (tramp-message vec
5 "Checking system information")
7043 (let ((old-uname (tramp-get-connection-property vec
"uname" nil
))
7045 (tramp-set-connection-property
7047 (tramp-send-command-and-read vec
"echo \\\"`uname -sr`\\\""))))
7048 (when (and (stringp old-uname
) (not (string-equal old-uname new-uname
)))
7049 (with-current-buffer (tramp-get-debug-buffer vec
)
7050 ;; Keep the debug buffer.
7052 (generate-new-buffer-name tramp-temp-buffer-name
) 'unique
)
7053 (tramp-compat-funcall 'tramp-cleanup-connection vec
)
7054 (if (= (point-min) (point-max))
7056 (rename-buffer (tramp-debug-buffer-name vec
) 'unique
))
7057 ;; We call `tramp-get-buffer' in order to keep the debug buffer.
7058 (tramp-get-buffer vec
)
7061 "Connection reset, because remote host changed from `%s' to `%s'"
7062 old-uname new-uname
)
7063 (throw 'uname-changed
(tramp-maybe-open-connection vec
)))))
7065 ;; Check whether the remote host suffers from buggy
7066 ;; `send-process-string'. This is known for FreeBSD (see comment in
7067 ;; `send_process', file process.c). I've tested sending 624 bytes
7068 ;; successfully, sending 625 bytes failed. Emacs makes a hack when
7069 ;; this host type is detected locally. It cannot handle remote
7071 (with-connection-property proc
"chunksize"
7073 ((and (integerp tramp-chunksize
) (> tramp-chunksize
0))
7077 vec
5 "Checking remote host type for `send-process-string' bug")
7079 "^FreeBSD" (tramp-get-connection-property vec
"uname" ""))
7082 ;; Set remote PATH variable.
7083 (tramp-set-remote-path vec
)
7085 ;; Search for a good shell before searching for a command which
7086 ;; checks if a file exists. This is done because Tramp wants to use
7087 ;; "test foo; echo $?" to check if various conditions hold, and
7088 ;; there are buggy /bin/sh implementations which don't execute the
7089 ;; "echo $?" part if the "test" part has an error. In particular,
7090 ;; the OpenSolaris /bin/sh is a problem. There are also other
7091 ;; problems with /bin/sh of OpenSolaris, like redirection of stderr
7092 ;; in function declarations, or changing HISTFILE in place.
7093 ;; Therefore, OpenSolaris' /bin/sh is replaced by bash, when
7095 (tramp-find-shell vec
)
7097 ;; Disable unexpected output.
7098 (tramp-send-command vec
"mesg n; biff n" t
)
7100 ;; IRIX64 bash expands "!" even when in single quotes. This
7101 ;; destroys our shell functions, we must disable it. See
7102 ;; <http://stackoverflow.com/questions/3291692/irix-bash-shell-expands-expression-in-single-quotes-yet-shouldnt>.
7103 (when (string-match "^IRIX64" (tramp-get-connection-property vec
"uname" ""))
7104 (tramp-send-command vec
"set +H" t
))
7106 ;; On BSD-like systems, ?\t is expanded to spaces. Suppress this.
7107 (when (string-match "BSD\\|Darwin"
7108 (tramp-get-connection-property vec
"uname" ""))
7109 (tramp-send-command vec
"stty -oxtabs" t
))
7111 ;; Set `remote-tty' process property.
7113 (let ((tty (tramp-send-command-and-read vec
"echo \\\"`tty`\\\"")))
7114 (unless (zerop (length tty
)) (process-put proc
'remote-tty tty
))))
7116 ;; Dump stty settings in the traces.
7117 (when (>= tramp-verbose
9)
7118 (tramp-send-command vec
"stty -a" t
))
7120 ;; Set the environment.
7121 (tramp-message vec
5 "Setting default environment")
7123 (let ((env (copy-sequence tramp-remote-process-environment
))
7126 (setq item
(tramp-compat-split-string (car env
) "="))
7127 (setcdr item
(mapconcat 'identity
(cdr item
) "="))
7128 (if (and (stringp (cdr item
)) (not (string-equal (cdr item
) "")))
7130 vec
(format "%s=%s; export %s" (car item
) (cdr item
) (car item
)) t
)
7131 (push (car item
) unset
))
7132 (setq env
(cdr env
)))
7135 vec
(format "unset %s" (mapconcat 'identity unset
" ")) t
))))
7137 ;; CCC: We should either implement a Perl version of base64 encoding
7138 ;; and decoding. Then we just use that in the last item. The other
7139 ;; alternative is to use the Perl version of UU encoding. But then
7140 ;; we need a Lisp version of uuencode.
7142 ;; Old text from documentation of tramp-methods:
7143 ;; Using a uuencode/uudecode inline method is discouraged, please use one
7144 ;; of the base64 methods instead since base64 encoding is much more
7145 ;; reliable and the commands are more standardized between the different
7146 ;; Unix versions. But if you can't use base64 for some reason, please
7147 ;; note that the default uudecode command does not work well for some
7148 ;; Unices, in particular AIX and Irix. For AIX, you might want to use
7149 ;; the following command for uudecode:
7151 ;; sed '/^begin/d;/^[` ]$/d;/^end/d' | iconv -f uucode -t ISO8859-1
7153 ;; For Irix, no solution is known yet.
7155 (defconst tramp-local-coding-commands
7156 '((b64 base64-encode-region base64-decode-region
)
7157 (uu tramp-uuencode-region uudecode-decode-region
)
7159 "perl -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)'"
7160 "perl -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)'"))
7161 "List of local coding commands for inline transfer.
7162 Each item is a list that looks like this:
7164 \(FORMAT ENCODING DECODING\)
7166 FORMAT is symbol describing the encoding/decoding format. It can be
7167 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
7169 ENCODING and DECODING can be strings, giving commands, or symbols,
7170 giving functions. If they are strings, then they can contain
7171 the \"%s\" format specifier. If that specifier is present, the input
7172 filename will be put into the command line at that spot. If the
7173 specifier is not present, the input should be read from standard
7176 If they are functions, they will be called with two arguments, start
7177 and end of region, and are expected to replace the region contents
7178 with the encoded or decoded results, respectively.")
7180 (defconst tramp-remote-coding-commands
7181 '((b64 "base64" "base64 -d -i")
7182 ;; "-i" is more robust with older base64 from GNU coreutils.
7183 ;; However, I don't know whether all base64 versions do supports
7185 (b64 "base64" "base64 -d")
7186 (b64 "mimencode -b" "mimencode -u -b")
7187 (b64 "mmencode -b" "mmencode -u -b")
7188 (b64 "recode data..base64" "recode base64..data")
7189 (b64 tramp-perl-encode-with-module tramp-perl-decode-with-module
)
7190 (b64 tramp-perl-encode tramp-perl-decode
)
7191 (uu "uuencode xxx" "uudecode -o /dev/stdout")
7192 (uu "uuencode xxx" "uudecode -o -")
7193 (uu "uuencode xxx" "uudecode -p")
7194 (uu "uuencode xxx" tramp-uudecode
)
7196 "perl -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)'"
7197 "perl -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)'"))
7198 "List of remote coding commands for inline transfer.
7199 Each item is a list that looks like this:
7201 \(FORMAT ENCODING DECODING\)
7203 FORMAT is symbol describing the encoding/decoding format. It can be
7204 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
7206 ENCODING and DECODING can be strings, giving commands, or symbols,
7207 giving variables. If they are strings, then they can contain
7208 the \"%s\" format specifier. If that specifier is present, the input
7209 filename will be put into the command line at that spot. If the
7210 specifier is not present, the input should be read from standard
7213 If they are variables, this variable is a string containing a Perl
7214 implementation for this functionality. This Perl program will be transferred
7215 to the remote host, and it is available as shell function with the same name.")
7217 (defun tramp-find-inline-encoding (vec)
7218 "Find an inline transfer encoding that works.
7219 Goes through the list `tramp-local-coding-commands' and
7220 `tramp-remote-coding-commands'."
7222 (let ((local-commands tramp-local-coding-commands
)
7224 loc-enc loc-dec rem-enc rem-dec litem ritem found
)
7225 (while (and local-commands
(not found
))
7226 (setq litem
(pop local-commands
))
7227 (catch 'wont-work-local
7228 (let ((format (nth 0 litem
))
7229 (remote-commands tramp-remote-coding-commands
))
7230 (setq loc-enc
(nth 1 litem
))
7231 (setq loc-dec
(nth 2 litem
))
7232 ;; If the local encoder or decoder is a string, the
7233 ;; corresponding command has to work locally.
7234 (if (not (stringp loc-enc
))
7236 vec
5 "Checking local encoding function `%s'" loc-enc
)
7238 vec
5 "Checking local encoding command `%s' for sanity" loc-enc
)
7239 (unless (zerop (tramp-call-local-coding-command
7241 (throw 'wont-work-local nil
)))
7242 (if (not (stringp loc-dec
))
7244 vec
5 "Checking local decoding function `%s'" loc-dec
)
7246 vec
5 "Checking local decoding command `%s' for sanity" loc-dec
)
7247 (unless (zerop (tramp-call-local-coding-command
7249 (throw 'wont-work-local nil
)))
7250 ;; Search for remote coding commands with the same format
7251 (while (and remote-commands
(not found
))
7252 (setq ritem
(pop remote-commands
))
7253 (catch 'wont-work-remote
7254 (when (equal format
(nth 0 ritem
))
7255 (setq rem-enc
(nth 1 ritem
))
7256 (setq rem-dec
(nth 2 ritem
))
7257 ;; Check if remote encoding and decoding commands can be
7258 ;; called remotely with null input and output. This makes
7259 ;; sure there are no syntax errors and the command is really
7260 ;; found. Note that we do not redirect stdout to /dev/null,
7261 ;; for two reasons: when checking the decoding command, we
7262 ;; actually check the output it gives. And also, when
7263 ;; redirecting "mimencode" output to /dev/null, then as root
7264 ;; it might change the permissions of /dev/null!
7265 (when (not (stringp rem-enc
))
7266 (let ((name (symbol-name rem-enc
)))
7267 (while (string-match (regexp-quote "-") name
)
7268 (setq name
(replace-match "_" nil t name
)))
7269 (tramp-maybe-send-script vec
(symbol-value rem-enc
) name
)
7270 (setq rem-enc name
)))
7273 "Checking remote encoding command `%s' for sanity" rem-enc
)
7274 (unless (zerop (tramp-send-command-and-check
7275 vec
(format "%s </dev/null" rem-enc
) t
))
7276 (throw 'wont-work-remote nil
))
7278 (when (not (stringp rem-dec
))
7279 (let ((name (symbol-name rem-dec
)))
7280 (while (string-match (regexp-quote "-") name
)
7281 (setq name
(replace-match "_" nil t name
)))
7282 (tramp-maybe-send-script vec
(symbol-value rem-dec
) name
)
7283 (setq rem-dec name
)))
7286 "Checking remote decoding command `%s' for sanity" rem-dec
)
7287 (unless (zerop (tramp-send-command-and-check
7289 (format "echo %s | %s | %s"
7290 magic rem-enc rem-dec
)
7292 (throw 'wont-work-remote nil
))
7294 (with-current-buffer (tramp-get-buffer vec
)
7295 (goto-char (point-min))
7296 (unless (looking-at (regexp-quote magic
))
7297 (throw 'wont-work-remote nil
)))
7299 ;; `rem-enc' and `rem-dec' could be a string meanwhile.
7300 (setq rem-enc
(nth 1 ritem
))
7301 (setq rem-dec
(nth 2 ritem
))
7302 (setq found t
)))))))
7304 ;; Did we find something?
7307 vec
'file-error
"Couldn't find an inline transfer encoding"))
7309 ;; Set connection properties.
7310 (tramp-message vec
5 "Using local encoding `%s'" loc-enc
)
7311 (tramp-set-connection-property vec
"local-encoding" loc-enc
)
7312 (tramp-message vec
5 "Using local decoding `%s'" loc-dec
)
7313 (tramp-set-connection-property vec
"local-decoding" loc-dec
)
7314 (tramp-message vec
5 "Using remote encoding `%s'" rem-enc
)
7315 (tramp-set-connection-property vec
"remote-encoding" rem-enc
)
7316 (tramp-message vec
5 "Using remote decoding `%s'" rem-dec
)
7317 (tramp-set-connection-property vec
"remote-decoding" rem-dec
))))
7319 (defun tramp-call-local-coding-command (cmd input output
)
7320 "Call the local encoding or decoding command.
7321 If CMD contains \"%s\", provide input file INPUT there in command.
7322 Otherwise, INPUT is passed via standard input.
7323 INPUT can also be nil which means `/dev/null'.
7324 OUTPUT can be a string (which specifies a filename), or t (which
7325 means standard output and thus the current buffer), or nil (which
7327 (tramp-local-call-process
7328 tramp-encoding-shell
7329 (when (and input
(not (string-match "%s" cmd
))) input
)
7330 (if (eq output t
) t nil
)
7332 tramp-encoding-command-switch
7334 (if (string-match "%s" cmd
) (format cmd input
) cmd
)
7335 (if (stringp output
) (concat "> " output
) ""))))
7337 (defconst tramp-inline-compress-commands
7338 '(("gzip" "gzip -d")
7339 ("bzip2" "bzip2 -d")
7340 ("compress" "compress -d"))
7341 "List of compress and decompress commands for inline transfer.
7342 Each item is a list that looks like this:
7344 \(COMPRESS DECOMPRESS\)
7346 COMPRESS or DECOMPRESS are strings with the respective commands.")
7348 (defun tramp-find-inline-compress (vec)
7349 "Find an inline transfer compress command that works.
7350 Goes through the list `tramp-inline-compress-commands'."
7352 (let ((commands tramp-inline-compress-commands
)
7354 item compress decompress
7356 (while (and commands
(not found
))
7358 (setq item
(pop commands
)
7359 compress
(nth 0 item
)
7360 decompress
(nth 1 item
))
7363 "Checking local compress command `%s', `%s' for sanity"
7364 compress decompress
)
7367 (tramp-call-local-coding-command
7369 ;; Windows shells need the program file name after
7370 ;; the pipe symbol be quoted if they use forward
7371 ;; slashes as directory separators.
7372 (if (memq system-type
'(windows-nt))
7373 "echo %s | \"%s\" | \"%s\""
7374 "echo %s | %s | %s")
7375 magic compress decompress
) nil nil
))
7379 "Checking remote compress command `%s', `%s' for sanity"
7380 compress decompress
)
7381 (unless (zerop (tramp-send-command-and-check
7382 vec
(format "echo %s | %s | %s"
7383 magic compress decompress
) t
))
7387 ;; Did we find something?
7390 ;; Set connection properties.
7392 vec
5 "Using inline transfer compress command `%s'" compress
)
7393 (tramp-set-connection-property vec
"inline-compress" compress
)
7395 vec
5 "Using inline transfer decompress command `%s'" decompress
)
7396 (tramp-set-connection-property vec
"inline-decompress" decompress
))
7398 (tramp-set-connection-property vec
"inline-compress" nil
)
7399 (tramp-set-connection-property vec
"inline-decompress" nil
)
7401 vec
2 "Couldn't find an inline transfer compress command")))))
7403 (defun tramp-compute-multi-hops (vec)
7404 "Expands VEC according to `tramp-default-proxies-alist'.
7405 Gateway hops are already opened."
7406 (let ((target-alist `(,vec
))
7407 (choices tramp-default-proxies-alist
)
7410 ;; Look for proxy hosts to be passed.
7412 (setq item
(pop choices
)
7413 proxy
(eval (nth 2 item
)))
7416 (string-match (or (eval (nth 0 item
)) "")
7417 (or (tramp-file-name-host (car target-alist
)) ""))
7419 (string-match (or (eval (nth 1 item
)) "")
7420 (or (tramp-file-name-user (car target-alist
)) "")))
7422 ;; No more hops needed.
7424 ;; Replace placeholders.
7429 ?u
(or (tramp-file-name-user (car target-alist
)) "")
7430 ?h
(or (tramp-file-name-host (car target-alist
)) ""))))
7431 (with-parsed-tramp-file-name proxy l
7433 (add-to-list 'target-alist l
)
7434 ;; Start next search.
7435 (setq choices tramp-default-proxies-alist
)))))
7438 (when (and (boundp 'tramp-gw-tunnel-method
)
7439 (string-match (format
7441 (symbol-value 'tramp-gw-tunnel-method
)
7442 (symbol-value 'tramp-gw-socks-method
))
7443 (tramp-file-name-method (car target-alist
))))
7444 (let ((gw (pop target-alist
))
7445 (hop (pop target-alist
)))
7446 ;; Is the method prepared for gateways?
7447 (unless (tramp-get-method-parameter
7448 (tramp-file-name-method hop
) 'tramp-default-port
)
7451 "Method `%s' is not supported for gateway access."
7452 (tramp-file-name-method hop
)))
7453 ;; Add default port if needed.
7456 tramp-host-with-port-regexp
(tramp-file-name-host hop
))
7459 (tramp-file-name-host hop
) tramp-prefix-port-format
7461 (tramp-get-method-parameter
7462 (tramp-file-name-method hop
) 'tramp-default-port
)))))
7463 ;; Open the gateway connection.
7467 (tramp-file-name-method hop
) (tramp-file-name-user hop
)
7468 (tramp-compat-funcall 'tramp-gw-open-connection vec gw hop
) nil
))
7469 ;; For the password prompt, we need the correct values.
7470 ;; Therefore, we must remember the gateway vector. But we
7471 ;; cannot do it as connection property, because it shouldn't
7472 ;; be persistent. And we have no started process yet either.
7473 (tramp-set-file-property (car target-alist
) "" "gateway" hop
)))
7475 ;; Foreign and out-of-band methods are not supported for multi-hops.
7476 (when (cdr target-alist
)
7477 (setq choices target-alist
)
7479 (setq item
(pop choices
))
7483 (tramp-get-method-parameter
7484 (tramp-file-name-method item
) 'tramp-login-program
))
7485 (tramp-get-method-parameter
7486 (tramp-file-name-method item
) 'tramp-copy-program
))
7489 "Method `%s' is not supported for multi-hops."
7490 (tramp-file-name-method item
)))))
7492 ;; In case the host name is not used for the remote shell
7493 ;; command, the user could be misguided by applying a random
7495 (let* ((v (car target-alist
))
7496 (method (tramp-file-name-method v
))
7497 (host (tramp-file-name-host v
)))
7500 ;; There are multi-hops.
7502 ;; The host name is used for the remote shell command.
7504 '("%h") (tramp-get-method-parameter method
'tramp-login-args
))
7505 ;; The host is local. We cannot use `tramp-local-host-p'
7506 ;; here, because it opens a connection as well.
7507 (string-match tramp-local-host-regexp host
))
7510 "Host `%s' looks like a remote host, `%s' can only use the local host"
7516 (defun tramp-maybe-open-connection (vec)
7517 "Maybe open a connection VEC.
7518 Does not do anything if a connection is already open, but re-opens the
7519 connection if a previous connection has died for some reason."
7520 (catch 'uname-changed
7521 (let ((p (tramp-get-connection-process vec
))
7522 (process-name (tramp-get-connection-property vec
"process-name" nil
))
7523 (process-environment (copy-sequence process-environment
)))
7525 ;; If too much time has passed since last command was sent, look
7526 ;; whether process is still alive. If it isn't, kill it. When
7527 ;; using ssh, it can sometimes happen that the remote end has
7528 ;; hung up but the local ssh client doesn't recognize this until
7529 ;; it tries to send some data to the remote end. So that's why
7530 ;; we try to send a command from time to time, then look again
7531 ;; whether the process is really alive.
7533 (when (and (> (tramp-time-diff
7535 (tramp-get-connection-property
7536 p
"last-cmd-time" '(0 0 0)))
7538 p
(processp p
) (memq (process-status p
) '(run open
)))
7539 (tramp-send-command vec
"echo are you awake" t t
)
7540 (unless (and (memq (process-status p
) '(run open
))
7541 (tramp-wait-for-output p
10))
7542 ;; The error will be catched locally.
7543 (tramp-error vec
'file-error
"Awake did fail")))
7545 (tramp-flush-connection-property vec
)
7546 (tramp-flush-connection-property p
)
7550 ;; New connection must be opened.
7551 (unless (and p
(processp p
) (memq (process-status p
) '(run open
)))
7553 ;; We call `tramp-get-buffer' in order to get a debug buffer for
7554 ;; messages from the beginning.
7555 (tramp-get-buffer vec
)
7556 (with-progress-reporter
7558 (if (zerop (length (tramp-file-name-user vec
)))
7559 (format "Opening connection for %s using %s"
7560 (tramp-file-name-host vec
)
7561 (tramp-file-name-method vec
))
7562 (format "Opening connection for %s@%s using %s"
7563 (tramp-file-name-user vec
)
7564 (tramp-file-name-host vec
)
7565 (tramp-file-name-method vec
)))
7567 ;; Start new process.
7568 (when (and p
(processp p
))
7570 (setenv "TERM" tramp-terminal-type
)
7571 (setenv "LC_ALL" "C")
7572 (setenv "PROMPT_COMMAND")
7573 (setenv "PS1" tramp-initial-end-of-output
)
7574 (let* ((target-alist (tramp-compute-multi-hops vec
))
7575 (process-connection-type tramp-process-connection-type
)
7576 (process-adaptive-read-buffering nil
)
7577 (coding-system-for-read nil
)
7578 ;; This must be done in order to avoid our file name handler.
7579 (p (let ((default-directory
7580 (tramp-compat-temporary-file-directory)))
7582 (or process-name
(tramp-buffer-name vec
))
7583 (tramp-get-connection-buffer vec
)
7584 tramp-encoding-shell
))))
7587 vec
6 "%s" (mapconcat 'identity
(process-command p
) " "))
7589 ;; Check whether process is alive.
7590 (tramp-set-process-query-on-exit-flag p nil
)
7591 (tramp-barf-if-no-shell-prompt
7592 p
60 "Couldn't find local shell prompt %s" tramp-encoding-shell
)
7594 ;; Now do all the connections as specified.
7596 (let* ((hop (car target-alist
))
7597 (l-method (tramp-file-name-method hop
))
7598 (l-user (tramp-file-name-user hop
))
7599 (l-host (tramp-file-name-host hop
))
7602 (tramp-get-method-parameter
7603 l-method
'tramp-login-program
))
7605 (tramp-get-method-parameter l-method
'tramp-login-args
))
7607 (tramp-get-method-parameter l-method
'tramp-async-args
))
7609 (tramp-get-method-parameter l-method
'tramp-gw-args
))
7610 (gw (tramp-get-file-property hop
"" "gateway" nil
))
7611 (g-method (and gw
(tramp-file-name-method gw
)))
7612 (g-user (and gw
(tramp-file-name-user gw
)))
7613 (g-host (and gw
(tramp-file-name-host gw
)))
7614 (command login-program
)
7615 ;; We don't create the temporary file. In fact,
7616 ;; it is just a prefix for the ControlPath option
7617 ;; of ssh; the real temporary file has another
7618 ;; name, and it is created and protected by ssh.
7619 ;; It is also removed by ssh, when the connection
7622 (tramp-set-connection-property
7626 tramp-temp-name-prefix
7627 (tramp-compat-temporary-file-directory)))))
7630 ;; Add arguments for asynchrononous processes.
7631 (when (and process-name async-args
)
7632 (setq login-args
(append async-args login-args
)))
7634 ;; Add gateway arguments if necessary.
7635 (when (and gw gw-args
)
7636 (setq login-args
(append gw-args login-args
)))
7638 ;; Check for port number. Until now, there's no need
7639 ;; for handling like method, user, host.
7640 (when (string-match tramp-host-with-port-regexp l-host
)
7641 (setq l-port
(match-string 2 l-host
)
7642 l-host
(match-string 1 l-host
)))
7644 ;; Set variables for computing the prompt for reading
7645 ;; password. They can also be derived from a gateway.
7646 (setq tramp-current-method
(or g-method l-method
)
7647 tramp-current-user
(or g-user l-user
)
7648 tramp-current-host
(or g-host l-host
))
7650 ;; Replace login-args place holders.
7652 l-host
(or l-host
"")
7653 l-user
(or l-user
"")
7654 l-port
(or l-port
"")
7655 spec
(format-spec-make
7656 ?h l-host ?u l-user ?p l-port ?t tmpfile
)
7659 ;; We do not want to see the trailing local prompt in
7660 ;; `start-file-process'.
7661 (unless (memq system-type
'(windows-nt)) "exec ")
7665 (setq x
(mapcar (lambda (y) (format-spec y spec
)) x
))
7666 (unless (member "" x
) (mapconcat 'identity x
" ")))
7668 ;; Local shell could be a Windows COMSPEC. It
7669 ;; doesn't know the ";" syntax, but we must exit
7670 ;; always for `start-file-process'. "exec" does not
7672 (if (memq system-type
'(windows-nt)) " && exit || exit")))
7674 ;; Send the command.
7675 (tramp-message vec
3 "Sending command `%s'" command
)
7676 (tramp-send-command vec command t t
)
7677 (tramp-process-actions p vec tramp-actions-before-shell
60)
7679 vec
3 "Found remote shell prompt on `%s'" l-host
))
7681 (setq target-alist
(cdr target-alist
)))
7683 ;; Make initial shell settings.
7684 (tramp-open-connection-setup-interactive-shell p vec
)))))))
7686 (defun tramp-send-command (vec command
&optional neveropen nooutput
)
7687 "Send the COMMAND to connection VEC.
7688 Erases temporary buffer before sending the command. If optional
7689 arg NEVEROPEN is non-nil, never try to open the connection. This
7690 is meant to be used from `tramp-maybe-open-connection' only. The
7691 function waits for output unless NOOUTPUT is set."
7692 (unless neveropen
(tramp-maybe-open-connection vec
))
7693 (let ((p (tramp-get-connection-process vec
)))
7694 (when (tramp-get-connection-property p
"remote-echo" nil
)
7695 ;; We mark the command string that it can be erased in the output buffer.
7696 (tramp-set-connection-property p
"check-remote-echo" t
)
7697 (setq command
(format "%s%s%s" tramp-echo-mark command tramp-echo-mark
)))
7698 (tramp-message vec
6 "%s" command
)
7699 (tramp-send-string vec command
)
7700 (unless nooutput
(tramp-wait-for-output p
))))
7702 (defun tramp-wait-for-output (proc &optional timeout
)
7703 "Wait for output from remote command."
7704 (unless (buffer-live-p (process-buffer proc
))
7705 (delete-process proc
)
7706 (tramp-error proc
'file-error
"Process `%s' not available, try again" proc
))
7707 (with-current-buffer (process-buffer proc
)
7708 (let* (;; Initially, `tramp-end-of-output' is "#$ ". There might
7709 ;; be leading escape sequences, which must be ignored.
7710 (regexp (format "[^#$\n]*%s\r?$" (regexp-quote tramp-end-of-output
)))
7711 ;; Sometimes, the commands do not return a newline but a
7712 ;; null byte before the shell prompt, for example "git
7713 ;; ls-files -c -z ...".
7714 (regexp1 (format "\\(^\\|\000\\)%s" regexp
))
7715 (found (tramp-wait-for-regexp proc timeout regexp1
)))
7717 (let (buffer-read-only)
7718 ;; A simple-minded busybox has sent " ^H" sequences.
7720 (goto-char (point-min))
7721 (when (re-search-forward
7722 "^\\(.\b\\)+$" (tramp-compat-line-end-position) t
)
7724 (delete-region (point-min) (point)))
7725 ;; Delete the prompt.
7726 (goto-char (point-max))
7727 (re-search-backward regexp nil t
)
7728 (delete-region (point) (point-max)))
7732 "[[Remote prompt `%s' not found in %d secs]]"
7733 tramp-end-of-output timeout
)
7736 "[[Remote prompt `%s' not found]]" tramp-end-of-output
)))
7737 ;; Return value is whether end-of-output sentinel was found.
7740 (defun tramp-send-command-and-check
7741 (vec command
&optional subshell dont-suppress-err
)
7742 "Run COMMAND and check its exit status.
7743 Sends `echo $?' along with the COMMAND for checking the exit status. If
7744 COMMAND is nil, just sends `echo $?'. Returns the exit status found.
7746 If the optional argument SUBSHELL is non-nil, the command is
7747 executed in a subshell, ie surrounded by parentheses. If
7748 DONT-SUPPRESS-ERR is non-nil, stderr won't be sent to /dev/null."
7751 (concat (if subshell
"( " "")
7753 (if command
(if dont-suppress-err
"; " " 2>/dev/null; ") "")
7754 "echo tramp_exit_status $?"
7755 (if subshell
" )" "")))
7756 (with-current-buffer (tramp-get-connection-buffer vec
)
7757 (goto-char (point-max))
7758 (unless (re-search-backward "tramp_exit_status [0-9]+" nil t
)
7760 vec
'file-error
"Couldn't find exit status of `%s'" command
))
7761 (skip-chars-forward "^ ")
7763 (read (current-buffer))
7764 (let (buffer-read-only) (delete-region (match-beginning 0) (point-max))))))
7766 (defun tramp-barf-unless-okay (vec command fmt
&rest args
)
7767 "Run COMMAND, check exit status, throw error if exit status not okay.
7768 Similar to `tramp-send-command-and-check' but accepts two more arguments
7769 FMT and ARGS which are passed to `error'."
7770 (unless (zerop (tramp-send-command-and-check vec command
))
7771 (apply 'tramp-error vec
'file-error fmt args
)))
7773 (defun tramp-send-command-and-read (vec command
)
7774 "Run COMMAND and return the output, which must be a Lisp expression.
7775 In case there is no valid Lisp expression, it raises an error"
7776 (tramp-barf-unless-okay vec command
"`%s' returns with error" command
)
7777 (with-current-buffer (tramp-get-connection-buffer vec
)
7778 ;; Read the expression.
7779 (goto-char (point-min))
7781 (prog1 (read (current-buffer))
7783 (when (re-search-forward "\\S-" (tramp-compat-line-end-position) t
)
7787 "`%s' does not return a valid Lisp expression: `%s'"
7788 command
(buffer-string))))))
7790 ;; It seems that Tru64 Unix does not like it if long strings are sent
7791 ;; to it in one go. (This happens when sending the Perl
7792 ;; `file-attributes' implementation, for instance.) Therefore, we
7793 ;; have this function which sends the string in chunks.
7794 (defun tramp-send-string (vec string
)
7795 "Send the STRING via connection VEC.
7797 The STRING is expected to use Unix line-endings, but the lines sent to
7798 the remote host use line-endings as defined in the variable
7799 `tramp-rsh-end-of-line'. The communication buffer is erased before sending."
7800 (let* ((p (tramp-get-connection-process vec
))
7801 (chunksize (tramp-get-connection-property p
"chunksize" nil
)))
7804 vec
'file-error
"Can't send string to remote host -- not logged in"))
7805 (tramp-set-connection-property p
"last-cmd-time" (current-time))
7806 (tramp-message vec
10 "%s" string
)
7807 (with-current-buffer (tramp-get-connection-buffer vec
)
7808 ;; Clean up the buffer. We cannot call `erase-buffer' because
7809 ;; narrowing might be in effect.
7810 (let (buffer-read-only) (delete-region (point-min) (point-max)))
7811 ;; Replace "\n" by `tramp-rsh-end-of-line'.
7813 (mapconcat 'identity
7814 (tramp-compat-split-string string
"\n")
7815 tramp-rsh-end-of-line
))
7816 (unless (or (string= string
"")
7817 (string-equal (substring string -
1) tramp-rsh-end-of-line
))
7818 (setq string
(concat string tramp-rsh-end-of-line
)))
7820 (if (and chunksize
(not (zerop chunksize
)))
7822 (end (length string
)))
7825 vec
10 "Sending chunk from %s to %s"
7826 pos
(min (+ pos chunksize
) end
))
7827 (process-send-string
7828 p
(substring string pos
(min (+ pos chunksize
) end
)))
7829 (setq pos
(+ pos chunksize
))))
7830 (process-send-string p string
)))))
7832 (defun tramp-mode-string-to-int (mode-string)
7833 "Converts a ten-letter `drwxrwxrwx'-style mode string into mode bits."
7834 (let* (case-fold-search
7835 (mode-chars (string-to-vector mode-string
))
7836 (owner-read (aref mode-chars
1))
7837 (owner-write (aref mode-chars
2))
7838 (owner-execute-or-setid (aref mode-chars
3))
7839 (group-read (aref mode-chars
4))
7840 (group-write (aref mode-chars
5))
7841 (group-execute-or-setid (aref mode-chars
6))
7842 (other-read (aref mode-chars
7))
7843 (other-write (aref mode-chars
8))
7844 (other-execute-or-sticky (aref mode-chars
9)))
7848 ((char-equal owner-read ?r
) (tramp-octal-to-decimal "00400"))
7849 ((char-equal owner-read ?-
) 0)
7850 (t (error "Second char `%c' must be one of `r-'" owner-read
)))
7852 ((char-equal owner-write ?w
) (tramp-octal-to-decimal "00200"))
7853 ((char-equal owner-write ?-
) 0)
7854 (t (error "Third char `%c' must be one of `w-'" owner-write
)))
7856 ((char-equal owner-execute-or-setid ?x
)
7857 (tramp-octal-to-decimal "00100"))
7858 ((char-equal owner-execute-or-setid ?S
)
7859 (tramp-octal-to-decimal "04000"))
7860 ((char-equal owner-execute-or-setid ?s
)
7861 (tramp-octal-to-decimal "04100"))
7862 ((char-equal owner-execute-or-setid ?-
) 0)
7863 (t (error "Fourth char `%c' must be one of `xsS-'"
7864 owner-execute-or-setid
)))
7866 ((char-equal group-read ?r
) (tramp-octal-to-decimal "00040"))
7867 ((char-equal group-read ?-
) 0)
7868 (t (error "Fifth char `%c' must be one of `r-'" group-read
)))
7870 ((char-equal group-write ?w
) (tramp-octal-to-decimal "00020"))
7871 ((char-equal group-write ?-
) 0)
7872 (t (error "Sixth char `%c' must be one of `w-'" group-write
)))
7874 ((char-equal group-execute-or-setid ?x
)
7875 (tramp-octal-to-decimal "00010"))
7876 ((char-equal group-execute-or-setid ?S
)
7877 (tramp-octal-to-decimal "02000"))
7878 ((char-equal group-execute-or-setid ?s
)
7879 (tramp-octal-to-decimal "02010"))
7880 ((char-equal group-execute-or-setid ?-
) 0)
7881 (t (error "Seventh char `%c' must be one of `xsS-'"
7882 group-execute-or-setid
)))
7884 ((char-equal other-read ?r
)
7885 (tramp-octal-to-decimal "00004"))
7886 ((char-equal other-read ?-
) 0)
7887 (t (error "Eighth char `%c' must be one of `r-'" other-read
)))
7889 ((char-equal other-write ?w
) (tramp-octal-to-decimal "00002"))
7890 ((char-equal other-write ?-
) 0)
7891 (t (error "Nineth char `%c' must be one of `w-'" other-write
)))
7893 ((char-equal other-execute-or-sticky ?x
)
7894 (tramp-octal-to-decimal "00001"))
7895 ((char-equal other-execute-or-sticky ?T
)
7896 (tramp-octal-to-decimal "01000"))
7897 ((char-equal other-execute-or-sticky ?t
)
7898 (tramp-octal-to-decimal "01001"))
7899 ((char-equal other-execute-or-sticky ?-
) 0)
7900 (t (error "Tenth char `%c' must be one of `xtT-'"
7901 other-execute-or-sticky
)))))))
7903 (defun tramp-convert-file-attributes (vec attr
)
7904 "Convert file-attributes ATTR generated by perl script, stat or ls.
7905 Convert file mode bits to string and set virtual device number.
7908 ;; Convert last access time.
7909 (unless (listp (nth 4 attr
))
7910 (setcar (nthcdr 4 attr
)
7911 (list (floor (nth 4 attr
) 65536)
7912 (floor (mod (nth 4 attr
) 65536)))))
7913 ;; Convert last modification time.
7914 (unless (listp (nth 5 attr
))
7915 (setcar (nthcdr 5 attr
)
7916 (list (floor (nth 5 attr
) 65536)
7917 (floor (mod (nth 5 attr
) 65536)))))
7918 ;; Convert last status change time.
7919 (unless (listp (nth 6 attr
))
7920 (setcar (nthcdr 6 attr
)
7921 (list (floor (nth 6 attr
) 65536)
7922 (floor (mod (nth 6 attr
) 65536)))))
7923 ;; Convert file size.
7924 (when (< (nth 7 attr
) 0)
7925 (setcar (nthcdr 7 attr
) -
1))
7926 (when (and (floatp (nth 7 attr
))
7927 (<= (nth 7 attr
) (tramp-compat-most-positive-fixnum)))
7928 (setcar (nthcdr 7 attr
) (round (nth 7 attr
))))
7929 ;; Convert file mode bits to string.
7930 (unless (stringp (nth 8 attr
))
7931 (setcar (nthcdr 8 attr
) (tramp-file-mode-from-int (nth 8 attr
)))
7932 (when (stringp (car attr
))
7933 (aset (nth 8 attr
) 0 ?l
)))
7934 ;; Convert directory indication bit.
7935 (when (string-match "^d" (nth 8 attr
))
7937 ;; Convert symlink from `tramp-do-file-attributes-with-stat'.
7938 (when (consp (car attr
))
7939 (if (and (stringp (caar attr
))
7940 (string-match ".+ -> .\\(.+\\)." (caar attr
)))
7941 (setcar attr
(match-string 1 (caar attr
)))
7943 ;; Set file's gid change bit.
7944 (setcar (nthcdr 9 attr
)
7945 (if (numberp (nth 3 attr
))
7946 (not (= (nth 3 attr
)
7947 (tramp-get-remote-gid vec
'integer
)))
7950 (tramp-get-remote-gid vec
'string
)))))
7952 (unless (listp (nth 10 attr
))
7953 (setcar (nthcdr 10 attr
)
7955 (cons (floor (nth 10 attr
) 65536)
7956 (floor (mod (nth 10 attr
) 65536)))
7957 ;; Inodes can be incredible huge. We must hide this.
7958 (error (tramp-get-inode vec
)))))
7959 ;; Set virtual device number.
7960 (setcar (nthcdr 11 attr
)
7961 (tramp-get-device vec
))
7964 (defun tramp-check-cached-permissions (vec access
)
7965 "Check `file-attributes' caches for VEC.
7966 Return t if according to the cache access type ACCESS is known to
7972 ((eq ?x access
) 3))))
7973 (dolist (suffix '("string" "integer") result
)
7979 (tramp-get-file-property
7980 vec
(tramp-file-name-localname vec
)
7981 (concat "file-attributes-" suffix
) nil
))
7983 (tramp-get-connection-property
7984 vec
(concat "uid-" suffix
) nil
))
7986 (tramp-get-connection-property
7987 vec
(concat "gid-" suffix
) nil
)))
7992 (eq t
(car file-attr
))
7993 (null (car file-attr
)))
7995 ;; World accessible.
7996 (eq access
(aref (nth 8 file-attr
) (+ offset
6)))
7997 ;; User accessible and owned by user.
7999 (eq access
(aref (nth 8 file-attr
) offset
))
8000 (equal remote-uid
(nth 2 file-attr
)))
8001 ;; Group accessible and owned by user's
8004 (eq access
(aref (nth 8 file-attr
) (+ offset
3)))
8005 (equal remote-gid
(nth 3 file-attr
)))))))))))
8007 (defun tramp-get-inode (vec)
8008 "Returns the virtual inode number.
8009 If it doesn't exist, generate a new one."
8010 (let ((string (tramp-make-tramp-file-name
8011 (tramp-file-name-method vec
)
8012 (tramp-file-name-user vec
)
8013 (tramp-file-name-host vec
)
8015 (unless (assoc string tramp-inodes
)
8016 (add-to-list 'tramp-inodes
8017 (list string
(length tramp-inodes
))))
8018 (nth 1 (assoc string tramp-inodes
))))
8020 (defun tramp-get-device (vec)
8021 "Returns the virtual device number.
8022 If it doesn't exist, generate a new one."
8023 (let ((string (tramp-make-tramp-file-name
8024 (tramp-file-name-method vec
)
8025 (tramp-file-name-user vec
)
8026 (tramp-file-name-host vec
)
8028 (unless (assoc string tramp-devices
)
8029 (add-to-list 'tramp-devices
8030 (list string
(length tramp-devices
))))
8031 (cons -
1 (nth 1 (assoc string tramp-devices
)))))
8033 (defun tramp-file-mode-from-int (mode)
8034 "Turn an integer representing a file mode into an ls(1)-like string."
8035 (let ((type (cdr (assoc (logand (lsh mode -
12) 15) tramp-file-mode-type-map
)))
8036 (user (logand (lsh mode -
6) 7))
8037 (group (logand (lsh mode -
3) 7))
8038 (other (logand (lsh mode -
0) 7))
8039 (suid (> (logand (lsh mode -
9) 4) 0))
8040 (sgid (> (logand (lsh mode -
9) 2) 0))
8041 (sticky (> (logand (lsh mode -
9) 1) 0)))
8042 (setq user
(tramp-file-mode-permissions user suid
"s"))
8043 (setq group
(tramp-file-mode-permissions group sgid
"s"))
8044 (setq other
(tramp-file-mode-permissions other sticky
"t"))
8045 (concat type user group other
)))
8047 (defun tramp-file-mode-permissions (perm suid suid-text
)
8048 "Convert a permission bitset into a string.
8049 This is used internally by `tramp-file-mode-from-int'."
8050 (let ((r (> (logand perm
4) 0))
8051 (w (> (logand perm
2) 0))
8052 (x (> (logand perm
1) 0)))
8053 (concat (or (and r
"r") "-")
8054 (or (and w
"w") "-")
8055 (or (and suid x suid-text
) ; suid, execute
8056 (and suid
(upcase suid-text
)) ; suid, !execute
8057 (and x
"x") "-")))) ; !suid
8059 (defun tramp-decimal-to-octal (i)
8060 "Return a string consisting of the octal digits of I.
8061 Not actually used. Use `(format \"%o\" i)' instead?"
8062 (cond ((< i
0) (error "Cannot convert negative number to octal"))
8063 ((not (integerp i
)) (error "Cannot convert non-integer to octal"))
8065 (t (concat (tramp-decimal-to-octal (/ i
8))
8066 (number-to-string (% i
8))))))
8068 ;; Kudos to Gerd Moellmann for this suggestion.
8069 (defun tramp-octal-to-decimal (ostr)
8070 "Given a string of octal digits, return a decimal number."
8071 (let ((x (or ostr
"")))
8072 ;; `save-match' is in `tramp-mode-string-to-int' which calls this.
8073 (unless (string-match "\\`[0-7]*\\'" x
)
8074 (error "Non-octal junk in string `%s'" x
))
8075 (string-to-number ostr
8)))
8077 (defun tramp-shell-case-fold (string)
8078 "Converts STRING to shell glob pattern which ignores case."
8081 (if (equal (downcase c
) (upcase c
))
8083 (format "[%c%c]" (downcase c
) (upcase c
))))
8088 ;; ------------------------------------------------------------
8089 ;; -- Tramp file names --
8090 ;; ------------------------------------------------------------
8091 ;; Conversion functions between external representation and
8092 ;; internal data structure. Convenience functions for internal
8095 (defun tramp-file-name-p (vec)
8096 "Check, whether VEC is a Tramp object."
8097 (and (vectorp vec
) (= 4 (length vec
))))
8099 (defun tramp-file-name-method (vec)
8100 "Return method component of VEC."
8101 (and (tramp-file-name-p vec
) (aref vec
0)))
8103 (defun tramp-file-name-user (vec)
8104 "Return user component of VEC."
8105 (and (tramp-file-name-p vec
) (aref vec
1)))
8107 (defun tramp-file-name-host (vec)
8108 "Return host component of VEC."
8109 (and (tramp-file-name-p vec
) (aref vec
2)))
8111 (defun tramp-file-name-localname (vec)
8112 "Return localname component of VEC."
8113 (and (tramp-file-name-p vec
) (aref vec
3)))
8115 ;; The user part of a Tramp file name vector can be of kind
8116 ;; "user%domain". Sometimes, we must extract these parts.
8117 (defun tramp-file-name-real-user (vec)
8118 "Return the user name of VEC without domain."
8120 (let ((user (tramp-file-name-user vec
)))
8121 (if (and (stringp user
)
8122 (string-match tramp-user-with-domain-regexp user
))
8123 (match-string 1 user
)
8126 (defun tramp-file-name-domain (vec)
8127 "Return the domain name of VEC."
8129 (let ((user (tramp-file-name-user vec
)))
8131 (string-match tramp-user-with-domain-regexp user
)
8132 (match-string 2 user
)))))
8134 ;; The host part of a Tramp file name vector can be of kind
8135 ;; "host#port". Sometimes, we must extract these parts.
8136 (defun tramp-file-name-real-host (vec)
8137 "Return the host name of VEC without port."
8139 (let ((host (tramp-file-name-host vec
)))
8140 (if (and (stringp host
)
8141 (string-match tramp-host-with-port-regexp host
))
8142 (match-string 1 host
)
8145 (defun tramp-file-name-port (vec)
8146 "Return the port number of VEC."
8148 (let ((host (tramp-file-name-host vec
)))
8150 (string-match tramp-host-with-port-regexp host
)
8151 (string-to-number (match-string 2 host
))))))
8153 (defun tramp-tramp-file-p (name)
8154 "Return t if NAME is a string with Tramp file name syntax."
8156 (and (stringp name
) (string-match tramp-file-name-regexp name
))))
8158 (defun tramp-find-method (method user host
)
8159 "Return the right method string to use.
8160 This is METHOD, if non-nil. Otherwise, do a lookup in
8161 `tramp-default-method-alist'."
8163 (let ((choices tramp-default-method-alist
)
8166 (setq item
(pop choices
))
8167 (when (and (string-match (or (nth 0 item
) "") (or host
""))
8168 (string-match (or (nth 1 item
) "") (or user
"")))
8169 (setq lmethod
(nth 2 item
))
8170 (setq choices nil
)))
8172 tramp-default-method
))
8174 (defun tramp-find-user (method user host
)
8175 "Return the right user string to use.
8176 This is USER, if non-nil. Otherwise, do a lookup in
8177 `tramp-default-user-alist'."
8179 (let ((choices tramp-default-user-alist
)
8182 (setq item
(pop choices
))
8183 (when (and (string-match (or (nth 0 item
) "") (or method
""))
8184 (string-match (or (nth 1 item
) "") (or host
"")))
8185 (setq luser
(nth 2 item
))
8186 (setq choices nil
)))
8188 tramp-default-user
))
8190 (defun tramp-find-host (method user host
)
8191 "Return the right host string to use.
8192 This is HOST, if non-nil. Otherwise, it is `tramp-default-host'."
8193 (or (and (> (length host
) 0) host
)
8194 tramp-default-host
))
8196 (defun tramp-dissect-file-name (name &optional nodefault
)
8197 "Return a `tramp-file-name' structure.
8198 The structure consists of remote method, remote user, remote host
8199 and localname (file name on remote host). If NODEFAULT is
8200 non-nil, the file name parts are not expanded to their default
8203 (let ((match (string-match (nth 0 tramp-file-name-structure
) name
)))
8204 (unless match
(error "Not a Tramp file name: %s" name
))
8205 (let ((method (match-string (nth 1 tramp-file-name-structure
) name
))
8206 (user (match-string (nth 2 tramp-file-name-structure
) name
))
8207 (host (match-string (nth 3 tramp-file-name-structure
) name
))
8208 (localname (match-string (nth 4 tramp-file-name-structure
) name
)))
8209 (when (member method
'("multi" "multiu"))
8211 "`%s' method is no longer supported, see (info \"(tramp)Multi-hops\")"
8214 (when (string-match tramp-prefix-ipv6-regexp host
)
8215 (setq host
(replace-match "" nil t host
)))
8216 (when (string-match tramp-postfix-ipv6-regexp host
)
8217 (setq host
(replace-match "" nil t host
))))
8219 (vector method user host localname
)
8221 (tramp-find-method method user host
)
8222 (tramp-find-user method user host
)
8223 (tramp-find-host method user host
)
8226 (defun tramp-equal-remote (file1 file2
)
8227 "Check, whether the remote parts of FILE1 and FILE2 are identical.
8228 The check depends on method, user and host name of the files. If
8229 one of the components is missing, the default values are used.
8230 The local file name parts of FILE1 and FILE2 are not taken into
8235 (tramp-equal-remote \"/ssh::/etc\" \"/<your host name>:/home\")
8237 would yield `t'. On the other hand, the following check results in nil:
8239 (tramp-equal-remote \"/sudo::/etc\" \"/su::/etc\")"
8240 (and (stringp (file-remote-p file1
))
8241 (stringp (file-remote-p file2
))
8242 (string-equal (file-remote-p file1
) (file-remote-p file2
))))
8244 (defun tramp-make-tramp-file-name (method user host localname
)
8245 "Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME."
8246 (concat tramp-prefix-format
8247 (when (not (zerop (length method
)))
8248 (concat method tramp-postfix-method-format
))
8249 (when (not (zerop (length user
)))
8250 (concat user tramp-postfix-user-format
))
8252 (if (string-match tramp-ipv6-regexp host
)
8253 (concat tramp-prefix-ipv6-format host tramp-postfix-ipv6-format
)
8255 tramp-postfix-host-format
8256 (when localname localname
)))
8258 (defun tramp-completion-make-tramp-file-name (method user host localname
)
8259 "Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME.
8260 It must not be a complete Tramp file name, but as long as there are
8261 necessary only. This function will be used in file name completion."
8262 (concat tramp-prefix-format
8263 (when (not (zerop (length method
)))
8264 (concat method tramp-postfix-method-format
))
8265 (when (not (zerop (length user
)))
8266 (concat user tramp-postfix-user-format
))
8267 (when (not (zerop (length host
)))
8269 (if (string-match tramp-ipv6-regexp host
)
8270 (concat tramp-prefix-ipv6-format host tramp-postfix-ipv6-format
)
8272 tramp-postfix-host-format
))
8273 (when localname localname
)))
8275 (defun tramp-make-copy-program-file-name (vec)
8276 "Create a file name suitable to be passed to `rcp' and workalikes."
8277 (let ((user (tramp-file-name-user vec
))
8278 (host (tramp-file-name-real-host vec
))
8279 (localname (tramp-shell-quote-argument
8280 (tramp-file-name-localname vec
))))
8281 (if (not (zerop (length user
)))
8282 (format "%s@%s:%s" user host localname
)
8283 (format "%s:%s" host localname
))))
8285 (defun tramp-method-out-of-band-p (vec size
)
8286 "Return t if this is an out-of-band method, nil otherwise."
8288 ;; It shall be an out-of-band method.
8289 (tramp-get-method-parameter (tramp-file-name-method vec
) 'tramp-copy-program
)
8290 ;; Either the file size is large enough, or (in rare cases) there
8291 ;; does not exist a remote encoding.
8292 (or (null tramp-copy-size-limit
)
8293 (> size tramp-copy-size-limit
)
8294 (null (tramp-get-inline-coding vec
"remote-encoding" size
)))))
8296 (defun tramp-local-host-p (vec)
8297 "Return t if this points to the local host, nil otherwise."
8298 ;; We cannot use `tramp-file-name-real-host'. A port is an
8299 ;; indication for an ssh tunnel or alike.
8300 (let ((host (tramp-file-name-host vec
)))
8303 (string-match tramp-local-host-regexp host
)
8304 ;; The method shall be applied to one of the shell file name
8305 ;; handler. `tramp-local-host-p' is also called for "smb" and
8306 ;; alike, where it must fail.
8307 (tramp-get-method-parameter
8308 (tramp-file-name-method vec
) 'tramp-login-program
)
8309 ;; The local temp directory must be writable for the other user.
8311 (tramp-make-tramp-file-name
8312 (tramp-file-name-method vec
)
8313 (tramp-file-name-user vec
)
8315 (tramp-compat-temporary-file-directory)))
8316 ;; On some systems, chown runs only for root.
8317 (or (zerop (user-uid))
8318 (zerop (tramp-get-remote-uid vec
'integer
))))))
8320 ;; Variables local to connection.
8322 (defun tramp-get-remote-path (vec)
8323 (with-connection-property
8324 ;; When `tramp-own-remote-path' is in `tramp-remote-path', we
8325 ;; cache the result for the session only. Otherwise, the result
8326 ;; is cached persistently.
8327 (if (memq 'tramp-own-remote-path tramp-remote-path
)
8328 (tramp-get-connection-process vec
)
8331 (let* ((remote-path (copy-tree tramp-remote-path
))
8332 (elt1 (memq 'tramp-default-remote-path remote-path
))
8333 (elt2 (memq 'tramp-own-remote-path remote-path
))
8334 (default-remote-path
8337 (tramp-send-command-and-read
8338 vec
"echo \\\"`getconf PATH`\\\"")
8339 ;; Default if "getconf" is not available.
8343 "`getconf PATH' not successful, using default value \"%s\"."
8349 (tramp-send-command-and-read vec
"echo \\\"$PATH\\\"")
8350 ;; Default if "getconf" is not available.
8353 vec
3 "$PATH not set, ignoring `tramp-own-remote-path'.")
8356 ;; Replace place holder `tramp-default-remote-path'.
8360 (tramp-compat-split-string default-remote-path
":")
8362 (setq remote-path
(delq 'tramp-default-remote-path remote-path
)))
8364 ;; Replace place holder `tramp-own-remote-path'.
8368 (tramp-compat-split-string own-remote-path
":")
8370 (setq remote-path
(delq 'tramp-own-remote-path remote-path
)))
8372 ;; Remove double entries.
8373 (setq elt1 remote-path
)
8375 (while (and (car elt1
) (setq elt2
(member (car elt1
) (cdr elt1
))))
8377 (setq elt1
(cdr elt1
)))
8379 ;; Remove non-existing directories.
8387 (tramp-make-tramp-file-name
8388 (tramp-file-name-method vec
)
8389 (tramp-file-name-user vec
)
8390 (tramp-file-name-host vec
)
8395 (defun tramp-get-remote-tmpdir (vec)
8396 (with-connection-property vec
"tmp-directory"
8397 (let ((dir (tramp-shell-quote-argument "/tmp")))
8399 (tramp-send-command-and-check
8400 vec
(format "%s -d %s" (tramp-get-test-command vec
) dir
)))
8402 (tramp-send-command-and-check
8403 vec
(format "%s -w %s" (tramp-get-test-command vec
) dir
))))
8405 (tramp-error vec
'file-error
"Directory %s not accessible" dir
)))))
8407 (defun tramp-get-ls-command (vec)
8408 (with-connection-property vec
"ls"
8409 (tramp-message vec
5 "Finding a suitable `ls' command")
8412 (dolist (cmd '("ls" "gnuls" "gls"))
8413 (let ((dl (tramp-get-remote-path vec
))
8415 (while (and dl
(setq result
(tramp-find-executable vec cmd dl t t
)))
8416 ;; Check parameters. On busybox, "ls" output coloring is
8417 ;; enabled by default sometimes. So we try to disable it
8418 ;; when possible. $LS_COLORING is not supported there.
8419 ;; Some "ls" versions are sensible wrt the order of
8420 ;; arguments, they fail when "-al" is after the
8421 ;; "--color=never" argument (for example on FreeBSD).
8422 (when (zerop (tramp-send-command-and-check
8423 vec
(format "%s -lnd /" result
)))
8424 (when (zerop (tramp-send-command-and-check
8426 "%s --color=never -al /dev/null" result
)))
8427 (setq result
(concat result
" --color=never")))
8428 (throw 'ls-found result
))
8429 (setq dl
(cdr dl
))))))
8430 (tramp-error vec
'file-error
"Couldn't find a proper `ls' command"))))
8432 (defun tramp-get-ls-command-with-dired (vec)
8434 (with-connection-property vec
"ls-dired"
8435 (tramp-message vec
5 "Checking, whether `ls --dired' works")
8436 ;; Some "ls" versions are sensible wrt the order of arguments,
8437 ;; they fail when "-al" is after the "--dired" argument (for
8438 ;; example on FreeBSD).
8439 (zerop (tramp-send-command-and-check
8440 vec
(format "%s --dired -al /dev/null"
8441 (tramp-get-ls-command vec
)))))))
8443 (defun tramp-get-test-command (vec)
8444 (with-connection-property vec
"test"
8445 (tramp-message vec
5 "Finding a suitable `test' command")
8446 (if (zerop (tramp-send-command-and-check vec
"test 0"))
8448 (tramp-find-executable vec
"test" (tramp-get-remote-path vec
)))))
8450 (defun tramp-get-test-nt-command (vec)
8451 ;; Does `test A -nt B' work? Use abominable `find' construct if it
8452 ;; doesn't. BSD/OS 4.0 wants the parentheses around the command,
8453 ;; for otherwise the shell crashes.
8454 (with-connection-property vec
"test-nt"
8458 vec
(format "( %s / -nt / )" (tramp-get-test-command vec
)))
8459 (with-current-buffer (tramp-get-buffer vec
)
8460 (goto-char (point-min))
8461 (when (looking-at (regexp-quote tramp-end-of-output
))
8462 (format "%s %%s -nt %%s" (tramp-get-test-command vec
)))))
8467 "tramp_test_nt () {\n%s -n \"`find $1 -prune -newer $2 -print`\"\n}"
8468 (tramp-get-test-command vec
)))
8469 "tramp_test_nt %s %s"))))
8471 (defun tramp-get-file-exists-command (vec)
8472 (with-connection-property vec
"file-exists"
8473 (tramp-message vec
5 "Finding command to check if file exists")
8474 (tramp-find-file-exists-command vec
)))
8476 (defun tramp-get-remote-ln (vec)
8477 (with-connection-property vec
"ln"
8478 (tramp-message vec
5 "Finding a suitable `ln' command")
8479 (tramp-find-executable vec
"ln" (tramp-get-remote-path vec
))))
8481 (defun tramp-get-remote-perl (vec)
8482 (with-connection-property vec
"perl"
8483 (tramp-message vec
5 "Finding a suitable `perl' command")
8485 (or (tramp-find-executable vec
"perl5" (tramp-get-remote-path vec
))
8486 (tramp-find-executable
8487 vec
"perl" (tramp-get-remote-path vec
)))))
8488 ;; We must check also for some Perl modules.
8490 (with-connection-property vec
"perl-file-spec"
8492 (tramp-send-command-and-check
8493 vec
(format "%s -e 'use File::Spec;'" result
))))
8494 (with-connection-property vec
"perl-cwd-realpath"
8496 (tramp-send-command-and-check
8497 vec
(format "%s -e 'use Cwd \"realpath\";'" result
)))))
8500 (defun tramp-get-remote-stat (vec)
8501 (with-connection-property vec
"stat"
8502 (tramp-message vec
5 "Finding a suitable `stat' command")
8503 (let ((result (tramp-find-executable
8504 vec
"stat" (tramp-get-remote-path vec
)))
8506 ;; Check whether stat(1) returns usable syntax. %s does not
8507 ;; work on older AIX systems.
8510 ;; We don't want to display an error message.
8511 (with-temp-message (or (current-message) "")
8513 (tramp-send-command-and-read
8514 vec
(format "%s -c '(\"%%N\" %%s)' /" result
))
8516 (unless (and (listp tmp
) (stringp (car tmp
))
8517 (string-match "^./.$" (car tmp
))
8518 (integerp (cadr tmp
)))
8522 (defun tramp-get-remote-readlink (vec)
8523 (with-connection-property vec
"readlink"
8524 (tramp-message vec
5 "Finding a suitable `readlink' command")
8525 (let ((result (tramp-find-executable
8526 vec
"readlink" (tramp-get-remote-path vec
))))
8528 ;; We don't want to display an error message.
8529 (with-temp-message (or (current-message) "")
8532 (tramp-send-command-and-check
8533 vec
(format "%s --canonicalize-missing /" result
)))
8537 (defun tramp-get-remote-trash (vec)
8538 (with-connection-property vec
"trash"
8539 (tramp-message vec
5 "Finding a suitable `trash' command")
8540 (tramp-find-executable vec
"trash" (tramp-get-remote-path vec
))))
8542 (defun tramp-get-remote-id (vec)
8543 (with-connection-property vec
"id"
8544 (tramp-message vec
5 "Finding POSIX `id' command")
8547 (let ((dl (tramp-get-remote-path vec
))
8549 (while (and dl
(setq result
(tramp-find-executable vec
"id" dl t t
)))
8550 ;; Check POSIX parameter.
8551 (when (zerop (tramp-send-command-and-check
8552 vec
(format "%s -u" result
)))
8553 (throw 'id-found result
))
8554 (setq dl
(cdr dl
)))))
8555 (tramp-error vec
'file-error
"Couldn't find a POSIX `id' command"))))
8557 (defun tramp-get-remote-uid (vec id-format
)
8558 (with-connection-property vec
(format "uid-%s" id-format
)
8559 (let ((res (tramp-send-command-and-read
8561 (format "%s -u%s %s"
8562 (tramp-get-remote-id vec
)
8563 (if (equal id-format
'integer
) "" "n")
8564 (if (equal id-format
'integer
)
8565 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/")))))
8566 ;; The command might not always return a number.
8567 (if (and (equal id-format
'integer
) (not (integerp res
))) -
1 res
))))
8569 (defun tramp-get-remote-gid (vec id-format
)
8570 (with-connection-property vec
(format "gid-%s" id-format
)
8571 (let ((res (tramp-send-command-and-read
8573 (format "%s -g%s %s"
8574 (tramp-get-remote-id vec
)
8575 (if (equal id-format
'integer
) "" "n")
8576 (if (equal id-format
'integer
)
8577 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/")))))
8578 ;; The command might not always return a number.
8579 (if (and (equal id-format
'integer
) (not (integerp res
))) -
1 res
))))
8581 (defun tramp-get-local-uid (id-format)
8582 (if (equal id-format
'integer
) (user-uid) (user-login-name)))
8584 (defun tramp-get-local-gid (id-format)
8585 (nth 3 (tramp-compat-file-attributes "~/" id-format
)))
8587 ;; Some predefined connection properties.
8588 (defun tramp-get-inline-compress (vec prop size
)
8589 "Return the compress command related to PROP.
8590 PROP is either `inline-compress' or `inline-decompress'. SIZE is
8591 the length of the file to be compressed.
8593 If no corresponding command is found, nil is returned."
8594 (when (and (integerp tramp-inline-compress-start-size
)
8595 (> size tramp-inline-compress-start-size
))
8596 (with-connection-property vec prop
8597 (tramp-find-inline-compress vec
)
8598 (tramp-get-connection-property vec prop nil
))))
8600 (defun tramp-get-inline-coding (vec prop size
)
8601 "Return the coding command related to PROP.
8602 PROP is either `remote-encoding', `remode-decoding',
8603 `local-encoding' or `local-decoding'.
8605 SIZE is the length of the file to be coded. Depending on SIZE,
8606 compression might be applied.
8608 If no corresponding command is found, nil is returned.
8609 Otherwise, either a string is returned which contains a `%s' mark
8610 to be used for the respective input or output file; or a Lisp
8611 function cell is returned to be applied on a buffer."
8612 ;; We must catch the errors, because we want to return `nil', when
8613 ;; no inline coding is found.
8616 (with-connection-property vec prop
8617 (tramp-find-inline-encoding vec
)
8618 (tramp-get-connection-property vec prop nil
)))
8619 (prop1 (if (string-match "encoding" prop
)
8620 "inline-compress" "inline-decompress"))
8622 ;; The connection property might have been cached. So we must
8623 ;; send the script to the remote side - maybe.
8624 (when (and coding
(symbolp coding
) (string-match "remote" prop
))
8625 (let ((name (symbol-name coding
)))
8626 (while (string-match (regexp-quote "-") name
)
8627 (setq name
(replace-match "_" nil t name
)))
8628 (tramp-maybe-send-script vec
(symbol-value coding
) name
)
8629 (setq coding name
)))
8631 ;; Check for the `compress' command.
8632 (setq compress
(tramp-get-inline-compress vec prop1 size
))
8633 ;; Return the value.
8635 ((and compress
(symbolp coding
))
8636 (if (string-match "decompress" prop1
)
8639 (let ((coding-system-for-write 'binary
)
8640 (coding-system-for-read 'binary
))
8642 'call-process-region
(point-min) (point-max)
8643 (car (split-string ,compress
)) t t nil
8644 (cdr (split-string ,compress
)))))
8646 (let ((coding-system-for-write 'binary
)
8647 (coding-system-for-read 'binary
))
8649 'call-process-region beg end
8650 (car (split-string ,compress
)) t t nil
8651 (cdr (split-string ,compress
))))
8652 (,coding
(point-min) (point-max)))))
8655 ((and compress
(string-match "decoding" prop
))
8657 ;; Windows shells need the program file name after
8658 ;; the pipe symbol be quoted if they use forward
8659 ;; slashes as directory separators.
8660 (if (and (string-match "local" prop
)
8661 (memq system-type
'(windows-nt)))
8662 "(%s | \"%s\" >%%s)"
8667 ;; Windows shells need the program file name after
8668 ;; the pipe symbol be quoted if they use forward
8669 ;; slashes as directory separators.
8670 (if (and (string-match "local" prop
)
8671 (memq system-type
'(windows-nt)))
8672 "(%s <%%s | \"%s\")"
8675 ((string-match "decoding" prop
)
8676 (format "%s >%%s" coding
))
8678 (format "%s <%%s" coding
)))))))
8680 (defun tramp-get-method-parameter (method param
)
8681 "Return the method parameter PARAM.
8682 If the `tramp-methods' entry does not exist, return nil."
8683 (let ((entry (assoc param
(assoc method tramp-methods
))))
8684 (when entry
(cadr entry
))))
8686 ;; Auto saving to a special directory.
8688 (defun tramp-exists-file-name-handler (operation &rest args
)
8689 "Check, whether OPERATION runs a file name handler."
8690 ;; The file name handler is determined on base of either an
8691 ;; argument, `buffer-file-name', or `default-directory'.
8693 (let* ((buffer-file-name "/")
8694 (default-directory "/")
8695 (fnha file-name-handler-alist
)
8696 (check-file-name-operation operation
)
8697 (file-name-handler-alist
8700 (lambda (operation &rest args
)
8701 "Returns OPERATION if it is the one to be checked."
8702 (if (equal check-file-name-operation operation
)
8704 (let ((file-name-handler-alist fnha
))
8705 (apply operation args
))))))))
8706 (equal (apply operation args
) operation
))
8709 (unless (tramp-exists-file-name-handler 'make-auto-save-file-name
)
8710 (defadvice make-auto-save-file-name
8711 (around tramp-advice-make-auto-save-file-name
() activate
)
8712 "Invoke `tramp-handle-make-auto-save-file-name' for Tramp files."
8713 (if (tramp-tramp-file-p (buffer-file-name))
8714 ;; We cannot call `tramp-handle-make-auto-save-file-name'
8715 ;; directly, because this would bypass the locking mechanism.
8716 (setq ad-return-value
8717 (tramp-file-name-handler 'make-auto-save-file-name
))
8723 'make-auto-save-file-name
8724 'around
'tramp-advice-make-auto-save-file-name
)
8725 (ad-activate 'make-auto-save-file-name
))))
8727 ;; In XEmacs < 21.5, autosaved remote files have permission 0666 minus
8728 ;; umask. This is a security threat.
8730 (defun tramp-set-auto-save-file-modes ()
8731 "Set permissions of autosaved remote files to the original permissions."
8732 (let ((bfn (buffer-file-name)))
8733 (when (and (tramp-tramp-file-p bfn
)
8735 (stringp buffer-auto-save-file-name
)
8736 (not (equal bfn buffer-auto-save-file-name
)))
8737 (unless (file-exists-p buffer-auto-save-file-name
)
8738 (write-region "" nil buffer-auto-save-file-name
))
8739 ;; Permissions should be set always, because there might be an old
8740 ;; auto-saved file belonging to another original file. This could
8741 ;; be a security threat.
8742 (set-file-modes buffer-auto-save-file-name
8743 (or (file-modes bfn
) (tramp-octal-to-decimal "0600"))))))
8745 (unless (and (featurep 'xemacs
)
8746 (= emacs-major-version
21)
8747 (> emacs-minor-version
4))
8748 (add-hook 'auto-save-hook
'tramp-set-auto-save-file-modes
)
8749 (add-hook 'tramp-unload-hook
8751 (remove-hook 'auto-save-hook
'tramp-set-auto-save-file-modes
))))
8753 (defun tramp-subst-strs-in-string (alist string
)
8754 "Replace all occurrences of the string FROM with TO in STRING.
8755 ALIST is of the form ((FROM . TO) ...)."
8758 (let* ((pr (car alist
))
8761 (while (string-match (regexp-quote from
) string
)
8762 (setq string
(replace-match to t t string
)))
8763 (setq alist
(cdr alist
))))
8766 ;; ------------------------------------------------------------
8767 ;; -- Compatibility functions section --
8768 ;; ------------------------------------------------------------
8770 (defun tramp-read-passwd (proc &optional prompt
)
8771 "Read a password from user (compat function).
8772 Consults the auth-source package.
8773 Invokes `password-read' if available, `read-passwd' else."
8774 (let* ((key (tramp-make-tramp-file-name
8775 tramp-current-method tramp-current-user
8776 tramp-current-host
""))
8779 (with-current-buffer (process-buffer proc
)
8780 (tramp-check-for-regexp proc tramp-password-prompt-regexp
)
8781 (format "%s for %s " (capitalize (match-string 1)) key
)))))
8782 (with-parsed-tramp-file-name key nil
8785 ;; See if auth-sources contains something useful, if it's bound.
8786 (and (boundp 'auth-sources
)
8787 (tramp-get-connection-property v
"first-password-request" nil
)
8788 ;; Try with Tramp's current method.
8789 (tramp-compat-funcall
8790 'auth-source-user-or-password
8791 "password" tramp-current-host tramp-current-method
))
8792 ;; Try the password cache.
8793 (when (functionp 'password-read
)
8794 (unless (tramp-get-connection-property
8795 v
"first-password-request" nil
)
8796 (tramp-compat-funcall 'password-cache-remove key
))
8798 (tramp-compat-funcall 'password-read pw-prompt key
)))
8799 (tramp-compat-funcall 'password-cache-add key password
)
8801 ;; Else, get the password interactively.
8802 (read-passwd pw-prompt
))
8803 (tramp-set-connection-property v
"first-password-request" nil
)))))
8805 (defun tramp-clear-passwd (vec)
8806 "Clear password cache for connection related to VEC."
8807 (tramp-compat-funcall
8808 'password-cache-remove
8809 (tramp-make-tramp-file-name
8810 (tramp-file-name-method vec
)
8811 (tramp-file-name-user vec
)
8812 (tramp-file-name-host vec
)
8815 ;; Snarfed code from time-date.el and parse-time.el
8817 (defconst tramp-half-a-year
'(241 17024)
8818 "Evaluated by \"(days-to-time 183)\".")
8820 (defconst tramp-parse-time-months
8821 '(("jan" .
1) ("feb" .
2) ("mar" .
3)
8822 ("apr" .
4) ("may" .
5) ("jun" .
6)
8823 ("jul" .
7) ("aug" .
8) ("sep" .
9)
8824 ("oct" .
10) ("nov" .
11) ("dec" .
12))
8825 "Alist mapping month names to integers.")
8827 (defun tramp-time-less-p (t1 t2
)
8828 "Say whether time value T1 is less than time value T2."
8829 (unless t1
(setq t1
'(0 0)))
8830 (unless t2
(setq t2
'(0 0)))
8831 (or (< (car t1
) (car t2
))
8832 (and (= (car t1
) (car t2
))
8833 (< (nth 1 t1
) (nth 1 t2
)))))
8835 (defun tramp-time-subtract (t1 t2
)
8836 "Subtract two time values.
8837 Return the difference in the format of a time value."
8838 (unless t1
(setq t1
'(0 0)))
8839 (unless t2
(setq t2
'(0 0)))
8840 (let ((borrow (< (cadr t1
) (cadr t2
))))
8841 (list (- (car t1
) (car t2
) (if borrow
1 0))
8842 (- (+ (if borrow
65536 0) (cadr t1
)) (cadr t2
)))))
8844 (defun tramp-time-diff (t1 t2
)
8845 "Return the difference between the two times, in seconds.
8846 T1 and T2 are time values (as returned by `current-time' for example)."
8847 ;; Pacify byte-compiler with `symbol-function'.
8848 (cond ((and (fboundp 'subtract-time
)
8849 (fboundp 'float-time
))
8850 (tramp-compat-funcall
8851 'float-time
(tramp-compat-funcall 'subtract-time t1 t2
)))
8852 ((and (fboundp 'subtract-time
)
8853 (fboundp 'time-to-seconds
))
8854 (tramp-compat-funcall
8855 'time-to-seconds
(tramp-compat-funcall 'subtract-time t1 t2
)))
8856 ((fboundp 'itimer-time-difference
)
8857 (tramp-compat-funcall
8858 'itimer-time-difference
8859 (if (< (length t1
) 3) (append t1
'(0)) t1
)
8860 (if (< (length t2
) 3) (append t2
'(0)) t2
)))
8862 (let ((time (tramp-time-subtract t1 t2
)))
8863 (+ (* (car time
) 65536.0)
8865 (/ (or (nth 2 time
) 0) 1000000.0))))))
8867 (defun tramp-coding-system-change-eol-conversion (coding-system eol-type
)
8868 "Return a coding system like CODING-SYSTEM but with given EOL-TYPE.
8869 EOL-TYPE can be one of `dos', `unix', or `mac'."
8870 (cond ((fboundp 'coding-system-change-eol-conversion
)
8871 (tramp-compat-funcall
8872 'coding-system-change-eol-conversion coding-system eol-type
))
8873 ((fboundp 'subsidiary-coding-system
)
8874 (tramp-compat-funcall
8875 'subsidiary-coding-system coding-system
8876 (cond ((eq eol-type
'dos
) 'crlf
)
8877 ((eq eol-type
'unix
) 'lf
)
8878 ((eq eol-type
'mac
) 'cr
)
8880 (error "Unknown EOL-TYPE `%s', must be %s"
8882 "`dos', `unix', or `mac'")))))
8883 (t (error "Can't change EOL conversion -- is MULE missing?"))))
8885 (defun tramp-set-process-query-on-exit-flag (process flag
)
8886 "Specify if query is needed for process when Emacs is exited.
8887 If the second argument flag is non-nil, Emacs will query the user before
8888 exiting if process is running."
8889 (if (fboundp 'set-process-query-on-exit-flag
)
8890 (tramp-compat-funcall 'set-process-query-on-exit-flag process flag
)
8891 (tramp-compat-funcall 'process-kill-without-query process flag
)))
8894 ;; ------------------------------------------------------------
8895 ;; -- Kludges section --
8896 ;; ------------------------------------------------------------
8898 ;; Currently (as of Emacs 20.5), the function `shell-quote-argument'
8899 ;; does not deal well with newline characters. Newline is replaced by
8900 ;; backslash newline. But if, say, the string `a backslash newline b'
8901 ;; is passed to a shell, the shell will expand this into "ab",
8902 ;; completely omitting the newline. This is not what was intended.
8903 ;; It does not appear to be possible to make the function
8904 ;; `shell-quote-argument' work with newlines without making it
8905 ;; dependent on the shell used. But within this package, we know that
8906 ;; we will always use a Bourne-like shell, so we use an approach which
8909 ;; The approach is simple: we call `shell-quote-argument', then
8910 ;; massage the newline part of the result.
8912 ;; This function should produce a string which is grokked by a Unix
8913 ;; shell, even if the Emacs is running on Windows. Since this is the
8914 ;; kludges section, we bind `system-type' in such a way that
8915 ;; `shell-quote-arguments' behaves as if on Unix.
8917 ;; Thanks to Mario DeWeerd for the hint that it is sufficient for this
8918 ;; function to work with Bourne-like shells.
8920 ;; CCC: This function should be rewritten so that
8921 ;; `shell-quote-argument' is not used. This way, we are safe from
8922 ;; changes in `shell-quote-argument'.
8923 (defun tramp-shell-quote-argument (s)
8924 "Similar to `shell-quote-argument', but groks newlines.
8925 Only works for Bourne-like shells."
8926 (let ((system-type 'not-windows
))
8928 (let ((result (shell-quote-argument s
))
8929 (nl (regexp-quote (format "\\%s" tramp-rsh-end-of-line
))))
8930 (when (and (>= (length result
) 2)
8931 (string= (substring result
0 2) "\\~"))
8932 (setq result
(substring result
1)))
8933 (while (string-match nl result
)
8934 (setq result
(replace-match (format "'%s'" tramp-rsh-end-of-line
)
8938 ;; Checklist for `tramp-unload-hook'
8939 ;; - Unload all `tramp-*' packages
8940 ;; - Reset `file-name-handler-alist'
8941 ;; - Cleanup hooks where Tramp functions are in
8942 ;; - Cleanup advised functions
8943 ;; - Cleanup autoloads
8945 (defun tramp-unload-tramp ()
8946 "Discard Tramp from loading remote files."
8948 ;; When Tramp is not loaded yet, its autoloads are still active.
8949 (tramp-unload-file-name-handlers)
8950 ;; ange-ftp settings must be enabled.
8951 (tramp-compat-funcall 'tramp-ftp-enable-ange-ftp
)
8952 ;; Maybe its not loaded yet.
8954 (unload-feature 'tramp
'force
)
8957 (when (and load-in-progress
8958 (string-match "Loading tramp..." (or (current-message) "")))
8959 (message "Loading tramp...done"))
8965 ;; * Handle nonlocal exits such as C-g.
8966 ;; * But it would probably be better to use with-local-quit at the
8967 ;; place where it's actually needed: around any potentially
8968 ;; indefinitely blocking piece of code. In this case it would be
8969 ;; within Tramp around one of its calls to accept-process-output (or
8970 ;; around one of the loops that calls accept-process-output)
8971 ;; (Stefan Monnier).
8972 ;; * Rewrite `tramp-shell-quote-argument' to abstain from using
8973 ;; `shell-quote-argument'.
8974 ;; * In Emacs 21, `insert-directory' shows total number of bytes used
8975 ;; by the files in that directory. Add this here.
8976 ;; * Avoid screen blanking when hitting `g' in dired. (Eli Tziperman)
8977 ;; * Make ffap.el grok Tramp filenames. (Eli Tziperman)
8978 ;; * Don't use globbing for directories with many files, as this is
8979 ;; likely to produce long command lines, and some shells choke on
8980 ;; long command lines.
8981 ;; * How to deal with MULE in `insert-file-contents' and `write-region'?
8982 ;; * abbreviate-file-name
8983 ;; * Better error checking. At least whenever we see something
8984 ;; strange when doing zerop, we should kill the process and start
8985 ;; again. (Greg Stark)
8986 ;; * Remove unneeded parameters from methods.
8987 ;; * Make it work for different encodings, and for different file name
8988 ;; encodings, too. (Daniel Pittman)
8989 ;; * Don't search for perl5 and perl. Instead, only search for perl and
8990 ;; then look if it's the right version (with `perl -v').
8991 ;; * When editing a remote CVS controlled file as a different user, VC
8992 ;; gets confused about the file locking status. Try to find out why
8993 ;; the workaround doesn't work.
8994 ;; * Username and hostname completion.
8995 ;; ** Try to avoid usage of `last-input-event' in `tramp-completion-mode-p'.
8996 ;; ** Unify `tramp-parse-{rhosts,shosts,sconfig,hosts,passwd,netrc}'.
8997 ;; Code is nearly identical.
8998 ;; * Allow out-of-band methods as _last_ multi-hop. Open a connection
8999 ;; until the last but one hop via `start-file-process'. Apply it
9000 ;; also for ftp and smb.
9001 ;; * WIBNI if we had a command "trampclient"? If I was editing in
9002 ;; some shell with root priviledges, it would be nice if I could
9004 ;; trampclient filename.c
9005 ;; as an editor, and the _current_ shell would connect to an Emacs
9006 ;; server and would be used in an existing non-priviledged Emacs
9007 ;; session for doing the editing in question.
9008 ;; That way, I need not tell Emacs my password again and be afraid
9009 ;; that it makes it into core dumps or other ugly stuff (I had Emacs
9010 ;; once display a just typed password in the context of a keyboard
9011 ;; sequence prompt for a question immediately following in a shell
9012 ;; script run within Emacs -- nasty).
9013 ;; And if I have some ssh session running to a different computer,
9014 ;; having the possibility of passing a local file there to a local
9015 ;; Emacs session (in case I can arrange for a connection back) would
9017 ;; Likely the corresponding Tramp server should not allow the
9018 ;; equivalent of the emacsclient -eval option in order to make this
9019 ;; reasonably unproblematic. And maybe trampclient should have some
9020 ;; way of passing credentials, like by using an SSL socket or
9021 ;; something. (David Kastrup)
9022 ;; * Reconnect directly to a compliant shell without first going
9023 ;; through the user's default shell. (Pete Forman)
9024 ;; * Make `tramp-default-user' obsolete.
9025 ;; * How can I interrupt the remote process with a signal
9026 ;; (interrupt-process seems not to work)? (Markus Triska)
9027 ;; * Avoid the local shell entirely for starting remote processes. If
9028 ;; so, I think even a signal, when delivered directly to the local
9029 ;; SSH instance, would correctly be propagated to the remote process
9030 ;; automatically; possibly SSH would have to be started with
9031 ;; "-t". (Markus Triska)
9032 ;; * It makes me wonder if tramp couldn't fall back to ssh when scp
9033 ;; isn't on the remote host. (Mark A. Hershberger)
9034 ;; * Use lsh instead of ssh. (Alfred M. Szmidt)
9035 ;; * Implement a general server-local-variable mechanism, as there are
9036 ;; probably other variables that need different values for different
9037 ;; servers too. The user could then configure a variable (such as
9038 ;; tramp-server-local-variable-alist) to define any such variables
9039 ;; that they need to, which would then be let bound as appropriate
9040 ;; in tramp functions. (Jason Rumney)
9041 ;; * Optimize out-of-band copying, when both methods are scp-like (not
9043 ;; * Keep a second connection open for out-of-band methods like scp or
9045 ;; * IMHO, it's a drawback that currently Tramp doesn't support
9046 ;; Unicode in Dired file names by default. Is it possible to
9047 ;; improve Tramp to set LC_ALL to "C" only for commands where Tramp
9048 ;; expects English? Or just to set LC_MESSAGES to "C" if Tramp
9049 ;; expects only English messages? (Juri Linkov)
9050 ;; * Make shadowfile.el grok Tramp filenames. (Bug#4526, Bug#4846)
9051 ;; * Load Tramp subpackages only when needed. (Bug#1529, Bug#5448, Bug#5705)
9052 ;; * Try telnet+curl as new method. It might be useful for busybox,
9053 ;; without built-in uuencode/uudecode.
9054 ;; * Load ~/.emacs_SHELLNAME on the remote host for `shell'.
9055 ;; * I was wondering it it would be possible to use tramp even if I'm
9056 ;; actually using sshfs. But when I launch a command I would like
9057 ;; to get it executed on the remote machine where the files really
9058 ;; are. (Andrea Crotti)
9059 ;; * Run emerge on two remote files. Bug is described here:
9060 ;; <http://www.mail-archive.com/tramp-devel@nongnu.org/msg01041.html>.
9063 ;; Functions for file-name-handler-alist:
9064 ;; diff-latest-backup-file -- in diff.el
9066 ;; arch-tag: 3a21a994-182b-48fa-b0cd-c1d9fede424a
9067 ;;; tramp.el ends here