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