libfuse: fix the 'remember' option
[fuse.git] / ChangeLog
blob5a648be99f116d8a817b1ac306e9f232e644b407
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 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
11         * Released 2.9.2
13 2012-10-01  Miklos Szeredi <miklos@szeredi.hu>
15         * Fix deadlock in libfuse.  Running "svn update" on a fuse
16         filesystem could deadlock because of a bug in the way the paths
17         are locked.  Reported by Kazuaki Anami
19 2012-08-23  Miklos Szeredi <miklos@szeredi.hu>
21         * Fix missing config.h in buffer.c.  Reported by Matthew Gabeler-Lee
23 2012-08-14  Miklos Szeredi <miklos@szeredi.hu>
25         * Not unhashing the name in forget (commit on 2011-12-09) broke
26         the forget logic in a subtle way, resulting in "fuse internal
27         error: node NNN not found" and causing the filesystem daemon to
28         abort.  Fix by incrementing the node refcount if nlookup goes from
29         zero to one.  Reported by Kyle Lippincott
31 2012-08-13  Miklos Szeredi <miklos@szeredi.hu>
33         * Fix linking against GNU libiconv.  Patch by Natanael Copa
35 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
37         * Released 2.9.1
39 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
41         * Fix crash caused by freeing a stack address.  Reported by Itay
42         Perl
44 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
46         * Fix install of mount.fuse from out-of-tree build.  Patch by
47         Olivier Blin
49         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
51 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
53         * Add fallocate operation.  Only works on linux kernels 3.5 or
54         later.  Patch by Anatol Pomozov
56 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
58         * Linking to a library that uses threads requires the application
59         to be linked with -pthreads otherwise some pthread functions will
60         be linked to stubs in glibc.  So move -pthread from Libs.private
61         to Libs in fuse.pc.  Reported by Werner Fink
63         * Fix the compile command in the examples. Reported by Luciano
64         Dalle Ore
66 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
68         * Released 2.9.0
70 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
72         * Add missing fuse_fs_flock to fuse_versionscript
74 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
76         * Check protocol version before sending notifications and return
77         -ENOSYS if a particular notification is not supported.
79         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
80         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
81         and UTIME_NOW values as specified in utimensat(2).
83 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
85         * Interpret octal escape codes in options.  Requested by Jan
86         Engelhardt
88 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
90         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
91         Lifted from the Debian package.  The man pages were written by
92         Daniel Baumann and Bastien Roucaries
94 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
96         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
98 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
100         * Remove unnecessary mutex unlock at the end of multithreaded
101         event loop.
103 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
105         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
107         * Don't unhash name in FORGET.  This resulted in ENOENT being
108         returned for unlinked but still open files if the kernel sent a
109         FORGET request for the parent directory.
111         * Free request in fuse_reply_data().
113 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
115         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
116         Dreyfus
118         * Check for availability of utimensat() function.  Patch by
119         Emmanuel Dreyfus
121 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
123         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
124         file or directory is deleted.  Patch by John Muir
126 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
128         * Update retrieve_reply() method
130 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
132         * Low level API: lock argument of fuse_reply_lock should have a
133         'const' qualifier.  Reported by Shachar Sharon
135         * Add support for ioctl on directories.  Reported by Antonio SJ
136         Musumeci
138 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
140         * Reply to request with ENOMEM in case of failure to allocate
141         request structure.  Otherwise the task issuing the request will
142         just freeze up until the filesystem daemon is killed.  Reported by
143         Stephan Kulow
145 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
147         * Replace daemon() function with fork().  Patch by Anatol Pomozov
149 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
151         * If configured with --disable-mtab then don't call mount(8) from
152         libfuse to update the mtab.  Reported by: James Sierp
154 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
156         * Use LRU list for cleaning up the cache if the "remember=T"
157         option was given.  Patch by therealneworld@gmail.com
159 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
161         * Add ->flock() operation to low and high level interfaces.  This
162         fixes problems with emulating flock() with POSIX locking.
163         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
164         filesystems don't need to implement this, as the kernel takes care
165         of file locking.  The only reason to implement locking operations
166         is for network filesystems which want file locking to work between
167         clients.
169 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
171         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
172         not follow symlinks as other layers do that already.
174 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
176         * Add "remember" option.  This works similar to "noforget" except
177         that eventually the node will be allowed to expire from the cache.
178         Patch by therealneworld@gmail.com
180 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
182         * Check if splice/vmsplice are supported
184 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
186         * Remove -lrt -ldl from fuse.pc for dynamic linking since
187         libfuse.so is already linked with these libraries.  Reported by:
188         Nikolaus Rath
190 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
192         * Cleaner build output.  Patch by Reuben Hawkins
194 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
196         * Disable splice by default, add "splice_read", "splice_write" and
197         "splice_move" options.  Keep the "no_splice_*" variants, which can
198         disable splice even if the filesystem explicitly enables it.
200 2011-04-15  Max Krasnyansky <maxk@kernel.org>
201         * Added support for "auto_unmount" option which unmounts the
202         filesystem automatically on process exit (or crash).
204 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
206         * Patches by Laszlo Papp fixing various issues found by the
207         Coverity checker
209 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
211         * In case of failure to add to /etc/mtab don't umount.  Reported
212         by Marc Deslauriers
214 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
216         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
217         worker threads.  The pause() was added in 2.2.1 to prevent
218         segfault on pthread_cancel() on an exited, detached thread.  Now
219         worker threads are not detached and pthread_cancel() should work
220         fine even after the thread exited.  Reported by Boris Protopopov
222 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
224         * fusermount: chdir to / before performing mount/umount
226         * fusermount: only allow mount and umount if util-linux supports
227         --no-canonicalize
229 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
231         * Highlevel lib: allow hash tables to shrink
233         * Highlevel lib: add slab allocation for node cache.  This will
234         allow the memory used by the filesystem to grow and shrink
235         depending on how many inodes are currently cached.
237 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
239         * Highlevel lib: use dynamically resized hash table for looking up
240         by name and node ID.
242 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
244         * Allow batching of forget requests.  This allows forget requests
245         to be processed faster and doesn't require a modification to fuse
246         filesystems.  Reported by Terje Malmedal
248         * Add ->forget_multi() operation to the lowlevel API.  The
249         filesystem may implement this to process multiple forget requests
250         in one call
252         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
253         for 32bit vs. 64bit userspace
255 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
257         * Add new write_buf() method to the highlevel API.  Similarly to
258         the lowlevel write_buf() method, this allows implementing zero
259         copy writes.
261         * Add a new read_buf() method to the highlevel API.  This allows
262         returning a generic buffer from the read method, which in turn
263         allows zero copy reads.
265         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
266         methods.  Leave the ->read() and ->write() implementations for
267         reference, even though they are not necessary.
269 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
271         * Fix check for read-only fs in mtab update
273         * Open /dev/null for write instead of read for redirecting stdout
274         and stderr
276         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
277         version 2.18 or later), and umount(2) supports the
278         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
279         "fusermount -u" will call the umount(2) system call and use
280         "umount --fake ..." to update /etc/mtab
282         * Added --disable-legacy-umount option to configure.  This
283         disables the runtime checking of umount(8) version.  When built
284         with this option then "fusermount -u" will fail if umount(8)
285         doesn't support the --fake and --no-canonicalize options.
287         * Fix fuse_buf_copy() if already at the end of the buffers
289         * Add new ->write_buf() method to low level interface.  This
290         allows passig a generic buffer, either containing a memory buffer
291         or a file descriptor.  This allows implementing zero copy writes.
293         * Add fuse_session_receive_buf() and fuse_session_process_buf()
294         which may be used in event loop implementations to replace
295         fuse_chan_recv() and fuse_session_process() respectively.
297         * Remove unnecessary restoring of current working directory in
298         "fusermount -u"
300         * Add ctx->pid to debug output
302         * Fix st_nlink value in high level lib if file is unlinked but
303         still open
305         * libfuse: add store request.  Request data to be stored in the
306         kernel buffers for a given inode.
308         * libfuse: add retrieve request.  Retrieve data stored in the
309         kernel buffers for a given inode.
311 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
313         * Use LTLIBICONV when linking libfuse.  This fixes building against
314         uclibc + libiconv.  Patch by Natanael Copa
316 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
318         * Add missing argument check in ulockmgr.c to prevent calling
319         ulockmgr_server with illegal arguments. This would cause an ever
320         growing list of ulockmgr_server processes with an endless list of
321         open files which finally exceeds the open file handle limit.
322         Patch by Markus Ammer
324 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
326         * Fix ambiguous symbol version for fuse_chan_new.
327         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
328         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
330 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
332         * Fix option escaping for fusermount.  If the "fsname=" option
333         contained a comma then the option parser in fusermount was
334         confused (Novell bugzilla #641480).  Fix by escaping commas when
335         passing them over to fusermount.  Reported by Jan Engelhardt
337 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
339         * Add NetBSD support.  Patch from Emmanuel Dreyfus
341 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
343         * libfuse: add buffer interface.  Add a generic buffer interface
344         for use with I/O.  Buffer vectors are supplied and each buffer in
345         the vector may be a memory pointer or a file descriptor.
347         * The fuse_reply_fd() interface is converted to using buffers.
349 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
351         * Make the number of max background requests and congestion
352         threshold tunable.  New options are "max_background" and
353         "congestion_threshold".  Only effective on linux kernel versions
354         2.6.32 or greater.  Patch by Csaba Henk
356 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
358         * Add fuse_reply_fd() reply function to the low level interface.
359         On linux version 2.6.35 or greater this will use splice() to move
360         data directly from a file descriptor to the fuse device without
361         needing to go though a userspace buffer.  With the
362         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
363         directly into the filesystem's cache.  On earlier kernels it will
364         fall back to an intermediate buffer.  The options
365         "no_splice_write" and "no_splice_move" can be used to disable
366         splicing and moving respectively.
368 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
370         * Fix out-of-source build.  Patch by Jörg Faschingbauer
372         * Add a "nopath" option and flag, indicating that path argument
373         need not be calculated for the following operations: read, write,
374         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
375         fgetattr, lock, ioctl and poll.
377 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
379         * Remove "chmod root" from install of fusermount.  Reported by
380         Lucas C. Villa Real
382 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
384         * Released 2.8.4
386 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
388         * Fix checking for symlinks in umount from /tmp.  Reported by Al
389         Viro
391         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
393 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
395         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
396         Bruylants
398 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
400         * Fix stack alignment for clone()
402 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
404         * Released 2.8.3
406 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
408         * Using "--no-canonicalize" with umount(8) conflicts with the race
409         fix, sinceit assumes the supplied path is absolute, while the race
410         fix relies on the path being relative to the current directory.
411         Reported by Tom Rindborg
413 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
415         * Released 2.8.2
417 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
419         * Fix race if two "fusermount -u" instances are run in parallel.
420         Reported by Dan Rosenberg
422         * Make sure that the path to be unmounted doesn't refer to a
423         symlink
425 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
427         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
429 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
431         * Use '--no-canonicalize' option of mount(8) (available in
432         util-linux-ng version 2.17 or greater) to avoid calling
433         readling(2) on the newly mounted filesystem before the mount
434         procedure is finished.  This has caused a deadlock if "audit" was
435         enabled in the kernel.  Also use '--no-canonicalize' for umount to
436         avoid touching the mounted filesystem.
438 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
440         * Released 2.8.1
442 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
444         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
446 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
448         * Released 2.8.0
450 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
452         * Add missing fuse_session_data to versionscript
454         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
456 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
458         * Clarify how the protocol version should be negotiated between
459         kernel and userspace.  Notably libfuse didn't correctly handle the
460         case when the supported major versions didn't match
462         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
464 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
466         * The context is extended with a 'umask' field.  The umask is sent
467         for mknod, mkdir and create requests by linux kernel version
468         2.6.31 or later, otherwise the umask is set to zero.  Also
469         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
470         supports this feature, then this flag will be set in conn->capable
471         in the ->init() method.  If the filesystem sets this flag in in
472         conn->want, then the create modes will not be masked.
474         * Add low level interfaces for lookup cache and attribute
475         invalidation.  This feature is available in linux kernels 2.6.31
476         or later.  Patch by John Muir
478         * Kernel interface version is now 7.12
480         * fusermount: Do not silently ignore command line arguments.
481         Patch by Sebastian Harl
483 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
485         * Released 2.8.0-pre3
487 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
489         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
490         level lib) functions to query the supplementary group IDs for the
491         current request.  Currently this is implemented on Linux by
492         reading from the /proc filesystem.
494 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
496         * Add "noforget" option to high level lib to prevent ESTALE errors
497         on NFS exported filesystems.  This result in paths being cached
498         forever, resulting in ever growing memory usage.  Use with care.
500         * Add "no_remote_lock" option to disable remote file locking even
501         if the filesystem implements it.  With this option locking
502         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
503         will ignore remotely locked files.
505         * CUSE patches from Tejun Heo:
507         * Unrestricted ioctl support left some debris.  Clean them up:
508           o No reason to pass around pointer to flags.  Pass flags directly.
509           o Clean up comment and prototype parameter names.
510           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
511           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
513         * Add fuse_reply_ioctl_iov()
515         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
516         and make send_reply_iov() and fuse_setup_common() global (also in
517         fuse_i.h).  These will be used by CUSE support.
519         * Restructure fuse_ll_process()
521         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
522         operations as dir operations don't make sense for CUSE where one
523         instance implements single character device.
525         CUSE support comes with its own cuse_lowevel_ops and related
526         initialization and helper functions.  Except for initialization, it
527         usage is basically identical to FUSE.
529         This patch also adds example/cusexmp.c which can create a character
530         device with name and device number specified on command line.  The
531         created device itself is pretty boring.  It's a bit bucket supporting
532         read, write and access via ioctl.
534 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
536         * Add missing fuse_reply_bmap to versionscript.  Debian
537         Bug#531329.  Reported by Goswin Brederlow
539 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
541         * Don't call forget_node() if the lookup was negative and write()
542         for the reply returned ENOENT.  Reported by John Haxby
544 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
546         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
548 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
550         * Fix missing newlines in some printfs
552         * Fix 'make install-strip'.  Reported by Dominick Layfield
554 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
556         * Released 2.8.0-pre2
558 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
560         * Implement poll support.  Patch by Tejun Heo
562         * Add missing setattr flags to <fuse_lowlevel.h>.
564         * Only pass valid flags to ->setattr().
566 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
568         * Implement ioctl support.  On high level interface only
569         "restricted" ioctls are supported (which are defined with the
570         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
571         will only be allwed to CUSE (Character Device in Userspace)
572         servers.  Patch by Tejun Heo
574 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
576         * If open sets fi->nonseekable, libfuse will tell the kernel that
577         the file is not seekable.  Patch by Tejun Heo
579 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
581         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
582         interrupt handling function.  Reported by Tero Marttila
584 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
586         * Allow commas in options to be escaped with a backslash
588         * Add new function: fuse_opt_add_opt_escaped()
590         * Add missing fuse_reply_bmap() to the version script
592 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
594         * Pass current file flags to read and write operations
596 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
598         * Clean up debug output in highlevel lib
600 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
602         * Released 2.8.0-pre1
604 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
606         * Fix handling of (no)suid and (no)dev options if filesystem is
607         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
609         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
610         read-only filesystem.  This works around issues with certain mount
611         implementations.  Reported by Szabolcs Szakacsits.
613 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
615         * Remove fuse kernel module sources.  Linux 2.6.27 will support
616         NFS exporting.
618 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
620         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
621         Szakacsits
623         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
624         Szabolcs Szakacsits
626 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
628         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
630 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
632         * Don't allow bigger than 4kB writes by default on 2.6.26 and
633         later kernels, so that filesystems not expecting this are not
634         broken on a kernel upgrade.  Provide a 'big_writes' mount option
635         to enable this feature.  In future API revisions this may become
636         the default.
638 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
640         * Update warning message for missing newline at end of fuse.conf
642         * Update debug message for successful operation to not include the
643         string "error:"
645 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
647         * Update error message for missing mountpoint parameter.  Reported
648         by Allen Pulsifer
650 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
652         * Print library version information to debug output
654         * Highlevel lib: don't limit paths to 4095 characters
656 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
658         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
660 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
662         * Fix missing pthread_mutex_destroy in error path of
663         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
665 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
667         * Add queuing on contention to per-node lock algorithm, to avoid
668         starvation.
670         * Only enable cancelation when reading a request, otherwise
671         cancellation could happen with a mutex held, which could hang the
672         process on umount
674 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
676         * Block SIGCHLD when executing mount and umount
678         * fusexmp_fh: avoid unnecessary seeking in readdir
680         * Update kernel interface to 7.9:
682         * Support receiving file handle from kernel in GETATTR request
684         * Allow operations with a NULL path argument, if the filesystem
685         supports it
687         * Add support atomic open(O_TRUNC)
689         * Support the st_blksize field in struct stat
691         * If the "FUSE_THREAD_STACK" environment is set, initialize the
692         stack size of threads by this value.  Patch by Florin Malita
694         * Add per-node locking, instead of a global tree lock to protect
695         the path from changing during operations.  Original patch by
696         Rodrigo Castro
698 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
700         * lib/mount_bsd.c:
701         - string formatting fixes
702         - exit if mounting has failed
703           (in FreeBSD a mount failure is not critical per se, as the daemon
704           still could be mounted externally, but waiting for such an event
705           is more confusing than fruitful)
706         - ditch the kvm(8) stuff and simply use forced unmount which just
707           won't block
708         - prettify option specifications
709         - add "-onosync_unmount" kernel option
711 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
713         * lib/mount_bsd.c:
714         - refine device closing in a race-free way
715         - add support for "-osubtype" on FreeBSD
717         * makeconf.sh: make it work under FreeBSD
719 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
721         * lib/mount_bsd.c: close device before unmount
722         (cf. lib/mount.c rev. 1.43) and fix some warnings 
724 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
726         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
728 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
730         * Released 2.7.2
732 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
734         * Fix kernel module compile for 2.6.24
736         * Invalidate attributes of parent directory after create(), since
737         the modification time changes.  Invalidate attributes on rename,
738         since some filesystems may update st_ctime.  Reported by Szabolcs
739         Szakacsits
741         * Fix NFS exporting to handle 64bit node IDs
743         * Disable old symbol versions if __UCLIBC__ is defined.  If a
744         symbol in a library has multiple versions, the runtime linker in
745         uClibc seems to randomly choose between them.
747         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
748         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
750         * Close fuse device file descriptor before calling umount(),
751         preventing a deadlock when umount is synchronous.  Reported by
752         Szabolcs Szakacsits
754 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
756         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
757         symlink.  This bug was introduced in 2.7.1 by "Don't call
758         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
760 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
762         * Released 2.7.1
764 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
766         * Clarify licence version to be "LGPLv2" for the library
768         * kernel fixes:
770         * After mount set nlink attribute for the root inode to 1
772         * Fix wake up of task waiting for a reserved request
774         * Fix allowing setattr, listxattr and statfs for other users
776 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
778         * Add missing context initialization in fuse_fs_chmod().  Bug
779         found by "iohead"
781         * Fix kernel module compilation for 2.6.23.  Based on patch by
782         Marian Marinov
784 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
786         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
788 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
790         * Work around hotplug issue, that it calls filesystem with file
791         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
793 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
795         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
796         Tomas M
798         * Also don't touch /etc/mtab if it is within the mounted
799         filesystem.  Suggested by Jeffrey Law
801 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
803         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
804         C. Villa Real
806 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
808         * Released 2.7.0
810 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
812         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
813         filesystem is only invoking fuse to print a help message, or
814         version.  Fixes RedHat bugzilla #217343
816 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
818         * lib: fix locking when loading a filesystem module
820 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
822         * Add fs subtype support to mount.fuse
824 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
826         * Add fs subtype support to libfuse and fusermount
828 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
830         * kernel: sync with mainline (2.6.22)
832 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
834         * Send debug output to stderr instead of stdout.  Patch by Jan
835         Engelhardt
837 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
839         * libulockmgr: Work around a kernel bug in recv(), causing it to
840         sometimes return zero even if data was available on the socket.
842 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
844         * lib: optimization: store parent pointer in node instead of
845         parent id
847 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
849         * lib: don't create new thread for each FORGET request.  FORGET
850         messages sometimes caused so many threads to be created, that
851         process virtual memory space ran out.  Reported by Chris AtLee
853 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
855         * lib: fix memory leak on thread creation failure in multithreaded
856         event loop.  Found by Chris AtLee
858 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
860         * lowlevel lib: add fuse_reply_iov function, which is similar to
861         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
862         Willcocks
864 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
866         * Fix Oops or error if a regular file is created with mknod(2) on
867         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
868         J. Cameijo Cerdeira for the report
870 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
872         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
873         Error reported by Csaba Henk, fix by Miklos Szeredi
875         * libfuse: fix unlock in flush
877         * libfuse: do unlocking on RELEASE+FLUSH
879 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
881         * Released 2.7.0-rc1
883 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
885         * kernel: sync with mainline:
887         * Use invalidate_mapping_pages() if available
889         * Fix BUG when invalid file type is supplied in mount. Patch by
890         Timo Savola
892 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
894         * libfuse: call umount(8) directly instead of fusermount if
895         possible
897         * Clean up init script, make it LSB compliant
899 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
901         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
902         up the main thread on umount.  This is more elegant, and works
903         even if signals are blocked.
905 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
907         * Improve mounting support in libfuse:
908          - check non-empty mountpoint
909          - only fall back to fusermount when necessary
911 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
913         * Don't chdir to "/" in foreground mode, it causes more trouble
914         than it's worth
916 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
918         * Replace utils/mount.fuse "sh" script with a "C" program
920 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
922         * Add -lulockmgr to compilation comment in fusexmp_fh.c
924 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
926         * Check for iconv.  Patch by Csaba Henk
928         * Add direct umounting
930         * Use "fusectl" as the device for the fusectl filesystem.  Debian
931         Bug#417945.  Reported by Laurent Bonnaud
933 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
935         * Fix some FreeBSD related macros.
937 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
939         * Add support for direct mounting by libfuse.  Fall back on
940         calling fusermount if it doesn't work
942 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
944         * Released 2.7.0-pre1
946 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
948         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
949         Bruno
951         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
952         by Thomas Weinbrenner
954 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
956         * Fix detection of installed fuse in init script.  Reported and
957         fix suggested by Davide Canova
959 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
961         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
962         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
964 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
966         * Compile fuseblk for kernels which don't have an option to turn
967         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
968         Szabolcs
970 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
972         * Add filesystem stacking support to high level API.  Filesystem
973         modules can be built into libfuse or loaded from shared object
974         (.so) files
976         * Add 'subdir' and 'iconv' built in modules
978         * lib/fuse.c: Fix locking for the reply code in create and open
980 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
982         * kernel: make it compile on "strange" kernels which have emulated
983         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
984         Mateja
986 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
988         * kernel: fix BUG in control filesystem if it is umounted and
989         mounted again, while some fuse filesystems are present.
990         Bugreport from Florent Mertens
992         * kernel: sync with mainline, support 2.6.20
994 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
996         * lib/Makefile.am: actually link libfuse against libfuse_libs
998 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
1000         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
1001         Ian Abbott
1003 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
1005         * Fix abort in fuse_new() compatibility API for opts == NULL case.
1006         Novell bugzilla #233870.  Patch from Takashi Iwai.
1008 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
1010         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
1012 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
1014         * Fix unaligned access in file desctriptor passing in libfuse,
1015         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
1016         tested by Sebastian Fontius
1018 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
1020         * kernel: don't keep unreferenced inodes in the icache.
1022 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
1024         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
1025         Szabolcs
1027         * lib: Fix use after free in fuse_flush().  Reported by Ron
1028         Lindman
1030 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1032         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1033         for the filesystem
1035         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1036         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1037         the ugly code dealing with mtab, as well as a possible race
1038         between fusermount and mount trying to modify /etc/mtab at the
1039         same time
1041         * Fix "buffer size too small: 4" warning for users of the
1042         fuse_loop_mt_proc() function.
1044 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1046         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1047         Harshavardhana
1049         * Add extra warning options, and fix resulting warnings
1051         * Really fix fuse_teardown problem
1053 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1055         * Add -lrt to fuse.pc (if needed) to fix static linking against
1056         libfuse.  Reported by Szakacsits Szabolcs
1058 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1060         * Released 2.6.1
1062 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1064         * Fix API version 21 and 22 compatibility for fuse_teardown.
1065         Reported by Bgs
1067 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1069         * fusermount: Print a more helpful message in case the kernel
1070         doesn't support the 'fuseblk' filesystem type.  This has been
1071         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1073         * kernel: fix build problem for "make -C ...".  Reported by
1074         Stephen Bryant
1076 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1078         * Fix bug in certain error paths of lookup routines.  The request
1079         object was reused for sending FORGET, which is illegal.  This bug
1080         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1081         silently corrupt memory in earlier versions.  Report and test
1082         program by Russ Cox
1084 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1086         * Print an error if an incompatible kernel interface version is
1087         detected in INIT.  This will only show if filesystem is started
1088         with -d or -f
1090         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1091         fuse_setup_common().  Reported by Szakacsits Szabolcs
1093 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1095         * Fix recursive locking in fuse_create().  Thanks to Takuya
1096         Ishibashi for the bug report
1098 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1100         * Fix automake problem.  Patch from Nix
1102 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1104         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1105         always available on embedded systems.  Patch from Paul Smith
1107         * Fix util/Makefile.am, so that failure to run update-rc.d or
1108         device creation doesn't cause make to fail.  Reported by Paul
1109         Smith
1111 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1113         * Released 2.6.0
1115 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1117         * fusermount: don't try to create a lock file if /etc/mtab is a
1118         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1119         #393693)
1121 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1123         * Minor changes, sync with mainline tree
1125 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1127         * Released 2.6.0-rc3
1129 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1131         * kernel: cleanups
1133 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1135         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1136         Report from David Shaw
1138         * lib: Fix lost error on renaming a file. Report from David Shaw
1140         * lib: Fix lost error on hiding open files (renaming to
1141         .fuse_hiddenXXXX)
1143         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1144         activity.  The cause of the bug was that some calls to
1145         i_size_write() were not protected by a lock, and hence
1146         i_size_seqcount could become corrupted.  This caused subsequent
1147         calls to i_size_read() to spin forever.  This is a long standing
1148         bug was probably introduced in version 2.2, and thought to be
1149         related to NFS exporting (it's not).  It was reported by various
1150         people, but Dana Henriksen has finally helped me to track it down,
1151         so big thanks to him
1153         * kernel: Protect against truncation of a swapfile
1155 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1157         * kernel: Check for signature of super_operations->umount_begin().
1158         Ubuntu kernel 2.6.17 seems to use the new signature found in
1159         2.6.18.  Thanks to Florent Mertens for the report
1161 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1163         * Make sure inode numers wrap around at 2^32.  This is needed on
1164         dual 64bit/32bit architectures, because 32bit applications using
1165         the non-largefile interface would otherwise break (EOVERFLOW error
1166         would be returned by the stat() system call family)
1168         * ulockmgr: handle the case, when a locking operation fails
1169         because no more file desctriptors are available in
1170         ulockmgr_server.  Also work around a Linux kernel bug (known to
1171         exist for all Linux kernel versions <= 2.6.18) which may cause
1172         sent file descriptors to be lost in the above case
1174         * ulockmgr: optimize file descriptor use
1176         * restore needed cpp flags to util/Makefile.am
1178         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1180         * Minor clean up of udev rules
1182         * Add a synchronous DESTROY message to kernel interface.  This is
1183         invoked from umount, when the final instance of the filesystem is
1184         released.  It is only sent for filesystems mounted with the
1185         'blkdev' option for security reasons.
1187         * If the DESTROY message is received, call the filesystem's
1188         ->destroy() method.  In this case it's not called from session
1189         destruction as it would be otherwise.
1191 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1193         * Released 2.6.0-rc2
1195 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1197         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1198         patch by Csaba Henk
1200         * Add init script to insert fuse module and mount the control
1201         filesystem.  The script is installed as /etc/init.d/fuse and on
1202         debian based systems (where update-rc.d is available) symlinks
1203         from /etc/rc*.d/ are also installed.
1205         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1206         become more self contained.
1208 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1210         * API changes:
1212         * Move lock_owner from a separate argument into fuse_file_info
1214         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1215         operation (unlock all) was initiated by a flush, (2) a lowlevel
1216         release operation should perform a flush as well.
1218         * fusermount: revert modprobe change (2006-08-18) since it
1219         doesn't work reliably with udev
1221         * Add support for block device backed filesystems.  This mode is
1222         selected with the 'blkdev' option, which is privileged.
1224         * Add support for the bmap (FIBMAP ioctl) operation on block
1225         device backed filesystems.  This allows swapon and lilo to work on
1226         such filesystems.
1228         * kernel changes:
1230         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1231         previous (2.5.x) release can be used with library from this
1232         release
1234         * In fuse_dentry_revalidate() use dget_parent() instead of
1235         dereferencing d_parent, since there's no protection against parent
1236         changing and going away
1238         * Protect nlookup from concurrent updates
1240         * In lookup if a directory alias exists but is unused,
1241         then get rid of it, otherwise return -EBUSY.
1243         * In mkdir if a directory alias exists, return success, but leave
1244         dentry negative.  In reality this could happen if a remote rename
1245         immediately followed the mkdir.
1247         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1248         good inode.  This could happen if several lookups are racing for
1249         the same inode.
1251 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1253         * Fix compilation on 2.6.9.  Report from Troy Ayers
1255 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1257         * Fix Oops in fuse_readpages().  Reported by David Shaw
1259 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1261         * Add support for nanosec times on FreeBSD
1263         * Fix FreeBSD compatibility issues
1265 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1267         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1269         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1271 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1273         * Fixed several compatibility bugs in low level interface.
1274         Reported by Ricardo Correia
1276         * Add workaround for ARM caching bug
1278 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1280         * Rename new utimes() method to more logical utimens()
1282 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1284         * Fuse tried to unlink already unlinked hidden files.  Bug
1285         reported by Milan Svoboda
1287 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1289         * Released 2.6.0-rc1
1291 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1293         * kernel: Fix unlock on close for kernels < 2.6.18
1295         * Add ulockmgr library & server.  This can be used for handling
1296         file locking requests either directly from libfuse or over a
1297         network, etc.  This first version is not optimized and the number
1298         of file descriptors it uses may get out of hand
1300 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1302         * lib: Add interrupt support to high level library, which may be
1303         enabled with the 'intr' mount option.
1305         * When an operation is interrupted the thread handling that
1306         operation will receive SIGUSR1 (or other signal specified with the
1307         'intr_signal=N' option).  The library installs a no-op signal
1308         handler for this signal, unless there's already a handler
1309         installed.
1311         * The filesystem may query interrupt status (regardless of 'intr')
1312         with the fuse_interrupted() function.
1314         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1316 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1318         * lib: Multithreaded loop now allows unlimited number of threads.
1319         This is needed for locking operations which may block
1320         indefinitely.  Also the kernel now doesn't limit the number of
1321         outstanding requests so the library shouldn't do so either.
1323 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1325         * Fix recursive lock bug in interrupt handling
1327         * Add utimes() method to highlevel interface, which supports
1328         setting times with nanosecond resolution
1330 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1332         * kernel: fix page leak if fuse_readpages() failed in it's
1333         initialization.  Bug found and original patch from Alexander
1334         Zarochentsev
1336         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1337         the kernel tree) the statfs method will receive the path within
1338         the filesystem on which the stat(v)fs syscall was called
1340         * fusermount: try to modprobe fuse module if invoked by root and
1341         unable to open device.  This is needed with udev, since the device
1342         node will be created only when the module is inserted, hence
1343         module autoloading won't work.  Reported by Szakacsits Szabolcs
1345 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1347         * fusermount: if selinux is active, restore the original file's
1348         security context in unmount_rename().  Redhat bugzilla id 188561.
1349         Patch from Yves Perrenoud
1351         * Add POSIX file locking operation to high level library
1353         * Initialize context for unlink of hidden files on umount.  Bug
1354         reported by Tim Stoakes
1356 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1358         * Multiple release() calls can race with each other, resulting in
1359         the hidden file being deleted before the last release finishes.
1360         Bug found and patch tested by Mark Huijgen
1362 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1364         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1365         this makes sense on systems using udev.  Reported by Szakacsits
1366         Szabolcs
1368 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1370         * Released 2.6.0-pre3
1372 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1374         * Support in kernel module for file locking and interruption.  The
1375         same functionality is available in official kernels >= 2.6.18
1377 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1379         * Add POSIX file locking support
1381         * Add request interruption
1383 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1385         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1387 2006-06-05  Remy Blank <remy.blank@pobox.com>
1389         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1390         unmounting succeeds even if mount point was relative.
1392 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1394         * lib: fix emergency umount in helper.c when malloc fails.
1395         (The way it was done would end up in a segfault.)
1397 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1399         * lib: adjust threading related compiler flags.
1400         Switch to "-pthread" from "-lpthread" as that's the preferred
1401         one on several platforms. Consulted with Terrence Cole and
1402         Miklos Szeredi
1404 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1406         * lib: search fusermount in installation directory (bindir) as
1407         well as in PATH.
1409 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1411         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1412         Reported by Christian Magnusson
1414 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1416         * lib: make FreeBSD mount routine recognize if kernel features
1417         backgrounded init and if it does, run the mount util in foreground
1418         (similarly to Linux)
1420 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1422         * kernel: fix fput deadlock fix, the lockless solution could lead
1423         to "VFS: busy inodes after umount..."
1425         * kernel: fix race between checking and setting file->private_data
1426         for the device.  Found by Al Viro
1428 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1430         * kernel: remove request pool, instead allocate requests on
1431         demand.  Account the number of background requests, and if they go
1432         over a limit, block the allocation of new requests.
1434         * kernel: fix deadlock if backgrounded request holds the last
1435         reference to the super block
1437         * kernel: don't use fuse_reset_request() during direct I/O
1439 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1441         * lib: Let FreeBSD mount option parsing routine recognize "no"
1442         prefixes for FUSE specific options as well
1444 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1446         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1448 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1450         * API changes:
1452         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1453         user_data parameter
1455         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1456         file descriptor
1458         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1459         destroys the given channel
1461         * fuse_teardown() no longer has a file descriptor parameter
1463         * new exported functions: fuse_session_remove_chan(),
1464         fuse_get_session(), fuse_daemonize()
1466         * fuse_chan_recv() may now return a new channel which will be used
1467         to send the reply
1469 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1471         * Released 2.6.0-pre2
1473 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1475         * Don't unmount if already unmounted.  This fixes a problem seen
1476         in the following situation: Lazy unmount a busy filesystem; Mount
1477         a new one in top; When the first finally unmounts, the second also
1478         unmounts.  Reported by Franco Broi
1480 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1482         * lowlevel lib: use indirect function calls instead of a
1483         switch/case construct.  Besides increased efficiency it helps
1484         maintainability & readability too.  Patch from Florin Malita
1486 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1488         * kernel: replace global spinlock with a per-connection spinlock
1490 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1492         * Fix source compatibility breakage for fuse_unmount().  Report
1493         from Yura Pakhuchiy
1495 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1497         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1499 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1501         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1502         Jeff Dike
1504         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1505         interface to return -errno in case of error.
1507 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1509         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1510         FreeBSD implementation so that it uses libc (sysctl backed) instead
1511         of an embdedded script (kmem backed). Adjust the control flow of
1512         hello_ll so that device doesn't get closed before unmount attempt.
1514 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1516         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1517         implement method.  This is needed on FreeBSD, and nicer on Linux
1518         too.  Highlevel lib already did this.  Reported by Csaba Henk
1520         * Fix negative entry handling.  There was a bug, that negative
1521         lookups with timeouts (nodeid == 0) returned -EIO.
1523 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1525         * Fix race between RELEASE and UNLINK, which might leave
1526         .fuse_hidden* files around
1528 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1530         * fusexmp_fh: implement flush() method and call close() on the
1531         open file descriptor.  This is needed if used on an NFS
1532         filesystem, which buffers data until file is closed.  Franco Broi
1533         spotted the situation when 'cp -p' failed to set the modification
1534         time because of this.
1536 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1538         * Released 2.6.0-pre1
1540 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1542         * libfuse: fix use-after-free bug in interruptred reply_entry().
1543         Patch from John Muir
1545         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1546         ID: 352631.  Found by Stéphane Rosi
1548 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1550         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1551         into a single function fuse_add_direntry().  This cleans up the
1552         interface and makes it possible to do stacking.
1554 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1556         * Fix rare race betweeen abort and release caused by failed iget()
1557         in fuse_create_open().
1559         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1560         own attribute caching.
1562 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1564         * Work around FreeBSD runtime linker "feature" which binds an old
1565         version of a symbol to internal references if the symbol has more
1566         than one version.  This resulted in infinite recursion in
1567         fuse_lowlevel_new_compat25().
1569 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1571         * Refine clock_gettime() querying so that linker options
1572         shall be set as it's appropriate for the target platform.
1574 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1576         * Fix udev rule syntax.  Reported by Nix
1578 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1580         * In some cases udev rule seems to be ineffective when installed
1581         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1583 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1585         * Fix compilation when build directory is different from source
1586         directory.  Reported by Frédéric L. W. Meunier
1588 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1590         * Fix even bigger bug introduced in fix for request_end() on
1591         2006-01-14.  Reported by Gal Rosen
1593 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1595         * highlevel-lib: add 'auto_cache' option.  This caches file data
1596         based on modification time and size
1598 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1600         * Sanitize storage type and help message in mount_bsd.c.  Patch
1601         from Csaba Henk
1603         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1604         FUSE_OPT_KEY_DISCARD
1606         * Add options 'max_readahead', 'sync_read' and 'async_read'
1608         * Kernel ABI version 7.6:
1610         * Negotiate the 'max_readahead' value and 'async_read' flags with
1611         userspace in the INIT method
1613         * Add connection info to ->init() methods to both lowlevel and
1614         highlevel API
1616         * Fall back to synchronous read() behavior if either library or
1617         userspace filesystem is using the old interface version.  This is
1618         needed so non-updated filesystems won't be confused by the
1619         different read() behavior
1621 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1623         * lib: if "fsname=" option was given, pass it to fusermount
1625         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1626         needed by filesystems to implement some argument manipulations
1627         correctly
1629         * fuse_opt: fix memory leak in handling "--" option
1631 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1633         * kernel: fix detection of case when fuse is not configured into
1634         the kernel either as module or built-in
1636         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1637         'template' structure member to 'templ'.  Reported by Takashi Iwai
1639         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1641         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1643 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1645         * Added (again) asynchronous readpages support
1647         * Each connection now shows up under /sys/fs/fuse/connections
1649         * Connection attributes exported to sysfs: 'waiting' number of
1650         waiting requests; 'abort' abort the connection
1652         * Connection may be aborted through either the sysfs interface or
1653         with 'umount -f mountpoint'
1655 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1657         * Released 2.5.0
1659 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1661         * kernel: fix a couple of bugs
1663         * Order of request_end() and fuse_copy_finish() was wrong.
1664         Posthumous note: Franco Broi managed to exploit this, though it
1665         seemed quite impossible
1667         * request_end() used request pointer after decrementing refcount
1669         * Clearing ->connected or ->mounted connection flags could race
1670         with setting other bitfields not protected with a lock
1672 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1674         * kernel: add necessary compile flags for 2.4.X/x86_64.
1675         Report from Sean Ziegeler
1677 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1679         * Released 2.5.0-pre2
1681 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1683         * Applied patch from Csaba Henk, to update mount_bsd to new
1684         fuse_mount() semantics
1686         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1687         Steiner and Don Taber
1689         * fusermount: add 'dirsync' mount option
1691 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1693         * Improved help reporting and added version reporting to library
1695 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1697         * Change working directory to "/" even if running in the
1698         foreground.  Patch from Jonathan Brandmeyer
1700         * Changed lots of functions to use 'struct fuse_args' instead of
1701         separate argc and argv
1703         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1704         fuse_remove_signal_handlers() functions, so that it's now pretty
1705         easy to get all the functionality of fuse_main() with a filesystem
1706         using the lowlevel API.
1708 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1710         * mount.fuse: the 'user' option should be ignored. Report and
1711         solution from Mattd.
1713         * mount.fuse: export PATH in the right place. Report and patch
1714         from Hannes Schweizer
1716 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1718         * Clean up the option parsing interface slightly, by creating an
1719         "argument list" structure, that contains the argument vector and
1720         count
1722 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1724         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1725         in that case
1727         * kernel: simplify request size limiting. INIT only contains
1728         maximum write size, maximum path component size remains fixed at
1729         1024 bytes, and maximum xattr size depends on read buffer.
1731 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1733         * Fix readdir() failure on x86_64, of 32bit programs compiled
1734         without largefile support.  Bug report and help from Anthony
1735         Kolasny
1737         * If lookup returns invalid mode, return -EIO instead of creating
1738         a regular file
1740         * Add current output argument vector to option processing
1741         function
1743 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1745         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1747 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1749         * Released 2.5.0-pre1
1751 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1753         * libfuse: added option parsing interface, defined in
1754         <fuse_opt.h>.
1756 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1758         * Return EIO for file operations (read, write, fsync, flush) on
1759         open files whose inode has become "bad".  Inodes will be marked
1760         "bad" if their type changes.  Bug report by Csaba Henk
1762 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1764         * Use bigger request buffer size.  write() did not work on archs
1765         with > 4k page size, Bug report by Mark Haney
1767         * ABI version 7.5:
1769         * Extend INIT reply with data size limits
1771 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1773         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1774         reported by Vincenzo Ciancia
1776         * Handle exit-by-umount in fuse_read_cmd()
1778 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1780         * Check if '-msoft-float' option is supported by compiler when
1781         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1783         * In multithreaded loop send a TERM signal to the main thread if
1784         one of the other threads exit.  Needed on FreeBSD for a clean exit
1785         on umount.  Should not cause any harm on Linux either
1787 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1789         * Fix bug in 32-bit file handle compatibility
1791 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1793         * Block TERM, INT, HUP and QUIT signals in all but the main
1794         thread.  According to POSIX it's not specified which thread will
1795         receive these signals.
1797         * Kernel changes:
1799         * Check for directory aliasing on mkdir, not just on lookup
1801         * Check for special node ID values in create+open operation
1803         * Sync with -mm: readv, writev, aio_read and aio_write methods
1804         added to file operations
1806         * Cleanups: lookup code, page offset calculation
1808         * ABI stepped to 7.4, changes:
1810         * frsize member added to fuse_kstatfs structure
1812         * added support for negative entry caching: on lowlevel API if
1813         fuse_entry_param::ino is set to zero in reply to a lookup request,
1814         the kernel will cache the dentry for the specified amount of time.
1816         * libfuse: added 'negative_timeout' option: specifies how much
1817         negative entries should be cached.  Default is zero, to be
1818         compatible with prior versions
1820 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1822         * Add detection of mainline FUSE code in running kernel
1824 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1826         * Don't use async cancelation in multithreaded loop.  This makes
1827         it more portable to systems where read() is not async cancel safe.
1828         Report from Andriy Gapon
1830 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1832         * Warn if API version 11 compatibility is requested
1834 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
1836         * More FreeBSD merge
1838         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1839         them, because it corrupts /etc/mtab.  Found by Thomas Biege
1840         CVE-2005-3531
1842         * libfuse: don't use system() to invoke 'fusermount -u ...'
1843         because it breaks mountpoints with spaces in them into multiple
1844         arguments
1846 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
1848         * Merge library part of FreeBSD port.  Patch by Csaba Henk
1850 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
1852         * Use 64bit type for file handle, so the full range supported by
1853         the kernel interface is available to applications
1855 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
1857         * Moved mountpoint argument checking from fuse_parse_cmdline() to
1858         fuse_mount() in preparation to FreeBSD merge.
1860 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
1862         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
1863         Henk.
1865 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
1867         * Make the statfs change backwards compatible.
1869 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
1871         * Change ->statfs() method to use 'struct statvfs' instead of
1872         'struct statfs'.  This makes the API more portable since statvfs()
1873         is defined by POSIX.
1875 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
1877         * Add fgetattr() method, which currently will only be called after
1878         a successful call to a create() method.
1880 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
1882         * Change kernel ABI version to 7.3
1884         * Add ACCESS operation.  This is called from the access() system
1885         call if 'default_permissions' mount option is not given, and is
1886         not called on kernels 2.4.*
1888         * Add atomic CREATE+OPEN operation.  This will only work with
1889         2.6.15 (presumably) or later Linux kernels.
1891         * Add ftruncate() method.  This will only work with 2.6.15
1892         (presumably) or later Linux kernels.
1894         * Fix kernel module compile if kernel source and build directories
1895         differ.  Report and initial patch by John Eastman
1897 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
1899         * lib: optimize buffer reallocation in fill_dir.
1901 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
1903         * Released 2.4.1
1905 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
1907         * libfuse: add debug for write result (by Shaun Jackman) and
1908         warnings for too large read/write result
1910 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
1912         * Spelling fixes, thanks to Ioannis Barkas
1914 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
1916         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
1917         patch
1919 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
1921         * highlevel-lib: init() and destroy() methods didn't have an
1922         initialized fuse_context.  Bug reported by Tim Stoakes
1924 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
1926         * Released 2.4.0
1928 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
1930         * Add documentation to fuse_lowlevel.h
1932         * API cleanups:
1934         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1936         * Move fuse_mount() and fuse_unmount() to fuse_common.h
1938         * Change the return type of fuse_reply_none() from int to void.
1940 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
1942         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
1943         Akshat Aranya.
1945 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
1947         * fusermount: fix error message, when unable to open /dev/fuse.
1948         Report by Balázs Pozsár
1950 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
1952         * UClibc fixes from Christian Magnusson
1954 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
1956         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
1958 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1960         * Released 2.4.0-rc1
1962 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1964         * fusermount: allow user umount in the case when /etc/mtab is a
1965         symlink to /proc/mounts.  Reported by Balázs Pozsár.
1967 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
1969         * Check for special node ID values in lookup and creation
1971 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
1973         * Slight optimization in returning EINVAL error in case of an open
1974         with O_DIRECT flag.
1976 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
1978         * Remove '--enable-auto-modprobe' configure flag.  Module
1979         auto-loading is now handled by the kernel.
1981 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
1983         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1984         Help from Jens M. Noedler.
1986 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
1988         * Add memory cleanup on thread exit
1990 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
1992         * Set umask to zero in fusexmp and fusexmp_fh, so that
1993         files/directories are created with the requested mode.
1995 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
1997         * Don't ignore read error in multithreaded loop
1999 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2001         * Released 2.4.0-pre2
2003 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
2005         * Revert lock and access operations.  Postpone these until 2.5.
2007 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
2009         * Fix compile warning on 2.6.13 and later
2011         * Fix compilation on old kernels
2013 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
2015         * lib: always refresh directory contents after rewinddir() to
2016         conform to SUS.  Bug found by John Muir.
2018 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
2020         * Released 2.4.0-pre1
2022 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
2024         * lib: cleaned up (or messed up, depending on your POV) the low
2025         level library API.  Hopefully this is close to the final form.
2027 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2029         * fusermount: don't allow empty mountpoint argument, which defeats
2030         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2032 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2034         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2035         option is used (Paul Alfille).
2037 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2039         * highlevel-lib: added mount options "attr_timeout" and
2040         "entry_timeout".  These options control the length of time file
2041         attributes and entries (names) are cached.  Both default to 1.0
2042         second.
2044         * kernel: correctly handle zero timeout for attributes and entries
2046 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2048         * Added missing symbols to versionscript (Joshua J. Berry)
2050         * kernel: implement two flags, open can set: 'direct_io' and
2051         'keep_cache'.  These correspond exactly to mount options
2052         'direct_io' and 'kernel_cache', but allow a per-open setting.
2054         * Move 'direct_io' and 'kernel_cache' mount option handling to
2055         userspace.  For both mount options, if the option is given, then
2056         the respective open flag is set, otherwise the open flag is left
2057         unmodified (so the filesystem can set it).
2059         * lib (highlevel): make open method optional
2061 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2063         * kernel: invalidate attributes for read/readdir/readlink
2064         operations
2066         * kernel: detect newer UML kernels
2068 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2070         * Make the installation path of fuse.ko and mount.fuse
2071         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2072         environment variables.  Requirement and help from Csaba Henk.
2074 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2076         * Fix bug, that causes filesystem requests to hang when unique
2077         request counter becomes negative.  This happens after
2078         2,147,483,648 operations, so most people won't care.  Thanks to
2079         Franco Broi for the report and testing.
2081 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2083         * Don't change mtime/ctime/atime to local time on read/write.
2084         Bug reported by Ben Grimm
2086         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2087         Magnusson
2089         * fusermount: use getopt_long() for option parsing.  It allows the
2090         use of '--' to stop argument scanning, so fusermount can now
2091         operate on directories whose names begin with a '-'.  Patch by
2092         Adam Connell
2094 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2096         * fusermount: add '-v', '--version' and '--help' options
2098         * add inode based API
2100 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2102         * lib: don't block signals in worker threads.  Problem noticed by
2103         Usarin Heininga
2105 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2107         * lib: don't allow both 'allow_other' and 'allow_root' options to
2108         be given
2110 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2112         * fusermount: check if mountpoint is empty (only '.' and '..' for
2113         directories, and size = 0 for regular files).  If "nonempty"
2114         option is given, omit this check.  This is useful, so users don't
2115         accidentally hide data (e.g. from backup programs).  Thanks to
2116         Frank van Maarseveen for pointing this out.
2118         * kernel: check if mandatory mount options ('fd', 'rootmode',
2119         'user_id', 'group_id') are all given
2121         * lib: simplify 'readdir_ino' handling
2123         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2125 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2127         * kernel: clean up 'direct_io' code
2129 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2131         * Add 'mount.fuse' written by Petr Klima
2133         * '/dev/fuse' is created by 'make install' if does not yet exist
2135 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2137         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2139 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2141         * Enable the auto-loading of the module via access to the
2142         corresponding device file.  Patch by Takashi Iwai.
2144         * Allow mounting a regular file (over a regular file) for
2145         unprivleged users.
2147         * Do not create temporary device file.  Require "/dev/fuse" to
2148         exist, and be readable/writable by the mounting user.
2150 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2152         * Released 2.3.0
2154 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2156         * Fix serious information leak: if the filesystem returns a short
2157         byte count to a read request, and there are non-zero number of
2158         pages which are not filled at all, these pages will not be zeroed.
2159         Hence the user can read out previous memory contents.  Found by
2160         Sven Tantau.
2162 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2164         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2165         field in struct dirent.  This mount option is ignored if "use_ino"
2166         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2167         non-Linux OS).  Patch by David Shaw.
2169 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2171         * Released 2.3-rc1
2173 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2175         * File save in krusader and other editors doesn't work with sshfs,
2176         because open() is interrupted by a periodic signal, and open()
2177         restarts forever, without any progress.  This could just be fixed
2178         in open(), but the problem is more generic: if signals are
2179         received more often than the filesystem can get the request to
2180         userspace, it will never finish.  This is probably only a
2181         theoretical problem, nevertheless I'm removing the possibility to
2182         interrupt requests with anything other than SIGKILL, even before
2183         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2185 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2187         * libfuse: add "tree_lock" rwlock, that is locked for write in
2188         rename, unlink and rmdir, and locked for read in all other
2189         operations.  This should fix the rename/release race reported by
2190         Valient Gough and others.  The solution is very coarse, a finer
2191         grained locking scheme could be implemented, but it would be much
2192         more complex.  Let's see whether this is good enough.
2194 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2196         * Released 2.3-pre7
2198 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2200         * Better fix for out of order FORGET messages.  Now the
2201         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2202         balance many lookups), so the order no longer matters.  This
2203         changes the kernel ABI slightly, but the library remains backward
2204         compatible.
2206 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2208         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2209         Franco Broi again.  Sorry :)
2211 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2213         * Released 2.3-pre6
2215 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2217         * Make fusermount work with fuse kernel modules not yet supporting
2218         the "group_id" option (added for the purpose of stricter
2219         permission checking).
2221 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2223         * Check for hard-linked directories in lookup.  This could cause
2224         problems in the VFS, which assumes that such objects never exist.
2226         * Make checking of permission for other users more strict.  Now
2227         the same privilege is required for the mount owner as for ptrace
2228         on the process performing the filesystem operation.
2230 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2232         * Released 2.3-pre5
2234 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2236         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2237         is needed on certain architectures.  Report from Chris Kirby
2239         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2240         Reported by David Shaw
2242         * Remove "allow_root" option from kernel module, and implement
2243         it's functionality in the library
2245         * Fix Oops caused by premature release of fuse_conn.  Clean up
2246         related code, to be more readable
2248         * Sendfile should not use page cache if "direct_io" mount option
2249         is given
2251 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2253         * Fix Oops in case of nfs export.  Spotted by David Shaw
2255         * Fix another Oops in case of write over nfs with direct_io turned
2256         on.  Again spotted by David Shaw
2258 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2260         * Released 2.3-pre4
2262 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2264         * lib: finalized new readdir() interface, which now supersedes the
2265         getdir() method.
2267 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2269         * Released 2.3-pre3
2271 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2273         * Implement backward compatibility with version 5 kernel ABI
2275 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2277         * Released 2.3-pre2
2279 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2281         * kernel: fix dirent offset handling
2283         * lib: add readdir and releasedir methods
2285         * lib: use fh field of fuse_file_info in opendir, readdir,
2286         releasedir and fsyncdir methods
2288         * lib: check kernel API version and bail out of it's old.  This
2289         will be properly fixed in the next release
2291 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2293         * Released 2.3-pre1
2295 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2297         * kernel API: add padding to structures, so 64bit and 32bit
2298         compiler will return the same size
2300         * kernel API: add offset field to fuse_dirent.  This will allow
2301         more sophisticated readdir interface for userspace
2303         * kernel API: change major number to 6
2305         * kernel: fix warnings on 64bit archs
2307         * kernel: in case of API version mismatch, return ECONNREFUSED
2309 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2311         * kernel: trivial cleanups
2313 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2315         * Add fsyncdir() operation
2317 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2319         * kernel: add locking to background list (fixes previous fix)
2321 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2323         * kernel: fix bug which could cause leave busy inodes after
2324         unmount, and Oops.
2326 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2328         * examples: add -lpthread to link flags to work around valgrind
2329         quirk
2331         * lib: don't exit threads, so cancelation doesn't cause segfault
2333 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2335         * kernel: fix nasty bug which could cause an Oops under certain
2336         situations.  Found by Magnus Johansson
2338 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2340         * libfuse: added opendir() method.  This can be used in case
2341         permission checking in getdir() is too late.  Thanks to Usarin
2342         Heininga for pointing out this deficiency
2344         * libfuse: added init() and destroy() methods to fuse_operations
2346         * kernel: llseek() method for files and directories made explicit
2348         * kernel: fixed inode leak in NFS export in case of nodeid
2349         wrapping
2351 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2353         * libfuse: clean up some unitialized memory found with valgrind
2355         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2356         explicitly linked libpthread for applications
2358 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2360         * fusermount: set umask, otherwise /etc/mtab will have
2361         unpredictable permission.  Spotted by Jindrich Kolorenc
2363         * fusermount: set owner and group of /etc/mtab to original values
2364         on unmount
2366         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2368 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2370         * Cleaned up directory reading (temporary file is not used)
2372 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2374         * Released 2.2
2376 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2378         * Fix possible race when operation is interrupted
2380 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2382         * Fix compilation on 2.6.7
2384 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2386         * Released 2.2-pre6
2388 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2390         * Fix bug in link() operation which caused the wrong path to be
2391         passed as the first argument.  Found by Anton Altaparmakov
2393 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2395         * LIB: fix double reply in readdir operation
2397         * fusermount: fix uid checking bug.  Patch by Adam Connell
2399         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2400         Patch by Keshava Gowda
2402 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2404         * KERNEL: provide correct llseek semantics for fuse device (fixes
2405         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2407 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2409         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2411 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2413         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2414         and RELEASEDIR.  This ends the ugly hack of passing a file
2415         descriptor to the kernel, and actually makes the code simpler.
2417 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2419         * Released 2.2-pre4
2421 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2423         * fusermount: remove capability setting, which was the cause of
2424         problems for some users.  It seems that FS related capabilities
2425         are removed by setfsuid(), so this isn't even needed.
2427 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2429         * fix compilation on 2.4 kernels (reported by Valient Gough)
2431         * fix failure to unmount bug (found by David Shaw)
2433         * fusermount: improve parsing of /etc/fuse.conf
2435 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2437         * Remove 'mount_max' and 'user_allow_other' module options.  These
2438         are now checked by fusermount, and can be set in /etc/fuse.conf
2440         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2442 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2444         * KERNEL: fix possible inode allocation problem, where
2445         sizeof(struct inode) is not aligned (found by Mike Waychison)
2447         * KERNEL: use new follow_link/put_link methods
2449         * KERNEL: cosmetic fixes
2451 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2453         * Released 2.2-pre3
2455 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2457         * Add missing code that was accidently left out
2459 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2461         * Released 2.2-pre2
2463 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2465         * Change "uid" mount option to "user_id" to avoid confusion with a
2466         mount option "uid" commonly used by many filesystems
2468 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2470         * Released 2.2-pre1
2472 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2474         * If FUSE is configured in the kernel, don't build it by default
2476 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2478         * Compile fix by Christian Magnusson
2480 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2482         * Fix compilation for 2.6.{0-5} kernels
2484 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2486         * KERNEL: if request is interrupted, still keep reference to used
2487         inode(s) and file, so that FORGET and RELEASE are not sent until
2488         userspace finishes the request.
2490         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2491         request with the same information, which is more flexible,
2492         simpler, works on embedded systems.
2494 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2496         * KERNEL ABI: update interface to make it independent of type
2497         sizes.  This will help on 64 bit architectures which can run
2498         legacy 32 bit applications.
2500         * KERNEL ABI: add "len" field to request headers.  This will allow
2501         sending/receiving requests in multiple chunks.
2503         * KERNEL: handle file type change more intelligently
2505         * LIB: "-o debug" option should disable backgrounding (fix by
2506         Fabien Reygrobellet)
2508 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2510         * KERNEL: invalidate dentry/attributes if interrupted request
2511         could leave filesystem in an unknown state.
2513 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2515         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2516         These will cause some regressions, but stability is considered
2517         more important.  If any of these features turns out to be
2518         important, it can be readded with the deadlock problems addressed.
2520         * Make all requests interruptible (only with SIGKILL currently).
2521         This can be used to break any deadlock produced by the userspace
2522         filesystem accessing it's own exported files.  The RELEASE request
2523         is special, because if it's interrupted before sending it to
2524         userspace it is still sent, but the reply is not awaited.
2526         * If request is interrupted before being sent to userspace, and if
2527         it hasn't yet got any side effects, it is always restarted,
2528         regardless of the SA_RESTART flag.  This makes these interruptions
2529         transparent to the process.
2531         * Remove shared-writable mmap support, which was prone to an
2532         out-of-memory deadlock situation
2534         * Remove INVALIDATE userspace initiated request
2536         * Make readpages() synchronous.  Asynchronous requests are
2537         deadlock prone, since they cannot be interrupted.
2539         * Add readv/writev support to fuse device operations
2541         * Remove some printks, which userspace FS can use for a DoS
2542         against syslog
2544         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2545         fusermount instead
2547         * LIB: improve compatibility with a fuse.h header installed in
2548         ${prefix}/include which in turn includes the real header.
2550         * LIB: improve compatibility by defining fuse_main() (which is now
2551         not used), so old configure scripts find it.
2553 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2555         * When mounting on a subdirectory of / don't duplicate slashes at
2556         the beggining of path (spotted by David Shaw)
2558 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2560         * Fix bug causing garbage in mount options (spotted by David Shaw)
2562 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2564         * Add 'writepage' flag to 'fuse_file_info'.
2566         * More comments in fuse.h
2568         * Get rid of double underscores
2570 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2572         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2574         * helper.c: add -ho option, which only displays the options not
2575         the usage header.  This can be used by filesystems which have
2576         their own options.
2578 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2580         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2581         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2582         including the fuse header
2584         * Add binary compatibility to 2.1 version of library with symbol
2585         versioning
2587 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2589         * Released 2.1
2591 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2593         * kernel: clean up writing functions
2595         * kernel: no allocation on write in direct_io mode
2597         * move linux/fuse.h to fuse_kernel.h
2599 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2601         * kernel: clean up reading functions
2603 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2605         * kernel: make readpage() uninterruptible
2607         * kernel: check readonly filesystem flag in fuse_permission
2609         * lib: don't die if version file not found and new style device
2610         exists
2612         * lib: add '-r' option, which is short for '-o ro'
2614         * fusermount: simplify device opening
2616         * kernel: when direct_io is turend on, copy data directly to
2617         destination without itermediate buffer.  More efficient and safer,
2618         since no allocation is done.
2620         * fusermount: fix warning if fuse module is not loaded
2622         * kernel: use /dev/fuse on 2.4 too
2624 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2626         * libfuse API change: open, read, write, flush, fsync and release
2627         are passed a 'struct fuse_file_info' pointer containing the open
2628         flags (open and release), and the file handle.  Verion changed to
2629         3.0.
2631 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2633         * More cleanups in the kernel
2635         * The 10,229 charater device number has been assigned for FUSE
2637         * Version file checking fix (reported by Christian Magnusson)
2639         * fusermount: opening the fuse device now doesn't need /sys.
2641         * Optimize reading by controlling the maximum readahead based on
2642         the 'max_read' mount option
2644         * fixes for UCLIBC (Christian Magnusson)
2646 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2648         * Cleaned up kernel in preparation for merge into mainline:
2650         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2652         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2654         * __user annotations for sparse
2656         * allocate individual pages instead of kmalloc in fuse_readdir,
2657         fuse_read and fuse_write.
2659         * Fix NFS export in case "use_ino" mount option is given
2661         * Make libfuse and fusermount compatible with future versions
2663         * fusermount: properly add mount options to /etc/mtab
2665 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2667         * fusermount: do not resolve last component of mountpoint on if it
2668         is '.' or '..'.  This new path resolvation is now done on mount as
2669         well as unmount.  This enables relative paths to work on unmount.
2671         * fusermount: parse common mount options like "ro", "rw", etc...
2673         * Allow module params to be changed through sysfs
2675 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2677         * Released 2.1-pre1
2679 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2681         * Fix bug in fuse_readpages() causing Oops in certain situations.
2682         Bug found by Vincenzo Ciancia.
2684         * Fix compilation with kernels versions > 2.6.9.
2686 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2688         * Check kernel interface version in fusermount to prevent
2689         strangeness in case of mismatch.
2691         * No need to allocate fuse_conn until actual mount happens
2693         * Fix potential race between umount and fuse_invalidate
2695         * Check superblock of proc file in addition to inode number
2697         * Fix race between request_send_noreply() and fuse_dev_release()
2699 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2701         * Separate configure for the kernel directory
2703         * Don't allow write to return more than 'count'
2705         * Extend kernel interface for future use
2707 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2709         * Fix 'makeconf.sh' to use autoreconf if available
2711 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2713         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2714         compatibility with earlier versions.  To compile earier versions
2715         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2716         Do not use the "use_ino" mount flag with filesystems compiled with
2717         FUSE_DIRFIL_COMPAT.
2719         * Add pkg-config support.  To compile a FUSE based filesystem you
2720         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2721         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2722         usually needs to be set to "/usr/local/lib/pkgconfig".
2724         * fuse.h is now installed in ${prefix}/include/fuse/
2726 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2728         * Added "use_ino" mount option.  This enables the filesystems to
2729         set the st_ino field on files
2731 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2733         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2734         by Jeremy Smith)
2736         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2738         * Clear the 'exited' flag when mail loop is finished
2740 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2742         * Make xattr functions work under 2.6 (bug found by Vincenzo
2743         Ciancia)
2745 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2747         * Reset request in fuse_flush() (bugreport by David Shaw)
2749 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2751         * fuse_main() now does not exit on error, rather it returns an
2752         error code
2754         * Exported __fuse_setup() and __fuse_teardown() functions, which
2755         make it easier to implement a custom event loop.
2757         * Use daemon() call to background the filesystem after mounting.
2758         This function closes the standard input, output and error and
2759         changes the current working directory to "/".
2761 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2763         * Released 1.9
2765 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2767         * Don't allow fuse_flush() to be interrupted (bug found by David
2768         Shaw)
2770 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2772         * Add PID to fuse_context.  Patch by Steven James
2774         * Change file handle type to 'unsigned long' in kernel interface
2776 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2778         * A slight API change: fuse_get_context() doesn't need the "fuse"
2779         pointer, but the returned context contains it instead.  The
2780         fuse_get() function is not needed anymore, so it's removed.
2782         * Fix mounting and umounting FUSE filesystem under another FUSE
2783         filesystem by non-root (bug spotted by Valient Gough)
2785 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2787         * Fix deadlock in case of memory allocation failure.  Patch by
2788         Christian Magnusson
2790 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2792         * Check memory allocation failures in libfuse
2794 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2796         * Check temporary file creation failure in do_getdir().  Bug
2797         spotted by Terje Oseberg
2799 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2801         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2803         * Make requests non-interruptible so race with FORGET is avoided.
2804         This is only a temporary solution
2806         * Support compiling FUSE kernel module on 2.4.x UML kernels
2808 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2810         * Fix bug in case two FORGETs for the same node are executed in
2811         the wrong order.  Bug spotted and endured for months by Franco
2812         Broi, and logfile for solution provided by Terje Oseberg
2814 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2816         * Add -D_REENTRANT to the compile flags
2818         * Add documentation of fuse internals by Terje Oseberg
2820 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2822         * Change release method to be non-interruptible.  Fixes bug
2823         causing missing release() call when program which has opened files
2824         is killed (reported by Franco Broi and David Shaw)
2826 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2828         * Add fuse_invalidate() to library API
2830 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2832         * Check permissions in setattr if 'default_permissions' flag is
2833         set.  Bug spotted by Damjan Lango
2835 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
2837         * 'large_read' mount option removed for 2.6 kernels, since the
2838         default (dynamic read size) is better
2840         * Extend kernel API with file handles.  A file handle is returned
2841         by open, and passed to read, write, flush, fsync and release.
2842         This is currently only used for debug output in the library.
2844         * Security changes:
2846         * Change the current directory to the mountpoint before checking
2847         the permissions and mount filesystem on "."
2849         * By default don't modprobe the fuse module for non-root.  The old
2850         behavior can be restored with the '--enable-auto-modprobe' flag of
2851         ./configure
2853         * By default don't allow shared writable mappings for non-root.
2854         The old behavior can be restored with the 'user_mmap=1' module
2855         parameter
2857 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
2859         * Clean up mount option passing to fusermount and to fuse_new()
2860         BEWARE: this changes the userspace API slightly, and the command
2861         line usage of programs using fuse_main()
2863 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
2865         * Optimize reading under 2.6 kernels by issuing multiple page
2866         asynchronous read requests
2868 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
2870         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2872 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
2874         * Separate directory entry and inode attribute validity timer
2876         * New write semaphore to stop page writeback during truncate
2878         * Fsync now waits for all writes to complete before sending the
2879         request
2881         * Optimization: if a page is completely written by
2882         fuse_commit_write(), clear the dirty flag and set the uptodate
2883         flag for that page
2885         * Some memory cleanup at exit
2887 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
2889         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2890         disable the "hide if open" behavior of unlink/rename.
2892         * If temporary buffer allocation fails in raw read, fall back to a
2893         smaller buffer
2895 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
2897         * Fix bug in do_open() in libfuse: open count was incremented
2898         after the reply is sent so it could race with unlink/forget and
2899         cause an abort.
2901 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
2903         * When performing create or remove operation, refresh the parent's
2904         attributes on next revalidate, as i_nlink (and maybe size/time)
2905         could be inacurate.
2907         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2908         pages (2.6 only)
2910         * Set set_page_dirty address space operation (2.6 only)
2912 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
2914         * Minor fix in read:  print debug info even if read size is zero
2916 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
2918         * Fix race between truncate and writepage (fsx-linux now runs
2919         without error)
2921 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
2923         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2924         by Mattias Wadman)
2926         * Added option for direct read/write (-r)
2928         * Fix revalidate time setting for newly created inodes
2930         * Remove uid==0 check for '-x' option in fusermount (kernel checks
2931         this)
2933         * fuse_main() only installs handlers for signals (out of INT, HUP,
2934         TERM, PIPE), for which no handler has yet been installed
2936         * Add module option 'user_allow_other' which if set to non-zero
2937         will allow non root user to specify the 'allow_other' mount option
2938         ('-x' option of fusermount)
2940         * Fix deadlock between page writeback completion and truncate
2941         (bug found by Valient Gough with the fsx-linux utility)
2943 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
2945         * Change passing fuse include dir to 2.6 kernel make system more
2946         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2947         kernel)
2949 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
2951         * Acquire inode->i_sem before open and release methods to prevent
2952         concurrent rename or unlink operations.
2954         * Make __fuse_read_cmd() read only one command.  This allows
2955         multiplexing the fuse file descriptor with other event sources
2956         using select() or poll() (patch by Jeff Harris)
2958         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2960 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
2962         * Fix file offset wrap around at 4G when doing large reads
2964 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2966         * Fix memory leak in open (Valient Gough)
2968 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2970         * Add "close after delete" support to libfuse (patch by Valient
2971         Gough)
2973         * Cancel all worker threads before exit in multithreaded mode
2975 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
2977         * Fix locking bugs
2979         * Don't send reply to RELEASE
2981         * Work with newer libtool (1.5a)
2983         * Check for st_atim member of struct stat
2985 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
2987         * No request allocation needed on inode and file release
2989 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
2991         * Fix possible inode leak in userspace in case of unfinished
2992         lookup/mknod/mkdir/symlink/link operation.
2994 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
2996         * Fix some races and cleanups in fuse_read_super()
2998 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
3000         * Requests are allocated at open time
3002 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
3004         * Build shared library as well as static (using libtool)
3006         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
3007         there has not been a release with the previous minor number, and I
3008         hope nobody is using it for anything.
3010         * Change fuse_main(), so that default behavior is to go into
3011         background if mount is successful.  '-f' and '-d' options disable
3012         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
3013         newbie complaint.
3015         * Cache ENOSYS (function not implemented) errors on *xattr, flush
3016         and fsync
3018         * Don't call getdir method from open() only from first readdir().
3019         Open is sometimes just used to store the current directory
3020         (e.g. find)
3022 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
3024         * Added flush() call
3026 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3028         * Extended attributes support for 2.4 (patch by Cody Pisto)
3030 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3032         * Fixed parser with modversions (Mattias Wadman)
3034 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3036         * Added mount option parser to 2.4 build
3038 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3040         * Replaced binary mount data with text options
3042         * Show FUSE specific mount options in /proc/mounts
3044         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3046 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3048         * Check some limits so userspace won't get too big requests
3050 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3052         * Kill compile warning
3054         * Upgraded user-mount patch for 2.6.5
3056 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3058         * Add detection of user-mode-linux to configure
3060 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3062         * fixed zero size case for getxattr and listxattr
3064 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3066         * new fusermount flag '-z': lazy unmount, default is not lazy
3068         * Extended attributes operations added (getxattr, setxattr,
3069         listxattr, removexattr)
3071 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3073         * If filesystem doesn't define a statfs operation, then an
3074         all-zero default statfs is returned instead of ENOSYS
3076 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3078         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3080 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3082         * Fix for uClinux (Christian Magnusson)
3084 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3086         * fuse_main() adds "-n progname" to the fusermount command line
3088         * More kernel interface changes:
3090         * Lookup/getattr return cache timeout values
3092 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3094         * Clean up option parsing in fuse_main()
3096         * Added fuse_get() function which returns the fuse object created
3097         by fuse_main()
3099 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3101         * removed old way of mounting (fusermount mountpoint program)
3103         * more kernel interface changes:
3105         * added nanosecond precision to file times
3107         * removed interface version from mount data
3109         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3111 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3113         * statfs library API changed to match other methods.  Since this
3114           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3116         * kernel interface changes follow:
3118         * statfs changed to 64 bits, added 'bavail' field
3120         * add generation number to lookup result
3122         * optimized mknod/mkdir/symlink/link (no separate lookup is
3123         needed)
3125         * rdev size increased to 32 bits for mknod
3127         * kernel interface version changed to 3.1
3129 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3131         * user-mount upgraded for 2.6.3 kernel
3133 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3135         * Added user-mount.2.6.2-rc3.patch
3137         * Add FS_SAFE flag to fuse filesystem
3139         * fusermount should allow (un)mounting for non-root even if not
3140         suid-root
3142 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3144         * Remove MS_PERMISSION mount flag (that means something else now)
3146 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3148         * Added check for i_size_read/write functions to configure.in
3149         (patch by Valient Gough)
3151 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3153         * Fixed writing >= 2G files
3155         * Check file size on open (with generic_file_open())
3157         * Readpage calls flush_dcache_page() after storing data
3159         * Use i_size_read/write for accessing inode->i_size
3161         * Make loopback mount of a fuse file work
3163 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3165         * Released 1.1
3167 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3169         * Properly check if the inode exists in fuse_invalidate
3171 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3173         * Added -q option for fusermount
3175         * fuse_unmount() now uses -q option of fusermount, so no error is
3176         printed if the cause of the program exit is that the filesystem
3177         has already been unmounted
3179         * Fix i_nlink correctness after rmdir/unlink
3181 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3183         * Released 1.1-pre2
3185 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3187         * Fix typo (thanks Marcos Dione)
3189         * Compile fixes for 2.4 kernels
3191 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3193         * Fix CONFIG_MODVERSIONS compile on 2.6
3195 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3197         * Write all pending data before a RELEASE operation
3199         * Suppress 'Bad file descriptor' warning on exit
3201         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3202         get confused with '-d' of fuse_main() (sorry about this change)
3204         * New fusermount option '-l' which enables big reads.  Big reads
3205         are now disabled by default.
3207         * fuse_main() can accept fusermount arguments after a '--'
3209 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3211         * Support for exporting filesystem over NFS (see README.NFS)
3213 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3215         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3216         much more nicely in low-memory situations
3218         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3219         (Note: the mknod method does not yet use 32bit device number)
3221 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3223         * Code cleanups
3225 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3227         * Released 1.1-pre1
3229 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3231         * Integrated 2.6 kernel support patch by Michael Grigoriev
3233         * Improvements and cleanups for 2.6 kernels
3235 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3237         * Added -d option to fusermount
3239 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3241         * Added major+minor version to library API, and minor version to
3242           kernel API
3244 2003-12-13  David McNab <david@rebirthing.co.nz>
3246         * Implemented fsync support in examples/example.py
3248         * Implemented 'fsync' and 'statfs' methods in python
3249           interface
3251 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3253         * Make it compile on 2.4.19.
3255         * Add fsync operation (write file failed on xemacs & vi)
3257 2003-12-12  David McNab <david@rebirthing.co.nz>
3259         * Added distutils support to the python module, as per standard
3260           python development practice
3262 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3264         * Add file locking for mount/unmount (based on patch by Valient
3265         Gough)
3267 2003-12-11  David McNab <david@rebirthing.co.nz>
3269         * Python filesystem - was broken with python2.3, now fixed:
3270            - changed PyTuple_* calls to PySequence_*, because os.lstat
3271              is no longer returning a pure tuple
3272            - changed PyInt_Check() calls to also call PyLong_Check,
3273              to cover for cases (eg os.lstat) where longs are returned
3274            - Added support for file 'release' handling, which IMO is
3275              essential since this signals to a FS that writes to a file
3276              are complete (and therefore the file can now be disposed of
3277              meaningfully at the python filesystem's discretion)
3278            - Added '__init__' handler to base Fuse class, which allows
3279              your Python class to know the mountpoint and mount args,
3280              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3282         * General:
3283            - added 'mount.fuse' script (in util/ dir), which is meant to be
3284              symlinked from /sbin, and which allows FUSE filesystems to
3285              be mounted with the 'mount' command, and listed in fstab;
3286              also, mount arguments get passed to your filesystem
3289 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3291         * Fix kernel version detection (again).  Bugreport by Peter Levart
3293 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3295         * Applied read combining patch by Michael Grigoriev (tested by
3296         Valient Gough and Vincent Wagelaar)
3298 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3300         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3301         #766443)
3303 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3305         * Error code fixes in kernel module
3307 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3309         * kernel version detection fix
3311         * fusermount now uses "lazy" umount option
3313         * fusermount can use modprobe with module-init-tools
3315 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3317         * Integrated caching patch by Michael Grigoriev
3319         * Added "Filesystems" file with descriptions of projects using
3320         FUSE
3322         * Added patch by Michael Grigoriev to allow compliation of FUSE
3323         kernel module for 2.6 kernels
3325 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3327         * And another spec-file fix by Achim Settelmeier
3329 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3331         * Spec-file fix by Achim Settelmeier
3333 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3335         * Fix umount oops (found by Samuli Kärkkäinen)
3337 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3339         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3341 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3343         * Updated fuse.spec file (Achim Settelmeier)
3345 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3347         * Version 1.0 released
3349 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3351         * SuSE compilation fix by Juan-Mariano de Goyeneche
3353 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3355         * The release() VFS call is now exported to the FUSE interface
3357 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3359         * 64 bit file offset fixes in the fuse kernel module
3361         * Added function 'fuse_exit()' which can be used to exit the main
3362         loop
3364 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3366         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3367         an incompatible interface change.
3369 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3371         * Portablility fix (bug reported by C. Chris Erway)
3373 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3375         * Use Mark Glines' fd passing method for default operation instead
3376         of old reexec
3378 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3380         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3382 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3384         * fix incompatiblity with Red Hat kernels, with help from Nathan
3385         Thompson-Amato.
3387 2002-04-18  Mark Glines <mark@glines.org>
3389         * added an alternative to fuse_mount(), called
3390       fuse_mount_ioslave(), which does not need to reexec the
3391       FUSE program.
3392         * added a small helper util needed by fuse_mount_ioslave().
3394 2002-03-16  Mark Glines <mark@glines.org>
3396         * use struct fuse_statfs everywhere possible to avoid problems
3397       with the headerfiles changing struct statfs member sizes
3399 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3401         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3403 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3405         * RPM support by Achim Settelmeier
3407 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3409         * Version 0.95 released
3411 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3413         * Revaidate all path components not just the last, this means a
3414         very small performance penalty for being more up-to-date.
3416 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3418         * Update and fix python interface
3420 2002-01-07  Mark Glines <mark@glines.org>
3422         * Added statfs() support to kernel, lib, examples, and perl!
3424 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3426         * Better cross compilation support
3428         * Ported to Compaq IPAQ
3430 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3432         * Added function fuse_get_context() to library API (inspired by
3433         patch from Matt Ryan)
3435         * Added flags to fusermount and to kernel interface to control
3436         permission checking
3438         * Integrated fuse_set_operations() into fuse_new()
3440 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3442         * Applied header protection + extern "C" patch by Roland
3443         Bauerschmidt
3445 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3447         * Added perl bindings by Mark Glines
3449 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3451         * Cleaned up way of mounting simple filesystems.
3453         * fuse_main() helper function added
3455 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3457         * Optimized read/write operations, so that minimal copying of data
3458         is done
3460 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3462         * Python bindings by Jeff Epler added
3464 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3466         * Fixed vfsmount reference leak in fuse_follow_link
3468         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3469         userspace is ignored
3471 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3473         * Started ChangeLog