]> code.delx.au - gnu-emacs/blob - lisp/net/tramp.el
* net/tramp.el (tramp-completion-file-name-handler): Disable
[gnu-emacs] / lisp / net / tramp.el
1 ;;; -*- mode: Emacs-Lisp; coding: iso-2022-7bit; -*-
2 ;;; tramp.el --- Transparent Remote Access, Multiple Protocol
3
4 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 ;; 2005, 2006 Free Software Foundation, Inc.
6
7 ;; Author: Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
8 ;; Michael Albinus <michael.albinus@gmx.de>
9 ;; Keywords: comm, processes
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
27
28 ;;; Commentary:
29
30 ;; This package provides remote file editing, similar to ange-ftp.
31 ;; The difference is that ange-ftp uses FTP to transfer files between
32 ;; the local and the remote host, whereas tramp.el uses a combination
33 ;; of rsh and rcp or other work-alike programs, such as ssh/scp.
34 ;;
35 ;; For more detailed instructions, please see the info file.
36 ;;
37 ;; Notes:
38 ;; -----
39 ;;
40 ;; This package only works for Emacs 20 and higher, and for XEmacs 21
41 ;; and higher. (XEmacs 20 is missing the `with-timeout' macro. Emacs
42 ;; 19 is reported to have other problems. For XEmacs 21, you need the
43 ;; package `fsf-compat' for the `with-timeout' macro.)
44 ;;
45 ;; This version might not work with pre-Emacs 21 VC unless VC is
46 ;; loaded before tramp.el. Could you please test this and tell me about
47 ;; the result? Thanks.
48 ;;
49 ;; Also see the todo list at the bottom of this file.
50 ;;
51 ;; The current version of Tramp can be retrieved from the following URL:
52 ;; http://ftp.gnu.org/gnu/tramp/
53 ;;
54 ;; There's a mailing list for this, as well. Its name is:
55 ;; tramp-devel@gnu.org
56 ;; You can use the Web to subscribe, under the following URL:
57 ;; http://lists.gnu.org/mailman/listinfo/tramp-devel
58 ;;
59 ;; For the adventurous, the current development sources are available
60 ;; via CVS. You can find instructions about this at the following URL:
61 ;; http://savannah.gnu.org/projects/tramp/
62 ;; Click on "CVS" in the navigation bar near the top.
63 ;;
64 ;; Don't forget to put on your asbestos longjohns, first!
65
66 ;;; Code:
67
68 ;; The Tramp version number and bug report address, as prepared by configure.
69 (require 'trampver)
70 (add-hook 'tramp-unload-hook
71 '(lambda ()
72 (when (featurep 'trampver)
73 (unload-feature 'trampver 'force))))
74
75 (if (featurep 'xemacs)
76 (require 'timer-funcs)
77 (require 'timer))
78
79 (require 'format-spec) ;from Gnus 5.8, also in tar ball
80 ;; As long as password.el is not part of (X)Emacs, it shouldn't
81 ;; be mandatory
82 (if (featurep 'xemacs)
83 (load "password" 'noerror)
84 (require 'password nil 'noerror)) ;from No Gnus, also in tar ball
85
86 ;; The explicit check is not necessary in Emacs, which provides the
87 ;; feature even if implemented in C, but it appears to be necessary
88 ;; in XEmacs.
89 (unless (and (fboundp 'base64-encode-region)
90 (fboundp 'base64-decode-region))
91 (require 'base64)) ;for the mimencode methods
92 (require 'shell)
93 (require 'advice)
94
95 (autoload 'tramp-uuencode-region "tramp-uu"
96 "Implementation of `uuencode' in Lisp.")
97 (add-hook 'tramp-unload-hook
98 '(lambda ()
99 (when (featurep 'tramp-uu)
100 (unload-feature 'tramp-uu 'force))))
101
102 (unless (fboundp 'uudecode-decode-region)
103 (autoload 'uudecode-decode-region "uudecode"))
104
105 ;; XEmacs is distributed with few Lisp packages. Further packages are
106 ;; installed using EFS. If we use a unified filename format, then
107 ;; Tramp is required in addition to EFS. (But why can't Tramp just
108 ;; disable EFS when Tramp is loaded? Then XEmacs can ship with EFS
109 ;; just like before.) Another reason for using a separate filename
110 ;; syntax on XEmacs is that EFS hooks into XEmacs in many places, but
111 ;; Tramp only knows how to deal with `file-name-handler-alist', not
112 ;; the other places.
113 ;;;###autoload
114 (defvar tramp-unified-filenames (not (featurep 'xemacs))
115 "Non-nil means to use unified Ange-FTP/Tramp filename syntax.
116 Nil means to use a separate filename syntax for Tramp.")
117
118 ;; Load foreign methods. Because they do require Tramp internally, this
119 ;; must be done with the `eval-after-load' trick.
120
121 ;; tramp-ftp supports Ange-FTP only. Not suited for XEmacs therefore.
122 (unless (featurep 'xemacs)
123 (eval-after-load "tramp"
124 '(progn
125 (require 'tramp-ftp)
126 (add-hook 'tramp-unload-hook
127 '(lambda ()
128 (when (featurep 'tramp-ftp)
129 (unload-feature 'tramp-ftp 'force)))))))
130 (when (and tramp-unified-filenames (featurep 'xemacs))
131 (eval-after-load "tramp"
132 '(progn
133 (require 'tramp-efs)
134 (add-hook 'tramp-unload-hook
135 '(lambda ()
136 (when (featurep 'tramp-efs)
137 (unload-feature 'tramp-efs 'force)))))))
138
139 ;; tramp-smb uses "smbclient" from Samba.
140 ;; Not available under Cygwin and Windows, because they don't offer
141 ;; "smbclient". And even not necessary there, because Emacs supports
142 ;; UNC file names like "//host/share/localname".
143 (unless (memq system-type '(cygwin windows-nt))
144 (eval-after-load "tramp"
145 '(progn
146 (require 'tramp-smb)
147 (add-hook 'tramp-unload-hook
148 '(lambda ()
149 (when (featurep 'tramp-smb)
150 (unload-feature 'tramp-smb 'force)))))))
151
152 (eval-when-compile
153 (require 'cl)
154 (require 'custom)
155 ;; Emacs 19.34 compatibility hack -- is this needed?
156 (or (>= emacs-major-version 20)
157 (load "cl-seq")))
158
159 (unless (boundp 'custom-print-functions)
160 (defvar custom-print-functions nil)) ; not autoloaded before Emacs 20.4
161
162 ;; Avoid byte-compiler warnings if the byte-compiler supports this.
163 ;; Currently, XEmacs supports this.
164 (eval-when-compile
165 (when (featurep 'xemacs)
166 (let (unused-vars) ; Pacify Emacs byte-compiler
167 (defalias 'warnings 'identity) ; Pacify Emacs byte-compiler
168 (byte-compiler-options (warnings (- unused-vars))))))
169
170 ;; `directory-sep-char' is an obsolete variable in Emacs. But it is
171 ;; used in XEmacs, so we set it here and there. The following is needed
172 ;; to pacify Emacs byte-compiler.
173 (eval-when-compile
174 (when (boundp 'byte-compile-not-obsolete-var)
175 (setq byte-compile-not-obsolete-var 'directory-sep-char)))
176
177 ;;; User Customizable Internal Variables:
178
179 (defgroup tramp nil
180 "Edit remote files with a combination of rsh and rcp or similar programs."
181 :group 'files
182 :version "22.1")
183
184 (defcustom tramp-verbose 9
185 "*Verbosity level for tramp.el. 0 means be silent, 10 is most verbose."
186 :group 'tramp
187 :type 'integer)
188
189 (defcustom tramp-debug-buffer nil
190 "*Whether to send all commands and responses to a debug buffer."
191 :group 'tramp
192 :type 'boolean)
193
194 ;; Emacs case
195 (eval-and-compile
196 (when (boundp 'backup-directory-alist)
197 (defcustom tramp-backup-directory-alist nil
198 "Alist of filename patterns and backup directory names.
199 Each element looks like (REGEXP . DIRECTORY), with the same meaning like
200 in `backup-directory-alist'. If a Tramp file is backed up, and DIRECTORY
201 is a local file name, the backup directory is prepended with Tramp file
202 name prefix \(multi-method, method, user, host\) of file.
203
204 \(setq tramp-backup-directory-alist backup-directory-alist\)
205
206 gives the same backup policy for Tramp files on their hosts like the
207 policy for local files."
208 :group 'tramp
209 :type '(repeat (cons (regexp :tag "Regexp matching filename")
210 (directory :tag "Backup directory name"))))))
211
212 ;; XEmacs case. We cannot check for `bkup-backup-directory-info', because
213 ;; the package "backup-dir" might not be loaded yet.
214 (eval-and-compile
215 (when (featurep 'xemacs)
216 (defcustom tramp-bkup-backup-directory-info nil
217 "*Alist of (FILE-REGEXP BACKUP-DIR OPTIONS ...))
218 It has the same meaning like `bkup-backup-directory-info' from package
219 `backup-dir'. If a Tramp file is backed up, and BACKUP-DIR is a local
220 file name, the backup directory is prepended with Tramp file name prefix
221 \(multi-method, method, user, host\) of file.
222
223 \(setq tramp-bkup-backup-directory-info bkup-backup-directory-info\)
224
225 gives the same backup policy for Tramp files on their hosts like the
226 policy for local files."
227 :type '(repeat
228 (list (regexp :tag "File regexp")
229 (string :tag "Backup Dir")
230 (set :inline t
231 (const ok-create)
232 (const full-path)
233 (const prepend-name)
234 (const search-upward))))
235 :group 'tramp)))
236
237 (defcustom tramp-auto-save-directory nil
238 "*Put auto-save files in this directory, if set.
239 The idea is to use a local directory so that auto-saving is faster."
240 :group 'tramp
241 :type '(choice (const nil)
242 string))
243
244 (defcustom tramp-encoding-shell
245 (if (memq system-type '(windows-nt))
246 (getenv "COMSPEC")
247 "/bin/sh")
248 "*Use this program for encoding and decoding commands on the local host.
249 This shell is used to execute the encoding and decoding command on the
250 local host, so if you want to use `~' in those commands, you should
251 choose a shell here which groks tilde expansion. `/bin/sh' normally
252 does not understand tilde expansion.
253
254 For encoding and deocding, commands like the following are executed:
255
256 /bin/sh -c COMMAND < INPUT > OUTPUT
257
258 This variable can be used to change the \"/bin/sh\" part. See the
259 variable `tramp-encoding-command-switch' for the \"-c\" part. Also, see the
260 variable `tramp-encoding-reads-stdin' to specify whether the commands read
261 standard input or a file.
262
263 Note that this variable is not used for remote commands. There are
264 mechanisms in tramp.el which automatically determine the right shell to
265 use for the remote host."
266 :group 'tramp
267 :type '(file :must-match t))
268
269 (defcustom tramp-encoding-command-switch
270 (if (string-match "cmd\\.exe" tramp-encoding-shell)
271 "/c"
272 "-c")
273 "*Use this switch together with `tramp-encoding-shell' for local commands.
274 See the variable `tramp-encoding-shell' for more information."
275 :group 'tramp
276 :type 'string)
277
278 (defcustom tramp-encoding-reads-stdin t
279 "*If non-nil, encoding commands read from standard input.
280 If nil, the filename is the last argument.
281
282 Note that the commands always must write to standard output."
283 :group 'tramp
284 :type 'boolean)
285
286 (defcustom tramp-multi-sh-program
287 tramp-encoding-shell
288 "*Use this program for bootstrapping multi-hop connections.
289 This variable is similar to `tramp-encoding-shell', but it is only used
290 when initializing a multi-hop connection. Therefore, the set of
291 commands sent to this shell is quite restricted, and if you are
292 careful it works to use CMD.EXE under Windows (instead of a Bourne-ish
293 shell which does not normally exist on Windows anyway).
294
295 To use multi-hop methods from Windows, you also need suitable entries
296 in `tramp-multi-connection-function-alist' for the first hop.
297
298 This variable defaults to the value of `tramp-encoding-shell'."
299 :group 'tramp
300 :type '(file :must-match t))
301
302 ;; CCC I have changed all occurrences of comint-quote-filename with
303 ;; tramp-shell-quote-argument, except in tramp-handle-expand-many-files.
304 ;; There, comint-quote-filename was removed altogether. If it turns
305 ;; out to be necessary there, something will need to be done.
306 ;;-(defcustom tramp-file-name-quote-list
307 ;;- '(?] ?[ ?\| ?& ?< ?> ?\( ?\) ?\; ?\ ?\* ?\? ?\! ?\" ?\' ?\` ?# ?\@ ?\+ )
308 ;;- "*Protect these characters from the remote shell.
309 ;;-Any character in this list is quoted (preceded with a backslash)
310 ;;-because it means something special to the shell. This takes effect
311 ;;-when sending file and directory names to the remote shell.
312 ;;-
313 ;;-See `comint-file-name-quote-list' for details."
314 ;;- :group 'tramp
315 ;;- :type '(repeat character))
316
317 (defcustom tramp-methods
318 '( ("rcp" (tramp-connection-function tramp-open-connection-rsh)
319 (tramp-login-program "rsh")
320 (tramp-copy-program "rcp")
321 (tramp-remote-sh "/bin/sh")
322 (tramp-login-args nil)
323 (tramp-copy-args nil)
324 (tramp-copy-keep-date-arg "-p")
325 (tramp-password-end-of-line nil))
326 ("scp" (tramp-connection-function tramp-open-connection-rsh)
327 (tramp-login-program "ssh")
328 (tramp-copy-program "scp")
329 (tramp-remote-sh "/bin/sh")
330 (tramp-login-args ("-e" "none"))
331 (tramp-copy-args nil)
332 (tramp-copy-keep-date-arg "-p")
333 (tramp-password-end-of-line nil))
334 ("scp1" (tramp-connection-function tramp-open-connection-rsh)
335 (tramp-login-program "ssh")
336 (tramp-copy-program "scp")
337 (tramp-remote-sh "/bin/sh")
338 (tramp-login-args ("-1" "-e" "none"))
339 (tramp-copy-args ("-1"))
340 (tramp-copy-keep-date-arg "-p")
341 (tramp-password-end-of-line nil))
342 ("scp2" (tramp-connection-function tramp-open-connection-rsh)
343 (tramp-login-program "ssh")
344 (tramp-copy-program "scp")
345 (tramp-remote-sh "/bin/sh")
346 (tramp-login-args ("-2" "-e" "none"))
347 (tramp-copy-args ("-2"))
348 (tramp-copy-keep-date-arg "-p")
349 (tramp-password-end-of-line nil))
350 ("scp1_old"
351 (tramp-connection-function tramp-open-connection-rsh)
352 (tramp-login-program "ssh1")
353 (tramp-copy-program "scp1")
354 (tramp-remote-sh "/bin/sh")
355 (tramp-login-args ("-e" "none"))
356 (tramp-copy-args nil)
357 (tramp-copy-keep-date-arg "-p")
358 (tramp-password-end-of-line nil))
359 ("scp2_old"
360 (tramp-connection-function tramp-open-connection-rsh)
361 (tramp-login-program "ssh2")
362 (tramp-copy-program "scp2")
363 (tramp-remote-sh "/bin/sh")
364 (tramp-login-args ("-e" "none"))
365 (tramp-copy-args nil)
366 (tramp-copy-keep-date-arg "-p")
367 (tramp-password-end-of-line nil))
368 ("rsync" (tramp-connection-function tramp-open-connection-rsh)
369 (tramp-login-program "ssh")
370 (tramp-copy-program "rsync")
371 (tramp-remote-sh "/bin/sh")
372 (tramp-login-args ("-e" "none"))
373 (tramp-copy-args ("-e" "ssh"))
374 (tramp-copy-keep-date-arg "-t")
375 (tramp-password-end-of-line nil))
376 ("remcp" (tramp-connection-function tramp-open-connection-rsh)
377 (tramp-login-program "remsh")
378 (tramp-copy-program "rcp")
379 (tramp-remote-sh "/bin/sh")
380 (tramp-login-args nil)
381 (tramp-copy-args nil)
382 (tramp-copy-keep-date-arg "-p")
383 (tramp-password-end-of-line nil))
384 ("rsh" (tramp-connection-function tramp-open-connection-rsh)
385 (tramp-login-program "rsh")
386 (tramp-copy-program nil)
387 (tramp-remote-sh "/bin/sh")
388 (tramp-login-args nil)
389 (tramp-copy-args nil)
390 (tramp-copy-keep-date-arg nil)
391 (tramp-password-end-of-line nil))
392 ("ssh" (tramp-connection-function tramp-open-connection-rsh)
393 (tramp-login-program "ssh")
394 (tramp-copy-program nil)
395 (tramp-remote-sh "/bin/sh")
396 (tramp-login-args ("-e" "none"))
397 (tramp-copy-args nil)
398 (tramp-copy-keep-date-arg nil)
399 (tramp-password-end-of-line nil))
400 ("ssh1" (tramp-connection-function tramp-open-connection-rsh)
401 (tramp-login-program "ssh")
402 (tramp-copy-program nil)
403 (tramp-remote-sh "/bin/sh")
404 (tramp-login-args ("-1" "-e" "none"))
405 (tramp-copy-args ("-1"))
406 (tramp-copy-keep-date-arg nil)
407 (tramp-password-end-of-line nil))
408 ("ssh2" (tramp-connection-function tramp-open-connection-rsh)
409 (tramp-login-program "ssh")
410 (tramp-copy-program nil)
411 (tramp-remote-sh "/bin/sh")
412 (tramp-login-args ("-2" "-e" "none"))
413 (tramp-copy-args ("-2"))
414 (tramp-copy-keep-date-arg nil)
415 (tramp-password-end-of-line nil))
416 ("ssh1_old"
417 (tramp-connection-function tramp-open-connection-rsh)
418 (tramp-login-program "ssh1")
419 (tramp-copy-program nil)
420 (tramp-remote-sh "/bin/sh")
421 (tramp-login-args ("-e" "none"))
422 (tramp-copy-args nil)
423 (tramp-copy-keep-date-arg nil)
424 (tramp-password-end-of-line nil))
425 ("ssh2_old"
426 (tramp-connection-function tramp-open-connection-rsh)
427 (tramp-login-program "ssh2")
428 (tramp-copy-program nil)
429 (tramp-remote-sh "/bin/sh")
430 (tramp-login-args ("-e" "none"))
431 (tramp-copy-args nil)
432 (tramp-copy-keep-date-arg nil)
433 (tramp-password-end-of-line nil))
434 ("remsh" (tramp-connection-function tramp-open-connection-rsh)
435 (tramp-login-program "remsh")
436 (tramp-copy-program nil)
437 (tramp-remote-sh "/bin/sh")
438 (tramp-login-args nil)
439 (tramp-copy-args nil)
440 (tramp-copy-keep-date-arg nil)
441 (tramp-password-end-of-line nil))
442 ("telnet"
443 (tramp-connection-function tramp-open-connection-telnet)
444 (tramp-login-program "telnet")
445 (tramp-copy-program nil)
446 (tramp-remote-sh "/bin/sh")
447 (tramp-login-args nil)
448 (tramp-copy-args nil)
449 (tramp-copy-keep-date-arg nil)
450 (tramp-password-end-of-line nil))
451 ("su" (tramp-connection-function tramp-open-connection-su)
452 (tramp-login-program "su")
453 (tramp-copy-program nil)
454 (tramp-remote-sh "/bin/sh")
455 (tramp-login-args ("-" "%u"))
456 (tramp-copy-args nil)
457 (tramp-copy-keep-date-arg nil)
458 (tramp-password-end-of-line nil))
459 ("sudo" (tramp-connection-function tramp-open-connection-su)
460 (tramp-login-program "sudo")
461 (tramp-copy-program nil)
462 (tramp-remote-sh "/bin/sh")
463 (tramp-login-args ("-u" "%u" "-s"
464 "-p" "Password:"))
465 (tramp-copy-args nil)
466 (tramp-copy-keep-date-arg nil)
467 (tramp-password-end-of-line nil))
468 ("multi" (tramp-connection-function tramp-open-connection-multi)
469 (tramp-login-program nil)
470 (tramp-copy-program nil)
471 (tramp-remote-sh "/bin/sh")
472 (tramp-login-args nil)
473 (tramp-copy-args nil)
474 (tramp-copy-keep-date-arg nil)
475 (tramp-password-end-of-line nil))
476 ("scpx" (tramp-connection-function tramp-open-connection-rsh)
477 (tramp-login-program "ssh")
478 (tramp-copy-program "scp")
479 (tramp-remote-sh "/bin/sh")
480 (tramp-login-args ("-e" "none" "-t" "-t" "/bin/sh"))
481 (tramp-copy-args nil)
482 (tramp-copy-keep-date-arg "-p")
483 (tramp-password-end-of-line nil))
484 ("sshx" (tramp-connection-function tramp-open-connection-rsh)
485 (tramp-login-program "ssh")
486 (tramp-copy-program nil)
487 (tramp-remote-sh "/bin/sh")
488 (tramp-login-args ("-e" "none" "-t" "-t" "/bin/sh"))
489 (tramp-copy-args nil)
490 (tramp-copy-keep-date-arg nil)
491 (tramp-password-end-of-line nil))
492 ("krlogin"
493 (tramp-connection-function tramp-open-connection-rsh)
494 (tramp-login-program "krlogin")
495 (tramp-copy-program nil)
496 (tramp-remote-sh "/bin/sh")
497 (tramp-login-args ("-x"))
498 (tramp-copy-args nil)
499 (tramp-copy-keep-date-arg nil)
500 (tramp-password-end-of-line nil))
501 ("plink"
502 (tramp-connection-function tramp-open-connection-rsh)
503 (tramp-login-program "plink")
504 (tramp-copy-program nil)
505 (tramp-remote-sh "/bin/sh")
506 (tramp-login-args ("-ssh")) ;optionally add "-v"
507 (tramp-copy-args nil)
508 (tramp-copy-keep-date-arg nil)
509 (tramp-password-end-of-line "xy")) ;see docstring for "xy"
510 ("plink1"
511 (tramp-connection-function tramp-open-connection-rsh)
512 (tramp-login-program "plink")
513 (tramp-copy-program nil)
514 (tramp-remote-sh "/bin/sh")
515 (tramp-login-args ("-1" "-ssh")) ;optionally add "-v"
516 (tramp-copy-args nil)
517 (tramp-copy-keep-date-arg nil)
518 (tramp-password-end-of-line "xy")) ;see docstring for "xy"
519 ("pscp"
520 (tramp-connection-function tramp-open-connection-rsh)
521 (tramp-login-program "plink")
522 (tramp-copy-program "pscp")
523 (tramp-remote-sh "/bin/sh")
524 (tramp-login-args ("-ssh"))
525 (tramp-copy-args nil)
526 (tramp-copy-keep-date-arg "-p")
527 (tramp-password-end-of-line "xy")) ;see docstring for "xy"
528 ("fcp"
529 (tramp-connection-function tramp-open-connection-rsh)
530 (tramp-login-program "fsh")
531 (tramp-copy-program "fcp")
532 (tramp-remote-sh "/bin/sh -i")
533 (tramp-login-args ("sh" "-i"))
534 (tramp-copy-args nil)
535 (tramp-copy-keep-date-arg "-p")
536 (tramp-password-end-of-line nil))
537 )
538 "*Alist of methods for remote files.
539 This is a list of entries of the form (NAME PARAM1 PARAM2 ...).
540 Each NAME stands for a remote access method. Each PARAM is a
541 pair of the form (KEY VALUE). The following KEYs are defined:
542 * `tramp-connection-function'
543 This specifies the function to use to connect to the remote host.
544 Currently, `tramp-open-connection-rsh', `tramp-open-connection-telnet'
545 and `tramp-open-connection-su' are defined. See the documentation
546 of these functions for more details.
547 * `tramp-remote-sh'
548 This specifies the Bourne shell to use on the remote host. This
549 MUST be a Bourne-like shell. It is normally not necessary to set
550 this to any value other than \"/bin/sh\": tramp wants to use a shell
551 which groks tilde expansion, but it can search for it. Also note
552 that \"/bin/sh\" exists on all Unixen, this might not be true for
553 the value that you decide to use. You Have Been Warned.
554 * `tramp-login-program'
555 This specifies the name of the program to use for logging in to the
556 remote host. Depending on `tramp-connection-function', this may be
557 the name of rsh or a workalike program (when
558 `tramp-connection-function' is `tramp-open-connection-rsh'), or the
559 name of telnet or a workalike (for `tramp-open-connection-telnet'),
560 or the name of su or a workalike (for `tramp-open-connection-su').
561 * `tramp-login-args'
562 This specifies the list of arguments to pass to the above
563 mentioned program. Please note that this is a list of arguments,
564 that is, normally you don't want to put \"-a -b\" or \"-f foo\"
565 here. Instead, you want two list elements, one for \"-a\" and one
566 for \"-b\", or one for \"-f\" and one for \"foo\".
567 If `tramp-connection-function' is `tramp-open-connection-su', then
568 \"%u\" in this list is replaced by the user name, and \"%%\" can
569 be used to obtain a literal percent character.
570 * `tramp-copy-program'
571 This specifies the name of the program to use for remotely copying
572 the file; this might be the absolute filename of rcp or the name of
573 a workalike program.
574 * `tramp-copy-args'
575 This specifies the list of parameters to pass to the above mentioned
576 program, the hints for `tramp-login-args' also apply here.
577 * `tramp-copy-keep-date-arg'
578 This specifies the parameter to use for the copying program when the
579 timestamp of the original file should be kept. For `rcp', use `-p', for
580 `rsync', use `-t'.
581 * `tramp-password-end-of-line'
582 This specifies the string to use for terminating the line after
583 submitting the password. If this method parameter is nil, then the
584 value of the normal variable `tramp-default-password-end-of-line'
585 is used. This parameter is necessary because the \"plink\" program
586 requires any two characters after sending the password. These do
587 not have to be newline or carriage return characters. Other login
588 programs are happy with just one character, the newline character.
589 We use \"xy\" as the value for methods using \"plink\".
590
591 What does all this mean? Well, you should specify `tramp-login-program'
592 for all methods; this program is used to log in to the remote site. Then,
593 there are two ways to actually transfer the files between the local and the
594 remote side. One way is using an additional rcp-like program. If you want
595 to do this, set `tramp-copy-program' in the method.
596
597 Another possibility for file transfer is inline transfer, i.e. the
598 file is passed through the same buffer used by `tramp-login-program'. In
599 this case, the file contents need to be protected since the
600 `tramp-login-program' might use escape codes or the connection might not
601 be eight-bit clean. Therefore, file contents are encoded for transit.
602 See the variable `tramp-coding-commands' for details.
603
604 So, to summarize: if the method is an out-of-band method, then you
605 must specify `tramp-copy-program' and `tramp-copy-args'. If it is an
606 inline method, then these two parameters should be nil. Every method,
607 inline or out of band, must specify `tramp-connection-function' plus
608 the associated arguments (for example, the login program if you chose
609 `tramp-open-connection-telnet').
610
611 Notes:
612
613 When using `tramp-open-connection-su' the phrase `open connection to a
614 remote host' sounds strange, but it is used nevertheless, for
615 consistency. No connection is opened to a remote host, but `su' is
616 started on the local host. You are not allowed to specify a remote
617 host other than `localhost' or the name of the local host."
618 :group 'tramp
619 :type '(repeat
620 (cons string
621 (set (list (const tramp-connection-function) function)
622 (list (const tramp-login-program)
623 (choice (const nil) string))
624 (list (const tramp-copy-program)
625 (choice (const nil) string))
626 (list (const tramp-remote-sh)
627 (choice (const nil) string))
628 (list (const tramp-login-args) (repeat string))
629 (list (const tramp-copy-args) (repeat string))
630 (list (const tramp-copy-keep-date-arg)
631 (choice (const nil) string))
632 (list (const tramp-encoding-command)
633 (choice (const nil) string))
634 (list (const tramp-decoding-command)
635 (choice (const nil) string))
636 (list (const tramp-encoding-function)
637 (choice (const nil) function))
638 (list (const tramp-decoding-function)
639 (choice (const nil) function))
640 (list (const tramp-password-end-of-line)
641 (choice (const nil) string))))))
642
643 (defcustom tramp-multi-methods '("multi" "multiu")
644 "*List of multi-hop methods.
645 Each entry in this list should be a method name as mentioned in the
646 variable `tramp-methods'."
647 :group 'tramp
648 :type '(repeat string))
649
650 (defcustom tramp-multi-connection-function-alist
651 '(("telnet" tramp-multi-connect-telnet "telnet %h%n")
652 ("rsh" tramp-multi-connect-rlogin "rsh %h -l %u%n")
653 ("remsh" tramp-multi-connect-rlogin "remsh %h -l %u%n")
654 ("ssh" tramp-multi-connect-rlogin "ssh %h -l %u%n")
655 ("ssht" tramp-multi-connect-rlogin "ssh %h -e none -t -t -l %u%n")
656 ("su" tramp-multi-connect-su "su - %u%n")
657 ("sudo" tramp-multi-connect-su "sudo -u %u -s -p Password:%n"))
658 "*List of connection functions for multi-hop methods.
659 Each list item is a list of three items (METHOD FUNCTION COMMAND),
660 where METHOD is the name as used in the file name, FUNCTION is the
661 function to be executed, and COMMAND is the shell command used for
662 connecting.
663
664 COMMAND may contain percent escapes. `%u' will be replaced with the
665 user name, `%h' will be replaced with the host name, and `%n' will be
666 replaced with an end-of-line character, as specified in the variable
667 `tramp-rsh-end-of-line'. Use `%%' for a literal percent character.
668 Note that the interpretation of the percent escapes also depends on
669 the FUNCTION. For example, the `%u' escape is forbidden with the
670 function `tramp-multi-connect-telnet'. See the documentation of the
671 various functions for details."
672 :group 'tramp
673 :type '(repeat (list string function string)))
674
675 (defcustom tramp-default-method
676 (if (and (fboundp 'executable-find)
677 (executable-find "plink"))
678 "plink"
679 "ssh")
680 "*Default method to use for transferring files.
681 See `tramp-methods' for possibilities.
682 Also see `tramp-default-method-alist'."
683 :group 'tramp
684 :type 'string)
685
686 (defcustom tramp-default-method-alist
687 '(("\\`localhost\\'" "\\`root\\'" "su"))
688 "*Default method to use for specific user/host pairs.
689 This is an alist of items (HOST USER METHOD). The first matching item
690 specifies the method to use for a file name which does not specify a
691 method. HOST and USER are regular expressions or nil, which is
692 interpreted as a regular expression which always matches. If no entry
693 matches, the variable `tramp-default-method' takes effect.
694
695 If the file name does not specify the user, lookup is done using the
696 empty string for the user name.
697
698 See `tramp-methods' for a list of possibilities for METHOD."
699 :group 'tramp
700 :type '(repeat (list (regexp :tag "Host regexp")
701 (regexp :tag "User regexp")
702 (string :tag "Method"))))
703
704 ;; Default values for non-Unices seeked
705 (defconst tramp-completion-function-alist-rsh
706 (unless (memq system-type '(windows-nt))
707 '((tramp-parse-rhosts "/etc/hosts.equiv")
708 (tramp-parse-rhosts "~/.rhosts")))
709 "Default list of (FUNCTION FILE) pairs to be examined for rsh methods.")
710
711 ;; Default values for non-Unices seeked
712 (defconst tramp-completion-function-alist-ssh
713 (unless (memq system-type '(windows-nt))
714 '((tramp-parse-rhosts "/etc/hosts.equiv")
715 (tramp-parse-rhosts "/etc/shosts.equiv")
716 (tramp-parse-shosts "/etc/ssh_known_hosts")
717 (tramp-parse-sconfig "/etc/ssh_config")
718 (tramp-parse-shostkeys "/etc/ssh2/hostkeys")
719 (tramp-parse-sknownhosts "/etc/ssh2/knownhosts")
720 (tramp-parse-rhosts "~/.rhosts")
721 (tramp-parse-rhosts "~/.shosts")
722 (tramp-parse-shosts "~/.ssh/known_hosts")
723 (tramp-parse-sconfig "~/.ssh/config")
724 (tramp-parse-shostkeys "~/.ssh2/hostkeys")
725 (tramp-parse-sknownhosts "~/.ssh2/knownhosts")))
726 "Default list of (FUNCTION FILE) pairs to be examined for ssh methods.")
727
728 ;; Default values for non-Unices seeked
729 (defconst tramp-completion-function-alist-telnet
730 (unless (memq system-type '(windows-nt))
731 '((tramp-parse-hosts "/etc/hosts")))
732 "Default list of (FUNCTION FILE) pairs to be examined for telnet methods.")
733
734 ;; Default values for non-Unices seeked
735 (defconst tramp-completion-function-alist-su
736 (unless (memq system-type '(windows-nt))
737 '((tramp-parse-passwd "/etc/passwd")))
738 "Default list of (FUNCTION FILE) pairs to be examined for su methods.")
739
740 (defvar tramp-completion-function-alist nil
741 "*Alist of methods for remote files.
742 This is a list of entries of the form (NAME PAIR1 PAIR2 ...).
743 Each NAME stands for a remote access method. Each PAIR is of the form
744 \(FUNCTION FILE). FUNCTION is responsible to extract user names and host
745 names from FILE for completion. The following predefined FUNCTIONs exists:
746
747 * `tramp-parse-rhosts' for \"~/.rhosts\" like files,
748 * `tramp-parse-shosts' for \"~/.ssh/known_hosts\" like files,
749 * `tramp-parse-sconfig' for \"~/.ssh/config\" like files,
750 * `tramp-parse-shostkeys' for \"~/.ssh2/hostkeys/*\" like files,
751 * `tramp-parse-sknownhosts' for \"~/.ssh2/knownhosts/*\" like files,
752 * `tramp-parse-hosts' for \"/etc/hosts\" like files,
753 * `tramp-parse-passwd' for \"/etc/passwd\" like files.
754 * `tramp-parse-netrc' for \"~/.netrc\" like files.
755
756 FUNCTION can also be a customer defined function. For more details see
757 the info pages.")
758
759 (eval-after-load "tramp"
760 '(progn
761 (tramp-set-completion-function
762 "rcp" tramp-completion-function-alist-rsh)
763 (tramp-set-completion-function
764 "scp" tramp-completion-function-alist-ssh)
765 (tramp-set-completion-function
766 "scp1" tramp-completion-function-alist-ssh)
767 (tramp-set-completion-function
768 "scp2" tramp-completion-function-alist-ssh)
769 (tramp-set-completion-function
770 "scp1_old" tramp-completion-function-alist-ssh)
771 (tramp-set-completion-function
772 "scp2_old" tramp-completion-function-alist-ssh)
773 (tramp-set-completion-function
774 "rsync" tramp-completion-function-alist-rsh)
775 (tramp-set-completion-function
776 "remcp" tramp-completion-function-alist-rsh)
777 (tramp-set-completion-function
778 "rsh" tramp-completion-function-alist-rsh)
779 (tramp-set-completion-function
780 "ssh" tramp-completion-function-alist-ssh)
781 (tramp-set-completion-function
782 "ssh1" tramp-completion-function-alist-ssh)
783 (tramp-set-completion-function
784 "ssh2" tramp-completion-function-alist-ssh)
785 (tramp-set-completion-function
786 "ssh1_old" tramp-completion-function-alist-ssh)
787 (tramp-set-completion-function
788 "ssh2_old" tramp-completion-function-alist-ssh)
789 (tramp-set-completion-function
790 "remsh" tramp-completion-function-alist-rsh)
791 (tramp-set-completion-function
792 "telnet" tramp-completion-function-alist-telnet)
793 (tramp-set-completion-function
794 "su" tramp-completion-function-alist-su)
795 (tramp-set-completion-function
796 "sudo" tramp-completion-function-alist-su)
797 (tramp-set-completion-function
798 "multi" nil)
799 (tramp-set-completion-function
800 "scpx" tramp-completion-function-alist-ssh)
801 (tramp-set-completion-function
802 "sshx" tramp-completion-function-alist-ssh)
803 (tramp-set-completion-function
804 "krlogin" tramp-completion-function-alist-rsh)
805 (tramp-set-completion-function
806 "plink" tramp-completion-function-alist-ssh)
807 (tramp-set-completion-function
808 "plink1" tramp-completion-function-alist-ssh)
809 (tramp-set-completion-function
810 "pscp" tramp-completion-function-alist-ssh)
811 (tramp-set-completion-function
812 "fcp" tramp-completion-function-alist-ssh)))
813
814 (defcustom tramp-rsh-end-of-line "\n"
815 "*String used for end of line in rsh connections.
816 I don't think this ever needs to be changed, so please tell me about it
817 if you need to change this.
818 Also see the method parameter `tramp-password-end-of-line' and the normal
819 variable `tramp-default-password-end-of-line'."
820 :group 'tramp
821 :type 'string)
822
823 (defcustom tramp-default-password-end-of-line
824 tramp-rsh-end-of-line
825 "*String used for end of line after sending a password.
826 This variable provides the default value for the method parameter
827 `tramp-password-end-of-line', see `tramp-methods' for more details.
828
829 It seems that people using plink under Windows need to send
830 \"\\r\\n\" (carriage-return, then newline) after a password, but just
831 \"\\n\" after all other lines. This variable can be used for the
832 password, see `tramp-rsh-end-of-line' for the other cases.
833
834 The default value is to use the same value as `tramp-rsh-end-of-line'."
835 :group 'tramp
836 :type 'string)
837
838 (defcustom tramp-remote-path
839 ;; "/usr/xpg4/bin" has been placed first, because on Solaris a POSIX
840 ;; compatible "id" is needed.
841 '("/usr/xpg4/bin" "/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin"
842 "/usr/ccs/bin" "/local/bin" "/local/freeware/bin" "/local/gnu/bin"
843 "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin")
844 "*List of directories to search for executables on remote host.
845 Please notify me about other semi-standard directories to include here.
846
847 You can use `~' in this list, but when searching for a shell which groks
848 tilde expansion, all directory names starting with `~' will be ignored."
849 :group 'tramp
850 :type '(repeat string))
851
852 (defcustom tramp-login-prompt-regexp
853 ".*ogin\\( .*\\)?: *"
854 "*Regexp matching login-like prompts.
855 The regexp should match at end of buffer.
856
857 Sometimes the prompt is reported to look like \"login as:\"."
858 :group 'tramp
859 :type 'regexp)
860
861 (defcustom tramp-shell-prompt-pattern
862 "^[^#$%>\n]*[#$%>] *\\(\e\\[[0-9;]*[a-zA-Z] *\\)*"
863 "Regexp to match prompts from remote shell.
864 Normally, Tramp expects you to configure `shell-prompt-pattern'
865 correctly, but sometimes it happens that you are connecting to a
866 remote host which sends a different kind of shell prompt. Therefore,
867 Tramp recognizes things matched by `shell-prompt-pattern' as prompt,
868 and also things matched by this variable. The default value of this
869 variable is similar to the default value of `shell-prompt-pattern',
870 which should work well in many cases."
871 :group 'tramp
872 :type 'regexp)
873
874 (defcustom tramp-password-prompt-regexp
875 "^.*\\([pP]assword\\|passphrase\\).*:\^@? *"
876 "*Regexp matching password-like prompts.
877 The regexp should match at end of buffer.
878
879 The `sudo' program appears to insert a `^@' character into the prompt."
880 :group 'tramp
881 :type 'regexp)
882
883 (defcustom tramp-wrong-passwd-regexp
884 (concat "^.*"
885 ;; These strings should be on the last line
886 (regexp-opt '("Permission denied."
887 "Login incorrect"
888 "Login Incorrect"
889 "Connection refused"
890 "Connection closed"
891 "Sorry, try again."
892 "Name or service not known"
893 "Host key verification failed.") t)
894 ".*"
895 "\\|"
896 "^.*\\("
897 ;; Here comes a list of regexes, separated by \\|
898 "Received signal [0-9]+"
899 "\\).*")
900 "*Regexp matching a `login failed' message.
901 The regexp should match at end of buffer."
902 :group 'tramp
903 :type 'regexp)
904
905 (defcustom tramp-yesno-prompt-regexp
906 (concat
907 (regexp-opt '("Are you sure you want to continue connecting (yes/no)?") t)
908 "\\s-*")
909 "Regular expression matching all yes/no queries which need to be confirmed.
910 The confirmation should be done with yes or no.
911 The regexp should match at end of buffer.
912 See also `tramp-yn-prompt-regexp'."
913 :group 'tramp
914 :type 'regexp)
915
916 (defcustom tramp-yn-prompt-regexp
917 (concat (regexp-opt '("Store key in cache? (y/n)") t)
918 "\\s-*")
919 "Regular expression matching all y/n queries which need to be confirmed.
920 The confirmation should be done with y or n.
921 The regexp should match at end of buffer.
922 See also `tramp-yesno-prompt-regexp'."
923 :group 'tramp
924 :type 'regexp)
925
926 (defcustom tramp-terminal-prompt-regexp
927 (concat "\\("
928 "TERM = (.*)"
929 "\\|"
930 "Terminal type\\? \\[.*\\]"
931 "\\)\\s-*")
932 "Regular expression matching all terminal setting prompts.
933 The regexp should match at end of buffer.
934 The answer will be provided by `tramp-action-terminal', which see."
935 :group 'tramp
936 :type 'regexp)
937
938 (defcustom tramp-operation-not-permitted-regexp
939 (concat "\\(" "preserving times.*" "\\|" "set mode" "\\)" ":\\s-*"
940 (regexp-opt '("Operation not permitted") t))
941 "Regular expression matching keep-date problems in (s)cp operations.
942 Copying has been performed successfully already, so this message can
943 be ignored safely."
944 :group 'tramp
945 :type 'regexp)
946
947 (defcustom tramp-process-alive-regexp
948 ""
949 "Regular expression indicating a process has finished.
950 In fact this expression is empty by intention, it will be used only to
951 check regularly the status of the associated process.
952 The answer will be provided by `tramp-action-process-alive',
953 `tramp-multi-action-process-alive' and`tramp-action-out-of-band', which see."
954 :group 'tramp
955 :type 'regexp)
956
957 (defcustom tramp-temp-name-prefix "tramp."
958 "*Prefix to use for temporary files.
959 If this is a relative file name (such as \"tramp.\"), it is considered
960 relative to the directory name returned by the function
961 `tramp-temporary-file-directory' (which see). It may also be an
962 absolute file name; don't forget to include a prefix for the filename
963 part, though."
964 :group 'tramp
965 :type 'string)
966
967 (defcustom tramp-discard-garbage nil
968 "*If non-nil, try to discard garbage sent by remote shell.
969 Some shells send such garbage upon connection setup."
970 :group 'tramp
971 :type 'boolean)
972
973 (defcustom tramp-sh-extra-args '(("/bash\\'" . "-norc -noprofile"))
974 "*Alist specifying extra arguments to pass to the remote shell.
975 Entries are (REGEXP . ARGS) where REGEXP is a regular expression
976 matching the shell file name and ARGS is a string specifying the
977 arguments.
978
979 This variable is only used when Tramp needs to start up another shell
980 for tilde expansion. The extra arguments should typically prevent the
981 shell from reading its init file."
982 :group 'tramp
983 ;; This might be the wrong way to test whether the widget type
984 ;; `alist' is available. Who knows the right way to test it?
985 :type (if (get 'alist 'widget-type)
986 '(alist :key-type string :value-type string)
987 '(repeat (cons string string))))
988
989 (defcustom tramp-prefix-format
990 (if tramp-unified-filenames "/" "/[")
991 "*String matching the very beginning of tramp file names.
992 Used in `tramp-make-tramp-file-name' and `tramp-make-tramp-multi-file-name'."
993 :group 'tramp
994 :type 'string)
995
996 (defcustom tramp-prefix-regexp
997 (concat "^" (regexp-quote tramp-prefix-format))
998 "*Regexp matching the very beginning of tramp file names.
999 Should always start with \"^\". Derived from `tramp-prefix-format'."
1000 :group 'tramp
1001 :type 'regexp)
1002
1003 (defcustom tramp-method-regexp
1004 "[a-zA-Z_0-9-]+"
1005 "*Regexp matching methods identifiers."
1006 :group 'tramp
1007 :type 'regexp)
1008
1009 ;; It is a little bit annoying that in XEmacs case this delimeter is different
1010 ;; for single-hop and multi-hop cases.
1011 (defcustom tramp-postfix-single-method-format
1012 (if tramp-unified-filenames ":" "/")
1013 "*String matching delimeter between method and user or host names.
1014 Applicable for single-hop methods.
1015 Used in `tramp-make-tramp-file-name'."
1016 :group 'tramp
1017 :type 'string)
1018
1019 (defcustom tramp-postfix-single-method-regexp
1020 (regexp-quote tramp-postfix-single-method-format)
1021 "*Regexp matching delimeter between method and user or host names.
1022 Applicable for single-hop methods.
1023 Derived from `tramp-postfix-single-method-format'."
1024 :group 'tramp
1025 :type 'regexp)
1026
1027 (defcustom tramp-postfix-multi-method-format
1028 ":"
1029 "*String matching delimeter between method and user or host names.
1030 Applicable for multi-hop methods.
1031 Used in `tramp-make-tramp-multi-file-name'."
1032 :group 'tramp
1033 :type 'string)
1034
1035 (defcustom tramp-postfix-multi-method-regexp
1036 (regexp-quote tramp-postfix-multi-method-format)
1037 "*Regexp matching delimeter between method and user or host names.
1038 Applicable for multi-hop methods.
1039 Derived from `tramp-postfix-multi-method-format'."
1040 :group 'tramp
1041 :type 'regexp)
1042
1043 (defcustom tramp-postfix-multi-hop-format
1044 (if tramp-unified-filenames ":" "/")
1045 "*String matching delimeter between host and next method.
1046 Applicable for multi-hop methods.
1047 Used in `tramp-make-tramp-multi-file-name'."
1048 :group 'tramp
1049 :type 'string)
1050
1051 (defcustom tramp-postfix-multi-hop-regexp
1052 (regexp-quote tramp-postfix-multi-hop-format)
1053 "*Regexp matching delimeter between host and next method.
1054 Applicable for multi-hop methods.
1055 Derived from `tramp-postfix-multi-hop-format'."
1056 :group 'tramp
1057 :type 'regexp)
1058
1059 (defcustom tramp-user-regexp
1060 "[^:/ \t]*"
1061 "*Regexp matching user names."
1062 :group 'tramp
1063 :type 'regexp)
1064
1065 (defcustom tramp-postfix-user-format
1066 "@"
1067 "*String matching delimeter between user and host names.
1068 Used in `tramp-make-tramp-file-name' and `tramp-make-tramp-multi-file-name'."
1069 :group 'tramp
1070 :type 'string)
1071
1072 (defcustom tramp-postfix-user-regexp
1073 (regexp-quote tramp-postfix-user-format)
1074 "*Regexp matching delimeter between user and host names.
1075 Derived from `tramp-postfix-user-format'."
1076 :group 'tramp
1077 :type 'regexp)
1078
1079 (defcustom tramp-host-regexp
1080 "[a-zA-Z0-9_.-]*"
1081 "*Regexp matching host names."
1082 :group 'tramp
1083 :type 'regexp)
1084
1085 (defcustom tramp-host-with-port-regexp
1086 "[a-zA-Z0-9_.#-]*"
1087 "*Regexp matching host names."
1088 :group 'tramp
1089 :type 'regexp)
1090
1091 (defcustom tramp-postfix-host-format
1092 (if tramp-unified-filenames ":" "]")
1093 "*String matching delimeter between host names and localnames.
1094 Used in `tramp-make-tramp-file-name' and `tramp-make-tramp-multi-file-name'."
1095 :group 'tramp
1096 :type 'string)
1097
1098 (defcustom tramp-postfix-host-regexp
1099 (regexp-quote tramp-postfix-host-format)
1100 "*Regexp matching delimeter between host names and localnames.
1101 Derived from `tramp-postfix-host-format'."
1102 :group 'tramp
1103 :type 'regexp)
1104
1105 (defcustom tramp-localname-regexp
1106 ".*$"
1107 "*Regexp matching localnames."
1108 :group 'tramp
1109 :type 'regexp)
1110
1111 ;; File name format.
1112
1113 (defcustom tramp-file-name-structure
1114 (list
1115 (concat
1116 tramp-prefix-regexp
1117 "\\(" "\\(" tramp-method-regexp "\\)" tramp-postfix-single-method-regexp "\\)?"
1118 "\\(" "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp "\\)?"
1119 "\\(" tramp-host-with-port-regexp "\\)" tramp-postfix-host-regexp
1120 "\\(" tramp-localname-regexp "\\)")
1121 2 4 5 6)
1122
1123 "*List of five elements (REGEXP METHOD USER HOST FILE), detailing \
1124 the tramp file name structure.
1125
1126 The first element REGEXP is a regular expression matching a tramp file
1127 name. The regex should contain parentheses around the method name,
1128 the user name, the host name, and the file name parts.
1129
1130 The second element METHOD is a number, saying which pair of
1131 parentheses matches the method name. The third element USER is
1132 similar, but for the user name. The fourth element HOST is similar,
1133 but for the host name. The fifth element FILE is for the file name.
1134 These numbers are passed directly to `match-string', which see. That
1135 means the opening parentheses are counted to identify the pair.
1136
1137 See also `tramp-file-name-regexp'."
1138 :group 'tramp
1139 :type '(list (regexp :tag "File name regexp")
1140 (integer :tag "Paren pair for method name")
1141 (integer :tag "Paren pair for user name ")
1142 (integer :tag "Paren pair for host name ")
1143 (integer :tag "Paren pair for file name ")))
1144
1145 ;;;###autoload
1146 (defconst tramp-file-name-regexp-unified
1147 "\\`/[^/:]+:"
1148 "Value for `tramp-file-name-regexp' for unified remoting.
1149 Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and
1150 Tramp. See `tramp-file-name-structure-unified' for more explanations.")
1151
1152 ;;;###autoload
1153 (defconst tramp-file-name-regexp-separate
1154 "\\`/\\[.*\\]"
1155 "Value for `tramp-file-name-regexp' for separate remoting.
1156 XEmacs uses a separate filename syntax for Tramp and EFS.
1157 See `tramp-file-name-structure-separate' for more explanations.")
1158
1159 ;;;###autoload
1160 (defcustom tramp-file-name-regexp
1161 (if tramp-unified-filenames
1162 tramp-file-name-regexp-unified
1163 tramp-file-name-regexp-separate)
1164 "*Regular expression matching file names handled by tramp.
1165 This regexp should match tramp file names but no other file names.
1166 \(When tramp.el is loaded, this regular expression is prepended to
1167 `file-name-handler-alist', and that is searched sequentially. Thus,
1168 if the tramp entry appears rather early in the `file-name-handler-alist'
1169 and is a bit too general, then some files might be considered tramp
1170 files which are not really tramp files.
1171
1172 Please note that the entry in `file-name-handler-alist' is made when
1173 this file (tramp.el) is loaded. This means that this variable must be set
1174 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
1175 updated after changing this variable.
1176
1177 Also see `tramp-file-name-structure'."
1178 :group 'tramp
1179 :type 'regexp)
1180
1181 ;;;###autoload
1182 (defconst tramp-completion-file-name-regexp-unified
1183 "^/$\\|^/[^/:][^/]*$"
1184 "Value for `tramp-completion-file-name-regexp' for unified remoting.
1185 Emacs (not XEmacs) uses a unified filename syntax for Ange-FTP and
1186 Tramp. See `tramp-file-name-structure-unified' for more explanations.")
1187
1188 ;;;###autoload
1189 (defconst tramp-completion-file-name-regexp-separate
1190 "^/\\([[][^]]*\\)?$"
1191 "Value for `tramp-completion-file-name-regexp' for separate remoting.
1192 XEmacs uses a separate filename syntax for Tramp and EFS.
1193 See `tramp-file-name-structure-separate' for more explanations.")
1194
1195 ;;;###autoload
1196 (defcustom tramp-completion-file-name-regexp
1197 (if tramp-unified-filenames
1198 tramp-completion-file-name-regexp-unified
1199 tramp-completion-file-name-regexp-separate)
1200 "*Regular expression matching file names handled by tramp completion.
1201 This regexp should match partial tramp file names only.
1202
1203 Please note that the entry in `file-name-handler-alist' is made when
1204 this file (tramp.el) is loaded. This means that this variable must be set
1205 before loading tramp.el. Alternatively, `file-name-handler-alist' can be
1206 updated after changing this variable.
1207
1208 Also see `tramp-file-name-structure'."
1209 :group 'tramp
1210 :type 'regexp)
1211
1212 (defcustom tramp-multi-file-name-structure
1213 (list
1214 (concat
1215 tramp-prefix-regexp
1216 "\\(" "\\(" tramp-method-regexp "\\)" "\\)?"
1217 "\\(" "\\(" tramp-postfix-multi-hop-regexp "%s" "\\)+" "\\)?"
1218 tramp-postfix-host-regexp "\\(" tramp-localname-regexp "\\)")
1219 2 3 -1)
1220 "*Describes the file name structure of `multi' files.
1221 Multi files allow you to contact a remote host in several hops.
1222 This is a list of four elements (REGEXP METHOD HOP LOCALNAME).
1223
1224 The first element, REGEXP, gives a regular expression to match against
1225 the file name. In this regular expression, `%s' is replaced with the
1226 value of `tramp-multi-file-name-hop-structure'. (Note: in order to
1227 allow multiple hops, you normally want to use something like
1228 \"\\\\(\\\\(%s\\\\)+\\\\)\" in the regular expression. The outer pair
1229 of parentheses is used for the HOP element, see below.)
1230
1231 All remaining elements are numbers. METHOD gives the number of the
1232 paren pair which matches the method name. HOP gives the number of the
1233 paren pair which matches the hop sequence. LOCALNAME gives the number of
1234 the paren pair which matches the localname (pathname) on the remote host.
1235
1236 LOCALNAME can also be negative, which means to count from the end. Ie, a
1237 value of -1 means the last paren pair.
1238
1239 I think it would be good if the regexp matches the whole of the
1240 string, but I haven't actually tried what happens if it doesn't..."
1241 :group 'tramp
1242 :type '(list (regexp :tag "File name regexp")
1243 (integer :tag "Paren pair for method name")
1244 (integer :tag "Paren pair for hops")
1245 (integer :tag "Paren pair to match localname")))
1246
1247 (defcustom tramp-multi-file-name-hop-structure
1248 (list
1249 (concat
1250 "\\(" tramp-method-regexp "\\)" tramp-postfix-multi-method-regexp
1251 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
1252 "\\(" tramp-host-with-port-regexp "\\)")
1253 1 2 3)
1254 "*Describes the structure of a hop in multi files.
1255 This is a list of four elements (REGEXP METHOD USER HOST). First
1256 element REGEXP is used to match against the hop. Pair number METHOD
1257 matches the method of one hop, pair number USER matches the user of
1258 one hop, pair number HOST matches the host of one hop.
1259
1260 This regular expression should match exactly all of one hop."
1261 :group 'tramp
1262 :type '(list (regexp :tag "Hop regexp")
1263 (integer :tag "Paren pair for method name")
1264 (integer :tag "Paren pair for user name")
1265 (integer :tag "Paren pair for host name")))
1266
1267 (defcustom tramp-make-multi-tramp-file-format
1268 (list
1269 (concat tramp-prefix-format "%m")
1270 (concat tramp-postfix-multi-hop-format
1271 "%m" tramp-postfix-multi-method-format
1272 "%u" tramp-postfix-user-format
1273 "%h")
1274 (concat tramp-postfix-host-format "%p"))
1275 "*Describes how to construct a `multi' file name.
1276 This is a list of three elements PREFIX, HOP and LOCALNAME.
1277
1278 The first element PREFIX says how to construct the prefix, the second
1279 element HOP specifies what each hop looks like, and the final element
1280 LOCALNAME says how to construct the localname (pathname).
1281
1282 In PREFIX, `%%' means `%' and `%m' means the method name.
1283
1284 In HOP, `%%' means `%' and `%m', `%u', `%h' mean the hop method, hop
1285 user and hop host, respectively.
1286
1287 In LOCALNAME, `%%' means `%' and `%p' means the localname.
1288
1289 The resulting file name always contains one copy of PREFIX and one
1290 copy of LOCALNAME, but there is one copy of HOP for each hop in the file
1291 name.
1292
1293 Note: the current implementation requires the prefix to contain the
1294 method name, followed by all the hops, and the localname must come
1295 last."
1296 :group 'tramp
1297 :type '(list string string string))
1298
1299 (defcustom tramp-terminal-type "dumb"
1300 "*Value of TERM environment variable for logging in to remote host.
1301 Because Tramp wants to parse the output of the remote shell, it is easily
1302 confused by ANSI color escape sequences and suchlike. Often, shell init
1303 files conditionalize this setup based on the TERM environment variable."
1304 :group 'tramp
1305 :type 'string)
1306
1307 (defcustom tramp-completion-without-shell-p nil
1308 "*If nil, use shell wildcards for completion, else rely on Lisp only.
1309 Using shell wildcards for completions has the advantage that it can be
1310 fast even in large directories, but completion is always
1311 case-sensitive. Relying on Lisp only means that case-insensitive
1312 completion is possible (subject to the variable `completion-ignore-case'),
1313 but it might be slow on large directories."
1314 :group 'tramp
1315 :type 'boolean)
1316
1317 (defcustom tramp-actions-before-shell
1318 '((tramp-password-prompt-regexp tramp-action-password)
1319 (tramp-login-prompt-regexp tramp-action-login)
1320 (shell-prompt-pattern tramp-action-succeed)
1321 (tramp-shell-prompt-pattern tramp-action-succeed)
1322 (tramp-wrong-passwd-regexp tramp-action-permission-denied)
1323 (tramp-yesno-prompt-regexp tramp-action-yesno)
1324 (tramp-yn-prompt-regexp tramp-action-yn)
1325 (tramp-terminal-prompt-regexp tramp-action-terminal)
1326 (tramp-process-alive-regexp tramp-action-process-alive))
1327 "List of pattern/action pairs.
1328 Whenever a pattern matches, the corresponding action is performed.
1329 Each item looks like (PATTERN ACTION).
1330
1331 The PATTERN should be a symbol, a variable. The value of this
1332 variable gives the regular expression to search for. Note that the
1333 regexp must match at the end of the buffer, \"\\'\" is implicitly
1334 appended to it.
1335
1336 The ACTION should also be a symbol, but a function. When the
1337 corresponding PATTERN matches, the ACTION function is called."
1338 :group 'tramp
1339 :type '(repeat (list variable function)))
1340
1341 (defcustom tramp-actions-copy-out-of-band
1342 '((tramp-password-prompt-regexp tramp-action-password)
1343 (tramp-wrong-passwd-regexp tramp-action-permission-denied)
1344 (tramp-process-alive-regexp tramp-action-out-of-band))
1345 "List of pattern/action pairs.
1346 This list is used for copying/renaming with out-of-band methods.
1347 See `tramp-actions-before-shell' for more info."
1348 :group 'tramp
1349 :type '(repeat (list variable function)))
1350
1351 (defcustom tramp-multi-actions
1352 '((tramp-password-prompt-regexp tramp-multi-action-password)
1353 (tramp-login-prompt-regexp tramp-multi-action-login)
1354 (shell-prompt-pattern tramp-multi-action-succeed)
1355 (tramp-shell-prompt-pattern tramp-multi-action-succeed)
1356 (tramp-wrong-passwd-regexp tramp-multi-action-permission-denied)
1357 (tramp-process-alive-regexp tramp-multi-action-process-alive))
1358 "List of pattern/action pairs.
1359 This list is used for each hop in multi-hop connections.
1360 See `tramp-actions-before-shell' for more info."
1361 :group 'tramp
1362 :type '(repeat (list variable function)))
1363
1364 (defcustom tramp-initial-commands
1365 '("unset HISTORY"
1366 "unset correct"
1367 "unset autocorrect")
1368 "List of commands to send to the first remote shell that we see.
1369 These commands will be sent to any shell, and thus they should be
1370 designed to work in such circumstances. Also, restrict the commands
1371 to the bare necessity for getting the remote shell into a state
1372 where it is possible to execute the Bourne-ish shell.
1373
1374 At the moment, the command to execute the Bourne-ish shell uses strange
1375 quoting which `tcsh' tries to correct, so we send the command \"unset
1376 autocorrect\" to the remote host."
1377 :group 'tramp
1378 :type '(repeat string))
1379
1380 ;; Chunked sending kluge. We set this to 500 for black-listed constellations
1381 ;; known to have a bug in `process-send-string'; some ssh connections appear
1382 ;; to drop bytes when data is sent too quickly. There is also a connection
1383 ;; buffer local variable, which is computed depending on remote host properties
1384 ;; when `tramp-chunksize' is zero or nil.
1385 (defcustom tramp-chunksize
1386 (when (and (not (featurep 'xemacs))
1387 (memq system-type '(hpux)))
1388 500)
1389 ;; Parentheses in docstring starting at beginning of line are escaped.
1390 ;; Fontification is messed up when
1391 ;; `open-paren-in-column-0-is-defun-start' set to t.
1392 "*If non-nil, chunksize for sending input to local process.
1393 It is necessary only on systems which have a buggy `process-send-string'
1394 implementation. The necessity, whether this variable must be set, can be
1395 checked via the following code:
1396
1397 (with-temp-buffer
1398 (let* ((user \"xxx\") (host \"yyy\")
1399 (init 0) (step 50)
1400 (sent init) (received init))
1401 (while (= sent received)
1402 (setq sent (+ sent step))
1403 (erase-buffer)
1404 (let ((proc (start-process (buffer-name) (current-buffer)
1405 \"ssh\" \"-l\" user host \"wc\" \"-c\")))
1406 (when (memq (process-status proc) '(run open))
1407 (process-send-string proc (make-string sent ?\\ ))
1408 (process-send-eof proc)
1409 (process-send-eof proc))
1410 (while (not (progn (goto-char (point-min))
1411 (re-search-forward \"\\\\w+\" (point-max) t)))
1412 (accept-process-output proc 1))
1413 (when (memq (process-status proc) '(run open))
1414 (setq received (string-to-number (match-string 0)))
1415 (delete-process proc)
1416 (message \"Bytes sent: %s\\tBytes received: %s\" sent received)
1417 (sit-for 0))))
1418 (if (> sent (+ init step))
1419 (message \"You should set `tramp-chunksize' to a maximum of %s\"
1420 (- sent step))
1421 (message \"Test does not work\")
1422 (display-buffer (current-buffer))
1423 (sit-for 30))))
1424
1425 In the Emacs normally running Tramp, evaluate the above code
1426 \(replace \"xxx\" and \"yyy\" by the remote user and host name,
1427 respectively). You can do this, for example, by pasting it into
1428 the `*scratch*' buffer and then hitting C-j with the cursor after the
1429 last closing parenthesis. Note that it works only if you have configured
1430 \"ssh\" to run without password query, see ssh-agent(1).
1431
1432 You will see the number of bytes sent successfully to the remote host.
1433 If that number exceeds 1000, you can stop the execution by hitting
1434 C-g, because your Emacs is likely clean.
1435
1436 If your Emacs is buggy, the code stops and gives you an indication
1437 about the value `tramp-chunksize' should be set. Maybe you could just
1438 experiment a bit, e.g. changing the values of `init' and `step'
1439 in the third line of the code.
1440
1441 When it is necessary to set `tramp-chunksize', you might consider to
1442 use an out-of-the-band method (like \"scp\") instead of an internal one
1443 \(like \"ssh\"), because setting `tramp-chunksize' to non-nil decreases
1444 performance.
1445
1446 Please raise a bug report via \"M-x tramp-bug\" if your system needs
1447 this variable to be set as well."
1448 :group 'tramp
1449 :type '(choice (const nil) integer))
1450
1451 ;; Logging in to a remote host normally requires obtaining a pty. But
1452 ;; Emacs on MacOS X has process-connection-type set to nil by default,
1453 ;; so on those systems Tramp doesn't obtain a pty. Here, we allow
1454 ;; for an override of the system default.
1455 (defcustom tramp-process-connection-type t
1456 "Overrides `process-connection-type' for connections from Tramp.
1457 Tramp binds process-connection-type to the value given here before
1458 opening a connection to a remote host."
1459 :group 'tramp
1460 :type '(choice (const nil) (const t) (const pty)))
1461
1462 ;;; Internal Variables:
1463
1464 (defvar tramp-buffer-file-attributes nil
1465 "Holds the `ls -ild' output for the current buffer.
1466 This variable is local to each buffer. It is not used if the remote
1467 machine groks Perl. If it is used, it's used as an emulation for
1468 the visited file modtime.")
1469 (make-variable-buffer-local 'tramp-buffer-file-attributes)
1470
1471 (defvar tramp-md5-function
1472 (cond ((and (require 'md5) (fboundp 'md5)) 'md5)
1473 ((fboundp 'md5-encode)
1474 (lambda (x) (base64-encode-string
1475 (funcall (symbol-function 'md5-encode) x))))
1476 (t (error "Couldn't find an `md5' function")))
1477 "Function to call for running the MD5 algorithm.")
1478
1479 (defvar tramp-end-of-output
1480 (concat "///"
1481 (funcall tramp-md5-function
1482 (concat
1483 (prin1-to-string process-environment)
1484 (current-time-string)
1485 ;; (prin1-to-string
1486 ;; (if (fboundp 'directory-files-and-attributes)
1487 ;; (funcall 'directory-files-and-attributes
1488 ;; (or (getenv "HOME")
1489 ;; (tramp-temporary-file-directory)))
1490 ;; (mapcar
1491 ;; (lambda (x)
1492 ;; (cons x (file-attributes x)))
1493 ;; (directory-files (or (getenv "HOME")
1494 ;; (tramp-temporary-file-directory))
1495 ;; t))))
1496 )))
1497 "String used to recognize end of output.")
1498
1499 (defvar tramp-connection-function nil
1500 "This internal variable holds a parameter for `tramp-methods'.
1501 In the connection buffer, this variable has the value of the like-named
1502 method parameter, as specified in `tramp-methods' (which see).")
1503
1504 (defvar tramp-remote-sh nil
1505 "This internal variable holds a parameter for `tramp-methods'.
1506 In the connection buffer, this variable has the value of the like-named
1507 method parameter, as specified in `tramp-methods' (which see).")
1508
1509 (defvar tramp-login-program nil
1510 "This internal variable holds a parameter for `tramp-methods'.
1511 In the connection buffer, this variable has the value of the like-named
1512 method parameter, as specified in `tramp-methods' (which see).")
1513
1514 (defvar tramp-login-args nil
1515 "This internal variable holds a parameter for `tramp-methods'.
1516 In the connection buffer, this variable has the value of the like-named
1517 method parameter, as specified in `tramp-methods' (which see).")
1518
1519 (defvar tramp-copy-program nil
1520 "This internal variable holds a parameter for `tramp-methods'.
1521 In the connection buffer, this variable has the value of the like-named
1522 method parameter, as specified in `tramp-methods' (which see).")
1523
1524 (defvar tramp-copy-args nil
1525 "This internal variable holds a parameter for `tramp-methods'.
1526 In the connection buffer, this variable has the value of the like-named
1527 method parameter, as specified in `tramp-methods' (which see).")
1528
1529 (defvar tramp-copy-keep-date-arg nil
1530 "This internal variable holds a parameter for `tramp-methods'.
1531 In the connection buffer, this variable has the value of the like-named
1532 method parameter, as specified in `tramp-methods' (which see).")
1533
1534 (defvar tramp-encoding-command nil
1535 "This internal variable holds a parameter for `tramp-methods'.
1536 In the connection buffer, this variable has the value of the like-named
1537 method parameter, as specified in `tramp-methods' (which see).")
1538
1539 (defvar tramp-decoding-command nil
1540 "This internal variable holds a parameter for `tramp-methods'.
1541 In the connection buffer, this variable has the value of the like-named
1542 method parameter, as specified in `tramp-methods' (which see).")
1543
1544 (defvar tramp-encoding-function nil
1545 "This internal variable holds a parameter for `tramp-methods'.
1546 In the connection buffer, this variable has the value of the like-named
1547 method parameter, as specified in `tramp-methods' (which see).")
1548
1549 (defvar tramp-decoding-function nil
1550 "This internal variable holds a parameter for `tramp-methods'.
1551 In the connection buffer, this variable has the value of the like-named
1552 method parameter, as specified in `tramp-methods' (which see).")
1553
1554 (defvar tramp-password-end-of-line nil
1555 "This internal variable holds a parameter for `tramp-methods'.
1556 In the connection buffer, this variable has the value of the like-named
1557 method parameter, as specified in `tramp-methods' (which see).")
1558
1559 ;; CCC `local in each buffer'?
1560 (defvar tramp-ls-command nil
1561 "This command is used to get a long listing with numeric user and group ids.
1562 This variable is automatically made buffer-local to each rsh process buffer
1563 upon opening the connection.")
1564
1565 (defvar tramp-current-multi-method nil
1566 "Name of `multi' connection method for this *tramp* buffer, or nil if not multi.
1567 This variable is automatically made buffer-local to each rsh process buffer
1568 upon opening the connection.")
1569
1570 (defvar tramp-current-method nil
1571 "Connection method for this *tramp* buffer.
1572 This variable is automatically made buffer-local to each rsh process buffer
1573 upon opening the connection.")
1574
1575 (defvar tramp-current-user nil
1576 "Remote login name for this *tramp* buffer.
1577 This variable is automatically made buffer-local to each rsh process buffer
1578 upon opening the connection.")
1579
1580 (defvar tramp-current-host nil
1581 "Remote host for this *tramp* buffer.
1582 This variable is automatically made buffer-local to each rsh process buffer
1583 upon opening the connection.")
1584
1585 (defvar tramp-test-groks-nt nil
1586 "Whether the `test' command groks the `-nt' switch.
1587 \(`test A -nt B' tests if file A is newer than file B.)
1588 This variable is automatically made buffer-local to each rsh process buffer
1589 upon opening the connection.")
1590
1591 (defvar tramp-file-exists-command nil
1592 "Command to use for checking if a file exists.
1593 This variable is automatically made buffer-local to each rsh process buffer
1594 upon opening the connection.")
1595
1596 (defconst tramp-uudecode "\
1597 tramp_uudecode () {
1598 \(echo begin 600 /tmp/tramp.$$; tail +2) | uudecode
1599 cat /tmp/tramp.$$
1600 rm -f /tmp/tramp.$$
1601 }"
1602 "Shell function to implement `uudecode' to standard output.
1603 Many systems support `uudecode -o /dev/stdout' or `uudecode -o -'
1604 for this or `uudecode -p', but some systems don't, and for them
1605 we have this shell function.")
1606
1607 ;; Perl script to implement `file-attributes' in a Lisp `read'able
1608 ;; output. If you are hacking on this, note that you get *no* output
1609 ;; unless this spits out a complete line, including the '\n' at the
1610 ;; end.
1611 ;; The device number is returned as "-1", because there will be a virtual
1612 ;; device number set in `tramp-handle-file-attributes'
1613 (defconst tramp-perl-file-attributes "\
1614 @stat = lstat($ARGV[0]);
1615 if (($stat[2] & 0170000) == 0120000)
1616 {
1617 $type = readlink($ARGV[0]);
1618 $type = \"\\\"$type\\\"\";
1619 }
1620 elsif (($stat[2] & 0170000) == 040000)
1621 {
1622 $type = \"t\";
1623 }
1624 else
1625 {
1626 $type = \"nil\"
1627 };
1628 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
1629 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
1630 printf(
1631 \"(%s %u %s %s (%u %u) (%u %u) (%u %u) %u %u t (%u . %u) -1)\\n\",
1632 $type,
1633 $stat[3],
1634 $uid,
1635 $gid,
1636 $stat[8] >> 16 & 0xffff,
1637 $stat[8] & 0xffff,
1638 $stat[9] >> 16 & 0xffff,
1639 $stat[9] & 0xffff,
1640 $stat[10] >> 16 & 0xffff,
1641 $stat[10] & 0xffff,
1642 $stat[7],
1643 $stat[2],
1644 $stat[1] >> 16 & 0xffff,
1645 $stat[1] & 0xffff
1646 );"
1647 "Perl script to produce output suitable for use with `file-attributes'
1648 on the remote file system.")
1649
1650 (defconst tramp-perl-directory-files-and-attributes "\
1651 chdir($ARGV[0]) or printf(\"\\\"Cannot change to $ARGV[0]: $''!''\\\"\\n\"), exit();
1652 opendir(DIR,\".\") or printf(\"\\\"Cannot open directory $ARGV[0]: $''!''\\\"\\n\"), exit();
1653 @list = readdir(DIR);
1654 closedir(DIR);
1655 $n = scalar(@list);
1656 printf(\"(\\n\");
1657 for($i = 0; $i < $n; $i++)
1658 {
1659 $filename = $list[$i];
1660 @stat = lstat($filename);
1661 if (($stat[2] & 0170000) == 0120000)
1662 {
1663 $type = readlink($filename);
1664 $type = \"\\\"$type\\\"\";
1665 }
1666 elsif (($stat[2] & 0170000) == 040000)
1667 {
1668 $type = \"t\";
1669 }
1670 else
1671 {
1672 $type = \"nil\"
1673 };
1674 $uid = ($ARGV[1] eq \"integer\") ? $stat[4] : \"\\\"\" . getpwuid($stat[4]) . \"\\\"\";
1675 $gid = ($ARGV[1] eq \"integer\") ? $stat[5] : \"\\\"\" . getgrgid($stat[5]) . \"\\\"\";
1676 printf(
1677 \"(\\\"%s\\\" %s %u %s %s (%u %u) (%u %u) (%u %u) %u %u t (%u . %u) (%u %u))\\n\",
1678 $filename,
1679 $type,
1680 $stat[3],
1681 $uid,
1682 $gid,
1683 $stat[8] >> 16 & 0xffff,
1684 $stat[8] & 0xffff,
1685 $stat[9] >> 16 & 0xffff,
1686 $stat[9] & 0xffff,
1687 $stat[10] >> 16 & 0xffff,
1688 $stat[10] & 0xffff,
1689 $stat[7],
1690 $stat[2],
1691 $stat[1] >> 16 & 0xffff,
1692 $stat[1] & 0xffff,
1693 $stat[0] >> 16 & 0xffff,
1694 $stat[0] & 0xffff);
1695 }
1696 printf(\")\\n\");"
1697 "Perl script implementing `directory-files-attributes' as Lisp `read'able
1698 output.")
1699
1700 ;; ;; These two use uu encoding.
1701 ;; (defvar tramp-perl-encode "%s -e'\
1702 ;; print qq(begin 644 xxx\n);
1703 ;; my $s = q();
1704 ;; my $res = q();
1705 ;; while (read(STDIN, $s, 45)) {
1706 ;; print pack(q(u), $s);
1707 ;; }
1708 ;; print qq(`\n);
1709 ;; print qq(end\n);
1710 ;; '"
1711 ;; "Perl program to use for encoding a file.
1712 ;; Escape sequence %s is replaced with name of Perl binary.")
1713
1714 ;; (defvar tramp-perl-decode "%s -ne '
1715 ;; print unpack q(u), $_;
1716 ;; '"
1717 ;; "Perl program to use for decoding a file.
1718 ;; Escape sequence %s is replaced with name of Perl binary.")
1719
1720 ;; These two use base64 encoding.
1721 (defvar tramp-perl-encode-with-module
1722 "perl -MMIME::Base64 -0777 -ne 'print encode_base64($_)'"
1723 "Perl program to use for encoding a file.
1724 Escape sequence %s is replaced with name of Perl binary.
1725 This string is passed to `format', so percent characters need to be doubled.
1726 This implementation requires the MIME::Base64 Perl module to be installed
1727 on the remote host.")
1728
1729 (defvar tramp-perl-decode-with-module
1730 "perl -MMIME::Base64 -0777 -ne 'print decode_base64($_)'"
1731 "Perl program to use for decoding a file.
1732 Escape sequence %s is replaced with name of Perl binary.
1733 This string is passed to `format', so percent characters need to be doubled.
1734 This implementation requires the MIME::Base64 Perl module to be installed
1735 on the remote host.")
1736
1737 (defvar tramp-perl-encode
1738 "%s -e '
1739 # This script contributed by Juanma Barranquero <lektu@terra.es>.
1740 # Copyright (C) 2002, 2006 Free Software Foundation, Inc.
1741 use strict;
1742
1743 my %%trans = do {
1744 my $i = 0;
1745 map {(substr(unpack(q(B8), chr $i++), 2, 6), $_)}
1746 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/);
1747 };
1748
1749 binmode(\\*STDIN);
1750
1751 # We read in chunks of 54 bytes, to generate output lines
1752 # of 72 chars (plus end of line)
1753 $/ = \\54;
1754
1755 while (my $data = <STDIN>) {
1756 my $pad = q();
1757
1758 # Only for the last chunk, and only if did not fill the last three-byte packet
1759 if (eof) {
1760 my $mod = length($data) %% 3;
1761 $pad = q(=) x (3 - $mod) if $mod;
1762 }
1763
1764 # Not the fastest method, but it is simple: unpack to binary string, split
1765 # by groups of 6 bits and convert back from binary to byte; then map into
1766 # the translation table
1767 print
1768 join q(),
1769 map($trans{$_},
1770 (substr(unpack(q(B*), $data) . q(00000), 0, 432) =~ /....../g)),
1771 $pad,
1772 qq(\\n);
1773 }
1774 '"
1775 "Perl program to use for encoding a file.
1776 Escape sequence %s is replaced with name of Perl binary.
1777 This string is passed to `format', so percent characters need to be doubled.")
1778
1779 (defvar tramp-perl-decode
1780 "%s -e '
1781 # This script contributed by Juanma Barranquero <lektu@terra.es>.
1782 # Copyright (C) 2002, 2006 Free Software Foundation, Inc.
1783 use strict;
1784
1785 my %%trans = do {
1786 my $i = 0;
1787 map {($_, substr(unpack(q(B8), chr $i++), 2, 6))}
1788 split //, q(ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/)
1789 };
1790
1791 my %%bytes = map {(unpack(q(B8), chr $_), chr $_)} 0 .. 255;
1792
1793 binmode(\\*STDOUT);
1794
1795 # We are going to accumulate into $pending to accept any line length
1796 # (we do not check they are <= 76 chars as the RFC says)
1797 my $pending = q();
1798
1799 while (my $data = <STDIN>) {
1800 chomp $data;
1801
1802 # If we find one or two =, we have reached the end and
1803 # any following data is to be discarded
1804 my $finished = $data =~ s/(==?).*/$1/;
1805 $pending .= $data;
1806
1807 my $len = length($pending);
1808 my $chunk = substr($pending, 0, $len & ~3);
1809 $pending = substr($pending, $len & ~3 + 1);
1810
1811 # Easy method: translate from chars to (pregenerated) six-bit packets, join,
1812 # split in 8-bit chunks and convert back to char.
1813 print join q(),
1814 map $bytes{$_},
1815 ((join q(), map {$trans{$_} || q()} split //, $chunk) =~ /......../g);
1816
1817 last if $finished;
1818 }
1819 '"
1820 "Perl program to use for decoding a file.
1821 Escape sequence %s is replaced with name of Perl binary.
1822 This string is passed to `format', so percent characters need to be doubled.")
1823
1824 ; These values conform to `file-attributes' from XEmacs 21.2.
1825 ; GNU Emacs and other tools not checked.
1826 (defconst tramp-file-mode-type-map '((0 . "-") ; Normal file (SVID-v2 and XPG2)
1827 (1 . "p") ; fifo
1828 (2 . "c") ; character device
1829 (3 . "m") ; multiplexed character device (v7)
1830 (4 . "d") ; directory
1831 (5 . "?") ; Named special file (XENIX)
1832 (6 . "b") ; block device
1833 (7 . "?") ; multiplexed block device (v7)
1834 (8 . "-") ; regular file
1835 (9 . "n") ; network special file (HP-UX)
1836 (10 . "l") ; symlink
1837 (11 . "?") ; ACL shadow inode (Solaris, not userspace)
1838 (12 . "s") ; socket
1839 (13 . "D") ; door special (Solaris)
1840 (14 . "w")) ; whiteout (BSD)
1841 "A list of file types returned from the `stat' system call.
1842 This is used to map a mode number to a permission string.")
1843
1844 (defvar tramp-dos-coding-system
1845 (if (and (fboundp 'coding-system-p)
1846 (funcall 'coding-system-p '(dos)))
1847 'dos
1848 'undecided-dos)
1849 "Some Emacsen know the `dos' coding system, others need `undecided-dos'.")
1850
1851 (defvar tramp-last-cmd nil
1852 "Internal Tramp variable recording the last command sent.
1853 This variable is buffer-local in every buffer.")
1854 (make-variable-buffer-local 'tramp-last-cmd)
1855
1856 (defvar tramp-process-echoes nil
1857 "Whether to process echoes from the remote shell.")
1858
1859 (defvar tramp-last-cmd-time nil
1860 "Internal Tramp variable recording the time when the last cmd was sent.
1861 This variable is buffer-local in every buffer.")
1862 (make-variable-buffer-local 'tramp-last-cmd-time)
1863
1864 ;; This variable does not have the right value in XEmacs. What should
1865 ;; I use instead of find-operation-coding-system in XEmacs?
1866 (defvar tramp-feature-write-region-fix
1867 (when (fboundp 'find-operation-coding-system)
1868 (let ((file-coding-system-alist '(("test" emacs-mule))))
1869 (funcall (symbol-function 'find-operation-coding-system)
1870 'write-region 0 0 "" nil "test")))
1871 "Internal variable to say if `write-region' chooses the right coding.
1872 Older versions of Emacs chose the coding system for `write-region' based
1873 on the FILENAME argument, even if VISIT was a string.")
1874
1875 ;; New handlers should be added here. The following operations can be
1876 ;; handled using the normal primitives: file-name-as-directory,
1877 ;; file-name-directory, file-name-nondirectory,
1878 ;; file-name-sans-versions, get-file-buffer.
1879 (defconst tramp-file-name-handler-alist
1880 '(
1881 (load . tramp-handle-load)
1882 (make-symbolic-link . tramp-handle-make-symbolic-link)
1883 (file-name-directory . tramp-handle-file-name-directory)
1884 (file-name-nondirectory . tramp-handle-file-name-nondirectory)
1885 (file-truename . tramp-handle-file-truename)
1886 (file-exists-p . tramp-handle-file-exists-p)
1887 (file-directory-p . tramp-handle-file-directory-p)
1888 (file-executable-p . tramp-handle-file-executable-p)
1889 (file-accessible-directory-p . tramp-handle-file-accessible-directory-p)
1890 (file-readable-p . tramp-handle-file-readable-p)
1891 (file-regular-p . tramp-handle-file-regular-p)
1892 (file-symlink-p . tramp-handle-file-symlink-p)
1893 (file-writable-p . tramp-handle-file-writable-p)
1894 (file-ownership-preserved-p . tramp-handle-file-ownership-preserved-p)
1895 (file-newer-than-file-p . tramp-handle-file-newer-than-file-p)
1896 (file-attributes . tramp-handle-file-attributes)
1897 (file-modes . tramp-handle-file-modes)
1898 (directory-files . tramp-handle-directory-files)
1899 (directory-files-and-attributes . tramp-handle-directory-files-and-attributes)
1900 (file-name-all-completions . tramp-handle-file-name-all-completions)
1901 (file-name-completion . tramp-handle-file-name-completion)
1902 (add-name-to-file . tramp-handle-add-name-to-file)
1903 (copy-file . tramp-handle-copy-file)
1904 (rename-file . tramp-handle-rename-file)
1905 (set-file-modes . tramp-handle-set-file-modes)
1906 (make-directory . tramp-handle-make-directory)
1907 (delete-directory . tramp-handle-delete-directory)
1908 (delete-file . tramp-handle-delete-file)
1909 (directory-file-name . tramp-handle-directory-file-name)
1910 (shell-command . tramp-handle-shell-command)
1911 (process-file . tramp-handle-process-file)
1912 (insert-directory . tramp-handle-insert-directory)
1913 (expand-file-name . tramp-handle-expand-file-name)
1914 (file-local-copy . tramp-handle-file-local-copy)
1915 (file-remote-p . tramp-handle-file-remote-p)
1916 (insert-file-contents . tramp-handle-insert-file-contents)
1917 (write-region . tramp-handle-write-region)
1918 (find-backup-file-name . tramp-handle-find-backup-file-name)
1919 (make-auto-save-file-name . tramp-handle-make-auto-save-file-name)
1920 (unhandled-file-name-directory . tramp-handle-unhandled-file-name-directory)
1921 (dired-compress-file . tramp-handle-dired-compress-file)
1922 (dired-call-process . tramp-handle-dired-call-process)
1923 (dired-recursive-delete-directory
1924 . tramp-handle-dired-recursive-delete-directory)
1925 (set-visited-file-modtime . tramp-handle-set-visited-file-modtime)
1926 (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime))
1927 "Alist of handler functions.
1928 Operations not mentioned here will be handled by the normal Emacs functions.")
1929
1930 ;; Handlers for partial tramp file names. For GNU Emacs just
1931 ;; `file-name-all-completions' is needed. The other ones are necessary
1932 ;; for XEmacs.
1933 (defconst tramp-completion-file-name-handler-alist
1934 '(
1935 (file-name-directory . tramp-completion-handle-file-name-directory)
1936 (file-name-nondirectory . tramp-completion-handle-file-name-nondirectory)
1937 (file-exists-p . tramp-completion-handle-file-exists-p)
1938 (file-name-all-completions . tramp-completion-handle-file-name-all-completions)
1939 (file-name-completion . tramp-completion-handle-file-name-completion)
1940 (expand-file-name . tramp-completion-handle-expand-file-name))
1941 "Alist of completion handler functions.
1942 Used for file names matching `tramp-file-name-regexp'. Operations not
1943 mentioned here will be handled by `tramp-file-name-handler-alist' or the
1944 normal Emacs functions.")
1945
1946 ;; Handlers for foreign methods, like FTP or SMB, shall be plugged here.
1947 (defvar tramp-foreign-file-name-handler-alist
1948 ;; (identity . tramp-sh-file-name-handler) should always be the last
1949 ;; entry, since `identity' always matches.
1950 '((identity . tramp-sh-file-name-handler))
1951 "Alist of elements (FUNCTION . HANDLER) for foreign methods handled specially.
1952 If (FUNCTION FILENAME) returns non-nil, then all I/O on that file is done by
1953 calling HANDLER.")
1954
1955 ;;; Internal functions which must come first.
1956
1957 (defsubst tramp-message (level fmt-string &rest args)
1958 "Emit a message depending on verbosity level.
1959 First arg LEVEL says to be quiet if `tramp-verbose' is less than LEVEL. The
1960 message is emitted only if `tramp-verbose' is greater than or equal to LEVEL.
1961 Calls function `message' with FMT-STRING as control string and the remaining
1962 ARGS to actually emit the message (if applicable).
1963
1964 This function expects to be called from the tramp buffer only!"
1965 (when (<= level tramp-verbose)
1966 (apply #'message (concat "tramp: " fmt-string) args)
1967 (when tramp-debug-buffer
1968 (save-excursion
1969 (set-buffer
1970 (tramp-get-debug-buffer
1971 tramp-current-multi-method tramp-current-method
1972 tramp-current-user tramp-current-host))
1973 (goto-char (point-max))
1974 (unless (bolp)
1975 (insert "\n"))
1976 (tramp-insert-with-face
1977 'italic
1978 (concat "# " (apply #'format fmt-string args) "\n"))))))
1979
1980 (defun tramp-message-for-buffer
1981 (multi-method method user host level fmt-string &rest args)
1982 "Like `tramp-message' but temporarily switches to the tramp buffer.
1983 First three args METHOD, USER, and HOST identify the tramp buffer to use,
1984 remaining args passed to `tramp-message'."
1985 (save-excursion
1986 (set-buffer (tramp-get-buffer multi-method method user host))
1987 (apply 'tramp-message level fmt-string args)))
1988
1989 (defsubst tramp-line-end-position nil
1990 "Return point at end of line.
1991 Calls `line-end-position' or `point-at-eol' if defined, else
1992 own implementation."
1993 (cond
1994 ((fboundp 'line-end-position) (funcall (symbol-function 'line-end-position)))
1995 ((fboundp 'point-at-eol) (funcall (symbol-function 'point-at-eol)))
1996 (t (save-excursion (end-of-line) (point)))))
1997
1998 (defmacro with-parsed-tramp-file-name (filename var &rest body)
1999 "Parse a Tramp filename and make components available in the body.
2000
2001 First arg FILENAME is evaluated and dissected into its components.
2002 Second arg VAR is a symbol. It is used as a variable name to hold
2003 the filename structure. It is also used as a prefix for the variables
2004 holding the components. For example, if VAR is the symbol `foo', then
2005 `foo' will be bound to the whole structure, `foo-multi-method' will
2006 be bound to the multi-method component, and so on for `foo-method',
2007 `foo-user', `foo-host', `foo-localname'.
2008
2009 Remaining args are Lisp expressions to be evaluated (inside an implicit
2010 `progn').
2011
2012 If VAR is nil, then we bind `v' to the structure and `multi-method',
2013 `method', `user', `host', `localname' to the components."
2014 `(let* ((,(or var 'v) (tramp-dissect-file-name ,filename))
2015 (,(if var (intern (concat (symbol-name var) "-multi-method")) 'multi-method)
2016 (tramp-file-name-multi-method ,(or var 'v)))
2017 (,(if var (intern (concat (symbol-name var) "-method")) 'method)
2018 (tramp-file-name-method ,(or var 'v)))
2019 (,(if var (intern (concat (symbol-name var) "-user")) 'user)
2020 (tramp-file-name-user ,(or var 'v)))
2021 (,(if var (intern (concat (symbol-name var) "-host")) 'host)
2022 (tramp-file-name-host ,(or var 'v)))
2023 (,(if var (intern (concat (symbol-name var) "-localname")) 'localname)
2024 (tramp-file-name-localname ,(or var 'v))))
2025 ,@body))
2026
2027 (put 'with-parsed-tramp-file-name 'lisp-indent-function 2)
2028 ;; To be activated for debugging containing this macro
2029 ;; It works only when VAR is nil. Otherwise, it can be deactivated by
2030 ;; (put 'with-parsed-tramp-file-name 'edebug-form-spec 0)
2031 ;; I'm too stupid to write a precise SPEC for it.
2032 (put 'with-parsed-tramp-file-name 'edebug-form-spec t)
2033
2034 (defmacro tramp-let-maybe (variable value &rest body)
2035 "Let-bind VARIABLE to VALUE in BODY, but only if VARIABLE is not obsolete.
2036 BODY is executed whether or not the variable is obsolete.
2037 The intent is to protect against `obsolete variable' warnings."
2038 `(if (get ',variable 'byte-obsolete-variable)
2039 (progn ,@body)
2040 (let ((,variable ,value))
2041 ,@body)))
2042 (put 'tramp-let-maybe 'lisp-indent-function 2)
2043 (put 'tramp-let-maybe 'edebug-form-spec t)
2044
2045 ;;; Config Manipulation Functions:
2046
2047 (defun tramp-set-completion-function (method function-list)
2048 "Sets the list of completion functions for METHOD.
2049 FUNCTION-LIST is a list of entries of the form (FUNCTION FILE).
2050 The FUNCTION is intended to parse FILE according its syntax.
2051 It might be a predefined FUNCTION, or a user defined FUNCTION.
2052 Predefined FUNCTIONs are `tramp-parse-rhosts', `tramp-parse-shosts',
2053 `tramp-parse-sconfig',`tramp-parse-hosts', `tramp-parse-passwd',
2054 and `tramp-parse-netrc'.
2055
2056 Example:
2057
2058 (tramp-set-completion-function
2059 \"ssh\"
2060 '((tramp-parse-sconfig \"/etc/ssh_config\")
2061 (tramp-parse-sconfig \"~/.ssh/config\")))"
2062
2063 (let ((r function-list)
2064 (v function-list))
2065 (setq tramp-completion-function-alist
2066 (delete (assoc method tramp-completion-function-alist)
2067 tramp-completion-function-alist))
2068
2069 (while v
2070 ;; Remove double entries
2071 (when (member (car v) (cdr v))
2072 (setcdr v (delete (car v) (cdr v))))
2073 ;; Check for function and file
2074 (unless (and (functionp (nth 0 (car v)))
2075 (file-exists-p (nth 1 (car v))))
2076 (setq r (delete (car v) r)))
2077 (setq v (cdr v)))
2078
2079 (when r
2080 (add-to-list 'tramp-completion-function-alist
2081 (cons method r)))))
2082
2083 (defun tramp-get-completion-function (method)
2084 "Returns list of completion functions for METHOD.
2085 For definition of that list see `tramp-set-completion-function'."
2086 (cdr (assoc method tramp-completion-function-alist)))
2087
2088 ;;; File Name Handler Functions:
2089
2090 (defun tramp-handle-make-symbolic-link
2091 (filename linkname &optional ok-if-already-exists)
2092 "Like `make-symbolic-link' for tramp files.
2093 If LINKNAME is a non-Tramp file, it is used verbatim as the target of
2094 the symlink. If LINKNAME is a Tramp file, only the localname component is
2095 used as the target of the symlink.
2096
2097 If LINKNAME is a Tramp file and the localname component is relative, then
2098 it is expanded first, before the localname component is taken. Note that
2099 this can give surprising results if the user/host for the source and
2100 target of the symlink differ."
2101 (with-parsed-tramp-file-name linkname l
2102 (let ((ln (tramp-get-remote-ln l-multi-method l-method l-user l-host))
2103 (cwd (file-name-directory l-localname)))
2104 (unless ln
2105 (signal 'file-error
2106 (list "Making a symbolic link."
2107 "ln(1) does not exist on the remote host.")))
2108
2109 ;; Do the 'confirm if exists' thing.
2110 (when (file-exists-p linkname)
2111 ;; What to do?
2112 (if (or (null ok-if-already-exists) ; not allowed to exist
2113 (and (numberp ok-if-already-exists)
2114 (not (yes-or-no-p
2115 (format
2116 "File %s already exists; make it a link anyway? "
2117 l-localname)))))
2118 (signal 'file-already-exists (list "File already exists" l-localname))
2119 (delete-file linkname)))
2120
2121 ;; If FILENAME is a Tramp name, use just the localname component.
2122 (when (tramp-tramp-file-p filename)
2123 (setq filename (tramp-file-name-localname
2124 (tramp-dissect-file-name
2125 (expand-file-name filename)))))
2126
2127 ;; Right, they are on the same host, regardless of user, method, etc.
2128 ;; We now make the link on the remote machine. This will occur as the user
2129 ;; that FILENAME belongs to.
2130 (zerop
2131 (tramp-send-command-and-check
2132 l-multi-method l-method l-user l-host
2133 (format "cd %s && %s -sf %s %s"
2134 cwd ln
2135 filename
2136 l-localname)
2137 t)))))
2138
2139
2140 (defun tramp-handle-load (file &optional noerror nomessage nosuffix must-suffix)
2141 "Like `load' for tramp files. Not implemented!"
2142 (unless (file-name-absolute-p file)
2143 (error "Tramp cannot `load' files without absolute file name"))
2144 (with-parsed-tramp-file-name file nil
2145 (unless nosuffix
2146 (cond ((file-exists-p (concat file ".elc"))
2147 (setq file (concat file ".elc")))
2148 ((file-exists-p (concat file ".el"))
2149 (setq file (concat file ".el")))))
2150 (when must-suffix
2151 ;; The first condition is always true for absolute file names.
2152 ;; Included for safety's sake.
2153 (unless (or (file-name-directory file)
2154 (string-match "\\.elc?\\'" file))
2155 (error "File `%s' does not include a `.el' or `.elc' suffix"
2156 file)))
2157 (unless noerror
2158 (when (not (file-exists-p file))
2159 (error "Cannot load nonexistent file `%s'" file)))
2160 (if (not (file-exists-p file))
2161 nil
2162 (unless nomessage
2163 (message "Loading %s..." file))
2164 (let ((local-copy (file-local-copy file)))
2165 ;; MUST-SUFFIX doesn't exist on XEmacs, so let it default to nil.
2166 (load local-copy noerror t t)
2167 (delete-file local-copy))
2168 (unless nomessage
2169 (message "Loading %s...done" file))
2170 t)))
2171
2172 ;; Localname manipulation functions that grok TRAMP localnames...
2173 (defun tramp-handle-file-name-directory (file)
2174 "Like `file-name-directory' but aware of TRAMP files."
2175 ;; everything except the last filename thing is the directory
2176 (with-parsed-tramp-file-name file nil
2177 ;; For the following condition, two possibilities should be tried:
2178 ;; (1) (string= localname "")
2179 ;; (2) (or (string= localname "") (string= localname "/"))
2180 ;; The second variant fails when completing a "/" directory on
2181 ;; the remote host, that is a filename which looks like
2182 ;; "/user@host:/". But maybe wildcards fail with the first variant.
2183 ;; We should do some investigation.
2184 (if (string= localname "")
2185 ;; For a filename like "/[foo]", we return "/". The `else'
2186 ;; case would return "/[foo]" unchanged. But if we do that,
2187 ;; then `file-expand-wildcards' ceases to work. It's not
2188 ;; quite clear to me what's the intuition that tells that this
2189 ;; behavior is the right behavior, but oh, well.
2190 "/"
2191 ;; run the command on the localname portion only
2192 ;; CCC: This should take into account the remote machine type, no?
2193 ;; --daniel <daniel@danann.net>
2194 (tramp-make-tramp-file-name multi-method method user host
2195 ;; This will not recurse...
2196 (or (file-name-directory localname) "")))))
2197
2198 (defun tramp-handle-file-name-nondirectory (file)
2199 "Like `file-name-nondirectory' but aware of TRAMP files."
2200 (with-parsed-tramp-file-name file nil
2201 (file-name-nondirectory localname)))
2202
2203 (defun tramp-handle-file-truename (filename &optional counter prev-dirs)
2204 "Like `file-truename' for tramp files."
2205 (with-parsed-tramp-file-name (expand-file-name filename) nil
2206 (let* ((steps (tramp-split-string localname "/"))
2207 (localnamedir (tramp-let-maybe directory-sep-char ?/ ;for XEmacs
2208 (file-name-as-directory localname)))
2209 (is-dir (string= localname localnamedir))
2210 (thisstep nil)
2211 (numchase 0)
2212 ;; Don't make the following value larger than necessary.
2213 ;; People expect an error message in a timely fashion when
2214 ;; something is wrong; otherwise they might think that Emacs
2215 ;; is hung. Of course, correctness has to come first.
2216 (numchase-limit 20)
2217 (result nil) ;result steps in reverse order
2218 symlink-target)
2219 (tramp-message-for-buffer
2220 multi-method method user host
2221 10 "Finding true name for `%s'" filename)
2222 (while (and steps (< numchase numchase-limit))
2223 (setq thisstep (pop steps))
2224 (tramp-message-for-buffer
2225 multi-method method user host
2226 10 "Check %s"
2227 (mapconcat 'identity
2228 (append '("") (reverse result) (list thisstep))
2229 "/"))
2230 (setq symlink-target
2231 (nth 0 (file-attributes
2232 (tramp-make-tramp-file-name
2233 multi-method method user host
2234 (mapconcat 'identity
2235 (append '("")
2236 (reverse result)
2237 (list thisstep))
2238 "/")))))
2239 (cond ((string= "." thisstep)
2240 (tramp-message-for-buffer multi-method method user host
2241 10 "Ignoring step `.'"))
2242 ((string= ".." thisstep)
2243 (tramp-message-for-buffer multi-method method user host
2244 10 "Processing step `..'")
2245 (pop result))
2246 ((stringp symlink-target)
2247 ;; It's a symlink, follow it.
2248 (tramp-message-for-buffer
2249 multi-method method user host
2250 10 "Follow symlink to %s" symlink-target)
2251 (setq numchase (1+ numchase))
2252 (when (file-name-absolute-p symlink-target)
2253 (setq result nil))
2254 ;; If the symlink was absolute, we'll get a string like
2255 ;; "/user@host:/some/target"; extract the
2256 ;; "/some/target" part from it.
2257 (when (tramp-tramp-file-p symlink-target)
2258 (with-parsed-tramp-file-name symlink-target sym
2259 (unless (equal (list multi-method method user host)
2260 (list sym-multi-method sym-method
2261 sym-user sym-host))
2262 (error "Symlink target `%s' on wrong host"
2263 symlink-target))
2264 (setq symlink-target localname)))
2265 (setq steps
2266 (append (tramp-split-string symlink-target "/") steps)))
2267 (t
2268 ;; It's a file.
2269 (setq result (cons thisstep result)))))
2270 (when (>= numchase numchase-limit)
2271 (error "Maximum number (%d) of symlinks exceeded" numchase-limit))
2272 (setq result (reverse result))
2273 ;; Combine list to form string.
2274 (setq result
2275 (if result
2276 (mapconcat 'identity (cons "" result) "/")
2277 "/"))
2278 (when (and is-dir (or (string= "" result)
2279 (not (string= (substring result -1) "/"))))
2280 (setq result (concat result "/")))
2281 (tramp-message-for-buffer
2282 multi-method method user host
2283 10 "True name of `%s' is `%s'" filename result)
2284 (tramp-make-tramp-file-name
2285 multi-method method user host result))))
2286
2287 ;; Basic functions.
2288
2289 (defun tramp-handle-file-exists-p (filename)
2290 "Like `file-exists-p' for tramp files."
2291 (with-parsed-tramp-file-name filename nil
2292 (save-excursion
2293 (zerop (tramp-send-command-and-check
2294 multi-method method user host
2295 (format
2296 (tramp-get-file-exists-command multi-method method user host)
2297 (tramp-shell-quote-argument localname)))))))
2298
2299 ;; Devices must distinguish physical file systems. The device numbers
2300 ;; provided by "lstat" aren't unique, because we operate on different hosts.
2301 ;; So we use virtual device numbers, generated by Tramp. Both Ange-FTP and
2302 ;; EFS use device number "-1". In order to be different, we use device number
2303 ;; (-1 x), whereby "x" is unique for a given (multi-method method user host).
2304 (defvar tramp-devices nil
2305 "Keeps virtual device numbers.")
2306
2307 ;; CCC: This should check for an error condition and signal failure
2308 ;; when something goes wrong.
2309 ;; Daniel Pittman <daniel@danann.net>
2310 (defun tramp-handle-file-attributes (filename &optional id-format)
2311 "Like `file-attributes' for tramp files."
2312 (when (file-exists-p filename)
2313 ;; file exists, find out stuff
2314 (unless id-format (setq id-format 'integer))
2315 (with-parsed-tramp-file-name filename nil
2316 (save-excursion
2317 (tramp-convert-file-attributes
2318 multi-method method user host
2319 (if (tramp-get-remote-perl multi-method method user host)
2320 (tramp-handle-file-attributes-with-perl multi-method method user host
2321 localname id-format)
2322 (tramp-handle-file-attributes-with-ls multi-method method user host
2323 localname id-format)))))))
2324
2325 (defun tramp-handle-file-attributes-with-ls
2326 (multi-method method user host localname &optional id-format)
2327 "Implement `file-attributes' for tramp files using the ls(1) command."
2328 (let (symlinkp dirp
2329 res-inode res-filemodes res-numlinks
2330 res-uid res-gid res-size res-symlink-target)
2331 (tramp-message-for-buffer multi-method method user host 10
2332 "file attributes with ls: %s"
2333 (tramp-make-tramp-file-name
2334 multi-method method user host localname))
2335 (tramp-send-command
2336 multi-method method user host
2337 (format "%s %s %s"
2338 (tramp-get-ls-command multi-method method user host)
2339 (if (eq id-format 'integer) "-ildn" "-ild")
2340 (tramp-shell-quote-argument localname)))
2341 (tramp-wait-for-output)
2342 ;; parse `ls -l' output ...
2343 ;; ... inode
2344 (setq res-inode
2345 (condition-case err
2346 (read (current-buffer))
2347 (invalid-read-syntax
2348 (when (and (equal (cadr err)
2349 "Integer constant overflow in reader")
2350 (string-match
2351 "^[0-9]+\\([0-9][0-9][0-9][0-9][0-9]\\)\\'"
2352 (caddr err)))
2353 (let* ((big (read (substring (caddr err) 0
2354 (match-beginning 1))))
2355 (small (read (match-string 1 (caddr err))))
2356 (twiddle (/ small 65536)))
2357 (cons (+ big twiddle)
2358 (- small (* twiddle 65536))))))))
2359 ;; ... file mode flags
2360 (setq res-filemodes (symbol-name (read (current-buffer))))
2361 ;; ... number links
2362 (setq res-numlinks (read (current-buffer)))
2363 ;; ... uid and gid
2364 (setq res-uid (read (current-buffer)))
2365 (setq res-gid (read (current-buffer)))
2366 (when (eq id-format 'integer)
2367 (unless (numberp res-uid) (setq res-uid -1))
2368 (unless (numberp res-gid) (setq res-gid -1)))
2369 ;; ... size
2370 (setq res-size (read (current-buffer)))
2371 ;; From the file modes, figure out other stuff.
2372 (setq symlinkp (eq ?l (aref res-filemodes 0)))
2373 (setq dirp (eq ?d (aref res-filemodes 0)))
2374 ;; if symlink, find out file name pointed to
2375 (when symlinkp
2376 (search-forward "-> ")
2377 (setq res-symlink-target
2378 (buffer-substring (point)
2379 (tramp-line-end-position))))
2380 ;; return data gathered
2381 (list
2382 ;; 0. t for directory, string (name linked to) for symbolic
2383 ;; link, or nil.
2384 (or dirp res-symlink-target nil)
2385 ;; 1. Number of links to file.
2386 res-numlinks
2387 ;; 2. File uid.
2388 res-uid
2389 ;; 3. File gid.
2390 res-gid
2391 ;; 4. Last access time, as a list of two integers. First
2392 ;; integer has high-order 16 bits of time, second has low 16
2393 ;; bits.
2394 ;; 5. Last modification time, likewise.
2395 ;; 6. Last status change time, likewise.
2396 '(0 0) '(0 0) '(0 0) ;CCC how to find out?
2397 ;; 7. Size in bytes (-1, if number is out of range).
2398 res-size
2399 ;; 8. File modes, as a string of ten letters or dashes as in ls -l.
2400 res-filemodes
2401 ;; 9. t iff file's gid would change if file were deleted and
2402 ;; recreated. Will be set in `tramp-convert-file-attributes'
2403 t
2404 ;; 10. inode number.
2405 res-inode
2406 ;; 11. Device number. Will be replaced by a virtual device number.
2407 -1
2408 )))
2409
2410 (defun tramp-handle-file-attributes-with-perl
2411 (multi-method method user host localname &optional id-format)
2412 "Implement `file-attributes' for tramp files using a Perl script."
2413 (tramp-message-for-buffer multi-method method user host 10
2414 "file attributes with perl: %s"
2415 (tramp-make-tramp-file-name
2416 multi-method method user host localname))
2417 (tramp-maybe-send-perl-script multi-method method user host
2418 tramp-perl-file-attributes
2419 "tramp_file_attributes")
2420 (tramp-send-command multi-method method user host
2421 (format "tramp_file_attributes %s %s"
2422 (tramp-shell-quote-argument localname) id-format))
2423 (tramp-wait-for-output)
2424 (read (current-buffer)))
2425
2426 (defun tramp-handle-set-visited-file-modtime (&optional time-list)
2427 "Like `set-visited-file-modtime' for tramp files."
2428 (unless (buffer-file-name)
2429 (error "Can't set-visited-file-modtime: buffer `%s' not visiting a file"
2430 (buffer-name)))
2431 (if time-list
2432 (tramp-run-real-handler 'set-visited-file-modtime (list time-list))
2433 (let ((f (buffer-file-name))
2434 coding-system-used)
2435 (with-parsed-tramp-file-name f nil
2436 (let* ((attr (file-attributes f))
2437 ;; '(-1 65535) means file doesn't exists yet.
2438 (modtime (or (nth 5 attr) '(-1 65535))))
2439 (when (boundp 'last-coding-system-used)
2440 (setq coding-system-used (symbol-value 'last-coding-system-used)))
2441 ;; We use '(0 0) as a don't-know value. See also
2442 ;; `tramp-handle-file-attributes-with-ls'.
2443 (if (not (equal modtime '(0 0)))
2444 (tramp-run-real-handler 'set-visited-file-modtime (list modtime))
2445 (save-excursion
2446 (tramp-send-command
2447 multi-method method user host
2448 (format "%s -ild %s"
2449 (tramp-get-ls-command multi-method method user host)
2450 (tramp-shell-quote-argument localname)))
2451 (tramp-wait-for-output)
2452 (setq attr (buffer-substring (point)
2453 (progn (end-of-line) (point)))))
2454 (setq tramp-buffer-file-attributes attr))
2455 (when (boundp 'last-coding-system-used)
2456 (set 'last-coding-system-used coding-system-used))
2457 nil)))))
2458
2459 ;; CCC continue here
2460
2461 ;; This function makes the same assumption as
2462 ;; `tramp-handle-set-visited-file-modtime'.
2463 (defun tramp-handle-verify-visited-file-modtime (buf)
2464 "Like `verify-visited-file-modtime' for tramp files.
2465 At the time `verify-visited-file-modtime' calls this function, we
2466 already know that the buffer is visiting a file and that
2467 `visited-file-modtime' does not return 0. Do not call this
2468 function directly, unless those two cases are already taken care
2469 of."
2470 (with-current-buffer buf
2471 ;; There is no file visiting the buffer, or the buffer has no
2472 ;; recorded last modification time.
2473 (if (or (not (buffer-file-name))
2474 (eq (visited-file-modtime) 0))
2475 t
2476 (let ((f (buffer-file-name)))
2477 (with-parsed-tramp-file-name f nil
2478 (let* ((attr (file-attributes f))
2479 (modtime (nth 5 attr))
2480 (mt (visited-file-modtime)))
2481
2482 (cond
2483 ;; file exists, and has a known modtime.
2484 ((and attr (not (equal modtime '(0 0))))
2485 (< (abs (tramp-time-diff
2486 modtime
2487 ;; For compatibility, deal with both the old
2488 ;; (HIGH . LOW) and the new (HIGH LOW)
2489 ;; return values of `visited-file-modtime'.
2490 (if (atom (cdr mt))
2491 (list (car mt) (cdr mt))
2492 mt)))
2493 2))
2494 ;; modtime has the don't know value.
2495 (attr
2496 (save-excursion
2497 (tramp-send-command
2498 multi-method method user host
2499 (format "%s -ild %s"
2500 (tramp-get-ls-command multi-method method user host)
2501 (tramp-shell-quote-argument localname)))
2502 (tramp-wait-for-output)
2503 (setq attr (buffer-substring
2504 (point) (progn (end-of-line) (point)))))
2505 (equal tramp-buffer-file-attributes attr))
2506 ;; If file does not exist, say it is not modified
2507 ;; if and only if that agrees with the buffer's record.
2508 (t (equal mt '(-1 65535))))))))))
2509
2510 (defun tramp-handle-set-file-modes (filename mode)
2511 "Like `set-file-modes' for tramp files."
2512 (with-parsed-tramp-file-name filename nil
2513 (save-excursion
2514 (unless (zerop (tramp-send-command-and-check
2515 multi-method method user host
2516 (format "chmod %s %s"
2517 (tramp-decimal-to-octal mode)
2518 (tramp-shell-quote-argument localname))))
2519 (signal 'file-error
2520 (list "Doing chmod"
2521 ;; FIXME: extract the proper text from chmod's stderr.
2522 "error while changing file's mode"
2523 filename))))))
2524
2525 ;; Simple functions using the `test' command.
2526
2527 (defun tramp-handle-file-executable-p (filename)
2528 "Like `file-executable-p' for tramp files."
2529 (with-parsed-tramp-file-name filename nil
2530 (zerop (tramp-run-test "-x" filename))))
2531
2532 (defun tramp-handle-file-readable-p (filename)
2533 "Like `file-readable-p' for tramp files."
2534 (with-parsed-tramp-file-name filename nil
2535 (zerop (tramp-run-test "-r" filename))))
2536
2537 (defun tramp-handle-file-accessible-directory-p (filename)
2538 "Like `file-accessible-directory-p' for tramp files."
2539 (with-parsed-tramp-file-name filename nil
2540 (and (zerop (tramp-run-test "-d" filename))
2541 (zerop (tramp-run-test "-r" filename))
2542 (zerop (tramp-run-test "-x" filename)))))
2543
2544 ;; When the remote shell is started, it looks for a shell which groks
2545 ;; tilde expansion. Here, we assume that all shells which grok tilde
2546 ;; expansion will also provide a `test' command which groks `-nt' (for
2547 ;; newer than). If this breaks, tell me about it and I'll try to do
2548 ;; something smarter about it.
2549 (defun tramp-handle-file-newer-than-file-p (file1 file2)
2550 "Like `file-newer-than-file-p' for tramp files."
2551 (cond ((not (file-exists-p file1))
2552 nil)
2553 ((not (file-exists-p file2))
2554 t)
2555 ;; We are sure both files exist at this point.
2556 (t
2557 (save-excursion
2558 ;; We try to get the mtime of both files. If they are not
2559 ;; equal to the "dont-know" value, then we subtract the times
2560 ;; and obtain the result.
2561 (let ((fa1 (file-attributes file1))
2562 (fa2 (file-attributes file2)))
2563 (if (and (not (equal (nth 5 fa1) '(0 0)))
2564 (not (equal (nth 5 fa2) '(0 0))))
2565 (> 0 (tramp-time-diff (nth 5 fa2) (nth 5 fa1)))
2566 ;; If one of them is the dont-know value, then we can
2567 ;; still try to run a shell command on the remote host.
2568 ;; However, this only works if both files are Tramp
2569 ;; files and both have the same method, same user, same
2570 ;; host.
2571 (unless (and (tramp-tramp-file-p file1)
2572 (tramp-tramp-file-p file2))
2573 (signal
2574 'file-error
2575 (list
2576 "Cannot check if Tramp file is newer than non-Tramp file"
2577 file1 file2)))
2578 (with-parsed-tramp-file-name file1 v1
2579 (with-parsed-tramp-file-name file2 v2
2580 (unless (and (equal v1-multi-method v2-multi-method)
2581 (equal v1-method v2-method)
2582 (equal v1-user v2-user)
2583 (equal v1-host v2-host))
2584 (signal 'file-error
2585 (list "Files must have same method, user, host"
2586 file1 file2)))
2587 (unless (and (tramp-tramp-file-p file1)
2588 (tramp-tramp-file-p file2))
2589 (signal 'file-error
2590 (list "Files must be tramp files on same host"
2591 file1 file2)))
2592 (if (tramp-get-test-groks-nt
2593 v1-multi-method v1-method v1-user v1-host)
2594 (zerop (tramp-run-test2 "test" file1 file2 "-nt"))
2595 (zerop (tramp-run-test2
2596 "tramp_test_nt" file1 file2)))))))))))
2597
2598 ;; Functions implemented using the basic functions above.
2599
2600 (defun tramp-handle-file-modes (filename)
2601 "Like `file-modes' for tramp files."
2602 (with-parsed-tramp-file-name filename nil
2603 (when (file-exists-p filename)
2604 (tramp-mode-string-to-int
2605 (nth 8 (file-attributes filename))))))
2606
2607 (defun tramp-handle-file-directory-p (filename)
2608 "Like `file-directory-p' for tramp files."
2609 ;; Care must be taken that this function returns `t' for symlinks
2610 ;; pointing to directories. Surely the most obvious implementation
2611 ;; would be `test -d', but that returns false for such symlinks.
2612 ;; CCC: Stefan Monnier says that `test -d' follows symlinks. And
2613 ;; I now think he's right. So we could be using `test -d', couldn't
2614 ;; we?
2615 ;;
2616 ;; Alternatives: `cd %s', `test -d %s'
2617 (with-parsed-tramp-file-name filename nil
2618 (save-excursion
2619 (zerop
2620 (tramp-send-command-and-check
2621 multi-method method user host
2622 (format "test -d %s"
2623 (tramp-shell-quote-argument localname))
2624 t))))) ;run command in subshell
2625
2626 (defun tramp-handle-file-regular-p (filename)
2627 "Like `file-regular-p' for tramp files."
2628 (with-parsed-tramp-file-name filename nil
2629 (and (file-exists-p filename)
2630 (eq ?- (aref (nth 8 (file-attributes filename)) 0)))))
2631
2632 (defun tramp-handle-file-symlink-p (filename)
2633 "Like `file-symlink-p' for tramp files."
2634 (with-parsed-tramp-file-name filename nil
2635 (let ((x (car (file-attributes filename))))
2636 (when (stringp x)
2637 ;; When Tramp is running on VMS, then `file-name-absolute-p'
2638 ;; might do weird things.
2639 (if (file-name-absolute-p x)
2640 (tramp-make-tramp-file-name
2641 multi-method method user host x)
2642 x)))))
2643
2644 (defun tramp-handle-file-writable-p (filename)
2645 "Like `file-writable-p' for tramp files."
2646 (with-parsed-tramp-file-name filename nil
2647 (if (file-exists-p filename)
2648 ;; Existing files must be writable.
2649 (zerop (tramp-run-test "-w" filename))
2650 ;; If file doesn't exist, check if directory is writable.
2651 (and (zerop (tramp-run-test
2652 "-d" (file-name-directory filename)))
2653 (zerop (tramp-run-test
2654 "-w" (file-name-directory filename)))))))
2655
2656 (defun tramp-handle-file-ownership-preserved-p (filename)
2657 "Like `file-ownership-preserved-p' for tramp files."
2658 (with-parsed-tramp-file-name filename nil
2659 (let ((attributes (file-attributes filename)))
2660 ;; Return t if the file doesn't exist, since it's true that no
2661 ;; information would be lost by an (attempted) delete and create.
2662 (or (null attributes)
2663 (= (nth 2 attributes)
2664 (tramp-get-remote-uid multi-method method user host))))))
2665
2666 ;; Other file name ops.
2667
2668 ;; ;; Matthias K\e,Av\e(Bppe <mkoeppe@mail.math.uni-magdeburg.de>
2669 ;; (defun tramp-handle-directory-file-name (directory)
2670 ;; "Like `directory-file-name' for tramp files."
2671 ;; (if (and (eq (aref directory (- (length directory) 1)) ?/)
2672 ;; (not (eq (aref directory (- (length directory) 2)) ?:)))
2673 ;; (substring directory 0 (- (length directory) 1))
2674 ;; directory))
2675
2676 ;; ;; Philippe Troin <phil@fifi.org>
2677 ;; (defun tramp-handle-directory-file-name (directory)
2678 ;; "Like `directory-file-name' for tramp files."
2679 ;; (with-parsed-tramp-file-name directory nil
2680 ;; (let ((directory-length-1 (1- (length directory))))
2681 ;; (save-match-data
2682 ;; (if (and (eq (aref directory directory-length-1) ?/)
2683 ;; (eq (string-match tramp-file-name-regexp directory) 0)
2684 ;; (/= (match-end 0) directory-length-1))
2685 ;; (substring directory 0 directory-length-1)
2686 ;; directory)))))
2687
2688 (defun tramp-handle-directory-file-name (directory)
2689 "Like `directory-file-name' for tramp files."
2690 ;; If localname component of filename is "/", leave it unchanged.
2691 ;; Otherwise, remove any trailing slash from localname component.
2692 ;; Method, host, etc, are unchanged. Does it make sense to try
2693 ;; to avoid parsing the filename?
2694 (with-parsed-tramp-file-name directory nil
2695 (if (and (not (zerop (length localname)))
2696 (eq (aref localname (1- (length localname))) ?/)
2697 (not (string= localname "/")))
2698 (substring directory 0 -1)
2699 directory)))
2700
2701 ;; Directory listings.
2702
2703 (defun tramp-handle-directory-files (directory
2704 &optional full match nosort files-only)
2705 "Like `directory-files' for tramp files."
2706 (with-parsed-tramp-file-name directory nil
2707 (let (result x)
2708 (save-excursion
2709 (tramp-barf-unless-okay
2710 multi-method method user host
2711 (concat "cd " (tramp-shell-quote-argument localname))
2712 nil
2713 'file-error
2714 "tramp-handle-directory-files: couldn't `cd %s'"
2715 (tramp-shell-quote-argument localname))
2716 (tramp-send-command
2717 multi-method method user host
2718 (concat (tramp-get-ls-command multi-method method user host)
2719 " -a | cat"))
2720 (tramp-wait-for-output)
2721 (goto-char (point-max))
2722 (while (zerop (forward-line -1))
2723 (setq x (buffer-substring (point)
2724 (tramp-line-end-position)))
2725 (when (or (not match) (string-match match x))
2726 (if full
2727 (push (concat (file-name-as-directory directory)
2728 x)
2729 result)
2730 (push x result))))
2731 (tramp-send-command multi-method method user host "cd")
2732 (tramp-wait-for-output)
2733 ;; Remove non-files or non-directories if necessary. Using
2734 ;; the remote shell for this would probably be way faster.
2735 ;; Maybe something could be adapted from
2736 ;; tramp-handle-file-name-all-completions.
2737 (when files-only
2738 (let ((temp (nreverse result))
2739 item)
2740 (setq result nil)
2741 (if (equal files-only t)
2742 ;; files only
2743 (while temp
2744 (setq item (pop temp))
2745 (when (file-regular-p item)
2746 (push item result)))
2747 ;; directories only
2748 (while temp
2749 (setq item (pop temp))
2750 (when (file-directory-p item)
2751 (push item result)))))))
2752 result)))
2753
2754 (defun tramp-handle-directory-files-and-attributes
2755 (directory &optional full match nosort id-format)
2756 "Like `directory-files-and-attributes' for tramp files."
2757 (when (tramp-handle-file-exists-p directory)
2758 (save-excursion
2759 (setq directory (tramp-handle-expand-file-name directory))
2760 (with-parsed-tramp-file-name directory nil
2761 (tramp-maybe-send-perl-script multi-method method user host
2762 tramp-perl-directory-files-and-attributes
2763 "tramp_directory_files_and_attributes")
2764 (tramp-send-command multi-method method user host
2765 (format "tramp_directory_files_and_attributes %s %s"
2766 (tramp-shell-quote-argument localname)
2767 (or id-format 'integer)))
2768 (tramp-wait-for-output)
2769 (let* ((root (cons nil (let ((object (read (current-buffer))))
2770 (when (stringp object)
2771 (error object))
2772 object)))
2773 (cell root))
2774 (while (cdr cell)
2775 (if (and match (not (string-match match (caadr cell))))
2776 ;; Remove from list
2777 (setcdr cell (cddr cell))
2778 ;; Include in list
2779 (setq cell (cdr cell))
2780 (let ((l (car cell)))
2781 (tramp-convert-file-attributes multi-method method user host
2782 (cdr l))
2783 ;; If FULL, make file name absolute
2784 (when full (setcar l (concat directory "/" (car l)))))))
2785 (if nosort
2786 (cdr root)
2787 (sort (cdr root) (lambda (x y) (string< (car x) (car y))))))))))
2788
2789 ;; This function should return "foo/" for directories and "bar" for
2790 ;; files. We use `ls -ad' to get a list of files (including
2791 ;; directories), and `find . -type d \! -name . -prune' to get a list
2792 ;; of directories.
2793 (defun tramp-handle-file-name-all-completions (filename directory)
2794 "Like `file-name-all-completions' for tramp files."
2795 (with-parsed-tramp-file-name directory nil
2796 (unless (save-match-data (string-match "/" filename))
2797 (let* ((nowild tramp-completion-without-shell-p)
2798 result)
2799 (save-excursion
2800 (tramp-barf-unless-okay
2801 multi-method method user host
2802 (format "cd %s" (tramp-shell-quote-argument localname))
2803 nil 'file-error
2804 "tramp-handle-file-name-all-completions: Couldn't `cd %s'"
2805 (tramp-shell-quote-argument localname))
2806
2807 ;; Get a list of directories and files, including reliably
2808 ;; tagging the directories with a trailing '/'. Because I
2809 ;; rock. --daniel@danann.net
2810 (tramp-send-command
2811 multi-method method user host
2812 (format (concat "%s -a %s 2>/dev/null | while read f; do "
2813 "if test -d \"$f\" 2>/dev/null; "
2814 "then echo \"$f/\"; else echo \"$f\"; fi; done")
2815 (tramp-get-ls-command multi-method method user host)
2816 (if (or nowild (zerop (length filename)))
2817 ""
2818 (format "-d %s*"
2819 (tramp-shell-quote-argument filename)))))
2820
2821 ;; Now grab the output.
2822 (tramp-wait-for-output)
2823 (goto-char (point-max))
2824 (while (zerop (forward-line -1))
2825 (push (buffer-substring (point)
2826 (tramp-line-end-position))
2827 result))
2828
2829 (tramp-send-command multi-method method user host "cd")
2830 (tramp-wait-for-output)
2831
2832 ;; Return the list.
2833 (if nowild
2834 (all-completions filename (mapcar 'list result))
2835 result))))))
2836
2837
2838 ;; The following isn't needed for Emacs 20 but for 19.34?
2839 (defun tramp-handle-file-name-completion (filename directory)
2840 "Like `file-name-completion' for tramp files."
2841 (unless (tramp-tramp-file-p directory)
2842 (error
2843 "tramp-handle-file-name-completion invoked on non-tramp directory `%s'"
2844 directory))
2845 (with-parsed-tramp-file-name directory nil
2846 (try-completion
2847 filename
2848 (mapcar (lambda (x) (cons x nil))
2849 (file-name-all-completions filename directory)))))
2850
2851 ;; cp, mv and ln
2852
2853 (defun tramp-handle-add-name-to-file
2854 (filename newname &optional ok-if-already-exists)
2855 "Like `add-name-to-file' for tramp files."
2856 (with-parsed-tramp-file-name filename v1
2857 (with-parsed-tramp-file-name newname v2
2858 (let ((ln (when v1 (tramp-get-remote-ln
2859 v1-multi-method v1-method v1-user v1-host))))
2860 (unless (and v1-method v2-method v1-user v2-user v1-host v2-host
2861 (equal v1-multi-method v2-multi-method)
2862 (equal v1-method v2-method)
2863 (equal v1-user v2-user)
2864 (equal v1-host v2-host))
2865 (error "add-name-to-file: %s"
2866 "only implemented for same method, same user, same host"))
2867 (when (and (not ok-if-already-exists)
2868 (file-exists-p newname)
2869 (not (numberp ok-if-already-exists))
2870 (y-or-n-p
2871 (format
2872 "File %s already exists; make it a new name anyway? "
2873 newname)))
2874 (error "add-name-to-file: file %s already exists" newname))
2875 (tramp-barf-unless-okay
2876 v1-multi-method v1-method v1-user v1-host
2877 (format "%s %s %s" ln (tramp-shell-quote-argument v1-localname)
2878 (tramp-shell-quote-argument v2-localname))
2879 nil 'file-error
2880 "error with add-name-to-file, see buffer `%s' for details"
2881 (buffer-name))))))
2882
2883 (defun tramp-handle-copy-file
2884 (filename newname &optional ok-if-already-exists keep-date)
2885 "Like `copy-file' for tramp files."
2886 ;; Check if both files are local -- invoke normal copy-file.
2887 ;; Otherwise, use tramp from local system.
2888 (setq filename (expand-file-name filename))
2889 (setq newname (expand-file-name newname))
2890 ;; At least one file a tramp file?
2891 (if (or (tramp-tramp-file-p filename)
2892 (tramp-tramp-file-p newname))
2893 (tramp-do-copy-or-rename-file
2894 'copy filename newname ok-if-already-exists keep-date)
2895 (tramp-run-real-handler
2896 'copy-file
2897 (list filename newname ok-if-already-exists keep-date))))
2898
2899 (defun tramp-handle-rename-file
2900 (filename newname &optional ok-if-already-exists)
2901 "Like `rename-file' for tramp files."
2902 ;; Check if both files are local -- invoke normal rename-file.
2903 ;; Otherwise, use tramp from local system.
2904 (setq filename (expand-file-name filename))
2905 (setq newname (expand-file-name newname))
2906 ;; At least one file a tramp file?
2907 (if (or (tramp-tramp-file-p filename)
2908 (tramp-tramp-file-p newname))
2909 (tramp-do-copy-or-rename-file
2910 'rename filename newname ok-if-already-exists)
2911 (tramp-run-real-handler 'rename-file
2912 (list filename newname ok-if-already-exists))))
2913
2914 (defun tramp-do-copy-or-rename-file
2915 (op filename newname &optional ok-if-already-exists keep-date)
2916 "Copy or rename a remote file.
2917 OP must be `copy' or `rename' and indicates the operation to perform.
2918 FILENAME specifies the file to copy or rename, NEWNAME is the name of
2919 the new file (for copy) or the new name of the file (for rename).
2920 OK-IF-ALREADY-EXISTS means don't barf if NEWNAME exists already.
2921 KEEP-DATE means to make sure that NEWNAME has the same timestamp
2922 as FILENAME.
2923
2924 This function is invoked by `tramp-handle-copy-file' and
2925 `tramp-handle-rename-file'. It is an error if OP is neither of `copy'
2926 and `rename'. FILENAME and NEWNAME must be absolute file names."
2927 (unless (memq op '(copy rename))
2928 (error "Unknown operation `%s', must be `copy' or `rename'" op))
2929 (unless ok-if-already-exists
2930 (when (file-exists-p newname)
2931 (signal 'file-already-exists
2932 (list newname))))
2933 (let ((t1 (tramp-tramp-file-p filename))
2934 (t2 (tramp-tramp-file-p newname))
2935 v1-multi-method v1-method v1-user v1-host v1-localname
2936 v2-multi-method v2-method v2-user v2-host v2-localname)
2937
2938 ;; Check which ones of source and target are Tramp files.
2939 ;; We cannot invoke `with-parsed-tramp-file-name';
2940 ;; it fails if the file isn't a Tramp file name.
2941 (if t1
2942 (with-parsed-tramp-file-name filename l
2943 (setq v1-multi-method l-multi-method
2944 v1-method l-method
2945 v1-user l-user
2946 v1-host l-host
2947 v1-localname l-localname))
2948 (setq v1-localname filename))
2949 (if t2
2950 (with-parsed-tramp-file-name newname l
2951 (setq v2-multi-method l-multi-method
2952 v2-method l-method
2953 v2-user l-user
2954 v2-host l-host
2955 v2-localname l-localname))
2956 (setq v2-localname newname))
2957
2958 (cond
2959 ;; Both are Tramp files.
2960 ((and t1 t2)
2961 (cond
2962 ;; Shortcut: if method, host, user are the same for both
2963 ;; files, we invoke `cp' or `mv' on the remote host
2964 ;; directly.
2965 ((and (equal v1-multi-method v2-multi-method)
2966 (equal v1-method v2-method)
2967 (equal v1-user v2-user)
2968 (equal v1-host v2-host))
2969 (tramp-do-copy-or-rename-file-directly
2970 op v1-multi-method v1-method v1-user v1-host
2971 v1-localname v2-localname keep-date))
2972 ;; If both source and target are Tramp files,
2973 ;; both are using the same copy-program, then we
2974 ;; can invoke rcp directly. Note that
2975 ;; default-directory should point to a local
2976 ;; directory if we want to invoke rcp.
2977 ((and (not v1-multi-method)
2978 (not v2-multi-method)
2979 (equal v1-method v2-method)
2980 (tramp-method-out-of-band-p
2981 v1-multi-method v1-method v1-user v1-host)
2982 (not (string-match "\\([^#]*\\)#\\(.*\\)" v1-host))
2983 (not (string-match "\\([^#]*\\)#\\(.*\\)" v2-host)))
2984 (tramp-do-copy-or-rename-file-out-of-band
2985 op filename newname keep-date))
2986 ;; No shortcut was possible. So we copy the
2987 ;; file first. If the operation was `rename', we go
2988 ;; back and delete the original file (if the copy was
2989 ;; successful). The approach is simple-minded: we
2990 ;; create a new buffer, insert the contents of the
2991 ;; source file into it, then write out the buffer to
2992 ;; the target file. The advantage is that it doesn't
2993 ;; matter which filename handlers are used for the
2994 ;; source and target file.
2995 (t
2996 (tramp-do-copy-or-rename-file-via-buffer
2997 op filename newname keep-date))))
2998
2999 ;; One file is a Tramp file, the other one is local.
3000 ((or t1 t2)
3001 ;; If the Tramp file has an out-of-band method, the corresponding
3002 ;; copy-program can be invoked.
3003 (if (and (not v1-multi-method)
3004 (not v2-multi-method)
3005 (or (tramp-method-out-of-band-p
3006 v1-multi-method v1-method v1-user v1-host)
3007 (tramp-method-out-of-band-p
3008 v2-multi-method v2-method v2-user v2-host)))
3009 (tramp-do-copy-or-rename-file-out-of-band
3010 op filename newname keep-date)
3011 ;; Use the generic method via a Tramp buffer.
3012 (tramp-do-copy-or-rename-file-via-buffer
3013 op filename newname keep-date)))
3014
3015 (t
3016 ;; One of them must be a Tramp file.
3017 (error "Tramp implementation says this cannot happen")))))
3018
3019 (defun tramp-do-copy-or-rename-file-via-buffer (op filename newname keep-date)
3020 "Use an Emacs buffer to copy or rename a file.
3021 First arg OP is either `copy' or `rename' and indicates the operation.
3022 FILENAME is the source file, NEWNAME the target file.
3023 KEEP-DATE is non-nil if NEWNAME should have the same timestamp as FILENAME."
3024 (let ((trampbuf (get-buffer-create "*tramp output*"))
3025 (modtime (nth 5 (file-attributes filename))))
3026 (when (and keep-date (or (null modtime) (equal modtime '(0 0))))
3027 (tramp-message
3028 1 (concat "Warning: cannot preserve file time stamp"
3029 " with inline copying across machines")))
3030 (save-excursion
3031 (set-buffer trampbuf) (erase-buffer)
3032 (insert-file-contents-literally filename)
3033 ;; We don't want the target file to be compressed, so we let-bind
3034 ;; `jka-compr-inhibit' to t.
3035 (let ((coding-system-for-write 'binary)
3036 (jka-compr-inhibit t))
3037 (write-region (point-min) (point-max) newname))
3038 ;; KEEP-DATE handling.
3039 (when keep-date
3040 (when (and (not (null modtime))
3041 (not (equal modtime '(0 0))))
3042 (tramp-touch newname modtime)))
3043 ;; Set the mode.
3044 (set-file-modes newname (file-modes filename)))
3045 ;; If the operation was `rename', delete the original file.
3046 (unless (eq op 'copy)
3047 (delete-file filename))))
3048
3049 (defun tramp-do-copy-or-rename-file-directly
3050 (op multi-method method user host localname1 localname2 keep-date)
3051 "Invokes `cp' or `mv' on the remote system.
3052 OP must be one of `copy' or `rename', indicating `cp' or `mv',
3053 respectively. METHOD, USER, and HOST specify the connection.
3054 LOCALNAME1 and LOCALNAME2 specify the two arguments of `cp' or `mv'.
3055 If KEEP-DATE is non-nil, preserve the time stamp when copying."
3056 ;; CCC: What happens to the timestamp when renaming?
3057 (let ((cmd (cond ((and (eq op 'copy) keep-date) "cp -f -p")
3058 ((eq op 'copy) "cp -f")
3059 ((eq op 'rename) "mv -f")
3060 (t (error
3061 "Unknown operation `%s', must be `copy' or `rename'"
3062 op)))))
3063 (save-excursion
3064 (tramp-send-command
3065 multi-method method user host
3066 (format "%s %s %s"
3067 cmd
3068 (tramp-shell-quote-argument localname1)
3069 (tramp-shell-quote-argument localname2)))
3070 (tramp-wait-for-output)
3071 (goto-char (point-min))
3072 (unless
3073 (or
3074 (and (eq op 'copy) keep-date
3075 ;; Mask cp -f error.
3076 (re-search-forward tramp-operation-not-permitted-regexp nil t))
3077 (zerop (tramp-send-command-and-check
3078 multi-method method user host nil nil)))
3079 (pop-to-buffer (current-buffer))
3080 (signal 'file-error
3081 (format "Copying directly failed, see buffer `%s' for details."
3082 (buffer-name)))))
3083 ;; Set the mode.
3084 ;; CCC: Maybe `chmod --reference=localname1 localname2' could be used
3085 ;; where available?
3086 (unless (or (eq op 'rename) keep-date)
3087 (set-file-modes
3088 (tramp-make-tramp-file-name multi-method method user host localname2)
3089 (file-modes
3090 (tramp-make-tramp-file-name
3091 multi-method method user host localname1))))))
3092
3093 (defun tramp-do-copy-or-rename-file-out-of-band (op filename newname keep-date)
3094 "Invoke rcp program to copy.
3095 One of FILENAME and NEWNAME must be a Tramp name, the other must
3096 be a local filename. The method used must be an out-of-band method."
3097 (let ((t1 (tramp-tramp-file-p filename))
3098 (t2 (tramp-tramp-file-p newname))
3099 v1-multi-method v1-method v1-user v1-host v1-localname
3100 v2-multi-method v2-method v2-user v2-host v2-localname
3101 multi-method method user host copy-program copy-args
3102 source target trampbuf)
3103
3104 ;; Check which ones of source and target are Tramp files.
3105 ;; We cannot invoke `with-parsed-tramp-file-name';
3106 ;; it fails if the file isn't a Tramp file name.
3107 (if t1
3108 (with-parsed-tramp-file-name filename l
3109 (setq v1-multi-method l-multi-method
3110 v1-method l-method
3111 v1-user l-user
3112 v1-host l-host
3113 v1-localname l-localname
3114 multi-method l-multi-method
3115 method (tramp-find-method
3116 v1-multi-method v1-method v1-user v1-host)
3117 user l-user
3118 host l-host
3119 copy-program (tramp-get-method-parameter
3120 v1-multi-method method
3121 v1-user v1-host 'tramp-copy-program)
3122 copy-args (tramp-get-method-parameter
3123 v1-multi-method method
3124 v1-user v1-host 'tramp-copy-args)))
3125 (setq v1-localname filename))
3126
3127 (if t2
3128 (with-parsed-tramp-file-name newname l
3129 (setq v2-multi-method l-multi-method
3130 v2-method l-method
3131 v2-user l-user
3132 v2-host l-host
3133 v2-localname l-localname
3134 multi-method l-multi-method
3135 method (tramp-find-method
3136 v2-multi-method v2-method v2-user v2-host)
3137 user l-user
3138 host l-host
3139 copy-program (tramp-get-method-parameter
3140 v2-multi-method method
3141 v2-user v2-host 'tramp-copy-program)
3142 copy-args (tramp-get-method-parameter
3143 v2-multi-method method
3144 v2-user v2-host 'tramp-copy-args)))
3145 (setq v2-localname newname))
3146
3147 ;; The following should be changed. We need a more general
3148 ;; mechanism to parse extra host args.
3149 (if (not t1)
3150 (setq source v1-localname)
3151 (when (string-match "\\([^#]*\\)#\\(.*\\)" v1-host)
3152 (setq copy-args (cons "-P" (cons (match-string 2 v1-host) copy-args)))
3153 (setq v1-host (match-string 1 v1-host)))
3154 (setq source
3155 (tramp-make-copy-program-file-name
3156 v1-user v1-host
3157 (tramp-shell-quote-argument v1-localname))))
3158
3159 (if (not t2)
3160 (setq target v2-localname)
3161 (when (string-match "\\([^#]*\\)#\\(.*\\)" v2-host)
3162 (setq copy-args (cons "-P" (cons (match-string 2 v2-host) copy-args)))
3163 (setq v2-host (match-string 1 v2-host)))
3164 (setq target
3165 (tramp-make-copy-program-file-name
3166 v2-user v2-host
3167 (tramp-shell-quote-argument v2-localname))))
3168
3169 ;; Handle keep-date argument
3170 (when keep-date
3171 (if t1
3172 (setq copy-args
3173 (cons (tramp-get-method-parameter
3174 v1-multi-method method
3175 v1-user v1-host 'tramp-copy-keep-date-arg)
3176 copy-args))
3177 (setq copy-args
3178 (cons (tramp-get-method-parameter
3179 v2-multi-method method
3180 v2-user v2-host 'tramp-copy-keep-date-arg)
3181 copy-args))))
3182
3183 (setq copy-args (append copy-args (list source target))
3184 trampbuf (generate-new-buffer
3185 (tramp-buffer-name multi-method method user host)))
3186
3187 ;; Use an asynchronous process. By this, password can be handled.
3188 (save-excursion
3189
3190 ;; Check for program.
3191 (when (and (fboundp 'executable-find)
3192 (not (executable-find copy-program)))
3193 (error "Cannot find copy program: %s" copy-program))
3194
3195 (set-buffer trampbuf)
3196 (setq tramp-current-multi-method multi-method
3197 tramp-current-method method
3198 tramp-current-user user
3199 tramp-current-host host)
3200 (message "Transferring %s to %s..." filename newname)
3201
3202 ;; Use rcp-like program for file transfer.
3203 (let ((p (apply 'start-process (buffer-name trampbuf) trampbuf
3204 copy-program copy-args)))
3205 (tramp-set-process-query-on-exit-flag p nil)
3206 (tramp-process-actions p multi-method method user host
3207 tramp-actions-copy-out-of-band))
3208 (kill-buffer trampbuf)
3209 (message "Transferring %s to %s...done" filename newname)
3210
3211 ;; Set the mode.
3212 (unless keep-date
3213 (set-file-modes newname (file-modes filename))))
3214
3215 ;; If the operation was `rename', delete the original file.
3216 (unless (eq op 'copy)
3217 (delete-file filename))))
3218
3219 ;; mkdir
3220 (defun tramp-handle-make-directory (dir &optional parents)
3221 "Like `make-directory' for tramp files."
3222 (setq dir (expand-file-name dir))
3223 (with-parsed-tramp-file-name dir nil
3224 (save-excursion
3225 (tramp-barf-unless-okay
3226 multi-method method user host
3227 (format " %s %s"
3228 (if parents "mkdir -p" "mkdir")
3229 (tramp-shell-quote-argument localname))
3230 nil 'file-error
3231 "Couldn't make directory %s" dir))))
3232
3233 ;; CCC error checking?
3234 (defun tramp-handle-delete-directory (directory)
3235 "Like `delete-directory' for tramp files."
3236 (setq directory (expand-file-name directory))
3237 (with-parsed-tramp-file-name directory nil
3238 (save-excursion
3239 (tramp-send-command
3240 multi-method method user host
3241 (format "rmdir %s ; echo ok"
3242 (tramp-shell-quote-argument localname)))
3243 (tramp-wait-for-output))))
3244
3245 (defun tramp-handle-delete-file (filename)
3246 "Like `delete-file' for tramp files."
3247 (setq filename (expand-file-name filename))
3248 (with-parsed-tramp-file-name filename nil
3249 (save-excursion
3250 (unless (zerop (tramp-send-command-and-check
3251 multi-method method user host
3252 (format "rm -f %s"
3253 (tramp-shell-quote-argument localname))))
3254 (signal 'file-error "Couldn't delete Tramp file")))))
3255
3256 ;; Dired.
3257
3258 ;; CCC: This does not seem to be enough. Something dies when
3259 ;; we try and delete two directories under TRAMP :/
3260 (defun tramp-handle-dired-recursive-delete-directory (filename)
3261 "Recursively delete the directory given.
3262 This is like `dired-recursive-delete-directory' for tramp files."
3263 (with-parsed-tramp-file-name filename nil
3264 ;; run a shell command 'rm -r <localname>'
3265 ;; Code shamelessly stolen for the dired implementation and, um, hacked :)
3266 (or (file-exists-p filename)
3267 (signal
3268 'file-error
3269 (list "Removing old file name" "no such directory" filename)))
3270 ;; Which is better, -r or -R? (-r works for me <daniel@danann.net>)
3271 (tramp-send-command multi-method method user host
3272 (format "rm -r %s" (tramp-shell-quote-argument localname)))
3273 ;; Wait for the remote system to return to us...
3274 ;; This might take a while, allow it plenty of time.
3275 (tramp-wait-for-output 120)
3276 ;; Make sure that it worked...
3277 (and (file-exists-p filename)
3278 (error "Failed to recursively delete %s" filename))))
3279
3280 (defun tramp-handle-dired-call-process (program discard &rest arguments)
3281 "Like `dired-call-process' for tramp files."
3282 (with-parsed-tramp-file-name default-directory nil
3283 (save-excursion
3284 (tramp-barf-unless-okay
3285 multi-method method user host
3286 (format "cd %s" (tramp-shell-quote-argument localname))
3287 nil 'file-error
3288 "tramp-handle-dired-call-process: Couldn't `cd %s'"
3289 (tramp-shell-quote-argument localname))
3290 (tramp-send-command
3291 multi-method method user host
3292 (mapconcat #'tramp-shell-quote-argument (cons program arguments) " "))
3293 (tramp-wait-for-output))
3294 (unless discard
3295 ;; We cannot use `insert-buffer' because the tramp buffer
3296 ;; changes its contents before insertion due to calling
3297 ;; `expand-file' and alike.
3298 (insert
3299 (with-current-buffer
3300 (tramp-get-buffer multi-method method user host)
3301 (buffer-string))))
3302 (save-excursion
3303 (prog1
3304 (tramp-send-command-and-check multi-method method user host nil)
3305 (tramp-send-command multi-method method user host "cd")
3306 (tramp-wait-for-output)))))
3307
3308 (defun tramp-handle-dired-compress-file (file &rest ok-flag)
3309 "Like `dired-compress-file' for tramp files."
3310 ;; OK-FLAG is valid for XEmacs only, but not implemented.
3311 ;; Code stolen mainly from dired-aux.el.
3312 (with-parsed-tramp-file-name file nil
3313 (save-excursion
3314 (let ((suffixes
3315 (if (not (featurep 'xemacs))
3316 ;; Emacs case
3317 (symbol-value 'dired-compress-file-suffixes)
3318 ;; XEmacs has `dired-compression-method-alist', which is
3319 ;; transformed into `dired-compress-file-suffixes' structure.
3320 (mapcar
3321 '(lambda (x)
3322 (list (concat (regexp-quote (nth 1 x)) "\\'")
3323 nil
3324 (mapconcat 'identity (nth 3 x) " ")))
3325 (symbol-value 'dired-compression-method-alist))))
3326 suffix)
3327 ;; See if any suffix rule matches this file name.
3328 (while suffixes
3329 (let (case-fold-search)
3330 (if (string-match (car (car suffixes)) localname)
3331 (setq suffix (car suffixes) suffixes nil))
3332 (setq suffixes (cdr suffixes))))
3333
3334 (cond ((file-symlink-p file)
3335 nil)
3336 ((and suffix (nth 2 suffix))
3337 ;; We found an uncompression rule.
3338 (message "Uncompressing %s..." file)
3339 (when (zerop (tramp-send-command-and-check
3340 multi-method method user host
3341 (concat (nth 2 suffix) " " localname)))
3342 (message "Uncompressing %s...done" file)
3343 ;; `dired-remove-file' is not defined in XEmacs
3344 (funcall (symbol-function 'dired-remove-file) file)
3345 (string-match (car suffix) file)
3346 (concat (substring file 0 (match-beginning 0)))))
3347 (t
3348 ;; We don't recognize the file as compressed, so compress it.
3349 ;; Try gzip.
3350 (message "Compressing %s..." file)
3351 (when (zerop (tramp-send-command-and-check
3352 multi-method method user host
3353 (concat "gzip -f " localname)))
3354 (message "Compressing %s...done" file)
3355 ;; `dired-remove-file' is not defined in XEmacs
3356 (funcall (symbol-function 'dired-remove-file) file)
3357 (cond ((file-exists-p (concat file ".gz"))
3358 (concat file ".gz"))
3359 ((file-exists-p (concat file ".z"))
3360 (concat file ".z"))
3361 (t nil)))))))))
3362
3363 ;; Pacify byte-compiler. The function is needed on XEmacs only. I'm
3364 ;; not sure at all that this is the right way to do it, but let's hope
3365 ;; it works for now, and wait for a guru to point out the Right Way to
3366 ;; achieve this.
3367 ;;(eval-when-compile
3368 ;; (unless (fboundp 'dired-insert-set-properties)
3369 ;; (fset 'dired-insert-set-properties 'ignore)))
3370 ;; Gerd suggests this:
3371 (eval-when-compile (require 'dired))
3372 ;; Note that dired is required at run-time, too, when it is needed.
3373 ;; It is only needed on XEmacs for the function
3374 ;; `dired-insert-set-properties'.
3375
3376 (defun tramp-handle-insert-directory
3377 (filename switches &optional wildcard full-directory-p)
3378 "Like `insert-directory' for tramp files."
3379 (if (and (boundp 'ls-lisp-use-insert-directory-program)
3380 (not (symbol-value 'ls-lisp-use-insert-directory-program)))
3381 (tramp-run-real-handler 'insert-directory
3382 (list filename switches wildcard full-directory-p))
3383 ;; For the moment, we assume that the remote "ls" program does not
3384 ;; grok "--dired". In the future, we should detect this on
3385 ;; connection setup.
3386 (when (string-match "^--dired\\s-+" switches)
3387 (setq switches (replace-match "" nil t switches)))
3388 (setq filename (expand-file-name filename))
3389 (with-parsed-tramp-file-name filename nil
3390 (tramp-message-for-buffer
3391 multi-method method user host 10
3392 "Inserting directory `ls %s %s', wildcard %s, fulldir %s"
3393 switches filename (if wildcard "yes" "no")
3394 (if full-directory-p "yes" "no"))
3395 (when wildcard
3396 (setq wildcard (file-name-nondirectory localname))
3397 (setq localname (file-name-directory localname)))
3398 (when (listp switches)
3399 (setq switches (mapconcat 'identity switches " ")))
3400 (unless full-directory-p
3401 (setq switches (concat "-d " switches)))
3402 (when wildcard
3403 (setq switches (concat switches " " wildcard)))
3404 (save-excursion
3405 ;; If `full-directory-p', we just say `ls -l FILENAME'.
3406 ;; Else we chdir to the parent directory, then say `ls -ld BASENAME'.
3407 (if full-directory-p
3408 (tramp-send-command
3409 multi-method method user host
3410 (format "%s %s %s"
3411 (tramp-get-ls-command multi-method method user host)
3412 switches
3413 (if wildcard
3414 localname
3415 (tramp-shell-quote-argument (concat localname ".")))))
3416 (tramp-barf-unless-okay
3417 multi-method method user host
3418 (format "cd %s" (tramp-shell-quote-argument
3419 (file-name-directory localname)))
3420 nil 'file-error
3421 "Couldn't `cd %s'"
3422 (tramp-shell-quote-argument (file-name-directory localname)))
3423 (tramp-send-command
3424 multi-method method user host
3425 (format "%s %s %s"
3426 (tramp-get-ls-command multi-method method user host)
3427 switches
3428 (if wildcard
3429 localname
3430 (if (zerop (length (file-name-nondirectory localname)))
3431 ""
3432 (tramp-shell-quote-argument
3433 (file-name-nondirectory localname)))))))
3434 (sit-for 1) ;needed for rsh but not ssh?
3435 (tramp-wait-for-output))
3436 ;; The following let-binding is used by code that's commented
3437 ;; out. Let's leave the let-binding in for a while to see
3438 ;; that the commented-out code is really not needed. Commenting-out
3439 ;; happened on 2003-03-13.
3440 (let ((old-pos (point)))
3441 ;; We cannot use `insert-buffer' because the tramp buffer
3442 ;; changes its contents before insertion due to calling
3443 ;; `expand-file' and alike.
3444 (insert
3445 (with-current-buffer
3446 (tramp-get-buffer multi-method method user host)
3447 (buffer-string)))
3448 ;; On XEmacs, we want to call (exchange-point-and-mark t), but
3449 ;; that doesn't exist on Emacs, so we use this workaround instead.
3450 ;; Since zmacs-region-stays doesn't exist in Emacs, this ought to
3451 ;; be safe. Thanks to Daniel Pittman <daniel@danann.net>.
3452 ;; (let ((zmacs-region-stays t))
3453 ;; (exchange-point-and-mark))
3454 (save-excursion
3455 (tramp-send-command multi-method method user host "cd")
3456 (tramp-wait-for-output))
3457 ;; For the time being, the XEmacs kludge is commented out.
3458 ;; Please test it on various XEmacs versions to see if it works.
3459 ;; ;; Another XEmacs specialty follows. What's the right way to do
3460 ;; ;; it?
3461 ;; (when (and (featurep 'xemacs)
3462 ;; (eq major-mode 'dired-mode))
3463 ;; (save-excursion
3464 ;; (require 'dired)
3465 ;; (dired-insert-set-properties old-pos (point))))
3466 ))))
3467
3468 ;; Continuation of kluge to pacify byte-compiler.
3469 ;;(eval-when-compile
3470 ;; (when (eq (symbol-function 'dired-insert-set-properties) 'ignore)
3471 ;; (fmakunbound 'dired-insert-set-properties)))
3472
3473 ;; CCC is this the right thing to do?
3474 (defun tramp-handle-unhandled-file-name-directory (filename)
3475 "Like `unhandled-file-name-directory' for tramp files."
3476 (with-parsed-tramp-file-name filename nil
3477 (expand-file-name "~/")))
3478
3479 ;; Canonicalization of file names.
3480
3481 (defun tramp-drop-volume-letter (name)
3482 "Cut off unnecessary drive letter from file NAME.
3483 The function `tramp-handle-expand-file-name' calls `expand-file-name'
3484 locally on a remote file name. When the local system is a W32 system
3485 but the remote system is Unix, this introduces a superfluous drive
3486 letter into the file name. This function removes it.
3487
3488 Doesn't do anything if the NAME does not start with a drive letter."
3489 (if (and (> (length name) 1)
3490 (char-equal (aref name 1) ?:)
3491 (let ((c1 (aref name 0)))
3492 (or (and (>= c1 ?A) (<= c1 ?Z))
3493 (and (>= c1 ?a) (<= c1 ?z)))))
3494 (substring name 2)
3495 name))
3496
3497 (defun tramp-handle-expand-file-name (name &optional dir)
3498 "Like `expand-file-name' for tramp files.
3499 If the localname part of the given filename starts with \"/../\" then
3500 the result will be a local, non-Tramp, filename."
3501 ;; If DIR is not given, use DEFAULT-DIRECTORY or "/".
3502 (setq dir (or dir default-directory "/"))
3503 ;; Unless NAME is absolute, concat DIR and NAME.
3504 (unless (file-name-absolute-p name)
3505 (setq name (concat (file-name-as-directory dir) name)))
3506 ;; If NAME is not a tramp file, run the real handler
3507 (if (not (tramp-tramp-file-p name))
3508 (tramp-run-real-handler 'expand-file-name
3509 (list name nil))
3510 ;; Dissect NAME.
3511 (with-parsed-tramp-file-name name nil
3512 (unless (file-name-absolute-p localname)
3513 (setq localname (concat "~/" localname)))
3514 (save-excursion
3515 ;; Tilde expansion if necessary. This needs a shell which
3516 ;; groks tilde expansion! The function `tramp-find-shell' is
3517 ;; supposed to find such a shell on the remote host. Please
3518 ;; tell me about it when this doesn't work on your system.
3519 (when (string-match "\\`\\(~[^/]*\\)\\(.*\\)\\'" localname)
3520 (let ((uname (match-string 1 localname))
3521 (fname (match-string 2 localname)))
3522 ;; We cannot simply apply "~/", because under sudo "~/" is
3523 ;; expanded to the local user home directory but to the
3524 ;; root home directory. On the other hand, using always
3525 ;; the default user name for tilde expansion is not
3526 ;; appropriate either, because ssh and companions might
3527 ;; use a user name from the config file.
3528 (when (and (string-equal uname "~")
3529 (string-match
3530 "\\`su\\(do\\)?\\'"
3531 (tramp-find-method multi-method method user host)))
3532 (setq uname (concat uname (or user "root"))))
3533 ;; CCC fanatic error checking?
3534 (set-buffer (tramp-get-buffer multi-method method user host))
3535 (erase-buffer)
3536 (tramp-send-command
3537 multi-method method user host
3538 (format "cd %s; pwd" uname)
3539 t)
3540 (tramp-wait-for-output)
3541 (goto-char (point-min))
3542 (setq uname (buffer-substring (point) (tramp-line-end-position)))
3543 (setq localname (concat uname fname))
3544 (erase-buffer)))
3545 ;; There might be a double slash, for example when "~/"
3546 ;; expands to "/". Remove this.
3547 (while (string-match "//" localname)
3548 (setq localname (replace-match "/" t t localname)))
3549 ;; No tilde characters in file name, do normal
3550 ;; expand-file-name (this does "/./" and "/../"). We bind
3551 ;; directory-sep-char here for XEmacs on Windows, which would
3552 ;; otherwise use backslash. `default-directory' is bound to
3553 ;; "/", because on Windows there would be problems with UNC
3554 ;; shares or Cygwin mounts.
3555 (tramp-let-maybe directory-sep-char ?/
3556 (let ((default-directory "/"))
3557 (tramp-make-tramp-file-name
3558 multi-method (or method (tramp-find-default-method user host))
3559 user host
3560 (tramp-drop-volume-letter
3561 (tramp-run-real-handler 'expand-file-name
3562 (list localname))))))))))
3563
3564 ;; old version follows. it uses ".." to cross file handler
3565 ;; boundaries.
3566 ;; ;; Look if localname starts with "/../" construct. If this is
3567 ;; ;; the case, then we return a local name instead of a remote name.
3568 ;; (if (string-match "^/\\.\\./" localname)
3569 ;; (expand-file-name (substring localname 3))
3570 ;; ;; No tilde characters in file name, do normal
3571 ;; ;; expand-file-name (this does "/./" and "/../"). We bind
3572 ;; ;; directory-sep-char here for XEmacs on Windows, which
3573 ;; ;; would otherwise use backslash.
3574 ;; (let ((directory-sep-char ?/))
3575 ;; (tramp-make-tramp-file-name
3576 ;; multi-method method user host
3577 ;; (tramp-drop-volume-letter
3578 ;; (tramp-run-real-handler 'expand-file-name
3579 ;; (list localname))))))))))
3580
3581 ;; Remote commands.
3582
3583 (defvar tramp-async-proc nil
3584 "Global variable keeping asynchronous process object.
3585 Used in `tramp-handle-shell-command'")
3586
3587 (defvar tramp-display-shell-command-buffer t
3588 "Whether to display output buffer of `shell-command'.
3589 This is necessary for handling DISPLAY of `process-file'.")
3590
3591 (defun tramp-handle-shell-command (command &optional output-buffer error-buffer)
3592 "Like `shell-command' for tramp files.
3593 This will break if COMMAND prints a newline, followed by the value of
3594 `tramp-end-of-output', followed by another newline."
3595 ;; Asynchronous processes are far from being perfect. But it works at least
3596 ;; for `find-grep-dired' and `find-name-dired' in Emacs 22.
3597 (if (tramp-tramp-file-p default-directory)
3598 (with-parsed-tramp-file-name default-directory nil
3599 (let ((asynchronous (string-match "[ \t]*&[ \t]*\\'" command))
3600 status)
3601 (unless output-buffer
3602 (setq output-buffer
3603 (get-buffer-create
3604 (if asynchronous
3605 "*Async Shell Command*"
3606 "*Shell Command Output*")))
3607 (set-buffer output-buffer)
3608 (erase-buffer))
3609 (unless (bufferp output-buffer)
3610 (setq output-buffer (current-buffer)))
3611 (set-buffer output-buffer)
3612 ;; Tramp doesn't handle the asynchronous case by an asynchronous
3613 ;; process. Instead of, another asynchronous process is opened
3614 ;; which gets the output of the (synchronous) Tramp process
3615 ;; via process-filter. ERROR-BUFFER is disabled.
3616 (when asynchronous
3617 (setq command (substring command 0 (match-beginning 0))
3618 error-buffer nil
3619 tramp-async-proc (start-process (buffer-name output-buffer)
3620 output-buffer "cat")))
3621 (save-excursion
3622 (tramp-barf-unless-okay
3623 multi-method method user host
3624 (format "cd %s" (tramp-shell-quote-argument localname))
3625 nil 'file-error
3626 "tramp-handle-shell-command: Couldn't `cd %s'"
3627 (tramp-shell-quote-argument localname))
3628 ;; Define the process filter
3629 (when asynchronous
3630 (set-process-filter
3631 (get-buffer-process
3632 (tramp-get-buffer multi-method method user host))
3633 '(lambda (process string)
3634 ;; Write the output into the Tramp Process
3635 (save-current-buffer
3636 (set-buffer (process-buffer process))
3637 (goto-char (point-max))
3638 (insert string))
3639 ;; Hand-over output to asynchronous process.
3640 (let ((end
3641 (string-match
3642 (regexp-quote tramp-end-of-output) string)))
3643 (when end
3644 (setq string
3645 (substring string 0 (1- (match-beginning 0)))))
3646 (process-send-string tramp-async-proc string)
3647 (when end
3648 (set-process-filter process nil)
3649 (process-send-eof tramp-async-proc))))))
3650 ;; Send the command
3651 (tramp-send-command
3652 multi-method method user host
3653 (if error-buffer
3654 (format "( %s ) 2>/tmp/tramp.$$.err; tramp_old_status=$?"
3655 command)
3656 (format "%s; tramp_old_status=$?" command)))
3657 (unless asynchronous
3658 (tramp-wait-for-output)))
3659 (unless asynchronous
3660 ;; We cannot use `insert-buffer' because the tramp buffer
3661 ;; changes its contents before insertion due to calling
3662 ;; `expand-file' and alike.
3663 (insert
3664 (with-current-buffer
3665 (tramp-get-buffer multi-method method user host)
3666 (buffer-string))))
3667 (when error-buffer
3668 (save-excursion
3669 (unless (bufferp error-buffer)
3670 (setq error-buffer (get-buffer-create error-buffer)))
3671 (tramp-send-command
3672 multi-method method user host
3673 "cat /tmp/tramp.$$.err")
3674 (tramp-wait-for-output)
3675 (set-buffer error-buffer)
3676 ;; Same comment as above
3677 (insert
3678 (with-current-buffer
3679 (tramp-get-buffer multi-method method user host)
3680 (buffer-string)))
3681 (tramp-send-command-and-check
3682 multi-method method user host "rm -f /tmp/tramp.$$.err")))
3683 (save-excursion
3684 (tramp-send-command multi-method method user host "cd")
3685 (unless asynchronous
3686 (tramp-wait-for-output))
3687 (tramp-send-command
3688 multi-method method user host
3689 (concat "tramp_set_exit_status $tramp_old_status;"
3690 " echo tramp_exit_status $?"))
3691 (unless asynchronous
3692 (tramp-wait-for-output)
3693 (goto-char (point-max))
3694 (unless (search-backward "tramp_exit_status " nil t)
3695 (error "Couldn't find exit status of `%s'" command))
3696 (skip-chars-forward "^ ")
3697 (setq status (read (current-buffer)))))
3698 (unless (zerop (buffer-size))
3699 (when tramp-display-shell-command-buffer
3700 (display-buffer output-buffer)))
3701 status))
3702 ;; The following is only executed if something strange was
3703 ;; happening. Emit a helpful message and do it anyway.
3704 (message "tramp-handle-shell-command called with non-tramp directory: `%s'"
3705 default-directory)
3706 (tramp-run-real-handler 'shell-command
3707 (list command output-buffer error-buffer))))
3708
3709 (defun tramp-handle-process-file (program &optional infile buffer display &rest args)
3710 "Like `process-file' for Tramp files."
3711 (when infile (error "Implementation does not handle input from file"))
3712 (when (and (numberp buffer) (zerop buffer))
3713 (error "Implementation does not handle immediate return"))
3714 (when (consp buffer) (error "Implementation does not handle error files"))
3715 (let ((tramp-display-shell-command-buffer display))
3716 (shell-command
3717 (mapconcat 'tramp-shell-quote-argument (cons program args) " ")
3718 buffer)))
3719
3720 ;; File Editing.
3721
3722 (defsubst tramp-make-temp-file ()
3723 (funcall (if (fboundp 'make-temp-file) 'make-temp-file 'make-temp-name)
3724 (expand-file-name tramp-temp-name-prefix
3725 (tramp-temporary-file-directory))))
3726
3727 (defun tramp-handle-file-local-copy (filename)
3728 "Like `file-local-copy' for tramp files."
3729 (with-parsed-tramp-file-name filename nil
3730 (let ((tramp-buf (tramp-get-buffer multi-method method user host))
3731 ;; We used to bind the following as late as possible.
3732 ;; loc-enc and loc-dec were bound directly before the if
3733 ;; statement that checks them. But the functions
3734 ;; tramp-get-* might invoke the "are you awake" check in
3735 ;; tramp-maybe-open-connection, which is an unfortunate time
3736 ;; since we rely on the buffer contents at that spot.
3737 (rem-enc (tramp-get-remote-encoding multi-method method user host))
3738 (rem-dec (tramp-get-remote-decoding multi-method method user host))
3739 (loc-enc (tramp-get-local-encoding multi-method method user host))
3740 (loc-dec (tramp-get-local-decoding multi-method method user host))
3741 tmpfil)
3742 (unless (file-exists-p filename)
3743 (error "Cannot make local copy of non-existing file `%s'"
3744 filename))
3745 (setq tmpfil (tramp-make-temp-file))
3746
3747 (cond ((tramp-method-out-of-band-p multi-method method user host)
3748 ;; `copy-file' handles out-of-band methods
3749 (copy-file filename tmpfil t t))
3750
3751 ((and rem-enc rem-dec)
3752 ;; Use inline encoding for file transfer.
3753 (save-excursion
3754 ;; Following line for setting tramp-current-method,
3755 ;; tramp-current-user, tramp-current-host.
3756 (set-buffer tramp-buf)
3757 (tramp-message 5 "Encoding remote file %s..." filename)
3758 (tramp-barf-unless-okay
3759 multi-method method user host
3760 (concat rem-enc " < " (tramp-shell-quote-argument localname))
3761 nil 'file-error
3762 "Encoding remote file failed, see buffer `%s' for details"
3763 tramp-buf)
3764 ;; Remove trailing status code
3765 (goto-char (point-max))
3766 (delete-region (point) (progn (forward-line -1) (point)))
3767
3768 (tramp-message 5 "Decoding remote file %s..." filename)
3769
3770 ;; Here is where loc-enc and loc-dec used to be let-bound.
3771 (if (and (symbolp loc-dec) (fboundp loc-dec))
3772 ;; If local decoding is a function, we call it.
3773 (let ((tmpbuf (get-buffer-create " *tramp tmp*")))
3774 (set-buffer tmpbuf)
3775 (erase-buffer)
3776 (insert-buffer-substring tramp-buf)
3777 (tramp-message-for-buffer
3778 multi-method method user host
3779 6 "Decoding remote file %s with function %s..."
3780 filename loc-dec)
3781 (set-buffer tmpbuf)
3782 ;; Douglas Gray Stephens <DGrayStephens@slb.com>
3783 ;; says that we need to strip tramp_exit_status
3784 ;; line from the output here. Go to point-max,
3785 ;; search backward for tramp_exit_status, delete
3786 ;; between point and point-max if found.
3787 (let ((coding-system-for-write 'binary))
3788 (funcall loc-dec (point-min) (point-max))
3789 (write-region (point-min) (point-max) tmpfil))
3790 (kill-buffer tmpbuf))
3791 ;; If tramp-decoding-function is not defined for this
3792 ;; method, we invoke tramp-decoding-command instead.
3793 (let ((tmpfil2 (tramp-make-temp-file)))
3794 (write-region (point-min) (point-max) tmpfil2)
3795 (tramp-message
3796 6 "Decoding remote file %s with command %s..."
3797 filename loc-dec)
3798 (tramp-call-local-coding-command
3799 loc-dec tmpfil2 tmpfil)
3800 (delete-file tmpfil2)))
3801 (tramp-message-for-buffer
3802 multi-method method user host
3803 5 "Decoding remote file %s...done" filename)
3804 ;; Set proper permissions.
3805 (set-file-modes tmpfil (file-modes filename))))
3806
3807 (t (error "Wrong method specification for `%s'" method)))
3808 tmpfil)))
3809
3810 (defun tramp-handle-file-remote-p (filename)
3811 "Like `file-remote-p' for tramp files."
3812 (when (tramp-tramp-file-p filename)
3813 (with-parsed-tramp-file-name filename nil
3814 (make-tramp-file-name
3815 :multi-method multi-method
3816 :method method
3817 :user user
3818 :host host
3819 :localname ""))))
3820
3821 (defun tramp-handle-insert-file-contents
3822 (filename &optional visit beg end replace)
3823 "Like `insert-file-contents' for tramp files."
3824 (barf-if-buffer-read-only)
3825 (setq filename (expand-file-name filename))
3826 (with-parsed-tramp-file-name filename nil
3827 (if (not (file-exists-p filename))
3828 (progn
3829 (when visit
3830 (setq buffer-file-name filename)
3831 (set-visited-file-modtime)
3832 (set-buffer-modified-p nil))
3833 (signal 'file-error
3834 (format "File `%s' not found on remote host" filename))
3835 (list (expand-file-name filename) 0))
3836 ;; `insert-file-contents-literally' takes care to avoid calling
3837 ;; jka-compr. By let-binding inhibit-file-name-operation, we
3838 ;; propagate that care to the file-local-copy operation.
3839 (let ((local-copy
3840 (let ((inhibit-file-name-operation
3841 (when (eq inhibit-file-name-operation
3842 'insert-file-contents)
3843 'file-local-copy)))
3844 (file-local-copy filename)))
3845 coding-system-used result)
3846 (when visit
3847 (setq buffer-file-name filename)
3848 (set-visited-file-modtime)
3849 (set-buffer-modified-p nil))
3850 (tramp-message-for-buffer
3851 multi-method method user host
3852 9 "Inserting local temp file `%s'..." local-copy)
3853 (setq result (insert-file-contents local-copy nil beg end replace))
3854 ;; Now `last-coding-system-used' has right value. Remember it.
3855 (when (boundp 'last-coding-system-used)
3856 (setq coding-system-used (symbol-value 'last-coding-system-used)))
3857 (tramp-message-for-buffer
3858 multi-method method user host
3859 9 "Inserting local temp file `%s'...done" local-copy)
3860 (delete-file local-copy)
3861 (when (boundp 'last-coding-system-used)
3862 (set 'last-coding-system-used coding-system-used))
3863 (list (expand-file-name filename)
3864 (second result))))))
3865
3866
3867 (defun tramp-handle-find-backup-file-name (filename)
3868 "Like `find-backup-file-name' for tramp files."
3869 (with-parsed-tramp-file-name filename nil
3870 ;; We set both variables. It doesn't matter whether it is
3871 ;; Emacs or XEmacs
3872 (let ((backup-directory-alist
3873 ;; Emacs case
3874 (when (boundp 'backup-directory-alist)
3875 (if (boundp 'tramp-backup-directory-alist)
3876 (mapcar
3877 '(lambda (x)
3878 (cons
3879 (car x)
3880 (if (and (stringp (cdr x))
3881 (file-name-absolute-p (cdr x))
3882 (not (tramp-file-name-p (cdr x))))
3883 (tramp-make-tramp-file-name
3884 multi-method method user host (cdr x))
3885 (cdr x))))
3886 (symbol-value 'tramp-backup-directory-alist))
3887 (symbol-value 'backup-directory-alist))))
3888
3889 (bkup-backup-directory-info
3890 ;; XEmacs case
3891 (when (boundp 'bkup-backup-directory-info)
3892 (if (boundp 'tramp-bkup-backup-directory-info)
3893 (mapcar
3894 '(lambda (x)
3895 (nconc
3896 (list (car x))
3897 (list
3898 (if (and (stringp (car (cdr x)))
3899 (file-name-absolute-p (car (cdr x)))
3900 (not (tramp-file-name-p (car (cdr x)))))
3901 (tramp-make-tramp-file-name
3902 multi-method method user host (car (cdr x)))
3903 (car (cdr x))))
3904 (cdr (cdr x))))
3905 (symbol-value 'tramp-bkup-backup-directory-info))
3906 (symbol-value 'bkup-backup-directory-info)))))
3907
3908 (tramp-run-real-handler 'find-backup-file-name (list filename)))))
3909
3910 (defun tramp-handle-make-auto-save-file-name ()
3911 "Like `make-auto-save-file-name' for tramp files.
3912 Returns a file name in `tramp-auto-save-directory' for autosaving this file."
3913 (when tramp-auto-save-directory
3914 (unless (file-exists-p tramp-auto-save-directory)
3915 (make-directory tramp-auto-save-directory t)))
3916 ;; jka-compr doesn't like auto-saving, so by appending "~" to the
3917 ;; file name we make sure that jka-compr isn't used for the
3918 ;; auto-save file.
3919 (let ((buffer-file-name
3920 (if tramp-auto-save-directory
3921 (expand-file-name
3922 (tramp-subst-strs-in-string
3923 '(("_" . "|")
3924 ("/" . "_a")
3925 (":" . "_b")
3926 ("|" . "__")
3927 ("[" . "_l")
3928 ("]" . "_r"))
3929 (buffer-file-name))
3930 tramp-auto-save-directory)
3931 (buffer-file-name))))
3932 ;; Run plain `make-auto-save-file-name'. There might be an advice when
3933 ;; it is not a magic file name operation (since Emacs 22).
3934 ;; We must deactivate it temporarily.
3935 (if (not (ad-is-active 'make-auto-save-file-name))
3936 (tramp-run-real-handler
3937 'make-auto-save-file-name nil)
3938 ;; else
3939 (ad-deactivate 'make-auto-save-file-name)
3940 (prog1
3941 (tramp-run-real-handler
3942 'make-auto-save-file-name nil)
3943 (ad-activate 'make-auto-save-file-name)))))
3944
3945
3946 ;; CCC grok APPEND, LOCKNAME, CONFIRM
3947 (defun tramp-handle-write-region
3948 (start end filename &optional append visit lockname confirm)
3949 "Like `write-region' for tramp files."
3950 (unless (eq append nil)
3951 (error "Cannot append to file using tramp (`%s')" filename))
3952 (setq filename (expand-file-name filename))
3953 ;; Following part commented out because we don't know what to do about
3954 ;; file locking, and it does not appear to be a problem to ignore it.
3955 ;; Ange-ftp ignores it, too.
3956 ;; (when (and lockname (stringp lockname))
3957 ;; (setq lockname (expand-file-name lockname)))
3958 ;; (unless (or (eq lockname nil)
3959 ;; (string= lockname filename))
3960 ;; (error
3961 ;; "tramp-handle-write-region: LOCKNAME must be nil or equal FILENAME"))
3962 ;; XEmacs takes a coding system as the seventh argument, not `confirm'
3963 (when (and (not (featurep 'xemacs))
3964 confirm (file-exists-p filename))
3965 (unless (y-or-n-p (format "File %s exists; overwrite anyway? "
3966 filename))
3967 (error "File not overwritten")))
3968 (with-parsed-tramp-file-name filename nil
3969 (let ((curbuf (current-buffer))
3970 (rem-enc (tramp-get-remote-encoding multi-method method user host))
3971 (rem-dec (tramp-get-remote-decoding multi-method method user host))
3972 (loc-enc (tramp-get-local-encoding multi-method method user host))
3973 (loc-dec (tramp-get-local-decoding multi-method method user host))
3974 (trampbuf (get-buffer-create "*tramp output*"))
3975 (modes (file-modes filename))
3976 ;; We use this to save the value of `last-coding-system-used'
3977 ;; after writing the tmp file. At the end of the function,
3978 ;; we set `last-coding-system-used' to this saved value.
3979 ;; This way, any intermediary coding systems used while
3980 ;; talking to the remote shell or suchlike won't hose this
3981 ;; variable. This approach was snarfed from ange-ftp.el.
3982 coding-system-used
3983 tmpfil)
3984 ;; Write region into a tmp file. This isn't really needed if we
3985 ;; use an encoding function, but currently we use it always
3986 ;; because this makes the logic simpler.
3987 (setq tmpfil (tramp-make-temp-file))
3988 ;; Set current buffer. If connection wasn't open, `file-modes' has
3989 ;; changed it accidently.
3990 (set-buffer curbuf)
3991 ;; We say `no-message' here because we don't want the visited file
3992 ;; modtime data to be clobbered from the temp file. We call
3993 ;; `set-visited-file-modtime' ourselves later on.
3994 (tramp-run-real-handler
3995 'write-region
3996 (if confirm ; don't pass this arg unless defined for backward compat.
3997 (list start end tmpfil append 'no-message lockname confirm)
3998 (list start end tmpfil append 'no-message lockname)))
3999 ;; Now, `last-coding-system-used' has the right value. Remember it.
4000 (when (boundp 'last-coding-system-used)
4001 (setq coding-system-used (symbol-value 'last-coding-system-used)))
4002 ;; The permissions of the temporary file should be set. If
4003 ;; filename does not exist (eq modes nil) it has been renamed to
4004 ;; the backup file. This case `save-buffer' handles
4005 ;; permissions.
4006 (when modes (set-file-modes tmpfil modes))
4007 ;; This is a bit lengthy due to the different methods possible for
4008 ;; file transfer. First, we check whether the method uses an rcp
4009 ;; program. If so, we call it. Otherwise, both encoding and
4010 ;; decoding command must be specified. However, if the method
4011 ;; _also_ specifies an encoding function, then that is used for
4012 ;; encoding the contents of the tmp file.
4013 (cond ((tramp-method-out-of-band-p multi-method method user host)
4014 ;; `copy-file' handles out-of-band methods
4015 (copy-file tmpfil filename t t))
4016
4017 ((and rem-enc rem-dec)
4018 ;; Use inline file transfer
4019 (let ((tmpbuf (get-buffer-create " *tramp file transfer*")))
4020 (save-excursion
4021 ;; Encode tmpfil into tmpbuf
4022 (tramp-message-for-buffer multi-method method user host
4023 5 "Encoding region...")
4024 (set-buffer tmpbuf)
4025 (erase-buffer)
4026 ;; Use encoding function or command.
4027 (if (and (symbolp loc-enc) (fboundp loc-enc))
4028 (progn
4029 (tramp-message-for-buffer
4030 multi-method method user host
4031 6 "Encoding region using function `%s'..."
4032 (symbol-name loc-enc))
4033 (insert-file-contents-literally tmpfil)
4034 ;; CCC. The following `let' is a workaround for
4035 ;; the base64.el that comes with pgnus-0.84. If
4036 ;; both of the following conditions are
4037 ;; satisfied, it tries to write to a local file
4038 ;; in default-directory, but at this point,
4039 ;; default-directory is remote.
4040 ;; (CALL-PROCESS-REGION can't write to remote
4041 ;; files, it seems.) The file in question is a
4042 ;; tmp file anyway.
4043 (let ((default-directory
4044 (tramp-temporary-file-directory)))
4045 (funcall loc-enc (point-min) (point-max)))
4046 (goto-char (point-max))
4047 (unless (bolp)
4048 (newline)))
4049 (tramp-message-for-buffer
4050 multi-method method user host
4051 6 "Encoding region using command `%s'..." loc-enc)
4052 (unless (equal 0 (tramp-call-local-coding-command
4053 loc-enc tmpfil t))
4054 (pop-to-buffer trampbuf)
4055 (error (concat "Cannot write to `%s', local encoding"
4056 " command `%s' failed")
4057 filename loc-enc)))
4058 ;; Send tmpbuf into remote decoding command which
4059 ;; writes to remote file. Because this happens on the
4060 ;; remote host, we cannot use the function.
4061 (tramp-message-for-buffer
4062 multi-method method user host
4063 5 "Decoding region into remote file %s..." filename)
4064 (tramp-send-command
4065 multi-method method user host
4066 (format "%s >%s <<'EOF'"
4067 rem-dec
4068 (tramp-shell-quote-argument localname)))
4069 (set-buffer tmpbuf)
4070 (tramp-message-for-buffer
4071 multi-method method user host
4072 6 "Sending data to remote host...")
4073 (tramp-send-string multi-method method user host
4074 (buffer-string))
4075 ;; wait for remote decoding to complete
4076 (tramp-message-for-buffer
4077 multi-method method user host
4078 6 "Sending end of data token...")
4079 (tramp-send-command
4080 multi-method method user host "EOF" nil t)
4081 (tramp-message-for-buffer
4082 multi-method method user host 6
4083 "Waiting for remote host to process data...")
4084 (set-buffer (tramp-get-buffer multi-method method user host))
4085 (tramp-wait-for-output)
4086 (tramp-barf-unless-okay
4087 multi-method method user host nil nil 'file-error
4088 (concat "Couldn't write region to `%s',"
4089 " decode using `%s' failed")
4090 filename rem-dec)
4091 (tramp-message 5 "Decoding region into remote file %s...done"
4092 filename)
4093 (kill-buffer tmpbuf))))
4094 (t
4095 (error
4096 (concat "Method `%s' should specify both encoding and "
4097 "decoding command or an rcp program")
4098 method)))
4099 (delete-file tmpfil)
4100 (unless (equal curbuf (current-buffer))
4101 (error "Buffer has changed from `%s' to `%s'"
4102 curbuf (current-buffer)))
4103 (when (or (eq visit t) (stringp visit))
4104 (set-visited-file-modtime
4105 ;; We must pass modtime explicitely, because filename can be different
4106 ;; from (buffer-file-name), f.e. if `file-precious-flag' is set.
4107 (nth 5 (file-attributes filename))))
4108 ;; Make `last-coding-system-used' have the right value.
4109 (when (boundp 'last-coding-system-used)
4110 (set 'last-coding-system-used coding-system-used))
4111 (when (or (eq visit t)
4112 (eq visit nil)
4113 (stringp visit))
4114 (message "Wrote %s" filename)))))
4115
4116 ;; Call down to the real handler.
4117 ;; Because EFS does not play nicely with TRAMP (both systems match a
4118 ;; TRAMP file name) it is needed to disable efs as well as tramp for the
4119 ;; operation.
4120 ;;
4121 ;; Other than that, this is the canon file-handler code that the doco
4122 ;; says should be used here. Which is nice.
4123 ;;
4124 ;; Under XEmacs current, EFS also hooks in as
4125 ;; efs-sifn-handler-function to handle any filename with environment
4126 ;; variables. This has two implications:
4127 ;; 1) That EFS may not be completely dead (yet) for TRAMP filenames
4128 ;; 2) That TRAMP might want to do the same thing.
4129 ;; Details as they come in.
4130 ;;
4131 ;; Daniel Pittman <daniel@danann.net>
4132
4133 ;; (defun tramp-run-real-handler (operation args)
4134 ;; "Invoke normal file name handler for OPERATION.
4135 ;; This inhibits EFS and Ange-FTP, too, because they conflict with tramp.
4136 ;; First arg specifies the OPERATION, remaining ARGS are passed to the
4137 ;; OPERATION."
4138 ;; (let ((inhibit-file-name-handlers
4139 ;; (list 'tramp-file-name-handler
4140 ;; 'efs-file-handler-function
4141 ;; 'ange-ftp-hook-function
4142 ;; (and (eq inhibit-file-name-operation operation)
4143 ;; inhibit-file-name-handlers)))
4144 ;; (inhibit-file-name-operation operation))
4145 ;; (apply operation args)))
4146
4147 (defun tramp-run-real-handler (operation args)
4148 "Invoke normal file name handler for OPERATION.
4149 First arg specifies the OPERATION, second arg is a list of arguments to
4150 pass to the OPERATION."
4151 (let* ((inhibit-file-name-handlers
4152 `(tramp-file-name-handler
4153 tramp-completion-file-name-handler
4154 cygwin-mount-name-hook-function
4155 cygwin-mount-map-drive-hook-function
4156 .
4157 ,(and (eq inhibit-file-name-operation operation)
4158 inhibit-file-name-handlers)))
4159 (inhibit-file-name-operation operation))
4160 (apply operation args)))
4161
4162 ;; This function is used from `tramp-completion-file-name-handler' functions
4163 ;; only, if `tramp-completion-mode' is true. But this cannot be checked here
4164 ;; because the check is based on a full filename, not available for all
4165 ;; basic I/O operations.
4166 (defun tramp-completion-run-real-handler (operation args)
4167 "Invoke `tramp-file-name-handler' for OPERATION.
4168 First arg specifies the OPERATION, second arg is a list of arguments to
4169 pass to the OPERATION."
4170 (let* ((inhibit-file-name-handlers
4171 `(tramp-completion-file-name-handler
4172 cygwin-mount-name-hook-function
4173 cygwin-mount-map-drive-hook-function
4174 .
4175 ,(and (eq inhibit-file-name-operation operation)
4176 inhibit-file-name-handlers)))
4177 (inhibit-file-name-operation operation))
4178 (apply operation args)))
4179
4180 ;; We handle here all file primitives. Most of them have the file
4181 ;; name as first parameter; nevertheless we check for them explicitly
4182 ;; in order to be signalled if a new primitive appears. This
4183 ;; scenario is needed because there isn't a way to decide by
4184 ;; syntactical means whether a foreign method must be called. It would
4185 ;; ease the life if `file-name-handler-alist' would support a decision
4186 ;; function as well but regexp only.
4187 (defun tramp-file-name-for-operation (operation &rest args)
4188 "Return file name related to OPERATION file primitive.
4189 ARGS are the arguments OPERATION has been called with."
4190 (cond
4191 ; FILE resp DIRECTORY
4192 ((member operation
4193 (list 'access-file 'byte-compiler-base-file-name 'delete-directory
4194 'delete-file 'diff-latest-backup-file 'directory-file-name
4195 'directory-files 'directory-files-and-attributes
4196 'dired-compress-file 'dired-uncache
4197 'file-accessible-directory-p 'file-attributes
4198 'file-directory-p 'file-executable-p 'file-exists-p
4199 'file-local-copy 'file-remote-p 'file-modes
4200 'file-name-as-directory 'file-name-directory
4201 'file-name-nondirectory 'file-name-sans-versions
4202 'file-ownership-preserved-p 'file-readable-p
4203 'file-regular-p 'file-symlink-p 'file-truename
4204 'file-writable-p 'find-backup-file-name 'find-file-noselect
4205 'get-file-buffer 'insert-directory 'insert-file-contents
4206 'load 'make-directory 'make-directory-internal
4207 'set-file-modes 'substitute-in-file-name
4208 'unhandled-file-name-directory 'vc-registered
4209 ; XEmacs only
4210 'abbreviate-file-name 'create-file-buffer
4211 'dired-file-modtime 'dired-make-compressed-filename
4212 'dired-recursive-delete-directory 'dired-set-file-modtime
4213 'dired-shell-unhandle-file-name 'dired-uucode-file
4214 'insert-file-contents-literally 'recover-file
4215 'vm-imap-check-mail 'vm-pop-check-mail 'vm-spool-check-mail))
4216 (if (file-name-absolute-p (nth 0 args))
4217 (nth 0 args)
4218 (expand-file-name (nth 0 args))))
4219 ; FILE DIRECTORY resp FILE1 FILE2
4220 ((member operation
4221 (list 'add-name-to-file 'copy-file 'expand-file-name
4222 'file-name-all-completions 'file-name-completion
4223 'file-newer-than-file-p 'make-symbolic-link 'rename-file
4224 ; XEmacs only
4225 'dired-make-relative-symlink
4226 'vm-imap-move-mail 'vm-pop-move-mail 'vm-spool-move-mail))
4227 (save-match-data
4228 (cond
4229 ((string-match tramp-file-name-regexp (nth 0 args)) (nth 0 args))
4230 ((string-match tramp-file-name-regexp (nth 1 args)) (nth 1 args))
4231 (t (buffer-file-name (current-buffer))))))
4232 ; START END FILE
4233 ((eq operation 'write-region)
4234 (nth 2 args))
4235 ; BUF
4236 ((member operation
4237 (list 'make-auto-save-file-name
4238 'set-visited-file-modtime 'verify-visited-file-modtime
4239 ; XEmacs only
4240 'backup-buffer))
4241 (buffer-file-name
4242 (if (bufferp (nth 0 args)) (nth 0 args) (current-buffer))))
4243 ; COMMAND
4244 ((member operation
4245 (list 'dired-call-process
4246 ; Emacs only
4247 'shell-command
4248 ; Emacs 22 only
4249 'process-file
4250 ; XEmacs only
4251 'dired-print-file 'dired-shell-call-process))
4252 default-directory)
4253 ; unknown file primitive
4254 (t (error "unknown file I/O primitive: %s" operation))))
4255
4256 (defun tramp-find-foreign-file-name-handler (filename)
4257 "Return foreign file name handler if exists."
4258 (when (tramp-tramp-file-p filename)
4259 (let (elt
4260 res
4261 (handler-alist tramp-foreign-file-name-handler-alist))
4262 (while handler-alist
4263 (setq elt (car handler-alist)
4264 handler-alist (cdr handler-alist))
4265 (when (funcall (car elt) filename)
4266 (setq handler-alist nil)
4267 (setq res (cdr elt))))
4268 res)))
4269
4270 ;; Main function.
4271 ;;;###autoload
4272 (defun tramp-file-name-handler (operation &rest args)
4273 "Invoke Tramp file name handler.
4274 Falls back to normal file name handler if no tramp file name handler exists."
4275 (save-match-data
4276 (let* ((filename (apply 'tramp-file-name-for-operation operation args))
4277 (foreign (tramp-find-foreign-file-name-handler filename)))
4278 (cond
4279 (foreign (apply foreign operation args))
4280 (t (tramp-run-real-handler operation args))))))
4281
4282
4283 ;; In Emacs, there is some concurrency due to timers. If a timer
4284 ;; interrupts Tramp and wishes to use the same connection buffer as
4285 ;; the "main" Emacs, then garbage might occur in the connection
4286 ;; buffer. Therefore, we need to make sure that a timer does not use
4287 ;; the same connection buffer as the "main" Emacs. We implement a
4288 ;; cheap global lock, instead of locking each connection buffer
4289 ;; separately. The global lock is based on two variables,
4290 ;; `tramp-locked' and `tramp-locker'. `tramp-locked' is set to true
4291 ;; (with setq) to indicate a lock. But Tramp also calls itself during
4292 ;; processing of a single file operation, so we need to allow
4293 ;; recursive calls. That's where the `tramp-locker' variable comes in
4294 ;; -- it is let-bound to t during the execution of the current
4295 ;; handler. So if `tramp-locked' is t and `tramp-locker' is also t,
4296 ;; then we should just proceed because we have been called
4297 ;; recursively. But if `tramp-locker' is nil, then we are a timer
4298 ;; interrupting the "main" Emacs, and then we signal an error.
4299
4300 (defvar tramp-locked nil
4301 "If non-nil, then Tramp is currently busy.
4302 Together with `tramp-locker', this implements a locking mechanism
4303 preventing reentrant calls of Tramp.")
4304
4305 (defvar tramp-locker nil
4306 "If non-nil, then a caller has locked Tramp.
4307 Together with `tramp-locked', this implements a locking mechanism
4308 preventing reentrant calls of Tramp.")
4309
4310 (defun tramp-sh-file-name-handler (operation &rest args)
4311 "Invoke remote-shell Tramp file name handler.
4312 Fall back to normal file name handler if no Tramp handler exists."
4313 (when (and tramp-locked (not tramp-locker))
4314 (signal 'file-error "Forbidden reentrant call of Tramp"))
4315 (let ((tl tramp-locked))
4316 (unwind-protect
4317 (progn
4318 (setq tramp-locked t)
4319 (let ((tramp-locker t))
4320 (save-match-data
4321 (let ((fn (assoc operation tramp-file-name-handler-alist)))
4322 (if fn
4323 (apply (cdr fn) args)
4324 (tramp-run-real-handler operation args))))))
4325 (setq tramp-locked tl))))
4326
4327 ;; Preload this DEFUN with the progn trick. This avoids cyclic
4328 ;; loading, because the `load-in-progress' check can be performed.
4329 ;;;###autoload
4330 (progn (defun tramp-completion-file-name-handler (operation &rest args)
4331 "Invoke tramp file name completion handler.
4332 Falls back to normal file name handler if no tramp file name handler exists."
4333 ;; (setq tramp-debug-buffer t)
4334 ;; (tramp-message 1 "%s %s" operation args)
4335 ;; (tramp-message 1 "%s %s\n%s"
4336 ;; operation args (with-output-to-string (backtrace)))
4337 (if load-in-progress
4338 ;; We are while loading Tramp.
4339 (let (file-name-handler-alist)
4340 (apply operation args))
4341 ;; If Tramp is not loaded yet, do it now.
4342 (require 'tramp)
4343 (let ((fn (assoc operation tramp-completion-file-name-handler-alist)))
4344 (if fn
4345 (save-match-data (apply (cdr fn) args))
4346 (tramp-completion-run-real-handler operation args))))))
4347
4348 ;; Register in `file-name-handler-alist'.
4349 ;; `tramp-completion-file-name-handler' must not be active when temacs
4350 ;; dumps. And it makes no sense in batch mode anyway. This must be
4351 ;; an autoloaded DEFSUBST, because Tramp would be loaded otherwise
4352 ;; applying the `after-init-hook'.
4353 ;;;###autoload
4354 (defsubst tramp-register-file-name-handlers ()
4355 "Add tramp file name handlers to `file-name-handler-alist'."
4356 (unless noninteractive
4357 (add-to-list 'file-name-handler-alist
4358 (cons tramp-file-name-regexp 'tramp-file-name-handler))
4359 (add-to-list 'file-name-handler-alist
4360 (cons tramp-completion-file-name-regexp
4361 'tramp-completion-file-name-handler))
4362 (put 'tramp-completion-file-name-handler 'safe-magic t)
4363 ;; If jka-compr is already loaded, move it to the front of
4364 ;; `file-name-handler-alist'.
4365 (let ((jka (rassoc 'jka-compr-handler file-name-handler-alist)))
4366 (when jka
4367 (setq file-name-handler-alist
4368 (cons jka (delete jka file-name-handler-alist)))))))
4369
4370 ;; `tramp-register-file-name-handlers' cannot be autoloaded as-it-is,
4371 ;; because the `noninteractive' check would prevent functionality to
4372 ;; be dumped in temacs.
4373 ;;;###autoload(add-hook
4374 ;;;###autoload 'after-init-hook
4375 ;;;###autoload '(lambda () (tramp-register-file-name-handlers)))
4376 (tramp-register-file-name-handlers)
4377
4378 ;;;###autoload
4379 (defun tramp-unload-file-name-handlers ()
4380 (setq file-name-handler-alist
4381 (delete (rassoc 'tramp-file-name-handler
4382 file-name-handler-alist)
4383 (delete (rassoc 'tramp-completion-file-name-handler
4384 file-name-handler-alist)
4385 file-name-handler-alist))))
4386
4387 (add-hook 'tramp-unload-hook 'tramp-unload-file-name-handlers)
4388
4389
4390 ;;; Interactions with other packages:
4391
4392 ;; -- complete.el --
4393
4394 ;; This function contributed by Ed Sabol
4395 (defun tramp-handle-expand-many-files (name)
4396 "Like `PC-expand-many-files' for tramp files."
4397 (with-parsed-tramp-file-name name nil
4398 (save-match-data
4399 (if (or (string-match "\\*" name)
4400 (string-match "\\?" name)
4401 (string-match "\\[.*\\]" name))
4402 (save-excursion
4403 (let (bufstr)
4404 ;; CCC: To do it right, we should quote certain characters
4405 ;; in the file name, but since the echo command is going to
4406 ;; break anyway when there are spaces in the file names, we
4407 ;; don't bother.
4408 ;;-(let ((comint-file-name-quote-list
4409 ;;- (set-difference tramp-file-name-quote-list
4410 ;;- '(?\* ?\? ?[ ?]))))
4411 ;;- (tramp-send-command
4412 ;;- multi-method method user host
4413 ;;- (format "echo %s" (comint-quote-filename localname)))
4414 ;;- (tramp-wait-for-output))
4415 (tramp-send-command multi-method method user host
4416 (format "echo %s" localname))
4417 (tramp-wait-for-output)
4418 (setq bufstr (buffer-substring (point-min)
4419 (tramp-line-end-position)))
4420 (goto-char (point-min))
4421 (if (string-equal localname bufstr)
4422 nil
4423 (insert "(\"")
4424 (while (search-forward " " nil t)
4425 (delete-backward-char 1)
4426 (insert "\" \""))
4427 (goto-char (point-max))
4428 (delete-backward-char 1)
4429 (insert "\")")
4430 (goto-char (point-min))
4431 (mapcar
4432 (function (lambda (x)
4433 (tramp-make-tramp-file-name multi-method method
4434 user host x)))
4435 (read (current-buffer))))))
4436 (list (expand-file-name name))))))
4437
4438 (eval-after-load "complete"
4439 '(progn
4440 (defadvice PC-expand-many-files
4441 (around tramp-advice-PC-expand-many-files (name) activate)
4442 "Invoke `tramp-handle-expand-many-files' for tramp files."
4443 (if (tramp-tramp-file-p name)
4444 (setq ad-return-value (tramp-handle-expand-many-files name))
4445 ad-do-it))
4446 (add-hook 'tramp-unload-hook
4447 '(lambda () (ad-unadvise 'PC-expand-many-files)))))
4448
4449 ;;; File name handler functions for completion mode
4450
4451 (defvar tramp-completion-mode nil
4452 "If non-nil, we are in file name completion mode.")
4453
4454 ;; Necessary because `tramp-file-name-regexp-unified' and
4455 ;; `tramp-completion-file-name-regexp-unified' aren't different.
4456 ;; If nil, `tramp-completion-run-real-handler' is called (i.e. forwarding to
4457 ;; `tramp-file-name-handler'). Otherwise, it takes `tramp-run-real-handler'.
4458 ;; Using `last-input-event' is a little bit risky, because completing a file
4459 ;; might require loading other files, like "~/.netrc", and for them it
4460 ;; shouldn't be decided based on that variable. On the other hand, those files
4461 ;; shouldn't have partial tramp file name syntax. Maybe another variable should
4462 ;; be introduced overwriting this check in such cases. Or we change tramp
4463 ;; file name syntax in order to avoid ambiguities, like in XEmacs ...
4464 ;; In case of non unified file names it can be always true (and wouldn't be
4465 ;; necessary, because there are different regexp).
4466 (defun tramp-completion-mode (file)
4467 "Checks whether method / user name / host name completion is active."
4468 (cond
4469 (tramp-completion-mode t)
4470 ((not tramp-unified-filenames) t)
4471 ((string-match "^/.*:.*:$" file) nil)
4472 ((string-match
4473 (concat tramp-prefix-regexp
4474 "\\(" tramp-method-regexp "\\)" tramp-postfix-single-method-regexp "$")
4475 file)
4476 (member (match-string 1 file) (mapcar 'car tramp-methods)))
4477 ((or (equal last-input-event 'tab)
4478 ;; Emacs
4479 (and (integerp last-input-event)
4480 (or
4481 ;; ?\t has event-modifier 'control
4482 (char-equal last-input-event ?\t)
4483 (and (not (event-modifiers last-input-event))
4484 (or (char-equal last-input-event ?\?)
4485 (char-equal last-input-event ?\ )))))
4486 ;; XEmacs
4487 (and (featurep 'xemacs)
4488 (or
4489 ;; ?\t has event-modifier 'control
4490 (char-equal
4491 (funcall (symbol-function 'event-to-character)
4492 last-input-event) ?\t)
4493 (and (not (event-modifiers last-input-event))
4494 (or (char-equal
4495 (funcall (symbol-function 'event-to-character)
4496 last-input-event) ?\?)
4497 (char-equal
4498 (funcall (symbol-function 'event-to-character)
4499 last-input-event) ?\ ))))))
4500 t)))
4501
4502 (defun tramp-completion-handle-file-exists-p (filename)
4503 "Like `file-exists-p' for tramp files."
4504 (if (tramp-completion-mode filename)
4505 (tramp-run-real-handler
4506 'file-exists-p (list filename))
4507 (tramp-completion-run-real-handler
4508 'file-exists-p (list filename))))
4509
4510 ;; Localname manipulation in case of partial TRAMP file names.
4511 (defun tramp-completion-handle-file-name-directory (file)
4512 "Like `file-name-directory' but aware of TRAMP files."
4513 (if (tramp-completion-mode file)
4514 "/"
4515 (tramp-completion-run-real-handler
4516 'file-name-directory (list file))))
4517
4518 ;; Localname manipulation in case of partial TRAMP file names.
4519 (defun tramp-completion-handle-file-name-nondirectory (file)
4520 "Like `file-name-nondirectory' but aware of TRAMP files."
4521 (substring
4522 file (length (tramp-completion-handle-file-name-directory file))))
4523
4524 ;; Method, host name and user name completion.
4525 ;; `tramp-completion-dissect-file-name' returns a list of
4526 ;; tramp-file-name structures. For all of them we return possible completions.
4527 (defun tramp-completion-handle-file-name-all-completions (filename directory)
4528 "Like `file-name-all-completions' for partial tramp files."
4529
4530 (unwind-protect
4531 ;; We need to reset `tramp-completion-mode'.
4532 (progn
4533 (setq tramp-completion-mode t)
4534 (let*
4535 ((fullname (concat directory filename))
4536 ;; possible completion structures
4537 (v (tramp-completion-dissect-file-name fullname))
4538 result result1)
4539
4540 (while v
4541 (let* ((car (car v))
4542 (multi-method (tramp-file-name-multi-method car))
4543 (method (tramp-file-name-method car))
4544 (user (tramp-file-name-user car))
4545 (host (tramp-file-name-host car))
4546 (localname (tramp-file-name-localname car))
4547 (m (tramp-find-method multi-method method user host))
4548 (tramp-current-user user) ; see `tramp-parse-passwd'
4549 all-user-hosts)
4550
4551 (unless (or multi-method ;; Not handled (yet).
4552 localname) ;; Nothing to complete
4553
4554 (if (or user host)
4555
4556 ;; Method dependent user / host combinations
4557 (progn
4558 (mapcar
4559 (lambda (x)
4560 (setq all-user-hosts
4561 (append all-user-hosts
4562 (funcall (nth 0 x) (nth 1 x)))))
4563 (tramp-get-completion-function m))
4564
4565 (setq result (append result
4566 (mapcar
4567 (lambda (x)
4568 (tramp-get-completion-user-host
4569 method user host (nth 0 x) (nth 1 x)))
4570 (delq nil all-user-hosts)))))
4571
4572 ;; Possible methods
4573 (setq result
4574 (append result (tramp-get-completion-methods m)))))
4575
4576 (setq v (cdr v))))
4577
4578 ;; unify list, remove nil elements
4579 (while result
4580 (let ((car (car result)))
4581 (when car (add-to-list 'result1 car))
4582 (setq result (cdr result))))
4583
4584 ;; Complete local parts
4585 (append
4586 result1
4587 (condition-case nil
4588 (if result1
4589 ;; "/ssh:" does not need to be expanded as hostname.
4590 (tramp-run-real-handler
4591 'file-name-all-completions (list filename directory))
4592 ;; No method/user/host found to be expanded.
4593 (tramp-completion-run-real-handler
4594 'file-name-all-completions (list filename directory)))
4595 (error nil)))))
4596 ;; unwindform
4597 (setq tramp-completion-mode nil)))
4598
4599 ;; Method, host name and user name completion for a file.
4600 (defun tramp-completion-handle-file-name-completion (filename directory)
4601 "Like `file-name-completion' for tramp files."
4602 (try-completion filename
4603 (mapcar 'list (file-name-all-completions filename directory))))
4604
4605 ;; I misuse a little bit the tramp-file-name structure in order to handle
4606 ;; completion possibilities for partial methods / user names / host names.
4607 ;; Return value is a list of tramp-file-name structures according to possible
4608 ;; completions. If "multi-method" or "localname" is non-nil it means there
4609 ;; shouldn't be a completion anymore.
4610
4611 ;; Expected results:
4612
4613 ;; "/x" "/[x" "/x@" "/[x@" "/x@y" "/[x@y"
4614 ;; [nil nil nil "x" nil] [nil nil "x" nil nil] [nil nil "x" "y" nil]
4615 ;; [nil nil "x" nil nil]
4616 ;; [nil "x" nil nil nil]
4617
4618 ;; "/x:" "/x:y" "/x:y:"
4619 ;; [nil nil nil "x" ""] [nil nil nil "x" "y"] [nil "x" nil "y" ""]
4620 ;; "/[x/" "/[x/y"
4621 ;; [nil "x" nil "" nil] [nil "x" nil "y" nil]
4622 ;; [nil "x" "" nil nil] [nil "x" "y" nil nil]
4623
4624 ;; "/x:y@" "/x:y@z" "/x:y@z:"
4625 ;; [nil nil nil "x" "y@"] [nil nil nil "x" "y@z"] [nil "x" "y" "z" ""]
4626 ;; "/[x/y@" "/[x/y@z"
4627 ;; [nil "x" nil "y" nil] [nil "x" "y" "z" nil]
4628 (defun tramp-completion-dissect-file-name (name)
4629 "Returns a list of `tramp-file-name' structures.
4630 They are collected by `tramp-completion-dissect-file-name1'."
4631
4632 (let* ((result)
4633 (x-nil "\\|\\(\\)")
4634 ;; "/method" "/[method"
4635 (tramp-completion-file-name-structure1
4636 (list (concat tramp-prefix-regexp "\\(" tramp-method-regexp x-nil "\\)$")
4637 1 nil nil nil))
4638 ;; "/user" "/[user"
4639 (tramp-completion-file-name-structure2
4640 (list (concat tramp-prefix-regexp "\\(" tramp-user-regexp x-nil "\\)$")
4641 nil 1 nil nil))
4642 ;; "/host" "/[host"
4643 (tramp-completion-file-name-structure3
4644 (list (concat tramp-prefix-regexp "\\(" tramp-host-regexp x-nil "\\)$")
4645 nil nil 1 nil))
4646 ;; "/user@host" "/[user@host"
4647 (tramp-completion-file-name-structure4
4648 (list (concat tramp-prefix-regexp
4649 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
4650 "\\(" tramp-host-regexp x-nil "\\)$")
4651 nil 1 2 nil))
4652 ;; "/method:user" "/[method/user"
4653 (tramp-completion-file-name-structure5
4654 (list (concat tramp-prefix-regexp
4655 "\\(" tramp-method-regexp "\\)" tramp-postfix-single-method-regexp
4656 "\\(" tramp-user-regexp x-nil "\\)$")
4657 1 2 nil nil))
4658 ;; "/method:host" "/[method/host"
4659 (tramp-completion-file-name-structure6
4660 (list (concat tramp-prefix-regexp
4661 "\\(" tramp-method-regexp "\\)" tramp-postfix-single-method-regexp
4662 "\\(" tramp-host-regexp x-nil "\\)$")
4663 1 nil 2 nil))
4664 ;; "/method:user@host" "/[method/user@host"
4665 (tramp-completion-file-name-structure7
4666 (list (concat tramp-prefix-regexp
4667 "\\(" tramp-method-regexp "\\)" tramp-postfix-single-method-regexp
4668 "\\(" tramp-user-regexp "\\)" tramp-postfix-user-regexp
4669 "\\(" tramp-host-regexp x-nil "\\)$")
4670 1 2 3 nil)))
4671
4672 (mapcar (lambda (regexp)
4673 (add-to-list 'result
4674 (tramp-completion-dissect-file-name1 regexp name)))
4675 (list
4676 tramp-completion-file-name-structure1
4677 tramp-completion-file-name-structure2
4678 tramp-completion-file-name-structure3
4679 tramp-completion-file-name-structure4
4680 tramp-completion-file-name-structure5
4681 tramp-completion-file-name-structure6
4682 tramp-completion-file-name-structure7
4683 tramp-file-name-structure))
4684
4685 (delq nil result)))
4686
4687 (defun tramp-completion-dissect-file-name1 (structure name)
4688 "Returns a `tramp-file-name' structure matching STRUCTURE.
4689 The structure consists of multi-method, remote method, remote user,
4690 remote host and localname (filename on remote host)."
4691
4692 (let (method)
4693 (save-match-data
4694 (when (string-match (nth 0 structure) name)
4695 (setq method (and (nth 1 structure)
4696 (match-string (nth 1 structure) name)))
4697 (if (and method (member method tramp-multi-methods))
4698 ;; Not handled (yet).
4699 (make-tramp-file-name
4700 :multi-method method
4701 :method nil
4702 :user nil
4703 :host nil
4704 :localname nil)
4705 (let ((user (and (nth 2 structure)
4706 (match-string (nth 2 structure) name)))
4707 (host (and (nth 3 structure)
4708 (match-string (nth 3 structure) name)))
4709 (localname (and (nth 4 structure)
4710 (match-string (nth 4 structure) name))))
4711 (make-tramp-file-name
4712 :multi-method nil
4713 :method method
4714 :user user
4715 :host host
4716 :localname localname)))))))
4717
4718 ;; This function returns all possible method completions, adding the
4719 ;; trailing method delimeter.
4720 (defun tramp-get-completion-methods (partial-method)
4721 "Returns all method completions for PARTIAL-METHOD."
4722 (mapcar
4723 (lambda (method)
4724 (and method
4725 (string-match (concat "^" (regexp-quote partial-method)) method)
4726 ;; we must remove leading "/".
4727 (substring (tramp-make-tramp-file-name nil method nil nil nil) 1)))
4728 (delete "multi" (mapcar 'car tramp-methods))))
4729
4730 ;; Compares partial user and host names with possible completions.
4731 (defun tramp-get-completion-user-host (method partial-user partial-host user host)
4732 "Returns the most expanded string for user and host name completion.
4733 PARTIAL-USER must match USER, PARTIAL-HOST must match HOST."
4734 (cond
4735
4736 ((and partial-user partial-host)
4737 (if (and host
4738 (string-match (concat "^" (regexp-quote partial-host)) host)
4739 (string-equal partial-user (or user partial-user)))
4740 (setq user partial-user)
4741 (setq user nil
4742 host nil)))
4743
4744 (partial-user
4745 (setq host nil)
4746 (unless
4747 (and user (string-match (concat "^" (regexp-quote partial-user)) user))
4748 (setq user nil)))
4749
4750 (partial-host
4751 (setq user nil)
4752 (unless
4753 (and host (string-match (concat "^" (regexp-quote partial-host)) host))
4754 (setq host nil)))
4755
4756 (t (setq user nil
4757 host nil)))
4758
4759 (unless (zerop (+ (length user) (length host)))
4760 ;; we must remove leading "/".
4761 (substring (tramp-make-tramp-file-name nil method user host nil) 1)))
4762
4763 (defun tramp-parse-rhosts (filename)
4764 "Return a list of (user host) tuples allowed to access.
4765 Either user or host may be nil."
4766
4767 (let (res)
4768 (when (file-readable-p filename)
4769 (with-temp-buffer
4770 (insert-file-contents filename)
4771 (goto-char (point-min))
4772 (while (not (eobp))
4773 (push (tramp-parse-rhosts-group) res))))
4774 res))
4775
4776 ;; Taken from gnus/netrc.el
4777 (eval-and-compile
4778 (defalias 'tramp-point-at-eol
4779 (if (fboundp 'point-at-eol)
4780 'point-at-eol
4781 'line-end-position)))
4782
4783 (defun tramp-parse-rhosts-group ()
4784 "Return a (user host) tuple allowed to access.
4785 Either user or host may be nil."
4786
4787 (let ((result)
4788 (regexp
4789 (concat
4790 "^\\(" tramp-host-regexp "\\)"
4791 "\\([ \t]+" "\\(" tramp-user-regexp "\\)" "\\)?")))
4792
4793 (narrow-to-region (point) (tramp-point-at-eol))
4794 (when (re-search-forward regexp nil t)
4795 (setq result (append (list (match-string 3) (match-string 1)))))
4796 (widen)
4797 (forward-line 1)
4798 result))
4799
4800 (defun tramp-parse-shosts (filename)
4801 "Return a list of (user host) tuples allowed to access.
4802 User is always nil."
4803
4804 (let (res)
4805 (when (file-readable-p filename)
4806 (with-temp-buffer
4807 (insert-file-contents filename)
4808 (goto-char (point-min))
4809 (while (not (eobp))
4810 (push (tramp-parse-shosts-group) res))))
4811 res))
4812
4813 (defun tramp-parse-shosts-group ()
4814 "Return a (user host) tuple allowed to access.
4815 User is always nil."
4816
4817 (let ((result)
4818 (regexp (concat "^\\(" tramp-host-regexp "\\)")))
4819
4820 (narrow-to-region (point) (tramp-point-at-eol))
4821 (when (re-search-forward regexp nil t)
4822 (setq result (list nil (match-string 1))))
4823 (widen)
4824 (or
4825 (> (skip-chars-forward ",") 0)
4826 (forward-line 1))
4827 result))
4828
4829 (defun tramp-parse-sconfig (filename)
4830 "Return a list of (user host) tuples allowed to access.
4831 User is always nil."
4832
4833 (let (res)
4834 (when (file-readable-p filename)
4835 (with-temp-buffer
4836 (insert-file-contents filename)
4837 (goto-char (point-min))
4838 (while (not (eobp))
4839 (push (tramp-parse-sconfig-group) res))))
4840 res))
4841
4842 (defun tramp-parse-sconfig-group ()
4843 "Return a (user host) tuple allowed to access.
4844 User is always nil."
4845
4846 (let ((result)
4847 (regexp (concat "^[ \t]*Host[ \t]+" "\\(" tramp-host-regexp "\\)")))
4848
4849 (narrow-to-region (point) (tramp-point-at-eol))
4850 (when (re-search-forward regexp nil t)
4851 (setq result (list nil (match-string 1))))
4852 (widen)
4853 (or
4854 (> (skip-chars-forward ",") 0)
4855 (forward-line 1))
4856 result))
4857
4858 (defun tramp-parse-shostkeys (dirname)
4859 "Return a list of (user host) tuples allowed to access.
4860 User is always nil."
4861
4862 (let ((regexp (concat "^key_[0-9]+_\\(" tramp-host-regexp "\\)\\.pub$"))
4863 (files (when (file-directory-p dirname) (directory-files dirname)))
4864 result)
4865
4866 (while files
4867 (when (string-match regexp (car files))
4868 (push (list nil (match-string 1 (car files))) result))
4869 (setq files (cdr files)))
4870 result))
4871
4872 (defun tramp-parse-sknownhosts (dirname)
4873 "Return a list of (user host) tuples allowed to access.
4874 User is always nil."
4875
4876 (let ((regexp (concat "^\\(" tramp-host-regexp
4877 "\\)\\.ssh-\\(dss\\|rsa\\)\\.pub$"))
4878 (files (when (file-directory-p dirname) (directory-files dirname)))
4879 result)
4880
4881 (while files
4882 (when (string-match regexp (car files))
4883 (push (list nil (match-string 1 (car files))) result))
4884 (setq files (cdr files)))
4885 result))
4886
4887 (defun tramp-parse-hosts (filename)
4888 "Return a list of (user host) tuples allowed to access.
4889 User is always nil."
4890
4891 (let (res)
4892 (when (file-readable-p filename)
4893 (with-temp-buffer
4894 (insert-file-contents filename)
4895 (goto-char (point-min))
4896 (while (not (eobp))
4897 (push (tramp-parse-hosts-group) res))))
4898 res))
4899
4900 (defun tramp-parse-hosts-group ()
4901 "Return a (user host) tuple allowed to access.
4902 User is always nil."
4903
4904 (let ((result)
4905 (regexp (concat "^\\(" tramp-host-regexp "\\)")))
4906
4907 (narrow-to-region (point) (tramp-point-at-eol))
4908 (when (re-search-forward regexp nil t)
4909 (unless (char-equal (or (char-after) ?\n) ?:) ; no IPv6
4910 (setq result (list nil (match-string 1)))))
4911 (widen)
4912 (or
4913 (> (skip-chars-forward " \t") 0)
4914 (forward-line 1))
4915 result))
4916
4917 ;; For su-alike methods it would be desirable to return "root@localhost"
4918 ;; as default. Unfortunately, we have no information whether any user name
4919 ;; has been typed already. So we (mis-)use tramp-current-user as indication,
4920 ;; assuming it is set in `tramp-completion-handle-file-name-all-completions'.
4921 (defun tramp-parse-passwd (filename)
4922 "Return a list of (user host) tuples allowed to access.
4923 Host is always \"localhost\"."
4924
4925 (let (res)
4926 (if (zerop (length tramp-current-user))
4927 '(("root" nil))
4928 (when (file-readable-p filename)
4929 (with-temp-buffer
4930 (insert-file-contents filename)
4931 (goto-char (point-min))
4932 (while (not (eobp))
4933 (push (tramp-parse-passwd-group) res))))
4934 res)))
4935
4936 (defun tramp-parse-passwd-group ()
4937 "Return a (user host) tuple allowed to access.
4938 Host is always \"localhost\"."
4939
4940 (let ((result)
4941 (regexp (concat "^\\(" tramp-user-regexp "\\):")))
4942
4943 (narrow-to-region (point) (tramp-point-at-eol))
4944 (when (re-search-forward regexp nil t)
4945 (setq result (list (match-string 1) "localhost")))
4946 (widen)
4947 (forward-line 1)
4948 result))
4949
4950 (defun tramp-parse-netrc (filename)
4951 "Return a list of (user host) tuples allowed to access.
4952 User may be nil."
4953
4954 (let (res)
4955 (when (file-readable-p filename)
4956 (with-temp-buffer
4957 (insert-file-contents filename)
4958 (goto-char (point-min))
4959 (while (not (eobp))
4960 (push (tramp-parse-netrc-group) res))))
4961 res))
4962
4963 (defun tramp-parse-netrc-group ()
4964 "Return a (user host) tuple allowed to access.
4965 User may be nil."
4966
4967 (let ((result)
4968 (regexp
4969 (concat
4970 "^[ \t]*machine[ \t]+" "\\(" tramp-host-regexp "\\)"
4971 "\\([ \t]+login[ \t]+" "\\(" tramp-user-regexp "\\)" "\\)?")))
4972
4973 (narrow-to-region (point) (tramp-point-at-eol))
4974 (when (re-search-forward regexp nil t)
4975 (setq result (list (match-string 3) (match-string 1))))
4976 (widen)
4977 (forward-line 1)
4978 result))
4979
4980 (defun tramp-completion-handle-expand-file-name (name &optional dir)
4981 "Like `expand-file-name' for tramp files."
4982 (let ((fullname (concat (or dir default-directory) name)))
4983 (if (tramp-completion-mode fullname)
4984 (tramp-run-real-handler
4985 'expand-file-name (list name dir))
4986 (tramp-completion-run-real-handler
4987 'expand-file-name (list name dir)))))
4988
4989 ;;; Internal Functions:
4990
4991 (defun tramp-maybe-send-perl-script (multi-method method user host script name)
4992 "Define in remote shell function NAME implemented as perl SCRIPT.
4993 Only send the definition if it has not already been done.
4994 Function may have 0-3 parameters."
4995 (let ((remote-perl (tramp-get-remote-perl multi-method method user host)))
4996 (unless remote-perl (error "No remote perl"))
4997 (let ((perl-scripts (tramp-get-connection-property "perl-scripts" nil
4998 multi-method method user host)))
4999 (unless (memq name perl-scripts)
5000 (with-current-buffer (tramp-get-buffer multi-method method user host)
5001 (tramp-message 5 (concat "Sending the Perl script `" name "'..."))
5002 (tramp-send-string multi-method method user host
5003 (concat name
5004 " () {\n"
5005 remote-perl
5006 " -e '"
5007 script
5008 "' \"$1\" \"$2\" \"$3\" 2>/dev/null\n}"))
5009 (tramp-wait-for-output)
5010 (tramp-set-connection-property "perl-scripts" (cons name perl-scripts)
5011 multi-method method user host)
5012 (tramp-message 5 (concat "Sending the Perl script `" name "'...done.")))))))
5013
5014 (defun tramp-set-auto-save ()
5015 (when (and (buffer-file-name)
5016 (tramp-tramp-file-p (buffer-file-name))
5017 ;; ange-ftp has its own auto-save mechanism
5018 (eq (tramp-find-foreign-file-name-handler (buffer-file-name))
5019 'tramp-sh-file-name-handler)
5020 auto-save-default)
5021 (auto-save-mode 1)))
5022 (add-hook 'find-file-hooks 'tramp-set-auto-save t)
5023 (add-hook 'tramp-unload-hook
5024 '(lambda ()
5025 (remove-hook 'find-file-hooks 'tramp-set-auto-save)))
5026
5027 (defun tramp-run-test (switch filename)
5028 "Run `test' on the remote system, given a SWITCH and a FILENAME.
5029 Returns the exit code of the `test' program."
5030 (let ((v (tramp-dissect-file-name filename)))
5031 (save-excursion
5032 (tramp-send-command-and-check
5033 (tramp-file-name-multi-method v) (tramp-file-name-method v)
5034 (tramp-file-name-user v) (tramp-file-name-host v)
5035 (format "test %s %s" switch
5036 (tramp-shell-quote-argument (tramp-file-name-localname v)))))))
5037
5038 (defun tramp-run-test2 (program file1 file2 &optional switch)
5039 "Run `test'-like PROGRAM on the remote system, given FILE1, FILE2.
5040 The optional SWITCH is inserted between the two files.
5041 Returns the exit code of the `test' PROGRAM. Barfs if the methods,
5042 hosts, or files, disagree."
5043 (let* ((v1 (tramp-dissect-file-name file1))
5044 (v2 (tramp-dissect-file-name file2))
5045 (mmethod1 (tramp-file-name-multi-method v1))
5046 (mmethod2 (tramp-file-name-multi-method v2))
5047 (method1 (tramp-file-name-method v1))
5048 (method2 (tramp-file-name-method v2))
5049 (user1 (tramp-file-name-user v1))
5050 (user2 (tramp-file-name-user v2))
5051 (host1 (tramp-file-name-host v1))
5052 (host2 (tramp-file-name-host v2))
5053 (localname1 (tramp-file-name-localname v1))
5054 (localname2 (tramp-file-name-localname v2)))
5055 (unless (and method1 method2 host1 host2
5056 (equal mmethod1 mmethod2)
5057 (equal method1 method2)
5058 (equal user1 user2)
5059 (equal host1 host2))
5060 (error "tramp-run-test2: %s"
5061 "only implemented for same method, same user, same host"))
5062 (save-excursion
5063 (tramp-send-command-and-check
5064 mmethod1 method1 user1 host1
5065 (format "%s %s %s %s"
5066 program
5067 (tramp-shell-quote-argument localname1)
5068 (or switch "")
5069 (tramp-shell-quote-argument localname2))))))
5070
5071 (defun tramp-touch (file time)
5072 "Set the last-modified timestamp of the given file.
5073 TIME is an Emacs internal time value as returned by `current-time'."
5074 (let ((touch-time (format-time-string "%Y%m%d%H%M.%S" time)))
5075 (if (tramp-tramp-file-p file)
5076 (with-parsed-tramp-file-name file nil
5077 (let ((buf (tramp-get-buffer multi-method method user host)))
5078 (unless (zerop (tramp-send-command-and-check
5079 multi-method method user host
5080 (format "touch -t %s %s"
5081 touch-time
5082 localname)))
5083 (pop-to-buffer buf)
5084 (error "tramp-touch: touch failed, see buffer `%s' for details"
5085 buf))))
5086 ;; It's a local file
5087 (with-temp-buffer
5088 (unless (zerop (call-process
5089 "touch" nil (current-buffer) nil "-t" touch-time file))
5090 (pop-to-buffer (current-buffer))
5091 (error "tramp-touch: touch failed"))))))
5092
5093 (defun tramp-buffer-name (multi-method method user host)
5094 "A name for the connection buffer for USER at HOST using METHOD."
5095 (if multi-method
5096 (tramp-buffer-name-multi-method "tramp" multi-method method user host)
5097 (let ((method (tramp-find-method multi-method method user host)))
5098 (if user
5099 (format "*tramp/%s %s@%s*" method user host)
5100 (format "*tramp/%s %s*" method host)))))
5101
5102 (defun tramp-buffer-name-multi-method (prefix multi-method method user host)
5103 "A name for the multi method connection buffer.
5104 MULTI-METHOD gives the multi method, METHOD the array of methods,
5105 USER the array of user names, HOST the array of host names."
5106 (unless (and (= (length method) (length user))
5107 (= (length method) (length host)))
5108 (error "Syntax error in multi method (implementation error)"))
5109 (let ((len (length method))
5110 (i 0)
5111 string-list)
5112 (while (< i len)
5113 (setq string-list
5114 (cons (if (aref user i)
5115 (format "%s#%s@%s:" (aref method i)
5116 (aref user i) (aref host i))
5117 (format "%s@%s:" (aref method i) (aref host i)))
5118 string-list))
5119 (incf i))
5120 (format "*%s/%s %s*"
5121 prefix multi-method
5122 (apply 'concat (reverse string-list)))))
5123
5124 (defun tramp-get-buffer (multi-method method user host)
5125 "Get the connection buffer to be used for USER at HOST using METHOD."
5126 (with-current-buffer
5127 (get-buffer-create (tramp-buffer-name multi-method method user host))
5128 (setq buffer-undo-list t)
5129 (current-buffer)))
5130
5131 (defun tramp-debug-buffer-name (multi-method method user host)
5132 "A name for the debug buffer for USER at HOST using METHOD."
5133 (if multi-method
5134 (tramp-buffer-name-multi-method "debug tramp"
5135 multi-method method user host)
5136 (let ((method (tramp-find-method multi-method method user host)))
5137 (if user
5138 (format "*debug tramp/%s %s@%s*" method user host)
5139 (format "*debug tramp/%s %s*" method host)))))
5140
5141 (defun tramp-get-debug-buffer (multi-method method user host)
5142 "Get the debug buffer for USER at HOST using METHOD."
5143 (with-current-buffer
5144 (get-buffer-create
5145 (tramp-debug-buffer-name multi-method method user host))
5146 (setq buffer-undo-list t)
5147 (current-buffer)))
5148
5149 (defun tramp-find-executable (multi-method method user host
5150 progname dirlist ignore-tilde)
5151 "Searches for PROGNAME in all directories mentioned in DIRLIST.
5152 First args METHOD, USER and HOST specify the connection, PROGNAME
5153 is the program to search for, and DIRLIST gives the list of directories
5154 to search. If IGNORE-TILDE is non-nil, directory names starting
5155 with `~' will be ignored.
5156
5157 Returns the absolute file name of PROGNAME, if found, and nil otherwise.
5158
5159 This function expects to be in the right *tramp* buffer."
5160 (let (result)
5161 (when ignore-tilde
5162 ;; Remove all ~/foo directories from dirlist. In Emacs 20,
5163 ;; `remove' is in CL, and we want to avoid CL dependencies.
5164 (let (newdl d)
5165 (while dirlist
5166 (setq d (car dirlist))
5167 (setq dirlist (cdr dirlist))
5168 (unless (char-equal ?~ (aref d 0))
5169 (setq newdl (cons d newdl))))
5170 (setq dirlist (nreverse newdl))))
5171 (tramp-send-command
5172 multi-method method user host
5173 (format (concat "while read d; "
5174 "do if test -x $d/%s -a -f $d/%s; "
5175 "then echo tramp_executable $d/%s; "
5176 "break; fi; done <<'EOF'")
5177 progname progname progname))
5178 (mapcar (lambda (d)
5179 (tramp-send-command multi-method method user host d))
5180 dirlist)
5181 (tramp-send-command multi-method method user host "EOF")
5182 (tramp-wait-for-output)
5183 (goto-char (point-max))
5184 (when (search-backward "tramp_executable " nil t)
5185 (skip-chars-forward "^ ")
5186 (skip-chars-forward " ")
5187 (buffer-substring (point) (tramp-line-end-position)))))
5188
5189 (defun tramp-set-remote-path (multi-method method user host var dirlist)
5190 "Sets the remote environment VAR to existing directories from DIRLIST.
5191 I.e., for each directory in DIRLIST, it is tested whether it exists and if
5192 so, it is added to the environment variable VAR."
5193 (let ((existing-dirs
5194 (mapcar
5195 (lambda (x)
5196 (when (and
5197 (file-exists-p
5198 (tramp-make-tramp-file-name multi-method method user host x))
5199 (file-directory-p
5200 (tramp-make-tramp-file-name multi-method method user host x)))
5201 x))
5202 dirlist)))
5203 (tramp-send-command
5204 multi-method method user host
5205 (concat var "="
5206 (mapconcat 'identity (delq nil existing-dirs) ":")
5207 "; export " var))
5208 (tramp-wait-for-output)))
5209
5210 ;; -- communication with external shell --
5211
5212 (defun tramp-find-file-exists-command (multi-method method user host)
5213 "Find a command on the remote host for checking if a file exists.
5214 Here, we are looking for a command which has zero exit status if the
5215 file exists and nonzero exit status otherwise."
5216 (make-local-variable 'tramp-file-exists-command)
5217 (tramp-message 9 "Finding command to check if file exists")
5218 (let ((existing
5219 (tramp-make-tramp-file-name
5220 multi-method method user host
5221 "/")) ;assume this file always exists
5222 (nonexisting
5223 (tramp-make-tramp-file-name
5224 multi-method method user host
5225 "/ this file does not exist "))) ;assume this never exists
5226 ;; The algorithm is as follows: we try a list of several commands.
5227 ;; For each command, we first run `$cmd /' -- this should return
5228 ;; true, as the root directory always exists. And then we run
5229 ;; `$cmd /this\ file\ does\ not\ exist', hoping that the file indeed
5230 ;; does not exist. This should return false. We use the first
5231 ;; command we find that seems to work.
5232 ;; The list of commands to try is as follows:
5233 ;; `ls -d' This works on most systems, but NetBSD 1.4
5234 ;; has a bug: `ls' always returns zero exit
5235 ;; status, even for files which don't exist.
5236 ;; `test -e' Some Bourne shells have a `test' builtin
5237 ;; which does not know the `-e' option.
5238 ;; `/bin/test -e' For those, the `test' binary on disk normally
5239 ;; provides the option. Alas, the binary
5240 ;; is sometimes `/bin/test' and sometimes it's
5241 ;; `/usr/bin/test'.
5242 ;; `/usr/bin/test -e' In case `/bin/test' does not exist.
5243 (unless (or
5244 (and (setq tramp-file-exists-command "test -e %s")
5245 (file-exists-p existing)
5246 (not (file-exists-p nonexisting)))
5247 (and (setq tramp-file-exists-command "/bin/test -e %s")
5248 (file-exists-p existing)
5249 (not (file-exists-p nonexisting)))
5250 (and (setq tramp-file-exists-command "/usr/bin/test -e %s")
5251 (file-exists-p existing)
5252 (not (file-exists-p nonexisting)))
5253 (and (setq tramp-file-exists-command "ls -d %s")
5254 (file-exists-p existing)
5255 (not (file-exists-p nonexisting))))
5256 (error "Couldn't find command to check if file exists"))))
5257
5258
5259 ;; CCC test ksh or bash found for tilde expansion?
5260 (defun tramp-find-shell (multi-method method user host)
5261 "Find a shell on the remote host which groks tilde expansion."
5262 (let ((shell nil))
5263 (tramp-send-command multi-method method user host "echo ~root")
5264 (tramp-wait-for-output)
5265 (cond
5266 ((string-match "^~root$" (buffer-string))
5267 (setq shell
5268 (or (tramp-find-executable multi-method method user host
5269 "bash" tramp-remote-path t)
5270 (tramp-find-executable multi-method method user host
5271 "ksh" tramp-remote-path t)))
5272 (unless shell
5273 (error "Couldn't find a shell which groks tilde expansion"))
5274 ;; Find arguments for this shell.
5275 (let ((alist tramp-sh-extra-args)
5276 item extra-args)
5277 (while (and alist (null extra-args))
5278 (setq item (pop alist))
5279 (when (string-match (car item) shell)
5280 (setq extra-args (cdr item))))
5281 (when extra-args (setq shell (concat shell " " extra-args))))
5282 (tramp-message
5283 5 "Starting remote shell `%s' for tilde expansion..." shell)
5284 (tramp-send-command
5285 multi-method method user host
5286 (concat "PS1='$ ' exec " shell)) ;
5287 (tramp-barf-if-no-shell-prompt
5288 (get-buffer-process (current-buffer))
5289 60 "Couldn't find remote `%s' prompt" shell)
5290 (tramp-message
5291 9 "Setting remote shell prompt...")
5292 ;; Douglas Gray Stephens <DGrayStephens@slb.com> says that we
5293 ;; must use "\n" here, not tramp-rsh-end-of-line. Kai left the
5294 ;; last tramp-rsh-end-of-line, Douglas wanted to replace that,
5295 ;; as well.
5296 (process-send-string nil (format "PS1='%s%s%s'; PS2=''; PS3=''%s"
5297 tramp-rsh-end-of-line
5298 tramp-end-of-output
5299 tramp-rsh-end-of-line
5300 tramp-rsh-end-of-line))
5301 (tramp-wait-for-output)
5302 (tramp-message
5303 9 "Setting remote shell prompt...done")
5304 )
5305 (t (tramp-message 5 "Remote `%s' groks tilde expansion, good"
5306 (tramp-get-method-parameter
5307 multi-method method user host 'tramp-remote-sh))))))
5308
5309 (defun tramp-check-ls-command (multi-method method user host cmd)
5310 "Checks whether the given `ls' executable groks `-n'.
5311 METHOD, USER and HOST specify the connection, CMD (the absolute file name of)
5312 the `ls' executable. Returns t if CMD supports the `-n' option, nil
5313 otherwise."
5314 (tramp-message 9 "Checking remote `%s' command for `-n' option" cmd)
5315 (when (file-executable-p
5316 (tramp-make-tramp-file-name multi-method method user host cmd))
5317 (let ((result nil))
5318 (tramp-message 7 "Testing remote command `%s' for -n..." cmd)
5319 (setq result
5320 (tramp-send-command-and-check
5321 multi-method method user host
5322 (format "%s -lnd / >/dev/null"
5323 cmd)))
5324 (tramp-message 7 "Testing remote command `%s' for -n...%s"
5325 cmd
5326 (if (zerop result) "okay" "failed"))
5327 (zerop result))))
5328
5329 (defun tramp-check-ls-commands (multi-method method user host cmd dirlist)
5330 "Checks whether the given `ls' executable in one of the dirs groks `-n'.
5331 Returns nil if none was found, else the command is returned."
5332 (let ((dl dirlist)
5333 (result nil))
5334 (tramp-let-maybe directory-sep-char ?/ ;for XEmacs
5335 ;; It would be better to use the CL function `find', but
5336 ;; we don't want run-time dependencies on CL.
5337 (while (and dl (not result))
5338 (let ((x (concat (file-name-as-directory (car dl)) cmd)))
5339 (when (tramp-check-ls-command multi-method method user host x)
5340 (setq result x)))
5341 (setq dl (cdr dl)))
5342 result)))
5343
5344 (defun tramp-find-ls-command (multi-method method user host)
5345 "Finds an `ls' command which groks the `-n' option, returning nil if failed.
5346 \(This option prints numeric user and group ids in a long listing.)"
5347 (tramp-message 9 "Finding a suitable `ls' command")
5348 (or
5349 (tramp-check-ls-commands multi-method method user host "ls" tramp-remote-path)
5350 (tramp-check-ls-commands multi-method method user host "gnuls" tramp-remote-path)
5351 (tramp-check-ls-commands multi-method method user host "gls" tramp-remote-path)))
5352
5353 ;; ------------------------------------------------------------
5354 ;; -- Functions for establishing connection --
5355 ;; ------------------------------------------------------------
5356
5357 ;; The following functions are actions to be taken when seeing certain
5358 ;; prompts from the remote host. See the variable
5359 ;; `tramp-actions-before-shell' for usage of these functions.
5360
5361 (defun tramp-action-login (p multi-method method user host)
5362 "Send the login name."
5363 (tramp-message 9 "Sending login name `%s'"
5364 (or user (user-login-name)))
5365 (erase-buffer)
5366 (process-send-string nil (concat (or user (user-login-name))
5367 tramp-rsh-end-of-line)))
5368
5369 (defun tramp-action-password (p multi-method method user host)
5370 "Query the user for a password."
5371 (let ((pw-prompt
5372 (format "Password for %s "
5373 (tramp-make-tramp-file-name
5374 nil method user host ""))))
5375 (tramp-message 9 "Sending password")
5376 (tramp-enter-password p pw-prompt user host)))
5377
5378 (defun tramp-action-succeed (p multi-method method user host)
5379 "Signal success in finding shell prompt."
5380 (tramp-message 9 "Found remote shell prompt.")
5381 (erase-buffer)
5382 (throw 'tramp-action 'ok))
5383
5384 (defun tramp-action-permission-denied (p multi-method method user host)
5385 "Signal permission denied."
5386 (pop-to-buffer (tramp-get-buffer multi-method method user host))
5387 (tramp-message 9 "Permission denied by remote host.")
5388 (kill-process p)
5389 (throw 'tramp-action 'permission-denied))
5390
5391 (defun tramp-action-yesno (p multi-method method user host)
5392 "Ask the user for confirmation using `yes-or-no-p'.
5393 Send \"yes\" to remote process on confirmation, abort otherwise.
5394 See also `tramp-action-yn'."
5395 (save-window-excursion
5396 (pop-to-buffer (tramp-get-buffer multi-method method user host))
5397 (unless (yes-or-no-p (match-string 0))
5398 (kill-process p)
5399 (erase-buffer)
5400 (throw 'tramp-action 'permission-denied))
5401 (process-send-string p (concat "yes" tramp-rsh-end-of-line))
5402 (erase-buffer)))
5403
5404 (defun tramp-action-yn (p multi-method method user host)
5405 "Ask the user for confirmation using `y-or-n-p'.
5406 Send \"y\" to remote process on confirmation, abort otherwise.
5407 See also `tramp-action-yesno'."
5408 (save-window-excursion
5409 (pop-to-buffer (tramp-get-buffer multi-method method user host))
5410 (unless (y-or-n-p (match-string 0))
5411 (kill-process p)
5412 (throw 'tramp-action 'permission-denied))
5413 (erase-buffer)
5414 (process-send-string p (concat "y" tramp-rsh-end-of-line))))
5415
5416 (defun tramp-action-terminal (p multi-method method user host)
5417 "Tell the remote host which terminal type to use.
5418 The terminal type can be configured with `tramp-terminal-type'."
5419 (tramp-message 9 "Setting `%s' as terminal type."
5420 tramp-terminal-type)
5421 (erase-buffer)
5422 (process-send-string nil (concat tramp-terminal-type
5423 tramp-rsh-end-of-line)))
5424
5425 (defun tramp-action-process-alive (p multi-method method user host)
5426 "Check whether a process has finished."
5427 (unless (memq (process-status p) '(run open))
5428 (throw 'tramp-action 'process-died)))
5429
5430 (defun tramp-action-out-of-band (p multi-method method user host)
5431 "Check whether an out-of-band copy has finished."
5432 (cond ((and (memq (process-status p) '(stop exit))
5433 (zerop (process-exit-status p)))
5434 (tramp-message 9 "Process has finished.")
5435 (throw 'tramp-action 'ok))
5436 ((or (and (memq (process-status p) '(stop exit))
5437 (not (zerop (process-exit-status p))))
5438 (memq (process-status p) '(signal)))
5439 ;; `scp' could have copied correctly, but set modes could have failed.
5440 ;; This can be ignored.
5441 (goto-char (point-min))
5442 (if (re-search-forward tramp-operation-not-permitted-regexp nil t)
5443 (progn
5444 (tramp-message 10 "'set mode' error ignored.")
5445 (tramp-message 9 "Process has finished.")
5446 (throw 'tramp-action 'ok))
5447 (goto-char (point-min))
5448 (when (re-search-forward "^.cp.?: \\(.+: Permission denied.?\\)$" nil t)
5449 (error "Remote host: %s" (match-string 1)))
5450 (tramp-message 9 "Process has died.")
5451 (throw 'tramp-action 'process-died)))
5452 (t nil)))
5453
5454 ;; The following functions are specifically for multi connections.
5455
5456 (defun tramp-multi-action-login (p method user host)
5457 "Send the login name."
5458 (tramp-message 9 "Sending login name `%s'" user)
5459 (erase-buffer)
5460 (process-send-string p (concat user tramp-rsh-end-of-line)))
5461
5462 (defun tramp-multi-action-password (p method user host)
5463 "Query the user for a password."
5464 (let ((pw-prompt
5465 (format "Password for %s "
5466 (tramp-make-tramp-file-name
5467 nil method user host ""))))
5468 (tramp-message 9 "Sending password")
5469 (tramp-enter-password p pw-prompt user host)))
5470
5471 (defun tramp-multi-action-succeed (p method user host)
5472 "Signal success in finding shell prompt."
5473 (tramp-message 9 "Found shell prompt on `%s'" host)
5474 (erase-buffer)
5475 (throw 'tramp-action 'ok))
5476
5477 (defun tramp-multi-action-permission-denied (p method user host)
5478 "Signal permission denied."
5479 (tramp-message 9 "Permission denied by remote host `%s'" host)
5480 (kill-process p)
5481 (erase-buffer)
5482 (throw 'tramp-action 'permission-denied))
5483
5484 (defun tramp-multi-action-process-alive (p method user host)
5485 "Check whether a process has finished."
5486 (unless (memq (process-status p) '(run open))
5487 (throw 'tramp-action 'process-died)))
5488
5489 ;; Functions for processing the actions.
5490
5491 (defun tramp-process-one-action (p multi-method method user host actions)
5492 "Wait for output from the shell and perform one action."
5493 (let (found item pattern action todo)
5494 (erase-buffer)
5495 (tramp-message 9 "Waiting 60s for prompt from remote shell")
5496 (with-timeout (60 (throw 'tramp-action 'timeout))
5497 (while (not found)
5498 (tramp-accept-process-output p 1)
5499 (goto-char (point-min))
5500 (setq todo actions)
5501 (while todo
5502 (goto-char (point-min))
5503 (setq item (pop todo))
5504 (setq pattern (symbol-value (nth 0 item)))
5505 (setq action (nth 1 item))
5506 (tramp-message 10 "Looking for regexp \"%s\" from remote shell"
5507 pattern)
5508 (when (re-search-forward (concat pattern "\\'") nil t)
5509 (setq found (funcall action p multi-method method user host)))))
5510 found)))
5511
5512 (defun tramp-process-actions (p multi-method method user host actions)
5513 "Perform actions until success."
5514 (let (exit)
5515 (while (not exit)
5516 (tramp-message 9 "Waiting for prompts from remote shell")
5517 (setq exit
5518 (catch 'tramp-action
5519 (tramp-process-one-action
5520 p multi-method method user host actions)
5521 nil)))
5522 (unless (eq exit 'ok)
5523 (tramp-clear-passwd user host)
5524 (error "Login failed"))))
5525
5526 ;; For multi-actions.
5527
5528 (defun tramp-process-one-multi-action (p method user host actions)
5529 "Wait for output from the shell and perform one action."
5530 (let (found item pattern action todo)
5531 (erase-buffer)
5532 (tramp-message 9 "Waiting 60s for prompt from remote shell")
5533 (with-timeout (60 (throw 'tramp-action 'timeout))
5534 (while (not found)
5535 (tramp-accept-process-output p 1)
5536 (setq todo actions)
5537 (goto-char (point-min))
5538 (while todo
5539 (goto-char (point-min))
5540 (setq item (pop todo))
5541 (setq pattern (symbol-value (nth 0 item)))
5542 (setq action (nth 1 item))
5543 (tramp-message 10 "Looking for regexp \"%s\" from remote shell"
5544 pattern)
5545 (when (re-search-forward (concat pattern "\\'") nil t)
5546 (setq found (funcall action p method user host)))))
5547 found)))
5548
5549 (defun tramp-process-multi-actions (p method user host actions)
5550 "Perform actions until success."
5551 (let (exit)
5552 (while (not exit)
5553 (tramp-message 9 "Waiting for prompts from remote shell")
5554 (setq exit
5555 (catch 'tramp-action
5556 (tramp-process-one-multi-action p method user host actions)
5557 nil)))
5558 (unless (eq exit 'ok)
5559 (tramp-clear-passwd user host)
5560 (error "Login failed"))))
5561
5562 ;; Functions to execute when we have seen the remote shell prompt but
5563 ;; before we exec the Bourne-ish shell. Note that these commands
5564 ;; might be sent to any shell, not just a Bourne-ish shell. This
5565 ;; means that the commands need to work in all shells. (It is also
5566 ;; okay for some commands to just fail with an error message, but
5567 ;; please make sure that they at least don't crash the odd shell people
5568 ;; might be running...)
5569 (defun tramp-process-initial-commands (p
5570 multi-method method user host
5571 commands)
5572 "Send list of commands to remote host, in order."
5573 (let (cmd)
5574 (while commands
5575 (setq cmd (pop commands))
5576 (erase-buffer)
5577 (tramp-message 10 "Sending command to remote shell: %s"
5578 cmd)
5579 (tramp-send-command multi-method method user host cmd nil t)
5580 (tramp-barf-if-no-shell-prompt
5581 p 60 "Remote shell command failed: %s" cmd))
5582 (erase-buffer)))
5583
5584 ;; The actual functions for opening connections.
5585
5586 (defun tramp-open-connection-telnet (multi-method method user host)
5587 "Open a connection using a telnet METHOD.
5588 This starts the command `telnet HOST ARGS'[*], then waits for a remote
5589 login prompt, then sends the user name USER, then waits for a remote
5590 password prompt. It queries the user for the password, then sends the
5591 password to the remote host.
5592
5593 If USER is nil, uses value returned by `(user-login-name)' instead.
5594
5595 Recognition of the remote shell prompt is based on the variables
5596 `shell-prompt-pattern' and `tramp-shell-prompt-pattern' which must be
5597 set up correctly.
5598
5599 Please note that it is NOT possible to use this connection method
5600 together with an out-of-band transfer method! You must use an inline
5601 transfer method.
5602
5603 Maybe the different regular expressions need to be tuned.
5604
5605 * Actually, the telnet program as well as the args to be used can be
5606 specified in the method parameters, see the variable `tramp-methods'."
5607 (save-match-data
5608 (when (tramp-method-out-of-band-p multi-method method user host)
5609 (error "Cannot use out-of-band method `%s' with telnet connection method"
5610 method))
5611 (when multi-method
5612 (error "Cannot multi-connect using telnet connection method"))
5613 (tramp-pre-connection multi-method method user host tramp-chunksize)
5614 (tramp-message 7 "Opening connection for %s@%s using %s..."
5615 (or user (user-login-name)) host method)
5616 (let ((process-environment (copy-sequence process-environment)))
5617 (setenv "TERM" tramp-terminal-type)
5618 (setenv "PS1" "$ ")
5619 (let* ((default-directory (tramp-temporary-file-directory))
5620 ;; If we omit the conditional here, then we would use
5621 ;; `undecided-dos' in some cases. With the conditional,
5622 ;; we use nil in these cases. Which one is right?
5623 (coding-system-for-read (unless (and (not (featurep 'xemacs))
5624 (> emacs-major-version 20))
5625 tramp-dos-coding-system))
5626 (p (apply 'start-process
5627 (tramp-buffer-name multi-method method user host)
5628 (tramp-get-buffer multi-method method user host)
5629 (tramp-get-method-parameter
5630 multi-method
5631 (tramp-find-method multi-method method user host)
5632 user host 'tramp-login-program)
5633 host
5634 (tramp-get-method-parameter
5635 multi-method
5636 (tramp-find-method multi-method method user host)
5637 user host 'tramp-login-args)))
5638 (found nil)
5639 (pw nil))
5640 (tramp-set-process-query-on-exit-flag p nil)
5641 (set-buffer (tramp-get-buffer multi-method method user host))
5642 (erase-buffer)
5643 (tramp-process-actions p multi-method method user host
5644 tramp-actions-before-shell)
5645 (tramp-open-connection-setup-interactive-shell
5646 p multi-method method user host)
5647 (tramp-post-connection multi-method method user host)))))
5648
5649
5650 (defun tramp-open-connection-rsh (multi-method method user host)
5651 "Open a connection using an rsh METHOD.
5652 This starts the command `rsh HOST -l USER'[*], then waits for a remote
5653 password or shell prompt. If a password prompt is seen, the user is
5654 queried for a password, this function sends the password to the remote
5655 host and waits for a shell prompt.
5656
5657 If USER is nil, start the command `rsh HOST'[*] instead
5658
5659 Recognition of the remote shell prompt is based on the variables
5660 `shell-prompt-pattern' and `tramp-shell-prompt-pattern' which must be
5661 set up correctly.
5662
5663 Kludgy feature: if HOST has the form \"xx#yy\", then yy is assumed to
5664 be a port number for ssh, and \"-p yy\" will be added to the list of
5665 arguments, and xx will be used as the host name to connect to.
5666
5667 * Actually, the rsh program to be used can be specified in the
5668 method parameters, see the variable `tramp-methods'."
5669 (save-match-data
5670 (when multi-method
5671 (error "Cannot multi-connect using rsh connection method"))
5672 (tramp-pre-connection multi-method method user host tramp-chunksize)
5673 (if (and user (not (string= user "")))
5674 (tramp-message 7 "Opening connection for %s@%s using %s..."
5675 user host method)
5676 (tramp-message 7 "Opening connection at %s using %s..." host method))
5677 (let ((process-environment (copy-sequence process-environment))
5678 (bufnam (tramp-buffer-name multi-method method user host))
5679 (buf (tramp-get-buffer multi-method method user host))
5680 (login-program (tramp-get-method-parameter
5681 multi-method
5682 (tramp-find-method multi-method method user host)
5683 user host 'tramp-login-program))
5684 (login-args (tramp-get-method-parameter
5685 multi-method
5686 (tramp-find-method multi-method method user host)
5687 user host 'tramp-login-args))
5688 (real-host host))
5689 ;; The following should be changed. We need a more general
5690 ;; mechanism to parse extra host args.
5691 (when (string-match "\\([^#]*\\)#\\(.*\\)" host)
5692 (setq login-args (cons "-p" (cons (match-string 2 host) login-args)))
5693 (setq real-host (match-string 1 host)))
5694 (setenv "TERM" tramp-terminal-type)
5695 (setenv "PS1" "$ ")
5696 (let* ((default-directory (tramp-temporary-file-directory))
5697 ;; If we omit the conditional, we would use
5698 ;; `undecided-dos' in some cases. With the conditional,
5699 ;; we use nil in these cases. Which one is right?
5700 (coding-system-for-read (unless (and (not (featurep 'xemacs))
5701 (> emacs-major-version 20))
5702 tramp-dos-coding-system))
5703 (p (if (and user (not (string= user "")))
5704 (apply #'start-process bufnam buf login-program
5705 real-host "-l" user login-args)
5706 (apply #'start-process bufnam buf login-program
5707 real-host login-args)))
5708 (found nil))
5709 (tramp-set-process-query-on-exit-flag p nil)
5710
5711 (set-buffer buf)
5712 (tramp-process-actions p multi-method method user host
5713 tramp-actions-before-shell)
5714 (tramp-message 7 "Initializing remote shell")
5715 (tramp-open-connection-setup-interactive-shell
5716 p multi-method method user host)
5717 (tramp-post-connection multi-method method user host)))))
5718
5719 (defun tramp-open-connection-su (multi-method method user host)
5720 "Open a connection using the `su' program with METHOD.
5721 This starts `su - USER', then waits for a password prompt. The HOST
5722 name must be equal to the local host name or to `localhost'.
5723
5724 If USER is nil, uses value returned by user-login-name instead.
5725
5726 Recognition of the remote shell prompt is based on the variables
5727 `shell-prompt-pattern' and `tramp-shell-prompt-pattern' which must be
5728 set up correctly. Note that the other user may have a different shell
5729 prompt than you do, so it is not at all unlikely that the variable
5730 `shell-prompt-pattern' is set up wrongly!"
5731 (save-match-data
5732 (when (tramp-method-out-of-band-p multi-method method user host)
5733 (error "Cannot use out-of-band method `%s' with `su' connection method"
5734 method))
5735 (unless (or (string-match (concat "^" (regexp-quote host))
5736 (system-name))
5737 (string= "localhost" host)
5738 (string= "" host))
5739 (error
5740 "Cannot connect to different host `%s' with `su' connection method"
5741 host))
5742 (tramp-pre-connection multi-method method user host tramp-chunksize)
5743 (tramp-message 7 "Opening connection for `%s' using `%s'..."
5744 (or user "<root>") method)
5745 (let ((process-environment (copy-sequence process-environment)))
5746 (setenv "TERM" tramp-terminal-type)
5747 (setenv "PS1" "$ ")
5748 (let* ((default-directory (tramp-temporary-file-directory))
5749 ;; If we omit the conditional, we use `undecided-dos' in
5750 ;; some cases. With the conditional, we use nil in these
5751 ;; cases. What's the difference? Which one is right?
5752 (coding-system-for-read (unless (and (not (featurep 'xemacs))
5753 (> emacs-major-version 20))
5754 tramp-dos-coding-system))
5755 (p (apply 'start-process
5756 (tramp-buffer-name multi-method method user host)
5757 (tramp-get-buffer multi-method method user host)
5758 (tramp-get-method-parameter
5759 multi-method
5760 (tramp-find-method multi-method method user host)
5761 user host 'tramp-login-program)
5762 (mapcar
5763 (lambda (x)
5764 (format-spec x `((?u . ,(or user "root")))))
5765 (tramp-get-method-parameter
5766 multi-method
5767 (tramp-find-method multi-method method user host)
5768 user host 'tramp-login-args))))
5769 (found nil)
5770 (pw nil))
5771 (tramp-set-process-query-on-exit-flag p nil)
5772 (set-buffer (tramp-get-buffer multi-method method user host))
5773 (tramp-process-actions p multi-method method user host
5774 tramp-actions-before-shell)
5775 (tramp-open-connection-setup-interactive-shell
5776 p multi-method method user host)
5777 (tramp-post-connection multi-method method
5778 user host)))))
5779
5780 ;; HHH: Not Changed. Multi method. It is not clear to me how this can
5781 ;; handle not giving a user name in the "file name".
5782 ;;
5783 ;; This is more difficult than for the single-hop method. In the
5784 ;; multi-hop-method, the desired behaviour should be that the
5785 ;; user must specify names for the telnet hops of which the user
5786 ;; name is different than the "original" name (or different from
5787 ;; the previous hop.
5788 (defun tramp-open-connection-multi (multi-method method user host)
5789 "Open a multi-hop connection using METHOD.
5790 This uses a slightly changed file name syntax. The idea is to say
5791 [multi/telnet:u1@h1/rsh:u2@h2]/path/to/file
5792 This will use telnet to log in as u1 to h1, then use rsh from there to
5793 log in as u2 to h2."
5794 (save-match-data
5795 (unless multi-method
5796 (error "Multi-hop open connection function called on non-multi method"))
5797 (when (tramp-method-out-of-band-p multi-method method user host)
5798 (error "No out of band multi-hop connections"))
5799 (unless (and (arrayp method) (not (stringp method)))
5800 (error "METHOD must be an array of strings for multi methods"))
5801 (unless (and (arrayp user) (not (stringp user)))
5802 (error "USER must be an array of strings for multi methods"))
5803 (unless (and (arrayp host) (not (stringp host)))
5804 (error "HOST must be an array of strings for multi methods"))
5805 (unless (and (= (length method) (length user))
5806 (= (length method) (length host)))
5807 (error "Arrays METHOD, USER, HOST must have equal length"))
5808 (tramp-pre-connection multi-method method user host tramp-chunksize)
5809 (tramp-message 7 "Opening `%s' connection..." multi-method)
5810 (let ((process-environment (copy-sequence process-environment)))
5811 (setenv "TERM" tramp-terminal-type)
5812 (setenv "PS1" "$ ")
5813 (let* ((default-directory (tramp-temporary-file-directory))
5814 ;; If we omit the conditional, we use `undecided-dos' in
5815 ;; some cases. With the conditional, we use nil in these
5816 ;; cases. What's the difference? Which one is right?
5817 (coding-system-for-read (unless (and (not (featurep 'xemacs))
5818 (> emacs-major-version 20))
5819 tramp-dos-coding-system))
5820 (p (start-process (tramp-buffer-name multi-method method user host)
5821 (tramp-get-buffer multi-method method user host)
5822 tramp-multi-sh-program))
5823 (num-hops (length method))
5824 (i 0))
5825 (tramp-set-process-query-on-exit-flag p nil)
5826 (tramp-message 9 "Waiting 60s for local shell to come up...")
5827 (unless (tramp-wait-for-regexp
5828 p 60 (format "\\(%s\\)\\'\\|\\(%s\\)\\'"
5829 shell-prompt-pattern tramp-shell-prompt-pattern))
5830 (pop-to-buffer (buffer-name))
5831 (kill-process p)
5832 (error "Couldn't find local shell prompt"))
5833 ;; Now do all the connections as specified.
5834 (while (< i num-hops)
5835 (let* ((m (aref method i))
5836 (u (aref user i))
5837 (h (aref host i))
5838 (entry (assoc m tramp-multi-connection-function-alist))
5839 (multi-func (nth 1 entry))
5840 (command (nth 2 entry)))
5841 ;; The multi-funcs don't need to do save-match-data, as that
5842 ;; is done here.
5843 (funcall multi-func p m u h command)
5844 (erase-buffer)
5845 (incf i)))
5846 (tramp-open-connection-setup-interactive-shell
5847 p multi-method method user host)
5848 (tramp-post-connection multi-method method user host)))))
5849
5850 ;; HHH: Changed. Multi method. Don't know how to handle this in the case
5851 ;; of no user name provided. Hack to make it work as it did before:
5852 ;; changed `user' to `(or user (user-login-name))' in the places where
5853 ;; the value is actually used.
5854 (defun tramp-multi-connect-telnet (p method user host command)
5855 "Issue `telnet' command.
5856 Uses shell COMMAND to issue a `telnet' command to log in as USER to
5857 HOST. You can use percent escapes in COMMAND: `%h' is replaced with
5858 the host name, and `%n' is replaced with an end of line character, as
5859 set in `tramp-rsh-end-of-line'. Use `%%' if you want a literal percent
5860 character.
5861
5862 If USER is nil, uses the return value of (user-login-name) instead."
5863 (let ((cmd (format-spec command
5864 `((?h . ,host) (?n . ,tramp-rsh-end-of-line))))
5865 (cmd1 (format-spec command `((?h . ,host) (?n . ""))))
5866 found pw)
5867 (erase-buffer)
5868 (tramp-message 9 "Sending telnet command `%s'" cmd1)
5869 (process-send-string p cmd)
5870 (tramp-process-multi-actions p method user host
5871 tramp-multi-actions)))
5872
5873 ;; HHH: Changed. Multi method. Don't know how to handle this in the case
5874 ;; of no user name provided. Hack to make it work as it did before:
5875 ;; changed `user' to `(or user (user-login-name))' in the places where
5876 ;; the value is actually used.
5877 (defun tramp-multi-connect-rlogin (p method user host command)
5878 "Issue `rlogin' command.
5879 Uses shell COMMAND to issue an `rlogin' command to log in as USER to
5880 HOST. You can use percent escapes in COMMAND. `%u' will be replaced
5881 with the user name, `%h' will be replaced with the host name, and `%n'
5882 will be replaced with the value of `tramp-rsh-end-of-line'. You can use
5883 `%%' if you want to use a literal percent character.
5884
5885 If USER is nil, uses the return value of (user-login-name) instead."
5886 (let ((cmd (format-spec command `((?h . ,host)
5887 (?u . ,(or user (user-login-name)))
5888 (?n . ,tramp-rsh-end-of-line))))
5889 (cmd1 (format-spec command `((?h . ,host)
5890 (?u . ,(or user (user-login-name)))
5891 (?n . ""))))
5892 found)
5893 (erase-buffer)
5894 (tramp-message 9 "Sending rlogin command `%s'" cmd1)
5895 (process-send-string p cmd)
5896 (tramp-process-multi-actions p method user host
5897 tramp-multi-actions)))
5898
5899 ;; HHH: Changed. Multi method. Don't know how to handle this in the case
5900 ;; of no user name provided. Hack to make it work as it did before:
5901 ;; changed `user' to `(or user (user-login-name))' in the places where
5902 ;; the value is actually used.
5903 (defun tramp-multi-connect-su (p method user host command)
5904 "Issue `su' command.
5905 Uses shell COMMAND to issue a `su' command to log in as USER on
5906 HOST. The HOST name is ignored, this just changes the user id on the
5907 host currently logged in to.
5908
5909 If USER is nil, uses the return value of (user-login-name) instead.
5910
5911 You can use percent escapes in the COMMAND. `%u' is replaced with the
5912 user name, and `%n' is replaced with the value of
5913 `tramp-rsh-end-of-line'. Use `%%' if you want a literal percent
5914 character."
5915 (let ((cmd (format-spec command `((?u . ,(or user (user-login-name)))
5916 (?n . ,tramp-rsh-end-of-line))))
5917 (cmd1 (format-spec command `((?u . ,(or user (user-login-name)))
5918 (?n . ""))))
5919 found)
5920 (erase-buffer)
5921 (tramp-message 9 "Sending su command `%s'" cmd1)
5922 (process-send-string p cmd)
5923 (tramp-process-multi-actions p method user host
5924 tramp-multi-actions)))
5925
5926 ;; Utility functions.
5927
5928 (defun tramp-accept-process-output
5929 (&optional process timeout timeout-msecs)
5930 "Like `accept-process-output' for Tramp processes.
5931 This is needed in order to hide `last-coding-system-used', which is set
5932 for process communication also."
5933 (let (last-coding-system-used)
5934 (accept-process-output process timeout timeout-msecs)))
5935
5936 (defun tramp-wait-for-regexp (proc timeout regexp)
5937 "Wait for a REGEXP to appear from process PROC within TIMEOUT seconds.
5938 Expects the output of PROC to be sent to the current buffer. Returns
5939 the string that matched, or nil. Waits indefinitely if TIMEOUT is
5940 nil."
5941 (let ((found nil)
5942 (start-time (current-time)))
5943 (cond (timeout
5944 ;; Work around a bug in XEmacs 21, where the timeout
5945 ;; expires faster than it should. This degenerates
5946 ;; to polling for buggy XEmacsen, but oh, well.
5947 (while (and (not found)
5948 (< (tramp-time-diff (current-time) start-time)
5949 timeout))
5950 (with-timeout (timeout)
5951 (while (not found)
5952 (tramp-accept-process-output proc 1)
5953 (unless (memq (process-status proc) '(run open))
5954 (error "Process has died"))
5955 (goto-char (point-min))
5956 (setq found (re-search-forward regexp nil t))))))
5957 (t
5958 (while (not found)
5959 (tramp-accept-process-output proc 1)
5960 (unless (memq (process-status proc) '(run open))
5961 (error "Process has died"))
5962 (goto-char (point-min))
5963 (setq found (re-search-forward regexp nil t)))))
5964 (when tramp-debug-buffer
5965 (append-to-buffer
5966 (tramp-get-debug-buffer tramp-current-multi-method tramp-current-method
5967 tramp-current-user tramp-current-host)
5968 (point-min) (point-max))
5969 (when (not found)
5970 (save-excursion
5971 (set-buffer
5972 (tramp-get-debug-buffer tramp-current-multi-method tramp-current-method
5973 tramp-current-user tramp-current-host))
5974 (goto-char (point-max))
5975 (insert "[[Regexp `" regexp "' not found"
5976 (if timeout (format " in %d secs" timeout) "")
5977 "]]"))))
5978 found))
5979
5980 (defun tramp-wait-for-shell-prompt (proc timeout)
5981 "Wait for the shell prompt to appear from process PROC within TIMEOUT seconds.
5982 See `tramp-wait-for-regexp' for more details.
5983 Shell prompt pattern is determined by variables `shell-prompt-pattern'
5984 and `tramp-shell-prompt-pattern'."
5985 (tramp-wait-for-regexp
5986 proc timeout
5987 (format "\\(%s\\|%s\\)\\'"
5988 shell-prompt-pattern tramp-shell-prompt-pattern)))
5989
5990 (defun tramp-barf-if-no-shell-prompt (proc timeout &rest error-args)
5991 "Wait for shell prompt and barf if none appears.
5992 Looks at process PROC to see if a shell prompt appears in TIMEOUT
5993 seconds. If not, it produces an error message with the given ERROR-ARGS."
5994 (unless (tramp-wait-for-shell-prompt proc timeout)
5995 (pop-to-buffer (buffer-name))
5996 (apply 'error error-args)))
5997
5998 (defun tramp-enter-password (p prompt user host)
5999 "Prompt for a password and send it to the remote end.
6000 Uses PROMPT as a prompt and sends the password to process P."
6001 (let ((pw (tramp-read-passwd user host prompt)))
6002 (erase-buffer)
6003 (process-send-string
6004 p (concat pw
6005 (or (tramp-get-method-parameter
6006 tramp-current-multi-method
6007 tramp-current-method
6008 tramp-current-user
6009 tramp-current-host
6010 'tramp-password-end-of-line)
6011 tramp-default-password-end-of-line)))))
6012
6013 ;; HHH: Not Changed. This might handle the case where USER is not
6014 ;; given in the "File name" very poorly. Then, the local
6015 ;; variable tramp-current-user will be set to nil.
6016 (defun tramp-pre-connection (multi-method method user host chunksize)
6017 "Do some setup before actually logging in.
6018 METHOD, USER and HOST specify the connection."
6019 (set-buffer (tramp-get-buffer multi-method method user host))
6020 (set (make-local-variable 'tramp-current-multi-method) multi-method)
6021 (set (make-local-variable 'tramp-current-method) method)
6022 (set (make-local-variable 'tramp-current-user) user)
6023 (set (make-local-variable 'tramp-current-host) host)
6024 (set (make-local-variable 'tramp-chunksize) chunksize)
6025 (set (make-local-variable 'inhibit-eol-conversion) nil)
6026 (erase-buffer))
6027
6028 (defun tramp-open-connection-setup-interactive-shell
6029 (p multi-method method user host)
6030 "Set up an interactive shell.
6031 Mainly sets the prompt and the echo correctly. P is the shell process
6032 to set up. METHOD, USER and HOST specify the connection."
6033 ;; Wait a bit in case the remote end feels like sending a little
6034 ;; junk first. It seems that fencepost.gnu.org does this when doing
6035 ;; a Kerberos login.
6036 (sit-for 1)
6037 (tramp-discard-garbage-erase-buffer p multi-method method user host)
6038 (tramp-process-initial-commands p multi-method method user host
6039 tramp-initial-commands)
6040 ;; It is useful to set the prompt in the following command because
6041 ;; some people have a setting for $PS1 which /bin/sh doesn't know
6042 ;; about and thus /bin/sh will display a strange prompt. For
6043 ;; example, if $PS1 has "${CWD}" in the value, then ksh will display
6044 ;; the current working directory but /bin/sh will display a dollar
6045 ;; sign. The following command line sets $PS1 to a sane value, and
6046 ;; works under Bourne-ish shells as well as csh-like shells. Daniel
6047 ;; Pittman reports that the unusual positioning of the single quotes
6048 ;; makes it work under `rc', too. We also unset the variable $ENV
6049 ;; because that is read by some sh implementations (eg, bash when
6050 ;; called as sh) on startup; this way, we avoid the startup file
6051 ;; clobbering $PS1.
6052 (tramp-send-command-internal
6053 multi-method method user host
6054 (format "exec env 'ENV=' 'PS1=$ ' %s"
6055 (tramp-get-method-parameter
6056 multi-method method user host 'tramp-remote-sh))
6057 (format "remote `%s' to come up"
6058 (tramp-get-method-parameter
6059 multi-method method user host 'tramp-remote-sh)))
6060 (tramp-barf-if-no-shell-prompt
6061 p 30
6062 "Remote `%s' didn't come up. See buffer `%s' for details"
6063 (tramp-get-method-parameter multi-method method user host 'tramp-remote-sh)
6064 (buffer-name))
6065 (tramp-message 8 "Setting up remote shell environment")
6066 (tramp-discard-garbage-erase-buffer p multi-method method user host)
6067 (tramp-send-command-internal multi-method method user host
6068 "stty -inlcr -echo kill '^U'")
6069 (erase-buffer)
6070 ;; Ignore garbage after stty command.
6071 (tramp-send-command-internal multi-method method user host
6072 "echo foo")
6073 (erase-buffer)
6074 (tramp-send-command-internal multi-method method user host
6075 "TERM=dumb; export TERM")
6076 (erase-buffer)
6077 ;; Check whether the remote host suffers from buggy `send-process-string'.
6078 ;; This is known for FreeBSD (see comment in `send_process', file process.c).
6079 ;; I've tested sending 624 bytes successfully, sending 625 bytes failed.
6080 ;; Emacs makes a hack when this host type is detected locally. It cannot
6081 ;; handle remote hosts, though.
6082 (when (or (not tramp-chunksize) (zerop tramp-chunksize))
6083 (tramp-message 9 "Checking remote host type for `send-process-string' bug")
6084 (tramp-send-command-internal multi-method method user host
6085 "(uname -sr) 2>/dev/null")
6086 (goto-char (point-min))
6087 (when (looking-at "FreeBSD")
6088 (setq tramp-chunksize 500)))
6089
6090 ;; Try to set up the coding system correctly.
6091 ;; CCC this can't be the right way to do it. Hm.
6092 (save-excursion
6093 (erase-buffer)
6094 (tramp-message 9 "Determining coding system")
6095 (tramp-send-command-internal multi-method method user host
6096 "echo foo ; echo bar")
6097 (goto-char (point-min))
6098 (if (featurep 'mule)
6099 ;; Use MULE to select the right EOL convention for communicating
6100 ;; with the process.
6101 (let* ((cs (or (process-coding-system p) (cons 'undecided 'undecided)))
6102 cs-decode cs-encode)
6103 (when (symbolp cs) (setq cs (cons cs cs)))
6104 (setq cs-decode (car cs))
6105 (setq cs-encode (cdr cs))
6106 (unless cs-decode (setq cs-decode 'undecided))
6107 (unless cs-encode (setq cs-encode 'undecided))
6108 (setq cs-encode (tramp-coding-system-change-eol-conversion
6109 cs-encode 'unix))
6110 (when (search-forward "\r" nil t)
6111 (setq cs-decode (tramp-coding-system-change-eol-conversion
6112 cs-decode 'dos)))
6113 (set-buffer-process-coding-system cs-decode cs-encode))
6114 ;; Look for ^M and do something useful if found.
6115 (when (search-forward "\r" nil t)
6116 ;; We have found a ^M but cannot frob the process coding system
6117 ;; because we're running on a non-MULE Emacs. Let's try
6118 ;; stty, instead.
6119 (erase-buffer)
6120 (tramp-message 9 "Trying `stty -onlcr'")
6121 (tramp-send-command-internal multi-method method user host
6122 "stty -onlcr"))))
6123 (erase-buffer)
6124 (tramp-message
6125 9 "Waiting 30s for `HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE; export HISTSIZE'")
6126 (tramp-send-command-internal
6127 multi-method method user host
6128 "HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE; export HISTSIZE")
6129 (erase-buffer)
6130 (tramp-message 9 "Waiting 30s for `set +o vi +o emacs'")
6131 (tramp-send-command-internal multi-method method user host
6132 "set +o vi +o emacs")
6133 (erase-buffer)
6134 (tramp-message 9 "Waiting 30s for `unset MAIL MAILCHECK MAILPATH'")
6135 (tramp-send-command-internal
6136 multi-method method user host
6137 "unset MAIL MAILCHECK MAILPATH 1>/dev/null 2>/dev/null")
6138 (erase-buffer)
6139 (tramp-message 9 "Waiting 30s for `unset CDPATH'")
6140 (tramp-send-command-internal multi-method method user host
6141 "unset CDPATH")
6142 (erase-buffer)
6143 (tramp-message 9 "Setting shell prompt")
6144 ;; Douglas Gray Stephens <DGrayStephens@slb.com> says that we must
6145 ;; use "\n" here, not tramp-rsh-end-of-line. We also manually frob
6146 ;; the last time we sent a command, to avoid tramp-send-command to send
6147 ;; "echo are you awake".
6148 (setq tramp-last-cmd-time (current-time))
6149 (tramp-send-command
6150 multi-method method user host
6151 (format "PS1='%s%s%s'; PS2=''; PS3=''"
6152 tramp-rsh-end-of-line
6153 tramp-end-of-output
6154 tramp-rsh-end-of-line))
6155 (tramp-wait-for-output))
6156
6157 (defun tramp-post-connection (multi-method method user host)
6158 "Prepare a remote shell before being able to work on it.
6159 METHOD, USER and HOST specify the connection.
6160 Among other things, this finds a shell which groks tilde expansion,
6161 tries to find an `ls' command which groks the `-n' option, sets the
6162 locale to C and sets up the remote shell search path."
6163 ;; Search for a good shell before searching for a command which
6164 ;; checks if a file exists. This is done because Tramp wants to use
6165 ;; "test foo; echo $?" to check if various conditions hold, and
6166 ;; there are buggy /bin/sh implementations which don't execute the
6167 ;; "echo $?" part if the "test" part has an error. In particular,
6168 ;; the Solaris /bin/sh is a problem. I'm betting that all systems
6169 ;; with buggy /bin/sh implementations will have a working bash or
6170 ;; ksh. Whee...
6171 (tramp-find-shell multi-method method user host)
6172 ;; Without (sit-for 0.1) at least, my machine will almost always blow
6173 ;; up on 'not numberp /root' - a race that causes the 'echo ~root'
6174 ;; output of (tramp-find-shell) to show up along with the output of
6175 ;; (tramp-find-ls-command) testing.
6176 ;;
6177 ;; I can't work out why this is a problem though. The (tramp-wait-for-output)
6178 ;; call in (tramp-find-shell) *should* make this not happen, I thought.
6179 ;;
6180 ;; After much debugging I couldn't find any problem with the implementation
6181 ;; of that function though. The workaround stays for me at least. :/
6182 ;;
6183 ;; Daniel Pittman <daniel@danann.net>
6184 (sleep-for 1)
6185 (erase-buffer)
6186 (tramp-find-file-exists-command multi-method method user host)
6187 (make-local-variable 'tramp-ls-command)
6188 (setq tramp-ls-command (tramp-find-ls-command multi-method method user host))
6189 (unless tramp-ls-command
6190 (tramp-message
6191 1
6192 "Danger! Couldn't find ls which groks -n. Muddling through anyway")
6193 (setq tramp-ls-command
6194 (tramp-find-executable multi-method method user host
6195 "ls" tramp-remote-path nil)))
6196 (unless tramp-ls-command
6197 (error "Fatal error: Couldn't find remote executable `ls'"))
6198 (tramp-message 5 "Using remote command `%s' for getting directory listings"
6199 tramp-ls-command)
6200 (tramp-send-command multi-method method user host
6201 (concat "tramp_set_exit_status () {" tramp-rsh-end-of-line
6202 "return $1" tramp-rsh-end-of-line
6203 "}"))
6204 (tramp-wait-for-output)
6205 ;; Set remote PATH variable.
6206 (tramp-set-remote-path multi-method method user host "PATH" tramp-remote-path)
6207 ;; Tell remote shell to use standard time format, needed for
6208 ;; parsing `ls -l' output.
6209 (tramp-send-command multi-method method user host
6210 "LC_TIME=C; export LC_TIME; echo huhu")
6211 (tramp-wait-for-output)
6212 (tramp-send-command multi-method method user host
6213 "mesg n; echo huhu")
6214 (tramp-wait-for-output)
6215 (tramp-send-command multi-method method user host
6216 "biff n ; echo huhu")
6217 (tramp-wait-for-output)
6218 ;; Unalias ls(1) to work around issues with those silly people who make it
6219 ;; spit out ANSI escapes or whatever.
6220 (tramp-send-command multi-method method user host
6221 "unalias ls; echo huhu")
6222 (tramp-wait-for-output)
6223 ;; Does `test A -nt B' work? Use abominable `find' construct if it
6224 ;; doesn't. BSD/OS 4.0 wants the parentheses around the command,
6225 ;; for otherwise the shell crashes.
6226 (erase-buffer)
6227 (make-local-variable 'tramp-test-groks-nt)
6228 (tramp-send-command multi-method method user host
6229 "( test / -nt / )")
6230 (tramp-wait-for-output)
6231 (goto-char (point-min))
6232 (setq tramp-test-groks-nt
6233 (looking-at (format "\n%s\r?\n" (regexp-quote tramp-end-of-output))))
6234 (unless tramp-test-groks-nt
6235 (tramp-send-command
6236 multi-method method user host
6237 (concat "tramp_test_nt () {" tramp-rsh-end-of-line
6238 "test -n \"`find $1 -prune -newer $2 -print`\"" tramp-rsh-end-of-line
6239 "}")))
6240 (tramp-wait-for-output)
6241 ;; Send the fallback `uudecode' script.
6242 (erase-buffer)
6243 (tramp-send-string multi-method method user host tramp-uudecode)
6244 (tramp-wait-for-output)
6245 ;; Find a `perl'.
6246 (erase-buffer)
6247 (tramp-set-connection-property "perl-scripts" nil multi-method method user host)
6248 (let ((tramp-remote-perl
6249 (or (tramp-find-executable multi-method method user host
6250 "perl5" tramp-remote-path nil)
6251 (tramp-find-executable multi-method method user host
6252 "perl" tramp-remote-path nil))))
6253 (when tramp-remote-perl
6254 (tramp-set-connection-property "perl" tramp-remote-perl
6255 multi-method method user host)
6256 (unless (tramp-method-out-of-band-p multi-method method user host)
6257 (tramp-message 5 "Sending the Perl `mime-encode' implementations.")
6258 (tramp-send-string
6259 multi-method method user host
6260 (concat "tramp_encode () {\n"
6261 (format tramp-perl-encode tramp-remote-perl)
6262 " 2>/dev/null"
6263 "\n}"))
6264 (tramp-wait-for-output)
6265 (tramp-send-string
6266 multi-method method user host
6267 (concat "tramp_encode_with_module () {\n"
6268 (format tramp-perl-encode-with-module tramp-remote-perl)
6269 " 2>/dev/null"
6270 "\n}"))
6271 (tramp-wait-for-output)
6272 (tramp-message 5 "Sending the Perl `mime-decode' implementations.")
6273 (tramp-send-string
6274 multi-method method user host
6275 (concat "tramp_decode () {\n"
6276 (format tramp-perl-decode tramp-remote-perl)
6277 " 2>/dev/null"
6278 "\n}"))
6279 (tramp-wait-for-output)
6280 (tramp-send-string
6281 multi-method method user host
6282 (concat "tramp_decode_with_module () {\n"
6283 (format tramp-perl-decode-with-module tramp-remote-perl)
6284 " 2>/dev/null"
6285 "\n}"))
6286 (tramp-wait-for-output))))
6287 ;; Find ln(1)
6288 (erase-buffer)
6289 (let ((ln (tramp-find-executable multi-method method user host
6290 "ln" tramp-remote-path nil)))
6291 (when ln
6292 (tramp-set-connection-property "ln" ln multi-method method user host)))
6293 ;; Set uid and gid.
6294 (erase-buffer)
6295 (tramp-send-command multi-method method user host "id -u; id -g")
6296 (tramp-wait-for-output)
6297 (goto-char (point-min))
6298 (tramp-set-connection-property
6299 "uid" (read (current-buffer)) multi-method method user host)
6300 (tramp-set-connection-property
6301 "gid" (read (current-buffer)) multi-method method user host)
6302 ;; Find the right encoding/decoding commands to use.
6303 (erase-buffer)
6304 (unless (tramp-method-out-of-band-p multi-method method user host)
6305 (tramp-find-inline-encoding multi-method method user host))
6306 ;; If encoding/decoding command are given, test to see if they work.
6307 ;; CCC: Maybe it would be useful to run the encoder both locally and
6308 ;; remotely to see if they produce the same result.
6309 (let ((rem-enc (tramp-get-remote-encoding multi-method method user host))
6310 (rem-dec (tramp-get-remote-decoding multi-method method user host))
6311 (magic-string "xyzzy"))
6312 (when (and (or rem-dec rem-enc) (not (and rem-dec rem-enc)))
6313 (tramp-kill-process multi-method method user host)
6314 ;; Improve error message and/or error check.
6315 (error
6316 "Must give both decoding and encoding command in method definition"))
6317 (when (and rem-enc rem-dec)
6318 (tramp-message
6319 5
6320 "Checking to see if encoding/decoding commands work on remote host...")
6321 (tramp-send-command
6322 multi-method method user host
6323 (format "echo %s | %s | %s"
6324 (tramp-shell-quote-argument magic-string) rem-enc rem-dec))
6325 (tramp-wait-for-output)
6326 (unless (looking-at (regexp-quote magic-string))
6327 (tramp-kill-process multi-method method user host)
6328 (error "Remote host cannot execute de/encoding commands. See buffer `%s' for details"
6329 (buffer-name)))
6330 (erase-buffer)
6331 (tramp-message
6332 5 "Checking to see if encoding/decoding commands work on remote host...done"))))
6333
6334 ;; CCC: We should either implement a Perl version of base64 encoding
6335 ;; and decoding. Then we just use that in the last item. The other
6336 ;; alternative is to use the Perl version of UU encoding. But then
6337 ;; we need a Lisp version of uuencode.
6338 ;;
6339 ;; Old text from documentation of tramp-methods:
6340 ;; Using a uuencode/uudecode inline method is discouraged, please use one
6341 ;; of the base64 methods instead since base64 encoding is much more
6342 ;; reliable and the commands are more standardized between the different
6343 ;; Unix versions. But if you can't use base64 for some reason, please
6344 ;; note that the default uudecode command does not work well for some
6345 ;; Unices, in particular AIX and Irix. For AIX, you might want to use
6346 ;; the following command for uudecode:
6347 ;;
6348 ;; sed '/^begin/d;/^[` ]$/d;/^end/d' | iconv -f uucode -t ISO8859-1
6349 ;;
6350 ;; For Irix, no solution is known yet.
6351
6352 (defvar tramp-coding-commands
6353 '(("mimencode -b" "mimencode -u -b"
6354 base64-encode-region base64-decode-region)
6355 ("mmencode -b" "mmencode -u -b"
6356 base64-encode-region base64-decode-region)
6357 ("recode data..base64" "recode base64..data"
6358 base64-encode-region base64-decode-region)
6359 ("uuencode xxx" "uudecode -o /dev/stdout"
6360 tramp-uuencode-region uudecode-decode-region)
6361 ("uuencode xxx" "uudecode -o -"
6362 tramp-uuencode-region uudecode-decode-region)
6363 ("uuencode xxx" "uudecode -p"
6364 tramp-uuencode-region uudecode-decode-region)
6365 ("uuencode xxx" "tramp_uudecode"
6366 tramp-uuencode-region uudecode-decode-region)
6367 ("tramp_encode_with_module" "tramp_decode_with_module"
6368 base64-encode-region base64-decode-region)
6369 ("tramp_encode" "tramp_decode"
6370 base64-encode-region base64-decode-region))
6371 "List of coding commands for inline transfer.
6372 Each item is a list that looks like this:
6373
6374 \(REMOTE-ENCODING REMOTE-DECODING LOCAL-ENCODING LOCAL-DECODING)
6375
6376 The REMOTE-ENCODING should be a string, giving a command accepting a
6377 plain file on standard input and writing the encoded file to standard
6378 output. The REMOTE-DECODING should also be a string, giving a command
6379 accepting an encoded file on standard input and writing the decoded
6380 file to standard output.
6381
6382 LOCAL-ENCODING and LOCAL-DECODING can be strings, giving commands, or
6383 symbols, giving functions. If they are strings, then they can contain
6384 the \"%s\" format specifier. If that specifier is present, the input
6385 filename will be put into the command line at that spot. If the
6386 specifier is not present, the input should be read from standard
6387 input.
6388
6389 If they are functions, they will be called with two arguments, start
6390 and end of region, and are expected to replace the region contents
6391 with the encoded or decoded results, respectively.")
6392
6393 (defun tramp-find-inline-encoding (multi-method method user host)
6394 "Find an inline transfer encoding that works.
6395 Goes through the list `tramp-coding-commands'."
6396 (let ((commands tramp-coding-commands)
6397 (magic "xyzzy")
6398 item found)
6399 (while (and commands (null found))
6400 (setq item (pop commands))
6401 (catch 'wont-work
6402 (let ((rem-enc (nth 0 item))
6403 (rem-dec (nth 1 item))
6404 (loc-enc (nth 2 item))
6405 (loc-dec (nth 3 item)))
6406 ;; Check if remote encoding and decoding commands can be
6407 ;; called remotely with null input and output. This makes
6408 ;; sure there are no syntax errors and the command is really
6409 ;; found. Note that we do not redirect stdout to /dev/null,
6410 ;; for two reaons: when checking the decoding command, we
6411 ;; actually check the output it gives. And also, when
6412 ;; redirecting "mimencode" output to /dev/null, then as root
6413 ;; it might change the permissions of /dev/null!
6414 (tramp-message-for-buffer
6415 multi-method method user host 9
6416 "Checking remote encoding command `%s' for sanity" rem-enc)
6417 (unless (zerop (tramp-send-command-and-check
6418 multi-method method user host
6419 (format "%s </dev/null" rem-enc) t))
6420 (throw 'wont-work nil))
6421 (tramp-message-for-buffer
6422 multi-method method user host 9
6423 "Checking remote decoding command `%s' for sanity" rem-dec)
6424 (unless (zerop (tramp-send-command-and-check
6425 multi-method method user host
6426 (format "echo %s | %s | %s"
6427 magic rem-enc rem-dec) t))
6428 (throw 'wont-work nil))
6429 (save-excursion
6430 (goto-char (point-min))
6431 (unless (looking-at (regexp-quote magic))
6432 (throw 'wont-work nil)))
6433 ;; If the local encoder or decoder is a string, the
6434 ;; corresponding command has to work locally.
6435 (when (stringp loc-enc)
6436 (tramp-message-for-buffer
6437 multi-method method user host 9
6438 "Checking local encoding command `%s' for sanity" loc-enc)
6439 (unless (zerop (tramp-call-local-coding-command
6440 loc-enc nil nil))
6441 (throw 'wont-work nil)))
6442 (when (stringp loc-dec)
6443 (tramp-message-for-buffer
6444 multi-method method user host 9
6445 "Checking local decoding command `%s' for sanity" loc-dec)
6446 (unless (zerop (tramp-call-local-coding-command
6447 loc-dec nil nil))
6448 (throw 'wont-work nil)))
6449 ;; CCC: At this point, maybe we should check that the output
6450 ;; of the commands is correct. But for the moment we will
6451 ;; assume that commands working on empty input will also
6452 ;; work in practice.
6453 (setq found item))))
6454 ;; Did we find something? If not, issue error. If so,
6455 ;; set connection properties.
6456 (unless found
6457 (error "Couldn't find an inline transfer encoding"))
6458 (let ((rem-enc (nth 0 found))
6459 (rem-dec (nth 1 found))
6460 (loc-enc (nth 2 found))
6461 (loc-dec (nth 3 found)))
6462 (tramp-message 10 "Using remote encoding %s" rem-enc)
6463 (tramp-set-remote-encoding multi-method method user host rem-enc)
6464 (tramp-message 10 "Using remote decoding %s" rem-dec)
6465 (tramp-set-remote-decoding multi-method method user host rem-dec)
6466 (tramp-message 10 "Using local encoding %s" loc-enc)
6467 (tramp-set-local-encoding multi-method method user host loc-enc)
6468 (tramp-message 10 "Using local decoding %s" loc-dec)
6469 (tramp-set-local-decoding multi-method method user host loc-dec))))
6470
6471 (defun tramp-call-local-coding-command (cmd input output)
6472 "Call the local encoding or decoding command.
6473 If CMD contains \"%s\", provide input file INPUT there in command.
6474 Otherwise, INPUT is passed via standard input.
6475 INPUT can also be nil which means `/dev/null'.
6476 OUTPUT can be a string (which specifies a filename), or t (which
6477 means standard output and thus the current buffer), or nil (which
6478 means discard it)."
6479 (call-process
6480 tramp-encoding-shell ;program
6481 (when (and input (not (string-match "%s" cmd)))
6482 input) ;input
6483 (if (eq output t) t nil) ;output
6484 nil ;redisplay
6485 tramp-encoding-command-switch
6486 ;; actual shell command
6487 (concat
6488 (if (string-match "%s" cmd) (format cmd input) cmd)
6489 (if (stringp output) (concat "> " output) ""))))
6490
6491 (defun tramp-maybe-open-connection (multi-method method user host)
6492 "Maybe open a connection to HOST, logging in as USER, using METHOD.
6493 Does not do anything if a connection is already open, but re-opens the
6494 connection if a previous connection has died for some reason."
6495 (let ((p (get-buffer-process
6496 (tramp-get-buffer multi-method method user host)))
6497 last-cmd-time)
6498 ;; If too much time has passed since last command was sent, look
6499 ;; whether process is still alive. If it isn't, kill it. When
6500 ;; using ssh, it can sometimes happen that the remote end has hung
6501 ;; up but the local ssh client doesn't recognize this until it
6502 ;; tries to send some data to the remote end. So that's why we
6503 ;; try to send a command from time to time, then look again
6504 ;; whether the process is really alive.
6505 (save-excursion
6506 (set-buffer (tramp-get-buffer multi-method method user host))
6507 (when (and tramp-last-cmd-time
6508 (> (tramp-time-diff (current-time) tramp-last-cmd-time) 60)
6509 p (processp p) (memq (process-status p) '(run open)))
6510 (tramp-send-command
6511 multi-method method user host "echo are you awake" nil t)
6512 (unless (and (memq (process-status p) '(run open))
6513 (tramp-wait-for-output 10))
6514 (delete-process p)
6515 (setq p nil))
6516 (erase-buffer)))
6517 (unless (and p (processp p) (memq (process-status p) '(run open)))
6518 (when (and p (processp p))
6519 (delete-process p))
6520 (let ((process-connection-type tramp-process-connection-type))
6521 (funcall (tramp-get-method-parameter
6522 multi-method
6523 (tramp-find-method multi-method method user host)
6524 user host 'tramp-connection-function)
6525 multi-method method user host)))))
6526
6527 (defun tramp-send-command
6528 (multi-method method user host command &optional noerase neveropen)
6529 "Send the COMMAND to USER at HOST (logged in using METHOD).
6530 Erases temporary buffer before sending the command (unless NOERASE
6531 is true).
6532 If optional seventh arg NEVEROPEN is non-nil, never try to open the
6533 connection. This is meant to be used from
6534 `tramp-maybe-open-connection' only."
6535 (or neveropen
6536 (tramp-maybe-open-connection multi-method method user host))
6537 (setq tramp-last-cmd-time (current-time))
6538 (setq tramp-last-cmd command)
6539 (when tramp-debug-buffer
6540 (save-excursion
6541 (set-buffer (tramp-get-debug-buffer multi-method method user host))
6542 (goto-char (point-max))
6543 (tramp-insert-with-face 'bold (format "$ %s\n" command))))
6544 (let ((proc nil))
6545 (set-buffer (tramp-get-buffer multi-method method user host))
6546 (unless noerase (erase-buffer))
6547 (setq proc (get-buffer-process (current-buffer)))
6548 (process-send-string proc
6549 (concat command tramp-rsh-end-of-line))))
6550
6551 (defun tramp-send-command-internal
6552 (multi-method method user host command &optional msg)
6553 "Send command to remote host and wait for success.
6554 Sends COMMAND, then waits 30 seconds for shell prompt."
6555 (tramp-send-command multi-method method user host command t t)
6556 (when msg
6557 (tramp-message 9 "Waiting 30s for %s..." msg))
6558 (tramp-barf-if-no-shell-prompt
6559 nil 30
6560 "Couldn't `%s', see buffer `%s'" command (buffer-name)))
6561
6562 (defun tramp-wait-for-output (&optional timeout)
6563 "Wait for output from remote rsh command."
6564 (let ((proc (get-buffer-process (current-buffer)))
6565 (found nil)
6566 (start-time (current-time))
6567 (start-point (point))
6568 (end-of-output (concat "^"
6569 (regexp-quote tramp-end-of-output)
6570 "\r?$")))
6571 ;; Algorithm: get waiting output. See if last line contains
6572 ;; end-of-output sentinel. If not, wait a bit and again get
6573 ;; waiting output. Repeat until timeout expires or end-of-output
6574 ;; sentinel is seen. Will hang if timeout is nil and
6575 ;; end-of-output sentinel never appears.
6576 (save-match-data
6577 (cond (timeout
6578 ;; Work around an XEmacs bug, where the timeout expires
6579 ;; faster than it should. This degenerates into polling
6580 ;; for buggy XEmacsen, but oh, well.
6581 (while (and (not found)
6582 (< (tramp-time-diff (current-time) start-time)
6583 timeout))
6584 (with-timeout (timeout)
6585 (while (not found)
6586 (tramp-accept-process-output proc 1)
6587 (unless (memq (process-status proc) '(run open))
6588 (error "Process has died"))
6589 (goto-char (point-max))
6590 (forward-line -1)
6591 (setq found (looking-at end-of-output))))))
6592 (t
6593 (while (not found)
6594 (tramp-accept-process-output proc 1)
6595 (unless (memq (process-status proc) '(run open))
6596 (error "Process has died"))
6597 (goto-char (point-max))
6598 (forward-line -1)
6599 (setq found (looking-at end-of-output))))))
6600 ;; At this point, either the timeout has expired or we have found
6601 ;; the end-of-output sentinel.
6602 (when found
6603 (goto-char (point-max))
6604 (forward-line -2)
6605 (delete-region (point) (point-max)))
6606 ;; If processing echoes, look for it in the first line and delete.
6607 (when tramp-process-echoes
6608 (save-excursion
6609 (goto-char start-point)
6610 (when (looking-at (regexp-quote tramp-last-cmd))
6611 (delete-region (point) (progn (forward-line 1) (point))))))
6612 ;; Add output to debug buffer if appropriate.
6613 (when tramp-debug-buffer
6614 (append-to-buffer
6615 (tramp-get-debug-buffer tramp-current-multi-method tramp-current-method
6616 tramp-current-user tramp-current-host)
6617 (point-min) (point-max))
6618 (when (not found)
6619 (save-excursion
6620 (set-buffer
6621 (tramp-get-debug-buffer tramp-current-multi-method tramp-current-method
6622 tramp-current-user tramp-current-host))
6623 (goto-char (point-max))
6624 (insert "[[Remote prompt `" end-of-output "' not found"
6625 (if timeout (format " in %d secs" timeout) "")
6626 "]]"))))
6627 (goto-char (point-min))
6628 ;; Return value is whether end-of-output sentinel was found.
6629 found))
6630
6631 (defun tramp-send-command-and-check (multi-method method user host command
6632 &optional subshell)
6633 "Run COMMAND and check its exit status.
6634 MULTI-METHOD and METHOD specify how to log in (as USER) to the remote HOST.
6635 Sends `echo $?' along with the COMMAND for checking the exit status. If
6636 COMMAND is nil, just sends `echo $?'. Returns the exit status found.
6637
6638 If the optional argument SUBSHELL is non-nil, the command is executed in
6639 a subshell, ie surrounded by parentheses."
6640 (tramp-send-command multi-method method user host
6641 (concat (if subshell "( " "")
6642 command
6643 (if command " 2>/dev/null; " "")
6644 "echo tramp_exit_status $?"
6645 (if subshell " )" " ")))
6646 (tramp-wait-for-output)
6647 (goto-char (point-max))
6648 (unless (search-backward "tramp_exit_status " nil t)
6649 (error "Couldn't find exit status of `%s'" command))
6650 (skip-chars-forward "^ ")
6651 (read (current-buffer)))
6652
6653 (defun tramp-barf-unless-okay (multi-method method user host command subshell
6654 signal fmt &rest args)
6655 "Run COMMAND, check exit status, throw error if exit status not okay.
6656 Similar to `tramp-send-command-and-check' but accepts two more arguments
6657 FMT and ARGS which are passed to `error'."
6658 (unless (zerop (tramp-send-command-and-check
6659 multi-method method user host command subshell))
6660 ;; CCC: really pop-to-buffer? Maybe it's appropriate to be more
6661 ;; silent.
6662 (pop-to-buffer (current-buffer))
6663 (funcall 'signal signal (apply 'format fmt args))))
6664
6665 ;; It seems that Tru64 Unix does not like it if long strings are sent
6666 ;; to it in one go. (This happens when sending the Perl
6667 ;; `file-attributes' implementation, for instance.) Therefore, we
6668 ;; have this function which waits a bit at each line.
6669 (defun tramp-send-string
6670 (multi-method method user host string)
6671 "Send the STRING to USER at HOST using METHOD.
6672
6673 The STRING is expected to use Unix line-endings, but the lines sent to
6674 the remote host use line-endings as defined in the variable
6675 `tramp-rsh-end-of-line'."
6676 (let ((proc (get-buffer-process
6677 (tramp-get-buffer multi-method method user host))))
6678 (unless proc
6679 (error "Can't send string to remote host -- not logged in"))
6680 ;; debug message
6681 (when tramp-debug-buffer
6682 (save-excursion
6683 (set-buffer (tramp-get-debug-buffer multi-method method user host))
6684 (goto-char (point-max))
6685 (tramp-insert-with-face 'bold (format "$ %s\n" string))))
6686 ;; replace "\n" by `tramp-rsh-end-of-line'
6687 (setq string
6688 (mapconcat 'identity
6689 (split-string string "\n")
6690 tramp-rsh-end-of-line))
6691 (unless (or (string= string "")
6692 (string-equal (substring string -1) tramp-rsh-end-of-line))
6693 (setq string (concat string tramp-rsh-end-of-line)))
6694 ;; send the string
6695 (if (and tramp-chunksize (not (zerop tramp-chunksize)))
6696 (let ((pos 0)
6697 (end (length string)))
6698 (while (< pos end)
6699 (tramp-message-for-buffer
6700 multi-method method user host 10
6701 "Sending chunk from %s to %s"
6702 pos (min (+ pos tramp-chunksize) end))
6703 (process-send-string
6704 proc (substring string pos (min (+ pos tramp-chunksize) end)))
6705 (setq pos (+ pos tramp-chunksize))
6706 (sleep-for 0.1)))
6707 (process-send-string proc string))))
6708
6709 (defun tramp-send-eof (multi-method method user host)
6710 "Send EOF to the remote end.
6711 METHOD, HOST and USER specify the connection."
6712 (let ((proc (get-buffer-process
6713 (tramp-get-buffer multi-method method user host))))
6714 (unless proc
6715 (error "Can't send EOF to remote host -- not logged in"))
6716 (process-send-eof proc)))
6717 ; (process-send-string proc "\^D")))
6718
6719 (defun tramp-kill-process (multi-method method user host)
6720 "Kill the connection process used by Tramp.
6721 MULTI-METHOD, METHOD, USER, and HOST specify the connection."
6722 (let ((proc (get-buffer-process
6723 (tramp-get-buffer multi-method method user host))))
6724 (kill-process proc)))
6725
6726 (defun tramp-discard-garbage-erase-buffer (p multi-method method user host)
6727 "Erase buffer, then discard subsequent garbage.
6728 If `tramp-discard-garbage' is nil, just erase buffer."
6729 (if (not tramp-discard-garbage)
6730 (erase-buffer)
6731 (while (prog1 (erase-buffer) (tramp-accept-process-output p 0.25))
6732 (when tramp-debug-buffer
6733 (save-excursion
6734 (set-buffer (tramp-get-debug-buffer multi-method method user host))
6735 (goto-char (point-max))
6736 (tramp-insert-with-face
6737 'bold (format "Additional characters detected\n")))))))
6738
6739 (defun tramp-mode-string-to-int (mode-string)
6740 "Converts a ten-letter `drwxrwxrwx'-style mode string into mode bits."
6741 (let* ((mode-chars (string-to-vector mode-string))
6742 (owner-read (aref mode-chars 1))
6743 (owner-write (aref mode-chars 2))
6744 (owner-execute-or-setid (aref mode-chars 3))
6745 (group-read (aref mode-chars 4))
6746 (group-write (aref mode-chars 5))
6747 (group-execute-or-setid (aref mode-chars 6))
6748 (other-read (aref mode-chars 7))
6749 (other-write (aref mode-chars 8))
6750 (other-execute-or-sticky (aref mode-chars 9)))
6751 (save-match-data
6752 (logior
6753 (case owner-read
6754 (?r (tramp-octal-to-decimal "00400")) (?- 0)
6755 (t (error "Second char `%c' must be one of `r-'" owner-read)))
6756 (case owner-write
6757 (?w (tramp-octal-to-decimal "00200")) (?- 0)
6758 (t (error "Third char `%c' must be one of `w-'" owner-write)))
6759 (case owner-execute-or-setid
6760 (?x (tramp-octal-to-decimal "00100"))
6761 (?S (tramp-octal-to-decimal "04000"))
6762 (?s (tramp-octal-to-decimal "04100"))
6763 (?- 0)
6764 (t (error "Fourth char `%c' must be one of `xsS-'"
6765 owner-execute-or-setid)))
6766 (case group-read
6767 (?r (tramp-octal-to-decimal "00040")) (?- 0)
6768 (t (error "Fifth char `%c' must be one of `r-'" group-read)))
6769 (case group-write
6770 (?w (tramp-octal-to-decimal "00020")) (?- 0)
6771 (t (error "Sixth char `%c' must be one of `w-'" group-write)))
6772 (case group-execute-or-setid
6773 (?x (tramp-octal-to-decimal "00010"))
6774 (?S (tramp-octal-to-decimal "02000"))
6775 (?s (tramp-octal-to-decimal "02010"))
6776 (?- 0)
6777 (t (error "Seventh char `%c' must be one of `xsS-'"
6778 group-execute-or-setid)))
6779 (case other-read
6780 (?r (tramp-octal-to-decimal "00004")) (?- 0)
6781 (t (error "Eighth char `%c' must be one of `r-'" other-read)))
6782 (case other-write
6783 (?w (tramp-octal-to-decimal "00002")) (?- 0)
6784 (t (error "Nineth char `%c' must be one of `w-'" other-write)))
6785 (case other-execute-or-sticky
6786 (?x (tramp-octal-to-decimal "00001"))
6787 (?T (tramp-octal-to-decimal "01000"))
6788 (?t (tramp-octal-to-decimal "01001"))
6789 (?- 0)
6790 (t (error "Tenth char `%c' must be one of `xtT-'"
6791 other-execute-or-sticky)))))))
6792
6793 (defun tramp-convert-file-attributes (multi-method method user host attr)
6794 "Convert file-attributes ATTR generated by perl script or ls.
6795 Convert file mode bits to string and set virtual device number.
6796 Return ATTR."
6797 ;; Convert file mode bits to string.
6798 (unless (stringp (nth 8 attr))
6799 (setcar (nthcdr 8 attr) (tramp-file-mode-from-int (nth 8 attr))))
6800 ;; Set file's gid change bit. Possible only when id-format is 'integer.
6801 (when (numberp (nth 3 attr))
6802 (setcar (nthcdr 9 attr)
6803 (not (= (nth 3 attr)
6804 (tramp-get-remote-gid multi-method method user host)))))
6805 ;; Set virtual device number.
6806 (setcar (nthcdr 11 attr)
6807 (tramp-get-device multi-method method user host))
6808 attr)
6809
6810 (defun tramp-get-device (multi-method method user host)
6811 "Returns the virtual device number.
6812 If it doesn't exist, generate a new one."
6813 (let ((string (tramp-make-tramp-file-name multi-method method user host "")))
6814 (unless (assoc string tramp-devices)
6815 (add-to-list 'tramp-devices
6816 (list string (length tramp-devices))))
6817 (list -1 (nth 1 (assoc string tramp-devices)))))
6818
6819 (defun tramp-file-mode-from-int (mode)
6820 "Turn an integer representing a file mode into an ls(1)-like string."
6821 (let ((type (cdr (assoc (logand (lsh mode -12) 15) tramp-file-mode-type-map)))
6822 (user (logand (lsh mode -6) 7))
6823 (group (logand (lsh mode -3) 7))
6824 (other (logand (lsh mode -0) 7))
6825 (suid (> (logand (lsh mode -9) 4) 0))
6826 (sgid (> (logand (lsh mode -9) 2) 0))
6827 (sticky (> (logand (lsh mode -9) 1) 0)))
6828 (setq user (tramp-file-mode-permissions user suid "s"))
6829 (setq group (tramp-file-mode-permissions group sgid "s"))
6830 (setq other (tramp-file-mode-permissions other sticky "t"))
6831 (concat type user group other)))
6832
6833
6834 (defun tramp-file-mode-permissions (perm suid suid-text)
6835 "Convert a permission bitset into a string.
6836 This is used internally by `tramp-file-mode-from-int'."
6837 (let ((r (> (logand perm 4) 0))
6838 (w (> (logand perm 2) 0))
6839 (x (> (logand perm 1) 0)))
6840 (concat (or (and r "r") "-")
6841 (or (and w "w") "-")
6842 (or (and suid x suid-text) ; suid, execute
6843 (and suid (upcase suid-text)) ; suid, !execute
6844 (and x "x") "-")))) ; !suid
6845
6846
6847 (defun tramp-decimal-to-octal (i)
6848 "Return a string consisting of the octal digits of I.
6849 Not actually used. Use `(format \"%o\" i)' instead?"
6850 (cond ((< i 0) (error "Cannot convert negative number to octal"))
6851 ((not (integerp i)) (error "Cannot convert non-integer to octal"))
6852 ((zerop i) "0")
6853 (t (concat (tramp-decimal-to-octal (/ i 8))
6854 (number-to-string (% i 8))))))
6855
6856
6857 ;;(defun tramp-octal-to-decimal (ostr)
6858 ;; "Given a string of octal digits, return a decimal number."
6859 ;; (cond ((null ostr) 0)
6860 ;; ((string= "" ostr) 0)
6861 ;; (t (let ((last (aref ostr (1- (length ostr))))
6862 ;; (rest (substring ostr 0 (1- (length ostr)))))
6863 ;; (unless (and (>= last ?0)
6864 ;; (<= last ?7))
6865 ;; (error "Not an octal digit: %c" last))
6866 ;; (+ (- last ?0) (* 8 (tramp-octal-to-decimal rest)))))))
6867 ;; Kudos to Gerd Moellmann for this suggestion.
6868 (defun tramp-octal-to-decimal (ostr)
6869 "Given a string of octal digits, return a decimal number."
6870 (let ((x (or ostr "")))
6871 ;; `save-match' is in `tramp-mode-string-to-int' which calls this.
6872 (unless (string-match "\\`[0-7]*\\'" x)
6873 (error "Non-octal junk in string `%s'" x))
6874 (string-to-number ostr 8)))
6875
6876 (defun tramp-shell-case-fold (string)
6877 "Converts STRING to shell glob pattern which ignores case."
6878 (mapconcat
6879 (lambda (c)
6880 (if (equal (downcase c) (upcase c))
6881 (vector c)
6882 (format "[%c%c]" (downcase c) (upcase c))))
6883 string
6884 ""))
6885
6886
6887 ;; ------------------------------------------------------------
6888 ;; -- TRAMP file names --
6889 ;; ------------------------------------------------------------
6890 ;; Conversion functions between external representation and
6891 ;; internal data structure. Convenience functions for internal
6892 ;; data structure.
6893
6894 (defstruct tramp-file-name multi-method method user host localname)
6895
6896 (defun tramp-tramp-file-p (name)
6897 "Return t iff NAME is a tramp file."
6898 (save-match-data
6899 (string-match tramp-file-name-regexp name)))
6900
6901 ;; HHH: Changed. Used to assign the return value of (user-login-name)
6902 ;; to the `user' part of the structure if a user name was not
6903 ;; provided, now it assigns nil.
6904 (defun tramp-dissect-file-name (name)
6905 "Return an `tramp-file-name' structure.
6906 The structure consists of remote method, remote user, remote host and
6907 localname (file name on remote host)."
6908 (save-match-data
6909 (let* ((match (string-match (nth 0 tramp-file-name-structure) name))
6910 (method
6911 ; single-hop
6912 (if match (match-string (nth 1 tramp-file-name-structure) name)
6913 ; maybe multi-hop
6914 (string-match
6915 (format (nth 0 tramp-multi-file-name-structure)
6916 (nth 0 tramp-multi-file-name-hop-structure)) name)
6917 (match-string (nth 1 tramp-multi-file-name-structure) name))))
6918 (if (and method (member method tramp-multi-methods))
6919 ;; If it's a multi method, the file name structure contains
6920 ;; arrays of method, user and host.
6921 (tramp-dissect-multi-file-name name)
6922 ;; Normal method. First, find out default method.
6923 (unless match (error "Not a tramp file name: %s" name))
6924 (let ((user (match-string (nth 2 tramp-file-name-structure) name))
6925 (host (match-string (nth 3 tramp-file-name-structure) name))
6926 (localname (match-string (nth 4 tramp-file-name-structure) name)))
6927 (make-tramp-file-name
6928 :multi-method nil
6929 :method method
6930 :user (or user nil)
6931 :host host
6932 :localname localname))))))
6933
6934 (defun tramp-find-default-method (user host)
6935 "Look up the right method to use in `tramp-default-method-alist'."
6936 (let ((choices tramp-default-method-alist)
6937 (method tramp-default-method)
6938 item)
6939 (while choices
6940 (setq item (pop choices))
6941 (when (and (string-match (nth 0 item) (or host ""))
6942 (string-match (nth 1 item) (or user "")))
6943 (setq method (nth 2 item))
6944 (setq choices nil)))
6945 method))
6946
6947 (defun tramp-find-method (multi-method method user host)
6948 "Return the right method string to use.
6949 This is MULTI-METHOD, if non-nil. Otherwise, it is METHOD, if non-nil.
6950 If both MULTI-METHOD and METHOD are nil, do a lookup in
6951 `tramp-default-method-alist'."
6952 (or multi-method method (tramp-find-default-method user host)))
6953
6954 ;; HHH: Not Changed. Multi method. Will probably not handle the case where
6955 ;; a user name is not provided in the "file name" very well.
6956 (defun tramp-dissect-multi-file-name (name)
6957 "Not implemented yet."
6958 (let ((regexp (nth 0 tramp-multi-file-name-structure))
6959 (method-index (nth 1 tramp-multi-file-name-structure))
6960 (hops-index (nth 2 tramp-multi-file-name-structure))
6961 (localname-index (nth 3 tramp-multi-file-name-structure))
6962 (hop-regexp (nth 0 tramp-multi-file-name-hop-structure))
6963 (hop-method-index (nth 1 tramp-multi-file-name-hop-structure))
6964 (hop-user-index (nth 2 tramp-multi-file-name-hop-structure))
6965 (hop-host-index (nth 3 tramp-multi-file-name-hop-structure))
6966 method hops len hop-methods hop-users hop-hosts localname)
6967 (unless (string-match (format regexp hop-regexp) name)
6968 (error "Not a multi tramp file name: %s" name))
6969 (setq method (match-string method-index name))
6970 (setq hops (match-string hops-index name))
6971 (setq len (/ (length (match-data t)) 2))
6972 (when (< localname-index 0) (incf localname-index len))
6973 (setq localname (match-string localname-index name))
6974 (let ((index 0))
6975 (while (string-match hop-regexp hops index)
6976 (setq index (match-end 0))
6977 (setq hop-methods
6978 (cons (match-string hop-method-index hops) hop-methods))
6979 (setq hop-users
6980 (cons (match-string hop-user-index hops) hop-users))
6981 (setq hop-hosts
6982 (cons (match-string hop-host-index hops) hop-hosts))))
6983 (make-tramp-file-name
6984 :multi-method method
6985 :method (apply 'vector (reverse hop-methods))
6986 :user (apply 'vector (reverse hop-users))
6987 :host (apply 'vector (reverse hop-hosts))
6988 :localname localname)))
6989
6990 (defun tramp-make-tramp-file-name (multi-method method user host localname)
6991 "Constructs a tramp file name from METHOD, USER, HOST and LOCALNAME."
6992 (if multi-method
6993 (tramp-make-tramp-multi-file-name multi-method method user host localname)
6994 (format-spec
6995 (concat tramp-prefix-format
6996 (when method (concat "%m" tramp-postfix-single-method-format))
6997 (when user (concat "%u" tramp-postfix-user-format))
6998 (when host (concat "%h" tramp-postfix-host-format))
6999 (when localname (concat "%p")))
7000 `((?m . ,method) (?u . ,user) (?h . ,host) (?p . ,localname)))))
7001
7002 ;; CCC: Henrik Holm: Not Changed. Multi Method. What should be done
7003 ;; with this when USER is nil?
7004 (defun tramp-make-tramp-multi-file-name (multi-method method user host localname)
7005 "Constructs a tramp file name for a multi-hop method."
7006 (unless tramp-make-multi-tramp-file-format
7007 (error "`tramp-make-multi-tramp-file-format' is nil"))
7008 (let* ((prefix-format (nth 0 tramp-make-multi-tramp-file-format))
7009 (hop-format (nth 1 tramp-make-multi-tramp-file-format))
7010 (localname-format (nth 2 tramp-make-multi-tramp-file-format))
7011 (prefix (format-spec prefix-format `((?m . ,multi-method))))
7012 (hops "")
7013 (localname (format-spec localname-format `((?p . ,localname))))
7014 (i 0)
7015 (len (length method)))
7016 (while (< i len)
7017 (let ((m (aref method i)) (u (aref user i)) (h (aref host i)))
7018 (setq hops (concat hops (format-spec hop-format
7019 `((?m . ,m) (?u . ,u) (?h . ,h)))))
7020 (incf i)))
7021 (concat prefix hops localname)))
7022
7023 (defun tramp-make-copy-program-file-name (user host localname)
7024 "Create a file name suitable to be passed to `rcp' and workalikes."
7025 (if user
7026 (format "%s@%s:%s" user host localname)
7027 (format "%s:%s" host localname)))
7028
7029 (defun tramp-method-out-of-band-p (multi-method method user host)
7030 "Return t if this is an out-of-band method, nil otherwise."
7031 (tramp-get-method-parameter
7032 multi-method
7033 (tramp-find-method multi-method method user host)
7034 user host 'tramp-copy-program))
7035
7036 ;; Variables local to connection.
7037
7038 (defun tramp-get-ls-command (multi-method method user host)
7039 (save-excursion
7040 (tramp-maybe-open-connection multi-method method user host)
7041 (set-buffer (tramp-get-buffer multi-method method user host))
7042 tramp-ls-command))
7043
7044 (defun tramp-get-test-groks-nt (multi-method method user host)
7045 (save-excursion
7046 (tramp-maybe-open-connection multi-method method user host)
7047 (set-buffer (tramp-get-buffer multi-method method user host))
7048 tramp-test-groks-nt))
7049
7050 (defun tramp-get-file-exists-command (multi-method method user host)
7051 (save-excursion
7052 (tramp-maybe-open-connection multi-method method user host)
7053 (set-buffer (tramp-get-buffer multi-method method user host))
7054 tramp-file-exists-command))
7055
7056 (defun tramp-get-remote-perl (multi-method method user host)
7057 (tramp-get-connection-property "perl" nil multi-method method user host))
7058
7059 (defun tramp-get-remote-ln (multi-method method user host)
7060 (tramp-get-connection-property "ln" nil multi-method method user host))
7061
7062 (defun tramp-get-remote-uid (multi-method method user host)
7063 (tramp-get-connection-property "uid" nil multi-method method user host))
7064
7065 (defun tramp-get-remote-gid (multi-method method user host)
7066 (tramp-get-connection-property "gid" nil multi-method method user host))
7067
7068 ;; Get a property of a TRAMP connection.
7069 (defun tramp-get-connection-property
7070 (property default multi-method method user host)
7071 "Get the named property for the connection.
7072 If the value is not set for the connection, return `default'"
7073 (tramp-maybe-open-connection multi-method method user host)
7074 (with-current-buffer (tramp-get-buffer multi-method method user host)
7075 (let (error)
7076 (condition-case nil
7077 (symbol-value (intern (concat "tramp-connection-property-" property)))
7078 (error default)))))
7079
7080 ;; Set a property of a TRAMP connection.
7081 (defun tramp-set-connection-property
7082 (property value multi-method method user host)
7083 "Set the named property of a TRAMP connection."
7084 (tramp-maybe-open-connection multi-method method user host)
7085 (with-current-buffer (tramp-get-buffer multi-method method user host)
7086 (set (make-local-variable
7087 (intern (concat "tramp-connection-property-" property)))
7088 value)))
7089
7090 ;; Some predefined connection properties.
7091 (defun tramp-set-remote-encoding (multi-method method user host rem-enc)
7092 (tramp-set-connection-property "remote-encoding" rem-enc
7093 multi-method method user host))
7094 (defun tramp-get-remote-encoding (multi-method method user host)
7095 (tramp-get-connection-property "remote-encoding" nil
7096 multi-method method user host))
7097
7098 (defun tramp-set-remote-decoding (multi-method method user host rem-dec)
7099 (tramp-set-connection-property "remote-decoding" rem-dec
7100 multi-method method user host))
7101 (defun tramp-get-remote-decoding (multi-method method user host)
7102 (tramp-get-connection-property "remote-decoding" nil
7103 multi-method method user host))
7104
7105 (defun tramp-set-local-encoding (multi-method method user host loc-enc)
7106 (tramp-set-connection-property "local-encoding" loc-enc
7107 multi-method method user host))
7108 (defun tramp-get-local-encoding (multi-method method user host)
7109 (tramp-get-connection-property "local-encoding" nil
7110 multi-method method user host))
7111
7112 (defun tramp-set-local-decoding (multi-method method user host loc-dec)
7113 (tramp-set-connection-property "local-decoding" loc-dec
7114 multi-method method user host))
7115 (defun tramp-get-local-decoding (multi-method method user host)
7116 (tramp-get-connection-property "local-decoding" nil
7117 multi-method method user host))
7118
7119 (defun tramp-get-method-parameter (multi-method method user host param)
7120 "Return the method parameter PARAM.
7121 If the `tramp-methods' entry does not exist, use the variable PARAM
7122 as default."
7123 (unless (boundp param)
7124 (error "Non-existing method parameter `%s'" param))
7125 (let ((entry (assoc param
7126 (assoc (tramp-find-method multi-method method user host)
7127 tramp-methods))))
7128 (if entry
7129 (second entry)
7130 (symbol-value param))))
7131
7132
7133 ;; Auto saving to a special directory.
7134
7135 (defun tramp-exists-file-name-handler (operation &rest args)
7136 (let ((buffer-file-name "/")
7137 (fnha file-name-handler-alist)
7138 (check-file-name-operation operation)
7139 (file-name-handler-alist
7140 (list
7141 (cons "/"
7142 '(lambda (operation &rest args)
7143 "Returns OPERATION if it is the one to be checked"
7144 (if (equal check-file-name-operation operation)
7145 operation
7146 (let ((file-name-handler-alist fnha))
7147 (apply operation args))))))))
7148 (eq (apply operation args) operation)))
7149
7150 (unless (tramp-exists-file-name-handler 'make-auto-save-file-name)
7151 (defadvice make-auto-save-file-name
7152 (around tramp-advice-make-auto-save-file-name () activate)
7153 "Invoke `tramp-handle-make-auto-save-file-name' for tramp files."
7154 (if (and (buffer-file-name) (tramp-tramp-file-p (buffer-file-name)))
7155 (setq ad-return-value (tramp-handle-make-auto-save-file-name))
7156 ad-do-it))
7157 (add-hook 'tramp-unload-hook
7158 '(lambda () (ad-unadvise 'make-auto-save-file-name))))
7159
7160 ;; In Emacs < 22 and XEmacs < 21.5 autosaved remote files have
7161 ;; permission 0666 minus umask. This is a security threat.
7162
7163 (defun tramp-set-auto-save-file-modes ()
7164 "Set permissions of autosaved remote files to the original permissions."
7165 (let ((bfn (buffer-file-name)))
7166 (when (and (stringp bfn)
7167 (tramp-tramp-file-p bfn)
7168 (stringp buffer-auto-save-file-name)
7169 (not (equal bfn buffer-auto-save-file-name)))
7170 (unless (file-exists-p buffer-auto-save-file-name)
7171 (write-region "" nil buffer-auto-save-file-name))
7172 ;; Permissions should be set always, because there might be an old
7173 ;; auto-saved file belonging to another original file. This could
7174 ;; be a security threat.
7175 (set-file-modes buffer-auto-save-file-name
7176 (or (file-modes bfn) (tramp-octal-to-decimal "0600"))))))
7177
7178 (unless (or (> emacs-major-version 21)
7179 (and (featurep 'xemacs)
7180 (= emacs-major-version 21)
7181 (> emacs-minor-version 4)))
7182 (add-hook 'auto-save-hook 'tramp-set-auto-save-file-modes)
7183 (add-hook 'tramp-unload-hook
7184 '(lambda ()
7185 (remove-hook 'auto-save-hook 'tramp-set-auto-save-file-modes))))
7186
7187 (defun tramp-subst-strs-in-string (alist string)
7188 "Replace all occurrences of the string FROM with TO in STRING.
7189 ALIST is of the form ((FROM . TO) ...)."
7190 (save-match-data
7191 (while alist
7192 (let* ((pr (car alist))
7193 (from (car pr))
7194 (to (cdr pr)))
7195 (while (string-match (regexp-quote from) string)
7196 (setq string (replace-match to t t string)))
7197 (setq alist (cdr alist))))
7198 string))
7199
7200 (defun tramp-insert-with-face (face string)
7201 "Insert text with a specific face."
7202 (let ((start (point)))
7203 (insert string)
7204 (add-text-properties start (point) (list 'face face))))
7205
7206 ;; ------------------------------------------------------------
7207 ;; -- Compatibility functions section --
7208 ;; ------------------------------------------------------------
7209
7210 (defun tramp-temporary-file-directory ()
7211 "Return name of directory for temporary files (compat function).
7212 For Emacs, this is the variable `temporary-file-directory', for XEmacs
7213 this is the function `temp-directory'."
7214 (cond ((boundp 'temporary-file-directory)
7215 (symbol-value 'temporary-file-directory))
7216 ((fboundp 'temp-directory)
7217 (funcall (symbol-function 'temp-directory))) ;pacify byte-compiler
7218 ((let ((d (getenv "TEMP"))) (and d (file-directory-p d)))
7219 (file-name-as-directory (getenv "TEMP")))
7220 ((let ((d (getenv "TMP"))) (and d (file-directory-p d)))
7221 (file-name-as-directory (getenv "TMP")))
7222 ((let ((d (getenv "TMPDIR"))) (and d (file-directory-p d)))
7223 (file-name-as-directory (getenv "TMPDIR")))
7224 ((file-exists-p "c:/temp") (file-name-as-directory "c:/temp"))
7225 (t (message (concat "Neither `temporary-file-directory' nor "
7226 "`temp-directory' is defined -- using /tmp."))
7227 (file-name-as-directory "/tmp"))))
7228
7229 (defun tramp-read-passwd (user host prompt)
7230 "Read a password from user (compat function).
7231 Invokes `password-read' if available, `read-passwd' else."
7232 (if (functionp 'password-read)
7233 (let* ((key (concat (or user (user-login-name)) "@" host))
7234 (password (apply #'password-read (list prompt key))))
7235 (apply #'password-cache-add (list key password))
7236 password)
7237 (read-passwd prompt)))
7238
7239 (defun tramp-clear-passwd (&optional user host)
7240 "Clear password cache for connection related to current-buffer."
7241 (interactive)
7242 (let ((filename (or buffer-file-name list-buffers-directory "")))
7243 (when (and (functionp 'password-cache-remove)
7244 (or (and user host) (tramp-tramp-file-p filename)))
7245 (let* ((v (when (tramp-tramp-file-p filename)
7246 (tramp-dissect-file-name filename)))
7247 (luser (or user (tramp-file-name-user v) (user-login-name)))
7248 (lhost (or host (tramp-file-name-host v) (system-name)))
7249 (key (concat luser "@" lhost)))
7250 (apply #'password-cache-remove (list key))))))
7251
7252 (defun tramp-time-diff (t1 t2)
7253 "Return the difference between the two times, in seconds.
7254 T1 and T2 are time values (as returned by `current-time' for example).
7255
7256 NOTE: This function will fail if the time difference is too large to
7257 fit in an integer."
7258 ;; Pacify byte-compiler with `symbol-function'.
7259 (cond ((and (fboundp 'subtract-time)
7260 (fboundp 'float-time))
7261 (funcall (symbol-function 'float-time)
7262 (funcall (symbol-function 'subtract-time) t1 t2)))
7263 ((and (fboundp 'subtract-time)
7264 (fboundp 'time-to-seconds))
7265 (funcall (symbol-function 'time-to-seconds)
7266 (funcall (symbol-function 'subtract-time) t1 t2)))
7267 ((fboundp 'itimer-time-difference)
7268 (floor (funcall
7269 (symbol-function 'itimer-time-difference)
7270 (if (< (length t1) 3) (append t1 '(0)) t1)
7271 (if (< (length t2) 3) (append t2 '(0)) t2))))
7272 (t
7273 ;; snarfed from Emacs 21 time-date.el; combining
7274 ;; time-to-seconds and subtract-time
7275 (let ((time (let ((borrow (< (cadr t1) (cadr t2))))
7276 (list (- (car t1) (car t2) (if borrow 1 0))
7277 (- (+ (if borrow 65536 0) (cadr t1)) (cadr t2))))))
7278 (+ (* (car time) 65536.0)
7279 (cadr time)
7280 (/ (or (nth 2 time) 0) 1000000.0))))))
7281
7282 (defun tramp-coding-system-change-eol-conversion (coding-system eol-type)
7283 "Return a coding system like CODING-SYSTEM but with given EOL-TYPE.
7284 EOL-TYPE can be one of `dos', `unix', or `mac'."
7285 (cond ((fboundp 'coding-system-change-eol-conversion)
7286 (apply #'coding-system-change-eol-conversion
7287 (list coding-system eol-type)))
7288 ((fboundp 'subsidiary-coding-system)
7289 (apply
7290 #'subsidiary-coding-system
7291 (list coding-system
7292 (cond ((eq eol-type 'dos) 'crlf)
7293 ((eq eol-type 'unix) 'lf)
7294 ((eq eol-type 'mac) 'cr)
7295 (t
7296 (error "Unknown EOL-TYPE `%s', must be %s"
7297 eol-type
7298 "`dos', `unix', or `mac'"))))))
7299 (t (error "Can't change EOL conversion -- is MULE missing?"))))
7300
7301 (defun tramp-split-string (string pattern)
7302 "Like `split-string' but omit empty strings.
7303 In Emacs, (split-string \"/foo/bar\" \"/\") returns (\"foo\" \"bar\").
7304 This is, the first, empty, element is omitted. In XEmacs, the first
7305 element is not omitted.
7306
7307 Note: this function has been written for `tramp-handle-file-truename'.
7308 If you want to use it for something else, you'll have to check whether
7309 it does the right thing."
7310 (delete "" (split-string string pattern)))
7311
7312 (defun tramp-set-process-query-on-exit-flag (process flag)
7313 "Specify if query is needed for process when Emacs is exited.
7314 If the second argument flag is non-nil, Emacs will query the user before
7315 exiting if process is running."
7316 (funcall
7317 (if (fboundp 'set-process-query-on-exit-flag)
7318 (symbol-function 'set-process-query-on-exit-flag)
7319 (symbol-function 'process-kill-without-query))
7320 process flag))
7321
7322
7323 ;; ------------------------------------------------------------
7324 ;; -- Kludges section --
7325 ;; ------------------------------------------------------------
7326
7327 ;; Currently (as of Emacs 20.5), the function `shell-quote-argument'
7328 ;; does not deal well with newline characters. Newline is replaced by
7329 ;; backslash newline. But if, say, the string `a backslash newline b'
7330 ;; is passed to a shell, the shell will expand this into "ab",
7331 ;; completely omitting the newline. This is not what was intended.
7332 ;; It does not appear to be possible to make the function
7333 ;; `shell-quote-argument' work with newlines without making it
7334 ;; dependent on the shell used. But within this package, we know that
7335 ;; we will always use a Bourne-like shell, so we use an approach which
7336 ;; groks newlines.
7337 ;;
7338 ;; The approach is simple: we call `shell-quote-argument', then
7339 ;; massage the newline part of the result.
7340 ;;
7341 ;; This function should produce a string which is grokked by a Unix
7342 ;; shell, even if the Emacs is running on Windows. Since this is the
7343 ;; kludges section, we bind `system-type' in such a way that
7344 ;; `shell-quote-arguments' behaves as if on Unix.
7345 ;;
7346 ;; Thanks to Mario DeWeerd for the hint that it is sufficient for this
7347 ;; function to work with Bourne-like shells.
7348 ;;
7349 ;; CCC: This function should be rewritten so that
7350 ;; `shell-quote-argument' is not used. This way, we are safe from
7351 ;; changes in `shell-quote-argument'.
7352 (defun tramp-shell-quote-argument (s)
7353 "Similar to `shell-quote-argument', but groks newlines.
7354 Only works for Bourne-like shells."
7355 (let ((system-type 'not-windows))
7356 (save-match-data
7357 (let ((result (shell-quote-argument s))
7358 (nl (regexp-quote (format "\\%s" tramp-rsh-end-of-line))))
7359 (when (and (>= (length result) 2)
7360 (string= (substring result 0 2) "\\~"))
7361 (setq result (substring result 1)))
7362 (while (string-match nl result)
7363 (setq result (replace-match (format "'%s'" tramp-rsh-end-of-line)
7364 t t result)))
7365 result))))
7366
7367 ;; ;; EFS hooks itself into the file name handling stuff in more places
7368 ;; ;; than just `file-name-handler-alist'. The following tells EFS to stay
7369 ;; ;; away from tramp.el file names.
7370 ;; ;;
7371 ;; ;; This is needed because EFS installs (efs-dired-before-readin) into
7372 ;; ;; 'dired-before-readin-hook'. This prevents EFS from opening an FTP
7373 ;; ;; connection to help it's dired process. Not that I have any real
7374 ;; ;; idea *why* this is helpful to dired.
7375 ;; ;;
7376 ;; ;; Anyway, this advice fixes the problem (with a sledgehammer :)
7377 ;; ;;
7378 ;; ;; Daniel Pittman <daniel@danann.net>
7379 ;; ;;
7380 ;; ;; CCC: when the other defadvice calls have disappeared, make sure
7381 ;; ;; not to call defadvice unless it's necessary. How do we find out whether
7382 ;; ;; it is necessary? (featurep 'efs) is surely the wrong way --
7383 ;; ;; EFS might nicht be loaded yet.
7384 ;; (defadvice efs-ftp-path (around dont-match-tramp-localname activate protect)
7385 ;; "Cause efs-ftp-path to fail when the path is a TRAMP localname."
7386 ;; (if (tramp-tramp-file-p (ad-get-arg 0))
7387 ;; nil
7388 ;; ad-do-it))
7389
7390 ;; We currently (sometimes) use "[" and "]" in the filename format.
7391 ;; This means that Emacs wants to expand wildcards if
7392 ;; `find-file-wildcards' is non-nil, and then barfs because no
7393 ;; expansion could be found. We detect this situation and do
7394 ;; something really awful: we have `file-expand-wildcards' return the
7395 ;; original filename if it can't expand anything. Let's just hope
7396 ;; that this doesn't break anything else.
7397 ;; CCC: This check is now also really awful; we should search all
7398 ;; of the filename format, not just the prefix.
7399 (when (string-match "\\[" tramp-prefix-format)
7400 (defadvice file-expand-wildcards (around tramp-fix activate)
7401 (let ((name (ad-get-arg 0)))
7402 (if (tramp-tramp-file-p name)
7403 ;; If it's a Tramp file, dissect it and look if wildcards
7404 ;; need to be expanded at all.
7405 (let ((v (tramp-dissect-file-name name)))
7406 (if (string-match "[[*?]" (tramp-file-name-localname v))
7407 (let ((res ad-do-it))
7408 (setq ad-return-value (or res (list name))))
7409 (setq ad-return-value (list name))))
7410 ;; If it is not a Tramp file, just run the original function.
7411 (let ((res ad-do-it))
7412 (setq ad-return-value (or res (list name)))))))
7413 (add-hook 'tramp-unload-hook
7414 '(lambda () (ad-unadvise 'file-expand-wildcards))))
7415
7416 ;; Tramp version is useful in a number of situations.
7417
7418 (defun tramp-version (arg)
7419 "Print version number of tramp.el in minibuffer or current buffer."
7420 (interactive "P")
7421 (if arg (insert tramp-version) (message tramp-version)))
7422
7423 ;; Make the `reporter` functionality available for making bug reports about
7424 ;; the package. A most useful piece of code.
7425
7426 (unless (fboundp 'reporter-submit-bug-report)
7427 (autoload 'reporter-submit-bug-report "reporter"))
7428
7429 (defun tramp-bug ()
7430 "Submit a bug report to the TRAMP developers."
7431 (interactive)
7432 (require 'reporter)
7433 (catch 'dont-send
7434 (let ((reporter-prompt-for-summary-p t))
7435 (reporter-submit-bug-report
7436 tramp-bug-report-address ; to-address
7437 (format "tramp (%s)" tramp-version) ; package name and version
7438 (delq nil
7439 `(;; Current state
7440 tramp-ls-command
7441 tramp-test-groks-nt
7442 tramp-file-exists-command
7443 tramp-current-multi-method
7444 tramp-current-method
7445 tramp-current-user
7446 tramp-current-host
7447
7448 ;; System defaults
7449 tramp-auto-save-directory ; vars to dump
7450 tramp-default-method
7451 tramp-rsh-end-of-line
7452 tramp-default-password-end-of-line
7453 tramp-remote-path
7454 tramp-login-prompt-regexp
7455 ;; Mask non-7bit characters
7456 (tramp-password-prompt-regexp . tramp-reporter-dump-variable)
7457 tramp-wrong-passwd-regexp
7458 tramp-yesno-prompt-regexp
7459 tramp-yn-prompt-regexp
7460 tramp-terminal-prompt-regexp
7461 tramp-temp-name-prefix
7462 tramp-file-name-structure
7463 tramp-file-name-regexp
7464 tramp-multi-file-name-structure
7465 tramp-multi-file-name-hop-structure
7466 tramp-multi-methods
7467 tramp-multi-connection-function-alist
7468 tramp-methods
7469 tramp-end-of-output
7470 tramp-coding-commands
7471 tramp-actions-before-shell
7472 tramp-actions-copy-out-of-band
7473 tramp-multi-actions
7474 tramp-terminal-type
7475 ;; Mask non-7bit characters
7476 (tramp-shell-prompt-pattern . tramp-reporter-dump-variable)
7477 tramp-chunksize
7478 ,(when (boundp 'tramp-backup-directory-alist)
7479 'tramp-backup-directory-alist)
7480 ,(when (boundp 'tramp-bkup-backup-directory-info)
7481 'tramp-bkup-backup-directory-info)
7482
7483 ;; Non-tramp variables of interest
7484 ;; Mask non-7bit characters
7485 (shell-prompt-pattern . tramp-reporter-dump-variable)
7486 backup-by-copying
7487 backup-by-copying-when-linked
7488 backup-by-copying-when-mismatch
7489 ,(when (boundp 'backup-by-copying-when-privileged-mismatch)
7490 'backup-by-copying-when-privileged-mismatch)
7491 ,(when (boundp 'password-cache)
7492 'password-cache)
7493 ,(when (boundp 'password-cache-expiry)
7494 'password-cache-expiry)
7495 ,(when (boundp 'backup-directory-alist)
7496 'backup-directory-alist)
7497 ,(when (boundp 'bkup-backup-directory-info)
7498 'bkup-backup-directory-info)
7499 file-name-handler-alist))
7500
7501 'tramp-load-report-modules ; pre-hook
7502 'tramp-append-tramp-buffers ; post-hook
7503 "\
7504 Enter your bug report in this message, including as much detail as you
7505 possibly can about the problem, what you did to cause it and what the
7506 local and remote machines are.
7507
7508 If you can give a simple set of instructions to make this bug happen
7509 reliably, please include those. Thank you for helping kill bugs in
7510 TRAMP.
7511
7512 Another useful thing to do is to put (setq tramp-debug-buffer t) in
7513 the ~/.emacs file and to repeat the bug. Then, include the contents
7514 of the *tramp/foo* buffer and the *debug tramp/foo* buffer in your bug
7515 report.
7516
7517 --bug report follows this line--
7518 "))))
7519
7520 (defun tramp-reporter-dump-variable (varsym mailbuf)
7521 "Pretty-print the value of the variable in symbol VARSYM.
7522 Used for non-7bit chars in strings."
7523 (let* ((reporter-eval-buffer (symbol-value 'reporter-eval-buffer))
7524 (val (with-current-buffer reporter-eval-buffer
7525 (symbol-value varsym))))
7526
7527 ;; There are characters to be masked.
7528 (when (and (boundp 'mm-7bit-chars)
7529 (string-match
7530 (concat "[^" (symbol-value 'mm-7bit-chars) "]") val))
7531 (with-current-buffer reporter-eval-buffer
7532 (set varsym (concat "(base64-decode-string \""
7533 (base64-encode-string val)
7534 "\")"))))
7535
7536 ;; Dump variable.
7537 (funcall (symbol-function 'reporter-dump-variable) varsym mailbuf)
7538
7539 ;; Remove string quotation.
7540 (forward-line -1)
7541 (when (looking-at
7542 (concat "\\(^.*\\)" "\"" ;; \1 "
7543 "\\((base64-decode-string \\)" "\\\\" ;; \2 \
7544 "\\(\".*\\)" "\\\\" ;; \3 \
7545 "\\(\")\\)" "\"$")) ;; \4 "
7546 (replace-match "\\1\\2\\3\\4")
7547 (beginning-of-line)
7548 (insert " ;; variable encoded due to non-printable characters\n"))
7549 (forward-line 1)
7550
7551 ;; Reset VARSYM to old value.
7552 (with-current-buffer reporter-eval-buffer
7553 (set varsym val))))
7554
7555 (defun tramp-load-report-modules ()
7556 "Load needed modules for reporting."
7557
7558 ;; We load message.el and mml.el from Gnus.
7559 (if (featurep 'xemacs)
7560 (progn
7561 (load "message" 'noerror)
7562 (load "mml" 'noerror))
7563 (require 'message nil 'noerror)
7564 (require 'mml nil 'noerror))
7565 (when (functionp 'message-mode)
7566 (funcall (symbol-function 'message-mode)))
7567 (when (functionp 'mml-mode)
7568 (funcall (symbol-function 'mml-mode) t)))
7569
7570 (defun tramp-append-tramp-buffers ()
7571 "Append Tramp buffers into the bug report."
7572
7573 (when (and
7574 (eq major-mode 'message-mode)
7575 (boundp 'mml-mode)
7576 (symbol-value 'mml-mode))
7577
7578 (let* ((tramp-buf-regexp "\\*\\(debug \\)?tramp/")
7579 (buffer-list
7580 (delq nil
7581 (mapcar '(lambda (b)
7582 (when (string-match tramp-buf-regexp (buffer-name b)) b))
7583 (buffer-list))))
7584 (curbuf (current-buffer)))
7585
7586 ;; There is at least one Tramp buffer.
7587 (when buffer-list
7588 (switch-to-buffer (list-buffers-noselect nil))
7589 (delete-other-windows)
7590 (setq buffer-read-only nil)
7591 (goto-char (point-min))
7592 (while (not (eobp))
7593 (if (re-search-forward tramp-buf-regexp (tramp-point-at-eol) t)
7594 (forward-line 1)
7595 (forward-line 0)
7596 (let ((start (point)))
7597 (forward-line 1)
7598 (kill-region start (point)))))
7599 (insert "
7600 The buffer(s) above will be appended to this message. If you don't want
7601 to append a buffer because it contains sensible data, or because the buffer
7602 is too large, you should delete the respective buffer. The buffer(s) will
7603 contain user and host names. Passwords will never be included there.")
7604
7605 (when (and tramp-debug-buffer (> tramp-verbose 9))
7606 (insert "\n\n")
7607 (let ((start (point)))
7608 (insert "\
7609 Please note that you have set `tramp-verbose' to a value greater than 9.
7610 Therefore, the contents of files might be included in the debug buffer(s).")
7611 (add-text-properties start (point) (list 'face 'italic))))
7612
7613 (set-buffer-modified-p nil)
7614 (setq buffer-read-only t)
7615 (goto-char (point-min))
7616
7617 (if (y-or-n-p "Do you want to append the buffer(s)? ")
7618 ;; OK, let's send. First we delete the buffer list.
7619 (progn
7620 (kill-buffer nil)
7621 (switch-to-buffer curbuf)
7622 (goto-char (point-max))
7623 (insert "\n\n")
7624 (dolist (buffer buffer-list)
7625 (funcall (symbol-function 'mml-insert-empty-tag)
7626 'part 'type "text/plain" 'encoding "base64"
7627 'disposition "attachment" 'buffer (buffer-name buffer)
7628 'description (buffer-name buffer)))
7629 (set-buffer-modified-p nil))
7630
7631 ;; Don't send. Delete the message buffer.
7632 (set-buffer curbuf)
7633 (set-buffer-modified-p nil)
7634 (kill-buffer nil)
7635 (throw 'dont-send nil))))))
7636
7637 (defalias 'tramp-submit-bug 'tramp-bug)
7638
7639 ;; Checklist for `tramp-unload-hook'
7640 ;; - Unload all `tramp-*' packages
7641 ;; - Reset `file-name-handler-alist'
7642 ;; - Cleanup hooks where Tramp functions are in
7643 ;; - Cleanup advised functions
7644 ;; - Cleanup autoloads
7645 ;;;###autoload
7646 (defun tramp-unload-tramp ()
7647 (interactive)
7648 ;; When Tramp is not loaded yet, its autoloads are still active.
7649 (tramp-unload-file-name-handlers)
7650 ;; ange-ftp settings must be enabled.
7651 (when (functionp 'tramp-ftp-enable-ange-ftp)
7652 (funcall (symbol-function 'tramp-ftp-enable-ange-ftp)))
7653 ;; `tramp-util' unloads also `tramp'.
7654 (condition-case nil ;; maybe its not loaded yet.
7655 (unload-feature (if (featurep 'tramp-util) 'tramp-util 'tramp) 'force)
7656 (error nil)))
7657
7658 (provide 'tramp)
7659
7660 ;; Make sure that we get integration with the VC package.
7661 ;; When it is loaded, we need to pull in the integration module.
7662 ;; This must come after (provide 'tramp) because tramp-vc.el
7663 ;; requires tramp.
7664 (eval-after-load "vc"
7665 '(progn
7666 (require 'tramp-vc)
7667 (add-hook 'tramp-unload-hook
7668 '(lambda ()
7669 (when (featurep 'tramp-vc)
7670 (unload-feature 'tramp-vc 'force))))))
7671
7672 ;;; TODO:
7673
7674 ;; * Allow putting passwords in the filename.
7675 ;; This should be implemented via a general mechanism to add
7676 ;; parameters in filenames. There is currently a kludge for
7677 ;; putting the port number into the filename for ssh and ftp
7678 ;; files. This could be subsumed by the new mechanism as well.
7679 ;; Another approach is to read a netrc file like ~/.authinfo
7680 ;; from Gnus.
7681 ;; * Handle nonlocal exits such as C-g.
7682 ;; * Autodetect if remote `ls' groks the "--dired" switch.
7683 ;; * Add fallback for inline encodings. This should be used
7684 ;; if the remote end doesn't support mimencode or a similar program.
7685 ;; For reading files from the remote host, we can just parse the output
7686 ;; of `od -b'. For writing files to the remote host, we construct
7687 ;; a shell program which contains only "safe" ascii characters
7688 ;; and which writes the right bytes to the file. We can use printf(1)
7689 ;; or "echo -e" or the printf function in awk and use octal escapes
7690 ;; for the "dangerous" characters. The null byte might be a problem.
7691 ;; On some systems, the octal escape doesn't work. So we try the following
7692 ;; two commands to write a null byte:
7693 ;; dd if=/dev/zero bs=1 count=1
7694 ;; echo | tr '\n' '\000'
7695 ;; * Separate local `tramp-coding-commands' from remote ones. Connect
7696 ;; the two via a format which can be `uu' or `b64'. Then we can search
7697 ;; for the right local commands and the right remote commands separately.
7698 ;; * Cooperate with PCL-CVS. It uses start-process, which doesn't
7699 ;; work for remote files.
7700 ;; * Rewrite `tramp-shell-quote-argument' to abstain from using
7701 ;; `shell-quote-argument'.
7702 ;; * Completion gets confused when you leave out the method name.
7703 ;; * In Emacs 21, `insert-directory' shows total number of bytes used
7704 ;; by the files in that directory. Add this here.
7705 ;; * Avoid screen blanking when hitting `g' in dired. (Eli Tziperman)
7706 ;; * Make ffap.el grok Tramp filenames. (Eli Tziperman)
7707 ;; * When logging in, keep looking for questions according to an alist
7708 ;; and then invoke the right function.
7709 ;; * Case-insensitive filename completion. (Norbert Goevert.)
7710 ;; * Running CVS remotely doesn't appear to work right. It thinks
7711 ;; files are locked by somebody else even if I'm the locking user.
7712 ;; Sometimes, one gets `No CVSROOT specified' errors from CVS.
7713 ;; (Skip Montanaro)
7714 ;; * Don't use globbing for directories with many files, as this is
7715 ;; likely to produce long command lines, and some shells choke on
7716 ;; long command lines.
7717 ;; * Find out about the new auto-save mechanism in Emacs 21 and
7718 ;; do the right thing.
7719 ;; * `vc-directory' does not work. It never displays any files, even
7720 ;; if it does show files when run locally.
7721 ;; * Allow correction of passwords, if the remote end allows this.
7722 ;; (Mark Hershberger)
7723 ;; * How to deal with MULE in `insert-file-contents' and `write-region'?
7724 ;; * Do asynchronous `shell-command's.
7725 ;; * Grok `append' parameter for `write-region'.
7726 ;; * Test remote ksh or bash for tilde expansion in `tramp-find-shell'?
7727 ;; * abbreviate-file-name
7728 ;; * grok ~ in tramp-remote-path (Henrik Holm <henrikh@tele.ntnu.no>)
7729 ;; * Also allow to omit user names when doing multi-hop. Not sure yet
7730 ;; what the user names should default to, though.
7731 ;; * better error checking. At least whenever we see something
7732 ;; strange when doing zerop, we should kill the process and start
7733 ;; again. (Greg Stark)
7734 ;; * Add caching for filename completion. (Greg Stark)
7735 ;; Of course, this has issues with usability (stale cache bites)
7736 ;; -- <daniel@danann.net>
7737 ;; * Provide a local cache of old versions of remote files for the rsync
7738 ;; transfer method to use. (Greg Stark)
7739 ;; * Remove unneeded parameters from methods.
7740 ;; * Invoke rsync once for copying a whole directory hierarchy.
7741 ;; (Francesco Potort\e,Al\e(B)
7742 ;; * Should we set PATH ourselves or should we rely on the remote end
7743 ;; to do it?
7744 ;; * Make it work for XEmacs 20, which is missing `with-timeout'.
7745 ;; * Make it work for different encodings, and for different file name
7746 ;; encodings, too. (Daniel Pittman)
7747 ;; * Change applicable functions to pass a struct tramp-file-name rather
7748 ;; than the individual items MULTI-METHOD, METHOD, USER, HOST, LOCALNAME.
7749 ;; * Implement asynchronous shell commands.
7750 ;; * Clean up unused *tramp/foo* buffers after a while. (Pete Forman)
7751 ;; * Progress reports while copying files. (Michael Kifer)
7752 ;; * `Smart' connection method that uses inline for small and out of
7753 ;; band for large files. (Michael Kifer)
7754 ;; * Don't search for perl5 and perl. Instead, only search for perl and
7755 ;; then look if it's the right version (with `perl -v').
7756 ;; * When editing a remote CVS controlled file as a different user, VC
7757 ;; gets confused about the file locking status. Try to find out why
7758 ;; the workaround doesn't work.
7759 ;; * Change `copy-file' to grok the case where the filename handler
7760 ;; for the source and the target file are different. Right now,
7761 ;; it looks at the source file and then calls that handler, if
7762 ;; there is one. But since ange-ftp, for instance, does not know
7763 ;; about Tramp, it does not do the right thing if the target file
7764 ;; name is a Tramp name.
7765 ;; * Username and hostname completion.
7766 ;; ** If `partial-completion-mode' isn't loaded, "/foo:bla" tries to
7767 ;; connect to host "blabla" already if that host is unique. No idea
7768 ;; how to suppress. Maybe not an essential problem.
7769 ;; ** Try to avoid usage of `last-input-event' in `tramp-completion-mode'.
7770 ;; ** Extend `tramp-get-completion-su' for NIS and shadow passwords.
7771 ;; ** Unify `tramp-parse-{rhosts,shosts,sconfig,hosts,passwd,netrc}'.
7772 ;; Code is nearly identical.
7773 ;; ** Decide whiche files to take for searching user/host names depending on
7774 ;; operating system (windows-nt) in `tramp-completion-function-alist'.
7775 ;; ** Enhance variables for debug.
7776 ;; ** Implement "/multi:" completion.
7777 ;; ** Add a learning mode for completion. Make results persistent.
7778 ;; * Allow out-of-band methods as _last_ multi-hop.
7779
7780 ;; Functions for file-name-handler-alist:
7781 ;; diff-latest-backup-file -- in diff.el
7782 ;; dired-uncache -- this will be needed when we do insert-directory caching
7783 ;; file-name-as-directory -- use primitive?
7784 ;; file-name-sans-versions -- use primitive?
7785 ;; get-file-buffer -- use primitive
7786 ;; vc-registered
7787
7788 ;;; arch-tag: 3a21a994-182b-48fa-b0cd-c1d9fede424a
7789 ;;; tramp.el ends here