Revert "Add mmap() and munmap() methods to low level API"
[fuse.git] / ChangeLog
blob00cd46e5c112009c351b82e168207450232707b7
1 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
3         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
5 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
7         * Remove unnecessary mutex unlock at the end of multithreaded
8         event loop.
10 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
12         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
14         * Don't unhash name in FORGET.  This resulted in ENOENT being
15         returned for unlinked but still open files if the kernel sent a
16         FORGET request for the parent directory.
18         * Free request in fuse_reply_data().
20 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
22         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
23         Dreyfus
25         * Check for availability of utimensat() function.  Patch by
26         Emmanuel Dreyfus
28 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
30         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
31         file or directory is deleted.  Patch by John Muir
33 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
35         * Update retrieve_reply() method
37 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
39         * Low level API: lock argument of fuse_reply_lock should have a
40         'const' qualifier.  Reported by Shachar Sharon
42         * Add support for ioctl on directories.  Reported by Antonio SJ
43         Musumeci
45 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
47         * Reply to request with ENOMEM in case of failure to allocate
48         request structure.  Otherwise the task issuing the request will
49         just freeze up until the filesystem daemon is killed.  Reported by
50         Stephan Kulow
52 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
54         * Replace daemon() function with fork().  Patch by Anatol Pomozov
56 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
58         * If configured with --disable-mtab then don't call mount(8) from
59         libfuse to update the mtab.  Reported by: James Sierp
61 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
63         * Use LRU list for cleaning up the cache if the "remember=T"
64         option was given.  Patch by therealneworld@gmail.com
66 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
68         * Add ->flock() operation to low and high level interfaces.  This
69         fixes problems with emulating flock() with POSIX locking.
70         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
71         filesystems don't need to implement this, as the kernel takes care
72         of file locking.  The only reason to implement locking operations
73         is for network filesystems which want file locking to work between
74         clients.
76 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
78         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
79         not follow symlinks as other layers do that already.
81 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
83         * Add "remember" option.  This works similar to "noforget" except
84         that eventually the node will be allowed to expire from the cache.
85         Patch by therealneworld@gmail.com
87 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
89         * Check if splice/vmsplice are supported
91 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
93         * Remove -lrt -ldl from fuse.pc for dynamic linking since
94         libfuse.so is already linked with these libraries.  Reported by:
95         Nikolaus Rath
97 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
99         * Cleaner build output.  Patch by Reuben Hawkins
101 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
103         * Disable splice by default, add "splice_read", "splice_write" and
104         "splice_move" options.  Keep the "no_splice_*" variants, which can
105         disable splice even if the filesystem explicitly enables it.
107 2011-04-15  Max Krasnyansky <maxk@kernel.org>
108         * Added support for "auto_unmount" option which unmounts the
109         filesystem automatically on process exit (or crash).
111 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
113         * Patches by Laszlo Papp fixing various issues found by the
114         Coverity checker
116 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
118         * In case of failure to add to /etc/mtab don't umount.  Reported
119         by Marc Deslauriers
121 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
123         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
124         worker threads.  The pause() was added in 2.2.1 to prevent
125         segfault on pthread_cancel() on an exited, detached thread.  Now
126         worker threads are not detached and pthread_cancel() should work
127         fine even after the thread exited.  Reported by Boris Protopopov
129 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
131         * fusermount: chdir to / before performing mount/umount
133         * fusermount: only allow mount and umount if util-linux supports
134         --no-canonicalize
136 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
138         * Highlevel lib: allow hash tables to shrink
140         * Highlevel lib: add slab allocation for node cache.  This will
141         allow the memory used by the filesystem to grow and shrink
142         depending on how many inodes are currently cached.
144 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
146         * Highlevel lib: use dynamically resized hash table for looking up
147         by name and node ID.
149 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
151         * Allow batching of forget requests.  This allows forget requests
152         to be processed faster and doesn't require a modification to fuse
153         filesystems.  Reported by Terje Malmedal
155         * Add ->forget_multi() operation to the lowlevel API.  The
156         filesystem may implement this to process multiple forget requests
157         in one call
159         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
160         for 32bit vs. 64bit userspace
162 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
164         * Add new write_buf() method to the highlevel API.  Similarly to
165         the lowlevel write_buf() method, this allows implementing zero
166         copy writes.
168         * Add a new read_buf() method to the highlevel API.  This allows
169         returning a generic buffer from the read method, which in turn
170         allows zero copy reads.
172         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
173         methods.  Leave the ->read() and ->write() implementations for
174         reference, even though they are not necessary.
176 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
178         * Fix check for read-only fs in mtab update
180         * Open /dev/null for write instead of read for redirecting stdout
181         and stderr
183         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
184         version 2.18 or later), and umount(2) supports the
185         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
186         "fusermount -u" will call the umount(2) system call and use
187         "umount --fake ..." to update /etc/mtab
189         * Added --disable-legacy-umount option to configure.  This
190         disables the runtime checking of umount(8) version.  When built
191         with this option then "fusermount -u" will fail if umount(8)
192         doesn't support the --fake and --no-canonicalize options.
194         * Fix fuse_buf_copy() if already at the end of the buffers
196         * Add new ->write_buf() method to low level interface.  This
197         allows passig a generic buffer, either containing a memory buffer
198         or a file descriptor.  This allows implementing zero copy writes.
200         * Add fuse_session_receive_buf() and fuse_session_process_buf()
201         which may be used in event loop implementations to replace
202         fuse_chan_recv() and fuse_session_process() respectively.
204         * Remove unnecessary restoring of current working directory in
205         "fusermount -u"
207         * Add ctx->pid to debug output
209         * Fix st_nlink value in high level lib if file is unlinked but
210         still open
212         * libfuse: add store request.  Request data to be stored in the
213         kernel buffers for a given inode.
215         * libfuse: add retrieve request.  Retrieve data stored in the
216         kernel buffers for a given inode.
218 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
220         * Use LTLIBICONV when linking libfuse.  This fixes building against
221         uclibc + libiconv.  Patch by Natanael Copa
223 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
225         * Add missing argument check in ulockmgr.c to prevent calling
226         ulockmgr_server with illegal arguments. This would cause an ever
227         growing list of ulockmgr_server processes with an endless list of
228         open files which finally exceeds the open file handle limit.
229         Patch by Markus Ammer
231 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
233         * Fix ambiguous symbol version for fuse_chan_new.
234         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
235         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
237 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
239         * Fix option escaping for fusermount.  If the "fsname=" option
240         contained a comma then the option parser in fusermount was
241         confused (Novell bugzilla #641480).  Fix by escaping commas when
242         passing them over to fusermount.  Reported by Jan Engelhardt
244 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
246         * Add NetBSD support.  Patch from Emmanuel Dreyfus
248 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
250         * libfuse: add buffer interface.  Add a generic buffer interface
251         for use with I/O.  Buffer vectors are supplied and each buffer in
252         the vector may be a memory pointer or a file descriptor.
254         * The fuse_reply_fd() interface is converted to using buffers.
256 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
258         * Make the number of max background requests and congestion
259         threshold tunable.  New options are "max_background" and
260         "congestion_threshold".  Only effective on linux kernel versions
261         2.6.32 or greater.  Patch by Csaba Henk
263 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
265         * Add fuse_reply_fd() reply function to the low level interface.
266         On linux version 2.6.35 or greater this will use splice() to move
267         data directly from a file descriptor to the fuse device without
268         needing to go though a userspace buffer.  With the
269         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
270         directly into the filesystem's cache.  On earlier kernels it will
271         fall back to an intermediate buffer.  The options
272         "no_splice_write" and "no_splice_move" can be used to disable
273         splicing and moving respectively.
275 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
277         * Fix out-of-source build.  Patch by Jörg Faschingbauer
279         * Add a "nopath" option and flag, indicating that path argument
280         need not be calculated for the following operations: read, write,
281         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
282         fgetattr, lock, ioctl and poll.
284 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
286         * Remove "chmod root" from install of fusermount.  Reported by
287         Lucas C. Villa Real
289 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
291         * Released 2.8.4
293 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
295         * Fix checking for symlinks in umount from /tmp.  Reported by Al
296         Viro
298         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
300 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
302         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
303         Bruylants
305 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
307         * Fix stack alignment for clone()
309 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
311         * Released 2.8.3
313 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
315         * Using "--no-canonicalize" with umount(8) conflicts with the race
316         fix, sinceit assumes the supplied path is absolute, while the race
317         fix relies on the path being relative to the current directory.
318         Reported by Tom Rindborg
320 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
322         * Released 2.8.2
324 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
326         * Fix race if two "fusermount -u" instances are run in parallel.
327         Reported by Dan Rosenberg
329         * Make sure that the path to be unmounted doesn't refer to a
330         symlink
332 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
334         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
336 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
338         * Use '--no-canonicalize' option of mount(8) (available in
339         util-linux-ng version 2.17 or greater) to avoid calling
340         readling(2) on the newly mounted filesystem before the mount
341         procedure is finished.  This has caused a deadlock if "audit" was
342         enabled in the kernel.  Also use '--no-canonicalize' for umount to
343         avoid touching the mounted filesystem.
345 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
347         * Released 2.8.1
349 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
351         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
353 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
355         * Released 2.8.0
357 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
359         * Add missing fuse_session_data to versionscript
361         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
363 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
365         * Clarify how the protocol version should be negotiated between
366         kernel and userspace.  Notably libfuse didn't correctly handle the
367         case when the supported major versions didn't match
369         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
371 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
373         * The context is extended with a 'umask' field.  The umask is sent
374         for mknod, mkdir and create requests by linux kernel version
375         2.6.31 or later, otherwise the umask is set to zero.  Also
376         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
377         supports this feature, then this flag will be set in conn->capable
378         in the ->init() method.  If the filesystem sets this flag in in
379         conn->want, then the create modes will not be masked.
381         * Add low level interfaces for lookup cache and attribute
382         invalidation.  This feature is available in linux kernels 2.6.31
383         or later.  Patch by John Muir
385         * Kernel interface version is now 7.12
387         * fusermount: Do not silently ignore command line arguments.
388         Patch by Sebastian Harl
390 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
392         * Released 2.8.0-pre3
394 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
396         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
397         level lib) functions to query the supplementary group IDs for the
398         current request.  Currently this is implemented on Linux by
399         reading from the /proc filesystem.
401 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
403         * Add "noforget" option to high level lib to prevent ESTALE errors
404         on NFS exported filesystems.  This result in paths being cached
405         forever, resulting in ever growing memory usage.  Use with care.
407         * Add "no_remote_lock" option to disable remote file locking even
408         if the filesystem implements it.  With this option locking
409         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
410         will ignore remotely locked files.
412         * CUSE patches from Tejun Heo:
414         * Unrestricted ioctl support left some debris.  Clean them up:
415           o No reason to pass around pointer to flags.  Pass flags directly.
416           o Clean up comment and prototype parameter names.
417           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
418           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
420         * Add fuse_reply_ioctl_iov()
422         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
423         and make send_reply_iov() and fuse_setup_common() global (also in
424         fuse_i.h).  These will be used by CUSE support.
426         * Restructure fuse_ll_process()
428         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
429         operations as dir operations don't make sense for CUSE where one
430         instance implements single character device.
432         CUSE support comes with its own cuse_lowevel_ops and related
433         initialization and helper functions.  Except for initialization, it
434         usage is basically identical to FUSE.
436         This patch also adds example/cusexmp.c which can create a character
437         device with name and device number specified on command line.  The
438         created device itself is pretty boring.  It's a bit bucket supporting
439         read, write and access via ioctl.
441 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
443         * Add missing fuse_reply_bmap to versionscript.  Debian
444         Bug#531329.  Reported by Goswin Brederlow
446 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
448         * Don't call forget_node() if the lookup was negative and write()
449         for the reply returned ENOENT.  Reported by John Haxby
451 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
453         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
455 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
457         * Fix missing newlines in some printfs
459         * Fix 'make install-strip'.  Reported by Dominick Layfield
461 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
463         * Released 2.8.0-pre2
465 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
467         * Implement poll support.  Patch by Tejun Heo
469         * Add missing setattr flags to <fuse_lowlevel.h>.
471         * Only pass valid flags to ->setattr().
473 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
475         * Implement ioctl support.  On high level interface only
476         "restricted" ioctls are supported (which are defined with the
477         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
478         will only be allwed to CUSE (Character Device in Userspace)
479         servers.  Patch by Tejun Heo
481 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
483         * If open sets fi->nonseekable, libfuse will tell the kernel that
484         the file is not seekable.  Patch by Tejun Heo
486 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
488         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
489         interrupt handling function.  Reported by Tero Marttila
491 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
493         * Allow commas in options to be escaped with a backslash
495         * Add new function: fuse_opt_add_opt_escaped()
497         * Add missing fuse_reply_bmap() to the version script
499 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
501         * Pass current file flags to read and write operations
503 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
505         * Clean up debug output in highlevel lib
507 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
509         * Released 2.8.0-pre1
511 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
513         * Fix handling of (no)suid and (no)dev options if filesystem is
514         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
516         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
517         read-only filesystem.  This works around issues with certain mount
518         implementations.  Reported by Szabolcs Szakacsits.
520 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
522         * Remove fuse kernel module sources.  Linux 2.6.27 will support
523         NFS exporting.
525 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
527         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
528         Szakacsits
530         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
531         Szabolcs Szakacsits
533 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
535         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
537 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
539         * Don't allow bigger than 4kB writes by default on 2.6.26 and
540         later kernels, so that filesystems not expecting this are not
541         broken on a kernel upgrade.  Provide a 'big_writes' mount option
542         to enable this feature.  In future API revisions this may become
543         the default.
545 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
547         * Update warning message for missing newline at end of fuse.conf
549         * Update debug message for successful operation to not include the
550         string "error:"
552 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
554         * Update error message for missing mountpoint parameter.  Reported
555         by Allen Pulsifer
557 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
559         * Print library version information to debug output
561         * Highlevel lib: don't limit paths to 4095 characters
563 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
565         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
567 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
569         * Fix missing pthread_mutex_destroy in error path of
570         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
572 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
574         * Add queuing on contention to per-node lock algorithm, to avoid
575         starvation.
577         * Only enable cancelation when reading a request, otherwise
578         cancellation could happen with a mutex held, which could hang the
579         process on umount
581 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
583         * Block SIGCHLD when executing mount and umount
585         * fusexmp_fh: avoid unnecessary seeking in readdir
587         * Update kernel interface to 7.9:
589         * Support receiving file handle from kernel in GETATTR request
591         * Allow operations with a NULL path argument, if the filesystem
592         supports it
594         * Add support atomic open(O_TRUNC)
596         * Support the st_blksize field in struct stat
598         * If the "FUSE_THREAD_STACK" environment is set, initialize the
599         stack size of threads by this value.  Patch by Florin Malita
601         * Add per-node locking, instead of a global tree lock to protect
602         the path from changing during operations.  Original patch by
603         Rodrigo Castro
605 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
607         * lib/mount_bsd.c:
608         - string formatting fixes
609         - exit if mounting has failed
610           (in FreeBSD a mount failure is not critical per se, as the daemon
611           still could be mounted externally, but waiting for such an event
612           is more confusing than fruitful)
613         - ditch the kvm(8) stuff and simply use forced unmount which just
614           won't block
615         - prettify option specifications
616         - add "-onosync_unmount" kernel option
618 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
620         * lib/mount_bsd.c:
621         - refine device closing in a race-free way
622         - add support for "-osubtype" on FreeBSD
624         * makeconf.sh: make it work under FreeBSD
626 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
628         * lib/mount_bsd.c: close device before unmount
629         (cf. lib/mount.c rev. 1.43) and fix some warnings 
631 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
633         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
635 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
637         * Released 2.7.2
639 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
641         * Fix kernel module compile for 2.6.24
643         * Invalidate attributes of parent directory after create(), since
644         the modification time changes.  Invalidate attributes on rename,
645         since some filesystems may update st_ctime.  Reported by Szabolcs
646         Szakacsits
648         * Fix NFS exporting to handle 64bit node IDs
650         * Disable old symbol versions if __UCLIBC__ is defined.  If a
651         symbol in a library has multiple versions, the runtime linker in
652         uClibc seems to randomly choose between them.
654         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
655         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
657         * Close fuse device file descriptor before calling umount(),
658         preventing a deadlock when umount is synchronous.  Reported by
659         Szabolcs Szakacsits
661 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
663         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
664         symlink.  This bug was introduced in 2.7.1 by "Don't call
665         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
667 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
669         * Released 2.7.1
671 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
673         * Clarify licence version to be "LGPLv2" for the library
675         * kernel fixes:
677         * After mount set nlink attribute for the root inode to 1
679         * Fix wake up of task waiting for a reserved request
681         * Fix allowing setattr, listxattr and statfs for other users
683 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
685         * Add missing context initialization in fuse_fs_chmod().  Bug
686         found by "iohead"
688         * Fix kernel module compilation for 2.6.23.  Based on patch by
689         Marian Marinov
691 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
693         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
695 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
697         * Work around hotplug issue, that it calls filesystem with file
698         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
700 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
702         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
703         Tomas M
705         * Also don't touch /etc/mtab if it is within the mounted
706         filesystem.  Suggested by Jeffrey Law
708 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
710         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
711         C. Villa Real
713 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
715         * Released 2.7.0
717 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
719         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
720         filesystem is only invoking fuse to print a help message, or
721         version.  Fixes RedHat bugzilla #217343
723 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
725         * lib: fix locking when loading a filesystem module
727 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
729         * Add fs subtype support to mount.fuse
731 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
733         * Add fs subtype support to libfuse and fusermount
735 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
737         * kernel: sync with mainline (2.6.22)
739 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
741         * Send debug output to stderr instead of stdout.  Patch by Jan
742         Engelhardt
744 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
746         * libulockmgr: Work around a kernel bug in recv(), causing it to
747         sometimes return zero even if data was available on the socket.
749 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
751         * lib: optimization: store parent pointer in node instead of
752         parent id
754 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
756         * lib: don't create new thread for each FORGET request.  FORGET
757         messages sometimes caused so many threads to be created, that
758         process virtual memory space ran out.  Reported by Chris AtLee
760 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
762         * lib: fix memory leak on thread creation failure in multithreaded
763         event loop.  Found by Chris AtLee
765 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
767         * lowlevel lib: add fuse_reply_iov function, which is similar to
768         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
769         Willcocks
771 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
773         * Fix Oops or error if a regular file is created with mknod(2) on
774         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
775         J. Cameijo Cerdeira for the report
777 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
779         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
780         Error reported by Csaba Henk, fix by Miklos Szeredi
782         * libfuse: fix unlock in flush
784         * libfuse: do unlocking on RELEASE+FLUSH
786 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
788         * Released 2.7.0-rc1
790 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
792         * kernel: sync with mainline:
794         * Use invalidate_mapping_pages() if available
796         * Fix BUG when invalid file type is supplied in mount. Patch by
797         Timo Savola
799 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
801         * libfuse: call umount(8) directly instead of fusermount if
802         possible
804         * Clean up init script, make it LSB compliant
806 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
808         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
809         up the main thread on umount.  This is more elegant, and works
810         even if signals are blocked.
812 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
814         * Improve mounting support in libfuse:
815          - check non-empty mountpoint
816          - only fall back to fusermount when necessary
818 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
820         * Don't chdir to "/" in foreground mode, it causes more trouble
821         than it's worth
823 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
825         * Replace utils/mount.fuse "sh" script with a "C" program
827 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
829         * Add -lulockmgr to compilation comment in fusexmp_fh.c
831 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
833         * Check for iconv.  Patch by Csaba Henk
835         * Add direct umounting
837         * Use "fusectl" as the device for the fusectl filesystem.  Debian
838         Bug#417945.  Reported by Laurent Bonnaud
840 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
842         * Fix some FreeBSD related macros.
844 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
846         * Add support for direct mounting by libfuse.  Fall back on
847         calling fusermount if it doesn't work
849 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
851         * Released 2.7.0-pre1
853 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
855         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
856         Bruno
858         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
859         by Thomas Weinbrenner
861 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
863         * Fix detection of installed fuse in init script.  Reported and
864         fix suggested by Davide Canova
866 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
868         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
869         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
871 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
873         * Compile fuseblk for kernels which don't have an option to turn
874         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
875         Szabolcs
877 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
879         * Add filesystem stacking support to high level API.  Filesystem
880         modules can be built into libfuse or loaded from shared object
881         (.so) files
883         * Add 'subdir' and 'iconv' built in modules
885         * lib/fuse.c: Fix locking for the reply code in create and open
887 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
889         * kernel: make it compile on "strange" kernels which have emulated
890         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
891         Mateja
893 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
895         * kernel: fix BUG in control filesystem if it is umounted and
896         mounted again, while some fuse filesystems are present.
897         Bugreport from Florent Mertens
899         * kernel: sync with mainline, support 2.6.20
901 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
903         * lib/Makefile.am: actually link libfuse against libfuse_libs
905 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
907         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
908         Ian Abbott
910 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
912         * Fix abort in fuse_new() compatibility API for opts == NULL case.
913         Novell bugzilla #233870.  Patch from Takashi Iwai.
915 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
917         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
919 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
921         * Fix unaligned access in file desctriptor passing in libfuse,
922         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
923         tested by Sebastian Fontius
925 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
927         * kernel: don't keep unreferenced inodes in the icache.
929 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
931         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
932         Szabolcs
934         * lib: Fix use after free in fuse_flush().  Reported by Ron
935         Lindman
937 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
939         * mount.fuse: add "setuid=USER" option which does a "su - USER"
940         for the filesystem
942         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
943         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
944         the ugly code dealing with mtab, as well as a possible race
945         between fusermount and mount trying to modify /etc/mtab at the
946         same time
948         * Fix "buffer size too small: 4" warning for users of the
949         fuse_loop_mt_proc() function.
951 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
953         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
954         Harshavardhana
956         * Add extra warning options, and fix resulting warnings
958         * Really fix fuse_teardown problem
960 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
962         * Add -lrt to fuse.pc (if needed) to fix static linking against
963         libfuse.  Reported by Szakacsits Szabolcs
965 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
967         * Released 2.6.1
969 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
971         * Fix API version 21 and 22 compatibility for fuse_teardown.
972         Reported by Bgs
974 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
976         * fusermount: Print a more helpful message in case the kernel
977         doesn't support the 'fuseblk' filesystem type.  This has been
978         biting ntfs-3g users.  Reported by Yura Pakhuchiy
980         * kernel: fix build problem for "make -C ...".  Reported by
981         Stephen Bryant
983 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
985         * Fix bug in certain error paths of lookup routines.  The request
986         object was reused for sending FORGET, which is illegal.  This bug
987         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
988         silently corrupt memory in earlier versions.  Report and test
989         program by Russ Cox
991 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
993         * Print an error if an incompatible kernel interface version is
994         detected in INIT.  This will only show if filesystem is started
995         with -d or -f
997         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
998         fuse_setup_common().  Reported by Szakacsits Szabolcs
1000 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1002         * Fix recursive locking in fuse_create().  Thanks to Takuya
1003         Ishibashi for the bug report
1005 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1007         * Fix automake problem.  Patch from Nix
1009 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1011         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1012         always available on embedded systems.  Patch from Paul Smith
1014         * Fix util/Makefile.am, so that failure to run update-rc.d or
1015         device creation doesn't cause make to fail.  Reported by Paul
1016         Smith
1018 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1020         * Released 2.6.0
1022 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1024         * fusermount: don't try to create a lock file if /etc/mtab is a
1025         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1026         #393693)
1028 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1030         * Minor changes, sync with mainline tree
1032 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1034         * Released 2.6.0-rc3
1036 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1038         * kernel: cleanups
1040 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1042         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1043         Report from David Shaw
1045         * lib: Fix lost error on renaming a file. Report from David Shaw
1047         * lib: Fix lost error on hiding open files (renaming to
1048         .fuse_hiddenXXXX)
1050         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1051         activity.  The cause of the bug was that some calls to
1052         i_size_write() were not protected by a lock, and hence
1053         i_size_seqcount could become corrupted.  This caused subsequent
1054         calls to i_size_read() to spin forever.  This is a long standing
1055         bug was probably introduced in version 2.2, and thought to be
1056         related to NFS exporting (it's not).  It was reported by various
1057         people, but Dana Henriksen has finally helped me to track it down,
1058         so big thanks to him
1060         * kernel: Protect against truncation of a swapfile
1062 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1064         * kernel: Check for signature of super_operations->umount_begin().
1065         Ubuntu kernel 2.6.17 seems to use the new signature found in
1066         2.6.18.  Thanks to Florent Mertens for the report
1068 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1070         * Make sure inode numers wrap around at 2^32.  This is needed on
1071         dual 64bit/32bit architectures, because 32bit applications using
1072         the non-largefile interface would otherwise break (EOVERFLOW error
1073         would be returned by the stat() system call family)
1075         * ulockmgr: handle the case, when a locking operation fails
1076         because no more file desctriptors are available in
1077         ulockmgr_server.  Also work around a Linux kernel bug (known to
1078         exist for all Linux kernel versions <= 2.6.18) which may cause
1079         sent file descriptors to be lost in the above case
1081         * ulockmgr: optimize file descriptor use
1083         * restore needed cpp flags to util/Makefile.am
1085         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1087         * Minor clean up of udev rules
1089         * Add a synchronous DESTROY message to kernel interface.  This is
1090         invoked from umount, when the final instance of the filesystem is
1091         released.  It is only sent for filesystems mounted with the
1092         'blkdev' option for security reasons.
1094         * If the DESTROY message is received, call the filesystem's
1095         ->destroy() method.  In this case it's not called from session
1096         destruction as it would be otherwise.
1098 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1100         * Released 2.6.0-rc2
1102 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1104         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1105         patch by Csaba Henk
1107         * Add init script to insert fuse module and mount the control
1108         filesystem.  The script is installed as /etc/init.d/fuse and on
1109         debian based systems (where update-rc.d is available) symlinks
1110         from /etc/rc*.d/ are also installed.
1112         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1113         become more self contained.
1115 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1117         * API changes:
1119         * Move lock_owner from a separate argument into fuse_file_info
1121         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1122         operation (unlock all) was initiated by a flush, (2) a lowlevel
1123         release operation should perform a flush as well.
1125         * fusermount: revert modprobe change (2006-08-18) since it
1126         doesn't work reliably with udev
1128         * Add support for block device backed filesystems.  This mode is
1129         selected with the 'blkdev' option, which is privileged.
1131         * Add support for the bmap (FIBMAP ioctl) operation on block
1132         device backed filesystems.  This allows swapon and lilo to work on
1133         such filesystems.
1135         * kernel changes:
1137         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1138         previous (2.5.x) release can be used with library from this
1139         release
1141         * In fuse_dentry_revalidate() use dget_parent() instead of
1142         dereferencing d_parent, since there's no protection against parent
1143         changing and going away
1145         * Protect nlookup from concurrent updates
1147         * In lookup if a directory alias exists but is unused,
1148         then get rid of it, otherwise return -EBUSY.
1150         * In mkdir if a directory alias exists, return success, but leave
1151         dentry negative.  In reality this could happen if a remote rename
1152         immediately followed the mkdir.
1154         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1155         good inode.  This could happen if several lookups are racing for
1156         the same inode.
1158 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1160         * Fix compilation on 2.6.9.  Report from Troy Ayers
1162 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1164         * Fix Oops in fuse_readpages().  Reported by David Shaw
1166 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1168         * Add support for nanosec times on FreeBSD
1170         * Fix FreeBSD compatibility issues
1172 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1174         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1176         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1178 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1180         * Fixed several compatibility bugs in low level interface.
1181         Reported by Ricardo Correia
1183         * Add workaround for ARM caching bug
1185 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1187         * Rename new utimes() method to more logical utimens()
1189 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1191         * Fuse tried to unlink already unlinked hidden files.  Bug
1192         reported by Milan Svoboda
1194 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1196         * Released 2.6.0-rc1
1198 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1200         * kernel: Fix unlock on close for kernels < 2.6.18
1202         * Add ulockmgr library & server.  This can be used for handling
1203         file locking requests either directly from libfuse or over a
1204         network, etc.  This first version is not optimized and the number
1205         of file descriptors it uses may get out of hand
1207 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1209         * lib: Add interrupt support to high level library, which may be
1210         enabled with the 'intr' mount option.
1212         * When an operation is interrupted the thread handling that
1213         operation will receive SIGUSR1 (or other signal specified with the
1214         'intr_signal=N' option).  The library installs a no-op signal
1215         handler for this signal, unless there's already a handler
1216         installed.
1218         * The filesystem may query interrupt status (regardless of 'intr')
1219         with the fuse_interrupted() function.
1221         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1223 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1225         * lib: Multithreaded loop now allows unlimited number of threads.
1226         This is needed for locking operations which may block
1227         indefinitely.  Also the kernel now doesn't limit the number of
1228         outstanding requests so the library shouldn't do so either.
1230 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1232         * Fix recursive lock bug in interrupt handling
1234         * Add utimes() method to highlevel interface, which supports
1235         setting times with nanosecond resolution
1237 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1239         * kernel: fix page leak if fuse_readpages() failed in it's
1240         initialization.  Bug found and original patch from Alexander
1241         Zarochentsev
1243         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1244         the kernel tree) the statfs method will receive the path within
1245         the filesystem on which the stat(v)fs syscall was called
1247         * fusermount: try to modprobe fuse module if invoked by root and
1248         unable to open device.  This is needed with udev, since the device
1249         node will be created only when the module is inserted, hence
1250         module autoloading won't work.  Reported by Szakacsits Szabolcs
1252 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1254         * fusermount: if selinux is active, restore the original file's
1255         security context in unmount_rename().  Redhat bugzilla id 188561.
1256         Patch from Yves Perrenoud
1258         * Add POSIX file locking operation to high level library
1260         * Initialize context for unlink of hidden files on umount.  Bug
1261         reported by Tim Stoakes
1263 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1265         * Multiple release() calls can race with each other, resulting in
1266         the hidden file being deleted before the last release finishes.
1267         Bug found and patch tested by Mark Huijgen
1269 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1271         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1272         this makes sense on systems using udev.  Reported by Szakacsits
1273         Szabolcs
1275 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1277         * Released 2.6.0-pre3
1279 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1281         * Support in kernel module for file locking and interruption.  The
1282         same functionality is available in official kernels >= 2.6.18
1284 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1286         * Add POSIX file locking support
1288         * Add request interruption
1290 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1292         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1294 2006-06-05  Remy Blank <remy.blank@pobox.com>
1296         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1297         unmounting succeeds even if mount point was relative.
1299 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1301         * lib: fix emergency umount in helper.c when malloc fails.
1302         (The way it was done would end up in a segfault.)
1304 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1306         * lib: adjust threading related compiler flags.
1307         Switch to "-pthread" from "-lpthread" as that's the preferred
1308         one on several platforms. Consulted with Terrence Cole and
1309         Miklos Szeredi
1311 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1313         * lib: search fusermount in installation directory (bindir) as
1314         well as in PATH.
1316 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1318         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1319         Reported by Christian Magnusson
1321 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1323         * lib: make FreeBSD mount routine recognize if kernel features
1324         backgrounded init and if it does, run the mount util in foreground
1325         (similarly to Linux)
1327 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1329         * kernel: fix fput deadlock fix, the lockless solution could lead
1330         to "VFS: busy inodes after umount..."
1332         * kernel: fix race between checking and setting file->private_data
1333         for the device.  Found by Al Viro
1335 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1337         * kernel: remove request pool, instead allocate requests on
1338         demand.  Account the number of background requests, and if they go
1339         over a limit, block the allocation of new requests.
1341         * kernel: fix deadlock if backgrounded request holds the last
1342         reference to the super block
1344         * kernel: don't use fuse_reset_request() during direct I/O
1346 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1348         * lib: Let FreeBSD mount option parsing routine recognize "no"
1349         prefixes for FUSE specific options as well
1351 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1353         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1355 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1357         * API changes:
1359         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1360         user_data parameter
1362         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1363         file descriptor
1365         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1366         destroys the given channel
1368         * fuse_teardown() no longer has a file descriptor parameter
1370         * new exported functions: fuse_session_remove_chan(),
1371         fuse_get_session(), fuse_daemonize()
1373         * fuse_chan_recv() may now return a new channel which will be used
1374         to send the reply
1376 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1378         * Released 2.6.0-pre2
1380 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1382         * Don't unmount if already unmounted.  This fixes a problem seen
1383         in the following situation: Lazy unmount a busy filesystem; Mount
1384         a new one in top; When the first finally unmounts, the second also
1385         unmounts.  Reported by Franco Broi
1387 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1389         * lowlevel lib: use indirect function calls instead of a
1390         switch/case construct.  Besides increased efficiency it helps
1391         maintainability & readability too.  Patch from Florin Malita
1393 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1395         * kernel: replace global spinlock with a per-connection spinlock
1397 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1399         * Fix source compatibility breakage for fuse_unmount().  Report
1400         from Yura Pakhuchiy
1402 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1404         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1406 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1408         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1409         Jeff Dike
1411         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1412         interface to return -errno in case of error.
1414 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1416         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1417         FreeBSD implementation so that it uses libc (sysctl backed) instead
1418         of an embdedded script (kmem backed). Adjust the control flow of
1419         hello_ll so that device doesn't get closed before unmount attempt.
1421 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1423         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1424         implement method.  This is needed on FreeBSD, and nicer on Linux
1425         too.  Highlevel lib already did this.  Reported by Csaba Henk
1427         * Fix negative entry handling.  There was a bug, that negative
1428         lookups with timeouts (nodeid == 0) returned -EIO.
1430 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1432         * Fix race between RELEASE and UNLINK, which might leave
1433         .fuse_hidden* files around
1435 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1437         * fusexmp_fh: implement flush() method and call close() on the
1438         open file descriptor.  This is needed if used on an NFS
1439         filesystem, which buffers data until file is closed.  Franco Broi
1440         spotted the situation when 'cp -p' failed to set the modification
1441         time because of this.
1443 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1445         * Released 2.6.0-pre1
1447 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1449         * libfuse: fix use-after-free bug in interruptred reply_entry().
1450         Patch from John Muir
1452         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1453         ID: 352631.  Found by Stéphane Rosi
1455 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1457         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1458         into a single function fuse_add_direntry().  This cleans up the
1459         interface and makes it possible to do stacking.
1461 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1463         * Fix rare race betweeen abort and release caused by failed iget()
1464         in fuse_create_open().
1466         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1467         own attribute caching.
1469 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1471         * Work around FreeBSD runtime linker "feature" which binds an old
1472         version of a symbol to internal references if the symbol has more
1473         than one version.  This resulted in infinite recursion in
1474         fuse_lowlevel_new_compat25().
1476 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1478         * Refine clock_gettime() querying so that linker options
1479         shall be set as it's appropriate for the target platform.
1481 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1483         * Fix udev rule syntax.  Reported by Nix
1485 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1487         * In some cases udev rule seems to be ineffective when installed
1488         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1490 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1492         * Fix compilation when build directory is different from source
1493         directory.  Reported by Frédéric L. W. Meunier
1495 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1497         * Fix even bigger bug introduced in fix for request_end() on
1498         2006-01-14.  Reported by Gal Rosen
1500 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1502         * highlevel-lib: add 'auto_cache' option.  This caches file data
1503         based on modification time and size
1505 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1507         * Sanitize storage type and help message in mount_bsd.c.  Patch
1508         from Csaba Henk
1510         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1511         FUSE_OPT_KEY_DISCARD
1513         * Add options 'max_readahead', 'sync_read' and 'async_read'
1515         * Kernel ABI version 7.6:
1517         * Negotiate the 'max_readahead' value and 'async_read' flags with
1518         userspace in the INIT method
1520         * Add connection info to ->init() methods to both lowlevel and
1521         highlevel API
1523         * Fall back to synchronous read() behavior if either library or
1524         userspace filesystem is using the old interface version.  This is
1525         needed so non-updated filesystems won't be confused by the
1526         different read() behavior
1528 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1530         * lib: if "fsname=" option was given, pass it to fusermount
1532         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1533         needed by filesystems to implement some argument manipulations
1534         correctly
1536         * fuse_opt: fix memory leak in handling "--" option
1538 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1540         * kernel: fix detection of case when fuse is not configured into
1541         the kernel either as module or built-in
1543         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1544         'template' structure member to 'templ'.  Reported by Takashi Iwai
1546         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1548         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1550 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1552         * Added (again) asynchronous readpages support
1554         * Each connection now shows up under /sys/fs/fuse/connections
1556         * Connection attributes exported to sysfs: 'waiting' number of
1557         waiting requests; 'abort' abort the connection
1559         * Connection may be aborted through either the sysfs interface or
1560         with 'umount -f mountpoint'
1562 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1564         * Released 2.5.0
1566 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1568         * kernel: fix a couple of bugs
1570         * Order of request_end() and fuse_copy_finish() was wrong.
1571         Posthumous note: Franco Broi managed to exploit this, though it
1572         seemed quite impossible
1574         * request_end() used request pointer after decrementing refcount
1576         * Clearing ->connected or ->mounted connection flags could race
1577         with setting other bitfields not protected with a lock
1579 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1581         * kernel: add necessary compile flags for 2.4.X/x86_64.
1582         Report from Sean Ziegeler
1584 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1586         * Released 2.5.0-pre2
1588 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1590         * Applied patch from Csaba Henk, to update mount_bsd to new
1591         fuse_mount() semantics
1593         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1594         Steiner and Don Taber
1596         * fusermount: add 'dirsync' mount option
1598 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1600         * Improved help reporting and added version reporting to library
1602 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1604         * Change working directory to "/" even if running in the
1605         foreground.  Patch from Jonathan Brandmeyer
1607         * Changed lots of functions to use 'struct fuse_args' instead of
1608         separate argc and argv
1610         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1611         fuse_remove_signal_handlers() functions, so that it's now pretty
1612         easy to get all the functionality of fuse_main() with a filesystem
1613         using the lowlevel API.
1615 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1617         * mount.fuse: the 'user' option should be ignored. Report and
1618         solution from Mattd.
1620         * mount.fuse: export PATH in the right place. Report and patch
1621         from Hannes Schweizer
1623 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1625         * Clean up the option parsing interface slightly, by creating an
1626         "argument list" structure, that contains the argument vector and
1627         count
1629 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1631         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1632         in that case
1634         * kernel: simplify request size limiting. INIT only contains
1635         maximum write size, maximum path component size remains fixed at
1636         1024 bytes, and maximum xattr size depends on read buffer.
1638 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1640         * Fix readdir() failure on x86_64, of 32bit programs compiled
1641         without largefile support.  Bug report and help from Anthony
1642         Kolasny
1644         * If lookup returns invalid mode, return -EIO instead of creating
1645         a regular file
1647         * Add current output argument vector to option processing
1648         function
1650 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1652         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1654 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1656         * Released 2.5.0-pre1
1658 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1660         * libfuse: added option parsing interface, defined in
1661         <fuse_opt.h>.
1663 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1665         * Return EIO for file operations (read, write, fsync, flush) on
1666         open files whose inode has become "bad".  Inodes will be marked
1667         "bad" if their type changes.  Bug report by Csaba Henk
1669 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1671         * Use bigger request buffer size.  write() did not work on archs
1672         with > 4k page size, Bug report by Mark Haney
1674         * ABI version 7.5:
1676         * Extend INIT reply with data size limits
1678 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1680         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1681         reported by Vincenzo Ciancia
1683         * Handle exit-by-umount in fuse_read_cmd()
1685 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1687         * Check if '-msoft-float' option is supported by compiler when
1688         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1690         * In multithreaded loop send a TERM signal to the main thread if
1691         one of the other threads exit.  Needed on FreeBSD for a clean exit
1692         on umount.  Should not cause any harm on Linux either
1694 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1696         * Fix bug in 32-bit file handle compatibility
1698 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1700         * Block TERM, INT, HUP and QUIT signals in all but the main
1701         thread.  According to POSIX it's not specified which thread will
1702         receive these signals.
1704         * Kernel changes:
1706         * Check for directory aliasing on mkdir, not just on lookup
1708         * Check for special node ID values in create+open operation
1710         * Sync with -mm: readv, writev, aio_read and aio_write methods
1711         added to file operations
1713         * Cleanups: lookup code, page offset calculation
1715         * ABI stepped to 7.4, changes:
1717         * frsize member added to fuse_kstatfs structure
1719         * added support for negative entry caching: on lowlevel API if
1720         fuse_entry_param::ino is set to zero in reply to a lookup request,
1721         the kernel will cache the dentry for the specified amount of time.
1723         * libfuse: added 'negative_timeout' option: specifies how much
1724         negative entries should be cached.  Default is zero, to be
1725         compatible with prior versions
1727 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1729         * Add detection of mainline FUSE code in running kernel
1731 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1733         * Don't use async cancelation in multithreaded loop.  This makes
1734         it more portable to systems where read() is not async cancel safe.
1735         Report from Andriy Gapon
1737 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1739         * Warn if API version 11 compatibility is requested
1741 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
1743         * More FreeBSD merge
1745         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1746         them, because it corrupts /etc/mtab.  Found by Thomas Biege
1747         CVE-2005-3531
1749         * libfuse: don't use system() to invoke 'fusermount -u ...'
1750         because it breaks mountpoints with spaces in them into multiple
1751         arguments
1753 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
1755         * Merge library part of FreeBSD port.  Patch by Csaba Henk
1757 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
1759         * Use 64bit type for file handle, so the full range supported by
1760         the kernel interface is available to applications
1762 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
1764         * Moved mountpoint argument checking from fuse_parse_cmdline() to
1765         fuse_mount() in preparation to FreeBSD merge.
1767 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
1769         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
1770         Henk.
1772 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
1774         * Make the statfs change backwards compatible.
1776 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
1778         * Change ->statfs() method to use 'struct statvfs' instead of
1779         'struct statfs'.  This makes the API more portable since statvfs()
1780         is defined by POSIX.
1782 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
1784         * Add fgetattr() method, which currently will only be called after
1785         a successful call to a create() method.
1787 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
1789         * Change kernel ABI version to 7.3
1791         * Add ACCESS operation.  This is called from the access() system
1792         call if 'default_permissions' mount option is not given, and is
1793         not called on kernels 2.4.*
1795         * Add atomic CREATE+OPEN operation.  This will only work with
1796         2.6.15 (presumably) or later Linux kernels.
1798         * Add ftruncate() method.  This will only work with 2.6.15
1799         (presumably) or later Linux kernels.
1801         * Fix kernel module compile if kernel source and build directories
1802         differ.  Report and initial patch by John Eastman
1804 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
1806         * lib: optimize buffer reallocation in fill_dir.
1808 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
1810         * Released 2.4.1
1812 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
1814         * libfuse: add debug for write result (by Shaun Jackman) and
1815         warnings for too large read/write result
1817 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
1819         * Spelling fixes, thanks to Ioannis Barkas
1821 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
1823         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
1824         patch
1826 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
1828         * highlevel-lib: init() and destroy() methods didn't have an
1829         initialized fuse_context.  Bug reported by Tim Stoakes
1831 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
1833         * Released 2.4.0
1835 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
1837         * Add documentation to fuse_lowlevel.h
1839         * API cleanups:
1841         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1843         * Move fuse_mount() and fuse_unmount() to fuse_common.h
1845         * Change the return type of fuse_reply_none() from int to void.
1847 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
1849         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
1850         Akshat Aranya.
1852 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
1854         * fusermount: fix error message, when unable to open /dev/fuse.
1855         Report by Balázs Pozsár
1857 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
1859         * UClibc fixes from Christian Magnusson
1861 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
1863         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
1865 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1867         * Released 2.4.0-rc1
1869 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1871         * fusermount: allow user umount in the case when /etc/mtab is a
1872         symlink to /proc/mounts.  Reported by Balázs Pozsár.
1874 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
1876         * Check for special node ID values in lookup and creation
1878 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
1880         * Slight optimization in returning EINVAL error in case of an open
1881         with O_DIRECT flag.
1883 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
1885         * Remove '--enable-auto-modprobe' configure flag.  Module
1886         auto-loading is now handled by the kernel.
1888 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
1890         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1891         Help from Jens M. Noedler.
1893 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
1895         * Add memory cleanup on thread exit
1897 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
1899         * Set umask to zero in fusexmp and fusexmp_fh, so that
1900         files/directories are created with the requested mode.
1902 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
1904         * Don't ignore read error in multithreaded loop
1906 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1908         * Released 2.4.0-pre2
1910 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1912         * Revert lock and access operations.  Postpone these until 2.5.
1914 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
1916         * Fix compile warning on 2.6.13 and later
1918         * Fix compilation on old kernels
1920 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
1922         * lib: always refresh directory contents after rewinddir() to
1923         conform to SUS.  Bug found by John Muir.
1925 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
1927         * Released 2.4.0-pre1
1929 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
1931         * lib: cleaned up (or messed up, depending on your POV) the low
1932         level library API.  Hopefully this is close to the final form.
1934 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
1936         * fusermount: don't allow empty mountpoint argument, which defeats
1937         automatic umounting in fuse_main().  Bugreport by Václav Jůza
1939 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
1941         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
1942         option is used (Paul Alfille).
1944 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
1946         * highlevel-lib: added mount options "attr_timeout" and
1947         "entry_timeout".  These options control the length of time file
1948         attributes and entries (names) are cached.  Both default to 1.0
1949         second.
1951         * kernel: correctly handle zero timeout for attributes and entries
1953 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
1955         * Added missing symbols to versionscript (Joshua J. Berry)
1957         * kernel: implement two flags, open can set: 'direct_io' and
1958         'keep_cache'.  These correspond exactly to mount options
1959         'direct_io' and 'kernel_cache', but allow a per-open setting.
1961         * Move 'direct_io' and 'kernel_cache' mount option handling to
1962         userspace.  For both mount options, if the option is given, then
1963         the respective open flag is set, otherwise the open flag is left
1964         unmodified (so the filesystem can set it).
1966         * lib (highlevel): make open method optional
1968 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
1970         * kernel: invalidate attributes for read/readdir/readlink
1971         operations
1973         * kernel: detect newer UML kernels
1975 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
1977         * Make the installation path of fuse.ko and mount.fuse
1978         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
1979         environment variables.  Requirement and help from Csaba Henk.
1981 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
1983         * Fix bug, that causes filesystem requests to hang when unique
1984         request counter becomes negative.  This happens after
1985         2,147,483,648 operations, so most people won't care.  Thanks to
1986         Franco Broi for the report and testing.
1988 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
1990         * Don't change mtime/ctime/atime to local time on read/write.
1991         Bug reported by Ben Grimm
1993         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
1994         Magnusson
1996         * fusermount: use getopt_long() for option parsing.  It allows the
1997         use of '--' to stop argument scanning, so fusermount can now
1998         operate on directories whose names begin with a '-'.  Patch by
1999         Adam Connell
2001 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2003         * fusermount: add '-v', '--version' and '--help' options
2005         * add inode based API
2007 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2009         * lib: don't block signals in worker threads.  Problem noticed by
2010         Usarin Heininga
2012 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2014         * lib: don't allow both 'allow_other' and 'allow_root' options to
2015         be given
2017 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2019         * fusermount: check if mountpoint is empty (only '.' and '..' for
2020         directories, and size = 0 for regular files).  If "nonempty"
2021         option is given, omit this check.  This is useful, so users don't
2022         accidentally hide data (e.g. from backup programs).  Thanks to
2023         Frank van Maarseveen for pointing this out.
2025         * kernel: check if mandatory mount options ('fd', 'rootmode',
2026         'user_id', 'group_id') are all given
2028         * lib: simplify 'readdir_ino' handling
2030         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2032 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2034         * kernel: clean up 'direct_io' code
2036 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2038         * Add 'mount.fuse' written by Petr Klima
2040         * '/dev/fuse' is created by 'make install' if does not yet exist
2042 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2044         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2046 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2048         * Enable the auto-loading of the module via access to the
2049         corresponding device file.  Patch by Takashi Iwai.
2051         * Allow mounting a regular file (over a regular file) for
2052         unprivleged users.
2054         * Do not create temporary device file.  Require "/dev/fuse" to
2055         exist, and be readable/writable by the mounting user.
2057 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2059         * Released 2.3.0
2061 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2063         * Fix serious information leak: if the filesystem returns a short
2064         byte count to a read request, and there are non-zero number of
2065         pages which are not filled at all, these pages will not be zeroed.
2066         Hence the user can read out previous memory contents.  Found by
2067         Sven Tantau.
2069 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2071         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2072         field in struct dirent.  This mount option is ignored if "use_ino"
2073         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2074         non-Linux OS).  Patch by David Shaw.
2076 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2078         * Released 2.3-rc1
2080 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2082         * File save in krusader and other editors doesn't work with sshfs,
2083         because open() is interrupted by a periodic signal, and open()
2084         restarts forever, without any progress.  This could just be fixed
2085         in open(), but the problem is more generic: if signals are
2086         received more often than the filesystem can get the request to
2087         userspace, it will never finish.  This is probably only a
2088         theoretical problem, nevertheless I'm removing the possibility to
2089         interrupt requests with anything other than SIGKILL, even before
2090         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2092 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2094         * libfuse: add "tree_lock" rwlock, that is locked for write in
2095         rename, unlink and rmdir, and locked for read in all other
2096         operations.  This should fix the rename/release race reported by
2097         Valient Gough and others.  The solution is very coarse, a finer
2098         grained locking scheme could be implemented, but it would be much
2099         more complex.  Let's see whether this is good enough.
2101 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2103         * Released 2.3-pre7
2105 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2107         * Better fix for out of order FORGET messages.  Now the
2108         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2109         balance many lookups), so the order no longer matters.  This
2110         changes the kernel ABI slightly, but the library remains backward
2111         compatible.
2113 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2115         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2116         Franco Broi again.  Sorry :)
2118 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2120         * Released 2.3-pre6
2122 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2124         * Make fusermount work with fuse kernel modules not yet supporting
2125         the "group_id" option (added for the purpose of stricter
2126         permission checking).
2128 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2130         * Check for hard-linked directories in lookup.  This could cause
2131         problems in the VFS, which assumes that such objects never exist.
2133         * Make checking of permission for other users more strict.  Now
2134         the same privilege is required for the mount owner as for ptrace
2135         on the process performing the filesystem operation.
2137 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2139         * Released 2.3-pre5
2141 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2143         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2144         is needed on certain architectures.  Report from Chris Kirby
2146         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2147         Reported by David Shaw
2149         * Remove "allow_root" option from kernel module, and implement
2150         it's functionality in the library
2152         * Fix Oops caused by premature release of fuse_conn.  Clean up
2153         related code, to be more readable
2155         * Sendfile should not use page cache if "direct_io" mount option
2156         is given
2158 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2160         * Fix Oops in case of nfs export.  Spotted by David Shaw
2162         * Fix another Oops in case of write over nfs with direct_io turned
2163         on.  Again spotted by David Shaw
2165 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2167         * Released 2.3-pre4
2169 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2171         * lib: finalized new readdir() interface, which now supersedes the
2172         getdir() method.
2174 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2176         * Released 2.3-pre3
2178 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2180         * Implement backward compatibility with version 5 kernel ABI
2182 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2184         * Released 2.3-pre2
2186 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2188         * kernel: fix dirent offset handling
2190         * lib: add readdir and releasedir methods
2192         * lib: use fh field of fuse_file_info in opendir, readdir,
2193         releasedir and fsyncdir methods
2195         * lib: check kernel API version and bail out of it's old.  This
2196         will be properly fixed in the next release
2198 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2200         * Released 2.3-pre1
2202 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2204         * kernel API: add padding to structures, so 64bit and 32bit
2205         compiler will return the same size
2207         * kernel API: add offset field to fuse_dirent.  This will allow
2208         more sophisticated readdir interface for userspace
2210         * kernel API: change major number to 6
2212         * kernel: fix warnings on 64bit archs
2214         * kernel: in case of API version mismatch, return ECONNREFUSED
2216 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2218         * kernel: trivial cleanups
2220 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2222         * Add fsyncdir() operation
2224 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2226         * kernel: add locking to background list (fixes previous fix)
2228 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2230         * kernel: fix bug which could cause leave busy inodes after
2231         unmount, and Oops.
2233 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2235         * examples: add -lpthread to link flags to work around valgrind
2236         quirk
2238         * lib: don't exit threads, so cancelation doesn't cause segfault
2240 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2242         * kernel: fix nasty bug which could cause an Oops under certain
2243         situations.  Found by Magnus Johansson
2245 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2247         * libfuse: added opendir() method.  This can be used in case
2248         permission checking in getdir() is too late.  Thanks to Usarin
2249         Heininga for pointing out this deficiency
2251         * libfuse: added init() and destroy() methods to fuse_operations
2253         * kernel: llseek() method for files and directories made explicit
2255         * kernel: fixed inode leak in NFS export in case of nodeid
2256         wrapping
2258 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2260         * libfuse: clean up some unitialized memory found with valgrind
2262         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2263         explicitly linked libpthread for applications
2265 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2267         * fusermount: set umask, otherwise /etc/mtab will have
2268         unpredictable permission.  Spotted by Jindrich Kolorenc
2270         * fusermount: set owner and group of /etc/mtab to original values
2271         on unmount
2273         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2275 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2277         * Cleaned up directory reading (temporary file is not used)
2279 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2281         * Released 2.2
2283 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2285         * Fix possible race when operation is interrupted
2287 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2289         * Fix compilation on 2.6.7
2291 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2293         * Released 2.2-pre6
2295 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2297         * Fix bug in link() operation which caused the wrong path to be
2298         passed as the first argument.  Found by Anton Altaparmakov
2300 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2302         * LIB: fix double reply in readdir operation
2304         * fusermount: fix uid checking bug.  Patch by Adam Connell
2306         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2307         Patch by Keshava Gowda
2309 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2311         * KERNEL: provide correct llseek semantics for fuse device (fixes
2312         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2314 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2316         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2318 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2320         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2321         and RELEASEDIR.  This ends the ugly hack of passing a file
2322         descriptor to the kernel, and actually makes the code simpler.
2324 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2326         * Released 2.2-pre4
2328 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2330         * fusermount: remove capability setting, which was the cause of
2331         problems for some users.  It seems that FS related capabilities
2332         are removed by setfsuid(), so this isn't even needed.
2334 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2336         * fix compilation on 2.4 kernels (reported by Valient Gough)
2338         * fix failure to unmount bug (found by David Shaw)
2340         * fusermount: improve parsing of /etc/fuse.conf
2342 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2344         * Remove 'mount_max' and 'user_allow_other' module options.  These
2345         are now checked by fusermount, and can be set in /etc/fuse.conf
2347         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2349 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2351         * KERNEL: fix possible inode allocation problem, where
2352         sizeof(struct inode) is not aligned (found by Mike Waychison)
2354         * KERNEL: use new follow_link/put_link methods
2356         * KERNEL: cosmetic fixes
2358 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2360         * Released 2.2-pre3
2362 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2364         * Add missing code that was accidently left out
2366 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2368         * Released 2.2-pre2
2370 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2372         * Change "uid" mount option to "user_id" to avoid confusion with a
2373         mount option "uid" commonly used by many filesystems
2375 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2377         * Released 2.2-pre1
2379 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2381         * If FUSE is configured in the kernel, don't build it by default
2383 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2385         * Compile fix by Christian Magnusson
2387 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2389         * Fix compilation for 2.6.{0-5} kernels
2391 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2393         * KERNEL: if request is interrupted, still keep reference to used
2394         inode(s) and file, so that FORGET and RELEASE are not sent until
2395         userspace finishes the request.
2397         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2398         request with the same information, which is more flexible,
2399         simpler, works on embedded systems.
2401 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2403         * KERNEL ABI: update interface to make it independent of type
2404         sizes.  This will help on 64 bit architectures which can run
2405         legacy 32 bit applications.
2407         * KERNEL ABI: add "len" field to request headers.  This will allow
2408         sending/receiving requests in multiple chunks.
2410         * KERNEL: handle file type change more intelligently
2412         * LIB: "-o debug" option should disable backgrounding (fix by
2413         Fabien Reygrobellet)
2415 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2417         * KERNEL: invalidate dentry/attributes if interrupted request
2418         could leave filesystem in an unknown state.
2420 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2422         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2423         These will cause some regressions, but stability is considered
2424         more important.  If any of these features turns out to be
2425         important, it can be readded with the deadlock problems addressed.
2427         * Make all requests interruptible (only with SIGKILL currently).
2428         This can be used to break any deadlock produced by the userspace
2429         filesystem accessing it's own exported files.  The RELEASE request
2430         is special, because if it's interrupted before sending it to
2431         userspace it is still sent, but the reply is not awaited.
2433         * If request is interrupted before being sent to userspace, and if
2434         it hasn't yet got any side effects, it is always restarted,
2435         regardless of the SA_RESTART flag.  This makes these interruptions
2436         transparent to the process.
2438         * Remove shared-writable mmap support, which was prone to an
2439         out-of-memory deadlock situation
2441         * Remove INVALIDATE userspace initiated request
2443         * Make readpages() synchronous.  Asynchronous requests are
2444         deadlock prone, since they cannot be interrupted.
2446         * Add readv/writev support to fuse device operations
2448         * Remove some printks, which userspace FS can use for a DoS
2449         against syslog
2451         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2452         fusermount instead
2454         * LIB: improve compatibility with a fuse.h header installed in
2455         ${prefix}/include which in turn includes the real header.
2457         * LIB: improve compatibility by defining fuse_main() (which is now
2458         not used), so old configure scripts find it.
2460 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2462         * When mounting on a subdirectory of / don't duplicate slashes at
2463         the beggining of path (spotted by David Shaw)
2465 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2467         * Fix bug causing garbage in mount options (spotted by David Shaw)
2469 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2471         * Add 'writepage' flag to 'fuse_file_info'.
2473         * More comments in fuse.h
2475         * Get rid of double underscores
2477 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2479         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2481         * helper.c: add -ho option, which only displays the options not
2482         the usage header.  This can be used by filesystems which have
2483         their own options.
2485 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2487         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2488         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2489         including the fuse header
2491         * Add binary compatibility to 2.1 version of library with symbol
2492         versioning
2494 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2496         * Released 2.1
2498 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2500         * kernel: clean up writing functions
2502         * kernel: no allocation on write in direct_io mode
2504         * move linux/fuse.h to fuse_kernel.h
2506 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2508         * kernel: clean up reading functions
2510 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2512         * kernel: make readpage() uninterruptible
2514         * kernel: check readonly filesystem flag in fuse_permission
2516         * lib: don't die if version file not found and new style device
2517         exists
2519         * lib: add '-r' option, which is short for '-o ro'
2521         * fusermount: simplify device opening
2523         * kernel: when direct_io is turend on, copy data directly to
2524         destination without itermediate buffer.  More efficient and safer,
2525         since no allocation is done.
2527         * fusermount: fix warning if fuse module is not loaded
2529         * kernel: use /dev/fuse on 2.4 too
2531 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2533         * libfuse API change: open, read, write, flush, fsync and release
2534         are passed a 'struct fuse_file_info' pointer containing the open
2535         flags (open and release), and the file handle.  Verion changed to
2536         3.0.
2538 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2540         * More cleanups in the kernel
2542         * The 10,229 charater device number has been assigned for FUSE
2544         * Version file checking fix (reported by Christian Magnusson)
2546         * fusermount: opening the fuse device now doesn't need /sys.
2548         * Optimize reading by controlling the maximum readahead based on
2549         the 'max_read' mount option
2551         * fixes for UCLIBC (Christian Magnusson)
2553 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2555         * Cleaned up kernel in preparation for merge into mainline:
2557         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2559         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2561         * __user annotations for sparse
2563         * allocate individual pages instead of kmalloc in fuse_readdir,
2564         fuse_read and fuse_write.
2566         * Fix NFS export in case "use_ino" mount option is given
2568         * Make libfuse and fusermount compatible with future versions
2570         * fusermount: properly add mount options to /etc/mtab
2572 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2574         * fusermount: do not resolve last component of mountpoint on if it
2575         is '.' or '..'.  This new path resolvation is now done on mount as
2576         well as unmount.  This enables relative paths to work on unmount.
2578         * fusermount: parse common mount options like "ro", "rw", etc...
2580         * Allow module params to be changed through sysfs
2582 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2584         * Released 2.1-pre1
2586 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2588         * Fix bug in fuse_readpages() causing Oops in certain situations.
2589         Bug found by Vincenzo Ciancia.
2591         * Fix compilation with kernels versions > 2.6.9.
2593 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2595         * Check kernel interface version in fusermount to prevent
2596         strangeness in case of mismatch.
2598         * No need to allocate fuse_conn until actual mount happens
2600         * Fix potential race between umount and fuse_invalidate
2602         * Check superblock of proc file in addition to inode number
2604         * Fix race between request_send_noreply() and fuse_dev_release()
2606 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2608         * Separate configure for the kernel directory
2610         * Don't allow write to return more than 'count'
2612         * Extend kernel interface for future use
2614 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2616         * Fix 'makeconf.sh' to use autoreconf if available
2618 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2620         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2621         compatibility with earlier versions.  To compile earier versions
2622         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2623         Do not use the "use_ino" mount flag with filesystems compiled with
2624         FUSE_DIRFIL_COMPAT.
2626         * Add pkg-config support.  To compile a FUSE based filesystem you
2627         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2628         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2629         usually needs to be set to "/usr/local/lib/pkgconfig".
2631         * fuse.h is now installed in ${prefix}/include/fuse/
2633 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2635         * Added "use_ino" mount option.  This enables the filesystems to
2636         set the st_ino field on files
2638 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2640         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2641         by Jeremy Smith)
2643         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2645         * Clear the 'exited' flag when mail loop is finished
2647 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2649         * Make xattr functions work under 2.6 (bug found by Vincenzo
2650         Ciancia)
2652 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2654         * Reset request in fuse_flush() (bugreport by David Shaw)
2656 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2658         * fuse_main() now does not exit on error, rather it returns an
2659         error code
2661         * Exported __fuse_setup() and __fuse_teardown() functions, which
2662         make it easier to implement a custom event loop.
2664         * Use daemon() call to background the filesystem after mounting.
2665         This function closes the standard input, output and error and
2666         changes the current working directory to "/".
2668 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2670         * Released 1.9
2672 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2674         * Don't allow fuse_flush() to be interrupted (bug found by David
2675         Shaw)
2677 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2679         * Add PID to fuse_context.  Patch by Steven James
2681         * Change file handle type to 'unsigned long' in kernel interface
2683 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2685         * A slight API change: fuse_get_context() doesn't need the "fuse"
2686         pointer, but the returned context contains it instead.  The
2687         fuse_get() function is not needed anymore, so it's removed.
2689         * Fix mounting and umounting FUSE filesystem under another FUSE
2690         filesystem by non-root (bug spotted by Valient Gough)
2692 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2694         * Fix deadlock in case of memory allocation failure.  Patch by
2695         Christian Magnusson
2697 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2699         * Check memory allocation failures in libfuse
2701 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2703         * Check temporary file creation failure in do_getdir().  Bug
2704         spotted by Terje Oseberg
2706 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2708         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2710         * Make requests non-interruptible so race with FORGET is avoided.
2711         This is only a temporary solution
2713         * Support compiling FUSE kernel module on 2.4.x UML kernels
2715 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2717         * Fix bug in case two FORGETs for the same node are executed in
2718         the wrong order.  Bug spotted and endured for months by Franco
2719         Broi, and logfile for solution provided by Terje Oseberg
2721 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2723         * Add -D_REENTRANT to the compile flags
2725         * Add documentation of fuse internals by Terje Oseberg
2727 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2729         * Change release method to be non-interruptible.  Fixes bug
2730         causing missing release() call when program which has opened files
2731         is killed (reported by Franco Broi and David Shaw)
2733 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2735         * Add fuse_invalidate() to library API
2737 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2739         * Check permissions in setattr if 'default_permissions' flag is
2740         set.  Bug spotted by Damjan Lango
2742 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
2744         * 'large_read' mount option removed for 2.6 kernels, since the
2745         default (dynamic read size) is better
2747         * Extend kernel API with file handles.  A file handle is returned
2748         by open, and passed to read, write, flush, fsync and release.
2749         This is currently only used for debug output in the library.
2751         * Security changes:
2753         * Change the current directory to the mountpoint before checking
2754         the permissions and mount filesystem on "."
2756         * By default don't modprobe the fuse module for non-root.  The old
2757         behavior can be restored with the '--enable-auto-modprobe' flag of
2758         ./configure
2760         * By default don't allow shared writable mappings for non-root.
2761         The old behavior can be restored with the 'user_mmap=1' module
2762         parameter
2764 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
2766         * Clean up mount option passing to fusermount and to fuse_new()
2767         BEWARE: this changes the userspace API slightly, and the command
2768         line usage of programs using fuse_main()
2770 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
2772         * Optimize reading under 2.6 kernels by issuing multiple page
2773         asynchronous read requests
2775 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
2777         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2779 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
2781         * Separate directory entry and inode attribute validity timer
2783         * New write semaphore to stop page writeback during truncate
2785         * Fsync now waits for all writes to complete before sending the
2786         request
2788         * Optimization: if a page is completely written by
2789         fuse_commit_write(), clear the dirty flag and set the uptodate
2790         flag for that page
2792         * Some memory cleanup at exit
2794 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
2796         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2797         disable the "hide if open" behavior of unlink/rename.
2799         * If temporary buffer allocation fails in raw read, fall back to a
2800         smaller buffer
2802 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
2804         * Fix bug in do_open() in libfuse: open count was incremented
2805         after the reply is sent so it could race with unlink/forget and
2806         cause an abort.
2808 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
2810         * When performing create or remove operation, refresh the parent's
2811         attributes on next revalidate, as i_nlink (and maybe size/time)
2812         could be inacurate.
2814         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2815         pages (2.6 only)
2817         * Set set_page_dirty address space operation (2.6 only)
2819 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
2821         * Minor fix in read:  print debug info even if read size is zero
2823 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
2825         * Fix race between truncate and writepage (fsx-linux now runs
2826         without error)
2828 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
2830         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2831         by Mattias Wadman)
2833         * Added option for direct read/write (-r)
2835         * Fix revalidate time setting for newly created inodes
2837         * Remove uid==0 check for '-x' option in fusermount (kernel checks
2838         this)
2840         * fuse_main() only installs handlers for signals (out of INT, HUP,
2841         TERM, PIPE), for which no handler has yet been installed
2843         * Add module option 'user_allow_other' which if set to non-zero
2844         will allow non root user to specify the 'allow_other' mount option
2845         ('-x' option of fusermount)
2847         * Fix deadlock between page writeback completion and truncate
2848         (bug found by Valient Gough with the fsx-linux utility)
2850 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
2852         * Change passing fuse include dir to 2.6 kernel make system more
2853         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2854         kernel)
2856 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
2858         * Acquire inode->i_sem before open and release methods to prevent
2859         concurrent rename or unlink operations.
2861         * Make __fuse_read_cmd() read only one command.  This allows
2862         multiplexing the fuse file descriptor with other event sources
2863         using select() or poll() (patch by Jeff Harris)
2865         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2867 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
2869         * Fix file offset wrap around at 4G when doing large reads
2871 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2873         * Fix memory leak in open (Valient Gough)
2875 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2877         * Add "close after delete" support to libfuse (patch by Valient
2878         Gough)
2880         * Cancel all worker threads before exit in multithreaded mode
2882 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
2884         * Fix locking bugs
2886         * Don't send reply to RELEASE
2888         * Work with newer libtool (1.5a)
2890         * Check for st_atim member of struct stat
2892 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
2894         * No request allocation needed on inode and file release
2896 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
2898         * Fix possible inode leak in userspace in case of unfinished
2899         lookup/mknod/mkdir/symlink/link operation.
2901 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
2903         * Fix some races and cleanups in fuse_read_super()
2905 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
2907         * Requests are allocated at open time
2909 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
2911         * Build shared library as well as static (using libtool)
2913         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
2914         there has not been a release with the previous minor number, and I
2915         hope nobody is using it for anything.
2917         * Change fuse_main(), so that default behavior is to go into
2918         background if mount is successful.  '-f' and '-d' options disable
2919         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
2920         newbie complaint.
2922         * Cache ENOSYS (function not implemented) errors on *xattr, flush
2923         and fsync
2925         * Don't call getdir method from open() only from first readdir().
2926         Open is sometimes just used to store the current directory
2927         (e.g. find)
2929 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
2931         * Added flush() call
2933 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
2935         * Extended attributes support for 2.4 (patch by Cody Pisto)
2937 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
2939         * Fixed parser with modversions (Mattias Wadman)
2941 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
2943         * Added mount option parser to 2.4 build
2945 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
2947         * Replaced binary mount data with text options
2949         * Show FUSE specific mount options in /proc/mounts
2951         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
2953 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
2955         * Check some limits so userspace won't get too big requests
2957 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
2959         * Kill compile warning
2961         * Upgraded user-mount patch for 2.6.5
2963 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
2965         * Add detection of user-mode-linux to configure
2967 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
2969         * fixed zero size case for getxattr and listxattr
2971 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
2973         * new fusermount flag '-z': lazy unmount, default is not lazy
2975         * Extended attributes operations added (getxattr, setxattr,
2976         listxattr, removexattr)
2978 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
2980         * If filesystem doesn't define a statfs operation, then an
2981         all-zero default statfs is returned instead of ENOSYS
2983 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
2985         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
2987 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
2989         * Fix for uClinux (Christian Magnusson)
2991 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
2993         * fuse_main() adds "-n progname" to the fusermount command line
2995         * More kernel interface changes:
2997         * Lookup/getattr return cache timeout values
2999 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3001         * Clean up option parsing in fuse_main()
3003         * Added fuse_get() function which returns the fuse object created
3004         by fuse_main()
3006 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3008         * removed old way of mounting (fusermount mountpoint program)
3010         * more kernel interface changes:
3012         * added nanosecond precision to file times
3014         * removed interface version from mount data
3016         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3018 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3020         * statfs library API changed to match other methods.  Since this
3021           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3023         * kernel interface changes follow:
3025         * statfs changed to 64 bits, added 'bavail' field
3027         * add generation number to lookup result
3029         * optimized mknod/mkdir/symlink/link (no separate lookup is
3030         needed)
3032         * rdev size increased to 32 bits for mknod
3034         * kernel interface version changed to 3.1
3036 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3038         * user-mount upgraded for 2.6.3 kernel
3040 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3042         * Added user-mount.2.6.2-rc3.patch
3044         * Add FS_SAFE flag to fuse filesystem
3046         * fusermount should allow (un)mounting for non-root even if not
3047         suid-root
3049 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3051         * Remove MS_PERMISSION mount flag (that means something else now)
3053 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3055         * Added check for i_size_read/write functions to configure.in
3056         (patch by Valient Gough)
3058 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3060         * Fixed writing >= 2G files
3062         * Check file size on open (with generic_file_open())
3064         * Readpage calls flush_dcache_page() after storing data
3066         * Use i_size_read/write for accessing inode->i_size
3068         * Make loopback mount of a fuse file work
3070 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3072         * Released 1.1
3074 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3076         * Properly check if the inode exists in fuse_invalidate
3078 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3080         * Added -q option for fusermount
3082         * fuse_unmount() now uses -q option of fusermount, so no error is
3083         printed if the cause of the program exit is that the filesystem
3084         has already been unmounted
3086         * Fix i_nlink correctness after rmdir/unlink
3088 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3090         * Released 1.1-pre2
3092 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3094         * Fix typo (thanks Marcos Dione)
3096         * Compile fixes for 2.4 kernels
3098 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3100         * Fix CONFIG_MODVERSIONS compile on 2.6
3102 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3104         * Write all pending data before a RELEASE operation
3106         * Suppress 'Bad file descriptor' warning on exit
3108         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3109         get confused with '-d' of fuse_main() (sorry about this change)
3111         * New fusermount option '-l' which enables big reads.  Big reads
3112         are now disabled by default.
3114         * fuse_main() can accept fusermount arguments after a '--'
3116 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3118         * Support for exporting filesystem over NFS (see README.NFS)
3120 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3122         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3123         much more nicely in low-memory situations
3125         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3126         (Note: the mknod method does not yet use 32bit device number)
3128 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3130         * Code cleanups
3132 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3134         * Released 1.1-pre1
3136 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3138         * Integrated 2.6 kernel support patch by Michael Grigoriev
3140         * Improvements and cleanups for 2.6 kernels
3142 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3144         * Added -d option to fusermount
3146 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3148         * Added major+minor version to library API, and minor version to
3149           kernel API
3151 2003-12-13  David McNab <david@rebirthing.co.nz>
3153         * Implemented fsync support in examples/example.py
3155         * Implemented 'fsync' and 'statfs' methods in python
3156           interface
3158 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3160         * Make it compile on 2.4.19.
3162         * Add fsync operation (write file failed on xemacs & vi)
3164 2003-12-12  David McNab <david@rebirthing.co.nz>
3166         * Added distutils support to the python module, as per standard
3167           python development practice
3169 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3171         * Add file locking for mount/unmount (based on patch by Valient
3172         Gough)
3174 2003-12-11  David McNab <david@rebirthing.co.nz>
3176         * Python filesystem - was broken with python2.3, now fixed:
3177            - changed PyTuple_* calls to PySequence_*, because os.lstat
3178              is no longer returning a pure tuple
3179            - changed PyInt_Check() calls to also call PyLong_Check,
3180              to cover for cases (eg os.lstat) where longs are returned
3181            - Added support for file 'release' handling, which IMO is
3182              essential since this signals to a FS that writes to a file
3183              are complete (and therefore the file can now be disposed of
3184              meaningfully at the python filesystem's discretion)
3185            - Added '__init__' handler to base Fuse class, which allows
3186              your Python class to know the mountpoint and mount args,
3187              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3189         * General:
3190            - added 'mount.fuse' script (in util/ dir), which is meant to be
3191              symlinked from /sbin, and which allows FUSE filesystems to
3192              be mounted with the 'mount' command, and listed in fstab;
3193              also, mount arguments get passed to your filesystem
3196 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3198         * Fix kernel version detection (again).  Bugreport by Peter Levart
3200 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3202         * Applied read combining patch by Michael Grigoriev (tested by
3203         Valient Gough and Vincent Wagelaar)
3205 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3207         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3208         #766443)
3210 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3212         * Error code fixes in kernel module
3214 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3216         * kernel version detection fix
3218         * fusermount now uses "lazy" umount option
3220         * fusermount can use modprobe with module-init-tools
3222 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3224         * Integrated caching patch by Michael Grigoriev
3226         * Added "Filesystems" file with descriptions of projects using
3227         FUSE
3229         * Added patch by Michael Grigoriev to allow compliation of FUSE
3230         kernel module for 2.6 kernels
3232 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3234         * And another spec-file fix by Achim Settelmeier
3236 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3238         * Spec-file fix by Achim Settelmeier
3240 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3242         * Fix umount oops (found by Samuli Kärkkäinen)
3244 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3246         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3248 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3250         * Updated fuse.spec file (Achim Settelmeier)
3252 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3254         * Version 1.0 released
3256 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3258         * SuSE compilation fix by Juan-Mariano de Goyeneche
3260 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3262         * The release() VFS call is now exported to the FUSE interface
3264 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3266         * 64 bit file offset fixes in the fuse kernel module
3268         * Added function 'fuse_exit()' which can be used to exit the main
3269         loop
3271 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3273         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3274         an incompatible interface change.
3276 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3278         * Portablility fix (bug reported by C. Chris Erway)
3280 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3282         * Use Mark Glines' fd passing method for default operation instead
3283         of old reexec
3285 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3287         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3289 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3291         * fix incompatiblity with Red Hat kernels, with help from Nathan
3292         Thompson-Amato.
3294 2002-04-18  Mark Glines <mark@glines.org>
3296         * added an alternative to fuse_mount(), called
3297       fuse_mount_ioslave(), which does not need to reexec the
3298       FUSE program.
3299         * added a small helper util needed by fuse_mount_ioslave().
3301 2002-03-16  Mark Glines <mark@glines.org>
3303         * use struct fuse_statfs everywhere possible to avoid problems
3304       with the headerfiles changing struct statfs member sizes
3306 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3308         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3310 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3312         * RPM support by Achim Settelmeier
3314 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3316         * Version 0.95 released
3318 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3320         * Revaidate all path components not just the last, this means a
3321         very small performance penalty for being more up-to-date.
3323 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3325         * Update and fix python interface
3327 2002-01-07  Mark Glines <mark@glines.org>
3329         * Added statfs() support to kernel, lib, examples, and perl!
3331 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3333         * Better cross compilation support
3335         * Ported to Compaq IPAQ
3337 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3339         * Added function fuse_get_context() to library API (inspired by
3340         patch from Matt Ryan)
3342         * Added flags to fusermount and to kernel interface to control
3343         permission checking
3345         * Integrated fuse_set_operations() into fuse_new()
3347 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3349         * Applied header protection + extern "C" patch by Roland
3350         Bauerschmidt
3352 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3354         * Added perl bindings by Mark Glines
3356 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3358         * Cleaned up way of mounting simple filesystems.
3360         * fuse_main() helper function added
3362 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3364         * Optimized read/write operations, so that minimal copying of data
3365         is done
3367 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3369         * Python bindings by Jeff Epler added
3371 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3373         * Fixed vfsmount reference leak in fuse_follow_link
3375         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3376         userspace is ignored
3378 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3380         * Started ChangeLog