unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
@ 2022-02-07 14:30 Philipp Stephani
  2022-02-09 16:10 ` Michael Albinus
  0 siblings, 1 reply; 7+ messages in thread
From: Philipp Stephani @ 2022-02-07 14:30 UTC (permalink / raw)
  To: 53847


To reproduce this, you need two GNU/Linux machines with the same user
name but different home directories.  Assume that on host 1 the user's
home directory is /home1/user, and that on host 2 the user's home
directory is /home2/user.  With the SSH protocol, home directory
expansion works as expected:

$ emacs -Q -batch -eval '(print (expand-file-name "/ssh:host-2:"))'
Tramp: Sending command ‘exec ssh -e none host-2’
Tramp: Found remote shell prompt on ‘host-2’
"/ssh:host-2:/home2/user/"

$ emacs -Q -batch -eval '(print (expand-file-name "/ssh:host-2:~"))'
Tramp: Sending command ‘exec ssh -e none host-2’
Tramp: Found remote shell prompt on ‘host-2’
"/ssh:host-2:/home2/user"

However, this fails with SSHFS:

$ emacs -Q -batch -eval '(print (expand-file-name "/sshfs:host-2:"))'
"/sshfs:host-2:/"

$ emacs -Q -batch -eval '(print (expand-file-name "/sshfs:host-2:~"))'
"/sshfs:host-2:/home1/user"


In GNU Emacs 28.0.91 (build 14, x86_64-pc-linux-gnu, GTK+ Version 3.24.31, cairo version 1.16.0)
 of 2022-02-07
Repository revision: 0d46ee2ddebb74a5a6e1d55da3641d1cd2ba5beb
Repository branch: emacs-28
Windowing system distributor 'The X.Org Foundation', version 11.0.12013000
System Description: Debian GNU/Linux rodete

Configured using:
 'configure --enable-gcc-warnings=warn-only
 --enable-gtk-deprecation-warnings --without-pop --with-mailutils
 --enable-checking=all --enable-check-lisp-object-type --with-modules
 'CFLAGS=-O0 -ggdb3''

Configured features:
CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG JSON
LIBSELINUX LIBSYSTEMD LIBXML2 MODULES NOTIFY INOTIFY PDUMPER PNG SECCOMP
SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM GTK3 ZLIB

Important settings:
  value of $LC_TIME: en_DK.utf8
  value of $LANG: en_US.utf8
  value of $XMODIFIERS: @im=ibus
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  show-paren-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  indent-tabs-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug sendmail phst skeleton edmacro kmacro
pcase ffap thingatpt url url-proxy url-privacy url-expand url-methods
url-history url-cookie url-domsuf url-util url-parse url-vars mailcap rx
message rmc dired dired-loaddefs rfc822 mml mml-sec epa derived epg
rfc6068 epg-config gnus-util rmail rmail-loaddefs auth-source cl-seq
eieio eieio-core cl-macs eieio-loaddefs password-cache json map
time-date mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047
rfc2045 mm-util ietf-drums mail-prsvr mailabbrev mail-utils gmm-utils
mailheader gnutls puny elp dbus xml subr-x seq byte-opt gv bytecomp
byte-compile cconv compile text-property-search comint ansi-color ring
cl-loaddefs cl-lib iso-transl tooltip eldoc paren electric uniquify
ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win
term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode lisp-mode prog-mode register
page tab-bar menu-bar rfn-eshadow isearch easymenu timer select
scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors
frame minibuffer cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese composite emoji-zwj charscript charprop case-table epa-hook
jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice button
loaddefs faces cus-face macroexp files window text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote threads dbusbind inotify
dynamic-setting system-font-setting font-render-setting cairo
move-toolbar gtk x-toolkit x multi-tty make-network-process emacs)

Memory information:
((conses 16 69610 7179)
 (symbols 48 8545 3)
 (strings 32 24833 2416)
 (string-bytes 1 802062)
 (vectors 16 15668)
 (vector-slots 8 207469 18135)
 (floats 8 29 46)
 (intervals 56 228 0)
 (buffers 992 11))

-- 
Google Germany GmbH
Erika-Mann-Straße 33
80636 München

Geschäftsführer: Paul Manicle, Halimah DeLaine Prado
Registergericht und -nummer: Hamburg, HRB 86891
Sitz der Gesellschaft: Hamburg

Diese E-Mail ist vertraulich.  Falls Sie diese fälschlicherweise erhalten haben
sollten, leiten Sie diese bitte nicht an jemand anderes weiter, löschen Sie
alle Kopien und Anhänge davon und lassen Sie mich bitte wissen, dass die E-Mail
an die falsche Person gesendet wurde.

This e-mail is confidential.  If you received this communication by mistake,
please don’t forward it to anyone else, please erase all copies and
attachments, and please let me know that it has gone to the wrong person.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-02-07 14:30 bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory Philipp Stephani
@ 2022-02-09 16:10 ` Michael Albinus
  2022-02-11  8:44   ` Michael Albinus
  2022-03-09  9:17   ` Philipp Stephani
  0 siblings, 2 replies; 7+ messages in thread
From: Michael Albinus @ 2022-02-09 16:10 UTC (permalink / raw)
  To: Philipp Stephani; +Cc: 53847

Philipp Stephani <p.stephani2@gmail.com> writes:

Hi Philipp,

> To reproduce this, you need two GNU/Linux machines with the same user
> name but different home directories.  Assume that on host 1 the user's
> home directory is /home1/user, and that on host 2 the user's home
> directory is /home2/user.  With the SSH protocol, home directory
> expansion works as expected:
>
> However, this fails with SSHFS:

Tilde expansion is not possible for sshfs (and adb, rclone) methods of
Tramp. I've added a check, and Tramp raises an error now when it detects
a tilde. Pushed to master.

However, this breaks shell-command for these methods. In shell-mode,
comint-input-ring-file-name is set to something like
"/sshfs:user@host:~/.history". Expanding this file name raises the error
now. I have no idea how to fix this. Setting comint-input-ring-file-name
to "/sshfs:user@host:/dev/null"?

Best regards, Michael.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-02-09 16:10 ` Michael Albinus
@ 2022-02-11  8:44   ` Michael Albinus
  2022-03-09  9:17   ` Philipp Stephani
  1 sibling, 0 replies; 7+ messages in thread
From: Michael Albinus @ 2022-02-11  8:44 UTC (permalink / raw)
  To: Philipp Stephani; +Cc: 53847-done

Version: 28.2

Michael Albinus <michael.albinus@gmx.de> writes:

Hi Philipp,

>> To reproduce this, you need two GNU/Linux machines with the same user
>> name but different home directories.  Assume that on host 1 the user's
>> home directory is /home1/user, and that on host 2 the user's home
>> directory is /home2/user.  With the SSH protocol, home directory
>> expansion works as expected:
>>
>> However, this fails with SSHFS:
>
> Tilde expansion is not possible for sshfs (and adb, rclone) methods of
> Tramp. I've added a check, and Tramp raises an error now when it detects
> a tilde. Pushed to master.
>
> However, this breaks shell-command for these methods. In shell-mode,
> comint-input-ring-file-name is set to something like
> "/sshfs:user@host:~/.history". Expanding this file name raises the error
> now. I have no idea how to fix this. Setting comint-input-ring-file-name
> to "/sshfs:user@host:/dev/null"?

Should be fixed now, pushed to master. It will also be contained in the
upcoming Tramp 2.5.2.2 on GNU ELPA.

I'm closing the bug.

Best regards, Michael.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-02-09 16:10 ` Michael Albinus
  2022-02-11  8:44   ` Michael Albinus
@ 2022-03-09  9:17   ` Philipp Stephani
  2022-03-09  9:33     ` Michael Albinus
  1 sibling, 1 reply; 7+ messages in thread
From: Philipp Stephani @ 2022-03-09  9:17 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 53847

Am Mi., 9. Feb. 2022 um 17:10 Uhr schrieb Michael Albinus
<michael.albinus@gmx.de>:
>
> Philipp Stephani <p.stephani2@gmail.com> writes:
>
> Hi Philipp,
>
> > To reproduce this, you need two GNU/Linux machines with the same user
> > name but different home directories.  Assume that on host 1 the user's
> > home directory is /home1/user, and that on host 2 the user's home
> > directory is /home2/user.  With the SSH protocol, home directory
> > expansion works as expected:
> >
> > However, this fails with SSHFS:
>
> Tilde expansion is not possible for sshfs (and adb, rclone) methods of
> Tramp. I've added a check, and Tramp raises an error now when it detects
> a tilde. Pushed to master.
>

Thanks, but would it maybe be possible to find a better solution? I've
been using SSHFS for a while now, and this particular issue is pretty
annoying in practice. How about any of the following:
- When connecting over SSHFS, ask the remote host (via SSH) for the
home directory and cache the result.
- Allow the user to configure a per-host static home directory (i.e.
just a customizable mapping from hosts + users to home directories). I
regularly only connect to 2 hosts with known hostnames and home
directories, so at least for me maintaining such a mapping would be
feasible.
WDYT?





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-03-09  9:17   ` Philipp Stephani
@ 2022-03-09  9:33     ` Michael Albinus
  2022-03-10 11:37       ` Michael Albinus
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Albinus @ 2022-03-09  9:33 UTC (permalink / raw)
  To: Philipp Stephani; +Cc: 53847

Philipp Stephani <p.stephani2@gmail.com> writes:

Hi Philipp,

>> > To reproduce this, you need two GNU/Linux machines with the same user
>> > name but different home directories.  Assume that on host 1 the user's
>> > home directory is /home1/user, and that on host 2 the user's home
>> > directory is /home2/user.  With the SSH protocol, home directory
>> > expansion works as expected:
>> >
>> > However, this fails with SSHFS:
>>
>> Tilde expansion is not possible for sshfs (and adb, rclone) methods of
>> Tramp. I've added a check, and Tramp raises an error now when it detects
>> a tilde. Pushed to master.
>
> Thanks, but would it maybe be possible to find a better solution? I've
> been using SSHFS for a while now, and this particular issue is pretty
> annoying in practice. How about any of the following:
> - When connecting over SSHFS, ask the remote host (via SSH) for the
> home directory and cache the result.
> - Allow the user to configure a per-host static home directory (i.e.
> just a customizable mapping from hosts + users to home directories). I
> regularly only connect to 2 hosts with known hostnames and home
> directories, so at least for me maintaining such a mapping would be
> feasible.
> WDYT?

Tramp uses already a cached value for the home directory, under the key
"~". You could try the following:

--8<---------------cut here---------------start------------->8---
(add-to-list 'tramp-connection-properties
             (list (regexp-quote "/sshfs:user@randomhost.your.domain:")
                   "~" "/home/user"))
--8<---------------cut here---------------end--------------->8---

It is untested, and you need a fresh git checkout of master. Please
report whether it works; I would add the recipe to the manual then.

Best regards, Michael.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-03-09  9:33     ` Michael Albinus
@ 2022-03-10 11:37       ` Michael Albinus
  2022-03-18 16:53         ` Philipp Stephani
  0 siblings, 1 reply; 7+ messages in thread
From: Michael Albinus @ 2022-03-10 11:37 UTC (permalink / raw)
  To: Philipp Stephani; +Cc: 53847

Michael Albinus <michael.albinus@gmx.de> writes:

Hi Philipp,

>> Thanks, but would it maybe be possible to find a better solution? I've
>> been using SSHFS for a while now, and this particular issue is pretty
>> annoying in practice. How about any of the following:
>> - When connecting over SSHFS, ask the remote host (via SSH) for the
>> home directory and cache the result.
>> - Allow the user to configure a per-host static home directory (i.e.
>> just a customizable mapping from hosts + users to home directories). I
>> regularly only connect to 2 hosts with known hostnames and home
>> directories, so at least for me maintaining such a mapping would be
>> feasible.
>> WDYT?
>
> Tramp uses already a cached value for the home directory, under the key
> "~". You could try the following:
>
> (add-to-list 'tramp-connection-properties
>              (list (regexp-quote "/sshfs:user@randomhost.your.domain:")
>                    "~" "/home/user"))
>
> It is untested, and you need a fresh git checkout of master. Please
> report whether it works; I would add the recipe to the manual then.

Well, it didn't work out of the box. So I've pushed a fix to the master
branch in order to support this. Note, that you need the connection
property "~user", with "user" being your remote user name.

The Tramp manual has been enhanced with this new section:

--8<---------------cut here---------------start------------->8---
5.5 Expanding ‘~’ to home directory
===================================

Home directories on remote hosts can be typed as tilde ‘~’.  If
possible, they are expanded to the remote user’s home directory on the
remote host.  Example:

     /ssh:user@host:~
     ⇒ /ssh:user@host:/home/user

   This works in general for ‘ssh’-like methods, and for ‘sudoedit’.
These methods allow also the home directory expansion for another
user, like

     /sudoedit::~otheruser
     ⇒ /sudoedit:root@localhost:/home/otheruser

   For other methods, a home directory can be expanded only if
supported.  This happens for example for the ‘sftp’ method.  Methods,
which require a share directory in the remote file name (‘afp’,
‘smb’), use the value of this share directory as home directory:

     /smb:user@host:~
     ⇒ /smb:user@host:/share

   Since Tramp cannot know in advance which share directory is
intended to use, this expansion can be applied only when a share
directory has been used already.

   The methods ‘adb’, ‘rclone’ and ‘sshfs’ do not support home
directory expansion at all.  However, TRAMP keeps the home directory
in the cache.  Therefore, those methods could be configured to expand
a home directory via a connection property, *Note Predefined
connection information::.  Example:

     (add-to-list 'tramp-connection-properties
                  (list (regexp-quote "/sshfs:user@randomhost.your.domain:")
                        "~user" "/home/user"))

   When your remote file name does not contain a ‘user’ part, the
connection property "~" must be used instead.
--8<---------------cut here---------------end--------------->8---

Best regards, Michael.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory
  2022-03-10 11:37       ` Michael Albinus
@ 2022-03-18 16:53         ` Philipp Stephani
  0 siblings, 0 replies; 7+ messages in thread
From: Philipp Stephani @ 2022-03-18 16:53 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 53847

Am Do., 10. März 2022 um 12:37 Uhr schrieb Michael Albinus
<michael.albinus@gmx.de>:
>
> Michael Albinus <michael.albinus@gmx.de> writes:
>
> Hi Philipp,
>
> >> Thanks, but would it maybe be possible to find a better solution? I've
> >> been using SSHFS for a while now, and this particular issue is pretty
> >> annoying in practice. How about any of the following:
> >> - When connecting over SSHFS, ask the remote host (via SSH) for the
> >> home directory and cache the result.
> >> - Allow the user to configure a per-host static home directory (i.e.
> >> just a customizable mapping from hosts + users to home directories). I
> >> regularly only connect to 2 hosts with known hostnames and home
> >> directories, so at least for me maintaining such a mapping would be
> >> feasible.
> >> WDYT?
> >
> > Tramp uses already a cached value for the home directory, under the key
> > "~". You could try the following:
> >
> > (add-to-list 'tramp-connection-properties
> >              (list (regexp-quote "/sshfs:user@randomhost.your.domain:")
> >                    "~" "/home/user"))
> >
> > It is untested, and you need a fresh git checkout of master. Please
> > report whether it works; I would add the recipe to the manual then.
>
> Well, it didn't work out of the box. So I've pushed a fix to the master
> branch in order to support this. Note, that you need the connection
> property "~user", with "user" being your remote user name.

Thanks, I'll try this out for a while to see whether it works for me.





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-03-18 16:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-07 14:30 bug#53847: 28.0.91; Tramp SSHFS: incorrect remote home directory Philipp Stephani
2022-02-09 16:10 ` Michael Albinus
2022-02-11  8:44   ` Michael Albinus
2022-03-09  9:17   ` Philipp Stephani
2022-03-09  9:33     ` Michael Albinus
2022-03-10 11:37       ` Michael Albinus
2022-03-18 16:53         ` Philipp Stephani

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).