Fix resource leaks in fusermount
[fuse.git] / ChangeLog
blob4221c8eaab77e9438f73af7133ad274bd616e1ca
1 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
3         * In case of failure to add to /etc/mtab don't umount.  Reported
4         by Marc Deslauriers
6 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
8         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
9         worker threads.  The pause() was added in 2.2.1 to prevent
10         segfault on pthread_cancel() on an exited, detached thread.  Now
11         worker threads are not detached and pthread_cancel() should work
12         fine even after the thread exited.  Reported by Boris Protopopov
14 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
16         * fusermount: chdir to / before performing mount/umount
18         * fusermount: only allow mount and umount if util-linux supports
19         --no-canonicalize
21 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
23         * Highlevel lib: allow hash tables to shrink
25         * Highlevel lib: add slab allocation for node cache.  This will
26         allow the memory used by the filesystem to grow and shrink
27         depending on how many inodes are currently cached.
29 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
31         * Highlevel lib: use dynamically resized hash table for looking up
32         by name and node ID.
34 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
36         * Add new write_buf() method to the highlevel API.  Similarly to
37         the lowlevel write_buf() method, this allows implementing zero
38         copy writes.
40         * Add a new read_buf() method to the highlevel API.  This allows
41         returning a generic buffer from the read method, which in turn
42         allows zero copy reads.
44         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
45         methods.  Leave the ->read() and ->write() implementations for
46         reference, even though they are not necessary.
48 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
50         * Fix check for read-only fs in mtab update
52         * Open /dev/null for write instead of read for redirecting stdout
53         and stderr
55         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
56         version 2.18 or later), and umount(2) supports the
57         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
58         "fusermount -u" will call the umount(2) system call and use
59         "umount --fake ..." to update /etc/mtab
61         * Added --disable-legacy-umount option to configure.  This
62         disables the runtime checking of umount(8) version.  When built
63         with this option then "fusermount -u" will fail if umount(8)
64         doesn't support the --fake and --no-canonicalize options.
66         * Fix fuse_buf_copy() if already at the end of the buffers
68         * Add new ->write_buf() method to low level interface.  This
69         allows passig a generic buffer, either containing a memory buffer
70         or a file descriptor.  This allows implementing zero copy writes.
72         * Add fuse_session_receive_buf() and fuse_session_process_buf()
73         which may be used in event loop implementations to replace
74         fuse_chan_recv() and fuse_session_process() respectively.
76         * Remove unnecessary restoring of current working directory in
77         "fusermount -u"
79         * Add ctx->pid to debug output
81         * Fix st_nlink value in high level lib if file is unlinked but
82         still open
84         * libfuse: add store request.  Request data to be stored in the
85         kernel buffers for a given inode.
87         * libfuse: add retrieve request.  Retrieve data stored in the
88         kernel buffers for a given inode.
90 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
92         * Use LTLIBICONV when linking libfuse.  This fixes building against
93         uclibc + libiconv.  Patch by Natanael Copa
95 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
97         * Add missing argument check in ulockmgr.c to prevent calling
98         ulockmgr_server with illegal arguments. This would cause an ever
99         growing list of ulockmgr_server processes with an endless list of
100         open files which finally exceeds the open file handle limit.
101         Patch by Markus Ammer
103 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
105         * Fix option escaping for fusermount.  If the "fsname=" option
106         contained a comma then the option parser in fusermount was
107         confused (Novell bugzilla #641480).  Fix by escaping commas when
108         passing them over to fusermount.  Reported by Jan Engelhardt
110 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
112         * Add NetBSD support.  Patch from Emmanuel Dreyfus
114 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
116         * libfuse: add buffer interface.  Add a generic buffer interface
117         for use with I/O.  Buffer vectors are supplied and each buffer in
118         the vector may be a memory pointer or a file descriptor.
120         * The fuse_reply_fd() interface is converted to using buffers.
122 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
124         * Make the number of max background requests and congestion
125         threshold tunable.  New options are "max_background" and
126         "congestion_threshold".  Only effective on linux kernel versions
127         2.6.32 or greater.  Patch by Csaba Henk
129 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
131         * Add fuse_reply_fd() reply function to the low level interface.
132         On linux version 2.6.35 or greater this will use splice() to move
133         data directly from a file descriptor to the fuse device without
134         needing to go though a userspace buffer.  With the
135         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
136         directly into the filesystem's cache.  On earlier kernels it will
137         fall back to an intermediate buffer.  The options
138         "no_splice_write" and "no_splice_move" can be used to disable
139         splicing and moving respectively.
141 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
143         * Fix out-of-source build.  Patch by Jörg Faschingbauer
145         * Add a "nopath" option and flag, indicating that path argument
146         need not be calculated for the following operations: read, write,
147         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
148         fgetattr, lock, ioctl and poll.
150 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
152         * Remove "chmod root" from install of fusermount.  Reported by
153         Lucas C. Villa Real
155 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
157         * Released 2.8.4
159 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
161         * Fix checking for symlinks in umount from /tmp.  Reported by Al
162         Viro
164         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
166 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
168         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
169         Bruylants
171 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
173         * Fix stack alignment for clone()
175 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
177         * Released 2.8.3
179 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
181         * Using "--no-canonicalize" with umount(8) conflicts with the race
182         fix, sinceit assumes the supplied path is absolute, while the race
183         fix relies on the path being relative to the current directory.
184         Reported by Tom Rindborg
186 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
188         * Released 2.8.2
190 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
192         * Fix race if two "fusermount -u" instances are run in parallel.
193         Reported by Dan Rosenberg
195         * Make sure that the path to be unmounted doesn't refer to a
196         symlink
198 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
200         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
202 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
204         * Use '--no-canonicalize' option of mount(8) (available in
205         util-linux-ng version 2.17 or greater) to avoid calling
206         readling(2) on the newly mounted filesystem before the mount
207         procedure is finished.  This has caused a deadlock if "audit" was
208         enabled in the kernel.  Also use '--no-canonicalize' for umount to
209         avoid touching the mounted filesystem.
211 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
213         * Released 2.8.1
215 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
217         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
219 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
221         * Released 2.8.0
223 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
225         * Add missing fuse_session_data to versionscript
227         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
229 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
231         * Clarify how the protocol version should be negotiated between
232         kernel and userspace.  Notably libfuse didn't correctly handle the
233         case when the supported major versions didn't match
235         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
237 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
239         * The context is extended with a 'umask' field.  The umask is sent
240         for mknod, mkdir and create requests by linux kernel version
241         2.6.31 or later, otherwise the umask is set to zero.  Also
242         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
243         supports this feature, then this flag will be set in conn->capable
244         in the ->init() method.  If the filesystem sets this flag in in
245         conn->want, then the create modes will not be masked.
247         * Add low level interfaces for lookup cache and attribute
248         invalidation.  This feature is available in linux kernels 2.6.31
249         or later.  Patch by John Muir
251         * Kernel interface version is now 7.12
253         * fusermount: Do not silently ignore command line arguments.
254         Patch by Sebastian Harl
256 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
258         * Released 2.8.0-pre3
260 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
262         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
263         level lib) functions to query the supplementary group IDs for the
264         current request.  Currently this is implemented on Linux by
265         reading from the /proc filesystem.
267 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
269         * Add "noforget" option to high level lib to prevent ESTALE errors
270         on NFS exported filesystems.  This result in paths being cached
271         forever, resulting in ever growing memory usage.  Use with care.
273         * Add "no_remote_lock" option to disable remote file locking even
274         if the filesystem implements it.  With this option locking
275         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
276         will ignore remotely locked files.
278         * CUSE patches from Tejun Heo:
280         * Unrestricted ioctl support left some debris.  Clean them up:
281           o No reason to pass around pointer to flags.  Pass flags directly.
282           o Clean up comment and prototype parameter names.
283           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
284           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
286         * Add fuse_reply_ioctl_iov()
288         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
289         and make send_reply_iov() and fuse_setup_common() global (also in
290         fuse_i.h).  These will be used by CUSE support.
292         * Restructure fuse_ll_process()
294         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
295         operations as dir operations don't make sense for CUSE where one
296         instance implements single character device.
298         CUSE support comes with its own cuse_lowevel_ops and related
299         initialization and helper functions.  Except for initialization, it
300         usage is basically identical to FUSE.
302         This patch also adds example/cusexmp.c which can create a character
303         device with name and device number specified on command line.  The
304         created device itself is pretty boring.  It's a bit bucket supporting
305         read, write and access via ioctl.
307 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
309         * Add missing fuse_reply_bmap to versionscript.  Debian
310         Bug#531329.  Reported by Goswin Brederlow
312 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
314         * Don't call forget_node() if the lookup was negative and write()
315         for the reply returned ENOENT.  Reported by John Haxby
317 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
319         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
321 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
323         * Fix missing newlines in some printfs
325         * Fix 'make install-strip'.  Reported by Dominick Layfield
327 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
329         * Released 2.8.0-pre2
331 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
333         * Implement poll support.  Patch by Tejun Heo
335         * Add missing setattr flags to <fuse_lowlevel.h>.
337         * Only pass valid flags to ->setattr().
339 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
341         * Implement ioctl support.  On high level interface only
342         "restricted" ioctls are supported (which are defined with the
343         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
344         will only be allwed to CUSE (Character Device in Userspace)
345         servers.  Patch by Tejun Heo
347 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
349         * If open sets fi->nonseekable, libfuse will tell the kernel that
350         the file is not seekable.  Patch by Tejun Heo
352 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
354         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
355         interrupt handling function.  Reported by Tero Marttila
357 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
359         * Allow commas in options to be escaped with a backslash
361         * Add new function: fuse_opt_add_opt_escaped()
363         * Add missing fuse_reply_bmap() to the version script
365 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
367         * Pass current file flags to read and write operations
369 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
371         * Clean up debug output in highlevel lib
373 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
375         * Released 2.8.0-pre1
377 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
379         * Fix handling of (no)suid and (no)dev options if filesystem is
380         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
382         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
383         read-only filesystem.  This works around issues with certain mount
384         implementations.  Reported by Szabolcs Szakacsits.
386 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
388         * Remove fuse kernel module sources.  Linux 2.6.27 will support
389         NFS exporting.
391 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
393         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
394         Szakacsits
396         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
397         Szabolcs Szakacsits
399 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
401         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
403 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
405         * Don't allow bigger than 4kB writes by default on 2.6.26 and
406         later kernels, so that filesystems not expecting this are not
407         broken on a kernel upgrade.  Provide a 'big_writes' mount option
408         to enable this feature.  In future API revisions this may become
409         the default.
411 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
413         * Update warning message for missing newline at end of fuse.conf
415         * Update debug message for successful operation to not include the
416         string "error:"
418 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
420         * Update error message for missing mountpoint parameter.  Reported
421         by Allen Pulsifer
423 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
425         * Print library version information to debug output
427         * Highlevel lib: don't limit paths to 4095 characters
429 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
431         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
433 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
435         * Fix missing pthread_mutex_destroy in error path of
436         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
438 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
440         * Add queuing on contention to per-node lock algorithm, to avoid
441         starvation.
443         * Only enable cancelation when reading a request, otherwise
444         cancellation could happen with a mutex held, which could hang the
445         process on umount
447 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
449         * Block SIGCHLD when executing mount and umount
451         * fusexmp_fh: avoid unnecessary seeking in readdir
453         * Update kernel interface to 7.9:
455         * Support receiving file handle from kernel in GETATTR request
457         * Allow operations with a NULL path argument, if the filesystem
458         supports it
460         * Add support atomic open(O_TRUNC)
462         * Support the st_blksize field in struct stat
464         * If the "FUSE_THREAD_STACK" environment is set, initialize the
465         stack size of threads by this value.  Patch by Florin Malita
467         * Add per-node locking, instead of a global tree lock to protect
468         the path from changing during operations.  Original patch by
469         Rodrigo Castro
471 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
473         * lib/mount_bsd.c:
474         - string formatting fixes
475         - exit if mounting has failed
476           (in FreeBSD a mount failure is not critical per se, as the daemon
477           still could be mounted externally, but waiting for such an event
478           is more confusing than fruitful)
479         - ditch the kvm(8) stuff and simply use forced unmount which just
480           won't block
481         - prettify option specifications
482         - add "-onosync_unmount" kernel option
484 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
486         * lib/mount_bsd.c:
487         - refine device closing in a race-free way
488         - add support for "-osubtype" on FreeBSD
490         * makeconf.sh: make it work under FreeBSD
492 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
494         * lib/mount_bsd.c: close device before unmount
495         (cf. lib/mount.c rev. 1.43) and fix some warnings 
497 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
499         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
501 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
503         * Released 2.7.2
505 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
507         * Fix kernel module compile for 2.6.24
509         * Invalidate attributes of parent directory after create(), since
510         the modification time changes.  Invalidate attributes on rename,
511         since some filesystems may update st_ctime.  Reported by Szabolcs
512         Szakacsits
514         * Fix NFS exporting to handle 64bit node IDs
516         * Disable old symbol versions if __UCLIBC__ is defined.  If a
517         symbol in a library has multiple versions, the runtime linker in
518         uClibc seems to randomly choose between them.
520         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
521         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
523         * Close fuse device file descriptor before calling umount(),
524         preventing a deadlock when umount is synchronous.  Reported by
525         Szabolcs Szakacsits
527 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
529         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
530         symlink.  This bug was introduced in 2.7.1 by "Don't call
531         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
533 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
535         * Released 2.7.1
537 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
539         * Clarify licence version to be "LGPLv2" for the library
541         * kernel fixes:
543         * After mount set nlink attribute for the root inode to 1
545         * Fix wake up of task waiting for a reserved request
547         * Fix allowing setattr, listxattr and statfs for other users
549 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
551         * Add missing context initialization in fuse_fs_chmod().  Bug
552         found by "iohead"
554         * Fix kernel module compilation for 2.6.23.  Based on patch by
555         Marian Marinov
557 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
559         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
561 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
563         * Work around hotplug issue, that it calls filesystem with file
564         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
566 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
568         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
569         Tomas M
571         * Also don't touch /etc/mtab if it is within the mounted
572         filesystem.  Suggested by Jeffrey Law
574 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
576         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
577         C. Villa Real
579 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
581         * Released 2.7.0
583 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
585         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
586         filesystem is only invoking fuse to print a help message, or
587         version.  Fixes RedHat bugzilla #217343
589 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
591         * lib: fix locking when loading a filesystem module
593 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
595         * Add fs subtype support to mount.fuse
597 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
599         * Add fs subtype support to libfuse and fusermount
601 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
603         * kernel: sync with mainline (2.6.22)
605 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
607         * Send debug output to stderr instead of stdout.  Patch by Jan
608         Engelhardt
610 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
612         * libulockmgr: Work around a kernel bug in recv(), causing it to
613         sometimes return zero even if data was available on the socket.
615 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
617         * lib: optimization: store parent pointer in node instead of
618         parent id
620 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
622         * lib: don't create new thread for each FORGET request.  FORGET
623         messages sometimes caused so many threads to be created, that
624         process virtual memory space ran out.  Reported by Chris AtLee
626 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
628         * lib: fix memory leak on thread creation failure in multithreaded
629         event loop.  Found by Chris AtLee
631 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
633         * lowlevel lib: add fuse_reply_iov function, which is similar to
634         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
635         Willcocks
637 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
639         * Fix Oops or error if a regular file is created with mknod(2) on
640         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
641         J. Cameijo Cerdeira for the report
643 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
645         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
646         Error reported by Csaba Henk, fix by Miklos Szeredi
648         * libfuse: fix unlock in flush
650         * libfuse: do unlocking on RELEASE+FLUSH
652 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
654         * Released 2.7.0-rc1
656 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
658         * kernel: sync with mainline:
660         * Use invalidate_mapping_pages() if available
662         * Fix BUG when invalid file type is supplied in mount. Patch by
663         Timo Savola
665 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
667         * libfuse: call umount(8) directly instead of fusermount if
668         possible
670         * Clean up init script, make it LSB compliant
672 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
674         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
675         up the main thread on umount.  This is more elegant, and works
676         even if signals are blocked.
678 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
680         * Improve mounting support in libfuse:
681          - check non-empty mountpoint
682          - only fall back to fusermount when necessary
684 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
686         * Don't chdir to "/" in foreground mode, it causes more trouble
687         than it's worth
689 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
691         * Replace utils/mount.fuse "sh" script with a "C" program
693 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
695         * Add -lulockmgr to compilation comment in fusexmp_fh.c
697 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
699         * Check for iconv.  Patch by Csaba Henk
701         * Add direct umounting
703         * Use "fusectl" as the device for the fusectl filesystem.  Debian
704         Bug#417945.  Reported by Laurent Bonnaud
706 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
708         * Fix some FreeBSD related macros.
710 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
712         * Add support for direct mounting by libfuse.  Fall back on
713         calling fusermount if it doesn't work
715 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
717         * Released 2.7.0-pre1
719 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
721         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
722         Bruno
724         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
725         by Thomas Weinbrenner
727 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
729         * Fix detection of installed fuse in init script.  Reported and
730         fix suggested by Davide Canova
732 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
734         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
735         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
737 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
739         * Compile fuseblk for kernels which don't have an option to turn
740         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
741         Szabolcs
743 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
745         * Add filesystem stacking support to high level API.  Filesystem
746         modules can be built into libfuse or loaded from shared object
747         (.so) files
749         * Add 'subdir' and 'iconv' built in modules
751         * lib/fuse.c: Fix locking for the reply code in create and open
753 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
755         * kernel: make it compile on "strange" kernels which have emulated
756         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
757         Mateja
759 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
761         * kernel: fix BUG in control filesystem if it is umounted and
762         mounted again, while some fuse filesystems are present.
763         Bugreport from Florent Mertens
765         * kernel: sync with mainline, support 2.6.20
767 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
769         * lib/Makefile.am: actually link libfuse against libfuse_libs
771 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
773         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
774         Ian Abbott
776 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
778         * Fix abort in fuse_new() compatibility API for opts == NULL case.
779         Novell bugzilla #233870.  Patch from Takashi Iwai.
781 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
783         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
785 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
787         * Fix unaligned access in file desctriptor passing in libfuse,
788         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
789         tested by Sebastian Fontius
791 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
793         * kernel: don't keep unreferenced inodes in the icache.
795 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
797         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
798         Szabolcs
800         * lib: Fix use after free in fuse_flush().  Reported by Ron
801         Lindman
803 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
805         * mount.fuse: add "setuid=USER" option which does a "su - USER"
806         for the filesystem
808         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
809         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
810         the ugly code dealing with mtab, as well as a possible race
811         between fusermount and mount trying to modify /etc/mtab at the
812         same time
814         * Fix "buffer size too small: 4" warning for users of the
815         fuse_loop_mt_proc() function.
817 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
819         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
820         Harshavardhana
822         * Add extra warning options, and fix resulting warnings
824         * Really fix fuse_teardown problem
826 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
828         * Add -lrt to fuse.pc (if needed) to fix static linking against
829         libfuse.  Reported by Szakacsits Szabolcs
831 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
833         * Released 2.6.1
835 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
837         * Fix API version 21 and 22 compatibility for fuse_teardown.
838         Reported by Bgs
840 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
842         * fusermount: Print a more helpful message in case the kernel
843         doesn't support the 'fuseblk' filesystem type.  This has been
844         biting ntfs-3g users.  Reported by Yura Pakhuchiy
846         * kernel: fix build problem for "make -C ...".  Reported by
847         Stephen Bryant
849 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
851         * Fix bug in certain error paths of lookup routines.  The request
852         object was reused for sending FORGET, which is illegal.  This bug
853         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
854         silently corrupt memory in earlier versions.  Report and test
855         program by Russ Cox
857 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
859         * Print an error if an incompatible kernel interface version is
860         detected in INIT.  This will only show if filesystem is started
861         with -d or -f
863         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
864         fuse_setup_common().  Reported by Szakacsits Szabolcs
866 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
868         * Fix recursive locking in fuse_create().  Thanks to Takuya
869         Ishibashi for the bug report
871 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
873         * Fix automake problem.  Patch from Nix
875 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
877         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
878         always available on embedded systems.  Patch from Paul Smith
880         * Fix util/Makefile.am, so that failure to run update-rc.d or
881         device creation doesn't cause make to fail.  Reported by Paul
882         Smith
884 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
886         * Released 2.6.0
888 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
890         * fusermount: don't try to create a lock file if /etc/mtab is a
891         symlink.  Report and patch from Alexei Sheplyakov (debian bug
892         #393693)
894 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
896         * Minor changes, sync with mainline tree
898 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
900         * Released 2.6.0-rc3
902 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
904         * kernel: cleanups
906 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
908         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
909         Report from David Shaw
911         * lib: Fix lost error on renaming a file. Report from David Shaw
913         * lib: Fix lost error on hiding open files (renaming to
914         .fuse_hiddenXXXX)
916         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
917         activity.  The cause of the bug was that some calls to
918         i_size_write() were not protected by a lock, and hence
919         i_size_seqcount could become corrupted.  This caused subsequent
920         calls to i_size_read() to spin forever.  This is a long standing
921         bug was probably introduced in version 2.2, and thought to be
922         related to NFS exporting (it's not).  It was reported by various
923         people, but Dana Henriksen has finally helped me to track it down,
924         so big thanks to him
926         * kernel: Protect against truncation of a swapfile
928 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
930         * kernel: Check for signature of super_operations->umount_begin().
931         Ubuntu kernel 2.6.17 seems to use the new signature found in
932         2.6.18.  Thanks to Florent Mertens for the report
934 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
936         * Make sure inode numers wrap around at 2^32.  This is needed on
937         dual 64bit/32bit architectures, because 32bit applications using
938         the non-largefile interface would otherwise break (EOVERFLOW error
939         would be returned by the stat() system call family)
941         * ulockmgr: handle the case, when a locking operation fails
942         because no more file desctriptors are available in
943         ulockmgr_server.  Also work around a Linux kernel bug (known to
944         exist for all Linux kernel versions <= 2.6.18) which may cause
945         sent file descriptors to be lost in the above case
947         * ulockmgr: optimize file descriptor use
949         * restore needed cpp flags to util/Makefile.am
951         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
953         * Minor clean up of udev rules
955         * Add a synchronous DESTROY message to kernel interface.  This is
956         invoked from umount, when the final instance of the filesystem is
957         released.  It is only sent for filesystems mounted with the
958         'blkdev' option for security reasons.
960         * If the DESTROY message is received, call the filesystem's
961         ->destroy() method.  In this case it's not called from session
962         destruction as it would be otherwise.
964 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
966         * Released 2.6.0-rc2
968 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
970         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
971         patch by Csaba Henk
973         * Add init script to insert fuse module and mount the control
974         filesystem.  The script is installed as /etc/init.d/fuse and on
975         debian based systems (where update-rc.d is available) symlinks
976         from /etc/rc*.d/ are also installed.
978         * Include '#define FUSE_USE_VERSION=XX' into examples so they
979         become more self contained.
981 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
983         * API changes:
985         * Move lock_owner from a separate argument into fuse_file_info
987         * Add a flag to fuse_file_info indicating (1) a highlevel lock
988         operation (unlock all) was initiated by a flush, (2) a lowlevel
989         release operation should perform a flush as well.
991         * fusermount: revert modprobe change (2006-08-18) since it
992         doesn't work reliably with udev
994         * Add support for block device backed filesystems.  This mode is
995         selected with the 'blkdev' option, which is privileged.
997         * Add support for the bmap (FIBMAP ioctl) operation on block
998         device backed filesystems.  This allows swapon and lilo to work on
999         such filesystems.
1001         * kernel changes:
1003         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1004         previous (2.5.x) release can be used with library from this
1005         release
1007         * In fuse_dentry_revalidate() use dget_parent() instead of
1008         dereferencing d_parent, since there's no protection against parent
1009         changing and going away
1011         * Protect nlookup from concurrent updates
1013         * In lookup if a directory alias exists but is unused,
1014         then get rid of it, otherwise return -EBUSY.
1016         * In mkdir if a directory alias exists, return success, but leave
1017         dentry negative.  In reality this could happen if a remote rename
1018         immediately followed the mkdir.
1020         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1021         good inode.  This could happen if several lookups are racing for
1022         the same inode.
1024 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1026         * Fix compilation on 2.6.9.  Report from Troy Ayers
1028 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1030         * Fix Oops in fuse_readpages().  Reported by David Shaw
1032 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1034         * Add support for nanosec times on FreeBSD
1036         * Fix FreeBSD compatibility issues
1038 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1040         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1042         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1044 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1046         * Fixed several compatibility bugs in low level interface.
1047         Reported by Ricardo Correia
1049         * Add workaround for ARM caching bug
1051 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1053         * Rename new utimes() method to more logical utimens()
1055 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1057         * Fuse tried to unlink already unlinked hidden files.  Bug
1058         reported by Milan Svoboda
1060 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1062         * Released 2.6.0-rc1
1064 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1066         * kernel: Fix unlock on close for kernels < 2.6.18
1068         * Add ulockmgr library & server.  This can be used for handling
1069         file locking requests either directly from libfuse or over a
1070         network, etc.  This first version is not optimized and the number
1071         of file descriptors it uses may get out of hand
1073 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1075         * lib: Add interrupt support to high level library, which may be
1076         enabled with the 'intr' mount option.
1078         * When an operation is interrupted the thread handling that
1079         operation will receive SIGUSR1 (or other signal specified with the
1080         'intr_signal=N' option).  The library installs a no-op signal
1081         handler for this signal, unless there's already a handler
1082         installed.
1084         * The filesystem may query interrupt status (regardless of 'intr')
1085         with the fuse_interrupted() function.
1087         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1089 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1091         * lib: Multithreaded loop now allows unlimited number of threads.
1092         This is needed for locking operations which may block
1093         indefinitely.  Also the kernel now doesn't limit the number of
1094         outstanding requests so the library shouldn't do so either.
1096 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1098         * Fix recursive lock bug in interrupt handling
1100         * Add utimes() method to highlevel interface, which supports
1101         setting times with nanosecond resolution
1103 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1105         * kernel: fix page leak if fuse_readpages() failed in it's
1106         initialization.  Bug found and original patch from Alexander
1107         Zarochentsev
1109         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1110         the kernel tree) the statfs method will receive the path within
1111         the filesystem on which the stat(v)fs syscall was called
1113         * fusermount: try to modprobe fuse module if invoked by root and
1114         unable to open device.  This is needed with udev, since the device
1115         node will be created only when the module is inserted, hence
1116         module autoloading won't work.  Reported by Szakacsits Szabolcs
1118 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1120         * fusermount: if selinux is active, restore the original file's
1121         security context in unmount_rename().  Redhat bugzilla id 188561.
1122         Patch from Yves Perrenoud
1124         * Add POSIX file locking operation to high level library
1126         * Initialize context for unlink of hidden files on umount.  Bug
1127         reported by Tim Stoakes
1129 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1131         * Multiple release() calls can race with each other, resulting in
1132         the hidden file being deleted before the last release finishes.
1133         Bug found and patch tested by Mark Huijgen
1135 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1137         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1138         this makes sense on systems using udev.  Reported by Szakacsits
1139         Szabolcs
1141 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1143         * Released 2.6.0-pre3
1145 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1147         * Support in kernel module for file locking and interruption.  The
1148         same functionality is available in official kernels >= 2.6.18
1150 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1152         * Add POSIX file locking support
1154         * Add request interruption
1156 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1158         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1160 2006-06-05  Remy Blank <remy.blank@pobox.com>
1162         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1163         unmounting succeeds even if mount point was relative.
1165 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1167         * lib: fix emergency umount in helper.c when malloc fails.
1168         (The way it was done would end up in a segfault.)
1170 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1172         * lib: adjust threading related compiler flags.
1173         Switch to "-pthread" from "-lpthread" as that's the preferred
1174         one on several platforms. Consulted with Terrence Cole and
1175         Miklos Szeredi
1177 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1179         * lib: search fusermount in installation directory (bindir) as
1180         well as in PATH.
1182 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1184         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1185         Reported by Christian Magnusson
1187 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1189         * lib: make FreeBSD mount routine recognize if kernel features
1190         backgrounded init and if it does, run the mount util in foreground
1191         (similarly to Linux)
1193 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1195         * kernel: fix fput deadlock fix, the lockless solution could lead
1196         to "VFS: busy inodes after umount..."
1198         * kernel: fix race between checking and setting file->private_data
1199         for the device.  Found by Al Viro
1201 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1203         * kernel: remove request pool, instead allocate requests on
1204         demand.  Account the number of background requests, and if they go
1205         over a limit, block the allocation of new requests.
1207         * kernel: fix deadlock if backgrounded request holds the last
1208         reference to the super block
1210         * kernel: don't use fuse_reset_request() during direct I/O
1212 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1214         * lib: Let FreeBSD mount option parsing routine recognize "no"
1215         prefixes for FUSE specific options as well
1217 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1219         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1221 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1223         * API changes:
1225         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1226         user_data parameter
1228         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1229         file descriptor
1231         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1232         destroys the given channel
1234         * fuse_teardown() no longer has a file descriptor parameter
1236         * new exported functions: fuse_session_remove_chan(),
1237         fuse_get_session(), fuse_daemonize()
1239         * fuse_chan_recv() may now return a new channel which will be used
1240         to send the reply
1242 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1244         * Released 2.6.0-pre2
1246 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1248         * Don't unmount if already unmounted.  This fixes a problem seen
1249         in the following situation: Lazy unmount a busy filesystem; Mount
1250         a new one in top; When the first finally unmounts, the second also
1251         unmounts.  Reported by Franco Broi
1253 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1255         * lowlevel lib: use indirect function calls instead of a
1256         switch/case construct.  Besides increased efficiency it helps
1257         maintainability & readability too.  Patch from Florin Malita
1259 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1261         * kernel: replace global spinlock with a per-connection spinlock
1263 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1265         * Fix source compatibility breakage for fuse_unmount().  Report
1266         from Yura Pakhuchiy
1268 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1270         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1272 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1274         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1275         Jeff Dike
1277         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1278         interface to return -errno in case of error.
1280 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1282         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1283         FreeBSD implementation so that it uses libc (sysctl backed) instead
1284         of an embdedded script (kmem backed). Adjust the control flow of
1285         hello_ll so that device doesn't get closed before unmount attempt.
1287 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1289         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1290         implement method.  This is needed on FreeBSD, and nicer on Linux
1291         too.  Highlevel lib already did this.  Reported by Csaba Henk
1293         * Fix negative entry handling.  There was a bug, that negative
1294         lookups with timeouts (nodeid == 0) returned -EIO.
1296 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1298         * Fix race between RELEASE and UNLINK, which might leave
1299         .fuse_hidden* files around
1301 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1303         * fusexmp_fh: implement flush() method and call close() on the
1304         open file descriptor.  This is needed if used on an NFS
1305         filesystem, which buffers data until file is closed.  Franco Broi
1306         spotted the situation when 'cp -p' failed to set the modification
1307         time because of this.
1309 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1311         * Released 2.6.0-pre1
1313 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1315         * libfuse: fix use-after-free bug in interruptred reply_entry().
1316         Patch from John Muir
1318         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1319         ID: 352631.  Found by Stéphane Rosi
1321 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1323         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1324         into a single function fuse_add_direntry().  This cleans up the
1325         interface and makes it possible to do stacking.
1327 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1329         * Fix rare race betweeen abort and release caused by failed iget()
1330         in fuse_create_open().
1332         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1333         own attribute caching.
1335 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1337         * Work around FreeBSD runtime linker "feature" which binds an old
1338         version of a symbol to internal references if the symbol has more
1339         than one version.  This resulted in infinite recursion in
1340         fuse_lowlevel_new_compat25().
1342 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1344         * Refine clock_gettime() querying so that linker options
1345         shall be set as it's appropriate for the target platform.
1347 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1349         * Fix udev rule syntax.  Reported by Nix
1351 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1353         * In some cases udev rule seems to be ineffective when installed
1354         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1356 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1358         * Fix compilation when build directory is different from source
1359         directory.  Reported by Frédéric L. W. Meunier
1361 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1363         * Fix even bigger bug introduced in fix for request_end() on
1364         2006-01-14.  Reported by Gal Rosen
1366 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1368         * highlevel-lib: add 'auto_cache' option.  This caches file data
1369         based on modification time and size
1371 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1373         * Sanitize storage type and help message in mount_bsd.c.  Patch
1374         from Csaba Henk
1376         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1377         FUSE_OPT_KEY_DISCARD
1379         * Add options 'max_readahead', 'sync_read' and 'async_read'
1381         * Kernel ABI version 7.6:
1383         * Negotiate the 'max_readahead' value and 'async_read' flags with
1384         userspace in the INIT method
1386         * Add connection info to ->init() methods to both lowlevel and
1387         highlevel API
1389         * Fall back to synchronous read() behavior if either library or
1390         userspace filesystem is using the old interface version.  This is
1391         needed so non-updated filesystems won't be confused by the
1392         different read() behavior
1394 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1396         * lib: if "fsname=" option was given, pass it to fusermount
1398         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1399         needed by filesystems to implement some argument manipulations
1400         correctly
1402         * fuse_opt: fix memory leak in handling "--" option
1404 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1406         * kernel: fix detection of case when fuse is not configured into
1407         the kernel either as module or built-in
1409         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1410         'template' structure member to 'templ'.  Reported by Takashi Iwai
1412         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1414         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1416 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1418         * Added (again) asynchronous readpages support
1420         * Each connection now shows up under /sys/fs/fuse/connections
1422         * Connection attributes exported to sysfs: 'waiting' number of
1423         waiting requests; 'abort' abort the connection
1425         * Connection may be aborted through either the sysfs interface or
1426         with 'umount -f mountpoint'
1428 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1430         * Released 2.5.0
1432 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1434         * kernel: fix a couple of bugs
1436         * Order of request_end() and fuse_copy_finish() was wrong.
1437         Posthumous note: Franco Broi managed to exploit this, though it
1438         seemed quite impossible
1440         * request_end() used request pointer after decrementing refcount
1442         * Clearing ->connected or ->mounted connection flags could race
1443         with setting other bitfields not protected with a lock
1445 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1447         * kernel: add necessary compile flags for 2.4.X/x86_64.
1448         Report from Sean Ziegeler
1450 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1452         * Released 2.5.0-pre2
1454 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1456         * Applied patch from Csaba Henk, to update mount_bsd to new
1457         fuse_mount() semantics
1459         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1460         Steiner and Don Taber
1462         * fusermount: add 'dirsync' mount option
1464 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1466         * Improved help reporting and added version reporting to library
1468 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1470         * Change working directory to "/" even if running in the
1471         foreground.  Patch from Jonathan Brandmeyer
1473         * Changed lots of functions to use 'struct fuse_args' instead of
1474         separate argc and argv
1476         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1477         fuse_remove_signal_handlers() functions, so that it's now pretty
1478         easy to get all the functionality of fuse_main() with a filesystem
1479         using the lowlevel API.
1481 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1483         * mount.fuse: the 'user' option should be ignored. Report and
1484         solution from Mattd.
1486         * mount.fuse: export PATH in the right place. Report and patch
1487         from Hannes Schweizer
1489 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1491         * Clean up the option parsing interface slightly, by creating an
1492         "argument list" structure, that contains the argument vector and
1493         count
1495 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1497         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1498         in that case
1500         * kernel: simplify request size limiting. INIT only contains
1501         maximum write size, maximum path component size remains fixed at
1502         1024 bytes, and maximum xattr size depends on read buffer.
1504 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1506         * Fix readdir() failure on x86_64, of 32bit programs compiled
1507         without largefile support.  Bug report and help from Anthony
1508         Kolasny
1510         * If lookup returns invalid mode, return -EIO instead of creating
1511         a regular file
1513         * Add current output argument vector to option processing
1514         function
1516 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1518         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1520 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1522         * Released 2.5.0-pre1
1524 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1526         * libfuse: added option parsing interface, defined in
1527         <fuse_opt.h>.
1529 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1531         * Return EIO for file operations (read, write, fsync, flush) on
1532         open files whose inode has become "bad".  Inodes will be marked
1533         "bad" if their type changes.  Bug report by Csaba Henk
1535 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1537         * Use bigger request buffer size.  write() did not work on archs
1538         with > 4k page size, Bug report by Mark Haney
1540         * ABI version 7.5:
1542         * Extend INIT reply with data size limits
1544 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1546         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1547         reported by Vincenzo Ciancia
1549         * Handle exit-by-umount in fuse_read_cmd()
1551 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1553         * Check if '-msoft-float' option is supported by compiler when
1554         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1556         * In multithreaded loop send a TERM signal to the main thread if
1557         one of the other threads exit.  Needed on FreeBSD for a clean exit
1558         on umount.  Should not cause any harm on Linux either
1560 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1562         * Fix bug in 32-bit file handle compatibility
1564 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1566         * Block TERM, INT, HUP and QUIT signals in all but the main
1567         thread.  According to POSIX it's not specified which thread will
1568         receive these signals.
1570         * Kernel changes:
1572         * Check for directory aliasing on mkdir, not just on lookup
1574         * Check for special node ID values in create+open operation
1576         * Sync with -mm: readv, writev, aio_read and aio_write methods
1577         added to file operations
1579         * Cleanups: lookup code, page offset calculation
1581         * ABI stepped to 7.4, changes:
1583         * frsize member added to fuse_kstatfs structure
1585         * added support for negative entry caching: on lowlevel API if
1586         fuse_entry_param::ino is set to zero in reply to a lookup request,
1587         the kernel will cache the dentry for the specified amount of time.
1589         * libfuse: added 'negative_timeout' option: specifies how much
1590         negative entries should be cached.  Default is zero, to be
1591         compatible with prior versions
1593 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1595         * Add detection of mainline FUSE code in running kernel
1597 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1599         * Don't use async cancelation in multithreaded loop.  This makes
1600         it more portable to systems where read() is not async cancel safe.
1601         Report from Andriy Gapon
1603 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1605         * Warn if API version 11 compatibility is requested
1607 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
1609         * More FreeBSD merge
1611         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1612         them, because it corrupts /etc/mtab.  Found by Thomas Biege
1613         CVE-2005-3531
1615         * libfuse: don't use system() to invoke 'fusermount -u ...'
1616         because it breaks mountpoints with spaces in them into multiple
1617         arguments
1619 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
1621         * Merge library part of FreeBSD port.  Patch by Csaba Henk
1623 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
1625         * Use 64bit type for file handle, so the full range supported by
1626         the kernel interface is available to applications
1628 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
1630         * Moved mountpoint argument checking from fuse_parse_cmdline() to
1631         fuse_mount() in preparation to FreeBSD merge.
1633 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
1635         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
1636         Henk.
1638 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
1640         * Make the statfs change backwards compatible.
1642 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
1644         * Change ->statfs() method to use 'struct statvfs' instead of
1645         'struct statfs'.  This makes the API more portable since statvfs()
1646         is defined by POSIX.
1648 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
1650         * Add fgetattr() method, which currently will only be called after
1651         a successful call to a create() method.
1653 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
1655         * Change kernel ABI version to 7.3
1657         * Add ACCESS operation.  This is called from the access() system
1658         call if 'default_permissions' mount option is not given, and is
1659         not called on kernels 2.4.*
1661         * Add atomic CREATE+OPEN operation.  This will only work with
1662         2.6.15 (presumably) or later Linux kernels.
1664         * Add ftruncate() method.  This will only work with 2.6.15
1665         (presumably) or later Linux kernels.
1667         * Fix kernel module compile if kernel source and build directories
1668         differ.  Report and initial patch by John Eastman
1670 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
1672         * lib: optimize buffer reallocation in fill_dir.
1674 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
1676         * Released 2.4.1
1678 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
1680         * libfuse: add debug for write result (by Shaun Jackman) and
1681         warnings for too large read/write result
1683 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
1685         * Spelling fixes, thanks to Ioannis Barkas
1687 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
1689         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
1690         patch
1692 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
1694         * highlevel-lib: init() and destroy() methods didn't have an
1695         initialized fuse_context.  Bug reported by Tim Stoakes
1697 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
1699         * Released 2.4.0
1701 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
1703         * Add documentation to fuse_lowlevel.h
1705         * API cleanups:
1707         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1709         * Move fuse_mount() and fuse_unmount() to fuse_common.h
1711         * Change the return type of fuse_reply_none() from int to void.
1713 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
1715         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
1716         Akshat Aranya.
1718 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
1720         * fusermount: fix error message, when unable to open /dev/fuse.
1721         Report by Balázs Pozsár
1723 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
1725         * UClibc fixes from Christian Magnusson
1727 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
1729         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
1731 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1733         * Released 2.4.0-rc1
1735 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1737         * fusermount: allow user umount in the case when /etc/mtab is a
1738         symlink to /proc/mounts.  Reported by Balázs Pozsár.
1740 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
1742         * Check for special node ID values in lookup and creation
1744 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
1746         * Slight optimization in returning EINVAL error in case of an open
1747         with O_DIRECT flag.
1749 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
1751         * Remove '--enable-auto-modprobe' configure flag.  Module
1752         auto-loading is now handled by the kernel.
1754 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
1756         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1757         Help from Jens M. Noedler.
1759 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
1761         * Add memory cleanup on thread exit
1763 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
1765         * Set umask to zero in fusexmp and fusexmp_fh, so that
1766         files/directories are created with the requested mode.
1768 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
1770         * Don't ignore read error in multithreaded loop
1772 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1774         * Released 2.4.0-pre2
1776 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1778         * Revert lock and access operations.  Postpone these until 2.5.
1780 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
1782         * Fix compile warning on 2.6.13 and later
1784         * Fix compilation on old kernels
1786 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
1788         * lib: always refresh directory contents after rewinddir() to
1789         conform to SUS.  Bug found by John Muir.
1791 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
1793         * Released 2.4.0-pre1
1795 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
1797         * lib: cleaned up (or messed up, depending on your POV) the low
1798         level library API.  Hopefully this is close to the final form.
1800 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
1802         * fusermount: don't allow empty mountpoint argument, which defeats
1803         automatic umounting in fuse_main().  Bugreport by Václav Jůza
1805 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
1807         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
1808         option is used (Paul Alfille).
1810 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
1812         * highlevel-lib: added mount options "attr_timeout" and
1813         "entry_timeout".  These options control the length of time file
1814         attributes and entries (names) are cached.  Both default to 1.0
1815         second.
1817         * kernel: correctly handle zero timeout for attributes and entries
1819 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
1821         * Added missing symbols to versionscript (Joshua J. Berry)
1823         * kernel: implement two flags, open can set: 'direct_io' and
1824         'keep_cache'.  These correspond exactly to mount options
1825         'direct_io' and 'kernel_cache', but allow a per-open setting.
1827         * Move 'direct_io' and 'kernel_cache' mount option handling to
1828         userspace.  For both mount options, if the option is given, then
1829         the respective open flag is set, otherwise the open flag is left
1830         unmodified (so the filesystem can set it).
1832         * lib (highlevel): make open method optional
1834 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
1836         * kernel: invalidate attributes for read/readdir/readlink
1837         operations
1839         * kernel: detect newer UML kernels
1841 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
1843         * Make the installation path of fuse.ko and mount.fuse
1844         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
1845         environment variables.  Requirement and help from Csaba Henk.
1847 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
1849         * Fix bug, that causes filesystem requests to hang when unique
1850         request counter becomes negative.  This happens after
1851         2,147,483,648 operations, so most people won't care.  Thanks to
1852         Franco Broi for the report and testing.
1854 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
1856         * Don't change mtime/ctime/atime to local time on read/write.
1857         Bug reported by Ben Grimm
1859         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
1860         Magnusson
1862         * fusermount: use getopt_long() for option parsing.  It allows the
1863         use of '--' to stop argument scanning, so fusermount can now
1864         operate on directories whose names begin with a '-'.  Patch by
1865         Adam Connell
1867 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
1869         * fusermount: add '-v', '--version' and '--help' options
1871         * add inode based API
1873 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
1875         * lib: don't block signals in worker threads.  Problem noticed by
1876         Usarin Heininga
1878 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
1880         * lib: don't allow both 'allow_other' and 'allow_root' options to
1881         be given
1883 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
1885         * fusermount: check if mountpoint is empty (only '.' and '..' for
1886         directories, and size = 0 for regular files).  If "nonempty"
1887         option is given, omit this check.  This is useful, so users don't
1888         accidentally hide data (e.g. from backup programs).  Thanks to
1889         Frank van Maarseveen for pointing this out.
1891         * kernel: check if mandatory mount options ('fd', 'rootmode',
1892         'user_id', 'group_id') are all given
1894         * lib: simplify 'readdir_ino' handling
1896         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
1898 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
1900         * kernel: clean up 'direct_io' code
1902 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
1904         * Add 'mount.fuse' written by Petr Klima
1906         * '/dev/fuse' is created by 'make install' if does not yet exist
1908 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
1910         * Fix UCLIBC compile error.  Patch by Christian Magnusson
1912 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
1914         * Enable the auto-loading of the module via access to the
1915         corresponding device file.  Patch by Takashi Iwai.
1917         * Allow mounting a regular file (over a regular file) for
1918         unprivleged users.
1920         * Do not create temporary device file.  Require "/dev/fuse" to
1921         exist, and be readable/writable by the mounting user.
1923 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
1925         * Released 2.3.0
1927 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
1929         * Fix serious information leak: if the filesystem returns a short
1930         byte count to a read request, and there are non-zero number of
1931         pages which are not filled at all, these pages will not be zeroed.
1932         Hence the user can read out previous memory contents.  Found by
1933         Sven Tantau.
1935 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
1937         * Add "readdir_ino" mount option, which tries to fill in the d_ino
1938         field in struct dirent.  This mount option is ignored if "use_ino"
1939         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
1940         non-Linux OS).  Patch by David Shaw.
1942 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
1944         * Released 2.3-rc1
1946 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
1948         * File save in krusader and other editors doesn't work with sshfs,
1949         because open() is interrupted by a periodic signal, and open()
1950         restarts forever, without any progress.  This could just be fixed
1951         in open(), but the problem is more generic: if signals are
1952         received more often than the filesystem can get the request to
1953         userspace, it will never finish.  This is probably only a
1954         theoretical problem, nevertheless I'm removing the possibility to
1955         interrupt requests with anything other than SIGKILL, even before
1956         being sent to userspace.  Bugreport by Eduard Czimbalmos.
1958 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
1960         * libfuse: add "tree_lock" rwlock, that is locked for write in
1961         rename, unlink and rmdir, and locked for read in all other
1962         operations.  This should fix the rename/release race reported by
1963         Valient Gough and others.  The solution is very coarse, a finer
1964         grained locking scheme could be implemented, but it would be much
1965         more complex.  Let's see whether this is good enough.
1967 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
1969         * Released 2.3-pre7
1971 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
1973         * Better fix for out of order FORGET messages.  Now the
1974         LOOKUP/FORGET messages are balanced exactly (one FORGET can
1975         balance many lookups), so the order no longer matters.  This
1976         changes the kernel ABI slightly, but the library remains backward
1977         compatible.
1979 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
1981         * Fix abort for out of order FORGET messages.  Again.  Spotted by
1982         Franco Broi again.  Sorry :)
1984 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
1986         * Released 2.3-pre6
1988 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
1990         * Make fusermount work with fuse kernel modules not yet supporting
1991         the "group_id" option (added for the purpose of stricter
1992         permission checking).
1994 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
1996         * Check for hard-linked directories in lookup.  This could cause
1997         problems in the VFS, which assumes that such objects never exist.
1999         * Make checking of permission for other users more strict.  Now
2000         the same privilege is required for the mount owner as for ptrace
2001         on the process performing the filesystem operation.
2003 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2005         * Released 2.3-pre5
2007 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2009         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2010         is needed on certain architectures.  Report from Chris Kirby
2012         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2013         Reported by David Shaw
2015         * Remove "allow_root" option from kernel module, and implement
2016         it's functionality in the library
2018         * Fix Oops caused by premature release of fuse_conn.  Clean up
2019         related code, to be more readable
2021         * Sendfile should not use page cache if "direct_io" mount option
2022         is given
2024 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2026         * Fix Oops in case of nfs export.  Spotted by David Shaw
2028         * Fix another Oops in case of write over nfs with direct_io turned
2029         on.  Again spotted by David Shaw
2031 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2033         * Released 2.3-pre4
2035 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2037         * lib: finalized new readdir() interface, which now supersedes the
2038         getdir() method.
2040 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2042         * Released 2.3-pre3
2044 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2046         * Implement backward compatibility with version 5 kernel ABI
2048 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2050         * Released 2.3-pre2
2052 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2054         * kernel: fix dirent offset handling
2056         * lib: add readdir and releasedir methods
2058         * lib: use fh field of fuse_file_info in opendir, readdir,
2059         releasedir and fsyncdir methods
2061         * lib: check kernel API version and bail out of it's old.  This
2062         will be properly fixed in the next release
2064 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2066         * Released 2.3-pre1
2068 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2070         * kernel API: add padding to structures, so 64bit and 32bit
2071         compiler will return the same size
2073         * kernel API: add offset field to fuse_dirent.  This will allow
2074         more sophisticated readdir interface for userspace
2076         * kernel API: change major number to 6
2078         * kernel: fix warnings on 64bit archs
2080         * kernel: in case of API version mismatch, return ECONNREFUSED
2082 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2084         * kernel: trivial cleanups
2086 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2088         * Add fsyncdir() operation
2090 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2092         * kernel: add locking to background list (fixes previous fix)
2094 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2096         * kernel: fix bug which could cause leave busy inodes after
2097         unmount, and Oops.
2099 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2101         * examples: add -lpthread to link flags to work around valgrind
2102         quirk
2104         * lib: don't exit threads, so cancelation doesn't cause segfault
2106 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2108         * kernel: fix nasty bug which could cause an Oops under certain
2109         situations.  Found by Magnus Johansson
2111 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2113         * libfuse: added opendir() method.  This can be used in case
2114         permission checking in getdir() is too late.  Thanks to Usarin
2115         Heininga for pointing out this deficiency
2117         * libfuse: added init() and destroy() methods to fuse_operations
2119         * kernel: llseek() method for files and directories made explicit
2121         * kernel: fixed inode leak in NFS export in case of nodeid
2122         wrapping
2124 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2126         * libfuse: clean up some unitialized memory found with valgrind
2128         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2129         explicitly linked libpthread for applications
2131 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2133         * fusermount: set umask, otherwise /etc/mtab will have
2134         unpredictable permission.  Spotted by Jindrich Kolorenc
2136         * fusermount: set owner and group of /etc/mtab to original values
2137         on unmount
2139         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2141 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2143         * Cleaned up directory reading (temporary file is not used)
2145 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2147         * Released 2.2
2149 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2151         * Fix possible race when operation is interrupted
2153 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2155         * Fix compilation on 2.6.7
2157 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2159         * Released 2.2-pre6
2161 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2163         * Fix bug in link() operation which caused the wrong path to be
2164         passed as the first argument.  Found by Anton Altaparmakov
2166 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2168         * LIB: fix double reply in readdir operation
2170         * fusermount: fix uid checking bug.  Patch by Adam Connell
2172         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2173         Patch by Keshava Gowda
2175 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2177         * KERNEL: provide correct llseek semantics for fuse device (fixes
2178         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2180 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2182         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2184 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2186         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2187         and RELEASEDIR.  This ends the ugly hack of passing a file
2188         descriptor to the kernel, and actually makes the code simpler.
2190 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2192         * Released 2.2-pre4
2194 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2196         * fusermount: remove capability setting, which was the cause of
2197         problems for some users.  It seems that FS related capabilities
2198         are removed by setfsuid(), so this isn't even needed.
2200 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2202         * fix compilation on 2.4 kernels (reported by Valient Gough)
2204         * fix failure to unmount bug (found by David Shaw)
2206         * fusermount: improve parsing of /etc/fuse.conf
2208 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2210         * Remove 'mount_max' and 'user_allow_other' module options.  These
2211         are now checked by fusermount, and can be set in /etc/fuse.conf
2213         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2215 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2217         * KERNEL: fix possible inode allocation problem, where
2218         sizeof(struct inode) is not aligned (found by Mike Waychison)
2220         * KERNEL: use new follow_link/put_link methods
2222         * KERNEL: cosmetic fixes
2224 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2226         * Released 2.2-pre3
2228 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2230         * Add missing code that was accidently left out
2232 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2234         * Released 2.2-pre2
2236 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2238         * Change "uid" mount option to "user_id" to avoid confusion with a
2239         mount option "uid" commonly used by many filesystems
2241 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2243         * Released 2.2-pre1
2245 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2247         * If FUSE is configured in the kernel, don't build it by default
2249 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2251         * Compile fix by Christian Magnusson
2253 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2255         * Fix compilation for 2.6.{0-5} kernels
2257 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2259         * KERNEL: if request is interrupted, still keep reference to used
2260         inode(s) and file, so that FORGET and RELEASE are not sent until
2261         userspace finishes the request.
2263         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2264         request with the same information, which is more flexible,
2265         simpler, works on embedded systems.
2267 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2269         * KERNEL ABI: update interface to make it independent of type
2270         sizes.  This will help on 64 bit architectures which can run
2271         legacy 32 bit applications.
2273         * KERNEL ABI: add "len" field to request headers.  This will allow
2274         sending/receiving requests in multiple chunks.
2276         * KERNEL: handle file type change more intelligently
2278         * LIB: "-o debug" option should disable backgrounding (fix by
2279         Fabien Reygrobellet)
2281 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2283         * KERNEL: invalidate dentry/attributes if interrupted request
2284         could leave filesystem in an unknown state.
2286 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2288         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2289         These will cause some regressions, but stability is considered
2290         more important.  If any of these features turns out to be
2291         important, it can be readded with the deadlock problems addressed.
2293         * Make all requests interruptible (only with SIGKILL currently).
2294         This can be used to break any deadlock produced by the userspace
2295         filesystem accessing it's own exported files.  The RELEASE request
2296         is special, because if it's interrupted before sending it to
2297         userspace it is still sent, but the reply is not awaited.
2299         * If request is interrupted before being sent to userspace, and if
2300         it hasn't yet got any side effects, it is always restarted,
2301         regardless of the SA_RESTART flag.  This makes these interruptions
2302         transparent to the process.
2304         * Remove shared-writable mmap support, which was prone to an
2305         out-of-memory deadlock situation
2307         * Remove INVALIDATE userspace initiated request
2309         * Make readpages() synchronous.  Asynchronous requests are
2310         deadlock prone, since they cannot be interrupted.
2312         * Add readv/writev support to fuse device operations
2314         * Remove some printks, which userspace FS can use for a DoS
2315         against syslog
2317         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2318         fusermount instead
2320         * LIB: improve compatibility with a fuse.h header installed in
2321         ${prefix}/include which in turn includes the real header.
2323         * LIB: improve compatibility by defining fuse_main() (which is now
2324         not used), so old configure scripts find it.
2326 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2328         * When mounting on a subdirectory of / don't duplicate slashes at
2329         the beggining of path (spotted by David Shaw)
2331 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2333         * Fix bug causing garbage in mount options (spotted by David Shaw)
2335 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2337         * Add 'writepage' flag to 'fuse_file_info'.
2339         * More comments in fuse.h
2341         * Get rid of double underscores
2343 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2345         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2347         * helper.c: add -ho option, which only displays the options not
2348         the usage header.  This can be used by filesystems which have
2349         their own options.
2351 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2353         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2354         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2355         including the fuse header
2357         * Add binary compatibility to 2.1 version of library with symbol
2358         versioning
2360 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2362         * Released 2.1
2364 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2366         * kernel: clean up writing functions
2368         * kernel: no allocation on write in direct_io mode
2370         * move linux/fuse.h to fuse_kernel.h
2372 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2374         * kernel: clean up reading functions
2376 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2378         * kernel: make readpage() uninterruptible
2380         * kernel: check readonly filesystem flag in fuse_permission
2382         * lib: don't die if version file not found and new style device
2383         exists
2385         * lib: add '-r' option, which is short for '-o ro'
2387         * fusermount: simplify device opening
2389         * kernel: when direct_io is turend on, copy data directly to
2390         destination without itermediate buffer.  More efficient and safer,
2391         since no allocation is done.
2393         * fusermount: fix warning if fuse module is not loaded
2395         * kernel: use /dev/fuse on 2.4 too
2397 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2399         * libfuse API change: open, read, write, flush, fsync and release
2400         are passed a 'struct fuse_file_info' pointer containing the open
2401         flags (open and release), and the file handle.  Verion changed to
2402         3.0.
2404 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2406         * More cleanups in the kernel
2408         * The 10,229 charater device number has been assigned for FUSE
2410         * Version file checking fix (reported by Christian Magnusson)
2412         * fusermount: opening the fuse device now doesn't need /sys.
2414         * Optimize reading by controlling the maximum readahead based on
2415         the 'max_read' mount option
2417         * fixes for UCLIBC (Christian Magnusson)
2419 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2421         * Cleaned up kernel in preparation for merge into mainline:
2423         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2425         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2427         * __user annotations for sparse
2429         * allocate individual pages instead of kmalloc in fuse_readdir,
2430         fuse_read and fuse_write.
2432         * Fix NFS export in case "use_ino" mount option is given
2434         * Make libfuse and fusermount compatible with future versions
2436         * fusermount: properly add mount options to /etc/mtab
2438 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2440         * fusermount: do not resolve last component of mountpoint on if it
2441         is '.' or '..'.  This new path resolvation is now done on mount as
2442         well as unmount.  This enables relative paths to work on unmount.
2444         * fusermount: parse common mount options like "ro", "rw", etc...
2446         * Allow module params to be changed through sysfs
2448 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2450         * Released 2.1-pre1
2452 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2454         * Fix bug in fuse_readpages() causing Oops in certain situations.
2455         Bug found by Vincenzo Ciancia.
2457         * Fix compilation with kernels versions > 2.6.9.
2459 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2461         * Check kernel interface version in fusermount to prevent
2462         strangeness in case of mismatch.
2464         * No need to allocate fuse_conn until actual mount happens
2466         * Fix potential race between umount and fuse_invalidate
2468         * Check superblock of proc file in addition to inode number
2470         * Fix race between request_send_noreply() and fuse_dev_release()
2472 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2474         * Separate configure for the kernel directory
2476         * Don't allow write to return more than 'count'
2478         * Extend kernel interface for future use
2480 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2482         * Fix 'makeconf.sh' to use autoreconf if available
2484 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2486         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2487         compatibility with earlier versions.  To compile earier versions
2488         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2489         Do not use the "use_ino" mount flag with filesystems compiled with
2490         FUSE_DIRFIL_COMPAT.
2492         * Add pkg-config support.  To compile a FUSE based filesystem you
2493         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2494         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2495         usually needs to be set to "/usr/local/lib/pkgconfig".
2497         * fuse.h is now installed in ${prefix}/include/fuse/
2499 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2501         * Added "use_ino" mount option.  This enables the filesystems to
2502         set the st_ino field on files
2504 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2506         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2507         by Jeremy Smith)
2509         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2511         * Clear the 'exited' flag when mail loop is finished
2513 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2515         * Make xattr functions work under 2.6 (bug found by Vincenzo
2516         Ciancia)
2518 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2520         * Reset request in fuse_flush() (bugreport by David Shaw)
2522 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2524         * fuse_main() now does not exit on error, rather it returns an
2525         error code
2527         * Exported __fuse_setup() and __fuse_teardown() functions, which
2528         make it easier to implement a custom event loop.
2530         * Use daemon() call to background the filesystem after mounting.
2531         This function closes the standard input, output and error and
2532         changes the current working directory to "/".
2534 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2536         * Released 1.9
2538 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2540         * Don't allow fuse_flush() to be interrupted (bug found by David
2541         Shaw)
2543 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2545         * Add PID to fuse_context.  Patch by Steven James
2547         * Change file handle type to 'unsigned long' in kernel interface
2549 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2551         * A slight API change: fuse_get_context() doesn't need the "fuse"
2552         pointer, but the returned context contains it instead.  The
2553         fuse_get() function is not needed anymore, so it's removed.
2555         * Fix mounting and umounting FUSE filesystem under another FUSE
2556         filesystem by non-root (bug spotted by Valient Gough)
2558 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2560         * Fix deadlock in case of memory allocation failure.  Patch by
2561         Christian Magnusson
2563 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2565         * Check memory allocation failures in libfuse
2567 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2569         * Check temporary file creation failure in do_getdir().  Bug
2570         spotted by Terje Oseberg
2572 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2574         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2576         * Make requests non-interruptible so race with FORGET is avoided.
2577         This is only a temporary solution
2579         * Support compiling FUSE kernel module on 2.4.x UML kernels
2581 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2583         * Fix bug in case two FORGETs for the same node are executed in
2584         the wrong order.  Bug spotted and endured for months by Franco
2585         Broi, and logfile for solution provided by Terje Oseberg
2587 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2589         * Add -D_REENTRANT to the compile flags
2591         * Add documentation of fuse internals by Terje Oseberg
2593 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2595         * Change release method to be non-interruptible.  Fixes bug
2596         causing missing release() call when program which has opened files
2597         is killed (reported by Franco Broi and David Shaw)
2599 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2601         * Add fuse_invalidate() to library API
2603 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2605         * Check permissions in setattr if 'default_permissions' flag is
2606         set.  Bug spotted by Damjan Lango
2608 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
2610         * 'large_read' mount option removed for 2.6 kernels, since the
2611         default (dynamic read size) is better
2613         * Extend kernel API with file handles.  A file handle is returned
2614         by open, and passed to read, write, flush, fsync and release.
2615         This is currently only used for debug output in the library.
2617         * Security changes:
2619         * Change the current directory to the mountpoint before checking
2620         the permissions and mount filesystem on "."
2622         * By default don't modprobe the fuse module for non-root.  The old
2623         behavior can be restored with the '--enable-auto-modprobe' flag of
2624         ./configure
2626         * By default don't allow shared writable mappings for non-root.
2627         The old behavior can be restored with the 'user_mmap=1' module
2628         parameter
2630 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
2632         * Clean up mount option passing to fusermount and to fuse_new()
2633         BEWARE: this changes the userspace API slightly, and the command
2634         line usage of programs using fuse_main()
2636 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
2638         * Optimize reading under 2.6 kernels by issuing multiple page
2639         asynchronous read requests
2641 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
2643         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2645 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
2647         * Separate directory entry and inode attribute validity timer
2649         * New write semaphore to stop page writeback during truncate
2651         * Fsync now waits for all writes to complete before sending the
2652         request
2654         * Optimization: if a page is completely written by
2655         fuse_commit_write(), clear the dirty flag and set the uptodate
2656         flag for that page
2658         * Some memory cleanup at exit
2660 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
2662         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2663         disable the "hide if open" behavior of unlink/rename.
2665         * If temporary buffer allocation fails in raw read, fall back to a
2666         smaller buffer
2668 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
2670         * Fix bug in do_open() in libfuse: open count was incremented
2671         after the reply is sent so it could race with unlink/forget and
2672         cause an abort.
2674 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
2676         * When performing create or remove operation, refresh the parent's
2677         attributes on next revalidate, as i_nlink (and maybe size/time)
2678         could be inacurate.
2680         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2681         pages (2.6 only)
2683         * Set set_page_dirty address space operation (2.6 only)
2685 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
2687         * Minor fix in read:  print debug info even if read size is zero
2689 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
2691         * Fix race between truncate and writepage (fsx-linux now runs
2692         without error)
2694 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
2696         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2697         by Mattias Wadman)
2699         * Added option for direct read/write (-r)
2701         * Fix revalidate time setting for newly created inodes
2703         * Remove uid==0 check for '-x' option in fusermount (kernel checks
2704         this)
2706         * fuse_main() only installs handlers for signals (out of INT, HUP,
2707         TERM, PIPE), for which no handler has yet been installed
2709         * Add module option 'user_allow_other' which if set to non-zero
2710         will allow non root user to specify the 'allow_other' mount option
2711         ('-x' option of fusermount)
2713         * Fix deadlock between page writeback completion and truncate
2714         (bug found by Valient Gough with the fsx-linux utility)
2716 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
2718         * Change passing fuse include dir to 2.6 kernel make system more
2719         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2720         kernel)
2722 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
2724         * Acquire inode->i_sem before open and release methods to prevent
2725         concurrent rename or unlink operations.
2727         * Make __fuse_read_cmd() read only one command.  This allows
2728         multiplexing the fuse file descriptor with other event sources
2729         using select() or poll() (patch by Jeff Harris)
2731         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2733 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
2735         * Fix file offset wrap around at 4G when doing large reads
2737 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2739         * Fix memory leak in open (Valient Gough)
2741 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2743         * Add "close after delete" support to libfuse (patch by Valient
2744         Gough)
2746         * Cancel all worker threads before exit in multithreaded mode
2748 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
2750         * Fix locking bugs
2752         * Don't send reply to RELEASE
2754         * Work with newer libtool (1.5a)
2756         * Check for st_atim member of struct stat
2758 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
2760         * No request allocation needed on inode and file release
2762 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
2764         * Fix possible inode leak in userspace in case of unfinished
2765         lookup/mknod/mkdir/symlink/link operation.
2767 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
2769         * Fix some races and cleanups in fuse_read_super()
2771 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
2773         * Requests are allocated at open time
2775 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
2777         * Build shared library as well as static (using libtool)
2779         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
2780         there has not been a release with the previous minor number, and I
2781         hope nobody is using it for anything.
2783         * Change fuse_main(), so that default behavior is to go into
2784         background if mount is successful.  '-f' and '-d' options disable
2785         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
2786         newbie complaint.
2788         * Cache ENOSYS (function not implemented) errors on *xattr, flush
2789         and fsync
2791         * Don't call getdir method from open() only from first readdir().
2792         Open is sometimes just used to store the current directory
2793         (e.g. find)
2795 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
2797         * Added flush() call
2799 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
2801         * Extended attributes support for 2.4 (patch by Cody Pisto)
2803 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
2805         * Fixed parser with modversions (Mattias Wadman)
2807 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
2809         * Added mount option parser to 2.4 build
2811 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
2813         * Replaced binary mount data with text options
2815         * Show FUSE specific mount options in /proc/mounts
2817         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
2819 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
2821         * Check some limits so userspace won't get too big requests
2823 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
2825         * Kill compile warning
2827         * Upgraded user-mount patch for 2.6.5
2829 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
2831         * Add detection of user-mode-linux to configure
2833 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
2835         * fixed zero size case for getxattr and listxattr
2837 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
2839         * new fusermount flag '-z': lazy unmount, default is not lazy
2841         * Extended attributes operations added (getxattr, setxattr,
2842         listxattr, removexattr)
2844 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
2846         * If filesystem doesn't define a statfs operation, then an
2847         all-zero default statfs is returned instead of ENOSYS
2849 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
2851         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
2853 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
2855         * Fix for uClinux (Christian Magnusson)
2857 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
2859         * fuse_main() adds "-n progname" to the fusermount command line
2861         * More kernel interface changes:
2863         * Lookup/getattr return cache timeout values
2865 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
2867         * Clean up option parsing in fuse_main()
2869         * Added fuse_get() function which returns the fuse object created
2870         by fuse_main()
2872 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
2874         * removed old way of mounting (fusermount mountpoint program)
2876         * more kernel interface changes:
2878         * added nanosecond precision to file times
2880         * removed interface version from mount data
2882         * added /proc/fs/fuse/version which contains MAJOR.MINOR
2884 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
2886         * statfs library API changed to match other methods.  Since this
2887           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
2889         * kernel interface changes follow:
2891         * statfs changed to 64 bits, added 'bavail' field
2893         * add generation number to lookup result
2895         * optimized mknod/mkdir/symlink/link (no separate lookup is
2896         needed)
2898         * rdev size increased to 32 bits for mknod
2900         * kernel interface version changed to 3.1
2902 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
2904         * user-mount upgraded for 2.6.3 kernel
2906 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
2908         * Added user-mount.2.6.2-rc3.patch
2910         * Add FS_SAFE flag to fuse filesystem
2912         * fusermount should allow (un)mounting for non-root even if not
2913         suid-root
2915 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
2917         * Remove MS_PERMISSION mount flag (that means something else now)
2919 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
2921         * Added check for i_size_read/write functions to configure.in
2922         (patch by Valient Gough)
2924 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
2926         * Fixed writing >= 2G files
2928         * Check file size on open (with generic_file_open())
2930         * Readpage calls flush_dcache_page() after storing data
2932         * Use i_size_read/write for accessing inode->i_size
2934         * Make loopback mount of a fuse file work
2936 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
2938         * Released 1.1
2940 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
2942         * Properly check if the inode exists in fuse_invalidate
2944 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
2946         * Added -q option for fusermount
2948         * fuse_unmount() now uses -q option of fusermount, so no error is
2949         printed if the cause of the program exit is that the filesystem
2950         has already been unmounted
2952         * Fix i_nlink correctness after rmdir/unlink
2954 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
2956         * Released 1.1-pre2
2958 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
2960         * Fix typo (thanks Marcos Dione)
2962         * Compile fixes for 2.4 kernels
2964 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
2966         * Fix CONFIG_MODVERSIONS compile on 2.6
2968 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
2970         * Write all pending data before a RELEASE operation
2972         * Suppress 'Bad file descriptor' warning on exit
2974         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
2975         get confused with '-d' of fuse_main() (sorry about this change)
2977         * New fusermount option '-l' which enables big reads.  Big reads
2978         are now disabled by default.
2980         * fuse_main() can accept fusermount arguments after a '--'
2982 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
2984         * Support for exporting filesystem over NFS (see README.NFS)
2986 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
2988         * Support non-blocking writepage on 2.6.  This makes FUSE behave
2989         much more nicely in low-memory situations
2991         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
2992         (Note: the mknod method does not yet use 32bit device number)
2994 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
2996         * Code cleanups
2998 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3000         * Released 1.1-pre1
3002 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3004         * Integrated 2.6 kernel support patch by Michael Grigoriev
3006         * Improvements and cleanups for 2.6 kernels
3008 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3010         * Added -d option to fusermount
3012 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3014         * Added major+minor version to library API, and minor version to
3015           kernel API
3017 2003-12-13  David McNab <david@rebirthing.co.nz>
3019         * Implemented fsync support in examples/example.py
3021         * Implemented 'fsync' and 'statfs' methods in python
3022           interface
3024 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3026         * Make it compile on 2.4.19.
3028         * Add fsync operation (write file failed on xemacs & vi)
3030 2003-12-12  David McNab <david@rebirthing.co.nz>
3032         * Added distutils support to the python module, as per standard
3033           python development practice
3035 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3037         * Add file locking for mount/unmount (based on patch by Valient
3038         Gough)
3040 2003-12-11  David McNab <david@rebirthing.co.nz>
3042         * Python filesystem - was broken with python2.3, now fixed:
3043            - changed PyTuple_* calls to PySequence_*, because os.lstat
3044              is no longer returning a pure tuple
3045            - changed PyInt_Check() calls to also call PyLong_Check,
3046              to cover for cases (eg os.lstat) where longs are returned
3047            - Added support for file 'release' handling, which IMO is
3048              essential since this signals to a FS that writes to a file
3049              are complete (and therefore the file can now be disposed of
3050              meaningfully at the python filesystem's discretion)
3051            - Added '__init__' handler to base Fuse class, which allows
3052              your Python class to know the mountpoint and mount args,
3053              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3055         * General:
3056            - added 'mount.fuse' script (in util/ dir), which is meant to be
3057              symlinked from /sbin, and which allows FUSE filesystems to
3058              be mounted with the 'mount' command, and listed in fstab;
3059              also, mount arguments get passed to your filesystem
3062 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3064         * Fix kernel version detection (again).  Bugreport by Peter Levart
3066 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3068         * Applied read combining patch by Michael Grigoriev (tested by
3069         Valient Gough and Vincent Wagelaar)
3071 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3073         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3074         #766443)
3076 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3078         * Error code fixes in kernel module
3080 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3082         * kernel version detection fix
3084         * fusermount now uses "lazy" umount option
3086         * fusermount can use modprobe with module-init-tools
3088 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3090         * Integrated caching patch by Michael Grigoriev
3092         * Added "Filesystems" file with descriptions of projects using
3093         FUSE
3095         * Added patch by Michael Grigoriev to allow compliation of FUSE
3096         kernel module for 2.6 kernels
3098 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3100         * And another spec-file fix by Achim Settelmeier
3102 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3104         * Spec-file fix by Achim Settelmeier
3106 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3108         * Fix umount oops (found by Samuli Kärkkäinen)
3110 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3112         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3114 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3116         * Updated fuse.spec file (Achim Settelmeier)
3118 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3120         * Version 1.0 released
3122 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3124         * SuSE compilation fix by Juan-Mariano de Goyeneche
3126 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3128         * The release() VFS call is now exported to the FUSE interface
3130 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3132         * 64 bit file offset fixes in the fuse kernel module
3134         * Added function 'fuse_exit()' which can be used to exit the main
3135         loop
3137 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3139         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3140         an incompatible interface change.
3142 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3144         * Portablility fix (bug reported by C. Chris Erway)
3146 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3148         * Use Mark Glines' fd passing method for default operation instead
3149         of old reexec
3151 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3153         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3155 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3157         * fix incompatiblity with Red Hat kernels, with help from Nathan
3158         Thompson-Amato.
3160 2002-04-18  Mark Glines <mark@glines.org>
3162         * added an alternative to fuse_mount(), called
3163       fuse_mount_ioslave(), which does not need to reexec the
3164       FUSE program.
3165         * added a small helper util needed by fuse_mount_ioslave().
3167 2002-03-16  Mark Glines <mark@glines.org>
3169         * use struct fuse_statfs everywhere possible to avoid problems
3170       with the headerfiles changing struct statfs member sizes
3172 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3174         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3176 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3178         * RPM support by Achim Settelmeier
3180 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3182         * Version 0.95 released
3184 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3186         * Revaidate all path components not just the last, this means a
3187         very small performance penalty for being more up-to-date.
3189 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3191         * Update and fix python interface
3193 2002-01-07  Mark Glines <mark@glines.org>
3195         * Added statfs() support to kernel, lib, examples, and perl!
3197 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3199         * Better cross compilation support
3201         * Ported to Compaq IPAQ
3203 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3205         * Added function fuse_get_context() to library API (inspired by
3206         patch from Matt Ryan)
3208         * Added flags to fusermount and to kernel interface to control
3209         permission checking
3211         * Integrated fuse_set_operations() into fuse_new()
3213 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3215         * Applied header protection + extern "C" patch by Roland
3216         Bauerschmidt
3218 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3220         * Added perl bindings by Mark Glines
3222 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3224         * Cleaned up way of mounting simple filesystems.
3226         * fuse_main() helper function added
3228 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3230         * Optimized read/write operations, so that minimal copying of data
3231         is done
3233 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3235         * Python bindings by Jeff Epler added
3237 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3239         * Fixed vfsmount reference leak in fuse_follow_link
3241         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3242         userspace is ignored
3244 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3246         * Started ChangeLog