libfuse: add flags to ->rename()
[fuse.git] / ChangeLog
blobbde75cced90c037f1931be92b7d2f9ed75cfdc6c
1 2014-07-15  Miklos Szeredi <miklos@szeredi.hu>
3         * libfuse: document deadlock avoidance for
4         fuse_notify_inval_entry() and fuse_notify_delete()
6         * fusermount, libfuse: send value as unsigned in "user_id=" and
7         "group_id=" options.  Uids/gids larger than 2147483647 would
8         result in EINVAL when mounting the filesystem.  This also needs a
9         fix in the kernel.
11         * libfuse: add "time_gran" option.  This allows the filesystem to
12         specify the time granularity it supports when the kernel is
13         responsible for updating times ("writeback_cache" option).
15         * libfuse: allow setting ctime in ->setattr()
17         * libfuse: add flags to ->rename().  See renameat2() system call
18         in linux-3.15 and later kernels.
20 2014-03-26  Miklos Szeredi <miklos@szeredi.hu>
22         * Initilaize stat buffer passed to ->getattr() and ->fgetattr() to
23         zero in all cases.  Reported by Daniel Iwan
25 2014-03-05  Miklos Szeredi <miklos@szeredi.hu>
27         * libfuse: implement readdirplus for high-level API.  Reuse the
28         old "readdir" callback, but add a flags argument, that has
29         FUSE_READDIR_PLUS in case this is a "plus" version.  Filesystems
30         can safely ignore this flag, but if they want they can add
31         optimizations based on it: i.e. only retrieve the full attributes
32         in PLUS mode.  The filler function is also given a flags argument
33         and the filesystem can set FUSE_FILL_DIR_PLUS if all the
34         attributes in "stat" are valid.  Original patch by Eric Wong
36 2014-02-21  Miklos Szeredi <miklos@szeredi.hu>
38         * libfuse: added fuse_lo-plus.c to the examples
40 2014-02-04  Miklos Szeredi <miklos@szeredi.hu>
42         * libfuse: Don't use constructor functions for loading modules.
43         Original patch by Fabrice Bauzac
45 2014-01-29  Miklos Szeredi <miklos@szeredi.hu>
47         * libfuse: Add "async_dio" and "writeback_cache" options.
48         Asynchronous direct I/O is supported by linux kernels 3.13 and
49         later, writeback caching is supported by 3.14 and later.
51 2013-08-26  Miklos Szeredi <miklos@szeredi.hu>
53         * libfuse: Add missing includes.  This allows compiling fuse with
54         musl.  Patch by Daniel Thau
56 2013-07-26  Miklos Szeredi <miklos@szeredi.hu>
58         * Print help on stdout instead of stderr
60 2013-07-25  Miklos Szeredi <miklos@szeredi.hu>
62         * libfuse: fuse -> fuse3.  Allow 2.X and 3.X to coexist.  Includes
63         are now stored under /usr/include/fuse3 and library is named
64         libfuse3.*.  Invoke pkg-config with "fuse3" as the first argument
65         to build with version 3 of the library.
67         * ulockmgr: strip ulockmgr support from this source package and
68         distribute it separately.  It is not needed for the building of
69         libfuse, only fusexmp_fh.  Check ulockmgr library in ./configure
70         and if not disable remote-lock suport in fusexmp_fh.
72 2013-07-24  Miklos Szeredi <miklos@szeredi.hu>
74         * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
75         AC_SYS_LARGEFILE to your configure.ac instead.
77 2013-06-21  Miklos Szeredi <miklos@szeredi.hu>
79         * libfuse: set FD_CLOEXEC also when receiving device fd from
80         fusermount
82 2013-06-20  Miklos Szeredi <miklos@szeredi.hu>
84         * libfuse: fix multiple close of device fd.  Reported by Dan
85         Greenfield
87 2013-03-19  Miklos Szeredi <miklos@szeredi.hu>
89         * libfuse: fix thread cancel race.  Exiting a worker my race with
90         cancelling that same worker.  This caused a segmenation
91         fault. Reported and tested by Anatol Pomozov
93 2013-02-20  Miklos Szeredi <miklos@szeredi.hu>
95         * libfuse: change the type of fuse_ino_t from 'unsigned long' to
96         'uint64_t'
98         * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
99         Patch by Richard W.M. Jones
101         * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
102         Patch by Richard W.M. Jones
104 2013-02-19  Miklos Szeredi <miklos@szeredi.hu>
106         * fuse_daemonize(): chdir to "/" even if not running in the
107         background for consistency.  Reported by Vladimir Rutsky
109 2013-02-18  Miklos Szeredi <miklos@szeredi.hu>
111         * fuse_opt_parse(): when storing a newly allocated string for
112         format "%s", free the previous value stored at that location.
113         Reported by Marco Schuster
115 2013-02-07  Miklos Szeredi <miklos@szeredi.hu>
117         * libfuse: add readdirplus support in fuse_lowlevel_ops.  Patch by
118         Feng Shuo
120         * libfuse: add poll_events to fuse_file_info.  Patch by Enke Chen
122         * libfuse: fix fs cleanup.  Reported by Eric Wong
124         * libfuse: pass security context options to kernel.  Patch by
125         Dalvik Khertel
127         * libfuse: remove deprecated features:
128         - fuse_is_lib_option()
129         - fuse_invalidate()
130         - fuse_set_getcontext_func()
131         - fuse_loop_mt_proc()
132         - fuse_read_cmd()
133         - fuse_process_cmd()
134         - fuse_setup()
135         - fuse_teardown()
136         - fuse_exited()
137         - fuse_lowlevel_is_lib_option()
138         - fuse_operations.getdir()
139         - fuse_operations.utime()
140         - fuse_operations.utime_omit_ok
142 2013-02-06  Miklos Szeredi <miklos@szeredi.hu>
144         * libfuse: set close-on-exec flag on pipe file descriptors.  Patch
145         by Eric Wong
147         * libfuse: add missing INIT flags
149 2013-02-05  Miklos Szeredi <miklos@szeredi.hu>
151         * libfuse: fix fuse_get_context() in non fuse threads.  Reported
152         by Michael Berlin
154 2013-02-04  Miklos Szeredi <miklos@szeredi.hu>
156         * libfuse: fix crash in unlock_path().  Patch by Ratna Manoj
158         * libfuse: fix the 'remember' option.  The lru list was not
159         initialized for the "/" path.  This resulted in remove_node_lru()
160         crashing on LOOKUP-DOTDOT.  Patch by Madan Valluri
162         * libfuse: configure: detect new util-linux
164         * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
165         Patch by Anatol Pomozov
167         * libfuse: rename ./configure.in to ./configure.ac.  Patch by
168         Anatol Pomozov
170 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
172         * Released 2.9.2
174 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
176         * Fix deadlock in libfuse.  Running "svn update" on a fuse
177         filesystem could deadlock because of a bug in the way the paths
178         are locked.  Reported by Kazuaki Anami
180 2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
182         * Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee
184 2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
186         * Not unhashing the name in forget (commit on 2011-12-09) broke
187         the forget logic in a subtle way, resulting in "fuse internal
188         error: node NNN not found" and causing the filesystem daemon to
189         abort.  Fix by incrementing the node refcount if nlookup goes from
190         zero to one.  Reported by Kyle Lippincott
192 2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
194         * Fix linking against GNU libiconv.  Patch by Natanael Copa
196 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
198         * Start of 3.0 series.  This is going to be a new major version of
199         the library breaking backward compatibility on the binary level as
200         well as the source level.
202 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
204         * Released 2.9.1
206 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
208         * Fix crash caused by freeing a stack address.  Reported by Itay
209         Perl
211 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
213         * Fix install of mount.fuse from out-of-tree build.  Patch by
214         Olivier Blin
216         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
218 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
220         * Add fallocate operation.  Only works on linux kernels 3.5 or
221         later.  Patch by Anatol Pomozov
223 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
225         * Linking to a library that uses threads requires the application
226         to be linked with -pthreads otherwise some pthread functions will
227         be linked to stubs in glibc.  So move -pthread from Libs.private
228         to Libs in fuse.pc.  Reported by Werner Fink
230         * Fix the compile command in the examples. Reported by Luciano
231         Dalle Ore
233 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
235         * Released 2.9.0
237 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
239         * Add missing fuse_fs_flock to fuse_versionscript
241 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
243         * Check protocol version before sending notifications and return
244         -ENOSYS if a particular notification is not supported.
246         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
247         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
248         and UTIME_NOW values as specified in utimensat(2).
250 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
252         * Interpret octal escape codes in options.  Requested by Jan
253         Engelhardt
255 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
257         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
258         Lifted from the Debian package.  The man pages were written by
259         Daniel Baumann and Bastien Roucaries
261 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
263         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
265 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
267         * Remove unnecessary mutex unlock at the end of multithreaded
268         event loop.
270 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
272         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
274         * Don't unhash name in FORGET.  This resulted in ENOENT being
275         returned for unlinked but still open files if the kernel sent a
276         FORGET request for the parent directory.
278         * Free request in fuse_reply_data().
280 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
282         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
283         Dreyfus
285         * Check for availability of utimensat() function.  Patch by
286         Emmanuel Dreyfus
288 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
290         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
291         file or directory is deleted.  Patch by John Muir
293 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
295         * Update retrieve_reply() method
297 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
299         * Low level API: lock argument of fuse_reply_lock should have a
300         'const' qualifier.  Reported by Shachar Sharon
302         * Add support for ioctl on directories.  Reported by Antonio SJ
303         Musumeci
305 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
307         * Reply to request with ENOMEM in case of failure to allocate
308         request structure.  Otherwise the task issuing the request will
309         just freeze up until the filesystem daemon is killed.  Reported by
310         Stephan Kulow
312 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
314         * Replace daemon() function with fork().  Patch by Anatol Pomozov
316 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
318         * If configured with --disable-mtab then don't call mount(8) from
319         libfuse to update the mtab.  Reported by: James Sierp
321 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
323         * Use LRU list for cleaning up the cache if the "remember=T"
324         option was given.  Patch by therealneworld@gmail.com
326 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
328         * Add ->flock() operation to low and high level interfaces.  This
329         fixes problems with emulating flock() with POSIX locking.
330         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
331         filesystems don't need to implement this, as the kernel takes care
332         of file locking.  The only reason to implement locking operations
333         is for network filesystems which want file locking to work between
334         clients.
336 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
338         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
339         not follow symlinks as other layers do that already.
341 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
343         * Add "remember" option.  This works similar to "noforget" except
344         that eventually the node will be allowed to expire from the cache.
345         Patch by therealneworld@gmail.com
347 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
349         * Check if splice/vmsplice are supported
351 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
353         * Remove -lrt -ldl from fuse.pc for dynamic linking since
354         libfuse.so is already linked with these libraries.  Reported by:
355         Nikolaus Rath
357 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
359         * Cleaner build output.  Patch by Reuben Hawkins
361 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
363         * Disable splice by default, add "splice_read", "splice_write" and
364         "splice_move" options.  Keep the "no_splice_*" variants, which can
365         disable splice even if the filesystem explicitly enables it.
367 2011-04-15  Max Krasnyansky <maxk@kernel.org>
368         * Added support for "auto_unmount" option which unmounts the
369         filesystem automatically on process exit (or crash).
371 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
373         * Patches by Laszlo Papp fixing various issues found by the
374         Coverity checker
376 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
378         * In case of failure to add to /etc/mtab don't umount.  Reported
379         by Marc Deslauriers
381 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
383         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
384         worker threads.  The pause() was added in 2.2.1 to prevent
385         segfault on pthread_cancel() on an exited, detached thread.  Now
386         worker threads are not detached and pthread_cancel() should work
387         fine even after the thread exited.  Reported by Boris Protopopov
389 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
391         * fusermount: chdir to / before performing mount/umount
393         * fusermount: only allow mount and umount if util-linux supports
394         --no-canonicalize
396 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
398         * Highlevel lib: allow hash tables to shrink
400         * Highlevel lib: add slab allocation for node cache.  This will
401         allow the memory used by the filesystem to grow and shrink
402         depending on how many inodes are currently cached.
404 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
406         * Highlevel lib: use dynamically resized hash table for looking up
407         by name and node ID.
409 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
411         * Allow batching of forget requests.  This allows forget requests
412         to be processed faster and doesn't require a modification to fuse
413         filesystems.  Reported by Terje Malmedal
415         * Add ->forget_multi() operation to the lowlevel API.  The
416         filesystem may implement this to process multiple forget requests
417         in one call
419         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
420         for 32bit vs. 64bit userspace
422 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
424         * Add new write_buf() method to the highlevel API.  Similarly to
425         the lowlevel write_buf() method, this allows implementing zero
426         copy writes.
428         * Add a new read_buf() method to the highlevel API.  This allows
429         returning a generic buffer from the read method, which in turn
430         allows zero copy reads.
432         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
433         methods.  Leave the ->read() and ->write() implementations for
434         reference, even though they are not necessary.
436 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
438         * Fix check for read-only fs in mtab update
440         * Open /dev/null for write instead of read for redirecting stdout
441         and stderr
443         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
444         version 2.18 or later), and umount(2) supports the
445         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
446         "fusermount -u" will call the umount(2) system call and use
447         "umount --fake ..." to update /etc/mtab
449         * Added --disable-legacy-umount option to configure.  This
450         disables the runtime checking of umount(8) version.  When built
451         with this option then "fusermount -u" will fail if umount(8)
452         doesn't support the --fake and --no-canonicalize options.
454         * Fix fuse_buf_copy() if already at the end of the buffers
456         * Add new ->write_buf() method to low level interface.  This
457         allows passig a generic buffer, either containing a memory buffer
458         or a file descriptor.  This allows implementing zero copy writes.
460         * Add fuse_session_receive_buf() and fuse_session_process_buf()
461         which may be used in event loop implementations to replace
462         fuse_chan_recv() and fuse_session_process() respectively.
464         * Remove unnecessary restoring of current working directory in
465         "fusermount -u"
467         * Add ctx->pid to debug output
469         * Fix st_nlink value in high level lib if file is unlinked but
470         still open
472         * libfuse: add store request.  Request data to be stored in the
473         kernel buffers for a given inode.
475         * libfuse: add retrieve request.  Retrieve data stored in the
476         kernel buffers for a given inode.
478 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
480         * Use LTLIBICONV when linking libfuse.  This fixes building against
481         uclibc + libiconv.  Patch by Natanael Copa
483 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
485         * Add missing argument check in ulockmgr.c to prevent calling
486         ulockmgr_server with illegal arguments. This would cause an ever
487         growing list of ulockmgr_server processes with an endless list of
488         open files which finally exceeds the open file handle limit.
489         Patch by Markus Ammer
491 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
493         * Fix ambiguous symbol version for fuse_chan_new.
494         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
495         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
497 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
499         * Fix option escaping for fusermount.  If the "fsname=" option
500         contained a comma then the option parser in fusermount was
501         confused (Novell bugzilla #641480).  Fix by escaping commas when
502         passing them over to fusermount.  Reported by Jan Engelhardt
504 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
506         * Add NetBSD support.  Patch from Emmanuel Dreyfus
508 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
510         * libfuse: add buffer interface.  Add a generic buffer interface
511         for use with I/O.  Buffer vectors are supplied and each buffer in
512         the vector may be a memory pointer or a file descriptor.
514         * The fuse_reply_fd() interface is converted to using buffers.
516 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
518         * Make the number of max background requests and congestion
519         threshold tunable.  New options are "max_background" and
520         "congestion_threshold".  Only effective on linux kernel versions
521         2.6.32 or greater.  Patch by Csaba Henk
523 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
525         * Add fuse_reply_fd() reply function to the low level interface.
526         On linux version 2.6.35 or greater this will use splice() to move
527         data directly from a file descriptor to the fuse device without
528         needing to go though a userspace buffer.  With the
529         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
530         directly into the filesystem's cache.  On earlier kernels it will
531         fall back to an intermediate buffer.  The options
532         "no_splice_write" and "no_splice_move" can be used to disable
533         splicing and moving respectively.
535 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
537         * Fix out-of-source build.  Patch by Jörg Faschingbauer
539         * Add a "nopath" option and flag, indicating that path argument
540         need not be calculated for the following operations: read, write,
541         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
542         fgetattr, lock, ioctl and poll.
544 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
546         * Remove "chmod root" from install of fusermount.  Reported by
547         Lucas C. Villa Real
549 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
551         * Released 2.8.4
553 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
555         * Fix checking for symlinks in umount from /tmp.  Reported by Al
556         Viro
558         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
560 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
562         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
563         Bruylants
565 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
567         * Fix stack alignment for clone()
569 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
571         * Released 2.8.3
573 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
575         * Using "--no-canonicalize" with umount(8) conflicts with the race
576         fix, sinceit assumes the supplied path is absolute, while the race
577         fix relies on the path being relative to the current directory.
578         Reported by Tom Rindborg
580 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
582         * Released 2.8.2
584 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
586         * Fix race if two "fusermount -u" instances are run in parallel.
587         Reported by Dan Rosenberg
589         * Make sure that the path to be unmounted doesn't refer to a
590         symlink
592 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
594         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
596 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
598         * Use '--no-canonicalize' option of mount(8) (available in
599         util-linux-ng version 2.17 or greater) to avoid calling
600         readling(2) on the newly mounted filesystem before the mount
601         procedure is finished.  This has caused a deadlock if "audit" was
602         enabled in the kernel.  Also use '--no-canonicalize' for umount to
603         avoid touching the mounted filesystem.
605 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
607         * Released 2.8.1
609 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
611         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
613 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
615         * Released 2.8.0
617 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
619         * Add missing fuse_session_data to versionscript
621         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
623 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
625         * Clarify how the protocol version should be negotiated between
626         kernel and userspace.  Notably libfuse didn't correctly handle the
627         case when the supported major versions didn't match
629         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
631 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
633         * The context is extended with a 'umask' field.  The umask is sent
634         for mknod, mkdir and create requests by linux kernel version
635         2.6.31 or later, otherwise the umask is set to zero.  Also
636         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
637         supports this feature, then this flag will be set in conn->capable
638         in the ->init() method.  If the filesystem sets this flag in in
639         conn->want, then the create modes will not be masked.
641         * Add low level interfaces for lookup cache and attribute
642         invalidation.  This feature is available in linux kernels 2.6.31
643         or later.  Patch by John Muir
645         * Kernel interface version is now 7.12
647         * fusermount: Do not silently ignore command line arguments.
648         Patch by Sebastian Harl
650 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
652         * Released 2.8.0-pre3
654 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
656         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
657         level lib) functions to query the supplementary group IDs for the
658         current request.  Currently this is implemented on Linux by
659         reading from the /proc filesystem.
661 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
663         * Add "noforget" option to high level lib to prevent ESTALE errors
664         on NFS exported filesystems.  This result in paths being cached
665         forever, resulting in ever growing memory usage.  Use with care.
667         * Add "no_remote_lock" option to disable remote file locking even
668         if the filesystem implements it.  With this option locking
669         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
670         will ignore remotely locked files.
672         * CUSE patches from Tejun Heo:
674         * Unrestricted ioctl support left some debris.  Clean them up:
675           o No reason to pass around pointer to flags.  Pass flags directly.
676           o Clean up comment and prototype parameter names.
677           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
678           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
680         * Add fuse_reply_ioctl_iov()
682         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
683         and make send_reply_iov() and fuse_setup_common() global (also in
684         fuse_i.h).  These will be used by CUSE support.
686         * Restructure fuse_ll_process()
688         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
689         operations as dir operations don't make sense for CUSE where one
690         instance implements single character device.
692         CUSE support comes with its own cuse_lowevel_ops and related
693         initialization and helper functions.  Except for initialization, it
694         usage is basically identical to FUSE.
696         This patch also adds example/cusexmp.c which can create a character
697         device with name and device number specified on command line.  The
698         created device itself is pretty boring.  It's a bit bucket supporting
699         read, write and access via ioctl.
701 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
703         * Add missing fuse_reply_bmap to versionscript.  Debian
704         Bug#531329.  Reported by Goswin Brederlow
706 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
708         * Don't call forget_node() if the lookup was negative and write()
709         for the reply returned ENOENT.  Reported by John Haxby
711 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
713         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
715 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
717         * Fix missing newlines in some printfs
719         * Fix 'make install-strip'.  Reported by Dominick Layfield
721 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
723         * Released 2.8.0-pre2
725 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
727         * Implement poll support.  Patch by Tejun Heo
729         * Add missing setattr flags to <fuse_lowlevel.h>.
731         * Only pass valid flags to ->setattr().
733 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
735         * Implement ioctl support.  On high level interface only
736         "restricted" ioctls are supported (which are defined with the
737         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
738         will only be allwed to CUSE (Character Device in Userspace)
739         servers.  Patch by Tejun Heo
741 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
743         * If open sets fi->nonseekable, libfuse will tell the kernel that
744         the file is not seekable.  Patch by Tejun Heo
746 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
748         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
749         interrupt handling function.  Reported by Tero Marttila
751 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
753         * Allow commas in options to be escaped with a backslash
755         * Add new function: fuse_opt_add_opt_escaped()
757         * Add missing fuse_reply_bmap() to the version script
759 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
761         * Pass current file flags to read and write operations
763 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
765         * Clean up debug output in highlevel lib
767 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
769         * Released 2.8.0-pre1
771 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
773         * Fix handling of (no)suid and (no)dev options if filesystem is
774         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
776         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
777         read-only filesystem.  This works around issues with certain mount
778         implementations.  Reported by Szabolcs Szakacsits.
780 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
782         * Remove fuse kernel module sources.  Linux 2.6.27 will support
783         NFS exporting.
785 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
787         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
788         Szakacsits
790         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
791         Szabolcs Szakacsits
793 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
795         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
797 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
799         * Don't allow bigger than 4kB writes by default on 2.6.26 and
800         later kernels, so that filesystems not expecting this are not
801         broken on a kernel upgrade.  Provide a 'big_writes' mount option
802         to enable this feature.  In future API revisions this may become
803         the default.
805 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
807         * Update warning message for missing newline at end of fuse.conf
809         * Update debug message for successful operation to not include the
810         string "error:"
812 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
814         * Update error message for missing mountpoint parameter.  Reported
815         by Allen Pulsifer
817 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
819         * Print library version information to debug output
821         * Highlevel lib: don't limit paths to 4095 characters
823 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
825         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
827 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
829         * Fix missing pthread_mutex_destroy in error path of
830         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
832 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
834         * Add queuing on contention to per-node lock algorithm, to avoid
835         starvation.
837         * Only enable cancelation when reading a request, otherwise
838         cancellation could happen with a mutex held, which could hang the
839         process on umount
841 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
843         * Block SIGCHLD when executing mount and umount
845         * fusexmp_fh: avoid unnecessary seeking in readdir
847         * Update kernel interface to 7.9:
849         * Support receiving file handle from kernel in GETATTR request
851         * Allow operations with a NULL path argument, if the filesystem
852         supports it
854         * Add support atomic open(O_TRUNC)
856         * Support the st_blksize field in struct stat
858         * If the "FUSE_THREAD_STACK" environment is set, initialize the
859         stack size of threads by this value.  Patch by Florin Malita
861         * Add per-node locking, instead of a global tree lock to protect
862         the path from changing during operations.  Original patch by
863         Rodrigo Castro
865 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
867         * lib/mount_bsd.c:
868         - string formatting fixes
869         - exit if mounting has failed
870           (in FreeBSD a mount failure is not critical per se, as the daemon
871           still could be mounted externally, but waiting for such an event
872           is more confusing than fruitful)
873         - ditch the kvm(8) stuff and simply use forced unmount which just
874           won't block
875         - prettify option specifications
876         - add "-onosync_unmount" kernel option
878 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
880         * lib/mount_bsd.c:
881         - refine device closing in a race-free way
882         - add support for "-osubtype" on FreeBSD
884         * makeconf.sh: make it work under FreeBSD
886 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
888         * lib/mount_bsd.c: close device before unmount
889         (cf. lib/mount.c rev. 1.43) and fix some warnings 
891 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
893         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
895 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
897         * Released 2.7.2
899 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
901         * Fix kernel module compile for 2.6.24
903         * Invalidate attributes of parent directory after create(), since
904         the modification time changes.  Invalidate attributes on rename,
905         since some filesystems may update st_ctime.  Reported by Szabolcs
906         Szakacsits
908         * Fix NFS exporting to handle 64bit node IDs
910         * Disable old symbol versions if __UCLIBC__ is defined.  If a
911         symbol in a library has multiple versions, the runtime linker in
912         uClibc seems to randomly choose between them.
914         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
915         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
917         * Close fuse device file descriptor before calling umount(),
918         preventing a deadlock when umount is synchronous.  Reported by
919         Szabolcs Szakacsits
921 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
923         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
924         symlink.  This bug was introduced in 2.7.1 by "Don't call
925         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
927 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
929         * Released 2.7.1
931 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
933         * Clarify licence version to be "LGPLv2" for the library
935         * kernel fixes:
937         * After mount set nlink attribute for the root inode to 1
939         * Fix wake up of task waiting for a reserved request
941         * Fix allowing setattr, listxattr and statfs for other users
943 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
945         * Add missing context initialization in fuse_fs_chmod().  Bug
946         found by "iohead"
948         * Fix kernel module compilation for 2.6.23.  Based on patch by
949         Marian Marinov
951 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
953         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
955 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
957         * Work around hotplug issue, that it calls filesystem with file
958         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
960 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
962         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
963         Tomas M
965         * Also don't touch /etc/mtab if it is within the mounted
966         filesystem.  Suggested by Jeffrey Law
968 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
970         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
971         C. Villa Real
973 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
975         * Released 2.7.0
977 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
979         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
980         filesystem is only invoking fuse to print a help message, or
981         version.  Fixes RedHat bugzilla #217343
983 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
985         * lib: fix locking when loading a filesystem module
987 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
989         * Add fs subtype support to mount.fuse
991 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
993         * Add fs subtype support to libfuse and fusermount
995 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
997         * kernel: sync with mainline (2.6.22)
999 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
1001         * Send debug output to stderr instead of stdout.  Patch by Jan
1002         Engelhardt
1004 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
1006         * libulockmgr: Work around a kernel bug in recv(), causing it to
1007         sometimes return zero even if data was available on the socket.
1009 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
1011         * lib: optimization: store parent pointer in node instead of
1012         parent id
1014 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
1016         * lib: don't create new thread for each FORGET request.  FORGET
1017         messages sometimes caused so many threads to be created, that
1018         process virtual memory space ran out.  Reported by Chris AtLee
1020 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
1022         * lib: fix memory leak on thread creation failure in multithreaded
1023         event loop.  Found by Chris AtLee
1025 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
1027         * lowlevel lib: add fuse_reply_iov function, which is similar to
1028         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
1029         Willcocks
1031 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
1033         * Fix Oops or error if a regular file is created with mknod(2) on
1034         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
1035         J. Cameijo Cerdeira for the report
1037 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
1039         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1040         Error reported by Csaba Henk, fix by Miklos Szeredi
1042         * libfuse: fix unlock in flush
1044         * libfuse: do unlocking on RELEASE+FLUSH
1046 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
1048         * Released 2.7.0-rc1
1050 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
1052         * kernel: sync with mainline:
1054         * Use invalidate_mapping_pages() if available
1056         * Fix BUG when invalid file type is supplied in mount. Patch by
1057         Timo Savola
1059 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
1061         * libfuse: call umount(8) directly instead of fusermount if
1062         possible
1064         * Clean up init script, make it LSB compliant
1066 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
1068         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1069         up the main thread on umount.  This is more elegant, and works
1070         even if signals are blocked.
1072 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
1074         * Improve mounting support in libfuse:
1075          - check non-empty mountpoint
1076          - only fall back to fusermount when necessary
1078 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
1080         * Don't chdir to "/" in foreground mode, it causes more trouble
1081         than it's worth
1083 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
1085         * Replace utils/mount.fuse "sh" script with a "C" program
1087 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
1089         * Add -lulockmgr to compilation comment in fusexmp_fh.c
1091 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
1093         * Check for iconv.  Patch by Csaba Henk
1095         * Add direct umounting
1097         * Use "fusectl" as the device for the fusectl filesystem.  Debian
1098         Bug#417945.  Reported by Laurent Bonnaud
1100 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
1102         * Fix some FreeBSD related macros.
1104 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
1106         * Add support for direct mounting by libfuse.  Fall back on
1107         calling fusermount if it doesn't work
1109 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
1111         * Released 2.7.0-pre1
1113 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
1115         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
1116         Bruno
1118         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
1119         by Thomas Weinbrenner
1121 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
1123         * Fix detection of installed fuse in init script.  Reported and
1124         fix suggested by Davide Canova
1126 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
1128         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1129         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
1131 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
1133         * Compile fuseblk for kernels which don't have an option to turn
1134         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
1135         Szabolcs
1137 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
1139         * Add filesystem stacking support to high level API.  Filesystem
1140         modules can be built into libfuse or loaded from shared object
1141         (.so) files
1143         * Add 'subdir' and 'iconv' built in modules
1145         * lib/fuse.c: Fix locking for the reply code in create and open
1147 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
1149         * kernel: make it compile on "strange" kernels which have emulated
1150         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
1151         Mateja
1153 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
1155         * kernel: fix BUG in control filesystem if it is umounted and
1156         mounted again, while some fuse filesystems are present.
1157         Bugreport from Florent Mertens
1159         * kernel: sync with mainline, support 2.6.20
1161 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
1163         * lib/Makefile.am: actually link libfuse against libfuse_libs
1165 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
1167         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
1168         Ian Abbott
1170 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
1172         * Fix abort in fuse_new() compatibility API for opts == NULL case.
1173         Novell bugzilla #233870.  Patch from Takashi Iwai.
1175 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
1177         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
1179 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
1181         * Fix unaligned access in file desctriptor passing in libfuse,
1182         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
1183         tested by Sebastian Fontius
1185 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
1187         * kernel: don't keep unreferenced inodes in the icache.
1189 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
1191         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
1192         Szabolcs
1194         * lib: Fix use after free in fuse_flush().  Reported by Ron
1195         Lindman
1197 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1199         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1200         for the filesystem
1202         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1203         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1204         the ugly code dealing with mtab, as well as a possible race
1205         between fusermount and mount trying to modify /etc/mtab at the
1206         same time
1208         * Fix "buffer size too small: 4" warning for users of the
1209         fuse_loop_mt_proc() function.
1211 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1213         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1214         Harshavardhana
1216         * Add extra warning options, and fix resulting warnings
1218         * Really fix fuse_teardown problem
1220 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1222         * Add -lrt to fuse.pc (if needed) to fix static linking against
1223         libfuse.  Reported by Szakacsits Szabolcs
1225 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1227         * Released 2.6.1
1229 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1231         * Fix API version 21 and 22 compatibility for fuse_teardown.
1232         Reported by Bgs
1234 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1236         * fusermount: Print a more helpful message in case the kernel
1237         doesn't support the 'fuseblk' filesystem type.  This has been
1238         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1240         * kernel: fix build problem for "make -C ...".  Reported by
1241         Stephen Bryant
1243 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1245         * Fix bug in certain error paths of lookup routines.  The request
1246         object was reused for sending FORGET, which is illegal.  This bug
1247         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1248         silently corrupt memory in earlier versions.  Report and test
1249         program by Russ Cox
1251 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1253         * Print an error if an incompatible kernel interface version is
1254         detected in INIT.  This will only show if filesystem is started
1255         with -d or -f
1257         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1258         fuse_setup_common().  Reported by Szakacsits Szabolcs
1260 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1262         * Fix recursive locking in fuse_create().  Thanks to Takuya
1263         Ishibashi for the bug report
1265 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1267         * Fix automake problem.  Patch from Nix
1269 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1271         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1272         always available on embedded systems.  Patch from Paul Smith
1274         * Fix util/Makefile.am, so that failure to run update-rc.d or
1275         device creation doesn't cause make to fail.  Reported by Paul
1276         Smith
1278 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1280         * Released 2.6.0
1282 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1284         * fusermount: don't try to create a lock file if /etc/mtab is a
1285         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1286         #393693)
1288 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1290         * Minor changes, sync with mainline tree
1292 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1294         * Released 2.6.0-rc3
1296 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1298         * kernel: cleanups
1300 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1302         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1303         Report from David Shaw
1305         * lib: Fix lost error on renaming a file. Report from David Shaw
1307         * lib: Fix lost error on hiding open files (renaming to
1308         .fuse_hiddenXXXX)
1310         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1311         activity.  The cause of the bug was that some calls to
1312         i_size_write() were not protected by a lock, and hence
1313         i_size_seqcount could become corrupted.  This caused subsequent
1314         calls to i_size_read() to spin forever.  This is a long standing
1315         bug was probably introduced in version 2.2, and thought to be
1316         related to NFS exporting (it's not).  It was reported by various
1317         people, but Dana Henriksen has finally helped me to track it down,
1318         so big thanks to him
1320         * kernel: Protect against truncation of a swapfile
1322 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1324         * kernel: Check for signature of super_operations->umount_begin().
1325         Ubuntu kernel 2.6.17 seems to use the new signature found in
1326         2.6.18.  Thanks to Florent Mertens for the report
1328 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1330         * Make sure inode numers wrap around at 2^32.  This is needed on
1331         dual 64bit/32bit architectures, because 32bit applications using
1332         the non-largefile interface would otherwise break (EOVERFLOW error
1333         would be returned by the stat() system call family)
1335         * ulockmgr: handle the case, when a locking operation fails
1336         because no more file desctriptors are available in
1337         ulockmgr_server.  Also work around a Linux kernel bug (known to
1338         exist for all Linux kernel versions <= 2.6.18) which may cause
1339         sent file descriptors to be lost in the above case
1341         * ulockmgr: optimize file descriptor use
1343         * restore needed cpp flags to util/Makefile.am
1345         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1347         * Minor clean up of udev rules
1349         * Add a synchronous DESTROY message to kernel interface.  This is
1350         invoked from umount, when the final instance of the filesystem is
1351         released.  It is only sent for filesystems mounted with the
1352         'blkdev' option for security reasons.
1354         * If the DESTROY message is received, call the filesystem's
1355         ->destroy() method.  In this case it's not called from session
1356         destruction as it would be otherwise.
1358 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1360         * Released 2.6.0-rc2
1362 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1364         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1365         patch by Csaba Henk
1367         * Add init script to insert fuse module and mount the control
1368         filesystem.  The script is installed as /etc/init.d/fuse and on
1369         debian based systems (where update-rc.d is available) symlinks
1370         from /etc/rc*.d/ are also installed.
1372         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1373         become more self contained.
1375 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1377         * API changes:
1379         * Move lock_owner from a separate argument into fuse_file_info
1381         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1382         operation (unlock all) was initiated by a flush, (2) a lowlevel
1383         release operation should perform a flush as well.
1385         * fusermount: revert modprobe change (2006-08-18) since it
1386         doesn't work reliably with udev
1388         * Add support for block device backed filesystems.  This mode is
1389         selected with the 'blkdev' option, which is privileged.
1391         * Add support for the bmap (FIBMAP ioctl) operation on block
1392         device backed filesystems.  This allows swapon and lilo to work on
1393         such filesystems.
1395         * kernel changes:
1397         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1398         previous (2.5.x) release can be used with library from this
1399         release
1401         * In fuse_dentry_revalidate() use dget_parent() instead of
1402         dereferencing d_parent, since there's no protection against parent
1403         changing and going away
1405         * Protect nlookup from concurrent updates
1407         * In lookup if a directory alias exists but is unused,
1408         then get rid of it, otherwise return -EBUSY.
1410         * In mkdir if a directory alias exists, return success, but leave
1411         dentry negative.  In reality this could happen if a remote rename
1412         immediately followed the mkdir.
1414         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1415         good inode.  This could happen if several lookups are racing for
1416         the same inode.
1418 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1420         * Fix compilation on 2.6.9.  Report from Troy Ayers
1422 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1424         * Fix Oops in fuse_readpages().  Reported by David Shaw
1426 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1428         * Add support for nanosec times on FreeBSD
1430         * Fix FreeBSD compatibility issues
1432 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1434         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1436         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1438 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1440         * Fixed several compatibility bugs in low level interface.
1441         Reported by Ricardo Correia
1443         * Add workaround for ARM caching bug
1445 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1447         * Rename new utimes() method to more logical utimens()
1449 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1451         * Fuse tried to unlink already unlinked hidden files.  Bug
1452         reported by Milan Svoboda
1454 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1456         * Released 2.6.0-rc1
1458 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1460         * kernel: Fix unlock on close for kernels < 2.6.18
1462         * Add ulockmgr library & server.  This can be used for handling
1463         file locking requests either directly from libfuse or over a
1464         network, etc.  This first version is not optimized and the number
1465         of file descriptors it uses may get out of hand
1467 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1469         * lib: Add interrupt support to high level library, which may be
1470         enabled with the 'intr' mount option.
1472         * When an operation is interrupted the thread handling that
1473         operation will receive SIGUSR1 (or other signal specified with the
1474         'intr_signal=N' option).  The library installs a no-op signal
1475         handler for this signal, unless there's already a handler
1476         installed.
1478         * The filesystem may query interrupt status (regardless of 'intr')
1479         with the fuse_interrupted() function.
1481         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1483 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1485         * lib: Multithreaded loop now allows unlimited number of threads.
1486         This is needed for locking operations which may block
1487         indefinitely.  Also the kernel now doesn't limit the number of
1488         outstanding requests so the library shouldn't do so either.
1490 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1492         * Fix recursive lock bug in interrupt handling
1494         * Add utimes() method to highlevel interface, which supports
1495         setting times with nanosecond resolution
1497 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1499         * kernel: fix page leak if fuse_readpages() failed in it's
1500         initialization.  Bug found and original patch from Alexander
1501         Zarochentsev
1503         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1504         the kernel tree) the statfs method will receive the path within
1505         the filesystem on which the stat(v)fs syscall was called
1507         * fusermount: try to modprobe fuse module if invoked by root and
1508         unable to open device.  This is needed with udev, since the device
1509         node will be created only when the module is inserted, hence
1510         module autoloading won't work.  Reported by Szakacsits Szabolcs
1512 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1514         * fusermount: if selinux is active, restore the original file's
1515         security context in unmount_rename().  Redhat bugzilla id 188561.
1516         Patch from Yves Perrenoud
1518         * Add POSIX file locking operation to high level library
1520         * Initialize context for unlink of hidden files on umount.  Bug
1521         reported by Tim Stoakes
1523 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1525         * Multiple release() calls can race with each other, resulting in
1526         the hidden file being deleted before the last release finishes.
1527         Bug found and patch tested by Mark Huijgen
1529 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1531         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1532         this makes sense on systems using udev.  Reported by Szakacsits
1533         Szabolcs
1535 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1537         * Released 2.6.0-pre3
1539 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1541         * Support in kernel module for file locking and interruption.  The
1542         same functionality is available in official kernels >= 2.6.18
1544 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1546         * Add POSIX file locking support
1548         * Add request interruption
1550 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1552         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1554 2006-06-05  Remy Blank <remy.blank@pobox.com>
1556         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1557         unmounting succeeds even if mount point was relative.
1559 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1561         * lib: fix emergency umount in helper.c when malloc fails.
1562         (The way it was done would end up in a segfault.)
1564 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1566         * lib: adjust threading related compiler flags.
1567         Switch to "-pthread" from "-lpthread" as that's the preferred
1568         one on several platforms. Consulted with Terrence Cole and
1569         Miklos Szeredi
1571 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1573         * lib: search fusermount in installation directory (bindir) as
1574         well as in PATH.
1576 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1578         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1579         Reported by Christian Magnusson
1581 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1583         * lib: make FreeBSD mount routine recognize if kernel features
1584         backgrounded init and if it does, run the mount util in foreground
1585         (similarly to Linux)
1587 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1589         * kernel: fix fput deadlock fix, the lockless solution could lead
1590         to "VFS: busy inodes after umount..."
1592         * kernel: fix race between checking and setting file->private_data
1593         for the device.  Found by Al Viro
1595 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1597         * kernel: remove request pool, instead allocate requests on
1598         demand.  Account the number of background requests, and if they go
1599         over a limit, block the allocation of new requests.
1601         * kernel: fix deadlock if backgrounded request holds the last
1602         reference to the super block
1604         * kernel: don't use fuse_reset_request() during direct I/O
1606 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1608         * lib: Let FreeBSD mount option parsing routine recognize "no"
1609         prefixes for FUSE specific options as well
1611 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1613         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1615 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1617         * API changes:
1619         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1620         user_data parameter
1622         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1623         file descriptor
1625         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1626         destroys the given channel
1628         * fuse_teardown() no longer has a file descriptor parameter
1630         * new exported functions: fuse_session_remove_chan(),
1631         fuse_get_session(), fuse_daemonize()
1633         * fuse_chan_recv() may now return a new channel which will be used
1634         to send the reply
1636 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1638         * Released 2.6.0-pre2
1640 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1642         * Don't unmount if already unmounted.  This fixes a problem seen
1643         in the following situation: Lazy unmount a busy filesystem; Mount
1644         a new one in top; When the first finally unmounts, the second also
1645         unmounts.  Reported by Franco Broi
1647 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1649         * lowlevel lib: use indirect function calls instead of a
1650         switch/case construct.  Besides increased efficiency it helps
1651         maintainability & readability too.  Patch from Florin Malita
1653 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1655         * kernel: replace global spinlock with a per-connection spinlock
1657 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1659         * Fix source compatibility breakage for fuse_unmount().  Report
1660         from Yura Pakhuchiy
1662 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1664         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1666 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1668         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1669         Jeff Dike
1671         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1672         interface to return -errno in case of error.
1674 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1676         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1677         FreeBSD implementation so that it uses libc (sysctl backed) instead
1678         of an embdedded script (kmem backed). Adjust the control flow of
1679         hello_ll so that device doesn't get closed before unmount attempt.
1681 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1683         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1684         implement method.  This is needed on FreeBSD, and nicer on Linux
1685         too.  Highlevel lib already did this.  Reported by Csaba Henk
1687         * Fix negative entry handling.  There was a bug, that negative
1688         lookups with timeouts (nodeid == 0) returned -EIO.
1690 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1692         * Fix race between RELEASE and UNLINK, which might leave
1693         .fuse_hidden* files around
1695 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1697         * fusexmp_fh: implement flush() method and call close() on the
1698         open file descriptor.  This is needed if used on an NFS
1699         filesystem, which buffers data until file is closed.  Franco Broi
1700         spotted the situation when 'cp -p' failed to set the modification
1701         time because of this.
1703 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1705         * Released 2.6.0-pre1
1707 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1709         * libfuse: fix use-after-free bug in interruptred reply_entry().
1710         Patch from John Muir
1712         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1713         ID: 352631.  Found by Stéphane Rosi
1715 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1717         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1718         into a single function fuse_add_direntry().  This cleans up the
1719         interface and makes it possible to do stacking.
1721 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1723         * Fix rare race betweeen abort and release caused by failed iget()
1724         in fuse_create_open().
1726         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1727         own attribute caching.
1729 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1731         * Work around FreeBSD runtime linker "feature" which binds an old
1732         version of a symbol to internal references if the symbol has more
1733         than one version.  This resulted in infinite recursion in
1734         fuse_lowlevel_new_compat25().
1736 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1738         * Refine clock_gettime() querying so that linker options
1739         shall be set as it's appropriate for the target platform.
1741 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1743         * Fix udev rule syntax.  Reported by Nix
1745 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1747         * In some cases udev rule seems to be ineffective when installed
1748         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1750 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1752         * Fix compilation when build directory is different from source
1753         directory.  Reported by Frédéric L. W. Meunier
1755 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1757         * Fix even bigger bug introduced in fix for request_end() on
1758         2006-01-14.  Reported by Gal Rosen
1760 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1762         * highlevel-lib: add 'auto_cache' option.  This caches file data
1763         based on modification time and size
1765 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1767         * Sanitize storage type and help message in mount_bsd.c.  Patch
1768         from Csaba Henk
1770         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1771         FUSE_OPT_KEY_DISCARD
1773         * Add options 'max_readahead', 'sync_read' and 'async_read'
1775         * Kernel ABI version 7.6:
1777         * Negotiate the 'max_readahead' value and 'async_read' flags with
1778         userspace in the INIT method
1780         * Add connection info to ->init() methods to both lowlevel and
1781         highlevel API
1783         * Fall back to synchronous read() behavior if either library or
1784         userspace filesystem is using the old interface version.  This is
1785         needed so non-updated filesystems won't be confused by the
1786         different read() behavior
1788 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1790         * lib: if "fsname=" option was given, pass it to fusermount
1792         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1793         needed by filesystems to implement some argument manipulations
1794         correctly
1796         * fuse_opt: fix memory leak in handling "--" option
1798 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1800         * kernel: fix detection of case when fuse is not configured into
1801         the kernel either as module or built-in
1803         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1804         'template' structure member to 'templ'.  Reported by Takashi Iwai
1806         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1808         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1810 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1812         * Added (again) asynchronous readpages support
1814         * Each connection now shows up under /sys/fs/fuse/connections
1816         * Connection attributes exported to sysfs: 'waiting' number of
1817         waiting requests; 'abort' abort the connection
1819         * Connection may be aborted through either the sysfs interface or
1820         with 'umount -f mountpoint'
1822 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1824         * Released 2.5.0
1826 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1828         * kernel: fix a couple of bugs
1830         * Order of request_end() and fuse_copy_finish() was wrong.
1831         Posthumous note: Franco Broi managed to exploit this, though it
1832         seemed quite impossible
1834         * request_end() used request pointer after decrementing refcount
1836         * Clearing ->connected or ->mounted connection flags could race
1837         with setting other bitfields not protected with a lock
1839 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1841         * kernel: add necessary compile flags for 2.4.X/x86_64.
1842         Report from Sean Ziegeler
1844 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1846         * Released 2.5.0-pre2
1848 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1850         * Applied patch from Csaba Henk, to update mount_bsd to new
1851         fuse_mount() semantics
1853         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1854         Steiner and Don Taber
1856         * fusermount: add 'dirsync' mount option
1858 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1860         * Improved help reporting and added version reporting to library
1862 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1864         * Change working directory to "/" even if running in the
1865         foreground.  Patch from Jonathan Brandmeyer
1867         * Changed lots of functions to use 'struct fuse_args' instead of
1868         separate argc and argv
1870         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1871         fuse_remove_signal_handlers() functions, so that it's now pretty
1872         easy to get all the functionality of fuse_main() with a filesystem
1873         using the lowlevel API.
1875 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1877         * mount.fuse: the 'user' option should be ignored. Report and
1878         solution from Mattd.
1880         * mount.fuse: export PATH in the right place. Report and patch
1881         from Hannes Schweizer
1883 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1885         * Clean up the option parsing interface slightly, by creating an
1886         "argument list" structure, that contains the argument vector and
1887         count
1889 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1891         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1892         in that case
1894         * kernel: simplify request size limiting. INIT only contains
1895         maximum write size, maximum path component size remains fixed at
1896         1024 bytes, and maximum xattr size depends on read buffer.
1898 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1900         * Fix readdir() failure on x86_64, of 32bit programs compiled
1901         without largefile support.  Bug report and help from Anthony
1902         Kolasny
1904         * If lookup returns invalid mode, return -EIO instead of creating
1905         a regular file
1907         * Add current output argument vector to option processing
1908         function
1910 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1912         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1914 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1916         * Released 2.5.0-pre1
1918 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1920         * libfuse: added option parsing interface, defined in
1921         <fuse_opt.h>.
1923 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1925         * Return EIO for file operations (read, write, fsync, flush) on
1926         open files whose inode has become "bad".  Inodes will be marked
1927         "bad" if their type changes.  Bug report by Csaba Henk
1929 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1931         * Use bigger request buffer size.  write() did not work on archs
1932         with > 4k page size, Bug report by Mark Haney
1934         * ABI version 7.5:
1936         * Extend INIT reply with data size limits
1938 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1940         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1941         reported by Vincenzo Ciancia
1943         * Handle exit-by-umount in fuse_read_cmd()
1945 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1947         * Check if '-msoft-float' option is supported by compiler when
1948         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1950         * In multithreaded loop send a TERM signal to the main thread if
1951         one of the other threads exit.  Needed on FreeBSD for a clean exit
1952         on umount.  Should not cause any harm on Linux either
1954 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1956         * Fix bug in 32-bit file handle compatibility
1958 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1960         * Block TERM, INT, HUP and QUIT signals in all but the main
1961         thread.  According to POSIX it's not specified which thread will
1962         receive these signals.
1964         * Kernel changes:
1966         * Check for directory aliasing on mkdir, not just on lookup
1968         * Check for special node ID values in create+open operation
1970         * Sync with -mm: readv, writev, aio_read and aio_write methods
1971         added to file operations
1973         * Cleanups: lookup code, page offset calculation
1975         * ABI stepped to 7.4, changes:
1977         * frsize member added to fuse_kstatfs structure
1979         * added support for negative entry caching: on lowlevel API if
1980         fuse_entry_param::ino is set to zero in reply to a lookup request,
1981         the kernel will cache the dentry for the specified amount of time.
1983         * libfuse: added 'negative_timeout' option: specifies how much
1984         negative entries should be cached.  Default is zero, to be
1985         compatible with prior versions
1987 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1989         * Add detection of mainline FUSE code in running kernel
1991 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1993         * Don't use async cancelation in multithreaded loop.  This makes
1994         it more portable to systems where read() is not async cancel safe.
1995         Report from Andriy Gapon
1997 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1999         * Warn if API version 11 compatibility is requested
2001 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
2003         * More FreeBSD merge
2005         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2006         them, because it corrupts /etc/mtab.  Found by Thomas Biege
2007         CVE-2005-3531
2009         * libfuse: don't use system() to invoke 'fusermount -u ...'
2010         because it breaks mountpoints with spaces in them into multiple
2011         arguments
2013 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
2015         * Merge library part of FreeBSD port.  Patch by Csaba Henk
2017 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
2019         * Use 64bit type for file handle, so the full range supported by
2020         the kernel interface is available to applications
2022 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
2024         * Moved mountpoint argument checking from fuse_parse_cmdline() to
2025         fuse_mount() in preparation to FreeBSD merge.
2027 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
2029         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
2030         Henk.
2032 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
2034         * Make the statfs change backwards compatible.
2036 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
2038         * Change ->statfs() method to use 'struct statvfs' instead of
2039         'struct statfs'.  This makes the API more portable since statvfs()
2040         is defined by POSIX.
2042 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
2044         * Add fgetattr() method, which currently will only be called after
2045         a successful call to a create() method.
2047 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
2049         * Change kernel ABI version to 7.3
2051         * Add ACCESS operation.  This is called from the access() system
2052         call if 'default_permissions' mount option is not given, and is
2053         not called on kernels 2.4.*
2055         * Add atomic CREATE+OPEN operation.  This will only work with
2056         2.6.15 (presumably) or later Linux kernels.
2058         * Add ftruncate() method.  This will only work with 2.6.15
2059         (presumably) or later Linux kernels.
2061         * Fix kernel module compile if kernel source and build directories
2062         differ.  Report and initial patch by John Eastman
2064 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
2066         * lib: optimize buffer reallocation in fill_dir.
2068 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
2070         * Released 2.4.1
2072 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
2074         * libfuse: add debug for write result (by Shaun Jackman) and
2075         warnings for too large read/write result
2077 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
2079         * Spelling fixes, thanks to Ioannis Barkas
2081 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
2083         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
2084         patch
2086 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
2088         * highlevel-lib: init() and destroy() methods didn't have an
2089         initialized fuse_context.  Bug reported by Tim Stoakes
2091 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
2093         * Released 2.4.0
2095 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
2097         * Add documentation to fuse_lowlevel.h
2099         * API cleanups:
2101         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2103         * Move fuse_mount() and fuse_unmount() to fuse_common.h
2105         * Change the return type of fuse_reply_none() from int to void.
2107 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
2109         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
2110         Akshat Aranya.
2112 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
2114         * fusermount: fix error message, when unable to open /dev/fuse.
2115         Report by Balázs Pozsár
2117 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
2119         * UClibc fixes from Christian Magnusson
2121 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
2123         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
2125 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2127         * Released 2.4.0-rc1
2129 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2131         * fusermount: allow user umount in the case when /etc/mtab is a
2132         symlink to /proc/mounts.  Reported by Balázs Pozsár.
2134 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
2136         * Check for special node ID values in lookup and creation
2138 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
2140         * Slight optimization in returning EINVAL error in case of an open
2141         with O_DIRECT flag.
2143 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
2145         * Remove '--enable-auto-modprobe' configure flag.  Module
2146         auto-loading is now handled by the kernel.
2148 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
2150         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2151         Help from Jens M. Noedler.
2153 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
2155         * Add memory cleanup on thread exit
2157 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
2159         * Set umask to zero in fusexmp and fusexmp_fh, so that
2160         files/directories are created with the requested mode.
2162 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
2164         * Don't ignore read error in multithreaded loop
2166 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2168         * Released 2.4.0-pre2
2170 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2172         * Revert lock and access operations.  Postpone these until 2.5.
2174 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
2176         * Fix compile warning on 2.6.13 and later
2178         * Fix compilation on old kernels
2180 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
2182         * lib: always refresh directory contents after rewinddir() to
2183         conform to SUS.  Bug found by John Muir.
2185 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
2187         * Released 2.4.0-pre1
2189 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
2191         * lib: cleaned up (or messed up, depending on your POV) the low
2192         level library API.  Hopefully this is close to the final form.
2194 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2196         * fusermount: don't allow empty mountpoint argument, which defeats
2197         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2199 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2201         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2202         option is used (Paul Alfille).
2204 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2206         * highlevel-lib: added mount options "attr_timeout" and
2207         "entry_timeout".  These options control the length of time file
2208         attributes and entries (names) are cached.  Both default to 1.0
2209         second.
2211         * kernel: correctly handle zero timeout for attributes and entries
2213 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2215         * Added missing symbols to versionscript (Joshua J. Berry)
2217         * kernel: implement two flags, open can set: 'direct_io' and
2218         'keep_cache'.  These correspond exactly to mount options
2219         'direct_io' and 'kernel_cache', but allow a per-open setting.
2221         * Move 'direct_io' and 'kernel_cache' mount option handling to
2222         userspace.  For both mount options, if the option is given, then
2223         the respective open flag is set, otherwise the open flag is left
2224         unmodified (so the filesystem can set it).
2226         * lib (highlevel): make open method optional
2228 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2230         * kernel: invalidate attributes for read/readdir/readlink
2231         operations
2233         * kernel: detect newer UML kernels
2235 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2237         * Make the installation path of fuse.ko and mount.fuse
2238         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2239         environment variables.  Requirement and help from Csaba Henk.
2241 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2243         * Fix bug, that causes filesystem requests to hang when unique
2244         request counter becomes negative.  This happens after
2245         2,147,483,648 operations, so most people won't care.  Thanks to
2246         Franco Broi for the report and testing.
2248 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2250         * Don't change mtime/ctime/atime to local time on read/write.
2251         Bug reported by Ben Grimm
2253         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2254         Magnusson
2256         * fusermount: use getopt_long() for option parsing.  It allows the
2257         use of '--' to stop argument scanning, so fusermount can now
2258         operate on directories whose names begin with a '-'.  Patch by
2259         Adam Connell
2261 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2263         * fusermount: add '-v', '--version' and '--help' options
2265         * add inode based API
2267 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2269         * lib: don't block signals in worker threads.  Problem noticed by
2270         Usarin Heininga
2272 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2274         * lib: don't allow both 'allow_other' and 'allow_root' options to
2275         be given
2277 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2279         * fusermount: check if mountpoint is empty (only '.' and '..' for
2280         directories, and size = 0 for regular files).  If "nonempty"
2281         option is given, omit this check.  This is useful, so users don't
2282         accidentally hide data (e.g. from backup programs).  Thanks to
2283         Frank van Maarseveen for pointing this out.
2285         * kernel: check if mandatory mount options ('fd', 'rootmode',
2286         'user_id', 'group_id') are all given
2288         * lib: simplify 'readdir_ino' handling
2290         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2292 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2294         * kernel: clean up 'direct_io' code
2296 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2298         * Add 'mount.fuse' written by Petr Klima
2300         * '/dev/fuse' is created by 'make install' if does not yet exist
2302 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2304         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2306 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2308         * Enable the auto-loading of the module via access to the
2309         corresponding device file.  Patch by Takashi Iwai.
2311         * Allow mounting a regular file (over a regular file) for
2312         unprivleged users.
2314         * Do not create temporary device file.  Require "/dev/fuse" to
2315         exist, and be readable/writable by the mounting user.
2317 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2319         * Released 2.3.0
2321 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2323         * Fix serious information leak: if the filesystem returns a short
2324         byte count to a read request, and there are non-zero number of
2325         pages which are not filled at all, these pages will not be zeroed.
2326         Hence the user can read out previous memory contents.  Found by
2327         Sven Tantau.
2329 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2331         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2332         field in struct dirent.  This mount option is ignored if "use_ino"
2333         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2334         non-Linux OS).  Patch by David Shaw.
2336 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2338         * Released 2.3-rc1
2340 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2342         * File save in krusader and other editors doesn't work with sshfs,
2343         because open() is interrupted by a periodic signal, and open()
2344         restarts forever, without any progress.  This could just be fixed
2345         in open(), but the problem is more generic: if signals are
2346         received more often than the filesystem can get the request to
2347         userspace, it will never finish.  This is probably only a
2348         theoretical problem, nevertheless I'm removing the possibility to
2349         interrupt requests with anything other than SIGKILL, even before
2350         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2352 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2354         * libfuse: add "tree_lock" rwlock, that is locked for write in
2355         rename, unlink and rmdir, and locked for read in all other
2356         operations.  This should fix the rename/release race reported by
2357         Valient Gough and others.  The solution is very coarse, a finer
2358         grained locking scheme could be implemented, but it would be much
2359         more complex.  Let's see whether this is good enough.
2361 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2363         * Released 2.3-pre7
2365 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2367         * Better fix for out of order FORGET messages.  Now the
2368         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2369         balance many lookups), so the order no longer matters.  This
2370         changes the kernel ABI slightly, but the library remains backward
2371         compatible.
2373 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2375         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2376         Franco Broi again.  Sorry :)
2378 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2380         * Released 2.3-pre6
2382 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2384         * Make fusermount work with fuse kernel modules not yet supporting
2385         the "group_id" option (added for the purpose of stricter
2386         permission checking).
2388 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2390         * Check for hard-linked directories in lookup.  This could cause
2391         problems in the VFS, which assumes that such objects never exist.
2393         * Make checking of permission for other users more strict.  Now
2394         the same privilege is required for the mount owner as for ptrace
2395         on the process performing the filesystem operation.
2397 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2399         * Released 2.3-pre5
2401 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2403         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2404         is needed on certain architectures.  Report from Chris Kirby
2406         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2407         Reported by David Shaw
2409         * Remove "allow_root" option from kernel module, and implement
2410         it's functionality in the library
2412         * Fix Oops caused by premature release of fuse_conn.  Clean up
2413         related code, to be more readable
2415         * Sendfile should not use page cache if "direct_io" mount option
2416         is given
2418 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2420         * Fix Oops in case of nfs export.  Spotted by David Shaw
2422         * Fix another Oops in case of write over nfs with direct_io turned
2423         on.  Again spotted by David Shaw
2425 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2427         * Released 2.3-pre4
2429 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2431         * lib: finalized new readdir() interface, which now supersedes the
2432         getdir() method.
2434 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2436         * Released 2.3-pre3
2438 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2440         * Implement backward compatibility with version 5 kernel ABI
2442 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2444         * Released 2.3-pre2
2446 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2448         * kernel: fix dirent offset handling
2450         * lib: add readdir and releasedir methods
2452         * lib: use fh field of fuse_file_info in opendir, readdir,
2453         releasedir and fsyncdir methods
2455         * lib: check kernel API version and bail out of it's old.  This
2456         will be properly fixed in the next release
2458 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2460         * Released 2.3-pre1
2462 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2464         * kernel API: add padding to structures, so 64bit and 32bit
2465         compiler will return the same size
2467         * kernel API: add offset field to fuse_dirent.  This will allow
2468         more sophisticated readdir interface for userspace
2470         * kernel API: change major number to 6
2472         * kernel: fix warnings on 64bit archs
2474         * kernel: in case of API version mismatch, return ECONNREFUSED
2476 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2478         * kernel: trivial cleanups
2480 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2482         * Add fsyncdir() operation
2484 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2486         * kernel: add locking to background list (fixes previous fix)
2488 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2490         * kernel: fix bug which could cause leave busy inodes after
2491         unmount, and Oops.
2493 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2495         * examples: add -lpthread to link flags to work around valgrind
2496         quirk
2498         * lib: don't exit threads, so cancelation doesn't cause segfault
2500 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2502         * kernel: fix nasty bug which could cause an Oops under certain
2503         situations.  Found by Magnus Johansson
2505 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2507         * libfuse: added opendir() method.  This can be used in case
2508         permission checking in getdir() is too late.  Thanks to Usarin
2509         Heininga for pointing out this deficiency
2511         * libfuse: added init() and destroy() methods to fuse_operations
2513         * kernel: llseek() method for files and directories made explicit
2515         * kernel: fixed inode leak in NFS export in case of nodeid
2516         wrapping
2518 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2520         * libfuse: clean up some unitialized memory found with valgrind
2522         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2523         explicitly linked libpthread for applications
2525 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2527         * fusermount: set umask, otherwise /etc/mtab will have
2528         unpredictable permission.  Spotted by Jindrich Kolorenc
2530         * fusermount: set owner and group of /etc/mtab to original values
2531         on unmount
2533         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2535 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2537         * Cleaned up directory reading (temporary file is not used)
2539 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2541         * Released 2.2
2543 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2545         * Fix possible race when operation is interrupted
2547 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2549         * Fix compilation on 2.6.7
2551 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2553         * Released 2.2-pre6
2555 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2557         * Fix bug in link() operation which caused the wrong path to be
2558         passed as the first argument.  Found by Anton Altaparmakov
2560 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2562         * LIB: fix double reply in readdir operation
2564         * fusermount: fix uid checking bug.  Patch by Adam Connell
2566         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2567         Patch by Keshava Gowda
2569 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2571         * KERNEL: provide correct llseek semantics for fuse device (fixes
2572         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2574 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2576         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2578 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2580         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2581         and RELEASEDIR.  This ends the ugly hack of passing a file
2582         descriptor to the kernel, and actually makes the code simpler.
2584 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2586         * Released 2.2-pre4
2588 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2590         * fusermount: remove capability setting, which was the cause of
2591         problems for some users.  It seems that FS related capabilities
2592         are removed by setfsuid(), so this isn't even needed.
2594 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2596         * fix compilation on 2.4 kernels (reported by Valient Gough)
2598         * fix failure to unmount bug (found by David Shaw)
2600         * fusermount: improve parsing of /etc/fuse.conf
2602 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2604         * Remove 'mount_max' and 'user_allow_other' module options.  These
2605         are now checked by fusermount, and can be set in /etc/fuse.conf
2607         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2609 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2611         * KERNEL: fix possible inode allocation problem, where
2612         sizeof(struct inode) is not aligned (found by Mike Waychison)
2614         * KERNEL: use new follow_link/put_link methods
2616         * KERNEL: cosmetic fixes
2618 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2620         * Released 2.2-pre3
2622 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2624         * Add missing code that was accidently left out
2626 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2628         * Released 2.2-pre2
2630 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2632         * Change "uid" mount option to "user_id" to avoid confusion with a
2633         mount option "uid" commonly used by many filesystems
2635 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2637         * Released 2.2-pre1
2639 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2641         * If FUSE is configured in the kernel, don't build it by default
2643 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2645         * Compile fix by Christian Magnusson
2647 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2649         * Fix compilation for 2.6.{0-5} kernels
2651 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2653         * KERNEL: if request is interrupted, still keep reference to used
2654         inode(s) and file, so that FORGET and RELEASE are not sent until
2655         userspace finishes the request.
2657         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2658         request with the same information, which is more flexible,
2659         simpler, works on embedded systems.
2661 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2663         * KERNEL ABI: update interface to make it independent of type
2664         sizes.  This will help on 64 bit architectures which can run
2665         legacy 32 bit applications.
2667         * KERNEL ABI: add "len" field to request headers.  This will allow
2668         sending/receiving requests in multiple chunks.
2670         * KERNEL: handle file type change more intelligently
2672         * LIB: "-o debug" option should disable backgrounding (fix by
2673         Fabien Reygrobellet)
2675 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2677         * KERNEL: invalidate dentry/attributes if interrupted request
2678         could leave filesystem in an unknown state.
2680 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2682         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2683         These will cause some regressions, but stability is considered
2684         more important.  If any of these features turns out to be
2685         important, it can be readded with the deadlock problems addressed.
2687         * Make all requests interruptible (only with SIGKILL currently).
2688         This can be used to break any deadlock produced by the userspace
2689         filesystem accessing it's own exported files.  The RELEASE request
2690         is special, because if it's interrupted before sending it to
2691         userspace it is still sent, but the reply is not awaited.
2693         * If request is interrupted before being sent to userspace, and if
2694         it hasn't yet got any side effects, it is always restarted,
2695         regardless of the SA_RESTART flag.  This makes these interruptions
2696         transparent to the process.
2698         * Remove shared-writable mmap support, which was prone to an
2699         out-of-memory deadlock situation
2701         * Remove INVALIDATE userspace initiated request
2703         * Make readpages() synchronous.  Asynchronous requests are
2704         deadlock prone, since they cannot be interrupted.
2706         * Add readv/writev support to fuse device operations
2708         * Remove some printks, which userspace FS can use for a DoS
2709         against syslog
2711         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2712         fusermount instead
2714         * LIB: improve compatibility with a fuse.h header installed in
2715         ${prefix}/include which in turn includes the real header.
2717         * LIB: improve compatibility by defining fuse_main() (which is now
2718         not used), so old configure scripts find it.
2720 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2722         * When mounting on a subdirectory of / don't duplicate slashes at
2723         the beggining of path (spotted by David Shaw)
2725 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2727         * Fix bug causing garbage in mount options (spotted by David Shaw)
2729 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2731         * Add 'writepage' flag to 'fuse_file_info'.
2733         * More comments in fuse.h
2735         * Get rid of double underscores
2737 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2739         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2741         * helper.c: add -ho option, which only displays the options not
2742         the usage header.  This can be used by filesystems which have
2743         their own options.
2745 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2747         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2748         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2749         including the fuse header
2751         * Add binary compatibility to 2.1 version of library with symbol
2752         versioning
2754 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2756         * Released 2.1
2758 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2760         * kernel: clean up writing functions
2762         * kernel: no allocation on write in direct_io mode
2764         * move linux/fuse.h to fuse_kernel.h
2766 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2768         * kernel: clean up reading functions
2770 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2772         * kernel: make readpage() uninterruptible
2774         * kernel: check readonly filesystem flag in fuse_permission
2776         * lib: don't die if version file not found and new style device
2777         exists
2779         * lib: add '-r' option, which is short for '-o ro'
2781         * fusermount: simplify device opening
2783         * kernel: when direct_io is turend on, copy data directly to
2784         destination without itermediate buffer.  More efficient and safer,
2785         since no allocation is done.
2787         * fusermount: fix warning if fuse module is not loaded
2789         * kernel: use /dev/fuse on 2.4 too
2791 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2793         * libfuse API change: open, read, write, flush, fsync and release
2794         are passed a 'struct fuse_file_info' pointer containing the open
2795         flags (open and release), and the file handle.  Verion changed to
2796         3.0.
2798 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2800         * More cleanups in the kernel
2802         * The 10,229 charater device number has been assigned for FUSE
2804         * Version file checking fix (reported by Christian Magnusson)
2806         * fusermount: opening the fuse device now doesn't need /sys.
2808         * Optimize reading by controlling the maximum readahead based on
2809         the 'max_read' mount option
2811         * fixes for UCLIBC (Christian Magnusson)
2813 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2815         * Cleaned up kernel in preparation for merge into mainline:
2817         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2819         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2821         * __user annotations for sparse
2823         * allocate individual pages instead of kmalloc in fuse_readdir,
2824         fuse_read and fuse_write.
2826         * Fix NFS export in case "use_ino" mount option is given
2828         * Make libfuse and fusermount compatible with future versions
2830         * fusermount: properly add mount options to /etc/mtab
2832 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2834         * fusermount: do not resolve last component of mountpoint on if it
2835         is '.' or '..'.  This new path resolvation is now done on mount as
2836         well as unmount.  This enables relative paths to work on unmount.
2838         * fusermount: parse common mount options like "ro", "rw", etc...
2840         * Allow module params to be changed through sysfs
2842 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2844         * Released 2.1-pre1
2846 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2848         * Fix bug in fuse_readpages() causing Oops in certain situations.
2849         Bug found by Vincenzo Ciancia.
2851         * Fix compilation with kernels versions > 2.6.9.
2853 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2855         * Check kernel interface version in fusermount to prevent
2856         strangeness in case of mismatch.
2858         * No need to allocate fuse_conn until actual mount happens
2860         * Fix potential race between umount and fuse_invalidate
2862         * Check superblock of proc file in addition to inode number
2864         * Fix race between request_send_noreply() and fuse_dev_release()
2866 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2868         * Separate configure for the kernel directory
2870         * Don't allow write to return more than 'count'
2872         * Extend kernel interface for future use
2874 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2876         * Fix 'makeconf.sh' to use autoreconf if available
2878 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2880         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2881         compatibility with earlier versions.  To compile earier versions
2882         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2883         Do not use the "use_ino" mount flag with filesystems compiled with
2884         FUSE_DIRFIL_COMPAT.
2886         * Add pkg-config support.  To compile a FUSE based filesystem you
2887         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2888         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2889         usually needs to be set to "/usr/local/lib/pkgconfig".
2891         * fuse.h is now installed in ${prefix}/include/fuse/
2893 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2895         * Added "use_ino" mount option.  This enables the filesystems to
2896         set the st_ino field on files
2898 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2900         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2901         by Jeremy Smith)
2903         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2905         * Clear the 'exited' flag when mail loop is finished
2907 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2909         * Make xattr functions work under 2.6 (bug found by Vincenzo
2910         Ciancia)
2912 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2914         * Reset request in fuse_flush() (bugreport by David Shaw)
2916 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2918         * fuse_main() now does not exit on error, rather it returns an
2919         error code
2921         * Exported __fuse_setup() and __fuse_teardown() functions, which
2922         make it easier to implement a custom event loop.
2924         * Use daemon() call to background the filesystem after mounting.
2925         This function closes the standard input, output and error and
2926         changes the current working directory to "/".
2928 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2930         * Released 1.9
2932 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2934         * Don't allow fuse_flush() to be interrupted (bug found by David
2935         Shaw)
2937 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2939         * Add PID to fuse_context.  Patch by Steven James
2941         * Change file handle type to 'unsigned long' in kernel interface
2943 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2945         * A slight API change: fuse_get_context() doesn't need the "fuse"
2946         pointer, but the returned context contains it instead.  The
2947         fuse_get() function is not needed anymore, so it's removed.
2949         * Fix mounting and umounting FUSE filesystem under another FUSE
2950         filesystem by non-root (bug spotted by Valient Gough)
2952 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2954         * Fix deadlock in case of memory allocation failure.  Patch by
2955         Christian Magnusson
2957 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2959         * Check memory allocation failures in libfuse
2961 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2963         * Check temporary file creation failure in do_getdir().  Bug
2964         spotted by Terje Oseberg
2966 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2968         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2970         * Make requests non-interruptible so race with FORGET is avoided.
2971         This is only a temporary solution
2973         * Support compiling FUSE kernel module on 2.4.x UML kernels
2975 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2977         * Fix bug in case two FORGETs for the same node are executed in
2978         the wrong order.  Bug spotted and endured for months by Franco
2979         Broi, and logfile for solution provided by Terje Oseberg
2981 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2983         * Add -D_REENTRANT to the compile flags
2985         * Add documentation of fuse internals by Terje Oseberg
2987 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2989         * Change release method to be non-interruptible.  Fixes bug
2990         causing missing release() call when program which has opened files
2991         is killed (reported by Franco Broi and David Shaw)
2993 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2995         * Add fuse_invalidate() to library API
2997 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2999         * Check permissions in setattr if 'default_permissions' flag is
3000         set.  Bug spotted by Damjan Lango
3002 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
3004         * 'large_read' mount option removed for 2.6 kernels, since the
3005         default (dynamic read size) is better
3007         * Extend kernel API with file handles.  A file handle is returned
3008         by open, and passed to read, write, flush, fsync and release.
3009         This is currently only used for debug output in the library.
3011         * Security changes:
3013         * Change the current directory to the mountpoint before checking
3014         the permissions and mount filesystem on "."
3016         * By default don't modprobe the fuse module for non-root.  The old
3017         behavior can be restored with the '--enable-auto-modprobe' flag of
3018         ./configure
3020         * By default don't allow shared writable mappings for non-root.
3021         The old behavior can be restored with the 'user_mmap=1' module
3022         parameter
3024 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
3026         * Clean up mount option passing to fusermount and to fuse_new()
3027         BEWARE: this changes the userspace API slightly, and the command
3028         line usage of programs using fuse_main()
3030 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
3032         * Optimize reading under 2.6 kernels by issuing multiple page
3033         asynchronous read requests
3035 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
3037         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3039 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
3041         * Separate directory entry and inode attribute validity timer
3043         * New write semaphore to stop page writeback during truncate
3045         * Fsync now waits for all writes to complete before sending the
3046         request
3048         * Optimization: if a page is completely written by
3049         fuse_commit_write(), clear the dirty flag and set the uptodate
3050         flag for that page
3052         * Some memory cleanup at exit
3054 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
3056         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3057         disable the "hide if open" behavior of unlink/rename.
3059         * If temporary buffer allocation fails in raw read, fall back to a
3060         smaller buffer
3062 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
3064         * Fix bug in do_open() in libfuse: open count was incremented
3065         after the reply is sent so it could race with unlink/forget and
3066         cause an abort.
3068 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
3070         * When performing create or remove operation, refresh the parent's
3071         attributes on next revalidate, as i_nlink (and maybe size/time)
3072         could be inacurate.
3074         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3075         pages (2.6 only)
3077         * Set set_page_dirty address space operation (2.6 only)
3079 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
3081         * Minor fix in read:  print debug info even if read size is zero
3083 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
3085         * Fix race between truncate and writepage (fsx-linux now runs
3086         without error)
3088 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
3090         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3091         by Mattias Wadman)
3093         * Added option for direct read/write (-r)
3095         * Fix revalidate time setting for newly created inodes
3097         * Remove uid==0 check for '-x' option in fusermount (kernel checks
3098         this)
3100         * fuse_main() only installs handlers for signals (out of INT, HUP,
3101         TERM, PIPE), for which no handler has yet been installed
3103         * Add module option 'user_allow_other' which if set to non-zero
3104         will allow non root user to specify the 'allow_other' mount option
3105         ('-x' option of fusermount)
3107         * Fix deadlock between page writeback completion and truncate
3108         (bug found by Valient Gough with the fsx-linux utility)
3110 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
3112         * Change passing fuse include dir to 2.6 kernel make system more
3113         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3114         kernel)
3116 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
3118         * Acquire inode->i_sem before open and release methods to prevent
3119         concurrent rename or unlink operations.
3121         * Make __fuse_read_cmd() read only one command.  This allows
3122         multiplexing the fuse file descriptor with other event sources
3123         using select() or poll() (patch by Jeff Harris)
3125         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3127 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
3129         * Fix file offset wrap around at 4G when doing large reads
3131 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3133         * Fix memory leak in open (Valient Gough)
3135 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3137         * Add "close after delete" support to libfuse (patch by Valient
3138         Gough)
3140         * Cancel all worker threads before exit in multithreaded mode
3142 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
3144         * Fix locking bugs
3146         * Don't send reply to RELEASE
3148         * Work with newer libtool (1.5a)
3150         * Check for st_atim member of struct stat
3152 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
3154         * No request allocation needed on inode and file release
3156 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
3158         * Fix possible inode leak in userspace in case of unfinished
3159         lookup/mknod/mkdir/symlink/link operation.
3161 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
3163         * Fix some races and cleanups in fuse_read_super()
3165 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
3167         * Requests are allocated at open time
3169 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
3171         * Build shared library as well as static (using libtool)
3173         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
3174         there has not been a release with the previous minor number, and I
3175         hope nobody is using it for anything.
3177         * Change fuse_main(), so that default behavior is to go into
3178         background if mount is successful.  '-f' and '-d' options disable
3179         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
3180         newbie complaint.
3182         * Cache ENOSYS (function not implemented) errors on *xattr, flush
3183         and fsync
3185         * Don't call getdir method from open() only from first readdir().
3186         Open is sometimes just used to store the current directory
3187         (e.g. find)
3189 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
3191         * Added flush() call
3193 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3195         * Extended attributes support for 2.4 (patch by Cody Pisto)
3197 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3199         * Fixed parser with modversions (Mattias Wadman)
3201 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3203         * Added mount option parser to 2.4 build
3205 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3207         * Replaced binary mount data with text options
3209         * Show FUSE specific mount options in /proc/mounts
3211         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3213 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3215         * Check some limits so userspace won't get too big requests
3217 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3219         * Kill compile warning
3221         * Upgraded user-mount patch for 2.6.5
3223 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3225         * Add detection of user-mode-linux to configure
3227 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3229         * fixed zero size case for getxattr and listxattr
3231 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3233         * new fusermount flag '-z': lazy unmount, default is not lazy
3235         * Extended attributes operations added (getxattr, setxattr,
3236         listxattr, removexattr)
3238 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3240         * If filesystem doesn't define a statfs operation, then an
3241         all-zero default statfs is returned instead of ENOSYS
3243 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3245         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3247 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3249         * Fix for uClinux (Christian Magnusson)
3251 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3253         * fuse_main() adds "-n progname" to the fusermount command line
3255         * More kernel interface changes:
3257         * Lookup/getattr return cache timeout values
3259 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3261         * Clean up option parsing in fuse_main()
3263         * Added fuse_get() function which returns the fuse object created
3264         by fuse_main()
3266 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3268         * removed old way of mounting (fusermount mountpoint program)
3270         * more kernel interface changes:
3272         * added nanosecond precision to file times
3274         * removed interface version from mount data
3276         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3278 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3280         * statfs library API changed to match other methods.  Since this
3281           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3283         * kernel interface changes follow:
3285         * statfs changed to 64 bits, added 'bavail' field
3287         * add generation number to lookup result
3289         * optimized mknod/mkdir/symlink/link (no separate lookup is
3290         needed)
3292         * rdev size increased to 32 bits for mknod
3294         * kernel interface version changed to 3.1
3296 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3298         * user-mount upgraded for 2.6.3 kernel
3300 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3302         * Added user-mount.2.6.2-rc3.patch
3304         * Add FS_SAFE flag to fuse filesystem
3306         * fusermount should allow (un)mounting for non-root even if not
3307         suid-root
3309 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3311         * Remove MS_PERMISSION mount flag (that means something else now)
3313 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3315         * Added check for i_size_read/write functions to configure.in
3316         (patch by Valient Gough)
3318 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3320         * Fixed writing >= 2G files
3322         * Check file size on open (with generic_file_open())
3324         * Readpage calls flush_dcache_page() after storing data
3326         * Use i_size_read/write for accessing inode->i_size
3328         * Make loopback mount of a fuse file work
3330 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3332         * Released 1.1
3334 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3336         * Properly check if the inode exists in fuse_invalidate
3338 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3340         * Added -q option for fusermount
3342         * fuse_unmount() now uses -q option of fusermount, so no error is
3343         printed if the cause of the program exit is that the filesystem
3344         has already been unmounted
3346         * Fix i_nlink correctness after rmdir/unlink
3348 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3350         * Released 1.1-pre2
3352 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3354         * Fix typo (thanks Marcos Dione)
3356         * Compile fixes for 2.4 kernels
3358 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3360         * Fix CONFIG_MODVERSIONS compile on 2.6
3362 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3364         * Write all pending data before a RELEASE operation
3366         * Suppress 'Bad file descriptor' warning on exit
3368         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3369         get confused with '-d' of fuse_main() (sorry about this change)
3371         * New fusermount option '-l' which enables big reads.  Big reads
3372         are now disabled by default.
3374         * fuse_main() can accept fusermount arguments after a '--'
3376 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3378         * Support for exporting filesystem over NFS (see README.NFS)
3380 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3382         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3383         much more nicely in low-memory situations
3385         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3386         (Note: the mknod method does not yet use 32bit device number)
3388 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3390         * Code cleanups
3392 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3394         * Released 1.1-pre1
3396 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3398         * Integrated 2.6 kernel support patch by Michael Grigoriev
3400         * Improvements and cleanups for 2.6 kernels
3402 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3404         * Added -d option to fusermount
3406 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3408         * Added major+minor version to library API, and minor version to
3409           kernel API
3411 2003-12-13  David McNab <david@rebirthing.co.nz>
3413         * Implemented fsync support in examples/example.py
3415         * Implemented 'fsync' and 'statfs' methods in python
3416           interface
3418 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3420         * Make it compile on 2.4.19.
3422         * Add fsync operation (write file failed on xemacs & vi)
3424 2003-12-12  David McNab <david@rebirthing.co.nz>
3426         * Added distutils support to the python module, as per standard
3427           python development practice
3429 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3431         * Add file locking for mount/unmount (based on patch by Valient
3432         Gough)
3434 2003-12-11  David McNab <david@rebirthing.co.nz>
3436         * Python filesystem - was broken with python2.3, now fixed:
3437            - changed PyTuple_* calls to PySequence_*, because os.lstat
3438              is no longer returning a pure tuple
3439            - changed PyInt_Check() calls to also call PyLong_Check,
3440              to cover for cases (eg os.lstat) where longs are returned
3441            - Added support for file 'release' handling, which IMO is
3442              essential since this signals to a FS that writes to a file
3443              are complete (and therefore the file can now be disposed of
3444              meaningfully at the python filesystem's discretion)
3445            - Added '__init__' handler to base Fuse class, which allows
3446              your Python class to know the mountpoint and mount args,
3447              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3449         * General:
3450            - added 'mount.fuse' script (in util/ dir), which is meant to be
3451              symlinked from /sbin, and which allows FUSE filesystems to
3452              be mounted with the 'mount' command, and listed in fstab;
3453              also, mount arguments get passed to your filesystem
3456 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3458         * Fix kernel version detection (again).  Bugreport by Peter Levart
3460 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3462         * Applied read combining patch by Michael Grigoriev (tested by
3463         Valient Gough and Vincent Wagelaar)
3465 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3467         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3468         #766443)
3470 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3472         * Error code fixes in kernel module
3474 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3476         * kernel version detection fix
3478         * fusermount now uses "lazy" umount option
3480         * fusermount can use modprobe with module-init-tools
3482 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3484         * Integrated caching patch by Michael Grigoriev
3486         * Added "Filesystems" file with descriptions of projects using
3487         FUSE
3489         * Added patch by Michael Grigoriev to allow compliation of FUSE
3490         kernel module for 2.6 kernels
3492 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3494         * And another spec-file fix by Achim Settelmeier
3496 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3498         * Spec-file fix by Achim Settelmeier
3500 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3502         * Fix umount oops (found by Samuli Kärkkäinen)
3504 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3506         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3508 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3510         * Updated fuse.spec file (Achim Settelmeier)
3512 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3514         * Version 1.0 released
3516 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3518         * SuSE compilation fix by Juan-Mariano de Goyeneche
3520 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3522         * The release() VFS call is now exported to the FUSE interface
3524 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3526         * 64 bit file offset fixes in the fuse kernel module
3528         * Added function 'fuse_exit()' which can be used to exit the main
3529         loop
3531 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3533         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3534         an incompatible interface change.
3536 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3538         * Portablility fix (bug reported by C. Chris Erway)
3540 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3542         * Use Mark Glines' fd passing method for default operation instead
3543         of old reexec
3545 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3547         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3549 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3551         * fix incompatiblity with Red Hat kernels, with help from Nathan
3552         Thompson-Amato.
3554 2002-04-18  Mark Glines <mark@glines.org>
3556         * added an alternative to fuse_mount(), called
3557       fuse_mount_ioslave(), which does not need to reexec the
3558       FUSE program.
3559         * added a small helper util needed by fuse_mount_ioslave().
3561 2002-03-16  Mark Glines <mark@glines.org>
3563         * use struct fuse_statfs everywhere possible to avoid problems
3564       with the headerfiles changing struct statfs member sizes
3566 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3568         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3570 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3572         * RPM support by Achim Settelmeier
3574 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3576         * Version 0.95 released
3578 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3580         * Revaidate all path components not just the last, this means a
3581         very small performance penalty for being more up-to-date.
3583 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3585         * Update and fix python interface
3587 2002-01-07  Mark Glines <mark@glines.org>
3589         * Added statfs() support to kernel, lib, examples, and perl!
3591 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3593         * Better cross compilation support
3595         * Ported to Compaq IPAQ
3597 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3599         * Added function fuse_get_context() to library API (inspired by
3600         patch from Matt Ryan)
3602         * Added flags to fusermount and to kernel interface to control
3603         permission checking
3605         * Integrated fuse_set_operations() into fuse_new()
3607 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3609         * Applied header protection + extern "C" patch by Roland
3610         Bauerschmidt
3612 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3614         * Added perl bindings by Mark Glines
3616 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3618         * Cleaned up way of mounting simple filesystems.
3620         * fuse_main() helper function added
3622 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3624         * Optimized read/write operations, so that minimal copying of data
3625         is done
3627 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3629         * Python bindings by Jeff Epler added
3631 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3633         * Fixed vfsmount reference leak in fuse_follow_link
3635         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3636         userspace is ignored
3638 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3640         * Started ChangeLog