fuse-2.6.5

所属分类:Linux/Unix编程
开发工具:Unix_Linux
文件大小:465KB
下载次数:33
上传日期:2008-01-10 16:34:53
上 传 者chenonly
说明:  Linux下fuse用户文件系统的的源代码
(Linux users under the fuse file system source code)

文件列表:
fuse-2.6.5\aclocal.m4 (295634, 2007-04-29)
fuse-2.6.5\AUTHORS (60, 2006-02-03)
fuse-2.6.5\ChangeLog (76125, 2007-04-29)
fuse-2.6.5\compile (3707, 2007-04-29)
fuse-2.6.5\config.guess (44208, 2007-04-29)
fuse-2.6.5\config.sub (32448, 2007-04-29)
fuse-2.6.5\configure (406636, 2007-04-29)
fuse-2.6.5\configure.in (2385, 2007-04-29)
fuse-2.6.5\COPYING (17992, 2006-02-03)
fuse-2.6.5\COPYING.LIB (25283, 2006-02-03)
fuse-2.6.5\depcomp (15936, 2007-04-29)
fuse-2.6.5\doc\how-fuse-works (2381, 2006-12-10)
fuse-2.6.5\doc\kernel.txt (16137, 2007-01-29)
fuse-2.6.5\example\fusexmp.c (7260, 2006-12-10)
fuse-2.6.5\example\fusexmp_fh.c (8842, 2007-04-16)
fuse-2.6.5\example\hello.c (2191, 2006-12-10)
fuse-2.6.5\example\hello_ll.c (4637, 2006-12-10)
fuse-2.6.5\example\Makefile.am (296, 2006-12-10)
fuse-2.6.5\example\Makefile.in (14832, 2007-04-29)
fuse-2.6.5\example\null.c (1877, 2006-12-10)
fuse-2.6.5\FAQ (15106, 2006-12-10)
fuse-2.6.5\Filesystems (50099, 2006-12-10)
fuse-2.6.5\fuse.pc.in (242, 2006-12-10)
fuse-2.6.5\include\config.h.in (2311, 2007-04-29)
fuse-2.6.5\include\fuse.h (21893, 2007-02-01)
fuse-2.6.5\include\fuse_common.h (6386, 2006-12-10)
fuse-2.6.5\include\fuse_common_compat.h (736, 2006-09-23)
fuse-2.6.5\include\fuse_compat.h (8747, 2006-12-10)
fuse-2.6.5\include\fuse_kernel.h (7495, 2006-12-10)
fuse-2.6.5\include\fuse_lowlevel.h (39904, 2006-12-10)
fuse-2.6.5\include\fuse_lowlevel_compat.h (7570, 2006-12-10)
fuse-2.6.5\include\fuse_opt.h (7291, 2006-12-10)
fuse-2.6.5\include\Makefile.am (324, 2006-12-10)
fuse-2.6.5\include\Makefile.in (13378, 2007-04-29)
fuse-2.6.5\include\old\fuse.h (246, 2006-02-03)
fuse-2.6.5\include\ulockmgr.h (699, 2006-09-24)
fuse-2.6.5\INSTALL (9498, 2007-04-29)
fuse-2.6.5\install-sh (9233, 2007-04-29)
fuse-2.6.5\kernel\config.h.in (982, 2007-04-29)
fuse-2.6.5\kernel\configure (91819, 2007-04-29)
... ...

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/fuse or alternatively you can use CVS to get the very latest development version: cvs -d :pserver:anonymous@fuse.cvs.sourceforge.net:/cvsroot/fuse co fuse Dependencies ============ Linux kernel version 2.6.X where X >= 9. Alternatively a kernel module from FUSE release 2.5.* can be used with this release, which supports kernels >= 2.4.21. Installation ============ ./configure make make install modprobe fuse You may also need to add '/usr/local/lib' to '/etc/ld.so.conf' and/or run ldconfig. Linux kernels 2.6.14 or later contain FUSE support out of the box. If FUSE support is detected, the kernel module in this package will not be compiled. It is possible to override this with the '--enable-kernel-module' configure option. If './configure' cannot find the kernel source or it says the kernel source should be prepared, you may either try ./configure --disable-kernel-module or if your kernel does not already contain FUSE support, do the following: - Extract the kernel source to some directory - Copy the running kernel's config (usually found in /boot/config-X.Y.Z) to .config at the top of the source tree - Run 'make prepare' For more details see the file 'INSTALL' How To Use ========== FUSE is made up of three main parts: - A kernel filesystem module - A userspace library - A mount/unmount program 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/fuse -d' 4) ls -al /mnt/fuse 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. 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. Configuration ============= Some options regarding mount policy can be set in the file '/etc/fuse.conf' Currently these options are: mount_max = NNN Set the maximum number of FUSE mounts allowed to non-root users. The default is 1000. user_allow_other Allow non-root users to specify the 'allow_other' or 'allow_root' mount options. Mount options ============= Most of the generic mount options described in 'man mount' are supported (ro, rw, suid, nosuid, dev, nodev, exec, noexec, atime, noatime, sync async, dirsync). Filesystems are mounted with '-onodev,nosuid' by default, which can only be overridden by a privileged user. These are FUSE specific mount options that can be specified for all filesystems: default_permissions By default FUSE doesn't check file access permissions, the filesystem is free to implement it's access policy or leave it to the underlying file access mechanism (e.g. in case of network filesystems). This option enables permission checking, restricting access based on file mode. This is option is usually useful together with the 'allow_other' mount option. allow_other This option overrides the security measure restricting file access to the user mounting the filesystem. So all users (including root) can access the files. This option is by default only allowed to root, but this restriction can be removed with a configuration option described in the previous section. allow_root This option is similar to 'allow_other' but file access is limited to the user mounting the filesystem and root. This option and 'allow_other' are mutually exclusive. kernel_cache This option disables flushing the cache of the file contents on every open(). This should only be enabled on filesystems, where the file data is never changed externally (not through the mounted FUSE filesystem). Thus it is not suitable for network filesystems and other "intermediate" filesystems. NOTE: if this option is not specified (and neither 'direct_io') data is still cached after the open(), so a read() system call will not always initiate a read operation. large_read Issue large read requests. This can improve performance for some filesystems, but can also degrade performance. This option is only useful on 2.4.X kernels, as on 2.6 kernels requests size is automatically determined for optimum performance. direct_io This option disables the use of page cache (file content cache) in the kernel for this filesystem. This has several affects: - Each read() or write() system call will initiate one or more read or write operations, data will not be cached in the kernel. - The return value of the read() and write() system calls will correspond to the return values of the read and write operations. This is useful for example if the file size is not known in advance (before reading it). max_read=N With this option the maximum size of read operations can be set. The default is infinite. Note that the size of read requests is limited anyway to 32 pages (which is 128kbyte on i386). hard_remove The default behavior is that if an open file is deleted, the file is renamed to a hidden file (.fuse_hiddenXXX), and only removed when the file is finally released. This relieves the filesystem implementation of having to deal with this problem. This option disables the hiding behavior, and files are removed immediately in an unlink operation (or in a rename operation which overwrites an existing file). It is recommended that you not use the hard_remove option. When hard_remove is set, the following libc functions fail on unlinked files (returning errno of ENOENT): - read() - write() - fsync() - close() - f*xattr() - ftruncate() - fstat() - fchmod() - fchown() debug Turns on debug information printing by the library. fsname=NAME Sets the filesystem name. The default is the program name. use_ino Honor the 'st_ino' field in getattr() and fill_dir(). This value is used to fill in the 'st_ino' field in the stat()/lstat()/fstat() functions and the 'd_ino' field in the readdir() function. The filesystem does not have to guarantee uniqueness, however some applications rely on this value being unique for the whole filesystem. readdir_ino If 'use_ino' option is not given, still try to fill in the 'd_ino' field in readdir(). If the name was previously looked up, and is still in the cache, the inode number found there will be used. Otherwise it will be set to '-1'. If 'use_ino' option is given, this option is ignored. nonempty Allows mounts over a non-empty file or directory. By default these mounts are rejected (from version 2.3.1) to prevent accidental covering up of data, which could for example prevent automatic backup. umask=M Override the permission bits in 'st_mode' set by the filesystem. The resulting permission bits are the ones missing from the given umask value. The value is given in octal representation. uid=N Override the 'st_uid' field set by the filesystem. gid=N Override the 'st_gid' field set by the filesystem. blkdev Mount a filesystem backed by a block device. This is a privileged option. The device must be specified with the 'fsname=NAME' option. Reporting bugs ============== Please send bug reports to the mailing list. The list is open, you need not be subscribed to post.

近期下载者

相关文件


收藏者