Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / net / tramp-sh.el
blob7bcb662ad6d4bfcbfa43ef99848000e328ada33c
1 ;;; tramp-sh.el --- Tramp access functions for (s)sh-like connections
3 ;; Copyright (C) 1998-2014 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_CTYPE=''"
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 (numberp ok-if-already-exists)
1788 (file-exists-p newname)
1789 (yes-or-no-p
1790 (format
1791 "File %s already exists; make it a new name anyway? "
1792 newname)))
1793 (tramp-error
1794 v2 'file-error "add-name-to-file: file %s already exists" newname))
1795 (when ok-if-already-exists (setq ln (concat ln " -f")))
1796 (tramp-flush-file-property v2 (file-name-directory v2-localname))
1797 (tramp-flush-file-property v2 v2-localname)
1798 (tramp-barf-unless-okay
1800 (format "%s %s %s" ln
1801 (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 (not copy-contents)
1840 (tramp-get-method-parameter method 'tramp-copy-recursive)
1841 ;; When DIRNAME and NEWNAME are remote, they must have
1842 ;; the same method.
1843 (or (null t1) (null t2)
1844 (string-equal
1845 (tramp-file-name-method (tramp-dissect-file-name dirname))
1846 (tramp-file-name-method
1847 (tramp-dissect-file-name newname)))))
1848 ;; scp or rsync DTRT.
1849 (progn
1850 (setq dirname (directory-file-name (expand-file-name dirname))
1851 newname (directory-file-name (expand-file-name newname)))
1852 (if (and (file-directory-p newname)
1853 (not (string-equal (file-name-nondirectory dirname)
1854 (file-name-nondirectory newname))))
1855 (setq newname
1856 (expand-file-name
1857 (file-name-nondirectory dirname) newname)))
1858 (if (not (file-directory-p (file-name-directory newname)))
1859 (make-directory (file-name-directory newname) parents))
1860 (tramp-do-copy-or-rename-file-out-of-band
1861 'copy dirname newname keep-date))
1862 ;; We must do it file-wise.
1863 (tramp-run-real-handler
1864 'copy-directory
1865 (if copy-contents
1866 (list dirname newname keep-date parents copy-contents)
1867 (list dirname newname keep-date parents))))
1869 ;; When newname did exist, we have wrong cached values.
1870 (when t2
1871 (with-parsed-tramp-file-name newname nil
1872 (tramp-flush-file-property v (file-name-directory localname))
1873 (tramp-flush-file-property v localname))))))
1875 (defun tramp-sh-handle-rename-file
1876 (filename newname &optional ok-if-already-exists)
1877 "Like `rename-file' for Tramp files."
1878 ;; Check if both files are local -- invoke normal rename-file.
1879 ;; Otherwise, use Tramp from local system.
1880 (setq filename (expand-file-name filename))
1881 (setq newname (expand-file-name newname))
1882 ;; At least one file a Tramp file?
1883 (if (or (tramp-tramp-file-p filename)
1884 (tramp-tramp-file-p newname))
1885 (tramp-do-copy-or-rename-file
1886 'rename filename newname ok-if-already-exists t t)
1887 (tramp-run-real-handler
1888 'rename-file (list filename newname ok-if-already-exists))))
1890 (defun tramp-do-copy-or-rename-file
1891 (op filename newname &optional ok-if-already-exists keep-date
1892 preserve-uid-gid preserve-extended-attributes)
1893 "Copy or rename a remote file.
1894 OP must be `copy' or `rename' and indicates the operation to perform.
1895 FILENAME specifies the file to copy or rename, NEWNAME is the name of
1896 the new file (for copy) or the new name of the file (for rename).
1897 OK-IF-ALREADY-EXISTS means don't barf if NEWNAME exists already.
1898 KEEP-DATE means to make sure that NEWNAME has the same timestamp
1899 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
1900 the uid and gid if both files are on the same host.
1901 PRESERVE-EXTENDED-ATTRIBUTES activates selinux and acl commands.
1903 This function is invoked by `tramp-sh-handle-copy-file' and
1904 `tramp-sh-handle-rename-file'. It is an error if OP is neither
1905 of `copy' and `rename'. FILENAME and NEWNAME must be absolute
1906 file names."
1907 (unless (memq op '(copy rename))
1908 (error "Unknown operation `%s', must be `copy' or `rename'" op))
1909 (let ((t1 (tramp-tramp-file-p filename))
1910 (t2 (tramp-tramp-file-p newname))
1911 (length (nth 7 (file-attributes (file-truename filename))))
1912 (attributes (and preserve-extended-attributes
1913 (apply 'file-extended-attributes (list filename)))))
1915 (with-parsed-tramp-file-name (if t1 filename newname) nil
1916 (when (and (not ok-if-already-exists) (file-exists-p newname))
1917 (tramp-error
1918 v 'file-already-exists "File %s already exists" newname))
1920 (with-tramp-progress-reporter
1921 v 0 (format "%s %s to %s"
1922 (if (eq op 'copy) "Copying" "Renaming")
1923 filename newname)
1925 (cond
1926 ;; Both are Tramp files.
1927 ((and t1 t2)
1928 (with-parsed-tramp-file-name filename v1
1929 (with-parsed-tramp-file-name newname v2
1930 (cond
1931 ;; Shortcut: if method, host, user are the same for
1932 ;; both files, we invoke `cp' or `mv' on the remote
1933 ;; host directly.
1934 ((tramp-equal-remote filename newname)
1935 (tramp-do-copy-or-rename-file-directly
1936 op filename newname
1937 ok-if-already-exists keep-date preserve-uid-gid))
1939 ;; Try out-of-band operation.
1940 ((and
1941 (tramp-method-out-of-band-p v1 length)
1942 (tramp-method-out-of-band-p v2 length))
1943 (tramp-do-copy-or-rename-file-out-of-band
1944 op filename newname keep-date))
1946 ;; No shortcut was possible. So we copy the file
1947 ;; first. If the operation was `rename', we go back
1948 ;; and delete the original file (if the copy was
1949 ;; successful). The approach is simple-minded: we
1950 ;; create a new buffer, insert the contents of the
1951 ;; source file into it, then write out the buffer to
1952 ;; the target file. The advantage is that it doesn't
1953 ;; matter which filename handlers are used for the
1954 ;; source and target file.
1956 (tramp-do-copy-or-rename-file-via-buffer
1957 op filename newname keep-date))))))
1959 ;; One file is a Tramp file, the other one is local.
1960 ((or t1 t2)
1961 (cond
1962 ;; Fast track on local machine.
1963 ((tramp-local-host-p v)
1964 (tramp-do-copy-or-rename-file-directly
1965 op filename newname
1966 ok-if-already-exists keep-date preserve-uid-gid))
1968 ;; If the Tramp file has an out-of-band method, the
1969 ;; corresponding copy-program can be invoked.
1970 ((tramp-method-out-of-band-p v length)
1971 (tramp-do-copy-or-rename-file-out-of-band
1972 op filename newname keep-date))
1974 ;; Use the inline method via a Tramp buffer.
1975 (t (tramp-do-copy-or-rename-file-via-buffer
1976 op filename newname keep-date))))
1979 ;; One of them must be a Tramp file.
1980 (error "Tramp implementation says this cannot happen")))
1982 ;; Handle `preserve-extended-attributes'. We ignore possible
1983 ;; errors, because ACL strings could be incompatible.
1984 (when attributes
1985 (ignore-errors
1986 (apply 'set-file-extended-attributes (list newname attributes))))
1988 ;; In case of `rename', we must flush the cache of the source file.
1989 (when (and t1 (eq op 'rename))
1990 (with-parsed-tramp-file-name filename v1
1991 (tramp-flush-file-property v1 (file-name-directory v1-localname))
1992 (tramp-flush-file-property v1 v1-localname)))
1994 ;; When newname did exist, we have wrong cached values.
1995 (when t2
1996 (with-parsed-tramp-file-name newname v2
1997 (tramp-flush-file-property v2 (file-name-directory v2-localname))
1998 (tramp-flush-file-property v2 v2-localname)))))))
2000 (defun tramp-do-copy-or-rename-file-via-buffer (op filename newname keep-date)
2001 "Use an Emacs buffer to copy or rename a file.
2002 First arg OP is either `copy' or `rename' and indicates the operation.
2003 FILENAME is the source file, NEWNAME the target file.
2004 KEEP-DATE is non-nil if NEWNAME should have the same timestamp as FILENAME."
2005 (with-temp-buffer
2006 ;; We must disable multibyte, because binary data shall not be
2007 ;; converted.
2008 (set-buffer-multibyte nil)
2009 (let ((coding-system-for-read 'binary)
2010 (jka-compr-inhibit t))
2011 (insert-file-contents-literally filename))
2012 ;; We don't want the target file to be compressed, so we let-bind
2013 ;; `jka-compr-inhibit' to t.
2014 (let ((coding-system-for-write 'binary)
2015 (jka-compr-inhibit t))
2016 (write-region (point-min) (point-max) newname nil 'no-message)))
2017 ;; KEEP-DATE handling.
2018 (when keep-date (set-file-times newname (nth 5 (file-attributes filename))))
2019 ;; Set the mode.
2020 (set-file-modes newname (tramp-default-file-modes filename))
2021 ;; If the operation was `rename', delete the original file.
2022 (unless (eq op 'copy) (delete-file filename)))
2024 (defun tramp-do-copy-or-rename-file-directly
2025 (op filename newname ok-if-already-exists keep-date preserve-uid-gid)
2026 "Invokes `cp' or `mv' on the remote system.
2027 OP must be one of `copy' or `rename', indicating `cp' or `mv',
2028 respectively. FILENAME specifies the file to copy or rename,
2029 NEWNAME is the name of the new file (for copy) or the new name of
2030 the file (for rename). Both files must reside on the same host.
2031 KEEP-DATE means to make sure that NEWNAME has the same timestamp
2032 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
2033 the uid and gid from FILENAME."
2034 (let ((t1 (tramp-tramp-file-p filename))
2035 (t2 (tramp-tramp-file-p newname))
2036 (file-times (nth 5 (file-attributes filename)))
2037 (file-modes (tramp-default-file-modes filename)))
2038 (with-parsed-tramp-file-name (if t1 filename newname) nil
2039 (let* ((cmd (cond ((and (eq op 'copy) preserve-uid-gid) "cp -f -p")
2040 ((eq op 'copy) "cp -f")
2041 ((eq op 'rename) "mv -f")
2042 (t (tramp-error
2043 v 'file-error
2044 "Unknown operation `%s', must be `copy' or `rename'"
2045 op))))
2046 (localname1
2047 (if t1
2048 (tramp-file-name-handler 'file-remote-p filename 'localname)
2049 filename))
2050 (localname2
2051 (if t2
2052 (tramp-file-name-handler 'file-remote-p newname 'localname)
2053 newname))
2054 (prefix (file-remote-p (if t1 filename newname)))
2055 cmd-result)
2057 (cond
2058 ;; Both files are on a remote host, with same user.
2059 ((and t1 t2)
2060 (setq cmd-result
2061 (tramp-send-command-and-check
2062 v (format "%s %s %s" cmd
2063 (tramp-shell-quote-argument localname1)
2064 (tramp-shell-quote-argument localname2))))
2065 (with-current-buffer (tramp-get-buffer v)
2066 (goto-char (point-min))
2067 (unless
2069 (and keep-date
2070 ;; Mask cp -f error.
2071 (re-search-forward
2072 tramp-operation-not-permitted-regexp nil t))
2073 cmd-result)
2074 (tramp-error-with-buffer
2075 nil v 'file-error
2076 "Copying directly failed, see buffer `%s' for details."
2077 (buffer-name)))))
2079 ;; We are on the local host.
2080 ((or t1 t2)
2081 (cond
2082 ;; We can do it directly.
2083 ((let (file-name-handler-alist)
2084 (and (file-readable-p localname1)
2085 (file-writable-p (file-name-directory localname2))
2086 (or (file-directory-p localname2)
2087 (file-writable-p localname2))))
2088 (if (eq op 'copy)
2089 (tramp-compat-copy-file
2090 localname1 localname2 ok-if-already-exists
2091 keep-date preserve-uid-gid)
2092 (tramp-run-real-handler
2093 'rename-file (list localname1 localname2 ok-if-already-exists))))
2095 ;; We can do it directly with `tramp-send-command'
2096 ((and (file-readable-p (concat prefix localname1))
2097 (file-writable-p
2098 (file-name-directory (concat prefix localname2)))
2099 (or (file-directory-p (concat prefix localname2))
2100 (file-writable-p (concat prefix localname2))))
2101 (tramp-do-copy-or-rename-file-directly
2102 op (concat prefix localname1) (concat prefix localname2)
2103 ok-if-already-exists keep-date t)
2104 ;; We must change the ownership to the local user.
2105 (tramp-set-file-uid-gid
2106 (concat prefix localname2)
2107 (tramp-get-local-uid 'integer)
2108 (tramp-get-local-gid 'integer)))
2110 ;; We need a temporary file in between.
2112 ;; Create the temporary file.
2113 (let ((tmpfile (tramp-compat-make-temp-file localname1)))
2114 (unwind-protect
2115 (progn
2116 (cond
2118 (tramp-barf-unless-okay
2119 v (format
2120 "%s %s %s" cmd
2121 (tramp-shell-quote-argument localname1)
2122 (tramp-shell-quote-argument tmpfile))
2123 "Copying directly failed, see buffer `%s' for details."
2124 (tramp-get-buffer v))
2125 ;; We must change the ownership as remote user.
2126 ;; Since this does not work reliable, we also
2127 ;; give read permissions.
2128 (set-file-modes
2129 (concat prefix tmpfile)
2130 (tramp-compat-octal-to-decimal "0777"))
2131 (tramp-set-file-uid-gid
2132 (concat prefix tmpfile)
2133 (tramp-get-local-uid 'integer)
2134 (tramp-get-local-gid 'integer)))
2136 (if (eq op 'copy)
2137 (tramp-compat-copy-file
2138 localname1 tmpfile t
2139 keep-date preserve-uid-gid)
2140 (tramp-run-real-handler
2141 'rename-file
2142 (list localname1 tmpfile t)))
2143 ;; We must change the ownership as local user.
2144 ;; Since this does not work reliable, we also
2145 ;; give read permissions.
2146 (set-file-modes
2147 tmpfile (tramp-compat-octal-to-decimal "0777"))
2148 (tramp-set-file-uid-gid
2149 tmpfile
2150 (tramp-get-remote-uid v 'integer)
2151 (tramp-get-remote-gid v 'integer))))
2153 ;; Move the temporary file to its destination.
2154 (cond
2156 (tramp-barf-unless-okay
2157 v (format
2158 "cp -f -p %s %s"
2159 (tramp-shell-quote-argument tmpfile)
2160 (tramp-shell-quote-argument localname2))
2161 "Copying directly failed, see buffer `%s' for details."
2162 (tramp-get-buffer v)))
2164 (tramp-run-real-handler
2165 'rename-file
2166 (list tmpfile localname2 ok-if-already-exists)))))
2168 ;; Save exit.
2169 (ignore-errors (delete-file tmpfile)))))))))
2171 ;; Set the time and mode. Mask possible errors.
2172 (ignore-errors
2173 (when keep-date
2174 (set-file-times newname file-times)
2175 (set-file-modes newname file-modes))))))
2177 (defun tramp-do-copy-or-rename-file-out-of-band (op filename newname keep-date)
2178 "Invoke rcp program to copy.
2179 The method used must be an out-of-band method."
2180 (let* ((t1 (tramp-tramp-file-p filename))
2181 (t2 (tramp-tramp-file-p newname))
2182 (orig-vec (tramp-dissect-file-name (if t1 filename newname)))
2183 copy-program copy-args copy-env copy-keep-date port spec
2184 options source target)
2186 (with-parsed-tramp-file-name (if t1 filename newname) nil
2187 (if (and t1 t2)
2189 ;; Both are Tramp files. We shall optimize it when the
2190 ;; methods for filename and newname are the same.
2191 (let* ((dir-flag (file-directory-p filename))
2192 (tmpfile (tramp-compat-make-temp-file localname dir-flag)))
2193 (if dir-flag
2194 (setq tmpfile
2195 (expand-file-name
2196 (file-name-nondirectory newname) tmpfile)))
2197 (unwind-protect
2198 (progn
2199 (tramp-do-copy-or-rename-file-out-of-band
2200 op filename tmpfile keep-date)
2201 (tramp-do-copy-or-rename-file-out-of-band
2202 'rename tmpfile newname keep-date))
2203 ;; Save exit.
2204 (ignore-errors
2205 (if dir-flag
2206 (tramp-compat-delete-directory
2207 (expand-file-name ".." tmpfile) 'recursive)
2208 (delete-file tmpfile)))))
2210 ;; Set variables for computing the prompt for reading
2211 ;; password.
2212 (setq tramp-current-method (tramp-file-name-method v)
2213 tramp-current-user (or (tramp-file-name-user v)
2214 (tramp-get-connection-property
2215 v "login-as" nil))
2216 tramp-current-host (tramp-file-name-real-host v))
2218 ;; Expand hops. Might be necessary for gateway methods.
2219 (setq v (car (tramp-compute-multi-hops v)))
2220 (aset v 3 localname)
2222 ;; Check which ones of source and target are Tramp files.
2223 (setq source (if t1 (tramp-make-copy-program-file-name v) filename)
2224 target (funcall
2225 (if (and (file-directory-p filename)
2226 (string-equal
2227 (file-name-nondirectory filename)
2228 (file-name-nondirectory newname)))
2229 'file-name-directory
2230 'identity)
2231 (if t2 (tramp-make-copy-program-file-name v) newname)))
2233 ;; Check for host and port number. We cannot use
2234 ;; `tramp-file-name-port', because this returns also
2235 ;; `tramp-default-port', which might clash with settings in
2236 ;; "~/.ssh/config".
2237 (setq host (tramp-file-name-host v)
2238 port "")
2239 (when (string-match tramp-host-with-port-regexp host)
2240 (setq port (string-to-number (match-string 2 host))
2241 host (string-to-number (match-string 1 host))))
2243 ;; Check for user. There might be an interactive setting.
2244 (setq user (or (tramp-file-name-user v)
2245 (tramp-get-connection-property v "login-as" nil)))
2247 ;; Compose copy command.
2248 (setq host (or host "")
2249 user (or user "")
2250 port (or port "")
2251 spec (format-spec-make
2252 ?t (tramp-get-connection-property
2253 (tramp-get-connection-process v) "temp-file" ""))
2254 options (format-spec
2255 (if tramp-use-ssh-controlmaster-options
2256 tramp-ssh-controlmaster-options "")
2257 spec)
2258 spec (format-spec-make
2259 ?h host ?u user ?p port ?c options
2260 ?k (if keep-date " " ""))
2261 copy-program (tramp-get-method-parameter
2262 method 'tramp-copy-program)
2263 copy-keep-date (tramp-get-method-parameter
2264 method 'tramp-copy-keep-date)
2265 copy-args
2266 (delete
2267 ;; " " has either been a replacement of "%k" (when
2268 ;; keep-date argument is non-nil), or a replacement
2269 ;; for the whole keep-date sublist.
2271 (dolist
2273 (tramp-get-method-parameter method 'tramp-copy-args)
2274 copy-args)
2275 (setq copy-args
2276 (append
2277 copy-args
2278 (let ((y (mapcar (lambda (z) (format-spec z spec)) x)))
2279 (if (member "" y) '(" ") y))))))
2280 copy-env
2281 (delq
2283 (mapcar
2284 (lambda (x)
2285 (setq x (mapcar (lambda (y) (format-spec y spec)) x))
2286 (unless (member "" x) (mapconcat 'identity x " ")))
2287 (tramp-get-method-parameter method 'tramp-copy-env))))
2289 ;; Check for program.
2290 (unless (executable-find copy-program)
2291 (tramp-error
2292 v 'file-error "Cannot find copy program: %s" copy-program))
2294 (with-temp-buffer
2295 (unwind-protect
2296 ;; The default directory must be remote.
2297 (let ((default-directory
2298 (file-name-directory (if t1 filename newname)))
2299 (process-environment (copy-sequence process-environment)))
2300 ;; Set the transfer process properties.
2301 (tramp-set-connection-property
2302 v "process-name" (buffer-name (current-buffer)))
2303 (tramp-set-connection-property
2304 v "process-buffer" (current-buffer))
2305 (while copy-env
2306 (tramp-message
2307 orig-vec 6 "%s=\"%s\"" (car copy-env) (cadr copy-env))
2308 (setenv (pop copy-env) (pop copy-env)))
2310 ;; Use an asynchronous process. By this, password can
2311 ;; be handled. The default directory must be local, in
2312 ;; order to apply the correct `copy-program'. We don't
2313 ;; set a timeout, because the copying of large files can
2314 ;; last longer than 60 secs.
2315 (let ((p (let ((default-directory
2316 (tramp-compat-temporary-file-directory)))
2317 (apply 'start-process-shell-command
2318 (tramp-get-connection-name v)
2319 (tramp-get-connection-buffer v)
2320 copy-program
2321 (append
2322 copy-args
2323 (list
2324 (shell-quote-argument source)
2325 (shell-quote-argument target)
2326 "&&" "echo" "tramp_exit_status" "0"
2327 "||" "echo" "tramp_exit_status" "1"))))))
2328 (tramp-message
2329 orig-vec 6 "%s"
2330 (mapconcat 'identity (process-command p) " "))
2331 (tramp-set-connection-property p "vector" orig-vec)
2332 (tramp-compat-set-process-query-on-exit-flag p nil)
2333 (tramp-process-actions
2334 p v nil tramp-actions-copy-out-of-band)
2336 ;; Check the return code.
2337 (goto-char (point-max))
2338 (unless
2339 (re-search-backward "tramp_exit_status [0-9]+" nil t)
2340 (tramp-error
2341 orig-vec 'file-error
2342 "Couldn't find exit status of `%s'"
2343 (mapconcat 'identity (process-command p) " ")))
2344 (skip-chars-forward "^ ")
2345 (unless (zerop (read (current-buffer)))
2346 (forward-line -1)
2347 (tramp-error
2348 orig-vec 'file-error
2349 "Error copying: `%s'"
2350 (buffer-substring (point-min) (point-at-eol))))))
2352 ;; Reset the transfer process properties.
2353 (tramp-message orig-vec 6 "\n%s" (buffer-string))
2354 (tramp-set-connection-property v "process-name" nil)
2355 (tramp-set-connection-property v "process-buffer" nil)))
2357 ;; Handle KEEP-DATE argument.
2358 (when (and keep-date (not copy-keep-date))
2359 (set-file-times newname (nth 5 (file-attributes filename))))
2361 ;; Set the mode.
2362 (unless (and keep-date copy-keep-date)
2363 (ignore-errors
2364 (set-file-modes newname (tramp-default-file-modes filename)))))
2366 ;; If the operation was `rename', delete the original file.
2367 (unless (eq op 'copy)
2368 (if (file-regular-p filename)
2369 (delete-file filename)
2370 (tramp-compat-delete-directory filename 'recursive))))))
2372 (defun tramp-sh-handle-make-directory (dir &optional parents)
2373 "Like `make-directory' for Tramp files."
2374 (setq dir (expand-file-name dir))
2375 (with-parsed-tramp-file-name dir nil
2376 (tramp-flush-directory-property v (file-name-directory localname))
2377 (save-excursion
2378 (tramp-barf-unless-okay
2379 v (format "%s %s"
2380 (if parents "mkdir -p" "mkdir")
2381 (tramp-shell-quote-argument localname))
2382 "Couldn't make directory %s" dir))))
2384 (defun tramp-sh-handle-delete-directory (directory &optional recursive)
2385 "Like `delete-directory' for Tramp files."
2386 (setq directory (expand-file-name directory))
2387 (with-parsed-tramp-file-name directory nil
2388 (tramp-flush-file-property v (file-name-directory localname))
2389 (tramp-flush-directory-property v localname)
2390 (tramp-barf-unless-okay
2391 v (format "%s %s"
2392 (if recursive "rm -rf" "rmdir")
2393 (tramp-shell-quote-argument localname))
2394 "Couldn't delete %s" directory)))
2396 (defun tramp-sh-handle-delete-file (filename &optional trash)
2397 "Like `delete-file' for Tramp files."
2398 (setq filename (expand-file-name filename))
2399 (with-parsed-tramp-file-name filename nil
2400 (tramp-flush-file-property v (file-name-directory localname))
2401 (tramp-flush-file-property v localname)
2402 (tramp-barf-unless-okay
2403 v (format "%s %s"
2404 (or (and trash (tramp-get-remote-trash v)) "rm -f")
2405 (tramp-shell-quote-argument localname))
2406 "Couldn't delete %s" filename)))
2408 ;; Dired.
2410 ;; CCC: This does not seem to be enough. Something dies when
2411 ;; we try and delete two directories under Tramp :/
2412 (defun tramp-sh-handle-dired-recursive-delete-directory (filename)
2413 "Recursively delete the directory given.
2414 This is like `dired-recursive-delete-directory' for Tramp files."
2415 (with-parsed-tramp-file-name filename nil
2416 ;; Run a shell command 'rm -r <localname>'.
2417 ;; Code shamelessly stolen from the dired implementation and, um, hacked :)
2418 (unless (file-exists-p filename)
2419 (tramp-error v 'file-error "No such directory: %s" filename))
2420 ;; Which is better, -r or -R? (-r works for me <daniel@danann.net>).
2421 (tramp-send-command
2423 (format "rm -rf %s" (tramp-shell-quote-argument localname))
2424 ;; Don't read the output, do it explicitly.
2425 nil t)
2426 ;; Wait for the remote system to return to us...
2427 ;; This might take a while, allow it plenty of time.
2428 (tramp-wait-for-output (tramp-get-connection-process v) 120)
2429 ;; Make sure that it worked...
2430 (tramp-flush-file-property v (file-name-directory localname))
2431 (tramp-flush-directory-property v localname)
2432 (and (file-exists-p filename)
2433 (tramp-error
2434 v 'file-error "Failed to recursively delete %s" filename))))
2436 (defun tramp-sh-handle-dired-compress-file (file &rest _ok-flag)
2437 "Like `dired-compress-file' for Tramp files."
2438 ;; OK-FLAG is valid for XEmacs only, but not implemented.
2439 ;; Code stolen mainly from dired-aux.el.
2440 (with-parsed-tramp-file-name file nil
2441 (tramp-flush-file-property v localname)
2442 (save-excursion
2443 (let ((suffixes
2444 (if (not (featurep 'xemacs))
2445 ;; Emacs case
2446 (symbol-value 'dired-compress-file-suffixes)
2447 ;; XEmacs has `dired-compression-method-alist', which is
2448 ;; transformed into `dired-compress-file-suffixes' structure.
2449 (mapcar
2450 (lambda (x)
2451 (list (concat (regexp-quote (nth 1 x)) "\\'")
2453 (mapconcat 'identity (nth 3 x) " ")))
2454 (symbol-value 'dired-compression-method-alist))))
2455 suffix)
2456 ;; See if any suffix rule matches this file name.
2457 (while suffixes
2458 (let (case-fold-search)
2459 (if (string-match (car (car suffixes)) localname)
2460 (setq suffix (car suffixes) suffixes nil))
2461 (setq suffixes (cdr suffixes))))
2463 (cond ((file-symlink-p file)
2464 nil)
2465 ((and suffix (nth 2 suffix))
2466 ;; We found an uncompression rule.
2467 (with-tramp-progress-reporter
2468 v 0 (format "Uncompressing %s" file)
2469 (when (tramp-send-command-and-check
2470 v (concat (nth 2 suffix) " "
2471 (tramp-shell-quote-argument localname)))
2472 ;; `dired-remove-file' is not defined in XEmacs.
2473 (tramp-compat-funcall 'dired-remove-file file)
2474 (string-match (car suffix) file)
2475 (concat (substring file 0 (match-beginning 0))))))
2477 ;; We don't recognize the file as compressed, so compress it.
2478 ;; Try gzip.
2479 (with-tramp-progress-reporter v 0 (format "Compressing %s" file)
2480 (when (tramp-send-command-and-check
2481 v (concat "gzip -f "
2482 (tramp-shell-quote-argument localname)))
2483 ;; `dired-remove-file' is not defined in XEmacs.
2484 (tramp-compat-funcall 'dired-remove-file file)
2485 (cond ((file-exists-p (concat file ".gz"))
2486 (concat file ".gz"))
2487 ((file-exists-p (concat file ".z"))
2488 (concat file ".z"))
2489 (t nil))))))))))
2491 (defun tramp-sh-handle-insert-directory
2492 (filename switches &optional wildcard full-directory-p)
2493 "Like `insert-directory' for Tramp files."
2494 (setq filename (expand-file-name filename))
2495 (unless switches (setq switches ""))
2496 (with-parsed-tramp-file-name filename nil
2497 (if (and (featurep 'ls-lisp)
2498 (not (symbol-value 'ls-lisp-use-insert-directory-program)))
2499 (tramp-run-real-handler
2500 'insert-directory (list filename switches wildcard full-directory-p))
2501 (when (stringp switches)
2502 (setq switches (split-string switches)))
2503 (when (and (member "--dired" switches)
2504 (not (tramp-get-ls-command-with-dired v)))
2505 (setq switches (delete "--dired" switches)))
2506 (when wildcard
2507 (setq wildcard (tramp-run-real-handler
2508 'file-name-nondirectory (list localname)))
2509 (setq localname (tramp-run-real-handler
2510 'file-name-directory (list localname))))
2511 (unless (or full-directory-p (member "-d" switches))
2512 (setq switches (append switches '("-d"))))
2513 (setq switches (mapconcat 'tramp-shell-quote-argument switches " "))
2514 (when wildcard
2515 (setq switches (concat switches " " wildcard)))
2516 (tramp-message
2517 v 4 "Inserting directory `ls %s %s', wildcard %s, fulldir %s"
2518 switches filename (if wildcard "yes" "no")
2519 (if full-directory-p "yes" "no"))
2520 ;; If `full-directory-p', we just say `ls -l FILENAME'.
2521 ;; Else we chdir to the parent directory, then say `ls -ld BASENAME'.
2522 (if full-directory-p
2523 (tramp-send-command
2525 (format "%s %s %s 2>/dev/null"
2526 (tramp-get-ls-command v)
2527 switches
2528 (if wildcard
2529 localname
2530 (tramp-shell-quote-argument (concat localname ".")))))
2531 (tramp-barf-unless-okay
2533 (format "cd %s" (tramp-shell-quote-argument
2534 (tramp-run-real-handler
2535 'file-name-directory (list localname))))
2536 "Couldn't `cd %s'"
2537 (tramp-shell-quote-argument
2538 (tramp-run-real-handler 'file-name-directory (list localname))))
2539 (tramp-send-command
2541 (format "%s %s %s 2>/dev/null"
2542 (tramp-get-ls-command v)
2543 switches
2544 (if (or wildcard
2545 (zerop (length
2546 (tramp-run-real-handler
2547 'file-name-nondirectory (list localname)))))
2549 (tramp-shell-quote-argument
2550 (tramp-run-real-handler
2551 'file-name-nondirectory (list localname)))))))
2553 (save-restriction
2554 (let ((beg (point)))
2555 (narrow-to-region (point) (point))
2556 ;; We cannot use `insert-buffer-substring' because the Tramp
2557 ;; buffer changes its contents before insertion due to calling
2558 ;; `expand-file' and alike.
2559 (insert
2560 (with-current-buffer (tramp-get-buffer v)
2561 (buffer-string)))
2563 ;; Check for "--dired" output.
2564 (forward-line -2)
2565 (when (looking-at "//SUBDIRED//")
2566 (forward-line -1))
2567 (when (looking-at "//DIRED//\\s-+")
2568 (let ((databeg (match-end 0))
2569 (end (point-at-eol)))
2570 ;; Now read the numeric positions of file names.
2571 (goto-char databeg)
2572 (while (< (point) end)
2573 (let ((start (+ beg (read (current-buffer))))
2574 (end (+ beg (read (current-buffer)))))
2575 (if (memq (char-after end) '(?\n ?\ ))
2576 ;; End is followed by \n or by " -> ".
2577 (put-text-property start end 'dired-filename t))))))
2578 ;; Remove trailing lines.
2579 (goto-char (point-at-bol))
2580 (while (looking-at "//")
2581 (forward-line 1)
2582 (delete-region (match-beginning 0) (point)))
2584 ;; Some busyboxes are reluctant to discard colors.
2585 (unless (string-match "color" (tramp-get-connection-property v "ls" ""))
2586 (goto-char beg)
2587 (while (re-search-forward tramp-color-escape-sequence-regexp nil t)
2588 (replace-match "")))
2590 ;; Decode the output, it could be multibyte.
2591 (decode-coding-region
2592 beg (point-max)
2593 (or file-name-coding-system
2594 (and (boundp 'default-file-name-coding-system)
2595 (symbol-value 'default-file-name-coding-system))))
2597 ;; The inserted file could be from somewhere else.
2598 (when (and (not wildcard) (not full-directory-p))
2599 (goto-char (point-max))
2600 (when (file-symlink-p filename)
2601 (goto-char (search-backward "->" beg 'noerror)))
2602 (search-backward
2603 (if (zerop (length (file-name-nondirectory filename)))
2605 (file-name-nondirectory filename))
2606 beg 'noerror)
2607 (replace-match (file-relative-name filename) t))
2609 (goto-char (point-max)))))))
2611 ;; Canonicalization of file names.
2613 (defun tramp-sh-handle-expand-file-name (name &optional dir)
2614 "Like `expand-file-name' for Tramp files.
2615 If the localname part of the given filename starts with \"/../\" then
2616 the result will be a local, non-Tramp, filename."
2617 ;; If DIR is not given, use DEFAULT-DIRECTORY or "/".
2618 (setq dir (or dir default-directory "/"))
2619 ;; Unless NAME is absolute, concat DIR and NAME.
2620 (unless (file-name-absolute-p name)
2621 (setq name (concat (file-name-as-directory dir) name)))
2622 ;; If NAME is not a Tramp file, run the real handler.
2623 (if (not (tramp-connectable-p name))
2624 (tramp-run-real-handler 'expand-file-name (list name nil))
2625 ;; Dissect NAME.
2626 (with-parsed-tramp-file-name name nil
2627 (unless (tramp-run-real-handler 'file-name-absolute-p (list localname))
2628 (setq localname (concat "~/" localname)))
2629 ;; Tilde expansion if necessary. This needs a shell which
2630 ;; groks tilde expansion! The function `tramp-find-shell' is
2631 ;; supposed to find such a shell on the remote host. Please
2632 ;; tell me about it when this doesn't work on your system.
2633 (when (string-match "\\`\\(~[^/]*\\)\\(.*\\)\\'" localname)
2634 (let ((uname (match-string 1 localname))
2635 (fname (match-string 2 localname)))
2636 ;; We cannot simply apply "~/", because under sudo "~/" is
2637 ;; expanded to the local user home directory but to the
2638 ;; root home directory. On the other hand, using always
2639 ;; the default user name for tilde expansion is not
2640 ;; appropriate either, because ssh and companions might
2641 ;; use a user name from the config file.
2642 (when (and (string-equal uname "~")
2643 (string-match "\\`su\\(do\\)?\\'" method))
2644 (setq uname (concat uname user)))
2645 (setq uname
2646 (with-tramp-connection-property v uname
2647 (tramp-send-command
2648 v (format "cd %s; pwd" (tramp-shell-quote-argument uname)))
2649 (with-current-buffer (tramp-get-buffer v)
2650 (goto-char (point-min))
2651 (buffer-substring (point) (point-at-eol)))))
2652 (setq localname (concat uname fname))))
2653 ;; There might be a double slash, for example when "~/"
2654 ;; expands to "/". Remove this.
2655 (while (string-match "//" localname)
2656 (setq localname (replace-match "/" t t localname)))
2657 ;; No tilde characters in file name, do normal
2658 ;; `expand-file-name' (this does "/./" and "/../"). We bind
2659 ;; `directory-sep-char' here for XEmacs on Windows, which would
2660 ;; otherwise use backslash. `default-directory' is bound,
2661 ;; because on Windows there would be problems with UNC shares or
2662 ;; Cygwin mounts.
2663 (let ((directory-sep-char ?/)
2664 (default-directory (tramp-compat-temporary-file-directory)))
2665 (tramp-make-tramp-file-name
2666 method user host
2667 (tramp-drop-volume-letter
2668 (tramp-run-real-handler
2669 'expand-file-name (list localname)))
2670 hop)))))
2672 ;;; Remote commands:
2674 (defun tramp-process-sentinel (proc event)
2675 "Flush file caches."
2676 (unless (memq (process-status proc) '(run open))
2677 (let ((vec (tramp-get-connection-property proc "vector" nil)))
2678 (when vec
2679 (tramp-message vec 5 "Sentinel called: `%S' `%s'" proc event)
2680 (tramp-flush-connection-property proc)
2681 (tramp-flush-directory-property vec "")))))
2683 ;; We use BUFFER also as connection buffer during setup. Because of
2684 ;; this, its original contents must be saved, and restored once
2685 ;; connection has been setup.
2686 (defun tramp-sh-handle-start-file-process (name buffer program &rest args)
2687 "Like `start-file-process' for Tramp files."
2688 (with-parsed-tramp-file-name default-directory nil
2689 (let* (;; When PROGRAM matches "*sh", and the first arg is "-c",
2690 ;; it might be that the arguments exceed the command line
2691 ;; length. Therefore, we modify the command.
2692 (heredoc (and (stringp program)
2693 (string-match "sh$" program)
2694 (string-equal "-c" (car args))
2695 (= (length args) 2)))
2696 ;; When PROGRAM is nil, we just provide a tty.
2697 (args (if (not heredoc) args
2698 (let ((i 250))
2699 (while (and (< i (length (cadr args)))
2700 (string-match " " (cadr args) i))
2701 (setcdr
2702 args
2703 (list (replace-match " \\\\\n" nil nil (cadr args))))
2704 (setq i (+ i 250))))
2705 (cdr args)))
2706 (command
2707 (when (stringp program)
2708 (format "cd %s; exec %s env PS1=%s %s"
2709 (tramp-shell-quote-argument localname)
2710 (if heredoc "<<EOF" "")
2711 ;; Use a human-friendly prompt, for example for `shell'.
2712 (tramp-shell-quote-argument
2713 (format "%s %s"
2714 (file-remote-p default-directory)
2715 tramp-initial-end-of-output))
2716 (if heredoc
2717 (format "%s\n%s\nEOF" program (car args))
2718 (mapconcat 'tramp-shell-quote-argument
2719 (cons program args) " ")))))
2720 (tramp-process-connection-type
2721 (or (null program) tramp-process-connection-type))
2722 (bmp (and (buffer-live-p buffer) (buffer-modified-p buffer)))
2723 (name1 name)
2724 (i 0)
2725 ;; We do not want to raise an error when
2726 ;; `start-file-process' has been started several time in
2727 ;; `eshell' and friends.
2728 (tramp-current-connection nil))
2730 (unless buffer
2731 ;; BUFFER can be nil. We use a temporary buffer.
2732 (setq buffer (generate-new-buffer tramp-temp-buffer-name)))
2733 (while (get-process name1)
2734 ;; NAME must be unique as process name.
2735 (setq i (1+ i)
2736 name1 (format "%s<%d>" name i)))
2737 (setq name name1)
2738 ;; Set the new process properties.
2739 (tramp-set-connection-property v "process-name" name)
2740 (tramp-set-connection-property v "process-buffer" buffer)
2742 (with-current-buffer (tramp-get-connection-buffer v)
2743 (unwind-protect
2744 ;; We catch this event. Otherwise, `start-process' could
2745 ;; be called on the local host.
2746 (save-excursion
2747 (save-restriction
2748 ;; Activate narrowing in order to save BUFFER
2749 ;; contents. Clear also the modification time;
2750 ;; otherwise we might be interrupted by
2751 ;; `verify-visited-file-modtime'.
2752 (let ((buffer-undo-list t)
2753 (buffer-read-only nil)
2754 (mark (point)))
2755 (clear-visited-file-modtime)
2756 (narrow-to-region (point-max) (point-max))
2757 ;; We call `tramp-maybe-open-connection', in order
2758 ;; to cleanup the prompt afterwards.
2759 (catch 'suppress
2760 (tramp-maybe-open-connection v)
2761 (widen)
2762 (delete-region mark (point))
2763 (narrow-to-region (point-max) (point-max))
2764 ;; Now do it.
2765 (if command
2766 ;; Send the command.
2767 (tramp-send-command v command nil t) ; nooutput
2768 ;; Check, whether a pty is associated.
2769 (unless (tramp-compat-process-get
2770 (tramp-get-connection-process v) 'remote-tty)
2771 (tramp-error
2772 v 'file-error
2773 "pty association is not supported for `%s'" name))))
2774 (let ((p (tramp-get-connection-process v)))
2775 ;; Set query flag and process marker for this
2776 ;; process. We ignore errors, because the process
2777 ;; could have finished already.
2778 (ignore-errors
2779 (tramp-compat-set-process-query-on-exit-flag p t)
2780 (set-marker (process-mark p) (point)))
2781 ;; Return process.
2782 p))))
2784 ;; Save exit.
2785 (if (string-match tramp-temp-buffer-name (buffer-name))
2786 (ignore-errors
2787 (set-process-buffer (tramp-get-connection-process v) nil)
2788 (kill-buffer (current-buffer)))
2789 (set-buffer-modified-p bmp))
2790 (tramp-set-connection-property v "process-name" nil)
2791 (tramp-set-connection-property v "process-buffer" nil))))))
2793 (defun tramp-sh-handle-process-file
2794 (program &optional infile destination display &rest args)
2795 "Like `process-file' for Tramp files."
2796 ;; The implementation is not complete yet.
2797 (when (and (numberp destination) (zerop destination))
2798 (error "Implementation does not handle immediate return"))
2800 (with-parsed-tramp-file-name default-directory nil
2801 (let (command input tmpinput stderr tmpstderr outbuf ret)
2802 ;; Compute command.
2803 (setq command (mapconcat 'tramp-shell-quote-argument
2804 (cons program args) " "))
2805 ;; Determine input.
2806 (if (null infile)
2807 (setq input "/dev/null")
2808 (setq infile (expand-file-name infile))
2809 (if (tramp-equal-remote default-directory infile)
2810 ;; INFILE is on the same remote host.
2811 (setq input (with-parsed-tramp-file-name infile nil localname))
2812 ;; INFILE must be copied to remote host.
2813 (setq input (tramp-make-tramp-temp-file v)
2814 tmpinput (tramp-make-tramp-file-name method user host input))
2815 (copy-file infile tmpinput t)))
2816 (when input (setq command (format "%s <%s" command input)))
2818 ;; Determine output.
2819 (cond
2820 ;; Just a buffer.
2821 ((bufferp destination)
2822 (setq outbuf destination))
2823 ;; A buffer name.
2824 ((stringp destination)
2825 (setq outbuf (get-buffer-create destination)))
2826 ;; (REAL-DESTINATION ERROR-DESTINATION)
2827 ((consp destination)
2828 ;; output.
2829 (cond
2830 ((bufferp (car destination))
2831 (setq outbuf (car destination)))
2832 ((stringp (car destination))
2833 (setq outbuf (get-buffer-create (car destination))))
2834 ((car destination)
2835 (setq outbuf (current-buffer))))
2836 ;; stderr.
2837 (cond
2838 ((stringp (cadr destination))
2839 (setcar (cdr destination) (expand-file-name (cadr destination)))
2840 (if (tramp-equal-remote default-directory (cadr destination))
2841 ;; stderr is on the same remote host.
2842 (setq stderr (with-parsed-tramp-file-name
2843 (cadr destination) nil localname))
2844 ;; stderr must be copied to remote host. The temporary
2845 ;; file must be deleted after execution.
2846 (setq stderr (tramp-make-tramp-temp-file v)
2847 tmpstderr (tramp-make-tramp-file-name
2848 method user host stderr))))
2849 ;; stderr to be discarded.
2850 ((null (cadr destination))
2851 (setq stderr "/dev/null"))))
2852 ;; 't
2853 (destination
2854 (setq outbuf (current-buffer))))
2855 (when stderr (setq command (format "%s 2>%s" command stderr)))
2857 ;; Send the command. It might not return in time, so we protect
2858 ;; it. Call it in a subshell, in order to preserve working
2859 ;; directory.
2860 (condition-case nil
2861 (unwind-protect
2862 (setq ret
2863 (if (tramp-send-command-and-check
2864 v (format "\\cd %s; %s"
2865 (tramp-shell-quote-argument localname)
2866 command)
2867 t t)
2868 0 1))
2869 ;; We should show the output anyway.
2870 (when outbuf
2871 (with-current-buffer outbuf
2872 (insert
2873 (with-current-buffer (tramp-get-connection-buffer v)
2874 (buffer-string))))
2875 (when display (display-buffer outbuf))))
2876 ;; When the user did interrupt, we should do it also. We use
2877 ;; return code -1 as marker.
2878 (quit
2879 (kill-buffer (tramp-get-connection-buffer v))
2880 (setq ret -1))
2881 ;; Handle errors.
2882 (error
2883 (kill-buffer (tramp-get-connection-buffer v))
2884 (setq ret 1)))
2886 ;; Provide error file.
2887 (when tmpstderr (rename-file tmpstderr (cadr destination) t))
2889 ;; Cleanup. We remove all file cache values for the connection,
2890 ;; because the remote process could have changed them.
2891 (when tmpinput (delete-file tmpinput))
2893 ;; `process-file-side-effects' has been introduced with GNU
2894 ;; Emacs 23.2. If set to `nil', no remote file will be changed
2895 ;; by `program'. If it doesn't exist, we assume its default
2896 ;; value `t'.
2897 (unless (and (boundp 'process-file-side-effects)
2898 (not (symbol-value 'process-file-side-effects)))
2899 (tramp-flush-directory-property v ""))
2901 ;; Return exit status.
2902 (if (equal ret -1)
2903 (keyboard-quit)
2904 ret))))
2906 (defun tramp-sh-handle-file-local-copy (filename)
2907 "Like `file-local-copy' for Tramp files."
2908 (with-parsed-tramp-file-name filename nil
2909 (unless (file-exists-p filename)
2910 (tramp-error
2911 v 'file-error
2912 "Cannot make local copy of non-existing file `%s'" filename))
2914 (let* ((size (nth 7 (file-attributes (file-truename filename))))
2915 (rem-enc (tramp-get-inline-coding v "remote-encoding" size))
2916 (loc-dec (tramp-get-inline-coding v "local-decoding" size))
2917 (tmpfile (tramp-compat-make-temp-file filename)))
2919 (condition-case err
2920 (cond
2921 ;; `copy-file' handles direct copy and out-of-band methods.
2922 ((or (tramp-local-host-p v)
2923 (tramp-method-out-of-band-p v size))
2924 (copy-file filename tmpfile t t))
2926 ;; Use inline encoding for file transfer.
2927 (rem-enc
2928 (save-excursion
2929 (with-tramp-progress-reporter
2931 (format "Encoding remote file `%s' with `%s'" filename rem-enc)
2932 (tramp-barf-unless-okay
2933 v (format rem-enc (tramp-shell-quote-argument localname))
2934 "Encoding remote file failed"))
2936 (with-tramp-progress-reporter
2937 v 3 (format "Decoding local file `%s' with `%s'"
2938 tmpfile loc-dec)
2939 (if (functionp loc-dec)
2940 ;; If local decoding is a function, we call it.
2941 ;; We must disable multibyte, because
2942 ;; `uudecode-decode-region' doesn't handle it
2943 ;; correctly.
2944 (with-temp-buffer
2945 (set-buffer-multibyte nil)
2946 (insert-buffer-substring (tramp-get-buffer v))
2947 (funcall loc-dec (point-min) (point-max))
2948 ;; Unset `file-name-handler-alist'. Otherwise,
2949 ;; epa-file gets confused.
2950 (let (file-name-handler-alist
2951 (coding-system-for-write 'binary))
2952 (write-region
2953 (point-min) (point-max) tmpfile nil 'no-message)))
2955 ;; If tramp-decoding-function is not defined for this
2956 ;; method, we invoke tramp-decoding-command instead.
2957 (let ((tmpfile2 (tramp-compat-make-temp-file filename)))
2958 ;; Unset `file-name-handler-alist'. Otherwise,
2959 ;; epa-file gets confused.
2960 (let (file-name-handler-alist
2961 (coding-system-for-write 'binary))
2962 (with-current-buffer (tramp-get-buffer v)
2963 (write-region
2964 (point-min) (point-max) tmpfile2 nil 'no-message)))
2965 (unwind-protect
2966 (tramp-call-local-coding-command
2967 loc-dec tmpfile2 tmpfile)
2968 (delete-file tmpfile2)))))
2970 ;; Set proper permissions.
2971 (set-file-modes tmpfile (tramp-default-file-modes filename))
2972 ;; Set local user ownership.
2973 (tramp-set-file-uid-gid tmpfile)))
2975 ;; Oops, I don't know what to do.
2976 (t (tramp-error
2977 v 'file-error "Wrong method specification for `%s'" method)))
2979 ;; Error handling.
2980 ((error quit)
2981 (delete-file tmpfile)
2982 (signal (car err) (cdr err))))
2984 (run-hooks 'tramp-handle-file-local-copy-hook)
2985 tmpfile)))
2987 ;; This is needed for XEmacs only. Code stolen from files.el.
2988 (defun tramp-sh-handle-insert-file-contents-literally
2989 (filename &optional visit beg end replace)
2990 "Like `insert-file-contents-literally' for Tramp files."
2991 (let ((format-alist nil)
2992 (after-insert-file-functions nil)
2993 (coding-system-for-read 'no-conversion)
2994 (coding-system-for-write 'no-conversion)
2995 (find-buffer-file-type-function
2996 (if (fboundp 'find-buffer-file-type)
2997 (symbol-function 'find-buffer-file-type)
2998 nil))
2999 (inhibit-file-name-handlers '(jka-compr-handler image-file-handler))
3000 (inhibit-file-name-operation 'insert-file-contents))
3001 (unwind-protect
3002 (progn
3003 (fset 'find-buffer-file-type (lambda (_filename) t))
3004 (insert-file-contents filename visit beg end replace))
3005 ;; Save exit.
3006 (if find-buffer-file-type-function
3007 (fset 'find-buffer-file-type find-buffer-file-type-function)
3008 (fmakunbound 'find-buffer-file-type)))))
3010 ;; CCC grok LOCKNAME
3011 (defun tramp-sh-handle-write-region
3012 (start end filename &optional append visit lockname confirm)
3013 "Like `write-region' for Tramp files."
3014 (setq filename (expand-file-name filename))
3015 (with-parsed-tramp-file-name filename nil
3016 ;; Following part commented out because we don't know what to do about
3017 ;; file locking, and it does not appear to be a problem to ignore it.
3018 ;; Ange-ftp ignores it, too.
3019 ;; (when (and lockname (stringp lockname))
3020 ;; (setq lockname (expand-file-name lockname)))
3021 ;; (unless (or (eq lockname nil)
3022 ;; (string= lockname filename))
3023 ;; (error
3024 ;; "tramp-sh-handle-write-region: LOCKNAME must be nil or equal FILENAME"))
3026 ;; XEmacs takes a coding system as the seventh argument, not `confirm'.
3027 (when (and (not (featurep 'xemacs)) confirm (file-exists-p filename))
3028 (unless (y-or-n-p (format "File %s exists; overwrite anyway? " filename))
3029 (tramp-error v 'file-error "File not overwritten")))
3031 (let ((uid (or (nth 2 (tramp-compat-file-attributes filename 'integer))
3032 (tramp-get-remote-uid v 'integer)))
3033 (gid (or (nth 3 (tramp-compat-file-attributes filename 'integer))
3034 (tramp-get-remote-gid v 'integer))))
3036 (if (and (tramp-local-host-p v)
3037 ;; `file-writable-p' calls `file-expand-file-name'. We
3038 ;; cannot use `tramp-run-real-handler' therefore.
3039 (let (file-name-handler-alist)
3040 (and
3041 (file-writable-p (file-name-directory localname))
3042 (or (file-directory-p localname)
3043 (file-writable-p localname)))))
3044 ;; Short track: if we are on the local host, we can run directly.
3045 (tramp-run-real-handler
3046 'write-region
3047 (list start end localname append 'no-message lockname confirm))
3049 (let* ((modes (save-excursion (tramp-default-file-modes filename)))
3050 ;; We use this to save the value of
3051 ;; `last-coding-system-used' after writing the tmp
3052 ;; file. At the end of the function, we set
3053 ;; `last-coding-system-used' to this saved value. This
3054 ;; way, any intermediary coding systems used while
3055 ;; talking to the remote shell or suchlike won't hose
3056 ;; this variable. This approach was snarfed from
3057 ;; ange-ftp.el.
3058 coding-system-used
3059 ;; Write region into a tmp file. This isn't really
3060 ;; needed if we use an encoding function, but currently
3061 ;; we use it always because this makes the logic
3062 ;; simpler. We must also set `temporary-file-directory',
3063 ;; because it could point to a remote directory.
3064 (temporary-file-directory
3065 (tramp-compat-temporary-file-directory))
3066 (tmpfile (or tramp-temp-buffer-file-name
3067 (tramp-compat-make-temp-file filename))))
3069 ;; If `append' is non-nil, we copy the file locally, and let
3070 ;; the native `write-region' implementation do the job.
3071 (when append (copy-file filename tmpfile 'ok))
3073 ;; We say `no-message' here because we don't want the
3074 ;; visited file modtime data to be clobbered from the temp
3075 ;; file. We call `set-visited-file-modtime' ourselves later
3076 ;; on. We must ensure that `file-coding-system-alist'
3077 ;; matches `tmpfile'.
3078 (let (file-name-handler-alist
3079 (file-coding-system-alist
3080 (tramp-find-file-name-coding-system-alist filename tmpfile)))
3081 (condition-case err
3082 (tramp-run-real-handler
3083 'write-region
3084 (list start end tmpfile append 'no-message lockname confirm))
3085 ((error quit)
3086 (setq tramp-temp-buffer-file-name nil)
3087 (delete-file tmpfile)
3088 (signal (car err) (cdr err))))
3090 ;; Now, `last-coding-system-used' has the right value. Remember it.
3091 (when (boundp 'last-coding-system-used)
3092 (setq coding-system-used
3093 (symbol-value 'last-coding-system-used))))
3095 ;; The permissions of the temporary file should be set. If
3096 ;; filename does not exist (eq modes nil) it has been
3097 ;; renamed to the backup file. This case `save-buffer'
3098 ;; handles permissions.
3099 ;; Ensure that it is still readable.
3100 (when modes
3101 (set-file-modes
3102 tmpfile
3103 (logior (or modes 0) (tramp-compat-octal-to-decimal "0400"))))
3105 ;; This is a bit lengthy due to the different methods
3106 ;; possible for file transfer. First, we check whether the
3107 ;; method uses an rcp program. If so, we call it.
3108 ;; Otherwise, both encoding and decoding command must be
3109 ;; specified. However, if the method _also_ specifies an
3110 ;; encoding function, then that is used for encoding the
3111 ;; contents of the tmp file.
3112 (let* ((size (nth 7 (file-attributes tmpfile)))
3113 (rem-dec (tramp-get-inline-coding v "remote-decoding" size))
3114 (loc-enc (tramp-get-inline-coding v "local-encoding" size)))
3115 (cond
3116 ;; `copy-file' handles direct copy and out-of-band methods.
3117 ((or (tramp-local-host-p v)
3118 (tramp-method-out-of-band-p v size))
3119 (if (and (not (stringp start))
3120 (= (or end (point-max)) (point-max))
3121 (= (or start (point-min)) (point-min))
3122 (tramp-get-method-parameter
3123 method 'tramp-copy-keep-tmpfile))
3124 (progn
3125 (setq tramp-temp-buffer-file-name tmpfile)
3126 (condition-case err
3127 ;; We keep the local file for performance
3128 ;; reasons, useful for "rsync".
3129 (copy-file tmpfile filename t)
3130 ((error quit)
3131 (setq tramp-temp-buffer-file-name nil)
3132 (delete-file tmpfile)
3133 (signal (car err) (cdr err)))))
3134 (setq tramp-temp-buffer-file-name nil)
3135 ;; Don't rename, in order to keep context in SELinux.
3136 (unwind-protect
3137 (copy-file tmpfile filename t)
3138 (delete-file tmpfile))))
3140 ;; Use inline file transfer.
3141 (rem-dec
3142 ;; Encode tmpfile.
3143 (unwind-protect
3144 (with-temp-buffer
3145 (set-buffer-multibyte nil)
3146 ;; Use encoding function or command.
3147 (with-tramp-progress-reporter
3148 v 3 (format "Encoding local file `%s' using `%s'"
3149 tmpfile loc-enc)
3150 (if (functionp loc-enc)
3151 ;; The following `let' is a workaround for
3152 ;; the base64.el that comes with pgnus-0.84.
3153 ;; If both of the following conditions are
3154 ;; satisfied, it tries to write to a local
3155 ;; file in default-directory, but at this
3156 ;; point, default-directory is remote.
3157 ;; (`call-process-region' can't write to
3158 ;; remote files, it seems.) The file in
3159 ;; question is a tmp file anyway.
3160 (let ((coding-system-for-read 'binary)
3161 (default-directory
3162 (tramp-compat-temporary-file-directory)))
3163 (insert-file-contents-literally tmpfile)
3164 (funcall loc-enc (point-min) (point-max)))
3166 (unless (zerop (tramp-call-local-coding-command
3167 loc-enc tmpfile t))
3168 (tramp-error
3169 v 'file-error
3170 (concat "Cannot write to `%s', "
3171 "local encoding command `%s' failed")
3172 filename loc-enc))))
3174 ;; Send buffer into remote decoding command which
3175 ;; writes to remote file. Because this happens on
3176 ;; the remote host, we cannot use the function.
3177 (with-tramp-progress-reporter
3178 v 3 (format "Decoding remote file `%s' using `%s'"
3179 filename rem-dec)
3180 (goto-char (point-max))
3181 (unless (bolp) (newline))
3182 (tramp-send-command
3184 (format
3185 (concat rem-dec " <<'EOF'\n%sEOF")
3186 (tramp-shell-quote-argument localname)
3187 (buffer-string)))
3188 (tramp-barf-unless-okay
3189 v nil
3190 "Couldn't write region to `%s', decode using `%s' failed"
3191 filename rem-dec)
3192 ;; When `file-precious-flag' is set, the region is
3193 ;; written to a temporary file. Check that the
3194 ;; checksum is equal to that from the local tmpfile.
3195 (when file-precious-flag
3196 (erase-buffer)
3197 (and
3198 ;; cksum runs locally, if possible.
3199 (zerop (tramp-call-process "cksum" tmpfile t))
3200 ;; cksum runs remotely.
3201 (tramp-send-command-and-check
3203 (format
3204 "cksum <%s" (tramp-shell-quote-argument localname)))
3205 ;; ... they are different.
3206 (not
3207 (string-equal
3208 (buffer-string)
3209 (with-current-buffer (tramp-get-buffer v)
3210 (buffer-string))))
3211 (tramp-error
3212 v 'file-error
3213 (concat "Couldn't write region to `%s',"
3214 " decode using `%s' failed")
3215 filename rem-dec)))))
3217 ;; Save exit.
3218 (delete-file tmpfile)))
3220 ;; That's not expected.
3222 (tramp-error
3223 v 'file-error
3224 (concat "Method `%s' should specify both encoding and "
3225 "decoding command or an rcp program")
3226 method))))
3228 ;; Make `last-coding-system-used' have the right value.
3229 (when coding-system-used
3230 (set 'last-coding-system-used coding-system-used))))
3232 (tramp-flush-file-property v (file-name-directory localname))
3233 (tramp-flush-file-property v localname)
3235 ;; We must protect `last-coding-system-used', now we have set it
3236 ;; to its correct value.
3237 (let (last-coding-system-used (need-chown t))
3238 ;; Set file modification time.
3239 (when (or (eq visit t) (stringp visit))
3240 (let ((file-attr (tramp-compat-file-attributes filename 'integer)))
3241 (set-visited-file-modtime
3242 ;; We must pass modtime explicitly, because filename can
3243 ;; be different from (buffer-file-name), f.e. if
3244 ;; `file-precious-flag' is set.
3245 (nth 5 file-attr))
3246 (when (and (= (nth 2 file-attr) uid)
3247 (= (nth 3 file-attr) gid))
3248 (setq need-chown nil))))
3250 ;; Set the ownership.
3251 (when need-chown
3252 (tramp-set-file-uid-gid filename uid gid))
3253 (when (or (eq visit t) (null visit) (stringp visit))
3254 (tramp-message v 0 "Wrote %s" filename))
3255 (run-hooks 'tramp-handle-write-region-hook)))))
3257 (defvar tramp-vc-registered-file-names nil
3258 "List used to collect file names, which are checked during `vc-registered'.")
3260 ;; VC backends check for the existence of various different special
3261 ;; files. This is very time consuming, because every single check
3262 ;; requires a remote command (the file cache must be invalidated).
3263 ;; Therefore, we apply a kind of optimization. We install the file
3264 ;; name handler `tramp-vc-file-name-handler', which does nothing but
3265 ;; remembers all file names for which `file-exists-p' or
3266 ;; `file-readable-p' has been applied. A first run of `vc-registered'
3267 ;; is performed. Afterwards, a script is applied for all collected
3268 ;; file names, using just one remote command. The result of this
3269 ;; script is used to fill the file cache with actual values. Now we
3270 ;; can reset the file name handlers, and we make a second run of
3271 ;; `vc-registered', which returns the expected result without sending
3272 ;; any other remote command.
3273 (defun tramp-sh-handle-vc-registered (file)
3274 "Like `vc-registered' for Tramp files."
3275 (tramp-compat-with-temp-message ""
3276 (with-parsed-tramp-file-name file nil
3277 (with-tramp-progress-reporter
3278 v 3 (format "Checking `vc-registered' for %s" file)
3280 ;; There could be new files, created by the vc backend. We
3281 ;; cannot reuse the old cache entries, therefore.
3282 (let (tramp-vc-registered-file-names
3283 (remote-file-name-inhibit-cache (current-time))
3284 (file-name-handler-alist
3285 `((,tramp-file-name-regexp . tramp-vc-file-name-handler))))
3287 ;; Here we collect only file names, which need an operation.
3288 (ignore-errors (tramp-run-real-handler 'vc-registered (list file)))
3289 (tramp-message v 10 "\n%s" tramp-vc-registered-file-names)
3291 ;; Send just one command, in order to fill the cache.
3292 (when tramp-vc-registered-file-names
3293 (tramp-maybe-send-script
3295 (format tramp-vc-registered-read-file-names
3296 (tramp-get-file-exists-command v)
3297 (format "%s -r" (tramp-get-test-command v)))
3298 "tramp_vc_registered_read_file_names")
3300 (dolist
3301 (elt
3302 (tramp-send-command-and-read
3304 (format
3305 "tramp_vc_registered_read_file_names <<'EOF'\n%s\nEOF\n"
3306 (mapconcat 'tramp-shell-quote-argument
3307 tramp-vc-registered-file-names
3308 "\n"))))
3310 (tramp-set-file-property
3311 v (car elt) (cadr elt) (cadr (cdr elt))))))
3313 ;; Second run. Now all `file-exists-p' or `file-readable-p'
3314 ;; calls shall be answered from the file cache. We unset
3315 ;; `process-file-side-effects' in order to keep the cache when
3316 ;; `process-file' calls appear.
3317 (let (process-file-side-effects)
3318 (ignore-errors
3319 (tramp-run-real-handler 'vc-registered (list file))))))))
3321 ;;;###tramp-autoload
3322 (defun tramp-sh-file-name-handler (operation &rest args)
3323 "Invoke remote-shell Tramp file name handler.
3324 Fall back to normal file name handler if no Tramp handler exists."
3325 (when (and tramp-locked (not tramp-locker))
3326 (setq tramp-locked nil)
3327 (signal 'file-error (list "Forbidden reentrant call of Tramp")))
3328 (let ((tl tramp-locked))
3329 (unwind-protect
3330 (progn
3331 (setq tramp-locked t)
3332 (let ((tramp-locker t))
3333 (save-match-data
3334 (let ((fn (assoc operation tramp-sh-file-name-handler-alist)))
3335 (if fn
3336 (apply (cdr fn) args)
3337 (tramp-run-real-handler operation args))))))
3338 (setq tramp-locked tl))))
3340 (defun tramp-vc-file-name-handler (operation &rest args)
3341 "Invoke special file name handler, which collects files to be handled."
3342 (save-match-data
3343 (let ((filename
3344 (tramp-replace-environment-variables
3345 (apply 'tramp-file-name-for-operation operation args)))
3346 (fn (assoc operation tramp-sh-file-name-handler-alist)))
3347 (with-parsed-tramp-file-name filename nil
3348 (cond
3349 ;; That's what we want: file names, for which checks are
3350 ;; applied. We assume that VC uses only `file-exists-p' and
3351 ;; `file-readable-p' checks; otherwise we must extend the
3352 ;; list. We do not perform any action, but return nil, in
3353 ;; order to keep `vc-registered' running.
3354 ((and fn (memq operation '(file-exists-p file-readable-p)))
3355 (add-to-list 'tramp-vc-registered-file-names localname 'append)
3356 nil)
3357 ;; `process-file' and `start-file-process' shall be ignored.
3358 ((and fn (eq operation 'process-file) 0))
3359 ((and fn (eq operation 'start-file-process) nil))
3360 ;; Tramp file name handlers like `expand-file-name'. They
3361 ;; must still work.
3362 (fn (save-match-data (apply (cdr fn) args)))
3363 ;; Default file name handlers, we don't care.
3364 (t (tramp-run-real-handler operation args)))))))
3366 (defun tramp-sh-handle-file-notify-add-watch (file-name flags _callback)
3367 "Like `file-notify-add-watch' for Tramp files."
3368 (setq file-name (expand-file-name file-name))
3369 (with-parsed-tramp-file-name file-name nil
3370 (let* ((default-directory (file-name-directory file-name))
3371 command events filter p sequence)
3372 (cond
3373 ;; gvfs-monitor-dir.
3374 ((setq command (tramp-get-remote-gvfs-monitor-dir v))
3375 (setq filter 'tramp-sh-file-gvfs-monitor-dir-process-filter
3376 sequence `(,command ,localname)))
3377 ;; inotifywait.
3378 ((setq command (tramp-get-remote-inotifywait v))
3379 (setq filter 'tramp-sh-file-inotifywait-process-filter
3380 events
3381 (cond
3382 ((and (memq 'change flags) (memq 'attribute-change flags))
3383 "create,modify,move,delete,attrib")
3384 ((memq 'change flags) "create,modify,move,delete")
3385 ((memq 'attribute-change flags) "attrib"))
3386 sequence `(,command "-mq" "-e" ,events ,localname)))
3387 ;; None.
3388 (t (tramp-error
3389 v 'file-notify-error
3390 "No file notification program found on %s"
3391 (file-remote-p file-name))))
3392 ;; Start process.
3393 (setq p (apply
3394 'start-file-process
3395 (file-name-nondirectory command)
3396 (generate-new-buffer
3397 (format " *%s*" (file-name-nondirectory command)))
3398 sequence))
3399 ;; Return the process object as watch-descriptor.
3400 (if (not (processp p))
3401 (tramp-error
3402 v 'file-notify-error
3403 "`%s' failed to start on remote host"
3404 (mapconcat 'identity sequence " "))
3405 (tramp-message v 6 "Run `%s', %S" (mapconcat 'identity sequence " ") p)
3406 (tramp-set-connection-property p "vector" v)
3407 (tramp-compat-set-process-query-on-exit-flag p nil)
3408 (set-process-filter p filter)
3409 p))))
3411 (defun tramp-sh-file-gvfs-monitor-dir-process-filter (proc string)
3412 "Read output from \"gvfs-monitor-dir\" and add corresponding file-notify events."
3413 (let ((remote-prefix
3414 (with-current-buffer (process-buffer proc)
3415 (file-remote-p default-directory)))
3416 (rest-string (tramp-compat-process-get proc 'rest-string)))
3417 (when rest-string
3418 (tramp-message proc 10 "Previous string:\n%s" rest-string))
3419 (tramp-message proc 6 "%S\n%s" proc string)
3420 (setq string (concat rest-string string)
3421 ;; Attribute change is returned in unused wording.
3422 string (tramp-compat-replace-regexp-in-string
3423 "ATTRIB CHANGED" "ATTRIBUTE_CHANGED" string))
3425 (while (string-match
3426 (concat "^[\n\r]*"
3427 "Directory Monitor Event:[\n\r]+"
3428 "Child = \\([^\n\r]+\\)[\n\r]+"
3429 "\\(Other = \\([^\n\r]+\\)[\n\r]+\\)?"
3430 "Event = \\([^[:blank:]]+\\)[\n\r]+")
3431 string)
3432 (let ((object
3433 (list
3434 proc
3435 (intern-soft
3436 (tramp-compat-replace-regexp-in-string
3437 "_" "-" (downcase (match-string 4 string))))
3438 ;; File names are returned as absolute paths. We must
3439 ;; add the remote prefix.
3440 (concat remote-prefix (match-string 1 string))
3441 (when (match-string 3 string)
3442 (concat remote-prefix (match-string 3 string))))))
3443 (setq string (replace-match "" nil nil string))
3444 ;; Usually, we would add an Emacs event now. Unfortunately,
3445 ;; `unread-command-events' does not accept several events at
3446 ;; once. Therefore, we apply the callback directly.
3447 (tramp-compat-funcall 'file-notify-callback object)))
3449 ;; Save rest of the string.
3450 (when (zerop (length string)) (setq string nil))
3451 (when string (tramp-message proc 10 "Rest string:\n%s" string))
3452 (tramp-compat-process-put proc 'rest-string string)))
3454 (defun tramp-sh-file-inotifywait-process-filter (proc string)
3455 "Read output from \"inotifywait\" and add corresponding file-notify events."
3456 (tramp-message proc 6 "%S\n%s" proc string)
3457 (dolist (line (split-string string "[\n\r]+" 'omit-nulls))
3458 ;; Check, whether there is a problem.
3459 (unless
3460 (string-match
3461 (concat "^[^[:blank:]]+"
3462 "[[:blank:]]+\\([^[:blank:]]+\\)+"
3463 "\\([[:blank:]]+\\([^\n\r]+\\)\\)?")
3464 line)
3465 (tramp-error proc 'file-notify-error "%s" line))
3467 (let ((object
3468 (list
3469 proc
3470 (mapcar
3471 (lambda (x)
3472 (intern-soft
3473 (tramp-compat-replace-regexp-in-string "_" "-" (downcase x))))
3474 (split-string (match-string 1 line) "," 'omit-nulls))
3475 (match-string 3 line))))
3476 ;; Usually, we would add an Emacs event now. Unfortunately,
3477 ;; `unread-command-events' does not accept several events at
3478 ;; once. Therefore, we apply the callback directly.
3479 (tramp-compat-funcall 'file-notify-callback object))))
3481 ;;; Internal Functions:
3483 (defun tramp-maybe-send-script (vec script name)
3484 "Define in remote shell function NAME implemented as SCRIPT.
3485 Only send the definition if it has not already been done."
3486 ;; We cannot let-bind (tramp-get-connection-process vec) because it
3487 ;; might be nil.
3488 (let ((scripts (tramp-get-connection-property
3489 (tramp-get-connection-process vec) "scripts" nil)))
3490 (unless (member name scripts)
3491 (with-tramp-progress-reporter vec 5 (format "Sending script `%s'" name)
3492 ;; The script could contain a call of Perl. This is masked with `%s'.
3493 (when (and (string-match "%s" script)
3494 (not (tramp-get-remote-perl vec)))
3495 (tramp-error vec 'file-error "No Perl available on remote host"))
3496 (tramp-barf-unless-okay
3498 (format "%s () {\n%s\n}" name
3499 (format script (tramp-get-remote-perl vec)))
3500 "Script %s sending failed" name)
3501 (tramp-set-connection-property
3502 (tramp-get-connection-process vec) "scripts" (cons name scripts))))))
3504 (defun tramp-set-auto-save ()
3505 (when (and ;; ange-ftp has its own auto-save mechanism
3506 (eq (tramp-find-foreign-file-name-handler (buffer-file-name))
3507 'tramp-sh-file-name-handler)
3508 auto-save-default)
3509 (auto-save-mode 1)))
3510 (add-hook 'find-file-hooks 'tramp-set-auto-save t)
3511 (add-hook 'tramp-unload-hook
3512 (lambda ()
3513 (remove-hook 'find-file-hooks 'tramp-set-auto-save)))
3515 (defun tramp-run-test (switch filename)
3516 "Run `test' on the remote system, given a SWITCH and a FILENAME.
3517 Returns the exit code of the `test' program."
3518 (with-parsed-tramp-file-name filename nil
3519 (tramp-send-command-and-check
3521 (format
3522 "%s %s %s"
3523 (tramp-get-test-command v)
3524 switch
3525 (tramp-shell-quote-argument localname)))))
3527 (defun tramp-run-test2 (format-string file1 file2)
3528 "Run `test'-like program on the remote system, given FILE1, FILE2.
3529 FORMAT-STRING contains the program name, switches, and place holders.
3530 Returns the exit code of the `test' program. Barfs if the methods,
3531 hosts, or files, disagree."
3532 (unless (tramp-equal-remote file1 file2)
3533 (with-parsed-tramp-file-name (if (tramp-tramp-file-p file1) file1 file2) nil
3534 (tramp-error
3535 v 'file-error
3536 "tramp-run-test2 only implemented for same method, user, host")))
3537 (with-parsed-tramp-file-name file1 v1
3538 (with-parsed-tramp-file-name file1 v2
3539 (tramp-send-command-and-check
3541 (format format-string
3542 (tramp-shell-quote-argument v1-localname)
3543 (tramp-shell-quote-argument v2-localname))))))
3545 (defun tramp-find-executable
3546 (vec progname dirlist &optional ignore-tilde ignore-path)
3547 "Searches for PROGNAME in $PATH and all directories mentioned in DIRLIST.
3548 First arg VEC specifies the connection, PROGNAME is the program
3549 to search for, and DIRLIST gives the list of directories to
3550 search. If IGNORE-TILDE is non-nil, directory names starting
3551 with `~' will be ignored. If IGNORE-PATH is non-nil, searches
3552 only in DIRLIST.
3554 Returns the absolute file name of PROGNAME, if found, and nil otherwise.
3556 This function expects to be in the right *tramp* buffer."
3557 (with-current-buffer (tramp-get-connection-buffer vec)
3558 (let (result)
3559 ;; Check whether the executable is in $PATH. "which(1)" does not
3560 ;; report always a correct error code; therefore we check the
3561 ;; number of words it returns.
3562 (unless ignore-path
3563 (tramp-send-command vec (format "which \\%s | wc -w" progname))
3564 (goto-char (point-min))
3565 (if (looking-at "^\\s-*1$")
3566 (setq result (concat "\\" progname))))
3567 (unless result
3568 (when ignore-tilde
3569 ;; Remove all ~/foo directories from dirlist. In XEmacs,
3570 ;; `remove' is in CL, and we want to avoid CL dependencies.
3571 (let (newdl d)
3572 (while dirlist
3573 (setq d (car dirlist))
3574 (setq dirlist (cdr dirlist))
3575 (unless (char-equal ?~ (aref d 0))
3576 (setq newdl (cons d newdl))))
3577 (setq dirlist (nreverse newdl))))
3578 (tramp-send-command
3580 (format (concat "while read d; "
3581 "do if test -x $d/%s -a -f $d/%s; "
3582 "then echo tramp_executable $d/%s; "
3583 "break; fi; done <<'EOF'\n"
3584 "%s\nEOF")
3585 progname progname progname (mapconcat 'identity dirlist "\n")))
3586 (goto-char (point-max))
3587 (when (search-backward "tramp_executable " nil t)
3588 (skip-chars-forward "^ ")
3589 (skip-chars-forward " ")
3590 (setq result (buffer-substring (point) (point-at-eol)))))
3591 result)))
3593 (defun tramp-set-remote-path (vec)
3594 "Sets the remote environment PATH to existing directories.
3595 I.e., for each directory in `tramp-remote-path', it is tested
3596 whether it exists and if so, it is added to the environment
3597 variable PATH."
3598 (tramp-message vec 5 "Setting $PATH environment variable")
3599 (tramp-send-command
3600 vec (format "PATH=%s; export PATH"
3601 (mapconcat 'identity (tramp-get-remote-path vec) ":"))))
3603 ;; ------------------------------------------------------------
3604 ;; -- Communication with external shell --
3605 ;; ------------------------------------------------------------
3607 (defun tramp-find-file-exists-command (vec)
3608 "Find a command on the remote host for checking if a file exists.
3609 Here, we are looking for a command which has zero exit status if the
3610 file exists and nonzero exit status otherwise."
3611 (let ((existing "/")
3612 (nonexistent
3613 (tramp-shell-quote-argument "/ this file does not exist "))
3614 result)
3615 ;; The algorithm is as follows: we try a list of several commands.
3616 ;; For each command, we first run `$cmd /' -- this should return
3617 ;; true, as the root directory always exists. And then we run
3618 ;; `$cmd /this\ file\ does\ not\ exist ', hoping that the file indeed
3619 ;; does not exist. This should return false. We use the first
3620 ;; command we find that seems to work.
3621 ;; The list of commands to try is as follows:
3622 ;; `ls -d' This works on most systems, but NetBSD 1.4
3623 ;; has a bug: `ls' always returns zero exit
3624 ;; status, even for files which don't exist.
3625 ;; `test -e' Some Bourne shells have a `test' builtin
3626 ;; which does not know the `-e' option.
3627 ;; `/bin/test -e' For those, the `test' binary on disk normally
3628 ;; provides the option. Alas, the binary
3629 ;; is sometimes `/bin/test' and sometimes it's
3630 ;; `/usr/bin/test'.
3631 ;; `/usr/bin/test -e' In case `/bin/test' does not exist.
3632 (unless (or
3633 (ignore-errors
3634 (and (setq result (format "%s -e" (tramp-get-test-command vec)))
3635 (tramp-send-command-and-check
3636 vec (format "%s %s" result existing))
3637 (not (tramp-send-command-and-check
3638 vec (format "%s %s" result nonexistent)))))
3639 (ignore-errors
3640 (and (setq result "/bin/test -e")
3641 (tramp-send-command-and-check
3642 vec (format "%s %s" result existing))
3643 (not (tramp-send-command-and-check
3644 vec (format "%s %s" result nonexistent)))))
3645 (ignore-errors
3646 (and (setq result "/usr/bin/test -e")
3647 (tramp-send-command-and-check
3648 vec (format "%s %s" result existing))
3649 (not (tramp-send-command-and-check
3650 vec (format "%s %s" result nonexistent)))))
3651 (ignore-errors
3652 (and (setq result (format "%s -d" (tramp-get-ls-command vec)))
3653 (tramp-send-command-and-check
3654 vec (format "%s %s" result existing))
3655 (not (tramp-send-command-and-check
3656 vec (format "%s %s" result nonexistent))))))
3657 (tramp-error
3658 vec 'file-error "Couldn't find command to check if file exists"))
3659 result))
3661 (defun tramp-open-shell (vec shell)
3662 "Opens shell SHELL."
3663 (with-tramp-progress-reporter
3664 vec 5 (format "Opening remote shell `%s'" shell)
3665 ;; Find arguments for this shell.
3666 (let ((tramp-end-of-output tramp-initial-end-of-output)
3667 (alist tramp-sh-extra-args)
3668 item extra-args)
3669 (while (and alist (null extra-args))
3670 (setq item (pop alist))
3671 (when (string-match (car item) shell)
3672 (setq extra-args (cdr item))))
3673 (tramp-send-command
3674 vec (format
3675 "exec env ENV='' PROMPT_COMMAND='' PS1=%s PS2='' PS3='' %s %s"
3676 (tramp-shell-quote-argument tramp-end-of-output)
3677 shell (or extra-args ""))
3679 (tramp-set-connection-property
3680 (tramp-get-connection-process vec) "remote-shell" shell)
3681 ;; Setting prompts.
3682 (tramp-send-command
3683 vec (format "PS1=%s" (tramp-shell-quote-argument tramp-end-of-output)) t)
3684 (tramp-send-command vec "PS2=''" t)
3685 (tramp-send-command vec "PS3=''" t)
3686 (tramp-send-command vec "PROMPT_COMMAND=''" t)))
3688 (defun tramp-find-shell (vec)
3689 "Opens a shell on the remote host which groks tilde expansion."
3690 (with-current-buffer (tramp-get-buffer vec)
3691 (let ((default-shell
3693 (tramp-get-connection-property
3694 (tramp-get-connection-process vec) "remote-shell" nil)
3695 (tramp-get-method-parameter
3696 (tramp-file-name-method vec) 'tramp-remote-shell)))
3697 shell)
3698 (setq shell
3699 (with-tramp-connection-property vec "remote-shell"
3700 ;; CCC: "root" does not exist always, see QNAP 459.
3701 ;; Which check could we apply instead?
3702 (tramp-send-command vec "echo ~root" t)
3703 (if (or (string-match "^~root$" (buffer-string))
3704 ;; The default shell (ksh93) of OpenSolaris and
3705 ;; Solaris is buggy. We've got reports for
3706 ;; "SunOS 5.10" and "SunOS 5.11" so far.
3707 (string-match (regexp-opt '("SunOS 5.10" "SunOS 5.11"))
3708 (tramp-get-connection-property
3709 vec "uname" "")))
3711 (or (tramp-find-executable
3712 vec "bash" (tramp-get-remote-path vec) t t)
3713 (tramp-find-executable
3714 vec "ksh" (tramp-get-remote-path vec) t t)
3715 ;; Maybe it works at least for some other commands.
3716 (prog1
3717 default-shell
3718 (tramp-message
3719 vec 2
3720 (concat
3721 "Couldn't find a remote shell which groks tilde "
3722 "expansion, using `%s'")
3723 default-shell)))
3725 default-shell)))
3727 ;; Open a new shell if needed.
3728 (unless (string-equal shell default-shell)
3729 (tramp-message
3730 vec 5 "Starting remote shell `%s' for tilde expansion" shell)
3731 (tramp-open-shell vec shell)))))
3733 ;; Utility functions.
3735 (defun tramp-barf-if-no-shell-prompt (proc timeout &rest error-args)
3736 "Wait for shell prompt and barf if none appears.
3737 Looks at process PROC to see if a shell prompt appears in TIMEOUT
3738 seconds. If not, it produces an error message with the given ERROR-ARGS."
3739 (let ((vec (tramp-get-connection-property proc "vector" nil)))
3740 (condition-case nil
3741 (tramp-wait-for-regexp
3742 proc timeout
3743 (format
3744 "\\(%s\\|%s\\)\\'" shell-prompt-pattern tramp-shell-prompt-pattern))
3745 (error
3746 (delete-process proc)
3747 (apply 'tramp-error-with-buffer
3748 (tramp-get-connection-buffer vec) vec 'file-error error-args)))))
3750 (defun tramp-open-connection-setup-interactive-shell (proc vec)
3751 "Set up an interactive shell.
3752 Mainly sets the prompt and the echo correctly. PROC is the shell
3753 process to set up. VEC specifies the connection."
3754 (let ((tramp-end-of-output tramp-initial-end-of-output))
3755 ;; It is useful to set the prompt in the following command because
3756 ;; some people have a setting for $PS1 which /bin/sh doesn't know
3757 ;; about and thus /bin/sh will display a strange prompt. For
3758 ;; example, if $PS1 has "${CWD}" in the value, then ksh will
3759 ;; display the current working directory but /bin/sh will display
3760 ;; a dollar sign. The following command line sets $PS1 to a sane
3761 ;; value, and works under Bourne-ish shells as well as csh-like
3762 ;; shells. Daniel Pittman reports that the unusual positioning of
3763 ;; the single quotes makes it work under `rc', too. We also unset
3764 ;; the variable $ENV because that is read by some sh
3765 ;; implementations (eg, bash when called as sh) on startup; this
3766 ;; way, we avoid the startup file clobbering $PS1. $PROMPT_COMMAND
3767 ;; is another way to set the prompt in /bin/bash, it must be
3768 ;; discarded as well.
3769 (tramp-open-shell
3771 (or (tramp-get-connection-property vec "remote-shell" nil)
3772 (tramp-get-method-parameter
3773 (tramp-file-name-method vec) 'tramp-remote-shell)))
3775 ;; Disable echo.
3776 (tramp-message vec 5 "Setting up remote shell environment")
3777 (tramp-send-command vec "stty -inlcr -echo kill '^U' erase '^H'" t)
3778 ;; Check whether the echo has really been disabled. Some
3779 ;; implementations, like busybox of embedded GNU/Linux, don't
3780 ;; support disabling.
3781 (tramp-send-command vec "echo foo" t)
3782 (with-current-buffer (process-buffer proc)
3783 (goto-char (point-min))
3784 (when (looking-at "echo foo")
3785 (tramp-set-connection-property proc "remote-echo" t)
3786 (tramp-message vec 5 "Remote echo still on. Ok.")
3787 ;; Make sure backspaces and their echo are enabled and no line
3788 ;; width magic interferes with them.
3789 (tramp-send-command vec "stty icanon erase ^H cols 32767" t))))
3791 (tramp-message vec 5 "Setting shell prompt")
3792 (tramp-send-command
3793 vec (format "PS1=%s" (tramp-shell-quote-argument tramp-end-of-output)) t)
3794 (tramp-send-command vec "PS2=''" t)
3795 (tramp-send-command vec "PS3=''" t)
3796 (tramp-send-command vec "PROMPT_COMMAND=''" t)
3798 ;; Try to set up the coding system correctly.
3799 ;; CCC this can't be the right way to do it. Hm.
3800 (tramp-message vec 5 "Determining coding system")
3801 (tramp-send-command vec "echo foo ; echo bar" t)
3802 (with-current-buffer (process-buffer proc)
3803 (goto-char (point-min))
3804 (if (featurep 'mule)
3805 ;; Use MULE to select the right EOL convention for communicating
3806 ;; with the process.
3807 (let* ((cs (or (tramp-compat-funcall 'process-coding-system proc)
3808 (cons 'undecided 'undecided)))
3809 cs-decode cs-encode)
3810 (when (symbolp cs) (setq cs (cons cs cs)))
3811 (setq cs-decode (car cs))
3812 (setq cs-encode (cdr cs))
3813 (unless cs-decode (setq cs-decode 'undecided))
3814 (unless cs-encode (setq cs-encode 'undecided))
3815 (setq cs-encode (tramp-compat-coding-system-change-eol-conversion
3816 cs-encode 'unix))
3817 (when (search-forward "\r" nil t)
3818 (setq cs-decode (tramp-compat-coding-system-change-eol-conversion
3819 cs-decode 'dos)))
3820 (tramp-compat-funcall
3821 'set-buffer-process-coding-system cs-decode cs-encode)
3822 (tramp-message
3823 vec 5 "Setting coding system to `%s' and `%s'" cs-decode cs-encode))
3824 ;; Look for ^M and do something useful if found.
3825 (when (search-forward "\r" nil t)
3826 ;; We have found a ^M but cannot frob the process coding system
3827 ;; because we're running on a non-MULE Emacs. Let's try
3828 ;; stty, instead.
3829 (tramp-send-command vec "stty -onlcr" t))))
3831 (tramp-send-command vec "set +o vi +o emacs" t)
3833 ;; Check whether the output of "uname -sr" has been changed. If
3834 ;; yes, this is a strong indication that we must expire all
3835 ;; connection properties. We start again with
3836 ;; `tramp-maybe-open-connection', it will be caught there.
3837 (tramp-message vec 5 "Checking system information")
3838 (let ((old-uname (tramp-get-connection-property vec "uname" nil))
3839 (new-uname
3840 (tramp-set-connection-property
3841 vec "uname"
3842 (tramp-send-command-and-read vec "echo \\\"`uname -sr`\\\""))))
3843 (when (and (stringp old-uname) (not (string-equal old-uname new-uname)))
3844 (tramp-message
3845 vec 3
3846 "Connection reset, because remote host changed from `%s' to `%s'"
3847 old-uname new-uname)
3848 ;; We want to keep the password.
3849 (tramp-cleanup-connection vec t t)
3850 (throw 'uname-changed (tramp-maybe-open-connection vec))))
3852 ;; Check whether the remote host suffers from buggy
3853 ;; `send-process-string'. This is known for FreeBSD (see comment in
3854 ;; `send_process', file process.c). I've tested sending 624 bytes
3855 ;; successfully, sending 625 bytes failed. Emacs makes a hack when
3856 ;; this host type is detected locally. It cannot handle remote
3857 ;; hosts, though.
3858 (with-tramp-connection-property proc "chunksize"
3859 (cond
3860 ((and (integerp tramp-chunksize) (> tramp-chunksize 0))
3861 tramp-chunksize)
3863 (tramp-message
3864 vec 5 "Checking remote host type for `send-process-string' bug")
3865 (if (string-match
3866 "^FreeBSD" (tramp-get-connection-property vec "uname" ""))
3867 500 0))))
3869 ;; Set remote PATH variable.
3870 (tramp-set-remote-path vec)
3872 ;; Search for a good shell before searching for a command which
3873 ;; checks if a file exists. This is done because Tramp wants to use
3874 ;; "test foo; echo $?" to check if various conditions hold, and
3875 ;; there are buggy /bin/sh implementations which don't execute the
3876 ;; "echo $?" part if the "test" part has an error. In particular,
3877 ;; the OpenSolaris /bin/sh is a problem. There are also other
3878 ;; problems with /bin/sh of OpenSolaris, like redirection of stderr
3879 ;; in function declarations, or changing HISTFILE in place.
3880 ;; Therefore, OpenSolaris' /bin/sh is replaced by bash, when
3881 ;; detected.
3882 (tramp-find-shell vec)
3884 ;; Disable unexpected output.
3885 (tramp-send-command vec "mesg n; biff n" t)
3887 ;; IRIX64 bash expands "!" even when in single quotes. This
3888 ;; destroys our shell functions, we must disable it. See
3889 ;; <http://stackoverflow.com/questions/3291692/irix-bash-shell-expands-expression-in-single-quotes-yet-shouldnt>.
3890 (when (string-match "^IRIX64" (tramp-get-connection-property vec "uname" ""))
3891 (tramp-send-command vec "set +H" t))
3893 ;; On BSD-like systems, ?\t is expanded to spaces. Suppress this.
3894 (when (string-match "BSD\\|Darwin"
3895 (tramp-get-connection-property vec "uname" ""))
3896 (tramp-send-command vec "stty -oxtabs" t))
3898 ;; Set `remote-tty' process property.
3899 (let ((tty (tramp-send-command-and-read vec "echo \\\"`tty`\\\"" 'noerror)))
3900 (unless (zerop (length tty))
3901 (tramp-compat-process-put proc 'remote-tty tty)))
3903 ;; Dump stty settings in the traces.
3904 (when (>= tramp-verbose 9)
3905 (tramp-send-command vec "stty -a" t))
3907 ;; Set the environment.
3908 (tramp-message vec 5 "Setting default environment")
3910 (let ((env (append `(,(tramp-get-remote-locale vec))
3911 (copy-sequence tramp-remote-process-environment)))
3912 unset item)
3913 (while env
3914 (setq item (tramp-compat-split-string (car env) "="))
3915 (setcdr item (mapconcat 'identity (cdr item) "="))
3916 (if (and (stringp (cdr item)) (not (string-equal (cdr item) "")))
3917 (tramp-send-command
3918 vec (format "%s=%s; export %s" (car item) (cdr item) (car item)) t)
3919 (push (car item) unset))
3920 (setq env (cdr env)))
3921 (when unset
3922 (tramp-send-command
3923 vec (format "unset %s" (mapconcat 'identity unset " ")) t))))
3925 ;; Old text from documentation of tramp-methods:
3926 ;; Using a uuencode/uudecode inline method is discouraged, please use one
3927 ;; of the base64 methods instead since base64 encoding is much more
3928 ;; reliable and the commands are more standardized between the different
3929 ;; Unix versions. But if you can't use base64 for some reason, please
3930 ;; note that the default uudecode command does not work well for some
3931 ;; Unices, in particular AIX and Irix. For AIX, you might want to use
3932 ;; the following command for uudecode:
3934 ;; sed '/^begin/d;/^[` ]$/d;/^end/d' | iconv -f uucode -t ISO8859-1
3936 ;; For Irix, no solution is known yet.
3938 (autoload 'uudecode-decode-region "uudecode")
3940 (defconst tramp-local-coding-commands
3941 `((b64 base64-encode-region base64-decode-region)
3942 (uu tramp-uuencode-region uudecode-decode-region)
3943 (pack ,(format tramp-perl-pack "perl") ,(format tramp-perl-unpack "perl")))
3944 "List of local coding commands for inline transfer.
3945 Each item is a list that looks like this:
3947 \(FORMAT ENCODING DECODING\)
3949 FORMAT is symbol describing the encoding/decoding format. It can be
3950 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
3952 ENCODING and DECODING can be strings, giving commands, or symbols,
3953 giving functions. If they are strings, then they can contain
3954 the \"%s\" format specifier. If that specifier is present, the input
3955 filename will be put into the command line at that spot. If the
3956 specifier is not present, the input should be read from standard
3957 input.
3959 If they are functions, they will be called with two arguments, start
3960 and end of region, and are expected to replace the region contents
3961 with the encoded or decoded results, respectively.")
3963 (defconst tramp-remote-coding-commands
3964 '((b64 "base64" "base64 -d -i")
3965 ;; "-i" is more robust with older base64 from GNU coreutils.
3966 ;; However, I don't know whether all base64 versions do supports
3967 ;; this option.
3968 (b64 "base64" "base64 -d")
3969 (b64 "mimencode -b" "mimencode -u -b")
3970 (b64 "mmencode -b" "mmencode -u -b")
3971 (b64 "recode data..base64" "recode base64..data")
3972 (b64 tramp-perl-encode-with-module tramp-perl-decode-with-module)
3973 (b64 tramp-perl-encode tramp-perl-decode)
3974 (uu "uuencode xxx" "uudecode -o /dev/stdout" "test -c /dev/stdout")
3975 (uu "uuencode xxx" "uudecode -o -")
3976 (uu "uuencode xxx" "uudecode -p")
3977 (uu "uuencode xxx" tramp-uudecode)
3978 (pack tramp-perl-pack tramp-perl-unpack))
3979 "List of remote coding commands for inline transfer.
3980 Each item is a list that looks like this:
3982 \(FORMAT ENCODING DECODING [TEST]\)
3984 FORMAT is symbol describing the encoding/decoding format. It can be
3985 `b64' for base64 encoding, `uu' for uu encoding, or `pack' for simple packing.
3987 ENCODING and DECODING can be strings, giving commands, or symbols,
3988 giving variables. If they are strings, then they can contain
3989 the \"%s\" format specifier. If that specifier is present, the input
3990 filename will be put into the command line at that spot. If the
3991 specifier is not present, the input should be read from standard
3992 input.
3994 If they are variables, this variable is a string containing a Perl
3995 implementation for this functionality. This Perl program will be transferred
3996 to the remote host, and it is available as shell function with the same name.
3998 The optional TEST command can be used for further tests, whether
3999 ENCODING and DECODING are applicable.")
4001 (defun tramp-find-inline-encoding (vec)
4002 "Find an inline transfer encoding that works.
4003 Goes through the list `tramp-local-coding-commands' and
4004 `tramp-remote-coding-commands'."
4005 (save-excursion
4006 (let ((local-commands tramp-local-coding-commands)
4007 (magic "xyzzy")
4008 (p (tramp-get-connection-process vec))
4009 loc-enc loc-dec rem-enc rem-dec rem-test litem ritem found)
4010 (while (and local-commands (not found))
4011 (setq litem (pop local-commands))
4012 (catch 'wont-work-local
4013 (let ((format (nth 0 litem))
4014 (remote-commands tramp-remote-coding-commands))
4015 (setq loc-enc (nth 1 litem))
4016 (setq loc-dec (nth 2 litem))
4017 ;; If the local encoder or decoder is a string, the
4018 ;; corresponding command has to work locally.
4019 (if (not (stringp loc-enc))
4020 (tramp-message
4021 vec 5 "Checking local encoding function `%s'" loc-enc)
4022 (tramp-message
4023 vec 5 "Checking local encoding command `%s' for sanity" loc-enc)
4024 (unless (zerop (tramp-call-local-coding-command
4025 loc-enc nil nil))
4026 (throw 'wont-work-local nil)))
4027 (if (not (stringp loc-dec))
4028 (tramp-message
4029 vec 5 "Checking local decoding function `%s'" loc-dec)
4030 (tramp-message
4031 vec 5 "Checking local decoding command `%s' for sanity" loc-dec)
4032 (unless (zerop (tramp-call-local-coding-command
4033 loc-dec nil nil))
4034 (throw 'wont-work-local nil)))
4035 ;; Search for remote coding commands with the same format
4036 (while (and remote-commands (not found))
4037 (setq ritem (pop remote-commands))
4038 (catch 'wont-work-remote
4039 (when (equal format (nth 0 ritem))
4040 (setq rem-enc (nth 1 ritem))
4041 (setq rem-dec (nth 2 ritem))
4042 (setq rem-test (nth 3 ritem))
4043 ;; Check the remote test command if exists.
4044 (when (stringp rem-test)
4045 (tramp-message
4046 vec 5 "Checking remote test command `%s'" rem-test)
4047 (unless (tramp-send-command-and-check vec rem-test t)
4048 (throw 'wont-work-remote nil)))
4049 ;; Check if remote encoding and decoding commands can be
4050 ;; called remotely with null input and output. This makes
4051 ;; sure there are no syntax errors and the command is really
4052 ;; found. Note that we do not redirect stdout to /dev/null,
4053 ;; for two reasons: when checking the decoding command, we
4054 ;; actually check the output it gives. And also, when
4055 ;; redirecting "mimencode" output to /dev/null, then as root
4056 ;; it might change the permissions of /dev/null!
4057 (when (not (stringp rem-enc))
4058 (let ((name (symbol-name rem-enc)))
4059 (while (string-match (regexp-quote "-") name)
4060 (setq name (replace-match "_" nil t name)))
4061 (tramp-maybe-send-script vec (symbol-value rem-enc) name)
4062 (setq rem-enc name)))
4063 (tramp-message
4064 vec 5
4065 "Checking remote encoding command `%s' for sanity" rem-enc)
4066 (unless (tramp-send-command-and-check
4067 vec (format "%s </dev/null" rem-enc) t)
4068 (throw 'wont-work-remote nil))
4070 (when (not (stringp rem-dec))
4071 (let ((name (symbol-name rem-dec)))
4072 (while (string-match (regexp-quote "-") name)
4073 (setq name (replace-match "_" nil t name)))
4074 (tramp-maybe-send-script vec (symbol-value rem-dec) name)
4075 (setq rem-dec name)))
4076 (tramp-message
4077 vec 5
4078 "Checking remote decoding command `%s' for sanity" rem-dec)
4079 (unless (tramp-send-command-and-check
4081 (format "echo %s | %s | %s" magic rem-enc rem-dec)
4083 (throw 'wont-work-remote nil))
4085 (with-current-buffer (tramp-get-buffer vec)
4086 (goto-char (point-min))
4087 (unless (looking-at (regexp-quote magic))
4088 (throw 'wont-work-remote nil)))
4090 ;; `rem-enc' and `rem-dec' could be a string meanwhile.
4091 (setq rem-enc (nth 1 ritem))
4092 (setq rem-dec (nth 2 ritem))
4093 (setq found t)))))))
4095 ;; Did we find something?
4096 (unless found
4097 (tramp-error
4098 vec 'file-error "Couldn't find an inline transfer encoding"))
4100 ;; Set connection properties. Since the commands are risky (due
4101 ;; to output direction), we cache them in the process cache.
4102 (tramp-message vec 5 "Using local encoding `%s'" loc-enc)
4103 (tramp-set-connection-property p "local-encoding" loc-enc)
4104 (tramp-message vec 5 "Using local decoding `%s'" loc-dec)
4105 (tramp-set-connection-property p "local-decoding" loc-dec)
4106 (tramp-message vec 5 "Using remote encoding `%s'" rem-enc)
4107 (tramp-set-connection-property p "remote-encoding" rem-enc)
4108 (tramp-message vec 5 "Using remote decoding `%s'" rem-dec)
4109 (tramp-set-connection-property p "remote-decoding" rem-dec))))
4111 (defun tramp-call-local-coding-command (cmd input output)
4112 "Call the local encoding or decoding command.
4113 If CMD contains \"%s\", provide input file INPUT there in command.
4114 Otherwise, INPUT is passed via standard input.
4115 INPUT can also be nil which means `/dev/null'.
4116 OUTPUT can be a string (which specifies a filename), or t (which
4117 means standard output and thus the current buffer), or nil (which
4118 means discard it)."
4119 (tramp-call-process
4120 tramp-encoding-shell
4121 (when (and input (not (string-match "%s" cmd))) input)
4122 (if (eq output t) t nil)
4124 tramp-encoding-command-switch
4125 (concat
4126 (if (string-match "%s" cmd) (format cmd input) cmd)
4127 (if (stringp output) (concat " >" output) ""))))
4129 (defconst tramp-inline-compress-commands
4130 '(("gzip" "gzip -d")
4131 ("bzip2" "bzip2 -d")
4132 ("xz" "xz -d")
4133 ("compress" "compress -d"))
4134 "List of compress and decompress commands for inline transfer.
4135 Each item is a list that looks like this:
4137 \(COMPRESS DECOMPRESS\)
4139 COMPRESS or DECOMPRESS are strings with the respective commands.")
4141 (defun tramp-find-inline-compress (vec)
4142 "Find an inline transfer compress command that works.
4143 Goes through the list `tramp-inline-compress-commands'."
4144 (save-excursion
4145 (let ((commands tramp-inline-compress-commands)
4146 (magic "xyzzy")
4147 (p (tramp-get-connection-process vec))
4148 item compress decompress found)
4149 (while (and commands (not found))
4150 (catch 'next
4151 (setq item (pop commands)
4152 compress (nth 0 item)
4153 decompress (nth 1 item))
4154 (tramp-message
4155 vec 5
4156 "Checking local compress commands `%s', `%s' for sanity"
4157 compress decompress)
4158 (unless
4159 (zerop
4160 (tramp-call-local-coding-command
4161 (format
4162 ;; Windows shells need the program file name after
4163 ;; the pipe symbol be quoted if they use forward
4164 ;; slashes as directory separators.
4165 (if (memq system-type '(windows-nt))
4166 "echo %s | \"%s\" | \"%s\""
4167 "echo %s | %s | %s")
4168 magic compress decompress) nil nil))
4169 (throw 'next nil))
4170 (tramp-message
4171 vec 5
4172 "Checking remote compress commands `%s', `%s' for sanity"
4173 compress decompress)
4174 (unless (tramp-send-command-and-check
4175 vec (format "echo %s | %s | %s" magic compress decompress) t)
4176 (throw 'next nil))
4177 (setq found t)))
4179 ;; Did we find something?
4180 (if found
4181 (progn
4182 ;; Set connection properties. Since the commands are
4183 ;; risky (due to output direction), we cache them in the
4184 ;; process cache.
4185 (tramp-message
4186 vec 5 "Using inline transfer compress command `%s'" compress)
4187 (tramp-set-connection-property p "inline-compress" compress)
4188 (tramp-message
4189 vec 5 "Using inline transfer decompress command `%s'" decompress)
4190 (tramp-set-connection-property p "inline-decompress" decompress))
4192 (tramp-set-connection-property p "inline-compress" nil)
4193 (tramp-set-connection-property p "inline-decompress" nil)
4194 (tramp-message
4195 vec 2 "Couldn't find an inline transfer compress command")))))
4197 (defun tramp-compute-multi-hops (vec)
4198 "Expands VEC according to `tramp-default-proxies-alist'.
4199 Gateway hops are already opened."
4200 (let ((target-alist `(,vec))
4201 (hops (or (tramp-file-name-hop vec) ""))
4202 (item vec)
4203 choices proxy)
4205 ;; Ad-hoc proxy definitions.
4206 (dolist (proxy (reverse (split-string hops tramp-postfix-hop-regexp 'omit)))
4207 (let ((user (tramp-file-name-user item))
4208 (host (tramp-file-name-host item))
4209 (proxy (concat
4210 tramp-prefix-format proxy tramp-postfix-host-format)))
4211 (tramp-message
4212 vec 5 "Add proxy (\"%s\" \"%s\" \"%s\")"
4213 (and (stringp host) (regexp-quote host))
4214 (and (stringp user) (regexp-quote user))
4215 proxy)
4216 ;; Add the hop.
4217 (add-to-list
4218 'tramp-default-proxies-alist
4219 (list (and (stringp host) (regexp-quote host))
4220 (and (stringp user) (regexp-quote user))
4221 proxy))
4222 (setq item (tramp-dissect-file-name proxy))))
4223 ;; Save the new value.
4224 (when (and hops tramp-save-ad-hoc-proxies)
4225 (customize-save-variable
4226 'tramp-default-proxies-alist tramp-default-proxies-alist))
4228 ;; Look for proxy hosts to be passed.
4229 (setq choices tramp-default-proxies-alist)
4230 (while choices
4231 (setq item (pop choices)
4232 proxy (eval (nth 2 item)))
4233 (when (and
4234 ;; Host.
4235 (string-match (or (eval (nth 0 item)) "")
4236 (or (tramp-file-name-host (car target-alist)) ""))
4237 ;; User.
4238 (string-match (or (eval (nth 1 item)) "")
4239 (or (tramp-file-name-user (car target-alist)) "")))
4240 (if (null proxy)
4241 ;; No more hops needed.
4242 (setq choices nil)
4243 ;; Replace placeholders.
4244 (setq proxy
4245 (format-spec
4246 proxy
4247 (format-spec-make
4248 ?u (or (tramp-file-name-user (car target-alist)) "")
4249 ?h (or (tramp-file-name-host (car target-alist)) ""))))
4250 (with-parsed-tramp-file-name proxy l
4251 ;; Add the hop.
4252 (push l target-alist)
4253 ;; Start next search.
4254 (setq choices tramp-default-proxies-alist)))))
4256 ;; Handle gateways.
4257 (when (and (boundp 'tramp-gw-tunnel-method) (boundp 'tramp-gw-socks-method)
4258 (string-match
4259 (format
4260 "^\\(%s\\|%s\\)$" tramp-gw-tunnel-method tramp-gw-socks-method)
4261 (tramp-file-name-method (car target-alist))))
4262 (let ((gw (pop target-alist))
4263 (hop (pop target-alist)))
4264 ;; Is the method prepared for gateways?
4265 (unless (tramp-file-name-port hop)
4266 (tramp-error
4267 vec 'file-error
4268 "Connection `%s' is not supported for gateway access." hop))
4269 ;; Open the gateway connection.
4270 (push
4271 (vector
4272 (tramp-file-name-method hop) (tramp-file-name-user hop)
4273 (tramp-compat-funcall 'tramp-gw-open-connection vec gw hop) nil nil)
4274 target-alist)
4275 ;; For the password prompt, we need the correct values.
4276 ;; Therefore, we must remember the gateway vector. But we
4277 ;; cannot do it as connection property, because it shouldn't
4278 ;; be persistent. And we have no started process yet either.
4279 (tramp-set-file-property (car target-alist) "" "gateway" hop)))
4281 ;; Foreign and out-of-band methods are not supported for multi-hops.
4282 (when (cdr target-alist)
4283 (setq choices target-alist)
4284 (while choices
4285 (setq item (pop choices))
4286 (when
4288 (not
4289 (tramp-get-method-parameter
4290 (tramp-file-name-method item) 'tramp-login-program))
4291 (tramp-get-method-parameter
4292 (tramp-file-name-method item) 'tramp-copy-program))
4293 (tramp-error
4294 vec 'file-error
4295 "Method `%s' is not supported for multi-hops."
4296 (tramp-file-name-method item)))))
4298 ;; In case the host name is not used for the remote shell
4299 ;; command, the user could be misguided by applying a random
4300 ;; hostname.
4301 (let* ((v (car target-alist))
4302 (method (tramp-file-name-method v))
4303 (host (tramp-file-name-host v)))
4304 (unless
4306 ;; There are multi-hops.
4307 (cdr target-alist)
4308 ;; The host name is used for the remote shell command.
4309 (member
4310 '("%h") (tramp-get-method-parameter method 'tramp-login-args))
4311 ;; The host is local. We cannot use `tramp-local-host-p'
4312 ;; here, because it opens a connection as well.
4313 (string-match tramp-local-host-regexp host))
4314 (tramp-error
4315 v 'file-error
4316 "Host `%s' looks like a remote host, `%s' can only use the local host"
4317 host method)))
4319 ;; Result.
4320 target-alist))
4322 (defun tramp-maybe-open-connection (vec)
4323 "Maybe open a connection VEC.
4324 Does not do anything if a connection is already open, but re-opens the
4325 connection if a previous connection has died for some reason."
4326 (tramp-check-proper-method-and-host vec)
4328 (let ((p (tramp-get-connection-process vec))
4329 (process-name (tramp-get-connection-property vec "process-name" nil))
4330 (process-environment (copy-sequence process-environment))
4331 (pos (with-current-buffer (tramp-get-connection-buffer vec) (point))))
4333 ;; If Tramp opens the same connection within a short time frame,
4334 ;; there is a problem. We shall signal this.
4335 (unless (or (and p (processp p) (memq (process-status p) '(run open)))
4336 (not (equal (butlast (append vec nil) 2)
4337 (car tramp-current-connection)))
4338 (> (tramp-time-diff
4339 (current-time) (cdr tramp-current-connection))
4340 (or tramp-connection-min-time-diff 0)))
4341 (throw 'suppress 'suppress))
4343 ;; If too much time has passed since last command was sent, look
4344 ;; whether process is still alive. If it isn't, kill it. When
4345 ;; using ssh, it can sometimes happen that the remote end has hung
4346 ;; up but the local ssh client doesn't recognize this until it
4347 ;; tries to send some data to the remote end. So that's why we
4348 ;; try to send a command from time to time, then look again
4349 ;; whether the process is really alive.
4350 (condition-case nil
4351 (when (and (> (tramp-time-diff
4352 (current-time)
4353 (tramp-get-connection-property
4354 p "last-cmd-time" '(0 0 0)))
4356 p (processp p) (memq (process-status p) '(run open)))
4357 (tramp-send-command vec "echo are you awake" t t)
4358 (unless (and (memq (process-status p) '(run open))
4359 (tramp-wait-for-output p 10))
4360 ;; The error will be caught locally.
4361 (tramp-error vec 'file-error "Awake did fail")))
4362 (file-error
4363 (tramp-cleanup-connection vec t)
4364 (setq p nil)))
4366 ;; New connection must be opened.
4367 (condition-case err
4368 (unless (and p (processp p) (memq (process-status p) '(run open)))
4370 ;; If `non-essential' is non-nil, don't reopen a new connection.
4371 (when (and (boundp 'non-essential) (symbol-value 'non-essential))
4372 (throw 'non-essential 'non-essential))
4374 (with-tramp-progress-reporter
4375 vec 3
4376 (if (zerop (length (tramp-file-name-user vec)))
4377 (format "Opening connection for %s using %s"
4378 (tramp-file-name-host vec)
4379 (tramp-file-name-method vec))
4380 (format "Opening connection for %s@%s using %s"
4381 (tramp-file-name-user vec)
4382 (tramp-file-name-host vec)
4383 (tramp-file-name-method vec)))
4385 (catch 'uname-changed
4386 ;; Start new process.
4387 (when (and p (processp p))
4388 (delete-process p))
4389 (setenv "TERM" tramp-terminal-type)
4390 (setenv "LC_ALL" "en_US.utf8")
4391 (setenv "PROMPT_COMMAND")
4392 (setenv "PS1" tramp-initial-end-of-output)
4393 (let* ((target-alist (tramp-compute-multi-hops vec))
4394 ;; We will apply `tramp-ssh-controlmaster-options'
4395 ;; only for the first hop.
4396 (options (if tramp-use-ssh-controlmaster-options
4397 tramp-ssh-controlmaster-options ""))
4398 (process-connection-type tramp-process-connection-type)
4399 (process-adaptive-read-buffering nil)
4400 (coding-system-for-read nil)
4401 ;; This must be done in order to avoid our file
4402 ;; name handler.
4403 (p (let ((default-directory
4404 (tramp-compat-temporary-file-directory)))
4405 (apply
4406 'start-process
4407 (tramp-get-connection-name vec)
4408 (tramp-get-connection-buffer vec)
4409 (if tramp-encoding-command-interactive
4410 (list tramp-encoding-shell
4411 tramp-encoding-command-interactive)
4412 (list tramp-encoding-shell))))))
4414 ;; Set sentinel and query flag.
4415 (tramp-set-connection-property p "vector" vec)
4416 (set-process-sentinel p 'tramp-process-sentinel)
4417 (tramp-compat-set-process-query-on-exit-flag p nil)
4418 (setq tramp-current-connection
4419 (cons (butlast (append vec nil) 2) (current-time))
4420 tramp-current-host (system-name))
4422 (tramp-message
4423 vec 6 "%s" (mapconcat 'identity (process-command p) " "))
4425 ;; Check whether process is alive.
4426 (tramp-barf-if-no-shell-prompt
4427 p 10
4428 "Couldn't find local shell prompt for %s" tramp-encoding-shell)
4430 ;; Now do all the connections as specified.
4431 (while target-alist
4432 (let* ((hop (car target-alist))
4433 (l-method (tramp-file-name-method hop))
4434 (l-user (tramp-file-name-user hop))
4435 (l-host (tramp-file-name-host hop))
4436 (l-port nil)
4437 (login-program
4438 (tramp-get-method-parameter
4439 l-method 'tramp-login-program))
4440 (login-args
4441 (tramp-get-method-parameter
4442 l-method 'tramp-login-args))
4443 (async-args
4444 (tramp-get-method-parameter
4445 l-method 'tramp-async-args))
4446 (connection-timeout
4447 (tramp-get-method-parameter
4448 l-method 'tramp-connection-timeout))
4449 (gw-args
4450 (tramp-get-method-parameter l-method 'tramp-gw-args))
4451 (gw (tramp-get-file-property hop "" "gateway" nil))
4452 (g-method (and gw (tramp-file-name-method gw)))
4453 (g-user (and gw (tramp-file-name-user gw)))
4454 (g-host (and gw (tramp-file-name-real-host gw)))
4455 (command login-program)
4456 ;; We don't create the temporary file. In
4457 ;; fact, it is just a prefix for the
4458 ;; ControlPath option of ssh; the real
4459 ;; temporary file has another name, and it is
4460 ;; created and protected by ssh. It is also
4461 ;; removed by ssh when the connection is
4462 ;; closed. The temporary file name is cached
4463 ;; in the main connection process, therefore
4464 ;; we cannot use `tramp-get-connection-process'.
4465 (tmpfile
4466 (with-tramp-connection-property
4467 (get-process (tramp-buffer-name vec)) "temp-file"
4468 (make-temp-name
4469 (expand-file-name
4470 tramp-temp-name-prefix
4471 (tramp-compat-temporary-file-directory)))))
4472 spec r-shell)
4474 ;; Add arguments for asynchronous processes.
4475 (when (and process-name async-args)
4476 (setq login-args (append async-args login-args)))
4478 ;; Add gateway arguments if necessary.
4479 (when (and gw gw-args)
4480 (setq login-args (append gw-args login-args)))
4482 ;; Check for port number. Until now, there's no
4483 ;; need for handling like method, user, host.
4484 (when (string-match tramp-host-with-port-regexp l-host)
4485 (setq l-port (match-string 2 l-host)
4486 l-host (match-string 1 l-host)))
4488 ;; Check, whether there is a restricted shell.
4489 (dolist (elt tramp-restricted-shell-hosts-alist)
4490 (when (string-match elt tramp-current-host)
4491 (setq r-shell t)))
4493 ;; Set variables for computing the prompt for
4494 ;; reading password. They can also be derived
4495 ;; from a gateway.
4496 (setq tramp-current-method (or g-method l-method)
4497 tramp-current-user (or g-user l-user)
4498 tramp-current-host (or g-host l-host))
4500 ;; Replace `login-args' place holders.
4501 (setq
4502 l-host (or l-host "")
4503 l-user (or l-user "")
4504 l-port (or l-port "")
4505 spec (format-spec-make ?t tmpfile)
4506 options (format-spec options spec)
4507 spec (format-spec-make
4508 ?h l-host ?u l-user ?p l-port ?c options)
4509 command
4510 (concat
4511 ;; We do not want to see the trailing local
4512 ;; prompt in `start-file-process'.
4513 (unless r-shell "exec ")
4514 command " "
4515 (mapconcat
4516 (lambda (x)
4517 (setq x (mapcar (lambda (y) (format-spec y spec)) x))
4518 (unless (member "" x) (mapconcat 'identity x " ")))
4519 login-args " ")
4520 ;; Local shell could be a Windows COMSPEC. It
4521 ;; doesn't know the ";" syntax, but we must exit
4522 ;; always for `start-file-process'. It could
4523 ;; also be a restricted shell, which does not
4524 ;; allow "exec".
4525 (when r-shell " && exit || exit")))
4527 ;; Send the command.
4528 (tramp-message vec 3 "Sending command `%s'" command)
4529 (tramp-send-command vec command t t)
4530 (tramp-process-actions
4531 p vec pos tramp-actions-before-shell
4532 (or connection-timeout tramp-connection-timeout))
4533 (tramp-message
4534 vec 3 "Found remote shell prompt on `%s'" l-host))
4535 ;; Next hop.
4536 (setq options ""
4537 target-alist (cdr target-alist)))
4539 ;; Make initial shell settings.
4540 (tramp-open-connection-setup-interactive-shell p vec)))))
4542 ;; When the user did interrupt, we must cleanup.
4543 (quit
4544 (tramp-cleanup-connection vec t)
4545 ;; Propagate the quit signal.
4546 (signal (car err) (cdr err))))))
4548 (defun tramp-send-command (vec command &optional neveropen nooutput)
4549 "Send the COMMAND to connection VEC.
4550 Erases temporary buffer before sending the command. If optional
4551 arg NEVEROPEN is non-nil, never try to open the connection. This
4552 is meant to be used from `tramp-maybe-open-connection' only. The
4553 function waits for output unless NOOUTPUT is set."
4554 (unless neveropen (tramp-maybe-open-connection vec))
4555 (let ((p (tramp-get-connection-process vec)))
4556 (when (tramp-get-connection-property p "remote-echo" nil)
4557 ;; We mark the command string that it can be erased in the output buffer.
4558 (tramp-set-connection-property p "check-remote-echo" t)
4559 (setq command (format "%s%s%s" tramp-echo-mark command tramp-echo-mark)))
4560 ;; Some busyboxes tend to close the connection when we use the
4561 ;; following syntax for here-documents. This we cannot test; it
4562 ;; shall be set via `tramp-connection-properties'.
4563 (when (and (string-match "<<'EOF'" command)
4564 (not (tramp-get-connection-property vec "busybox" nil)))
4565 ;; Unset $PS1 when using here documents, in order to avoid
4566 ;; multiple prompts.
4567 (setq command (concat "(PS1= ; " command "\n)")))
4568 ;; Send the command.
4569 (tramp-message vec 6 "%s" command)
4570 (tramp-send-string vec command)
4571 (unless nooutput (tramp-wait-for-output p))))
4573 (defun tramp-wait-for-output (proc &optional timeout)
4574 "Wait for output from remote command."
4575 (unless (buffer-live-p (process-buffer proc))
4576 (delete-process proc)
4577 (tramp-error proc 'file-error "Process `%s' not available, try again" proc))
4578 (with-current-buffer (process-buffer proc)
4579 (let* (;; Initially, `tramp-end-of-output' is "#$ ". There might
4580 ;; be leading escape sequences, which must be ignored.
4581 (regexp (format "[^#$\n]*%s\r?$" (regexp-quote tramp-end-of-output)))
4582 ;; Sometimes, the commands do not return a newline but a
4583 ;; null byte before the shell prompt, for example "git
4584 ;; ls-files -c -z ...".
4585 (regexp1 (format "\\(^\\|\000\\)%s" regexp))
4586 (found (tramp-wait-for-regexp proc timeout regexp1)))
4587 (if found
4588 (let (buffer-read-only)
4589 ;; A simple-minded busybox has sent " ^H" sequences.
4590 ;; Delete them.
4591 (goto-char (point-min))
4592 (when (re-search-forward "^\\(.\b\\)+$" (point-at-eol) t)
4593 (forward-line 1)
4594 (delete-region (point-min) (point)))
4595 ;; Delete the prompt.
4596 (goto-char (point-max))
4597 (re-search-backward regexp nil t)
4598 (delete-region (point) (point-max)))
4599 (if timeout
4600 (tramp-error
4601 proc 'file-error
4602 "[[Remote prompt `%s' not found in %d secs]]"
4603 tramp-end-of-output timeout)
4604 (tramp-error
4605 proc 'file-error
4606 "[[Remote prompt `%s' not found]]" tramp-end-of-output)))
4607 ;; Return value is whether end-of-output sentinel was found.
4608 found)))
4610 (defun tramp-send-command-and-check
4611 (vec command &optional subshell dont-suppress-err)
4612 "Run COMMAND and check its exit status.
4613 Sends `echo $?' along with the COMMAND for checking the exit status. If
4614 COMMAND is nil, just sends `echo $?'. Returns the exit status found.
4616 If the optional argument SUBSHELL is non-nil, the command is
4617 executed in a subshell, ie surrounded by parentheses. If
4618 DONT-SUPPRESS-ERR is non-nil, stderr won't be sent to /dev/null."
4619 (tramp-send-command
4621 (concat (if subshell "( " "")
4622 command
4623 (if command (if dont-suppress-err "; " " 2>/dev/null; ") "")
4624 "echo tramp_exit_status $?"
4625 (if subshell " )" "")))
4626 (with-current-buffer (tramp-get-connection-buffer vec)
4627 (goto-char (point-max))
4628 (unless (re-search-backward "tramp_exit_status [0-9]+" nil t)
4629 (tramp-error
4630 vec 'file-error "Couldn't find exit status of `%s'" command))
4631 (skip-chars-forward "^ ")
4632 (prog1
4633 (zerop (read (current-buffer)))
4634 (let (buffer-read-only)
4635 (delete-region (match-beginning 0) (point-max))))))
4637 (defun tramp-barf-unless-okay (vec command fmt &rest args)
4638 "Run COMMAND, check exit status, throw error if exit status not okay.
4639 Similar to `tramp-send-command-and-check' but accepts two more arguments
4640 FMT and ARGS which are passed to `error'."
4641 (or (tramp-send-command-and-check vec command)
4642 (apply 'tramp-error vec 'file-error fmt args)))
4644 (defun tramp-send-command-and-read (vec command &optional noerror)
4645 "Run COMMAND and return the output, which must be a Lisp expression.
4646 In case there is no valid Lisp expression and NOERROR is nil, it
4647 raises an error."
4648 (when (if noerror
4649 (tramp-send-command-and-check vec command)
4650 (tramp-barf-unless-okay
4651 vec command "`%s' returns with error" command))
4652 (with-current-buffer (tramp-get-connection-buffer vec)
4653 ;; Read the expression.
4654 (goto-char (point-min))
4655 (condition-case nil
4656 (prog1 (read (current-buffer))
4657 ;; Error handling.
4658 (when (re-search-forward "\\S-" (point-at-eol) t)
4659 (error nil)))
4660 (error (unless noerror
4661 (tramp-error
4662 vec 'file-error
4663 "`%s' does not return a valid Lisp expression: `%s'"
4664 command (buffer-string))))))))
4666 (defun tramp-convert-file-attributes (vec attr)
4667 "Convert `file-attributes' ATTR generated by perl script, stat or ls.
4668 Convert file mode bits to string and set virtual device number.
4669 Return ATTR."
4670 (when attr
4671 ;; Remove color escape sequences from symlink.
4672 (when (stringp (car attr))
4673 (while (string-match tramp-color-escape-sequence-regexp (car attr))
4674 (setcar attr (replace-match "" nil nil (car attr)))))
4675 ;; Convert uid and gid. Use -1 as indication of unusable value.
4676 (when (and (numberp (nth 2 attr)) (< (nth 2 attr) 0))
4677 (setcar (nthcdr 2 attr) -1))
4678 (when (and (floatp (nth 2 attr))
4679 (<= (nth 2 attr) (tramp-compat-most-positive-fixnum)))
4680 (setcar (nthcdr 2 attr) (round (nth 2 attr))))
4681 (when (and (numberp (nth 3 attr)) (< (nth 3 attr) 0))
4682 (setcar (nthcdr 3 attr) -1))
4683 (when (and (floatp (nth 3 attr))
4684 (<= (nth 3 attr) (tramp-compat-most-positive-fixnum)))
4685 (setcar (nthcdr 3 attr) (round (nth 3 attr))))
4686 ;; Convert last access time.
4687 (unless (listp (nth 4 attr))
4688 (setcar (nthcdr 4 attr)
4689 (list (floor (nth 4 attr) 65536)
4690 (floor (mod (nth 4 attr) 65536)))))
4691 ;; Convert last modification time.
4692 (unless (listp (nth 5 attr))
4693 (setcar (nthcdr 5 attr)
4694 (list (floor (nth 5 attr) 65536)
4695 (floor (mod (nth 5 attr) 65536)))))
4696 ;; Convert last status change time.
4697 (unless (listp (nth 6 attr))
4698 (setcar (nthcdr 6 attr)
4699 (list (floor (nth 6 attr) 65536)
4700 (floor (mod (nth 6 attr) 65536)))))
4701 ;; Convert file size.
4702 (when (< (nth 7 attr) 0)
4703 (setcar (nthcdr 7 attr) -1))
4704 (when (and (floatp (nth 7 attr))
4705 (<= (nth 7 attr) (tramp-compat-most-positive-fixnum)))
4706 (setcar (nthcdr 7 attr) (round (nth 7 attr))))
4707 ;; Convert file mode bits to string.
4708 (unless (stringp (nth 8 attr))
4709 (setcar (nthcdr 8 attr) (tramp-file-mode-from-int (nth 8 attr)))
4710 (when (stringp (car attr))
4711 (aset (nth 8 attr) 0 ?l)))
4712 ;; Convert directory indication bit.
4713 (when (string-match "^d" (nth 8 attr))
4714 (setcar attr t))
4715 ;; Convert symlink from `tramp-do-file-attributes-with-stat'.
4716 (when (consp (car attr))
4717 (if (and (stringp (caar attr))
4718 (string-match ".+ -> .\\(.+\\)." (caar attr)))
4719 (setcar attr (match-string 1 (caar attr)))
4720 (setcar attr nil)))
4721 ;; Set file's gid change bit.
4722 (setcar (nthcdr 9 attr)
4723 (if (numberp (nth 3 attr))
4724 (not (= (nth 3 attr)
4725 (tramp-get-remote-gid vec 'integer)))
4726 (not (string-equal
4727 (nth 3 attr)
4728 (tramp-get-remote-gid vec 'string)))))
4729 ;; Convert inode.
4730 (unless (listp (nth 10 attr))
4731 (setcar (nthcdr 10 attr)
4732 (condition-case nil
4733 (cons (floor (nth 10 attr) 65536)
4734 (floor (mod (nth 10 attr) 65536)))
4735 ;; Inodes can be incredible huge. We must hide this.
4736 (error (tramp-get-inode vec)))))
4737 ;; Set virtual device number.
4738 (setcar (nthcdr 11 attr)
4739 (tramp-get-device vec))
4740 attr))
4742 (defun tramp-shell-case-fold (string)
4743 "Converts STRING to shell glob pattern which ignores case."
4744 (mapconcat
4745 (lambda (c)
4746 (if (equal (downcase c) (upcase c))
4747 (vector c)
4748 (format "[%c%c]" (downcase c) (upcase c))))
4749 string
4750 ""))
4752 (defun tramp-make-copy-program-file-name (vec)
4753 "Create a file name suitable to be passed to `rcp' and workalikes."
4754 (let ((user (tramp-file-name-user vec))
4755 (host (tramp-file-name-real-host vec))
4756 (localname (tramp-shell-quote-argument
4757 (tramp-file-name-localname vec))))
4758 (if (not (zerop (length user)))
4759 (format "%s@%s:%s" user host localname)
4760 (format "%s:%s" host localname))))
4762 (defun tramp-method-out-of-band-p (vec size)
4763 "Return t if this is an out-of-band method, nil otherwise."
4764 (and
4765 ;; It shall be an out-of-band method.
4766 (tramp-get-method-parameter (tramp-file-name-method vec) 'tramp-copy-program)
4767 ;; There must be a size, otherwise the file doesn't exist.
4768 (numberp size)
4769 ;; Either the file size is large enough, or (in rare cases) there
4770 ;; does not exist a remote encoding.
4771 (or (null tramp-copy-size-limit)
4772 (> size tramp-copy-size-limit)
4773 (null (tramp-get-inline-coding vec "remote-encoding" size)))))
4775 ;; Variables local to connection.
4777 (defun tramp-get-remote-path (vec)
4778 (with-tramp-connection-property
4779 ;; When `tramp-own-remote-path' is in `tramp-remote-path', we
4780 ;; cache the result for the session only. Otherwise, the result
4781 ;; is cached persistently.
4782 (if (memq 'tramp-own-remote-path tramp-remote-path)
4783 (tramp-get-connection-process vec)
4784 vec)
4785 "remote-path"
4786 (let* ((remote-path (copy-tree tramp-remote-path))
4787 (elt1 (memq 'tramp-default-remote-path remote-path))
4788 (elt2 (memq 'tramp-own-remote-path remote-path))
4789 (default-remote-path
4790 (when elt1
4792 (tramp-send-command-and-read
4793 vec "echo \\\"`getconf PATH 2>/dev/null`\\\"" 'noerror)
4794 ;; Default if "getconf" is not available.
4795 (progn
4796 (tramp-message
4797 vec 3
4798 "`getconf PATH' not successful, using default value \"%s\"."
4799 "/bin:/usr/bin")
4800 "/bin:/usr/bin"))))
4801 (own-remote-path
4802 (when elt2
4803 (condition-case nil
4804 (tramp-send-command-and-read vec "echo \\\"$PATH\\\"")
4805 (error
4806 (tramp-message
4807 vec 3 "$PATH not set, ignoring `tramp-own-remote-path'.")
4808 nil)))))
4810 ;; Replace place holder `tramp-default-remote-path'.
4811 (when elt1
4812 (setcdr elt1
4813 (append
4814 (tramp-compat-split-string default-remote-path ":")
4815 (cdr elt1)))
4816 (setq remote-path (delq 'tramp-default-remote-path remote-path)))
4818 ;; Replace place holder `tramp-own-remote-path'.
4819 (when elt2
4820 (setcdr elt2
4821 (append
4822 (tramp-compat-split-string own-remote-path ":")
4823 (cdr elt2)))
4824 (setq remote-path (delq 'tramp-own-remote-path remote-path)))
4826 ;; Remove double entries.
4827 (setq elt1 remote-path)
4828 (while (consp elt1)
4829 (while (and (car elt1) (setq elt2 (member (car elt1) (cdr elt1))))
4830 (setcar elt2 nil))
4831 (setq elt1 (cdr elt1)))
4833 ;; Remove non-existing directories.
4834 (delq
4836 (mapcar
4837 (lambda (x)
4838 (and
4839 (stringp x)
4840 (file-directory-p
4841 (tramp-make-tramp-file-name
4842 (tramp-file-name-method vec)
4843 (tramp-file-name-user vec)
4844 (tramp-file-name-host vec)
4847 remote-path)))))
4849 (defun tramp-get-remote-locale (vec)
4850 (with-tramp-connection-property vec "locale"
4851 (tramp-send-command vec "locale -a")
4852 (let ((candidates '("en_US.utf8" "C.utf8" "C"))
4853 locale)
4854 (with-current-buffer (tramp-get-connection-buffer vec)
4855 (while candidates
4856 (goto-char (point-min))
4857 (if (string-match (concat "^" (car candidates) "$") (buffer-string))
4858 (setq locale (car candidates)
4859 candidates nil)
4860 (setq candidates (cdr candidates)))))
4861 ;; Return value.
4862 (when locale (format "LC_ALL=%s" locale)))))
4864 (defun tramp-get-ls-command (vec)
4865 (with-tramp-connection-property vec "ls"
4866 (tramp-message vec 5 "Finding a suitable `ls' command")
4868 (catch 'ls-found
4869 (dolist (cmd '("ls" "gnuls" "gls"))
4870 (let ((dl (tramp-get-remote-path vec))
4871 result)
4872 (while (and dl (setq result (tramp-find-executable vec cmd dl t t)))
4873 ;; Check parameters. On busybox, "ls" output coloring is
4874 ;; enabled by default sometimes. So we try to disable it
4875 ;; when possible. $LS_COLORING is not supported there.
4876 ;; Some "ls" versions are sensible wrt the order of
4877 ;; arguments, they fail when "-al" is after the
4878 ;; "--color=never" argument (for example on FreeBSD).
4879 (when (tramp-send-command-and-check
4880 vec (format "%s -lnd /" result))
4881 (when (tramp-send-command-and-check
4882 vec (format
4883 "%s --color=never -al /dev/null" result))
4884 (setq result (concat result " --color=never")))
4885 (throw 'ls-found result))
4886 (setq dl (cdr dl))))))
4887 (tramp-error vec 'file-error "Couldn't find a proper `ls' command"))))
4889 (defun tramp-get-ls-command-with-dired (vec)
4890 (save-match-data
4891 (with-tramp-connection-property vec "ls-dired"
4892 (tramp-message vec 5 "Checking, whether `ls --dired' works")
4893 ;; Some "ls" versions are sensible wrt the order of arguments,
4894 ;; they fail when "-al" is after the "--dired" argument (for
4895 ;; example on FreeBSD).
4896 (tramp-send-command-and-check
4897 vec (format "%s --dired -al /dev/null" (tramp-get-ls-command vec))))))
4899 (defun tramp-get-test-command (vec)
4900 (with-tramp-connection-property vec "test"
4901 (tramp-message vec 5 "Finding a suitable `test' command")
4902 (if (tramp-send-command-and-check vec "test 0")
4903 "test"
4904 (tramp-find-executable vec "test" (tramp-get-remote-path vec)))))
4906 (defun tramp-get-test-nt-command (vec)
4907 ;; Does `test A -nt B' work? Use abominable `find' construct if it
4908 ;; doesn't. BSD/OS 4.0 wants the parentheses around the command,
4909 ;; for otherwise the shell crashes.
4910 (with-tramp-connection-property vec "test-nt"
4912 (progn
4913 (tramp-send-command
4914 vec (format "( %s / -nt / )" (tramp-get-test-command vec)))
4915 (with-current-buffer (tramp-get-buffer vec)
4916 (goto-char (point-min))
4917 (when (looking-at (regexp-quote tramp-end-of-output))
4918 (format "%s %%s -nt %%s" (tramp-get-test-command vec)))))
4919 (progn
4920 (tramp-send-command
4922 (format
4923 "tramp_test_nt () {\n%s -n \"`find $1 -prune -newer $2 -print`\"\n}"
4924 (tramp-get-test-command vec)))
4925 "tramp_test_nt %s %s"))))
4927 (defun tramp-get-file-exists-command (vec)
4928 (with-tramp-connection-property vec "file-exists"
4929 (tramp-message vec 5 "Finding command to check if file exists")
4930 (tramp-find-file-exists-command vec)))
4932 (defun tramp-get-remote-ln (vec)
4933 (with-tramp-connection-property vec "ln"
4934 (tramp-message vec 5 "Finding a suitable `ln' command")
4935 (tramp-find-executable vec "ln" (tramp-get-remote-path vec))))
4937 (defun tramp-get-remote-perl (vec)
4938 (with-tramp-connection-property vec "perl"
4939 (tramp-message vec 5 "Finding a suitable `perl' command")
4940 (let ((result
4941 (or (tramp-find-executable vec "perl5" (tramp-get-remote-path vec))
4942 (tramp-find-executable
4943 vec "perl" (tramp-get-remote-path vec)))))
4944 ;; We must check also for some Perl modules.
4945 (when result
4946 (with-tramp-connection-property vec "perl-file-spec"
4947 (tramp-send-command-and-check
4948 vec (format "%s -e 'use File::Spec;'" result)))
4949 (with-tramp-connection-property vec "perl-cwd-realpath"
4950 (tramp-send-command-and-check
4951 vec (format "%s -e 'use Cwd \"realpath\";'" result))))
4952 result)))
4954 (defun tramp-get-remote-stat (vec)
4955 (with-tramp-connection-property vec "stat"
4956 (tramp-message vec 5 "Finding a suitable `stat' command")
4957 (let ((result (tramp-find-executable
4958 vec "stat" (tramp-get-remote-path vec)))
4959 tmp)
4960 ;; Check whether stat(1) returns usable syntax. "%s" does not
4961 ;; work on older AIX systems.
4962 (when result
4963 (setq tmp
4964 (tramp-send-command-and-read
4965 vec (format "%s -c '(\"%%N\" %%s)' /" result) 'noerror))
4966 (unless (and (listp tmp) (stringp (car tmp))
4967 (string-match "^./.$" (car tmp))
4968 (integerp (cadr tmp)))
4969 (setq result nil)))
4970 result)))
4972 (defun tramp-get-remote-readlink (vec)
4973 (with-tramp-connection-property vec "readlink"
4974 (tramp-message vec 5 "Finding a suitable `readlink' command")
4975 (let ((result (tramp-find-executable
4976 vec "readlink" (tramp-get-remote-path vec))))
4977 (when (and result
4978 (tramp-send-command-and-check
4979 vec (format "%s --canonicalize-missing /" result)))
4980 result))))
4982 (defun tramp-get-remote-trash (vec)
4983 (with-tramp-connection-property vec "trash"
4984 (tramp-message vec 5 "Finding a suitable `trash' command")
4985 (tramp-find-executable vec "trash" (tramp-get-remote-path vec))))
4987 (defun tramp-get-remote-gvfs-monitor-dir (vec)
4988 (with-tramp-connection-property vec "gvfs-monitor-dir"
4989 (tramp-message vec 5 "Finding a suitable `gvfs-monitor-dir' command")
4990 (tramp-find-executable
4991 vec "gvfs-monitor-dir" (tramp-get-remote-path vec) t t)))
4993 (defun tramp-get-remote-inotifywait (vec)
4994 (with-tramp-connection-property vec "inotifywait"
4995 (tramp-message vec 5 "Finding a suitable `inotifywait' command")
4996 (tramp-find-executable vec "inotifywait" (tramp-get-remote-path vec) t t)))
4998 (defun tramp-get-remote-id (vec)
4999 (with-tramp-connection-property vec "id"
5000 (tramp-message vec 5 "Finding POSIX `id' command")
5001 (catch 'id-found
5002 (let ((dl (tramp-get-remote-path vec))
5003 result)
5004 (while (and dl (setq result (tramp-find-executable vec "id" dl t t)))
5005 ;; Check POSIX parameter.
5006 (when (tramp-send-command-and-check vec (format "%s -u" result))
5007 (throw 'id-found result))
5008 (setq dl (cdr dl)))))))
5010 (defun tramp-get-remote-uid-with-id (vec id-format)
5011 (tramp-send-command-and-read
5013 (format "%s -u%s %s"
5014 (tramp-get-remote-id vec)
5015 (if (equal id-format 'integer) "" "n")
5016 (if (equal id-format 'integer)
5017 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/"))))
5019 (defun tramp-get-remote-uid-with-perl (vec id-format)
5020 (tramp-send-command-and-read
5022 (format "%s -le '%s'"
5023 (tramp-get-remote-perl vec)
5024 (if (equal id-format 'integer)
5025 "print $>"
5026 "print \"\\\"\", scalar getpwuid($>), \"\\\"\""))))
5028 (defun tramp-get-remote-python (vec)
5029 (with-tramp-connection-property vec "python"
5030 (tramp-message vec 5 "Finding a suitable `python' command")
5031 (tramp-find-executable vec "python" (tramp-get-remote-path vec))))
5033 (defun tramp-get-remote-uid-with-python (vec id-format)
5034 (tramp-send-command-and-read
5036 (format "%s -c \"%s\""
5037 (tramp-get-remote-python vec)
5038 (if (equal id-format 'integer)
5039 "import os; print os.getuid()"
5040 "import os, pwd; print '\\\"' + pwd.getpwuid(os.getuid())[0] + '\\\"'"))))
5042 (defun tramp-get-remote-uid (vec id-format)
5043 (with-tramp-connection-property vec (format "uid-%s" id-format)
5044 (let ((res (cond
5045 ((tramp-get-remote-id vec)
5046 (tramp-get-remote-uid-with-id vec id-format))
5047 ((tramp-get-remote-perl vec)
5048 (tramp-get-remote-uid-with-perl vec id-format))
5049 ((tramp-get-remote-python vec)
5050 (tramp-get-remote-uid-with-python vec id-format))
5051 (t (tramp-error
5052 vec 'file-error "Cannot determine remote uid")))))
5053 ;; The command might not always return a number.
5054 (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
5056 (defun tramp-get-remote-gid-with-id (vec id-format)
5057 (tramp-send-command-and-read
5059 (format "%s -g%s %s"
5060 (tramp-get-remote-id vec)
5061 (if (equal id-format 'integer) "" "n")
5062 (if (equal id-format 'integer)
5063 "" "| sed -e s/^/\\\"/ -e s/\$/\\\"/"))))
5065 (defun tramp-get-remote-gid-with-perl (vec id-format)
5066 (tramp-send-command-and-read
5068 (format "%s -le '%s'"
5069 (tramp-get-remote-perl vec)
5070 (if (equal id-format 'integer)
5071 "print ($)=~/(\\d+)/)"
5072 "print \"\\\"\", scalar getgrgid($)), \"\\\"\""))))
5074 (defun tramp-get-remote-gid-with-python (vec id-format)
5075 (tramp-send-command-and-read
5077 (format "%s -c \"%s\""
5078 (tramp-get-remote-python vec)
5079 (if (equal id-format 'integer)
5080 "import os; print os.getgid()"
5081 "import os, grp; print '\\\"' + grp.getgrgid(os.getgid())[0] + '\\\"'"))))
5083 (defun tramp-get-remote-gid (vec id-format)
5084 (with-tramp-connection-property vec (format "gid-%s" id-format)
5085 (let ((res (cond
5086 ((tramp-get-remote-id vec)
5087 (tramp-get-remote-gid-with-id vec id-format))
5088 ((tramp-get-remote-perl vec)
5089 (tramp-get-remote-gid-with-perl vec id-format))
5090 ((tramp-get-remote-python vec)
5091 (tramp-get-remote-gid-with-python vec id-format))
5092 (t (tramp-error
5093 vec 'file-error "Cannot determine remote gid")))))
5094 ;; The command might not always return a number.
5095 (if (and (equal id-format 'integer) (not (integerp res))) -1 res))))
5097 ;; Some predefined connection properties.
5098 (defun tramp-get-inline-compress (vec prop size)
5099 "Return the compress command related to PROP.
5100 PROP is either `inline-compress' or `inline-decompress'. SIZE is
5101 the length of the file to be compressed.
5103 If no corresponding command is found, nil is returned."
5104 (when (and (integerp tramp-inline-compress-start-size)
5105 (> size tramp-inline-compress-start-size))
5106 (with-tramp-connection-property (tramp-get-connection-process vec) prop
5107 (tramp-find-inline-compress vec)
5108 (tramp-get-connection-property
5109 (tramp-get-connection-process vec) prop nil))))
5111 (defun tramp-get-inline-coding (vec prop size)
5112 "Return the coding command related to PROP.
5113 PROP is either `remote-encoding', `remote-decoding',
5114 `local-encoding' or `local-decoding'.
5116 SIZE is the length of the file to be coded. Depending on SIZE,
5117 compression might be applied.
5119 If no corresponding command is found, nil is returned.
5120 Otherwise, either a string is returned which contains a `%s' mark
5121 to be used for the respective input or output file; or a Lisp
5122 function cell is returned to be applied on a buffer."
5123 ;; We must catch the errors, because we want to return `nil', when
5124 ;; no inline coding is found.
5125 (ignore-errors
5126 (let ((coding
5127 (with-tramp-connection-property
5128 (tramp-get-connection-process vec) prop
5129 (tramp-find-inline-encoding vec)
5130 (tramp-get-connection-property
5131 (tramp-get-connection-process vec) prop nil)))
5132 (prop1 (if (string-match "encoding" prop)
5133 "inline-compress" "inline-decompress"))
5134 compress)
5135 ;; The connection property might have been cached. So we must
5136 ;; send the script to the remote side - maybe.
5137 (when (and coding (symbolp coding) (string-match "remote" prop))
5138 (let ((name (symbol-name coding)))
5139 (while (string-match (regexp-quote "-") name)
5140 (setq name (replace-match "_" nil t name)))
5141 (tramp-maybe-send-script vec (symbol-value coding) name)
5142 (setq coding name)))
5143 (when coding
5144 ;; Check for the `compress' command.
5145 (setq compress (tramp-get-inline-compress vec prop1 size))
5146 ;; Return the value.
5147 (cond
5148 ((and compress (symbolp coding))
5149 (if (string-match "decompress" prop1)
5150 `(lambda (beg end)
5151 (,coding beg end)
5152 (let ((coding-system-for-write 'binary)
5153 (coding-system-for-read 'binary))
5154 (apply
5155 'call-process-region (point-min) (point-max)
5156 (car (split-string ,compress)) t t nil
5157 (cdr (split-string ,compress)))))
5158 `(lambda (beg end)
5159 (let ((coding-system-for-write 'binary)
5160 (coding-system-for-read 'binary))
5161 (apply
5162 'call-process-region beg end
5163 (car (split-string ,compress)) t t nil
5164 (cdr (split-string ,compress))))
5165 (,coding (point-min) (point-max)))))
5166 ((symbolp coding)
5167 coding)
5168 ((and compress (string-match "decoding" prop))
5169 (format
5170 ;; Windows shells need the program file name after
5171 ;; the pipe symbol be quoted if they use forward
5172 ;; slashes as directory separators.
5173 (cond
5174 ((and (string-match "local" prop)
5175 (memq system-type '(windows-nt)))
5176 "(%s | \"%s\")")
5177 ((string-match "local" prop) "(%s | %s)")
5178 (t "(%s | %s >%%s)"))
5179 coding compress))
5180 (compress
5181 (format
5182 ;; Windows shells need the program file name after
5183 ;; the pipe symbol be quoted if they use forward
5184 ;; slashes as directory separators.
5185 (if (and (string-match "local" prop)
5186 (memq system-type '(windows-nt)))
5187 "(%s <%%s | \"%s\")"
5188 "(%s <%%s | %s)")
5189 compress coding))
5190 ((string-match "decoding" prop)
5191 (cond
5192 ((string-match "local" prop) (format "%s" coding))
5193 (t (format "%s >%%s" coding))))
5195 (format "%s <%%s" coding)))))))
5197 (add-hook 'tramp-unload-hook
5198 (lambda ()
5199 (unload-feature 'tramp-sh 'force)))
5201 (provide 'tramp-sh)
5203 ;;; TODO:
5205 ;; * Don't use globbing for directories with many files, as this is
5206 ;; likely to produce long command lines, and some shells choke on
5207 ;; long command lines.
5208 ;; * Make it work for different encodings, and for different file name
5209 ;; encodings, too. (Daniel Pittman)
5210 ;; * Don't search for perl5 and perl. Instead, only search for perl and
5211 ;; then look if it's the right version (with `perl -v').
5212 ;; * When editing a remote CVS controlled file as a different user, VC
5213 ;; gets confused about the file locking status. Try to find out why
5214 ;; the workaround doesn't work.
5215 ;; * Allow out-of-band methods as _last_ multi-hop. Open a connection
5216 ;; until the last but one hop via `start-file-process'. Apply it
5217 ;; also for ftp and smb.
5218 ;; * WIBNI if we had a command "trampclient"? If I was editing in
5219 ;; some shell with root privileges, it would be nice if I could
5220 ;; just call
5221 ;; trampclient filename.c
5222 ;; as an editor, and the _current_ shell would connect to an Emacs
5223 ;; server and would be used in an existing non-privileged Emacs
5224 ;; session for doing the editing in question.
5225 ;; That way, I need not tell Emacs my password again and be afraid
5226 ;; that it makes it into core dumps or other ugly stuff (I had Emacs
5227 ;; once display a just typed password in the context of a keyboard
5228 ;; sequence prompt for a question immediately following in a shell
5229 ;; script run within Emacs -- nasty).
5230 ;; And if I have some ssh session running to a different computer,
5231 ;; having the possibility of passing a local file there to a local
5232 ;; Emacs session (in case I can arrange for a connection back) would
5233 ;; be nice.
5234 ;; Likely the corresponding Tramp server should not allow the
5235 ;; equivalent of the emacsclient -eval option in order to make this
5236 ;; reasonably unproblematic. And maybe trampclient should have some
5237 ;; way of passing credentials, like by using an SSL socket or
5238 ;; something. (David Kastrup)
5239 ;; * Reconnect directly to a compliant shell without first going
5240 ;; through the user's default shell. (Pete Forman)
5241 ;; * How can I interrupt the remote process with a signal
5242 ;; (interrupt-process seems not to work)? (Markus Triska)
5243 ;; * Avoid the local shell entirely for starting remote processes. If
5244 ;; so, I think even a signal, when delivered directly to the local
5245 ;; SSH instance, would correctly be propagated to the remote process
5246 ;; automatically; possibly SSH would have to be started with
5247 ;; "-t". (Markus Triska)
5248 ;; * It makes me wonder if tramp couldn't fall back to ssh when scp
5249 ;; isn't on the remote host. (Mark A. Hershberger)
5250 ;; * Use lsh instead of ssh. (Alfred M. Szmidt)
5251 ;; * Optimize out-of-band copying when both methods are scp-like (not
5252 ;; rsync).
5253 ;; * Keep a second connection open for out-of-band methods like scp or
5254 ;; rsync.
5255 ;; * Try telnet+curl as new method. It might be useful for busybox,
5256 ;; without built-in uuencode/uudecode.
5258 ;;; tramp-sh.el ends here