Fix bugs merged with bug#25428
[emacs.git] / lisp / net / tramp-gvfs.el
blob48f50a3d05a730e6ef2b40373272aa7b6b79b74f
1 ;;; tramp-gvfs.el --- Tramp access functions for GVFS daemon -*- lexical-binding:t -*-
3 ;; Copyright (C) 2009-2017 Free Software Foundation, Inc.
5 ;; Author: Michael Albinus <michael.albinus@gmx.de>
6 ;; Keywords: comm, processes
7 ;; Package: tramp
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Access functions for the GVFS daemon from Tramp. Tested with GVFS
27 ;; 1.0 (Ubuntu 8.10, Gnome 2.24). It has been reported also to run
28 ;; with GVFS 0.2.5 (Ubuntu 8.04, Gnome 2.22), but there is an
29 ;; incompatibility with the mount_info structure, which has been
30 ;; worked around.
32 ;; It has also been tested with GVFS 1.6 (Ubuntu 10.04, Gnome 2.30),
33 ;; where the default_location has been added to mount_info (see
34 ;; <https://bugzilla.gnome.org/show_bug.cgi?id=561998>.
36 ;; With GVFS 1.14 (Ubuntu 12.10, Gnome 3.6) the interfaces have been
37 ;; changed, again. So we must introspect the D-Bus interfaces.
39 ;; All actions to mount a remote location, and to retrieve mount
40 ;; information, are performed by D-Bus messages. File operations
41 ;; themselves are performed via the mounted filesystem in ~/.gvfs.
42 ;; Consequently, GNU Emacs with enabled D-Bus bindings is a
43 ;; precondition.
45 ;; The GVFS D-Bus interface is said to be unstable. There were even
46 ;; no introspection data before GVFS 1.14. The interface, as
47 ;; discovered during development time, is given in respective
48 ;; comments.
50 ;; The custom option `tramp-gvfs-methods' contains the list of
51 ;; supported connection methods. Per default, these are "afp", "dav",
52 ;; "davs", "gdrive", "obex", "sftp" and "synce". Note that with
53 ;; "obex" it might be necessary to pair with the other bluetooth
54 ;; device, if it hasn't been done already. There might be also some
55 ;; few seconds delay in discovering available bluetooth devices.
57 ;; Other possible connection methods are "ftp" and "smb". When one of
58 ;; these methods is added to the list, the remote access for that
59 ;; method is performed via GVFS instead of the native Tramp
60 ;; implementation.
62 ;; GVFS offers even more connection methods. The complete list of
63 ;; connection methods of the actual GVFS implementation can be
64 ;; retrieved by:
66 ;; (message
67 ;; "%s"
68 ;; (mapcar
69 ;; 'car
70 ;; (dbus-call-method
71 ;; :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
72 ;; tramp-gvfs-interface-mounttracker "listMountableInfo")))
74 ;; Note that all other connection methods are not tested, beside the
75 ;; ones offered for customization in `tramp-gvfs-methods'. If you
76 ;; request an additional connection method to be supported, please
77 ;; drop me a note.
79 ;; For hostname completion, information is retrieved either from the
80 ;; bluez daemon (for the "obex" method), the hal daemon (for the
81 ;; "synce" method), or from the zeroconf daemon (for the "afp", "dav",
82 ;; "davs", and "sftp" methods). The zeroconf daemon is pre-configured
83 ;; to discover services in the "local" domain. If another domain
84 ;; shall be used for discovering services, the custom option
85 ;; `tramp-gvfs-zeroconf-domain' can be set accordingly.
87 ;; Restrictions:
89 ;; * The current GVFS implementation does not allow writing on the
90 ;; remote bluetooth device via OBEX.
92 ;; * Two shares of the same SMB server cannot be mounted in parallel.
94 ;;; Code:
96 ;; D-Bus support in the Emacs core can be disabled with configuration
97 ;; option "--without-dbus". Declare used subroutines and variables.
98 (declare-function dbus-get-unique-name "dbusbind.c")
100 (require 'tramp)
102 (require 'dbus)
103 (require 'url-parse)
104 (require 'url-util)
105 (require 'zeroconf)
107 ;; Pacify byte-compiler.
108 (eval-when-compile
109 (require 'custom))
111 ;;;###tramp-autoload
112 (defcustom tramp-gvfs-methods
113 '("afp" "dav" "davs" "gdrive" "obex" "sftp" "synce")
114 "List of methods for remote files, accessed with GVFS."
115 :group 'tramp
116 :version "26.1"
117 :type '(repeat (choice (const "afp")
118 (const "dav")
119 (const "davs")
120 (const "ftp")
121 (const "gdrive")
122 (const "obex")
123 (const "sftp")
124 (const "smb")
125 (const "synce")))
126 :require 'tramp)
128 ;; Add defaults for `tramp-default-user-alist' and `tramp-default-host-alist'.
129 ;;;###tramp-autoload
130 (when (string-match "\\(.+\\)@\\(\\(?:gmail\\|googlemail\\)\\.com\\)"
131 user-mail-address)
132 (add-to-list 'tramp-default-user-alist
133 `("\\`gdrive\\'" nil ,(match-string 1 user-mail-address)))
134 (add-to-list 'tramp-default-host-alist
135 '("\\`gdrive\\'" nil ,(match-string 2 user-mail-address))))
136 ;;;###tramp-autoload
137 (add-to-list 'tramp-default-user-alist '("\\`synce\\'" nil nil))
139 ;;;###tramp-autoload
140 (defcustom tramp-gvfs-zeroconf-domain "local"
141 "Zeroconf domain to be used for discovering services, like host names."
142 :group 'tramp
143 :version "23.2"
144 :type 'string
145 :require 'tramp)
147 ;; Add the methods to `tramp-methods', in order to allow minibuffer
148 ;; completion.
149 ;;;###tramp-autoload
150 (when (featurep 'dbusbind)
151 (dolist (elt tramp-gvfs-methods)
152 (unless (assoc elt tramp-methods)
153 (add-to-list 'tramp-methods (cons elt nil)))))
155 (defconst tramp-gvfs-path-tramp (concat dbus-path-emacs "/Tramp")
156 "The preceding object path for own objects.")
158 (defconst tramp-gvfs-service-daemon "org.gtk.vfs.Daemon"
159 "The well known name of the GVFS daemon.")
161 ;; We don't call `dbus-ping', because this would load dbus.el.
162 (defconst tramp-gvfs-enabled
163 (ignore-errors
164 (and (featurep 'dbusbind)
165 (tramp-compat-funcall 'dbus-get-unique-name :system)
166 (tramp-compat-funcall 'dbus-get-unique-name :session)
167 (or (tramp-compat-process-running-p "gvfs-fuse-daemon")
168 (tramp-compat-process-running-p "gvfsd-fuse"))))
169 "Non-nil when GVFS is available.")
171 (defconst tramp-gvfs-path-mounttracker "/org/gtk/vfs/mounttracker"
172 "The object path of the GVFS daemon.")
174 (defconst tramp-gvfs-interface-mounttracker "org.gtk.vfs.MountTracker"
175 "The mount tracking interface in the GVFS daemon.")
177 ;; Introspection data exist since GVFS 1.14. If there are no such
178 ;; data, we expect an earlier interface.
179 (defconst tramp-gvfs-methods-mounttracker
180 (and tramp-gvfs-enabled
181 (dbus-introspect-get-method-names
182 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
183 tramp-gvfs-interface-mounttracker))
184 "The list of supported methods of the mount tracking interface.")
186 (defconst tramp-gvfs-listmounts
187 (if (member "ListMounts" tramp-gvfs-methods-mounttracker)
188 "ListMounts"
189 "listMounts")
190 "The name of the \"listMounts\" method.
191 It has been changed in GVFS 1.14.")
193 (defconst tramp-gvfs-mountlocation
194 (if (member "MountLocation" tramp-gvfs-methods-mounttracker)
195 "MountLocation"
196 "mountLocation")
197 "The name of the \"mountLocation\" method.
198 It has been changed in GVFS 1.14.")
200 (defconst tramp-gvfs-mountlocation-signature
201 (and tramp-gvfs-enabled
202 (dbus-introspect-get-signature
203 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
204 tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation))
205 "The D-Bus signature of the \"mountLocation\" method.
206 It has been changed in GVFS 1.14.")
208 ;; <interface name='org.gtk.vfs.MountTracker'>
209 ;; <method name='listMounts'>
210 ;; <arg name='mount_info_list'
211 ;; type='a{sosssssbay{aya{say}}ay}'
212 ;; direction='out'/>
213 ;; </method>
214 ;; <method name='mountLocation'>
215 ;; <arg name='mount_spec' type='{aya{say}}' direction='in'/>
216 ;; <arg name='dbus_id' type='s' direction='in'/>
217 ;; <arg name='object_path' type='o' direction='in'/>
218 ;; </method>
219 ;; <signal name='mounted'>
220 ;; <arg name='mount_info'
221 ;; type='{sosssssbay{aya{say}}ay}'/>
222 ;; </signal>
223 ;; <signal name='unmounted'>
224 ;; <arg name='mount_info'
225 ;; type='{sosssssbay{aya{say}}ay}'/>
226 ;; </signal>
227 ;; </interface>
229 ;; STRUCT mount_info
230 ;; STRING dbus_id
231 ;; OBJECT_PATH object_path
232 ;; STRING display_name
233 ;; STRING stable_name
234 ;; STRING x_content_types Since GVFS 1.0 only !!!
235 ;; STRING icon
236 ;; STRING preferred_filename_encoding
237 ;; BOOLEAN user_visible
238 ;; ARRAY BYTE fuse_mountpoint
239 ;; STRUCT mount_spec
240 ;; ARRAY BYTE mount_prefix
241 ;; ARRAY
242 ;; STRUCT mount_spec_item
243 ;; STRING key (type, user, domain, host, server,
244 ;; share, volume, port, ssl)
245 ;; ARRAY BYTE value
246 ;; ARRAY BYTE default_location Since GVFS 1.5 only !!!
248 (defconst tramp-gvfs-interface-mountoperation "org.gtk.vfs.MountOperation"
249 "Used by the dbus-proxying implementation of GMountOperation.")
251 ;; <interface name='org.gtk.vfs.MountOperation'>
252 ;; <method name='askPassword'>
253 ;; <arg name='message' type='s' direction='in'/>
254 ;; <arg name='default_user' type='s' direction='in'/>
255 ;; <arg name='default_domain' type='s' direction='in'/>
256 ;; <arg name='flags' type='u' direction='in'/>
257 ;; <arg name='handled' type='b' direction='out'/>
258 ;; <arg name='aborted' type='b' direction='out'/>
259 ;; <arg name='password' type='s' direction='out'/>
260 ;; <arg name='username' type='s' direction='out'/>
261 ;; <arg name='domain' type='s' direction='out'/>
262 ;; <arg name='anonymous' type='b' direction='out'/>
263 ;; <arg name='password_save' type='u' direction='out'/>
264 ;; </method>
265 ;; <method name='askQuestion'>
266 ;; <arg name='message' type='s' direction='in'/>
267 ;; <arg name='choices' type='as' direction='in'/>
268 ;; <arg name='handled' type='b' direction='out'/>
269 ;; <arg name='aborted' type='b' direction='out'/>
270 ;; <arg name='choice' type='u' direction='out'/>
271 ;; </method>
272 ;; </interface>
274 ;; The following flags are used in "askPassword". They are defined in
275 ;; /usr/include/glib-2.0/gio/gioenums.h.
277 (defconst tramp-gvfs-password-need-password 1
278 "Operation requires a password.")
280 (defconst tramp-gvfs-password-need-username 2
281 "Operation requires a username.")
283 (defconst tramp-gvfs-password-need-domain 4
284 "Operation requires a domain.")
286 (defconst tramp-gvfs-password-saving-supported 8
287 "Operation supports saving settings.")
289 (defconst tramp-gvfs-password-anonymous-supported 16
290 "Operation supports anonymous users.")
292 (defconst tramp-bluez-service "org.bluez"
293 "The well known name of the BLUEZ service.")
295 (defconst tramp-bluez-interface-manager "org.bluez.Manager"
296 "The manager interface of the BLUEZ daemon.")
298 ;; <interface name='org.bluez.Manager'>
299 ;; <method name='DefaultAdapter'>
300 ;; <arg type='o' direction='out'/>
301 ;; </method>
302 ;; <method name='FindAdapter'>
303 ;; <arg type='s' direction='in'/>
304 ;; <arg type='o' direction='out'/>
305 ;; </method>
306 ;; <method name='ListAdapters'>
307 ;; <arg type='ao' direction='out'/>
308 ;; </method>
309 ;; <signal name='AdapterAdded'>
310 ;; <arg type='o'/>
311 ;; </signal>
312 ;; <signal name='AdapterRemoved'>
313 ;; <arg type='o'/>
314 ;; </signal>
315 ;; <signal name='DefaultAdapterChanged'>
316 ;; <arg type='o'/>
317 ;; </signal>
318 ;; </interface>
320 (defconst tramp-bluez-interface-adapter "org.bluez.Adapter"
321 "The adapter interface of the BLUEZ daemon.")
323 ;; <interface name='org.bluez.Adapter'>
324 ;; <method name='GetProperties'>
325 ;; <arg type='a{sv}' direction='out'/>
326 ;; </method>
327 ;; <method name='SetProperty'>
328 ;; <arg type='s' direction='in'/>
329 ;; <arg type='v' direction='in'/>
330 ;; </method>
331 ;; <method name='RequestMode'>
332 ;; <arg type='s' direction='in'/>
333 ;; </method>
334 ;; <method name='ReleaseMode'/>
335 ;; <method name='RequestSession'/>
336 ;; <method name='ReleaseSession'/>
337 ;; <method name='StartDiscovery'/>
338 ;; <method name='StopDiscovery'/>
339 ;; <method name='ListDevices'>
340 ;; <arg type='ao' direction='out'/>
341 ;; </method>
342 ;; <method name='CreateDevice'>
343 ;; <arg type='s' direction='in'/>
344 ;; <arg type='o' direction='out'/>
345 ;; </method>
346 ;; <method name='CreatePairedDevice'>
347 ;; <arg type='s' direction='in'/>
348 ;; <arg type='o' direction='in'/>
349 ;; <arg type='s' direction='in'/>
350 ;; <arg type='o' direction='out'/>
351 ;; </method>
352 ;; <method name='CancelDeviceCreation'>
353 ;; <arg type='s' direction='in'/>
354 ;; </method>
355 ;; <method name='RemoveDevice'>
356 ;; <arg type='o' direction='in'/>
357 ;; </method>
358 ;; <method name='FindDevice'>
359 ;; <arg type='s' direction='in'/>
360 ;; <arg type='o' direction='out'/>
361 ;; </method>
362 ;; <method name='RegisterAgent'>
363 ;; <arg type='o' direction='in'/>
364 ;; <arg type='s' direction='in'/>
365 ;; </method>
366 ;; <method name='UnregisterAgent'>
367 ;; <arg type='o' direction='in'/>
368 ;; </method>
369 ;; <signal name='DeviceCreated'>
370 ;; <arg type='o'/>
371 ;; </signal>
372 ;; <signal name='DeviceRemoved'>
373 ;; <arg type='o'/>
374 ;; </signal>
375 ;; <signal name='DeviceFound'>
376 ;; <arg type='s'/>
377 ;; <arg type='a{sv}'/>
378 ;; </signal>
379 ;; <signal name='PropertyChanged'>
380 ;; <arg type='s'/>
381 ;; <arg type='v'/>
382 ;; </signal>
383 ;; <signal name='DeviceDisappeared'>
384 ;; <arg type='s'/>
385 ;; </signal>
386 ;; </interface>
388 ;;;###tramp-autoload
389 (defcustom tramp-bluez-discover-devices-timeout 60
390 "Defines seconds since last bluetooth device discovery before rescanning.
391 A value of 0 would require an immediate discovery during hostname
392 completion, nil means to use always cached values for discovered
393 devices."
394 :group 'tramp
395 :version "23.2"
396 :type '(choice (const nil) integer)
397 :require 'tramp)
399 (defvar tramp-bluez-discovery nil
400 "Indicator for a running bluetooth device discovery.
401 It keeps the timestamp of last discovery.")
403 (defvar tramp-bluez-devices nil
404 "Alist of detected bluetooth devices.
405 Every entry is a list (NAME ADDRESS).")
407 (defconst tramp-hal-service "org.freedesktop.Hal"
408 "The well known name of the HAL service.")
410 (defconst tramp-hal-path-manager "/org/freedesktop/Hal/Manager"
411 "The object path of the HAL daemon manager.")
413 (defconst tramp-hal-interface-manager "org.freedesktop.Hal.Manager"
414 "The manager interface of the HAL daemon.")
416 (defconst tramp-hal-interface-device "org.freedesktop.Hal.Device"
417 "The device interface of the HAL daemon.")
419 (defconst tramp-gvfs-file-attributes
420 '("name"
421 "type"
422 "standard::display-name"
423 "standard::symlink-target"
424 "unix::nlink"
425 "unix::uid"
426 "owner::user"
427 "unix::gid"
428 "owner::group"
429 "time::access"
430 "time::modified"
431 "time::changed"
432 "standard::size"
433 "unix::mode"
434 "access::can-read"
435 "access::can-write"
436 "access::can-execute"
437 "unix::inode"
438 "unix::device")
439 "GVFS file attributes.")
441 (defconst tramp-gvfs-file-attributes-with-gvfs-ls-regexp
442 (concat "[[:blank:]]" (regexp-opt tramp-gvfs-file-attributes t) "=\\(.+?\\)")
443 "Regexp to parse GVFS file attributes with `gvfs-ls'.")
445 (defconst tramp-gvfs-file-attributes-with-gvfs-info-regexp
446 (concat "^[[:blank:]]*"
447 (regexp-opt tramp-gvfs-file-attributes t)
448 ":[[:blank:]]+\\(.*\\)$")
449 "Regexp to parse GVFS file attributes with `gvfs-info'.")
452 ;; New handlers should be added here.
453 ;;;###tramp-autoload
454 (defconst tramp-gvfs-file-name-handler-alist
455 '((access-file . ignore)
456 (add-name-to-file . tramp-gvfs-handle-copy-file)
457 ;; `byte-compiler-base-file-name' performed by default handler.
458 ;; `copy-directory' performed by default handler.
459 (copy-file . tramp-gvfs-handle-copy-file)
460 (delete-directory . tramp-gvfs-handle-delete-directory)
461 (delete-file . tramp-gvfs-handle-delete-file)
462 ;; `diff-latest-backup-file' performed by default handler.
463 (directory-file-name . tramp-handle-directory-file-name)
464 (directory-files . tramp-handle-directory-files)
465 (directory-files-and-attributes
466 . tramp-handle-directory-files-and-attributes)
467 (dired-compress-file . ignore)
468 (dired-uncache . tramp-handle-dired-uncache)
469 (expand-file-name . tramp-gvfs-handle-expand-file-name)
470 (file-accessible-directory-p . tramp-handle-file-accessible-directory-p)
471 (file-acl . ignore)
472 (file-attributes . tramp-gvfs-handle-file-attributes)
473 (file-directory-p . tramp-gvfs-handle-file-directory-p)
474 (file-equal-p . tramp-handle-file-equal-p)
475 (file-executable-p . tramp-gvfs-handle-file-executable-p)
476 (file-exists-p . tramp-handle-file-exists-p)
477 (file-in-directory-p . tramp-handle-file-in-directory-p)
478 (file-local-copy . tramp-gvfs-handle-file-local-copy)
479 (file-modes . tramp-handle-file-modes)
480 (file-name-all-completions . tramp-gvfs-handle-file-name-all-completions)
481 (file-name-as-directory . tramp-handle-file-name-as-directory)
482 (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p)
483 (file-name-completion . tramp-handle-file-name-completion)
484 (file-name-directory . tramp-handle-file-name-directory)
485 (file-name-nondirectory . tramp-handle-file-name-nondirectory)
486 ;; `file-name-sans-versions' performed by default handler.
487 (file-newer-than-file-p . tramp-handle-file-newer-than-file-p)
488 (file-notify-add-watch . tramp-gvfs-handle-file-notify-add-watch)
489 (file-notify-rm-watch . tramp-handle-file-notify-rm-watch)
490 (file-notify-valid-p . tramp-handle-file-notify-valid-p)
491 (file-ownership-preserved-p . ignore)
492 (file-readable-p . tramp-gvfs-handle-file-readable-p)
493 (file-regular-p . tramp-handle-file-regular-p)
494 (file-remote-p . tramp-handle-file-remote-p)
495 (file-selinux-context . ignore)
496 (file-symlink-p . tramp-handle-file-symlink-p)
497 ;; `file-truename' performed by default handler.
498 (file-writable-p . tramp-gvfs-handle-file-writable-p)
499 (find-backup-file-name . tramp-handle-find-backup-file-name)
500 ;; `find-file-noselect' performed by default handler.
501 ;; `get-file-buffer' performed by default handler.
502 (insert-directory . tramp-handle-insert-directory)
503 (insert-file-contents . tramp-handle-insert-file-contents)
504 (load . tramp-handle-load)
505 (make-auto-save-file-name . tramp-handle-make-auto-save-file-name)
506 (make-directory . tramp-gvfs-handle-make-directory)
507 (make-directory-internal . ignore)
508 (make-nearby-temp-file . tramp-handle-make-nearby-temp-file)
509 (make-symbolic-link . tramp-handle-make-symbolic-link)
510 (process-file . ignore)
511 (rename-file . tramp-gvfs-handle-rename-file)
512 (set-file-acl . ignore)
513 (set-file-modes . ignore)
514 (set-file-selinux-context . ignore)
515 (set-file-times . ignore)
516 (set-visited-file-modtime . tramp-handle-set-visited-file-modtime)
517 (shell-command . ignore)
518 (start-file-process . ignore)
519 (substitute-in-file-name . tramp-handle-substitute-in-file-name)
520 (temporary-file-directory . tramp-handle-temporary-file-directory)
521 (unhandled-file-name-directory . ignore)
522 (vc-registered . ignore)
523 (verify-visited-file-modtime . tramp-handle-verify-visited-file-modtime)
524 (write-region . tramp-gvfs-handle-write-region))
525 "Alist of handler functions for Tramp GVFS method.
526 Operations not mentioned here will be handled by the default Emacs primitives.")
528 ;; It must be a `defsubst' in order to push the whole code into
529 ;; tramp-loaddefs.el. Otherwise, there would be recursive autoloading.
530 ;;;###tramp-autoload
531 (defsubst tramp-gvfs-file-name-p (filename)
532 "Check if it's a filename handled by the GVFS daemon."
533 (and (tramp-tramp-file-p filename)
534 (let ((method
535 (tramp-file-name-method (tramp-dissect-file-name filename))))
536 (and (stringp method) (member method tramp-gvfs-methods)))))
538 ;;;###tramp-autoload
539 (defun tramp-gvfs-file-name-handler (operation &rest args)
540 "Invoke the GVFS related OPERATION.
541 First arg specifies the OPERATION, second arg is a list of arguments to
542 pass to the OPERATION."
543 (unless tramp-gvfs-enabled
544 (tramp-compat-user-error nil "Package `tramp-gvfs' not supported"))
545 (let ((fn (assoc operation tramp-gvfs-file-name-handler-alist)))
546 (if fn
547 (save-match-data (apply (cdr fn) args))
548 (tramp-run-real-handler operation args))))
550 ;;;###tramp-autoload
551 (when (featurep 'dbusbind)
552 (tramp-register-foreign-file-name-handler
553 'tramp-gvfs-file-name-p 'tramp-gvfs-file-name-handler))
556 ;; D-Bus helper function.
558 (defun tramp-gvfs-dbus-string-to-byte-array (string)
559 "Like `dbus-string-to-byte-array' but add trailing \\0 if needed."
560 (dbus-string-to-byte-array
561 (if (string-match "^(aya{sv})" tramp-gvfs-mountlocation-signature)
562 (concat string (string 0)) string)))
564 (defun tramp-gvfs-dbus-byte-array-to-string (byte-array)
565 "Like `dbus-byte-array-to-string' but remove trailing \\0 if exists.
566 Return nil for null BYTE-ARRAY."
567 ;; The byte array could be a variant. Take care.
568 (let ((byte-array
569 (if (and (consp byte-array) (atom (car byte-array)))
570 byte-array (car byte-array))))
571 (and byte-array
572 (dbus-byte-array-to-string
573 (if (and (consp byte-array) (zerop (car (last byte-array))))
574 (butlast byte-array) byte-array)))))
576 (defun tramp-gvfs-stringify-dbus-message (message)
577 "Convert a D-Bus message into readable UTF8 strings, used for traces."
578 (cond
579 ((and (consp message) (characterp (car message)))
580 (format "%S" (tramp-gvfs-dbus-byte-array-to-string message)))
581 ((consp message)
582 (mapcar 'tramp-gvfs-stringify-dbus-message message))
583 ((stringp message)
584 (format "%S" message))
585 (t message)))
587 (defmacro with-tramp-dbus-call-method
588 (vec synchronous bus service path interface method &rest args)
589 "Apply a D-Bus call on bus BUS.
591 If SYNCHRONOUS is non-nil, the call is synchronously. Otherwise,
592 it is an asynchronous call, with `ignore' as callback function.
594 The other arguments have the same meaning as with `dbus-call-method'
595 or `dbus-call-method-asynchronously'. Additionally, the call
596 will be traced by Tramp with trace level 6."
597 `(let ((func (if ,synchronous
598 'dbus-call-method 'dbus-call-method-asynchronously))
599 (args (append (list ,bus ,service ,path ,interface ,method)
600 (if ,synchronous (list ,@args) (list 'ignore ,@args))))
601 result)
602 (tramp-message ,vec 6 "%s %s" func args)
603 (setq result (apply func args))
604 (tramp-message ,vec 6 "%s" (tramp-gvfs-stringify-dbus-message result))
605 result))
607 (put 'with-tramp-dbus-call-method 'lisp-indent-function 2)
608 (put 'with-tramp-dbus-call-method 'edebug-form-spec '(form symbolp body))
609 (font-lock-add-keywords 'emacs-lisp-mode '("\\<with-tramp-dbus-call-method\\>"))
611 (defvar tramp-gvfs-dbus-event-vector nil
612 "Current Tramp file name to be used, as vector.
613 It is needed when D-Bus signals or errors arrive, because there
614 is no information where to trace the message.")
616 (defun tramp-gvfs-dbus-event-error (event err)
617 "Called when a D-Bus error message arrives, see `dbus-event-error-functions'."
618 (when tramp-gvfs-dbus-event-vector
619 (tramp-message tramp-gvfs-dbus-event-vector 10 "%S" event)
620 (tramp-error tramp-gvfs-dbus-event-vector 'file-error "%s" (cadr err))))
622 ;; `dbus-event-error-hooks' has been renamed to
623 ;; `dbus-event-error-functions' in Emacs 24.3.
624 (add-hook
625 (if (boundp 'dbus-event-error-functions)
626 'dbus-event-error-functions 'dbus-event-error-hooks)
627 'tramp-gvfs-dbus-event-error)
630 ;; File name primitives.
632 (defun tramp-gvfs-do-copy-or-rename-file
633 (op filename newname &optional ok-if-already-exists keep-date
634 preserve-uid-gid preserve-extended-attributes)
635 "Copy or rename a remote file.
636 OP must be `copy' or `rename' and indicates the operation to perform.
637 FILENAME specifies the file to copy or rename, NEWNAME is the name of
638 the new file (for copy) or the new name of the file (for rename).
639 OK-IF-ALREADY-EXISTS means don't barf if NEWNAME exists already.
640 KEEP-DATE means to make sure that NEWNAME has the same timestamp
641 as FILENAME. PRESERVE-UID-GID, when non-nil, instructs to keep
642 the uid and gid if both files are on the same host.
643 PRESERVE-EXTENDED-ATTRIBUTES is ignored.
645 This function is invoked by `tramp-gvfs-handle-copy-file' and
646 `tramp-gvfs-handle-rename-file'. It is an error if OP is neither
647 of `copy' and `rename'. FILENAME and NEWNAME must be absolute
648 file names."
649 (unless (memq op '(copy rename))
650 (error "Unknown operation `%s', must be `copy' or `rename'" op))
652 (let ((t1 (tramp-tramp-file-p filename))
653 (t2 (tramp-tramp-file-p newname))
654 (equal-remote (tramp-equal-remote filename newname))
655 (file-operation (intern (format "%s-file" op)))
656 (gvfs-operation (if (eq op 'copy) "gvfs-copy" "gvfs-move"))
657 (msg-operation (if (eq op 'copy) "Copying" "Renaming")))
659 (with-parsed-tramp-file-name (if t1 filename newname) nil
660 (when (and (not ok-if-already-exists) (file-exists-p newname))
661 (tramp-error v 'file-already-exists newname))
663 (if (or (and equal-remote
664 (tramp-get-connection-property v "direct-copy-failed" nil))
665 (and t1 (not (tramp-gvfs-file-name-p filename)))
666 (and t2 (not (tramp-gvfs-file-name-p newname))))
668 ;; We cannot copy or rename directly.
669 (let ((tmpfile (tramp-compat-make-temp-file filename)))
670 (funcall
671 file-operation filename tmpfile t keep-date preserve-uid-gid
672 preserve-extended-attributes)
673 (rename-file tmpfile newname ok-if-already-exists))
675 ;; Direct action.
676 (with-tramp-progress-reporter
677 v 0 (format "%s %s to %s" msg-operation filename newname)
678 (unless
679 (apply
680 'tramp-gvfs-send-command v gvfs-operation
681 (append
682 (and (eq op 'copy) (or keep-date preserve-uid-gid)
683 '("--preserve"))
684 (list
685 (tramp-gvfs-url-file-name filename)
686 (tramp-gvfs-url-file-name newname))))
688 (if (or (not equal-remote)
689 (and equal-remote
690 (tramp-get-connection-property
691 v "direct-copy-failed" nil)))
692 ;; Propagate the error.
693 (with-current-buffer (tramp-get-connection-buffer v)
694 (goto-char (point-min))
695 (tramp-error-with-buffer
696 nil v 'file-error
697 "%s failed, see buffer `%s' for details."
698 msg-operation (buffer-name)))
700 ;; Some WebDAV server, like the one from QNAP, do not
701 ;; support direct copy/move. Try a fallback.
702 (tramp-set-connection-property v "direct-copy-failed" t)
703 (tramp-gvfs-do-copy-or-rename-file
704 op filename newname ok-if-already-exists keep-date
705 preserve-uid-gid preserve-extended-attributes))))
707 (when (and t1 (eq op 'rename))
708 (with-parsed-tramp-file-name filename nil
709 (tramp-flush-file-property v (file-name-directory localname))
710 (tramp-flush-file-property v localname)))
712 (when t2
713 (with-parsed-tramp-file-name newname nil
714 (tramp-flush-file-property v (file-name-directory localname))
715 (tramp-flush-file-property v localname)))))))
717 (defun tramp-gvfs-handle-copy-file
718 (filename newname &optional ok-if-already-exists keep-date
719 preserve-uid-gid preserve-extended-attributes)
720 "Like `copy-file' for Tramp files."
721 (setq filename (expand-file-name filename))
722 (setq newname (expand-file-name newname))
723 ;; At least one file a Tramp file?
724 (if (or (tramp-tramp-file-p filename)
725 (tramp-tramp-file-p newname))
726 (tramp-gvfs-do-copy-or-rename-file
727 'copy filename newname ok-if-already-exists keep-date
728 preserve-uid-gid preserve-extended-attributes)
729 (tramp-run-real-handler
730 'copy-file
731 (list filename newname ok-if-already-exists keep-date
732 preserve-uid-gid preserve-extended-attributes))))
734 (defun tramp-gvfs-handle-delete-directory (directory &optional recursive trash)
735 "Like `delete-directory' for Tramp files."
736 (with-parsed-tramp-file-name directory nil
737 (if (and recursive (not (file-symlink-p directory)))
738 (mapc (lambda (file)
739 (if (eq t (tramp-compat-file-attribute-type
740 (file-attributes file)))
741 (delete-directory file recursive trash)
742 (delete-file file trash)))
743 (directory-files
744 directory 'full directory-files-no-dot-files-regexp))
745 (when (directory-files directory nil directory-files-no-dot-files-regexp)
746 (tramp-error
747 v 'file-error "Couldn't delete non-empty %s" directory)))
749 (tramp-flush-file-property v (file-name-directory localname))
750 (tramp-flush-directory-property v localname)
751 (unless
752 (tramp-gvfs-send-command
753 v (if (and trash delete-by-moving-to-trash) "gvfs-trash" "gvfs-rm")
754 (tramp-gvfs-url-file-name directory))
755 ;; Propagate the error.
756 (with-current-buffer (tramp-get-connection-buffer v)
757 (goto-char (point-min))
758 (tramp-error-with-buffer
759 nil v 'file-error "Couldn't delete %s" directory)))))
761 (defun tramp-gvfs-handle-delete-file (filename &optional trash)
762 "Like `delete-file' for Tramp files."
763 (with-parsed-tramp-file-name filename nil
764 (tramp-flush-file-property v (file-name-directory localname))
765 (tramp-flush-file-property v localname)
766 (unless
767 (tramp-gvfs-send-command
768 v (if (and trash delete-by-moving-to-trash) "gvfs-trash" "gvfs-rm")
769 (tramp-gvfs-url-file-name filename))
770 ;; Propagate the error.
771 (with-current-buffer (tramp-get-connection-buffer v)
772 (goto-char (point-min))
773 (tramp-error-with-buffer
774 nil v 'file-error "Couldn't delete %s" filename)))))
776 (defun tramp-gvfs-handle-expand-file-name (name &optional dir)
777 "Like `expand-file-name' for Tramp files."
778 ;; If DIR is not given, use DEFAULT-DIRECTORY or "/".
779 (setq dir (or dir default-directory "/"))
780 ;; Unless NAME is absolute, concat DIR and NAME.
781 (unless (file-name-absolute-p name)
782 (setq name (concat (file-name-as-directory dir) name)))
783 ;; If NAME is not a Tramp file, run the real handler.
784 (if (not (tramp-tramp-file-p name))
785 (tramp-run-real-handler 'expand-file-name (list name nil))
786 ;; Dissect NAME.
787 (with-parsed-tramp-file-name name nil
788 ;; If there is a default location, expand tilde.
789 (when (string-match "\\`\\(~\\)\\(/\\|\\'\\)" localname)
790 (save-match-data
791 (tramp-gvfs-maybe-open-connection
792 (make-tramp-file-name
793 :method method :user user :domain domain
794 :host host :port port :localname "/" :hop hop)))
795 (setq localname
796 (replace-match
797 (tramp-get-connection-property v "default-location" "~")
798 nil t localname 1)))
799 ;; Tilde expansion is not possible.
800 (when (string-match "\\`\\(~[^/]*\\)\\(.*\\)\\'" localname)
801 (tramp-error
802 v 'file-error
803 "Cannot expand tilde in file `%s'" name))
804 (unless (tramp-run-real-handler 'file-name-absolute-p (list localname))
805 (setq localname (concat "/" localname)))
806 ;; We do not pass "/..".
807 (if (string-match "^\\(afp\\|davs?\\|smb\\)$" method)
808 (when (string-match "^/[^/]+\\(/\\.\\./?\\)" localname)
809 (setq localname (replace-match "/" t t localname 1)))
810 (when (string-match "^/\\.\\./?" localname)
811 (setq localname (replace-match "/" t t localname))))
812 ;; There might be a double slash. Remove this.
813 (while (string-match "//" localname)
814 (setq localname (replace-match "/" t t localname)))
815 ;; No tilde characters in file name, do normal
816 ;; `expand-file-name' (this does "/./" and "/../").
817 (tramp-make-tramp-file-name
818 method user domain host port
819 (tramp-run-real-handler 'expand-file-name (list localname))))))
821 (defun tramp-gvfs-get-directory-attributes (directory)
822 "Return GVFS attributes association list of all files in DIRECTORY."
823 (ignore-errors
824 ;; Don't modify `last-coding-system-used' by accident.
825 (let ((last-coding-system-used last-coding-system-used)
826 result)
827 (with-parsed-tramp-file-name directory nil
828 (with-tramp-file-property v localname "directory-gvfs-attributes"
829 (tramp-message v 5 "directory gvfs attributes: %s" localname)
830 ;; Send command.
831 (tramp-gvfs-send-command
832 v "gvfs-ls" "-h" "-n" "-a"
833 (mapconcat 'identity tramp-gvfs-file-attributes ",")
834 (tramp-gvfs-url-file-name directory))
835 ;; Parse output.
836 (with-current-buffer (tramp-get-connection-buffer v)
837 (goto-char (point-min))
838 (while (looking-at
839 (concat "^\\(.+\\)[[:blank:]]"
840 "\\([[:digit:]]+\\)[[:blank:]]"
841 "(\\(.+?\\))"
842 tramp-gvfs-file-attributes-with-gvfs-ls-regexp))
843 (let ((item (list (cons "type" (match-string 3))
844 (cons "standard::size" (match-string 2))
845 (cons "name" (match-string 1)))))
846 (goto-char (1+ (match-end 3)))
847 (while (looking-at
848 (concat
849 tramp-gvfs-file-attributes-with-gvfs-ls-regexp
850 "\\(" tramp-gvfs-file-attributes-with-gvfs-ls-regexp
851 "\\|" "$" "\\)"))
852 (push (cons (match-string 1) (match-string 2)) item)
853 (goto-char (match-end 2)))
854 ;; Add display name as head.
855 (push
856 (cons (cdr (or (assoc "standard::display-name" item)
857 (assoc "name" item)))
858 (nreverse item))
859 result))
860 (forward-line)))
861 result)))))
863 (defun tramp-gvfs-get-root-attributes (filename)
864 "Return GVFS attributes association list of FILENAME."
865 (ignore-errors
866 ;; Don't modify `last-coding-system-used' by accident.
867 (let ((last-coding-system-used last-coding-system-used)
868 result)
869 (with-parsed-tramp-file-name filename nil
870 (with-tramp-file-property v localname "file-gvfs-attributes"
871 (tramp-message v 5 "file gvfs attributes: %s" localname)
872 ;; Send command.
873 (tramp-gvfs-send-command
874 v "gvfs-info" (tramp-gvfs-url-file-name filename))
875 ;; Parse output.
876 (with-current-buffer (tramp-get-connection-buffer v)
877 (goto-char (point-min))
878 (while (re-search-forward
879 tramp-gvfs-file-attributes-with-gvfs-info-regexp nil t)
880 (push (cons (match-string 1) (match-string 2)) result))
881 result))))))
883 (defun tramp-gvfs-get-file-attributes (filename)
884 "Return GVFS attributes association list of FILENAME."
885 (setq filename (directory-file-name (expand-file-name filename)))
886 (with-parsed-tramp-file-name filename nil
887 (setq localname (tramp-compat-file-name-unquote localname))
888 (if (or (and (string-match "^\\(afp\\|davs?\\|smb\\)$" method)
889 (string-match "^/?\\([^/]+\\)$" localname))
890 (string-equal localname "/"))
891 (tramp-gvfs-get-root-attributes filename)
892 (assoc
893 (file-name-nondirectory filename)
894 (tramp-gvfs-get-directory-attributes (file-name-directory filename))))))
896 (defun tramp-gvfs-handle-file-attributes (filename &optional id-format)
897 "Like `file-attributes' for Tramp files."
898 (unless id-format (setq id-format 'integer))
899 (ignore-errors
900 (let ((attributes (tramp-gvfs-get-file-attributes filename))
901 dirp res-symlink-target res-numlinks res-uid res-gid res-access
902 res-mod res-change res-size res-filemodes res-inode res-device)
903 (when attributes
904 ;; ... directory or symlink
905 (setq dirp (if (equal "directory" (cdr (assoc "type" attributes))) t))
906 (setq res-symlink-target
907 (cdr (assoc "standard::symlink-target" attributes)))
908 ;; ... number links
909 (setq res-numlinks
910 (string-to-number
911 (or (cdr (assoc "unix::nlink" attributes)) "0")))
912 ;; ... uid and gid
913 (setq res-uid
914 (if (eq id-format 'integer)
915 (string-to-number
916 (or (cdr (assoc "unix::uid" attributes))
917 (format "%s" tramp-unknown-id-integer)))
918 (or (cdr (assoc "owner::user" attributes))
919 (cdr (assoc "unix::uid" attributes))
920 tramp-unknown-id-string)))
921 (setq res-gid
922 (if (eq id-format 'integer)
923 (string-to-number
924 (or (cdr (assoc "unix::gid" attributes))
925 (format "%s" tramp-unknown-id-integer)))
926 (or (cdr (assoc "owner::group" attributes))
927 (cdr (assoc "unix::gid" attributes))
928 tramp-unknown-id-string)))
929 ;; ... last access, modification and change time
930 (setq res-access
931 (seconds-to-time
932 (string-to-number
933 (or (cdr (assoc "time::access" attributes)) "0"))))
934 (setq res-mod
935 (seconds-to-time
936 (string-to-number
937 (or (cdr (assoc "time::modified" attributes)) "0"))))
938 (setq res-change
939 (seconds-to-time
940 (string-to-number
941 (or (cdr (assoc "time::changed" attributes)) "0"))))
942 ;; ... size
943 (setq res-size
944 (string-to-number
945 (or (cdr (assoc "standard::size" attributes)) "0")))
946 ;; ... file mode flags
947 (setq res-filemodes
948 (let ((n (cdr (assoc "unix::mode" attributes))))
949 (if n
950 (tramp-file-mode-from-int (string-to-number n))
951 (format
952 "%s%s%s%s------"
953 (if dirp "d" "-")
954 (if (equal (cdr (assoc "access::can-read" attributes))
955 "FALSE")
956 "-" "r")
957 (if (equal (cdr (assoc "access::can-write" attributes))
958 "FALSE")
959 "-" "w")
960 (if (equal (cdr (assoc "access::can-execute" attributes))
961 "FALSE")
962 "-" "x")))))
963 ;; ... inode and device
964 (setq res-inode
965 (let ((n (cdr (assoc "unix::inode" attributes))))
966 (if n
967 (string-to-number n)
968 (tramp-get-inode (tramp-dissect-file-name filename)))))
969 (setq res-device
970 (let ((n (cdr (assoc "unix::device" attributes))))
971 (if n
972 (string-to-number n)
973 (tramp-get-device (tramp-dissect-file-name filename)))))
975 ;; Return data gathered.
976 (list
977 ;; 0. t for directory, string (name linked to) for
978 ;; symbolic link, or nil.
979 (or dirp res-symlink-target)
980 ;; 1. Number of links to file.
981 res-numlinks
982 ;; 2. File uid.
983 res-uid
984 ;; 3. File gid.
985 res-gid
986 ;; 4. Last access time, as a list of integers.
987 ;; 5. Last modification time, likewise.
988 ;; 6. Last status change time, likewise.
989 res-access res-mod res-change
990 ;; 7. Size in bytes (-1, if number is out of range).
991 res-size
992 ;; 8. File modes.
993 res-filemodes
994 ;; 9. t if file's gid would change if file were deleted
995 ;; and recreated.
997 ;; 10. Inode number.
998 res-inode
999 ;; 11. Device number.
1000 res-device
1001 )))))
1003 (defun tramp-gvfs-handle-file-directory-p (filename)
1004 "Like `file-directory-p' for Tramp files."
1005 (eq t (tramp-compat-file-attribute-type
1006 (file-attributes (file-truename filename)))))
1008 (defun tramp-gvfs-handle-file-executable-p (filename)
1009 "Like `file-executable-p' for Tramp files."
1010 (with-parsed-tramp-file-name filename nil
1011 (with-tramp-file-property v localname "file-executable-p"
1012 (tramp-check-cached-permissions v ?x))))
1014 (defun tramp-gvfs-handle-file-local-copy (filename)
1015 "Like `file-local-copy' for Tramp files."
1016 (with-parsed-tramp-file-name filename nil
1017 (let ((tmpfile (tramp-compat-make-temp-file filename)))
1018 (unless (file-exists-p filename)
1019 (tramp-error
1020 v tramp-file-missing
1021 "Cannot make local copy of non-existing file `%s'" filename))
1022 (copy-file filename tmpfile 'ok-if-already-exists 'keep-time)
1023 tmpfile)))
1025 (defun tramp-gvfs-handle-file-name-all-completions (filename directory)
1026 "Like `file-name-all-completions' for Tramp files."
1027 (unless (save-match-data (string-match "/" filename))
1028 (all-completions
1029 filename
1030 (with-parsed-tramp-file-name (expand-file-name directory) nil
1031 (with-tramp-file-property v localname "file-name-all-completions"
1032 (let ((result '("./" "../")))
1033 ;; Get a list of directories and files.
1034 (dolist (item (tramp-gvfs-get-directory-attributes directory) result)
1035 (if (string-equal (cdr (assoc "type" item)) "directory")
1036 (push (file-name-as-directory (car item)) result)
1037 (push (car item) result)))))))))
1039 (defun tramp-gvfs-handle-file-notify-add-watch (file-name flags _callback)
1040 "Like `file-notify-add-watch' for Tramp files."
1041 (setq file-name (expand-file-name file-name))
1042 (with-parsed-tramp-file-name file-name nil
1043 ;; We cannot watch directories, because `gvfs-monitor-dir' is not
1044 ;; supported for gvfs-mounted directories.
1045 (when (file-directory-p file-name)
1046 (tramp-error
1047 v 'file-notify-error "Monitoring not supported for `%s'" file-name))
1048 (let* ((default-directory (file-name-directory file-name))
1049 (events
1050 (cond
1051 ((and (memq 'change flags) (memq 'attribute-change flags))
1052 '(created changed changes-done-hint moved deleted
1053 attribute-changed))
1054 ((memq 'change flags)
1055 '(created changed changes-done-hint moved deleted))
1056 ((memq 'attribute-change flags) '(attribute-changed))))
1057 (p (start-process
1058 "gvfs-monitor-file" (generate-new-buffer " *gvfs-monitor-file*")
1059 "gvfs-monitor-file" (tramp-gvfs-url-file-name file-name))))
1060 (if (not (processp p))
1061 (tramp-error
1062 v 'file-notify-error "Monitoring not supported for `%s'" file-name)
1063 (tramp-message
1064 v 6 "Run `%s', %S" (mapconcat 'identity (process-command p) " ") p)
1065 (tramp-set-connection-property p "vector" v)
1066 (process-put p 'events events)
1067 (process-put p 'watch-name localname)
1068 (process-put p 'adjust-window-size-function 'ignore)
1069 (set-process-query-on-exit-flag p nil)
1070 (set-process-filter p 'tramp-gvfs-monitor-file-process-filter)
1071 ;; There might be an error if the monitor is not supported.
1072 ;; Give the filter a chance to read the output.
1073 (tramp-accept-process-output p 1)
1074 (unless (process-live-p p)
1075 (tramp-error
1076 v 'file-notify-error "Monitoring not supported for `%s'" file-name))
1077 p))))
1079 (defun tramp-gvfs-monitor-file-process-filter (proc string)
1080 "Read output from \"gvfs-monitor-file\" and add corresponding \
1081 file-notify events."
1082 (let* ((rest-string (process-get proc 'rest-string))
1083 (dd (with-current-buffer (process-buffer proc) default-directory))
1084 (ddu (regexp-quote (tramp-gvfs-url-file-name dd))))
1085 (when rest-string
1086 (tramp-message proc 10 "Previous string:\n%s" rest-string))
1087 (tramp-message proc 6 "%S\n%s" proc string)
1088 (setq string (concat rest-string string)
1089 ;; Attribute change is returned in unused wording.
1090 string (replace-regexp-in-string
1091 "ATTRIB CHANGED" "ATTRIBUTE_CHANGED" string))
1092 (when (string-match "Monitoring not supported" string)
1093 (delete-process proc))
1095 (while (string-match
1096 (concat "^[\n\r]*"
1097 "File Monitor Event:[\n\r]+"
1098 "File = \\([^\n\r]+\\)[\n\r]+"
1099 "Event = \\([^[:blank:]]+\\)[\n\r]+")
1100 string)
1101 (let ((file (match-string 1 string))
1102 (action (intern-soft
1103 (replace-regexp-in-string
1104 "_" "-" (downcase (match-string 2 string))))))
1105 (setq string (replace-match "" nil nil string))
1106 ;; File names are returned as URL paths. We must convert them.
1107 (when (string-match ddu file)
1108 (setq file (replace-match dd nil nil file)))
1109 (while (string-match "%\\([0-9A-F]\\{2\\}\\)" file)
1110 (setq file
1111 (replace-match
1112 (char-to-string (string-to-number (match-string 1 file) 16))
1113 nil nil file)))
1114 ;; Usually, we would add an Emacs event now. Unfortunately,
1115 ;; `unread-command-events' does not accept several events at
1116 ;; once. Therefore, we apply the callback directly.
1117 (tramp-compat-funcall 'file-notify-callback (list proc action file))))
1119 ;; Save rest of the string.
1120 (when (zerop (length string)) (setq string nil))
1121 (when string (tramp-message proc 10 "Rest string:\n%s" string))
1122 (process-put proc 'rest-string string)))
1124 (defun tramp-gvfs-handle-file-readable-p (filename)
1125 "Like `file-readable-p' for Tramp files."
1126 (with-parsed-tramp-file-name filename nil
1127 (with-tramp-file-property v localname "file-readable-p"
1128 (tramp-check-cached-permissions v ?r))))
1130 (defun tramp-gvfs-handle-file-writable-p (filename)
1131 "Like `file-writable-p' for Tramp files."
1132 (with-parsed-tramp-file-name filename nil
1133 (with-tramp-file-property v localname "file-writable-p"
1134 (if (file-exists-p filename)
1135 (tramp-check-cached-permissions v ?w)
1136 ;; If file doesn't exist, check if directory is writable.
1137 (and (file-directory-p (file-name-directory filename))
1138 (file-writable-p (file-name-directory filename)))))))
1140 (defun tramp-gvfs-handle-make-directory (dir &optional parents)
1141 "Like `make-directory' for Tramp files."
1142 (setq dir (directory-file-name (expand-file-name dir)))
1143 (with-parsed-tramp-file-name dir nil
1144 (tramp-flush-file-property v (file-name-directory localname))
1145 (tramp-flush-directory-property v localname)
1146 (save-match-data
1147 (let ((ldir (file-name-directory dir)))
1148 ;; Make missing directory parts. "gvfs-mkdir -p ..." does not
1149 ;; work robust.
1150 (when (and parents (not (file-directory-p ldir)))
1151 (make-directory ldir parents))
1152 ;; Just do it.
1153 (unless (tramp-gvfs-send-command
1154 v "gvfs-mkdir" (tramp-gvfs-url-file-name dir))
1155 (tramp-error v 'file-error "Couldn't make directory %s" dir))))))
1157 (defun tramp-gvfs-handle-rename-file
1158 (filename newname &optional ok-if-already-exists)
1159 "Like `rename-file' for Tramp files."
1160 ;; Check if both files are local -- invoke normal rename-file.
1161 ;; Otherwise, use Tramp from local system.
1162 (setq filename (expand-file-name filename))
1163 (setq newname (expand-file-name newname))
1164 ;; At least one file a Tramp file?
1165 (if (or (tramp-tramp-file-p filename)
1166 (tramp-tramp-file-p newname))
1167 (tramp-gvfs-do-copy-or-rename-file
1168 'rename filename newname ok-if-already-exists
1169 'keep-date 'preserve-uid-gid)
1170 (tramp-run-real-handler
1171 'rename-file (list filename newname ok-if-already-exists))))
1173 (defun tramp-gvfs-handle-write-region
1174 (start end filename &optional append visit lockname mustbenew)
1175 "Like `write-region' for Tramp files."
1176 (setq filename (expand-file-name filename))
1177 (with-parsed-tramp-file-name filename nil
1178 (when (and mustbenew (file-exists-p filename)
1179 (or (eq mustbenew 'excl)
1180 (not
1181 (y-or-n-p
1182 (format "File %s exists; overwrite anyway? " filename)))))
1183 (tramp-error v 'file-already-exists filename))
1185 (let ((tmpfile (tramp-compat-make-temp-file filename)))
1186 (when (and append (file-exists-p filename))
1187 (copy-file filename tmpfile 'ok))
1188 ;; We say `no-message' here because we don't want the visited file
1189 ;; modtime data to be clobbered from the temp file. We call
1190 ;; `set-visited-file-modtime' ourselves later on.
1191 (tramp-run-real-handler
1192 'write-region (list start end tmpfile append 'no-message lockname))
1193 (condition-case nil
1194 (rename-file tmpfile filename 'ok-if-already-exists)
1195 (error
1196 (delete-file tmpfile)
1197 (tramp-error
1198 v 'file-error "Couldn't write region to `%s'" filename))))
1200 (tramp-flush-file-property v (file-name-directory localname))
1201 (tramp-flush-file-property v localname)
1203 ;; Set file modification time.
1204 (when (or (eq visit t) (stringp visit))
1205 (set-visited-file-modtime
1206 (tramp-compat-file-attribute-modification-time
1207 (file-attributes filename))))
1209 ;; The end.
1210 (when (or (eq visit t) (null visit) (stringp visit))
1211 (tramp-message v 0 "Wrote %s" filename))
1212 (run-hooks 'tramp-handle-write-region-hook)))
1215 ;; File name conversions.
1217 (defun tramp-gvfs-url-file-name (filename)
1218 "Return FILENAME in URL syntax."
1219 ;; "/" must NOT be hexlified.
1220 (setq filename (tramp-compat-file-name-unquote filename))
1221 (let ((url-unreserved-chars (cons ?/ url-unreserved-chars))
1222 result)
1223 (setq
1224 result
1225 (url-recreate-url
1226 (if (tramp-tramp-file-p filename)
1227 (with-parsed-tramp-file-name filename nil
1228 (when (string-equal "gdrive" method)
1229 (setq method "google-drive"))
1230 (when (and user domain)
1231 (setq user (concat domain ";" user)))
1232 (url-parse-make-urlobj
1233 method (and user (url-hexify-string user)) nil host
1234 (if (stringp port) (string-to-number port) port)
1235 (and localname (url-hexify-string localname)) nil nil t))
1236 (url-parse-make-urlobj
1237 "file" nil nil nil nil
1238 (url-hexify-string (file-truename filename)) nil nil t))))
1239 (when (tramp-tramp-file-p filename)
1240 (with-parsed-tramp-file-name filename nil
1241 (tramp-message v 10 "remote file `%s' is URL `%s'" filename result)))
1242 result))
1244 (defun tramp-gvfs-object-path (filename)
1245 "Create a D-Bus object path from FILENAME."
1246 (expand-file-name (dbus-escape-as-identifier filename) tramp-gvfs-path-tramp))
1248 (defun tramp-gvfs-file-name (object-path)
1249 "Retrieve file name from D-Bus OBJECT-PATH."
1250 (dbus-unescape-from-identifier
1251 (replace-regexp-in-string "^.*/\\([^/]+\\)$" "\\1" object-path)))
1253 (defun tramp-bluez-address (device)
1254 "Return bluetooth device address from a given bluetooth DEVICE name."
1255 (when (stringp device)
1256 (if (string-match tramp-ipv6-regexp device)
1257 (match-string 0 device)
1258 (cadr (assoc device (tramp-bluez-list-devices))))))
1260 (defun tramp-bluez-device (address)
1261 "Return bluetooth device name from a given bluetooth device ADDRESS.
1262 ADDRESS can have the form \"xx:xx:xx:xx:xx:xx\" or \"[xx:xx:xx:xx:xx:xx]\"."
1263 (when (stringp address)
1264 (while (string-match "[][]" address)
1265 (setq address (replace-match "" t t address)))
1266 (let (result)
1267 (dolist (item (tramp-bluez-list-devices) result)
1268 (when (string-match address (cadr item))
1269 (setq result (car item)))))))
1272 ;; D-Bus GVFS functions.
1274 (defun tramp-gvfs-handler-askpassword (message user domain flags)
1275 "Implementation for the \"org.gtk.vfs.MountOperation.askPassword\" method."
1276 (let* ((filename
1277 (tramp-gvfs-file-name (dbus-event-path-name last-input-event)))
1278 (pw-prompt
1279 (format
1280 "%s for %s "
1281 (if (string-match "\\([pP]assword\\|[pP]assphrase\\)" message)
1282 (capitalize (match-string 1 message))
1283 "Password")
1284 filename))
1285 password)
1287 (condition-case nil
1288 (with-parsed-tramp-file-name filename l
1289 (when (and (zerop (length user))
1290 (not
1291 (zerop (logand flags tramp-gvfs-password-need-username))))
1292 (setq user (read-string "User name: ")))
1293 (when (and (zerop (length domain))
1294 (not
1295 (zerop (logand flags tramp-gvfs-password-need-domain))))
1296 (setq domain (read-string "Domain name: ")))
1298 (tramp-message l 6 "%S %S %S %d" message user domain flags)
1299 (unless (tramp-get-connection-property l "first-password-request" nil)
1300 (tramp-clear-passwd l))
1302 ;; Set variables for computing the prompt for reading password.
1303 (setq tramp-current-method l-method
1304 tramp-current-user user
1305 tramp-current-domain l-domain
1306 tramp-current-host l-host
1307 tramp-current-port l-port
1308 password (tramp-read-passwd
1309 (tramp-get-connection-process l) pw-prompt))
1311 ;; Return result.
1312 (if (stringp password)
1313 (list
1314 t ;; password handled.
1315 nil ;; no abort of D-Bus.
1316 password
1317 (tramp-file-name-user l)
1318 domain
1319 nil ;; not anonymous.
1320 0) ;; no password save.
1321 ;; No password provided.
1322 (list nil t "" (tramp-file-name-user l) domain nil 0)))
1324 ;; When QUIT is raised, we shall return this information to D-Bus.
1325 (quit (list nil t "" "" "" nil 0)))))
1327 (defun tramp-gvfs-handler-askquestion (message choices)
1328 "Implementation for the \"org.gtk.vfs.MountOperation.askQuestion\" method."
1329 (save-window-excursion
1330 (let ((enable-recursive-minibuffers t)
1331 (use-dialog-box (and use-dialog-box (null noninteractive)))
1332 result)
1334 (with-parsed-tramp-file-name
1335 (tramp-gvfs-file-name (dbus-event-path-name last-input-event)) nil
1336 (tramp-message v 6 "%S %S" message choices)
1338 (setq result
1339 (condition-case nil
1340 (list
1341 t ;; handled.
1342 nil ;; no abort of D-Bus.
1343 (with-tramp-connection-property
1344 (tramp-get-connection-process v) message
1345 ;; In theory, there can be several choices.
1346 ;; Until now, there is only the question whether
1347 ;; to accept an unknown host signature.
1348 (with-temp-buffer
1349 ;; Preserve message for `progress-reporter'.
1350 (with-temp-message ""
1351 (insert message)
1352 (goto-char (point-max))
1353 (if noninteractive
1354 (message "%s" message)
1355 (pop-to-buffer (current-buffer)))
1356 (if (yes-or-no-p
1357 (concat
1358 (buffer-substring
1359 (line-beginning-position) (point))
1360 " "))
1361 0 1)))))
1363 ;; When QUIT is raised, we shall return this
1364 ;; information to D-Bus.
1365 (quit (list nil t 1))))
1367 (tramp-message v 6 "%s" result)
1369 ;; When the choice is "no", we set a dummy fuse-mountpoint in
1370 ;; order to leave the timeout.
1371 (unless (zerop (cl-caddr result))
1372 (tramp-set-file-property v "/" "fuse-mountpoint" "/"))
1374 result))))
1376 (defun tramp-gvfs-handler-mounted-unmounted (mount-info)
1377 "Signal handler for the \"org.gtk.vfs.MountTracker.mounted\" and
1378 \"org.gtk.vfs.MountTracker.unmounted\" signals."
1379 (ignore-errors
1380 (let ((signal-name (dbus-event-member-name last-input-event))
1381 (elt mount-info))
1382 ;; Jump over the first elements of the mount info. Since there
1383 ;; were changes in the entries, we cannot access dedicated
1384 ;; elements.
1385 (while (stringp (car elt)) (setq elt (cdr elt)))
1386 (let* ((fuse-mountpoint (tramp-gvfs-dbus-byte-array-to-string (cadr elt)))
1387 (mount-spec (cl-caddr elt))
1388 (default-location (tramp-gvfs-dbus-byte-array-to-string
1389 (cl-cadddr elt)))
1390 (method (tramp-gvfs-dbus-byte-array-to-string
1391 (cadr (assoc "type" (cadr mount-spec)))))
1392 (user (tramp-gvfs-dbus-byte-array-to-string
1393 (cadr (assoc "user" (cadr mount-spec)))))
1394 (domain (tramp-gvfs-dbus-byte-array-to-string
1395 (cadr (assoc "domain" (cadr mount-spec)))))
1396 (host (tramp-gvfs-dbus-byte-array-to-string
1397 (cadr (or (assoc "host" (cadr mount-spec))
1398 (assoc "server" (cadr mount-spec))))))
1399 (port (tramp-gvfs-dbus-byte-array-to-string
1400 (cadr (assoc "port" (cadr mount-spec)))))
1401 (ssl (tramp-gvfs-dbus-byte-array-to-string
1402 (cadr (assoc "ssl" (cadr mount-spec)))))
1403 (prefix (concat
1404 (tramp-gvfs-dbus-byte-array-to-string
1405 (car mount-spec))
1406 (tramp-gvfs-dbus-byte-array-to-string
1407 (or (cadr (assoc "share" (cadr mount-spec)))
1408 (cadr (assoc "volume" (cadr mount-spec))))))))
1409 (when (string-match "^\\(afp\\|smb\\)" method)
1410 (setq method (match-string 1 method)))
1411 (when (string-equal "obex" method)
1412 (setq host (tramp-bluez-device host)))
1413 (when (and (string-equal "dav" method) (string-equal "true" ssl))
1414 (setq method "davs"))
1415 (when (string-equal "google-drive" method)
1416 (setq method "gdrive"))
1417 (with-parsed-tramp-file-name
1418 (tramp-make-tramp-file-name method user domain host port "") nil
1419 (tramp-message
1420 v 6 "%s %s"
1421 signal-name (tramp-gvfs-stringify-dbus-message mount-info))
1422 (tramp-set-file-property v "/" "list-mounts" 'undef)
1423 (if (string-equal (downcase signal-name) "unmounted")
1424 (tramp-flush-file-property v "/")
1425 ;; Set prefix, mountpoint and location.
1426 (unless (string-equal prefix "/")
1427 (tramp-set-file-property v "/" "prefix" prefix))
1428 (tramp-set-file-property v "/" "fuse-mountpoint" fuse-mountpoint)
1429 (tramp-set-connection-property
1430 v "default-location" default-location)))))))
1432 (when tramp-gvfs-enabled
1433 (dbus-register-signal
1434 :session nil tramp-gvfs-path-mounttracker
1435 tramp-gvfs-interface-mounttracker "mounted"
1436 'tramp-gvfs-handler-mounted-unmounted)
1437 (dbus-register-signal
1438 :session nil tramp-gvfs-path-mounttracker
1439 tramp-gvfs-interface-mounttracker "Mounted"
1440 'tramp-gvfs-handler-mounted-unmounted)
1442 (dbus-register-signal
1443 :session nil tramp-gvfs-path-mounttracker
1444 tramp-gvfs-interface-mounttracker "unmounted"
1445 'tramp-gvfs-handler-mounted-unmounted)
1446 (dbus-register-signal
1447 :session nil tramp-gvfs-path-mounttracker
1448 tramp-gvfs-interface-mounttracker "Unmounted"
1449 'tramp-gvfs-handler-mounted-unmounted))
1451 (defun tramp-gvfs-connection-mounted-p (vec)
1452 "Check, whether the location is already mounted."
1454 (tramp-get-file-property vec "/" "fuse-mountpoint" nil)
1455 (catch 'mounted
1456 (dolist
1457 (elt
1458 (with-tramp-file-property vec "/" "list-mounts"
1459 (with-tramp-dbus-call-method vec t
1460 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
1461 tramp-gvfs-interface-mounttracker tramp-gvfs-listmounts))
1462 nil)
1463 ;; Jump over the first elements of the mount info. Since there
1464 ;; were changes in the entries, we cannot access dedicated
1465 ;; elements.
1466 (while (stringp (car elt)) (setq elt (cdr elt)))
1467 (let* ((fuse-mountpoint (tramp-gvfs-dbus-byte-array-to-string
1468 (cadr elt)))
1469 (mount-spec (cl-caddr elt))
1470 (default-location (tramp-gvfs-dbus-byte-array-to-string
1471 (cl-cadddr elt)))
1472 (method (tramp-gvfs-dbus-byte-array-to-string
1473 (cadr (assoc "type" (cadr mount-spec)))))
1474 (user (tramp-gvfs-dbus-byte-array-to-string
1475 (cadr (assoc "user" (cadr mount-spec)))))
1476 (domain (tramp-gvfs-dbus-byte-array-to-string
1477 (cadr (assoc "domain" (cadr mount-spec)))))
1478 (host (tramp-gvfs-dbus-byte-array-to-string
1479 (cadr (or (assoc "host" (cadr mount-spec))
1480 (assoc "server" (cadr mount-spec))))))
1481 (port (tramp-gvfs-dbus-byte-array-to-string
1482 (cadr (assoc "port" (cadr mount-spec)))))
1483 (ssl (tramp-gvfs-dbus-byte-array-to-string
1484 (cadr (assoc "ssl" (cadr mount-spec)))))
1485 (prefix (concat
1486 (tramp-gvfs-dbus-byte-array-to-string
1487 (car mount-spec))
1488 (tramp-gvfs-dbus-byte-array-to-string
1490 (cadr (assoc "share" (cadr mount-spec)))
1491 (cadr (assoc "volume" (cadr mount-spec))))))))
1492 (when (string-match "^\\(afp\\|smb\\)" method)
1493 (setq method (match-string 1 method)))
1494 (when (string-equal "obex" method)
1495 (setq host (tramp-bluez-device host)))
1496 (when (and (string-equal "dav" method) (string-equal "true" ssl))
1497 (setq method "davs"))
1498 (when (string-equal "google-drive" method)
1499 (setq method "gdrive"))
1500 (when (and (string-equal "synce" method) (zerop (length user)))
1501 (setq user (or (tramp-file-name-user vec) "")))
1502 (when (and
1503 (string-equal method (tramp-file-name-method vec))
1504 (string-equal user (tramp-file-name-user vec))
1505 (string-equal domain (tramp-file-name-domain vec))
1506 (string-equal host (tramp-file-name-host vec))
1507 (string-equal port (tramp-file-name-port vec))
1508 (string-match (concat "^" (regexp-quote prefix))
1509 (tramp-file-name-unquote-localname vec)))
1510 ;; Set prefix, mountpoint and location.
1511 (unless (string-equal prefix "/")
1512 (tramp-set-file-property vec "/" "prefix" prefix))
1513 (tramp-set-file-property vec "/" "fuse-mountpoint" fuse-mountpoint)
1514 (tramp-set-connection-property
1515 vec "default-location" default-location)
1516 (throw 'mounted t)))))))
1518 (defun tramp-gvfs-mount-spec-entry (key value)
1519 "Construct a mount-spec entry to be used in a mount_spec.
1520 It was \"a(say)\", but has changed to \"a{sv})\"."
1521 (if (string-match "^(aya{sv})" tramp-gvfs-mountlocation-signature)
1522 (list :dict-entry key
1523 (list :variant (tramp-gvfs-dbus-string-to-byte-array value)))
1524 (list :struct key (tramp-gvfs-dbus-string-to-byte-array value))))
1526 (defun tramp-gvfs-mount-spec (vec)
1527 "Return a mount-spec for \"org.gtk.vfs.MountTracker.mountLocation\"."
1528 (let* ((method (tramp-file-name-method vec))
1529 (user (tramp-file-name-user vec))
1530 (domain (tramp-file-name-domain vec))
1531 (host (tramp-file-name-host vec))
1532 (port (tramp-file-name-port vec))
1533 (localname (tramp-file-name-unquote-localname vec))
1534 (share (when (string-match "^/?\\([^/]+\\)" localname)
1535 (match-string 1 localname)))
1536 (ssl (if (string-match "^davs" method) "true" "false"))
1537 (mount-spec
1538 `(:array
1539 ,@(cond
1540 ((string-equal "smb" method)
1541 (list (tramp-gvfs-mount-spec-entry "type" "smb-share")
1542 (tramp-gvfs-mount-spec-entry "server" host)
1543 (tramp-gvfs-mount-spec-entry "share" share)))
1544 ((string-equal "obex" method)
1545 (list (tramp-gvfs-mount-spec-entry "type" method)
1546 (tramp-gvfs-mount-spec-entry
1547 "host" (concat "[" (tramp-bluez-address host) "]"))))
1548 ((string-match "\\`dav" method)
1549 (list (tramp-gvfs-mount-spec-entry "type" "dav")
1550 (tramp-gvfs-mount-spec-entry "host" host)
1551 (tramp-gvfs-mount-spec-entry "ssl" ssl)))
1552 ((string-equal "afp" method)
1553 (list (tramp-gvfs-mount-spec-entry "type" "afp-volume")
1554 (tramp-gvfs-mount-spec-entry "host" host)
1555 (tramp-gvfs-mount-spec-entry "volume" share)))
1556 ((string-equal "gdrive" method)
1557 (list (tramp-gvfs-mount-spec-entry "type" "google-drive")
1558 (tramp-gvfs-mount-spec-entry "host" host)))
1560 (list (tramp-gvfs-mount-spec-entry "type" method)
1561 (tramp-gvfs-mount-spec-entry "host" host))))
1562 ,@(when user
1563 (list (tramp-gvfs-mount-spec-entry "user" user)))
1564 ,@(when domain
1565 (list (tramp-gvfs-mount-spec-entry "domain" domain)))
1566 ,@(when port
1567 (list (tramp-gvfs-mount-spec-entry "port" port)))))
1568 (mount-pref
1569 (if (and (string-match "\\`dav" method)
1570 (string-match "^/?[^/]+" localname))
1571 (match-string 0 localname)
1572 "/")))
1574 ;; Return.
1575 `(:struct ,(tramp-gvfs-dbus-string-to-byte-array mount-pref) ,mount-spec)))
1578 ;; Connection functions.
1580 (defun tramp-gvfs-get-remote-uid (vec id-format)
1581 "The uid of the remote connection VEC, in ID-FORMAT.
1582 ID-FORMAT valid values are `string' and `integer'."
1583 (with-tramp-connection-property vec (format "uid-%s" id-format)
1584 (let ((method (tramp-file-name-method vec))
1585 (user (tramp-file-name-user vec))
1586 (domain (tramp-file-name-domain vec))
1587 (host (tramp-file-name-host vec))
1588 (port (tramp-file-name-port vec))
1589 (localname
1590 (tramp-get-connection-property vec "default-location" nil)))
1591 (cond
1592 ((and user (equal id-format 'string)) user)
1593 (localname
1594 (tramp-compat-file-attribute-user-id
1595 (file-attributes
1596 (tramp-make-tramp-file-name method user domain host port localname)
1597 id-format)))
1598 ((equal id-format 'integer) tramp-unknown-id-integer)
1599 ((equal id-format 'string) tramp-unknown-id-string)))))
1601 (defun tramp-gvfs-get-remote-gid (vec id-format)
1602 "The gid of the remote connection VEC, in ID-FORMAT.
1603 ID-FORMAT valid values are `string' and `integer'."
1604 (with-tramp-connection-property vec (format "gid-%s" id-format)
1605 (let ((method (tramp-file-name-method vec))
1606 (user (tramp-file-name-user vec))
1607 (domain (tramp-file-name-domain vec))
1608 (host (tramp-file-name-host vec))
1609 (port (tramp-file-name-port vec))
1610 (localname
1611 (tramp-get-connection-property vec "default-location" nil)))
1612 (cond
1613 (localname
1614 (tramp-compat-file-attribute-group-id
1615 (file-attributes
1616 (tramp-make-tramp-file-name method user domain host port localname)
1617 id-format)))
1618 ((equal id-format 'integer) tramp-unknown-id-integer)
1619 ((equal id-format 'string) tramp-unknown-id-string)))))
1621 (defvar tramp-gvfs-get-remote-uid-gid-in-progress nil
1622 "Indication, that remote uid and gid determination is in progress.")
1624 (defun tramp-gvfs-maybe-open-connection (vec)
1625 "Maybe open a connection VEC.
1626 Does not do anything if a connection is already open, but re-opens the
1627 connection if a previous connection has died for some reason."
1628 ;; We set the file name, in case there are incoming D-Bus signals or
1629 ;; D-Bus errors.
1630 (setq tramp-gvfs-dbus-event-vector vec)
1632 ;; For password handling, we need a process bound to the connection
1633 ;; buffer. Therefore, we create a dummy process. Maybe there is a
1634 ;; better solution?
1635 (unless (get-buffer-process (tramp-get-connection-buffer vec))
1636 (let ((p (make-network-process
1637 :name (tramp-buffer-name vec)
1638 :buffer (tramp-get-connection-buffer vec)
1639 :server t :host 'local :service t :noquery t)))
1640 (set-process-query-on-exit-flag p nil)))
1642 (unless (tramp-gvfs-connection-mounted-p vec)
1643 (let* ((method (tramp-file-name-method vec))
1644 (user (tramp-file-name-user vec))
1645 (domain (tramp-file-name-domain vec))
1646 (host (tramp-file-name-host vec))
1647 (port (tramp-file-name-port vec))
1648 (localname (tramp-file-name-unquote-localname vec))
1649 (object-path
1650 (tramp-gvfs-object-path
1651 (tramp-make-tramp-file-name method user domain host port ""))))
1653 (when (and (string-equal method "afp")
1654 (string-equal localname "/"))
1655 (tramp-error vec 'file-error "Filename must contain an AFP volume"))
1657 (when (and (string-match method "davs?")
1658 (string-equal localname "/"))
1659 (tramp-error vec 'file-error "Filename must contain a WebDAV share"))
1661 (when (and (string-equal method "smb")
1662 (string-equal localname "/"))
1663 (tramp-error vec 'file-error "Filename must contain a Windows share"))
1665 (with-tramp-progress-reporter
1666 vec 3
1667 (if (zerop (length user))
1668 (format "Opening connection for %s using %s" host method)
1669 (format "Opening connection for %s@%s using %s" user host method))
1671 ;; Enable `auth-source'.
1672 (tramp-set-connection-property
1673 vec "first-password-request" tramp-cache-read-persistent-data)
1675 ;; There will be a callback of "askPassword" when a password is needed.
1676 (dbus-register-method
1677 :session dbus-service-emacs object-path
1678 tramp-gvfs-interface-mountoperation "askPassword"
1679 'tramp-gvfs-handler-askpassword)
1680 (dbus-register-method
1681 :session dbus-service-emacs object-path
1682 tramp-gvfs-interface-mountoperation "AskPassword"
1683 'tramp-gvfs-handler-askpassword)
1685 ;; There could be a callback of "askQuestion" when adding fingerprint.
1686 (dbus-register-method
1687 :session dbus-service-emacs object-path
1688 tramp-gvfs-interface-mountoperation "askQuestion"
1689 'tramp-gvfs-handler-askquestion)
1690 (dbus-register-method
1691 :session dbus-service-emacs object-path
1692 tramp-gvfs-interface-mountoperation "AskQuestion"
1693 'tramp-gvfs-handler-askquestion)
1695 ;; The call must be asynchronously, because of the "askPassword"
1696 ;; or "askQuestion" callbacks.
1697 (if (string-match "(so)$" tramp-gvfs-mountlocation-signature)
1698 (with-tramp-dbus-call-method vec nil
1699 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
1700 tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation
1701 (tramp-gvfs-mount-spec vec)
1702 `(:struct :string ,(dbus-get-unique-name :session)
1703 :object-path ,object-path))
1704 (with-tramp-dbus-call-method vec nil
1705 :session tramp-gvfs-service-daemon tramp-gvfs-path-mounttracker
1706 tramp-gvfs-interface-mounttracker tramp-gvfs-mountlocation
1707 (tramp-gvfs-mount-spec vec)
1708 :string (dbus-get-unique-name :session) :object-path object-path))
1710 ;; We must wait, until the mount is applied. This will be
1711 ;; indicated by the "mounted" signal, i.e. the "fuse-mountpoint"
1712 ;; file property.
1713 (with-timeout
1714 ((or (tramp-get-method-parameter vec 'tramp-connection-timeout)
1715 tramp-connection-timeout)
1716 (if (zerop (length (tramp-file-name-user vec)))
1717 (tramp-error
1718 vec 'file-error
1719 "Timeout reached mounting %s using %s" host method)
1720 (tramp-error
1721 vec 'file-error
1722 "Timeout reached mounting %s@%s using %s" user host method)))
1723 (while (not (tramp-get-file-property vec "/" "fuse-mountpoint" nil))
1724 (read-event nil nil 0.1)))
1726 ;; If `tramp-gvfs-handler-askquestion' has returned "No", it
1727 ;; is marked with the fuse-mountpoint "/". We shall react.
1728 (when (string-equal
1729 (tramp-get-file-property vec "/" "fuse-mountpoint" "") "/")
1730 (tramp-error vec 'file-error "FUSE mount denied"))
1732 ;; Set connection-local variables.
1733 (tramp-set-connection-local-variables vec)
1735 ;; Mark it as connected.
1736 (tramp-set-connection-property
1737 (tramp-get-connection-process vec) "connected" t))))
1739 ;; In `tramp-check-cached-permissions', the connection properties
1740 ;; {uig,gid}-{integer,string} are used. We set them to proper values.
1741 (unless tramp-gvfs-get-remote-uid-gid-in-progress
1742 (let ((tramp-gvfs-get-remote-uid-gid-in-progress t))
1743 (tramp-gvfs-get-remote-uid vec 'integer)
1744 (tramp-gvfs-get-remote-gid vec 'integer)
1745 (tramp-gvfs-get-remote-uid vec 'string)
1746 (tramp-gvfs-get-remote-gid vec 'string))))
1748 (defun tramp-gvfs-send-command (vec command &rest args)
1749 "Send the COMMAND with its ARGS to connection VEC.
1750 COMMAND is usually a command from the gvfs-* utilities.
1751 `call-process' is applied, and it returns t if the return code is zero."
1752 (let* ((locale (tramp-get-local-locale vec))
1753 (process-environment
1754 (append
1755 `(,(format "LANG=%s" locale)
1756 ,(format "LANGUAGE=%s" locale)
1757 ,(format "LC_ALL=%s" locale))
1758 process-environment)))
1759 (with-current-buffer (tramp-get-connection-buffer vec)
1760 (tramp-gvfs-maybe-open-connection vec)
1761 (erase-buffer)
1762 (or (zerop (apply 'tramp-call-process vec command nil t nil args))
1763 ;; Remove information about mounted connection.
1764 (and (tramp-flush-file-property vec "/") nil)))))
1767 ;; D-Bus BLUEZ functions.
1769 (defun tramp-bluez-list-devices ()
1770 "Return all discovered bluetooth devices as list.
1771 Every entry is a list (NAME ADDRESS).
1773 If `tramp-bluez-discover-devices-timeout' is an integer, and the last
1774 discovery happened more time before indicated there, a rescan will be
1775 started, which lasts some ten seconds. Otherwise, cached results will
1776 be used."
1777 ;; Reset the scanned devices list if time has passed.
1778 (and (integerp tramp-bluez-discover-devices-timeout)
1779 (integerp tramp-bluez-discovery)
1780 (> (tramp-time-diff (current-time) tramp-bluez-discovery)
1781 tramp-bluez-discover-devices-timeout)
1782 (setq tramp-bluez-devices nil))
1784 ;; Rescan if needed.
1785 (unless tramp-bluez-devices
1786 (let ((object-path
1787 (with-tramp-dbus-call-method tramp-gvfs-dbus-event-vector t
1788 :system tramp-bluez-service "/"
1789 tramp-bluez-interface-manager "DefaultAdapter")))
1790 (setq tramp-bluez-devices nil
1791 tramp-bluez-discovery t)
1792 (with-tramp-dbus-call-method tramp-gvfs-dbus-event-vector nil
1793 :system tramp-bluez-service object-path
1794 tramp-bluez-interface-adapter "StartDiscovery")
1795 (while tramp-bluez-discovery
1796 (read-event nil nil 0.1))))
1797 (setq tramp-bluez-discovery (current-time))
1798 (tramp-message tramp-gvfs-dbus-event-vector 10 "%s" tramp-bluez-devices)
1799 tramp-bluez-devices)
1801 (defun tramp-bluez-property-changed (property value)
1802 "Signal handler for the \"org.bluez.Adapter.PropertyChanged\" signal."
1803 (tramp-message tramp-gvfs-dbus-event-vector 6 "%s %s" property value)
1804 (cond
1805 ((string-equal property "Discovering")
1806 (unless (car value)
1807 ;; "Discovering" FALSE means discovery run has been completed.
1808 ;; We stop it, because we don't need another run.
1809 (setq tramp-bluez-discovery nil)
1810 (with-tramp-dbus-call-method tramp-gvfs-dbus-event-vector t
1811 :system tramp-bluez-service (dbus-event-path-name last-input-event)
1812 tramp-bluez-interface-adapter "StopDiscovery")))))
1814 (when tramp-gvfs-enabled
1815 (dbus-register-signal
1816 :system nil nil tramp-bluez-interface-adapter "PropertyChanged"
1817 'tramp-bluez-property-changed))
1819 (defun tramp-bluez-device-found (device args)
1820 "Signal handler for the \"org.bluez.Adapter.DeviceFound\" signal."
1821 (tramp-message tramp-gvfs-dbus-event-vector 6 "%s %s" device args)
1822 (let ((alias (car (cadr (assoc "Alias" args))))
1823 (address (car (cadr (assoc "Address" args)))))
1824 ;; Maybe we shall check the device class for being a proper
1825 ;; device, and call also SDP in order to find the obex service.
1826 (add-to-list 'tramp-bluez-devices (list alias address))))
1828 (when tramp-gvfs-enabled
1829 (dbus-register-signal
1830 :system nil nil tramp-bluez-interface-adapter "DeviceFound"
1831 'tramp-bluez-device-found))
1833 (defun tramp-bluez-parse-device-names (_ignore)
1834 "Return a list of (nil host) tuples allowed to access."
1835 (mapcar
1836 (lambda (x) (list nil (car x)))
1837 (tramp-bluez-list-devices)))
1839 ;; Add completion function for OBEX method.
1840 (when (and tramp-gvfs-enabled
1841 (member tramp-bluez-service (dbus-list-known-names :system)))
1842 (tramp-set-completion-function
1843 "obex" '((tramp-bluez-parse-device-names ""))))
1846 ;; D-Bus zeroconf functions.
1848 (defun tramp-zeroconf-parse-device-names (service)
1849 "Return a list of (user host) tuples allowed to access."
1850 (mapcar
1851 (lambda (x)
1852 (let ((host (zeroconf-service-host x))
1853 (port (zeroconf-service-port x))
1854 (text (zeroconf-service-txt x))
1855 user)
1856 (when port
1857 (setq host (format "%s%s%d" host tramp-prefix-port-regexp port)))
1858 ;; A user is marked in a TXT field like "u=guest".
1859 (while text
1860 (when (string-match "u=\\(.+\\)$" (car text))
1861 (setq user (match-string 1 (car text))))
1862 (setq text (cdr text)))
1863 (list user host)))
1864 (zeroconf-list-services service)))
1866 ;; We use the TRIM argument of `split-string', which exist since Emacs
1867 ;; 24.4. I mask this for older Emacs versions, there is no harm.
1868 (defun tramp-gvfs-parse-device-names (service)
1869 "Return a list of (user host) tuples allowed to access.
1870 This uses \"avahi-browse\" in case D-Bus is not enabled in Avahi."
1871 (let ((result
1872 (ignore-errors
1873 (tramp-compat-funcall
1874 'split-string
1875 (shell-command-to-string (format "avahi-browse -trkp %s" service))
1876 "[\n\r]+" 'omit "^\\+;.*$"))))
1877 (delete-dups
1878 (mapcar
1879 (lambda (x)
1880 (let* ((list (split-string x ";"))
1881 (host (nth 6 list))
1882 (text (tramp-compat-funcall
1883 'split-string (nth 9 list) "\" \"" 'omit "\""))
1884 user)
1885 ;; A user is marked in a TXT field like "u=guest".
1886 (while text
1887 (when (string-match "u=\\(.+\\)$" (car text))
1888 (setq user (match-string 1 (car text))))
1889 (setq text (cdr text)))
1890 (list user host)))
1891 result))))
1893 ;; Add completion functions for AFP, DAV, DAVS, SFTP and SMB methods.
1894 (when tramp-gvfs-enabled
1895 ;; Suppress D-Bus error messages.
1896 (let (tramp-gvfs-dbus-event-vector)
1897 (zeroconf-init tramp-gvfs-zeroconf-domain)
1898 (if (zeroconf-list-service-types)
1899 (progn
1900 (tramp-set-completion-function
1901 "afp" '((tramp-zeroconf-parse-device-names "_afpovertcp._tcp")))
1902 (tramp-set-completion-function
1903 "dav" '((tramp-zeroconf-parse-device-names "_webdav._tcp")))
1904 (tramp-set-completion-function
1905 "davs" '((tramp-zeroconf-parse-device-names "_webdav._tcp")))
1906 (tramp-set-completion-function
1907 "sftp" '((tramp-zeroconf-parse-device-names "_ssh._tcp")
1908 (tramp-zeroconf-parse-device-names "_workstation._tcp")))
1909 (when (member "smb" tramp-gvfs-methods)
1910 (tramp-set-completion-function
1911 "smb" '((tramp-zeroconf-parse-device-names "_smb._tcp")))))
1913 (when (executable-find "avahi-browse")
1914 (tramp-set-completion-function
1915 "afp" '((tramp-gvfs-parse-device-names "_afpovertcp._tcp")))
1916 (tramp-set-completion-function
1917 "dav" '((tramp-gvfs-parse-device-names "_webdav._tcp")))
1918 (tramp-set-completion-function
1919 "davs" '((tramp-gvfs-parse-device-names "_webdav._tcp")))
1920 (tramp-set-completion-function
1921 "sftp" '((tramp-gvfs-parse-device-names "_ssh._tcp")
1922 (tramp-gvfs-parse-device-names "_workstation._tcp")))
1923 (when (member "smb" tramp-gvfs-methods)
1924 (tramp-set-completion-function
1925 "smb" '((tramp-gvfs-parse-device-names "_smb._tcp"))))))))
1928 ;; D-Bus SYNCE functions.
1930 (defun tramp-synce-list-devices ()
1931 "Return all discovered synce devices as list.
1932 They are retrieved from the hal daemon."
1933 (let (tramp-synce-devices)
1934 (dolist (device
1935 (with-tramp-dbus-call-method tramp-gvfs-dbus-event-vector t
1936 :system tramp-hal-service tramp-hal-path-manager
1937 tramp-hal-interface-manager "GetAllDevices"))
1938 (when (with-tramp-dbus-call-method tramp-gvfs-dbus-event-vector t
1939 :system tramp-hal-service device tramp-hal-interface-device
1940 "PropertyExists" "sync.plugin")
1941 (let ((prop
1942 (with-tramp-dbus-call-method
1943 tramp-gvfs-dbus-event-vector t
1944 :system tramp-hal-service device tramp-hal-interface-device
1945 "GetPropertyString" "pda.pocketpc.name")))
1946 (unless (member prop tramp-synce-devices)
1947 (push prop tramp-synce-devices)))))
1948 (tramp-message tramp-gvfs-dbus-event-vector 10 "%s" tramp-synce-devices)
1949 tramp-synce-devices))
1951 (defun tramp-synce-parse-device-names (_ignore)
1952 "Return a list of (nil host) tuples allowed to access."
1953 (mapcar
1954 (lambda (x) (list nil x))
1955 (tramp-synce-list-devices)))
1957 ;; Add completion function for SYNCE method.
1958 (when tramp-gvfs-enabled
1959 (tramp-set-completion-function
1960 "synce" '((tramp-synce-parse-device-names ""))))
1962 (add-hook 'tramp-unload-hook
1963 (lambda ()
1964 (unload-feature 'tramp-gvfs 'force)))
1966 (provide 'tramp-gvfs)
1968 ;;; TODO:
1970 ;; * Host name completion for existing mount points (afp-server,
1971 ;; smb-server) or via smb-network.
1973 ;; * Check, how two shares of the same SMB server can be mounted in
1974 ;; parallel.
1976 ;; * Apply SDP on bluetooth devices, in order to filter out obex
1977 ;; capability.
1979 ;; * Implement obex for other serial communication but bluetooth.
1981 ;;; tramp-gvfs.el ends here