unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#21142: Sshfs-fuse requires fuse
@ 2015-07-27 15:05 Andreas Enge
  2015-07-27 17:23 ` Claes Wallin
  0 siblings, 1 reply; 10+ messages in thread
From: Andreas Enge @ 2015-07-27 15:05 UTC (permalink / raw)
  To: 21142

Hello,

when trying to execute sshfs from the sshfs-fuse package, I obtain
   fuse: failed to exec fusermount: No such file or directory

I think that fuse should be a propagated input of sshfs-fuse.

Andreas

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

* bug#21142: Sshfs-fuse requires fuse
  2015-07-27 15:05 bug#21142: Sshfs-fuse requires fuse Andreas Enge
@ 2015-07-27 17:23 ` Claes Wallin
  2015-07-28 14:20   ` Mark H Weaver
  0 siblings, 1 reply; 10+ messages in thread
From: Claes Wallin @ 2015-07-27 17:23 UTC (permalink / raw)
  To: Andreas Enge; +Cc: 21142

[-- Attachment #1: Type: text/plain, Size: 358 bytes --]

On 27-Jul-2015 5:06 pm, "Andreas Enge" <andreas@enge.fr> wrote:
>
> Hello,
>
> when trying to execute sshfs from the sshfs-fuse package, I obtain
>    fuse: failed to exec fusermount: No such file or directory
>
> I think that fuse should be a propagated input of sshfs-fuse.

Maybe it's less intrusive toward the user to wrap sshfs to add fuse to its
PATH?

[-- Attachment #2: Type: text/html, Size: 508 bytes --]

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

* bug#21142: Sshfs-fuse requires fuse
  2015-07-27 17:23 ` Claes Wallin
@ 2015-07-28 14:20   ` Mark H Weaver
  2015-07-28 19:27     ` Claes Wallin
  2015-11-29 11:18     ` Ludovic Courtès
  0 siblings, 2 replies; 10+ messages in thread
From: Mark H Weaver @ 2015-07-28 14:20 UTC (permalink / raw)
  To: Claes Wallin (韋嘉誠); +Cc: 21142

Claes Wallin (韋嘉誠) <gnu@clacke.user.lysator.liu.se> writes:

> On 27-Jul-2015 5:06 pm, "Andreas Enge" <andreas@enge.fr> wrote:
>>
>> Hello,
>>
>> when trying to execute sshfs from the sshfs-fuse package, I obtain
>> fuse: failed to exec fusermount: No such file or directory
>>
>> I think that fuse should be a propagated input of sshfs-fuse.
>
> Maybe it's less intrusive toward the user to wrap sshfs to add fuse to
> its PATH?

Or patch the reference to 'fusermount' to be an absolute path?

I haven't looked into this, so I don't know the feasibility of these
approaches, but in general I think that 'propagated-inputs' should be
avoided whenever there is a reasonable alternative.

What do you think?

      Mark

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

* bug#21142: Sshfs-fuse requires fuse
  2015-07-28 14:20   ` Mark H Weaver
@ 2015-07-28 19:27     ` Claes Wallin
  2015-11-29 11:18     ` Ludovic Courtès
  1 sibling, 0 replies; 10+ messages in thread
From: Claes Wallin @ 2015-07-28 19:27 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 21142

[-- Attachment #1: Type: text/plain, Size: 931 bytes --]

On Jul 28, 2015 4:21 PM, "Mark H Weaver" <mhw@netris.org> wrote:
> Claes Wallin (韋嘉誠) <gnu@clacke.user.lysator.liu.se> writes:
> > On 27-Jul-2015 5:06 pm, "Andreas Enge" <andreas@enge.fr> wrote:
> >>
> >> Hello,
> >>
> >> when trying to execute sshfs from the sshfs-fuse package, I obtain
> >> fuse: failed to exec fusermount: No such file or directory
> >>
> >> I think that fuse should be a propagated input of sshfs-fuse.
> >
> > Maybe it's less intrusive toward the user to wrap sshfs to add fuse to
> > its PATH?
>
> Or patch the reference to 'fusermount' to be an absolute path?

That's even better!

> I haven't looked into this, so I don't know the feasibility of these
> approaches, but in general I think that 'propagated-inputs' should be
> avoided whenever there is a reasonable alternative.
>
> What do you think?

Yeah, installing a package should cause the minimum amount of surprise.

[-- Attachment #2: Type: text/html, Size: 1375 bytes --]

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

* bug#21142: Sshfs-fuse requires fuse
  2015-07-28 14:20   ` Mark H Weaver
  2015-07-28 19:27     ` Claes Wallin
@ 2015-11-29 11:18     ` Ludovic Courtès
  2015-11-29 11:52       ` Claes Wallin
  1 sibling, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2015-11-29 11:18 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 21142

Mark H Weaver <mhw@netris.org> skribis:

> Claes Wallin (韋嘉誠) <gnu@clacke.user.lysator.liu.se> writes:
>
>> On 27-Jul-2015 5:06 pm, "Andreas Enge" <andreas@enge.fr> wrote:
>>>
>>> Hello,
>>>
>>> when trying to execute sshfs from the sshfs-fuse package, I obtain
>>> fuse: failed to exec fusermount: No such file or directory
>>>
>>> I think that fuse should be a propagated input of sshfs-fuse.
>>
>> Maybe it's less intrusive toward the user to wrap sshfs to add fuse to
>> its PATH?
>
> Or patch the reference to 'fusermount' to be an absolute path?

This what libfuse does by default in lib/mount.c:

--8<---------------cut here---------------start------------->8---
static void exec_fusermount(const char *argv[])
{
	execv(FUSERMOUNT_DIR "/" FUSERMOUNT_PROG, (char **) argv);
	execvp(FUSERMOUNT_PROG, (char **) argv);
}
--8<---------------cut here---------------end--------------->8---

However, we explicitly patch it because in practice the ‘fusermount’
binary must be at least set-user-gid to fuse, per mount.fuse(8):

--8<---------------cut here---------------start------------->8---
    ;; This hack leads libfuse to search for 'fusermount' in
    ;; $PATH, where it may find a setuid-root binary, instead of
    ;; trying solely $out/sbin/fusermount and failing because
    ;; it's not setuid.
    (substitute* "lib/Makefile"
      (("-DFUSERMOUNT_DIR=[[:graph:]]+")
       "-DFUSERMOUNT_DIR=\\\"/var/empty\\\""))
--8<---------------cut here---------------end--------------->8---

On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
/run/setuid-programs, so things just work.

On foreign distros, there’s not much we can do: Users have to set add a
setuid ‘fusermount’ in their PATH.

Closing this bug as “wontfix.”

Ludo’.

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

* bug#21142: Sshfs-fuse requires fuse
  2015-11-29 11:18     ` Ludovic Courtès
@ 2015-11-29 11:52       ` Claes Wallin
  2015-11-29 14:58         ` Ludovic Courtès
  0 siblings, 1 reply; 10+ messages in thread
From: Claes Wallin @ 2015-11-29 11:52 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 21142

[-- Attachment #1: Type: text/plain, Size: 641 bytes --]

On 29-Nov-2015 12:19 pm, "Ludovic Courtès" <ludo@gnu.org> wrote:

> However, we explicitly patch it because in practice the ‘fusermount’
> binary must be at least set-user-gid to fuse, per mount.fuse(8):
[ . . . ]
> On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
> /run/setuid-programs, so things just work.
>
> On foreign distros, there’s not much we can do: Users have to set add a
> setuid ‘fusermount’ in their PATH.
>
> Closing this bug as “wontfix.”

Ok, that's pretty clear then. Is this clear somewhere in the documentation?
Otherwise I suppose we should fix that.

-- 
   /c

[-- Attachment #2: Type: text/html, Size: 835 bytes --]

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

* bug#21142: Sshfs-fuse requires fuse
  2015-11-29 11:52       ` Claes Wallin
@ 2015-11-29 14:58         ` Ludovic Courtès
  2015-11-29 16:41           ` Claes Wallin
  0 siblings, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2015-11-29 14:58 UTC (permalink / raw)
  To: Claes Wallin (韋嘉誠); +Cc: 21142

"Claes Wallin (韋嘉誠)" <gnu@clacke.user.lysator.liu.se> skribis:

> On 29-Nov-2015 12:19 pm, "Ludovic Courtès" <ludo@gnu.org> wrote:
>
>> However, we explicitly patch it because in practice the ‘fusermount’
>> binary must be at least set-user-gid to fuse, per mount.fuse(8):
> [ . . . ]
>> On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
>> /run/setuid-programs, so things just work.
>>
>> On foreign distros, there’s not much we can do: Users have to set add a
>> setuid ‘fusermount’ in their PATH.
>>
>> Closing this bug as “wontfix.”
>
> Ok, that's pretty clear then. Is this clear somewhere in the documentation?
> Otherwise I suppose we should fix that.

Regarding foreign distros, I suppose we could add a paragraph about FUSE
under “Application Setup”?  Would you like to submit a patch against
guix.texi?

Thanks,
Ludo’.

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

* bug#21142: Sshfs-fuse requires fuse
  2015-11-29 14:58         ` Ludovic Courtès
@ 2015-11-29 16:41           ` Claes Wallin
  2015-11-29 17:01             ` Ludovic Courtès
  0 siblings, 1 reply; 10+ messages in thread
From: Claes Wallin @ 2015-11-29 16:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 21142

[-- Attachment #1: Type: text/plain, Size: 957 bytes --]

On Nov 29, 2015 3:58 PM, "Ludovic Courtès" <ludo@gnu.org> wrote:

> >> However, we explicitly patch it because in practice the ‘fusermount’
> >> binary must be at least set-user-gid to fuse, per mount.fuse(8):
> > [ . . . ]
> >> On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
> >> /run/setuid-programs, so things just work.

You mean under GuixSD this works automagically? Or only if fuse is
installed globally and indicated as setuid? (I forget how that works, but
I'll look into it, no need to describe in detail here)

> > Ok, that's pretty clear then. Is this clear somewhere in the
documentation?
> > Otherwise I suppose we should fix that.
>
> Regarding foreign distros, I suppose we could add a paragraph about FUSE
> under “Application Setup”?  Would you like to submit a patch against
> guix.texi?

I would like to. I'll see when I get around to it, hopefully around New
Year's.

-- 
   /c

[-- Attachment #2: Type: text/html, Size: 1220 bytes --]

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

* bug#21142: Sshfs-fuse requires fuse
  2015-11-29 16:41           ` Claes Wallin
@ 2015-11-29 17:01             ` Ludovic Courtès
  2015-11-29 17:24               ` Claes Wallin
  0 siblings, 1 reply; 10+ messages in thread
From: Ludovic Courtès @ 2015-11-29 17:01 UTC (permalink / raw)
  To: Claes Wallin (韋嘉誠); +Cc: 21142

"Claes Wallin (韋嘉誠)" <gnu@clacke.user.lysator.liu.se> skribis:

> On Nov 29, 2015 3:58 PM, "Ludovic Courtès" <ludo@gnu.org> wrote:
>
>> >> However, we explicitly patch it because in practice the ‘fusermount’
>> >> binary must be at least set-user-gid to fuse, per mount.fuse(8):
>> > [ . . . ]
>> >> On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
>> >> /run/setuid-programs, so things just work.
>
> You mean under GuixSD this works automagically?

Yes.  ‘fusermount’ is part of ‘%setuid-programs’:

  http://www.gnu.org/software/guix/manual/html_node/Setuid-Programs.html

Ludo’.

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

* bug#21142: Sshfs-fuse requires fuse
  2015-11-29 17:01             ` Ludovic Courtès
@ 2015-11-29 17:24               ` Claes Wallin
  0 siblings, 0 replies; 10+ messages in thread
From: Claes Wallin @ 2015-11-29 17:24 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 21142

[-- Attachment #1: Type: text/plain, Size: 483 bytes --]

On Nov 29, 2015 6:01 PM, "Ludovic Courtès" <ludo@gnu.org> wrote:

> >> >> On GuixSD, this is addressed by having ‘fusermount’ setuid-root in
> >> >> /run/setuid-programs, so things just work.
> >
> > You mean under GuixSD this works automagically?
>
> Yes.  ‘fusermount’ is part of ‘%setuid-programs’:

Still, fuse needs to be installed on the OS if a user wants to install and
run sshfs. When I take a look at the docs, I'll keep this in mind.

-- 
   /c

[-- Attachment #2: Type: text/html, Size: 677 bytes --]

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

end of thread, other threads:[~2015-11-29 17:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-27 15:05 bug#21142: Sshfs-fuse requires fuse Andreas Enge
2015-07-27 17:23 ` Claes Wallin
2015-07-28 14:20   ` Mark H Weaver
2015-07-28 19:27     ` Claes Wallin
2015-11-29 11:18     ` Ludovic Courtès
2015-11-29 11:52       ` Claes Wallin
2015-11-29 14:58         ` Ludovic Courtès
2015-11-29 16:41           ` Claes Wallin
2015-11-29 17:01             ` Ludovic Courtès
2015-11-29 17:24               ` Claes Wallin

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

	https://git.savannah.gnu.org/cgit/guix.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).