Merge branch 'fuse_2_9_bugfix'
[fuse.git] / ChangeLog
blobc4268b22149cae98b78650486030d5719122225e
1 2013-02-04  Miklos Szeredi <miklos@szeredi.hu>
3         * libfuse: fix crash in unlock_path().  Patch by Ratna Manoj
5         * libfuse: fix the 'remember' option.  The lru list was not
6         initialized for the "/" path.  This resulted in remove_node_lru()
7         crashing on LOOKUP-DOTDOT.  Patch by Madan Valluri
9         * libfuse: configure: detect new util-linux
11         * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
12         Patch by Anatol Pomozov
14         * libfuse: rename ./configure.in to ./configure.ac.  Patch by
15         Anatol Pomozov
17 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
19         * Released 2.9.2
21 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
23         * Fix deadlock in libfuse.  Running "svn update" on a fuse
24         filesystem could deadlock because of a bug in the way the paths
25         are locked.  Reported by Kazuaki Anami
27 2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
29         * Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee
31 2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
33         * Not unhashing the name in forget (commit on 2011-12-09) broke
34         the forget logic in a subtle way, resulting in "fuse internal
35         error: node NNN not found" and causing the filesystem daemon to
36         abort.  Fix by incrementing the node refcount if nlookup goes from
37         zero to one.  Reported by Kyle Lippincott
39 2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
41         * Fix linking against GNU libiconv.  Patch by Natanael Copa
43 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
45         * Start of 3.0 series.  This is going to be a new major version of
46         the library breaking backward compatibility on the binary level as
47         well as the source level.
49 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
51         * Released 2.9.1
53 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
55         * Fix crash caused by freeing a stack address.  Reported by Itay
56         Perl
58 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
60         * Fix install of mount.fuse from out-of-tree build.  Patch by
61         Olivier Blin
63         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
65 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
67         * Add fallocate operation.  Only works on linux kernels 3.5 or
68         later.  Patch by Anatol Pomozov
70 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
72         * Linking to a library that uses threads requires the application
73         to be linked with -pthreads otherwise some pthread functions will
74         be linked to stubs in glibc.  So move -pthread from Libs.private
75         to Libs in fuse.pc.  Reported by Werner Fink
77         * Fix the compile command in the examples. Reported by Luciano
78         Dalle Ore
80 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
82         * Released 2.9.0
84 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
86         * Add missing fuse_fs_flock to fuse_versionscript
88 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
90         * Check protocol version before sending notifications and return
91         -ENOSYS if a particular notification is not supported.
93         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
94         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
95         and UTIME_NOW values as specified in utimensat(2).
97 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
99         * Interpret octal escape codes in options.  Requested by Jan
100         Engelhardt
102 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
104         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
105         Lifted from the Debian package.  The man pages were written by
106         Daniel Baumann and Bastien Roucaries
108 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
110         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
112 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
114         * Remove unnecessary mutex unlock at the end of multithreaded
115         event loop.
117 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
119         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
121         * Don't unhash name in FORGET.  This resulted in ENOENT being
122         returned for unlinked but still open files if the kernel sent a
123         FORGET request for the parent directory.
125         * Free request in fuse_reply_data().
127 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
129         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
130         Dreyfus
132         * Check for availability of utimensat() function.  Patch by
133         Emmanuel Dreyfus
135 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
137         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
138         file or directory is deleted.  Patch by John Muir
140 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
142         * Update retrieve_reply() method
144 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
146         * Low level API: lock argument of fuse_reply_lock should have a
147         'const' qualifier.  Reported by Shachar Sharon
149         * Add support for ioctl on directories.  Reported by Antonio SJ
150         Musumeci
152 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
154         * Reply to request with ENOMEM in case of failure to allocate
155         request structure.  Otherwise the task issuing the request will
156         just freeze up until the filesystem daemon is killed.  Reported by
157         Stephan Kulow
159 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
161         * Replace daemon() function with fork().  Patch by Anatol Pomozov
163 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
165         * If configured with --disable-mtab then don't call mount(8) from
166         libfuse to update the mtab.  Reported by: James Sierp
168 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
170         * Use LRU list for cleaning up the cache if the "remember=T"
171         option was given.  Patch by therealneworld@gmail.com
173 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
175         * Add ->flock() operation to low and high level interfaces.  This
176         fixes problems with emulating flock() with POSIX locking.
177         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
178         filesystems don't need to implement this, as the kernel takes care
179         of file locking.  The only reason to implement locking operations
180         is for network filesystems which want file locking to work between
181         clients.
183 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
185         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
186         not follow symlinks as other layers do that already.
188 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
190         * Add "remember" option.  This works similar to "noforget" except
191         that eventually the node will be allowed to expire from the cache.
192         Patch by therealneworld@gmail.com
194 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
196         * Check if splice/vmsplice are supported
198 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
200         * Remove -lrt -ldl from fuse.pc for dynamic linking since
201         libfuse.so is already linked with these libraries.  Reported by:
202         Nikolaus Rath
204 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
206         * Cleaner build output.  Patch by Reuben Hawkins
208 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
210         * Disable splice by default, add "splice_read", "splice_write" and
211         "splice_move" options.  Keep the "no_splice_*" variants, which can
212         disable splice even if the filesystem explicitly enables it.
214 2011-04-15  Max Krasnyansky <maxk@kernel.org>
215         * Added support for "auto_unmount" option which unmounts the
216         filesystem automatically on process exit (or crash).
218 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
220         * Patches by Laszlo Papp fixing various issues found by the
221         Coverity checker
223 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
225         * In case of failure to add to /etc/mtab don't umount.  Reported
226         by Marc Deslauriers
228 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
230         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
231         worker threads.  The pause() was added in 2.2.1 to prevent
232         segfault on pthread_cancel() on an exited, detached thread.  Now
233         worker threads are not detached and pthread_cancel() should work
234         fine even after the thread exited.  Reported by Boris Protopopov
236 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
238         * fusermount: chdir to / before performing mount/umount
240         * fusermount: only allow mount and umount if util-linux supports
241         --no-canonicalize
243 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
245         * Highlevel lib: allow hash tables to shrink
247         * Highlevel lib: add slab allocation for node cache.  This will
248         allow the memory used by the filesystem to grow and shrink
249         depending on how many inodes are currently cached.
251 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
253         * Highlevel lib: use dynamically resized hash table for looking up
254         by name and node ID.
256 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
258         * Allow batching of forget requests.  This allows forget requests
259         to be processed faster and doesn't require a modification to fuse
260         filesystems.  Reported by Terje Malmedal
262         * Add ->forget_multi() operation to the lowlevel API.  The
263         filesystem may implement this to process multiple forget requests
264         in one call
266         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
267         for 32bit vs. 64bit userspace
269 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
271         * Add new write_buf() method to the highlevel API.  Similarly to
272         the lowlevel write_buf() method, this allows implementing zero
273         copy writes.
275         * Add a new read_buf() method to the highlevel API.  This allows
276         returning a generic buffer from the read method, which in turn
277         allows zero copy reads.
279         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
280         methods.  Leave the ->read() and ->write() implementations for
281         reference, even though they are not necessary.
283 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
285         * Fix check for read-only fs in mtab update
287         * Open /dev/null for write instead of read for redirecting stdout
288         and stderr
290         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
291         version 2.18 or later), and umount(2) supports the
292         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
293         "fusermount -u" will call the umount(2) system call and use
294         "umount --fake ..." to update /etc/mtab
296         * Added --disable-legacy-umount option to configure.  This
297         disables the runtime checking of umount(8) version.  When built
298         with this option then "fusermount -u" will fail if umount(8)
299         doesn't support the --fake and --no-canonicalize options.
301         * Fix fuse_buf_copy() if already at the end of the buffers
303         * Add new ->write_buf() method to low level interface.  This
304         allows passig a generic buffer, either containing a memory buffer
305         or a file descriptor.  This allows implementing zero copy writes.
307         * Add fuse_session_receive_buf() and fuse_session_process_buf()
308         which may be used in event loop implementations to replace
309         fuse_chan_recv() and fuse_session_process() respectively.
311         * Remove unnecessary restoring of current working directory in
312         "fusermount -u"
314         * Add ctx->pid to debug output
316         * Fix st_nlink value in high level lib if file is unlinked but
317         still open
319         * libfuse: add store request.  Request data to be stored in the
320         kernel buffers for a given inode.
322         * libfuse: add retrieve request.  Retrieve data stored in the
323         kernel buffers for a given inode.
325 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
327         * Use LTLIBICONV when linking libfuse.  This fixes building against
328         uclibc + libiconv.  Patch by Natanael Copa
330 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
332         * Add missing argument check in ulockmgr.c to prevent calling
333         ulockmgr_server with illegal arguments. This would cause an ever
334         growing list of ulockmgr_server processes with an endless list of
335         open files which finally exceeds the open file handle limit.
336         Patch by Markus Ammer
338 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
340         * Fix ambiguous symbol version for fuse_chan_new.
341         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
342         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
344 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
346         * Fix option escaping for fusermount.  If the "fsname=" option
347         contained a comma then the option parser in fusermount was
348         confused (Novell bugzilla #641480).  Fix by escaping commas when
349         passing them over to fusermount.  Reported by Jan Engelhardt
351 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
353         * Add NetBSD support.  Patch from Emmanuel Dreyfus
355 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
357         * libfuse: add buffer interface.  Add a generic buffer interface
358         for use with I/O.  Buffer vectors are supplied and each buffer in
359         the vector may be a memory pointer or a file descriptor.
361         * The fuse_reply_fd() interface is converted to using buffers.
363 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
365         * Make the number of max background requests and congestion
366         threshold tunable.  New options are "max_background" and
367         "congestion_threshold".  Only effective on linux kernel versions
368         2.6.32 or greater.  Patch by Csaba Henk
370 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
372         * Add fuse_reply_fd() reply function to the low level interface.
373         On linux version 2.6.35 or greater this will use splice() to move
374         data directly from a file descriptor to the fuse device without
375         needing to go though a userspace buffer.  With the
376         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
377         directly into the filesystem's cache.  On earlier kernels it will
378         fall back to an intermediate buffer.  The options
379         "no_splice_write" and "no_splice_move" can be used to disable
380         splicing and moving respectively.
382 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
384         * Fix out-of-source build.  Patch by Jörg Faschingbauer
386         * Add a "nopath" option and flag, indicating that path argument
387         need not be calculated for the following operations: read, write,
388         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
389         fgetattr, lock, ioctl and poll.
391 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
393         * Remove "chmod root" from install of fusermount.  Reported by
394         Lucas C. Villa Real
396 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
398         * Released 2.8.4
400 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
402         * Fix checking for symlinks in umount from /tmp.  Reported by Al
403         Viro
405         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
407 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
409         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
410         Bruylants
412 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
414         * Fix stack alignment for clone()
416 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
418         * Released 2.8.3
420 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
422         * Using "--no-canonicalize" with umount(8) conflicts with the race
423         fix, sinceit assumes the supplied path is absolute, while the race
424         fix relies on the path being relative to the current directory.
425         Reported by Tom Rindborg
427 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
429         * Released 2.8.2
431 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
433         * Fix race if two "fusermount -u" instances are run in parallel.
434         Reported by Dan Rosenberg
436         * Make sure that the path to be unmounted doesn't refer to a
437         symlink
439 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
441         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
443 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
445         * Use '--no-canonicalize' option of mount(8) (available in
446         util-linux-ng version 2.17 or greater) to avoid calling
447         readling(2) on the newly mounted filesystem before the mount
448         procedure is finished.  This has caused a deadlock if "audit" was
449         enabled in the kernel.  Also use '--no-canonicalize' for umount to
450         avoid touching the mounted filesystem.
452 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
454         * Released 2.8.1
456 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
458         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
460 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
462         * Released 2.8.0
464 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
466         * Add missing fuse_session_data to versionscript
468         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
470 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
472         * Clarify how the protocol version should be negotiated between
473         kernel and userspace.  Notably libfuse didn't correctly handle the
474         case when the supported major versions didn't match
476         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
478 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
480         * The context is extended with a 'umask' field.  The umask is sent
481         for mknod, mkdir and create requests by linux kernel version
482         2.6.31 or later, otherwise the umask is set to zero.  Also
483         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
484         supports this feature, then this flag will be set in conn->capable
485         in the ->init() method.  If the filesystem sets this flag in in
486         conn->want, then the create modes will not be masked.
488         * Add low level interfaces for lookup cache and attribute
489         invalidation.  This feature is available in linux kernels 2.6.31
490         or later.  Patch by John Muir
492         * Kernel interface version is now 7.12
494         * fusermount: Do not silently ignore command line arguments.
495         Patch by Sebastian Harl
497 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
499         * Released 2.8.0-pre3
501 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
503         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
504         level lib) functions to query the supplementary group IDs for the
505         current request.  Currently this is implemented on Linux by
506         reading from the /proc filesystem.
508 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
510         * Add "noforget" option to high level lib to prevent ESTALE errors
511         on NFS exported filesystems.  This result in paths being cached
512         forever, resulting in ever growing memory usage.  Use with care.
514         * Add "no_remote_lock" option to disable remote file locking even
515         if the filesystem implements it.  With this option locking
516         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
517         will ignore remotely locked files.
519         * CUSE patches from Tejun Heo:
521         * Unrestricted ioctl support left some debris.  Clean them up:
522           o No reason to pass around pointer to flags.  Pass flags directly.
523           o Clean up comment and prototype parameter names.
524           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
525           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
527         * Add fuse_reply_ioctl_iov()
529         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
530         and make send_reply_iov() and fuse_setup_common() global (also in
531         fuse_i.h).  These will be used by CUSE support.
533         * Restructure fuse_ll_process()
535         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
536         operations as dir operations don't make sense for CUSE where one
537         instance implements single character device.
539         CUSE support comes with its own cuse_lowevel_ops and related
540         initialization and helper functions.  Except for initialization, it
541         usage is basically identical to FUSE.
543         This patch also adds example/cusexmp.c which can create a character
544         device with name and device number specified on command line.  The
545         created device itself is pretty boring.  It's a bit bucket supporting
546         read, write and access via ioctl.
548 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
550         * Add missing fuse_reply_bmap to versionscript.  Debian
551         Bug#531329.  Reported by Goswin Brederlow
553 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
555         * Don't call forget_node() if the lookup was negative and write()
556         for the reply returned ENOENT.  Reported by John Haxby
558 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
560         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
562 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
564         * Fix missing newlines in some printfs
566         * Fix 'make install-strip'.  Reported by Dominick Layfield
568 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
570         * Released 2.8.0-pre2
572 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
574         * Implement poll support.  Patch by Tejun Heo
576         * Add missing setattr flags to <fuse_lowlevel.h>.
578         * Only pass valid flags to ->setattr().
580 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
582         * Implement ioctl support.  On high level interface only
583         "restricted" ioctls are supported (which are defined with the
584         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
585         will only be allwed to CUSE (Character Device in Userspace)
586         servers.  Patch by Tejun Heo
588 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
590         * If open sets fi->nonseekable, libfuse will tell the kernel that
591         the file is not seekable.  Patch by Tejun Heo
593 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
595         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
596         interrupt handling function.  Reported by Tero Marttila
598 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
600         * Allow commas in options to be escaped with a backslash
602         * Add new function: fuse_opt_add_opt_escaped()
604         * Add missing fuse_reply_bmap() to the version script
606 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
608         * Pass current file flags to read and write operations
610 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
612         * Clean up debug output in highlevel lib
614 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
616         * Released 2.8.0-pre1
618 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
620         * Fix handling of (no)suid and (no)dev options if filesystem is
621         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
623         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
624         read-only filesystem.  This works around issues with certain mount
625         implementations.  Reported by Szabolcs Szakacsits.
627 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
629         * Remove fuse kernel module sources.  Linux 2.6.27 will support
630         NFS exporting.
632 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
634         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
635         Szakacsits
637         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
638         Szabolcs Szakacsits
640 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
642         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
644 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
646         * Don't allow bigger than 4kB writes by default on 2.6.26 and
647         later kernels, so that filesystems not expecting this are not
648         broken on a kernel upgrade.  Provide a 'big_writes' mount option
649         to enable this feature.  In future API revisions this may become
650         the default.
652 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
654         * Update warning message for missing newline at end of fuse.conf
656         * Update debug message for successful operation to not include the
657         string "error:"
659 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
661         * Update error message for missing mountpoint parameter.  Reported
662         by Allen Pulsifer
664 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
666         * Print library version information to debug output
668         * Highlevel lib: don't limit paths to 4095 characters
670 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
672         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
674 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
676         * Fix missing pthread_mutex_destroy in error path of
677         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
679 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
681         * Add queuing on contention to per-node lock algorithm, to avoid
682         starvation.
684         * Only enable cancelation when reading a request, otherwise
685         cancellation could happen with a mutex held, which could hang the
686         process on umount
688 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
690         * Block SIGCHLD when executing mount and umount
692         * fusexmp_fh: avoid unnecessary seeking in readdir
694         * Update kernel interface to 7.9:
696         * Support receiving file handle from kernel in GETATTR request
698         * Allow operations with a NULL path argument, if the filesystem
699         supports it
701         * Add support atomic open(O_TRUNC)
703         * Support the st_blksize field in struct stat
705         * If the "FUSE_THREAD_STACK" environment is set, initialize the
706         stack size of threads by this value.  Patch by Florin Malita
708         * Add per-node locking, instead of a global tree lock to protect
709         the path from changing during operations.  Original patch by
710         Rodrigo Castro
712 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
714         * lib/mount_bsd.c:
715         - string formatting fixes
716         - exit if mounting has failed
717           (in FreeBSD a mount failure is not critical per se, as the daemon
718           still could be mounted externally, but waiting for such an event
719           is more confusing than fruitful)
720         - ditch the kvm(8) stuff and simply use forced unmount which just
721           won't block
722         - prettify option specifications
723         - add "-onosync_unmount" kernel option
725 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
727         * lib/mount_bsd.c:
728         - refine device closing in a race-free way
729         - add support for "-osubtype" on FreeBSD
731         * makeconf.sh: make it work under FreeBSD
733 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
735         * lib/mount_bsd.c: close device before unmount
736         (cf. lib/mount.c rev. 1.43) and fix some warnings 
738 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
740         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
742 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
744         * Released 2.7.2
746 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
748         * Fix kernel module compile for 2.6.24
750         * Invalidate attributes of parent directory after create(), since
751         the modification time changes.  Invalidate attributes on rename,
752         since some filesystems may update st_ctime.  Reported by Szabolcs
753         Szakacsits
755         * Fix NFS exporting to handle 64bit node IDs
757         * Disable old symbol versions if __UCLIBC__ is defined.  If a
758         symbol in a library has multiple versions, the runtime linker in
759         uClibc seems to randomly choose between them.
761         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
762         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
764         * Close fuse device file descriptor before calling umount(),
765         preventing a deadlock when umount is synchronous.  Reported by
766         Szabolcs Szakacsits
768 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
770         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
771         symlink.  This bug was introduced in 2.7.1 by "Don't call
772         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
774 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
776         * Released 2.7.1
778 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
780         * Clarify licence version to be "LGPLv2" for the library
782         * kernel fixes:
784         * After mount set nlink attribute for the root inode to 1
786         * Fix wake up of task waiting for a reserved request
788         * Fix allowing setattr, listxattr and statfs for other users
790 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
792         * Add missing context initialization in fuse_fs_chmod().  Bug
793         found by "iohead"
795         * Fix kernel module compilation for 2.6.23.  Based on patch by
796         Marian Marinov
798 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
800         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
802 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
804         * Work around hotplug issue, that it calls filesystem with file
805         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
807 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
809         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
810         Tomas M
812         * Also don't touch /etc/mtab if it is within the mounted
813         filesystem.  Suggested by Jeffrey Law
815 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
817         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
818         C. Villa Real
820 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
822         * Released 2.7.0
824 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
826         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
827         filesystem is only invoking fuse to print a help message, or
828         version.  Fixes RedHat bugzilla #217343
830 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
832         * lib: fix locking when loading a filesystem module
834 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
836         * Add fs subtype support to mount.fuse
838 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
840         * Add fs subtype support to libfuse and fusermount
842 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
844         * kernel: sync with mainline (2.6.22)
846 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
848         * Send debug output to stderr instead of stdout.  Patch by Jan
849         Engelhardt
851 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
853         * libulockmgr: Work around a kernel bug in recv(), causing it to
854         sometimes return zero even if data was available on the socket.
856 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
858         * lib: optimization: store parent pointer in node instead of
859         parent id
861 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
863         * lib: don't create new thread for each FORGET request.  FORGET
864         messages sometimes caused so many threads to be created, that
865         process virtual memory space ran out.  Reported by Chris AtLee
867 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
869         * lib: fix memory leak on thread creation failure in multithreaded
870         event loop.  Found by Chris AtLee
872 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
874         * lowlevel lib: add fuse_reply_iov function, which is similar to
875         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
876         Willcocks
878 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
880         * Fix Oops or error if a regular file is created with mknod(2) on
881         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
882         J. Cameijo Cerdeira for the report
884 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
886         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
887         Error reported by Csaba Henk, fix by Miklos Szeredi
889         * libfuse: fix unlock in flush
891         * libfuse: do unlocking on RELEASE+FLUSH
893 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
895         * Released 2.7.0-rc1
897 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
899         * kernel: sync with mainline:
901         * Use invalidate_mapping_pages() if available
903         * Fix BUG when invalid file type is supplied in mount. Patch by
904         Timo Savola
906 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
908         * libfuse: call umount(8) directly instead of fusermount if
909         possible
911         * Clean up init script, make it LSB compliant
913 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
915         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
916         up the main thread on umount.  This is more elegant, and works
917         even if signals are blocked.
919 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
921         * Improve mounting support in libfuse:
922          - check non-empty mountpoint
923          - only fall back to fusermount when necessary
925 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
927         * Don't chdir to "/" in foreground mode, it causes more trouble
928         than it's worth
930 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
932         * Replace utils/mount.fuse "sh" script with a "C" program
934 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
936         * Add -lulockmgr to compilation comment in fusexmp_fh.c
938 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
940         * Check for iconv.  Patch by Csaba Henk
942         * Add direct umounting
944         * Use "fusectl" as the device for the fusectl filesystem.  Debian
945         Bug#417945.  Reported by Laurent Bonnaud
947 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
949         * Fix some FreeBSD related macros.
951 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
953         * Add support for direct mounting by libfuse.  Fall back on
954         calling fusermount if it doesn't work
956 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
958         * Released 2.7.0-pre1
960 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
962         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
963         Bruno
965         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
966         by Thomas Weinbrenner
968 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
970         * Fix detection of installed fuse in init script.  Reported and
971         fix suggested by Davide Canova
973 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
975         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
976         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
978 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
980         * Compile fuseblk for kernels which don't have an option to turn
981         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
982         Szabolcs
984 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
986         * Add filesystem stacking support to high level API.  Filesystem
987         modules can be built into libfuse or loaded from shared object
988         (.so) files
990         * Add 'subdir' and 'iconv' built in modules
992         * lib/fuse.c: Fix locking for the reply code in create and open
994 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
996         * kernel: make it compile on "strange" kernels which have emulated
997         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
998         Mateja
1000 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
1002         * kernel: fix BUG in control filesystem if it is umounted and
1003         mounted again, while some fuse filesystems are present.
1004         Bugreport from Florent Mertens
1006         * kernel: sync with mainline, support 2.6.20
1008 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
1010         * lib/Makefile.am: actually link libfuse against libfuse_libs
1012 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
1014         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
1015         Ian Abbott
1017 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
1019         * Fix abort in fuse_new() compatibility API for opts == NULL case.
1020         Novell bugzilla #233870.  Patch from Takashi Iwai.
1022 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
1024         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
1026 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
1028         * Fix unaligned access in file desctriptor passing in libfuse,
1029         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
1030         tested by Sebastian Fontius
1032 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
1034         * kernel: don't keep unreferenced inodes in the icache.
1036 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
1038         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
1039         Szabolcs
1041         * lib: Fix use after free in fuse_flush().  Reported by Ron
1042         Lindman
1044 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1046         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1047         for the filesystem
1049         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1050         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1051         the ugly code dealing with mtab, as well as a possible race
1052         between fusermount and mount trying to modify /etc/mtab at the
1053         same time
1055         * Fix "buffer size too small: 4" warning for users of the
1056         fuse_loop_mt_proc() function.
1058 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1060         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1061         Harshavardhana
1063         * Add extra warning options, and fix resulting warnings
1065         * Really fix fuse_teardown problem
1067 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1069         * Add -lrt to fuse.pc (if needed) to fix static linking against
1070         libfuse.  Reported by Szakacsits Szabolcs
1072 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1074         * Released 2.6.1
1076 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1078         * Fix API version 21 and 22 compatibility for fuse_teardown.
1079         Reported by Bgs
1081 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1083         * fusermount: Print a more helpful message in case the kernel
1084         doesn't support the 'fuseblk' filesystem type.  This has been
1085         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1087         * kernel: fix build problem for "make -C ...".  Reported by
1088         Stephen Bryant
1090 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1092         * Fix bug in certain error paths of lookup routines.  The request
1093         object was reused for sending FORGET, which is illegal.  This bug
1094         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1095         silently corrupt memory in earlier versions.  Report and test
1096         program by Russ Cox
1098 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1100         * Print an error if an incompatible kernel interface version is
1101         detected in INIT.  This will only show if filesystem is started
1102         with -d or -f
1104         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1105         fuse_setup_common().  Reported by Szakacsits Szabolcs
1107 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1109         * Fix recursive locking in fuse_create().  Thanks to Takuya
1110         Ishibashi for the bug report
1112 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1114         * Fix automake problem.  Patch from Nix
1116 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1118         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1119         always available on embedded systems.  Patch from Paul Smith
1121         * Fix util/Makefile.am, so that failure to run update-rc.d or
1122         device creation doesn't cause make to fail.  Reported by Paul
1123         Smith
1125 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1127         * Released 2.6.0
1129 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1131         * fusermount: don't try to create a lock file if /etc/mtab is a
1132         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1133         #393693)
1135 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1137         * Minor changes, sync with mainline tree
1139 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1141         * Released 2.6.0-rc3
1143 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1145         * kernel: cleanups
1147 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1149         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1150         Report from David Shaw
1152         * lib: Fix lost error on renaming a file. Report from David Shaw
1154         * lib: Fix lost error on hiding open files (renaming to
1155         .fuse_hiddenXXXX)
1157         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1158         activity.  The cause of the bug was that some calls to
1159         i_size_write() were not protected by a lock, and hence
1160         i_size_seqcount could become corrupted.  This caused subsequent
1161         calls to i_size_read() to spin forever.  This is a long standing
1162         bug was probably introduced in version 2.2, and thought to be
1163         related to NFS exporting (it's not).  It was reported by various
1164         people, but Dana Henriksen has finally helped me to track it down,
1165         so big thanks to him
1167         * kernel: Protect against truncation of a swapfile
1169 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1171         * kernel: Check for signature of super_operations->umount_begin().
1172         Ubuntu kernel 2.6.17 seems to use the new signature found in
1173         2.6.18.  Thanks to Florent Mertens for the report
1175 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1177         * Make sure inode numers wrap around at 2^32.  This is needed on
1178         dual 64bit/32bit architectures, because 32bit applications using
1179         the non-largefile interface would otherwise break (EOVERFLOW error
1180         would be returned by the stat() system call family)
1182         * ulockmgr: handle the case, when a locking operation fails
1183         because no more file desctriptors are available in
1184         ulockmgr_server.  Also work around a Linux kernel bug (known to
1185         exist for all Linux kernel versions <= 2.6.18) which may cause
1186         sent file descriptors to be lost in the above case
1188         * ulockmgr: optimize file descriptor use
1190         * restore needed cpp flags to util/Makefile.am
1192         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1194         * Minor clean up of udev rules
1196         * Add a synchronous DESTROY message to kernel interface.  This is
1197         invoked from umount, when the final instance of the filesystem is
1198         released.  It is only sent for filesystems mounted with the
1199         'blkdev' option for security reasons.
1201         * If the DESTROY message is received, call the filesystem's
1202         ->destroy() method.  In this case it's not called from session
1203         destruction as it would be otherwise.
1205 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1207         * Released 2.6.0-rc2
1209 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1211         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1212         patch by Csaba Henk
1214         * Add init script to insert fuse module and mount the control
1215         filesystem.  The script is installed as /etc/init.d/fuse and on
1216         debian based systems (where update-rc.d is available) symlinks
1217         from /etc/rc*.d/ are also installed.
1219         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1220         become more self contained.
1222 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1224         * API changes:
1226         * Move lock_owner from a separate argument into fuse_file_info
1228         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1229         operation (unlock all) was initiated by a flush, (2) a lowlevel
1230         release operation should perform a flush as well.
1232         * fusermount: revert modprobe change (2006-08-18) since it
1233         doesn't work reliably with udev
1235         * Add support for block device backed filesystems.  This mode is
1236         selected with the 'blkdev' option, which is privileged.
1238         * Add support for the bmap (FIBMAP ioctl) operation on block
1239         device backed filesystems.  This allows swapon and lilo to work on
1240         such filesystems.
1242         * kernel changes:
1244         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1245         previous (2.5.x) release can be used with library from this
1246         release
1248         * In fuse_dentry_revalidate() use dget_parent() instead of
1249         dereferencing d_parent, since there's no protection against parent
1250         changing and going away
1252         * Protect nlookup from concurrent updates
1254         * In lookup if a directory alias exists but is unused,
1255         then get rid of it, otherwise return -EBUSY.
1257         * In mkdir if a directory alias exists, return success, but leave
1258         dentry negative.  In reality this could happen if a remote rename
1259         immediately followed the mkdir.
1261         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1262         good inode.  This could happen if several lookups are racing for
1263         the same inode.
1265 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1267         * Fix compilation on 2.6.9.  Report from Troy Ayers
1269 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1271         * Fix Oops in fuse_readpages().  Reported by David Shaw
1273 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1275         * Add support for nanosec times on FreeBSD
1277         * Fix FreeBSD compatibility issues
1279 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1281         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1283         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1285 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1287         * Fixed several compatibility bugs in low level interface.
1288         Reported by Ricardo Correia
1290         * Add workaround for ARM caching bug
1292 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1294         * Rename new utimes() method to more logical utimens()
1296 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1298         * Fuse tried to unlink already unlinked hidden files.  Bug
1299         reported by Milan Svoboda
1301 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1303         * Released 2.6.0-rc1
1305 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1307         * kernel: Fix unlock on close for kernels < 2.6.18
1309         * Add ulockmgr library & server.  This can be used for handling
1310         file locking requests either directly from libfuse or over a
1311         network, etc.  This first version is not optimized and the number
1312         of file descriptors it uses may get out of hand
1314 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1316         * lib: Add interrupt support to high level library, which may be
1317         enabled with the 'intr' mount option.
1319         * When an operation is interrupted the thread handling that
1320         operation will receive SIGUSR1 (or other signal specified with the
1321         'intr_signal=N' option).  The library installs a no-op signal
1322         handler for this signal, unless there's already a handler
1323         installed.
1325         * The filesystem may query interrupt status (regardless of 'intr')
1326         with the fuse_interrupted() function.
1328         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1330 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1332         * lib: Multithreaded loop now allows unlimited number of threads.
1333         This is needed for locking operations which may block
1334         indefinitely.  Also the kernel now doesn't limit the number of
1335         outstanding requests so the library shouldn't do so either.
1337 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1339         * Fix recursive lock bug in interrupt handling
1341         * Add utimes() method to highlevel interface, which supports
1342         setting times with nanosecond resolution
1344 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1346         * kernel: fix page leak if fuse_readpages() failed in it's
1347         initialization.  Bug found and original patch from Alexander
1348         Zarochentsev
1350         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1351         the kernel tree) the statfs method will receive the path within
1352         the filesystem on which the stat(v)fs syscall was called
1354         * fusermount: try to modprobe fuse module if invoked by root and
1355         unable to open device.  This is needed with udev, since the device
1356         node will be created only when the module is inserted, hence
1357         module autoloading won't work.  Reported by Szakacsits Szabolcs
1359 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1361         * fusermount: if selinux is active, restore the original file's
1362         security context in unmount_rename().  Redhat bugzilla id 188561.
1363         Patch from Yves Perrenoud
1365         * Add POSIX file locking operation to high level library
1367         * Initialize context for unlink of hidden files on umount.  Bug
1368         reported by Tim Stoakes
1370 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1372         * Multiple release() calls can race with each other, resulting in
1373         the hidden file being deleted before the last release finishes.
1374         Bug found and patch tested by Mark Huijgen
1376 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1378         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1379         this makes sense on systems using udev.  Reported by Szakacsits
1380         Szabolcs
1382 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1384         * Released 2.6.0-pre3
1386 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1388         * Support in kernel module for file locking and interruption.  The
1389         same functionality is available in official kernels >= 2.6.18
1391 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1393         * Add POSIX file locking support
1395         * Add request interruption
1397 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1399         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1401 2006-06-05  Remy Blank <remy.blank@pobox.com>
1403         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1404         unmounting succeeds even if mount point was relative.
1406 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1408         * lib: fix emergency umount in helper.c when malloc fails.
1409         (The way it was done would end up in a segfault.)
1411 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1413         * lib: adjust threading related compiler flags.
1414         Switch to "-pthread" from "-lpthread" as that's the preferred
1415         one on several platforms. Consulted with Terrence Cole and
1416         Miklos Szeredi
1418 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1420         * lib: search fusermount in installation directory (bindir) as
1421         well as in PATH.
1423 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1425         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1426         Reported by Christian Magnusson
1428 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1430         * lib: make FreeBSD mount routine recognize if kernel features
1431         backgrounded init and if it does, run the mount util in foreground
1432         (similarly to Linux)
1434 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1436         * kernel: fix fput deadlock fix, the lockless solution could lead
1437         to "VFS: busy inodes after umount..."
1439         * kernel: fix race between checking and setting file->private_data
1440         for the device.  Found by Al Viro
1442 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1444         * kernel: remove request pool, instead allocate requests on
1445         demand.  Account the number of background requests, and if they go
1446         over a limit, block the allocation of new requests.
1448         * kernel: fix deadlock if backgrounded request holds the last
1449         reference to the super block
1451         * kernel: don't use fuse_reset_request() during direct I/O
1453 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1455         * lib: Let FreeBSD mount option parsing routine recognize "no"
1456         prefixes for FUSE specific options as well
1458 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1460         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1462 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1464         * API changes:
1466         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1467         user_data parameter
1469         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1470         file descriptor
1472         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1473         destroys the given channel
1475         * fuse_teardown() no longer has a file descriptor parameter
1477         * new exported functions: fuse_session_remove_chan(),
1478         fuse_get_session(), fuse_daemonize()
1480         * fuse_chan_recv() may now return a new channel which will be used
1481         to send the reply
1483 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1485         * Released 2.6.0-pre2
1487 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1489         * Don't unmount if already unmounted.  This fixes a problem seen
1490         in the following situation: Lazy unmount a busy filesystem; Mount
1491         a new one in top; When the first finally unmounts, the second also
1492         unmounts.  Reported by Franco Broi
1494 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1496         * lowlevel lib: use indirect function calls instead of a
1497         switch/case construct.  Besides increased efficiency it helps
1498         maintainability & readability too.  Patch from Florin Malita
1500 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1502         * kernel: replace global spinlock with a per-connection spinlock
1504 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1506         * Fix source compatibility breakage for fuse_unmount().  Report
1507         from Yura Pakhuchiy
1509 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1511         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1513 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1515         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1516         Jeff Dike
1518         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1519         interface to return -errno in case of error.
1521 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1523         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1524         FreeBSD implementation so that it uses libc (sysctl backed) instead
1525         of an embdedded script (kmem backed). Adjust the control flow of
1526         hello_ll so that device doesn't get closed before unmount attempt.
1528 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1530         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1531         implement method.  This is needed on FreeBSD, and nicer on Linux
1532         too.  Highlevel lib already did this.  Reported by Csaba Henk
1534         * Fix negative entry handling.  There was a bug, that negative
1535         lookups with timeouts (nodeid == 0) returned -EIO.
1537 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1539         * Fix race between RELEASE and UNLINK, which might leave
1540         .fuse_hidden* files around
1542 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1544         * fusexmp_fh: implement flush() method and call close() on the
1545         open file descriptor.  This is needed if used on an NFS
1546         filesystem, which buffers data until file is closed.  Franco Broi
1547         spotted the situation when 'cp -p' failed to set the modification
1548         time because of this.
1550 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1552         * Released 2.6.0-pre1
1554 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1556         * libfuse: fix use-after-free bug in interruptred reply_entry().
1557         Patch from John Muir
1559         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1560         ID: 352631.  Found by Stéphane Rosi
1562 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1564         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1565         into a single function fuse_add_direntry().  This cleans up the
1566         interface and makes it possible to do stacking.
1568 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1570         * Fix rare race betweeen abort and release caused by failed iget()
1571         in fuse_create_open().
1573         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1574         own attribute caching.
1576 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1578         * Work around FreeBSD runtime linker "feature" which binds an old
1579         version of a symbol to internal references if the symbol has more
1580         than one version.  This resulted in infinite recursion in
1581         fuse_lowlevel_new_compat25().
1583 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1585         * Refine clock_gettime() querying so that linker options
1586         shall be set as it's appropriate for the target platform.
1588 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1590         * Fix udev rule syntax.  Reported by Nix
1592 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1594         * In some cases udev rule seems to be ineffective when installed
1595         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1597 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1599         * Fix compilation when build directory is different from source
1600         directory.  Reported by Frédéric L. W. Meunier
1602 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1604         * Fix even bigger bug introduced in fix for request_end() on
1605         2006-01-14.  Reported by Gal Rosen
1607 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1609         * highlevel-lib: add 'auto_cache' option.  This caches file data
1610         based on modification time and size
1612 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1614         * Sanitize storage type and help message in mount_bsd.c.  Patch
1615         from Csaba Henk
1617         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1618         FUSE_OPT_KEY_DISCARD
1620         * Add options 'max_readahead', 'sync_read' and 'async_read'
1622         * Kernel ABI version 7.6:
1624         * Negotiate the 'max_readahead' value and 'async_read' flags with
1625         userspace in the INIT method
1627         * Add connection info to ->init() methods to both lowlevel and
1628         highlevel API
1630         * Fall back to synchronous read() behavior if either library or
1631         userspace filesystem is using the old interface version.  This is
1632         needed so non-updated filesystems won't be confused by the
1633         different read() behavior
1635 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1637         * lib: if "fsname=" option was given, pass it to fusermount
1639         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1640         needed by filesystems to implement some argument manipulations
1641         correctly
1643         * fuse_opt: fix memory leak in handling "--" option
1645 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1647         * kernel: fix detection of case when fuse is not configured into
1648         the kernel either as module or built-in
1650         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1651         'template' structure member to 'templ'.  Reported by Takashi Iwai
1653         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1655         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1657 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1659         * Added (again) asynchronous readpages support
1661         * Each connection now shows up under /sys/fs/fuse/connections
1663         * Connection attributes exported to sysfs: 'waiting' number of
1664         waiting requests; 'abort' abort the connection
1666         * Connection may be aborted through either the sysfs interface or
1667         with 'umount -f mountpoint'
1669 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1671         * Released 2.5.0
1673 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1675         * kernel: fix a couple of bugs
1677         * Order of request_end() and fuse_copy_finish() was wrong.
1678         Posthumous note: Franco Broi managed to exploit this, though it
1679         seemed quite impossible
1681         * request_end() used request pointer after decrementing refcount
1683         * Clearing ->connected or ->mounted connection flags could race
1684         with setting other bitfields not protected with a lock
1686 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1688         * kernel: add necessary compile flags for 2.4.X/x86_64.
1689         Report from Sean Ziegeler
1691 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1693         * Released 2.5.0-pre2
1695 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1697         * Applied patch from Csaba Henk, to update mount_bsd to new
1698         fuse_mount() semantics
1700         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1701         Steiner and Don Taber
1703         * fusermount: add 'dirsync' mount option
1705 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1707         * Improved help reporting and added version reporting to library
1709 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1711         * Change working directory to "/" even if running in the
1712         foreground.  Patch from Jonathan Brandmeyer
1714         * Changed lots of functions to use 'struct fuse_args' instead of
1715         separate argc and argv
1717         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1718         fuse_remove_signal_handlers() functions, so that it's now pretty
1719         easy to get all the functionality of fuse_main() with a filesystem
1720         using the lowlevel API.
1722 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1724         * mount.fuse: the 'user' option should be ignored. Report and
1725         solution from Mattd.
1727         * mount.fuse: export PATH in the right place. Report and patch
1728         from Hannes Schweizer
1730 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1732         * Clean up the option parsing interface slightly, by creating an
1733         "argument list" structure, that contains the argument vector and
1734         count
1736 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1738         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1739         in that case
1741         * kernel: simplify request size limiting. INIT only contains
1742         maximum write size, maximum path component size remains fixed at
1743         1024 bytes, and maximum xattr size depends on read buffer.
1745 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1747         * Fix readdir() failure on x86_64, of 32bit programs compiled
1748         without largefile support.  Bug report and help from Anthony
1749         Kolasny
1751         * If lookup returns invalid mode, return -EIO instead of creating
1752         a regular file
1754         * Add current output argument vector to option processing
1755         function
1757 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1759         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1761 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1763         * Released 2.5.0-pre1
1765 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1767         * libfuse: added option parsing interface, defined in
1768         <fuse_opt.h>.
1770 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1772         * Return EIO for file operations (read, write, fsync, flush) on
1773         open files whose inode has become "bad".  Inodes will be marked
1774         "bad" if their type changes.  Bug report by Csaba Henk
1776 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1778         * Use bigger request buffer size.  write() did not work on archs
1779         with > 4k page size, Bug report by Mark Haney
1781         * ABI version 7.5:
1783         * Extend INIT reply with data size limits
1785 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1787         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1788         reported by Vincenzo Ciancia
1790         * Handle exit-by-umount in fuse_read_cmd()
1792 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1794         * Check if '-msoft-float' option is supported by compiler when
1795         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1797         * In multithreaded loop send a TERM signal to the main thread if
1798         one of the other threads exit.  Needed on FreeBSD for a clean exit
1799         on umount.  Should not cause any harm on Linux either
1801 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1803         * Fix bug in 32-bit file handle compatibility
1805 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1807         * Block TERM, INT, HUP and QUIT signals in all but the main
1808         thread.  According to POSIX it's not specified which thread will
1809         receive these signals.
1811         * Kernel changes:
1813         * Check for directory aliasing on mkdir, not just on lookup
1815         * Check for special node ID values in create+open operation
1817         * Sync with -mm: readv, writev, aio_read and aio_write methods
1818         added to file operations
1820         * Cleanups: lookup code, page offset calculation
1822         * ABI stepped to 7.4, changes:
1824         * frsize member added to fuse_kstatfs structure
1826         * added support for negative entry caching: on lowlevel API if
1827         fuse_entry_param::ino is set to zero in reply to a lookup request,
1828         the kernel will cache the dentry for the specified amount of time.
1830         * libfuse: added 'negative_timeout' option: specifies how much
1831         negative entries should be cached.  Default is zero, to be
1832         compatible with prior versions
1834 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1836         * Add detection of mainline FUSE code in running kernel
1838 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1840         * Don't use async cancelation in multithreaded loop.  This makes
1841         it more portable to systems where read() is not async cancel safe.
1842         Report from Andriy Gapon
1844 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1846         * Warn if API version 11 compatibility is requested
1848 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
1850         * More FreeBSD merge
1852         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1853         them, because it corrupts /etc/mtab.  Found by Thomas Biege
1854         CVE-2005-3531
1856         * libfuse: don't use system() to invoke 'fusermount -u ...'
1857         because it breaks mountpoints with spaces in them into multiple
1858         arguments
1860 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
1862         * Merge library part of FreeBSD port.  Patch by Csaba Henk
1864 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
1866         * Use 64bit type for file handle, so the full range supported by
1867         the kernel interface is available to applications
1869 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
1871         * Moved mountpoint argument checking from fuse_parse_cmdline() to
1872         fuse_mount() in preparation to FreeBSD merge.
1874 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
1876         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
1877         Henk.
1879 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
1881         * Make the statfs change backwards compatible.
1883 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
1885         * Change ->statfs() method to use 'struct statvfs' instead of
1886         'struct statfs'.  This makes the API more portable since statvfs()
1887         is defined by POSIX.
1889 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
1891         * Add fgetattr() method, which currently will only be called after
1892         a successful call to a create() method.
1894 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
1896         * Change kernel ABI version to 7.3
1898         * Add ACCESS operation.  This is called from the access() system
1899         call if 'default_permissions' mount option is not given, and is
1900         not called on kernels 2.4.*
1902         * Add atomic CREATE+OPEN operation.  This will only work with
1903         2.6.15 (presumably) or later Linux kernels.
1905         * Add ftruncate() method.  This will only work with 2.6.15
1906         (presumably) or later Linux kernels.
1908         * Fix kernel module compile if kernel source and build directories
1909         differ.  Report and initial patch by John Eastman
1911 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
1913         * lib: optimize buffer reallocation in fill_dir.
1915 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
1917         * Released 2.4.1
1919 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
1921         * libfuse: add debug for write result (by Shaun Jackman) and
1922         warnings for too large read/write result
1924 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
1926         * Spelling fixes, thanks to Ioannis Barkas
1928 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
1930         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
1931         patch
1933 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
1935         * highlevel-lib: init() and destroy() methods didn't have an
1936         initialized fuse_context.  Bug reported by Tim Stoakes
1938 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
1940         * Released 2.4.0
1942 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
1944         * Add documentation to fuse_lowlevel.h
1946         * API cleanups:
1948         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1950         * Move fuse_mount() and fuse_unmount() to fuse_common.h
1952         * Change the return type of fuse_reply_none() from int to void.
1954 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
1956         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
1957         Akshat Aranya.
1959 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
1961         * fusermount: fix error message, when unable to open /dev/fuse.
1962         Report by Balázs Pozsár
1964 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
1966         * UClibc fixes from Christian Magnusson
1968 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
1970         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
1972 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1974         * Released 2.4.0-rc1
1976 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1978         * fusermount: allow user umount in the case when /etc/mtab is a
1979         symlink to /proc/mounts.  Reported by Balázs Pozsár.
1981 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
1983         * Check for special node ID values in lookup and creation
1985 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
1987         * Slight optimization in returning EINVAL error in case of an open
1988         with O_DIRECT flag.
1990 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
1992         * Remove '--enable-auto-modprobe' configure flag.  Module
1993         auto-loading is now handled by the kernel.
1995 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
1997         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1998         Help from Jens M. Noedler.
2000 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
2002         * Add memory cleanup on thread exit
2004 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
2006         * Set umask to zero in fusexmp and fusexmp_fh, so that
2007         files/directories are created with the requested mode.
2009 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
2011         * Don't ignore read error in multithreaded loop
2013 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2015         * Released 2.4.0-pre2
2017 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2019         * Revert lock and access operations.  Postpone these until 2.5.
2021 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
2023         * Fix compile warning on 2.6.13 and later
2025         * Fix compilation on old kernels
2027 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
2029         * lib: always refresh directory contents after rewinddir() to
2030         conform to SUS.  Bug found by John Muir.
2032 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
2034         * Released 2.4.0-pre1
2036 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
2038         * lib: cleaned up (or messed up, depending on your POV) the low
2039         level library API.  Hopefully this is close to the final form.
2041 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2043         * fusermount: don't allow empty mountpoint argument, which defeats
2044         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2046 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2048         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2049         option is used (Paul Alfille).
2051 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2053         * highlevel-lib: added mount options "attr_timeout" and
2054         "entry_timeout".  These options control the length of time file
2055         attributes and entries (names) are cached.  Both default to 1.0
2056         second.
2058         * kernel: correctly handle zero timeout for attributes and entries
2060 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2062         * Added missing symbols to versionscript (Joshua J. Berry)
2064         * kernel: implement two flags, open can set: 'direct_io' and
2065         'keep_cache'.  These correspond exactly to mount options
2066         'direct_io' and 'kernel_cache', but allow a per-open setting.
2068         * Move 'direct_io' and 'kernel_cache' mount option handling to
2069         userspace.  For both mount options, if the option is given, then
2070         the respective open flag is set, otherwise the open flag is left
2071         unmodified (so the filesystem can set it).
2073         * lib (highlevel): make open method optional
2075 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2077         * kernel: invalidate attributes for read/readdir/readlink
2078         operations
2080         * kernel: detect newer UML kernels
2082 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2084         * Make the installation path of fuse.ko and mount.fuse
2085         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2086         environment variables.  Requirement and help from Csaba Henk.
2088 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2090         * Fix bug, that causes filesystem requests to hang when unique
2091         request counter becomes negative.  This happens after
2092         2,147,483,648 operations, so most people won't care.  Thanks to
2093         Franco Broi for the report and testing.
2095 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2097         * Don't change mtime/ctime/atime to local time on read/write.
2098         Bug reported by Ben Grimm
2100         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2101         Magnusson
2103         * fusermount: use getopt_long() for option parsing.  It allows the
2104         use of '--' to stop argument scanning, so fusermount can now
2105         operate on directories whose names begin with a '-'.  Patch by
2106         Adam Connell
2108 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2110         * fusermount: add '-v', '--version' and '--help' options
2112         * add inode based API
2114 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2116         * lib: don't block signals in worker threads.  Problem noticed by
2117         Usarin Heininga
2119 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2121         * lib: don't allow both 'allow_other' and 'allow_root' options to
2122         be given
2124 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2126         * fusermount: check if mountpoint is empty (only '.' and '..' for
2127         directories, and size = 0 for regular files).  If "nonempty"
2128         option is given, omit this check.  This is useful, so users don't
2129         accidentally hide data (e.g. from backup programs).  Thanks to
2130         Frank van Maarseveen for pointing this out.
2132         * kernel: check if mandatory mount options ('fd', 'rootmode',
2133         'user_id', 'group_id') are all given
2135         * lib: simplify 'readdir_ino' handling
2137         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2139 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2141         * kernel: clean up 'direct_io' code
2143 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2145         * Add 'mount.fuse' written by Petr Klima
2147         * '/dev/fuse' is created by 'make install' if does not yet exist
2149 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2151         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2153 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2155         * Enable the auto-loading of the module via access to the
2156         corresponding device file.  Patch by Takashi Iwai.
2158         * Allow mounting a regular file (over a regular file) for
2159         unprivleged users.
2161         * Do not create temporary device file.  Require "/dev/fuse" to
2162         exist, and be readable/writable by the mounting user.
2164 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2166         * Released 2.3.0
2168 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2170         * Fix serious information leak: if the filesystem returns a short
2171         byte count to a read request, and there are non-zero number of
2172         pages which are not filled at all, these pages will not be zeroed.
2173         Hence the user can read out previous memory contents.  Found by
2174         Sven Tantau.
2176 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2178         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2179         field in struct dirent.  This mount option is ignored if "use_ino"
2180         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2181         non-Linux OS).  Patch by David Shaw.
2183 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2185         * Released 2.3-rc1
2187 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2189         * File save in krusader and other editors doesn't work with sshfs,
2190         because open() is interrupted by a periodic signal, and open()
2191         restarts forever, without any progress.  This could just be fixed
2192         in open(), but the problem is more generic: if signals are
2193         received more often than the filesystem can get the request to
2194         userspace, it will never finish.  This is probably only a
2195         theoretical problem, nevertheless I'm removing the possibility to
2196         interrupt requests with anything other than SIGKILL, even before
2197         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2199 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2201         * libfuse: add "tree_lock" rwlock, that is locked for write in
2202         rename, unlink and rmdir, and locked for read in all other
2203         operations.  This should fix the rename/release race reported by
2204         Valient Gough and others.  The solution is very coarse, a finer
2205         grained locking scheme could be implemented, but it would be much
2206         more complex.  Let's see whether this is good enough.
2208 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2210         * Released 2.3-pre7
2212 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2214         * Better fix for out of order FORGET messages.  Now the
2215         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2216         balance many lookups), so the order no longer matters.  This
2217         changes the kernel ABI slightly, but the library remains backward
2218         compatible.
2220 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2222         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2223         Franco Broi again.  Sorry :)
2225 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2227         * Released 2.3-pre6
2229 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2231         * Make fusermount work with fuse kernel modules not yet supporting
2232         the "group_id" option (added for the purpose of stricter
2233         permission checking).
2235 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2237         * Check for hard-linked directories in lookup.  This could cause
2238         problems in the VFS, which assumes that such objects never exist.
2240         * Make checking of permission for other users more strict.  Now
2241         the same privilege is required for the mount owner as for ptrace
2242         on the process performing the filesystem operation.
2244 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2246         * Released 2.3-pre5
2248 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2250         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2251         is needed on certain architectures.  Report from Chris Kirby
2253         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2254         Reported by David Shaw
2256         * Remove "allow_root" option from kernel module, and implement
2257         it's functionality in the library
2259         * Fix Oops caused by premature release of fuse_conn.  Clean up
2260         related code, to be more readable
2262         * Sendfile should not use page cache if "direct_io" mount option
2263         is given
2265 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2267         * Fix Oops in case of nfs export.  Spotted by David Shaw
2269         * Fix another Oops in case of write over nfs with direct_io turned
2270         on.  Again spotted by David Shaw
2272 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2274         * Released 2.3-pre4
2276 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2278         * lib: finalized new readdir() interface, which now supersedes the
2279         getdir() method.
2281 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2283         * Released 2.3-pre3
2285 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2287         * Implement backward compatibility with version 5 kernel ABI
2289 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2291         * Released 2.3-pre2
2293 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2295         * kernel: fix dirent offset handling
2297         * lib: add readdir and releasedir methods
2299         * lib: use fh field of fuse_file_info in opendir, readdir,
2300         releasedir and fsyncdir methods
2302         * lib: check kernel API version and bail out of it's old.  This
2303         will be properly fixed in the next release
2305 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2307         * Released 2.3-pre1
2309 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2311         * kernel API: add padding to structures, so 64bit and 32bit
2312         compiler will return the same size
2314         * kernel API: add offset field to fuse_dirent.  This will allow
2315         more sophisticated readdir interface for userspace
2317         * kernel API: change major number to 6
2319         * kernel: fix warnings on 64bit archs
2321         * kernel: in case of API version mismatch, return ECONNREFUSED
2323 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2325         * kernel: trivial cleanups
2327 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2329         * Add fsyncdir() operation
2331 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2333         * kernel: add locking to background list (fixes previous fix)
2335 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2337         * kernel: fix bug which could cause leave busy inodes after
2338         unmount, and Oops.
2340 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2342         * examples: add -lpthread to link flags to work around valgrind
2343         quirk
2345         * lib: don't exit threads, so cancelation doesn't cause segfault
2347 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2349         * kernel: fix nasty bug which could cause an Oops under certain
2350         situations.  Found by Magnus Johansson
2352 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2354         * libfuse: added opendir() method.  This can be used in case
2355         permission checking in getdir() is too late.  Thanks to Usarin
2356         Heininga for pointing out this deficiency
2358         * libfuse: added init() and destroy() methods to fuse_operations
2360         * kernel: llseek() method for files and directories made explicit
2362         * kernel: fixed inode leak in NFS export in case of nodeid
2363         wrapping
2365 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2367         * libfuse: clean up some unitialized memory found with valgrind
2369         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2370         explicitly linked libpthread for applications
2372 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2374         * fusermount: set umask, otherwise /etc/mtab will have
2375         unpredictable permission.  Spotted by Jindrich Kolorenc
2377         * fusermount: set owner and group of /etc/mtab to original values
2378         on unmount
2380         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2382 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2384         * Cleaned up directory reading (temporary file is not used)
2386 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2388         * Released 2.2
2390 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2392         * Fix possible race when operation is interrupted
2394 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2396         * Fix compilation on 2.6.7
2398 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2400         * Released 2.2-pre6
2402 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2404         * Fix bug in link() operation which caused the wrong path to be
2405         passed as the first argument.  Found by Anton Altaparmakov
2407 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2409         * LIB: fix double reply in readdir operation
2411         * fusermount: fix uid checking bug.  Patch by Adam Connell
2413         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2414         Patch by Keshava Gowda
2416 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2418         * KERNEL: provide correct llseek semantics for fuse device (fixes
2419         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2421 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2423         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2425 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2427         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2428         and RELEASEDIR.  This ends the ugly hack of passing a file
2429         descriptor to the kernel, and actually makes the code simpler.
2431 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2433         * Released 2.2-pre4
2435 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2437         * fusermount: remove capability setting, which was the cause of
2438         problems for some users.  It seems that FS related capabilities
2439         are removed by setfsuid(), so this isn't even needed.
2441 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2443         * fix compilation on 2.4 kernels (reported by Valient Gough)
2445         * fix failure to unmount bug (found by David Shaw)
2447         * fusermount: improve parsing of /etc/fuse.conf
2449 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2451         * Remove 'mount_max' and 'user_allow_other' module options.  These
2452         are now checked by fusermount, and can be set in /etc/fuse.conf
2454         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2456 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2458         * KERNEL: fix possible inode allocation problem, where
2459         sizeof(struct inode) is not aligned (found by Mike Waychison)
2461         * KERNEL: use new follow_link/put_link methods
2463         * KERNEL: cosmetic fixes
2465 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2467         * Released 2.2-pre3
2469 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2471         * Add missing code that was accidently left out
2473 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2475         * Released 2.2-pre2
2477 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2479         * Change "uid" mount option to "user_id" to avoid confusion with a
2480         mount option "uid" commonly used by many filesystems
2482 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2484         * Released 2.2-pre1
2486 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2488         * If FUSE is configured in the kernel, don't build it by default
2490 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2492         * Compile fix by Christian Magnusson
2494 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2496         * Fix compilation for 2.6.{0-5} kernels
2498 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2500         * KERNEL: if request is interrupted, still keep reference to used
2501         inode(s) and file, so that FORGET and RELEASE are not sent until
2502         userspace finishes the request.
2504         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2505         request with the same information, which is more flexible,
2506         simpler, works on embedded systems.
2508 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2510         * KERNEL ABI: update interface to make it independent of type
2511         sizes.  This will help on 64 bit architectures which can run
2512         legacy 32 bit applications.
2514         * KERNEL ABI: add "len" field to request headers.  This will allow
2515         sending/receiving requests in multiple chunks.
2517         * KERNEL: handle file type change more intelligently
2519         * LIB: "-o debug" option should disable backgrounding (fix by
2520         Fabien Reygrobellet)
2522 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2524         * KERNEL: invalidate dentry/attributes if interrupted request
2525         could leave filesystem in an unknown state.
2527 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2529         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2530         These will cause some regressions, but stability is considered
2531         more important.  If any of these features turns out to be
2532         important, it can be readded with the deadlock problems addressed.
2534         * Make all requests interruptible (only with SIGKILL currently).
2535         This can be used to break any deadlock produced by the userspace
2536         filesystem accessing it's own exported files.  The RELEASE request
2537         is special, because if it's interrupted before sending it to
2538         userspace it is still sent, but the reply is not awaited.
2540         * If request is interrupted before being sent to userspace, and if
2541         it hasn't yet got any side effects, it is always restarted,
2542         regardless of the SA_RESTART flag.  This makes these interruptions
2543         transparent to the process.
2545         * Remove shared-writable mmap support, which was prone to an
2546         out-of-memory deadlock situation
2548         * Remove INVALIDATE userspace initiated request
2550         * Make readpages() synchronous.  Asynchronous requests are
2551         deadlock prone, since they cannot be interrupted.
2553         * Add readv/writev support to fuse device operations
2555         * Remove some printks, which userspace FS can use for a DoS
2556         against syslog
2558         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2559         fusermount instead
2561         * LIB: improve compatibility with a fuse.h header installed in
2562         ${prefix}/include which in turn includes the real header.
2564         * LIB: improve compatibility by defining fuse_main() (which is now
2565         not used), so old configure scripts find it.
2567 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2569         * When mounting on a subdirectory of / don't duplicate slashes at
2570         the beggining of path (spotted by David Shaw)
2572 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2574         * Fix bug causing garbage in mount options (spotted by David Shaw)
2576 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2578         * Add 'writepage' flag to 'fuse_file_info'.
2580         * More comments in fuse.h
2582         * Get rid of double underscores
2584 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2586         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2588         * helper.c: add -ho option, which only displays the options not
2589         the usage header.  This can be used by filesystems which have
2590         their own options.
2592 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2594         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2595         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2596         including the fuse header
2598         * Add binary compatibility to 2.1 version of library with symbol
2599         versioning
2601 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2603         * Released 2.1
2605 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2607         * kernel: clean up writing functions
2609         * kernel: no allocation on write in direct_io mode
2611         * move linux/fuse.h to fuse_kernel.h
2613 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2615         * kernel: clean up reading functions
2617 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2619         * kernel: make readpage() uninterruptible
2621         * kernel: check readonly filesystem flag in fuse_permission
2623         * lib: don't die if version file not found and new style device
2624         exists
2626         * lib: add '-r' option, which is short for '-o ro'
2628         * fusermount: simplify device opening
2630         * kernel: when direct_io is turend on, copy data directly to
2631         destination without itermediate buffer.  More efficient and safer,
2632         since no allocation is done.
2634         * fusermount: fix warning if fuse module is not loaded
2636         * kernel: use /dev/fuse on 2.4 too
2638 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2640         * libfuse API change: open, read, write, flush, fsync and release
2641         are passed a 'struct fuse_file_info' pointer containing the open
2642         flags (open and release), and the file handle.  Verion changed to
2643         3.0.
2645 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2647         * More cleanups in the kernel
2649         * The 10,229 charater device number has been assigned for FUSE
2651         * Version file checking fix (reported by Christian Magnusson)
2653         * fusermount: opening the fuse device now doesn't need /sys.
2655         * Optimize reading by controlling the maximum readahead based on
2656         the 'max_read' mount option
2658         * fixes for UCLIBC (Christian Magnusson)
2660 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2662         * Cleaned up kernel in preparation for merge into mainline:
2664         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2666         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2668         * __user annotations for sparse
2670         * allocate individual pages instead of kmalloc in fuse_readdir,
2671         fuse_read and fuse_write.
2673         * Fix NFS export in case "use_ino" mount option is given
2675         * Make libfuse and fusermount compatible with future versions
2677         * fusermount: properly add mount options to /etc/mtab
2679 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2681         * fusermount: do not resolve last component of mountpoint on if it
2682         is '.' or '..'.  This new path resolvation is now done on mount as
2683         well as unmount.  This enables relative paths to work on unmount.
2685         * fusermount: parse common mount options like "ro", "rw", etc...
2687         * Allow module params to be changed through sysfs
2689 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2691         * Released 2.1-pre1
2693 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2695         * Fix bug in fuse_readpages() causing Oops in certain situations.
2696         Bug found by Vincenzo Ciancia.
2698         * Fix compilation with kernels versions > 2.6.9.
2700 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2702         * Check kernel interface version in fusermount to prevent
2703         strangeness in case of mismatch.
2705         * No need to allocate fuse_conn until actual mount happens
2707         * Fix potential race between umount and fuse_invalidate
2709         * Check superblock of proc file in addition to inode number
2711         * Fix race between request_send_noreply() and fuse_dev_release()
2713 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2715         * Separate configure for the kernel directory
2717         * Don't allow write to return more than 'count'
2719         * Extend kernel interface for future use
2721 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2723         * Fix 'makeconf.sh' to use autoreconf if available
2725 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2727         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2728         compatibility with earlier versions.  To compile earier versions
2729         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2730         Do not use the "use_ino" mount flag with filesystems compiled with
2731         FUSE_DIRFIL_COMPAT.
2733         * Add pkg-config support.  To compile a FUSE based filesystem you
2734         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2735         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2736         usually needs to be set to "/usr/local/lib/pkgconfig".
2738         * fuse.h is now installed in ${prefix}/include/fuse/
2740 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2742         * Added "use_ino" mount option.  This enables the filesystems to
2743         set the st_ino field on files
2745 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2747         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2748         by Jeremy Smith)
2750         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2752         * Clear the 'exited' flag when mail loop is finished
2754 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2756         * Make xattr functions work under 2.6 (bug found by Vincenzo
2757         Ciancia)
2759 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2761         * Reset request in fuse_flush() (bugreport by David Shaw)
2763 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2765         * fuse_main() now does not exit on error, rather it returns an
2766         error code
2768         * Exported __fuse_setup() and __fuse_teardown() functions, which
2769         make it easier to implement a custom event loop.
2771         * Use daemon() call to background the filesystem after mounting.
2772         This function closes the standard input, output and error and
2773         changes the current working directory to "/".
2775 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2777         * Released 1.9
2779 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2781         * Don't allow fuse_flush() to be interrupted (bug found by David
2782         Shaw)
2784 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2786         * Add PID to fuse_context.  Patch by Steven James
2788         * Change file handle type to 'unsigned long' in kernel interface
2790 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2792         * A slight API change: fuse_get_context() doesn't need the "fuse"
2793         pointer, but the returned context contains it instead.  The
2794         fuse_get() function is not needed anymore, so it's removed.
2796         * Fix mounting and umounting FUSE filesystem under another FUSE
2797         filesystem by non-root (bug spotted by Valient Gough)
2799 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2801         * Fix deadlock in case of memory allocation failure.  Patch by
2802         Christian Magnusson
2804 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2806         * Check memory allocation failures in libfuse
2808 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2810         * Check temporary file creation failure in do_getdir().  Bug
2811         spotted by Terje Oseberg
2813 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2815         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2817         * Make requests non-interruptible so race with FORGET is avoided.
2818         This is only a temporary solution
2820         * Support compiling FUSE kernel module on 2.4.x UML kernels
2822 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2824         * Fix bug in case two FORGETs for the same node are executed in
2825         the wrong order.  Bug spotted and endured for months by Franco
2826         Broi, and logfile for solution provided by Terje Oseberg
2828 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2830         * Add -D_REENTRANT to the compile flags
2832         * Add documentation of fuse internals by Terje Oseberg
2834 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2836         * Change release method to be non-interruptible.  Fixes bug
2837         causing missing release() call when program which has opened files
2838         is killed (reported by Franco Broi and David Shaw)
2840 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2842         * Add fuse_invalidate() to library API
2844 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2846         * Check permissions in setattr if 'default_permissions' flag is
2847         set.  Bug spotted by Damjan Lango
2849 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
2851         * 'large_read' mount option removed for 2.6 kernels, since the
2852         default (dynamic read size) is better
2854         * Extend kernel API with file handles.  A file handle is returned
2855         by open, and passed to read, write, flush, fsync and release.
2856         This is currently only used for debug output in the library.
2858         * Security changes:
2860         * Change the current directory to the mountpoint before checking
2861         the permissions and mount filesystem on "."
2863         * By default don't modprobe the fuse module for non-root.  The old
2864         behavior can be restored with the '--enable-auto-modprobe' flag of
2865         ./configure
2867         * By default don't allow shared writable mappings for non-root.
2868         The old behavior can be restored with the 'user_mmap=1' module
2869         parameter
2871 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
2873         * Clean up mount option passing to fusermount and to fuse_new()
2874         BEWARE: this changes the userspace API slightly, and the command
2875         line usage of programs using fuse_main()
2877 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
2879         * Optimize reading under 2.6 kernels by issuing multiple page
2880         asynchronous read requests
2882 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
2884         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2886 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
2888         * Separate directory entry and inode attribute validity timer
2890         * New write semaphore to stop page writeback during truncate
2892         * Fsync now waits for all writes to complete before sending the
2893         request
2895         * Optimization: if a page is completely written by
2896         fuse_commit_write(), clear the dirty flag and set the uptodate
2897         flag for that page
2899         * Some memory cleanup at exit
2901 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
2903         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2904         disable the "hide if open" behavior of unlink/rename.
2906         * If temporary buffer allocation fails in raw read, fall back to a
2907         smaller buffer
2909 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
2911         * Fix bug in do_open() in libfuse: open count was incremented
2912         after the reply is sent so it could race with unlink/forget and
2913         cause an abort.
2915 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
2917         * When performing create or remove operation, refresh the parent's
2918         attributes on next revalidate, as i_nlink (and maybe size/time)
2919         could be inacurate.
2921         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2922         pages (2.6 only)
2924         * Set set_page_dirty address space operation (2.6 only)
2926 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
2928         * Minor fix in read:  print debug info even if read size is zero
2930 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
2932         * Fix race between truncate and writepage (fsx-linux now runs
2933         without error)
2935 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
2937         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2938         by Mattias Wadman)
2940         * Added option for direct read/write (-r)
2942         * Fix revalidate time setting for newly created inodes
2944         * Remove uid==0 check for '-x' option in fusermount (kernel checks
2945         this)
2947         * fuse_main() only installs handlers for signals (out of INT, HUP,
2948         TERM, PIPE), for which no handler has yet been installed
2950         * Add module option 'user_allow_other' which if set to non-zero
2951         will allow non root user to specify the 'allow_other' mount option
2952         ('-x' option of fusermount)
2954         * Fix deadlock between page writeback completion and truncate
2955         (bug found by Valient Gough with the fsx-linux utility)
2957 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
2959         * Change passing fuse include dir to 2.6 kernel make system more
2960         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2961         kernel)
2963 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
2965         * Acquire inode->i_sem before open and release methods to prevent
2966         concurrent rename or unlink operations.
2968         * Make __fuse_read_cmd() read only one command.  This allows
2969         multiplexing the fuse file descriptor with other event sources
2970         using select() or poll() (patch by Jeff Harris)
2972         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2974 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
2976         * Fix file offset wrap around at 4G when doing large reads
2978 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2980         * Fix memory leak in open (Valient Gough)
2982 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2984         * Add "close after delete" support to libfuse (patch by Valient
2985         Gough)
2987         * Cancel all worker threads before exit in multithreaded mode
2989 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
2991         * Fix locking bugs
2993         * Don't send reply to RELEASE
2995         * Work with newer libtool (1.5a)
2997         * Check for st_atim member of struct stat
2999 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
3001         * No request allocation needed on inode and file release
3003 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
3005         * Fix possible inode leak in userspace in case of unfinished
3006         lookup/mknod/mkdir/symlink/link operation.
3008 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
3010         * Fix some races and cleanups in fuse_read_super()
3012 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
3014         * Requests are allocated at open time
3016 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
3018         * Build shared library as well as static (using libtool)
3020         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
3021         there has not been a release with the previous minor number, and I
3022         hope nobody is using it for anything.
3024         * Change fuse_main(), so that default behavior is to go into
3025         background if mount is successful.  '-f' and '-d' options disable
3026         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
3027         newbie complaint.
3029         * Cache ENOSYS (function not implemented) errors on *xattr, flush
3030         and fsync
3032         * Don't call getdir method from open() only from first readdir().
3033         Open is sometimes just used to store the current directory
3034         (e.g. find)
3036 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
3038         * Added flush() call
3040 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3042         * Extended attributes support for 2.4 (patch by Cody Pisto)
3044 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3046         * Fixed parser with modversions (Mattias Wadman)
3048 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3050         * Added mount option parser to 2.4 build
3052 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3054         * Replaced binary mount data with text options
3056         * Show FUSE specific mount options in /proc/mounts
3058         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3060 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3062         * Check some limits so userspace won't get too big requests
3064 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3066         * Kill compile warning
3068         * Upgraded user-mount patch for 2.6.5
3070 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3072         * Add detection of user-mode-linux to configure
3074 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3076         * fixed zero size case for getxattr and listxattr
3078 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3080         * new fusermount flag '-z': lazy unmount, default is not lazy
3082         * Extended attributes operations added (getxattr, setxattr,
3083         listxattr, removexattr)
3085 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3087         * If filesystem doesn't define a statfs operation, then an
3088         all-zero default statfs is returned instead of ENOSYS
3090 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3092         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3094 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3096         * Fix for uClinux (Christian Magnusson)
3098 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3100         * fuse_main() adds "-n progname" to the fusermount command line
3102         * More kernel interface changes:
3104         * Lookup/getattr return cache timeout values
3106 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3108         * Clean up option parsing in fuse_main()
3110         * Added fuse_get() function which returns the fuse object created
3111         by fuse_main()
3113 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3115         * removed old way of mounting (fusermount mountpoint program)
3117         * more kernel interface changes:
3119         * added nanosecond precision to file times
3121         * removed interface version from mount data
3123         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3125 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3127         * statfs library API changed to match other methods.  Since this
3128           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3130         * kernel interface changes follow:
3132         * statfs changed to 64 bits, added 'bavail' field
3134         * add generation number to lookup result
3136         * optimized mknod/mkdir/symlink/link (no separate lookup is
3137         needed)
3139         * rdev size increased to 32 bits for mknod
3141         * kernel interface version changed to 3.1
3143 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3145         * user-mount upgraded for 2.6.3 kernel
3147 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3149         * Added user-mount.2.6.2-rc3.patch
3151         * Add FS_SAFE flag to fuse filesystem
3153         * fusermount should allow (un)mounting for non-root even if not
3154         suid-root
3156 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3158         * Remove MS_PERMISSION mount flag (that means something else now)
3160 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3162         * Added check for i_size_read/write functions to configure.in
3163         (patch by Valient Gough)
3165 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3167         * Fixed writing >= 2G files
3169         * Check file size on open (with generic_file_open())
3171         * Readpage calls flush_dcache_page() after storing data
3173         * Use i_size_read/write for accessing inode->i_size
3175         * Make loopback mount of a fuse file work
3177 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3179         * Released 1.1
3181 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3183         * Properly check if the inode exists in fuse_invalidate
3185 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3187         * Added -q option for fusermount
3189         * fuse_unmount() now uses -q option of fusermount, so no error is
3190         printed if the cause of the program exit is that the filesystem
3191         has already been unmounted
3193         * Fix i_nlink correctness after rmdir/unlink
3195 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3197         * Released 1.1-pre2
3199 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3201         * Fix typo (thanks Marcos Dione)
3203         * Compile fixes for 2.4 kernels
3205 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3207         * Fix CONFIG_MODVERSIONS compile on 2.6
3209 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3211         * Write all pending data before a RELEASE operation
3213         * Suppress 'Bad file descriptor' warning on exit
3215         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3216         get confused with '-d' of fuse_main() (sorry about this change)
3218         * New fusermount option '-l' which enables big reads.  Big reads
3219         are now disabled by default.
3221         * fuse_main() can accept fusermount arguments after a '--'
3223 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3225         * Support for exporting filesystem over NFS (see README.NFS)
3227 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3229         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3230         much more nicely in low-memory situations
3232         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3233         (Note: the mknod method does not yet use 32bit device number)
3235 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3237         * Code cleanups
3239 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3241         * Released 1.1-pre1
3243 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3245         * Integrated 2.6 kernel support patch by Michael Grigoriev
3247         * Improvements and cleanups for 2.6 kernels
3249 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3251         * Added -d option to fusermount
3253 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3255         * Added major+minor version to library API, and minor version to
3256           kernel API
3258 2003-12-13  David McNab <david@rebirthing.co.nz>
3260         * Implemented fsync support in examples/example.py
3262         * Implemented 'fsync' and 'statfs' methods in python
3263           interface
3265 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3267         * Make it compile on 2.4.19.
3269         * Add fsync operation (write file failed on xemacs & vi)
3271 2003-12-12  David McNab <david@rebirthing.co.nz>
3273         * Added distutils support to the python module, as per standard
3274           python development practice
3276 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3278         * Add file locking for mount/unmount (based on patch by Valient
3279         Gough)
3281 2003-12-11  David McNab <david@rebirthing.co.nz>
3283         * Python filesystem - was broken with python2.3, now fixed:
3284            - changed PyTuple_* calls to PySequence_*, because os.lstat
3285              is no longer returning a pure tuple
3286            - changed PyInt_Check() calls to also call PyLong_Check,
3287              to cover for cases (eg os.lstat) where longs are returned
3288            - Added support for file 'release' handling, which IMO is
3289              essential since this signals to a FS that writes to a file
3290              are complete (and therefore the file can now be disposed of
3291              meaningfully at the python filesystem's discretion)
3292            - Added '__init__' handler to base Fuse class, which allows
3293              your Python class to know the mountpoint and mount args,
3294              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3296         * General:
3297            - added 'mount.fuse' script (in util/ dir), which is meant to be
3298              symlinked from /sbin, and which allows FUSE filesystems to
3299              be mounted with the 'mount' command, and listed in fstab;
3300              also, mount arguments get passed to your filesystem
3303 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3305         * Fix kernel version detection (again).  Bugreport by Peter Levart
3307 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3309         * Applied read combining patch by Michael Grigoriev (tested by
3310         Valient Gough and Vincent Wagelaar)
3312 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3314         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3315         #766443)
3317 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3319         * Error code fixes in kernel module
3321 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3323         * kernel version detection fix
3325         * fusermount now uses "lazy" umount option
3327         * fusermount can use modprobe with module-init-tools
3329 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3331         * Integrated caching patch by Michael Grigoriev
3333         * Added "Filesystems" file with descriptions of projects using
3334         FUSE
3336         * Added patch by Michael Grigoriev to allow compliation of FUSE
3337         kernel module for 2.6 kernels
3339 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3341         * And another spec-file fix by Achim Settelmeier
3343 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3345         * Spec-file fix by Achim Settelmeier
3347 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3349         * Fix umount oops (found by Samuli Kärkkäinen)
3351 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3353         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3355 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3357         * Updated fuse.spec file (Achim Settelmeier)
3359 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3361         * Version 1.0 released
3363 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3365         * SuSE compilation fix by Juan-Mariano de Goyeneche
3367 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3369         * The release() VFS call is now exported to the FUSE interface
3371 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3373         * 64 bit file offset fixes in the fuse kernel module
3375         * Added function 'fuse_exit()' which can be used to exit the main
3376         loop
3378 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3380         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3381         an incompatible interface change.
3383 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3385         * Portablility fix (bug reported by C. Chris Erway)
3387 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3389         * Use Mark Glines' fd passing method for default operation instead
3390         of old reexec
3392 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3394         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3396 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3398         * fix incompatiblity with Red Hat kernels, with help from Nathan
3399         Thompson-Amato.
3401 2002-04-18  Mark Glines <mark@glines.org>
3403         * added an alternative to fuse_mount(), called
3404       fuse_mount_ioslave(), which does not need to reexec the
3405       FUSE program.
3406         * added a small helper util needed by fuse_mount_ioslave().
3408 2002-03-16  Mark Glines <mark@glines.org>
3410         * use struct fuse_statfs everywhere possible to avoid problems
3411       with the headerfiles changing struct statfs member sizes
3413 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3415         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3417 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3419         * RPM support by Achim Settelmeier
3421 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3423         * Version 0.95 released
3425 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3427         * Revaidate all path components not just the last, this means a
3428         very small performance penalty for being more up-to-date.
3430 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3432         * Update and fix python interface
3434 2002-01-07  Mark Glines <mark@glines.org>
3436         * Added statfs() support to kernel, lib, examples, and perl!
3438 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3440         * Better cross compilation support
3442         * Ported to Compaq IPAQ
3444 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3446         * Added function fuse_get_context() to library API (inspired by
3447         patch from Matt Ryan)
3449         * Added flags to fusermount and to kernel interface to control
3450         permission checking
3452         * Integrated fuse_set_operations() into fuse_new()
3454 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3456         * Applied header protection + extern "C" patch by Roland
3457         Bauerschmidt
3459 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3461         * Added perl bindings by Mark Glines
3463 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3465         * Cleaned up way of mounting simple filesystems.
3467         * fuse_main() helper function added
3469 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3471         * Optimized read/write operations, so that minimal copying of data
3472         is done
3474 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3476         * Python bindings by Jeff Epler added
3478 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3480         * Fixed vfsmount reference leak in fuse_follow_link
3482         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3483         userspace is ignored
3485 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3487         * Started ChangeLog