libfuse: highlevel API: fix directory file handle passed to ioctl() method
[fuse.git] / ChangeLog
blob7c134fca536459baac0d2a0aa11a8c2d5b63aad3
1 2014-07-21  Miklos Szeredi <miklos@szeredi.hu>
3         * libfuse: highlevel API: fix directory file handle passed to
4         ioctl() method.  Reported by Eric Biggers
6 2014-07-15  Miklos Szeredi <miklos@szeredi.hu>
8         * libfuse: document deadlock avoidance for
9         fuse_notify_inval_entry() and fuse_notify_delete()
11         * fusermount, libfuse: send value as unsigned in "user_id=" and
12         "group_id=" options.  Uids/gids larger than 2147483647 would
13         result in EINVAL when mounting the filesystem.  This also needs a
14         fix in the kernel.
16         * libfuse: add "time_gran" option.  This allows the filesystem to
17         specify the time granularity it supports when the kernel is
18         responsible for updating times ("writeback_cache" option).
20         * libfuse: allow setting ctime in ->setattr()
22         * libfuse: add flags to ->rename().  See renameat2() system call
23         in linux-3.15 and later kernels.
25 2014-03-26  Miklos Szeredi <miklos@szeredi.hu>
27         * Initialize stat buffer passed to ->getattr() and ->fgetattr() to
28         zero in all cases.  Reported by Daniel Iwan
30 2014-03-05  Miklos Szeredi <miklos@szeredi.hu>
32         * libfuse: implement readdirplus for high-level API.  Reuse the
33         old "readdir" callback, but add a flags argument, that has
34         FUSE_READDIR_PLUS in case this is a "plus" version.  Filesystems
35         can safely ignore this flag, but if they want they can add
36         optimizations based on it: i.e. only retrieve the full attributes
37         in PLUS mode.  The filler function is also given a flags argument
38         and the filesystem can set FUSE_FILL_DIR_PLUS if all the
39         attributes in "stat" are valid.  Original patch by Eric Wong
41 2014-02-21  Miklos Szeredi <miklos@szeredi.hu>
43         * libfuse: added fuse_lo-plus.c to the examples
45 2014-02-04  Miklos Szeredi <miklos@szeredi.hu>
47         * libfuse: Don't use constructor functions for loading modules.
48         Original patch by Fabrice Bauzac
50 2014-01-29  Miklos Szeredi <miklos@szeredi.hu>
52         * libfuse: Add "async_dio" and "writeback_cache" options.
53         Asynchronous direct I/O is supported by linux kernels 3.13 and
54         later, writeback caching is supported by 3.14 and later.
56 2013-08-26  Miklos Szeredi <miklos@szeredi.hu>
58         * libfuse: Add missing includes.  This allows compiling fuse with
59         musl.  Patch by Daniel Thau
61 2013-07-26  Miklos Szeredi <miklos@szeredi.hu>
63         * Print help on stdout instead of stderr
65 2013-07-25  Miklos Szeredi <miklos@szeredi.hu>
67         * libfuse: fuse -> fuse3.  Allow 2.X and 3.X to coexist.  Includes
68         are now stored under /usr/include/fuse3 and library is named
69         libfuse3.*.  Invoke pkg-config with "fuse3" as the first argument
70         to build with version 3 of the library.
72         * ulockmgr: strip ulockmgr support from this source package and
73         distribute it separately.  It is not needed for the building of
74         libfuse, only fusexmp_fh.  Check ulockmgr library in ./configure
75         and if not disable remote-lock suport in fusexmp_fh.
77 2013-07-24  Miklos Szeredi <miklos@szeredi.hu>
79         * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
80         AC_SYS_LARGEFILE to your configure.ac instead.
82 2013-06-21  Miklos Szeredi <miklos@szeredi.hu>
84         * libfuse: set FD_CLOEXEC also when receiving device fd from
85         fusermount
87 2013-06-20  Miklos Szeredi <miklos@szeredi.hu>
89         * libfuse: fix multiple close of device fd.  Reported by Dan
90         Greenfield
92 2013-03-19  Miklos Szeredi <miklos@szeredi.hu>
94         * libfuse: fix thread cancel race.  Exiting a worker my race with
95         cancelling that same worker.  This caused a segmenation
96         fault. Reported and tested by Anatol Pomozov
98 2013-02-20  Miklos Szeredi <miklos@szeredi.hu>
100         * libfuse: change the type of fuse_ino_t from 'unsigned long' to
101         'uint64_t'
103         * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
104         Patch by Richard W.M. Jones
106         * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
107         Patch by Richard W.M. Jones
109 2013-02-19  Miklos Szeredi <miklos@szeredi.hu>
111         * fuse_daemonize(): chdir to "/" even if not running in the
112         background for consistency.  Reported by Vladimir Rutsky
114 2013-02-18  Miklos Szeredi <miklos@szeredi.hu>
116         * fuse_opt_parse(): when storing a newly allocated string for
117         format "%s", free the previous value stored at that location.
118         Reported by Marco Schuster
120 2013-02-07  Miklos Szeredi <miklos@szeredi.hu>
122         * libfuse: add readdirplus support in fuse_lowlevel_ops.  Patch by
123         Feng Shuo
125         * libfuse: add poll_events to fuse_file_info.  Patch by Enke Chen
127         * libfuse: fix fs cleanup.  Reported by Eric Wong
129         * libfuse: pass security context options to kernel.  Patch by
130         Dalvik Khertel
132         * libfuse: remove deprecated features:
133         - fuse_is_lib_option()
134         - fuse_invalidate()
135         - fuse_set_getcontext_func()
136         - fuse_loop_mt_proc()
137         - fuse_read_cmd()
138         - fuse_process_cmd()
139         - fuse_setup()
140         - fuse_teardown()
141         - fuse_exited()
142         - fuse_lowlevel_is_lib_option()
143         - fuse_operations.getdir()
144         - fuse_operations.utime()
145         - fuse_operations.utime_omit_ok
147 2013-02-06  Miklos Szeredi <miklos@szeredi.hu>
149         * libfuse: set close-on-exec flag on pipe file descriptors.  Patch
150         by Eric Wong
152         * libfuse: add missing INIT flags
154 2013-02-05  Miklos Szeredi <miklos@szeredi.hu>
156         * libfuse: fix fuse_get_context() in non fuse threads.  Reported
157         by Michael Berlin
159 2013-02-04  Miklos Szeredi <miklos@szeredi.hu>
161         * libfuse: fix crash in unlock_path().  Patch by Ratna Manoj
163         * libfuse: fix the 'remember' option.  The lru list was not
164         initialized for the "/" path.  This resulted in remove_node_lru()
165         crashing on LOOKUP-DOTDOT.  Patch by Madan Valluri
167         * libfuse: configure: detect new util-linux
169         * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
170         Patch by Anatol Pomozov
172         * libfuse: rename ./configure.in to ./configure.ac.  Patch by
173         Anatol Pomozov
175 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
177         * Released 2.9.2
179 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
181         * Fix deadlock in libfuse.  Running "svn update" on a fuse
182         filesystem could deadlock because of a bug in the way the paths
183         are locked.  Reported by Kazuaki Anami
185 2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
187         * Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee
189 2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
191         * Not unhashing the name in forget (commit on 2011-12-09) broke
192         the forget logic in a subtle way, resulting in "fuse internal
193         error: node NNN not found" and causing the filesystem daemon to
194         abort.  Fix by incrementing the node refcount if nlookup goes from
195         zero to one.  Reported by Kyle Lippincott
197 2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
199         * Fix linking against GNU libiconv.  Patch by Natanael Copa
201 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
203         * Start of 3.0 series.  This is going to be a new major version of
204         the library breaking backward compatibility on the binary level as
205         well as the source level.
207 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
209         * Released 2.9.1
211 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
213         * Fix crash caused by freeing a stack address.  Reported by Itay
214         Perl
216 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
218         * Fix install of mount.fuse from out-of-tree build.  Patch by
219         Olivier Blin
221         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
223 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
225         * Add fallocate operation.  Only works on linux kernels 3.5 or
226         later.  Patch by Anatol Pomozov
228 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
230         * Linking to a library that uses threads requires the application
231         to be linked with -pthreads otherwise some pthread functions will
232         be linked to stubs in glibc.  So move -pthread from Libs.private
233         to Libs in fuse.pc.  Reported by Werner Fink
235         * Fix the compile command in the examples. Reported by Luciano
236         Dalle Ore
238 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
240         * Released 2.9.0
242 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
244         * Add missing fuse_fs_flock to fuse_versionscript
246 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
248         * Check protocol version before sending notifications and return
249         -ENOSYS if a particular notification is not supported.
251         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
252         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
253         and UTIME_NOW values as specified in utimensat(2).
255 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
257         * Interpret octal escape codes in options.  Requested by Jan
258         Engelhardt
260 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
262         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
263         Lifted from the Debian package.  The man pages were written by
264         Daniel Baumann and Bastien Roucaries
266 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
268         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
270 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
272         * Remove unnecessary mutex unlock at the end of multithreaded
273         event loop.
275 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
277         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
279         * Don't unhash name in FORGET.  This resulted in ENOENT being
280         returned for unlinked but still open files if the kernel sent a
281         FORGET request for the parent directory.
283         * Free request in fuse_reply_data().
285 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
287         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
288         Dreyfus
290         * Check for availability of utimensat() function.  Patch by
291         Emmanuel Dreyfus
293 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
295         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
296         file or directory is deleted.  Patch by John Muir
298 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
300         * Update retrieve_reply() method
302 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
304         * Low level API: lock argument of fuse_reply_lock should have a
305         'const' qualifier.  Reported by Shachar Sharon
307         * Add support for ioctl on directories.  Reported by Antonio SJ
308         Musumeci
310 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
312         * Reply to request with ENOMEM in case of failure to allocate
313         request structure.  Otherwise the task issuing the request will
314         just freeze up until the filesystem daemon is killed.  Reported by
315         Stephan Kulow
317 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
319         * Replace daemon() function with fork().  Patch by Anatol Pomozov
321 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
323         * If configured with --disable-mtab then don't call mount(8) from
324         libfuse to update the mtab.  Reported by: James Sierp
326 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
328         * Use LRU list for cleaning up the cache if the "remember=T"
329         option was given.  Patch by therealneworld@gmail.com
331 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
333         * Add ->flock() operation to low and high level interfaces.  This
334         fixes problems with emulating flock() with POSIX locking.
335         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
336         filesystems don't need to implement this, as the kernel takes care
337         of file locking.  The only reason to implement locking operations
338         is for network filesystems which want file locking to work between
339         clients.
341 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
343         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
344         not follow symlinks as other layers do that already.
346 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
348         * Add "remember" option.  This works similar to "noforget" except
349         that eventually the node will be allowed to expire from the cache.
350         Patch by therealneworld@gmail.com
352 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
354         * Check if splice/vmsplice are supported
356 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
358         * Remove -lrt -ldl from fuse.pc for dynamic linking since
359         libfuse.so is already linked with these libraries.  Reported by:
360         Nikolaus Rath
362 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
364         * Cleaner build output.  Patch by Reuben Hawkins
366 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
368         * Disable splice by default, add "splice_read", "splice_write" and
369         "splice_move" options.  Keep the "no_splice_*" variants, which can
370         disable splice even if the filesystem explicitly enables it.
372 2011-04-15  Max Krasnyansky <maxk@kernel.org>
373         * Added support for "auto_unmount" option which unmounts the
374         filesystem automatically on process exit (or crash).
376 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
378         * Patches by Laszlo Papp fixing various issues found by the
379         Coverity checker
381 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
383         * In case of failure to add to /etc/mtab don't umount.  Reported
384         by Marc Deslauriers
386 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
388         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
389         worker threads.  The pause() was added in 2.2.1 to prevent
390         segfault on pthread_cancel() on an exited, detached thread.  Now
391         worker threads are not detached and pthread_cancel() should work
392         fine even after the thread exited.  Reported by Boris Protopopov
394 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
396         * fusermount: chdir to / before performing mount/umount
398         * fusermount: only allow mount and umount if util-linux supports
399         --no-canonicalize
401 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
403         * Highlevel lib: allow hash tables to shrink
405         * Highlevel lib: add slab allocation for node cache.  This will
406         allow the memory used by the filesystem to grow and shrink
407         depending on how many inodes are currently cached.
409 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
411         * Highlevel lib: use dynamically resized hash table for looking up
412         by name and node ID.
414 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
416         * Allow batching of forget requests.  This allows forget requests
417         to be processed faster and doesn't require a modification to fuse
418         filesystems.  Reported by Terje Malmedal
420         * Add ->forget_multi() operation to the lowlevel API.  The
421         filesystem may implement this to process multiple forget requests
422         in one call
424         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
425         for 32bit vs. 64bit userspace
427 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
429         * Add new write_buf() method to the highlevel API.  Similarly to
430         the lowlevel write_buf() method, this allows implementing zero
431         copy writes.
433         * Add a new read_buf() method to the highlevel API.  This allows
434         returning a generic buffer from the read method, which in turn
435         allows zero copy reads.
437         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
438         methods.  Leave the ->read() and ->write() implementations for
439         reference, even though they are not necessary.
441 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
443         * Fix check for read-only fs in mtab update
445         * Open /dev/null for write instead of read for redirecting stdout
446         and stderr
448         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
449         version 2.18 or later), and umount(2) supports the
450         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
451         "fusermount -u" will call the umount(2) system call and use
452         "umount --fake ..." to update /etc/mtab
454         * Added --disable-legacy-umount option to configure.  This
455         disables the runtime checking of umount(8) version.  When built
456         with this option then "fusermount -u" will fail if umount(8)
457         doesn't support the --fake and --no-canonicalize options.
459         * Fix fuse_buf_copy() if already at the end of the buffers
461         * Add new ->write_buf() method to low level interface.  This
462         allows passig a generic buffer, either containing a memory buffer
463         or a file descriptor.  This allows implementing zero copy writes.
465         * Add fuse_session_receive_buf() and fuse_session_process_buf()
466         which may be used in event loop implementations to replace
467         fuse_chan_recv() and fuse_session_process() respectively.
469         * Remove unnecessary restoring of current working directory in
470         "fusermount -u"
472         * Add ctx->pid to debug output
474         * Fix st_nlink value in high level lib if file is unlinked but
475         still open
477         * libfuse: add store request.  Request data to be stored in the
478         kernel buffers for a given inode.
480         * libfuse: add retrieve request.  Retrieve data stored in the
481         kernel buffers for a given inode.
483 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
485         * Use LTLIBICONV when linking libfuse.  This fixes building against
486         uclibc + libiconv.  Patch by Natanael Copa
488 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
490         * Add missing argument check in ulockmgr.c to prevent calling
491         ulockmgr_server with illegal arguments. This would cause an ever
492         growing list of ulockmgr_server processes with an endless list of
493         open files which finally exceeds the open file handle limit.
494         Patch by Markus Ammer
496 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
498         * Fix ambiguous symbol version for fuse_chan_new.
499         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
500         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
502 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
504         * Fix option escaping for fusermount.  If the "fsname=" option
505         contained a comma then the option parser in fusermount was
506         confused (Novell bugzilla #641480).  Fix by escaping commas when
507         passing them over to fusermount.  Reported by Jan Engelhardt
509 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
511         * Add NetBSD support.  Patch from Emmanuel Dreyfus
513 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
515         * libfuse: add buffer interface.  Add a generic buffer interface
516         for use with I/O.  Buffer vectors are supplied and each buffer in
517         the vector may be a memory pointer or a file descriptor.
519         * The fuse_reply_fd() interface is converted to using buffers.
521 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
523         * Make the number of max background requests and congestion
524         threshold tunable.  New options are "max_background" and
525         "congestion_threshold".  Only effective on linux kernel versions
526         2.6.32 or greater.  Patch by Csaba Henk
528 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
530         * Add fuse_reply_fd() reply function to the low level interface.
531         On linux version 2.6.35 or greater this will use splice() to move
532         data directly from a file descriptor to the fuse device without
533         needing to go though a userspace buffer.  With the
534         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
535         directly into the filesystem's cache.  On earlier kernels it will
536         fall back to an intermediate buffer.  The options
537         "no_splice_write" and "no_splice_move" can be used to disable
538         splicing and moving respectively.
540 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
542         * Fix out-of-source build.  Patch by Jörg Faschingbauer
544         * Add a "nopath" option and flag, indicating that path argument
545         need not be calculated for the following operations: read, write,
546         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
547         fgetattr, lock, ioctl and poll.
549 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
551         * Remove "chmod root" from install of fusermount.  Reported by
552         Lucas C. Villa Real
554 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
556         * Released 2.8.4
558 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
560         * Fix checking for symlinks in umount from /tmp.  Reported by Al
561         Viro
563         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
565 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
567         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
568         Bruylants
570 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
572         * Fix stack alignment for clone()
574 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
576         * Released 2.8.3
578 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
580         * Using "--no-canonicalize" with umount(8) conflicts with the race
581         fix, sinceit assumes the supplied path is absolute, while the race
582         fix relies on the path being relative to the current directory.
583         Reported by Tom Rindborg
585 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
587         * Released 2.8.2
589 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
591         * Fix race if two "fusermount -u" instances are run in parallel.
592         Reported by Dan Rosenberg
594         * Make sure that the path to be unmounted doesn't refer to a
595         symlink
597 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
599         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
601 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
603         * Use '--no-canonicalize' option of mount(8) (available in
604         util-linux-ng version 2.17 or greater) to avoid calling
605         readling(2) on the newly mounted filesystem before the mount
606         procedure is finished.  This has caused a deadlock if "audit" was
607         enabled in the kernel.  Also use '--no-canonicalize' for umount to
608         avoid touching the mounted filesystem.
610 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
612         * Released 2.8.1
614 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
616         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
618 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
620         * Released 2.8.0
622 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
624         * Add missing fuse_session_data to versionscript
626         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
628 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
630         * Clarify how the protocol version should be negotiated between
631         kernel and userspace.  Notably libfuse didn't correctly handle the
632         case when the supported major versions didn't match
634         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
636 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
638         * The context is extended with a 'umask' field.  The umask is sent
639         for mknod, mkdir and create requests by linux kernel version
640         2.6.31 or later, otherwise the umask is set to zero.  Also
641         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
642         supports this feature, then this flag will be set in conn->capable
643         in the ->init() method.  If the filesystem sets this flag in in
644         conn->want, then the create modes will not be masked.
646         * Add low level interfaces for lookup cache and attribute
647         invalidation.  This feature is available in linux kernels 2.6.31
648         or later.  Patch by John Muir
650         * Kernel interface version is now 7.12
652         * fusermount: Do not silently ignore command line arguments.
653         Patch by Sebastian Harl
655 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
657         * Released 2.8.0-pre3
659 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
661         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
662         level lib) functions to query the supplementary group IDs for the
663         current request.  Currently this is implemented on Linux by
664         reading from the /proc filesystem.
666 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
668         * Add "noforget" option to high level lib to prevent ESTALE errors
669         on NFS exported filesystems.  This result in paths being cached
670         forever, resulting in ever growing memory usage.  Use with care.
672         * Add "no_remote_lock" option to disable remote file locking even
673         if the filesystem implements it.  With this option locking
674         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
675         will ignore remotely locked files.
677         * CUSE patches from Tejun Heo:
679         * Unrestricted ioctl support left some debris.  Clean them up:
680           o No reason to pass around pointer to flags.  Pass flags directly.
681           o Clean up comment and prototype parameter names.
682           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
683           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
685         * Add fuse_reply_ioctl_iov()
687         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
688         and make send_reply_iov() and fuse_setup_common() global (also in
689         fuse_i.h).  These will be used by CUSE support.
691         * Restructure fuse_ll_process()
693         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
694         operations as dir operations don't make sense for CUSE where one
695         instance implements single character device.
697         CUSE support comes with its own cuse_lowevel_ops and related
698         initialization and helper functions.  Except for initialization, it
699         usage is basically identical to FUSE.
701         This patch also adds example/cusexmp.c which can create a character
702         device with name and device number specified on command line.  The
703         created device itself is pretty boring.  It's a bit bucket supporting
704         read, write and access via ioctl.
706 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
708         * Add missing fuse_reply_bmap to versionscript.  Debian
709         Bug#531329.  Reported by Goswin Brederlow
711 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
713         * Don't call forget_node() if the lookup was negative and write()
714         for the reply returned ENOENT.  Reported by John Haxby
716 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
718         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
720 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
722         * Fix missing newlines in some printfs
724         * Fix 'make install-strip'.  Reported by Dominick Layfield
726 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
728         * Released 2.8.0-pre2
730 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
732         * Implement poll support.  Patch by Tejun Heo
734         * Add missing setattr flags to <fuse_lowlevel.h>.
736         * Only pass valid flags to ->setattr().
738 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
740         * Implement ioctl support.  On high level interface only
741         "restricted" ioctls are supported (which are defined with the
742         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
743         will only be allwed to CUSE (Character Device in Userspace)
744         servers.  Patch by Tejun Heo
746 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
748         * If open sets fi->nonseekable, libfuse will tell the kernel that
749         the file is not seekable.  Patch by Tejun Heo
751 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
753         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
754         interrupt handling function.  Reported by Tero Marttila
756 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
758         * Allow commas in options to be escaped with a backslash
760         * Add new function: fuse_opt_add_opt_escaped()
762         * Add missing fuse_reply_bmap() to the version script
764 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
766         * Pass current file flags to read and write operations
768 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
770         * Clean up debug output in highlevel lib
772 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
774         * Released 2.8.0-pre1
776 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
778         * Fix handling of (no)suid and (no)dev options if filesystem is
779         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
781         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
782         read-only filesystem.  This works around issues with certain mount
783         implementations.  Reported by Szabolcs Szakacsits.
785 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
787         * Remove fuse kernel module sources.  Linux 2.6.27 will support
788         NFS exporting.
790 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
792         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
793         Szakacsits
795         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
796         Szabolcs Szakacsits
798 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
800         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
802 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
804         * Don't allow bigger than 4kB writes by default on 2.6.26 and
805         later kernels, so that filesystems not expecting this are not
806         broken on a kernel upgrade.  Provide a 'big_writes' mount option
807         to enable this feature.  In future API revisions this may become
808         the default.
810 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
812         * Update warning message for missing newline at end of fuse.conf
814         * Update debug message for successful operation to not include the
815         string "error:"
817 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
819         * Update error message for missing mountpoint parameter.  Reported
820         by Allen Pulsifer
822 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
824         * Print library version information to debug output
826         * Highlevel lib: don't limit paths to 4095 characters
828 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
830         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
832 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
834         * Fix missing pthread_mutex_destroy in error path of
835         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
837 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
839         * Add queuing on contention to per-node lock algorithm, to avoid
840         starvation.
842         * Only enable cancelation when reading a request, otherwise
843         cancellation could happen with a mutex held, which could hang the
844         process on umount
846 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
848         * Block SIGCHLD when executing mount and umount
850         * fusexmp_fh: avoid unnecessary seeking in readdir
852         * Update kernel interface to 7.9:
854         * Support receiving file handle from kernel in GETATTR request
856         * Allow operations with a NULL path argument, if the filesystem
857         supports it
859         * Add support atomic open(O_TRUNC)
861         * Support the st_blksize field in struct stat
863         * If the "FUSE_THREAD_STACK" environment is set, initialize the
864         stack size of threads by this value.  Patch by Florin Malita
866         * Add per-node locking, instead of a global tree lock to protect
867         the path from changing during operations.  Original patch by
868         Rodrigo Castro
870 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
872         * lib/mount_bsd.c:
873         - string formatting fixes
874         - exit if mounting has failed
875           (in FreeBSD a mount failure is not critical per se, as the daemon
876           still could be mounted externally, but waiting for such an event
877           is more confusing than fruitful)
878         - ditch the kvm(8) stuff and simply use forced unmount which just
879           won't block
880         - prettify option specifications
881         - add "-onosync_unmount" kernel option
883 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
885         * lib/mount_bsd.c:
886         - refine device closing in a race-free way
887         - add support for "-osubtype" on FreeBSD
889         * makeconf.sh: make it work under FreeBSD
891 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
893         * lib/mount_bsd.c: close device before unmount
894         (cf. lib/mount.c rev. 1.43) and fix some warnings 
896 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
898         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
900 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
902         * Released 2.7.2
904 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
906         * Fix kernel module compile for 2.6.24
908         * Invalidate attributes of parent directory after create(), since
909         the modification time changes.  Invalidate attributes on rename,
910         since some filesystems may update st_ctime.  Reported by Szabolcs
911         Szakacsits
913         * Fix NFS exporting to handle 64bit node IDs
915         * Disable old symbol versions if __UCLIBC__ is defined.  If a
916         symbol in a library has multiple versions, the runtime linker in
917         uClibc seems to randomly choose between them.
919         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
920         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
922         * Close fuse device file descriptor before calling umount(),
923         preventing a deadlock when umount is synchronous.  Reported by
924         Szabolcs Szakacsits
926 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
928         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
929         symlink.  This bug was introduced in 2.7.1 by "Don't call
930         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
932 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
934         * Released 2.7.1
936 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
938         * Clarify licence version to be "LGPLv2" for the library
940         * kernel fixes:
942         * After mount set nlink attribute for the root inode to 1
944         * Fix wake up of task waiting for a reserved request
946         * Fix allowing setattr, listxattr and statfs for other users
948 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
950         * Add missing context initialization in fuse_fs_chmod().  Bug
951         found by "iohead"
953         * Fix kernel module compilation for 2.6.23.  Based on patch by
954         Marian Marinov
956 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
958         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
960 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
962         * Work around hotplug issue, that it calls filesystem with file
963         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
965 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
967         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
968         Tomas M
970         * Also don't touch /etc/mtab if it is within the mounted
971         filesystem.  Suggested by Jeffrey Law
973 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
975         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
976         C. Villa Real
978 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
980         * Released 2.7.0
982 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
984         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
985         filesystem is only invoking fuse to print a help message, or
986         version.  Fixes RedHat bugzilla #217343
988 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
990         * lib: fix locking when loading a filesystem module
992 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
994         * Add fs subtype support to mount.fuse
996 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
998         * Add fs subtype support to libfuse and fusermount
1000 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
1002         * kernel: sync with mainline (2.6.22)
1004 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
1006         * Send debug output to stderr instead of stdout.  Patch by Jan
1007         Engelhardt
1009 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
1011         * libulockmgr: Work around a kernel bug in recv(), causing it to
1012         sometimes return zero even if data was available on the socket.
1014 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
1016         * lib: optimization: store parent pointer in node instead of
1017         parent id
1019 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
1021         * lib: don't create new thread for each FORGET request.  FORGET
1022         messages sometimes caused so many threads to be created, that
1023         process virtual memory space ran out.  Reported by Chris AtLee
1025 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
1027         * lib: fix memory leak on thread creation failure in multithreaded
1028         event loop.  Found by Chris AtLee
1030 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
1032         * lowlevel lib: add fuse_reply_iov function, which is similar to
1033         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
1034         Willcocks
1036 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
1038         * Fix Oops or error if a regular file is created with mknod(2) on
1039         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
1040         J. Cameijo Cerdeira for the report
1042 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
1044         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1045         Error reported by Csaba Henk, fix by Miklos Szeredi
1047         * libfuse: fix unlock in flush
1049         * libfuse: do unlocking on RELEASE+FLUSH
1051 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
1053         * Released 2.7.0-rc1
1055 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
1057         * kernel: sync with mainline:
1059         * Use invalidate_mapping_pages() if available
1061         * Fix BUG when invalid file type is supplied in mount. Patch by
1062         Timo Savola
1064 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
1066         * libfuse: call umount(8) directly instead of fusermount if
1067         possible
1069         * Clean up init script, make it LSB compliant
1071 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
1073         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1074         up the main thread on umount.  This is more elegant, and works
1075         even if signals are blocked.
1077 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
1079         * Improve mounting support in libfuse:
1080          - check non-empty mountpoint
1081          - only fall back to fusermount when necessary
1083 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
1085         * Don't chdir to "/" in foreground mode, it causes more trouble
1086         than it's worth
1088 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
1090         * Replace utils/mount.fuse "sh" script with a "C" program
1092 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
1094         * Add -lulockmgr to compilation comment in fusexmp_fh.c
1096 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
1098         * Check for iconv.  Patch by Csaba Henk
1100         * Add direct umounting
1102         * Use "fusectl" as the device for the fusectl filesystem.  Debian
1103         Bug#417945.  Reported by Laurent Bonnaud
1105 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
1107         * Fix some FreeBSD related macros.
1109 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
1111         * Add support for direct mounting by libfuse.  Fall back on
1112         calling fusermount if it doesn't work
1114 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
1116         * Released 2.7.0-pre1
1118 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
1120         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
1121         Bruno
1123         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
1124         by Thomas Weinbrenner
1126 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
1128         * Fix detection of installed fuse in init script.  Reported and
1129         fix suggested by Davide Canova
1131 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
1133         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1134         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
1136 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
1138         * Compile fuseblk for kernels which don't have an option to turn
1139         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
1140         Szabolcs
1142 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
1144         * Add filesystem stacking support to high level API.  Filesystem
1145         modules can be built into libfuse or loaded from shared object
1146         (.so) files
1148         * Add 'subdir' and 'iconv' built in modules
1150         * lib/fuse.c: Fix locking for the reply code in create and open
1152 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
1154         * kernel: make it compile on "strange" kernels which have emulated
1155         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
1156         Mateja
1158 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
1160         * kernel: fix BUG in control filesystem if it is umounted and
1161         mounted again, while some fuse filesystems are present.
1162         Bugreport from Florent Mertens
1164         * kernel: sync with mainline, support 2.6.20
1166 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
1168         * lib/Makefile.am: actually link libfuse against libfuse_libs
1170 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
1172         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
1173         Ian Abbott
1175 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
1177         * Fix abort in fuse_new() compatibility API for opts == NULL case.
1178         Novell bugzilla #233870.  Patch from Takashi Iwai.
1180 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
1182         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
1184 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
1186         * Fix unaligned access in file desctriptor passing in libfuse,
1187         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
1188         tested by Sebastian Fontius
1190 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
1192         * kernel: don't keep unreferenced inodes in the icache.
1194 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
1196         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
1197         Szabolcs
1199         * lib: Fix use after free in fuse_flush().  Reported by Ron
1200         Lindman
1202 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1204         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1205         for the filesystem
1207         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1208         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1209         the ugly code dealing with mtab, as well as a possible race
1210         between fusermount and mount trying to modify /etc/mtab at the
1211         same time
1213         * Fix "buffer size too small: 4" warning for users of the
1214         fuse_loop_mt_proc() function.
1216 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1218         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1219         Harshavardhana
1221         * Add extra warning options, and fix resulting warnings
1223         * Really fix fuse_teardown problem
1225 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1227         * Add -lrt to fuse.pc (if needed) to fix static linking against
1228         libfuse.  Reported by Szakacsits Szabolcs
1230 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1232         * Released 2.6.1
1234 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1236         * Fix API version 21 and 22 compatibility for fuse_teardown.
1237         Reported by Bgs
1239 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1241         * fusermount: Print a more helpful message in case the kernel
1242         doesn't support the 'fuseblk' filesystem type.  This has been
1243         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1245         * kernel: fix build problem for "make -C ...".  Reported by
1246         Stephen Bryant
1248 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1250         * Fix bug in certain error paths of lookup routines.  The request
1251         object was reused for sending FORGET, which is illegal.  This bug
1252         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1253         silently corrupt memory in earlier versions.  Report and test
1254         program by Russ Cox
1256 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1258         * Print an error if an incompatible kernel interface version is
1259         detected in INIT.  This will only show if filesystem is started
1260         with -d or -f
1262         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1263         fuse_setup_common().  Reported by Szakacsits Szabolcs
1265 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1267         * Fix recursive locking in fuse_create().  Thanks to Takuya
1268         Ishibashi for the bug report
1270 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1272         * Fix automake problem.  Patch from Nix
1274 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1276         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1277         always available on embedded systems.  Patch from Paul Smith
1279         * Fix util/Makefile.am, so that failure to run update-rc.d or
1280         device creation doesn't cause make to fail.  Reported by Paul
1281         Smith
1283 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1285         * Released 2.6.0
1287 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1289         * fusermount: don't try to create a lock file if /etc/mtab is a
1290         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1291         #393693)
1293 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1295         * Minor changes, sync with mainline tree
1297 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1299         * Released 2.6.0-rc3
1301 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1303         * kernel: cleanups
1305 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1307         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1308         Report from David Shaw
1310         * lib: Fix lost error on renaming a file. Report from David Shaw
1312         * lib: Fix lost error on hiding open files (renaming to
1313         .fuse_hiddenXXXX)
1315         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1316         activity.  The cause of the bug was that some calls to
1317         i_size_write() were not protected by a lock, and hence
1318         i_size_seqcount could become corrupted.  This caused subsequent
1319         calls to i_size_read() to spin forever.  This is a long standing
1320         bug was probably introduced in version 2.2, and thought to be
1321         related to NFS exporting (it's not).  It was reported by various
1322         people, but Dana Henriksen has finally helped me to track it down,
1323         so big thanks to him
1325         * kernel: Protect against truncation of a swapfile
1327 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1329         * kernel: Check for signature of super_operations->umount_begin().
1330         Ubuntu kernel 2.6.17 seems to use the new signature found in
1331         2.6.18.  Thanks to Florent Mertens for the report
1333 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1335         * Make sure inode numers wrap around at 2^32.  This is needed on
1336         dual 64bit/32bit architectures, because 32bit applications using
1337         the non-largefile interface would otherwise break (EOVERFLOW error
1338         would be returned by the stat() system call family)
1340         * ulockmgr: handle the case, when a locking operation fails
1341         because no more file desctriptors are available in
1342         ulockmgr_server.  Also work around a Linux kernel bug (known to
1343         exist for all Linux kernel versions <= 2.6.18) which may cause
1344         sent file descriptors to be lost in the above case
1346         * ulockmgr: optimize file descriptor use
1348         * restore needed cpp flags to util/Makefile.am
1350         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1352         * Minor clean up of udev rules
1354         * Add a synchronous DESTROY message to kernel interface.  This is
1355         invoked from umount, when the final instance of the filesystem is
1356         released.  It is only sent for filesystems mounted with the
1357         'blkdev' option for security reasons.
1359         * If the DESTROY message is received, call the filesystem's
1360         ->destroy() method.  In this case it's not called from session
1361         destruction as it would be otherwise.
1363 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1365         * Released 2.6.0-rc2
1367 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1369         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1370         patch by Csaba Henk
1372         * Add init script to insert fuse module and mount the control
1373         filesystem.  The script is installed as /etc/init.d/fuse and on
1374         debian based systems (where update-rc.d is available) symlinks
1375         from /etc/rc*.d/ are also installed.
1377         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1378         become more self contained.
1380 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1382         * API changes:
1384         * Move lock_owner from a separate argument into fuse_file_info
1386         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1387         operation (unlock all) was initiated by a flush, (2) a lowlevel
1388         release operation should perform a flush as well.
1390         * fusermount: revert modprobe change (2006-08-18) since it
1391         doesn't work reliably with udev
1393         * Add support for block device backed filesystems.  This mode is
1394         selected with the 'blkdev' option, which is privileged.
1396         * Add support for the bmap (FIBMAP ioctl) operation on block
1397         device backed filesystems.  This allows swapon and lilo to work on
1398         such filesystems.
1400         * kernel changes:
1402         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1403         previous (2.5.x) release can be used with library from this
1404         release
1406         * In fuse_dentry_revalidate() use dget_parent() instead of
1407         dereferencing d_parent, since there's no protection against parent
1408         changing and going away
1410         * Protect nlookup from concurrent updates
1412         * In lookup if a directory alias exists but is unused,
1413         then get rid of it, otherwise return -EBUSY.
1415         * In mkdir if a directory alias exists, return success, but leave
1416         dentry negative.  In reality this could happen if a remote rename
1417         immediately followed the mkdir.
1419         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1420         good inode.  This could happen if several lookups are racing for
1421         the same inode.
1423 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1425         * Fix compilation on 2.6.9.  Report from Troy Ayers
1427 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1429         * Fix Oops in fuse_readpages().  Reported by David Shaw
1431 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1433         * Add support for nanosec times on FreeBSD
1435         * Fix FreeBSD compatibility issues
1437 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1439         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1441         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1443 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1445         * Fixed several compatibility bugs in low level interface.
1446         Reported by Ricardo Correia
1448         * Add workaround for ARM caching bug
1450 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1452         * Rename new utimes() method to more logical utimens()
1454 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1456         * Fuse tried to unlink already unlinked hidden files.  Bug
1457         reported by Milan Svoboda
1459 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1461         * Released 2.6.0-rc1
1463 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1465         * kernel: Fix unlock on close for kernels < 2.6.18
1467         * Add ulockmgr library & server.  This can be used for handling
1468         file locking requests either directly from libfuse or over a
1469         network, etc.  This first version is not optimized and the number
1470         of file descriptors it uses may get out of hand
1472 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1474         * lib: Add interrupt support to high level library, which may be
1475         enabled with the 'intr' mount option.
1477         * When an operation is interrupted the thread handling that
1478         operation will receive SIGUSR1 (or other signal specified with the
1479         'intr_signal=N' option).  The library installs a no-op signal
1480         handler for this signal, unless there's already a handler
1481         installed.
1483         * The filesystem may query interrupt status (regardless of 'intr')
1484         with the fuse_interrupted() function.
1486         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1488 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1490         * lib: Multithreaded loop now allows unlimited number of threads.
1491         This is needed for locking operations which may block
1492         indefinitely.  Also the kernel now doesn't limit the number of
1493         outstanding requests so the library shouldn't do so either.
1495 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1497         * Fix recursive lock bug in interrupt handling
1499         * Add utimes() method to highlevel interface, which supports
1500         setting times with nanosecond resolution
1502 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1504         * kernel: fix page leak if fuse_readpages() failed in it's
1505         initialization.  Bug found and original patch from Alexander
1506         Zarochentsev
1508         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1509         the kernel tree) the statfs method will receive the path within
1510         the filesystem on which the stat(v)fs syscall was called
1512         * fusermount: try to modprobe fuse module if invoked by root and
1513         unable to open device.  This is needed with udev, since the device
1514         node will be created only when the module is inserted, hence
1515         module autoloading won't work.  Reported by Szakacsits Szabolcs
1517 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1519         * fusermount: if selinux is active, restore the original file's
1520         security context in unmount_rename().  Redhat bugzilla id 188561.
1521         Patch from Yves Perrenoud
1523         * Add POSIX file locking operation to high level library
1525         * Initialize context for unlink of hidden files on umount.  Bug
1526         reported by Tim Stoakes
1528 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1530         * Multiple release() calls can race with each other, resulting in
1531         the hidden file being deleted before the last release finishes.
1532         Bug found and patch tested by Mark Huijgen
1534 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1536         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1537         this makes sense on systems using udev.  Reported by Szakacsits
1538         Szabolcs
1540 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1542         * Released 2.6.0-pre3
1544 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1546         * Support in kernel module for file locking and interruption.  The
1547         same functionality is available in official kernels >= 2.6.18
1549 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1551         * Add POSIX file locking support
1553         * Add request interruption
1555 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1557         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1559 2006-06-05  Remy Blank <remy.blank@pobox.com>
1561         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1562         unmounting succeeds even if mount point was relative.
1564 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1566         * lib: fix emergency umount in helper.c when malloc fails.
1567         (The way it was done would end up in a segfault.)
1569 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1571         * lib: adjust threading related compiler flags.
1572         Switch to "-pthread" from "-lpthread" as that's the preferred
1573         one on several platforms. Consulted with Terrence Cole and
1574         Miklos Szeredi
1576 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1578         * lib: search fusermount in installation directory (bindir) as
1579         well as in PATH.
1581 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1583         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1584         Reported by Christian Magnusson
1586 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1588         * lib: make FreeBSD mount routine recognize if kernel features
1589         backgrounded init and if it does, run the mount util in foreground
1590         (similarly to Linux)
1592 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1594         * kernel: fix fput deadlock fix, the lockless solution could lead
1595         to "VFS: busy inodes after umount..."
1597         * kernel: fix race between checking and setting file->private_data
1598         for the device.  Found by Al Viro
1600 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1602         * kernel: remove request pool, instead allocate requests on
1603         demand.  Account the number of background requests, and if they go
1604         over a limit, block the allocation of new requests.
1606         * kernel: fix deadlock if backgrounded request holds the last
1607         reference to the super block
1609         * kernel: don't use fuse_reset_request() during direct I/O
1611 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1613         * lib: Let FreeBSD mount option parsing routine recognize "no"
1614         prefixes for FUSE specific options as well
1616 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1618         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1620 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1622         * API changes:
1624         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1625         user_data parameter
1627         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1628         file descriptor
1630         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1631         destroys the given channel
1633         * fuse_teardown() no longer has a file descriptor parameter
1635         * new exported functions: fuse_session_remove_chan(),
1636         fuse_get_session(), fuse_daemonize()
1638         * fuse_chan_recv() may now return a new channel which will be used
1639         to send the reply
1641 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1643         * Released 2.6.0-pre2
1645 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1647         * Don't unmount if already unmounted.  This fixes a problem seen
1648         in the following situation: Lazy unmount a busy filesystem; Mount
1649         a new one in top; When the first finally unmounts, the second also
1650         unmounts.  Reported by Franco Broi
1652 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1654         * lowlevel lib: use indirect function calls instead of a
1655         switch/case construct.  Besides increased efficiency it helps
1656         maintainability & readability too.  Patch from Florin Malita
1658 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1660         * kernel: replace global spinlock with a per-connection spinlock
1662 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1664         * Fix source compatibility breakage for fuse_unmount().  Report
1665         from Yura Pakhuchiy
1667 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1669         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1671 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1673         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1674         Jeff Dike
1676         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1677         interface to return -errno in case of error.
1679 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1681         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1682         FreeBSD implementation so that it uses libc (sysctl backed) instead
1683         of an embdedded script (kmem backed). Adjust the control flow of
1684         hello_ll so that device doesn't get closed before unmount attempt.
1686 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1688         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1689         implement method.  This is needed on FreeBSD, and nicer on Linux
1690         too.  Highlevel lib already did this.  Reported by Csaba Henk
1692         * Fix negative entry handling.  There was a bug, that negative
1693         lookups with timeouts (nodeid == 0) returned -EIO.
1695 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1697         * Fix race between RELEASE and UNLINK, which might leave
1698         .fuse_hidden* files around
1700 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1702         * fusexmp_fh: implement flush() method and call close() on the
1703         open file descriptor.  This is needed if used on an NFS
1704         filesystem, which buffers data until file is closed.  Franco Broi
1705         spotted the situation when 'cp -p' failed to set the modification
1706         time because of this.
1708 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1710         * Released 2.6.0-pre1
1712 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1714         * libfuse: fix use-after-free bug in interruptred reply_entry().
1715         Patch from John Muir
1717         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1718         ID: 352631.  Found by Stéphane Rosi
1720 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1722         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1723         into a single function fuse_add_direntry().  This cleans up the
1724         interface and makes it possible to do stacking.
1726 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1728         * Fix rare race betweeen abort and release caused by failed iget()
1729         in fuse_create_open().
1731         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1732         own attribute caching.
1734 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1736         * Work around FreeBSD runtime linker "feature" which binds an old
1737         version of a symbol to internal references if the symbol has more
1738         than one version.  This resulted in infinite recursion in
1739         fuse_lowlevel_new_compat25().
1741 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1743         * Refine clock_gettime() querying so that linker options
1744         shall be set as it's appropriate for the target platform.
1746 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1748         * Fix udev rule syntax.  Reported by Nix
1750 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1752         * In some cases udev rule seems to be ineffective when installed
1753         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1755 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1757         * Fix compilation when build directory is different from source
1758         directory.  Reported by Frédéric L. W. Meunier
1760 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1762         * Fix even bigger bug introduced in fix for request_end() on
1763         2006-01-14.  Reported by Gal Rosen
1765 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1767         * highlevel-lib: add 'auto_cache' option.  This caches file data
1768         based on modification time and size
1770 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1772         * Sanitize storage type and help message in mount_bsd.c.  Patch
1773         from Csaba Henk
1775         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1776         FUSE_OPT_KEY_DISCARD
1778         * Add options 'max_readahead', 'sync_read' and 'async_read'
1780         * Kernel ABI version 7.6:
1782         * Negotiate the 'max_readahead' value and 'async_read' flags with
1783         userspace in the INIT method
1785         * Add connection info to ->init() methods to both lowlevel and
1786         highlevel API
1788         * Fall back to synchronous read() behavior if either library or
1789         userspace filesystem is using the old interface version.  This is
1790         needed so non-updated filesystems won't be confused by the
1791         different read() behavior
1793 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1795         * lib: if "fsname=" option was given, pass it to fusermount
1797         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1798         needed by filesystems to implement some argument manipulations
1799         correctly
1801         * fuse_opt: fix memory leak in handling "--" option
1803 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1805         * kernel: fix detection of case when fuse is not configured into
1806         the kernel either as module or built-in
1808         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1809         'template' structure member to 'templ'.  Reported by Takashi Iwai
1811         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1813         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1815 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1817         * Added (again) asynchronous readpages support
1819         * Each connection now shows up under /sys/fs/fuse/connections
1821         * Connection attributes exported to sysfs: 'waiting' number of
1822         waiting requests; 'abort' abort the connection
1824         * Connection may be aborted through either the sysfs interface or
1825         with 'umount -f mountpoint'
1827 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1829         * Released 2.5.0
1831 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1833         * kernel: fix a couple of bugs
1835         * Order of request_end() and fuse_copy_finish() was wrong.
1836         Posthumous note: Franco Broi managed to exploit this, though it
1837         seemed quite impossible
1839         * request_end() used request pointer after decrementing refcount
1841         * Clearing ->connected or ->mounted connection flags could race
1842         with setting other bitfields not protected with a lock
1844 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1846         * kernel: add necessary compile flags for 2.4.X/x86_64.
1847         Report from Sean Ziegeler
1849 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1851         * Released 2.5.0-pre2
1853 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1855         * Applied patch from Csaba Henk, to update mount_bsd to new
1856         fuse_mount() semantics
1858         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1859         Steiner and Don Taber
1861         * fusermount: add 'dirsync' mount option
1863 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1865         * Improved help reporting and added version reporting to library
1867 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1869         * Change working directory to "/" even if running in the
1870         foreground.  Patch from Jonathan Brandmeyer
1872         * Changed lots of functions to use 'struct fuse_args' instead of
1873         separate argc and argv
1875         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1876         fuse_remove_signal_handlers() functions, so that it's now pretty
1877         easy to get all the functionality of fuse_main() with a filesystem
1878         using the lowlevel API.
1880 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1882         * mount.fuse: the 'user' option should be ignored. Report and
1883         solution from Mattd.
1885         * mount.fuse: export PATH in the right place. Report and patch
1886         from Hannes Schweizer
1888 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1890         * Clean up the option parsing interface slightly, by creating an
1891         "argument list" structure, that contains the argument vector and
1892         count
1894 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1896         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1897         in that case
1899         * kernel: simplify request size limiting. INIT only contains
1900         maximum write size, maximum path component size remains fixed at
1901         1024 bytes, and maximum xattr size depends on read buffer.
1903 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1905         * Fix readdir() failure on x86_64, of 32bit programs compiled
1906         without largefile support.  Bug report and help from Anthony
1907         Kolasny
1909         * If lookup returns invalid mode, return -EIO instead of creating
1910         a regular file
1912         * Add current output argument vector to option processing
1913         function
1915 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1917         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1919 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1921         * Released 2.5.0-pre1
1923 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1925         * libfuse: added option parsing interface, defined in
1926         <fuse_opt.h>.
1928 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1930         * Return EIO for file operations (read, write, fsync, flush) on
1931         open files whose inode has become "bad".  Inodes will be marked
1932         "bad" if their type changes.  Bug report by Csaba Henk
1934 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1936         * Use bigger request buffer size.  write() did not work on archs
1937         with > 4k page size, Bug report by Mark Haney
1939         * ABI version 7.5:
1941         * Extend INIT reply with data size limits
1943 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1945         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1946         reported by Vincenzo Ciancia
1948         * Handle exit-by-umount in fuse_read_cmd()
1950 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1952         * Check if '-msoft-float' option is supported by compiler when
1953         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1955         * In multithreaded loop send a TERM signal to the main thread if
1956         one of the other threads exit.  Needed on FreeBSD for a clean exit
1957         on umount.  Should not cause any harm on Linux either
1959 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1961         * Fix bug in 32-bit file handle compatibility
1963 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1965         * Block TERM, INT, HUP and QUIT signals in all but the main
1966         thread.  According to POSIX it's not specified which thread will
1967         receive these signals.
1969         * Kernel changes:
1971         * Check for directory aliasing on mkdir, not just on lookup
1973         * Check for special node ID values in create+open operation
1975         * Sync with -mm: readv, writev, aio_read and aio_write methods
1976         added to file operations
1978         * Cleanups: lookup code, page offset calculation
1980         * ABI stepped to 7.4, changes:
1982         * frsize member added to fuse_kstatfs structure
1984         * added support for negative entry caching: on lowlevel API if
1985         fuse_entry_param::ino is set to zero in reply to a lookup request,
1986         the kernel will cache the dentry for the specified amount of time.
1988         * libfuse: added 'negative_timeout' option: specifies how much
1989         negative entries should be cached.  Default is zero, to be
1990         compatible with prior versions
1992 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1994         * Add detection of mainline FUSE code in running kernel
1996 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1998         * Don't use async cancelation in multithreaded loop.  This makes
1999         it more portable to systems where read() is not async cancel safe.
2000         Report from Andriy Gapon
2002 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
2004         * Warn if API version 11 compatibility is requested
2006 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
2008         * More FreeBSD merge
2010         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2011         them, because it corrupts /etc/mtab.  Found by Thomas Biege
2012         CVE-2005-3531
2014         * libfuse: don't use system() to invoke 'fusermount -u ...'
2015         because it breaks mountpoints with spaces in them into multiple
2016         arguments
2018 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
2020         * Merge library part of FreeBSD port.  Patch by Csaba Henk
2022 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
2024         * Use 64bit type for file handle, so the full range supported by
2025         the kernel interface is available to applications
2027 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
2029         * Moved mountpoint argument checking from fuse_parse_cmdline() to
2030         fuse_mount() in preparation to FreeBSD merge.
2032 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
2034         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
2035         Henk.
2037 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
2039         * Make the statfs change backwards compatible.
2041 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
2043         * Change ->statfs() method to use 'struct statvfs' instead of
2044         'struct statfs'.  This makes the API more portable since statvfs()
2045         is defined by POSIX.
2047 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
2049         * Add fgetattr() method, which currently will only be called after
2050         a successful call to a create() method.
2052 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
2054         * Change kernel ABI version to 7.3
2056         * Add ACCESS operation.  This is called from the access() system
2057         call if 'default_permissions' mount option is not given, and is
2058         not called on kernels 2.4.*
2060         * Add atomic CREATE+OPEN operation.  This will only work with
2061         2.6.15 (presumably) or later Linux kernels.
2063         * Add ftruncate() method.  This will only work with 2.6.15
2064         (presumably) or later Linux kernels.
2066         * Fix kernel module compile if kernel source and build directories
2067         differ.  Report and initial patch by John Eastman
2069 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
2071         * lib: optimize buffer reallocation in fill_dir.
2073 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
2075         * Released 2.4.1
2077 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
2079         * libfuse: add debug for write result (by Shaun Jackman) and
2080         warnings for too large read/write result
2082 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
2084         * Spelling fixes, thanks to Ioannis Barkas
2086 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
2088         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
2089         patch
2091 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
2093         * highlevel-lib: init() and destroy() methods didn't have an
2094         initialized fuse_context.  Bug reported by Tim Stoakes
2096 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
2098         * Released 2.4.0
2100 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
2102         * Add documentation to fuse_lowlevel.h
2104         * API cleanups:
2106         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2108         * Move fuse_mount() and fuse_unmount() to fuse_common.h
2110         * Change the return type of fuse_reply_none() from int to void.
2112 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
2114         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
2115         Akshat Aranya.
2117 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
2119         * fusermount: fix error message, when unable to open /dev/fuse.
2120         Report by Balázs Pozsár
2122 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
2124         * UClibc fixes from Christian Magnusson
2126 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
2128         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
2130 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2132         * Released 2.4.0-rc1
2134 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2136         * fusermount: allow user umount in the case when /etc/mtab is a
2137         symlink to /proc/mounts.  Reported by Balázs Pozsár.
2139 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
2141         * Check for special node ID values in lookup and creation
2143 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
2145         * Slight optimization in returning EINVAL error in case of an open
2146         with O_DIRECT flag.
2148 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
2150         * Remove '--enable-auto-modprobe' configure flag.  Module
2151         auto-loading is now handled by the kernel.
2153 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
2155         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2156         Help from Jens M. Noedler.
2158 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
2160         * Add memory cleanup on thread exit
2162 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
2164         * Set umask to zero in fusexmp and fusexmp_fh, so that
2165         files/directories are created with the requested mode.
2167 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
2169         * Don't ignore read error in multithreaded loop
2171 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2173         * Released 2.4.0-pre2
2175 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2177         * Revert lock and access operations.  Postpone these until 2.5.
2179 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
2181         * Fix compile warning on 2.6.13 and later
2183         * Fix compilation on old kernels
2185 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
2187         * lib: always refresh directory contents after rewinddir() to
2188         conform to SUS.  Bug found by John Muir.
2190 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
2192         * Released 2.4.0-pre1
2194 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
2196         * lib: cleaned up (or messed up, depending on your POV) the low
2197         level library API.  Hopefully this is close to the final form.
2199 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2201         * fusermount: don't allow empty mountpoint argument, which defeats
2202         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2204 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2206         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2207         option is used (Paul Alfille).
2209 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2211         * highlevel-lib: added mount options "attr_timeout" and
2212         "entry_timeout".  These options control the length of time file
2213         attributes and entries (names) are cached.  Both default to 1.0
2214         second.
2216         * kernel: correctly handle zero timeout for attributes and entries
2218 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2220         * Added missing symbols to versionscript (Joshua J. Berry)
2222         * kernel: implement two flags, open can set: 'direct_io' and
2223         'keep_cache'.  These correspond exactly to mount options
2224         'direct_io' and 'kernel_cache', but allow a per-open setting.
2226         * Move 'direct_io' and 'kernel_cache' mount option handling to
2227         userspace.  For both mount options, if the option is given, then
2228         the respective open flag is set, otherwise the open flag is left
2229         unmodified (so the filesystem can set it).
2231         * lib (highlevel): make open method optional
2233 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2235         * kernel: invalidate attributes for read/readdir/readlink
2236         operations
2238         * kernel: detect newer UML kernels
2240 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2242         * Make the installation path of fuse.ko and mount.fuse
2243         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2244         environment variables.  Requirement and help from Csaba Henk.
2246 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2248         * Fix bug, that causes filesystem requests to hang when unique
2249         request counter becomes negative.  This happens after
2250         2,147,483,648 operations, so most people won't care.  Thanks to
2251         Franco Broi for the report and testing.
2253 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2255         * Don't change mtime/ctime/atime to local time on read/write.
2256         Bug reported by Ben Grimm
2258         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2259         Magnusson
2261         * fusermount: use getopt_long() for option parsing.  It allows the
2262         use of '--' to stop argument scanning, so fusermount can now
2263         operate on directories whose names begin with a '-'.  Patch by
2264         Adam Connell
2266 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2268         * fusermount: add '-v', '--version' and '--help' options
2270         * add inode based API
2272 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2274         * lib: don't block signals in worker threads.  Problem noticed by
2275         Usarin Heininga
2277 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2279         * lib: don't allow both 'allow_other' and 'allow_root' options to
2280         be given
2282 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2284         * fusermount: check if mountpoint is empty (only '.' and '..' for
2285         directories, and size = 0 for regular files).  If "nonempty"
2286         option is given, omit this check.  This is useful, so users don't
2287         accidentally hide data (e.g. from backup programs).  Thanks to
2288         Frank van Maarseveen for pointing this out.
2290         * kernel: check if mandatory mount options ('fd', 'rootmode',
2291         'user_id', 'group_id') are all given
2293         * lib: simplify 'readdir_ino' handling
2295         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2297 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2299         * kernel: clean up 'direct_io' code
2301 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2303         * Add 'mount.fuse' written by Petr Klima
2305         * '/dev/fuse' is created by 'make install' if does not yet exist
2307 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2309         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2311 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2313         * Enable the auto-loading of the module via access to the
2314         corresponding device file.  Patch by Takashi Iwai.
2316         * Allow mounting a regular file (over a regular file) for
2317         unprivleged users.
2319         * Do not create temporary device file.  Require "/dev/fuse" to
2320         exist, and be readable/writable by the mounting user.
2322 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2324         * Released 2.3.0
2326 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2328         * Fix serious information leak: if the filesystem returns a short
2329         byte count to a read request, and there are non-zero number of
2330         pages which are not filled at all, these pages will not be zeroed.
2331         Hence the user can read out previous memory contents.  Found by
2332         Sven Tantau.
2334 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2336         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2337         field in struct dirent.  This mount option is ignored if "use_ino"
2338         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2339         non-Linux OS).  Patch by David Shaw.
2341 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2343         * Released 2.3-rc1
2345 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2347         * File save in krusader and other editors doesn't work with sshfs,
2348         because open() is interrupted by a periodic signal, and open()
2349         restarts forever, without any progress.  This could just be fixed
2350         in open(), but the problem is more generic: if signals are
2351         received more often than the filesystem can get the request to
2352         userspace, it will never finish.  This is probably only a
2353         theoretical problem, nevertheless I'm removing the possibility to
2354         interrupt requests with anything other than SIGKILL, even before
2355         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2357 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2359         * libfuse: add "tree_lock" rwlock, that is locked for write in
2360         rename, unlink and rmdir, and locked for read in all other
2361         operations.  This should fix the rename/release race reported by
2362         Valient Gough and others.  The solution is very coarse, a finer
2363         grained locking scheme could be implemented, but it would be much
2364         more complex.  Let's see whether this is good enough.
2366 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2368         * Released 2.3-pre7
2370 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2372         * Better fix for out of order FORGET messages.  Now the
2373         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2374         balance many lookups), so the order no longer matters.  This
2375         changes the kernel ABI slightly, but the library remains backward
2376         compatible.
2378 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2380         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2381         Franco Broi again.  Sorry :)
2383 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2385         * Released 2.3-pre6
2387 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2389         * Make fusermount work with fuse kernel modules not yet supporting
2390         the "group_id" option (added for the purpose of stricter
2391         permission checking).
2393 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2395         * Check for hard-linked directories in lookup.  This could cause
2396         problems in the VFS, which assumes that such objects never exist.
2398         * Make checking of permission for other users more strict.  Now
2399         the same privilege is required for the mount owner as for ptrace
2400         on the process performing the filesystem operation.
2402 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2404         * Released 2.3-pre5
2406 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2408         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2409         is needed on certain architectures.  Report from Chris Kirby
2411         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2412         Reported by David Shaw
2414         * Remove "allow_root" option from kernel module, and implement
2415         it's functionality in the library
2417         * Fix Oops caused by premature release of fuse_conn.  Clean up
2418         related code, to be more readable
2420         * Sendfile should not use page cache if "direct_io" mount option
2421         is given
2423 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2425         * Fix Oops in case of nfs export.  Spotted by David Shaw
2427         * Fix another Oops in case of write over nfs with direct_io turned
2428         on.  Again spotted by David Shaw
2430 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2432         * Released 2.3-pre4
2434 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2436         * lib: finalized new readdir() interface, which now supersedes the
2437         getdir() method.
2439 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2441         * Released 2.3-pre3
2443 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2445         * Implement backward compatibility with version 5 kernel ABI
2447 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2449         * Released 2.3-pre2
2451 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2453         * kernel: fix dirent offset handling
2455         * lib: add readdir and releasedir methods
2457         * lib: use fh field of fuse_file_info in opendir, readdir,
2458         releasedir and fsyncdir methods
2460         * lib: check kernel API version and bail out of it's old.  This
2461         will be properly fixed in the next release
2463 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2465         * Released 2.3-pre1
2467 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2469         * kernel API: add padding to structures, so 64bit and 32bit
2470         compiler will return the same size
2472         * kernel API: add offset field to fuse_dirent.  This will allow
2473         more sophisticated readdir interface for userspace
2475         * kernel API: change major number to 6
2477         * kernel: fix warnings on 64bit archs
2479         * kernel: in case of API version mismatch, return ECONNREFUSED
2481 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2483         * kernel: trivial cleanups
2485 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2487         * Add fsyncdir() operation
2489 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2491         * kernel: add locking to background list (fixes previous fix)
2493 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2495         * kernel: fix bug which could cause leave busy inodes after
2496         unmount, and Oops.
2498 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2500         * examples: add -lpthread to link flags to work around valgrind
2501         quirk
2503         * lib: don't exit threads, so cancelation doesn't cause segfault
2505 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2507         * kernel: fix nasty bug which could cause an Oops under certain
2508         situations.  Found by Magnus Johansson
2510 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2512         * libfuse: added opendir() method.  This can be used in case
2513         permission checking in getdir() is too late.  Thanks to Usarin
2514         Heininga for pointing out this deficiency
2516         * libfuse: added init() and destroy() methods to fuse_operations
2518         * kernel: llseek() method for files and directories made explicit
2520         * kernel: fixed inode leak in NFS export in case of nodeid
2521         wrapping
2523 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2525         * libfuse: clean up some unitialized memory found with valgrind
2527         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2528         explicitly linked libpthread for applications
2530 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2532         * fusermount: set umask, otherwise /etc/mtab will have
2533         unpredictable permission.  Spotted by Jindrich Kolorenc
2535         * fusermount: set owner and group of /etc/mtab to original values
2536         on unmount
2538         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2540 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2542         * Cleaned up directory reading (temporary file is not used)
2544 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2546         * Released 2.2
2548 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2550         * Fix possible race when operation is interrupted
2552 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2554         * Fix compilation on 2.6.7
2556 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2558         * Released 2.2-pre6
2560 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2562         * Fix bug in link() operation which caused the wrong path to be
2563         passed as the first argument.  Found by Anton Altaparmakov
2565 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2567         * LIB: fix double reply in readdir operation
2569         * fusermount: fix uid checking bug.  Patch by Adam Connell
2571         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2572         Patch by Keshava Gowda
2574 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2576         * KERNEL: provide correct llseek semantics for fuse device (fixes
2577         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2579 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2581         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2583 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2585         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2586         and RELEASEDIR.  This ends the ugly hack of passing a file
2587         descriptor to the kernel, and actually makes the code simpler.
2589 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2591         * Released 2.2-pre4
2593 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2595         * fusermount: remove capability setting, which was the cause of
2596         problems for some users.  It seems that FS related capabilities
2597         are removed by setfsuid(), so this isn't even needed.
2599 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2601         * fix compilation on 2.4 kernels (reported by Valient Gough)
2603         * fix failure to unmount bug (found by David Shaw)
2605         * fusermount: improve parsing of /etc/fuse.conf
2607 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2609         * Remove 'mount_max' and 'user_allow_other' module options.  These
2610         are now checked by fusermount, and can be set in /etc/fuse.conf
2612         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2614 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2616         * KERNEL: fix possible inode allocation problem, where
2617         sizeof(struct inode) is not aligned (found by Mike Waychison)
2619         * KERNEL: use new follow_link/put_link methods
2621         * KERNEL: cosmetic fixes
2623 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2625         * Released 2.2-pre3
2627 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2629         * Add missing code that was accidently left out
2631 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2633         * Released 2.2-pre2
2635 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2637         * Change "uid" mount option to "user_id" to avoid confusion with a
2638         mount option "uid" commonly used by many filesystems
2640 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2642         * Released 2.2-pre1
2644 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2646         * If FUSE is configured in the kernel, don't build it by default
2648 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2650         * Compile fix by Christian Magnusson
2652 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2654         * Fix compilation for 2.6.{0-5} kernels
2656 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2658         * KERNEL: if request is interrupted, still keep reference to used
2659         inode(s) and file, so that FORGET and RELEASE are not sent until
2660         userspace finishes the request.
2662         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2663         request with the same information, which is more flexible,
2664         simpler, works on embedded systems.
2666 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2668         * KERNEL ABI: update interface to make it independent of type
2669         sizes.  This will help on 64 bit architectures which can run
2670         legacy 32 bit applications.
2672         * KERNEL ABI: add "len" field to request headers.  This will allow
2673         sending/receiving requests in multiple chunks.
2675         * KERNEL: handle file type change more intelligently
2677         * LIB: "-o debug" option should disable backgrounding (fix by
2678         Fabien Reygrobellet)
2680 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2682         * KERNEL: invalidate dentry/attributes if interrupted request
2683         could leave filesystem in an unknown state.
2685 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2687         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2688         These will cause some regressions, but stability is considered
2689         more important.  If any of these features turns out to be
2690         important, it can be readded with the deadlock problems addressed.
2692         * Make all requests interruptible (only with SIGKILL currently).
2693         This can be used to break any deadlock produced by the userspace
2694         filesystem accessing it's own exported files.  The RELEASE request
2695         is special, because if it's interrupted before sending it to
2696         userspace it is still sent, but the reply is not awaited.
2698         * If request is interrupted before being sent to userspace, and if
2699         it hasn't yet got any side effects, it is always restarted,
2700         regardless of the SA_RESTART flag.  This makes these interruptions
2701         transparent to the process.
2703         * Remove shared-writable mmap support, which was prone to an
2704         out-of-memory deadlock situation
2706         * Remove INVALIDATE userspace initiated request
2708         * Make readpages() synchronous.  Asynchronous requests are
2709         deadlock prone, since they cannot be interrupted.
2711         * Add readv/writev support to fuse device operations
2713         * Remove some printks, which userspace FS can use for a DoS
2714         against syslog
2716         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2717         fusermount instead
2719         * LIB: improve compatibility with a fuse.h header installed in
2720         ${prefix}/include which in turn includes the real header.
2722         * LIB: improve compatibility by defining fuse_main() (which is now
2723         not used), so old configure scripts find it.
2725 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2727         * When mounting on a subdirectory of / don't duplicate slashes at
2728         the beggining of path (spotted by David Shaw)
2730 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2732         * Fix bug causing garbage in mount options (spotted by David Shaw)
2734 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2736         * Add 'writepage' flag to 'fuse_file_info'.
2738         * More comments in fuse.h
2740         * Get rid of double underscores
2742 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2744         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2746         * helper.c: add -ho option, which only displays the options not
2747         the usage header.  This can be used by filesystems which have
2748         their own options.
2750 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2752         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2753         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2754         including the fuse header
2756         * Add binary compatibility to 2.1 version of library with symbol
2757         versioning
2759 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2761         * Released 2.1
2763 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2765         * kernel: clean up writing functions
2767         * kernel: no allocation on write in direct_io mode
2769         * move linux/fuse.h to fuse_kernel.h
2771 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2773         * kernel: clean up reading functions
2775 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2777         * kernel: make readpage() uninterruptible
2779         * kernel: check readonly filesystem flag in fuse_permission
2781         * lib: don't die if version file not found and new style device
2782         exists
2784         * lib: add '-r' option, which is short for '-o ro'
2786         * fusermount: simplify device opening
2788         * kernel: when direct_io is turend on, copy data directly to
2789         destination without itermediate buffer.  More efficient and safer,
2790         since no allocation is done.
2792         * fusermount: fix warning if fuse module is not loaded
2794         * kernel: use /dev/fuse on 2.4 too
2796 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2798         * libfuse API change: open, read, write, flush, fsync and release
2799         are passed a 'struct fuse_file_info' pointer containing the open
2800         flags (open and release), and the file handle.  Verion changed to
2801         3.0.
2803 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2805         * More cleanups in the kernel
2807         * The 10,229 charater device number has been assigned for FUSE
2809         * Version file checking fix (reported by Christian Magnusson)
2811         * fusermount: opening the fuse device now doesn't need /sys.
2813         * Optimize reading by controlling the maximum readahead based on
2814         the 'max_read' mount option
2816         * fixes for UCLIBC (Christian Magnusson)
2818 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2820         * Cleaned up kernel in preparation for merge into mainline:
2822         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2824         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2826         * __user annotations for sparse
2828         * allocate individual pages instead of kmalloc in fuse_readdir,
2829         fuse_read and fuse_write.
2831         * Fix NFS export in case "use_ino" mount option is given
2833         * Make libfuse and fusermount compatible with future versions
2835         * fusermount: properly add mount options to /etc/mtab
2837 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2839         * fusermount: do not resolve last component of mountpoint on if it
2840         is '.' or '..'.  This new path resolvation is now done on mount as
2841         well as unmount.  This enables relative paths to work on unmount.
2843         * fusermount: parse common mount options like "ro", "rw", etc...
2845         * Allow module params to be changed through sysfs
2847 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2849         * Released 2.1-pre1
2851 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2853         * Fix bug in fuse_readpages() causing Oops in certain situations.
2854         Bug found by Vincenzo Ciancia.
2856         * Fix compilation with kernels versions > 2.6.9.
2858 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2860         * Check kernel interface version in fusermount to prevent
2861         strangeness in case of mismatch.
2863         * No need to allocate fuse_conn until actual mount happens
2865         * Fix potential race between umount and fuse_invalidate
2867         * Check superblock of proc file in addition to inode number
2869         * Fix race between request_send_noreply() and fuse_dev_release()
2871 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2873         * Separate configure for the kernel directory
2875         * Don't allow write to return more than 'count'
2877         * Extend kernel interface for future use
2879 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2881         * Fix 'makeconf.sh' to use autoreconf if available
2883 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2885         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2886         compatibility with earlier versions.  To compile earier versions
2887         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2888         Do not use the "use_ino" mount flag with filesystems compiled with
2889         FUSE_DIRFIL_COMPAT.
2891         * Add pkg-config support.  To compile a FUSE based filesystem you
2892         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2893         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2894         usually needs to be set to "/usr/local/lib/pkgconfig".
2896         * fuse.h is now installed in ${prefix}/include/fuse/
2898 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2900         * Added "use_ino" mount option.  This enables the filesystems to
2901         set the st_ino field on files
2903 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2905         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2906         by Jeremy Smith)
2908         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2910         * Clear the 'exited' flag when mail loop is finished
2912 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2914         * Make xattr functions work under 2.6 (bug found by Vincenzo
2915         Ciancia)
2917 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2919         * Reset request in fuse_flush() (bugreport by David Shaw)
2921 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2923         * fuse_main() now does not exit on error, rather it returns an
2924         error code
2926         * Exported __fuse_setup() and __fuse_teardown() functions, which
2927         make it easier to implement a custom event loop.
2929         * Use daemon() call to background the filesystem after mounting.
2930         This function closes the standard input, output and error and
2931         changes the current working directory to "/".
2933 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2935         * Released 1.9
2937 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2939         * Don't allow fuse_flush() to be interrupted (bug found by David
2940         Shaw)
2942 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2944         * Add PID to fuse_context.  Patch by Steven James
2946         * Change file handle type to 'unsigned long' in kernel interface
2948 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2950         * A slight API change: fuse_get_context() doesn't need the "fuse"
2951         pointer, but the returned context contains it instead.  The
2952         fuse_get() function is not needed anymore, so it's removed.
2954         * Fix mounting and umounting FUSE filesystem under another FUSE
2955         filesystem by non-root (bug spotted by Valient Gough)
2957 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2959         * Fix deadlock in case of memory allocation failure.  Patch by
2960         Christian Magnusson
2962 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2964         * Check memory allocation failures in libfuse
2966 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2968         * Check temporary file creation failure in do_getdir().  Bug
2969         spotted by Terje Oseberg
2971 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2973         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2975         * Make requests non-interruptible so race with FORGET is avoided.
2976         This is only a temporary solution
2978         * Support compiling FUSE kernel module on 2.4.x UML kernels
2980 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2982         * Fix bug in case two FORGETs for the same node are executed in
2983         the wrong order.  Bug spotted and endured for months by Franco
2984         Broi, and logfile for solution provided by Terje Oseberg
2986 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2988         * Add -D_REENTRANT to the compile flags
2990         * Add documentation of fuse internals by Terje Oseberg
2992 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2994         * Change release method to be non-interruptible.  Fixes bug
2995         causing missing release() call when program which has opened files
2996         is killed (reported by Franco Broi and David Shaw)
2998 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
3000         * Add fuse_invalidate() to library API
3002 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
3004         * Check permissions in setattr if 'default_permissions' flag is
3005         set.  Bug spotted by Damjan Lango
3007 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
3009         * 'large_read' mount option removed for 2.6 kernels, since the
3010         default (dynamic read size) is better
3012         * Extend kernel API with file handles.  A file handle is returned
3013         by open, and passed to read, write, flush, fsync and release.
3014         This is currently only used for debug output in the library.
3016         * Security changes:
3018         * Change the current directory to the mountpoint before checking
3019         the permissions and mount filesystem on "."
3021         * By default don't modprobe the fuse module for non-root.  The old
3022         behavior can be restored with the '--enable-auto-modprobe' flag of
3023         ./configure
3025         * By default don't allow shared writable mappings for non-root.
3026         The old behavior can be restored with the 'user_mmap=1' module
3027         parameter
3029 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
3031         * Clean up mount option passing to fusermount and to fuse_new()
3032         BEWARE: this changes the userspace API slightly, and the command
3033         line usage of programs using fuse_main()
3035 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
3037         * Optimize reading under 2.6 kernels by issuing multiple page
3038         asynchronous read requests
3040 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
3042         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3044 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
3046         * Separate directory entry and inode attribute validity timer
3048         * New write semaphore to stop page writeback during truncate
3050         * Fsync now waits for all writes to complete before sending the
3051         request
3053         * Optimization: if a page is completely written by
3054         fuse_commit_write(), clear the dirty flag and set the uptodate
3055         flag for that page
3057         * Some memory cleanup at exit
3059 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
3061         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3062         disable the "hide if open" behavior of unlink/rename.
3064         * If temporary buffer allocation fails in raw read, fall back to a
3065         smaller buffer
3067 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
3069         * Fix bug in do_open() in libfuse: open count was incremented
3070         after the reply is sent so it could race with unlink/forget and
3071         cause an abort.
3073 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
3075         * When performing create or remove operation, refresh the parent's
3076         attributes on next revalidate, as i_nlink (and maybe size/time)
3077         could be inacurate.
3079         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3080         pages (2.6 only)
3082         * Set set_page_dirty address space operation (2.6 only)
3084 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
3086         * Minor fix in read:  print debug info even if read size is zero
3088 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
3090         * Fix race between truncate and writepage (fsx-linux now runs
3091         without error)
3093 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
3095         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3096         by Mattias Wadman)
3098         * Added option for direct read/write (-r)
3100         * Fix revalidate time setting for newly created inodes
3102         * Remove uid==0 check for '-x' option in fusermount (kernel checks
3103         this)
3105         * fuse_main() only installs handlers for signals (out of INT, HUP,
3106         TERM, PIPE), for which no handler has yet been installed
3108         * Add module option 'user_allow_other' which if set to non-zero
3109         will allow non root user to specify the 'allow_other' mount option
3110         ('-x' option of fusermount)
3112         * Fix deadlock between page writeback completion and truncate
3113         (bug found by Valient Gough with the fsx-linux utility)
3115 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
3117         * Change passing fuse include dir to 2.6 kernel make system more
3118         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3119         kernel)
3121 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
3123         * Acquire inode->i_sem before open and release methods to prevent
3124         concurrent rename or unlink operations.
3126         * Make __fuse_read_cmd() read only one command.  This allows
3127         multiplexing the fuse file descriptor with other event sources
3128         using select() or poll() (patch by Jeff Harris)
3130         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3132 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
3134         * Fix file offset wrap around at 4G when doing large reads
3136 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3138         * Fix memory leak in open (Valient Gough)
3140 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3142         * Add "close after delete" support to libfuse (patch by Valient
3143         Gough)
3145         * Cancel all worker threads before exit in multithreaded mode
3147 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
3149         * Fix locking bugs
3151         * Don't send reply to RELEASE
3153         * Work with newer libtool (1.5a)
3155         * Check for st_atim member of struct stat
3157 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
3159         * No request allocation needed on inode and file release
3161 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
3163         * Fix possible inode leak in userspace in case of unfinished
3164         lookup/mknod/mkdir/symlink/link operation.
3166 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
3168         * Fix some races and cleanups in fuse_read_super()
3170 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
3172         * Requests are allocated at open time
3174 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
3176         * Build shared library as well as static (using libtool)
3178         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
3179         there has not been a release with the previous minor number, and I
3180         hope nobody is using it for anything.
3182         * Change fuse_main(), so that default behavior is to go into
3183         background if mount is successful.  '-f' and '-d' options disable
3184         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
3185         newbie complaint.
3187         * Cache ENOSYS (function not implemented) errors on *xattr, flush
3188         and fsync
3190         * Don't call getdir method from open() only from first readdir().
3191         Open is sometimes just used to store the current directory
3192         (e.g. find)
3194 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
3196         * Added flush() call
3198 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3200         * Extended attributes support for 2.4 (patch by Cody Pisto)
3202 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3204         * Fixed parser with modversions (Mattias Wadman)
3206 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3208         * Added mount option parser to 2.4 build
3210 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3212         * Replaced binary mount data with text options
3214         * Show FUSE specific mount options in /proc/mounts
3216         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3218 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3220         * Check some limits so userspace won't get too big requests
3222 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3224         * Kill compile warning
3226         * Upgraded user-mount patch for 2.6.5
3228 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3230         * Add detection of user-mode-linux to configure
3232 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3234         * fixed zero size case for getxattr and listxattr
3236 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3238         * new fusermount flag '-z': lazy unmount, default is not lazy
3240         * Extended attributes operations added (getxattr, setxattr,
3241         listxattr, removexattr)
3243 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3245         * If filesystem doesn't define a statfs operation, then an
3246         all-zero default statfs is returned instead of ENOSYS
3248 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3250         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3252 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3254         * Fix for uClinux (Christian Magnusson)
3256 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3258         * fuse_main() adds "-n progname" to the fusermount command line
3260         * More kernel interface changes:
3262         * Lookup/getattr return cache timeout values
3264 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3266         * Clean up option parsing in fuse_main()
3268         * Added fuse_get() function which returns the fuse object created
3269         by fuse_main()
3271 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3273         * removed old way of mounting (fusermount mountpoint program)
3275         * more kernel interface changes:
3277         * added nanosecond precision to file times
3279         * removed interface version from mount data
3281         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3283 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3285         * statfs library API changed to match other methods.  Since this
3286           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3288         * kernel interface changes follow:
3290         * statfs changed to 64 bits, added 'bavail' field
3292         * add generation number to lookup result
3294         * optimized mknod/mkdir/symlink/link (no separate lookup is
3295         needed)
3297         * rdev size increased to 32 bits for mknod
3299         * kernel interface version changed to 3.1
3301 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3303         * user-mount upgraded for 2.6.3 kernel
3305 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3307         * Added user-mount.2.6.2-rc3.patch
3309         * Add FS_SAFE flag to fuse filesystem
3311         * fusermount should allow (un)mounting for non-root even if not
3312         suid-root
3314 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3316         * Remove MS_PERMISSION mount flag (that means something else now)
3318 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3320         * Added check for i_size_read/write functions to configure.in
3321         (patch by Valient Gough)
3323 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3325         * Fixed writing >= 2G files
3327         * Check file size on open (with generic_file_open())
3329         * Readpage calls flush_dcache_page() after storing data
3331         * Use i_size_read/write for accessing inode->i_size
3333         * Make loopback mount of a fuse file work
3335 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3337         * Released 1.1
3339 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3341         * Properly check if the inode exists in fuse_invalidate
3343 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3345         * Added -q option for fusermount
3347         * fuse_unmount() now uses -q option of fusermount, so no error is
3348         printed if the cause of the program exit is that the filesystem
3349         has already been unmounted
3351         * Fix i_nlink correctness after rmdir/unlink
3353 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3355         * Released 1.1-pre2
3357 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3359         * Fix typo (thanks Marcos Dione)
3361         * Compile fixes for 2.4 kernels
3363 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3365         * Fix CONFIG_MODVERSIONS compile on 2.6
3367 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3369         * Write all pending data before a RELEASE operation
3371         * Suppress 'Bad file descriptor' warning on exit
3373         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3374         get confused with '-d' of fuse_main() (sorry about this change)
3376         * New fusermount option '-l' which enables big reads.  Big reads
3377         are now disabled by default.
3379         * fuse_main() can accept fusermount arguments after a '--'
3381 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3383         * Support for exporting filesystem over NFS (see README.NFS)
3385 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3387         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3388         much more nicely in low-memory situations
3390         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3391         (Note: the mknod method does not yet use 32bit device number)
3393 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3395         * Code cleanups
3397 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3399         * Released 1.1-pre1
3401 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3403         * Integrated 2.6 kernel support patch by Michael Grigoriev
3405         * Improvements and cleanups for 2.6 kernels
3407 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3409         * Added -d option to fusermount
3411 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3413         * Added major+minor version to library API, and minor version to
3414           kernel API
3416 2003-12-13  David McNab <david@rebirthing.co.nz>
3418         * Implemented fsync support in examples/example.py
3420         * Implemented 'fsync' and 'statfs' methods in python
3421           interface
3423 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3425         * Make it compile on 2.4.19.
3427         * Add fsync operation (write file failed on xemacs & vi)
3429 2003-12-12  David McNab <david@rebirthing.co.nz>
3431         * Added distutils support to the python module, as per standard
3432           python development practice
3434 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3436         * Add file locking for mount/unmount (based on patch by Valient
3437         Gough)
3439 2003-12-11  David McNab <david@rebirthing.co.nz>
3441         * Python filesystem - was broken with python2.3, now fixed:
3442            - changed PyTuple_* calls to PySequence_*, because os.lstat
3443              is no longer returning a pure tuple
3444            - changed PyInt_Check() calls to also call PyLong_Check,
3445              to cover for cases (eg os.lstat) where longs are returned
3446            - Added support for file 'release' handling, which IMO is
3447              essential since this signals to a FS that writes to a file
3448              are complete (and therefore the file can now be disposed of
3449              meaningfully at the python filesystem's discretion)
3450            - Added '__init__' handler to base Fuse class, which allows
3451              your Python class to know the mountpoint and mount args,
3452              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3454         * General:
3455            - added 'mount.fuse' script (in util/ dir), which is meant to be
3456              symlinked from /sbin, and which allows FUSE filesystems to
3457              be mounted with the 'mount' command, and listed in fstab;
3458              also, mount arguments get passed to your filesystem
3461 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3463         * Fix kernel version detection (again).  Bugreport by Peter Levart
3465 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3467         * Applied read combining patch by Michael Grigoriev (tested by
3468         Valient Gough and Vincent Wagelaar)
3470 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3472         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3473         #766443)
3475 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3477         * Error code fixes in kernel module
3479 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3481         * kernel version detection fix
3483         * fusermount now uses "lazy" umount option
3485         * fusermount can use modprobe with module-init-tools
3487 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3489         * Integrated caching patch by Michael Grigoriev
3491         * Added "Filesystems" file with descriptions of projects using
3492         FUSE
3494         * Added patch by Michael Grigoriev to allow compliation of FUSE
3495         kernel module for 2.6 kernels
3497 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3499         * And another spec-file fix by Achim Settelmeier
3501 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3503         * Spec-file fix by Achim Settelmeier
3505 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3507         * Fix umount oops (found by Samuli Kärkkäinen)
3509 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3511         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3513 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3515         * Updated fuse.spec file (Achim Settelmeier)
3517 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3519         * Version 1.0 released
3521 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3523         * SuSE compilation fix by Juan-Mariano de Goyeneche
3525 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3527         * The release() VFS call is now exported to the FUSE interface
3529 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3531         * 64 bit file offset fixes in the fuse kernel module
3533         * Added function 'fuse_exit()' which can be used to exit the main
3534         loop
3536 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3538         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3539         an incompatible interface change.
3541 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3543         * Portablility fix (bug reported by C. Chris Erway)
3545 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3547         * Use Mark Glines' fd passing method for default operation instead
3548         of old reexec
3550 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3552         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3554 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3556         * fix incompatiblity with Red Hat kernels, with help from Nathan
3557         Thompson-Amato.
3559 2002-04-18  Mark Glines <mark@glines.org>
3561         * added an alternative to fuse_mount(), called
3562       fuse_mount_ioslave(), which does not need to reexec the
3563       FUSE program.
3564         * added a small helper util needed by fuse_mount_ioslave().
3566 2002-03-16  Mark Glines <mark@glines.org>
3568         * use struct fuse_statfs everywhere possible to avoid problems
3569       with the headerfiles changing struct statfs member sizes
3571 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3573         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3575 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3577         * RPM support by Achim Settelmeier
3579 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3581         * Version 0.95 released
3583 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3585         * Revaidate all path components not just the last, this means a
3586         very small performance penalty for being more up-to-date.
3588 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3590         * Update and fix python interface
3592 2002-01-07  Mark Glines <mark@glines.org>
3594         * Added statfs() support to kernel, lib, examples, and perl!
3596 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3598         * Better cross compilation support
3600         * Ported to Compaq IPAQ
3602 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3604         * Added function fuse_get_context() to library API (inspired by
3605         patch from Matt Ryan)
3607         * Added flags to fusermount and to kernel interface to control
3608         permission checking
3610         * Integrated fuse_set_operations() into fuse_new()
3612 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3614         * Applied header protection + extern "C" patch by Roland
3615         Bauerschmidt
3617 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3619         * Added perl bindings by Mark Glines
3621 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3623         * Cleaned up way of mounting simple filesystems.
3625         * fuse_main() helper function added
3627 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3629         * Optimized read/write operations, so that minimal copying of data
3630         is done
3632 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3634         * Python bindings by Jeff Epler added
3636 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3638         * Fixed vfsmount reference leak in fuse_follow_link
3640         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3641         userspace is ignored
3643 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3645         * Started ChangeLog