2007-07-29 15:32:56 +00:00
|
|
|
;;; tramp-smb.el --- Tramp access functions for SMB servers
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2008-02-03 12:08:16 +00:00
|
|
|
;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007,
|
|
|
|
;; 2008 Free Software Foundation, Inc.
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2005-03-20 20:00:20 +00:00
|
|
|
;; Author: Michael Albinus <michael.albinus@gmx.de>
|
2002-12-26 20:47:51 +00:00
|
|
|
;; Keywords: comm, processes
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 07:31:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2002-12-26 20:47:51 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 07:31:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 07:31:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Access functions for SMB servers like SAMBA or M$ Windows from Tramp.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2008-06-21 23:00:49 +00:00
|
|
|
(eval-when-compile (require 'cl)) ; block, return
|
2002-12-26 20:47:51 +00:00
|
|
|
(require 'tramp)
|
2007-07-08 18:03:20 +00:00
|
|
|
(require 'tramp-cache)
|
2007-09-30 16:43:07 +00:00
|
|
|
(require 'tramp-compat)
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; Define SMB method ...
|
|
|
|
(defcustom tramp-smb-method "smb"
|
|
|
|
"*Method to connect SAMBA and M$ SMB servers."
|
|
|
|
:group 'tramp
|
|
|
|
:type 'string)
|
|
|
|
|
|
|
|
;; ... and add it to the method list.
|
|
|
|
(add-to-list 'tramp-methods (cons tramp-smb-method nil))
|
|
|
|
|
|
|
|
;; Add a default for `tramp-default-method-alist'. Rule: If there is
|
|
|
|
;; a domain in USER, it must be the SMB method.
|
|
|
|
(add-to-list 'tramp-default-method-alist
|
2007-07-08 18:03:20 +00:00
|
|
|
`(nil "%" ,tramp-smb-method))
|
|
|
|
|
|
|
|
;; Add a default for `tramp-default-user-alist'. Rule: For the SMB method,
|
|
|
|
;; the anonymous user is chosen.
|
|
|
|
(add-to-list 'tramp-default-user-alist
|
|
|
|
`(,tramp-smb-method nil ""))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; Add completion function for SMB method.
|
|
|
|
(tramp-set-completion-function
|
|
|
|
tramp-smb-method
|
|
|
|
'((tramp-parse-netrc "~/.netrc")))
|
|
|
|
|
|
|
|
(defcustom tramp-smb-program "smbclient"
|
|
|
|
"*Name of SMB client to run."
|
|
|
|
:group 'tramp
|
|
|
|
:type 'string)
|
|
|
|
|
2005-03-20 20:00:20 +00:00
|
|
|
(defconst tramp-smb-prompt "^smb: .+> \\|^\\s-+Server\\s-+Comment$"
|
2002-12-26 20:47:51 +00:00
|
|
|
"Regexp used as prompt in smbclient.")
|
|
|
|
|
|
|
|
(defconst tramp-smb-errors
|
2007-07-08 18:03:20 +00:00
|
|
|
;; `regexp-opt' not possible because of first string.
|
2002-12-26 20:47:51 +00:00
|
|
|
(mapconcat
|
|
|
|
'identity
|
2007-07-08 18:03:20 +00:00
|
|
|
'(;; Connection error / timeout
|
2002-12-26 20:47:51 +00:00
|
|
|
"Connection to \\S-+ failed"
|
2007-07-08 18:03:20 +00:00
|
|
|
"Read from server failed, maybe it closed the connection"
|
2007-09-21 05:24:06 +00:00
|
|
|
"Call timed out: server did not respond"
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Samba
|
2002-12-26 20:47:51 +00:00
|
|
|
"ERRDOS"
|
2004-02-29 17:52:17 +00:00
|
|
|
"ERRSRV"
|
2002-12-26 20:47:51 +00:00
|
|
|
"ERRbadfile"
|
|
|
|
"ERRbadpw"
|
|
|
|
"ERRfilexists"
|
|
|
|
"ERRnoaccess"
|
|
|
|
"ERRnomem"
|
|
|
|
"ERRnosuchshare"
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Windows 4.0 (Windows NT), Windows 5.0 (Windows 2000),
|
|
|
|
;; Windows 5.1 (Windows XP), Windows 5.2 (Windows Server 2003)
|
2002-12-26 20:47:51 +00:00
|
|
|
"NT_STATUS_ACCESS_DENIED"
|
2004-02-29 17:52:17 +00:00
|
|
|
"NT_STATUS_ACCOUNT_LOCKED_OUT"
|
2002-12-26 20:47:51 +00:00
|
|
|
"NT_STATUS_BAD_NETWORK_NAME"
|
|
|
|
"NT_STATUS_CANNOT_DELETE"
|
2007-07-08 18:03:20 +00:00
|
|
|
"NT_STATUS_DIRECTORY_NOT_EMPTY"
|
|
|
|
"NT_STATUS_DUPLICATE_NAME"
|
|
|
|
"NT_STATUS_FILE_IS_A_DIRECTORY"
|
2002-12-26 20:47:51 +00:00
|
|
|
"NT_STATUS_LOGON_FAILURE"
|
2004-02-29 17:52:17 +00:00
|
|
|
"NT_STATUS_NETWORK_ACCESS_DENIED"
|
2002-12-26 20:47:51 +00:00
|
|
|
"NT_STATUS_NO_SUCH_FILE"
|
2007-07-08 18:03:20 +00:00
|
|
|
"NT_STATUS_OBJECT_NAME_COLLISION"
|
2002-12-26 20:47:51 +00:00
|
|
|
"NT_STATUS_OBJECT_NAME_INVALID"
|
|
|
|
"NT_STATUS_OBJECT_NAME_NOT_FOUND"
|
2004-02-29 17:52:17 +00:00
|
|
|
"NT_STATUS_SHARING_VIOLATION"
|
2007-07-08 18:03:20 +00:00
|
|
|
"NT_STATUS_TRUSTED_RELATIONSHIP_FAILURE"
|
2004-02-29 17:52:17 +00:00
|
|
|
"NT_STATUS_WRONG_PASSWORD")
|
2002-12-26 20:47:51 +00:00
|
|
|
"\\|")
|
|
|
|
"Regexp for possible error strings of SMB servers.
|
|
|
|
Used instead of analyzing error codes of commands.")
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
(defconst tramp-smb-actions-with-share
|
|
|
|
'((tramp-smb-prompt tramp-action-succeed)
|
|
|
|
(tramp-password-prompt-regexp tramp-action-password)
|
|
|
|
(tramp-wrong-passwd-regexp tramp-action-permission-denied)
|
|
|
|
(tramp-smb-errors tramp-action-permission-denied)
|
|
|
|
(tramp-process-alive-regexp tramp-action-process-alive))
|
|
|
|
"List of pattern/action pairs.
|
|
|
|
This list is used for login to SMB servers.
|
|
|
|
|
|
|
|
See `tramp-actions-before-shell' for more info.")
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
(defconst tramp-smb-actions-without-share
|
|
|
|
'((tramp-password-prompt-regexp tramp-action-password)
|
|
|
|
(tramp-wrong-passwd-regexp tramp-action-permission-denied)
|
|
|
|
(tramp-smb-errors tramp-action-permission-denied)
|
|
|
|
(tramp-process-alive-regexp tramp-action-out-of-band))
|
|
|
|
"List of pattern/action pairs.
|
|
|
|
This list is used for login to SMB servers.
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
See `tramp-actions-before-shell' for more info.")
|
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* net/tramp.el (tramp-send-region): Protect against
tramp-chunksize being nil.
2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-handle-directory-file-name): Handle the case
PATH is "".
(tramp-completion-handle-file-name-all-completions): Define
`tramp-current-user' locally. See `tramp-parse-passwd'.
(tramp-parse-passwd): For su-alike methods it would be desirable
to return "root@localhost" as default. Unfortunately, we have no
information whether any user name has been typed already. So we
(mis-)use tramp-current-user as indication, assuming it is set in
`tramp-completion-handle-file-name-all-completions'.
(tramp-send-region): Handle the case `tramp-chunksize' is equal
0. I did it accidently. Infinite loop ...
* net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
'(tramp-disable-ange-ftp). Suggested by Kai.
(tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
any longer.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
`tramp-handle-directory-file-name' in order to profit from Kai's
yesterday changes.
2003-02-03 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-chunksize): Set default to 500 as workaround
for some ssh connections.
(tramp-handle-directory-file-name): New implementation. Not sure
if it works.
2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
must not be called with NIL path. It fails in case of
multi-method.
2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-file-name-for-operation): Apply
`expand-file-name' for relative file names only. Otherwise there
might be problems if the default directory is another Tramp
directory as the directory the file is based on.
(tramp-find-foreign-file-name-handler): Check whether FILENAME is
a Tramp file name. It isn't if it comes from an expanded file
name (like "/xx:yy//zz").
2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-devices): New variable. Keeps virtual
device numbers. Devices must distinguish physical file systems.
The device numbers provided by "lstat" aren't unique, because we
operate on different hosts. So we use virtual device numbers,
generated by `tramp-get-device'. Both Ange-FTP and EFS use device
number -1. In order to be different, we use device number (-1 x),
whereby "x" is unique for a given (multi-method method user host).
Suggested by Kai.
(tramp-perl-file-attributes): Always return device number -1.
There will be a virtual device number set in
`tramp-handle-file-attributes', which replaces this one.
(tramp-handle-file-attributes): Set virtual device number.
(tramp-get-device): New function. Returns the virtual device
number. If it doesn't exist, generate a new one.
(tramp-handle-file-regular-p): Use Emacs file name primitives
instead of calling tramp-handle-* equivalents directly. Needed
for tramp-smb.
* net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
Functionality moved to tramp.el.
(tramp-smb-handle-file-attributes): Apply
`tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
know"), which is more honest.
(tramp-smb-handle-make-directory): Use Emacs file name primitives
instead of calling tramp-smb-handle-* equivalents directly.
(tramp-smb-read-file-entry): Return size as a number but a string.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
(tramp-completion-function-alist, tramp-set-completion-function):
Doc string update.
(tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
Provide parsing of "~/.ssh/config" style files.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-handle-expand-file-name): Apply
`tramp-drop-volume-letter'. Otherwise, there are problems on W32
systems.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
functions. Device number and inode number don't exist for SMB
files. Therefore we must generate virtual ones.
(tramp-smb-devices, tramp-smb-inodes): New variables. Keep
generated virtual device numbers and inodes numbers for SMB files.
(tramp-smb-handle-file-attributes): Apply them.
2003-01-14 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-md5-function): Require md5 before checking
function md5. If using md5-encode, put wrapper around it that
converts vector of bytes to ascii text.
2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-mode): Perform check (integerp
last-input-event) before (event-modifiers last-input-event) -
there might be problems if `last-input-event' is a mouse event.
2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
(tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
`file-readable-p' instead of `file-exists-p'. Otherwise these
functions might block. Reported by <kin@neoscale.com>.
2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-ftp.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
* net/tramp-smb.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
2003-01-02 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (top-level): Avoid byte-compiler warnings of unused
variables if the byte-compiler supports this. This is for the
with-parsed-tramp-file-name macro which is wont to produce such
stuff.
2003-02-05 21:03:36 +00:00
|
|
|
|
2002-12-26 20:47:51 +00:00
|
|
|
;; New handlers should be added here.
|
|
|
|
(defconst tramp-smb-file-name-handler-alist
|
|
|
|
'(
|
|
|
|
;; `access-file' performed by default handler
|
|
|
|
(add-name-to-file . tramp-smb-handle-copy-file) ;; we're on Windows, honey.
|
|
|
|
;; `byte-compiler-base-file-name' performed by default handler
|
|
|
|
(copy-file . tramp-smb-handle-copy-file)
|
|
|
|
(delete-directory . tramp-smb-handle-delete-directory)
|
|
|
|
(delete-file . tramp-smb-handle-delete-file)
|
|
|
|
;; `diff-latest-backup-file' performed by default handler
|
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* net/tramp.el (tramp-send-region): Protect against
tramp-chunksize being nil.
2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-handle-directory-file-name): Handle the case
PATH is "".
(tramp-completion-handle-file-name-all-completions): Define
`tramp-current-user' locally. See `tramp-parse-passwd'.
(tramp-parse-passwd): For su-alike methods it would be desirable
to return "root@localhost" as default. Unfortunately, we have no
information whether any user name has been typed already. So we
(mis-)use tramp-current-user as indication, assuming it is set in
`tramp-completion-handle-file-name-all-completions'.
(tramp-send-region): Handle the case `tramp-chunksize' is equal
0. I did it accidently. Infinite loop ...
* net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
'(tramp-disable-ange-ftp). Suggested by Kai.
(tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
any longer.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
`tramp-handle-directory-file-name' in order to profit from Kai's
yesterday changes.
2003-02-03 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-chunksize): Set default to 500 as workaround
for some ssh connections.
(tramp-handle-directory-file-name): New implementation. Not sure
if it works.
2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
must not be called with NIL path. It fails in case of
multi-method.
2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-file-name-for-operation): Apply
`expand-file-name' for relative file names only. Otherwise there
might be problems if the default directory is another Tramp
directory as the directory the file is based on.
(tramp-find-foreign-file-name-handler): Check whether FILENAME is
a Tramp file name. It isn't if it comes from an expanded file
name (like "/xx:yy//zz").
2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-devices): New variable. Keeps virtual
device numbers. Devices must distinguish physical file systems.
The device numbers provided by "lstat" aren't unique, because we
operate on different hosts. So we use virtual device numbers,
generated by `tramp-get-device'. Both Ange-FTP and EFS use device
number -1. In order to be different, we use device number (-1 x),
whereby "x" is unique for a given (multi-method method user host).
Suggested by Kai.
(tramp-perl-file-attributes): Always return device number -1.
There will be a virtual device number set in
`tramp-handle-file-attributes', which replaces this one.
(tramp-handle-file-attributes): Set virtual device number.
(tramp-get-device): New function. Returns the virtual device
number. If it doesn't exist, generate a new one.
(tramp-handle-file-regular-p): Use Emacs file name primitives
instead of calling tramp-handle-* equivalents directly. Needed
for tramp-smb.
* net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
Functionality moved to tramp.el.
(tramp-smb-handle-file-attributes): Apply
`tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
know"), which is more honest.
(tramp-smb-handle-make-directory): Use Emacs file name primitives
instead of calling tramp-smb-handle-* equivalents directly.
(tramp-smb-read-file-entry): Return size as a number but a string.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
(tramp-completion-function-alist, tramp-set-completion-function):
Doc string update.
(tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
Provide parsing of "~/.ssh/config" style files.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-handle-expand-file-name): Apply
`tramp-drop-volume-letter'. Otherwise, there are problems on W32
systems.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
functions. Device number and inode number don't exist for SMB
files. Therefore we must generate virtual ones.
(tramp-smb-devices, tramp-smb-inodes): New variables. Keep
generated virtual device numbers and inodes numbers for SMB files.
(tramp-smb-handle-file-attributes): Apply them.
2003-01-14 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-md5-function): Require md5 before checking
function md5. If using md5-encode, put wrapper around it that
converts vector of bytes to ascii text.
2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-mode): Perform check (integerp
last-input-event) before (event-modifiers last-input-event) -
there might be problems if `last-input-event' is a mouse event.
2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
(tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
`file-readable-p' instead of `file-exists-p'. Otherwise these
functions might block. Reported by <kin@neoscale.com>.
2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-ftp.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
* net/tramp-smb.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
2003-01-02 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (top-level): Avoid byte-compiler warnings of unused
variables if the byte-compiler supports this. This is for the
with-parsed-tramp-file-name macro which is wont to produce such
stuff.
2003-02-05 21:03:36 +00:00
|
|
|
(directory-file-name . tramp-handle-directory-file-name)
|
2002-12-26 20:47:51 +00:00
|
|
|
(directory-files . tramp-smb-handle-directory-files)
|
|
|
|
(directory-files-and-attributes . tramp-smb-handle-directory-files-and-attributes)
|
2007-07-08 18:03:20 +00:00
|
|
|
(dired-call-process . ignore)
|
|
|
|
(dired-compress-file . ignore)
|
2002-12-26 20:47:51 +00:00
|
|
|
;; `dired-uncache' performed by default handler
|
|
|
|
;; `expand-file-name' not necessary because we cannot expand "~/"
|
|
|
|
(file-accessible-directory-p . tramp-smb-handle-file-directory-p)
|
|
|
|
(file-attributes . tramp-smb-handle-file-attributes)
|
|
|
|
(file-directory-p . tramp-smb-handle-file-directory-p)
|
|
|
|
(file-executable-p . tramp-smb-handle-file-exists-p)
|
|
|
|
(file-exists-p . tramp-smb-handle-file-exists-p)
|
|
|
|
(file-local-copy . tramp-smb-handle-file-local-copy)
|
2004-05-29 22:28:49 +00:00
|
|
|
(file-remote-p . tramp-handle-file-remote-p)
|
2002-12-26 20:47:51 +00:00
|
|
|
(file-modes . tramp-handle-file-modes)
|
|
|
|
(file-name-all-completions . tramp-smb-handle-file-name-all-completions)
|
|
|
|
;; `file-name-as-directory' performed by default handler
|
|
|
|
(file-name-completion . tramp-handle-file-name-completion)
|
|
|
|
(file-name-directory . tramp-handle-file-name-directory)
|
|
|
|
(file-name-nondirectory . tramp-handle-file-name-nondirectory)
|
|
|
|
;; `file-name-sans-versions' performed by default handler
|
|
|
|
(file-newer-than-file-p . tramp-smb-handle-file-newer-than-file-p)
|
2007-07-08 18:03:20 +00:00
|
|
|
(file-ownership-preserved-p . ignore)
|
2002-12-26 20:47:51 +00:00
|
|
|
(file-readable-p . tramp-smb-handle-file-exists-p)
|
|
|
|
(file-regular-p . tramp-handle-file-regular-p)
|
2007-07-08 18:03:20 +00:00
|
|
|
(file-symlink-p . tramp-handle-file-symlink-p)
|
2002-12-26 20:47:51 +00:00
|
|
|
;; `file-truename' performed by default handler
|
|
|
|
(file-writable-p . tramp-smb-handle-file-writable-p)
|
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Version 2.0.40 of Tramp released.
* net/tramp.el (tramp-completion-mode, tramp-md5-function): Use
symbol-function to invoke functions only known on some Emacs
flavors. This avoids byte-compiler warnings. Reported by Kevin
Scaldeferri <kevin@scaldeferri.com>.
(tramp-do-copy-or-rename-file-via-buffer): Renamed from
tramp-do-copy-or-rename-via-buffer (without `file'), to make it
consistent with the other tramp-do-* functions.
(tramp-do-copy-or-rename-file): Calls adjusted.
(tramp-process-initial-commands): Avoid liveness check on shell --
we know that it must be alive since we're opening a connection at
this moment.
(tramp-last-cmd): New internal variable.
(tramp-process-echoes): New tunable.
(tramp-send-command): Set tramp-last-cmd.
(tramp-wait-for-output): Delete echo, if applicable.
(tramp-read-passwd): Construct the key for the password cache in a
way that works for multi methods, too.
(tramp-bug): Add backup-directory-alist and
bkup-backup-directory-info to bug reports, with Tramp
counterparts.
2004-05-01 Michael Albinus <michael.albinus@gmx.de>
* net/tramp*.el: Suppress byte-compiler warnings where possible.
* net/tramp.el (tramp-out-of-band-prompt-regexp)
(tramp-actions-copy-out-of-band): New defcustoms.
(tramp-do-copy-or-rename-file-out-of-band): Asynchronous process
used instead of a synchronous one. Allows password entering.
(tramp-action-out-of-band): New defun.
(tramp-open-connection-rsh, tramp-method-out-of-band-p): Remove
restriction with password from doc string.
(tramp-bug): Add variables `tramp-terminal-prompt-regexp',
`tramp-out-of-band-prompt-regexp',
`tramp-actions-copy-out-of-band', `password-cache' and
`password-cache-expiry'.
(toplevel): Remove todo item wrt ssh-agent. Obsolete due to
password caching.
(tramp-touch): FILE can be a local file, too.
(TODO): Remove items done.
(tramp-handle-insert-directory): Properly quote file name also if
not full-directory-p. Handle wildcard case. Reported by Andreas
Schwab <schwab@suse.de>.
(tramp-do-copy-or-rename-file-via-buffer): Set permissions of the
new file.
(tramp-handle-file-local-copy, tramp-handle-write-region): The
permissions of the temporary file are set if filename exists.
Reported by Ted Stern <stern@cray.com>.
(tramp-backup-directory-alist)
(tramp-bkup-backup-directory-info): New defcustoms.
(tramp-file-name-handler-alist): Add entry for
`find-backup-file-name'.
(tramp-handle-find-backup-file-name): New function. Implements
Tramp's find-backup-file-name.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add entry
for `find-backup-file-name'.
* net/tramp-vc.el (tramp-vc-workfile-unchanged-p): Correct typo
("file" -> "filename"). Reported by Kim F. Storm <storm@cua.dk>.
2004-05-07 21:20:10 +00:00
|
|
|
(find-backup-file-name . tramp-handle-find-backup-file-name)
|
2002-12-26 20:47:51 +00:00
|
|
|
;; `find-file-noselect' performed by default handler
|
|
|
|
;; `get-file-buffer' performed by default handler
|
|
|
|
(insert-directory . tramp-smb-handle-insert-directory)
|
|
|
|
(insert-file-contents . tramp-handle-insert-file-contents)
|
|
|
|
(load . tramp-handle-load)
|
|
|
|
(make-directory . tramp-smb-handle-make-directory)
|
|
|
|
(make-directory-internal . tramp-smb-handle-make-directory-internal)
|
2007-07-08 18:03:20 +00:00
|
|
|
(make-symbolic-link . ignore)
|
2002-12-26 20:47:51 +00:00
|
|
|
(rename-file . tramp-smb-handle-rename-file)
|
2007-07-08 18:03:20 +00:00
|
|
|
(set-file-modes . ignore)
|
|
|
|
(set-visited-file-modtime . ignore)
|
|
|
|
(shell-command . ignore)
|
2005-01-16 13:18:31 +00:00
|
|
|
(substitute-in-file-name . tramp-smb-handle-substitute-in-file-name)
|
2002-12-26 20:47:51 +00:00
|
|
|
(unhandled-file-name-directory . tramp-handle-unhandled-file-name-directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
(vc-registered . ignore)
|
|
|
|
(verify-visited-file-modtime . ignore)
|
2002-12-26 20:47:51 +00:00
|
|
|
(write-region . tramp-smb-handle-write-region)
|
|
|
|
)
|
|
|
|
"Alist of handler functions for Tramp SMB method.
|
|
|
|
Operations not mentioned here will be handled by the default Emacs primitives.")
|
|
|
|
|
|
|
|
(defun tramp-smb-file-name-p (filename)
|
|
|
|
"Check if it's a filename for SMB servers."
|
|
|
|
(let ((v (tramp-dissect-file-name filename)))
|
2007-07-08 18:03:20 +00:00
|
|
|
(string= (tramp-file-name-method v) tramp-smb-method)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-file-name-handler (operation &rest args)
|
|
|
|
"Invoke the SMB related OPERATION.
|
|
|
|
First arg specifies the OPERATION, second arg is a list of arguments to
|
|
|
|
pass to the OPERATION."
|
|
|
|
(let ((fn (assoc operation tramp-smb-file-name-handler-alist)))
|
|
|
|
(if fn
|
2007-07-08 18:03:20 +00:00
|
|
|
(save-match-data (apply (cdr fn) args))
|
2002-12-26 20:47:51 +00:00
|
|
|
(tramp-run-real-handler operation args))))
|
|
|
|
|
|
|
|
(add-to-list 'tramp-foreign-file-name-handler-alist
|
|
|
|
(cons 'tramp-smb-file-name-p 'tramp-smb-file-name-handler))
|
|
|
|
|
|
|
|
|
|
|
|
;; File name primitives
|
|
|
|
|
|
|
|
(defun tramp-smb-handle-copy-file
|
2007-10-27 13:57:43 +00:00
|
|
|
(filename newname &optional ok-if-already-exists keep-date preserve-uid-gid)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `copy-file' for Tramp files.
|
2007-10-27 13:57:43 +00:00
|
|
|
KEEP-DATE is not handled in case NEWNAME resides on an SMB server.
|
|
|
|
PRESERVE-UID-GID is completely ignored."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (expand-file-name filename)
|
|
|
|
newname (expand-file-name newname))
|
|
|
|
|
|
|
|
(let ((tmpfile (file-local-copy filename)))
|
|
|
|
|
|
|
|
(if tmpfile
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Remote filename.
|
2002-12-26 20:47:51 +00:00
|
|
|
(rename-file tmpfile newname ok-if-already-exists)
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Remote newname.
|
2002-12-26 20:47:51 +00:00
|
|
|
(when (file-directory-p newname)
|
|
|
|
(setq newname (expand-file-name
|
|
|
|
(file-name-nondirectory filename) newname)))
|
|
|
|
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name newname nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(when (and (not ok-if-already-exists)
|
|
|
|
(file-exists-p newname))
|
|
|
|
(tramp-error v 'file-already-exists newname))
|
|
|
|
|
|
|
|
;; We must also flush the cache of the directory, because
|
|
|
|
;; file-attributes reads the values from there.
|
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
|
|
|
(tramp-flush-file-property v localname)
|
|
|
|
(let ((share (tramp-smb-get-share localname))
|
|
|
|
(file (tramp-smb-get-localname localname t)))
|
|
|
|
(unless share
|
|
|
|
(tramp-error
|
|
|
|
v 'file-error "Target `%s' must contain a share name" newname))
|
|
|
|
(tramp-message v 0 "Copying file %s to file %s..." filename newname)
|
|
|
|
(if (tramp-smb-send-command
|
|
|
|
v (format "put %s \"%s\"" filename file))
|
|
|
|
(tramp-message
|
|
|
|
v 0 "Copying file %s to file %s...done" filename newname)
|
|
|
|
(tramp-error v 'file-error "Cannot copy `%s'" filename)))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-delete-directory (directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `delete-directory' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq directory (directory-file-name (expand-file-name directory)))
|
2005-03-20 20:00:20 +00:00
|
|
|
(when (file-exists-p directory)
|
|
|
|
(with-parsed-tramp-file-name directory nil
|
2007-07-08 18:03:20 +00:00
|
|
|
;; We must also flush the cache of the directory, because
|
|
|
|
;; file-attributes reads the values from there.
|
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
|
|
|
(tramp-flush-directory-property v localname)
|
|
|
|
(let ((dir (tramp-smb-get-localname (file-name-directory localname) t))
|
|
|
|
(file (file-name-nondirectory localname)))
|
|
|
|
(unwind-protect
|
|
|
|
(unless (and
|
|
|
|
(tramp-smb-send-command v (format "cd \"%s\"" dir))
|
|
|
|
(tramp-smb-send-command v (format "rmdir \"%s\"" file)))
|
|
|
|
;; Error
|
|
|
|
(with-current-buffer (tramp-get-connection-buffer v)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(search-forward-regexp tramp-smb-errors nil t)
|
|
|
|
(tramp-error
|
|
|
|
v 'file-error "%s `%s'" (match-string 0) directory)))
|
|
|
|
;; Always go home
|
|
|
|
(tramp-smb-send-command v (format "cd \\")))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-delete-file (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `delete-file' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (expand-file-name filename))
|
2005-03-20 20:00:20 +00:00
|
|
|
(when (file-exists-p filename)
|
|
|
|
(with-parsed-tramp-file-name filename nil
|
2007-07-08 18:03:20 +00:00
|
|
|
;; We must also flush the cache of the directory, because
|
|
|
|
;; file-attributes reads the values from there.
|
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
|
|
|
(tramp-flush-file-property v localname)
|
|
|
|
(let ((dir (tramp-smb-get-localname (file-name-directory localname) t))
|
|
|
|
(file (file-name-nondirectory localname)))
|
|
|
|
(unwind-protect
|
|
|
|
(unless (and
|
|
|
|
(tramp-smb-send-command v (format "cd \"%s\"" dir))
|
|
|
|
(tramp-smb-send-command v (format "rm \"%s\"" file)))
|
|
|
|
;; Error
|
|
|
|
(with-current-buffer (tramp-get-connection-buffer v)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(search-forward-regexp tramp-smb-errors nil t)
|
|
|
|
(tramp-error
|
|
|
|
v 'file-error "%s `%s'" (match-string 0) filename)))
|
|
|
|
;; Always go home
|
|
|
|
(tramp-smb-send-command v (format "cd \\")))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-directory-files
|
|
|
|
(directory &optional full match nosort)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `directory-files' for Tramp files."
|
|
|
|
(let ((result (mapcar 'directory-file-name
|
|
|
|
(file-name-all-completions "" directory))))
|
|
|
|
;; Discriminate with regexp
|
|
|
|
(when match
|
|
|
|
(setq result
|
|
|
|
(delete nil
|
|
|
|
(mapcar (lambda (x) (when (string-match match x) x))
|
|
|
|
result))))
|
|
|
|
;; Append directory
|
|
|
|
(when full
|
|
|
|
(setq result
|
|
|
|
(mapcar
|
|
|
|
(lambda (x) (expand-file-name x directory))
|
|
|
|
result)))
|
|
|
|
;; Sort them if necessary
|
|
|
|
(unless nosort (setq result (sort result 'string-lessp)))
|
|
|
|
;; That's it
|
|
|
|
result))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-directory-files-and-attributes
|
2003-11-30 18:15:22 +00:00
|
|
|
(directory &optional full match nosort id-format)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `directory-files-and-attributes' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
2003-11-30 18:15:22 +00:00
|
|
|
;; We cannot call `file-attributes' for backward compatibility reasons.
|
2005-03-20 20:00:20 +00:00
|
|
|
;; Its optional parameter ID-FORMAT is introduced with Emacs 22.
|
2003-11-30 18:15:22 +00:00
|
|
|
(cons x (tramp-smb-handle-file-attributes
|
2007-07-08 18:03:20 +00:00
|
|
|
(if full x (expand-file-name x directory)) id-format)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(directory-files directory full match nosort)))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
2003-11-30 18:15:22 +00:00
|
|
|
(defun tramp-smb-handle-file-attributes (filename &optional id-format)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-attributes' for Tramp files."
|
|
|
|
;; Reading just the filename entry via "dir localname" is not
|
|
|
|
;; possible, because when filename is a directory, some smbclient
|
|
|
|
;; versions return the content of the directory, and other versions
|
|
|
|
;; don't. Therefore, the whole content of the upper directory is
|
|
|
|
;; retrieved, and the entry of the filename is extracted from.
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name filename nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(with-file-property v localname (format "file-attributes-%s" id-format)
|
|
|
|
(let* ((entries (tramp-smb-get-file-entries
|
|
|
|
(file-name-directory filename)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(entry (and entries
|
2007-07-08 18:03:20 +00:00
|
|
|
(assoc (file-name-nondirectory filename) entries)))
|
2003-11-30 18:15:22 +00:00
|
|
|
(uid (if (and id-format (equal id-format 'string)) "nobody" -1))
|
|
|
|
(gid (if (and id-format (equal id-format 'string)) "nogroup" -1))
|
2007-07-17 21:10:07 +00:00
|
|
|
(inode (tramp-get-inode v))
|
2007-07-08 18:03:20 +00:00
|
|
|
(device (tramp-get-device v)))
|
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* net/tramp.el (tramp-send-region): Protect against
tramp-chunksize being nil.
2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-handle-directory-file-name): Handle the case
PATH is "".
(tramp-completion-handle-file-name-all-completions): Define
`tramp-current-user' locally. See `tramp-parse-passwd'.
(tramp-parse-passwd): For su-alike methods it would be desirable
to return "root@localhost" as default. Unfortunately, we have no
information whether any user name has been typed already. So we
(mis-)use tramp-current-user as indication, assuming it is set in
`tramp-completion-handle-file-name-all-completions'.
(tramp-send-region): Handle the case `tramp-chunksize' is equal
0. I did it accidently. Infinite loop ...
* net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
'(tramp-disable-ange-ftp). Suggested by Kai.
(tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
any longer.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
`tramp-handle-directory-file-name' in order to profit from Kai's
yesterday changes.
2003-02-03 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-chunksize): Set default to 500 as workaround
for some ssh connections.
(tramp-handle-directory-file-name): New implementation. Not sure
if it works.
2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
must not be called with NIL path. It fails in case of
multi-method.
2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-file-name-for-operation): Apply
`expand-file-name' for relative file names only. Otherwise there
might be problems if the default directory is another Tramp
directory as the directory the file is based on.
(tramp-find-foreign-file-name-handler): Check whether FILENAME is
a Tramp file name. It isn't if it comes from an expanded file
name (like "/xx:yy//zz").
2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-devices): New variable. Keeps virtual
device numbers. Devices must distinguish physical file systems.
The device numbers provided by "lstat" aren't unique, because we
operate on different hosts. So we use virtual device numbers,
generated by `tramp-get-device'. Both Ange-FTP and EFS use device
number -1. In order to be different, we use device number (-1 x),
whereby "x" is unique for a given (multi-method method user host).
Suggested by Kai.
(tramp-perl-file-attributes): Always return device number -1.
There will be a virtual device number set in
`tramp-handle-file-attributes', which replaces this one.
(tramp-handle-file-attributes): Set virtual device number.
(tramp-get-device): New function. Returns the virtual device
number. If it doesn't exist, generate a new one.
(tramp-handle-file-regular-p): Use Emacs file name primitives
instead of calling tramp-handle-* equivalents directly. Needed
for tramp-smb.
* net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
Functionality moved to tramp.el.
(tramp-smb-handle-file-attributes): Apply
`tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
know"), which is more honest.
(tramp-smb-handle-make-directory): Use Emacs file name primitives
instead of calling tramp-smb-handle-* equivalents directly.
(tramp-smb-read-file-entry): Return size as a number but a string.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
(tramp-completion-function-alist, tramp-set-completion-function):
Doc string update.
(tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
Provide parsing of "~/.ssh/config" style files.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-handle-expand-file-name): Apply
`tramp-drop-volume-letter'. Otherwise, there are problems on W32
systems.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
functions. Device number and inode number don't exist for SMB
files. Therefore we must generate virtual ones.
(tramp-smb-devices, tramp-smb-inodes): New variables. Keep
generated virtual device numbers and inodes numbers for SMB files.
(tramp-smb-handle-file-attributes): Apply them.
2003-01-14 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-md5-function): Require md5 before checking
function md5. If using md5-encode, put wrapper around it that
converts vector of bytes to ascii text.
2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-mode): Perform check (integerp
last-input-event) before (event-modifiers last-input-event) -
there might be problems if `last-input-event' is a mouse event.
2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
(tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
`file-readable-p' instead of `file-exists-p'. Otherwise these
functions might block. Reported by <kin@neoscale.com>.
2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-ftp.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
* net/tramp-smb.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
2003-01-02 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (top-level): Avoid byte-compiler warnings of unused
variables if the byte-compiler supports this. This is for the
with-parsed-tramp-file-name macro which is wont to produce such
stuff.
2003-02-05 21:03:36 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Check result.
|
2002-12-26 20:47:51 +00:00
|
|
|
(when entry
|
|
|
|
(list (and (string-match "d" (nth 1 entry))
|
2007-07-08 18:03:20 +00:00
|
|
|
t) ;0 file type
|
|
|
|
-1 ;1 link count
|
|
|
|
uid ;2 uid
|
|
|
|
gid ;3 gid
|
|
|
|
'(0 0) ;4 atime
|
|
|
|
(nth 3 entry) ;5 mtime
|
|
|
|
'(0 0) ;6 ctime
|
|
|
|
(nth 2 entry) ;7 size
|
|
|
|
(nth 1 entry) ;8 mode
|
|
|
|
nil ;9 gid weird
|
|
|
|
inode ;10 inode number
|
|
|
|
device)))))) ;11 file system number
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-file-directory-p (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-directory-p' for Tramp files."
|
|
|
|
(and (file-exists-p filename)
|
|
|
|
(eq ?d (aref (nth 8 (file-attributes filename)) 0))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-file-exists-p (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-exists-p' for Tramp files."
|
|
|
|
(not (null (file-attributes filename))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-file-local-copy (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-local-copy' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(with-parsed-tramp-file-name filename nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(let ((file (tramp-smb-get-localname localname t))
|
2007-10-04 20:09:32 +00:00
|
|
|
(tmpfile (tramp-compat-make-temp-file filename)))
|
2007-07-08 18:03:20 +00:00
|
|
|
(unless (file-exists-p filename)
|
|
|
|
(tramp-error
|
|
|
|
v 'file-error
|
|
|
|
"Cannot make local copy of non-existing file `%s'" filename))
|
2007-10-03 10:54:03 +00:00
|
|
|
(tramp-message v 4 "Fetching %s to tmp file %s..." filename tmpfile)
|
|
|
|
(if (tramp-smb-send-command v (format "get \"%s\" %s" file tmpfile))
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-message
|
2007-10-03 10:54:03 +00:00
|
|
|
v 4 "Fetching %s to tmp file %s...done" filename tmpfile)
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-error
|
|
|
|
v 'file-error
|
|
|
|
"Cannot make local copy of file `%s'" filename))
|
2007-10-03 10:54:03 +00:00
|
|
|
tmpfile)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; This function should return "foo/" for directories and "bar" for
|
|
|
|
;; files.
|
|
|
|
(defun tramp-smb-handle-file-name-all-completions (filename directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-name-all-completions' for Tramp files."
|
|
|
|
(all-completions
|
|
|
|
filename
|
|
|
|
(with-parsed-tramp-file-name directory nil
|
|
|
|
(with-file-property v localname "file-name-all-completions"
|
|
|
|
(save-match-data
|
|
|
|
(let ((entries (tramp-smb-get-file-entries directory)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
|
|
|
(list
|
|
|
|
(if (string-match "d" (nth 1 x))
|
|
|
|
(file-name-as-directory (nth 0 x))
|
|
|
|
(nth 0 x))))
|
|
|
|
entries)))))))
|
|
|
|
|
|
|
|
(defun tramp-smb-handle-file-newer-than-file-p (file1 file2)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-newer-than-file-p' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(cond
|
|
|
|
((not (file-exists-p file1)) nil)
|
|
|
|
((not (file-exists-p file2)) t)
|
2007-07-08 18:03:20 +00:00
|
|
|
(t (tramp-time-less-p (nth 5 (file-attributes file2))
|
|
|
|
(nth 5 (file-attributes file1))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-file-writable-p (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `file-writable-p' for Tramp files."
|
|
|
|
(if (file-exists-p filename)
|
|
|
|
(string-match "w" (or (nth 8 (file-attributes filename)) ""))
|
|
|
|
(let ((dir (file-name-directory filename)))
|
|
|
|
(and (file-exists-p dir)
|
|
|
|
(file-writable-p dir)))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-insert-directory
|
|
|
|
(filename switches &optional wildcard full-directory-p)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `insert-directory' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (expand-file-name filename))
|
2007-07-08 18:03:20 +00:00
|
|
|
(when full-directory-p
|
|
|
|
;; Called from `dired-add-entry'.
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (file-name-as-directory filename)))
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name filename nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
2002-12-26 20:47:51 +00:00
|
|
|
(save-match-data
|
2007-07-08 18:03:20 +00:00
|
|
|
(let ((base (file-name-nondirectory filename))
|
|
|
|
;; We should not destroy the cache entry.
|
|
|
|
(entries (copy-sequence
|
|
|
|
(tramp-smb-get-file-entries
|
|
|
|
(file-name-directory filename)))))
|
|
|
|
|
|
|
|
(when wildcard
|
|
|
|
(string-match "\\." base)
|
|
|
|
(setq base (replace-match "\\\\." nil nil base))
|
|
|
|
(string-match "\\*" base)
|
|
|
|
(setq base (replace-match ".*" nil nil base))
|
|
|
|
(string-match "\\?" base)
|
|
|
|
(setq base (replace-match ".?" nil nil base)))
|
|
|
|
|
|
|
|
;; Filter entries.
|
2005-02-09 15:50:47 +00:00
|
|
|
(setq entries
|
2007-07-08 18:03:20 +00:00
|
|
|
(delq
|
|
|
|
nil
|
|
|
|
(if (or wildcard (zerop (length base)))
|
|
|
|
;; Check for matching entries.
|
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
|
|
|
(when (string-match
|
|
|
|
(format "^%s" base) (nth 0 x))
|
|
|
|
x))
|
|
|
|
entries)
|
|
|
|
;; We just need the only and only entry FILENAME.
|
|
|
|
(list (assoc base entries)))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-12-23 13:25:27 +00:00
|
|
|
;; Sort entries.
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq entries
|
|
|
|
(sort
|
|
|
|
entries
|
|
|
|
(lambda (x y)
|
|
|
|
(if (string-match "t" switches)
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Sort by date.
|
|
|
|
(tramp-time-less-p (nth 3 y) (nth 3 x))
|
|
|
|
;; Sort by name.
|
2002-12-26 20:47:51 +00:00
|
|
|
(string-lessp (nth 0 x) (nth 0 y))))))
|
|
|
|
|
2007-12-23 13:25:27 +00:00
|
|
|
;; Handle "-F" switch.
|
|
|
|
(when (string-match "F" switches)
|
2008-01-04 03:13:26 +00:00
|
|
|
(mapc
|
2007-12-23 13:25:27 +00:00
|
|
|
(lambda (x)
|
|
|
|
(when (not (zerop (length (car x))))
|
|
|
|
(cond
|
|
|
|
((char-equal ?d (string-to-char (nth 1 x)))
|
|
|
|
(setcar x (concat (car x) "/")))
|
|
|
|
((char-equal ?x (string-to-char (nth 1 x)))
|
|
|
|
(setcar x (concat (car x) "*"))))))
|
|
|
|
entries))
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Print entries.
|
2002-12-26 20:47:51 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (x)
|
2007-07-08 18:03:20 +00:00
|
|
|
(when (not (zerop (length (nth 0 x))))
|
|
|
|
(insert
|
|
|
|
(format
|
|
|
|
"%10s %3d %-8s %-8s %8s %s %s\n"
|
|
|
|
(nth 1 x) ; mode
|
|
|
|
1 "nobody" "nogroup"
|
|
|
|
(nth 2 x) ; size
|
|
|
|
(format-time-string
|
|
|
|
(if (tramp-time-less-p
|
|
|
|
(tramp-time-subtract (current-time) (nth 3 x))
|
|
|
|
tramp-half-a-year)
|
|
|
|
"%b %e %R"
|
|
|
|
"%b %e %Y")
|
|
|
|
(nth 3 x)) ; date
|
|
|
|
(nth 0 x))) ; file name
|
|
|
|
(forward-line)
|
|
|
|
(beginning-of-line)))
|
|
|
|
entries)))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-make-directory (dir &optional parents)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `make-directory' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq dir (directory-file-name (expand-file-name dir)))
|
|
|
|
(unless (file-name-absolute-p dir)
|
2007-07-08 18:03:20 +00:00
|
|
|
(setq dir (expand-file-name dir default-directory)))
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name dir nil
|
2002-12-26 20:47:51 +00:00
|
|
|
(save-match-data
|
2003-02-28 18:28:47 +00:00
|
|
|
(let* ((share (tramp-smb-get-share localname))
|
2002-12-26 20:47:51 +00:00
|
|
|
(ldir (file-name-directory dir)))
|
|
|
|
;; Make missing directory parts
|
|
|
|
(when (and parents share (not (file-directory-p ldir)))
|
|
|
|
(make-directory ldir parents))
|
|
|
|
;; Just do it
|
|
|
|
(when (file-directory-p ldir)
|
2003-02-05 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
Version 2.0.29 released.
* net/tramp.el (tramp-send-region): Protect against
tramp-chunksize being nil.
2003-02-04 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-handle-directory-file-name): Handle the case
PATH is "".
(tramp-completion-handle-file-name-all-completions): Define
`tramp-current-user' locally. See `tramp-parse-passwd'.
(tramp-parse-passwd): For su-alike methods it would be desirable
to return "root@localhost" as default. Unfortunately, we have no
information whether any user name has been typed already. So we
(mis-)use tramp-current-user as indication, assuming it is set in
`tramp-completion-handle-file-name-all-completions'.
(tramp-send-region): Handle the case `tramp-chunksize' is equal
0. I did it accidently. Infinite loop ...
* net/tramp-ftp.el (top-level): eval-after-load "ange-ftp"
'(tramp-disable-ange-ftp). Suggested by Kai.
(tramp-ftp-file-name-handler): `tramp-disable-ange-ftp' not needed
any longer.
* net/tramp-smb.el (tramp-smb-file-name-handler-alist): Apply
`tramp-handle-directory-file-name' in order to profit from Kai's
yesterday changes.
2003-02-03 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-chunksize): Set default to 500 as workaround
for some ssh connections.
(tramp-handle-directory-file-name): New implementation. Not sure
if it works.
2003-01-28 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-get-device): `tramp-make-tramp-file-name'
must not be called with NIL path. It fails in case of
multi-method.
2003-01-27 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-file-name-for-operation): Apply
`expand-file-name' for relative file names only. Otherwise there
might be problems if the default directory is another Tramp
directory as the directory the file is based on.
(tramp-find-foreign-file-name-handler): Check whether FILENAME is
a Tramp file name. It isn't if it comes from an expanded file
name (like "/xx:yy//zz").
2003-01-25 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-devices): New variable. Keeps virtual
device numbers. Devices must distinguish physical file systems.
The device numbers provided by "lstat" aren't unique, because we
operate on different hosts. So we use virtual device numbers,
generated by `tramp-get-device'. Both Ange-FTP and EFS use device
number -1. In order to be different, we use device number (-1 x),
whereby "x" is unique for a given (multi-method method user host).
Suggested by Kai.
(tramp-perl-file-attributes): Always return device number -1.
There will be a virtual device number set in
`tramp-handle-file-attributes', which replaces this one.
(tramp-handle-file-attributes): Set virtual device number.
(tramp-get-device): New function. Returns the virtual device
number. If it doesn't exist, generate a new one.
(tramp-handle-file-regular-p): Use Emacs file name primitives
instead of calling tramp-handle-* equivalents directly. Needed
for tramp-smb.
* net/tramp-smb.el (tramp-smb-devices, tramp-smb-get-device): Removed.
Functionality moved to tramp.el.
(tramp-smb-handle-file-attributes): Apply
`tramp-get-device'. ATIME and CTIME are (0 0) now (= "don't
know"), which is more honest.
(tramp-smb-handle-make-directory): Use Emacs file name primitives
instead of calling tramp-smb-handle-* equivalents directly.
(tramp-smb-read-file-entry): Return size as a number but a string.
2003-01-24 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-function-alist-ssh): Add parsing
of "/etc/ssh_config" and "~/.ssh/config". Suggested by Kai.
(tramp-completion-function-alist, tramp-set-completion-function):
Doc string update.
(tramp-parse-sconfig, tramp-parse-sconfig-group): New functions.
Provide parsing of "~/.ssh/config" style files.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-handle-expand-file-name): Apply
`tramp-drop-volume-letter'. Otherwise, there are problems on W32
systems.
2003-01-21 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-smb.el (tramp-smb-get-device, tramp-smb-get-inode): New
functions. Device number and inode number don't exist for SMB
files. Therefore we must generate virtual ones.
(tramp-smb-devices, tramp-smb-inodes): New variables. Keep
generated virtual device numbers and inodes numbers for SMB files.
(tramp-smb-handle-file-attributes): Apply them.
2003-01-14 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (tramp-md5-function): Require md5 before checking
function md5. If using md5-encode, put wrapper around it that
converts vector of bytes to ascii text.
2003-01-13 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-completion-mode): Perform check (integerp
last-input-event) before (event-modifiers last-input-event) -
there might be problems if `last-input-event' is a mouse event.
2003-01-12 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp.el (tramp-parse-rhosts, tramp-parse-shosts)
(tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc): Use
`file-readable-p' instead of `file-exists-p'. Otherwise these
functions might block. Reported by <kin@neoscale.com>.
2003-01-02 Michael Albinus <Michael.Albinus@alcatel.de>
* net/tramp-ftp.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
* net/tramp-smb.el (top-level): Defaults for
`tramp-default-method-alist' must be a list.
2003-01-02 Kai Gro�ohann <kai.grossjohann@uni-duisburg.de>
* net/tramp.el (top-level): Avoid byte-compiler warnings of unused
variables if the byte-compiler supports this. This is for the
with-parsed-tramp-file-name macro which is wont to produce such
stuff.
2003-02-05 21:03:36 +00:00
|
|
|
(make-directory-internal dir))
|
2002-12-26 20:47:51 +00:00
|
|
|
(unless (file-directory-p dir)
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-error v 'file-error "Couldn't make directory %s" dir))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-make-directory-internal (directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `make-directory-internal' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq directory (directory-file-name (expand-file-name directory)))
|
|
|
|
(unless (file-name-absolute-p directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
(setq directory (expand-file-name directory default-directory)))
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name directory nil
|
2002-12-26 20:47:51 +00:00
|
|
|
(save-match-data
|
2007-07-08 18:03:20 +00:00
|
|
|
(let* ((file (tramp-smb-get-localname localname t)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(when (file-directory-p (file-name-directory directory))
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-smb-send-command v (format "mkdir \"%s\"" file))
|
|
|
|
;; We must also flush the cache of the directory, because
|
|
|
|
;; file-attributes reads the values from there.
|
|
|
|
(tramp-flush-file-property v (file-name-directory localname)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(unless (file-directory-p directory)
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-error
|
|
|
|
v 'file-error "Couldn't make directory %s" directory))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(defun tramp-smb-handle-rename-file
|
|
|
|
(filename newname &optional ok-if-already-exists)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `rename-file' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (expand-file-name filename)
|
|
|
|
newname (expand-file-name newname))
|
|
|
|
|
|
|
|
(let ((tmpfile (file-local-copy filename)))
|
|
|
|
|
|
|
|
(if tmpfile
|
|
|
|
;; remote filename
|
|
|
|
(rename-file tmpfile newname ok-if-already-exists)
|
|
|
|
|
|
|
|
;; remote newname
|
|
|
|
(when (file-directory-p newname)
|
|
|
|
(setq newname (expand-file-name
|
|
|
|
(file-name-nondirectory filename) newname)))
|
|
|
|
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name newname nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(when (and (not ok-if-already-exists)
|
|
|
|
(file-exists-p newname))
|
|
|
|
(tramp-error v 'file-already-exists newname))
|
|
|
|
;; We must also flush the cache of the directory, because
|
|
|
|
;; file-attributes reads the values from there.
|
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
|
|
|
(tramp-flush-file-property v localname)
|
|
|
|
(let ((file (tramp-smb-get-localname localname t)))
|
|
|
|
(tramp-message v 0 "Copying file %s to file %s..." filename newname)
|
|
|
|
(if (tramp-smb-send-command v (format "put %s \"%s\"" filename file))
|
|
|
|
(tramp-message
|
|
|
|
v 0 "Copying file %s to file %s...done" filename newname)
|
|
|
|
(tramp-error v 'file-error "Cannot rename `%s'" filename))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(delete-file filename))
|
|
|
|
|
2005-01-16 13:18:31 +00:00
|
|
|
(defun tramp-smb-handle-substitute-in-file-name (filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `handle-substitute-in-file-name' for Tramp files.
|
2007-11-07 20:41:15 +00:00
|
|
|
\"//\" substitutes only in the local filename part. Catches
|
|
|
|
errors for shares like \"C$/\", which are common in Microsoft Windows."
|
|
|
|
(with-parsed-tramp-file-name filename nil
|
|
|
|
;; Ignore in LOCALNAME everything before "//".
|
|
|
|
(when (and (stringp localname) (string-match ".+?/\\(/\\|~\\)" localname))
|
|
|
|
(setq filename
|
|
|
|
(concat (file-remote-p filename)
|
|
|
|
(replace-match "\\1" nil nil localname)))))
|
2005-01-16 13:18:31 +00:00
|
|
|
(condition-case nil
|
|
|
|
(tramp-run-real-handler 'substitute-in-file-name (list filename))
|
|
|
|
(error filename)))
|
|
|
|
|
2002-12-26 20:47:51 +00:00
|
|
|
(defun tramp-smb-handle-write-region
|
|
|
|
(start end filename &optional append visit lockname confirm)
|
2007-07-08 18:03:20 +00:00
|
|
|
"Like `write-region' for Tramp files."
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq filename (expand-file-name filename))
|
2005-03-20 20:00:20 +00:00
|
|
|
(with-parsed-tramp-file-name filename nil
|
2007-07-08 18:03:20 +00:00
|
|
|
(unless (eq append nil)
|
|
|
|
(tramp-error
|
2007-10-27 13:57:43 +00:00
|
|
|
v 'file-error "Cannot append to file using Tramp (`%s')" filename))
|
2007-10-03 10:54:03 +00:00
|
|
|
;; XEmacs takes a coding system as the seventh argument, not `confirm'.
|
2007-07-08 18:03:20 +00:00
|
|
|
(when (and (not (featurep 'xemacs))
|
|
|
|
confirm (file-exists-p filename))
|
|
|
|
(unless (y-or-n-p (format "File %s exists; overwrite anyway? "
|
|
|
|
filename))
|
|
|
|
(tramp-error v 'file-error "File not overwritten")))
|
|
|
|
;; We must also flush the cache of the directory, because
|
2007-11-07 20:41:15 +00:00
|
|
|
;; `file-attributes' reads the values from there.
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-flush-file-property v (file-name-directory localname))
|
|
|
|
(tramp-flush-file-property v localname)
|
|
|
|
(let ((file (tramp-smb-get-localname localname t))
|
|
|
|
(curbuf (current-buffer))
|
2007-10-04 20:09:32 +00:00
|
|
|
(tmpfile (tramp-compat-make-temp-file filename)))
|
2007-07-08 18:03:20 +00:00
|
|
|
;; We say `no-message' here because we don't want the visited file
|
|
|
|
;; modtime data to be clobbered from the temp file. We call
|
|
|
|
;; `set-visited-file-modtime' ourselves later on.
|
|
|
|
(tramp-run-real-handler
|
|
|
|
'write-region
|
|
|
|
(if confirm ; don't pass this arg unless defined for backward compat.
|
2007-10-03 10:54:03 +00:00
|
|
|
(list start end tmpfile append 'no-message lockname confirm)
|
|
|
|
(list start end tmpfile append 'no-message lockname)))
|
2007-07-08 18:03:20 +00:00
|
|
|
|
2007-10-03 10:54:03 +00:00
|
|
|
(tramp-message v 5 "Writing tmp file %s to file %s..." tmpfile filename)
|
|
|
|
(if (tramp-smb-send-command v (format "put %s \"%s\"" tmpfile file))
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-message
|
2007-10-03 10:54:03 +00:00
|
|
|
v 5 "Writing tmp file %s to file %s...done" tmpfile filename)
|
2007-07-08 18:03:20 +00:00
|
|
|
(tramp-error v 'file-error "Cannot write `%s'" filename))
|
|
|
|
|
2007-10-03 10:54:03 +00:00
|
|
|
(delete-file tmpfile)
|
2007-07-08 18:03:20 +00:00
|
|
|
(unless (equal curbuf (current-buffer))
|
|
|
|
(tramp-error
|
|
|
|
v 'file-error
|
|
|
|
"Buffer has changed from `%s' to `%s'" curbuf (current-buffer)))
|
|
|
|
(when (eq visit t)
|
|
|
|
(set-visited-file-modtime)))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
;; Internal file name functions
|
|
|
|
|
2003-02-28 18:28:47 +00:00
|
|
|
(defun tramp-smb-get-share (localname)
|
|
|
|
"Returns the share name of LOCALNAME."
|
2002-12-26 20:47:51 +00:00
|
|
|
(save-match-data
|
2003-02-28 18:28:47 +00:00
|
|
|
(when (string-match "^/?\\([^/]+\\)/" localname)
|
|
|
|
(match-string 1 localname))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2003-02-28 18:28:47 +00:00
|
|
|
(defun tramp-smb-get-localname (localname convert)
|
|
|
|
"Returns the file name of LOCALNAME.
|
2002-12-26 20:47:51 +00:00
|
|
|
If CONVERT is non-nil exchange \"/\" by \"\\\\\"."
|
|
|
|
(save-match-data
|
2003-02-28 18:28:47 +00:00
|
|
|
(let ((res localname))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(setq
|
|
|
|
res (if (string-match "^/?[^/]+/\\(.*\\)" res)
|
|
|
|
(if convert
|
|
|
|
(mapconcat
|
|
|
|
(lambda (x) (if (equal x ?/) "\\" (char-to-string x)))
|
|
|
|
(match-string 1 res) "")
|
|
|
|
(match-string 1 res))
|
|
|
|
(if (string-match "^/?\\([^/]+\\)$" res)
|
|
|
|
(match-string 1 res)
|
|
|
|
"")))
|
|
|
|
|
|
|
|
;; Sometimes we have discarded `substitute-in-file-name'
|
|
|
|
(when (string-match "\\(\\$\\$\\)\\(/\\|$\\)" res)
|
|
|
|
(setq res (replace-match "$" nil nil res 1)))
|
|
|
|
|
|
|
|
res)))
|
|
|
|
|
|
|
|
;; Share names of a host are cached. It is very unlikely that the
|
|
|
|
;; shares do change during connection.
|
2007-07-08 18:03:20 +00:00
|
|
|
(defun tramp-smb-get-file-entries (directory)
|
|
|
|
"Read entries which match DIRECTORY.
|
2002-12-26 20:47:51 +00:00
|
|
|
Either the shares are listed, or the `dir' command is executed.
|
2003-02-28 18:28:47 +00:00
|
|
|
Result is a list of (LOCALNAME MODE SIZE MONTH DAY TIME YEAR)."
|
2007-07-08 18:03:20 +00:00
|
|
|
(with-parsed-tramp-file-name directory nil
|
|
|
|
(setq localname (or localname "/"))
|
|
|
|
(with-file-property v localname "file-entries"
|
|
|
|
(with-current-buffer (tramp-get-buffer v)
|
|
|
|
(let* ((share (tramp-smb-get-share localname))
|
|
|
|
(file (tramp-smb-get-localname localname nil))
|
|
|
|
(cache (tramp-get-connection-property v "share-cache" nil))
|
|
|
|
res entry)
|
|
|
|
|
|
|
|
(if (and (not share) cache)
|
|
|
|
;; Return cached shares
|
|
|
|
(setq res cache)
|
|
|
|
|
|
|
|
;; Read entries
|
|
|
|
(setq file (file-name-as-directory file))
|
|
|
|
(when (string-match "^\\./" file)
|
|
|
|
(setq file (substring file 1)))
|
|
|
|
(if share
|
|
|
|
(tramp-smb-send-command v (format "dir \"%s*\"" file))
|
|
|
|
;; `tramp-smb-maybe-open-connection' lists also the share names
|
|
|
|
(tramp-smb-maybe-open-connection v))
|
|
|
|
|
|
|
|
;; Loop the listing
|
|
|
|
(goto-char (point-min))
|
|
|
|
(unless (re-search-forward tramp-smb-errors nil t)
|
|
|
|
(while (not (eobp))
|
|
|
|
(setq entry (tramp-smb-read-file-entry share))
|
|
|
|
(forward-line)
|
|
|
|
(when entry (add-to-list 'res entry))))
|
|
|
|
|
2002-12-26 20:47:51 +00:00
|
|
|
;; Cache share entries
|
2007-07-08 18:03:20 +00:00
|
|
|
(unless share
|
|
|
|
(tramp-set-connection-property v "share-cache" res)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Add directory itself
|
|
|
|
(add-to-list 'res '("" "drwxrwxrwx" 0 (0 0)))
|
2004-02-29 17:52:17 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; There's a very strange error (debugged with XEmacs 21.4.14)
|
|
|
|
;; If there's no short delay, it returns nil. No idea about.
|
|
|
|
(when (featurep 'xemacs) (sleep-for 0.01))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Return entries
|
|
|
|
(delq nil res))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; Return either a share name (if SHARE is nil), or a file name
|
|
|
|
;;
|
|
|
|
;; If shares are listed, the following format is expected
|
|
|
|
;;
|
|
|
|
;; \s-\{8,8} - leading spaces
|
|
|
|
;; \S-\(.*\S-\)\s-* - share name, 14 char
|
|
|
|
;; \s- - space delimeter
|
|
|
|
;; \S-+\s-* - type, 8 char, "Disk " expected
|
|
|
|
;; \(\s-\{2,2\}.*\)? - space delimeter, comment
|
|
|
|
;;
|
|
|
|
;; Entries provided by smbclient DIR aren't fully regular.
|
|
|
|
;; They should have the format
|
|
|
|
;;
|
|
|
|
;; \s-\{2,2} - leading spaces
|
2003-03-29 15:16:57 +00:00
|
|
|
;; \S-\(.*\S-\)\s-* - file name, 30 chars, left bound
|
|
|
|
;; \s-+[ADHRSV]* - permissions, 7 chars, right bound
|
2002-12-26 20:47:51 +00:00
|
|
|
;; \s- - space delimeter
|
2003-03-29 15:16:57 +00:00
|
|
|
;; \s-+[0-9]+ - size, 8 chars, right bound
|
2002-12-26 20:47:51 +00:00
|
|
|
;; \s-\{2,2\} - space delimeter
|
|
|
|
;; \w\{3,3\} - weekday
|
|
|
|
;; \s- - space delimeter
|
2003-03-29 15:16:57 +00:00
|
|
|
;; \w\{3,3\} - month
|
|
|
|
;; \s- - space delimeter
|
2007-07-08 18:03:20 +00:00
|
|
|
;; [ 12][0-9] - day
|
2002-12-26 20:47:51 +00:00
|
|
|
;; \s- - space delimeter
|
|
|
|
;; [0-9]\{2,2\}:[0-9]\{2,2\}:[0-9]\{2,2\} - time
|
|
|
|
;; \s- - space delimeter
|
|
|
|
;; [0-9]\{4,4\} - year
|
|
|
|
;;
|
2003-03-29 15:16:57 +00:00
|
|
|
;; samba/src/client.c (http://samba.org/doxygen/samba/client_8c-source.html)
|
|
|
|
;; has function display_finfo:
|
|
|
|
;;
|
|
|
|
;; d_printf(" %-30s%7.7s %8.0f %s",
|
|
|
|
;; finfo->name,
|
|
|
|
;; attrib_string(finfo->mode),
|
|
|
|
;; (double)finfo->size,
|
|
|
|
;; asctime(LocalTime(&t)));
|
|
|
|
;;
|
|
|
|
;; in Samba 1.9, there's the following code:
|
|
|
|
;;
|
|
|
|
;; DEBUG(0,(" %-30s%7.7s%10d %s",
|
|
|
|
;; CNV_LANG(finfo->name),
|
|
|
|
;; attrib_string(finfo->mode),
|
|
|
|
;; finfo->size,
|
|
|
|
;; asctime(LocalTime(&t))));
|
|
|
|
;;
|
2002-12-26 20:47:51 +00:00
|
|
|
;; Problems:
|
|
|
|
;; * Modern regexp constructs, like spy groups and counted repetitions, aren't
|
|
|
|
;; available in older Emacsen.
|
|
|
|
;; * The length of constructs (file name, size) might exceed the default.
|
|
|
|
;; * File names might contain spaces.
|
|
|
|
;; * Permissions might be empty.
|
|
|
|
;;
|
|
|
|
;; So we try to analyze backwards.
|
|
|
|
(defun tramp-smb-read-file-entry (share)
|
|
|
|
"Parse entry in SMB output buffer.
|
|
|
|
If SHARE is result, entries are of type dir. Otherwise, shares are listed.
|
2003-02-28 18:28:47 +00:00
|
|
|
Result is the list (LOCALNAME MODE SIZE MTIME)."
|
2007-07-08 18:03:20 +00:00
|
|
|
;; We are called from `tramp-smb-get-file-entries', which sets the
|
|
|
|
;; current buffer.
|
2007-09-30 16:43:07 +00:00
|
|
|
(let ((line (buffer-substring (point) (tramp-compat-line-end-position)))
|
2003-02-28 18:28:47 +00:00
|
|
|
localname mode size month day hour min sec year mtime)
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
(if (not share)
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Read share entries.
|
|
|
|
(when (string-match "^\\s-+\\(\\S-\\(.*\\S-\\)?\\)\\s-+Disk" line)
|
2003-02-28 18:28:47 +00:00
|
|
|
(setq localname (match-string 1 line)
|
2002-12-26 20:47:51 +00:00
|
|
|
mode "dr-xr-xr-x"
|
|
|
|
size 0))
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Real listing.
|
2002-12-26 20:47:51 +00:00
|
|
|
(block nil
|
|
|
|
|
|
|
|
;; year
|
|
|
|
(if (string-match "\\([0-9]+\\)$" line)
|
|
|
|
(setq year (string-to-number (match-string 1 line))
|
|
|
|
line (substring line 0 -5))
|
|
|
|
(return))
|
|
|
|
|
|
|
|
;; time
|
|
|
|
(if (string-match "\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)$" line)
|
|
|
|
(setq hour (string-to-number (match-string 1 line))
|
|
|
|
min (string-to-number (match-string 2 line))
|
|
|
|
sec (string-to-number (match-string 3 line))
|
|
|
|
line (substring line 0 -9))
|
|
|
|
(return))
|
|
|
|
|
|
|
|
;; day
|
|
|
|
(if (string-match "\\([0-9]+\\)$" line)
|
|
|
|
(setq day (string-to-number (match-string 1 line))
|
|
|
|
line (substring line 0 -3))
|
|
|
|
(return))
|
|
|
|
|
|
|
|
;; month
|
|
|
|
(if (string-match "\\(\\w+\\)$" line)
|
|
|
|
(setq month (match-string 1 line)
|
|
|
|
line (substring line 0 -4))
|
|
|
|
(return))
|
|
|
|
|
|
|
|
;; weekday
|
|
|
|
(if (string-match "\\(\\w+\\)$" line)
|
|
|
|
(setq line (substring line 0 -5))
|
|
|
|
(return))
|
|
|
|
|
|
|
|
;; size
|
|
|
|
(if (string-match "\\([0-9]+\\)$" line)
|
2003-03-29 15:16:57 +00:00
|
|
|
(let ((length (- (max 10 (1+ (length (match-string 1 line)))))))
|
|
|
|
(setq size (string-to-number (match-string 1 line)))
|
|
|
|
(when (string-match "\\([ADHRSV]+\\)" (substring line length))
|
|
|
|
(setq length (+ length (match-end 0))))
|
|
|
|
(setq line (substring line 0 length)))
|
2002-12-26 20:47:51 +00:00
|
|
|
(return))
|
|
|
|
|
2003-03-29 15:16:57 +00:00
|
|
|
;; mode: ARCH, DIR, HIDDEN, RONLY, SYSTEM, VOLID
|
|
|
|
(if (string-match "\\([ADHRSV]+\\)?$" line)
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq
|
2003-03-29 15:16:57 +00:00
|
|
|
mode (or (match-string 1 line) "")
|
2002-12-26 20:47:51 +00:00
|
|
|
mode (save-match-data (format
|
|
|
|
"%s%s"
|
|
|
|
(if (string-match "D" mode) "d" "-")
|
|
|
|
(mapconcat
|
|
|
|
(lambda (x) "") " "
|
|
|
|
(concat "r" (if (string-match "R" mode) "-" "w") "x"))))
|
2003-03-29 15:16:57 +00:00
|
|
|
line (substring line 0 -7))
|
2002-12-26 20:47:51 +00:00
|
|
|
(return))
|
|
|
|
|
2003-02-28 18:28:47 +00:00
|
|
|
;; localname
|
2003-03-29 15:16:57 +00:00
|
|
|
(if (string-match "^\\s-+\\(\\S-\\(.*\\S-\\)?\\)\\s-*$" line)
|
2003-02-28 18:28:47 +00:00
|
|
|
(setq localname (match-string 1 line))
|
2002-12-26 20:47:51 +00:00
|
|
|
(return))))
|
|
|
|
|
2003-02-28 18:28:47 +00:00
|
|
|
(when (and localname mode size)
|
2002-12-26 20:47:51 +00:00
|
|
|
(setq mtime
|
|
|
|
(if (and sec min hour day month year)
|
|
|
|
(encode-time
|
|
|
|
sec min hour day
|
2007-07-08 18:03:20 +00:00
|
|
|
(cdr (assoc (downcase month) tramp-parse-time-months))
|
2002-12-26 20:47:51 +00:00
|
|
|
year)
|
|
|
|
'(0 0)))
|
2003-02-28 18:28:47 +00:00
|
|
|
(list localname mode size mtime))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
;; Connection functions
|
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
(defun tramp-smb-send-command (vec command)
|
|
|
|
"Send the COMMAND to connection VEC.
|
|
|
|
Returns nil if there has been an error message from smbclient."
|
|
|
|
(tramp-smb-maybe-open-connection vec)
|
|
|
|
(tramp-message vec 6 "%s" command)
|
|
|
|
(tramp-send-string vec command)
|
|
|
|
(tramp-smb-wait-for-output vec))
|
|
|
|
|
|
|
|
(defun tramp-smb-maybe-open-connection (vec)
|
|
|
|
"Maybe open a connection to HOST, log in as USER, using `tramp-smb-program'.
|
2002-12-26 20:47:51 +00:00
|
|
|
Does not do anything if a connection is already open, but re-opens the
|
|
|
|
connection if a previous connection has died for some reason."
|
2007-07-08 18:03:20 +00:00
|
|
|
(let* ((share (tramp-smb-get-share (tramp-file-name-localname vec)))
|
|
|
|
(buf (tramp-get-buffer vec))
|
|
|
|
(p (get-buffer-process buf)))
|
2005-03-20 20:00:20 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; If too much time has passed since last command was sent, look
|
|
|
|
;; whether has been an error message; maybe due to connection timeout.
|
|
|
|
(with-current-buffer buf
|
|
|
|
(goto-char (point-min))
|
|
|
|
(when (and (> (tramp-time-diff
|
|
|
|
(current-time)
|
|
|
|
(tramp-get-connection-property
|
|
|
|
p "last-cmd-time" '(0 0 0)))
|
|
|
|
60)
|
|
|
|
p (processp p) (memq (process-status p) '(run open))
|
|
|
|
(re-search-forward tramp-smb-errors nil t))
|
|
|
|
(delete-process p)
|
|
|
|
(setq p nil)))
|
|
|
|
|
|
|
|
;; Check whether it is still the same share.
|
|
|
|
(unless
|
|
|
|
(and p (processp p) (memq (process-status p) '(run open))
|
|
|
|
(string-equal
|
|
|
|
share
|
|
|
|
(tramp-get-connection-property p "smb-share" "")))
|
|
|
|
|
|
|
|
(save-match-data
|
|
|
|
;; There might be unread output from checking for share names.
|
|
|
|
(when buf (with-current-buffer buf (erase-buffer)))
|
|
|
|
(when (and p (processp p)) (delete-process p))
|
|
|
|
|
|
|
|
(unless (let ((default-directory
|
2007-09-30 16:43:07 +00:00
|
|
|
(tramp-compat-temporary-file-directory)))
|
2007-07-08 18:03:20 +00:00
|
|
|
(executable-find tramp-smb-program))
|
|
|
|
(error "Cannot find command %s in %s" tramp-smb-program exec-path))
|
|
|
|
|
|
|
|
(let* ((user (tramp-file-name-user vec))
|
|
|
|
(host (tramp-file-name-host vec))
|
|
|
|
(real-user user)
|
|
|
|
(real-host host)
|
|
|
|
domain port args)
|
|
|
|
|
|
|
|
;; Check for domain ("user%domain") and port ("host#port").
|
|
|
|
(when (and user (string-match "\\(.+\\)%\\(.+\\)" user))
|
|
|
|
(setq real-user (or (match-string 1 user) user)
|
|
|
|
domain (match-string 2 user)))
|
|
|
|
|
|
|
|
(when (and host (string-match "\\(.+\\)#\\(.+\\)" host))
|
|
|
|
(setq real-host (or (match-string 1 host) host)
|
|
|
|
port (match-string 2 host)))
|
|
|
|
|
|
|
|
(if share
|
|
|
|
(setq args (list (concat "//" real-host "/" share)))
|
|
|
|
(setq args (list "-L" real-host )))
|
|
|
|
|
|
|
|
(if (not (zerop (length real-user)))
|
|
|
|
(setq args (append args (list "-U" real-user)))
|
|
|
|
(setq args (append args (list "-N"))))
|
|
|
|
|
|
|
|
(when domain (setq args (append args (list "-W" domain))))
|
|
|
|
(when port (setq args (append args (list "-p" port))))
|
|
|
|
(setq args (append args (list "-s" "/dev/null")))
|
|
|
|
|
|
|
|
;; OK, let's go.
|
|
|
|
(tramp-message
|
|
|
|
vec 3 "Opening connection for //%s%s/%s..."
|
|
|
|
(if (not (zerop (length user))) (concat user "@") "")
|
|
|
|
host (or share ""))
|
|
|
|
|
|
|
|
(let* ((coding-system-for-read nil)
|
|
|
|
(process-connection-type tramp-process-connection-type)
|
2007-09-30 16:43:07 +00:00
|
|
|
(p (let ((default-directory
|
|
|
|
(tramp-compat-temporary-file-directory)))
|
2007-07-08 18:03:20 +00:00
|
|
|
(apply #'start-process
|
|
|
|
(tramp-buffer-name vec) (tramp-get-buffer vec)
|
|
|
|
tramp-smb-program args))))
|
|
|
|
|
|
|
|
(tramp-message
|
|
|
|
vec 6 "%s" (mapconcat 'identity (process-command p) " "))
|
|
|
|
(tramp-set-process-query-on-exit-flag p nil)
|
|
|
|
(tramp-set-connection-property p "smb-share" share)
|
|
|
|
|
|
|
|
;; Set variables for computing the prompt for reading password.
|
|
|
|
(setq tramp-current-method tramp-smb-method
|
|
|
|
tramp-current-user user
|
|
|
|
tramp-current-host host)
|
|
|
|
|
|
|
|
;; Set chunksize. Otherwise, `tramp-send-string' might
|
|
|
|
;; try it itself.
|
|
|
|
(tramp-set-connection-property p "chunksize" tramp-chunksize)
|
|
|
|
|
|
|
|
;; Play login scenario.
|
|
|
|
(tramp-process-actions
|
|
|
|
p vec
|
|
|
|
(if share
|
|
|
|
tramp-smb-actions-with-share
|
|
|
|
tramp-smb-actions-without-share))
|
|
|
|
|
|
|
|
(tramp-message
|
|
|
|
vec 3 "Opening connection for //%s%s/%s...done"
|
|
|
|
(if (not (zerop (length user))) (concat user "@") "")
|
|
|
|
host (or share ""))))))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
;; We don't use timeouts. If needed, the caller shall wrap around.
|
2007-07-08 18:03:20 +00:00
|
|
|
(defun tramp-smb-wait-for-output (vec)
|
2002-12-26 20:47:51 +00:00
|
|
|
"Wait for output from smbclient command.
|
|
|
|
Returns nil if an error message has appeared."
|
2007-07-08 18:03:20 +00:00
|
|
|
(with-current-buffer (tramp-get-buffer vec)
|
|
|
|
(let ((p (get-buffer-process (current-buffer)))
|
|
|
|
(found (progn (goto-char (point-min))
|
|
|
|
(re-search-forward tramp-smb-prompt nil t)))
|
|
|
|
(err (progn (goto-char (point-min))
|
|
|
|
(re-search-forward tramp-smb-errors nil t))))
|
2004-02-29 17:52:17 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Algorithm: get waiting output. See if last line contains
|
|
|
|
;; tramp-smb-prompt sentinel or tramp-smb-errors strings.
|
|
|
|
;; If not, wait a bit and again get waiting output.
|
|
|
|
(while (and (not found) (not err))
|
2004-02-29 17:52:17 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Accept pending output.
|
|
|
|
(tramp-accept-process-output p)
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Search for prompt.
|
|
|
|
(goto-char (point-min))
|
|
|
|
(setq found (re-search-forward tramp-smb-prompt nil t))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Search for errors.
|
|
|
|
(goto-char (point-min))
|
|
|
|
(setq err (re-search-forward tramp-smb-errors nil t)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; When the process is still alive, read pending output.
|
|
|
|
(while (and (not found) (memq (process-status p) '(run open)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Accept pending output.
|
|
|
|
(tramp-accept-process-output p)
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Search for prompt.
|
|
|
|
(goto-char (point-min))
|
|
|
|
(setq found (re-search-forward tramp-smb-prompt nil t)))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2007-07-08 18:03:20 +00:00
|
|
|
;; Return value is whether no error message has appeared.
|
|
|
|
(tramp-message vec 6 "\n%s" (buffer-string))
|
|
|
|
(not err))))
|
2002-12-26 20:47:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
(provide 'tramp-smb)
|
|
|
|
|
|
|
|
;;; TODO:
|
|
|
|
|
|
|
|
;; * Error handling in case password is wrong.
|
|
|
|
;; * Read password from "~/.netrc".
|
|
|
|
;; * Return more comprehensive file permission string. Think whether it is
|
|
|
|
;; possible to implement `set-file-modes'.
|
|
|
|
;; * Handle links (FILENAME.LNK).
|
|
|
|
;; * Try to remove the inclusion of dummy "" directory. Seems to be at
|
|
|
|
;; several places, especially in `tramp-smb-handle-insert-directory'.
|
|
|
|
;; * (RMS) Use unwind-protect to clean up the state so as to make the state
|
|
|
|
;; regular again.
|
2007-07-08 18:03:20 +00:00
|
|
|
;; * Make it multi-hop capable.
|
2002-12-26 20:47:51 +00:00
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
;; arch-tag: fcc9dbec-7503-4d73-b638-3c8aa59575f5
|
2002-12-26 20:47:51 +00:00
|
|
|
;;; tramp-smb.el ends here
|