libfuse: fix possible memory leak
[fuse.git] / ChangeLog
blob53a5bcc12e0024415548abbf54d17ab0c62c65db
1 2015-06-29  Miklos Szeredi <miklos@szeredi.hu>
3         * libfuse: fix possible memory leak.  Reported by Jose R. Guzman
5 2015-05-26  Miklos Szeredi <miklos@szeredi.hu>
7         * Use system directory for system-wide udev rules by default. This
8         ensures that fuse functions correctly on stateless operating
9         systems without requiring use of the site configuration directory
10         (/etc/).  Patch by Ikey Doherty
12 2015-05-22  Miklos Szeredi <miklos@szeredi.hu>
14         * libfuse: fix exec environment for mount and umount.  Found by
15         Tavis Ormandy (CVE-2015-3202).
17 2015-04-23  Miklos Szeredi <miklos@szeredi.hu>
19         * libfuse: add FUSE_CAP_NO_OPEN_SUPPORT flag to ->init()
21 2015-02-26  Miklos Szeredi <miklos@szeredi.hu>
23         * libfuse: fix fuse_remove_signal_handlers() to properly restore
24         the default signal handler.  Reported by: Chris Johnson
26         * libfuse: fix handling of '.' and '..' in highlevel readdirplus
28 2014-07-21  Miklos Szeredi <miklos@szeredi.hu>
30         * libfuse: highlevel API: fix directory file handle passed to
31         ioctl() method.  Reported by Eric Biggers
33 2014-07-15  Miklos Szeredi <miklos@szeredi.hu>
35         * libfuse: document deadlock avoidance for
36         fuse_notify_inval_entry() and fuse_notify_delete()
38         * fusermount, libfuse: send value as unsigned in "user_id=" and
39         "group_id=" options.  Uids/gids larger than 2147483647 would
40         result in EINVAL when mounting the filesystem.  This also needs a
41         fix in the kernel.
43         * libfuse: add "time_gran" option.  This allows the filesystem to
44         specify the time granularity it supports when the kernel is
45         responsible for updating times ("writeback_cache" option).
47         * libfuse: allow setting ctime in ->setattr()
49         * libfuse: add flags to ->rename().  See renameat2() system call
50         in linux-3.15 and later kernels.
52 2014-03-26  Miklos Szeredi <miklos@szeredi.hu>
54         * Initialize stat buffer passed to ->getattr() and ->fgetattr() to
55         zero in all cases.  Reported by Daniel Iwan
57 2014-03-05  Miklos Szeredi <miklos@szeredi.hu>
59         * libfuse: implement readdirplus for high-level API.  Reuse the
60         old "readdir" callback, but add a flags argument, that has
61         FUSE_READDIR_PLUS in case this is a "plus" version.  Filesystems
62         can safely ignore this flag, but if they want they can add
63         optimizations based on it: i.e. only retrieve the full attributes
64         in PLUS mode.  The filler function is also given a flags argument
65         and the filesystem can set FUSE_FILL_DIR_PLUS if all the
66         attributes in "stat" are valid.  Original patch by Eric Wong
68 2014-02-21  Miklos Szeredi <miklos@szeredi.hu>
70         * libfuse: added fuse_lo-plus.c to the examples
72 2014-02-04  Miklos Szeredi <miklos@szeredi.hu>
74         * libfuse: Don't use constructor functions for loading modules.
75         Original patch by Fabrice Bauzac
77 2014-01-29  Miklos Szeredi <miklos@szeredi.hu>
79         * libfuse: Add "async_dio" and "writeback_cache" options.
80         Asynchronous direct I/O is supported by linux kernels 3.13 and
81         later, writeback caching is supported by 3.14 and later.
83 2013-08-26  Miklos Szeredi <miklos@szeredi.hu>
85         * libfuse: Add missing includes.  This allows compiling fuse with
86         musl.  Patch by Daniel Thau
88 2013-07-26  Miklos Szeredi <miklos@szeredi.hu>
90         * Print help on stdout instead of stderr
92 2013-07-25  Miklos Szeredi <miklos@szeredi.hu>
94         * libfuse: fuse -> fuse3.  Allow 2.X and 3.X to coexist.  Includes
95         are now stored under /usr/include/fuse3 and library is named
96         libfuse3.*.  Invoke pkg-config with "fuse3" as the first argument
97         to build with version 3 of the library.
99         * ulockmgr: strip ulockmgr support from this source package and
100         distribute it separately.  It is not needed for the building of
101         libfuse, only fusexmp_fh.  Check ulockmgr library in ./configure
102         and if not disable remote-lock suport in fusexmp_fh.
104 2013-07-24  Miklos Szeredi <miklos@szeredi.hu>
106         * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
107         AC_SYS_LARGEFILE to your configure.ac instead.
109 2013-06-21  Miklos Szeredi <miklos@szeredi.hu>
111         * libfuse: set FD_CLOEXEC also when receiving device fd from
112         fusermount
114 2013-06-20  Miklos Szeredi <miklos@szeredi.hu>
116         * libfuse: fix multiple close of device fd.  Reported by Dan
117         Greenfield
119 2013-03-19  Miklos Szeredi <miklos@szeredi.hu>
121         * libfuse: fix thread cancel race.  Exiting a worker my race with
122         cancelling that same worker.  This caused a segmenation
123         fault. Reported and tested by Anatol Pomozov
125 2013-02-20  Miklos Szeredi <miklos@szeredi.hu>
127         * libfuse: change the type of fuse_ino_t from 'unsigned long' to
128         'uint64_t'
130         * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
131         Patch by Richard W.M. Jones
133         * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
134         Patch by Richard W.M. Jones
136 2013-02-19  Miklos Szeredi <miklos@szeredi.hu>
138         * fuse_daemonize(): chdir to "/" even if not running in the
139         background for consistency.  Reported by Vladimir Rutsky
141 2013-02-18  Miklos Szeredi <miklos@szeredi.hu>
143         * fuse_opt_parse(): when storing a newly allocated string for
144         format "%s", free the previous value stored at that location.
145         Reported by Marco Schuster
147 2013-02-07  Miklos Szeredi <miklos@szeredi.hu>
149         * libfuse: add readdirplus support in fuse_lowlevel_ops.  Patch by
150         Feng Shuo
152         * libfuse: add poll_events to fuse_file_info.  Patch by Enke Chen
154         * libfuse: fix fs cleanup.  Reported by Eric Wong
156         * libfuse: pass security context options to kernel.  Patch by
157         Dalvik Khertel
159         * libfuse: remove deprecated features:
160         - fuse_is_lib_option()
161         - fuse_invalidate()
162         - fuse_set_getcontext_func()
163         - fuse_loop_mt_proc()
164         - fuse_read_cmd()
165         - fuse_process_cmd()
166         - fuse_setup()
167         - fuse_teardown()
168         - fuse_exited()
169         - fuse_lowlevel_is_lib_option()
170         - fuse_operations.getdir()
171         - fuse_operations.utime()
172         - fuse_operations.utime_omit_ok
174 2013-02-06  Miklos Szeredi <miklos@szeredi.hu>
176         * libfuse: set close-on-exec flag on pipe file descriptors.  Patch
177         by Eric Wong
179         * libfuse: add missing INIT flags
181 2013-02-05  Miklos Szeredi <miklos@szeredi.hu>
183         * libfuse: fix fuse_get_context() in non fuse threads.  Reported
184         by Michael Berlin
186 2013-02-04  Miklos Szeredi <miklos@szeredi.hu>
188         * libfuse: fix crash in unlock_path().  Patch by Ratna Manoj
190         * libfuse: fix the 'remember' option.  The lru list was not
191         initialized for the "/" path.  This resulted in remove_node_lru()
192         crashing on LOOKUP-DOTDOT.  Patch by Madan Valluri
194         * libfuse: configure: detect new util-linux
196         * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
197         Patch by Anatol Pomozov
199         * libfuse: rename ./configure.in to ./configure.ac.  Patch by
200         Anatol Pomozov
202 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
204         * Released 2.9.2
206 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
208         * Fix deadlock in libfuse.  Running "svn update" on a fuse
209         filesystem could deadlock because of a bug in the way the paths
210         are locked.  Reported by Kazuaki Anami
212 2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
214         * Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee
216 2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
218         * Not unhashing the name in forget (commit on 2011-12-09) broke
219         the forget logic in a subtle way, resulting in "fuse internal
220         error: node NNN not found" and causing the filesystem daemon to
221         abort.  Fix by incrementing the node refcount if nlookup goes from
222         zero to one.  Reported by Kyle Lippincott
224 2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
226         * Fix linking against GNU libiconv.  Patch by Natanael Copa
228 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
230         * Start of 3.0 series.  This is going to be a new major version of
231         the library breaking backward compatibility on the binary level as
232         well as the source level.
234 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
236         * Released 2.9.1
238 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
240         * Fix crash caused by freeing a stack address.  Reported by Itay
241         Perl
243 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
245         * Fix install of mount.fuse from out-of-tree build.  Patch by
246         Olivier Blin
248         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
250 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
252         * Add fallocate operation.  Only works on linux kernels 3.5 or
253         later.  Patch by Anatol Pomozov
255 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
257         * Linking to a library that uses threads requires the application
258         to be linked with -pthreads otherwise some pthread functions will
259         be linked to stubs in glibc.  So move -pthread from Libs.private
260         to Libs in fuse.pc.  Reported by Werner Fink
262         * Fix the compile command in the examples. Reported by Luciano
263         Dalle Ore
265 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
267         * Released 2.9.0
269 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
271         * Add missing fuse_fs_flock to fuse_versionscript
273 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
275         * Check protocol version before sending notifications and return
276         -ENOSYS if a particular notification is not supported.
278         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
279         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
280         and UTIME_NOW values as specified in utimensat(2).
282 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
284         * Interpret octal escape codes in options.  Requested by Jan
285         Engelhardt
287 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
289         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
290         Lifted from the Debian package.  The man pages were written by
291         Daniel Baumann and Bastien Roucaries
293 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
295         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
297 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
299         * Remove unnecessary mutex unlock at the end of multithreaded
300         event loop.
302 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
304         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
306         * Don't unhash name in FORGET.  This resulted in ENOENT being
307         returned for unlinked but still open files if the kernel sent a
308         FORGET request for the parent directory.
310         * Free request in fuse_reply_data().
312 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
314         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
315         Dreyfus
317         * Check for availability of utimensat() function.  Patch by
318         Emmanuel Dreyfus
320 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
322         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
323         file or directory is deleted.  Patch by John Muir
325 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
327         * Update retrieve_reply() method
329 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
331         * Low level API: lock argument of fuse_reply_lock should have a
332         'const' qualifier.  Reported by Shachar Sharon
334         * Add support for ioctl on directories.  Reported by Antonio SJ
335         Musumeci
337 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
339         * Reply to request with ENOMEM in case of failure to allocate
340         request structure.  Otherwise the task issuing the request will
341         just freeze up until the filesystem daemon is killed.  Reported by
342         Stephan Kulow
344 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
346         * Replace daemon() function with fork().  Patch by Anatol Pomozov
348 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
350         * If configured with --disable-mtab then don't call mount(8) from
351         libfuse to update the mtab.  Reported by: James Sierp
353 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
355         * Use LRU list for cleaning up the cache if the "remember=T"
356         option was given.  Patch by therealneworld@gmail.com
358 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
360         * Add ->flock() operation to low and high level interfaces.  This
361         fixes problems with emulating flock() with POSIX locking.
362         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
363         filesystems don't need to implement this, as the kernel takes care
364         of file locking.  The only reason to implement locking operations
365         is for network filesystems which want file locking to work between
366         clients.
368 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
370         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
371         not follow symlinks as other layers do that already.
373 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
375         * Add "remember" option.  This works similar to "noforget" except
376         that eventually the node will be allowed to expire from the cache.
377         Patch by therealneworld@gmail.com
379 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
381         * Check if splice/vmsplice are supported
383 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
385         * Remove -lrt -ldl from fuse.pc for dynamic linking since
386         libfuse.so is already linked with these libraries.  Reported by:
387         Nikolaus Rath
389 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
391         * Cleaner build output.  Patch by Reuben Hawkins
393 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
395         * Disable splice by default, add "splice_read", "splice_write" and
396         "splice_move" options.  Keep the "no_splice_*" variants, which can
397         disable splice even if the filesystem explicitly enables it.
399 2011-04-15  Max Krasnyansky <maxk@kernel.org>
400         * Added support for "auto_unmount" option which unmounts the
401         filesystem automatically on process exit (or crash).
403 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
405         * Patches by Laszlo Papp fixing various issues found by the
406         Coverity checker
408 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
410         * In case of failure to add to /etc/mtab don't umount.  Reported
411         by Marc Deslauriers
413 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
415         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
416         worker threads.  The pause() was added in 2.2.1 to prevent
417         segfault on pthread_cancel() on an exited, detached thread.  Now
418         worker threads are not detached and pthread_cancel() should work
419         fine even after the thread exited.  Reported by Boris Protopopov
421 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
423         * fusermount: chdir to / before performing mount/umount
425         * fusermount: only allow mount and umount if util-linux supports
426         --no-canonicalize
428 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
430         * Highlevel lib: allow hash tables to shrink
432         * Highlevel lib: add slab allocation for node cache.  This will
433         allow the memory used by the filesystem to grow and shrink
434         depending on how many inodes are currently cached.
436 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
438         * Highlevel lib: use dynamically resized hash table for looking up
439         by name and node ID.
441 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
443         * Allow batching of forget requests.  This allows forget requests
444         to be processed faster and doesn't require a modification to fuse
445         filesystems.  Reported by Terje Malmedal
447         * Add ->forget_multi() operation to the lowlevel API.  The
448         filesystem may implement this to process multiple forget requests
449         in one call
451         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
452         for 32bit vs. 64bit userspace
454 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
456         * Add new write_buf() method to the highlevel API.  Similarly to
457         the lowlevel write_buf() method, this allows implementing zero
458         copy writes.
460         * Add a new read_buf() method to the highlevel API.  This allows
461         returning a generic buffer from the read method, which in turn
462         allows zero copy reads.
464         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
465         methods.  Leave the ->read() and ->write() implementations for
466         reference, even though they are not necessary.
468 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
470         * Fix check for read-only fs in mtab update
472         * Open /dev/null for write instead of read for redirecting stdout
473         and stderr
475         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
476         version 2.18 or later), and umount(2) supports the
477         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
478         "fusermount -u" will call the umount(2) system call and use
479         "umount --fake ..." to update /etc/mtab
481         * Added --disable-legacy-umount option to configure.  This
482         disables the runtime checking of umount(8) version.  When built
483         with this option then "fusermount -u" will fail if umount(8)
484         doesn't support the --fake and --no-canonicalize options.
486         * Fix fuse_buf_copy() if already at the end of the buffers
488         * Add new ->write_buf() method to low level interface.  This
489         allows passig a generic buffer, either containing a memory buffer
490         or a file descriptor.  This allows implementing zero copy writes.
492         * Add fuse_session_receive_buf() and fuse_session_process_buf()
493         which may be used in event loop implementations to replace
494         fuse_chan_recv() and fuse_session_process() respectively.
496         * Remove unnecessary restoring of current working directory in
497         "fusermount -u"
499         * Add ctx->pid to debug output
501         * Fix st_nlink value in high level lib if file is unlinked but
502         still open
504         * libfuse: add store request.  Request data to be stored in the
505         kernel buffers for a given inode.
507         * libfuse: add retrieve request.  Retrieve data stored in the
508         kernel buffers for a given inode.
510 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
512         * Use LTLIBICONV when linking libfuse.  This fixes building against
513         uclibc + libiconv.  Patch by Natanael Copa
515 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
517         * Add missing argument check in ulockmgr.c to prevent calling
518         ulockmgr_server with illegal arguments. This would cause an ever
519         growing list of ulockmgr_server processes with an endless list of
520         open files which finally exceeds the open file handle limit.
521         Patch by Markus Ammer
523 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
525         * Fix ambiguous symbol version for fuse_chan_new.
526         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
527         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
529 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
531         * Fix option escaping for fusermount.  If the "fsname=" option
532         contained a comma then the option parser in fusermount was
533         confused (Novell bugzilla #641480).  Fix by escaping commas when
534         passing them over to fusermount.  Reported by Jan Engelhardt
536 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
538         * Add NetBSD support.  Patch from Emmanuel Dreyfus
540 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
542         * libfuse: add buffer interface.  Add a generic buffer interface
543         for use with I/O.  Buffer vectors are supplied and each buffer in
544         the vector may be a memory pointer or a file descriptor.
546         * The fuse_reply_fd() interface is converted to using buffers.
548 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
550         * Make the number of max background requests and congestion
551         threshold tunable.  New options are "max_background" and
552         "congestion_threshold".  Only effective on linux kernel versions
553         2.6.32 or greater.  Patch by Csaba Henk
555 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
557         * Add fuse_reply_fd() reply function to the low level interface.
558         On linux version 2.6.35 or greater this will use splice() to move
559         data directly from a file descriptor to the fuse device without
560         needing to go though a userspace buffer.  With the
561         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
562         directly into the filesystem's cache.  On earlier kernels it will
563         fall back to an intermediate buffer.  The options
564         "no_splice_write" and "no_splice_move" can be used to disable
565         splicing and moving respectively.
567 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
569         * Fix out-of-source build.  Patch by Jörg Faschingbauer
571         * Add a "nopath" option and flag, indicating that path argument
572         need not be calculated for the following operations: read, write,
573         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
574         fgetattr, lock, ioctl and poll.
576 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
578         * Remove "chmod root" from install of fusermount.  Reported by
579         Lucas C. Villa Real
581 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
583         * Released 2.8.4
585 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
587         * Fix checking for symlinks in umount from /tmp.  Reported by Al
588         Viro
590         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
592 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
594         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
595         Bruylants
597 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
599         * Fix stack alignment for clone()
601 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
603         * Released 2.8.3
605 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
607         * Using "--no-canonicalize" with umount(8) conflicts with the race
608         fix, sinceit assumes the supplied path is absolute, while the race
609         fix relies on the path being relative to the current directory.
610         Reported by Tom Rindborg
612 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
614         * Released 2.8.2
616 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
618         * Fix race if two "fusermount -u" instances are run in parallel.
619         Reported by Dan Rosenberg
621         * Make sure that the path to be unmounted doesn't refer to a
622         symlink
624 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
626         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
628 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
630         * Use '--no-canonicalize' option of mount(8) (available in
631         util-linux-ng version 2.17 or greater) to avoid calling
632         readling(2) on the newly mounted filesystem before the mount
633         procedure is finished.  This has caused a deadlock if "audit" was
634         enabled in the kernel.  Also use '--no-canonicalize' for umount to
635         avoid touching the mounted filesystem.
637 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
639         * Released 2.8.1
641 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
643         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
645 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
647         * Released 2.8.0
649 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
651         * Add missing fuse_session_data to versionscript
653         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
655 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
657         * Clarify how the protocol version should be negotiated between
658         kernel and userspace.  Notably libfuse didn't correctly handle the
659         case when the supported major versions didn't match
661         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
663 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
665         * The context is extended with a 'umask' field.  The umask is sent
666         for mknod, mkdir and create requests by linux kernel version
667         2.6.31 or later, otherwise the umask is set to zero.  Also
668         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
669         supports this feature, then this flag will be set in conn->capable
670         in the ->init() method.  If the filesystem sets this flag in in
671         conn->want, then the create modes will not be masked.
673         * Add low level interfaces for lookup cache and attribute
674         invalidation.  This feature is available in linux kernels 2.6.31
675         or later.  Patch by John Muir
677         * Kernel interface version is now 7.12
679         * fusermount: Do not silently ignore command line arguments.
680         Patch by Sebastian Harl
682 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
684         * Released 2.8.0-pre3
686 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
688         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
689         level lib) functions to query the supplementary group IDs for the
690         current request.  Currently this is implemented on Linux by
691         reading from the /proc filesystem.
693 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
695         * Add "noforget" option to high level lib to prevent ESTALE errors
696         on NFS exported filesystems.  This result in paths being cached
697         forever, resulting in ever growing memory usage.  Use with care.
699         * Add "no_remote_lock" option to disable remote file locking even
700         if the filesystem implements it.  With this option locking
701         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
702         will ignore remotely locked files.
704         * CUSE patches from Tejun Heo:
706         * Unrestricted ioctl support left some debris.  Clean them up:
707           o No reason to pass around pointer to flags.  Pass flags directly.
708           o Clean up comment and prototype parameter names.
709           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
710           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
712         * Add fuse_reply_ioctl_iov()
714         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
715         and make send_reply_iov() and fuse_setup_common() global (also in
716         fuse_i.h).  These will be used by CUSE support.
718         * Restructure fuse_ll_process()
720         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
721         operations as dir operations don't make sense for CUSE where one
722         instance implements single character device.
724         CUSE support comes with its own cuse_lowevel_ops and related
725         initialization and helper functions.  Except for initialization, it
726         usage is basically identical to FUSE.
728         This patch also adds example/cusexmp.c which can create a character
729         device with name and device number specified on command line.  The
730         created device itself is pretty boring.  It's a bit bucket supporting
731         read, write and access via ioctl.
733 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
735         * Add missing fuse_reply_bmap to versionscript.  Debian
736         Bug#531329.  Reported by Goswin Brederlow
738 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
740         * Don't call forget_node() if the lookup was negative and write()
741         for the reply returned ENOENT.  Reported by John Haxby
743 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
745         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
747 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
749         * Fix missing newlines in some printfs
751         * Fix 'make install-strip'.  Reported by Dominick Layfield
753 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
755         * Released 2.8.0-pre2
757 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
759         * Implement poll support.  Patch by Tejun Heo
761         * Add missing setattr flags to <fuse_lowlevel.h>.
763         * Only pass valid flags to ->setattr().
765 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
767         * Implement ioctl support.  On high level interface only
768         "restricted" ioctls are supported (which are defined with the
769         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
770         will only be allwed to CUSE (Character Device in Userspace)
771         servers.  Patch by Tejun Heo
773 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
775         * If open sets fi->nonseekable, libfuse will tell the kernel that
776         the file is not seekable.  Patch by Tejun Heo
778 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
780         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
781         interrupt handling function.  Reported by Tero Marttila
783 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
785         * Allow commas in options to be escaped with a backslash
787         * Add new function: fuse_opt_add_opt_escaped()
789         * Add missing fuse_reply_bmap() to the version script
791 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
793         * Pass current file flags to read and write operations
795 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
797         * Clean up debug output in highlevel lib
799 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
801         * Released 2.8.0-pre1
803 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
805         * Fix handling of (no)suid and (no)dev options if filesystem is
806         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
808         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
809         read-only filesystem.  This works around issues with certain mount
810         implementations.  Reported by Szabolcs Szakacsits.
812 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
814         * Remove fuse kernel module sources.  Linux 2.6.27 will support
815         NFS exporting.
817 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
819         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
820         Szakacsits
822         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
823         Szabolcs Szakacsits
825 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
827         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
829 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
831         * Don't allow bigger than 4kB writes by default on 2.6.26 and
832         later kernels, so that filesystems not expecting this are not
833         broken on a kernel upgrade.  Provide a 'big_writes' mount option
834         to enable this feature.  In future API revisions this may become
835         the default.
837 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
839         * Update warning message for missing newline at end of fuse.conf
841         * Update debug message for successful operation to not include the
842         string "error:"
844 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
846         * Update error message for missing mountpoint parameter.  Reported
847         by Allen Pulsifer
849 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
851         * Print library version information to debug output
853         * Highlevel lib: don't limit paths to 4095 characters
855 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
857         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
859 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
861         * Fix missing pthread_mutex_destroy in error path of
862         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
864 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
866         * Add queuing on contention to per-node lock algorithm, to avoid
867         starvation.
869         * Only enable cancelation when reading a request, otherwise
870         cancellation could happen with a mutex held, which could hang the
871         process on umount
873 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
875         * Block SIGCHLD when executing mount and umount
877         * fusexmp_fh: avoid unnecessary seeking in readdir
879         * Update kernel interface to 7.9:
881         * Support receiving file handle from kernel in GETATTR request
883         * Allow operations with a NULL path argument, if the filesystem
884         supports it
886         * Add support atomic open(O_TRUNC)
888         * Support the st_blksize field in struct stat
890         * If the "FUSE_THREAD_STACK" environment is set, initialize the
891         stack size of threads by this value.  Patch by Florin Malita
893         * Add per-node locking, instead of a global tree lock to protect
894         the path from changing during operations.  Original patch by
895         Rodrigo Castro
897 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
899         * lib/mount_bsd.c:
900         - string formatting fixes
901         - exit if mounting has failed
902           (in FreeBSD a mount failure is not critical per se, as the daemon
903           still could be mounted externally, but waiting for such an event
904           is more confusing than fruitful)
905         - ditch the kvm(8) stuff and simply use forced unmount which just
906           won't block
907         - prettify option specifications
908         - add "-onosync_unmount" kernel option
910 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
912         * lib/mount_bsd.c:
913         - refine device closing in a race-free way
914         - add support for "-osubtype" on FreeBSD
916         * makeconf.sh: make it work under FreeBSD
918 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
920         * lib/mount_bsd.c: close device before unmount
921         (cf. lib/mount.c rev. 1.43) and fix some warnings 
923 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
925         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
927 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
929         * Released 2.7.2
931 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
933         * Fix kernel module compile for 2.6.24
935         * Invalidate attributes of parent directory after create(), since
936         the modification time changes.  Invalidate attributes on rename,
937         since some filesystems may update st_ctime.  Reported by Szabolcs
938         Szakacsits
940         * Fix NFS exporting to handle 64bit node IDs
942         * Disable old symbol versions if __UCLIBC__ is defined.  If a
943         symbol in a library has multiple versions, the runtime linker in
944         uClibc seems to randomly choose between them.
946         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
947         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
949         * Close fuse device file descriptor before calling umount(),
950         preventing a deadlock when umount is synchronous.  Reported by
951         Szabolcs Szakacsits
953 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
955         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
956         symlink.  This bug was introduced in 2.7.1 by "Don't call
957         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
959 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
961         * Released 2.7.1
963 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
965         * Clarify licence version to be "LGPLv2" for the library
967         * kernel fixes:
969         * After mount set nlink attribute for the root inode to 1
971         * Fix wake up of task waiting for a reserved request
973         * Fix allowing setattr, listxattr and statfs for other users
975 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
977         * Add missing context initialization in fuse_fs_chmod().  Bug
978         found by "iohead"
980         * Fix kernel module compilation for 2.6.23.  Based on patch by
981         Marian Marinov
983 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
985         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
987 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
989         * Work around hotplug issue, that it calls filesystem with file
990         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
992 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
994         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
995         Tomas M
997         * Also don't touch /etc/mtab if it is within the mounted
998         filesystem.  Suggested by Jeffrey Law
1000 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
1002         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
1003         C. Villa Real
1005 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
1007         * Released 2.7.0
1009 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
1011         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
1012         filesystem is only invoking fuse to print a help message, or
1013         version.  Fixes RedHat bugzilla #217343
1015 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
1017         * lib: fix locking when loading a filesystem module
1019 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
1021         * Add fs subtype support to mount.fuse
1023 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
1025         * Add fs subtype support to libfuse and fusermount
1027 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
1029         * kernel: sync with mainline (2.6.22)
1031 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
1033         * Send debug output to stderr instead of stdout.  Patch by Jan
1034         Engelhardt
1036 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
1038         * libulockmgr: Work around a kernel bug in recv(), causing it to
1039         sometimes return zero even if data was available on the socket.
1041 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
1043         * lib: optimization: store parent pointer in node instead of
1044         parent id
1046 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
1048         * lib: don't create new thread for each FORGET request.  FORGET
1049         messages sometimes caused so many threads to be created, that
1050         process virtual memory space ran out.  Reported by Chris AtLee
1052 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
1054         * lib: fix memory leak on thread creation failure in multithreaded
1055         event loop.  Found by Chris AtLee
1057 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
1059         * lowlevel lib: add fuse_reply_iov function, which is similar to
1060         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
1061         Willcocks
1063 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
1065         * Fix Oops or error if a regular file is created with mknod(2) on
1066         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
1067         J. Cameijo Cerdeira for the report
1069 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
1071         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1072         Error reported by Csaba Henk, fix by Miklos Szeredi
1074         * libfuse: fix unlock in flush
1076         * libfuse: do unlocking on RELEASE+FLUSH
1078 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
1080         * Released 2.7.0-rc1
1082 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
1084         * kernel: sync with mainline:
1086         * Use invalidate_mapping_pages() if available
1088         * Fix BUG when invalid file type is supplied in mount. Patch by
1089         Timo Savola
1091 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
1093         * libfuse: call umount(8) directly instead of fusermount if
1094         possible
1096         * Clean up init script, make it LSB compliant
1098 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
1100         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1101         up the main thread on umount.  This is more elegant, and works
1102         even if signals are blocked.
1104 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
1106         * Improve mounting support in libfuse:
1107          - check non-empty mountpoint
1108          - only fall back to fusermount when necessary
1110 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
1112         * Don't chdir to "/" in foreground mode, it causes more trouble
1113         than it's worth
1115 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
1117         * Replace utils/mount.fuse "sh" script with a "C" program
1119 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
1121         * Add -lulockmgr to compilation comment in fusexmp_fh.c
1123 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
1125         * Check for iconv.  Patch by Csaba Henk
1127         * Add direct umounting
1129         * Use "fusectl" as the device for the fusectl filesystem.  Debian
1130         Bug#417945.  Reported by Laurent Bonnaud
1132 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
1134         * Fix some FreeBSD related macros.
1136 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
1138         * Add support for direct mounting by libfuse.  Fall back on
1139         calling fusermount if it doesn't work
1141 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
1143         * Released 2.7.0-pre1
1145 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
1147         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
1148         Bruno
1150         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
1151         by Thomas Weinbrenner
1153 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
1155         * Fix detection of installed fuse in init script.  Reported and
1156         fix suggested by Davide Canova
1158 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
1160         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1161         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
1163 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
1165         * Compile fuseblk for kernels which don't have an option to turn
1166         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
1167         Szabolcs
1169 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
1171         * Add filesystem stacking support to high level API.  Filesystem
1172         modules can be built into libfuse or loaded from shared object
1173         (.so) files
1175         * Add 'subdir' and 'iconv' built in modules
1177         * lib/fuse.c: Fix locking for the reply code in create and open
1179 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
1181         * kernel: make it compile on "strange" kernels which have emulated
1182         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
1183         Mateja
1185 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
1187         * kernel: fix BUG in control filesystem if it is umounted and
1188         mounted again, while some fuse filesystems are present.
1189         Bugreport from Florent Mertens
1191         * kernel: sync with mainline, support 2.6.20
1193 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
1195         * lib/Makefile.am: actually link libfuse against libfuse_libs
1197 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
1199         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
1200         Ian Abbott
1202 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
1204         * Fix abort in fuse_new() compatibility API for opts == NULL case.
1205         Novell bugzilla #233870.  Patch from Takashi Iwai.
1207 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
1209         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
1211 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
1213         * Fix unaligned access in file desctriptor passing in libfuse,
1214         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
1215         tested by Sebastian Fontius
1217 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
1219         * kernel: don't keep unreferenced inodes in the icache.
1221 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
1223         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
1224         Szabolcs
1226         * lib: Fix use after free in fuse_flush().  Reported by Ron
1227         Lindman
1229 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1231         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1232         for the filesystem
1234         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1235         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1236         the ugly code dealing with mtab, as well as a possible race
1237         between fusermount and mount trying to modify /etc/mtab at the
1238         same time
1240         * Fix "buffer size too small: 4" warning for users of the
1241         fuse_loop_mt_proc() function.
1243 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1245         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1246         Harshavardhana
1248         * Add extra warning options, and fix resulting warnings
1250         * Really fix fuse_teardown problem
1252 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1254         * Add -lrt to fuse.pc (if needed) to fix static linking against
1255         libfuse.  Reported by Szakacsits Szabolcs
1257 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1259         * Released 2.6.1
1261 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1263         * Fix API version 21 and 22 compatibility for fuse_teardown.
1264         Reported by Bgs
1266 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1268         * fusermount: Print a more helpful message in case the kernel
1269         doesn't support the 'fuseblk' filesystem type.  This has been
1270         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1272         * kernel: fix build problem for "make -C ...".  Reported by
1273         Stephen Bryant
1275 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1277         * Fix bug in certain error paths of lookup routines.  The request
1278         object was reused for sending FORGET, which is illegal.  This bug
1279         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1280         silently corrupt memory in earlier versions.  Report and test
1281         program by Russ Cox
1283 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1285         * Print an error if an incompatible kernel interface version is
1286         detected in INIT.  This will only show if filesystem is started
1287         with -d or -f
1289         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1290         fuse_setup_common().  Reported by Szakacsits Szabolcs
1292 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1294         * Fix recursive locking in fuse_create().  Thanks to Takuya
1295         Ishibashi for the bug report
1297 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1299         * Fix automake problem.  Patch from Nix
1301 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1303         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1304         always available on embedded systems.  Patch from Paul Smith
1306         * Fix util/Makefile.am, so that failure to run update-rc.d or
1307         device creation doesn't cause make to fail.  Reported by Paul
1308         Smith
1310 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1312         * Released 2.6.0
1314 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1316         * fusermount: don't try to create a lock file if /etc/mtab is a
1317         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1318         #393693)
1320 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1322         * Minor changes, sync with mainline tree
1324 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1326         * Released 2.6.0-rc3
1328 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1330         * kernel: cleanups
1332 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1334         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1335         Report from David Shaw
1337         * lib: Fix lost error on renaming a file. Report from David Shaw
1339         * lib: Fix lost error on hiding open files (renaming to
1340         .fuse_hiddenXXXX)
1342         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1343         activity.  The cause of the bug was that some calls to
1344         i_size_write() were not protected by a lock, and hence
1345         i_size_seqcount could become corrupted.  This caused subsequent
1346         calls to i_size_read() to spin forever.  This is a long standing
1347         bug was probably introduced in version 2.2, and thought to be
1348         related to NFS exporting (it's not).  It was reported by various
1349         people, but Dana Henriksen has finally helped me to track it down,
1350         so big thanks to him
1352         * kernel: Protect against truncation of a swapfile
1354 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1356         * kernel: Check for signature of super_operations->umount_begin().
1357         Ubuntu kernel 2.6.17 seems to use the new signature found in
1358         2.6.18.  Thanks to Florent Mertens for the report
1360 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1362         * Make sure inode numers wrap around at 2^32.  This is needed on
1363         dual 64bit/32bit architectures, because 32bit applications using
1364         the non-largefile interface would otherwise break (EOVERFLOW error
1365         would be returned by the stat() system call family)
1367         * ulockmgr: handle the case, when a locking operation fails
1368         because no more file desctriptors are available in
1369         ulockmgr_server.  Also work around a Linux kernel bug (known to
1370         exist for all Linux kernel versions <= 2.6.18) which may cause
1371         sent file descriptors to be lost in the above case
1373         * ulockmgr: optimize file descriptor use
1375         * restore needed cpp flags to util/Makefile.am
1377         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1379         * Minor clean up of udev rules
1381         * Add a synchronous DESTROY message to kernel interface.  This is
1382         invoked from umount, when the final instance of the filesystem is
1383         released.  It is only sent for filesystems mounted with the
1384         'blkdev' option for security reasons.
1386         * If the DESTROY message is received, call the filesystem's
1387         ->destroy() method.  In this case it's not called from session
1388         destruction as it would be otherwise.
1390 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1392         * Released 2.6.0-rc2
1394 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1396         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1397         patch by Csaba Henk
1399         * Add init script to insert fuse module and mount the control
1400         filesystem.  The script is installed as /etc/init.d/fuse and on
1401         debian based systems (where update-rc.d is available) symlinks
1402         from /etc/rc*.d/ are also installed.
1404         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1405         become more self contained.
1407 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1409         * API changes:
1411         * Move lock_owner from a separate argument into fuse_file_info
1413         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1414         operation (unlock all) was initiated by a flush, (2) a lowlevel
1415         release operation should perform a flush as well.
1417         * fusermount: revert modprobe change (2006-08-18) since it
1418         doesn't work reliably with udev
1420         * Add support for block device backed filesystems.  This mode is
1421         selected with the 'blkdev' option, which is privileged.
1423         * Add support for the bmap (FIBMAP ioctl) operation on block
1424         device backed filesystems.  This allows swapon and lilo to work on
1425         such filesystems.
1427         * kernel changes:
1429         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1430         previous (2.5.x) release can be used with library from this
1431         release
1433         * In fuse_dentry_revalidate() use dget_parent() instead of
1434         dereferencing d_parent, since there's no protection against parent
1435         changing and going away
1437         * Protect nlookup from concurrent updates
1439         * In lookup if a directory alias exists but is unused,
1440         then get rid of it, otherwise return -EBUSY.
1442         * In mkdir if a directory alias exists, return success, but leave
1443         dentry negative.  In reality this could happen if a remote rename
1444         immediately followed the mkdir.
1446         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1447         good inode.  This could happen if several lookups are racing for
1448         the same inode.
1450 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1452         * Fix compilation on 2.6.9.  Report from Troy Ayers
1454 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1456         * Fix Oops in fuse_readpages().  Reported by David Shaw
1458 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1460         * Add support for nanosec times on FreeBSD
1462         * Fix FreeBSD compatibility issues
1464 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1466         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1468         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1470 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1472         * Fixed several compatibility bugs in low level interface.
1473         Reported by Ricardo Correia
1475         * Add workaround for ARM caching bug
1477 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1479         * Rename new utimes() method to more logical utimens()
1481 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1483         * Fuse tried to unlink already unlinked hidden files.  Bug
1484         reported by Milan Svoboda
1486 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1488         * Released 2.6.0-rc1
1490 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1492         * kernel: Fix unlock on close for kernels < 2.6.18
1494         * Add ulockmgr library & server.  This can be used for handling
1495         file locking requests either directly from libfuse or over a
1496         network, etc.  This first version is not optimized and the number
1497         of file descriptors it uses may get out of hand
1499 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1501         * lib: Add interrupt support to high level library, which may be
1502         enabled with the 'intr' mount option.
1504         * When an operation is interrupted the thread handling that
1505         operation will receive SIGUSR1 (or other signal specified with the
1506         'intr_signal=N' option).  The library installs a no-op signal
1507         handler for this signal, unless there's already a handler
1508         installed.
1510         * The filesystem may query interrupt status (regardless of 'intr')
1511         with the fuse_interrupted() function.
1513         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1515 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1517         * lib: Multithreaded loop now allows unlimited number of threads.
1518         This is needed for locking operations which may block
1519         indefinitely.  Also the kernel now doesn't limit the number of
1520         outstanding requests so the library shouldn't do so either.
1522 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1524         * Fix recursive lock bug in interrupt handling
1526         * Add utimes() method to highlevel interface, which supports
1527         setting times with nanosecond resolution
1529 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1531         * kernel: fix page leak if fuse_readpages() failed in it's
1532         initialization.  Bug found and original patch from Alexander
1533         Zarochentsev
1535         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1536         the kernel tree) the statfs method will receive the path within
1537         the filesystem on which the stat(v)fs syscall was called
1539         * fusermount: try to modprobe fuse module if invoked by root and
1540         unable to open device.  This is needed with udev, since the device
1541         node will be created only when the module is inserted, hence
1542         module autoloading won't work.  Reported by Szakacsits Szabolcs
1544 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1546         * fusermount: if selinux is active, restore the original file's
1547         security context in unmount_rename().  Redhat bugzilla id 188561.
1548         Patch from Yves Perrenoud
1550         * Add POSIX file locking operation to high level library
1552         * Initialize context for unlink of hidden files on umount.  Bug
1553         reported by Tim Stoakes
1555 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1557         * Multiple release() calls can race with each other, resulting in
1558         the hidden file being deleted before the last release finishes.
1559         Bug found and patch tested by Mark Huijgen
1561 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1563         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1564         this makes sense on systems using udev.  Reported by Szakacsits
1565         Szabolcs
1567 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1569         * Released 2.6.0-pre3
1571 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1573         * Support in kernel module for file locking and interruption.  The
1574         same functionality is available in official kernels >= 2.6.18
1576 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1578         * Add POSIX file locking support
1580         * Add request interruption
1582 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1584         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1586 2006-06-05  Remy Blank <remy.blank@pobox.com>
1588         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1589         unmounting succeeds even if mount point was relative.
1591 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1593         * lib: fix emergency umount in helper.c when malloc fails.
1594         (The way it was done would end up in a segfault.)
1596 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1598         * lib: adjust threading related compiler flags.
1599         Switch to "-pthread" from "-lpthread" as that's the preferred
1600         one on several platforms. Consulted with Terrence Cole and
1601         Miklos Szeredi
1603 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1605         * lib: search fusermount in installation directory (bindir) as
1606         well as in PATH.
1608 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1610         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1611         Reported by Christian Magnusson
1613 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1615         * lib: make FreeBSD mount routine recognize if kernel features
1616         backgrounded init and if it does, run the mount util in foreground
1617         (similarly to Linux)
1619 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1621         * kernel: fix fput deadlock fix, the lockless solution could lead
1622         to "VFS: busy inodes after umount..."
1624         * kernel: fix race between checking and setting file->private_data
1625         for the device.  Found by Al Viro
1627 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1629         * kernel: remove request pool, instead allocate requests on
1630         demand.  Account the number of background requests, and if they go
1631         over a limit, block the allocation of new requests.
1633         * kernel: fix deadlock if backgrounded request holds the last
1634         reference to the super block
1636         * kernel: don't use fuse_reset_request() during direct I/O
1638 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1640         * lib: Let FreeBSD mount option parsing routine recognize "no"
1641         prefixes for FUSE specific options as well
1643 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1645         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1647 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1649         * API changes:
1651         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1652         user_data parameter
1654         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1655         file descriptor
1657         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1658         destroys the given channel
1660         * fuse_teardown() no longer has a file descriptor parameter
1662         * new exported functions: fuse_session_remove_chan(),
1663         fuse_get_session(), fuse_daemonize()
1665         * fuse_chan_recv() may now return a new channel which will be used
1666         to send the reply
1668 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1670         * Released 2.6.0-pre2
1672 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1674         * Don't unmount if already unmounted.  This fixes a problem seen
1675         in the following situation: Lazy unmount a busy filesystem; Mount
1676         a new one in top; When the first finally unmounts, the second also
1677         unmounts.  Reported by Franco Broi
1679 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1681         * lowlevel lib: use indirect function calls instead of a
1682         switch/case construct.  Besides increased efficiency it helps
1683         maintainability & readability too.  Patch from Florin Malita
1685 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1687         * kernel: replace global spinlock with a per-connection spinlock
1689 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1691         * Fix source compatibility breakage for fuse_unmount().  Report
1692         from Yura Pakhuchiy
1694 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1696         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1698 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1700         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1701         Jeff Dike
1703         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1704         interface to return -errno in case of error.
1706 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1708         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1709         FreeBSD implementation so that it uses libc (sysctl backed) instead
1710         of an embdedded script (kmem backed). Adjust the control flow of
1711         hello_ll so that device doesn't get closed before unmount attempt.
1713 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1715         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1716         implement method.  This is needed on FreeBSD, and nicer on Linux
1717         too.  Highlevel lib already did this.  Reported by Csaba Henk
1719         * Fix negative entry handling.  There was a bug, that negative
1720         lookups with timeouts (nodeid == 0) returned -EIO.
1722 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1724         * Fix race between RELEASE and UNLINK, which might leave
1725         .fuse_hidden* files around
1727 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1729         * fusexmp_fh: implement flush() method and call close() on the
1730         open file descriptor.  This is needed if used on an NFS
1731         filesystem, which buffers data until file is closed.  Franco Broi
1732         spotted the situation when 'cp -p' failed to set the modification
1733         time because of this.
1735 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1737         * Released 2.6.0-pre1
1739 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1741         * libfuse: fix use-after-free bug in interruptred reply_entry().
1742         Patch from John Muir
1744         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1745         ID: 352631.  Found by Stéphane Rosi
1747 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1749         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1750         into a single function fuse_add_direntry().  This cleans up the
1751         interface and makes it possible to do stacking.
1753 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1755         * Fix rare race betweeen abort and release caused by failed iget()
1756         in fuse_create_open().
1758         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1759         own attribute caching.
1761 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1763         * Work around FreeBSD runtime linker "feature" which binds an old
1764         version of a symbol to internal references if the symbol has more
1765         than one version.  This resulted in infinite recursion in
1766         fuse_lowlevel_new_compat25().
1768 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1770         * Refine clock_gettime() querying so that linker options
1771         shall be set as it's appropriate for the target platform.
1773 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1775         * Fix udev rule syntax.  Reported by Nix
1777 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1779         * In some cases udev rule seems to be ineffective when installed
1780         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1782 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1784         * Fix compilation when build directory is different from source
1785         directory.  Reported by Frédéric L. W. Meunier
1787 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1789         * Fix even bigger bug introduced in fix for request_end() on
1790         2006-01-14.  Reported by Gal Rosen
1792 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1794         * highlevel-lib: add 'auto_cache' option.  This caches file data
1795         based on modification time and size
1797 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1799         * Sanitize storage type and help message in mount_bsd.c.  Patch
1800         from Csaba Henk
1802         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1803         FUSE_OPT_KEY_DISCARD
1805         * Add options 'max_readahead', 'sync_read' and 'async_read'
1807         * Kernel ABI version 7.6:
1809         * Negotiate the 'max_readahead' value and 'async_read' flags with
1810         userspace in the INIT method
1812         * Add connection info to ->init() methods to both lowlevel and
1813         highlevel API
1815         * Fall back to synchronous read() behavior if either library or
1816         userspace filesystem is using the old interface version.  This is
1817         needed so non-updated filesystems won't be confused by the
1818         different read() behavior
1820 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1822         * lib: if "fsname=" option was given, pass it to fusermount
1824         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1825         needed by filesystems to implement some argument manipulations
1826         correctly
1828         * fuse_opt: fix memory leak in handling "--" option
1830 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1832         * kernel: fix detection of case when fuse is not configured into
1833         the kernel either as module or built-in
1835         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1836         'template' structure member to 'templ'.  Reported by Takashi Iwai
1838         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1840         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1842 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1844         * Added (again) asynchronous readpages support
1846         * Each connection now shows up under /sys/fs/fuse/connections
1848         * Connection attributes exported to sysfs: 'waiting' number of
1849         waiting requests; 'abort' abort the connection
1851         * Connection may be aborted through either the sysfs interface or
1852         with 'umount -f mountpoint'
1854 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1856         * Released 2.5.0
1858 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1860         * kernel: fix a couple of bugs
1862         * Order of request_end() and fuse_copy_finish() was wrong.
1863         Posthumous note: Franco Broi managed to exploit this, though it
1864         seemed quite impossible
1866         * request_end() used request pointer after decrementing refcount
1868         * Clearing ->connected or ->mounted connection flags could race
1869         with setting other bitfields not protected with a lock
1871 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1873         * kernel: add necessary compile flags for 2.4.X/x86_64.
1874         Report from Sean Ziegeler
1876 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1878         * Released 2.5.0-pre2
1880 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1882         * Applied patch from Csaba Henk, to update mount_bsd to new
1883         fuse_mount() semantics
1885         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1886         Steiner and Don Taber
1888         * fusermount: add 'dirsync' mount option
1890 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1892         * Improved help reporting and added version reporting to library
1894 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1896         * Change working directory to "/" even if running in the
1897         foreground.  Patch from Jonathan Brandmeyer
1899         * Changed lots of functions to use 'struct fuse_args' instead of
1900         separate argc and argv
1902         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1903         fuse_remove_signal_handlers() functions, so that it's now pretty
1904         easy to get all the functionality of fuse_main() with a filesystem
1905         using the lowlevel API.
1907 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1909         * mount.fuse: the 'user' option should be ignored. Report and
1910         solution from Mattd.
1912         * mount.fuse: export PATH in the right place. Report and patch
1913         from Hannes Schweizer
1915 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1917         * Clean up the option parsing interface slightly, by creating an
1918         "argument list" structure, that contains the argument vector and
1919         count
1921 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1923         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1924         in that case
1926         * kernel: simplify request size limiting. INIT only contains
1927         maximum write size, maximum path component size remains fixed at
1928         1024 bytes, and maximum xattr size depends on read buffer.
1930 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1932         * Fix readdir() failure on x86_64, of 32bit programs compiled
1933         without largefile support.  Bug report and help from Anthony
1934         Kolasny
1936         * If lookup returns invalid mode, return -EIO instead of creating
1937         a regular file
1939         * Add current output argument vector to option processing
1940         function
1942 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1944         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1946 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1948         * Released 2.5.0-pre1
1950 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1952         * libfuse: added option parsing interface, defined in
1953         <fuse_opt.h>.
1955 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1957         * Return EIO for file operations (read, write, fsync, flush) on
1958         open files whose inode has become "bad".  Inodes will be marked
1959         "bad" if their type changes.  Bug report by Csaba Henk
1961 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1963         * Use bigger request buffer size.  write() did not work on archs
1964         with > 4k page size, Bug report by Mark Haney
1966         * ABI version 7.5:
1968         * Extend INIT reply with data size limits
1970 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1972         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1973         reported by Vincenzo Ciancia
1975         * Handle exit-by-umount in fuse_read_cmd()
1977 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1979         * Check if '-msoft-float' option is supported by compiler when
1980         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1982         * In multithreaded loop send a TERM signal to the main thread if
1983         one of the other threads exit.  Needed on FreeBSD for a clean exit
1984         on umount.  Should not cause any harm on Linux either
1986 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1988         * Fix bug in 32-bit file handle compatibility
1990 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1992         * Block TERM, INT, HUP and QUIT signals in all but the main
1993         thread.  According to POSIX it's not specified which thread will
1994         receive these signals.
1996         * Kernel changes:
1998         * Check for directory aliasing on mkdir, not just on lookup
2000         * Check for special node ID values in create+open operation
2002         * Sync with -mm: readv, writev, aio_read and aio_write methods
2003         added to file operations
2005         * Cleanups: lookup code, page offset calculation
2007         * ABI stepped to 7.4, changes:
2009         * frsize member added to fuse_kstatfs structure
2011         * added support for negative entry caching: on lowlevel API if
2012         fuse_entry_param::ino is set to zero in reply to a lookup request,
2013         the kernel will cache the dentry for the specified amount of time.
2015         * libfuse: added 'negative_timeout' option: specifies how much
2016         negative entries should be cached.  Default is zero, to be
2017         compatible with prior versions
2019 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
2021         * Add detection of mainline FUSE code in running kernel
2023 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
2025         * Don't use async cancelation in multithreaded loop.  This makes
2026         it more portable to systems where read() is not async cancel safe.
2027         Report from Andriy Gapon
2029 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
2031         * Warn if API version 11 compatibility is requested
2033 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
2035         * More FreeBSD merge
2037         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2038         them, because it corrupts /etc/mtab.  Found by Thomas Biege
2039         CVE-2005-3531
2041         * libfuse: don't use system() to invoke 'fusermount -u ...'
2042         because it breaks mountpoints with spaces in them into multiple
2043         arguments
2045 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
2047         * Merge library part of FreeBSD port.  Patch by Csaba Henk
2049 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
2051         * Use 64bit type for file handle, so the full range supported by
2052         the kernel interface is available to applications
2054 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
2056         * Moved mountpoint argument checking from fuse_parse_cmdline() to
2057         fuse_mount() in preparation to FreeBSD merge.
2059 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
2061         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
2062         Henk.
2064 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
2066         * Make the statfs change backwards compatible.
2068 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
2070         * Change ->statfs() method to use 'struct statvfs' instead of
2071         'struct statfs'.  This makes the API more portable since statvfs()
2072         is defined by POSIX.
2074 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
2076         * Add fgetattr() method, which currently will only be called after
2077         a successful call to a create() method.
2079 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
2081         * Change kernel ABI version to 7.3
2083         * Add ACCESS operation.  This is called from the access() system
2084         call if 'default_permissions' mount option is not given, and is
2085         not called on kernels 2.4.*
2087         * Add atomic CREATE+OPEN operation.  This will only work with
2088         2.6.15 (presumably) or later Linux kernels.
2090         * Add ftruncate() method.  This will only work with 2.6.15
2091         (presumably) or later Linux kernels.
2093         * Fix kernel module compile if kernel source and build directories
2094         differ.  Report and initial patch by John Eastman
2096 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
2098         * lib: optimize buffer reallocation in fill_dir.
2100 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
2102         * Released 2.4.1
2104 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
2106         * libfuse: add debug for write result (by Shaun Jackman) and
2107         warnings for too large read/write result
2109 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
2111         * Spelling fixes, thanks to Ioannis Barkas
2113 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
2115         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
2116         patch
2118 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
2120         * highlevel-lib: init() and destroy() methods didn't have an
2121         initialized fuse_context.  Bug reported by Tim Stoakes
2123 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
2125         * Released 2.4.0
2127 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
2129         * Add documentation to fuse_lowlevel.h
2131         * API cleanups:
2133         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2135         * Move fuse_mount() and fuse_unmount() to fuse_common.h
2137         * Change the return type of fuse_reply_none() from int to void.
2139 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
2141         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
2142         Akshat Aranya.
2144 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
2146         * fusermount: fix error message, when unable to open /dev/fuse.
2147         Report by Balázs Pozsár
2149 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
2151         * UClibc fixes from Christian Magnusson
2153 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
2155         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
2157 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2159         * Released 2.4.0-rc1
2161 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
2163         * fusermount: allow user umount in the case when /etc/mtab is a
2164         symlink to /proc/mounts.  Reported by Balázs Pozsár.
2166 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
2168         * Check for special node ID values in lookup and creation
2170 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
2172         * Slight optimization in returning EINVAL error in case of an open
2173         with O_DIRECT flag.
2175 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
2177         * Remove '--enable-auto-modprobe' configure flag.  Module
2178         auto-loading is now handled by the kernel.
2180 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
2182         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2183         Help from Jens M. Noedler.
2185 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
2187         * Add memory cleanup on thread exit
2189 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
2191         * Set umask to zero in fusexmp and fusexmp_fh, so that
2192         files/directories are created with the requested mode.
2194 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
2196         * Don't ignore read error in multithreaded loop
2198 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2200         * Released 2.4.0-pre2
2202 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2204         * Revert lock and access operations.  Postpone these until 2.5.
2206 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
2208         * Fix compile warning on 2.6.13 and later
2210         * Fix compilation on old kernels
2212 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
2214         * lib: always refresh directory contents after rewinddir() to
2215         conform to SUS.  Bug found by John Muir.
2217 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
2219         * Released 2.4.0-pre1
2221 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
2223         * lib: cleaned up (or messed up, depending on your POV) the low
2224         level library API.  Hopefully this is close to the final form.
2226 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2228         * fusermount: don't allow empty mountpoint argument, which defeats
2229         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2231 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2233         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2234         option is used (Paul Alfille).
2236 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2238         * highlevel-lib: added mount options "attr_timeout" and
2239         "entry_timeout".  These options control the length of time file
2240         attributes and entries (names) are cached.  Both default to 1.0
2241         second.
2243         * kernel: correctly handle zero timeout for attributes and entries
2245 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2247         * Added missing symbols to versionscript (Joshua J. Berry)
2249         * kernel: implement two flags, open can set: 'direct_io' and
2250         'keep_cache'.  These correspond exactly to mount options
2251         'direct_io' and 'kernel_cache', but allow a per-open setting.
2253         * Move 'direct_io' and 'kernel_cache' mount option handling to
2254         userspace.  For both mount options, if the option is given, then
2255         the respective open flag is set, otherwise the open flag is left
2256         unmodified (so the filesystem can set it).
2258         * lib (highlevel): make open method optional
2260 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2262         * kernel: invalidate attributes for read/readdir/readlink
2263         operations
2265         * kernel: detect newer UML kernels
2267 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2269         * Make the installation path of fuse.ko and mount.fuse
2270         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2271         environment variables.  Requirement and help from Csaba Henk.
2273 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2275         * Fix bug, that causes filesystem requests to hang when unique
2276         request counter becomes negative.  This happens after
2277         2,147,483,648 operations, so most people won't care.  Thanks to
2278         Franco Broi for the report and testing.
2280 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2282         * Don't change mtime/ctime/atime to local time on read/write.
2283         Bug reported by Ben Grimm
2285         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2286         Magnusson
2288         * fusermount: use getopt_long() for option parsing.  It allows the
2289         use of '--' to stop argument scanning, so fusermount can now
2290         operate on directories whose names begin with a '-'.  Patch by
2291         Adam Connell
2293 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2295         * fusermount: add '-v', '--version' and '--help' options
2297         * add inode based API
2299 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2301         * lib: don't block signals in worker threads.  Problem noticed by
2302         Usarin Heininga
2304 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2306         * lib: don't allow both 'allow_other' and 'allow_root' options to
2307         be given
2309 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2311         * fusermount: check if mountpoint is empty (only '.' and '..' for
2312         directories, and size = 0 for regular files).  If "nonempty"
2313         option is given, omit this check.  This is useful, so users don't
2314         accidentally hide data (e.g. from backup programs).  Thanks to
2315         Frank van Maarseveen for pointing this out.
2317         * kernel: check if mandatory mount options ('fd', 'rootmode',
2318         'user_id', 'group_id') are all given
2320         * lib: simplify 'readdir_ino' handling
2322         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2324 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2326         * kernel: clean up 'direct_io' code
2328 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2330         * Add 'mount.fuse' written by Petr Klima
2332         * '/dev/fuse' is created by 'make install' if does not yet exist
2334 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2336         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2338 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2340         * Enable the auto-loading of the module via access to the
2341         corresponding device file.  Patch by Takashi Iwai.
2343         * Allow mounting a regular file (over a regular file) for
2344         unprivleged users.
2346         * Do not create temporary device file.  Require "/dev/fuse" to
2347         exist, and be readable/writable by the mounting user.
2349 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2351         * Released 2.3.0
2353 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2355         * Fix serious information leak: if the filesystem returns a short
2356         byte count to a read request, and there are non-zero number of
2357         pages which are not filled at all, these pages will not be zeroed.
2358         Hence the user can read out previous memory contents.  Found by
2359         Sven Tantau.
2361 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2363         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2364         field in struct dirent.  This mount option is ignored if "use_ino"
2365         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2366         non-Linux OS).  Patch by David Shaw.
2368 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2370         * Released 2.3-rc1
2372 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2374         * File save in krusader and other editors doesn't work with sshfs,
2375         because open() is interrupted by a periodic signal, and open()
2376         restarts forever, without any progress.  This could just be fixed
2377         in open(), but the problem is more generic: if signals are
2378         received more often than the filesystem can get the request to
2379         userspace, it will never finish.  This is probably only a
2380         theoretical problem, nevertheless I'm removing the possibility to
2381         interrupt requests with anything other than SIGKILL, even before
2382         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2384 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2386         * libfuse: add "tree_lock" rwlock, that is locked for write in
2387         rename, unlink and rmdir, and locked for read in all other
2388         operations.  This should fix the rename/release race reported by
2389         Valient Gough and others.  The solution is very coarse, a finer
2390         grained locking scheme could be implemented, but it would be much
2391         more complex.  Let's see whether this is good enough.
2393 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2395         * Released 2.3-pre7
2397 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2399         * Better fix for out of order FORGET messages.  Now the
2400         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2401         balance many lookups), so the order no longer matters.  This
2402         changes the kernel ABI slightly, but the library remains backward
2403         compatible.
2405 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2407         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2408         Franco Broi again.  Sorry :)
2410 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2412         * Released 2.3-pre6
2414 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2416         * Make fusermount work with fuse kernel modules not yet supporting
2417         the "group_id" option (added for the purpose of stricter
2418         permission checking).
2420 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2422         * Check for hard-linked directories in lookup.  This could cause
2423         problems in the VFS, which assumes that such objects never exist.
2425         * Make checking of permission for other users more strict.  Now
2426         the same privilege is required for the mount owner as for ptrace
2427         on the process performing the filesystem operation.
2429 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2431         * Released 2.3-pre5
2433 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2435         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2436         is needed on certain architectures.  Report from Chris Kirby
2438         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2439         Reported by David Shaw
2441         * Remove "allow_root" option from kernel module, and implement
2442         it's functionality in the library
2444         * Fix Oops caused by premature release of fuse_conn.  Clean up
2445         related code, to be more readable
2447         * Sendfile should not use page cache if "direct_io" mount option
2448         is given
2450 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2452         * Fix Oops in case of nfs export.  Spotted by David Shaw
2454         * Fix another Oops in case of write over nfs with direct_io turned
2455         on.  Again spotted by David Shaw
2457 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2459         * Released 2.3-pre4
2461 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2463         * lib: finalized new readdir() interface, which now supersedes the
2464         getdir() method.
2466 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2468         * Released 2.3-pre3
2470 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2472         * Implement backward compatibility with version 5 kernel ABI
2474 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2476         * Released 2.3-pre2
2478 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2480         * kernel: fix dirent offset handling
2482         * lib: add readdir and releasedir methods
2484         * lib: use fh field of fuse_file_info in opendir, readdir,
2485         releasedir and fsyncdir methods
2487         * lib: check kernel API version and bail out of it's old.  This
2488         will be properly fixed in the next release
2490 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2492         * Released 2.3-pre1
2494 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2496         * kernel API: add padding to structures, so 64bit and 32bit
2497         compiler will return the same size
2499         * kernel API: add offset field to fuse_dirent.  This will allow
2500         more sophisticated readdir interface for userspace
2502         * kernel API: change major number to 6
2504         * kernel: fix warnings on 64bit archs
2506         * kernel: in case of API version mismatch, return ECONNREFUSED
2508 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2510         * kernel: trivial cleanups
2512 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2514         * Add fsyncdir() operation
2516 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2518         * kernel: add locking to background list (fixes previous fix)
2520 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2522         * kernel: fix bug which could cause leave busy inodes after
2523         unmount, and Oops.
2525 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2527         * examples: add -lpthread to link flags to work around valgrind
2528         quirk
2530         * lib: don't exit threads, so cancelation doesn't cause segfault
2532 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2534         * kernel: fix nasty bug which could cause an Oops under certain
2535         situations.  Found by Magnus Johansson
2537 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2539         * libfuse: added opendir() method.  This can be used in case
2540         permission checking in getdir() is too late.  Thanks to Usarin
2541         Heininga for pointing out this deficiency
2543         * libfuse: added init() and destroy() methods to fuse_operations
2545         * kernel: llseek() method for files and directories made explicit
2547         * kernel: fixed inode leak in NFS export in case of nodeid
2548         wrapping
2550 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2552         * libfuse: clean up some unitialized memory found with valgrind
2554         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2555         explicitly linked libpthread for applications
2557 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2559         * fusermount: set umask, otherwise /etc/mtab will have
2560         unpredictable permission.  Spotted by Jindrich Kolorenc
2562         * fusermount: set owner and group of /etc/mtab to original values
2563         on unmount
2565         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2567 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2569         * Cleaned up directory reading (temporary file is not used)
2571 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2573         * Released 2.2
2575 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2577         * Fix possible race when operation is interrupted
2579 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2581         * Fix compilation on 2.6.7
2583 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2585         * Released 2.2-pre6
2587 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2589         * Fix bug in link() operation which caused the wrong path to be
2590         passed as the first argument.  Found by Anton Altaparmakov
2592 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2594         * LIB: fix double reply in readdir operation
2596         * fusermount: fix uid checking bug.  Patch by Adam Connell
2598         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2599         Patch by Keshava Gowda
2601 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2603         * KERNEL: provide correct llseek semantics for fuse device (fixes
2604         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2606 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2608         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2610 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2612         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2613         and RELEASEDIR.  This ends the ugly hack of passing a file
2614         descriptor to the kernel, and actually makes the code simpler.
2616 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2618         * Released 2.2-pre4
2620 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2622         * fusermount: remove capability setting, which was the cause of
2623         problems for some users.  It seems that FS related capabilities
2624         are removed by setfsuid(), so this isn't even needed.
2626 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2628         * fix compilation on 2.4 kernels (reported by Valient Gough)
2630         * fix failure to unmount bug (found by David Shaw)
2632         * fusermount: improve parsing of /etc/fuse.conf
2634 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2636         * Remove 'mount_max' and 'user_allow_other' module options.  These
2637         are now checked by fusermount, and can be set in /etc/fuse.conf
2639         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2641 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2643         * KERNEL: fix possible inode allocation problem, where
2644         sizeof(struct inode) is not aligned (found by Mike Waychison)
2646         * KERNEL: use new follow_link/put_link methods
2648         * KERNEL: cosmetic fixes
2650 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2652         * Released 2.2-pre3
2654 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2656         * Add missing code that was accidently left out
2658 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2660         * Released 2.2-pre2
2662 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2664         * Change "uid" mount option to "user_id" to avoid confusion with a
2665         mount option "uid" commonly used by many filesystems
2667 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2669         * Released 2.2-pre1
2671 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2673         * If FUSE is configured in the kernel, don't build it by default
2675 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2677         * Compile fix by Christian Magnusson
2679 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2681         * Fix compilation for 2.6.{0-5} kernels
2683 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2685         * KERNEL: if request is interrupted, still keep reference to used
2686         inode(s) and file, so that FORGET and RELEASE are not sent until
2687         userspace finishes the request.
2689         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2690         request with the same information, which is more flexible,
2691         simpler, works on embedded systems.
2693 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2695         * KERNEL ABI: update interface to make it independent of type
2696         sizes.  This will help on 64 bit architectures which can run
2697         legacy 32 bit applications.
2699         * KERNEL ABI: add "len" field to request headers.  This will allow
2700         sending/receiving requests in multiple chunks.
2702         * KERNEL: handle file type change more intelligently
2704         * LIB: "-o debug" option should disable backgrounding (fix by
2705         Fabien Reygrobellet)
2707 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2709         * KERNEL: invalidate dentry/attributes if interrupted request
2710         could leave filesystem in an unknown state.
2712 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2714         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2715         These will cause some regressions, but stability is considered
2716         more important.  If any of these features turns out to be
2717         important, it can be readded with the deadlock problems addressed.
2719         * Make all requests interruptible (only with SIGKILL currently).
2720         This can be used to break any deadlock produced by the userspace
2721         filesystem accessing it's own exported files.  The RELEASE request
2722         is special, because if it's interrupted before sending it to
2723         userspace it is still sent, but the reply is not awaited.
2725         * If request is interrupted before being sent to userspace, and if
2726         it hasn't yet got any side effects, it is always restarted,
2727         regardless of the SA_RESTART flag.  This makes these interruptions
2728         transparent to the process.
2730         * Remove shared-writable mmap support, which was prone to an
2731         out-of-memory deadlock situation
2733         * Remove INVALIDATE userspace initiated request
2735         * Make readpages() synchronous.  Asynchronous requests are
2736         deadlock prone, since they cannot be interrupted.
2738         * Add readv/writev support to fuse device operations
2740         * Remove some printks, which userspace FS can use for a DoS
2741         against syslog
2743         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2744         fusermount instead
2746         * LIB: improve compatibility with a fuse.h header installed in
2747         ${prefix}/include which in turn includes the real header.
2749         * LIB: improve compatibility by defining fuse_main() (which is now
2750         not used), so old configure scripts find it.
2752 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2754         * When mounting on a subdirectory of / don't duplicate slashes at
2755         the beggining of path (spotted by David Shaw)
2757 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2759         * Fix bug causing garbage in mount options (spotted by David Shaw)
2761 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2763         * Add 'writepage' flag to 'fuse_file_info'.
2765         * More comments in fuse.h
2767         * Get rid of double underscores
2769 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2771         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2773         * helper.c: add -ho option, which only displays the options not
2774         the usage header.  This can be used by filesystems which have
2775         their own options.
2777 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2779         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2780         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2781         including the fuse header
2783         * Add binary compatibility to 2.1 version of library with symbol
2784         versioning
2786 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2788         * Released 2.1
2790 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2792         * kernel: clean up writing functions
2794         * kernel: no allocation on write in direct_io mode
2796         * move linux/fuse.h to fuse_kernel.h
2798 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2800         * kernel: clean up reading functions
2802 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2804         * kernel: make readpage() uninterruptible
2806         * kernel: check readonly filesystem flag in fuse_permission
2808         * lib: don't die if version file not found and new style device
2809         exists
2811         * lib: add '-r' option, which is short for '-o ro'
2813         * fusermount: simplify device opening
2815         * kernel: when direct_io is turend on, copy data directly to
2816         destination without itermediate buffer.  More efficient and safer,
2817         since no allocation is done.
2819         * fusermount: fix warning if fuse module is not loaded
2821         * kernel: use /dev/fuse on 2.4 too
2823 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2825         * libfuse API change: open, read, write, flush, fsync and release
2826         are passed a 'struct fuse_file_info' pointer containing the open
2827         flags (open and release), and the file handle.  Verion changed to
2828         3.0.
2830 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2832         * More cleanups in the kernel
2834         * The 10,229 charater device number has been assigned for FUSE
2836         * Version file checking fix (reported by Christian Magnusson)
2838         * fusermount: opening the fuse device now doesn't need /sys.
2840         * Optimize reading by controlling the maximum readahead based on
2841         the 'max_read' mount option
2843         * fixes for UCLIBC (Christian Magnusson)
2845 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2847         * Cleaned up kernel in preparation for merge into mainline:
2849         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2851         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2853         * __user annotations for sparse
2855         * allocate individual pages instead of kmalloc in fuse_readdir,
2856         fuse_read and fuse_write.
2858         * Fix NFS export in case "use_ino" mount option is given
2860         * Make libfuse and fusermount compatible with future versions
2862         * fusermount: properly add mount options to /etc/mtab
2864 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2866         * fusermount: do not resolve last component of mountpoint on if it
2867         is '.' or '..'.  This new path resolvation is now done on mount as
2868         well as unmount.  This enables relative paths to work on unmount.
2870         * fusermount: parse common mount options like "ro", "rw", etc...
2872         * Allow module params to be changed through sysfs
2874 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2876         * Released 2.1-pre1
2878 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2880         * Fix bug in fuse_readpages() causing Oops in certain situations.
2881         Bug found by Vincenzo Ciancia.
2883         * Fix compilation with kernels versions > 2.6.9.
2885 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2887         * Check kernel interface version in fusermount to prevent
2888         strangeness in case of mismatch.
2890         * No need to allocate fuse_conn until actual mount happens
2892         * Fix potential race between umount and fuse_invalidate
2894         * Check superblock of proc file in addition to inode number
2896         * Fix race between request_send_noreply() and fuse_dev_release()
2898 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2900         * Separate configure for the kernel directory
2902         * Don't allow write to return more than 'count'
2904         * Extend kernel interface for future use
2906 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2908         * Fix 'makeconf.sh' to use autoreconf if available
2910 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2912         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2913         compatibility with earlier versions.  To compile earier versions
2914         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2915         Do not use the "use_ino" mount flag with filesystems compiled with
2916         FUSE_DIRFIL_COMPAT.
2918         * Add pkg-config support.  To compile a FUSE based filesystem you
2919         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2920         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2921         usually needs to be set to "/usr/local/lib/pkgconfig".
2923         * fuse.h is now installed in ${prefix}/include/fuse/
2925 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2927         * Added "use_ino" mount option.  This enables the filesystems to
2928         set the st_ino field on files
2930 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2932         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2933         by Jeremy Smith)
2935         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2937         * Clear the 'exited' flag when mail loop is finished
2939 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2941         * Make xattr functions work under 2.6 (bug found by Vincenzo
2942         Ciancia)
2944 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2946         * Reset request in fuse_flush() (bugreport by David Shaw)
2948 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2950         * fuse_main() now does not exit on error, rather it returns an
2951         error code
2953         * Exported __fuse_setup() and __fuse_teardown() functions, which
2954         make it easier to implement a custom event loop.
2956         * Use daemon() call to background the filesystem after mounting.
2957         This function closes the standard input, output and error and
2958         changes the current working directory to "/".
2960 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2962         * Released 1.9
2964 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2966         * Don't allow fuse_flush() to be interrupted (bug found by David
2967         Shaw)
2969 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2971         * Add PID to fuse_context.  Patch by Steven James
2973         * Change file handle type to 'unsigned long' in kernel interface
2975 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2977         * A slight API change: fuse_get_context() doesn't need the "fuse"
2978         pointer, but the returned context contains it instead.  The
2979         fuse_get() function is not needed anymore, so it's removed.
2981         * Fix mounting and umounting FUSE filesystem under another FUSE
2982         filesystem by non-root (bug spotted by Valient Gough)
2984 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2986         * Fix deadlock in case of memory allocation failure.  Patch by
2987         Christian Magnusson
2989 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2991         * Check memory allocation failures in libfuse
2993 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2995         * Check temporary file creation failure in do_getdir().  Bug
2996         spotted by Terje Oseberg
2998 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
3000         * Allow "large_read" option for 2.6 kernels but warn of deprecation
3002         * Make requests non-interruptible so race with FORGET is avoided.
3003         This is only a temporary solution
3005         * Support compiling FUSE kernel module on 2.4.x UML kernels
3007 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
3009         * Fix bug in case two FORGETs for the same node are executed in
3010         the wrong order.  Bug spotted and endured for months by Franco
3011         Broi, and logfile for solution provided by Terje Oseberg
3013 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
3015         * Add -D_REENTRANT to the compile flags
3017         * Add documentation of fuse internals by Terje Oseberg
3019 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
3021         * Change release method to be non-interruptible.  Fixes bug
3022         causing missing release() call when program which has opened files
3023         is killed (reported by Franco Broi and David Shaw)
3025 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
3027         * Add fuse_invalidate() to library API
3029 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
3031         * Check permissions in setattr if 'default_permissions' flag is
3032         set.  Bug spotted by Damjan Lango
3034 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
3036         * 'large_read' mount option removed for 2.6 kernels, since the
3037         default (dynamic read size) is better
3039         * Extend kernel API with file handles.  A file handle is returned
3040         by open, and passed to read, write, flush, fsync and release.
3041         This is currently only used for debug output in the library.
3043         * Security changes:
3045         * Change the current directory to the mountpoint before checking
3046         the permissions and mount filesystem on "."
3048         * By default don't modprobe the fuse module for non-root.  The old
3049         behavior can be restored with the '--enable-auto-modprobe' flag of
3050         ./configure
3052         * By default don't allow shared writable mappings for non-root.
3053         The old behavior can be restored with the 'user_mmap=1' module
3054         parameter
3056 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
3058         * Clean up mount option passing to fusermount and to fuse_new()
3059         BEWARE: this changes the userspace API slightly, and the command
3060         line usage of programs using fuse_main()
3062 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
3064         * Optimize reading under 2.6 kernels by issuing multiple page
3065         asynchronous read requests
3067 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
3069         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3071 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
3073         * Separate directory entry and inode attribute validity timer
3075         * New write semaphore to stop page writeback during truncate
3077         * Fsync now waits for all writes to complete before sending the
3078         request
3080         * Optimization: if a page is completely written by
3081         fuse_commit_write(), clear the dirty flag and set the uptodate
3082         flag for that page
3084         * Some memory cleanup at exit
3086 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
3088         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3089         disable the "hide if open" behavior of unlink/rename.
3091         * If temporary buffer allocation fails in raw read, fall back to a
3092         smaller buffer
3094 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
3096         * Fix bug in do_open() in libfuse: open count was incremented
3097         after the reply is sent so it could race with unlink/forget and
3098         cause an abort.
3100 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
3102         * When performing create or remove operation, refresh the parent's
3103         attributes on next revalidate, as i_nlink (and maybe size/time)
3104         could be inacurate.
3106         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3107         pages (2.6 only)
3109         * Set set_page_dirty address space operation (2.6 only)
3111 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
3113         * Minor fix in read:  print debug info even if read size is zero
3115 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
3117         * Fix race between truncate and writepage (fsx-linux now runs
3118         without error)
3120 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
3122         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3123         by Mattias Wadman)
3125         * Added option for direct read/write (-r)
3127         * Fix revalidate time setting for newly created inodes
3129         * Remove uid==0 check for '-x' option in fusermount (kernel checks
3130         this)
3132         * fuse_main() only installs handlers for signals (out of INT, HUP,
3133         TERM, PIPE), for which no handler has yet been installed
3135         * Add module option 'user_allow_other' which if set to non-zero
3136         will allow non root user to specify the 'allow_other' mount option
3137         ('-x' option of fusermount)
3139         * Fix deadlock between page writeback completion and truncate
3140         (bug found by Valient Gough with the fsx-linux utility)
3142 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
3144         * Change passing fuse include dir to 2.6 kernel make system more
3145         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3146         kernel)
3148 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
3150         * Acquire inode->i_sem before open and release methods to prevent
3151         concurrent rename or unlink operations.
3153         * Make __fuse_read_cmd() read only one command.  This allows
3154         multiplexing the fuse file descriptor with other event sources
3155         using select() or poll() (patch by Jeff Harris)
3157         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3159 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
3161         * Fix file offset wrap around at 4G when doing large reads
3163 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3165         * Fix memory leak in open (Valient Gough)
3167 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
3169         * Add "close after delete" support to libfuse (patch by Valient
3170         Gough)
3172         * Cancel all worker threads before exit in multithreaded mode
3174 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
3176         * Fix locking bugs
3178         * Don't send reply to RELEASE
3180         * Work with newer libtool (1.5a)
3182         * Check for st_atim member of struct stat
3184 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
3186         * No request allocation needed on inode and file release
3188 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
3190         * Fix possible inode leak in userspace in case of unfinished
3191         lookup/mknod/mkdir/symlink/link operation.
3193 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
3195         * Fix some races and cleanups in fuse_read_super()
3197 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
3199         * Requests are allocated at open time
3201 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
3203         * Build shared library as well as static (using libtool)
3205         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
3206         there has not been a release with the previous minor number, and I
3207         hope nobody is using it for anything.
3209         * Change fuse_main(), so that default behavior is to go into
3210         background if mount is successful.  '-f' and '-d' options disable
3211         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
3212         newbie complaint.
3214         * Cache ENOSYS (function not implemented) errors on *xattr, flush
3215         and fsync
3217         * Don't call getdir method from open() only from first readdir().
3218         Open is sometimes just used to store the current directory
3219         (e.g. find)
3221 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
3223         * Added flush() call
3225 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3227         * Extended attributes support for 2.4 (patch by Cody Pisto)
3229 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3231         * Fixed parser with modversions (Mattias Wadman)
3233 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3235         * Added mount option parser to 2.4 build
3237 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3239         * Replaced binary mount data with text options
3241         * Show FUSE specific mount options in /proc/mounts
3243         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3245 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3247         * Check some limits so userspace won't get too big requests
3249 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3251         * Kill compile warning
3253         * Upgraded user-mount patch for 2.6.5
3255 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3257         * Add detection of user-mode-linux to configure
3259 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3261         * fixed zero size case for getxattr and listxattr
3263 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3265         * new fusermount flag '-z': lazy unmount, default is not lazy
3267         * Extended attributes operations added (getxattr, setxattr,
3268         listxattr, removexattr)
3270 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3272         * If filesystem doesn't define a statfs operation, then an
3273         all-zero default statfs is returned instead of ENOSYS
3275 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3277         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3279 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3281         * Fix for uClinux (Christian Magnusson)
3283 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3285         * fuse_main() adds "-n progname" to the fusermount command line
3287         * More kernel interface changes:
3289         * Lookup/getattr return cache timeout values
3291 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3293         * Clean up option parsing in fuse_main()
3295         * Added fuse_get() function which returns the fuse object created
3296         by fuse_main()
3298 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3300         * removed old way of mounting (fusermount mountpoint program)
3302         * more kernel interface changes:
3304         * added nanosecond precision to file times
3306         * removed interface version from mount data
3308         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3310 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3312         * statfs library API changed to match other methods.  Since this
3313           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3315         * kernel interface changes follow:
3317         * statfs changed to 64 bits, added 'bavail' field
3319         * add generation number to lookup result
3321         * optimized mknod/mkdir/symlink/link (no separate lookup is
3322         needed)
3324         * rdev size increased to 32 bits for mknod
3326         * kernel interface version changed to 3.1
3328 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3330         * user-mount upgraded for 2.6.3 kernel
3332 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3334         * Added user-mount.2.6.2-rc3.patch
3336         * Add FS_SAFE flag to fuse filesystem
3338         * fusermount should allow (un)mounting for non-root even if not
3339         suid-root
3341 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3343         * Remove MS_PERMISSION mount flag (that means something else now)
3345 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3347         * Added check for i_size_read/write functions to configure.in
3348         (patch by Valient Gough)
3350 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3352         * Fixed writing >= 2G files
3354         * Check file size on open (with generic_file_open())
3356         * Readpage calls flush_dcache_page() after storing data
3358         * Use i_size_read/write for accessing inode->i_size
3360         * Make loopback mount of a fuse file work
3362 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3364         * Released 1.1
3366 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3368         * Properly check if the inode exists in fuse_invalidate
3370 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3372         * Added -q option for fusermount
3374         * fuse_unmount() now uses -q option of fusermount, so no error is
3375         printed if the cause of the program exit is that the filesystem
3376         has already been unmounted
3378         * Fix i_nlink correctness after rmdir/unlink
3380 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3382         * Released 1.1-pre2
3384 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3386         * Fix typo (thanks Marcos Dione)
3388         * Compile fixes for 2.4 kernels
3390 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3392         * Fix CONFIG_MODVERSIONS compile on 2.6
3394 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3396         * Write all pending data before a RELEASE operation
3398         * Suppress 'Bad file descriptor' warning on exit
3400         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3401         get confused with '-d' of fuse_main() (sorry about this change)
3403         * New fusermount option '-l' which enables big reads.  Big reads
3404         are now disabled by default.
3406         * fuse_main() can accept fusermount arguments after a '--'
3408 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3410         * Support for exporting filesystem over NFS (see README.NFS)
3412 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3414         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3415         much more nicely in low-memory situations
3417         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3418         (Note: the mknod method does not yet use 32bit device number)
3420 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3422         * Code cleanups
3424 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3426         * Released 1.1-pre1
3428 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3430         * Integrated 2.6 kernel support patch by Michael Grigoriev
3432         * Improvements and cleanups for 2.6 kernels
3434 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3436         * Added -d option to fusermount
3438 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3440         * Added major+minor version to library API, and minor version to
3441           kernel API
3443 2003-12-13  David McNab <david@rebirthing.co.nz>
3445         * Implemented fsync support in examples/example.py
3447         * Implemented 'fsync' and 'statfs' methods in python
3448           interface
3450 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3452         * Make it compile on 2.4.19.
3454         * Add fsync operation (write file failed on xemacs & vi)
3456 2003-12-12  David McNab <david@rebirthing.co.nz>
3458         * Added distutils support to the python module, as per standard
3459           python development practice
3461 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3463         * Add file locking for mount/unmount (based on patch by Valient
3464         Gough)
3466 2003-12-11  David McNab <david@rebirthing.co.nz>
3468         * Python filesystem - was broken with python2.3, now fixed:
3469            - changed PyTuple_* calls to PySequence_*, because os.lstat
3470              is no longer returning a pure tuple
3471            - changed PyInt_Check() calls to also call PyLong_Check,
3472              to cover for cases (eg os.lstat) where longs are returned
3473            - Added support for file 'release' handling, which IMO is
3474              essential since this signals to a FS that writes to a file
3475              are complete (and therefore the file can now be disposed of
3476              meaningfully at the python filesystem's discretion)
3477            - Added '__init__' handler to base Fuse class, which allows
3478              your Python class to know the mountpoint and mount args,
3479              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3481         * General:
3482            - added 'mount.fuse' script (in util/ dir), which is meant to be
3483              symlinked from /sbin, and which allows FUSE filesystems to
3484              be mounted with the 'mount' command, and listed in fstab;
3485              also, mount arguments get passed to your filesystem
3488 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3490         * Fix kernel version detection (again).  Bugreport by Peter Levart
3492 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3494         * Applied read combining patch by Michael Grigoriev (tested by
3495         Valient Gough and Vincent Wagelaar)
3497 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3499         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3500         #766443)
3502 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3504         * Error code fixes in kernel module
3506 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3508         * kernel version detection fix
3510         * fusermount now uses "lazy" umount option
3512         * fusermount can use modprobe with module-init-tools
3514 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3516         * Integrated caching patch by Michael Grigoriev
3518         * Added "Filesystems" file with descriptions of projects using
3519         FUSE
3521         * Added patch by Michael Grigoriev to allow compliation of FUSE
3522         kernel module for 2.6 kernels
3524 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3526         * And another spec-file fix by Achim Settelmeier
3528 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3530         * Spec-file fix by Achim Settelmeier
3532 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3534         * Fix umount oops (found by Samuli Kärkkäinen)
3536 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3538         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3540 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3542         * Updated fuse.spec file (Achim Settelmeier)
3544 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3546         * Version 1.0 released
3548 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3550         * SuSE compilation fix by Juan-Mariano de Goyeneche
3552 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3554         * The release() VFS call is now exported to the FUSE interface
3556 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3558         * 64 bit file offset fixes in the fuse kernel module
3560         * Added function 'fuse_exit()' which can be used to exit the main
3561         loop
3563 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3565         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3566         an incompatible interface change.
3568 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3570         * Portablility fix (bug reported by C. Chris Erway)
3572 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3574         * Use Mark Glines' fd passing method for default operation instead
3575         of old reexec
3577 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3579         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3581 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3583         * fix incompatiblity with Red Hat kernels, with help from Nathan
3584         Thompson-Amato.
3586 2002-04-18  Mark Glines <mark@glines.org>
3588         * added an alternative to fuse_mount(), called
3589       fuse_mount_ioslave(), which does not need to reexec the
3590       FUSE program.
3591         * added a small helper util needed by fuse_mount_ioslave().
3593 2002-03-16  Mark Glines <mark@glines.org>
3595         * use struct fuse_statfs everywhere possible to avoid problems
3596       with the headerfiles changing struct statfs member sizes
3598 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3600         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3602 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3604         * RPM support by Achim Settelmeier
3606 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3608         * Version 0.95 released
3610 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3612         * Revaidate all path components not just the last, this means a
3613         very small performance penalty for being more up-to-date.
3615 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3617         * Update and fix python interface
3619 2002-01-07  Mark Glines <mark@glines.org>
3621         * Added statfs() support to kernel, lib, examples, and perl!
3623 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3625         * Better cross compilation support
3627         * Ported to Compaq IPAQ
3629 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3631         * Added function fuse_get_context() to library API (inspired by
3632         patch from Matt Ryan)
3634         * Added flags to fusermount and to kernel interface to control
3635         permission checking
3637         * Integrated fuse_set_operations() into fuse_new()
3639 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3641         * Applied header protection + extern "C" patch by Roland
3642         Bauerschmidt
3644 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3646         * Added perl bindings by Mark Glines
3648 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3650         * Cleaned up way of mounting simple filesystems.
3652         * fuse_main() helper function added
3654 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3656         * Optimized read/write operations, so that minimal copying of data
3657         is done
3659 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3661         * Python bindings by Jeff Epler added
3663 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3665         * Fixed vfsmount reference leak in fuse_follow_link
3667         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3668         userspace is ignored
3670 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3672         * Started ChangeLog