Remove old symbol versions
[fuse.git] / ChangeLog
blob5eeb9fe0cc36ea1131fb62471fc0feb0edb274a3
1 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
3         * Start of 3.0 series.  This is going to be a new major version of
4         the library breaking backward compatibility on the binary level as
5         well as the source level.
7 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
9         * Released 2.9.1
11 2012-07-19  Miklos Szeredi <miklos@szeredi.hu>
13         * Fix crash caused by freeing a stack address.  Reported by Itay
14         Perl
16 2012-07-04  Miklos Szeredi <miklos@szeredi.hu>
18         * Fix install of mount.fuse from out-of-tree build.  Patch by
19         Olivier Blin
21         * Fix build with automake >= 1.12.1.  Patch by Olivier Blin
23 2012-04-24  Miklos Szeredi <miklos@szeredi.hu>
25         * Add fallocate operation.  Only works on linux kernels 3.5 or
26         later.  Patch by Anatol Pomozov
28 2012-05-16  Miklos Szeredi <miklos@szeredi.hu>
30         * Linking to a library that uses threads requires the application
31         to be linked with -pthreads otherwise some pthread functions will
32         be linked to stubs in glibc.  So move -pthread from Libs.private
33         to Libs in fuse.pc.  Reported by Werner Fink
35         * Fix the compile command in the examples. Reported by Luciano
36         Dalle Ore
38 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
40         * Released 2.9.0
42 2012-04-20  Miklos Szeredi <miklos@szeredi.hu>
44         * Add missing fuse_fs_flock to fuse_versionscript
46 2012-04-10  Miklos Szeredi <miklos@szeredi.hu>
48         * Check protocol version before sending notifications and return
49         -ENOSYS if a particular notification is not supported.
51         * Add 'flag_utime_omit_ok' flag to fuse_operations.  If the
52         filesystem sets this flag then ->utimens() will receive UTIME_OMIT
53         and UTIME_NOW values as specified in utimensat(2).
55 2012-01-27  Miklos Szeredi <miklos@szeredi.hu>
57         * Interpret octal escape codes in options.  Requested by Jan
58         Engelhardt
60 2012-01-26  Miklos Szeredi <miklos@szeredi.hu>
62         * Add man pages for fusermount, mount.fuse and ulockmgr_server.
63         Lifted from the Debian package.  The man pages were written by
64         Daniel Baumann and Bastien Roucaries
66 2012-01-13  Miklos Szeredi <miklos@szeredi.hu>
68         * Disable symbol versions on MacOSX.  Patch by Anatol Pomozov
70 2012-01-02  Miklos Szeredi <miklos@szeredi.hu>
72         * Remove unnecessary mutex unlock at the end of multithreaded
73         event loop.
75 2011-12-09  Miklos Szeredi <miklos@szeredi.hu>
77         * Fix hang in wait_on_path().  Reported by Ville Silventoinen
79         * Don't unhash name in FORGET.  This resulted in ENOENT being
80         returned for unlinked but still open files if the kernel sent a
81         FORGET request for the parent directory.
83         * Free request in fuse_reply_data().
85 2011-12-08  Miklos Szeredi <miklos@szeredi.hu>
87         * Fix build if FUSE_NODE_SLAB is not defined.  Patch by Emmanuel
88         Dreyfus
90         * Check for availability of utimensat() function.  Patch by
91         Emmanuel Dreyfus
93 2011-12-07  Miklos Szeredi <miklos@szeredi.hu>
95         * Add fuse_lowlevel_notify_delete() which tells the kernel that a
96         file or directory is deleted.  Patch by John Muir
98 2011-12-06  Miklos Szeredi <miklos@szeredi.hu>
100         * Update retrieve_reply() method
102 2011-12-05  Miklos Szeredi <miklos@szeredi.hu>
104         * Low level API: lock argument of fuse_reply_lock should have a
105         'const' qualifier.  Reported by Shachar Sharon
107         * Add support for ioctl on directories.  Reported by Antonio SJ
108         Musumeci
110 2011-10-13  Miklos Szeredi <miklos@szeredi.hu>
112         * Reply to request with ENOMEM in case of failure to allocate
113         request structure.  Otherwise the task issuing the request will
114         just freeze up until the filesystem daemon is killed.  Reported by
115         Stephan Kulow
117 2011-09-23  Miklos Szeredi <miklos@szeredi.hu>
119         * Replace daemon() function with fork().  Patch by Anatol Pomozov
121 2011-08-26  Miklos Szeredi <miklos@szeredi.hu>
123         * If configured with --disable-mtab then don't call mount(8) from
124         libfuse to update the mtab.  Reported by: James Sierp
126 2011-08-24  Miklos Szeredi <miklos@szeredi.hu>
128         * Use LRU list for cleaning up the cache if the "remember=T"
129         option was given.  Patch by therealneworld@gmail.com
131 2011-07-06  Miklos Szeredi <miklos@szeredi.hu>
133         * Add ->flock() operation to low and high level interfaces.  This
134         fixes problems with emulating flock() with POSIX locking.
135         Reported by Sebastian Pipping.  As with lock/setlk/getlk most
136         filesystems don't need to implement this, as the kernel takes care
137         of file locking.  The only reason to implement locking operations
138         is for network filesystems which want file locking to work between
139         clients.
141 2011-07-02  Sebastian Pipping <sebastian@pipping.org>
143         * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
144         not follow symlinks as other layers do that already.
146 2011-06-02  Miklos Szeredi <miklos@szeredi.hu>
148         * Add "remember" option.  This works similar to "noforget" except
149         that eventually the node will be allowed to expire from the cache.
150         Patch by therealneworld@gmail.com
152 2011-05-27  Miklos Szeredi <miklos@szeredi.hu>
154         * Check if splice/vmsplice are supported
156 2011-05-26  Miklos Szeredi <miklos@szeredi.hu>
158         * Remove -lrt -ldl from fuse.pc for dynamic linking since
159         libfuse.so is already linked with these libraries.  Reported by:
160         Nikolaus Rath
162 2011-05-20  Miklos Szeredi <miklos@szeredi.hu>
164         * Cleaner build output.  Patch by Reuben Hawkins
166 2011-05-19  Miklos Szeredi <miklos@szeredi.hu>
168         * Disable splice by default, add "splice_read", "splice_write" and
169         "splice_move" options.  Keep the "no_splice_*" variants, which can
170         disable splice even if the filesystem explicitly enables it.
172 2011-04-15  Max Krasnyansky <maxk@kernel.org>
173         * Added support for "auto_unmount" option which unmounts the
174         filesystem automatically on process exit (or crash).
176 2011-03-30  Miklos Szeredi <miklos@szeredi.hu>
178         * Patches by Laszlo Papp fixing various issues found by the
179         Coverity checker
181 2011-03-11  Miklos Szeredi <miklos@szeredi.hu>
183         * In case of failure to add to /etc/mtab don't umount.  Reported
184         by Marc Deslauriers
186 2011-02-02  Miklos Szeredi <miklos@szeredi.hu>
188         * libfuse: In fuse_session_loop_mt() don't pause when exiting the
189         worker threads.  The pause() was added in 2.2.1 to prevent
190         segfault on pthread_cancel() on an exited, detached thread.  Now
191         worker threads are not detached and pthread_cancel() should work
192         fine even after the thread exited.  Reported by Boris Protopopov
194 2011-01-31  Miklos Szeredi <miklos@szeredi.hu>
196         * fusermount: chdir to / before performing mount/umount
198         * fusermount: only allow mount and umount if util-linux supports
199         --no-canonicalize
201 2010-12-16  Miklos Szeredi <miklos@szeredi.hu>
203         * Highlevel lib: allow hash tables to shrink
205         * Highlevel lib: add slab allocation for node cache.  This will
206         allow the memory used by the filesystem to grow and shrink
207         depending on how many inodes are currently cached.
209 2010-12-13  Miklos Szeredi <miklos@szeredi.hu>
211         * Highlevel lib: use dynamically resized hash table for looking up
212         by name and node ID.
214 2010-12-07  Miklos Szeredi <miklos@szeredi.hu>
216         * Allow batching of forget requests.  This allows forget requests
217         to be processed faster and doesn't require a modification to fuse
218         filesystems.  Reported by Terje Malmedal
220         * Add ->forget_multi() operation to the lowlevel API.  The
221         filesystem may implement this to process multiple forget requests
222         in one call
224         * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
225         for 32bit vs. 64bit userspace
227 2010-11-10  Miklos Szeredi <miklos@szeredi.hu>
229         * Add new write_buf() method to the highlevel API.  Similarly to
230         the lowlevel write_buf() method, this allows implementing zero
231         copy writes.
233         * Add a new read_buf() method to the highlevel API.  This allows
234         returning a generic buffer from the read method, which in turn
235         allows zero copy reads.
237         * In fusexmp_fh implement the ->read_buf() and ->write_buf()
238         methods.  Leave the ->read() and ->write() implementations for
239         reference, even though they are not necessary.
241 2010-11-08  Miklos Szeredi <miklos@szeredi.hu>
243         * Fix check for read-only fs in mtab update
245         * Open /dev/null for write instead of read for redirecting stdout
246         and stderr
248         * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
249         version 2.18 or later), and umount(2) supports the
250         UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later)  then,
251         "fusermount -u" will call the umount(2) system call and use
252         "umount --fake ..." to update /etc/mtab
254         * Added --disable-legacy-umount option to configure.  This
255         disables the runtime checking of umount(8) version.  When built
256         with this option then "fusermount -u" will fail if umount(8)
257         doesn't support the --fake and --no-canonicalize options.
259         * Fix fuse_buf_copy() if already at the end of the buffers
261         * Add new ->write_buf() method to low level interface.  This
262         allows passig a generic buffer, either containing a memory buffer
263         or a file descriptor.  This allows implementing zero copy writes.
265         * Add fuse_session_receive_buf() and fuse_session_process_buf()
266         which may be used in event loop implementations to replace
267         fuse_chan_recv() and fuse_session_process() respectively.
269         * Remove unnecessary restoring of current working directory in
270         "fusermount -u"
272         * Add ctx->pid to debug output
274         * Fix st_nlink value in high level lib if file is unlinked but
275         still open
277         * libfuse: add store request.  Request data to be stored in the
278         kernel buffers for a given inode.
280         * libfuse: add retrieve request.  Retrieve data stored in the
281         kernel buffers for a given inode.
283 2010-10-14  Miklos Szeredi <miklos@szeredi.hu>
285         * Use LTLIBICONV when linking libfuse.  This fixes building against
286         uclibc + libiconv.  Patch by Natanael Copa
288 2010-10-05  Miklos Szeredi <miklos@szeredi.hu>
290         * Add missing argument check in ulockmgr.c to prevent calling
291         ulockmgr_server with illegal arguments. This would cause an ever
292         growing list of ulockmgr_server processes with an endless list of
293         open files which finally exceeds the open file handle limit.
294         Patch by Markus Ammer
296 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
298         * Fix ambiguous symbol version for fuse_chan_new.
299         fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
300         FUSE_2.6.  Remove the FUSE_2.4, which is invalid.
302 2010-09-28  Miklos Szeredi <miklos@szeredi.hu>
304         * Fix option escaping for fusermount.  If the "fsname=" option
305         contained a comma then the option parser in fusermount was
306         confused (Novell bugzilla #641480).  Fix by escaping commas when
307         passing them over to fusermount.  Reported by Jan Engelhardt
309 2010-08-27  Miklos Szeredi <miklos@szeredi.hu>
311         * Add NetBSD support.  Patch from Emmanuel Dreyfus
313 2010-07-12  Miklos Szeredi <miklos@szeredi.hu>
315         * libfuse: add buffer interface.  Add a generic buffer interface
316         for use with I/O.  Buffer vectors are supplied and each buffer in
317         the vector may be a memory pointer or a file descriptor.
319         * The fuse_reply_fd() interface is converted to using buffers.
321 2010-06-23  Miklos Szeredi <miklos@szeredi.hu>
323         * Make the number of max background requests and congestion
324         threshold tunable.  New options are "max_background" and
325         "congestion_threshold".  Only effective on linux kernel versions
326         2.6.32 or greater.  Patch by Csaba Henk
328 2010-06-17  Miklos Szeredi <miklos@szeredi.hu>
330         * Add fuse_reply_fd() reply function to the low level interface.
331         On linux version 2.6.35 or greater this will use splice() to move
332         data directly from a file descriptor to the fuse device without
333         needing to go though a userspace buffer.  With the
334         FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
335         directly into the filesystem's cache.  On earlier kernels it will
336         fall back to an intermediate buffer.  The options
337         "no_splice_write" and "no_splice_move" can be used to disable
338         splicing and moving respectively.
340 2010-06-15  Miklos Szeredi <miklos@szeredi.hu>
342         * Fix out-of-source build.  Patch by Jörg Faschingbauer
344         * Add a "nopath" option and flag, indicating that path argument
345         need not be calculated for the following operations: read, write,
346         flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
347         fgetattr, lock, ioctl and poll.
349 2010-05-10  Miklos Szeredi <miklos@szeredi.hu>
351         * Remove "chmod root" from install of fusermount.  Reported by
352         Lucas C. Villa Real
354 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
356         * Released 2.8.4
358 2010-04-26  Miklos Szeredi <miklos@szeredi.hu>
360         * Fix checking for symlinks in umount from /tmp.  Reported by Al
361         Viro
363         * Fix umounting if /tmp is a symlink.  Reported by Franco Broi
365 2010-02-18  Miklos Szeredi <miklos@szeredi.hu>
367         * Fix definition of FUSE_OPT_END for C++.  Reported by Tim
368         Bruylants
370 2010-02-03  Miklos Szeredi <miklos@szeredi.hu>
372         * Fix stack alignment for clone()
374 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
376         * Released 2.8.3
378 2010-02-01  Miklos Szeredi <miklos@szeredi.hu>
380         * Using "--no-canonicalize" with umount(8) conflicts with the race
381         fix, sinceit assumes the supplied path is absolute, while the race
382         fix relies on the path being relative to the current directory.
383         Reported by Tom Rindborg
385 2010-01-26  Miklos Szeredi <miklos@szeredi.hu>
387         * Released 2.8.2
389 2010-01-21  Miklos Szeredi <miklos@szeredi.hu>
391         * Fix race if two "fusermount -u" instances are run in parallel.
392         Reported by Dan Rosenberg
394         * Make sure that the path to be unmounted doesn't refer to a
395         symlink
397 2010-01-14  Miklos Szeredi <miklos@szeredi.hu>
399         * Fix compile error on FreeBSD.  Patch by Jay Sullivan
401 2009-12-17  Miklos Szeredi <miklos@szeredi.hu>
403         * Use '--no-canonicalize' option of mount(8) (available in
404         util-linux-ng version 2.17 or greater) to avoid calling
405         readling(2) on the newly mounted filesystem before the mount
406         procedure is finished.  This has caused a deadlock if "audit" was
407         enabled in the kernel.  Also use '--no-canonicalize' for umount to
408         avoid touching the mounted filesystem.
410 2009-09-11  Miklos Szeredi <miklos@szeredi.hu>
412         * Released 2.8.1
414 2009-08-25  Miklos Szeredi <miklos@szeredi.hu>
416         * Fix missing versioned symbol fuse_get_context@FUSE_2.2
418 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
420         * Released 2.8.0
422 2009-08-18  Miklos Szeredi <miklos@szeredi.hu>
424         * Add missing fuse_session_data to versionscript
426         * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
428 2009-07-16  Miklos Szeredi <miklos@szeredi.hu>
430         * Clarify how the protocol version should be negotiated between
431         kernel and userspace.  Notably libfuse didn't correctly handle the
432         case when the supported major versions didn't match
434         * Add missing pthread link for libulockmgr.  Patch by  Petr Salinger
436 2009-07-02  Miklos Szeredi <miklos@szeredi.hu>
438         * The context is extended with a 'umask' field.  The umask is sent
439         for mknod, mkdir and create requests by linux kernel version
440         2.6.31 or later, otherwise the umask is set to zero.  Also
441         introduce a new feature flag: FUSE_CAP_DONT_MASK.  If the kernel
442         supports this feature, then this flag will be set in conn->capable
443         in the ->init() method.  If the filesystem sets this flag in in
444         conn->want, then the create modes will not be masked.
446         * Add low level interfaces for lookup cache and attribute
447         invalidation.  This feature is available in linux kernels 2.6.31
448         or later.  Patch by John Muir
450         * Kernel interface version is now 7.12
452         * fusermount: Do not silently ignore command line arguments.
453         Patch by Sebastian Harl
455 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
457         * Released 2.8.0-pre3
459 2009-06-19  Miklos Szeredi <miklos@szeredi.hu>
461         * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
462         level lib) functions to query the supplementary group IDs for the
463         current request.  Currently this is implemented on Linux by
464         reading from the /proc filesystem.
466 2009-06-18  Miklos Szeredi <miklos@szeredi.hu>
468         * Add "noforget" option to high level lib to prevent ESTALE errors
469         on NFS exported filesystems.  This result in paths being cached
470         forever, resulting in ever growing memory usage.  Use with care.
472         * Add "no_remote_lock" option to disable remote file locking even
473         if the filesystem implements it.  With this option locking
474         primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
475         will ignore remotely locked files.
477         * CUSE patches from Tejun Heo:
479         * Unrestricted ioctl support left some debris.  Clean them up:
480           o No reason to pass around pointer to flags.  Pass flags directly.
481           o Clean up comment and prototype parameter names.
482           o fuse_lib_ioctl() didn't reply when get_path() failed.  Fix it.
483           o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
485         * Add fuse_reply_ioctl_iov()
487         * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
488         and make send_reply_iov() and fuse_setup_common() global (also in
489         fuse_i.h).  These will be used by CUSE support.
491         * Restructure fuse_ll_process()
493         * Implement libfuse side of CUSE support.  CUSE uses subset of FUSE
494         operations as dir operations don't make sense for CUSE where one
495         instance implements single character device.
497         CUSE support comes with its own cuse_lowevel_ops and related
498         initialization and helper functions.  Except for initialization, it
499         usage is basically identical to FUSE.
501         This patch also adds example/cusexmp.c which can create a character
502         device with name and device number specified on command line.  The
503         created device itself is pretty boring.  It's a bit bucket supporting
504         read, write and access via ioctl.
506 2009-06-16  Miklos Szeredi <miklos@szeredi.hu>
508         * Add missing fuse_reply_bmap to versionscript.  Debian
509         Bug#531329.  Reported by Goswin Brederlow
511 2009-05-27  Miklos Szeredi <miklos@szeredi.hu>
513         * Don't call forget_node() if the lookup was negative and write()
514         for the reply returned ENOENT.  Reported by John Haxby
516 2009-05-25  Miklos Szeredi <miklos@szeredi.hu>
518         * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
520 2009-05-08  Miklos Szeredi <miklos@szeredi.hu>
522         * Fix missing newlines in some printfs
524         * Fix 'make install-strip'.  Reported by Dominick Layfield
526 2009-01-05  Miklos Szeredi <miklos@szeredi.hu>
528         * Released 2.8.0-pre2
530 2008-12-08  Miklos Szeredi <miklos@szeredi.hu>
532         * Implement poll support.  Patch by Tejun Heo
534         * Add missing setattr flags to <fuse_lowlevel.h>.
536         * Only pass valid flags to ->setattr().
538 2008-12-05  Miklos Szeredi <miklos@szeredi.hu>
540         * Implement ioctl support.  On high level interface only
541         "restricted" ioctls are supported (which are defined with the
542         _IO(), _IOR(), _IOW() or _IOWR() macros).  Unrestricted ioctls
543         will only be allwed to CUSE (Character Device in Userspace)
544         servers.  Patch by Tejun Heo
546 2008-11-28  Miklos Szeredi <miklos@szeredi.hu>
548         * If open sets fi->nonseekable, libfuse will tell the kernel that
549         the file is not seekable.  Patch by Tejun Heo
551 2008-11-19  Miklos Szeredi <miklos@szeredi.hu>
553         * lowlevel lib: fix deadlock if fuse_reply_* is called from the
554         interrupt handling function.  Reported by Tero Marttila
556 2008-10-16  Miklos Szeredi <miklos@szeredi.hu>
558         * Allow commas in options to be escaped with a backslash
560         * Add new function: fuse_opt_add_opt_escaped()
562         * Add missing fuse_reply_bmap() to the version script
564 2008-10-14  Miklos Szeredi <miklos@szeredi.hu>
566         * Pass current file flags to read and write operations
568 2008-07-24  Miklos Szeredi <miklos@szeredi.hu>
570         * Clean up debug output in highlevel lib
572 2008-07-10  Miklos Szeredi <miklos@szeredi.hu>
574         * Released 2.8.0-pre1
576 2008-06-27  Miklos Szeredi <miklos@szeredi.hu>
578         * Fix handling of (no)suid and (no)dev options if filesystem is
579         mounted from /etc/fstab or via mount(8).  Reported by Jan Ondrej.
581         * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
582         read-only filesystem.  This works around issues with certain mount
583         implementations.  Reported by Szabolcs Szakacsits.
585 2008-06-16  Miklos Szeredi <miklos@szeredi.hu>
587         * Remove fuse kernel module sources.  Linux 2.6.27 will support
588         NFS exporting.
590 2008-06-10  Miklos Szeredi <miklos@szeredi.hu>
592         * Fix theoretical infinite loops in libfuse.  Reported by Szabolcs
593         Szakacsits
595         * Fix missing <sys/param.h> include for PATH_MAX.  Reported by
596         Szabolcs Szakacsits
598 2008-05-23  Miklos Szeredi <miklos@szeredi.hu>
600         * Fix mounting over symlink.  Reported by Szabolcs Szakacsits
602 2008-05-09  Miklos Szeredi <miklos@szeredi.hu>
604         * Don't allow bigger than 4kB writes by default on 2.6.26 and
605         later kernels, so that filesystems not expecting this are not
606         broken on a kernel upgrade.  Provide a 'big_writes' mount option
607         to enable this feature.  In future API revisions this may become
608         the default.
610 2008-04-09  Miklos Szeredi <miklos@szeredi.hu>
612         * Update warning message for missing newline at end of fuse.conf
614         * Update debug message for successful operation to not include the
615         string "error:"
617 2008-04-08  Miklos Szeredi <miklos@szeredi.hu>
619         * Update error message for missing mountpoint parameter.  Reported
620         by Allen Pulsifer
622 2008-04-04  Miklos Szeredi <miklos@szeredi.hu>
624         * Print library version information to debug output
626         * Highlevel lib: don't limit paths to 4095 characters
628 2008-03-25  Miklos Szeredi <miklos@szeredi.hu>
630         * Fix memory leaks on mount.  Patch by Szabolcs Szakacsits
632 2008-03-19  Miklos Szeredi <miklos@szeredi.hu>
634         * Fix missing pthread_mutex_destroy in error path of
635         fuse_lib_opendir().  Patch by Szabolcs Szakacsits
637 2008-03-07  Miklos Szeredi <miklos@szeredi.hu>
639         * Add queuing on contention to per-node lock algorithm, to avoid
640         starvation.
642         * Only enable cancelation when reading a request, otherwise
643         cancellation could happen with a mutex held, which could hang the
644         process on umount
646 2008-02-08  Miklos Szeredi <miklos@szeredi.hu>
648         * Block SIGCHLD when executing mount and umount
650         * fusexmp_fh: avoid unnecessary seeking in readdir
652         * Update kernel interface to 7.9:
654         * Support receiving file handle from kernel in GETATTR request
656         * Allow operations with a NULL path argument, if the filesystem
657         supports it
659         * Add support atomic open(O_TRUNC)
661         * Support the st_blksize field in struct stat
663         * If the "FUSE_THREAD_STACK" environment is set, initialize the
664         stack size of threads by this value.  Patch by Florin Malita
666         * Add per-node locking, instead of a global tree lock to protect
667         the path from changing during operations.  Original patch by
668         Rodrigo Castro
670 2008-02-03  Csaba Henk <csaba.henk@creo.hu>
672         * lib/mount_bsd.c:
673         - string formatting fixes
674         - exit if mounting has failed
675           (in FreeBSD a mount failure is not critical per se, as the daemon
676           still could be mounted externally, but waiting for such an event
677           is more confusing than fruitful)
678         - ditch the kvm(8) stuff and simply use forced unmount which just
679           won't block
680         - prettify option specifications
681         - add "-onosync_unmount" kernel option
683 2008-01-07  Csaba Henk <csaba.henk@creo.hu>
685         * lib/mount_bsd.c:
686         - refine device closing in a race-free way
687         - add support for "-osubtype" on FreeBSD
689         * makeconf.sh: make it work under FreeBSD
691 2008-01-03  Csaba Henk <csaba.henk@creo.hu>
693         * lib/mount_bsd.c: close device before unmount
694         (cf. lib/mount.c rev. 1.43) and fix some warnings 
696 2007-12-23  Miklos Szeredi <miklos@szeredi.hu>
698         * Fix './configure --disable-static'.  Patch from Ismail Dönmez
700 2007-12-17  Miklos Szeredi <miklos@szeredi.hu>
702         * Released 2.7.2
704 2007-12-12  Miklos Szeredi <miklos@szeredi.hu>
706         * Fix kernel module compile for 2.6.24
708         * Invalidate attributes of parent directory after create(), since
709         the modification time changes.  Invalidate attributes on rename,
710         since some filesystems may update st_ctime.  Reported by Szabolcs
711         Szakacsits
713         * Fix NFS exporting to handle 64bit node IDs
715         * Disable old symbol versions if __UCLIBC__ is defined.  If a
716         symbol in a library has multiple versions, the runtime linker in
717         uClibc seems to randomly choose between them.
719         * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
720         fuse_version_script.  fuse_opt_free_args() was added in fuse-2.6.
722         * Close fuse device file descriptor before calling umount(),
723         preventing a deadlock when umount is synchronous.  Reported by
724         Szabolcs Szakacsits
726 2007-11-12  Miklos Szeredi <miklos@szeredi.hu>
728         * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
729         symlink.  This bug was introduced in 2.7.1 by "Don't call
730         /bin/[u]mount if /etc/mtab is a symlink".  Found by robertsong.
732 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
734         * Released 2.7.1
736 2007-10-16  Miklos Szeredi <miklos@szeredi.hu>
738         * Clarify licence version to be "LGPLv2" for the library
740         * kernel fixes:
742         * After mount set nlink attribute for the root inode to 1
744         * Fix wake up of task waiting for a reserved request
746         * Fix allowing setattr, listxattr and statfs for other users
748 2007-09-18  Miklos Szeredi <miklos@szeredi.hu>
750         * Add missing context initialization in fuse_fs_chmod().  Bug
751         found by "iohead"
753         * Fix kernel module compilation for 2.6.23.  Based on patch by
754         Marian Marinov
756 2007-09-04  Philippe Elie  <phil.el@wanadoo.fr>
758         * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
760 2007-07-31  Miklos Szeredi <miklos@szeredi.hu>
762         * Work around hotplug issue, that it calls filesystem with file
763         descriptors 0, 1 and 2 not open.  Tracked down by Leif Johnson
765 2007-07-25  Miklos Szeredi <miklos@szeredi.hu>
767         * Don't call /bin/[u]mount if /etc/mtab is a symlink.  Reported by
768         Tomas M
770         * Also don't touch /etc/mtab if it is within the mounted
771         filesystem.  Suggested by Jeffrey Law
773 2007-07-12  Miklos Szeredi <miklos@szeredi.hu>
775         * Reset args->argc in fuse_opt_free_args().  Patch by Lucas
776         C. Villa Real
778 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
780         * Released 2.7.0
782 2007-07-02  Miklos Szeredi <miklos@szeredi.hu>
784         * Accept a NULL "op" for fuse_main(), etc.  This is useful if
785         filesystem is only invoking fuse to print a help message, or
786         version.  Fixes RedHat bugzilla #217343
788 2007-06-22  Miklos Szeredi <miklos@szeredi.hu>
790         * lib: fix locking when loading a filesystem module
792 2007-06-21  Miklos Szeredi <miklos@szeredi.hu>
794         * Add fs subtype support to mount.fuse
796 2007-06-20  Miklos Szeredi <miklos@szeredi.hu>
798         * Add fs subtype support to libfuse and fusermount
800 2007-06-19  Miklos Szeredi <miklos@szeredi.hu>
802         * kernel: sync with mainline (2.6.22)
804 2007-06-18  Miklos Szeredi <miklos@szeredi.hu>
806         * Send debug output to stderr instead of stdout.  Patch by Jan
807         Engelhardt
809 2007-06-03  Miklos Szeredi <miklos@szeredi.hu>
811         * libulockmgr: Work around a kernel bug in recv(), causing it to
812         sometimes return zero even if data was available on the socket.
814 2007-05-29  Miklos Szeredi <miklos@szeredi.hu>
816         * lib: optimization: store parent pointer in node instead of
817         parent id
819 2007-05-25  Miklos Szeredi <miklos@szeredi.hu>
821         * lib: don't create new thread for each FORGET request.  FORGET
822         messages sometimes caused so many threads to be created, that
823         process virtual memory space ran out.  Reported by Chris AtLee
825 2007-05-24  Miklos Szeredi <miklos@szeredi.hu>
827         * lib: fix memory leak on thread creation failure in multithreaded
828         event loop.  Found by Chris AtLee
830 2007-05-23  Miklos Szeredi <miklos@szeredi.hu>
832         * lowlevel lib: add fuse_reply_iov function, which is similar to
833         fuse_reply_buf, but accepts a vector of buffers.  Patch by Roger
834         Willcocks
836 2007-05-21  Miklos Szeredi <miklos@szeredi.hu>
838         * Fix Oops or error if a regular file is created with mknod(2) on
839         a fuse filesystem.  Kernels 2.6.18 onward are affected.  Thanks to
840         J. Cameijo Cerdeira for the report
842 2007-05-11  Csaba Henk <csaba.henk@creo.hu>
844         * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
845         Error reported by Csaba Henk, fix by Miklos Szeredi
847         * libfuse: fix unlock in flush
849         * libfuse: do unlocking on RELEASE+FLUSH
851 2007-05-03  Miklos Szeredi <miklos@szeredi.hu>
853         * Released 2.7.0-rc1
855 2007-05-02  Miklos Szeredi <miklos@szeredi.hu>
857         * kernel: sync with mainline:
859         * Use invalidate_mapping_pages() if available
861         * Fix BUG when invalid file type is supplied in mount. Patch by
862         Timo Savola
864 2007-04-27  Miklos Szeredi <miklos@szeredi.hu>
866         * libfuse: call umount(8) directly instead of fusermount if
867         possible
869         * Clean up init script, make it LSB compliant
871 2007-04-26  Miklos Szeredi <miklos@szeredi.hu>
873         * In multithreaded loop, use a semaphore instead of SIGHUP to wake
874         up the main thread on umount.  This is more elegant, and works
875         even if signals are blocked.
877 2007-04-25  Miklos Szeredi <miklos@szeredi.hu>
879         * Improve mounting support in libfuse:
880          - check non-empty mountpoint
881          - only fall back to fusermount when necessary
883 2007-04-23  Miklos Szeredi <miklos@szeredi.hu>
885         * Don't chdir to "/" in foreground mode, it causes more trouble
886         than it's worth
888 2007-04-18  Miklos Szeredi <miklos@szeredi.hu>
890         * Replace utils/mount.fuse "sh" script with a "C" program
892 2007-04-15  Miklos Szeredi <miklos@szeredi.hu>
894         * Add -lulockmgr to compilation comment in fusexmp_fh.c
896 2007-04-05  Miklos Szeredi <miklos@szeredi.hu>
898         * Check for iconv.  Patch by Csaba Henk
900         * Add direct umounting
902         * Use "fusectl" as the device for the fusectl filesystem.  Debian
903         Bug#417945.  Reported by Laurent Bonnaud
905 2007-04-01  Csaba Henk <csaba.henk@creo.hu>
907         * Fix some FreeBSD related macros.
909 2007-03-30  Miklos Szeredi <miklos@szeredi.hu>
911         * Add support for direct mounting by libfuse.  Fall back on
912         calling fusermount if it doesn't work
914 2007-03-14  Miklos Szeredi <miklos@szeredi.hu>
916         * Released 2.7.0-pre1
918 2007-03-05  Miklos Szeredi <miklos@szeredi.hu>
920         * Correctly handle O_APPEND in direct IO mode.  Reported by Greg
921         Bruno
923         * mount.fuse should use /bin/bash.  Debian Bug#413403.  Reported
924         by Thomas Weinbrenner
926 2007-02-26  Miklos Szeredi <miklos@szeredi.hu>
928         * Fix detection of installed fuse in init script.  Reported and
929         fix suggested by Davide Canova
931 2007-02-05  Miklos Szeredi <miklos@szeredi.hu>
933         * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
934         don't define mutex_destroy(), bummer.  Patch from Phil Schwan
936 2007-02-04  Miklos Szeredi <miklos@szeredi.hu>
938         * Compile fuseblk for kernels which don't have an option to turn
939         off the block layer (CONFIG_BLOCK).  Reported by Szakacsits
940         Szabolcs
942 2007-02-03  Miklos Szeredi <miklos@szeredi.hu>
944         * Add filesystem stacking support to high level API.  Filesystem
945         modules can be built into libfuse or loaded from shared object
946         (.so) files
948         * Add 'subdir' and 'iconv' built in modules
950         * lib/fuse.c: Fix locking for the reply code in create and open
952 2007-02-02  Miklos Szeredi <miklos@szeredi.hu>
954         * kernel: make it compile on "strange" kernels which have emulated
955         mutexes via <linux/mutex.h> but no i_mutex.  Reported by Tomasz
956         Mateja
958 2007-01-28  Miklos Szeredi <miklos@szeredi.hu>
960         * kernel: fix BUG in control filesystem if it is umounted and
961         mounted again, while some fuse filesystems are present.
962         Bugreport from Florent Mertens
964         * kernel: sync with mainline, support 2.6.20
966 2007-01-22  Miklos Szeredi <miklos@szeredi.hu>
968         * lib/Makefile.am: actually link libfuse against libfuse_libs
970 2007-01-19  Miklos Szeredi <miklos@szeredi.hu>
972         * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels.  Patch from
973         Ian Abbott
975 2007-01-18  Miklos Szeredi <miklos@szeredi.hu>
977         * Fix abort in fuse_new() compatibility API for opts == NULL case.
978         Novell bugzilla #233870.  Patch from Takashi Iwai.
980 2007-01-13  Miklos Szeredi <miklos@szeredi.hu>
982         * Fix option parsing in mount.fuse.  Patch from Jens M. Noedler
984 2007-01-02  Miklos Szeredi <miklos@szeredi.hu>
986         * Fix unaligned access in file desctriptor passing in libfuse,
987         fusermount and ulockmgr.  Debian bug ID: 404904.  Reported and
988         tested by Sebastian Fontius
990 2006-12-16  Miklos Szeredi <miklos@szeredi.hu>
992         * kernel: don't keep unreferenced inodes in the icache.
994 2006-12-15  Miklos Szeredi <miklos@szeredi.hu>
996         * fusermount: Fix detection of fuseblk.  Reported by Szakacsits
997         Szabolcs
999         * lib: Fix use after free in fuse_flush().  Reported by Ron
1000         Lindman
1002 2006-12-10  Miklos Szeredi <miklos@szeredi.hu>
1004         * mount.fuse: add "setuid=USER" option which does a "su - USER"
1005         for the filesystem
1007         * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1008         "/bin/umount" to remove entry from /etc/mtab.  This gets rid of
1009         the ugly code dealing with mtab, as well as a possible race
1010         between fusermount and mount trying to modify /etc/mtab at the
1011         same time
1013         * Fix "buffer size too small: 4" warning for users of the
1014         fuse_loop_mt_proc() function.
1016 2006-12-04  Miklos Szeredi <miklos@szeredi.hu>
1018         * Fix warnings with gcc-4.1 on 64bit archs.  Report from
1019         Harshavardhana
1021         * Add extra warning options, and fix resulting warnings
1023         * Really fix fuse_teardown problem
1025 2006-12-02  Miklos Szeredi <miklos@szeredi.hu>
1027         * Add -lrt to fuse.pc (if needed) to fix static linking against
1028         libfuse.  Reported by Szakacsits Szabolcs
1030 2006-12-01  Miklos Szeredi <miklos@szeredi.hu>
1032         * Released 2.6.1
1034 2006-11-30  Miklos Szeredi <miklos@szeredi.hu>
1036         * Fix API version 21 and 22 compatibility for fuse_teardown.
1037         Reported by Bgs
1039 2006-11-29  Miklos Szeredi <miklos@szeredi.hu>
1041         * fusermount: Print a more helpful message in case the kernel
1042         doesn't support the 'fuseblk' filesystem type.  This has been
1043         biting ntfs-3g users.  Reported by Yura Pakhuchiy
1045         * kernel: fix build problem for "make -C ...".  Reported by
1046         Stephen Bryant
1048 2006-11-19  Miklos Szeredi <miklos@szeredi.hu>
1050         * Fix bug in certain error paths of lookup routines.  The request
1051         object was reused for sending FORGET, which is illegal.  This bug
1052         could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1053         silently corrupt memory in earlier versions.  Report and test
1054         program by Russ Cox
1056 2006-11-11  Miklos Szeredi <miklos@szeredi.hu>
1058         * Print an error if an incompatible kernel interface version is
1059         detected in INIT.  This will only show if filesystem is started
1060         with -d or -f
1062         * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1063         fuse_setup_common().  Reported by Szakacsits Szabolcs
1065 2006-11-06  Miklos Szeredi <miklos@szeredi.hu>
1067         * Fix recursive locking in fuse_create().  Thanks to Takuya
1068         Ishibashi for the bug report
1070 2006-10-28  Miklos Szeredi <miklos@szeredi.hu>
1072         * Fix automake problem.  Patch from Nix
1074 2006-10-26  Miklos Szeredi <miklos@szeredi.hu>
1076         * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1077         always available on embedded systems.  Patch from Paul Smith
1079         * Fix util/Makefile.am, so that failure to run update-rc.d or
1080         device creation doesn't cause make to fail.  Reported by Paul
1081         Smith
1083 2006-10-21  Miklos Szeredi <miklos@szeredi.hu>
1085         * Released 2.6.0
1087 2006-10-18  Miklos Szeredi <miklos@szeredi.hu>
1089         * fusermount: don't try to create a lock file if /etc/mtab is a
1090         symlink.  Report and patch from Alexei Sheplyakov (debian bug
1091         #393693)
1093 2006-10-17  Miklos Szeredi <miklos@szeredi.hu>
1095         * Minor changes, sync with mainline tree
1097 2006-10-16  Miklos Szeredi <miklos@szeredi.hu>
1099         * Released 2.6.0-rc3
1101 2006-10-15  Miklos Szeredi <miklos@szeredi.hu>
1103         * kernel: cleanups
1105 2006-10-13  Miklos Szeredi <miklos@szeredi.hu>
1107         * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1108         Report from David Shaw
1110         * lib: Fix lost error on renaming a file. Report from David Shaw
1112         * lib: Fix lost error on hiding open files (renaming to
1113         .fuse_hiddenXXXX)
1115         * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1116         activity.  The cause of the bug was that some calls to
1117         i_size_write() were not protected by a lock, and hence
1118         i_size_seqcount could become corrupted.  This caused subsequent
1119         calls to i_size_read() to spin forever.  This is a long standing
1120         bug was probably introduced in version 2.2, and thought to be
1121         related to NFS exporting (it's not).  It was reported by various
1122         people, but Dana Henriksen has finally helped me to track it down,
1123         so big thanks to him
1125         * kernel: Protect against truncation of a swapfile
1127 2006-10-10  Miklos Szeredi <miklos@szeredi.hu>
1129         * kernel: Check for signature of super_operations->umount_begin().
1130         Ubuntu kernel 2.6.17 seems to use the new signature found in
1131         2.6.18.  Thanks to Florent Mertens for the report
1133 2006-10-08  Miklos Szeredi <miklos@szeredi.hu>
1135         * Make sure inode numers wrap around at 2^32.  This is needed on
1136         dual 64bit/32bit architectures, because 32bit applications using
1137         the non-largefile interface would otherwise break (EOVERFLOW error
1138         would be returned by the stat() system call family)
1140         * ulockmgr: handle the case, when a locking operation fails
1141         because no more file desctriptors are available in
1142         ulockmgr_server.  Also work around a Linux kernel bug (known to
1143         exist for all Linux kernel versions <= 2.6.18) which may cause
1144         sent file descriptors to be lost in the above case
1146         * ulockmgr: optimize file descriptor use
1148         * restore needed cpp flags to util/Makefile.am
1150         * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1152         * Minor clean up of udev rules
1154         * Add a synchronous DESTROY message to kernel interface.  This is
1155         invoked from umount, when the final instance of the filesystem is
1156         released.  It is only sent for filesystems mounted with the
1157         'blkdev' option for security reasons.
1159         * If the DESTROY message is received, call the filesystem's
1160         ->destroy() method.  In this case it's not called from session
1161         destruction as it would be otherwise.
1163 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1165         * Released 2.6.0-rc2
1167 2006-10-01  Miklos Szeredi <miklos@szeredi.hu>
1169         * Add support for FLUSH+RELEASE operation for FreeBSD.  Original
1170         patch by Csaba Henk
1172         * Add init script to insert fuse module and mount the control
1173         filesystem.  The script is installed as /etc/init.d/fuse and on
1174         debian based systems (where update-rc.d is available) symlinks
1175         from /etc/rc*.d/ are also installed.
1177         * Include '#define FUSE_USE_VERSION=XX' into examples so they
1178         become more self contained.
1180 2006-09-30  Miklos Szeredi <miklos@szeredi.hu>
1182         * API changes:
1184         * Move lock_owner from a separate argument into fuse_file_info
1186         * Add a flag to fuse_file_info indicating (1) a highlevel lock
1187         operation (unlock all) was initiated by a flush, (2) a lowlevel
1188         release operation should perform a flush as well.
1190         * fusermount: revert modprobe change (2006-08-18) since it
1191         doesn't work reliably with udev
1193         * Add support for block device backed filesystems.  This mode is
1194         selected with the 'blkdev' option, which is privileged.
1196         * Add support for the bmap (FIBMAP ioctl) operation on block
1197         device backed filesystems.  This allows swapon and lilo to work on
1198         such filesystems.
1200         * kernel changes:
1202         * Drop support for kernels earlier than 2.6.9.  Kernel module from
1203         previous (2.5.x) release can be used with library from this
1204         release
1206         * In fuse_dentry_revalidate() use dget_parent() instead of
1207         dereferencing d_parent, since there's no protection against parent
1208         changing and going away
1210         * Protect nlookup from concurrent updates
1212         * In lookup if a directory alias exists but is unused,
1213         then get rid of it, otherwise return -EBUSY.
1215         * In mkdir if a directory alias exists, return success, but leave
1216         dentry negative.  In reality this could happen if a remote rename
1217         immediately followed the mkdir.
1219         * Don't BUG in fuse_iget() if multiple retries are needed to get a
1220         good inode.  This could happen if several lookups are racing for
1221         the same inode.
1223 2006-09-29  Miklos Szeredi <miklos@szeredi.hu>
1225         * Fix compilation on 2.6.9.  Report from Troy Ayers
1227 2006-09-27  Miklos Szeredi <miklos@szeredi.hu>
1229         * Fix Oops in fuse_readpages().  Reported by David Shaw
1231 2006-09-24  Csaba Henk <csaba.henk@creo.hu>
1233         * Add support for nanosec times on FreeBSD
1235         * Fix FreeBSD compatibility issues
1237 2006-09-23  Miklos Szeredi <miklos@szeredi.hu>
1239         * Fix one more compatibility bug.  Thanks to Ricardo Correia
1241         * Fix utimens compilation with uClibc.  Patch from Jamie Guinan
1243 2006-09-22  Miklos Szeredi <miklos@szeredi.hu>
1245         * Fixed several compatibility bugs in low level interface.
1246         Reported by Ricardo Correia
1248         * Add workaround for ARM caching bug
1250 2006-09-16  Miklos Szeredi <miklos@szeredi.hu>
1252         * Rename new utimes() method to more logical utimens()
1254 2006-09-14  Miklos Szeredi <miklos@szeredi.hu>
1256         * Fuse tried to unlink already unlinked hidden files.  Bug
1257         reported by Milan Svoboda
1259 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1261         * Released 2.6.0-rc1
1263 2006-09-10  Miklos Szeredi <miklos@szeredi.hu>
1265         * kernel: Fix unlock on close for kernels < 2.6.18
1267         * Add ulockmgr library & server.  This can be used for handling
1268         file locking requests either directly from libfuse or over a
1269         network, etc.  This first version is not optimized and the number
1270         of file descriptors it uses may get out of hand
1272 2006-09-07  Miklos Szeredi <miklos@szeredi.hu>
1274         * lib: Add interrupt support to high level library, which may be
1275         enabled with the 'intr' mount option.
1277         * When an operation is interrupted the thread handling that
1278         operation will receive SIGUSR1 (or other signal specified with the
1279         'intr_signal=N' option).  The library installs a no-op signal
1280         handler for this signal, unless there's already a handler
1281         installed.
1283         * The filesystem may query interrupt status (regardless of 'intr')
1284         with the fuse_interrupted() function.
1286         * mount.fuse: initialize $HOME if not set.  Report from Sven Goldt
1288 2006-09-03  Miklos Szeredi <miklos@szeredi.hu>
1290         * lib: Multithreaded loop now allows unlimited number of threads.
1291         This is needed for locking operations which may block
1292         indefinitely.  Also the kernel now doesn't limit the number of
1293         outstanding requests so the library shouldn't do so either.
1295 2006-09-01  Miklos Szeredi <miklos@szeredi.hu>
1297         * Fix recursive lock bug in interrupt handling
1299         * Add utimes() method to highlevel interface, which supports
1300         setting times with nanosecond resolution
1302 2006-08-18  Miklos Szeredi <miklos@szeredi.hu>
1304         * kernel: fix page leak if fuse_readpages() failed in it's
1305         initialization.  Bug found and original patch from Alexander
1306         Zarochentsev
1308         * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1309         the kernel tree) the statfs method will receive the path within
1310         the filesystem on which the stat(v)fs syscall was called
1312         * fusermount: try to modprobe fuse module if invoked by root and
1313         unable to open device.  This is needed with udev, since the device
1314         node will be created only when the module is inserted, hence
1315         module autoloading won't work.  Reported by Szakacsits Szabolcs
1317 2006-07-30  Miklos Szeredi <miklos@szeredi.hu>
1319         * fusermount: if selinux is active, restore the original file's
1320         security context in unmount_rename().  Redhat bugzilla id 188561.
1321         Patch from Yves Perrenoud
1323         * Add POSIX file locking operation to high level library
1325         * Initialize context for unlink of hidden files on umount.  Bug
1326         reported by Tim Stoakes
1328 2006-07-14  Miklos Szeredi <miklos@szeredi.hu>
1330         * Multiple release() calls can race with each other, resulting in
1331         the hidden file being deleted before the last release finishes.
1332         Bug found and patch tested by Mark Huijgen
1334 2006-07-05  Miklos Szeredi <miklos@szeredi.hu>
1336         * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1337         this makes sense on systems using udev.  Reported by Szakacsits
1338         Szabolcs
1340 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1342         * Released 2.6.0-pre3
1344 2006-06-29  Miklos Szeredi <miklos@szeredi.hu>
1346         * Support in kernel module for file locking and interruption.  The
1347         same functionality is available in official kernels >= 2.6.18
1349 2006-06-28  Miklos Szeredi <miklos@szeredi.hu>
1351         * Add POSIX file locking support
1353         * Add request interruption
1355 2006-06-06  Miklos Szeredi <miklos@szeredi.hu>
1357         * Add missing pthread_rwlock_destroy().  Patch from Remy Blank
1359 2006-06-05  Remy Blank <remy.blank@pobox.com>
1361         * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1362         unmounting succeeds even if mount point was relative.
1364 2006-06-04  Csaba Henk <csaba.henk@creo.hu>
1366         * lib: fix emergency umount in helper.c when malloc fails.
1367         (The way it was done would end up in a segfault.)
1369 2006-06-01  Csaba Henk <csaba.henk@creo.hu>
1371         * lib: adjust threading related compiler flags.
1372         Switch to "-pthread" from "-lpthread" as that's the preferred
1373         one on several platforms. Consulted with Terrence Cole and
1374         Miklos Szeredi
1376 2006-05-08  Miklos Szeredi <miklos@szeredi.hu>
1378         * lib: search fusermount in installation directory (bindir) as
1379         well as in PATH.
1381 2006-05-03  Miklos Szeredi <miklos@szeredi.hu>
1383         * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1384         Reported by Christian Magnusson
1386 2006-04-23  Csaba Henk <csaba.henk@creo.hu>
1388         * lib: make FreeBSD mount routine recognize if kernel features
1389         backgrounded init and if it does, run the mount util in foreground
1390         (similarly to Linux)
1392 2006-04-21  Miklos Szeredi <miklos@szeredi.hu>
1394         * kernel: fix fput deadlock fix, the lockless solution could lead
1395         to "VFS: busy inodes after umount..."
1397         * kernel: fix race between checking and setting file->private_data
1398         for the device.  Found by Al Viro
1400 2006-04-11  Miklos Szeredi <miklos@szeredi.hu>
1402         * kernel: remove request pool, instead allocate requests on
1403         demand.  Account the number of background requests, and if they go
1404         over a limit, block the allocation of new requests.
1406         * kernel: fix deadlock if backgrounded request holds the last
1407         reference to the super block
1409         * kernel: don't use fuse_reset_request() during direct I/O
1411 2006-04-06  Csaba Henk <csaba.henk@creo.hu>
1413         * lib: Let FreeBSD mount option parsing routine recognize "no"
1414         prefixes for FUSE specific options as well
1416 2006-04-01  Miklos Szeredi <miklos@szeredi.hu>
1418         * lib: Add missing rwlock initialization.  Patch by Ryan Bradetich
1420 2006-03-17  Miklos Szeredi <miklos@szeredi.hu>
1422         * API changes:
1424         * fuse_main(), fuse_setup() and fuse_new() have an additionl
1425         user_data parameter
1427         * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1428         file descriptor
1430         * fuse_unmount() receives a 'struct fuse_chan' pointer.  It
1431         destroys the given channel
1433         * fuse_teardown() no longer has a file descriptor parameter
1435         * new exported functions: fuse_session_remove_chan(),
1436         fuse_get_session(), fuse_daemonize()
1438         * fuse_chan_recv() may now return a new channel which will be used
1439         to send the reply
1441 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1443         * Released 2.6.0-pre2
1445 2006-03-16  Miklos Szeredi <miklos@szeredi.hu>
1447         * Don't unmount if already unmounted.  This fixes a problem seen
1448         in the following situation: Lazy unmount a busy filesystem; Mount
1449         a new one in top; When the first finally unmounts, the second also
1450         unmounts.  Reported by Franco Broi
1452 2006-03-15  Miklos Szeredi <miklos@szeredi.hu>
1454         * lowlevel lib: use indirect function calls instead of a
1455         switch/case construct.  Besides increased efficiency it helps
1456         maintainability & readability too.  Patch from Florin Malita
1458 2006-03-13  Miklos Szeredi <miklos@szeredi.hu>
1460         * kernel: replace global spinlock with a per-connection spinlock
1462 2006-03-10  Miklos Szeredi <miklos@szeredi.hu>
1464         * Fix source compatibility breakage for fuse_unmount().  Report
1465         from Yura Pakhuchiy
1467 2006-03-02  Miklos Szeredi <miklos@szeredi.hu>
1469         * Fix O_ASYNC handling in fuse_dev_release().  From Jeff Dike
1471 2006-03-01  Miklos Szeredi <miklos@szeredi.hu>
1473         * Add O_ASYNC and O_NONBLOCK support to FUSE device.  Patch by
1474         Jeff Dike
1476         * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1477         interface to return -errno in case of error.
1479 2006-03-01  Csaba Henk <csaba.henk@creo.hu>
1481         * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1482         FreeBSD implementation so that it uses libc (sysctl backed) instead
1483         of an embdedded script (kmem backed). Adjust the control flow of
1484         hello_ll so that device doesn't get closed before unmount attempt.
1486 2006-02-25  Miklos Szeredi <miklos@szeredi.hu>
1488         * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1489         implement method.  This is needed on FreeBSD, and nicer on Linux
1490         too.  Highlevel lib already did this.  Reported by Csaba Henk
1492         * Fix negative entry handling.  There was a bug, that negative
1493         lookups with timeouts (nodeid == 0) returned -EIO.
1495 2006-02-23  Miklos Szeredi <miklos@szeredi.hu>
1497         * Fix race between RELEASE and UNLINK, which might leave
1498         .fuse_hidden* files around
1500 2006-02-21  Miklos Szeredi <miklos@szeredi.hu>
1502         * fusexmp_fh: implement flush() method and call close() on the
1503         open file descriptor.  This is needed if used on an NFS
1504         filesystem, which buffers data until file is closed.  Franco Broi
1505         spotted the situation when 'cp -p' failed to set the modification
1506         time because of this.
1508 2006-02-20  Miklos Szeredi <miklos@szeredi.hu>
1510         * Released 2.6.0-pre1
1512 2006-02-19  Miklos Szeredi <miklos@szeredi.hu>
1514         * libfuse: fix use-after-free bug in interruptred reply_entry().
1515         Patch from John Muir
1517         * libfuse: fix wrong symbol versioning for fuse_mount.  Debian bug
1518         ID: 352631.  Found by Stéphane Rosi
1520 2006-02-17  Miklos Szeredi <miklos@szeredi.hu>
1522         * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1523         into a single function fuse_add_direntry().  This cleans up the
1524         interface and makes it possible to do stacking.
1526 2006-02-16  Miklos Szeredi <miklos@szeredi.hu>
1528         * Fix rare race betweeen abort and release caused by failed iget()
1529         in fuse_create_open().
1531         * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1532         own attribute caching.
1534 2006-02-15  Miklos Szeredi <miklos@szeredi.hu>
1536         * Work around FreeBSD runtime linker "feature" which binds an old
1537         version of a symbol to internal references if the symbol has more
1538         than one version.  This resulted in infinite recursion in
1539         fuse_lowlevel_new_compat25().
1541 2006-02-10  Csaba Henk <csaba.henk@creo.hu>
1543         * Refine clock_gettime() querying so that linker options
1544         shall be set as it's appropriate for the target platform.
1546 2006-02-09  Miklos Szeredi <miklos@szeredi.hu>
1548         * Fix udev rule syntax.  Reported by Nix
1550 2006-02-08  Miklos Szeredi <miklos@szeredi.hu>
1552         * In some cases udev rule seems to be ineffective when installed
1553         as 40-fuse.rules but work as 60-fuse.rules.  Reported by John Hunt
1555 2006-02-03  Miklos Szeredi <miklos@szeredi.hu>
1557         * Fix compilation when build directory is different from source
1558         directory.  Reported by Frédéric L. W. Meunier
1560 2006-02-02  Miklos Szeredi <miklos@szeredi.hu>
1562         * Fix even bigger bug introduced in fix for request_end() on
1563         2006-01-14.  Reported by Gal Rosen
1565 2006-01-30  Miklos Szeredi <miklos@szeredi.hu>
1567         * highlevel-lib: add 'auto_cache' option.  This caches file data
1568         based on modification time and size
1570 2006-01-20  Miklos Szeredi <miklos@szeredi.hu>
1572         * Sanitize storage type and help message in mount_bsd.c.  Patch
1573         from Csaba Henk
1575         * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1576         FUSE_OPT_KEY_DISCARD
1578         * Add options 'max_readahead', 'sync_read' and 'async_read'
1580         * Kernel ABI version 7.6:
1582         * Negotiate the 'max_readahead' value and 'async_read' flags with
1583         userspace in the INIT method
1585         * Add connection info to ->init() methods to both lowlevel and
1586         highlevel API
1588         * Fall back to synchronous read() behavior if either library or
1589         userspace filesystem is using the old interface version.  This is
1590         needed so non-updated filesystems won't be confused by the
1591         different read() behavior
1593 2006-01-19  Miklos Szeredi <miklos@szeredi.hu>
1595         * lib: if "fsname=" option was given, pass it to fusermount
1597         * fuse_opt: add new fuse_opt_insert_arg() function, which is
1598         needed by filesystems to implement some argument manipulations
1599         correctly
1601         * fuse_opt: fix memory leak in handling "--" option
1603 2006-01-18  Miklos Szeredi <miklos@szeredi.hu>
1605         * kernel: fix detection of case when fuse is not configured into
1606         the kernel either as module or built-in
1608         * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1609         'template' structure member to 'templ'.  Reported by Takashi Iwai
1611         * fuse.h: fix compatibility bugs.  Patch by Yura Pakhuchiy
1613         * kernel: support version 2.6.16 (i_sem -> i_mutex)
1615 2006-01-16  Miklos Szeredi <miklos@szeredi.hu>
1617         * Added (again) asynchronous readpages support
1619         * Each connection now shows up under /sys/fs/fuse/connections
1621         * Connection attributes exported to sysfs: 'waiting' number of
1622         waiting requests; 'abort' abort the connection
1624         * Connection may be aborted through either the sysfs interface or
1625         with 'umount -f mountpoint'
1627 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1629         * Released 2.5.0
1631 2006-01-14  Miklos Szeredi <miklos@szeredi.hu>
1633         * kernel: fix a couple of bugs
1635         * Order of request_end() and fuse_copy_finish() was wrong.
1636         Posthumous note: Franco Broi managed to exploit this, though it
1637         seemed quite impossible
1639         * request_end() used request pointer after decrementing refcount
1641         * Clearing ->connected or ->mounted connection flags could race
1642         with setting other bitfields not protected with a lock
1644 2006-01-10  Miklos Szeredi <miklos@szeredi.hu>
1646         * kernel: add necessary compile flags for 2.4.X/x86_64.
1647         Report from Sean Ziegeler
1649 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1651         * Released 2.5.0-pre2
1653 2006-01-09  Miklos Szeredi <miklos@szeredi.hu>
1655         * Applied patch from Csaba Henk, to update mount_bsd to new
1656         fuse_mount() semantics
1658         * Ignore auto,noauto,... options in mount.fuse.  Reported by Frank
1659         Steiner and Don Taber
1661         * fusermount: add 'dirsync' mount option
1663 2006-01-07  Miklos Szeredi <miklos@szeredi.hu>
1665         * Improved help reporting and added version reporting to library
1667 2006-01-06  Miklos Szeredi <miklos@szeredi.hu>
1669         * Change working directory to "/" even if running in the
1670         foreground.  Patch from Jonathan Brandmeyer
1672         * Changed lots of functions to use 'struct fuse_args' instead of
1673         separate argc and argv
1675         * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1676         fuse_remove_signal_handlers() functions, so that it's now pretty
1677         easy to get all the functionality of fuse_main() with a filesystem
1678         using the lowlevel API.
1680 2006-01-02  Miklos Szeredi <miklos@szeredi.hu>
1682         * mount.fuse: the 'user' option should be ignored. Report and
1683         solution from Mattd.
1685         * mount.fuse: export PATH in the right place. Report and patch
1686         from Hannes Schweizer
1688 2005-12-16  Miklos Szeredi <miklos@szeredi.hu>
1690         * Clean up the option parsing interface slightly, by creating an
1691         "argument list" structure, that contains the argument vector and
1692         count
1694 2005-12-15  Miklos Szeredi <miklos@szeredi.hu>
1696         * fusermount: check if /mnt/mtab is a symlink and don't modify it
1697         in that case
1699         * kernel: simplify request size limiting. INIT only contains
1700         maximum write size, maximum path component size remains fixed at
1701         1024 bytes, and maximum xattr size depends on read buffer.
1703 2005-12-14  Miklos Szeredi <miklos@szeredi.hu>
1705         * Fix readdir() failure on x86_64, of 32bit programs compiled
1706         without largefile support.  Bug report and help from Anthony
1707         Kolasny
1709         * If lookup returns invalid mode, return -EIO instead of creating
1710         a regular file
1712         * Add current output argument vector to option processing
1713         function
1715 2005-12-12  Miklos Szeredi <miklos@szeredi.hu>
1717         * Fix stale code in ifdef FreeBSD.  Patch from Csaba Henk
1719 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1721         * Released 2.5.0-pre1
1723 2005-12-09  Miklos Szeredi <miklos@szeredi.hu>
1725         * libfuse: added option parsing interface, defined in
1726         <fuse_opt.h>.
1728 2005-12-07  Miklos Szeredi <miklos@szeredi.hu>
1730         * Return EIO for file operations (read, write, fsync, flush) on
1731         open files whose inode has become "bad".  Inodes will be marked
1732         "bad" if their type changes.  Bug report by Csaba Henk
1734 2005-12-06  Miklos Szeredi <miklos@szeredi.hu>
1736         * Use bigger request buffer size.  write() did not work on archs
1737         with > 4k page size, Bug report by Mark Haney
1739         * ABI version 7.5:
1741         * Extend INIT reply with data size limits
1743 2005-12-02  Miklos Szeredi <miklos@szeredi.hu>
1745         * Fix memory leak in fuse_read_cmd()/fuse_process_cmd().  Bug
1746         reported by Vincenzo Ciancia
1748         * Handle exit-by-umount in fuse_read_cmd()
1750 2005-11-29  Miklos Szeredi <miklos@szeredi.hu>
1752         * Check if '-msoft-float' option is supported by compiler when
1753         configuring for a 2.4.x kernel.  Bug report by Mark Haney
1755         * In multithreaded loop send a TERM signal to the main thread if
1756         one of the other threads exit.  Needed on FreeBSD for a clean exit
1757         on umount.  Should not cause any harm on Linux either
1759 2005-11-28  Miklos Szeredi <miklos@szeredi.hu>
1761         * Fix bug in 32-bit file handle compatibility
1763 2005-11-27  Miklos Szeredi <miklos@szeredi.hu>
1765         * Block TERM, INT, HUP and QUIT signals in all but the main
1766         thread.  According to POSIX it's not specified which thread will
1767         receive these signals.
1769         * Kernel changes:
1771         * Check for directory aliasing on mkdir, not just on lookup
1773         * Check for special node ID values in create+open operation
1775         * Sync with -mm: readv, writev, aio_read and aio_write methods
1776         added to file operations
1778         * Cleanups: lookup code, page offset calculation
1780         * ABI stepped to 7.4, changes:
1782         * frsize member added to fuse_kstatfs structure
1784         * added support for negative entry caching: on lowlevel API if
1785         fuse_entry_param::ino is set to zero in reply to a lookup request,
1786         the kernel will cache the dentry for the specified amount of time.
1788         * libfuse: added 'negative_timeout' option: specifies how much
1789         negative entries should be cached.  Default is zero, to be
1790         compatible with prior versions
1792 2005-11-22  Miklos Szeredi <miklos@szeredi.hu>
1794         * Add detection of mainline FUSE code in running kernel
1796 2005-11-21  Miklos Szeredi <miklos@szeredi.hu>
1798         * Don't use async cancelation in multithreaded loop.  This makes
1799         it more portable to systems where read() is not async cancel safe.
1800         Report from Andriy Gapon
1802 2005-11-20  Miklos Szeredi <miklos@szeredi.hu>
1804         * Warn if API version 11 compatibility is requested
1806 2005-11-17  Miklos Szeredi <miklos@szeredi.hu>
1808         * More FreeBSD merge
1810         * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1811         them, because it corrupts /etc/mtab.  Found by Thomas Biege
1812         CVE-2005-3531
1814         * libfuse: don't use system() to invoke 'fusermount -u ...'
1815         because it breaks mountpoints with spaces in them into multiple
1816         arguments
1818 2005-11-16  Miklos Szeredi <miklos@szeredi.hu>
1820         * Merge library part of FreeBSD port.  Patch by Csaba Henk
1822 2005-11-11  Miklos Szeredi <miklos@szeredi.hu>
1824         * Use 64bit type for file handle, so the full range supported by
1825         the kernel interface is available to applications
1827 2005-11-10  Miklos Szeredi <miklos@szeredi.hu>
1829         * Moved mountpoint argument checking from fuse_parse_cmdline() to
1830         fuse_mount() in preparation to FreeBSD merge.
1832 2005-11-08  Miklos Szeredi <miklos@szeredi.hu>
1834         * Remove unneeded close() from fuse_teardown().  Spotted by Csaba
1835         Henk.
1837 2005-11-07  Miklos Szeredi <miklos@szeredi.hu>
1839         * Make the statfs change backwards compatible.
1841 2005-11-06  Miklos Szeredi <miklos@szeredi.hu>
1843         * Change ->statfs() method to use 'struct statvfs' instead of
1844         'struct statfs'.  This makes the API more portable since statvfs()
1845         is defined by POSIX.
1847 2005-10-28  Miklos Szeredi <miklos@szeredi.hu>
1849         * Add fgetattr() method, which currently will only be called after
1850         a successful call to a create() method.
1852 2005-10-26  Miklos Szeredi <miklos@szeredi.hu>
1854         * Change kernel ABI version to 7.3
1856         * Add ACCESS operation.  This is called from the access() system
1857         call if 'default_permissions' mount option is not given, and is
1858         not called on kernels 2.4.*
1860         * Add atomic CREATE+OPEN operation.  This will only work with
1861         2.6.15 (presumably) or later Linux kernels.
1863         * Add ftruncate() method.  This will only work with 2.6.15
1864         (presumably) or later Linux kernels.
1866         * Fix kernel module compile if kernel source and build directories
1867         differ.  Report and initial patch by John Eastman
1869 2005-10-18  Miklos Szeredi <miklos@szeredi.hu>
1871         * lib: optimize buffer reallocation in fill_dir.
1873 2005-10-17  Miklos Szeredi <miklos@szeredi.hu>
1875         * Released 2.4.1
1877 2005-10-14  Miklos Szeredi <miklos@szeredi.hu>
1879         * libfuse: add debug for write result (by Shaun Jackman) and
1880         warnings for too large read/write result
1882 2005-10-11  Miklos Szeredi <miklos@szeredi.hu>
1884         * Spelling fixes, thanks to Ioannis Barkas
1886 2005-10-10  Miklos Szeredi <miklos@szeredi.hu>
1888         * fuse_common.h: use extern "C".  Thanks to Valient Gough for the
1889         patch
1891 2005-10-07  Miklos Szeredi <miklos@szeredi.hu>
1893         * highlevel-lib: init() and destroy() methods didn't have an
1894         initialized fuse_context.  Bug reported by Tim Stoakes
1896 2005-10-04  Miklos Szeredi <miklos@szeredi.hu>
1898         * Released 2.4.0
1900 2005-10-03  Miklos Szeredi <miklos@szeredi.hu>
1902         * Add documentation to fuse_lowlevel.h
1904         * API cleanups:
1906         * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1908         * Move fuse_mount() and fuse_unmount() to fuse_common.h
1910         * Change the return type of fuse_reply_none() from int to void.
1912 2005-09-30  Miklos Szeredi <miklos@szeredi.hu>
1914         * kernel: NFS exporting leaked dentries.  Bug found and fixed by
1915         Akshat Aranya.
1917 2005-09-29  Miklos Szeredi <miklos@szeredi.hu>
1919         * fusermount: fix error message, when unable to open /dev/fuse.
1920         Report by Balázs Pozsár
1922 2005-09-28  Miklos Szeredi <miklos@szeredi.hu>
1924         * UClibc fixes from Christian Magnusson
1926 2005-09-27  Miklos Szeredi <miklos@szeredi.hu>
1928         * Added NAME="%k" to util/udev.rules.  Fix by Mattias Wadman.
1930 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1932         * Released 2.4.0-rc1
1934 2005-09-26  Miklos Szeredi <miklos@szeredi.hu>
1936         * fusermount: allow user umount in the case when /etc/mtab is a
1937         symlink to /proc/mounts.  Reported by Balázs Pozsár.
1939 2005-09-23  Miklos Szeredi <miklos@szeredi.hu>
1941         * Check for special node ID values in lookup and creation
1943 2005-09-22  Miklos Szeredi <miklos@szeredi.hu>
1945         * Slight optimization in returning EINVAL error in case of an open
1946         with O_DIRECT flag.
1948 2005-09-20  Miklos Szeredi <miklos@szeredi.hu>
1950         * Remove '--enable-auto-modprobe' configure flag.  Module
1951         auto-loading is now handled by the kernel.
1953 2005-09-15  Miklos Szeredi <miklos@szeredi.hu>
1955         * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1956         Help from Jens M. Noedler.
1958 2005-09-14  Miklos Szeredi <miklos@szeredi.hu>
1960         * Add memory cleanup on thread exit
1962 2005-09-13  Miklos Szeredi <miklos@szeredi.hu>
1964         * Set umask to zero in fusexmp and fusexmp_fh, so that
1965         files/directories are created with the requested mode.
1967 2005-09-12  Miklos Szeredi <miklos@szeredi.hu>
1969         * Don't ignore read error in multithreaded loop
1971 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1973         * Released 2.4.0-pre2
1975 2005-09-08  Miklos Szeredi <miklos@szeredi.hu>
1977         * Revert lock and access operations.  Postpone these until 2.5.
1979 2005-09-02  Miklos Szeredi <miklos@szeredi.hu>
1981         * Fix compile warning on 2.6.13 and later
1983         * Fix compilation on old kernels
1985 2005-08-19  Miklos Szeredi <miklos@szeredi.hu>
1987         * lib: always refresh directory contents after rewinddir() to
1988         conform to SUS.  Bug found by John Muir.
1990 2005-08-15  Miklos Szeredi <miklos@szeredi.hu>
1992         * Released 2.4.0-pre1
1994 2005-08-14  Miklos Szeredi <miklos@szeredi.hu>
1996         * lib: cleaned up (or messed up, depending on your POV) the low
1997         level library API.  Hopefully this is close to the final form.
1999 2005-08-05  Miklos Szeredi <miklos@szeredi.hu>
2001         * fusermount: don't allow empty mountpoint argument, which defeats
2002         automatic umounting in fuse_main().  Bugreport by Václav Jůza
2004 2005-08-03  Miklos Szeredi <miklos@szeredi.hu>
2006         * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2007         option is used (Paul Alfille).
2009 2005-08-02  Miklos Szeredi <miklos@szeredi.hu>
2011         * highlevel-lib: added mount options "attr_timeout" and
2012         "entry_timeout".  These options control the length of time file
2013         attributes and entries (names) are cached.  Both default to 1.0
2014         second.
2016         * kernel: correctly handle zero timeout for attributes and entries
2018 2005-08-01  Miklos Szeredi <miklos@szeredi.hu>
2020         * Added missing symbols to versionscript (Joshua J. Berry)
2022         * kernel: implement two flags, open can set: 'direct_io' and
2023         'keep_cache'.  These correspond exactly to mount options
2024         'direct_io' and 'kernel_cache', but allow a per-open setting.
2026         * Move 'direct_io' and 'kernel_cache' mount option handling to
2027         userspace.  For both mount options, if the option is given, then
2028         the respective open flag is set, otherwise the open flag is left
2029         unmodified (so the filesystem can set it).
2031         * lib (highlevel): make open method optional
2033 2005-07-28  Miklos Szeredi <miklos@szeredi.hu>
2035         * kernel: invalidate attributes for read/readdir/readlink
2036         operations
2038         * kernel: detect newer UML kernels
2040 2005-07-26  Miklos Szeredi <miklos@szeredi.hu>
2042         * Make the installation path of fuse.ko and mount.fuse
2043         configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2044         environment variables.  Requirement and help from Csaba Henk.
2046 2005-07-22  Miklos Szeredi <miklos@szeredi.hu>
2048         * Fix bug, that causes filesystem requests to hang when unique
2049         request counter becomes negative.  This happens after
2050         2,147,483,648 operations, so most people won't care.  Thanks to
2051         Franco Broi for the report and testing.
2053 2005-07-21  Miklos Szeredi <miklos@szeredi.hu>
2055         * Don't change mtime/ctime/atime to local time on read/write.
2056         Bug reported by Ben Grimm
2058         * Install fuse_common.h and fuse_lowlevel.h.  Report by Christian
2059         Magnusson
2061         * fusermount: use getopt_long() for option parsing.  It allows the
2062         use of '--' to stop argument scanning, so fusermount can now
2063         operate on directories whose names begin with a '-'.  Patch by
2064         Adam Connell
2066 2005-07-15  Miklos Szeredi <miklos@szeredi.hu>
2068         * fusermount: add '-v', '--version' and '--help' options
2070         * add inode based API
2072 2005-07-12  Miklos Szeredi <miklos@szeredi.hu>
2074         * lib: don't block signals in worker threads.  Problem noticed by
2075         Usarin Heininga
2077 2005-07-07  Miklos Szeredi <miklos@szeredi.hu>
2079         * lib: don't allow both 'allow_other' and 'allow_root' options to
2080         be given
2082 2005-07-06  Miklos Szeredi <miklos@szeredi.hu>
2084         * fusermount: check if mountpoint is empty (only '.' and '..' for
2085         directories, and size = 0 for regular files).  If "nonempty"
2086         option is given, omit this check.  This is useful, so users don't
2087         accidentally hide data (e.g. from backup programs).  Thanks to
2088         Frank van Maarseveen for pointing this out.
2090         * kernel: check if mandatory mount options ('fd', 'rootmode',
2091         'user_id', 'group_id') are all given
2093         * lib: simplify 'readdir_ino' handling
2095         * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2097 2005-07-03  Miklos Szeredi <miklos@szeredi.hu>
2099         * kernel: clean up 'direct_io' code
2101 2005-06-28  Miklos Szeredi <miklos@szeredi.hu>
2103         * Add 'mount.fuse' written by Petr Klima
2105         * '/dev/fuse' is created by 'make install' if does not yet exist
2107 2005-06-20  Miklos Szeredi <miklos@szeredi.hu>
2109         * Fix UCLIBC compile error.  Patch by Christian Magnusson
2111 2005-06-08  Miklos Szeredi <miklos@szeredi.hu>
2113         * Enable the auto-loading of the module via access to the
2114         corresponding device file.  Patch by Takashi Iwai.
2116         * Allow mounting a regular file (over a regular file) for
2117         unprivleged users.
2119         * Do not create temporary device file.  Require "/dev/fuse" to
2120         exist, and be readable/writable by the mounting user.
2122 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2124         * Released 2.3.0
2126 2005-06-02  Miklos Szeredi <miklos@szeredi.hu>
2128         * Fix serious information leak: if the filesystem returns a short
2129         byte count to a read request, and there are non-zero number of
2130         pages which are not filled at all, these pages will not be zeroed.
2131         Hence the user can read out previous memory contents.  Found by
2132         Sven Tantau.
2134 2005-05-27  Miklos Szeredi <miklos@szeredi.hu>
2136         * Add "readdir_ino" mount option, which tries to fill in the d_ino
2137         field in struct dirent.  This mount option is ignored if "use_ino"
2138         is used.  It helps some programs (e.g. 'pwd' used over NFS from a
2139         non-Linux OS).  Patch by David Shaw.
2141 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2143         * Released 2.3-rc1
2145 2005-05-12  Miklos Szeredi <miklos@szeredi.hu>
2147         * File save in krusader and other editors doesn't work with sshfs,
2148         because open() is interrupted by a periodic signal, and open()
2149         restarts forever, without any progress.  This could just be fixed
2150         in open(), but the problem is more generic: if signals are
2151         received more often than the filesystem can get the request to
2152         userspace, it will never finish.  This is probably only a
2153         theoretical problem, nevertheless I'm removing the possibility to
2154         interrupt requests with anything other than SIGKILL, even before
2155         being sent to userspace.  Bugreport by Eduard Czimbalmos.
2157 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2159         * libfuse: add "tree_lock" rwlock, that is locked for write in
2160         rename, unlink and rmdir, and locked for read in all other
2161         operations.  This should fix the rename/release race reported by
2162         Valient Gough and others.  The solution is very coarse, a finer
2163         grained locking scheme could be implemented, but it would be much
2164         more complex.  Let's see whether this is good enough.
2166 2005-05-09  Miklos Szeredi <miklos@szeredi.hu>
2168         * Released 2.3-pre7
2170 2005-05-08  Miklos Szeredi <miklos@szeredi.hu>
2172         * Better fix for out of order FORGET messages.  Now the
2173         LOOKUP/FORGET messages are balanced exactly (one FORGET can
2174         balance many lookups), so the order no longer matters.  This
2175         changes the kernel ABI slightly, but the library remains backward
2176         compatible.
2178 2005-05-06  Miklos Szeredi <miklos@szeredi.hu>
2180         * Fix abort for out of order FORGET messages.  Again.  Spotted by
2181         Franco Broi again.  Sorry :)
2183 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2185         * Released 2.3-pre6
2187 2005-04-29  Miklos Szeredi <miklos@szeredi.hu>
2189         * Make fusermount work with fuse kernel modules not yet supporting
2190         the "group_id" option (added for the purpose of stricter
2191         permission checking).
2193 2005-04-28  Miklos Szeredi <miklos@szeredi.hu>
2195         * Check for hard-linked directories in lookup.  This could cause
2196         problems in the VFS, which assumes that such objects never exist.
2198         * Make checking of permission for other users more strict.  Now
2199         the same privilege is required for the mount owner as for ptrace
2200         on the process performing the filesystem operation.
2202 2005-04-23  Miklos Szeredi <miklos@szeredi.hu>
2204         * Released 2.3-pre5
2206 2005-04-22  Miklos Szeredi <miklos@szeredi.hu>
2208         * Add -msoft-float to kernel module compile flags for 2.4.X.  This
2209         is needed on certain architectures.  Report from Chris Kirby
2211         * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2212         Reported by David Shaw
2214         * Remove "allow_root" option from kernel module, and implement
2215         it's functionality in the library
2217         * Fix Oops caused by premature release of fuse_conn.  Clean up
2218         related code, to be more readable
2220         * Sendfile should not use page cache if "direct_io" mount option
2221         is given
2223 2005-04-08  Miklos Szeredi <miklos@szeredi.hu>
2225         * Fix Oops in case of nfs export.  Spotted by David Shaw
2227         * Fix another Oops in case of write over nfs with direct_io turned
2228         on.  Again spotted by David Shaw
2230 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2232         * Released 2.3-pre4
2234 2005-04-07  Miklos Szeredi <miklos@szeredi.hu>
2236         * lib: finalized new readdir() interface, which now supersedes the
2237         getdir() method.
2239 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2241         * Released 2.3-pre3
2243 2005-04-03  Miklos Szeredi <miklos@szeredi.hu>
2245         * Implement backward compatibility with version 5 kernel ABI
2247 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2249         * Released 2.3-pre2
2251 2005-04-01  Miklos Szeredi <miklos@szeredi.hu>
2253         * kernel: fix dirent offset handling
2255         * lib: add readdir and releasedir methods
2257         * lib: use fh field of fuse_file_info in opendir, readdir,
2258         releasedir and fsyncdir methods
2260         * lib: check kernel API version and bail out of it's old.  This
2261         will be properly fixed in the next release
2263 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2265         * Released 2.3-pre1
2267 2005-03-31  Miklos Szeredi <miklos@szeredi.hu>
2269         * kernel API: add padding to structures, so 64bit and 32bit
2270         compiler will return the same size
2272         * kernel API: add offset field to fuse_dirent.  This will allow
2273         more sophisticated readdir interface for userspace
2275         * kernel API: change major number to 6
2277         * kernel: fix warnings on 64bit archs
2279         * kernel: in case of API version mismatch, return ECONNREFUSED
2281 2005-03-24  Miklos Szeredi <miklos@szeredi.hu>
2283         * kernel: trivial cleanups
2285 2005-03-21  Miklos Szeredi <miklos@szeredi.hu>
2287         * Add fsyncdir() operation
2289 2005-03-19  Miklos Szeredi <miklos@szeredi.hu>
2291         * kernel: add locking to background list (fixes previous fix)
2293 2005-03-18  Miklos Szeredi <miklos@szeredi.hu>
2295         * kernel: fix bug which could cause leave busy inodes after
2296         unmount, and Oops.
2298 2005-03-08  Miklos Szeredi <miklos@szeredi.hu>
2300         * examples: add -lpthread to link flags to work around valgrind
2301         quirk
2303         * lib: don't exit threads, so cancelation doesn't cause segfault
2305 2005-03-04  Miklos Szeredi <miklos@szeredi.hu>
2307         * kernel: fix nasty bug which could cause an Oops under certain
2308         situations.  Found by Magnus Johansson
2310 2005-02-28  Miklos Szeredi <miklos@szeredi.hu>
2312         * libfuse: added opendir() method.  This can be used in case
2313         permission checking in getdir() is too late.  Thanks to Usarin
2314         Heininga for pointing out this deficiency
2316         * libfuse: added init() and destroy() methods to fuse_operations
2318         * kernel: llseek() method for files and directories made explicit
2320         * kernel: fixed inode leak in NFS export in case of nodeid
2321         wrapping
2323 2005-02-15  Miklos Szeredi <miklos@szeredi.hu>
2325         * libfuse: clean up some unitialized memory found with valgrind
2327         * Add -lpthread to Libs in fuse.pc.  Valgrind seems to need an
2328         explicitly linked libpthread for applications
2330 2005-02-10  Miklos Szeredi <miklos@szeredi.hu>
2332         * fusermount: set umask, otherwise /etc/mtab will have
2333         unpredictable permission.  Spotted by Jindrich Kolorenc
2335         * fusermount: set owner and group of /etc/mtab to original values
2336         on unmount
2338         * libfuse: add 'use_ino' option to help.  Patch by Valient Gough
2340 2005-02-07  Miklos Szeredi <miklos@szeredi.hu>
2342         * Cleaned up directory reading (temporary file is not used)
2344 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2346         * Released 2.2
2348 2005-02-02  Miklos Szeredi <miklos@szeredi.hu>
2350         * Fix possible race when operation is interrupted
2352 2005-01-28  Miklos Szeredi <miklos@szeredi.hu>
2354         * Fix compilation on 2.6.7
2356 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2358         * Released 2.2-pre6
2360 2005-01-26  Miklos Szeredi <miklos@szeredi.hu>
2362         * Fix bug in link() operation which caused the wrong path to be
2363         passed as the first argument.  Found by Anton Altaparmakov
2365 2005-01-21  Miklos Szeredi <miklos@szeredi.hu>
2367         * LIB: fix double reply in readdir operation
2369         * fusermount: fix uid checking bug.  Patch by Adam Connell
2371         * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2372         Patch by Keshava Gowda
2374 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2376         * KERNEL: provide correct llseek semantics for fuse device (fixes
2377         a bug on Progeny 2.4.20 kernel).  Reported by Valient Gough
2379 2005-01-20  Miklos Szeredi <miklos@szeredi.hu>
2381         * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2383 2005-01-18  Miklos Szeredi <miklos@szeredi.hu>
2385         * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2386         and RELEASEDIR.  This ends the ugly hack of passing a file
2387         descriptor to the kernel, and actually makes the code simpler.
2389 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2391         * Released 2.2-pre4
2393 2005-01-17  Miklos Szeredi <miklos@szeredi.hu>
2395         * fusermount: remove capability setting, which was the cause of
2396         problems for some users.  It seems that FS related capabilities
2397         are removed by setfsuid(), so this isn't even needed.
2399 2005-01-15  Miklos Szeredi <miklos@szeredi.hu>
2401         * fix compilation on 2.4 kernels (reported by Valient Gough)
2403         * fix failure to unmount bug (found by David Shaw)
2405         * fusermount: improve parsing of /etc/fuse.conf
2407 2005-01-13  Miklos Szeredi <miklos@szeredi.hu>
2409         * Remove 'mount_max' and 'user_allow_other' module options.  These
2410         are now checked by fusermount, and can be set in /etc/fuse.conf
2412         * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2414 2005-01-11  Miklos Szeredi <miklos@szeredi.hu>
2416         * KERNEL: fix possible inode allocation problem, where
2417         sizeof(struct inode) is not aligned (found by Mike Waychison)
2419         * KERNEL: use new follow_link/put_link methods
2421         * KERNEL: cosmetic fixes
2423 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2425         * Released 2.2-pre3
2427 2005-01-10  Miklos Szeredi <miklos@szeredi.hu>
2429         * Add missing code that was accidently left out
2431 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2433         * Released 2.2-pre2
2435 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2437         * Change "uid" mount option to "user_id" to avoid confusion with a
2438         mount option "uid" commonly used by many filesystems
2440 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2442         * Released 2.2-pre1
2444 2005-01-09  Miklos Szeredi <miklos@szeredi.hu>
2446         * If FUSE is configured in the kernel, don't build it by default
2448 2005-01-07  Miklos Szeredi <miklos@szeredi.hu>
2450         * Compile fix by Christian Magnusson
2452 2005-01-05  Miklos Szeredi <miklos@szeredi.hu>
2454         * Fix compilation for 2.6.{0-5} kernels
2456 2005-01-04  Miklos Szeredi <miklos@szeredi.hu>
2458         * KERNEL: if request is interrupted, still keep reference to used
2459         inode(s) and file, so that FORGET and RELEASE are not sent until
2460         userspace finishes the request.
2462         * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2463         request with the same information, which is more flexible,
2464         simpler, works on embedded systems.
2466 2004-12-16  Miklos Szeredi <miklos@szeredi.hu>
2468         * KERNEL ABI: update interface to make it independent of type
2469         sizes.  This will help on 64 bit architectures which can run
2470         legacy 32 bit applications.
2472         * KERNEL ABI: add "len" field to request headers.  This will allow
2473         sending/receiving requests in multiple chunks.
2475         * KERNEL: handle file type change more intelligently
2477         * LIB: "-o debug" option should disable backgrounding (fix by
2478         Fabien Reygrobellet)
2480 2004-12-13  Miklos Szeredi <miklos@szeredi.hu>
2482         * KERNEL: invalidate dentry/attributes if interrupted request
2483         could leave filesystem in an unknown state.
2485 2004-12-12  Miklos Szeredi <miklos@szeredi.hu>
2487         * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2488         These will cause some regressions, but stability is considered
2489         more important.  If any of these features turns out to be
2490         important, it can be readded with the deadlock problems addressed.
2492         * Make all requests interruptible (only with SIGKILL currently).
2493         This can be used to break any deadlock produced by the userspace
2494         filesystem accessing it's own exported files.  The RELEASE request
2495         is special, because if it's interrupted before sending it to
2496         userspace it is still sent, but the reply is not awaited.
2498         * If request is interrupted before being sent to userspace, and if
2499         it hasn't yet got any side effects, it is always restarted,
2500         regardless of the SA_RESTART flag.  This makes these interruptions
2501         transparent to the process.
2503         * Remove shared-writable mmap support, which was prone to an
2504         out-of-memory deadlock situation
2506         * Remove INVALIDATE userspace initiated request
2508         * Make readpages() synchronous.  Asynchronous requests are
2509         deadlock prone, since they cannot be interrupted.
2511         * Add readv/writev support to fuse device operations
2513         * Remove some printks, which userspace FS can use for a DoS
2514         against syslog
2516         * Remove 'large_read' mount option from 2.6 in kernel, check it in
2517         fusermount instead
2519         * LIB: improve compatibility with a fuse.h header installed in
2520         ${prefix}/include which in turn includes the real header.
2522         * LIB: improve compatibility by defining fuse_main() (which is now
2523         not used), so old configure scripts find it.
2525 2004-12-10  Miklos Szeredi <miklos@szeredi.hu>
2527         * When mounting on a subdirectory of / don't duplicate slashes at
2528         the beggining of path (spotted by David Shaw)
2530 2004-12-09  Miklos Szeredi <miklos@szeredi.hu>
2532         * Fix bug causing garbage in mount options (spotted by David Shaw)
2534 2004-12-07  Miklos Szeredi <miklos@szeredi.hu>
2536         * Add 'writepage' flag to 'fuse_file_info'.
2538         * More comments in fuse.h
2540         * Get rid of double underscores
2542 2004-12-04  Miklos Szeredi <miklos@szeredi.hu>
2544         * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2546         * helper.c: add -ho option, which only displays the options not
2547         the usage header.  This can be used by filesystems which have
2548         their own options.
2550 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2552         * Add source compatibility to 2.1 and 1.1 APIs.  To select betwen
2553         versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2554         including the fuse header
2556         * Add binary compatibility to 2.1 version of library with symbol
2557         versioning
2559 2004-12-03  Miklos Szeredi <miklos@szeredi.hu>
2561         * Released 2.1
2563 2004-12-01  Miklos Szeredi <miklos@szeredi.hu>
2565         * kernel: clean up writing functions
2567         * kernel: no allocation on write in direct_io mode
2569         * move linux/fuse.h to fuse_kernel.h
2571 2004-11-30  Miklos Szeredi <miklos@szeredi.hu>
2573         * kernel: clean up reading functions
2575 2004-11-29  Miklos Szeredi <miklos@szeredi.hu>
2577         * kernel: make readpage() uninterruptible
2579         * kernel: check readonly filesystem flag in fuse_permission
2581         * lib: don't die if version file not found and new style device
2582         exists
2584         * lib: add '-r' option, which is short for '-o ro'
2586         * fusermount: simplify device opening
2588         * kernel: when direct_io is turend on, copy data directly to
2589         destination without itermediate buffer.  More efficient and safer,
2590         since no allocation is done.
2592         * fusermount: fix warning if fuse module is not loaded
2594         * kernel: use /dev/fuse on 2.4 too
2596 2004-11-26  Miklos Szeredi <miklos@szeredi.hu>
2598         * libfuse API change: open, read, write, flush, fsync and release
2599         are passed a 'struct fuse_file_info' pointer containing the open
2600         flags (open and release), and the file handle.  Verion changed to
2601         3.0.
2603 2004-11-23  Miklos Szeredi <miklos@szeredi.hu>
2605         * More cleanups in the kernel
2607         * The 10,229 charater device number has been assigned for FUSE
2609         * Version file checking fix (reported by Christian Magnusson)
2611         * fusermount: opening the fuse device now doesn't need /sys.
2613         * Optimize reading by controlling the maximum readahead based on
2614         the 'max_read' mount option
2616         * fixes for UCLIBC (Christian Magnusson)
2618 2004-11-19  Miklos Szeredi <miklos@szeredi.hu>
2620         * Cleaned up kernel in preparation for merge into mainline:
2622         * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2624         * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2626         * __user annotations for sparse
2628         * allocate individual pages instead of kmalloc in fuse_readdir,
2629         fuse_read and fuse_write.
2631         * Fix NFS export in case "use_ino" mount option is given
2633         * Make libfuse and fusermount compatible with future versions
2635         * fusermount: properly add mount options to /etc/mtab
2637 2004-11-15  Miklos Szeredi <miklos@szeredi.hu>
2639         * fusermount: do not resolve last component of mountpoint on if it
2640         is '.' or '..'.  This new path resolvation is now done on mount as
2641         well as unmount.  This enables relative paths to work on unmount.
2643         * fusermount: parse common mount options like "ro", "rw", etc...
2645         * Allow module params to be changed through sysfs
2647 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2649         * Released 2.1-pre1
2651 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
2653         * Fix bug in fuse_readpages() causing Oops in certain situations.
2654         Bug found by Vincenzo Ciancia.
2656         * Fix compilation with kernels versions > 2.6.9.
2658 2004-11-11  Miklos Szeredi <miklos@szeredi.hu>
2660         * Check kernel interface version in fusermount to prevent
2661         strangeness in case of mismatch.
2663         * No need to allocate fuse_conn until actual mount happens
2665         * Fix potential race between umount and fuse_invalidate
2667         * Check superblock of proc file in addition to inode number
2669         * Fix race between request_send_noreply() and fuse_dev_release()
2671 2004-11-10  Miklos Szeredi <miklos@szeredi.hu>
2673         * Separate configure for the kernel directory
2675         * Don't allow write to return more than 'count'
2677         * Extend kernel interface for future use
2679 2004-11-09  Miklos Szeredi <miklos@szeredi.hu>
2681         * Fix 'makeconf.sh' to use autoreconf if available
2683 2004-11-08  Miklos Szeredi <miklos@szeredi.hu>
2685         * Add ino argument to 'fuse_dirfil_t'.  NOTE: This breaks source
2686         compatibility with earlier versions.  To compile earier versions
2687         just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2688         Do not use the "use_ino" mount flag with filesystems compiled with
2689         FUSE_DIRFIL_COMPAT.
2691         * Add pkg-config support.  To compile a FUSE based filesystem you
2692         can do  "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2693         or similar.  Note, that the PKG_CONFIG_PATH environment variable
2694         usually needs to be set to "/usr/local/lib/pkgconfig".
2696         * fuse.h is now installed in ${prefix}/include/fuse/
2698 2004-11-02  Miklos Szeredi <miklos@szeredi.hu>
2700         * Added "use_ino" mount option.  This enables the filesystems to
2701         set the st_ino field on files
2703 2004-11-01  Miklos Szeredi <miklos@szeredi.hu>
2705         * Fix compile problems with ancient (<=2.4.18) kernels (reported
2706         by Jeremy Smith)
2708         * Add "allow_root" mount option.  Patch by Yaroslav Rastrigin
2710         * Clear the 'exited' flag when mail loop is finished
2712 2004-10-28  Miklos Szeredi <miklos@szeredi.hu>
2714         * Make xattr functions work under 2.6 (bug found by Vincenzo
2715         Ciancia)
2717 2004-10-26  Miklos Szeredi <miklos@szeredi.hu>
2719         * Reset request in fuse_flush() (bugreport by David Shaw)
2721 2004-10-21  Miklos Szeredi <miklos@szeredi.hu>
2723         * fuse_main() now does not exit on error, rather it returns an
2724         error code
2726         * Exported __fuse_setup() and __fuse_teardown() functions, which
2727         make it easier to implement a custom event loop.
2729         * Use daemon() call to background the filesystem after mounting.
2730         This function closes the standard input, output and error and
2731         changes the current working directory to "/".
2733 2004-10-14  Miklos Szeredi <miklos@szeredi.hu>
2735         * Released 1.9
2737 2004-10-09  Miklos Szeredi <miklos@szeredi.hu>
2739         * Don't allow fuse_flush() to be interrupted (bug found by David
2740         Shaw)
2742 2004-09-27  Miklos Szeredi <miklos@szeredi.hu>
2744         * Add PID to fuse_context.  Patch by Steven James
2746         * Change file handle type to 'unsigned long' in kernel interface
2748 2004-09-22  Miklos Szeredi <miklos@szeredi.hu>
2750         * A slight API change: fuse_get_context() doesn't need the "fuse"
2751         pointer, but the returned context contains it instead.  The
2752         fuse_get() function is not needed anymore, so it's removed.
2754         * Fix mounting and umounting FUSE filesystem under another FUSE
2755         filesystem by non-root (bug spotted by Valient Gough)
2757 2004-09-21  Miklos Szeredi <miklos@szeredi.hu>
2759         * Fix deadlock in case of memory allocation failure.  Patch by
2760         Christian Magnusson
2762 2004-09-16  Miklos Szeredi <miklos@szeredi.hu>
2764         * Check memory allocation failures in libfuse
2766 2004-09-14  Miklos Szeredi <miklos@szeredi.hu>
2768         * Check temporary file creation failure in do_getdir().  Bug
2769         spotted by Terje Oseberg
2771 2004-09-13  Miklos Szeredi <miklos@szeredi.hu>
2773         * Allow "large_read" option for 2.6 kernels but warn of deprecation
2775         * Make requests non-interruptible so race with FORGET is avoided.
2776         This is only a temporary solution
2778         * Support compiling FUSE kernel module on 2.4.x UML kernels
2780 2004-09-09  Miklos Szeredi <miklos@szeredi.hu>
2782         * Fix bug in case two FORGETs for the same node are executed in
2783         the wrong order.  Bug spotted and endured for months by Franco
2784         Broi, and logfile for solution provided by Terje Oseberg
2786 2004-09-01  Miklos Szeredi <miklos@szeredi.hu>
2788         * Add -D_REENTRANT to the compile flags
2790         * Add documentation of fuse internals by Terje Oseberg
2792 2004-08-16  Miklos Szeredi <miklos@szeredi.hu>
2794         * Change release method to be non-interruptible.  Fixes bug
2795         causing missing release() call when program which has opened files
2796         is killed (reported by Franco Broi and David Shaw)
2798 2004-07-29  Miklos Szeredi <miklos@szeredi.hu>
2800         * Add fuse_invalidate() to library API
2802 2004-07-26  Miklos Szeredi <miklos@szeredi.hu>
2804         * Check permissions in setattr if 'default_permissions' flag is
2805         set.  Bug spotted by Damjan Lango
2807 2004-07-24  Miklos Szeredi <miklos@szeredi.hu>
2809         * 'large_read' mount option removed for 2.6 kernels, since the
2810         default (dynamic read size) is better
2812         * Extend kernel API with file handles.  A file handle is returned
2813         by open, and passed to read, write, flush, fsync and release.
2814         This is currently only used for debug output in the library.
2816         * Security changes:
2818         * Change the current directory to the mountpoint before checking
2819         the permissions and mount filesystem on "."
2821         * By default don't modprobe the fuse module for non-root.  The old
2822         behavior can be restored with the '--enable-auto-modprobe' flag of
2823         ./configure
2825         * By default don't allow shared writable mappings for non-root.
2826         The old behavior can be restored with the 'user_mmap=1' module
2827         parameter
2829 2004-07-23  Miklos Szeredi <miklos@szeredi.hu>
2831         * Clean up mount option passing to fusermount and to fuse_new()
2832         BEWARE: this changes the userspace API slightly, and the command
2833         line usage of programs using fuse_main()
2835 2004-07-20  Miklos Szeredi <miklos@szeredi.hu>
2837         * Optimize reading under 2.6 kernels by issuing multiple page
2838         asynchronous read requests
2840 2004-07-18  Miklos Szeredi <miklos@szeredi.hu>
2842         * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2844 2004-07-16  Miklos Szeredi <miklos@szeredi.hu>
2846         * Separate directory entry and inode attribute validity timer
2848         * New write semaphore to stop page writeback during truncate
2850         * Fsync now waits for all writes to complete before sending the
2851         request
2853         * Optimization: if a page is completely written by
2854         fuse_commit_write(), clear the dirty flag and set the uptodate
2855         flag for that page
2857         * Some memory cleanup at exit
2859 2004-07-13  Miklos Szeredi <miklos@szeredi.hu>
2861         * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2862         disable the "hide if open" behavior of unlink/rename.
2864         * If temporary buffer allocation fails in raw read, fall back to a
2865         smaller buffer
2867 2004-07-12  Miklos Szeredi <miklos@szeredi.hu>
2869         * Fix bug in do_open() in libfuse: open count was incremented
2870         after the reply is sent so it could race with unlink/forget and
2871         cause an abort.
2873 2004-07-08  Miklos Szeredi <miklos@szeredi.hu>
2875         * When performing create or remove operation, refresh the parent's
2876         attributes on next revalidate, as i_nlink (and maybe size/time)
2877         could be inacurate.
2879         * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2880         pages (2.6 only)
2882         * Set set_page_dirty address space operation (2.6 only)
2884 2004-07-06  Miklos Szeredi <miklos@szeredi.hu>
2886         * Minor fix in read:  print debug info even if read size is zero
2888 2004-07-04  Miklos Szeredi <miklos@szeredi.hu>
2890         * Fix race between truncate and writepage (fsx-linux now runs
2891         without error)
2893 2004-07-02  Miklos Szeredi <miklos@szeredi.hu>
2895         * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2896         by Mattias Wadman)
2898         * Added option for direct read/write (-r)
2900         * Fix revalidate time setting for newly created inodes
2902         * Remove uid==0 check for '-x' option in fusermount (kernel checks
2903         this)
2905         * fuse_main() only installs handlers for signals (out of INT, HUP,
2906         TERM, PIPE), for which no handler has yet been installed
2908         * Add module option 'user_allow_other' which if set to non-zero
2909         will allow non root user to specify the 'allow_other' mount option
2910         ('-x' option of fusermount)
2912         * Fix deadlock between page writeback completion and truncate
2913         (bug found by Valient Gough with the fsx-linux utility)
2915 2004-07-01  Miklos Szeredi <miklos@szeredi.hu>
2917         * Change passing fuse include dir to 2.6 kernel make system more
2918         robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2919         kernel)
2921 2004-06-30  Miklos Szeredi <miklos@szeredi.hu>
2923         * Acquire inode->i_sem before open and release methods to prevent
2924         concurrent rename or unlink operations.
2926         * Make __fuse_read_cmd() read only one command.  This allows
2927         multiplexing the fuse file descriptor with other event sources
2928         using select() or poll() (patch by Jeff Harris)
2930         * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2932 2004-06-27  Miklos Szeredi <miklos@szeredi.hu>
2934         * Fix file offset wrap around at 4G when doing large reads
2936 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2938         * Fix memory leak in open (Valient Gough)
2940 2004-06-24  Miklos Szeredi <miklos@szeredi.hu>
2942         * Add "close after delete" support to libfuse (patch by Valient
2943         Gough)
2945         * Cancel all worker threads before exit in multithreaded mode
2947 2004-06-23  Miklos Szeredi <miklos@szeredi.hu>
2949         * Fix locking bugs
2951         * Don't send reply to RELEASE
2953         * Work with newer libtool (1.5a)
2955         * Check for st_atim member of struct stat
2957 2004-06-22  Miklos Szeredi <miklos@szeredi.hu>
2959         * No request allocation needed on inode and file release
2961 2004-06-21  Miklos Szeredi <miklos@szeredi.hu>
2963         * Fix possible inode leak in userspace in case of unfinished
2964         lookup/mknod/mkdir/symlink/link operation.
2966 2004-06-20  Miklos Szeredi <miklos@szeredi.hu>
2968         * Fix some races and cleanups in fuse_read_super()
2970 2004-06-19  Miklos Szeredi <miklos@szeredi.hu>
2972         * Requests are allocated at open time
2974 2004-06-03  Miklos Szeredi <miklos@szeredi.hu>
2976         * Build shared library as well as static (using libtool)
2978         * Change FUSE_MINOR_VERSION from 1 to 0.  I know it's illegal but
2979         there has not been a release with the previous minor number, and I
2980         hope nobody is using it for anything.
2982         * Change fuse_main(), so that default behavior is to go into
2983         background if mount is successful.  '-f' and '-d' options disable
2984         backgrounding.  This fixes the "Why does my FUSE daemon hang?"
2985         newbie complaint.
2987         * Cache ENOSYS (function not implemented) errors on *xattr, flush
2988         and fsync
2990         * Don't call getdir method from open() only from first readdir().
2991         Open is sometimes just used to store the current directory
2992         (e.g. find)
2994 2004-05-18  Miklos Szeredi <miklos@szeredi.hu>
2996         * Added flush() call
2998 2004-05-04  Miklos Szeredi <miklos@szeredi.hu>
3000         * Extended attributes support for 2.4 (patch by Cody Pisto)
3002 2004-04-20  Miklos Szeredi <miklos@szeredi.hu>
3004         * Fixed parser with modversions (Mattias Wadman)
3006 2004-04-19  Miklos Szeredi <miklos@szeredi.hu>
3008         * Added mount option parser to 2.4 build
3010 2004-04-13  Miklos Szeredi <miklos@szeredi.hu>
3012         * Replaced binary mount data with text options
3014         * Show FUSE specific mount options in /proc/mounts
3016         * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3018 2004-04-09  Miklos Szeredi <miklos@szeredi.hu>
3020         * Check some limits so userspace won't get too big requests
3022 2004-04-05  Miklos Szeredi <miklos@szeredi.hu>
3024         * Kill compile warning
3026         * Upgraded user-mount patch for 2.6.5
3028 2004-04-02  Miklos Szeredi <miklos@szeredi.hu>
3030         * Add detection of user-mode-linux to configure
3032 2004-03-31  Miklos Szeredi <miklos@szeredi.hu>
3034         * fixed zero size case for getxattr and listxattr
3036 2004-03-30  Miklos Szeredi <miklos@szeredi.hu>
3038         * new fusermount flag '-z': lazy unmount, default is not lazy
3040         * Extended attributes operations added (getxattr, setxattr,
3041         listxattr, removexattr)
3043 2004-03-25  Miklos Szeredi <miklos@szeredi.hu>
3045         * If filesystem doesn't define a statfs operation, then an
3046         all-zero default statfs is returned instead of ENOSYS
3048 2004-03-24  Miklos Szeredi <miklos@szeredi.hu>
3050         * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3052 2004-03-09  Miklos Szeredi <miklos@szeredi.hu>
3054         * Fix for uClinux (Christian Magnusson)
3056 2004-03-02  Miklos Szeredi <miklos@szeredi.hu>
3058         * fuse_main() adds "-n progname" to the fusermount command line
3060         * More kernel interface changes:
3062         * Lookup/getattr return cache timeout values
3064 2004-02-25  Miklos Szeredi <miklos@szeredi.hu>
3066         * Clean up option parsing in fuse_main()
3068         * Added fuse_get() function which returns the fuse object created
3069         by fuse_main()
3071 2004-02-20  Miklos Szeredi <miklos@szeredi.hu>
3073         * removed old way of mounting (fusermount mountpoint program)
3075         * more kernel interface changes:
3077         * added nanosecond precision to file times
3079         * removed interface version from mount data
3081         * added /proc/fs/fuse/version which contains MAJOR.MINOR
3083 2004-02-19  Miklos Szeredi <miklos@szeredi.hu>
3085         * statfs library API changed to match other methods.  Since this
3086           is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3088         * kernel interface changes follow:
3090         * statfs changed to 64 bits, added 'bavail' field
3092         * add generation number to lookup result
3094         * optimized mknod/mkdir/symlink/link (no separate lookup is
3095         needed)
3097         * rdev size increased to 32 bits for mknod
3099         * kernel interface version changed to 3.1
3101 2004-02-18  Miklos Szeredi <miklos@szeredi.hu>
3103         * user-mount upgraded for 2.6.3 kernel
3105 2004-02-17  Miklos Szeredi <miklos@szeredi.hu>
3107         * Added user-mount.2.6.2-rc3.patch
3109         * Add FS_SAFE flag to fuse filesystem
3111         * fusermount should allow (un)mounting for non-root even if not
3112         suid-root
3114 2004-02-12  Miklos Szeredi <miklos@szeredi.hu>
3116         * Remove MS_PERMISSION mount flag (that means something else now)
3118 2004-02-10  Miklos Szeredi <miklos@szeredi.hu>
3120         * Added check for i_size_read/write functions to configure.in
3121         (patch by Valient Gough)
3123 2004-02-06  Miklos Szeredi <miklos@szeredi.hu>
3125         * Fixed writing >= 2G files
3127         * Check file size on open (with generic_file_open())
3129         * Readpage calls flush_dcache_page() after storing data
3131         * Use i_size_read/write for accessing inode->i_size
3133         * Make loopback mount of a fuse file work
3135 2004-02-04  Miklos Szeredi <miklos@szeredi.hu>
3137         * Released 1.1
3139 2004-01-29  Miklos Szeredi <miklos@szeredi.hu>
3141         * Properly check if the inode exists in fuse_invalidate
3143 2004-01-27  Miklos Szeredi <miklos@szeredi.hu>
3145         * Added -q option for fusermount
3147         * fuse_unmount() now uses -q option of fusermount, so no error is
3148         printed if the cause of the program exit is that the filesystem
3149         has already been unmounted
3151         * Fix i_nlink correctness after rmdir/unlink
3153 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3155         * Released 1.1-pre2
3157 2004-01-26  Miklos Szeredi <miklos@szeredi.hu>
3159         * Fix typo (thanks Marcos Dione)
3161         * Compile fixes for 2.4 kernels
3163 2004-01-23  Miklos Szeredi <miklos@szeredi.hu>
3165         * Fix CONFIG_MODVERSIONS compile on 2.6
3167 2004-01-22  Miklos Szeredi <miklos@szeredi.hu>
3169         * Write all pending data before a RELEASE operation
3171         * Suppress 'Bad file descriptor' warning on exit
3173         * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3174         get confused with '-d' of fuse_main() (sorry about this change)
3176         * New fusermount option '-l' which enables big reads.  Big reads
3177         are now disabled by default.
3179         * fuse_main() can accept fusermount arguments after a '--'
3181 2004-01-19  Miklos Szeredi <miklos@szeredi.hu>
3183         * Support for exporting filesystem over NFS (see README.NFS)
3185 2004-01-14  Miklos Szeredi <miklos@szeredi.hu>
3187         * Support non-blocking writepage on 2.6.  This makes FUSE behave
3188         much more nicely in low-memory situations
3190         * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3191         (Note: the mknod method does not yet use 32bit device number)
3193 2004-01-13  Miklos Szeredi <miklos@szeredi.hu>
3195         * Code cleanups
3197 2004-01-07  Miklos Szeredi <miklos@szeredi.hu>
3199         * Released 1.1-pre1
3201 2004-01-06  Miklos Szeredi <miklos@szeredi.hu>
3203         * Integrated 2.6 kernel support patch by Michael Grigoriev
3205         * Improvements and cleanups for 2.6 kernels
3207 2004-01-05  Miklos Szeredi <miklos@szeredi.hu>
3209         * Added -d option to fusermount
3211 2003-12-15  Miklos Szeredi <miklos@szeredi.hu>
3213         * Added major+minor version to library API, and minor version to
3214           kernel API
3216 2003-12-13  David McNab <david@rebirthing.co.nz>
3218         * Implemented fsync support in examples/example.py
3220         * Implemented 'fsync' and 'statfs' methods in python
3221           interface
3223 2003-12-12  Miklos Szeredi <miklos@szeredi.hu>
3225         * Make it compile on 2.4.19.
3227         * Add fsync operation (write file failed on xemacs & vi)
3229 2003-12-12  David McNab <david@rebirthing.co.nz>
3231         * Added distutils support to the python module, as per standard
3232           python development practice
3234 2003-12-11  Miklos Szeredi <miklos@szeredi.hu>
3236         * Add file locking for mount/unmount (based on patch by Valient
3237         Gough)
3239 2003-12-11  David McNab <david@rebirthing.co.nz>
3241         * Python filesystem - was broken with python2.3, now fixed:
3242            - changed PyTuple_* calls to PySequence_*, because os.lstat
3243              is no longer returning a pure tuple
3244            - changed PyInt_Check() calls to also call PyLong_Check,
3245              to cover for cases (eg os.lstat) where longs are returned
3246            - Added support for file 'release' handling, which IMO is
3247              essential since this signals to a FS that writes to a file
3248              are complete (and therefore the file can now be disposed of
3249              meaningfully at the python filesystem's discretion)
3250            - Added '__init__' handler to base Fuse class, which allows
3251              your Python class to know the mountpoint and mount args,
3252              as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3254         * General:
3255            - added 'mount.fuse' script (in util/ dir), which is meant to be
3256              symlinked from /sbin, and which allows FUSE filesystems to
3257              be mounted with the 'mount' command, and listed in fstab;
3258              also, mount arguments get passed to your filesystem
3261 2003-11-04  Miklos Szeredi <miklos@szeredi.hu>
3263         * Fix kernel version detection (again).  Bugreport by Peter Levart
3265 2003-11-03  Miklos Szeredi <miklos@szeredi.hu>
3267         * Applied read combining patch by Michael Grigoriev (tested by
3268         Valient Gough and Vincent Wagelaar)
3270 2003-10-22  Miklos Szeredi <miklos@szeredi.hu>
3272         * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3273         #766443)
3275 2003-10-13  Miklos Szeredi <miklos@szeredi.hu>
3277         * Error code fixes in kernel module
3279 2003-10-04  Miklos Szeredi <miklos@szeredi.hu>
3281         * kernel version detection fix
3283         * fusermount now uses "lazy" umount option
3285         * fusermount can use modprobe with module-init-tools
3287 2003-09-08  Miklos Szeredi <miklos@szeredi.hu>
3289         * Integrated caching patch by Michael Grigoriev
3291         * Added "Filesystems" file with descriptions of projects using
3292         FUSE
3294         * Added patch by Michael Grigoriev to allow compliation of FUSE
3295         kernel module for 2.6 kernels
3297 2003-06-02  Miklos Szeredi <miklos@szeredi.hu>
3299         * And another spec-file fix by Achim Settelmeier
3301 2003-05-26  Miklos Szeredi <miklos@szeredi.hu>
3303         * Spec-file fix by Achim Settelmeier
3305 2003-03-10  Miklos Szeredi <miklos@szeredi.hu>
3307         * Fix umount oops (found by Samuli Kärkkäinen)
3309 2003-03-05  Miklos Szeredi <miklos@szeredi.hu>
3311         * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3313 2003-03-04  Miklos Szeredi <miklos@szeredi.hu>
3315         * Updated fuse.spec file (Achim Settelmeier)
3317 2003-02-19  Miklos Szeredi <miklos@szeredi.hu>
3319         * Version 1.0 released
3321 2003-02-12  Miklos Szeredi <miklos@szeredi.hu>
3323         * SuSE compilation fix by Juan-Mariano de Goyeneche
3325 2002-12-10  Miklos Szeredi <miklos@szeredi.hu>
3327         * The release() VFS call is now exported to the FUSE interface
3329 2002-12-05  Miklos Szeredi <miklos@szeredi.hu>
3331         * 64 bit file offset fixes in the fuse kernel module
3333         * Added function 'fuse_exit()' which can be used to exit the main
3334         loop
3336 2002-12-03  Miklos Szeredi <miklos@szeredi.hu>
3338         * Added _FILE_OFFSET_BITS=64 define to fuse.h.  Note, that this is
3339         an incompatible interface change.
3341 2002-10-28  Miklos Szeredi <miklos@szeredi.hu>
3343         * Portablility fix (bug reported by C. Chris Erway)
3345 2002-10-25  Miklos Szeredi <miklos@szeredi.hu>
3347         * Use Mark Glines' fd passing method for default operation instead
3348         of old reexec
3350 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3352         * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3354 2002-10-22  Miklos Szeredi <miklos@szeredi.hu>
3356         * fix incompatiblity with Red Hat kernels, with help from Nathan
3357         Thompson-Amato.
3359 2002-04-18  Mark Glines <mark@glines.org>
3361         * added an alternative to fuse_mount(), called
3362       fuse_mount_ioslave(), which does not need to reexec the
3363       FUSE program.
3364         * added a small helper util needed by fuse_mount_ioslave().
3366 2002-03-16  Mark Glines <mark@glines.org>
3368         * use struct fuse_statfs everywhere possible to avoid problems
3369       with the headerfiles changing struct statfs member sizes
3371 2002-03-01  Miklos Szeredi <miklos@szeredi.hu>
3373         * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3375 2002-01-14  Miklos Szeredi <miklos@szeredi.hu>
3377         * RPM support by Achim Settelmeier
3379 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3381         * Version 0.95 released
3383 2002-01-09  Miklos Szeredi <miklos@szeredi.hu>
3385         * Revaidate all path components not just the last, this means a
3386         very small performance penalty for being more up-to-date.
3388 2002-01-08  Miklos Szeredi <miklos@szeredi.hu>
3390         * Update and fix python interface
3392 2002-01-07  Mark Glines <mark@glines.org>
3394         * Added statfs() support to kernel, lib, examples, and perl!
3396 2001-12-26  Miklos Szeredi <miklos@szeredi.hu>
3398         * Better cross compilation support
3400         * Ported to Compaq IPAQ
3402 2001-12-20  Miklos Szeredi <miklos@szeredi.hu>
3404         * Added function fuse_get_context() to library API (inspired by
3405         patch from Matt Ryan)
3407         * Added flags to fusermount and to kernel interface to control
3408         permission checking
3410         * Integrated fuse_set_operations() into fuse_new()
3412 2001-12-08  Miklos Szeredi <miklos@szeredi.hu>
3414         * Applied header protection + extern "C" patch by Roland
3415         Bauerschmidt
3417 2001-12-02  Miklos Szeredi <miklos@szeredi.hu>
3419         * Added perl bindings by Mark Glines
3421 2001-11-21  Miklos Szeredi <miklos@szeredi.hu>
3423         * Cleaned up way of mounting simple filesystems.
3425         * fuse_main() helper function added
3427 2001-11-18  Miklos Szeredi <miklos@szeredi.hu>
3429         * Optimized read/write operations, so that minimal copying of data
3430         is done
3432 2001-11-14  Miklos Szeredi <miklos@szeredi.hu>
3434         * Python bindings by Jeff Epler added
3436 2001-11-13  Miklos Szeredi <miklos@szeredi.hu>
3438         * Fixed vfsmount reference leak in fuse_follow_link
3440         * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3441         userspace is ignored
3443 2001-11-09  Miklos Szeredi <miklos@szeredi.hu>
3445         * Started ChangeLog