* lisp/icomplete.el (icomplete-with-completion-tables): Add :version.
[emacs.git] / lisp / net / tramp-sh.el
blob147113ba5a1e0e82ba5816bfa587ff90e927ec01
1 ;;; tramp-sh.el --- Tramp access functions for (s)sh-like connections
3 ;; Copyright (C) 1998-2013 Free Software Foundation, Inc.
5 ;; (copyright statements below in code to be updated with the above notice)
7 ;; Author: Kai Großjohann <kai.grossjohann@gmx.net>
8 ;; Michael Albinus <michael.albinus@gmx.de>
9 ;; Keywords: comm, processes
10 ;; Package: tramp
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/>.
27 ;;; Code:
29 (require 'tramp)
31 ;; Pacify byte-compiler.
32 (eval-when-compile
33 (require 'cl)
34 (require 'dired))
35 (defvar directory-sep-char)
36 (defvar tramp-gw-tunnel-method)
37 (defvar tramp-gw-socks-method)
39 (defcustom tramp-inline-compress-start-size 4096
40 "The minimum size of compressing where inline transfer.
41 When inline transfer, compress transferred data of file
42 whose size is this value or above (up to `tramp-copy-size-limit').
43 If it is nil, no compression at all will be applied."
44 :group 'tramp
45 :type '(choice (const nil) integer))
47 (defcustom tramp-copy-size-limit 10240
48 "The maximum file size where inline copying is preferred over an \
49 out-of-the-band copy.
50 If it is nil, out-of-the-band copy will be used without a check."
51 :group 'tramp
52 :type '(choice (const nil) integer))
54 ;;;###tramp-autoload
55 (defcustom tramp-terminal-type "dumb"
56 "Value of TERM environment variable for logging in to remote host.
57 Because Tramp wants to parse the output of the remote shell, it is easily
58 confused by ANSI color escape sequences and suchlike. Often, shell init
59 files conditionalize this setup based on the TERM environment variable."
60 :group 'tramp
61 :type 'string)
63 (defconst tramp-color-escape-sequence-regexp "\e[[;0-9]+m"
64 "Escape sequences produced by the \"ls\" command.")
66 ;; ksh on OpenBSD 4.5 requires that $PS1 contains a `#' character for
67 ;; root users. It uses the `$' character for other users. In order
68 ;; to guarantee a proper prompt, we use "#$ " for the prompt.
70 (defvar tramp-end-of-output
71 (format
72 "///%s#$"
73 (md5 (concat (prin1-to-string process-environment) (current-time-string))))
74 "String used to recognize end of output.
75 The '$' character at the end is quoted; the string cannot be
76 detected as prompt when being sent on echoing hosts, therefore.")
78 ;;;###tramp-autoload
79 (defconst tramp-initial-end-of-output "#$ "
80 "Prompt when establishing a connection.")
82 ;; Initialize `tramp-methods' with the supported methods.
83 ;;;###tramp-autoload
84 (add-to-list 'tramp-methods
85 '("rcp"
86 (tramp-login-program "rsh")
87 (tramp-login-args (("%h") ("-l" "%u")))
88 (tramp-remote-shell "/bin/sh")
89 (tramp-remote-shell-args ("-c"))
90 (tramp-copy-program "rcp")
91 (tramp-copy-args (("-p" "%k") ("-r")))
92 (tramp-copy-keep-date t)
93 (tramp-copy-recursive t)))
94 ;;;###tramp-autoload
95 (add-to-list 'tramp-methods
96 '("remcp"
97 (tramp-login-program "remsh")
98 (tramp-login-args (("%h") ("-l" "%u")))
99 (tramp-remote-shell "/bin/sh")
100 (tramp-remote-shell-args ("-c"))
101 (tramp-copy-program "rcp")
102 (tramp-copy-args (("-p" "%k")))
103 (tramp-copy-keep-date t)))
104 ;;;###tramp-autoload
105 (add-to-list 'tramp-methods
106 '("scp"
107 (tramp-login-program "ssh")
108 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
109 ("-e" "none") ("%h")))
110 (tramp-async-args (("-q")))
111 (tramp-remote-shell "/bin/sh")
112 (tramp-remote-shell-args ("-c"))
113 (tramp-copy-program "scp")
114 (tramp-copy-args (("-P" "%p") ("-p" "%k") ("-q") ("-r") ("%c")))
115 (tramp-copy-keep-date t)
116 (tramp-copy-recursive t)
117 (tramp-gw-args (("-o" "GlobalKnownHostsFile=/dev/null")
118 ("-o" "UserKnownHostsFile=/dev/null")
119 ("-o" "StrictHostKeyChecking=no")))
120 (tramp-default-port 22)))
121 ;;;###tramp-autoload
122 (add-to-list 'tramp-methods
123 '("scpx"
124 (tramp-login-program "ssh")
125 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
126 ("-e" "none") ("-t" "-t") ("%h") ("/bin/sh")))
127 (tramp-async-args (("-q")))
128 (tramp-remote-shell "/bin/sh")
129 (tramp-remote-shell-args ("-c"))
130 (tramp-copy-program "scp")
131 (tramp-copy-args (("-P" "%p") ("-p" "%k")
132 ("-q") ("-r") ("%c")))
133 (tramp-copy-keep-date t)
134 (tramp-copy-recursive t)
135 (tramp-gw-args (("-o" "GlobalKnownHostsFile=/dev/null")
136 ("-o" "UserKnownHostsFile=/dev/null")
137 ("-o" "StrictHostKeyChecking=no")))
138 (tramp-default-port 22)))
139 ;;;###tramp-autoload
140 (add-to-list 'tramp-methods
141 '("sftp"
142 (tramp-login-program "ssh")
143 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
144 ("-e" "none") ("%h")))
145 (tramp-async-args (("-q")))
146 (tramp-remote-shell "/bin/sh")
147 (tramp-remote-shell-args ("-c"))
148 (tramp-copy-program "sftp")
149 (tramp-copy-args ("%c"))))
150 ;;;###tramp-autoload
151 (add-to-list 'tramp-methods
152 '("rsync"
153 (tramp-login-program "ssh")
154 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
155 ("-e" "none") ("%h")))
156 (tramp-async-args (("-q")))
157 (tramp-remote-shell "/bin/sh")
158 (tramp-remote-shell-args ("-c"))
159 (tramp-copy-program "rsync")
160 (tramp-copy-args (("-t" "%k") ("-r")))
161 (tramp-copy-env (("RSYNC_RSH") ("ssh" "%c")))
162 (tramp-copy-keep-date t)
163 (tramp-copy-keep-tmpfile t)
164 (tramp-copy-recursive t)))
165 ;;;###tramp-autoload
166 (add-to-list 'tramp-methods
167 '("rsh"
168 (tramp-login-program "rsh")
169 (tramp-login-args (("%h") ("-l" "%u")))
170 (tramp-remote-shell "/bin/sh")
171 (tramp-remote-shell-args ("-c"))))
172 ;;;###tramp-autoload
173 (add-to-list 'tramp-methods
174 '("remsh"
175 (tramp-login-program "remsh")
176 (tramp-login-args (("%h") ("-l" "%u")))
177 (tramp-remote-shell "/bin/sh")
178 (tramp-remote-shell-args ("-c"))))
179 ;;;###tramp-autoload
180 (add-to-list 'tramp-methods
181 '("ssh"
182 (tramp-login-program "ssh")
183 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
184 ("-e" "none") ("%h")))
185 (tramp-async-args (("-q")))
186 (tramp-remote-shell "/bin/sh")
187 (tramp-remote-shell-args ("-c"))
188 (tramp-gw-args (("-o" "GlobalKnownHostsFile=/dev/null")
189 ("-o" "UserKnownHostsFile=/dev/null")
190 ("-o" "StrictHostKeyChecking=no")))
191 (tramp-default-port 22)))
192 ;;;###tramp-autoload
193 (add-to-list 'tramp-methods
194 '("sshx"
195 (tramp-login-program "ssh")
196 (tramp-login-args (("-l" "%u") ("-p" "%p") ("%c")
197 ("-e" "none") ("-t" "-t") ("%h") ("/bin/sh")))
198 (tramp-async-args (("-q")))
199 (tramp-remote-shell "/bin/sh")
200 (tramp-remote-shell-args ("-c"))
201 (tramp-gw-args (("-o" "GlobalKnownHostsFile=/dev/null")
202 ("-o" "UserKnownHostsFile=/dev/null")
203 ("-o" "StrictHostKeyChecking=no")))
204 (tramp-default-port 22)))
205 ;;;###tramp-autoload
206 (add-to-list 'tramp-methods
207 '("telnet"
208 (tramp-login-program "telnet")
209 (tramp-login-args (("%h") ("%p")))
210 (tramp-remote-shell "/bin/sh")
211 (tramp-remote-shell-args ("-c"))
212 (tramp-default-port 23)))
213 ;;;###tramp-autoload
214 (add-to-list 'tramp-methods
215 '("su"
216 (tramp-login-program "su")
217 (tramp-login-args (("-") ("%u")))
218 (tramp-remote-shell "/bin/sh")
219 (tramp-remote-shell-args ("-c"))
220 (tramp-connection-timeout 10)))
221 ;;;###tramp-autoload
222 (add-to-list 'tramp-methods
223 '("sudo"
224 (tramp-login-program "sudo")
225 (tramp-login-args (("-u" "%u") ("-s") ("-H") ("-p" "Password:")))
226 (tramp-remote-shell "/bin/sh")
227 (tramp-remote-shell-args ("-c"))
228 (tramp-connection-timeout 10)))
229 ;;;###tramp-autoload
230 (add-to-list 'tramp-methods
231 '("ksu"
232 (tramp-login-program "ksu")
233 (tramp-login-args (("%u") ("-q")))
234 (tramp-remote-shell "/bin/sh")
235 (tramp-remote-shell-args ("-c"))
236 (tramp-connection-timeout 10)))
237 ;;;###tramp-autoload
238 (add-to-list 'tramp-methods
239 '("krlogin"
240 (tramp-login-program "krlogin")
241 (tramp-login-args (("%h") ("-l" "%u") ("-x")))
242 (tramp-remote-shell "/bin/sh")
243 (tramp-remote-shell-args ("-c"))))
244 ;;;###tramp-autoload
245 (add-to-list 'tramp-methods
246 '("plink"
247 (tramp-login-program "plink")
248 (tramp-login-args (("-l" "%u") ("-P" "%p") ("-ssh") ("%h")))
249 (tramp-remote-shell "/bin/sh")
250 (tramp-remote-shell-args ("-c"))
251 (tramp-default-port 22)))
252 ;;;###tramp-autoload
253 (add-to-list 'tramp-methods
254 `("plinkx"
255 (tramp-login-program "plink")
256 ;; ("%h") must be a single element, see
257 ;; `tramp-compute-multi-hops'.
258 (tramp-login-args (("-load") ("%h") ("-t")
259 (,(format
260 "env 'TERM=%s' 'PROMPT_COMMAND=' 'PS1=%s'"
261 tramp-terminal-type
262 tramp-initial-end-of-output))
263 ("/bin/sh")))
264 (tramp-remote-shell "/bin/sh")
265 (tramp-remote-shell-args ("-c"))))
266 ;;;###tramp-autoload
267 (add-to-list 'tramp-methods
268 '("pscp"
269 (tramp-login-program "plink")
270 (tramp-login-args (("-l" "%u") ("-P" "%p") ("-ssh") ("%h")))
271 (tramp-remote-shell "/bin/sh")
272 (tramp-remote-shell-args ("-c"))
273 (tramp-copy-program "pscp")
274 (tramp-copy-args (("-l" "%u") ("-P" "%p") ("-scp") ("-p" "%k")
275 ("-q") ("-r")))
276 (tramp-copy-keep-date t)
277 (tramp-copy-recursive t)
278 (tramp-default-port 22)))
279 ;;;###tramp-autoload
280 (add-to-list 'tramp-methods
281 '("psftp"
282 (tramp-login-program "plink")
283 (tramp-login-args (("-l" "%u") ("-P" "%p") ("-ssh") ("%h")))
284 (tramp-remote-shell "/bin/sh")
285 (tramp-remote-shell-args ("-c"))
286 (tramp-copy-program "pscp")
287 (tramp-copy-args (("-l" "%u") ("-P" "%p") ("-sftp") ("-p" "%k")
288 ("-q") ("-r")))
289 (tramp-copy-keep-date t)
290 (tramp-copy-recursive t)))
291 ;;;###tramp-autoload
292 (add-to-list 'tramp-methods
293 '("fcp"
294 (tramp-login-program "fsh")
295 (tramp-login-args (("%h") ("-l" "%u") ("sh" "-i")))
296 (tramp-remote-shell "/bin/sh")
297 (tramp-remote-shell-args ("-i") ("-c"))
298 (tramp-copy-program "fcp")
299 (tramp-copy-args (("-p" "%k")))
300 (tramp-copy-keep-date t)))
302 ;;;###tramp-autoload
303 (add-to-list 'tramp-default-method-alist
304 `(,tramp-local-host-regexp "\\`root\\'" "su"))
306 ;;;###tramp-autoload
307 (add-to-list 'tramp-default-user-alist
308 `(,(concat "\\`" (regexp-opt '("su" "sudo" "ksu")) "\\'")
309 nil "root"))
310 ;; Do not add "ssh" based methods, otherwise ~/.ssh/config would be ignored.
311 ;; Do not add "plink" based methods, they ask interactively for the user.
312 ;;;###tramp-autoload
313 (add-to-list 'tramp-default-user-alist
314 `(,(concat
315 "\\`"
316 (regexp-opt '("rcp" "remcp" "rsh" "telnet" "krlogin" "fcp"))
317 "\\'")
318 nil ,(user-login-name)))
320 ;;;###tramp-autoload
321 (defconst tramp-completion-function-alist-rsh
322 '((tramp-parse-rhosts "/etc/hosts.equiv")
323 (tramp-parse-rhosts "~/.rhosts"))
324 "Default list of (FUNCTION FILE) pairs to be examined for rsh methods.")
326 ;;;###tramp-autoload
327 (defconst tramp-completion-function-alist-ssh
328 '((tramp-parse-rhosts "/etc/hosts.equiv")
329 (tramp-parse-rhosts "/etc/shosts.equiv")
330 (tramp-parse-shosts "/etc/ssh_known_hosts")
331 (tramp-parse-sconfig "/etc/ssh_config")
332 (tramp-parse-shostkeys "/etc/ssh2/hostkeys")
333 (tramp-parse-sknownhosts "/etc/ssh2/knownhosts")
334 (tramp-parse-rhosts "~/.rhosts")
335 (tramp-parse-rhosts "~/.shosts")
336 (tramp-parse-shosts "~/.ssh/known_hosts")
337 (tramp-parse-sconfig "~/.ssh/config")
338 (tramp-parse-shostkeys "~/.ssh2/hostkeys")
339 (tramp-parse-sknownhosts "~/.ssh2/knownhosts"))
340 "Default list of (FUNCTION FILE) pairs to be examined for ssh methods.")
342 ;;;###tramp-autoload
343 (defconst tramp-completion-function-alist-telnet
344 '((tramp-parse-hosts "/etc/hosts"))
345 "Default list of (FUNCTION FILE) pairs to be examined for telnet methods.")
347 ;;;###tramp-autoload
348 (defconst tramp-completion-function-alist-su
349 '((tramp-parse-passwd "/etc/passwd"))
350 "Default list of (FUNCTION FILE) pairs to be examined for su methods.")
352 ;;;###tramp-autoload
353 (defconst tramp-completion-function-alist-putty
354 `((tramp-parse-putty
355 ,(if (memq system-type '(windows-nt))
356 "HKEY_CURRENT_USER\\Software\\SimonTatham\\PuTTY\\Sessions"
357 "~/.putty/sessions")))
358 "Default list of (FUNCTION REGISTRY) pairs to be examined for putty sessions.")
360 ;;;###tramp-autoload
361 (eval-after-load 'tramp
362 '(progn
363 (tramp-set-completion-function "rcp" tramp-completion-function-alist-rsh)
364 (tramp-set-completion-function "remcp" tramp-completion-function-alist-rsh)
365 (tramp-set-completion-function "scp" tramp-completion-function-alist-ssh)
366 (tramp-set-completion-function "scpx" tramp-completion-function-alist-ssh)
367 (tramp-set-completion-function "sftp" tramp-completion-function-alist-ssh)
368 (tramp-set-completion-function "rsync" tramp-completion-function-alist-ssh)
369 (tramp-set-completion-function "rsh" tramp-completion-function-alist-rsh)
370 (tramp-set-completion-function "remsh" tramp-completion-function-alist-rsh)
371 (tramp-set-completion-function "ssh" tramp-completion-function-alist-ssh)
372 (tramp-set-completion-function "sshx" tramp-completion-function-alist-ssh)
373 (tramp-set-completion-function
374 "telnet" tramp-completion-function-alist-telnet)
375 (tramp-set-completion-function "su" tramp-completion-function-alist-su)
376 (tramp-set-completion-function "sudo" tramp-completion-function-alist-su)
377 (tramp-set-completion-function "ksu" tramp-completion-function-alist-su)
378 (tramp-set-completion-function
379 "krlogin" tramp-completion-function-alist-rsh)
380 (tramp-set-completion-function "plink" tramp-completion-function-alist-ssh)
381 (tramp-set-completion-function
382 "plinkx" tramp-completion-function-alist-putty)
383 (tramp-set-completion-function "pscp" tramp-completion-function-alist-ssh)
384 (tramp-set-completion-function "fcp" tramp-completion-function-alist-ssh)))
386 ;; "getconf PATH" yields:
387 ;; HP-UX: /usr/bin:/usr/ccs/bin:/opt/ansic/bin:/opt/langtools/bin:/opt/fortran/bin
388 ;; Solaris: /usr/xpg4/bin:/usr/ccs/bin:/usr/bin:/opt/SUNWspro/bin
389 ;; GNU/Linux (Debian, Suse): /bin:/usr/bin
390 ;; FreeBSD: /usr/bin:/bin:/usr/sbin:/sbin: - beware trailing ":"!
391 ;; IRIX64: /usr/bin
392 ;;;###tramp-autoload
393 (defcustom tramp-remote-path
394 '(tramp-default-remote-path "/bin" "/usr/bin" "/sbin" "/usr/sbin"
395 "/usr/local/bin" "/usr/local/sbin" "/local/bin" "/local/freeware/bin"
396 "/local/gnu/bin" "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin"
397 "/opt/bin" "/opt/sbin" "/opt/local/bin")
398 "List of directories to search for executables on remote host.
399 For every remote host, this variable will be set buffer local,
400 keeping the list of existing directories on that host.
402 You can use `~' in this list, but when searching for a shell which groks
403 tilde expansion, all directory names starting with `~' will be ignored.
405 `Default Directories' represent the list of directories given by
406 the command \"getconf PATH\". It is recommended to use this
407 entry on top of this list, because these are the default
408 directories for POSIX compatible commands. On remote hosts which
409 do not offer the getconf command (like cygwin), the value
410 \"/bin:/usr/bin\" is used instead of.
412 `Private Directories' are the settings of the $PATH environment,
413 as given in your `~/.profile'."
414 :group 'tramp
415 :type '(repeat (choice
416 (const :tag "Default Directories" tramp-default-remote-path)
417 (const :tag "Private Directories" tramp-own-remote-path)
418 (string :tag "Directory"))))
420 ;;;###tramp-autoload
421 (defcustom tramp-remote-process-environment
422 `("HISTFILE=$HOME/.tramp_history" "HISTSIZE=1" "TMOUT=0" "LC_ALL=C"
423 ,(format "TERM=%s" tramp-terminal-type)
424 "EMACS=t" ;; Deprecated.
425 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version)
426 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=\"\""
427 "autocorrect=" "correct=")
428 "List of environment variables to be set on the remote host.
430 Each element should be a string of the form ENVVARNAME=VALUE. An
431 entry ENVVARNAME= disables the corresponding environment variable,
432 which might have been set in the init files like ~/.profile.
434 Special handling is applied to the PATH environment, which should
435 not be set here. Instead, it should be set via `tramp-remote-path'."
436 :group 'tramp
437 :type '(repeat string))
439 (defcustom tramp-sh-extra-args '(("/bash\\'" . "-norc -noprofile"))
440 "Alist specifying extra arguments to pass to the remote shell.
441 Entries are (REGEXP . ARGS) where REGEXP is a regular expression
442 matching the shell file name and ARGS is a string specifying the
443 arguments.
445 This variable is only used when Tramp needs to start up another shell
446 for tilde expansion. The extra arguments should typically prevent the
447 shell from reading its init file."
448 :group 'tramp
449 ;; This might be the wrong way to test whether the widget type
450 ;; `alist' is available. Who knows the right way to test it?
451 :type (if (get 'alist 'widget-type)
452 '(alist :key-type string :value-type string)
453 '(repeat (cons string string))))
455 (defconst tramp-actions-before-shell
456 '((tramp-login-prompt-regexp tramp-action-login)
457 (tramp-password-prompt-regexp tramp-action-password)
458 (tramp-wrong-passwd-regexp tramp-action-permission-denied)
459 (shell-prompt-pattern tramp-action-succeed)
460 (tramp-shell-prompt-pattern tramp-action-succeed)
461 (tramp-yesno-prompt-regexp tramp-action-yesno)
462 (tramp-yn-prompt-regexp tramp-action-yn)
463 (tramp-terminal-prompt-regexp tramp-action-terminal)
464 (tramp-process-alive-regexp tramp-action-process-alive))
465 "List of pattern/action pairs.
466 Whenever a pattern matches, the corresponding action is performed.
467 Each item looks like (PATTERN ACTION).
469 The PATTERN should be a symbol, a variable. The value of this
470 variable gives the regular expression to search for. Note that the
471 regexp must match at the end of the buffer, \"\\'\" is implicitly
472 appended to it.
474 The ACTION should also be a symbol, but a function. When the
475 corresponding PATTERN matches, the ACTION function is called.")
477 (defconst tramp-actions-copy-out-of-band
478 '((tramp-password-prompt-regexp tramp-action-password)
479 (tramp-wrong-passwd-regexp tramp-action-permission-denied)
480 (tramp-copy-failed-regexp tramp-action-permission-denied)
481 (tramp-process-alive-regexp tramp-action-out-of-band))
482 "List of pattern/action pairs.
483 This list is used for copying/renaming with out-of-band methods.
485 See `tramp-actions-before-shell' for more info.")
487 (defconst tramp-uudecode
488 "(echo begin 600 /tmp/tramp.$$; tail +2) | uudecode
489 cat /tmp/tramp.$$
490 rm -f /tmp/tramp.$$"
491 "Shell function to implement `uudecode' to standard output.
492 Many systems support `uudecode -o /dev/stdout' or `uudecode -o -'
493 for this or `uudecode -p', but some systems don't, and for them
494 we have this shell function.")
496 (defconst tramp-perl-file-truename
497 "%s -e '
498 use File::Spec;
499 use Cwd \"realpath\";
501 sub recursive {
502 my ($volume, @dirs) = @_;
503 my $real = realpath(File::Spec->catpath(
504 $volume, File::Spec->catdir(@dirs), \"\"));
505 if ($real) {
506 my ($vol, $dir) = File::Spec->splitpath($real, 1);
507 return ($vol, File::Spec->splitdir($dir));
509 else {
510 my $last = pop(@dirs);
511 ($volume, @dirs) = recursive($volume, @dirs);
512 push(@dirs, $last);
513 return ($volume, @dirs);
517 $result = realpath($ARGV[0]);
518 if (!$result) {
519 my ($vol, $dir) = File::Spec->splitpath($ARGV[0], 1);
520 ($vol, @dirs) = recursive($vol, File::Spec->splitdir($dir));
522 $result = File::Spec->catpath($vol, File::Spec->catdir(@dirs), \"\");
525 if ($ARGV[0] =~ /\\/$/) {
526 $result = $result . \"/\";
529 print \"\\\"$result\\\"\\n\";
530 ' \"$1\" 2>/dev/null"
531 "Perl script to produce output suitable for use with `file-truename'
532 on the remote file system.
533 Escape sequence %s is replaced with name of Perl binary.
534 This string is passed to `format', so percent characters need to be doubled.")
536 (defconst tramp-perl-file-name-all-completions
537 "%s -e 'sub case {
538 my $str = shift;
539 if ($ARGV[2]) {
540 return lc($str);
542 else {
543 return $str;
546 opendir(d, $ARGV[0]) || die(\"$ARGV[0]: $!\\nfail\\n\");
547 @files = readdir(d); closedir(d);
548 foreach $f (@files) {
549 if (case(substr($f, 0, length($ARGV[1]))) eq case($ARGV[1])) {
550 if (-d \"$ARGV[0]/$f\") {
551 print \"$f/\\n\";
553 else {
554 print \"$f\\n\";
558 print \"ok\\n\"
559 ' \"$1\" \"$2\" \"$3\" 2>/dev/null"
560 "Perl script to produce output suitable for use with
561 `file-name-all-completions' on the remote file system. Escape
562 sequence %s is replaced with name of Perl binary. This string is
563 passed to `format', so percent characters need to be doubled.")
565 ;; Perl script to implement `file-attributes' in a Lisp `read'able
566 ;; output. If you are hacking on this, note that you get *no* output
567 ;; unless this spits out a complete line, including the '\n' at the
568 ;; end.
569 ;; The device number is returned as "-1", because there will be a virtual
570 ;; device number set in `tramp-sh-handle-file-attributes'.
571 (defconst tramp-perl-file-attributes
572 "%s -e '
573 @stat = lstat($ARGV[0]);
574 if (!@stat) {
575 print \"nil\\n\";
576 exit 0;
578 if (($stat[2] & 0170000) == 0120000)
580 $type = readlink($ARGV[0]);
581 $type = \"\\\"$type\\\"\";
583 elsif (($stat[2] & 0170000) == 040000)
585 $type = \"t\";
587 else
589 $type = \"nil\"
591 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
592 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
593 printf(
594 \"(%%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) -1)\\n\",
595 $type,
596 $stat[3],
597 $uid,
598 $gid,
599 $stat[8] >> 16 & 0xffff,
600 $stat[8] & 0xffff,
601 $stat[9] >> 16 & 0xffff,
602 $stat[9] & 0xffff,
603 $stat[10] >> 16 & 0xffff,
604 $stat[10] & 0xffff,
605 $stat[7],
606 $stat[2],
607 $stat[1] >> 16 & 0xffff,
608 $stat[1] & 0xffff
609 );' \"$1\" \"$2\" 2>/dev/null"
610 "Perl script to produce output suitable for use with `file-attributes'
611 on the remote file system.
612 Escape sequence %s is replaced with name of Perl binary.
613 This string is passed to `format', so percent characters need to be doubled.")
615 (defconst tramp-perl-directory-files-and-attributes
616 "%s -e '
617 chdir($ARGV[0]) or printf(\"\\\"Cannot change to $ARGV[0]: $''!''\\\"\\n\"), exit();
618 opendir(DIR,\".\") or printf(\"\\\"Cannot open directory $ARGV[0]: $''!''\\\"\\n\"), exit();
619 @list = readdir(DIR);
620 closedir(DIR);
621 $n = scalar(@list);
622 printf(\"(\\n\");
623 for($i = 0; $i < $n; $i++)
625 $filename = $list[$i];
626 @stat = lstat($filename);
627 if (($stat[2] & 0170000) == 0120000)
629 $type = readlink($filename);
630 $type = \"\\\"$type\\\"\";
632 elsif (($stat[2] & 0170000) == 040000)
634 $type = \"t\";
636 else
638 $type = \"nil\"
640 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
641 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
642 printf(
643 \"(\\\"%%s\\\" %%s %%u %%s %%s (%%u %%u) (%%u %%u) (%%u %%u) %%u.0 %%u t (%%u . %%u) (%%u . %%u))\\n\",
644 $filename,
645 $type,
646 $stat[3],
647 $uid,
648 $gid,
649 $stat[8] >> 16 & 0xffff,
650 $stat[8] & 0xffff,
651 $stat[9] >> 16 & 0xffff,
652 $stat[9] & 0xffff,
653 $stat[10] >> 16 & 0xffff,
654 $stat[10] & 0xffff,
655 $stat[7],
656 $stat[2],
657 $stat[1] >> 16 & 0xffff,
658 $stat[1] & 0xffff,
659 $stat[0] >> 16 & 0xffff,
660 $stat[0] & 0xffff);
662 printf(\")\\n\");' \"$1\" \"$2\" 2>/dev/null"
663 "Perl script implementing `directory-files-attributes' as Lisp `read'able
664 output.
665 Escape sequence %s is replaced with name of Perl binary.
666 This string is passed to `format', so percent characters need to be doubled.")
668 ;; These two use base64 encoding.
669 (defconst tramp-perl-encode-with-module
670 "%s -MMIME::Base64 -0777 -ne 'print encode_base64($_)' 2>/dev/null"
671 "Perl program to use for encoding a file.
672 Escape sequence %s is replaced with name of Perl binary.
673 This string is passed to `format', so percent characters need to be doubled.
674 This implementation requires the MIME::Base64 Perl module to be installed
675 on the remote host.")
677 (defconst tramp-perl-decode-with-module
678 "%s -MMIME::Base64 -0777 -ne 'print decode_base64($_)' 2>/dev/null"
679 "Perl program to use for decoding a file.
680 Escape sequence %s is replaced with name of Perl binary.
681 This string is passed to `format', so percent characters need to be doubled.
682 This implementation requires the MIME::Base64 Perl module to be installed
683 on the remote host.")
685 (defconst tramp-perl-encode
686 "%s -e '
687 # This script contributed by Juanma Barranquero <lektu@terra.es>.
688 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
689 use strict;
691 my %%trans = do {
692 my $i = 0;
693 map {(substr(unpack(q(B8), chr $i++), 2, 6), $_)}
694 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/);
696 my $data;
698 # We read in chunks of 54 bytes, to generate output lines
699 # of 72 chars (plus end of line)
700 while (read STDIN, $data, 54) {
701 my $pad = q();
703 # Only for the last chunk, and only if did not fill the last three-byte packet
704 if (eof) {
705 my $mod = length($data) %% 3;
706 $pad = q(=) x (3 - $mod) if $mod;
709 # Not the fastest method, but it is simple: unpack to binary string, split
710 # by groups of 6 bits and convert back from binary to byte; then map into
711 # the translation table
712 print
713 join q(),
714 map($trans{$_},
715 (substr(unpack(q(B*), $data) . q(00000), 0, 432) =~ /....../g)),
716 $pad,
717 qq(\\n);
718 }' 2>/dev/null"
719 "Perl program to use for encoding a file.
720 Escape sequence %s is replaced with name of Perl binary.
721 This string is passed to `format', so percent characters need to be doubled.")
723 (defconst tramp-perl-decode
724 "%s -e '
725 # This script contributed by Juanma Barranquero <lektu@terra.es>.
726 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
727 use strict;
729 my %%trans = do {
730 my $i = 0;
731 map {($_, substr(unpack(q(B8), chr $i++), 2, 6))}
732 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/)
735 my %%bytes = map {(unpack(q(B8), chr $_), chr $_)} 0 .. 255;
737 binmode(\\*STDOUT);
739 # We are going to accumulate into $pending to accept any line length
740 # (we do not check they are <= 76 chars as the RFC says)
741 my $pending = q();
743 while (my $data = <STDIN>) {
744 chomp $data;
746 # If we find one or two =, we have reached the end and
747 # any following data is to be discarded
748 my $finished = $data =~ s/(==?).*/$1/;
749 $pending .= $data;
751 my $len = length($pending);
752 my $chunk = substr($pending, 0, $len & ~3);
753 $pending = substr($pending, $len & ~3 + 1);
755 # Easy method: translate from chars to (pregenerated) six-bit packets, join,
756 # split in 8-bit chunks and convert back to char.
757 print join q(),
758 map $bytes{$_},
759 ((join q(), map {$trans{$_} || q()} split //, $chunk) =~ /......../g);
761 last if $finished;
762 }' 2>/dev/null"
763 "Perl program to use for decoding a file.
764 Escape sequence %s is replaced with name of Perl binary.
765 This string is passed to `format', so percent characters need to be doubled.")
767 (defconst tramp-perl-pack
768 "%s -e 'binmode STDIN; binmode STDOUT; print pack(q{u*}, join q{}, <>)'"
769 "Perl program to use for encoding a file.
770 Escape sequence %s is replaced with name of Perl binary.")
772 (defconst tramp-perl-unpack
773 "%s -e 'binmode STDIN; binmode STDOUT; print unpack(q{u*}, join q{}, <>)'"
774 "Perl program to use for decoding a file.
775 Escape sequence %s is replaced with name of Perl binary.")
777 (defconst tramp-vc-registered-read-file-names
778 "echo \"(\"
779 while read file; do
780 if %s \"$file\"; then
781 echo \"(\\\"$file\\\" \\\"file-exists-p\\\" t)\"
782 else
783 echo \"(\\\"$file\\\" \\\"file-exists-p\\\" nil)\"
785 if %s \"$file\"; then
786 echo \"(\\\"$file\\\" \\\"file-readable-p\\\" t)\"
787 else
788 echo \"(\\\"$file\\\" \\\"file-readable-p\\\" nil)\"
790 done
791 echo \")\""
792 "Script to check existence of VC related files.
793 It must be send formatted with two strings; the tests for file
794 existence, and file readability. Input shall be read via
795 here-document, otherwise the command could exceed maximum length
796 of command line.")
798 ;; New handlers should be added here.
799 (defconst tramp-sh-file-name-handler-alist
800 '(;; `access-file' performed by default handler.
801 (add-name-to-file . tramp-sh-handle-add-name-to-file)
802 ;; `byte-compiler-base-file-name' performed by default handler.
803 (copy-directory . tramp-sh-handle-copy-directory)
804 (copy-file . tramp-sh-handle-copy-file)
805 (delete-directory . tramp-sh-handle-delete-directory)
806 (delete-file . tramp-sh-handle-delete-file)
807 ;; `diff-latest-backup-file' performed by default handler.
808 (directory-file-name . tramp-handle-directory-file-name)
809 (directory-files . tramp-handle-directory-files)
810 (directory-files-and-attributes
811 . tramp-sh-handle-directory-files-and-attributes)
812 ;; `dired-call-process' performed by default handler.
813 (dired-compress-file . tramp-sh-handle-dired-compress-file)
814 (dired-recursive-delete-directory
815 . tramp-sh-handle-dired-recursive-delete-directory)
816 (dired-uncache . tramp-handle-dired-uncache)
817 (expand-file-name . tramp-sh-handle-expand-file-name)
818 (file-accessible-directory-p . tramp-handle-file-accessible-directory-p)
819 (file-acl . tramp-sh-handle-file-acl)
820 (file-attributes . tramp-sh-handle-file-attributes)
821 (file-directory-p . tramp-sh-handle-file-directory-p)
822 ;; `file-equal-p' performed by default handler.
823 (file-executable-p . tramp-sh-handle-file-executable-p)
824 (file-exists-p . tramp-sh-handle-file-exists-p)
825 ;; `file-in-directory-p' performed by default handler.
826 (file-local-copy . tramp-sh-handle-file-local-copy)
827 (file-modes . tramp-handle-file-modes)
828 (file-name-all-completions . tramp-sh-handle-file-name-all-completions)
829 (file-name-as-directory . tramp-handle-file-name-as-directory)
830 (file-name-completion . tramp-handle-file-name-completion)
831 (file-name-directory . tramp-handle-file-name-directory)
832 (file-name-nondirectory . tramp-handle-file-name-nondirectory)
833 ;; `file-name-sans-versions' performed by default handler.
834 (file-newer-than-file-p . tramp-sh-handle-file-newer-than-file-p)
835 (file-notify-add-watch . tramp-sh-handle-file-notify-add-watch)
836 (file-notify-rm-watch . tramp-handle-file-notify-rm-watch)
837 (file-ownership-preserved-p . tramp-sh-handle-file-ownership-preserved-p)
838 (file-readable-p . tramp-sh-handle-file-readable-p)
839 (file-regular-p . tramp-handle-file-regular-p)
840 (file-remote-p . tramp-handle-file-remote-p)
841 (file-selinux-context . tramp-sh-handle-file-selinux-context)
842 (file-symlink-p . tramp-handle-file-symlink-p)
843 (file-truename . tramp-sh-handle-file-truename)
844 (file-writable-p . tramp-sh-handle-file-writable-p)
845 (find-backup-file-name . tramp-handle-find-backup-file-name)
846 ;; `find-file-noselect' performed by default handler.
847 ;; `get-file-buffer' performed by default handler.
848 (insert-directory . tramp-sh-handle-insert-directory)
849 (insert-file-contents . tramp-handle-insert-file-contents)
850 (insert-file-contents-literally
851 . tramp-sh-handle-insert-file-contents-literally)
852 (load . tramp-handle-load)
853 (make-auto-save-file-name . tramp-handle-make-auto-save-file-name)
854 (make-directory . tramp-sh-handle-make-directory)
855 (make-symbolic-link . tramp-sh-handle-make-symbolic-link)
856 (process-file . tramp-sh-handle-process-file)
857 (rename-file . tramp-sh-handle-rename-file)
858 (set-file-acl . tramp-sh-handle-set-file-acl)
859 (set-file-modes . tramp-sh-handle-set-file-modes)
860 (set-file-selinux-context . tramp-sh-handle-set-file-selinux-context)
861 (set-file-times . tramp-sh-handle-set-file-times)
862 (set-visited-file-modtime . tramp-sh-handle-set-visited-file-modtime)
863 (shell-command . tramp-handle-shell-command)
864 (start-file-process . tramp-sh-handle-start-file-process)
865 (substitute-in-file-name . tramp-handle-substitute-in-file-name)
866 (unhandled-file-name-directory . tramp-handle-unhandled-file-name-directory)
867 (vc-registered . tramp-sh-handle-vc-registered)
868 (verify-visited-file-modtime . tramp-sh-handle-verify-visited-file-modtime)
869 (write-region . tramp-sh-handle-write-region))
870 "Alist of handler functions.
871 Operations not mentioned here will be handled by the normal Emacs functions.")
873 ;; This must be the last entry, because `identity' always matches.
874 ;;;###tramp-autoload
875 (add-to-list 'tramp-foreign-file-name-handler-alist
876 '(identity . tramp-sh-file-name-handler) 'append)
878 ;;; File Name Handler Functions:
880 (defun tramp-sh-handle-make-symbolic-link
881 (filename linkname &optional ok-if-already-exists)
882 "Like `make-symbolic-link' for Tramp files.
883 If LINKNAME is a non-Tramp file, it is used verbatim as the target of
884 the symlink. If LINKNAME is a Tramp file, only the localname component is
885 used as the target of the symlink.
887 If LINKNAME is a Tramp file and the localname component is relative, then
888 it is expanded first, before the localname component is taken. Note that
889 this can give surprising results if the user/host for the source and
890 target of the symlink differ."
891 (with-parsed-tramp-file-name linkname l
892 (let ((ln (tramp-get-remote-ln l))
893 (cwd (tramp-run-real-handler
894 'file-name-directory (list l-localname))))
895 (unless ln
896 (tramp-error
897 l 'file-error
898 "Making a symbolic link. ln(1) does not exist on the remote host."))
900 ;; Do the 'confirm if exists' thing.
901 (when (file-exists-p linkname)
902 ;; What to do?
903 (if (or (null ok-if-already-exists) ; not allowed to exist
904 (and (numberp ok-if-already-exists)
905 (not (yes-or-no-p
906 (format
907 "File %s already exists; make it a link anyway? "
908 l-localname)))))
909 (tramp-error
910 l 'file-already-exists "File %s already exists" l-localname)
911 (delete-file linkname)))
913 ;; If FILENAME is a Tramp name, use just the localname component.
914 (when (tramp-tramp-file-p filename)
915 (setq filename
916 (tramp-file-name-localname
917 (tramp-dissect-file-name (expand-file-name filename)))))
919 (tramp-flush-file-property l (file-name-directory l-localname))
920 (tramp-flush-file-property l l-localname)
922 ;; Right, they are on the same host, regardless of user, method,
923 ;; etc. We now make the link on the remote machine. This will
924 ;; occur as the user that FILENAME belongs to.
925 (tramp-send-command-and-check
927 (format
928 "cd %s && %s -sf %s %s"
929 (tramp-shell-quote-argument cwd)
931 (tramp-shell-quote-argument filename)
932 (tramp-shell-quote-argument l-localname))
933 t))))
935 (defun tramp-sh-handle-file-truename (filename)
936 "Like `file-truename' for Tramp files."
937 (with-parsed-tramp-file-name (expand-file-name filename) nil
938 (tramp-make-tramp-file-name method user host
939 (with-tramp-file-property v localname "file-truename"
940 (let ((result nil)) ; result steps in reverse order
941 (tramp-message v 4 "Finding true name for `%s'" filename)
942 (cond
943 ;; Use GNU readlink --canonicalize-missing where available.
944 ((tramp-get-remote-readlink v)
945 (setq result
946 (tramp-send-command-and-read
948 (format "echo \"\\\"`%s --canonicalize-missing %s`\\\"\""
949 (tramp-get-remote-readlink v)
950 (tramp-shell-quote-argument localname)))))
952 ;; Use Perl implementation.
953 ((and (tramp-get-remote-perl v)
954 (tramp-get-connection-property v "perl-file-spec" nil)
955 (tramp-get-connection-property v "perl-cwd-realpath" nil))
956 (tramp-maybe-send-script
957 v tramp-perl-file-truename "tramp_perl_file_truename")
958 (setq result
959 (tramp-send-command-and-read
961 (format "tramp_perl_file_truename %s"
962 (tramp-shell-quote-argument localname)))))
964 ;; Do it yourself. We bind `directory-sep-char' here for
965 ;; XEmacs on Windows, which would otherwise use backslash.
966 (t (let* ((directory-sep-char ?/)
967 (steps (tramp-compat-split-string localname "/"))
968 (localnamedir (tramp-run-real-handler
969 'file-name-as-directory (list localname)))
970 (is-dir (string= localname localnamedir))
971 (thisstep nil)
972 (numchase 0)
973 ;; Don't make the following value larger than
974 ;; necessary. People expect an error message in
975 ;; a timely fashion when something is wrong;
976 ;; otherwise they might think that Emacs is hung.
977 ;; Of course, correctness has to come first.
978 (numchase-limit 20)
979 symlink-target)
980 (while (and steps (< numchase numchase-limit))
981 (setq thisstep (pop steps))
982 (tramp-message
983 v 5 "Check %s"
984 (mapconcat 'identity
985 (append '("") (reverse result) (list thisstep))
986 "/"))
987 (setq symlink-target
988 (nth 0 (file-attributes
989 (tramp-make-tramp-file-name
990 method user host
991 (mapconcat 'identity
992 (append '("")
993 (reverse result)
994 (list thisstep))
995 "/")))))
996 (cond ((string= "." thisstep)
997 (tramp-message v 5 "Ignoring step `.'"))
998 ((string= ".." thisstep)
999 (tramp-message v 5 "Processing step `..'")
1000 (pop result))
1001 ((stringp symlink-target)
1002 ;; It's a symlink, follow it.
1003 (tramp-message
1004 v 5 "Follow symlink to %s" symlink-target)
1005 (setq numchase (1+ numchase))
1006 (when (file-name-absolute-p symlink-target)
1007 (setq result nil))
1008 ;; If the symlink was absolute, we'll get a
1009 ;; string like "/user@host:/some/target";
1010 ;; extract the "/some/target" part from it.
1011 (when (tramp-tramp-file-p symlink-target)
1012 (unless (tramp-equal-remote filename symlink-target)
1013 (tramp-error
1014 v 'file-error
1015 "Symlink target `%s' on wrong host"
1016 symlink-target))
1017 (setq symlink-target localname))
1018 (setq steps
1019 (append (tramp-compat-split-string
1020 symlink-target "/")
1021 steps)))
1023 ;; It's a file.
1024 (setq result (cons thisstep result)))))
1025 (when (>= numchase numchase-limit)
1026 (tramp-error
1027 v 'file-error
1028 "Maximum number (%d) of symlinks exceeded" numchase-limit))
1029 (setq result (reverse result))
1030 ;; Combine list to form string.
1031 (setq result
1032 (if result
1033 (mapconcat 'identity (cons "" result) "/")
1034 "/"))
1035 (when (and is-dir
1036 (or (string= "" result)
1037 (not (string= (substring result -1) "/"))))
1038 (setq result (concat result "/"))))))
1040 (tramp-message v 4 "True name of `%s' is `%s'" localname result)
1041 result)))))
1043 ;; Basic functions.
1045 (defun tramp-sh-handle-file-exists-p (filename)
1046 "Like `file-exists-p' for Tramp files."
1047 (with-parsed-tramp-file-name filename nil
1048 (with-tramp-file-property v localname "file-exists-p"
1049 (or (not (null (tramp-get-file-property
1050 v localname "file-attributes-integer" nil)))
1051 (not (null (tramp-get-file-property
1052 v localname "file-attributes-string" nil)))
1053 (tramp-send-command-and-check
1055 (format
1056 "%s %s"
1057 (tramp-get-file-exists-command v)
1058 (tramp-shell-quote-argument localname)))))))
1060 (defun tramp-sh-handle-file-attributes (filename &optional id-format)
1061 "Like `file-attributes' for Tramp files."
1062 (unless id-format (setq id-format 'integer))
1063 ;; Don't modify `last-coding-system-used' by accident.
1064 (let ((last-coding-system-used last-coding-system-used))
1065 (with-parsed-tramp-file-name (expand-file-name filename) nil
1066 (with-tramp-file-property
1067 v localname (format "file-attributes-%s" id-format)
1068 (save-excursion
1069 (tramp-convert-file-attributes
1072 (cond
1073 ((tramp-get-remote-stat v)
1074 (tramp-do-file-attributes-with-stat v localname id-format))
1075 ((tramp-get-remote-perl v)
1076 (tramp-do-file-attributes-with-perl v localname id-format))
1077 (t nil))
1078 ;; The scripts could fail, for example with huge file size.
1079 (tramp-do-file-attributes-with-ls v localname id-format))))))))
1081 (defun tramp-do-file-attributes-with-ls (vec localname &optional id-format)
1082 "Implement `file-attributes' for Tramp files using the ls(1) command."
1083 (let (symlinkp dirp
1084 res-inode res-filemodes res-numlinks
1085 res-uid res-gid res-size res-symlink-target)
1086 (tramp-message vec 5 "file attributes with ls: %s" localname)
1087 (tramp-send-command
1089 (format "(%s %s || %s -h %s) && %s %s %s"
1090 (tramp-get-file-exists-command vec)
1091 (tramp-shell-quote-argument localname)
1092 (tramp-get-test-command vec)
1093 (tramp-shell-quote-argument localname)
1094 (tramp-get-ls-command vec)
1095 (if (eq id-format 'integer) "-ildn" "-ild")
1096 (tramp-shell-quote-argument localname)))
1097 ;; parse `ls -l' output ...
1098 (with-current-buffer (tramp-get-buffer vec)
1099 (when (> (buffer-size) 0)
1100 (goto-char (point-min))
1101 ;; ... inode
1102 (setq res-inode
1103 (condition-case err
1104 (read (current-buffer))
1105 (invalid-read-syntax
1106 (when (and (equal (cadr err)
1107 "Integer constant overflow in reader")
1108 (string-match
1109 "^[0-9]+\\([0-9][0-9][0-9][0-9][0-9]\\)\\'"
1110 (car (cddr err))))
1111 (let* ((big (read (substring (car (cddr err)) 0
1112 (match-beginning 1))))
1113 (small (read (match-string 1 (car (cddr err)))))
1114 (twiddle (/ small 65536)))
1115 (cons (+ big twiddle)
1116 (- small (* twiddle 65536))))))))
1117 ;; ... file mode flags
1118 (setq res-filemodes (symbol-name (read (current-buffer))))
1119 ;; ... number links
1120 (setq res-numlinks (read (current-buffer)))
1121 ;; ... uid and gid
1122 (setq res-uid (read (current-buffer)))
1123 (setq res-gid (read (current-buffer)))
1124 (if (eq id-format 'integer)
1125 (progn
1126 (unless (numberp res-uid) (setq res-uid -1))
1127 (unless (numberp res-gid) (setq res-gid -1)))
1128 (progn
1129 (unless (stringp res-uid) (setq res-uid (symbol-name res-uid)))
1130 (unless (stringp res-gid) (setq res-gid (symbol-name res-gid)))))
1131 ;; ... size
1132 (setq res-size (read (current-buffer)))
1133 ;; From the file modes, figure out other stuff.
1134 (setq symlinkp (eq ?l (aref res-filemodes 0)))
1135 (setq dirp (eq ?d (aref res-filemodes 0)))
1136 ;; if symlink, find out file name pointed to
1137 (when symlinkp
1138 (search-forward "-> ")
1139 (setq res-symlink-target (buffer-substring (point) (point-at-eol))))
1140 ;; return data gathered
1141 (list
1142 ;; 0. t for directory, string (name linked to) for symbolic
1143 ;; link, or nil.
1144 (or dirp res-symlink-target)
1145 ;; 1. Number of links to file.
1146 res-numlinks
1147 ;; 2. File uid.
1148 res-uid
1149 ;; 3. File gid.
1150 res-gid
1151 ;; 4. Last access time, as a list of integers. Normally this
1152 ;; would be in the same format as `current-time', but the
1153 ;; subseconds part is not currently implemented, and (0 0)
1154 ;; denotes an unknown time.
1155 ;; 5. Last modification time, likewise.
1156 ;; 6. Last status change time, likewise.
1157 '(0 0) '(0 0) '(0 0) ;CCC how to find out?
1158 ;; 7. Size in bytes (-1, if number is out of range).
1159 res-size
1160 ;; 8. File modes, as a string of ten letters or dashes as in ls -l.
1161 res-filemodes
1162 ;; 9. t if file's gid would change if file were deleted and
1163 ;; recreated. Will be set in `tramp-convert-file-attributes'
1165 ;; 10. inode number.
1166 res-inode
1167 ;; 11. Device number. Will be replaced by a virtual device number.
1169 )))))
1171 (defun tramp-do-file-attributes-with-perl
1172 (vec localname &optional id-format)
1173 "Implement `file-attributes' for Tramp files using a Perl script."
1174 (tramp-message vec 5 "file attributes with perl: %s" localname)
1175 (tramp-maybe-send-script
1176 vec tramp-perl-file-attributes "tramp_perl_file_attributes")
1177 (tramp-send-command-and-read
1179 (format "tramp_perl_file_attributes %s %s"
1180 (tramp-shell-quote-argument localname) id-format)))
1182 (defun tramp-do-file-attributes-with-stat
1183 (vec localname &optional id-format)
1184 "Implement `file-attributes' for Tramp files using stat(1) command."
1185 (tramp-message vec 5 "file attributes with stat: %s" localname)
1186 (tramp-send-command-and-read
1188 (format
1189 ;; On Opsware, pdksh (which is the true name of ksh there) doesn't
1190 ;; parse correctly the sequence "((". Therefore, we add a space.
1191 "( (%s %s || %s -h %s) && %s -c '((\"%%N\") %%h %s %s %%Xe0 %%Ye0 %%Ze0 %%se0 \"%%A\" t %%ie0 -1)' %s || echo nil)"
1192 (tramp-get-file-exists-command vec)
1193 (tramp-shell-quote-argument localname)
1194 (tramp-get-test-command vec)
1195 (tramp-shell-quote-argument localname)
1196 (tramp-get-remote-stat vec)
1197 (if (eq id-format 'integer) "%ue0" "\"%U\"")
1198 (if (eq id-format 'integer) "%ge0" "\"%G\"")
1199 (tramp-shell-quote-argument localname))))
1201 (defun tramp-sh-handle-set-visited-file-modtime (&optional time-list)
1202 "Like `set-visited-file-modtime' for Tramp files."
1203 (unless (buffer-file-name)
1204 (error "Can't set-visited-file-modtime: buffer `%s' not visiting a file"
1205 (buffer-name)))
1206 (if time-list
1207 (tramp-run-real-handler 'set-visited-file-modtime (list time-list))
1208 (let ((f (buffer-file-name))
1209 coding-system-used)
1210 (with-parsed-tramp-file-name f nil
1211 (let* ((remote-file-name-inhibit-cache t)
1212 (attr (file-attributes f))
1213 ;; '(-1 65535) means file doesn't exists yet.
1214 (modtime (or (nth 5 attr) '(-1 65535))))
1215 (when (boundp 'last-coding-system-used)
1216 (setq coding-system-used (symbol-value 'last-coding-system-used)))
1217 ;; We use '(0 0) as a don't-know value. See also
1218 ;; `tramp-do-file-attributes-with-ls'.
1219 (if (not (equal modtime '(0 0)))
1220 (tramp-run-real-handler 'set-visited-file-modtime (list modtime))
1221 (progn
1222 (tramp-send-command
1224 (format "%s -ild %s"
1225 (tramp-get-ls-command v)
1226 (tramp-shell-quote-argument localname)))
1227 (setq attr (buffer-substring (point)
1228 (progn (end-of-line) (point)))))
1229 (tramp-set-file-property
1230 v localname "visited-file-modtime-ild" attr))
1231 (when (boundp 'last-coding-system-used)
1232 (set 'last-coding-system-used coding-system-used))
1233 nil)))))
1235 ;; This function makes the same assumption as
1236 ;; `tramp-sh-handle-set-visited-file-modtime'.
1237 (defun tramp-sh-handle-verify-visited-file-modtime (&optional buf)
1238 "Like `verify-visited-file-modtime' for Tramp files.
1239 At the time `verify-visited-file-modtime' calls this function, we
1240 already know that the buffer is visiting a file and that
1241 `visited-file-modtime' does not return 0. Do not call this
1242 function directly, unless those two cases are already taken care
1243 of."
1244 (with-current-buffer (or buf (current-buffer))
1245 (let ((f (buffer-file-name)))
1246 ;; There is no file visiting the buffer, or the buffer has no
1247 ;; recorded last modification time, or there is no established
1248 ;; connection.
1249 (if (or (not f)
1250 (eq (visited-file-modtime) 0)
1251 (not (tramp-file-name-handler 'file-remote-p f nil 'connected)))
1253 (with-parsed-tramp-file-name f nil
1254 (let* ((remote-file-name-inhibit-cache t)
1255 (attr (file-attributes f))
1256 (modtime (nth 5 attr))
1257 (mt (visited-file-modtime)))
1259 (cond
1260 ;; File exists, and has a known modtime.
1261 ((and attr (not (equal modtime '(0 0))))
1262 (< (abs (tramp-time-diff
1263 modtime
1264 ;; For compatibility, deal with both the old
1265 ;; (HIGH . LOW) and the new (HIGH LOW) return
1266 ;; values of `visited-file-modtime'.
1267 (if (atom (cdr mt))
1268 (list (car mt) (cdr mt))
1269 mt)))
1271 ;; Modtime has the don't know value.
1272 (attr
1273 (tramp-send-command
1275 (format "%s -ild %s"
1276 (tramp-get-ls-command v)
1277 (tramp-shell-quote-argument localname)))
1278 (with-current-buffer (tramp-get-buffer v)
1279 (setq attr (buffer-substring
1280 (point) (progn (end-of-line) (point)))))
1281 (equal
1282 attr
1283 (tramp-get-file-property
1284 v localname "visited-file-modtime-ild" "")))
1285 ;; If file does not exist, say it is not modified if and
1286 ;; only if that agrees with the buffer's record.
1287 (t (equal mt '(-1 65535))))))))))
1289 (defun tramp-sh-handle-set-file-modes (filename mode)
1290 "Like `set-file-modes' for Tramp files."
1291 (with-parsed-tramp-file-name filename nil
1292 (tramp-flush-file-property v localname)
1293 ;; FIXME: extract the proper text from chmod's stderr.
1294 (tramp-barf-unless-okay
1296 (format "chmod %s %s"
1297 (tramp-compat-decimal-to-octal mode)
1298 (tramp-shell-quote-argument localname))
1299 "Error while changing file's mode %s" filename)))
1301 (defun tramp-sh-handle-set-file-times (filename &optional time)
1302 "Like `set-file-times' for Tramp files."
1303 (if (tramp-tramp-file-p filename)
1304 (with-parsed-tramp-file-name filename nil
1305 (tramp-flush-file-property v localname)
1306 (let ((time (if (or (null time) (equal time '(0 0)))
1307 (current-time)
1308 time))
1309 ;; With GNU Emacs, `format-time-string' has an optional
1310 ;; parameter UNIVERSAL. This is preferred, because we
1311 ;; could handle the case when the remote host is located
1312 ;; in a different time zone as the local host.
1313 (utc (not (featurep 'xemacs))))
1314 (tramp-send-command-and-check
1315 v (format "%s touch -t %s %s"
1316 (if utc "env TZ=UTC" "")
1317 (if utc
1318 (format-time-string "%Y%m%d%H%M.%S" time t)
1319 (format-time-string "%Y%m%d%H%M.%S" time))
1320 (tramp-shell-quote-argument localname)))))
1322 ;; We handle also the local part, because in older Emacsen,
1323 ;; without `set-file-times', this function is an alias for this.
1324 ;; We are local, so we don't need the UTC settings.
1325 (zerop
1326 (tramp-call-process
1327 "touch" nil nil nil "-t"
1328 (format-time-string "%Y%m%d%H%M.%S" time)
1329 (tramp-shell-quote-argument filename)))))
1331 (defun tramp-set-file-uid-gid (filename &optional uid gid)
1332 "Set the ownership for FILENAME.
1333 If UID and GID are provided, these values are used; otherwise uid
1334 and gid of the corresponding user is taken. Both parameters must
1335 be non-negative integers."
1336 ;; Modern Unices allow chown only for root. So we might need
1337 ;; another implementation, see `dired-do-chown'. OTOH, it is mostly
1338 ;; working with su(do)? when it is needed, so it shall succeed in
1339 ;; the majority of cases.
1340 ;; Don't modify `last-coding-system-used' by accident.
1341 (let ((last-coding-system-used last-coding-system-used))
1342 (if (tramp-tramp-file-p filename)
1343 (with-parsed-tramp-file-name filename nil
1344 (if (and (zerop (user-uid)) (tramp-local-host-p v))
1345 ;; If we are root on the local host, we can do it directly.
1346 (tramp-set-file-uid-gid localname uid gid)
1347 (let ((uid (or (and (natnump uid) uid)
1348 (tramp-get-remote-uid v 'integer)))
1349 (gid (or (and (natnump gid) gid)
1350 (tramp-get-remote-gid v 'integer))))
1351 (tramp-send-command
1352 v (format
1353 "chown %d:%d %s" uid gid
1354 (tramp-shell-quote-argument localname))))))
1356 ;; We handle also the local part, because there doesn't exist
1357 ;; `set-file-uid-gid'. On W32 "chown" might not work.
1358 (let ((uid (or (and (natnump uid) uid) (tramp-get-local-uid 'integer)))
1359 (gid (or (and (natnump gid) gid) (tramp-get-local-gid 'integer))))
1360 (tramp-call-process
1361 "chown" nil nil nil
1362 (format "%d:%d" uid gid) (tramp-shell-quote-argument filename))))))
1364 (defun tramp-remote-selinux-p (vec)
1365 "Check, whether SELINUX is enabled on the remote host."
1366 (with-tramp-connection-property
1367 (tramp-get-connection-process vec) "selinux-p"
1368 (let ((result (tramp-find-executable
1369 vec "getenforce" (tramp-get-remote-path vec) t t)))
1370 (and result
1371 (string-equal
1372 (tramp-send-command-and-read
1373 vec (format "echo \\\"`%S`\\\"" result))
1374 "Enforcing")))))
1376 (defun tramp-sh-handle-file-selinux-context (filename)
1377 "Like `file-selinux-context' for Tramp files."
1378 (with-parsed-tramp-file-name filename nil
1379 (with-tramp-file-property v localname "file-selinux-context"
1380 (let ((context '(nil nil nil nil))
1381 (regexp (concat "\\([a-z0-9_]+\\):" "\\([a-z0-9_]+\\):"
1382 "\\([a-z0-9_]+\\):" "\\([a-z0-9_]+\\)")))
1383 (when (and (tramp-remote-selinux-p v)
1384 (tramp-send-command-and-check
1385 v (format
1386 "%s -d -Z %s"
1387 (tramp-get-ls-command v)
1388 (tramp-shell-quote-argument localname))))
1389 (with-current-buffer (tramp-get-connection-buffer v)
1390 (goto-char (point-min))
1391 (when (re-search-forward regexp (point-at-eol) t)
1392 (setq context (list (match-string 1) (match-string 2)
1393 (match-string 3) (match-string 4))))))
1394 ;; Return the context.
1395 context))))
1397 (defun tramp-sh-handle-set-file-selinux-context (filename context)
1398 "Like `set-file-selinux-context' for Tramp files."
1399 (with-parsed-tramp-file-name filename nil
1400 (if (and (consp context)
1401 (tramp-remote-selinux-p v)
1402 (tramp-send-command-and-check
1403 v (format "chcon %s %s %s %s %s"
1404 (if (stringp (nth 0 context))
1405 (format "--user=%s" (nth 0 context)) "")
1406 (if (stringp (nth 1 context))
1407 (format "--role=%s" (nth 1 context)) "")
1408 (if (stringp (nth 2 context))
1409 (format "--type=%s" (nth 2 context)) "")
1410 (if (stringp (nth 3 context))
1411 (format "--range=%s" (nth 3 context)) "")
1412 (tramp-shell-quote-argument localname))))
1413 (progn
1414 (tramp-set-file-property v localname "file-selinux-context" context)
1416 (tramp-set-file-property v localname "file-selinux-context" 'undef)
1417 nil)))
1419 (defun tramp-remote-acl-p (vec)
1420 "Check, whether ACL is enabled on the remote host."
1421 (with-tramp-connection-property (tramp-get-connection-process vec) "acl-p"
1422 (tramp-send-command-and-check vec "getfacl /")))
1424 (defun tramp-sh-handle-file-acl (filename)
1425 "Like `file-acl' for Tramp files."
1426 (with-parsed-tramp-file-name filename nil
1427 (with-tramp-file-property v localname "file-acl"
1428 (when (and (tramp-remote-acl-p v)
1429 (tramp-send-command-and-check
1430 v (format
1431 "getfacl -ac %s 2>/dev/null"
1432 (tramp-shell-quote-argument localname))))
1433 (with-current-buffer (tramp-get-connection-buffer v)
1434 (goto-char (point-max))
1435 (delete-blank-lines)
1436 (when (> (point-max) (point-min))
1437 (tramp-compat-funcall
1438 'substring-no-properties (buffer-string))))))))
1440 (defun tramp-sh-handle-set-file-acl (filename acl-string)
1441 "Like `set-file-acl' for Tramp files."
1442 (with-parsed-tramp-file-name (expand-file-name filename) nil
1443 (if (and (stringp acl-string) (tramp-remote-acl-p v)
1444 (progn
1445 (tramp-send-command
1446 v (format "setfacl --set-file=- %s <<'EOF'\n%s\nEOF\n"
1447 (tramp-shell-quote-argument localname) acl-string))
1448 (tramp-send-command-and-check v nil)))
1449 ;; Success.
1450 (progn
1451 (tramp-set-file-property v localname "file-acl" acl-string)
1453 ;; In case of errors, we return `nil'.
1454 (tramp-set-file-property v localname "file-acl-string" 'undef)
1455 nil)))
1457 ;; Simple functions using the `test' command.
1459 (defun tramp-sh-handle-file-executable-p (filename)
1460 "Like `file-executable-p' for Tramp files."
1461 (with-parsed-tramp-file-name filename nil
1462 (with-tramp-file-property v localname "file-executable-p"
1463 ;; Examine `file-attributes' cache to see if request can be
1464 ;; satisfied without remote operation.
1465 (or (tramp-check-cached-permissions v ?x)
1466 (tramp-run-test "-x" filename)))))
1468 (defun tramp-sh-handle-file-readable-p (filename)
1469 "Like `file-readable-p' for Tramp files."
1470 (with-parsed-tramp-file-name filename nil
1471 (with-tramp-file-property v localname "file-readable-p"
1472 ;; Examine `file-attributes' cache to see if request can be
1473 ;; satisfied without remote operation.
1474 (or (tramp-check-cached-permissions v ?r)
1475 (tramp-run-test "-r" filename)))))
1477 ;; When the remote shell is started, it looks for a shell which groks
1478 ;; tilde expansion. Here, we assume that all shells which grok tilde
1479 ;; expansion will also provide a `test' command which groks `-nt' (for
1480 ;; newer than). If this breaks, tell me about it and I'll try to do
1481 ;; something smarter about it.
1482 (defun tramp-sh-handle-file-newer-than-file-p (file1 file2)
1483 "Like `file-newer-than-file-p' for Tramp files."
1484 (cond ((not (file-exists-p file1))
1485 nil)
1486 ((not (file-exists-p file2))
1488 ;; We are sure both files exist at this point.
1490 (save-excursion
1491 ;; We try to get the mtime of both files. If they are not
1492 ;; equal to the "dont-know" value, then we subtract the times
1493 ;; and obtain the result.
1494 (let ((fa1 (file-attributes file1))
1495 (fa2 (file-attributes file2)))
1496 (if (and (not (equal (nth 5 fa1) '(0 0)))
1497 (not (equal (nth 5 fa2) '(0 0))))
1498 (> 0 (tramp-time-diff (nth 5 fa2) (nth 5 fa1)))
1499 ;; If one of them is the dont-know value, then we can
1500 ;; still try to run a shell command on the remote host.
1501 ;; However, this only works if both files are Tramp
1502 ;; files and both have the same method, same user, same
1503 ;; host.
1504 (unless (tramp-equal-remote file1 file2)
1505 (with-parsed-tramp-file-name
1506 (if (tramp-tramp-file-p file1) file1 file2) nil
1507 (tramp-error
1508 v 'file-error
1509 "Files %s and %s must have same method, user, host"
1510 file1 file2)))
1511 (with-parsed-tramp-file-name file1 nil
1512 (tramp-run-test2
1513 (tramp-get-test-nt-command v) file1 file2))))))))
1515 ;; Functions implemented using the basic functions above.
1517 (defun tramp-sh-handle-file-directory-p (filename)
1518 "Like `file-directory-p' for Tramp files."
1519 (with-parsed-tramp-file-name filename nil
1520 ;; `file-directory-p' is used as predicate for filename completion.
1521 ;; Sometimes, when a connection is not established yet, it is
1522 ;; desirable to return t immediately for "/method:foo:". It can
1523 ;; be expected that this is always a directory.
1524 (or (zerop (length localname))
1525 (with-tramp-file-property v localname "file-directory-p"
1526 (tramp-run-test "-d" filename)))))
1528 (defun tramp-sh-handle-file-writable-p (filename)
1529 "Like `file-writable-p' for Tramp files."
1530 (with-parsed-tramp-file-name filename nil
1531 (with-tramp-file-property v localname "file-writable-p"
1532 (if (file-exists-p filename)
1533 ;; Examine `file-attributes' cache to see if request can be
1534 ;; satisfied without remote operation.
1535 (or (tramp-check-cached-permissions v ?w)
1536 (tramp-run-test "-w" filename))
1537 ;; If file doesn't exist, check if directory is writable.
1538 (and (tramp-run-test "-d" (file-name-directory filename))
1539 (tramp-run-test "-w" (file-name-directory filename)))))))
1541 (defun tramp-sh-handle-file-ownership-preserved-p (filename &optional group)
1542 "Like `file-ownership-preserved-p' for Tramp files."
1543 (with-parsed-tramp-file-name filename nil
1544 (with-tramp-file-property v localname "file-ownership-preserved-p"
1545 (let ((attributes (file-attributes filename)))
1546 ;; Return t if the file doesn't exist, since it's true that no
1547 ;; information would be lost by an (attempted) delete and create.
1548 (or (null attributes)
1549 (and
1550 (= (nth 2 attributes) (tramp-get-remote-uid v 'integer))
1551 (or (not group)
1552 (= (nth 3 attributes) (tramp-get-remote-gid v 'integer)))))))))
1554 ;; Directory listings.
1556 (defun tramp-sh-handle-directory-files-and-attributes
1557 (directory &optional full match nosort id-format)
1558 "Like `directory-files-and-attributes' for Tramp files."
1559 (unless id-format (setq id-format 'integer))
1560 (when (file-directory-p directory)
1561 (setq directory (expand-file-name directory))
1562 (let* ((temp
1563 (copy-tree
1564 (with-parsed-tramp-file-name directory nil
1565 (with-tramp-file-property
1566 v localname
1567 (format "directory-files-and-attributes-%s" id-format)
1568 (save-excursion
1569 (mapcar
1570 (lambda (x)
1571 (cons (car x)
1572 (tramp-convert-file-attributes v (cdr x))))
1573 (cond
1574 ((tramp-get-remote-stat v)
1575 (tramp-do-directory-files-and-attributes-with-stat
1576 v localname id-format))
1577 ((tramp-get-remote-perl v)
1578 (tramp-do-directory-files-and-attributes-with-perl
1579 v localname id-format)))))))))
1580 result item)
1582 (while temp
1583 (setq item (pop temp))
1584 (when (or (null match) (string-match match (car item)))
1585 (when full
1586 (setcar item (expand-file-name (car item) directory)))
1587 (push item result)))
1589 (if nosort
1590 result
1591 (sort result (lambda (x y) (string< (car x) (car y))))))))
1593 (defun tramp-do-directory-files-and-attributes-with-perl
1594 (vec localname &optional id-format)
1595 "Implement `directory-files-and-attributes' for Tramp files using a Perl script."
1596 (tramp-message vec 5 "directory-files-and-attributes with perl: %s" localname)
1597 (tramp-maybe-send-script
1598 vec tramp-perl-directory-files-and-attributes
1599 "tramp_perl_directory_files_and_attributes")
1600 (let ((object
1601 (tramp-send-command-and-read
1603 (format "tramp_perl_directory_files_and_attributes %s %s"
1604 (tramp-shell-quote-argument localname) id-format))))
1605 (when (stringp object) (tramp-error vec 'file-error object))
1606 object))
1608 (defun tramp-do-directory-files-and-attributes-with-stat
1609 (vec localname &optional id-format)
1610 "Implement `directory-files-and-attributes' for Tramp files using stat(1) command."
1611 (tramp-message vec 5 "directory-files-and-attributes with stat: %s" localname)
1612 (tramp-send-command-and-read
1614 (format
1615 (concat
1616 ;; We must care about filenames with spaces, or starting with
1617 ;; "-"; this would confuse xargs. "ls -aQ" might be a solution,
1618 ;; but it does not work on all remote systems. Therefore, we
1619 ;; quote the filenames via sed.
1620 "cd %s; echo \"(\"; (%s -a | sed -e s/\\$/\\\"/g -e s/^/\\\"/g | "
1621 "xargs %s -c "
1622 "'(\"%%n\" (\"%%N\") %%h %s %s %%Xe0 %%Ye0 %%Ze0 %%se0 \"%%A\" t %%ie0 -1)'"
1623 " 2>/dev/null); echo \")\"")
1624 (tramp-shell-quote-argument localname)
1625 (tramp-get-ls-command vec)
1626 (tramp-get-remote-stat vec)
1627 (if (eq id-format 'integer) "%ue0" "\"%U\"")
1628 (if (eq id-format 'integer) "%ge0" "\"%G\""))))
1630 ;; This function should return "foo/" for directories and "bar" for
1631 ;; files.
1632 (defun tramp-sh-handle-file-name-all-completions (filename directory)
1633 "Like `file-name-all-completions' for Tramp files."
1634 (unless (save-match-data (string-match "/" filename))
1635 (with-parsed-tramp-file-name (expand-file-name directory) nil
1637 (all-completions
1638 filename
1639 (mapcar
1640 'list
1642 ;; Try cache entries for filename, filename with last
1643 ;; character removed, filename with last two characters
1644 ;; removed, ..., and finally the empty string - all
1645 ;; concatenated to the local directory name.
1646 (let ((remote-file-name-inhibit-cache
1647 (or remote-file-name-inhibit-cache
1648 tramp-completion-reread-directory-timeout)))
1650 ;; This is inefficient for very long filenames, pity
1651 ;; `reduce' is not available...
1652 (car
1653 (apply
1654 'append
1655 (mapcar
1656 (lambda (x)
1657 (let ((cache-hit
1658 (tramp-get-file-property
1660 (concat localname (substring filename 0 x))
1661 "file-name-all-completions"
1662 nil)))
1663 (when cache-hit (list cache-hit))))
1664 ;; We cannot use a length of 0, because file properties
1665 ;; for "foo" and "foo/" are identical.
1666 (tramp-compat-number-sequence (length filename) 1 -1)))))
1668 ;; Cache expired or no matching cache entry found so we need
1669 ;; to perform a remote operation.
1670 (let (result)
1671 ;; Get a list of directories and files, including reliably
1672 ;; tagging the directories with a trailing '/'. Because I
1673 ;; rock. --daniel@danann.net
1675 ;; Changed to perform `cd' in the same remote op and only
1676 ;; get entries starting with `filename'. Capture any `cd'
1677 ;; error messages. Ensure any `cd' and `echo' aliases are
1678 ;; ignored.
1679 (tramp-send-command
1681 (if (tramp-get-remote-perl v)
1682 (progn
1683 (tramp-maybe-send-script
1684 v tramp-perl-file-name-all-completions
1685 "tramp_perl_file_name_all_completions")
1686 (format "tramp_perl_file_name_all_completions %s %s %d"
1687 (tramp-shell-quote-argument localname)
1688 (tramp-shell-quote-argument filename)
1689 (if (symbol-value
1690 ;; `read-file-name-completion-ignore-case'
1691 ;; is introduced with Emacs 22.1.
1692 (if (boundp
1693 'read-file-name-completion-ignore-case)
1694 'read-file-name-completion-ignore-case
1695 'completion-ignore-case))
1696 1 0)))
1698 (format (concat
1699 "(\\cd %s 2>&1 && (%s %s -a 2>/dev/null"
1700 ;; `ls' with wildcard might fail with `Argument
1701 ;; list too long' error in some corner cases; if
1702 ;; `ls' fails after `cd' succeeded, chances are
1703 ;; that's the case, so let's retry without
1704 ;; wildcard. This will return "too many" entries
1705 ;; but that isn't harmful.
1706 " || %s -a 2>/dev/null)"
1707 " | while read f; do"
1708 " if %s -d \"$f\" 2>/dev/null;"
1709 " then \\echo \"$f/\"; else \\echo \"$f\"; fi; done"
1710 " && \\echo ok) || \\echo fail")
1711 (tramp-shell-quote-argument localname)
1712 (tramp-get-ls-command v)
1713 ;; When `filename' is empty, just `ls' without
1714 ;; filename argument is more efficient than `ls *'
1715 ;; for very large directories and might avoid the
1716 ;; `Argument list too long' error.
1718 ;; With and only with wildcard, we need to add
1719 ;; `-d' to prevent `ls' from descending into
1720 ;; sub-directories.
1721 (if (zerop (length filename))
1723 (concat (tramp-shell-quote-argument filename) "* -d"))
1724 (tramp-get-ls-command v)
1725 (tramp-get-test-command v))))
1727 ;; Now grab the output.
1728 (with-current-buffer (tramp-get-buffer v)
1729 (goto-char (point-max))
1731 ;; Check result code, found in last line of output.
1732 (forward-line -1)
1733 (if (looking-at "^fail$")
1734 (progn
1735 ;; Grab error message from line before last line
1736 ;; (it was put there by `cd 2>&1').
1737 (forward-line -1)
1738 (tramp-error
1739 v 'file-error
1740 "tramp-sh-handle-file-name-all-completions: %s"
1741 (buffer-substring (point) (point-at-eol))))
1742 ;; For peace of mind, if buffer doesn't end in `fail'
1743 ;; then it should end in `ok'. If neither are in the
1744 ;; buffer something went seriously wrong on the remote
1745 ;; side.
1746 (unless (looking-at "^ok$")
1747 (tramp-error
1748 v 'file-error
1750 tramp-sh-handle-file-name-all-completions: internal error accessing `%s': `%s'"
1751 (tramp-shell-quote-argument localname) (buffer-string))))
1753 (while (zerop (forward-line -1))
1754 (push (buffer-substring (point) (point-at-eol)) result)))
1756 ;; Because the remote op went through OK we know the
1757 ;; directory we `cd'-ed to exists.
1758 (tramp-set-file-property v localname "file-exists-p" t)
1760 ;; Because the remote op went through OK we know every
1761 ;; file listed by `ls' exists.
1762 (mapc (lambda (entry)
1763 (tramp-set-file-property
1764 v (concat localname entry) "file-exists-p" t))
1765 result)
1767 ;; Store result in the cache.
1768 (tramp-set-file-property
1769 v (concat localname filename)
1770 "file-name-all-completions" result))))))))
1772 ;; cp, mv and ln
1774 (defun tramp-sh-handle-add-name-to-file
1775 (filename newname &optional ok-if-already-exists)
1776 "Like `add-name-to-file' for Tramp files."
1777 (unless (tramp-equal-remote filename newname)
1778 (with-parsed-tramp-file-name
1779 (if (tramp-tramp-file-p filename) filename newname) nil
1780 (tramp-error
1781 v 'file-error
1782 "add-name-to-file: %s"
1783 "only implemented for same method, same user, same host")))
1784 (with-parsed-tramp-file-name filename v1
1785 (with-parsed-tramp-file-name newname v2
1786 (let ((ln (when v1 (tramp-get-remote-ln v1))))
1787 (when (and (not ok-if-already-exists)
1788 (file-exists-p newname)
1789 (not (numberp ok-if-already-exists))
1790 (y-or-n-p
1791 (format
1792 "File %s already exists; make it a new name anyway? "
1793 newname)))
1794 (tramp-error
1795 v2 'file-error
1796 "add-name-to-file: file %s already exists" newname))
1797 (tramp-flush-file-property v2 (file-name-directory v2-localname))
1798 (tramp-flush-file-property v2 v2-localname)
1799 (tramp-barf-unless-okay
1801 (format "%s %s %s" ln (tramp-shell-quote-argument v1-localname)
1802 (tramp-shell-quote-argument v2-localname))
1803 "error with add-name-to-file, see buffer `%s' for details"
1804 (buffer-name))))))
1806 (defun tramp-sh-handle-copy-file
1807 (filename newname &optional ok-if-already-exists keep-date
1808 preserve-uid-gid preserve-extended-attributes)
1809 "Like `copy-file' for Tramp files."
1810 (setq filename (expand-file-name filename))
1811 (setq newname (expand-file-name newname))
1812 (cond
1813 ;; At least one file a Tramp file?
1814 ((or (tramp-tramp-file-p filename)
1815 (tramp-tramp-file-p newname))
1816 (tramp-do-copy-or-rename-file
1817 'copy filename newname ok-if-already-exists keep-date
1818 preserve-uid-gid preserve-extended-attributes))
1819 ;; Compat section.
1820 (preserve-extended-attributes
1821 (tramp-run-real-handler
1822 'copy-file
1823 (list filename newname ok-if-already-exists keep-date
1824 preserve-uid-gid preserve-extended-attributes)))
1825 (preserve-uid-gid
1826 (tramp-run-real-handler
1827 'copy-file
1828 (list filename newname ok-if-already-exists keep-date preserve-uid-gid)))
1830 (tramp-run-real-handler
1831 'copy-file (list filename newname ok-if-already-exists keep-date)))))
1833 (defun tramp-sh-handle-copy-directory
1834 (dirname newname &optional keep-date parents _copy-contents)
1835 "Like `copy-directory' for Tramp files."
1836 (let ((t1 (tramp-tramp-file-p dirname))
1837 (t2 (tramp-tramp-file-p newname)))
1838 (with-parsed-tramp-file-name (if t1 dirname newname) nil
1839 (if (and (tramp-get-method-parameter method 'tramp-copy-recursive)
1840 ;; When DIRNAME and NEWNAME are remote, they must have
1841 ;; the same method.
1842 (or (null t1) (null t2)
1843 (string-equal
1844 (tramp-file-name-method (tramp-dissect-file-name dirname))
1845 (tramp-file-name-method (tramp-dissect-file-name newname)))))
1846 ;; scp or rsync DTRT.
1847 (progn
1848 (setq dirname (directory-file-name (expand-file-name dirname))
1849 newname (directory-file-name (expand-file-name newname)))
1850 (if (and (file-directory-p newname)
1851 (not (string-equal (file-name-nondirectory dirname)
1852 (file-name-nondirectory newname))))
1853 (setq newname
1854 (expand-file-name
1855 (file-name-nondirectory dirname) newname)))
1856 (if (not (file-directory-p (file-name-directory newname)))
1857 (make-directory (file-name-directory newname) parents))
1858 (tramp-do-copy-or-rename-file-out-of-band
1859 'copy dirname newname keep-date))
1860 ;; We must do it file-wise.
1861 (tramp-run-real-handler
1862 'copy-directory (list dirname newname keep-date parents)))
1864 ;; When newname did exist, we have wrong cached values.
1865 (when t2
1866 (with-parsed-tramp-file-name newname nil
1867 (tramp-flush-file-property v (file-name-directory localname))
1868 (tramp-flush-file-property v localname))))))
1870 (defun tramp-sh-handle-rename-file
1871 (filename newname &optional ok-if-already-exists)
1872 "Like `rename-file' for Tramp files."
1873 ;; Check if both files are local -- invoke normal rename-file.
1874 ;; Otherwise, use Tramp from local system.
1875 (setq filename (expand-file-name filename))
1876 (setq newname (expand-file-name newname))
1877 ;; At least one file a Tramp file?
1878 (if (or (tramp-tramp-file-p filename)
1879 (tramp-tramp-file-p newname))
1880 (tramp-do-copy-or-rename-file
1881 'rename filename newname ok-if-already-exists t t)
1882 (tramp-run-real-handler
1883 'rename-file (list filename newname ok-if-already-exists))))
1885 (defun tramp-do-copy-or-rename-file
1886 (op filename newname &optional ok-if-already-exists keep-date
1887 preserve-uid-gid preserve-extended-attributes)
1888 "Copy or rename a remote file.
1889 OP must be `copy' or `rename' and indicates the operation to perform.
1890 FILENAME specifies the file to copy or rename, NEWNAME is the name of
1891 the new file (for copy) or the new name of the file (for rename).
1892 OK-IF-ALREADY-EXISTS means don't barf if NEWNAME exists already.
1893 KEEP-DATE means to make sure that NEWNAME has the same timestamp
1894 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
1895 the uid and gid if both files are on the same host.
1896 PRESERVE-EXTENDED-ATTRIBUTES activates selinux and acl commands.
1898 This function is invoked by `tramp-sh-handle-copy-file' and
1899 `tramp-sh-handle-rename-file'. It is an error if OP is neither
1900 of `copy' and `rename'. FILENAME and NEWNAME must be absolute
1901 file names."
1902 (unless (memq op '(copy rename))
1903 (error "Unknown operation `%s', must be `copy' or `rename'" op))
1904 (let ((t1 (tramp-tramp-file-p filename))
1905 (t2 (tramp-tramp-file-p newname))
1906 (length (nth 7 (file-attributes (file-truename filename))))
1907 (attributes (and preserve-extended-attributes
1908 (apply 'file-extended-attributes (list filename)))))
1910 (with-parsed-tramp-file-name (if t1 filename newname) nil
1911 (when (and (not ok-if-already-exists) (file-exists-p newname))
1912 (tramp-error
1913 v 'file-already-exists "File %s already exists" newname))
1915 (with-tramp-progress-reporter
1916 v 0 (format "%s %s to %s"
1917 (if (eq op 'copy) "Copying" "Renaming")
1918 filename newname)
1920 (cond
1921 ;; Both are Tramp files.
1922 ((and t1 t2)
1923 (with-parsed-tramp-file-name filename v1
1924 (with-parsed-tramp-file-name newname v2
1925 (cond
1926 ;; Shortcut: if method, host, user are the same for
1927 ;; both files, we invoke `cp' or `mv' on the remote
1928 ;; host directly.
1929 ((tramp-equal-remote filename newname)
1930 (tramp-do-copy-or-rename-file-directly
1931 op filename newname
1932 ok-if-already-exists keep-date preserve-uid-gid))
1934 ;; Try out-of-band operation.
1935 ((and
1936 (tramp-method-out-of-band-p v1 length)
1937 (tramp-method-out-of-band-p v2 length))
1938 (tramp-do-copy-or-rename-file-out-of-band
1939 op filename newname keep-date))
1941 ;; No shortcut was possible. So we copy the file
1942 ;; first. If the operation was `rename', we go back
1943 ;; and delete the original file (if the copy was
1944 ;; successful). The approach is simple-minded: we
1945 ;; create a new buffer, insert the contents of the
1946 ;; source file into it, then write out the buffer to
1947 ;; the target file. The advantage is that it doesn't
1948 ;; matter which filename handlers are used for the
1949 ;; source and target file.
1951 (tramp-do-copy-or-rename-file-via-buffer
1952 op filename newname keep-date))))))
1954 ;; One file is a Tramp file, the other one is local.
1955 ((or t1 t2)
1956 (cond
1957 ;; Fast track on local machine.
1958 ((tramp-local-host-p v)
1959 (tramp-do-copy-or-rename-file-directly
1960 op filename newname
1961 ok-if-already-exists keep-date preserve-uid-gid))
1963 ;; If the Tramp file has an out-of-band method, the
1964 ;; corresponding copy-program can be invoked.
1965 ((tramp-method-out-of-band-p v length)
1966 (tramp-do-copy-or-rename-file-out-of-band
1967 op filename newname keep-date))
1969 ;; Use the inline method via a Tramp buffer.
1970 (t (tramp-do-copy-or-rename-file-via-buffer
1971 op filename newname keep-date))))
1974 ;; One of them must be a Tramp file.
1975 (error "Tramp implementation says this cannot happen")))
1977 ;; Handle `preserve-extended-attributes'. We ignore possible
1978 ;; errors, because ACL strings could be incompatible.
1979 (when attributes
1980 (ignore-errors
1981 (apply 'set-file-extended-attributes (list newname attributes))))
1983 ;; In case of `rename', we must flush the cache of the source file.
1984 (when (and t1 (eq op 'rename))
1985 (with-parsed-tramp-file-name filename v1
1986 (tramp-flush-file-property v1 (file-name-directory localname))
1987 (tramp-flush-file-property v1 localname)))
1989 ;; When newname did exist, we have wrong cached values.
1990 (when t2
1991 (with-parsed-tramp-file-name newname v2
1992 (tramp-flush-file-property v2 (file-name-directory localname))
1993 (tramp-flush-file-property v2 localname)))))))
1995 (defun tramp-do-copy-or-rename-file-via-buffer (op filename newname keep-date)
1996 "Use an Emacs buffer to copy or rename a file.
1997 First arg OP is either `copy' or `rename' and indicates the operation.
1998 FILENAME is the source file, NEWNAME the target file.
1999 KEEP-DATE is non-nil if NEWNAME should have the same timestamp as FILENAME."
2000 (with-temp-buffer
2001 ;; We must disable multibyte, because binary data shall not be
2002 ;; converted.
2003 (set-buffer-multibyte nil)
2004 (let ((coding-system-for-read 'binary)
2005 (jka-compr-inhibit t))
2006 (insert-file-contents-literally filename))
2007 ;; We don't want the target file to be compressed, so we let-bind
2008 ;; `jka-compr-inhibit' to t.
2009 (let ((coding-system-for-write 'binary)
2010 (jka-compr-inhibit t))
2011 (write-region (point-min) (point-max) newname)))
2012 ;; KEEP-DATE handling.
2013 (when keep-date (set-file-times newname (nth 5 (file-attributes filename))))
2014 ;; Set the mode.
2015 (set-file-modes newname (tramp-default-file-modes filename))
2016 ;; If the operation was `rename', delete the original file.
2017 (unless (eq op 'copy) (delete-file filename)))
2019 (defun tramp-do-copy-or-rename-file-directly
2020 (op filename newname ok-if-already-exists keep-date preserve-uid-gid)
2021 "Invokes `cp' or `mv' on the remote system.
2022 OP must be one of `copy' or `rename', indicating `cp' or `mv',
2023 respectively. FILENAME specifies the file to copy or rename,
2024 NEWNAME is the name of the new file (for copy) or the new name of
2025 the file (for rename). Both files must reside on the same host.
2026 KEEP-DATE means to make sure that NEWNAME has the same timestamp
2027 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
2028 the uid and gid from FILENAME."
2029 (let ((t1 (tramp-tramp-file-p filename))
2030 (t2 (tramp-tramp-file-p newname))
2031 (file-times (nth 5 (file-attributes filename)))
2032 (file-modes (tramp-default-file-modes filename)))
2033 (with-parsed-tramp-file-name (if t1 filename newname) nil
2034 (let* ((cmd (cond ((and (eq op 'copy) preserve-uid-gid) "cp -f -p")
2035 ((eq op 'copy) "cp -f")
2036 ((eq op 'rename) "mv -f")
2037 (t (tramp-error
2038 v 'file-error
2039 "Unknown operation `%s', must be `copy' or `rename'"
2040 op))))
2041 (localname1
2042 (if t1
2043 (tramp-file-name-handler 'file-remote-p filename 'localname)
2044 filename))
2045 (localname2
2046 (if t2
2047 (tramp-file-name-handler 'file-remote-p newname 'localname)
2048 newname))
2049 (prefix (file-remote-p (if t1 filename newname)))
2050 cmd-result)
2052 (cond
2053 ;; Both files are on a remote host, with same user.
2054 ((and t1 t2)
2055 (setq cmd-result
2056 (tramp-send-command-and-check
2057 v (format "%s %s %s" cmd
2058 (tramp-shell-quote-argument localname1)
2059 (tramp-shell-quote-argument localname2))))
2060 (with-current-buffer (tramp-get-buffer v)
2061 (goto-char (point-min))
2062 (unless
2064 (and keep-date
2065 ;; Mask cp -f error.
2066 (re-search-forward
2067 tramp-operation-not-permitted-regexp nil t))
2068 cmd-result)
2069 (tramp-error-with-buffer
2070 nil v 'file-error
2071 "Copying directly failed, see buffer `%s' for details."
2072 (buffer-name)))))
2074 ;; We are on the local host.
2075 ((or t1 t2)
2076 (cond
2077 ;; We can do it directly.
2078 ((let (file-name-handler-alist)
2079 (and (file-readable-p localname1)
2080 (file-writable-p (file-name-directory localname2))
2081 (or (file-directory-p localname2)
2082 (file-writable-p localname2))))
2083 (if (eq op 'copy)
2084 (tramp-compat-copy-file
2085 localname1 localname2 ok-if-already-exists
2086 keep-date preserve-uid-gid)
2087 (tramp-run-real-handler
2088 'rename-file (list localname1 localname2 ok-if-already-exists))))
2090 ;; We can do it directly with `tramp-send-command'
2091 ((and (file-readable-p (concat prefix localname1))
2092 (file-writable-p
2093 (file-name-directory (concat prefix localname2)))
2094 (or (file-directory-p (concat prefix localname2))
2095 (file-writable-p (concat prefix localname2))))
2096 (tramp-do-copy-or-rename-file-directly
2097 op (concat prefix localname1) (concat prefix localname2)
2098 ok-if-already-exists keep-date t)
2099 ;; We must change the ownership to the local user.
2100 (tramp-set-file-uid-gid
2101 (concat prefix localname2)
2102 (tramp-get-local-uid 'integer)
2103 (tramp-get-local-gid 'integer)))
2105 ;; We need a temporary file in between.
2107 ;; Create the temporary file.
2108 (let ((tmpfile (tramp-compat-make-temp-file localname1)))
2109 (unwind-protect
2110 (progn
2111 (cond
2113 (tramp-barf-unless-okay
2114 v (format
2115 "%s %s %s" cmd
2116 (tramp-shell-quote-argument localname1)
2117 (tramp-shell-quote-argument tmpfile))
2118 "Copying directly failed, see buffer `%s' for details."
2119 (tramp-get-buffer v))
2120 ;; We must change the ownership as remote user.
2121 ;; Since this does not work reliable, we also
2122 ;; give read permissions.
2123 (set-file-modes
2124 (concat prefix tmpfile)
2125 (tramp-compat-octal-to-decimal "0777"))
2126 (tramp-set-file-uid-gid
2127 (concat prefix tmpfile)
2128 (tramp-get-local-uid 'integer)
2129 (tramp-get-local-gid 'integer)))
2131 (if (eq op 'copy)
2132 (tramp-compat-copy-file
2133 localname1 tmpfile t
2134 keep-date preserve-uid-gid)
2135 (tramp-run-real-handler
2136 'rename-file
2137 (list localname1 tmpfile t)))
2138 ;; We must change the ownership as local user.
2139 ;; Since this does not work reliable, we also
2140 ;; give read permissions.
2141 (set-file-modes
2142 tmpfile (tramp-compat-octal-to-decimal "0777"))
2143 (tramp-set-file-uid-gid
2144 tmpfile
2145 (tramp-get-remote-uid v 'integer)
2146 (tramp-get-remote-gid v 'integer))))
2148 ;; Move the temporary file to its destination.
2149 (cond
2151 (tramp-barf-unless-okay
2152 v (format
2153 "cp -f -p %s %s"
2154 (tramp-shell-quote-argument tmpfile)
2155 (tramp-shell-quote-argument localname2))
2156 "Copying directly failed, see buffer `%s' for details."
2157 (tramp-get-buffer v)))
2159 (tramp-run-real-handler
2160 'rename-file
2161 (list tmpfile localname2 ok-if-already-exists)))))
2163 ;; Save exit.
2164 (ignore-errors (delete-file tmpfile)))))))))
2166 ;; Set the time and mode. Mask possible errors.
2167 (ignore-errors
2168 (when keep-date
2169 (set-file-times newname file-times)
2170 (set-file-modes newname file-modes))))))
2172 (defun tramp-do-copy-or-rename-file-out-of-band (op filename newname keep-date)
2173 "Invoke rcp program to copy.
2174 The method used must be an out-of-band method."
2175 (let* ((t1 (tramp-tramp-file-p filename))
2176 (t2 (tramp-tramp-file-p newname))
2177 (orig-vec (tramp-dissect-file-name (if t1 filename newname)))
2178 copy-program copy-args copy-env copy-keep-date port spec
2179 options source target)
2181 (with-parsed-tramp-file-name (if t1 filename newname) nil
2182 (if (and t1 t2)
2184 ;; Both are Tramp files. We shall optimize it when the
2185 ;; methods for filename and newname are the same.
2186 (let* ((dir-flag (file-directory-p filename))
2187 (tmpfile (tramp-compat-make-temp-file localname dir-flag)))
2188 (if dir-flag
2189 (setq tmpfile
2190 (expand-file-name
2191 (file-name-nondirectory newname) tmpfile)))
2192 (unwind-protect
2193 (progn
2194 (tramp-do-copy-or-rename-file-out-of-band
2195 op filename tmpfile keep-date)
2196 (tramp-do-copy-or-rename-file-out-of-band
2197 'rename tmpfile newname keep-date))
2198 ;; Save exit.
2199 (ignore-errors
2200 (if dir-flag
2201 (tramp-compat-delete-directory
2202 (expand-file-name ".." tmpfile) 'recursive)
2203 (delete-file tmpfile)))))
2205 ;; Set variables for computing the prompt for reading
2206 ;; password.
2207 (setq tramp-current-method (tramp-file-name-method v)
2208 tramp-current-user (or (tramp-file-name-user v)
2209 (tramp-get-connection-property
2210 v "login-as" nil))
2211 tramp-current-host (tramp-file-name-real-host v))
2213 ;; Expand hops. Might be necessary for gateway methods.
2214 (setq v (car (tramp-compute-multi-hops v)))
2215 (aset v 3 localname)
2217 ;; Check which ones of source and target are Tramp files.
2218 (setq source (if t1 (tramp-make-copy-program-file-name v) filename)
2219 target (funcall
2220 (if (and (file-directory-p filename)
2221 (string-equal
2222 (file-name-nondirectory filename)
2223 (file-name-nondirectory newname)))
2224 'file-name-directory
2225 'identity)
2226 (if t2 (tramp-make-copy-program-file-name v) newname)))
2228 ;; Check for host and port number. We cannot use
2229 ;; `tramp-file-name-port', because this returns also
2230 ;; `tramp-default-port', which might clash with settings in
2231 ;; "~/.ssh/config".
2232 (setq host (tramp-file-name-host v)
2233 port "")
2234 (when (string-match tramp-host-with-port-regexp host)
2235 (setq port (string-to-number (match-string 2 host))
2236 host (string-to-number (match-string 1 host))))
2238 ;; Check for user. There might be an interactive setting.
2239 (setq user (or (tramp-file-name-user v)
2240 (tramp-get-connection-property v "login-as" nil)))
2242 ;; Compose copy command.
2243 (setq host (or host "")
2244 user (or user "")
2245 port (or port "")
2246 spec (format-spec-make
2247 ?t (tramp-get-connection-property
2248 (tramp-get-connection-process v) "temp-file" ""))
2249 options (format-spec
2250 (if tramp-use-ssh-controlmaster-options
2251 tramp-ssh-controlmaster-options "")
2252 spec)
2253 spec (format-spec-make
2254 ?h host ?u user ?p port ?c options
2255 ?k (if keep-date " " ""))
2256 copy-program (tramp-get-method-parameter
2257 method 'tramp-copy-program)
2258 copy-keep-date (tramp-get-method-parameter
2259 method 'tramp-copy-keep-date)
2260 copy-args
2261 (delete
2262 ;; " " has either been a replacement of "%k" (when
2263 ;; keep-date argument is non-nil), or a replacement
2264 ;; for the whole keep-date sublist.
2266 (dolist
2268 (tramp-get-method-parameter method 'tramp-copy-args)
2269 copy-args)
2270 (setq copy-args
2271 (append
2272 copy-args
2273 (let ((y (mapcar (lambda (z) (format-spec z spec)) x)))
2274 (if (member "" y) '(" ") y))))))
2275 copy-env
2276 (delq
2278 (mapcar
2279 (lambda (x)
2280 (setq x (mapcar (lambda (y) (format-spec y spec)) x))
2281 (unless (member "" x) (mapconcat 'identity x " ")))
2282 (tramp-get-method-parameter method 'tramp-copy-env))))
2284 ;; Check for program.
2285 (unless (executable-find copy-program)
2286 (tramp-error
2287 v 'file-error "Cannot find copy program: %s" copy-program))
2289 (with-temp-buffer
2290 (unwind-protect
2291 ;; The default directory must be remote.
2292 (let ((default-directory
2293 (file-name-directory (if t1 filename newname)))
2294 (process-environment (copy-sequence process-environment)))
2295 ;; Set the transfer process properties.
2296 (tramp-set-connection-property
2297 v "process-name" (buffer-name (current-buffer)))
2298 (tramp-set-connection-property
2299 v "process-buffer" (current-buffer))
2300 (while copy-env
2301 (tramp-message
2302 orig-vec 6 "%s=\"%s\"" (car copy-env) (cadr copy-env))
2303 (setenv (pop copy-env) (pop copy-env)))
2305 ;; Use an asynchronous process. By this, password can
2306 ;; be handled. The default directory must be local, in
2307 ;; order to apply the correct `copy-program'. We don't
2308 ;; set a timeout, because the copying of large files can
2309 ;; last longer than 60 secs.
2310 (let ((p (let ((default-directory
2311 (tramp-compat-temporary-file-directory)))
2312 (apply 'start-process-shell-command
2313 (tramp-get-connection-name v)
2314 (tramp-get-connection-buffer v)
2315 copy-program
2316 (append
2317 copy-args
2318 (list
2319 (shell-quote-argument source)
2320 (shell-quote-argument target)
2321 "&&" "echo" "tramp_exit_status" "0"
2322 "||" "echo" "tramp_exit_status" "1"))))))
2323 (tramp-message
2324 orig-vec 6 "%s"
2325 (mapconcat 'identity (process-command p) " "))
2326 (tramp-set-connection-property p "vector" orig-vec)
2327 (tramp-compat-set-process-query-on-exit-flag p nil)
2328 (tramp-process-actions
2329 p v nil tramp-actions-copy-out-of-band)
2331 ;; Check the return code.
2332 (goto-char (point-max))
2333 (unless
2334 (re-search-backward "tramp_exit_status [0-9]+" nil t)
2335 (tramp-error
2336 orig-vec 'file-error
2337 "Couldn't find exit status of `%s'"
2338 (mapconcat 'identity (process-command p) " ")))
2339 (skip-chars-forward "^ ")
2340 (unless (zerop (read (current-buffer)))
2341 (forward-line -1)
2342 (tramp-error
2343 orig-vec 'file-error
2344 "Error copying: `%s'"
2345 (buffer-substring (point-min) (point-at-eol))))))
2347 ;; Reset the transfer process properties.
2348 (tramp-message orig-vec 6 "\n%s" (buffer-string))
2349 (tramp-set-connection-property v "process-name" nil)
2350 (tramp-set-connection-property v "process-buffer" nil)))
2352 ;; Handle KEEP-DATE argument.
2353 (when (and keep-date (not copy-keep-date))
2354 (set-file-times newname (nth 5 (file-attributes filename))))
2356 ;; Set the mode.
2357 (unless (and keep-date copy-keep-date)
2358 (ignore-errors
2359 (set-file-modes newname (tramp-default-file-modes filename)))))
2361 ;; If the operation was `rename', delete the original file.
2362 (unless (eq op 'copy)
2363 (if (file-regular-p filename)
2364 (delete-file filename)
2365 (tramp-compat-delete-directory filename 'recursive))))))
2367 (defun tramp-sh-handle-make-directory (dir &optional parents)
2368 "Like `make-directory' for Tramp files."
2369 (setq dir (expand-file-name dir))
2370 (with-parsed-tramp-file-name dir nil
2371 (tramp-flush-directory-property v (file-name-directory localname))
2372 (save-excursion
2373 (tramp-barf-unless-okay
2374 v (format "%s %s"
2375 (if parents "mkdir -p" "mkdir")
2376 (tramp-shell-quote-argument localname))
2377 "Couldn't make directory %s" dir))))
2379 (defun tramp-sh-handle-delete-directory (directory &optional recursive)
2380 "Like `delete-directory' for Tramp files."
2381 (setq directory (expand-file-name directory))
2382 (with-parsed-tramp-file-name directory nil
2383 (tramp-flush-file-property v (file-name-directory localname))
2384 (tramp-flush-directory-property v localname)
2385 (tramp-barf-unless-okay
2386 v (format "%s %s"
2387 (if recursive "rm -rf" "rmdir")
2388 (tramp-shell-quote-argument localname))
2389 "Couldn't delete %s" directory)))
2391 (defun tramp-sh-handle-delete-file (filename &optional trash)
2392 "Like `delete-file' for Tramp files."
2393 (setq filename (expand-file-name filename))
2394 (with-parsed-tramp-file-name filename nil
2395 (tramp-flush-file-property v (file-name-directory localname))
2396 (tramp-flush-file-property v localname)
2397 (tramp-barf-unless-okay
2398 v (format "%s %s"
2399 (or (and trash (tramp-get-remote-trash v)) "rm -f")
2400 (tramp-shell-quote-argument localname))
2401 "Couldn't delete %s" filename)))
2403 ;; Dired.
2405 ;; CCC: This does not seem to be enough. Something dies when
2406 ;; we try and delete two directories under Tramp :/
2407 (defun tramp-sh-handle-dired-recursive-delete-directory (filename)
2408 "Recursively delete the directory given.
2409 This is like `dired-recursive-delete-directory' for Tramp files."
2410 (with-parsed-tramp-file-name filename nil
2411 ;; Run a shell command 'rm -r <localname>'.
2412 ;; Code shamelessly stolen from the dired implementation and, um, hacked :)
2413 (unless (file-exists-p filename)
2414 (tramp-error v 'file-error "No such directory: %s" filename))
2415 ;; Which is better, -r or -R? (-r works for me <daniel@danann.net>).
2416 (tramp-send-command
2418 (format "rm -rf %s" (tramp-shell-quote-argument localname))
2419 ;; Don't read the output, do it explicitly.
2420 nil t)
2421 ;; Wait for the remote system to return to us...
2422 ;; This might take a while, allow it plenty of time.
2423 (tramp-wait-for-output (tramp-get-connection-process v) 120)
2424 ;; Make sure that it worked...
2425 (tramp-flush-file-property v (file-name-directory localname))
2426 (tramp-flush-directory-property v localname)
2427 (and (file-exists-p filename)
2428 (tramp-error
2429 v 'file-error "Failed to recursively delete %s" filename))))
2431 (defun tramp-sh-handle-dired-compress-file (file &rest _ok-flag)
2432 "Like `dired-compress-file' for Tramp files."
2433 ;; OK-FLAG is valid for XEmacs only, but not implemented.
2434 ;; Code stolen mainly from dired-aux.el.
2435 (with-parsed-tramp-file-name file nil
2436 (tramp-flush-file-property v localname)
2437 (save-excursion
2438 (let ((suffixes
2439 (if (not (featurep 'xemacs))
2440 ;; Emacs case
2441 (symbol-value 'dired-compress-file-suffixes)
2442 ;; XEmacs has `dired-compression-method-alist', which is
2443 ;; transformed into `dired-compress-file-suffixes' structure.
2444 (mapcar
2445 (lambda (x)
2446 (list (concat (regexp-quote (nth 1 x)) "\\'")
2448 (mapconcat 'identity (nth 3 x) " ")))
2449 (symbol-value 'dired-compression-method-alist))))
2450 suffix)
2451 ;; See if any suffix rule matches this file name.
2452 (while suffixes
2453 (let (case-fold-search)
2454 (if (string-match (car (car suffixes)) localname)
2455 (setq suffix (car suffixes) suffixes nil))
2456 (setq suffixes (cdr suffixes))))
2458 (cond ((file-symlink-p file)
2459 nil)
2460 ((and suffix (nth 2 suffix))
2461 ;; We found an uncompression rule.
2462 (with-tramp-progress-reporter
2463 v 0 (format "Uncompressing %s" file)
2464 (when (tramp-send-command-and-check
2465 v (concat (nth 2 suffix) " "
2466 (tramp-shell-quote-argument localname)))
2467 ;; `dired-remove-file' is not defined in XEmacs.
2468 (tramp-compat-funcall 'dired-remove-file file)
2469 (string-match (car suffix) file)
2470 (concat (substring file 0 (match-beginning 0))))))
2472 ;; We don't recognize the file as compressed, so compress it.
2473 ;; Try gzip.
2474 (with-tramp-progress-reporter v 0 (format "Compressing %s" file)
2475 (when (tramp-send-command-and-check
2476 v (concat "gzip -f "
2477 (tramp-shell-quote-argument localname)))
2478 ;; `dired-remove-file' is not defined in XEmacs.
2479 (tramp-compat-funcall 'dired-remove-file file)
2480 (cond ((file-exists-p (concat file ".gz"))
2481 (concat file ".gz"))
2482 ((file-exists-p (concat file ".z"))
2483 (concat file ".z"))
2484 (t nil))))))))))
2486 (defun tramp-sh-handle-insert-directory
2487 (filename switches &optional wildcard full-directory-p)
2488 "Like `insert-directory' for Tramp files."
2489 (setq filename (expand-file-name filename))
2490 (with-parsed-tramp-file-name filename nil
2491 (if (and (featurep 'ls-lisp)
2492 (not (symbol-value 'ls-lisp-use-insert-directory-program)))
2493 (tramp-run-real-handler
2494 'insert-directory (list filename switches wildcard full-directory-p))
2495 (when (stringp switches)
2496 (setq switches (split-string switches)))
2497 (when (and (member "--dired" switches)
2498 (not (tramp-get-ls-command-with-dired v)))
2499 (setq switches (delete "--dired" switches)))
2500 (when wildcard
2501 (setq wildcard (tramp-run-real-handler
2502 'file-name-nondirectory (list localname)))
2503 (setq localname (tramp-run-real-handler
2504 'file-name-directory (list localname))))
2505 (unless (or full-directory-p (member "-d" switches))
2506 (setq switches (append switches '("-d"))))
2507 (setq switches (mapconcat 'tramp-shell-quote-argument switches " "))
2508 (when wildcard
2509 (setq switches (concat switches " " wildcard)))
2510 (tramp-message
2511 v 4 "Inserting directory `ls %s %s', wildcard %s, fulldir %s"
2512 switches filename (if wildcard "yes" "no")
2513 (if full-directory-p "yes" "no"))
2514 ;; If `full-directory-p', we just say `ls -l FILENAME'.
2515 ;; Else we chdir to the parent directory, then say `ls -ld BASENAME'.
2516 ;; "--dired" returns byte positions. Therefore, the file names
2517 ;; must be encoded, which is guaranteed by "LC_ALL=en_US.utf8
2518 ;; LC_CTYPE=''".
2519 (if full-directory-p
2520 (tramp-send-command
2522 (format "env LC_ALL=en_US.utf8 LC_CTYPE='' %s %s %s 2>/dev/null"
2523 (tramp-get-ls-command v)
2524 switches
2525 (if wildcard
2526 localname
2527 (tramp-shell-quote-argument (concat localname ".")))))
2528 (tramp-barf-unless-okay
2530 (format "cd %s" (tramp-shell-quote-argument
2531 (tramp-run-real-handler
2532 'file-name-directory (list localname))))
2533 "Couldn't `cd %s'"
2534 (tramp-shell-quote-argument
2535 (tramp-run-real-handler 'file-name-directory (list localname))))
2536 (tramp-send-command
2538 (format "env LC_ALL=en_US.utf8 LC_CTYPE='' %s %s %s 2>/dev/null"
2539 (tramp-get-ls-command v)
2540 switches
2541 (if (or wildcard
2542 (zerop (length
2543 (tramp-run-real-handler
2544 'file-name-nondirectory (list localname)))))
2546 (tramp-shell-quote-argument
2547 (tramp-run-real-handler
2548 'file-name-nondirectory (list localname)))))))
2550 (save-restriction
2551 (let ((beg (point)))
2552 (narrow-to-region (point) (point))
2553 ;; We cannot use `insert-buffer-substring' because the Tramp
2554 ;; buffer changes its contents before insertion due to calling
2555 ;; `expand-file' and alike.
2556 (insert
2557 (with-current-buffer (tramp-get-buffer v)
2558 (buffer-string)))
2560 ;; Check for "--dired" output.
2561 (forward-line -2)
2562 (when (looking-at "//SUBDIRED//")
2563 (forward-line -1))
2564 (when (looking-at "//DIRED//\\s-+")
2565 (let ((databeg (match-end 0))
2566 (end (point-at-eol)))
2567 ;; Now read the numeric positions of file names.
2568 (goto-char databeg)
2569 (while (< (point) end)
2570 (let ((start (+ beg (read (current-buffer))))
2571 (end (+ beg (read (current-buffer)))))
2572 (if (memq (char-after end) '(?\n ?\ ))
2573 ;; End is followed by \n or by " -> ".
2574 (put-text-property start end 'dired-filename t))))))
2575 ;; Remove trailing lines.
2576 (goto-char (point-at-bol))
2577 (while (looking-at "//")
2578 (forward-line 1)
2579 (delete-region (match-beginning 0) (point)))
2581 ;; Some busyboxes are reluctant to discard colors.
2582 (unless (string-match "color" (tramp-get-connection-property v "ls" ""))
2583 (goto-char beg)
2584 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
2585 (replace-match "")))
2587 ;; Decode the output, it could be multibyte.
2588 (decode-coding-region
2589 beg (point-max)
2590 (or file-name-coding-system
2591 (and (boundp 'default-file-name-coding-system)
2592 (symbol-value 'default-file-name-coding-system))))
2594 ;; The inserted file could be from somewhere else.
2595 (when (and (not wildcard) (not full-directory-p))
2596 (goto-char (point-max))
2597 (when (file-symlink-p filename)
2598 (goto-char (search-backward "->" beg 'noerror)))
2599 (search-backward
2600 (if (zerop (length (file-name-nondirectory filename)))
2602 (file-name-nondirectory filename))
2603 beg 'noerror)
2604 (replace-match (file-relative-name filename) t))
2606 (goto-char (point-max)))))))
2608 ;; Canonicalization of file names.
2610 (defun tramp-sh-handle-expand-file-name (name &optional dir)
2611 "Like `expand-file-name' for Tramp files.
2612 If the localname part of the given filename starts with \"/../\" then
2613 the result will be a local, non-Tramp, filename."
2614 ;; If DIR is not given, use DEFAULT-DIRECTORY or "/".
2615 (setq dir (or dir default-directory "/"))
2616 ;; Unless NAME is absolute, concat DIR and NAME.
2617 (unless (file-name-absolute-p name)
2618 (setq name (concat (file-name-as-directory dir) name)))
2619 ;; If NAME is not a Tramp file, run the real handler.
2620 (if (not (tramp-connectable-p name))
2621 (tramp-run-real-handler 'expand-file-name (list name nil))
2622 ;; Dissect NAME.
2623 (with-parsed-tramp-file-name name nil
2624 (unless (tramp-run-real-handler 'file-name-absolute-p (list localname))
2625 (setq localname (concat "~/" localname)))
2626 ;; Tilde expansion if necessary. This needs a shell which
2627 ;; groks tilde expansion! The function `tramp-find-shell' is
2628 ;; supposed to find such a shell on the remote host. Please
2629 ;; tell me about it when this doesn't work on your system.
2630 (when (string-match "\\`\\(~[^/]*\\)\\(.*\\)\\'" localname)
2631 (let ((uname (match-string 1 localname))
2632 (fname (match-string 2 localname)))
2633 ;; We cannot simply apply "~/", because under sudo "~/" is
2634 ;; expanded to the local user home directory but to the
2635 ;; root home directory. On the other hand, using always
2636 ;; the default user name for tilde expansion is not
2637 ;; appropriate either, because ssh and companions might
2638 ;; use a user name from the config file.
2639 (when (and (string-equal uname "~")
2640 (string-match "\\`su\\(do\\)?\\'" method))
2641 (setq uname (concat uname user)))
2642 (setq uname
2643 (with-tramp-connection-property v uname
2644 (tramp-send-command
2645 v (format "cd %s; pwd" (tramp-shell-quote-argument uname)))
2646 (with-current-buffer (tramp-get-buffer v)
2647 (goto-char (point-min))
2648 (buffer-substring (point) (point-at-eol)))))
2649 (setq localname (concat uname fname))))
2650 ;; There might be a double slash, for example when "~/"
2651 ;; expands to "/". Remove this.
2652 (while (string-match "//" localname)
2653 (setq localname (replace-match "/" t t localname)))
2654 ;; No tilde characters in file name, do normal
2655 ;; `expand-file-name' (this does "/./" and "/../"). We bind
2656 ;; `directory-sep-char' here for XEmacs on Windows, which would
2657 ;; otherwise use backslash. `default-directory' is bound,
2658 ;; because on Windows there would be problems with UNC shares or
2659 ;; Cygwin mounts.
2660 (let ((directory-sep-char ?/)
2661 (default-directory (tramp-compat-temporary-file-directory)))
2662 (tramp-make-tramp-file-name
2663 method user host
2664 (tramp-drop-volume-letter
2665 (tramp-run-real-handler
2666 'expand-file-name (list localname)))
2667 hop)))))
2669 ;;; Remote commands:
2671 (defun tramp-process-sentinel (proc event)
2672 "Flush file caches."
2673 (unless (memq (process-status proc) '(run open))
2674 (let ((vec (tramp-get-connection-property proc "vector" nil)))
2675 (when vec
2676 (tramp-message vec 5 "Sentinel called: `%S' `%s'" proc event)
2677 (tramp-flush-connection-property proc)
2678 (tramp-flush-directory-property vec "")))))
2680 ;; We use BUFFER also as connection buffer during setup. Because of
2681 ;; this, its original contents must be saved, and restored once
2682 ;; connection has been setup.
2683 (defun tramp-sh-handle-start-file-process (name buffer program &rest args)
2684 "Like `start-file-process' for Tramp files."
2685 (with-parsed-tramp-file-name default-directory nil
2686 ;; When PROGRAM is nil, we just provide a tty.
2687 (let ((command
2688 (when (stringp program)
2689 (format "cd %s; exec env PS1=%s %s"
2690 (tramp-shell-quote-argument localname)
2691 ;; Use a human-friendly prompt, for example for `shell'.
2692 (tramp-shell-quote-argument
2693 (format "%s %s"
2694 (file-remote-p default-directory)
2695 tramp-initial-end-of-output))
2696 (mapconcat 'tramp-shell-quote-argument
2697 (cons program args) " "))))
2698 (tramp-process-connection-type
2699 (or (null program) tramp-process-connection-type))
2700 (bmp (and (buffer-live-p buffer) (buffer-modified-p buffer)))
2701 (name1 name)
2702 (i 0)
2703 ;; We do not want to raise an error when
2704 ;; `start-file-process' has been started several time in
2705 ;; `eshell' and friends.
2706 (tramp-current-connection nil))
2708 (unless buffer
2709 ;; BUFFER can be nil. We use a temporary buffer.
2710 (setq buffer (generate-new-buffer tramp-temp-buffer-name)))
2711 (while (get-process name1)
2712 ;; NAME must be unique as process name.
2713 (setq i (1+ i)
2714 name1 (format "%s<%d>" name i)))
2715 (setq name name1)
2716 ;; Set the new process properties.
2717 (tramp-set-connection-property v "process-name" name)
2718 (tramp-set-connection-property v "process-buffer" buffer)
2720 (with-current-buffer (tramp-get-connection-buffer v)
2721 (unwind-protect
2722 ;; We catch this event. Otherwise, `start-process' could
2723 ;; be called on the local host.
2724 (save-excursion
2725 (save-restriction
2726 ;; Activate narrowing in order to save BUFFER
2727 ;; contents. Clear also the modification time;
2728 ;; otherwise we might be interrupted by
2729 ;; `verify-visited-file-modtime'.
2730 (let ((buffer-undo-list t)
2731 (buffer-read-only nil)
2732 (mark (point)))
2733 (clear-visited-file-modtime)
2734 (narrow-to-region (point-max) (point-max))
2735 ;; We call `tramp-maybe-open-connection', in order
2736 ;; to cleanup the prompt afterwards.
2737 (catch 'suppress
2738 (tramp-maybe-open-connection v)
2739 (widen)
2740 (delete-region mark (point))
2741 (narrow-to-region (point-max) (point-max))
2742 ;; Now do it.
2743 (if command
2744 ;; Send the command.
2745 (tramp-send-command v command nil t) ; nooutput
2746 ;; Check, whether a pty is associated.
2747 (unless (tramp-compat-process-get
2748 (tramp-get-connection-process v) 'remote-tty)
2749 (tramp-error
2750 v 'file-error
2751 "pty association is not supported for `%s'" name))))
2752 (let ((p (tramp-get-connection-process v)))
2753 ;; Set query flag and process marker for this
2754 ;; process. We ignore errors, because the process
2755 ;; could have finished already.
2756 (ignore-errors
2757 (tramp-compat-set-process-query-on-exit-flag p t)
2758 (set-marker (process-mark p) (point)))
2759 ;; Return process.
2760 p))))
2762 ;; Save exit.
2763 (if (string-match tramp-temp-buffer-name (buffer-name))
2764 (ignore-errors
2765 (set-process-buffer (tramp-get-connection-process v) nil)
2766 (kill-buffer (current-buffer)))
2767 (set-buffer-modified-p bmp))
2768 (tramp-set-connection-property v "process-name" nil)
2769 (tramp-set-connection-property v "process-buffer" nil))))))
2771 (defun tramp-sh-handle-process-file
2772 (program &optional infile destination display &rest args)
2773 "Like `process-file' for Tramp files."
2774 ;; The implementation is not complete yet.
2775 (when (and (numberp destination) (zerop destination))
2776 (error "Implementation does not handle immediate return"))
2778 (with-parsed-tramp-file-name default-directory nil
2779 (let (command input tmpinput stderr tmpstderr outbuf ret)
2780 ;; Compute command.
2781 (setq command (mapconcat 'tramp-shell-quote-argument
2782 (cons program args) " "))
2783 ;; Determine input.
2784 (if (null infile)
2785 (setq input "/dev/null")
2786 (setq infile (expand-file-name infile))
2787 (if (tramp-equal-remote default-directory infile)
2788 ;; INFILE is on the same remote host.
2789 (setq input (with-parsed-tramp-file-name infile nil localname))
2790 ;; INFILE must be copied to remote host.
2791 (setq input (tramp-make-tramp-temp-file v)
2792 tmpinput (tramp-make-tramp-file-name method user host input))
2793 (copy-file infile tmpinput t)))
2794 (when input (setq command (format "%s <%s" command input)))
2796 ;; Determine output.
2797 (cond
2798 ;; Just a buffer.
2799 ((bufferp destination)
2800 (setq outbuf destination))
2801 ;; A buffer name.
2802 ((stringp destination)
2803 (setq outbuf (get-buffer-create destination)))
2804 ;; (REAL-DESTINATION ERROR-DESTINATION)
2805 ((consp destination)
2806 ;; output.
2807 (cond
2808 ((bufferp (car destination))
2809 (setq outbuf (car destination)))
2810 ((stringp (car destination))
2811 (setq outbuf (get-buffer-create (car destination))))
2812 ((car destination)
2813 (setq outbuf (current-buffer))))
2814 ;; stderr.
2815 (cond
2816 ((stringp (cadr destination))
2817 (setcar (cdr destination) (expand-file-name (cadr destination)))
2818 (if (tramp-equal-remote default-directory (cadr destination))
2819 ;; stderr is on the same remote host.
2820 (setq stderr (with-parsed-tramp-file-name
2821 (cadr destination) nil localname))
2822 ;; stderr must be copied to remote host. The temporary
2823 ;; file must be deleted after execution.
2824 (setq stderr (tramp-make-tramp-temp-file v)
2825 tmpstderr (tramp-make-tramp-file-name
2826 method user host stderr))))
2827 ;; stderr to be discarded.
2828 ((null (cadr destination))
2829 (setq stderr "/dev/null"))))
2830 ;; 't
2831 (destination
2832 (setq outbuf (current-buffer))))
2833 (when stderr (setq command (format "%s 2>%s" command stderr)))
2835 ;; Send the command. It might not return in time, so we protect
2836 ;; it. Call it in a subshell, in order to preserve working
2837 ;; directory.
2838 (condition-case nil
2839 (unwind-protect
2840 (setq ret
2841 (if (tramp-send-command-and-check
2842 v (format "\\cd %s; %s"
2843 (tramp-shell-quote-argument localname)
2844 command)
2845 t t)
2846 0 1))
2847 ;; We should show the output anyway.
2848 (when outbuf
2849 (with-current-buffer outbuf
2850 (insert
2851 (with-current-buffer (tramp-get-connection-buffer v)
2852 (buffer-string))))
2853 (when display (display-buffer outbuf))))
2854 ;; When the user did interrupt, we should do it also. We use
2855 ;; return code -1 as marker.
2856 (quit
2857 (kill-buffer (tramp-get-connection-buffer v))
2858 (setq ret -1))
2859 ;; Handle errors.
2860 (error
2861 (kill-buffer (tramp-get-connection-buffer v))
2862 (setq ret 1)))
2864 ;; Provide error file.
2865 (when tmpstderr (rename-file tmpstderr (cadr destination) t))
2867 ;; Cleanup. We remove all file cache values for the connection,
2868 ;; because the remote process could have changed them.
2869 (when tmpinput (delete-file tmpinput))
2871 ;; `process-file-side-effects' has been introduced with GNU
2872 ;; Emacs 23.2. If set to `nil', no remote file will be changed
2873 ;; by `program'. If it doesn't exist, we assume its default
2874 ;; value `t'.
2875 (unless (and (boundp 'process-file-side-effects)
2876 (not (symbol-value 'process-file-side-effects)))
2877 (tramp-flush-directory-property v ""))
2879 ;; Return exit status.
2880 (if (equal ret -1)
2881 (keyboard-quit)
2882 ret))))
2884 (defun tramp-sh-handle-file-local-copy (filename)
2885 "Like `file-local-copy' for Tramp files."
2886 (with-parsed-tramp-file-name filename nil
2887 (unless (file-exists-p filename)
2888 (tramp-error
2889 v 'file-error
2890 "Cannot make local copy of non-existing file `%s'" filename))
2892 (let* ((size (nth 7 (file-attributes (file-truename filename))))
2893 (rem-enc (tramp-get-inline-coding v "remote-encoding" size))
2894 (loc-dec (tramp-get-inline-coding v "local-decoding" size))
2895 (tmpfile (tramp-compat-make-temp-file filename)))
2897 (condition-case err
2898 (cond
2899 ;; `copy-file' handles direct copy and out-of-band methods.
2900 ((or (tramp-local-host-p v)
2901 (tramp-method-out-of-band-p v size))
2902 (copy-file filename tmpfile t t))
2904 ;; Use inline encoding for file transfer.
2905 (rem-enc
2906 (save-excursion
2907 (with-tramp-progress-reporter
2909 (format "Encoding remote file `%s' with `%s'" filename rem-enc)
2910 (tramp-barf-unless-okay
2911 v (format rem-enc (tramp-shell-quote-argument localname))
2912 "Encoding remote file failed"))
2914 (with-tramp-progress-reporter
2915 v 3 (format "Decoding local file `%s' with `%s'"
2916 tmpfile loc-dec)
2917 (if (functionp loc-dec)
2918 ;; If local decoding is a function, we call it.
2919 ;; We must disable multibyte, because
2920 ;; `uudecode-decode-region' doesn't handle it
2921 ;; correctly.
2922 (with-temp-buffer
2923 (set-buffer-multibyte nil)
2924 (insert-buffer-substring (tramp-get-buffer v))
2925 (funcall loc-dec (point-min) (point-max))
2926 ;; Unset `file-name-handler-alist'. Otherwise,
2927 ;; epa-file gets confused.
2928 (let (file-name-handler-alist
2929 (coding-system-for-write 'binary))
2930 (write-region (point-min) (point-max) tmpfile)))
2932 ;; If tramp-decoding-function is not defined for this
2933 ;; method, we invoke tramp-decoding-command instead.
2934 (let ((tmpfile2 (tramp-compat-make-temp-file filename)))
2935 ;; Unset `file-name-handler-alist'. Otherwise,
2936 ;; epa-file gets confused.
2937 (let (file-name-handler-alist
2938 (coding-system-for-write 'binary))
2939 (with-current-buffer (tramp-get-buffer v)
2940 (write-region (point-min) (point-max) tmpfile2)))
2941 (unwind-protect
2942 (tramp-call-local-coding-command
2943 loc-dec tmpfile2 tmpfile)
2944 (delete-file tmpfile2)))))
2946 ;; Set proper permissions.
2947 (set-file-modes tmpfile (tramp-default-file-modes filename))
2948 ;; Set local user ownership.
2949 (tramp-set-file-uid-gid tmpfile)))
2951 ;; Oops, I don't know what to do.
2952 (t (tramp-error
2953 v 'file-error "Wrong method specification for `%s'" method)))
2955 ;; Error handling.
2956 ((error quit)
2957 (delete-file tmpfile)
2958 (signal (car err) (cdr err))))
2960 (run-hooks 'tramp-handle-file-local-copy-hook)
2961 tmpfile)))
2963 ;; This is needed for XEmacs only. Code stolen from files.el.
2964 (defun tramp-sh-handle-insert-file-contents-literally
2965 (filename &optional visit beg end replace)
2966 "Like `insert-file-contents-literally' for Tramp files."
2967 (let ((format-alist nil)
2968 (after-insert-file-functions nil)
2969 (coding-system-for-read 'no-conversion)
2970 (coding-system-for-write 'no-conversion)
2971 (find-buffer-file-type-function
2972 (if (fboundp 'find-buffer-file-type)
2973 (symbol-function 'find-buffer-file-type)
2974 nil))
2975 (inhibit-file-name-handlers '(jka-compr-handler image-file-handler))
2976 (inhibit-file-name-operation 'insert-file-contents))
2977 (unwind-protect
2978 (progn
2979 (fset 'find-buffer-file-type (lambda (_filename) t))
2980 (insert-file-contents filename visit beg end replace))
2981 ;; Save exit.
2982 (if find-buffer-file-type-function
2983 (fset 'find-buffer-file-type find-buffer-file-type-function)
2984 (fmakunbound 'find-buffer-file-type)))))
2986 ;; CCC grok LOCKNAME
2987 (defun tramp-sh-handle-write-region
2988 (start end filename &optional append visit lockname confirm)
2989 "Like `write-region' for Tramp files."
2990 (setq filename (expand-file-name filename))
2991 (with-parsed-tramp-file-name filename nil
2992 ;; Following part commented out because we don't know what to do about
2993 ;; file locking, and it does not appear to be a problem to ignore it.
2994 ;; Ange-ftp ignores it, too.
2995 ;; (when (and lockname (stringp lockname))
2996 ;; (setq lockname (expand-file-name lockname)))
2997 ;; (unless (or (eq lockname nil)
2998 ;; (string= lockname filename))
2999 ;; (error
3000 ;; "tramp-sh-handle-write-region: LOCKNAME must be nil or equal FILENAME"))
3002 ;; XEmacs takes a coding system as the seventh argument, not `confirm'.
3003 (when (and (not (featurep 'xemacs)) confirm (file-exists-p filename))
3004 (unless (y-or-n-p (format "File %s exists; overwrite anyway? " filename))
3005 (tramp-error v 'file-error "File not overwritten")))
3007 (let ((uid (or (nth 2 (tramp-compat-file-attributes filename 'integer))
3008 (tramp-get-remote-uid v 'integer)))
3009 (gid (or (nth 3 (tramp-compat-file-attributes filename 'integer))
3010 (tramp-get-remote-gid v 'integer))))
3012 (if (and (tramp-local-host-p v)
3013 ;; `file-writable-p' calls `file-expand-file-name'. We
3014 ;; cannot use `tramp-run-real-handler' therefore.
3015 (let (file-name-handler-alist)
3016 (and
3017 (file-writable-p (file-name-directory localname))
3018 (or (file-directory-p localname)
3019 (file-writable-p localname)))))
3020 ;; Short track: if we are on the local host, we can run directly.
3021 (tramp-run-real-handler
3022 'write-region
3023 (list start end localname append 'no-message lockname confirm))
3025 (let* ((modes (save-excursion (tramp-default-file-modes filename)))
3026 ;; We use this to save the value of
3027 ;; `last-coding-system-used' after writing the tmp
3028 ;; file. At the end of the function, we set
3029 ;; `last-coding-system-used' to this saved value. This
3030 ;; way, any intermediary coding systems used while
3031 ;; talking to the remote shell or suchlike won't hose
3032 ;; this variable. This approach was snarfed from
3033 ;; ange-ftp.el.
3034 coding-system-used
3035 ;; Write region into a tmp file. This isn't really
3036 ;; needed if we use an encoding function, but currently
3037 ;; we use it always because this makes the logic
3038 ;; simpler. We must also set `temporary-file-directory',
3039 ;; because it could point to a remote directory.
3040 (temporary-file-directory
3041 (tramp-compat-temporary-file-directory))
3042 (tmpfile (or tramp-temp-buffer-file-name
3043 (tramp-compat-make-temp-file filename))))
3045 ;; If `append' is non-nil, we copy the file locally, and let
3046 ;; the native `write-region' implementation do the job.
3047 (when append (copy-file filename tmpfile 'ok))
3049 ;; We say `no-message' here because we don't want the
3050 ;; visited file modtime data to be clobbered from the temp
3051 ;; file. We call `set-visited-file-modtime' ourselves later
3052 ;; on. We must ensure that `file-coding-system-alist'
3053 ;; matches `tmpfile'.
3054 (let (file-name-handler-alist
3055 (file-coding-system-alist
3056 (tramp-find-file-name-coding-system-alist filename tmpfile)))
3057 (condition-case err
3058 (tramp-run-real-handler
3059 'write-region
3060 (list start end tmpfile append 'no-message lockname confirm))
3061 ((error quit)
3062 (setq tramp-temp-buffer-file-name nil)
3063 (delete-file tmpfile)
3064 (signal (car err) (cdr err))))
3066 ;; Now, `last-coding-system-used' has the right value. Remember it.
3067 (when (boundp 'last-coding-system-used)
3068 (setq coding-system-used
3069 (symbol-value 'last-coding-system-used))))
3071 ;; The permissions of the temporary file should be set. If
3072 ;; filename does not exist (eq modes nil) it has been
3073 ;; renamed to the backup file. This case `save-buffer'
3074 ;; handles permissions.
3075 ;; Ensure that it is still readable.
3076 (when modes
3077 (set-file-modes
3078 tmpfile
3079 (logior (or modes 0) (tramp-compat-octal-to-decimal "0400"))))
3081 ;; This is a bit lengthy due to the different methods
3082 ;; possible for file transfer. First, we check whether the
3083 ;; method uses an rcp program. If so, we call it.
3084 ;; Otherwise, both encoding and decoding command must be
3085 ;; specified. However, if the method _also_ specifies an
3086 ;; encoding function, then that is used for encoding the
3087 ;; contents of the tmp file.
3088 (let* ((size (nth 7 (file-attributes tmpfile)))
3089 (rem-dec (tramp-get-inline-coding v "remote-decoding" size))
3090 (loc-enc (tramp-get-inline-coding v "local-encoding" size)))
3091 (cond
3092 ;; `copy-file' handles direct copy and out-of-band methods.
3093 ((or (tramp-local-host-p v)
3094 (tramp-method-out-of-band-p v size))
3095 (if (and (not (stringp start))
3096 (= (or end (point-max)) (point-max))
3097 (= (or start (point-min)) (point-min))
3098 (tramp-get-method-parameter
3099 method 'tramp-copy-keep-tmpfile))
3100 (progn
3101 (setq tramp-temp-buffer-file-name tmpfile)
3102 (condition-case err
3103 ;; We keep the local file for performance
3104 ;; reasons, useful for "rsync".
3105 (copy-file tmpfile filename t)
3106 ((error quit)
3107 (setq tramp-temp-buffer-file-name nil)
3108 (delete-file tmpfile)
3109 (signal (car err) (cdr err)))))
3110 (setq tramp-temp-buffer-file-name nil)
3111 ;; Don't rename, in order to keep context in SELinux.
3112 (unwind-protect
3113 (copy-file tmpfile filename t)
3114 (delete-file tmpfile))))
3116 ;; Use inline file transfer.
3117 (rem-dec
3118 ;; Encode tmpfile.
3119 (unwind-protect
3120 (with-temp-buffer
3121 (set-buffer-multibyte nil)
3122 ;; Use encoding function or command.
3123 (with-tramp-progress-reporter
3124 v 3 (format "Encoding local file `%s' using `%s'"
3125 tmpfile loc-enc)
3126 (if (functionp loc-enc)
3127 ;; The following `let' is a workaround for
3128 ;; the base64.el that comes with pgnus-0.84.
3129 ;; If both of the following conditions are
3130 ;; satisfied, it tries to write to a local
3131 ;; file in default-directory, but at this
3132 ;; point, default-directory is remote.
3133 ;; (`call-process-region' can't write to
3134 ;; remote files, it seems.) The file in
3135 ;; question is a tmp file anyway.
3136 (let ((coding-system-for-read 'binary)
3137 (default-directory
3138 (tramp-compat-temporary-file-directory)))
3139 (insert-file-contents-literally tmpfile)
3140 (funcall loc-enc (point-min) (point-max)))
3142 (unless (zerop (tramp-call-local-coding-command
3143 loc-enc tmpfile t))
3144 (tramp-error
3145 v 'file-error
3146 (concat "Cannot write to `%s', "
3147 "local encoding command `%s' failed")
3148 filename loc-enc))))
3150 ;; Send buffer into remote decoding command which
3151 ;; writes to remote file. Because this happens on
3152 ;; the remote host, we cannot use the function.
3153 (with-tramp-progress-reporter
3154 v 3 (format "Decoding remote file `%s' using `%s'"
3155 filename rem-dec)
3156 (goto-char (point-max))
3157 (unless (bolp) (newline))
3158 (tramp-send-command
3160 (format
3161 (concat rem-dec " <<'EOF'\n%sEOF")
3162 (tramp-shell-quote-argument localname)
3163 (buffer-string)))
3164 (tramp-barf-unless-okay
3165 v nil
3166 "Couldn't write region to `%s', decode using `%s' failed"
3167 filename rem-dec)
3168 ;; When `file-precious-flag' is set, the region is
3169 ;; written to a temporary file. Check that the
3170 ;; checksum is equal to that from the local tmpfile.
3171 (when file-precious-flag
3172 (erase-buffer)
3173 (and
3174 ;; cksum runs locally, if possible.
3175 (zerop (tramp-call-process "cksum" tmpfile t))
3176 ;; cksum runs remotely.
3177 (tramp-send-command-and-check
3179 (format
3180 "cksum <%s" (tramp-shell-quote-argument localname)))
3181 ;; ... they are different.
3182 (not
3183 (string-equal
3184 (buffer-string)
3185 (with-current-buffer (tramp-get-buffer v)
3186 (buffer-string))))
3187 (tramp-error
3188 v 'file-error
3189 (concat "Couldn't write region to `%s',"
3190 " decode using `%s' failed")
3191 filename rem-dec)))))
3193 ;; Save exit.
3194 (delete-file tmpfile)))
3196 ;; That's not expected.
3198 (tramp-error
3199 v 'file-error
3200 (concat "Method `%s' should specify both encoding and "
3201 "decoding command or an rcp program")
3202 method))))
3204 ;; Make `last-coding-system-used' have the right value.
3205 (when coding-system-used
3206 (set 'last-coding-system-used coding-system-used))))
3208 (tramp-flush-file-property v (file-name-directory localname))
3209 (tramp-flush-file-property v localname)
3211 ;; We must protect `last-coding-system-used', now we have set it
3212 ;; to its correct value.
3213 (let (last-coding-system-used (need-chown t))
3214 ;; Set file modification time.
3215 (when (or (eq visit t) (stringp visit))
3216 (let ((file-attr (tramp-compat-file-attributes filename 'integer)))
3217 (set-visited-file-modtime
3218 ;; We must pass modtime explicitly, because filename can
3219 ;; be different from (buffer-file-name), f.e. if
3220 ;; `file-precious-flag' is set.
3221 (nth 5 file-attr))
3222 (when (and (= (nth 2 file-attr) uid)
3223 (= (nth 3 file-attr) gid))
3224 (setq need-chown nil))))
3226 ;; Set the ownership.
3227 (when need-chown
3228 (tramp-set-file-uid-gid filename uid gid))
3229 (when (or (eq visit t) (null visit) (stringp visit))
3230 (tramp-message v 0 "Wrote %s" filename))
3231 (run-hooks 'tramp-handle-write-region-hook)))))
3233 (defvar tramp-vc-registered-file-names nil
3234 "List used to collect file names, which are checked during `vc-registered'.")
3236 ;; VC backends check for the existence of various different special
3237 ;; files. This is very time consuming, because every single check
3238 ;; requires a remote command (the file cache must be invalidated).
3239 ;; Therefore, we apply a kind of optimization. We install the file
3240 ;; name handler `tramp-vc-file-name-handler', which does nothing but
3241 ;; remembers all file names for which `file-exists-p' or
3242 ;; `file-readable-p' has been applied. A first run of `vc-registered'
3243 ;; is performed. Afterwards, a script is applied for all collected
3244 ;; file names, using just one remote command. The result of this
3245 ;; script is used to fill the file cache with actual values. Now we
3246 ;; can reset the file name handlers, and we make a second run of
3247 ;; `vc-registered', which returns the expected result without sending
3248 ;; any other remote command.
3249 (defun tramp-sh-handle-vc-registered (file)
3250 "Like `vc-registered' for Tramp files."
3251 (tramp-compat-with-temp-message ""
3252 (with-parsed-tramp-file-name file nil
3253 (with-tramp-progress-reporter
3254 v 3 (format "Checking `vc-registered' for %s" file)
3256 ;; There could be new files, created by the vc backend. We
3257 ;; cannot reuse the old cache entries, therefore.
3258 (let (tramp-vc-registered-file-names
3259 (remote-file-name-inhibit-cache (current-time))
3260 (file-name-handler-alist
3261 `((,tramp-file-name-regexp . tramp-vc-file-name-handler))))
3263 ;; Here we collect only file names, which need an operation.
3264 (ignore-errors (tramp-run-real-handler 'vc-registered (list file)))
3265 (tramp-message v 10 "\n%s" tramp-vc-registered-file-names)
3267 ;; Send just one command, in order to fill the cache.
3268 (when tramp-vc-registered-file-names
3269 (tramp-maybe-send-script
3271 (format tramp-vc-registered-read-file-names
3272 (tramp-get-file-exists-command v)
3273 (format "%s -r" (tramp-get-test-command v)))
3274 "tramp_vc_registered_read_file_names")
3276 (dolist
3277 (elt
3278 (tramp-send-command-and-read
3280 (format
3281 "tramp_vc_registered_read_file_names <<'EOF'\n%s\nEOF\n"
3282 (mapconcat 'tramp-shell-quote-argument
3283 tramp-vc-registered-file-names
3284 "\n"))))
3286 (tramp-set-file-property
3287 v (car elt) (cadr elt) (cadr (cdr elt))))))
3289 ;; Second run. Now all `file-exists-p' or `file-readable-p'
3290 ;; calls shall be answered from the file cache. We unset
3291 ;; `process-file-side-effects' in order to keep the cache when
3292 ;; `process-file' calls appear.
3293 (let (process-file-side-effects)
3294 (ignore-errors
3295 (tramp-run-real-handler 'vc-registered (list file))))))))
3297 ;;;###tramp-autoload
3298 (defun tramp-sh-file-name-handler (operation &rest args)
3299 "Invoke remote-shell Tramp file name handler.
3300 Fall back to normal file name handler if no Tramp handler exists."
3301 (when (and tramp-locked (not tramp-locker))
3302 (setq tramp-locked nil)
3303 (signal 'file-error (list "Forbidden reentrant call of Tramp")))
3304 (let ((tl tramp-locked))
3305 (unwind-protect
3306 (progn
3307 (setq tramp-locked t)
3308 (let ((tramp-locker t))
3309 (save-match-data
3310 (let ((fn (assoc operation tramp-sh-file-name-handler-alist)))
3311 (if fn
3312 (apply (cdr fn) args)
3313 (tramp-run-real-handler operation args))))))
3314 (setq tramp-locked tl))))
3316 (defun tramp-vc-file-name-handler (operation &rest args)
3317 "Invoke special file name handler, which collects files to be handled."
3318 (save-match-data
3319 (let ((filename
3320 (tramp-replace-environment-variables
3321 (apply 'tramp-file-name-for-operation operation args)))
3322 (fn (assoc operation tramp-sh-file-name-handler-alist)))
3323 (with-parsed-tramp-file-name filename nil
3324 (cond
3325 ;; That's what we want: file names, for which checks are
3326 ;; applied. We assume that VC uses only `file-exists-p' and
3327 ;; `file-readable-p' checks; otherwise we must extend the
3328 ;; list. We do not perform any action, but return nil, in
3329 ;; order to keep `vc-registered' running.
3330 ((and fn (memq operation '(file-exists-p file-readable-p)))
3331 (add-to-list 'tramp-vc-registered-file-names localname 'append)
3332 nil)
3333 ;; `process-file' and `start-file-process' shall be ignored.
3334 ((and fn (eq operation 'process-file) 0))
3335 ((and fn (eq operation 'start-file-process) nil))
3336 ;; Tramp file name handlers like `expand-file-name'. They
3337 ;; must still work.
3338 (fn (save-match-data (apply (cdr fn) args)))
3339 ;; Default file name handlers, we don't care.
3340 (t (tramp-run-real-handler operation args)))))))
3342 (defun tramp-sh-handle-file-notify-add-watch (file-name flags _callback)
3343 "Like `file-notify-add-watch' for Tramp files."
3344 (setq file-name (expand-file-name file-name))
3345 (with-parsed-tramp-file-name file-name nil
3346 (let* ((default-directory (file-name-directory file-name))
3347 command events filter p sequence)
3348 (cond
3349 ;; gvfs-monitor-dir.
3350 ((setq command (tramp-get-remote-gvfs-monitor-dir v))
3351 (setq filter 'tramp-sh-file-gvfs-monitor-dir-process-filter
3352 sequence `(,command ,localname)))
3353 ;; inotifywait.
3354 ((setq command (tramp-get-remote-inotifywait v))
3355 (setq filter 'tramp-sh-file-inotifywait-process-filter
3356 events
3357 (cond
3358 ((and (memq 'change flags) (memq 'attribute-change flags))
3359 "create,modify,move,delete,attrib")
3360 ((memq 'change flags) "create,modify,move,delete")
3361 ((memq 'attribute-change flags) "attrib"))
3362 sequence `(,command "-mq" "-e" ,events ,localname)))
3363 ;; None.
3364 (t (tramp-error
3365 v 'file-notify-error
3366 "No file notification program found on %s"
3367 (file-remote-p file-name))))
3368 ;; Start process.
3369 (setq p (apply
3370 'start-file-process
3371 (file-name-nondirectory command)
3372 (generate-new-buffer
3373 (format " *%s*" (file-name-nondirectory command)))
3374 sequence))
3375 ;; Return the process object as watch-descriptor.
3376 (if (not (processp p))
3377 (tramp-error
3378 v 'file-notify-error
3379 "`%s' failed to start on remote host"
3380 (mapconcat 'identity sequence " "))
3381 (tramp-message v 6 "Run `%s', %S" (mapconcat 'identity sequence " ") p)
3382 (tramp-set-connection-property p "vector" v)
3383 (tramp-compat-set-process-query-on-exit-flag p nil)
3384 (set-process-filter p filter)
3385 p))))
3387 (defun tramp-sh-file-gvfs-monitor-dir-process-filter (proc string)
3388 "Read output from \"gvfs-monitor-dir\" and add corresponding file-notify events."
3389 (let ((remote-prefix
3390 (with-current-buffer (process-buffer proc)
3391 (file-remote-p default-directory)))
3392 (rest-string (tramp-compat-process-get proc 'rest-string)))
3393 (when rest-string
3394 (tramp-message proc 10 "Previous string:\n%s" rest-string))
3395 (tramp-message proc 6 "%S\n%s" proc string)
3396 (setq string (concat rest-string string)
3397 ;; Attribute change is returned in unused wording.
3398 string (tramp-compat-replace-regexp-in-string
3399 "ATTRIB CHANGED" "ATTRIBUTE_CHANGED" string))
3401 (while (string-match
3402 (concat "^[\n\r]*"
3403 "Directory Monitor Event:[\n\r]+"
3404 "Child = \\([^\n\r]+\\)[\n\r]+"
3405 "\\(Other = \\([^\n\r]+\\)[\n\r]+\\)?"
3406 "Event = \\([^[:blank:]]+\\)[\n\r]+")
3407 string)
3408 (let ((object
3409 (list
3410 proc
3411 (intern-soft
3412 (tramp-compat-replace-regexp-in-string
3413 "_" "-" (downcase (match-string 4 string))))
3414 ;; File names are returned as absolute paths. We must
3415 ;; add the remote prefix.
3416 (concat remote-prefix (match-string 1 string))
3417 (when (match-string 3 string)
3418 (concat remote-prefix (match-string 3 string))))))
3419 (setq string (replace-match "" nil nil string))
3420 ;; Usually, we would add an Emacs event now. Unfortunately,
3421 ;; `unread-command-events' does not accept several events at
3422 ;; once. Therefore, we apply the callback directly.
3423 (tramp-compat-funcall 'file-notify-callback object)))
3425 ;; Save rest of the string.
3426 (when (zerop (length string)) (setq string nil))
3427 (when string (tramp-message proc 10 "Rest string:\n%s" string))
3428 (tramp-compat-process-put proc 'rest-string string)))
3430 (defun tramp-sh-file-inotifywait-process-filter (proc string)
3431 "Read output from \"inotifywait\" and add corresponding file-notify events."
3432 (tramp-message proc 6 "%S\n%s" proc string)
3433 (dolist (line (split-string string "[\n\r]+" 'omit-nulls))
3434 ;; Check, whether there is a problem.
3435 (unless
3436 (string-match
3437 (concat "^[^[:blank:]]+"
3438 "[[:blank:]]+\\([^[:blank:]]+\\)+"
3439 "\\([[:blank:]]+\\([^\n\r]+\\)\\)?")
3440 line)
3441 (tramp-error proc 'file-notify-error "%s" line))
3443 (let ((object
3444 (list
3445 proc
3446 (mapcar
3447 (lambda (x)
3448 (intern-soft
3449 (tramp-compat-replace-regexp-in-string "_" "-" (downcase x))))
3450 (split-string (match-string 1 line) "," 'omit-nulls))
3451 (match-string 3 line))))
3452 ;; Usually, we would add an Emacs event now. Unfortunately,
3453 ;; `unread-command-events' does not accept several events at
3454 ;; once. Therefore, we apply the callback directly.
3455 (tramp-compat-funcall 'file-notify-callback object))))
3457 ;;; Internal Functions:
3459 (defun tramp-maybe-send-script (vec script name)
3460 "Define in remote shell function NAME implemented as SCRIPT.
3461 Only send the definition if it has not already been done."
3462 ;; We cannot let-bind (tramp-get-connection-process vec) because it
3463 ;; might be nil.
3464 (let ((scripts (tramp-get-connection-property
3465 (tramp-get-connection-process vec) "scripts" nil)))
3466 (unless (member name scripts)
3467 (with-tramp-progress-reporter vec 5 (format "Sending script `%s'" name)
3468 ;; The script could contain a call of Perl. This is masked with `%s'.
3469 (when (and (string-match "%s" script)
3470 (not (tramp-get-remote-perl vec)))
3471 (tramp-error vec 'file-error "No Perl available on remote host"))
3472 (tramp-barf-unless-okay
3474 (format "%s () {\n%s\n}" name
3475 (format script (tramp-get-remote-perl vec)))
3476 "Script %s sending failed" name)
3477 (tramp-set-connection-property
3478 (tramp-get-connection-process vec) "scripts" (cons name scripts))))))
3480 (defun tramp-set-auto-save ()
3481 (when (and ;; ange-ftp has its own auto-save mechanism
3482 (eq (tramp-find-foreign-file-name-handler (buffer-file-name))
3483 'tramp-sh-file-name-handler)
3484 auto-save-default)
3485 (auto-save-mode 1)))
3486 (add-hook 'find-file-hooks 'tramp-set-auto-save t)
3487 (add-hook 'tramp-unload-hook
3488 (lambda ()
3489 (remove-hook 'find-file-hooks 'tramp-set-auto-save)))
3491 (defun tramp-run-test (switch filename)
3492 "Run `test' on the remote system, given a SWITCH and a FILENAME.
3493 Returns the exit code of the `test' program."
3494 (with-parsed-tramp-file-name filename nil
3495 (tramp-send-command-and-check
3497 (format
3498 "%s %s %s"
3499 (tramp-get-test-command v)
3500 switch
3501 (tramp-shell-quote-argument localname)))))
3503 (defun tramp-run-test2 (format-string file1 file2)
3504 "Run `test'-like program on the remote system, given FILE1, FILE2.
3505 FORMAT-STRING contains the program name, switches, and place holders.
3506 Returns the exit code of the `test' program. Barfs if the methods,
3507 hosts, or files, disagree."
3508 (unless (tramp-equal-remote file1 file2)
3509 (with-parsed-tramp-file-name (if (tramp-tramp-file-p file1) file1 file2) nil
3510 (tramp-error
3511 v 'file-error
3512 "tramp-run-test2 only implemented for same method, user, host")))
3513 (with-parsed-tramp-file-name file1 v1
3514 (with-parsed-tramp-file-name file1 v2
3515 (tramp-send-command-and-check
3517 (format format-string
3518 (tramp-shell-quote-argument v1-localname)
3519 (tramp-shell-quote-argument v2-localname))))))
3521 (defun tramp-find-executable
3522 (vec progname dirlist &optional ignore-tilde ignore-path)
3523 "Searches for PROGNAME in $PATH and all directories mentioned in DIRLIST.
3524 First arg VEC specifies the connection, PROGNAME is the program
3525 to search for, and DIRLIST gives the list of directories to
3526 search. If IGNORE-TILDE is non-nil, directory names starting
3527 with `~' will be ignored. If IGNORE-PATH is non-nil, searches
3528 only in DIRLIST.
3530 Returns the absolute file name of PROGNAME, if found, and nil otherwise.
3532 This function expects to be in the right *tramp* buffer."
3533 (with-current-buffer (tramp-get-connection-buffer vec)
3534 (let (result)
3535 ;; Check whether the executable is in $PATH. "which(1)" does not
3536 ;; report always a correct error code; therefore we check the
3537 ;; number of words it returns.
3538 (unless ignore-path
3539 (tramp-send-command vec (format "which \\%s | wc -w" progname))
3540 (goto-char (point-min))
3541 (if (looking-at "^\\s-*1$")
3542 (setq result (concat "\\" progname))))
3543 (unless result
3544 (when ignore-tilde
3545 ;; Remove all ~/foo directories from dirlist. In XEmacs,
3546 ;; `remove' is in CL, and we want to avoid CL dependencies.
3547 (let (newdl d)
3548 (while dirlist
3549 (setq d (car dirlist))
3550 (setq dirlist (cdr dirlist))
3551 (unless (char-equal ?~ (aref d 0))
3552 (setq newdl (cons d newdl))))
3553 (setq dirlist (nreverse newdl))))
3554 (tramp-send-command
3556 (format (concat "while read d; "
3557 "do if test -x $d/%s -a -f $d/%s; "
3558 "then echo tramp_executable $d/%s; "
3559 "break; fi; done <<'EOF'\n"
3560 "%s\nEOF")
3561 progname progname progname (mapconcat 'identity dirlist "\n")))
3562 (goto-char (point-max))
3563 (when (search-backward "tramp_executable " nil t)
3564 (skip-chars-forward "^ ")
3565 (skip-chars-forward " ")
3566 (setq result (buffer-substring (point) (point-at-eol)))))
3567 result)))
3569 (defun tramp-set-remote-path (vec)
3570 "Sets the remote environment PATH to existing directories.
3571 I.e., for each directory in `tramp-remote-path', it is tested
3572 whether it exists and if so, it is added to the environment
3573 variable PATH."
3574 (tramp-message vec 5 "Setting $PATH environment variable")
3575 (tramp-send-command
3576 vec (format "PATH=%s; export PATH"
3577 (mapconcat 'identity (tramp-get-remote-path vec) ":"))))
3579 ;; ------------------------------------------------------------
3580 ;; -- Communication with external shell --
3581 ;; ------------------------------------------------------------
3583 (defun tramp-find-file-exists-command (vec)
3584 "Find a command on the remote host for checking if a file exists.
3585 Here, we are looking for a command which has zero exit status if the
3586 file exists and nonzero exit status otherwise."
3587 (let ((existing "/")
3588 (nonexistent
3589 (tramp-shell-quote-argument "/ this file does not exist "))
3590 result)
3591 ;; The algorithm is as follows: we try a list of several commands.
3592 ;; For each command, we first run `$cmd /' -- this should return
3593 ;; true, as the root directory always exists. And then we run
3594 ;; `$cmd /this\ file\ does\ not\ exist ', hoping that the file indeed
3595 ;; does not exist. This should return false. We use the first
3596 ;; command we find that seems to work.
3597 ;; The list of commands to try is as follows:
3598 ;; `ls -d' This works on most systems, but NetBSD 1.4
3599 ;; has a bug: `ls' always returns zero exit
3600 ;; status, even for files which don't exist.
3601 ;; `test -e' Some Bourne shells have a `test' builtin
3602 ;; which does not know the `-e' option.
3603 ;; `/bin/test -e' For those, the `test' binary on disk normally
3604 ;; provides the option. Alas, the binary
3605 ;; is sometimes `/bin/test' and sometimes it's
3606 ;; `/usr/bin/test'.
3607 ;; `/usr/bin/test -e' In case `/bin/test' does not exist.
3608 (unless (or
3609 (ignore-errors
3610 (and (setq result (format "%s -e" (tramp-get-test-command vec)))
3611 (tramp-send-command-and-check
3612 vec (format "%s %s" result existing))
3613 (not (tramp-send-command-and-check
3614 vec (format "%s %s" result nonexistent)))))
3615 (ignore-errors
3616 (and (setq result "/bin/test -e")
3617 (tramp-send-command-and-check
3618 vec (format "%s %s" result existing))
3619 (not (tramp-send-command-and-check
3620 vec (format "%s %s" result nonexistent)))))
3621 (ignore-errors
3622 (and (setq result "/usr/bin/test -e")
3623 (tramp-send-command-and-check
3624 vec (format "%s %s" result existing))
3625 (not (tramp-send-command-and-check
3626 vec (format "%s %s" result nonexistent)))))
3627 (ignore-errors
3628 (and (setq result (format "%s -d" (tramp-get-ls-command vec)))
3629 (tramp-send-command-and-check
3630 vec (format "%s %s" result existing))
3631 (not (tramp-send-command-and-check
3632 vec (format "%s %s" result nonexistent))))))
3633 (tramp-error
3634 vec 'file-error "Couldn't find command to check if file exists"))
3635 result))
3637 (defun tramp-open-shell (vec shell)
3638 "Opens shell SHELL."
3639 (with-tramp-progress-reporter
3640 vec 5 (format "Opening remote shell `%s'" shell)
3641 ;; Find arguments for this shell.
3642 (let ((tramp-end-of-output tramp-initial-end-of-output)
3643 (alist tramp-sh-extra-args)
3644 item extra-args)
3645 (while (and alist (null extra-args))
3646 (setq item (pop alist))
3647 (when (string-match (car item) shell)
3648 (setq extra-args (cdr item))))
3649 (tramp-send-command
3650 vec (format
3651 "exec env ENV='' PROMPT_COMMAND='' PS1=%s PS2='' PS3='' %s %s"
3652 (tramp-shell-quote-argument tramp-end-of-output)
3653 shell (or extra-args ""))
3655 (tramp-set-connection-property
3656 (tramp-get-connection-process vec) "remote-shell" shell)
3657 ;; Setting prompts.
3658 (tramp-send-command
3659 vec (format "PS1=%s" (tramp-shell-quote-argument tramp-end-of-output)) t)
3660 (tramp-send-command vec "PS2=''" t)
3661 (tramp-send-command vec "PS3=''" t)
3662 (tramp-send-command vec "PROMPT_COMMAND=''" t)))
3664 (defun tramp-find-shell (vec)
3665 "Opens a shell on the remote host which groks tilde expansion."
3666 (with-current-buffer (tramp-get-buffer vec)
3667 (let ((default-shell
3669 (tramp-get-connection-property
3670 (tramp-get-connection-process vec) "remote-shell" nil)
3671 (tramp-get-method-parameter
3672 (tramp-file-name-method vec) 'tramp-remote-shell)))
3673 shell)
3674 (setq shell
3675 (with-tramp-connection-property vec "remote-shell"
3676 ;; CCC: "root" does not exist always, see QNAP 459.
3677 ;; Which check could we apply instead?
3678 (tramp-send-command vec "echo ~root" t)
3679 (if (or (string-match "^~root$" (buffer-string))
3680 ;; The default shell (ksh93) of OpenSolaris and
3681 ;; Solaris is buggy. We've got reports for
3682 ;; "SunOS 5.10" and "SunOS 5.11" so far.
3683 (string-match (regexp-opt '("SunOS 5.10" "SunOS 5.11"))
3684 (tramp-get-connection-property
3685 vec "uname" "")))
3687 (or (tramp-find-executable
3688 vec "bash" (tramp-get-remote-path vec) t t)
3689 (tramp-find-executable
3690 vec "ksh" (tramp-get-remote-path vec) t t)
3691 ;; Maybe it works at least for some other commands.
3692 (prog1
3693 default-shell
3694 (tramp-message
3695 vec 2
3696 (concat
3697 "Couldn't find a remote shell which groks tilde "
3698 "expansion, using `%s'")
3699 default-shell)))
3701 default-shell)))
3703 ;; Open a new shell if needed.
3704 (unless (string-equal shell default-shell)
3705 (tramp-message
3706 vec 5 "Starting remote shell `%s' for tilde expansion" shell)
3707 (tramp-open-shell vec shell)))))
3709 ;; Utility functions.
3711 (defun tramp-barf-if-no-shell-prompt (proc timeout &rest error-args)
3712 "Wait for shell prompt and barf if none appears.
3713 Looks at process PROC to see if a shell prompt appears in TIMEOUT
3714 seconds. If not, it produces an error message with the given ERROR-ARGS."
3715 (let ((vec (tramp-get-connection-property proc "vector" nil)))
3716 (condition-case nil
3717 (tramp-wait-for-regexp
3718 proc timeout
3719 (format
3720 "\\(%s\\|%s\\)\\'" shell-prompt-pattern tramp-shell-prompt-pattern))
3721 (error
3722 (delete-process proc)
3723 (apply 'tramp-error-with-buffer
3724 (tramp-get-connection-buffer vec) vec 'file-error error-args)))))
3726 (defun tramp-open-connection-setup-interactive-shell (proc vec)
3727 "Set up an interactive shell.
3728 Mainly sets the prompt and the echo correctly. PROC is the shell
3729 process to set up. VEC specifies the connection."
3730 (let ((tramp-end-of-output tramp-initial-end-of-output))
3731 ;; It is useful to set the prompt in the following command because
3732 ;; some people have a setting for $PS1 which /bin/sh doesn't know
3733 ;; about and thus /bin/sh will display a strange prompt. For
3734 ;; example, if $PS1 has "${CWD}" in the value, then ksh will
3735 ;; display the current working directory but /bin/sh will display
3736 ;; a dollar sign. The following command line sets $PS1 to a sane
3737 ;; value, and works under Bourne-ish shells as well as csh-like
3738 ;; shells. Daniel Pittman reports that the unusual positioning of
3739 ;; the single quotes makes it work under `rc', too. We also unset
3740 ;; the variable $ENV because that is read by some sh
3741 ;; implementations (eg, bash when called as sh) on startup; this
3742 ;; way, we avoid the startup file clobbering $PS1. $PROMPT_COMMAND
3743 ;; is another way to set the prompt in /bin/bash, it must be
3744 ;; discarded as well.
3745 (tramp-open-shell
3747 (or (tramp-get-connection-property vec "remote-shell" nil)
3748 (tramp-get-method-parameter
3749 (tramp-file-name-method vec) 'tramp-remote-shell)))
3751 ;; Disable echo.
3752 (tramp-message vec 5 "Setting up remote shell environment")
3753 (tramp-send-command vec "stty -inlcr -echo kill '^U' erase '^H'" t)
3754 ;; Check whether the echo has really been disabled. Some
3755 ;; implementations, like busybox of embedded GNU/Linux, don't
3756 ;; support disabling.
3757 (tramp-send-command vec "echo foo" t)
3758 (with-current-buffer (process-buffer proc)
3759 (goto-char (point-min))
3760 (when (looking-at "echo foo")
3761 (tramp-set-connection-property proc "remote-echo" t)
3762 (tramp-message vec 5 "Remote echo still on. Ok.")
3763 ;; Make sure backspaces and their echo are enabled and no line
3764 ;; width magic interferes with them.
3765 (tramp-send-command vec "stty icanon erase ^H cols 32767" t))))
3767 (tramp-message vec 5 "Setting shell prompt")
3768 (tramp-send-command
3769 vec (format "PS1=%s" (tramp-shell-quote-argument tramp-end-of-output)) t)
3770 (tramp-send-command vec "PS2=''" t)
3771 (tramp-send-command vec "PS3=''" t)
3772 (tramp-send-command vec "PROMPT_COMMAND=''" t)
3774 ;; Try to set up the coding system correctly.
3775 ;; CCC this can't be the right way to do it. Hm.
3776 (tramp-message vec 5 "Determining coding system")
3777 (tramp-send-command vec "echo foo ; echo bar" t)
3778 (with-current-buffer (process-buffer proc)
3779 (goto-char (point-min))
3780 (if (featurep 'mule)
3781 ;; Use MULE to select the right EOL convention for communicating
3782 ;; with the process.
3783 (let* ((cs (or (tramp-compat-funcall 'process-coding-system proc)
3784 (cons 'undecided 'undecided)))
3785 cs-decode cs-encode)
3786 (when (symbolp cs) (setq cs (cons cs cs)))
3787 (setq cs-decode (car cs))
3788 (setq cs-encode (cdr cs))
3789 (unless cs-decode (setq cs-decode 'undecided))
3790 (unless cs-encode (setq cs-encode 'undecided))
3791 (setq cs-encode (tramp-compat-coding-system-change-eol-conversion
3792 cs-encode 'unix))
3793 (when (search-forward "\r" nil t)
3794 (setq cs-decode (tramp-compat-coding-system-change-eol-conversion
3795 cs-decode 'dos)))
3796 (tramp-compat-funcall
3797 'set-buffer-process-coding-system cs-decode cs-encode)
3798 (tramp-message
3799 vec 5 "Setting coding system to `%s' and `%s'" cs-decode cs-encode))
3800 ;; Look for ^M and do something useful if found.
3801 (when (search-forward "\r" nil t)
3802 ;; We have found a ^M but cannot frob the process coding system
3803 ;; because we're running on a non-MULE Emacs. Let's try
3804 ;; stty, instead.
3805 (tramp-send-command vec "stty -onlcr" t))))
3807 (tramp-send-command vec "set +o vi +o emacs" t)
3809 ;; Check whether the output of "uname -sr" has been changed. If
3810 ;; yes, this is a strong indication that we must expire all
3811 ;; connection properties. We start again with
3812 ;; `tramp-maybe-open-connection', it will be caught there.
3813 (tramp-message vec 5 "Checking system information")
3814 (let ((old-uname (tramp-get-connection-property vec "uname" nil))
3815 (new-uname
3816 (tramp-set-connection-property
3817 vec "uname"
3818 (tramp-send-command-and-read vec "echo \\\"`uname -sr`\\\""))))
3819 (when (and (stringp old-uname) (not (string-equal old-uname new-uname)))
3820 (tramp-message
3821 vec 3
3822 "Connection reset, because remote host changed from `%s' to `%s'"
3823 old-uname new-uname)
3824 ;; We want to keep the password.
3825 (tramp-cleanup-connection vec t t)
3826 (throw 'uname-changed (tramp-maybe-open-connection vec))))
3828 ;; Check whether the remote host suffers from buggy
3829 ;; `send-process-string'. This is known for FreeBSD (see comment in
3830 ;; `send_process', file process.c). I've tested sending 624 bytes
3831 ;; successfully, sending 625 bytes failed. Emacs makes a hack when
3832 ;; this host type is detected locally. It cannot handle remote
3833 ;; hosts, though.
3834 (with-tramp-connection-property proc "chunksize"
3835 (cond
3836 ((and (integerp tramp-chunksize) (> tramp-chunksize 0))
3837 tramp-chunksize)
3839 (tramp-message
3840 vec 5 "Checking remote host type for `send-process-string' bug")
3841 (if (string-match
3842 "^FreeBSD" (tramp-get-connection-property vec "uname" ""))
3843 500 0))))
3845 ;; Set remote PATH variable.
3846 (tramp-set-remote-path vec)
3848 ;; Search for a good shell before searching for a command which
3849 ;; checks if a file exists. This is done because Tramp wants to use
3850 ;; "test foo; echo $?" to check if various conditions hold, and
3851 ;; there are buggy /bin/sh implementations which don't execute the
3852 ;; "echo $?" part if the "test" part has an error. In particular,
3853 ;; the OpenSolaris /bin/sh is a problem. There are also other
3854 ;; problems with /bin/sh of OpenSolaris, like redirection of stderr
3855 ;; in function declarations, or changing HISTFILE in place.
3856 ;; Therefore, OpenSolaris' /bin/sh is replaced by bash, when
3857 ;; detected.
3858 (tramp-find-shell vec)
3860 ;; Disable unexpected output.
3861 (tramp-send-command vec "mesg n; biff n" t)
3863 ;; IRIX64 bash expands "!" even when in single quotes. This
3864 ;; destroys our shell functions, we must disable it. See
3865 ;; <http://stackoverflow.com/questions/3291692/irix-bash-shell-expands-expression-in-single-quotes-yet-shouldnt>.
3866 (when (string-match "^IRIX64" (tramp-get-connection-property vec "uname" ""))
3867 (tramp-send-command vec "set +H" t))
3869 ;; On BSD-like systems, ?\t is expanded to spaces. Suppress this.
3870 (when (string-match "BSD\\|Darwin"
3871 (tramp-get-connection-property vec "uname" ""))
3872 (tramp-send-command vec "stty -oxtabs" t))
3874 ;; Set `remote-tty' process property.
3875 (let ((tty (tramp-send-command-and-read vec "echo \\\"`tty`\\\"" 'noerror)))
3876 (unless (zerop (length tty))
3877 (tramp-compat-process-put proc 'remote-tty tty)))
3879 ;; Dump stty settings in the traces.
3880 (when (>= tramp-verbose 9)
3881 (tramp-send-command vec "stty -a" t))
3883 ;; Set the environment.
3884 (tramp-message vec 5 "Setting default environment")
3886 (let ((env (copy-sequence tramp-remote-process-environment))
3887 unset item)
3888 (while env
3889 (setq item (tramp-compat-split-string (car env) "="))
3890 (setcdr item (mapconcat 'identity (cdr item) "="))
3891 (if (and (stringp (cdr item)) (not (string-equal (cdr item) "")))
3892 (tramp-send-command
3893 vec (format "%s=%s; export %s" (car item) (cdr item) (car item)) t)
3894 (push (car item) unset))
3895 (setq env (cdr env)))
3896 (when unset
3897 (tramp-send-command
3898 vec (format "unset %s" (mapconcat 'identity unset " ")) t))))
3900 ;; Old text from documentation of tramp-methods:
3901 ;; Using a uuencode/uudecode inline method is discouraged, please use one
3902 ;; of the base64 methods instead since base64 encoding is much more
3903 ;; reliable and the commands are more standardized between the different
3904 ;; Unix versions. But if you can't use base64 for some reason, please
3905 ;; note that the default uudecode command does not work well for some
3906 ;; Unices, in particular AIX and Irix. For AIX, you might want to use
3907 ;; the following command for uudecode:
3909 ;; sed '/^begin/d;/^[` ]$/d;/^end/d' | iconv -f uucode -t ISO8859-1
3911 ;; For Irix, no solution is known yet.
3913 (autoload 'uudecode-decode-region "uudecode")
3915 (defconst tramp-local-coding-commands
3916 `((b64 base64-encode-region base64-decode-region)
3917 (uu tramp-uuencode-region uudecode-decode-region)
3918 (pack ,(format tramp-perl-pack "perl") ,(format tramp-perl-unpack "perl")))
3919 "List of local coding commands for inline transfer.
3920 Each item is a list that looks like this:
3922 \(FORMAT ENCODING DECODING\)
3924 FORMAT is symbol describing the encoding/decoding format. It can be
3925 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
3927 ENCODING and DECODING can be strings, giving commands, or symbols,
3928 giving functions. If they are strings, then they can contain
3929 the \"%s\" format specifier. If that specifier is present, the input
3930 filename will be put into the command line at that spot. If the
3931 specifier is not present, the input should be read from standard
3932 input.
3934 If they are functions, they will be called with two arguments, start
3935 and end of region, and are expected to replace the region contents
3936 with the encoded or decoded results, respectively.")
3938 (defconst tramp-remote-coding-commands
3939 '((b64 "base64" "base64 -d -i")
3940 ;; "-i" is more robust with older base64 from GNU coreutils.
3941 ;; However, I don't know whether all base64 versions do supports
3942 ;; this option.
3943 (b64 "base64" "base64 -d")
3944 (b64 "mimencode -b" "mimencode -u -b")
3945 (b64 "mmencode -b" "mmencode -u -b")
3946 (b64 "recode data..base64" "recode base64..data")
3947 (b64 tramp-perl-encode-with-module tramp-perl-decode-with-module)
3948 (b64 tramp-perl-encode tramp-perl-decode)
3949 (uu "uuencode xxx" "uudecode -o /dev/stdout" "test -c /dev/stdout")
3950 (uu "uuencode xxx" "uudecode -o -")
3951 (uu "uuencode xxx" "uudecode -p")
3952 (uu "uuencode xxx" tramp-uudecode)
3953 (pack tramp-perl-pack tramp-perl-unpack))
3954 "List of remote coding commands for inline transfer.
3955 Each item is a list that looks like this:
3957 \(FORMAT ENCODING DECODING [TEST]\)
3959 FORMAT is symbol describing the encoding/decoding format. It can be
3960 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
3962 ENCODING and DECODING can be strings, giving commands, or symbols,
3963 giving variables. If they are strings, then they can contain
3964 the \"%s\" format specifier. If that specifier is present, the input
3965 filename will be put into the command line at that spot. If the
3966 specifier is not present, the input should be read from standard
3967 input.
3969 If they are variables, this variable is a string containing a Perl
3970 implementation for this functionality. This Perl program will be transferred
3971 to the remote host, and it is available as shell function with the same name.
3973 The optional TEST command can be used for further tests, whether
3974 ENCODING and DECODING are applicable.")
3976 (defun tramp-find-inline-encoding (vec)
3977 "Find an inline transfer encoding that works.
3978 Goes through the list `tramp-local-coding-commands' and
3979 `tramp-remote-coding-commands'."
3980 (save-excursion
3981 (let ((local-commands tramp-local-coding-commands)
3982 (magic "xyzzy")
3983 (p (tramp-get-connection-process vec))
3984 loc-enc loc-dec rem-enc rem-dec rem-test litem ritem found)
3985 (while (and local-commands (not found))
3986 (setq litem (pop local-commands))
3987 (catch 'wont-work-local
3988 (let ((format (nth 0 litem))
3989 (remote-commands tramp-remote-coding-commands))
3990 (setq loc-enc (nth 1 litem))
3991 (setq loc-dec (nth 2 litem))
3992 ;; If the local encoder or decoder is a string, the
3993 ;; corresponding command has to work locally.
3994 (if (not (stringp loc-enc))
3995 (tramp-message
3996 vec 5 "Checking local encoding function `%s'" loc-enc)
3997 (tramp-message
3998 vec 5 "Checking local encoding command `%s' for sanity" loc-enc)
3999 (unless (zerop (tramp-call-local-coding-command
4000 loc-enc nil nil))
4001 (throw 'wont-work-local nil)))
4002 (if (not (stringp loc-dec))
4003 (tramp-message
4004 vec 5 "Checking local decoding function `%s'" loc-dec)
4005 (tramp-message
4006 vec 5 "Checking local decoding command `%s' for sanity" loc-dec)
4007 (unless (zerop (tramp-call-local-coding-command
4008 loc-dec nil nil))
4009 (throw 'wont-work-local nil)))
4010 ;; Search for remote coding commands with the same format
4011 (while (and remote-commands (not found))
4012 (setq ritem (pop remote-commands))
4013 (catch 'wont-work-remote
4014 (when (equal format (nth 0 ritem))
4015 (setq rem-enc (nth 1 ritem))
4016 (setq rem-dec (nth 2 ritem))
4017 (setq rem-test (nth 3 ritem))
4018 ;; Check the remote test command if exists.
4019 (when (stringp rem-test)
4020 (tramp-message
4021 vec 5 "Checking remote test command `%s'" rem-test)
4022 (unless (tramp-send-command-and-check vec rem-test t)
4023 (throw 'wont-work-remote nil)))
4024 ;; Check if remote encoding and decoding commands can be
4025 ;; called remotely with null input and output. This makes
4026 ;; sure there are no syntax errors and the command is really
4027 ;; found. Note that we do not redirect stdout to /dev/null,
4028 ;; for two reasons: when checking the decoding command, we
4029 ;; actually check the output it gives. And also, when
4030 ;; redirecting "mimencode" output to /dev/null, then as root
4031 ;; it might change the permissions of /dev/null!
4032 (when (not (stringp rem-enc))
4033 (let ((name (symbol-name rem-enc)))
4034 (while (string-match (regexp-quote "-") name)
4035 (setq name (replace-match "_" nil t name)))
4036 (tramp-maybe-send-script vec (symbol-value rem-enc) name)
4037 (setq rem-enc name)))
4038 (tramp-message
4039 vec 5
4040 "Checking remote encoding command `%s' for sanity" rem-enc)
4041 (unless (tramp-send-command-and-check
4042 vec (format "%s </dev/null" rem-enc) t)
4043 (throw 'wont-work-remote nil))
4045 (when (not (stringp rem-dec))
4046 (let ((name (symbol-name rem-dec)))
4047 (while (string-match (regexp-quote "-") name)
4048 (setq name (replace-match "_" nil t name)))
4049 (tramp-maybe-send-script vec (symbol-value rem-dec) name)
4050 (setq rem-dec name)))
4051 (tramp-message
4052 vec 5
4053 "Checking remote decoding command `%s' for sanity" rem-dec)
4054 (unless (tramp-send-command-and-check
4056 (format "echo %s | %s | %s" magic rem-enc rem-dec)
4058 (throw 'wont-work-remote nil))
4060 (with-current-buffer (tramp-get-buffer vec)
4061 (goto-char (point-min))
4062 (unless (looking-at (regexp-quote magic))
4063 (throw 'wont-work-remote nil)))
4065 ;; `rem-enc' and `rem-dec' could be a string meanwhile.
4066 (setq rem-enc (nth 1 ritem))
4067 (setq rem-dec (nth 2 ritem))
4068 (setq found t)))))))
4070 ;; Did we find something?
4071 (unless found
4072 (tramp-error
4073 vec 'file-error "Couldn't find an inline transfer encoding"))
4075 ;; Set connection properties. Since the commands are risky (due
4076 ;; to output direction), we cache them in the process cache.
4077 (tramp-message vec 5 "Using local encoding `%s'" loc-enc)
4078 (tramp-set-connection-property p "local-encoding" loc-enc)
4079 (tramp-message vec 5 "Using local decoding `%s'" loc-dec)
4080 (tramp-set-connection-property p "local-decoding" loc-dec)
4081 (tramp-message vec 5 "Using remote encoding `%s'" rem-enc)
4082 (tramp-set-connection-property p "remote-encoding" rem-enc)
4083 (tramp-message vec 5 "Using remote decoding `%s'" rem-dec)
4084 (tramp-set-connection-property p "remote-decoding" rem-dec))))
4086 (defun tramp-call-local-coding-command (cmd input output)
4087 "Call the local encoding or decoding command.
4088 If CMD contains \"%s\", provide input file INPUT there in command.
4089 Otherwise, INPUT is passed via standard input.
4090 INPUT can also be nil which means `/dev/null'.
4091 OUTPUT can be a string (which specifies a filename), or t (which
4092 means standard output and thus the current buffer), or nil (which
4093 means discard it)."
4094 (tramp-call-process
4095 tramp-encoding-shell
4096 (when (and input (not (string-match "%s" cmd))) input)
4097 (if (eq output t) t nil)
4099 tramp-encoding-command-switch
4100 (concat
4101 (if (string-match "%s" cmd) (format cmd input) cmd)
4102 (if (stringp output) (concat " >" output) ""))))
4104 (defconst tramp-inline-compress-commands
4105 '(("gzip" "gzip -d")
4106 ("bzip2" "bzip2 -d")
4107 ("xz" "xz -d")
4108 ("compress" "compress -d"))
4109 "List of compress and decompress commands for inline transfer.
4110 Each item is a list that looks like this:
4112 \(COMPRESS DECOMPRESS\)
4114 COMPRESS or DECOMPRESS are strings with the respective commands.")
4116 (defun tramp-find-inline-compress (vec)
4117 "Find an inline transfer compress command that works.
4118 Goes through the list `tramp-inline-compress-commands'."
4119 (save-excursion
4120 (let ((commands tramp-inline-compress-commands)
4121 (magic "xyzzy")
4122 (p (tramp-get-connection-process vec))
4123 item compress decompress found)
4124 (while (and commands (not found))
4125 (catch 'next
4126 (setq item (pop commands)
4127 compress (nth 0 item)
4128 decompress (nth 1 item))
4129 (tramp-message
4130 vec 5
4131 "Checking local compress commands `%s', `%s' for sanity"
4132 compress decompress)
4133 (unless
4134 (zerop
4135 (tramp-call-local-coding-command
4136 (format
4137 ;; Windows shells need the program file name after
4138 ;; the pipe symbol be quoted if they use forward
4139 ;; slashes as directory separators.
4140 (if (memq system-type '(windows-nt))
4141 "echo %s | \"%s\" | \"%s\""
4142 "echo %s | %s | %s")
4143 magic compress decompress) nil nil))
4144 (throw 'next nil))
4145 (tramp-message
4146 vec 5
4147 "Checking remote compress commands `%s', `%s' for sanity"
4148 compress decompress)
4149 (unless (tramp-send-command-and-check
4150 vec (format "echo %s | %s | %s" magic compress decompress) t)
4151 (throw 'next nil))
4152 (setq found t)))
4154 ;; Did we find something?
4155 (if found
4156 (progn
4157 ;; Set connection properties. Since the commands are
4158 ;; risky (due to output direction), we cache them in the
4159 ;; process cache.
4160 (tramp-message
4161 vec 5 "Using inline transfer compress command `%s'" compress)
4162 (tramp-set-connection-property p "inline-compress" compress)
4163 (tramp-message
4164 vec 5 "Using inline transfer decompress command `%s'" decompress)
4165 (tramp-set-connection-property p "inline-decompress" decompress))
4167 (tramp-set-connection-property p "inline-compress" nil)
4168 (tramp-set-connection-property p "inline-decompress" nil)
4169 (tramp-message
4170 vec 2 "Couldn't find an inline transfer compress command")))))
4172 (defun tramp-compute-multi-hops (vec)
4173 "Expands VEC according to `tramp-default-proxies-alist'.
4174 Gateway hops are already opened."
4175 (let ((target-alist `(,vec))
4176 (hops (or (tramp-file-name-hop vec) ""))
4177 (item vec)
4178 choices proxy)
4180 ;; Ad-hoc proxy definitions.
4181 (dolist (proxy (reverse (split-string hops tramp-postfix-hop-regexp 'omit)))
4182 (let ((user (tramp-file-name-user item))
4183 (host (tramp-file-name-host item))
4184 (proxy (concat
4185 tramp-prefix-format proxy tramp-postfix-host-format)))
4186 (tramp-message
4187 vec 5 "Add proxy (\"%s\" \"%s\" \"%s\")"
4188 (and (stringp host) (regexp-quote host))
4189 (and (stringp user) (regexp-quote user))
4190 proxy)
4191 ;; Add the hop.
4192 (add-to-list
4193 'tramp-default-proxies-alist
4194 (list (and (stringp host) (regexp-quote host))
4195 (and (stringp user) (regexp-quote user))
4196 proxy))
4197 (setq item (tramp-dissect-file-name proxy))))
4198 ;; Save the new value.
4199 (when (and hops tramp-save-ad-hoc-proxies)
4200 (customize-save-variable
4201 'tramp-default-proxies-alist tramp-default-proxies-alist))
4203 ;; Look for proxy hosts to be passed.
4204 (setq choices tramp-default-proxies-alist)
4205 (while choices
4206 (setq item (pop choices)
4207 proxy (eval (nth 2 item)))
4208 (when (and
4209 ;; Host.
4210 (string-match (or (eval (nth 0 item)) "")
4211 (or (tramp-file-name-host (car target-alist)) ""))
4212 ;; User.
4213 (string-match (or (eval (nth 1 item)) "")
4214 (or (tramp-file-name-user (car target-alist)) "")))
4215 (if (null proxy)
4216 ;; No more hops needed.
4217 (setq choices nil)
4218 ;; Replace placeholders.
4219 (setq proxy
4220 (format-spec
4221 proxy
4222 (format-spec-make
4223 ?u (or (tramp-file-name-user (car target-alist)) "")
4224 ?h (or (tramp-file-name-host (car target-alist)) ""))))
4225 (with-parsed-tramp-file-name proxy l
4226 ;; Add the hop.
4227 (push l target-alist)
4228 ;; Start next search.
4229 (setq choices tramp-default-proxies-alist)))))
4231 ;; Handle gateways.
4232 (when (and (boundp 'tramp-gw-tunnel-method) (boundp 'tramp-gw-socks-method)
4233 (string-match
4234 (format
4235 "^\\(%s\\|%s\\)$" tramp-gw-tunnel-method tramp-gw-socks-method)
4236 (tramp-file-name-method (car target-alist))))
4237 (let ((gw (pop target-alist))
4238 (hop (pop target-alist)))
4239 ;; Is the method prepared for gateways?
4240 (unless (tramp-file-name-port hop)
4241 (tramp-error
4242 vec 'file-error
4243 "Connection `%s' is not supported for gateway access." hop))
4244 ;; Open the gateway connection.
4245 (push
4246 (vector
4247 (tramp-file-name-method hop) (tramp-file-name-user hop)
4248 (tramp-compat-funcall 'tramp-gw-open-connection vec gw hop) nil nil)
4249 target-alist)
4250 ;; For the password prompt, we need the correct values.
4251 ;; Therefore, we must remember the gateway vector. But we
4252 ;; cannot do it as connection property, because it shouldn't
4253 ;; be persistent. And we have no started process yet either.
4254 (tramp-set-file-property (car target-alist) "" "gateway" hop)))
4256 ;; Foreign and out-of-band methods are not supported for multi-hops.
4257 (when (cdr target-alist)
4258 (setq choices target-alist)
4259 (while choices
4260 (setq item (pop choices))
4261 (when
4263 (not
4264 (tramp-get-method-parameter
4265 (tramp-file-name-method item) 'tramp-login-program))
4266 (tramp-get-method-parameter
4267 (tramp-file-name-method item) 'tramp-copy-program))
4268 (tramp-error
4269 vec 'file-error
4270 "Method `%s' is not supported for multi-hops."
4271 (tramp-file-name-method item)))))
4273 ;; In case the host name is not used for the remote shell
4274 ;; command, the user could be misguided by applying a random
4275 ;; hostname.
4276 (let* ((v (car target-alist))
4277 (method (tramp-file-name-method v))
4278 (host (tramp-file-name-host v)))
4279 (unless
4281 ;; There are multi-hops.
4282 (cdr target-alist)
4283 ;; The host name is used for the remote shell command.
4284 (member
4285 '("%h") (tramp-get-method-parameter method 'tramp-login-args))
4286 ;; The host is local. We cannot use `tramp-local-host-p'
4287 ;; here, because it opens a connection as well.
4288 (string-match tramp-local-host-regexp host))
4289 (tramp-error
4290 v 'file-error
4291 "Host `%s' looks like a remote host, `%s' can only use the local host"
4292 host method)))
4294 ;; Result.
4295 target-alist))
4297 (defun tramp-maybe-open-connection (vec)
4298 "Maybe open a connection VEC.
4299 Does not do anything if a connection is already open, but re-opens the
4300 connection if a previous connection has died for some reason."
4301 (tramp-check-proper-method-and-host vec)
4303 (let ((p (tramp-get-connection-process vec))
4304 (process-name (tramp-get-connection-property vec "process-name" nil))
4305 (process-environment (copy-sequence process-environment))
4306 (pos (with-current-buffer (tramp-get-connection-buffer vec) (point))))
4308 ;; If Tramp opens the same connection within a short time frame,
4309 ;; there is a problem. We shall signal this.
4310 (unless (or (and p (processp p) (memq (process-status p) '(run open)))
4311 (not (equal (butlast (append vec nil) 2)
4312 (car tramp-current-connection)))
4313 (> (tramp-time-diff
4314 (current-time) (cdr tramp-current-connection))
4315 (or tramp-connection-min-time-diff 0)))
4316 (throw 'suppress 'suppress))
4318 ;; If too much time has passed since last command was sent, look
4319 ;; whether process is still alive. If it isn't, kill it. When
4320 ;; using ssh, it can sometimes happen that the remote end has hung
4321 ;; up but the local ssh client doesn't recognize this until it
4322 ;; tries to send some data to the remote end. So that's why we
4323 ;; try to send a command from time to time, then look again
4324 ;; whether the process is really alive.
4325 (condition-case nil
4326 (when (and (> (tramp-time-diff
4327 (current-time)
4328 (tramp-get-connection-property
4329 p "last-cmd-time" '(0 0 0)))
4331 p (processp p) (memq (process-status p) '(run open)))
4332 (tramp-send-command vec "echo are you awake" t t)
4333 (unless (and (memq (process-status p) '(run open))
4334 (tramp-wait-for-output p 10))
4335 ;; The error will be caught locally.
4336 (tramp-error vec 'file-error "Awake did fail")))
4337 (file-error
4338 (tramp-cleanup-connection vec t)
4339 (setq p nil)))
4341 ;; New connection must be opened.
4342 (condition-case err
4343 (unless (and p (processp p) (memq (process-status p) '(run open)))
4345 ;; If `non-essential' is non-nil, don't reopen a new connection.
4346 (when (and (boundp 'non-essential) (symbol-value 'non-essential))
4347 (throw 'non-essential 'non-essential))
4349 (with-tramp-progress-reporter
4350 vec 3
4351 (if (zerop (length (tramp-file-name-user vec)))
4352 (format "Opening connection for %s using %s"
4353 (tramp-file-name-host vec)
4354 (tramp-file-name-method vec))
4355 (format "Opening connection for %s@%s using %s"
4356 (tramp-file-name-user vec)
4357 (tramp-file-name-host vec)
4358 (tramp-file-name-method vec)))
4360 (catch 'uname-changed
4361 ;; Start new process.
4362 (when (and p (processp p))
4363 (delete-process p))
4364 (setenv "TERM" tramp-terminal-type)
4365 (setenv "LC_ALL" "C")
4366 (setenv "PROMPT_COMMAND")
4367 (setenv "PS1" tramp-initial-end-of-output)
4368 (let* ((target-alist (tramp-compute-multi-hops vec))
4369 ;; We will apply `tramp-ssh-controlmaster-options'
4370 ;; only for the first hop.
4371 (options (if tramp-use-ssh-controlmaster-options
4372 tramp-ssh-controlmaster-options ""))
4373 (process-connection-type tramp-process-connection-type)
4374 (process-adaptive-read-buffering nil)
4375 (coding-system-for-read nil)
4376 ;; This must be done in order to avoid our file
4377 ;; name handler.
4378 (p (let ((default-directory
4379 (tramp-compat-temporary-file-directory)))
4380 (apply
4381 'start-process
4382 (tramp-get-connection-name vec)
4383 (tramp-get-connection-buffer vec)
4384 (if tramp-encoding-command-interactive
4385 (list tramp-encoding-shell
4386 tramp-encoding-command-interactive)
4387 (list tramp-encoding-shell))))))
4389 ;; Set sentinel and query flag.
4390 (tramp-set-connection-property p "vector" vec)
4391 (set-process-sentinel p 'tramp-process-sentinel)
4392 (tramp-compat-set-process-query-on-exit-flag p nil)
4393 (setq tramp-current-connection
4394 (cons (butlast (append vec nil) 2) (current-time))
4395 tramp-current-host (system-name))
4397 (tramp-message
4398 vec 6 "%s" (mapconcat 'identity (process-command p) " "))
4400 ;; Check whether process is alive.
4401 (tramp-barf-if-no-shell-prompt
4402 p 10
4403 "Couldn't find local shell prompt for %s" tramp-encoding-shell)
4405 ;; Now do all the connections as specified.
4406 (while target-alist
4407 (let* ((hop (car target-alist))
4408 (l-method (tramp-file-name-method hop))
4409 (l-user (tramp-file-name-user hop))
4410 (l-host (tramp-file-name-host hop))
4411 (l-port nil)
4412 (login-program
4413 (tramp-get-method-parameter
4414 l-method 'tramp-login-program))
4415 (login-args
4416 (tramp-get-method-parameter
4417 l-method 'tramp-login-args))
4418 (async-args
4419 (tramp-get-method-parameter
4420 l-method 'tramp-async-args))
4421 (connection-timeout
4422 (tramp-get-method-parameter
4423 l-method 'tramp-connection-timeout))
4424 (gw-args
4425 (tramp-get-method-parameter l-method 'tramp-gw-args))
4426 (gw (tramp-get-file-property hop "" "gateway" nil))
4427 (g-method (and gw (tramp-file-name-method gw)))
4428 (g-user (and gw (tramp-file-name-user gw)))
4429 (g-host (and gw (tramp-file-name-real-host gw)))
4430 (command login-program)
4431 ;; We don't create the temporary file. In
4432 ;; fact, it is just a prefix for the
4433 ;; ControlPath option of ssh; the real
4434 ;; temporary file has another name, and it is
4435 ;; created and protected by ssh. It is also
4436 ;; removed by ssh when the connection is
4437 ;; closed. The temporary file name is cached
4438 ;; in the main connection process, therefore
4439 ;; we cannot use `tramp-get-connection-process'.
4440 (tmpfile
4441 (with-tramp-connection-property
4442 (get-process (tramp-buffer-name vec)) "temp-file"
4443 (make-temp-name
4444 (expand-file-name
4445 tramp-temp-name-prefix
4446 (tramp-compat-temporary-file-directory)))))
4447 spec r-shell)
4449 ;; Add arguments for asynchronous processes.
4450 (when (and process-name async-args)
4451 (setq login-args (append async-args login-args)))
4453 ;; Add gateway arguments if necessary.
4454 (when (and gw gw-args)
4455 (setq login-args (append gw-args login-args)))
4457 ;; Check for port number. Until now, there's no
4458 ;; need for handling like method, user, host.
4459 (when (string-match tramp-host-with-port-regexp l-host)
4460 (setq l-port (match-string 2 l-host)
4461 l-host (match-string 1 l-host)))
4463 ;; Check, whether there is a restricted shell.
4464 (dolist (elt tramp-restricted-shell-hosts-alist)
4465 (when (string-match elt tramp-current-host)
4466 (setq r-shell t)))
4468 ;; Set variables for computing the prompt for
4469 ;; reading password. They can also be derived
4470 ;; from a gateway.
4471 (setq tramp-current-method (or g-method l-method)
4472 tramp-current-user (or g-user l-user)
4473 tramp-current-host (or g-host l-host))
4475 ;; Replace login-args place holders.
4476 (setq
4477 l-host (or l-host "")
4478 l-user (or l-user "")
4479 l-port (or l-port "")
4480 spec (format-spec-make ?t tmpfile)
4481 options (format-spec options spec)
4482 spec (format-spec-make
4483 ?h l-host ?u l-user ?p l-port ?c options)
4484 command
4485 (concat
4486 ;; We do not want to see the trailing local
4487 ;; prompt in `start-file-process'.
4488 (unless r-shell "exec ")
4489 command " "
4490 (mapconcat
4491 (lambda (x)
4492 (setq x (mapcar (lambda (y) (format-spec y spec)) x))
4493 (unless (member "" x) (mapconcat 'identity x " ")))
4494 login-args " ")
4495 ;; Local shell could be a Windows COMSPEC. It
4496 ;; doesn't know the ";" syntax, but we must exit
4497 ;; always for `start-file-process'. It could
4498 ;; also be a restricted shell, which does not
4499 ;; allow "exec".
4500 (when r-shell " && exit || exit")))
4502 ;; Send the command.
4503 (tramp-message vec 3 "Sending command `%s'" command)
4504 (tramp-send-command vec command t t)
4505 (tramp-process-actions
4506 p vec pos tramp-actions-before-shell
4507 (or connection-timeout tramp-connection-timeout))
4508 (tramp-message
4509 vec 3 "Found remote shell prompt on `%s'" l-host))
4510 ;; Next hop.
4511 (setq options ""
4512 target-alist (cdr target-alist)))
4514 ;; Make initial shell settings.
4515 (tramp-open-connection-setup-interactive-shell p vec)))))
4517 ;; When the user did interrupt, we must cleanup.
4518 (quit
4519 (tramp-cleanup-connection vec t)
4520 ;; Propagate the quit signal.
4521 (signal (car err) (cdr err))))))
4523 (defun tramp-send-command (vec command &optional neveropen nooutput)
4524 "Send the COMMAND to connection VEC.
4525 Erases temporary buffer before sending the command. If optional
4526 arg NEVEROPEN is non-nil, never try to open the connection. This
4527 is meant to be used from `tramp-maybe-open-connection' only. The
4528 function waits for output unless NOOUTPUT is set."
4529 (unless neveropen (tramp-maybe-open-connection vec))
4530 (let ((p (tramp-get-connection-process vec)))
4531 (when (tramp-get-connection-property p "remote-echo" nil)
4532 ;; We mark the command string that it can be erased in the output buffer.
4533 (tramp-set-connection-property p "check-remote-echo" t)
4534 (setq command (format "%s%s%s" tramp-echo-mark command tramp-echo-mark)))
4535 ;; Some busyboxes tend to close the connection when we use the
4536 ;; following syntax for here-documents. This we cannot test; it
4537 ;; shall be set via `tramp-connection-properties'.
4538 (when (and (string-match "<<'EOF'" command)
4539 (not (tramp-get-connection-property vec "busybox" nil)))
4540 ;; Unset $PS1 when using here documents, in order to avoid
4541 ;; multiple prompts.
4542 (setq command (concat "(PS1= ; " command "\n)")))
4543 ;; Send the command.
4544 (tramp-message vec 6 "%s" command)
4545 (tramp-send-string vec command)
4546 (unless nooutput (tramp-wait-for-output p))))
4548 (defun tramp-wait-for-output (proc &optional timeout)
4549 "Wait for output from remote command."
4550 (unless (buffer-live-p (process-buffer proc))
4551 (delete-process proc)
4552 (tramp-error proc 'file-error "Process `%s' not available, try again" proc))
4553 (with-current-buffer (process-buffer proc)
4554 (let* (;; Initially, `tramp-end-of-output' is "#$ ". There might
4555 ;; be leading escape sequences, which must be ignored.
4556 (regexp (format "[^#$\n]*%s\r?$" (regexp-quote tramp-end-of-output)))
4557 ;; Sometimes, the commands do not return a newline but a
4558 ;; null byte before the shell prompt, for example "git
4559 ;; ls-files -c -z ...".
4560 (regexp1 (format "\\(^\\|\000\\)%s" regexp))
4561 (found (tramp-wait-for-regexp proc timeout regexp1)))
4562 (if found
4563 (let (buffer-read-only)
4564 ;; A simple-minded busybox has sent " ^H" sequences.
4565 ;; Delete them.
4566 (goto-char (point-min))
4567 (when (re-search-forward "^\\(.\b\\)+$" (point-at-eol) t)
4568 (forward-line 1)
4569 (delete-region (point-min) (point)))
4570 ;; Delete the prompt.
4571 (goto-char (point-max))
4572 (re-search-backward regexp nil t)
4573 (delete-region (point) (point-max)))
4574 (if timeout
4575 (tramp-error
4576 proc 'file-error
4577 "[[Remote prompt `%s' not found in %d secs]]"
4578 tramp-end-of-output timeout)
4579 (tramp-error
4580 proc 'file-error
4581 "[[Remote prompt `%s' not found]]" tramp-end-of-output)))
4582 ;; Return value is whether end-of-output sentinel was found.
4583 found)))
4585 (defun tramp-send-command-and-check
4586 (vec command &optional subshell dont-suppress-err)
4587 "Run COMMAND and check its exit status.
4588 Sends `echo $?' along with the COMMAND for checking the exit status. If
4589 COMMAND is nil, just sends `echo $?'. Returns the exit status found.
4591 If the optional argument SUBSHELL is non-nil, the command is
4592 executed in a subshell, ie surrounded by parentheses. If
4593 DONT-SUPPRESS-ERR is non-nil, stderr won't be sent to /dev/null."
4594 (tramp-send-command
4596 (concat (if subshell "( " "")
4597 command
4598 (if command (if dont-suppress-err "; " " 2>/dev/null; ") "")
4599 "echo tramp_exit_status $?"
4600 (if subshell " )" "")))
4601 (with-current-buffer (tramp-get-connection-buffer vec)
4602 (goto-char (point-max))
4603 (unless (re-search-backward "tramp_exit_status [0-9]+" nil t)
4604 (tramp-error
4605 vec 'file-error "Couldn't find exit status of `%s'" command))
4606 (skip-chars-forward "^ ")
4607 (prog1
4608 (zerop (read (current-buffer)))
4609 (let (buffer-read-only)
4610 (delete-region (match-beginning 0) (point-max))))))
4612 (defun tramp-barf-unless-okay (vec command fmt &rest args)
4613 "Run COMMAND, check exit status, throw error if exit status not okay.
4614 Similar to `tramp-send-command-and-check' but accepts two more arguments
4615 FMT and ARGS which are passed to `error'."
4616 (or (tramp-send-command-and-check vec command)
4617 (apply 'tramp-error vec 'file-error fmt args)))
4619 (defun tramp-send-command-and-read (vec command &optional noerror)
4620 "Run COMMAND and return the output, which must be a Lisp expression.
4621 In case there is no valid Lisp expression and NOERROR is nil, it
4622 raises an error."
4623 (when (if noerror
4624 (tramp-send-command-and-check vec command)
4625 (tramp-barf-unless-okay
4626 vec command "`%s' returns with error" command))
4627 (with-current-buffer (tramp-get-connection-buffer vec)
4628 ;; Read the expression.
4629 (goto-char (point-min))
4630 (condition-case nil
4631 (prog1 (read (current-buffer))
4632 ;; Error handling.
4633 (when (re-search-forward "\\S-" (point-at-eol) t)
4634 (error nil)))
4635 (error (unless noerror
4636 (tramp-error
4637 vec 'file-error
4638 "`%s' does not return a valid Lisp expression: `%s'"
4639 command (buffer-string))))))))
4641 (defun tramp-convert-file-attributes (vec attr)
4642 "Convert `file-attributes' ATTR generated by perl script, stat or ls.
4643 Convert file mode bits to string and set virtual device number.
4644 Return ATTR."
4645 (when attr
4646 ;; Remove color escape sequences from symlink.
4647 (when (stringp (car attr))
4648 (while (string-match tramp-color-escape-sequence-regexp (car attr))
4649 (setcar attr (replace-match "" nil nil (car attr)))))
4650 ;; Convert uid and gid. Use -1 as indication of unusable value.
4651 (when (and (numberp (nth 2 attr)) (< (nth 2 attr) 0))
4652 (setcar (nthcdr 2 attr) -1))
4653 (when (and (floatp (nth 2 attr))
4654 (<= (nth 2 attr) (tramp-compat-most-positive-fixnum)))
4655 (setcar (nthcdr 2 attr) (round (nth 2 attr))))
4656 (when (and (numberp (nth 3 attr)) (< (nth 3 attr) 0))
4657 (setcar (nthcdr 3 attr) -1))
4658 (when (and (floatp (nth 3 attr))
4659 (<= (nth 3 attr) (tramp-compat-most-positive-fixnum)))
4660 (setcar (nthcdr 3 attr) (round (nth 3 attr))))
4661 ;; Convert last access time.
4662 (unless (listp (nth 4 attr))
4663 (setcar (nthcdr 4 attr)
4664 (list (floor (nth 4 attr) 65536)
4665 (floor (mod (nth 4 attr) 65536)))))
4666 ;; Convert last modification time.
4667 (unless (listp (nth 5 attr))
4668 (setcar (nthcdr 5 attr)
4669 (list (floor (nth 5 attr) 65536)
4670 (floor (mod (nth 5 attr) 65536)))))
4671 ;; Convert last status change time.
4672 (unless (listp (nth 6 attr))
4673 (setcar (nthcdr 6 attr)
4674 (list (floor (nth 6 attr) 65536)
4675 (floor (mod (nth 6 attr) 65536)))))
4676 ;; Convert file size.
4677 (when (< (nth 7 attr) 0)
4678 (setcar (nthcdr 7 attr) -1))
4679 (when (and (floatp (nth 7 attr))
4680 (<= (nth 7 attr) (tramp-compat-most-positive-fixnum)))
4681 (setcar (nthcdr 7 attr) (round (nth 7 attr))))
4682 ;; Convert file mode bits to string.
4683 (unless (stringp (nth 8 attr))
4684 (setcar (nthcdr 8 attr) (tramp-file-mode-from-int (nth 8 attr)))
4685 (when (stringp (car attr))
4686 (aset (nth 8 attr) 0 ?l)))
4687 ;; Convert directory indication bit.
4688 (when (string-match "^d" (nth 8 attr))
4689 (setcar attr t))
4690 ;; Convert symlink from `tramp-do-file-attributes-with-stat'.
4691 (when (consp (car attr))
4692 (if (and (stringp (caar attr))
4693 (string-match ".+ -> .\\(.+\\)." (caar attr)))
4694 (setcar attr (match-string 1 (caar attr)))
4695 (setcar attr nil)))
4696 ;; Set file's gid change bit.
4697 (setcar (nthcdr 9 attr)
4698 (if (numberp (nth 3 attr))
4699 (not (= (nth 3 attr)
4700 (tramp-get-remote-gid vec 'integer)))
4701 (not (string-equal
4702 (nth 3 attr)
4703 (tramp-get-remote-gid vec 'string)))))
4704 ;; Convert inode.
4705 (unless (listp (nth 10 attr))
4706 (setcar (nthcdr 10 attr)
4707 (condition-case nil
4708 (cons (floor (nth 10 attr) 65536)
4709 (floor (mod (nth 10 attr) 65536)))
4710 ;; Inodes can be incredible huge. We must hide this.
4711 (error (tramp-get-inode vec)))))
4712 ;; Set virtual device number.
4713 (setcar (nthcdr 11 attr)
4714 (tramp-get-device vec))
4715 attr))
4717 (defun tramp-shell-case-fold (string)
4718 "Converts STRING to shell glob pattern which ignores case."
4719 (mapconcat
4720 (lambda (c)
4721 (if (equal (downcase c) (upcase c))
4722 (vector c)
4723 (format "[%c%c]" (downcase c) (upcase c))))
4724 string
4725 ""))
4727 (defun tramp-make-copy-program-file-name (vec)
4728 "Create a file name suitable to be passed to `rcp' and workalikes."
4729 (let ((user (tramp-file-name-user vec))
4730 (host (tramp-file-name-real-host vec))
4731 (localname (tramp-shell-quote-argument
4732 (tramp-file-name-localname vec))))
4733 (if (not (zerop (length user)))
4734 (format "%s@%s:%s" user host localname)
4735 (format "%s:%s" host localname))))
4737 (defun tramp-method-out-of-band-p (vec size)
4738 "Return t if this is an out-of-band method, nil otherwise."
4739 (and
4740 ;; It shall be an out-of-band method.
4741 (tramp-get-method-parameter (tramp-file-name-method vec) 'tramp-copy-program)
4742 ;; There must be a size, otherwise the file doesn't exist.
4743 (numberp size)
4744 ;; Either the file size is large enough, or (in rare cases) there
4745 ;; does not exist a remote encoding.
4746 (or (null tramp-copy-size-limit)
4747 (> size tramp-copy-size-limit)
4748 (null (tramp-get-inline-coding vec "remote-encoding" size)))))
4750 ;; Variables local to connection.
4752 (defun tramp-get-remote-path (vec)
4753 (with-tramp-connection-property
4754 ;; When `tramp-own-remote-path' is in `tramp-remote-path', we
4755 ;; cache the result for the session only. Otherwise, the result
4756 ;; is cached persistently.
4757 (if (memq 'tramp-own-remote-path tramp-remote-path)
4758 (tramp-get-connection-process vec)
4759 vec)
4760 "remote-path"
4761 (let* ((remote-path (copy-tree tramp-remote-path))
4762 (elt1 (memq 'tramp-default-remote-path remote-path))
4763 (elt2 (memq 'tramp-own-remote-path remote-path))
4764 (default-remote-path
4765 (when elt1
4767 (tramp-send-command-and-read
4768 vec "echo \\\"`getconf PATH 2>/dev/null`\\\"" 'noerror)
4769 ;; Default if "getconf" is not available.
4770 (progn
4771 (tramp-message
4772 vec 3
4773 "`getconf PATH' not successful, using default value \"%s\"."
4774 "/bin:/usr/bin")
4775 "/bin:/usr/bin"))))
4776 (own-remote-path
4777 (when elt2
4778 (condition-case nil
4779 (tramp-send-command-and-read vec "echo \\\"$PATH\\\"")
4780 (error
4781 (tramp-message
4782 vec 3 "$PATH not set, ignoring `tramp-own-remote-path'.")
4783 nil)))))
4785 ;; Replace place holder `tramp-default-remote-path'.
4786 (when elt1
4787 (setcdr elt1
4788 (append
4789 (tramp-compat-split-string default-remote-path ":")
4790 (cdr elt1)))
4791 (setq remote-path (delq 'tramp-default-remote-path remote-path)))
4793 ;; Replace place holder `tramp-own-remote-path'.
4794 (when elt2
4795 (setcdr elt2
4796 (append
4797 (tramp-compat-split-string own-remote-path ":")
4798 (cdr elt2)))
4799 (setq remote-path (delq 'tramp-own-remote-path remote-path)))
4801 ;; Remove double entries.
4802 (setq elt1 remote-path)
4803 (while (consp elt1)
4804 (while (and (car elt1) (setq elt2 (member (car elt1) (cdr elt1))))
4805 (setcar elt2 nil))
4806 (setq elt1 (cdr elt1)))
4808 ;; Remove non-existing directories.
4809 (delq
4811 (mapcar
4812 (lambda (x)
4813 (and
4814 (stringp x)
4815 (file-directory-p
4816 (tramp-make-tramp-file-name
4817 (tramp-file-name-method vec)
4818 (tramp-file-name-user vec)
4819 (tramp-file-name-host vec)
4822 remote-path)))))
4824 (defun tramp-get-ls-command (vec)
4825 (with-tramp-connection-property vec "ls"
4826 (tramp-message vec 5 "Finding a suitable `ls' command")
4828 (catch 'ls-found
4829 (dolist (cmd '("ls" "gnuls" "gls"))
4830 (let ((dl (tramp-get-remote-path vec))
4831 result)
4832 (while (and dl (setq result (tramp-find-executable vec cmd dl t t)))
4833 ;; Check parameters. On busybox, "ls" output coloring is
4834 ;; enabled by default sometimes. So we try to disable it
4835 ;; when possible. $LS_COLORING is not supported there.
4836 ;; Some "ls" versions are sensible wrt the order of
4837 ;; arguments, they fail when "-al" is after the
4838 ;; "--color=never" argument (for example on FreeBSD).
4839 (when (tramp-send-command-and-check
4840 vec (format "%s -lnd /" result))
4841 (when (tramp-send-command-and-check
4842 vec (format
4843 "%s --color=never -al /dev/null" result))
4844 (setq result (concat result " --color=never")))
4845 (throw 'ls-found result))
4846 (setq dl (cdr dl))))))
4847 (tramp-error vec 'file-error "Couldn't find a proper `ls' command"))))
4849 (defun tramp-get-ls-command-with-dired (vec)
4850 (save-match-data
4851 (with-tramp-connection-property vec "ls-dired"
4852 (tramp-message vec 5 "Checking, whether `ls --dired' works")
4853 ;; Some "ls" versions are sensible wrt the order of arguments,
4854 ;; they fail when "-al" is after the "--dired" argument (for
4855 ;; example on FreeBSD).
4856 (tramp-send-command-and-check
4857 vec (format "%s --dired -al /dev/null" (tramp-get-ls-command vec))))))
4859 (defun tramp-get-test-command (vec)
4860 (with-tramp-connection-property vec "test"
4861 (tramp-message vec 5 "Finding a suitable `test' command")
4862 (if (tramp-send-command-and-check vec "test 0")
4863 "test"
4864 (tramp-find-executable vec "test" (tramp-get-remote-path vec)))))
4866 (defun tramp-get-test-nt-command (vec)
4867 ;; Does `test A -nt B' work? Use abominable `find' construct if it
4868 ;; doesn't. BSD/OS 4.0 wants the parentheses around the command,
4869 ;; for otherwise the shell crashes.
4870 (with-tramp-connection-property vec "test-nt"
4872 (progn
4873 (tramp-send-command
4874 vec (format "( %s / -nt / )" (tramp-get-test-command vec)))
4875 (with-current-buffer (tramp-get-buffer vec)
4876 (goto-char (point-min))
4877 (when (looking-at (regexp-quote tramp-end-of-output))
4878 (format "%s %%s -nt %%s" (tramp-get-test-command vec)))))
4879 (progn
4880 (tramp-send-command
4882 (format
4883 "tramp_test_nt () {\n%s -n \"`find $1 -prune -newer $2 -print`\"\n}"
4884 (tramp-get-test-command vec)))
4885 "tramp_test_nt %s %s"))))
4887 (defun tramp-get-file-exists-command (vec)
4888 (with-tramp-connection-property vec "file-exists"
4889 (tramp-message vec 5 "Finding command to check if file exists")
4890 (tramp-find-file-exists-command vec)))
4892 (defun tramp-get-remote-ln (vec)
4893 (with-tramp-connection-property vec "ln"
4894 (tramp-message vec 5 "Finding a suitable `ln' command")
4895 (tramp-find-executable vec "ln" (tramp-get-remote-path vec))))
4897 (defun tramp-get-remote-perl (vec)
4898 (with-tramp-connection-property vec "perl"
4899 (tramp-message vec 5 "Finding a suitable `perl' command")
4900 (let ((result
4901 (or (tramp-find-executable vec "perl5" (tramp-get-remote-path vec))
4902 (tramp-find-executable
4903 vec "perl" (tramp-get-remote-path vec)))))
4904 ;; We must check also for some Perl modules.
4905 (when result
4906 (with-tramp-connection-property vec "perl-file-spec"
4907 (tramp-send-command-and-check
4908 vec (format "%s -e 'use File::Spec;'" result)))
4909 (with-tramp-connection-property vec "perl-cwd-realpath"
4910 (tramp-send-command-and-check
4911 vec (format "%s -e 'use Cwd \"realpath\";'" result))))
4912 result)))
4914 (defun tramp-get-remote-stat (vec)
4915 (with-tramp-connection-property vec "stat"
4916 (tramp-message vec 5 "Finding a suitable `stat' command")
4917 (let ((result (tramp-find-executable
4918 vec "stat" (tramp-get-remote-path vec)))
4919 tmp)
4920 ;; Check whether stat(1) returns usable syntax. "%s" does not
4921 ;; work on older AIX systems.
4922 (when result
4923 (setq tmp
4924 (tramp-send-command-and-read
4925 vec (format "%s -c '(\"%%N\" %%s)' /" result) 'noerror))
4926 (unless (and (listp tmp) (stringp (car tmp))
4927 (string-match "^./.$" (car tmp))
4928 (integerp (cadr tmp)))
4929 (setq result nil)))
4930 result)))
4932 (defun tramp-get-remote-readlink (vec)
4933 (with-tramp-connection-property vec "readlink"
4934 (tramp-message vec 5 "Finding a suitable `readlink' command")
4935 (let ((result (tramp-find-executable
4936 vec "readlink" (tramp-get-remote-path vec))))
4937 (when (and result
4938 (tramp-send-command-and-check
4939 vec (format "%s --canonicalize-missing /" result)))
4940 result))))
4942 (defun tramp-get-remote-trash (vec)
4943 (with-tramp-connection-property vec "trash"
4944 (tramp-message vec 5 "Finding a suitable `trash' command")
4945 (tramp-find-executable vec "trash" (tramp-get-remote-path vec))))
4947 (defun tramp-get-remote-gvfs-monitor-dir (vec)
4948 (with-tramp-connection-property vec "gvfs-monitor-dir"
4949 (tramp-message vec 5 "Finding a suitable `gvfs-monitor-dir' command")
4950 (tramp-find-executable
4951 vec "gvfs-monitor-dir" (tramp-get-remote-path vec) t t)))
4953 (defun tramp-get-remote-inotifywait (vec)
4954 (with-tramp-connection-property vec "inotifywait"
4955 (tramp-message vec 5 "Finding a suitable `inotifywait' command")
4956 (tramp-find-executable vec "inotifywait" (tramp-get-remote-path vec) t t)))
4958 (defun tramp-get-remote-id (vec)
4959 (with-tramp-connection-property vec "id"
4960 (tramp-message vec 5 "Finding POSIX `id' command")
4961 (catch 'id-found
4962 (let ((dl (tramp-get-remote-path vec))
4963 result)
4964 (while (and dl (setq result (tramp-find-executable vec "id" dl t t)))
4965 ;; Check POSIX parameter.
4966 (when (tramp-send-command-and-check vec (format "%s -u" result))
4967 (throw 'id-found result))
4968 (setq dl (cdr dl)))))))
4970 (defun tramp-get-remote-uid-with-id (vec id-format)
4971 (tramp-send-command-and-read
4973 (format "%s -u%s %s"
4974 (tramp-get-remote-id vec)
4975 (if (equal id-format 'integer) "" "n")
4976 (if (equal id-format 'integer)
4977 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/"))))
4979 (defun tramp-get-remote-uid-with-perl (vec id-format)
4980 (tramp-send-command-and-read
4982 (format "%s -le '%s'"
4983 (tramp-get-remote-perl vec)
4984 (if (equal id-format 'integer)
4985 "print $>"
4986 "print \"\\\"\", scalar getpwuid($>), \"\\\"\""))))
4988 (defun tramp-get-remote-python (vec)
4989 (with-tramp-connection-property vec "python"
4990 (tramp-message vec 5 "Finding a suitable `python' command")
4991 (tramp-find-executable vec "python" (tramp-get-remote-path vec))))
4993 (defun tramp-get-remote-uid-with-python (vec id-format)
4994 (tramp-send-command-and-read
4996 (format "%s -c \"%s\""
4997 (tramp-get-remote-python vec)
4998 (if (equal id-format 'integer)
4999 "import os; print os.getuid()"
5000 "import os, pwd; print '\\\"' + pwd.getpwuid(os.getuid())[0] + '\\\"'"))))
5002 (defun tramp-get-remote-uid (vec id-format)
5003 (with-tramp-connection-property vec (format "uid-%s" id-format)
5004 (let ((res (cond
5005 ((tramp-get-remote-id vec)
5006 (tramp-get-remote-uid-with-id vec id-format))
5007 ((tramp-get-remote-perl vec)
5008 (tramp-get-remote-uid-with-perl vec id-format))
5009 ((tramp-get-remote-python vec)
5010 (tramp-get-remote-uid-with-python vec id-format))
5011 (t (tramp-error
5012 vec 'file-error "Cannot determine remote uid")))))
5013 ;; The command might not always return a number.
5014 (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
5016 (defun tramp-get-remote-gid-with-id (vec id-format)
5017 (tramp-send-command-and-read
5019 (format "%s -g%s %s"
5020 (tramp-get-remote-id vec)
5021 (if (equal id-format 'integer) "" "n")
5022 (if (equal id-format 'integer)
5023 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/"))))
5025 (defun tramp-get-remote-gid-with-perl (vec id-format)
5026 (tramp-send-command-and-read
5028 (format "%s -le '%s'"
5029 (tramp-get-remote-perl vec)
5030 (if (equal id-format 'integer)
5031 "print ($)=~/(\\d+)/)"
5032 "print \"\\\"\", scalar getgrgid($)), \"\\\"\""))))
5034 (defun tramp-get-remote-gid-with-python (vec id-format)
5035 (tramp-send-command-and-read
5037 (format "%s -c \"%s\""
5038 (tramp-get-remote-python vec)
5039 (if (equal id-format 'integer)
5040 "import os; print os.getgid()"
5041 "import os, grp; print '\\\"' + grp.getgrgid(os.getgid())[0] + '\\\"'"))))
5043 (defun tramp-get-remote-gid (vec id-format)
5044 (with-tramp-connection-property vec (format "gid-%s" id-format)
5045 (let ((res (cond
5046 ((tramp-get-remote-id vec)
5047 (tramp-get-remote-gid-with-id vec id-format))
5048 ((tramp-get-remote-perl vec)
5049 (tramp-get-remote-gid-with-perl vec id-format))
5050 ((tramp-get-remote-python vec)
5051 (tramp-get-remote-gid-with-python vec id-format))
5052 (t (tramp-error
5053 vec 'file-error "Cannot determine remote gid")))))
5054 ;; The command might not always return a number.
5055 (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
5057 ;; Some predefined connection properties.
5058 (defun tramp-get-inline-compress (vec prop size)
5059 "Return the compress command related to PROP.
5060 PROP is either `inline-compress' or `inline-decompress'. SIZE is
5061 the length of the file to be compressed.
5063 If no corresponding command is found, nil is returned."
5064 (when (and (integerp tramp-inline-compress-start-size)
5065 (> size tramp-inline-compress-start-size))
5066 (with-tramp-connection-property (tramp-get-connection-process vec) prop
5067 (tramp-find-inline-compress vec)
5068 (tramp-get-connection-property
5069 (tramp-get-connection-process vec) prop nil))))
5071 (defun tramp-get-inline-coding (vec prop size)
5072 "Return the coding command related to PROP.
5073 PROP is either `remote-encoding', `remote-decoding',
5074 `local-encoding' or `local-decoding'.
5076 SIZE is the length of the file to be coded. Depending on SIZE,
5077 compression might be applied.
5079 If no corresponding command is found, nil is returned.
5080 Otherwise, either a string is returned which contains a `%s' mark
5081 to be used for the respective input or output file; or a Lisp
5082 function cell is returned to be applied on a buffer."
5083 ;; We must catch the errors, because we want to return `nil', when
5084 ;; no inline coding is found.
5085 (ignore-errors
5086 (let ((coding
5087 (with-tramp-connection-property
5088 (tramp-get-connection-process vec) prop
5089 (tramp-find-inline-encoding vec)
5090 (tramp-get-connection-property
5091 (tramp-get-connection-process vec) prop nil)))
5092 (prop1 (if (string-match "encoding" prop)
5093 "inline-compress" "inline-decompress"))
5094 compress)
5095 ;; The connection property might have been cached. So we must
5096 ;; send the script to the remote side - maybe.
5097 (when (and coding (symbolp coding) (string-match "remote" prop))
5098 (let ((name (symbol-name coding)))
5099 (while (string-match (regexp-quote "-") name)
5100 (setq name (replace-match "_" nil t name)))
5101 (tramp-maybe-send-script vec (symbol-value coding) name)
5102 (setq coding name)))
5103 (when coding
5104 ;; Check for the `compress' command.
5105 (setq compress (tramp-get-inline-compress vec prop1 size))
5106 ;; Return the value.
5107 (cond
5108 ((and compress (symbolp coding))
5109 (if (string-match "decompress" prop1)
5110 `(lambda (beg end)
5111 (,coding beg end)
5112 (let ((coding-system-for-write 'binary)
5113 (coding-system-for-read 'binary))
5114 (apply
5115 'call-process-region (point-min) (point-max)
5116 (car (split-string ,compress)) t t nil
5117 (cdr (split-string ,compress)))))
5118 `(lambda (beg end)
5119 (let ((coding-system-for-write 'binary)
5120 (coding-system-for-read 'binary))
5121 (apply
5122 'call-process-region beg end
5123 (car (split-string ,compress)) t t nil
5124 (cdr (split-string ,compress))))
5125 (,coding (point-min) (point-max)))))
5126 ((symbolp coding)
5127 coding)
5128 ((and compress (string-match "decoding" prop))
5129 (format
5130 ;; Windows shells need the program file name after
5131 ;; the pipe symbol be quoted if they use forward
5132 ;; slashes as directory separators.
5133 (cond
5134 ((and (string-match "local" prop)
5135 (memq system-type '(windows-nt)))
5136 "(%s | \"%s\")")
5137 ((string-match "local" prop) "(%s | %s)")
5138 (t "(%s | %s >%%s)"))
5139 coding compress))
5140 (compress
5141 (format
5142 ;; Windows shells need the program file name after
5143 ;; the pipe symbol be quoted if they use forward
5144 ;; slashes as directory separators.
5145 (if (and (string-match "local" prop)
5146 (memq system-type '(windows-nt)))
5147 "(%s <%%s | \"%s\")"
5148 "(%s <%%s | %s)")
5149 compress coding))
5150 ((string-match "decoding" prop)
5151 (cond
5152 ((string-match "local" prop) (format "%s" coding))
5153 (t (format "%s >%%s" coding))))
5155 (format "%s <%%s" coding)))))))
5157 (add-hook 'tramp-unload-hook
5158 (lambda ()
5159 (unload-feature 'tramp-sh 'force)))
5161 (provide 'tramp-sh)
5163 ;;; TODO:
5165 ;; * Don't use globbing for directories with many files, as this is
5166 ;; likely to produce long command lines, and some shells choke on
5167 ;; long command lines.
5168 ;; * Make it work for different encodings, and for different file name
5169 ;; encodings, too. (Daniel Pittman)
5170 ;; * Don't search for perl5 and perl. Instead, only search for perl and
5171 ;; then look if it's the right version (with `perl -v').
5172 ;; * When editing a remote CVS controlled file as a different user, VC
5173 ;; gets confused about the file locking status. Try to find out why
5174 ;; the workaround doesn't work.
5175 ;; * Allow out-of-band methods as _last_ multi-hop. Open a connection
5176 ;; until the last but one hop via `start-file-process'. Apply it
5177 ;; also for ftp and smb.
5178 ;; * WIBNI if we had a command "trampclient"? If I was editing in
5179 ;; some shell with root privileges, it would be nice if I could
5180 ;; just call
5181 ;; trampclient filename.c
5182 ;; as an editor, and the _current_ shell would connect to an Emacs
5183 ;; server and would be used in an existing non-privileged Emacs
5184 ;; session for doing the editing in question.
5185 ;; That way, I need not tell Emacs my password again and be afraid
5186 ;; that it makes it into core dumps or other ugly stuff (I had Emacs
5187 ;; once display a just typed password in the context of a keyboard
5188 ;; sequence prompt for a question immediately following in a shell
5189 ;; script run within Emacs -- nasty).
5190 ;; And if I have some ssh session running to a different computer,
5191 ;; having the possibility of passing a local file there to a local
5192 ;; Emacs session (in case I can arrange for a connection back) would
5193 ;; be nice.
5194 ;; Likely the corresponding Tramp server should not allow the
5195 ;; equivalent of the emacsclient -eval option in order to make this
5196 ;; reasonably unproblematic. And maybe trampclient should have some
5197 ;; way of passing credentials, like by using an SSL socket or
5198 ;; something. (David Kastrup)
5199 ;; * Reconnect directly to a compliant shell without first going
5200 ;; through the user's default shell. (Pete Forman)
5201 ;; * How can I interrupt the remote process with a signal
5202 ;; (interrupt-process seems not to work)? (Markus Triska)
5203 ;; * Avoid the local shell entirely for starting remote processes. If
5204 ;; so, I think even a signal, when delivered directly to the local
5205 ;; SSH instance, would correctly be propagated to the remote process
5206 ;; automatically; possibly SSH would have to be started with
5207 ;; "-t". (Markus Triska)
5208 ;; * It makes me wonder if tramp couldn't fall back to ssh when scp
5209 ;; isn't on the remote host. (Mark A. Hershberger)
5210 ;; * Use lsh instead of ssh. (Alfred M. Szmidt)
5211 ;; * Optimize out-of-band copying when both methods are scp-like (not
5212 ;; rsync).
5213 ;; * Keep a second connection open for out-of-band methods like scp or
5214 ;; rsync.
5215 ;; * Try telnet+curl as new method. It might be useful for busybox,
5216 ;; without built-in uuencode/uudecode.
5218 ;;; tramp-sh.el ends here