Go to file
Miklos Szeredi 4db49b5c1c version 1.4
2004-10-14 12:40:35 +00:00
debian change email address 2004-07-07 19:27:46 +00:00
example change email address 2004-07-07 19:27:46 +00:00
include change email address 2004-07-07 19:27:46 +00:00
kernel fix 2004-09-14 07:13:06 +00:00
lib fix 2004-09-14 07:13:06 +00:00
patch integrated 2.6 kernel support 2004-01-07 12:16:45 +00:00
perl seems the arguments for fuse_mount() have changed slightly. 2003-07-18 13:59:44 +00:00
python Changed the '#include <fuse.h>' to '#include "fuse.h"' to allow symlinking 2003-12-22 23:26:52 +00:00
util change email address 2004-07-07 19:27:46 +00:00
.cvsignore cvsignore fixes 2002-10-07 10:27:45 +00:00
AUTHORS change email address 2004-07-07 19:27:46 +00:00
BUGS permission checking implemented 2001-12-20 15:38:05 +00:00
ChangeLog version 1.4 2004-10-14 12:40:35 +00:00
configure.in version 1.4 2004-10-14 12:40:35 +00:00
COPYING build with automake 2001-11-07 12:09:43 +00:00
COPYING.LIB version change + cleanups 2002-10-25 12:41:16 +00:00
Filesystems merged bugfixes from main brach 2004-06-22 09:14:53 +00:00
fuse.spec specfile fix 2003-06-02 06:12:27 +00:00
INSTALL build with automake 2001-11-07 12:09:43 +00:00
makeconf.sh use fuse_mount in fuse_main 2002-10-25 11:40:14 +00:00
Makefile.am *** empty log message *** 2004-01-26 16:05:34 +00:00
NEWS version 1.4 2004-10-14 12:40:35 +00:00
README release preparations 2002-01-09 13:46:10 +00:00
README-2.4 integrated 2.6 kernel support 2004-01-07 12:16:45 +00:00
README-2.6 integrated 2.6 kernel support 2004-01-07 12:16:45 +00:00
README.NFS fix 2004-01-26 11:28:44 +00:00
TODO Added statfs support to kernel, lib, examples, and perl 2002-01-07 16:32:02 +00:00

General Information
===================

FUSE (Filesystem in USErspace) is a simple interface for userspace
programs to export a virtual filesystem to the linux kernel.  FUSE
also aims to provide a secure method for non privileged users to
create and mount their own filesystem implementations.

You can download the source code releases from

  http://sourceforge.net/projects/avf

or alternatively you can use CVS to get the very latest development
version by setting the cvsroot to

  :pserver:anonymous@cvs.avf.sourceforge.net:/cvsroot/avf

and checking out the 'fuse' module.

Installation
============

See the file 'INSTALL'

IMPORTANT NOTE: If you run a system with untrusted users, installing
this program is not recommended, as it could be used to breach
security (see the 'Security' section for explanation).

How To Use
==========

FUSE is made up of three main parts:

 - A kernel filesystem module (kernel/fuse.o)

 - A userspace library (lib/libfuse.a)

 - A mount/unmount program (util/fusermount)


Here's how to create your very own virtual filesystem in five easy
steps (after installing FUSE):

  1) Edit the file example/fusexmp.c to do whatever you want...

  2) Build the fusexmp program

  3) run 'example/fusexmp /mnt/whatever -d'

  4) ls -al /mnt/whatever

  5) Be glad

If it doesn't work out, please ask!  Also see the file 'include/fuse.h' for
detailed documentation of the library interface.

You can also mount your filesystem like this:

   fusermount /mnt/whatever example/fusexmp -d

The fusermount program now accepts a couple of additional options.
Run it with the '-h' option to see a description.

Security
========

If you run 'make install', the fusermount program is installed
set-user-id to root.  This is done to allow normal users to mount
their own filesystem implementations. 

There must however be some limitations, in order to prevent Bad User from
doing nasty things.  Currently those limitations are:

  - The user can only mount on a mountpoint, for which it has write
    permission

  - The mountpoint is not a sticky directory which isn't owned by the
    user (like /tmp usually is)

  - No other user (including root) can access the contents of the mounted
    filesystem.

When linux will have private namespaces (as soon as version 2.5 comes out
hopefully) then this third condition is useless and can be gotten rid of.

Currently the first two conditions are checked by the fusermount program
before doing the mount.  This has the nice feature, that it's totally
useless.  Here's why:

   - user creates /tmp/mydir
   - user starts fusermount
   - user removes /tmp/mydir just after fusermount checked that it is OK
   - user creates symlink: ln -s / /tmp/mydir
   - fusermount actually mounts user's filesystem on '/'
   - this is bad :(

So to make this secure, the checks must be done by the kernel.  And so
there is a patch (patch/ms_permission.patch) which does exactly this.
This is against 2.4.14, but applies to some earlier kernels (not too
much earlier though), and possibly some later.