1 2015-05-26 Miklos Szeredi <miklos@szeredi.hu>
3 * Use system directory for system-wide udev rules by default. This
4 ensures that fuse functions correctly on stateless operating
5 systems without requiring use of the site configuration directory
6 (/etc/). Patch by Ikey Doherty
8 2015-05-22 Miklos Szeredi <miklos@szeredi.hu>
10 * libfuse: fix exec environment for mount and umount. Found by
11 Tavis Ormandy (CVE-2015-3202).
13 2015-04-23 Miklos Szeredi <miklos@szeredi.hu>
15 * libfuse: add FUSE_CAP_NO_OPEN_SUPPORT flag to ->init()
17 2015-02-26 Miklos Szeredi <miklos@szeredi.hu>
19 * libfuse: fix fuse_remove_signal_handlers() to properly restore
20 the default signal handler. Reported by: Chris Johnson
22 * libfuse: fix handling of '.' and '..' in highlevel readdirplus
24 2014-07-21 Miklos Szeredi <miklos@szeredi.hu>
26 * libfuse: highlevel API: fix directory file handle passed to
27 ioctl() method. Reported by Eric Biggers
29 2014-07-15 Miklos Szeredi <miklos@szeredi.hu>
31 * libfuse: document deadlock avoidance for
32 fuse_notify_inval_entry() and fuse_notify_delete()
34 * fusermount, libfuse: send value as unsigned in "user_id=" and
35 "group_id=" options. Uids/gids larger than 2147483647 would
36 result in EINVAL when mounting the filesystem. This also needs a
39 * libfuse: add "time_gran" option. This allows the filesystem to
40 specify the time granularity it supports when the kernel is
41 responsible for updating times ("writeback_cache" option).
43 * libfuse: allow setting ctime in ->setattr()
45 * libfuse: add flags to ->rename(). See renameat2() system call
46 in linux-3.15 and later kernels.
48 2014-03-26 Miklos Szeredi <miklos@szeredi.hu>
50 * Initialize stat buffer passed to ->getattr() and ->fgetattr() to
51 zero in all cases. Reported by Daniel Iwan
53 2014-03-05 Miklos Szeredi <miklos@szeredi.hu>
55 * libfuse: implement readdirplus for high-level API. Reuse the
56 old "readdir" callback, but add a flags argument, that has
57 FUSE_READDIR_PLUS in case this is a "plus" version. Filesystems
58 can safely ignore this flag, but if they want they can add
59 optimizations based on it: i.e. only retrieve the full attributes
60 in PLUS mode. The filler function is also given a flags argument
61 and the filesystem can set FUSE_FILL_DIR_PLUS if all the
62 attributes in "stat" are valid. Original patch by Eric Wong
64 2014-02-21 Miklos Szeredi <miklos@szeredi.hu>
66 * libfuse: added fuse_lo-plus.c to the examples
68 2014-02-04 Miklos Szeredi <miklos@szeredi.hu>
70 * libfuse: Don't use constructor functions for loading modules.
71 Original patch by Fabrice Bauzac
73 2014-01-29 Miklos Szeredi <miklos@szeredi.hu>
75 * libfuse: Add "async_dio" and "writeback_cache" options.
76 Asynchronous direct I/O is supported by linux kernels 3.13 and
77 later, writeback caching is supported by 3.14 and later.
79 2013-08-26 Miklos Szeredi <miklos@szeredi.hu>
81 * libfuse: Add missing includes. This allows compiling fuse with
82 musl. Patch by Daniel Thau
84 2013-07-26 Miklos Szeredi <miklos@szeredi.hu>
86 * Print help on stdout instead of stderr
88 2013-07-25 Miklos Szeredi <miklos@szeredi.hu>
90 * libfuse: fuse -> fuse3. Allow 2.X and 3.X to coexist. Includes
91 are now stored under /usr/include/fuse3 and library is named
92 libfuse3.*. Invoke pkg-config with "fuse3" as the first argument
93 to build with version 3 of the library.
95 * ulockmgr: strip ulockmgr support from this source package and
96 distribute it separately. It is not needed for the building of
97 libfuse, only fusexmp_fh. Check ulockmgr library in ./configure
98 and if not disable remote-lock suport in fusexmp_fh.
100 2013-07-24 Miklos Szeredi <miklos@szeredi.hu>
102 * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
103 AC_SYS_LARGEFILE to your configure.ac instead.
105 2013-06-21 Miklos Szeredi <miklos@szeredi.hu>
107 * libfuse: set FD_CLOEXEC also when receiving device fd from
110 2013-06-20 Miklos Szeredi <miklos@szeredi.hu>
112 * libfuse: fix multiple close of device fd. Reported by Dan
115 2013-03-19 Miklos Szeredi <miklos@szeredi.hu>
117 * libfuse: fix thread cancel race. Exiting a worker my race with
118 cancelling that same worker. This caused a segmenation
119 fault. Reported and tested by Anatol Pomozov
121 2013-02-20 Miklos Szeredi <miklos@szeredi.hu>
123 * libfuse: change the type of fuse_ino_t from 'unsigned long' to
126 * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
127 Patch by Richard W.M. Jones
129 * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
130 Patch by Richard W.M. Jones
132 2013-02-19 Miklos Szeredi <miklos@szeredi.hu>
134 * fuse_daemonize(): chdir to "/" even if not running in the
135 background for consistency. Reported by Vladimir Rutsky
137 2013-02-18 Miklos Szeredi <miklos@szeredi.hu>
139 * fuse_opt_parse(): when storing a newly allocated string for
140 format "%s", free the previous value stored at that location.
141 Reported by Marco Schuster
143 2013-02-07 Miklos Szeredi <miklos@szeredi.hu>
145 * libfuse: add readdirplus support in fuse_lowlevel_ops. Patch by
148 * libfuse: add poll_events to fuse_file_info. Patch by Enke Chen
150 * libfuse: fix fs cleanup. Reported by Eric Wong
152 * libfuse: pass security context options to kernel. Patch by
155 * libfuse: remove deprecated features:
156 - fuse_is_lib_option()
158 - fuse_set_getcontext_func()
159 - fuse_loop_mt_proc()
165 - fuse_lowlevel_is_lib_option()
166 - fuse_operations.getdir()
167 - fuse_operations.utime()
168 - fuse_operations.utime_omit_ok
170 2013-02-06 Miklos Szeredi <miklos@szeredi.hu>
172 * libfuse: set close-on-exec flag on pipe file descriptors. Patch
175 * libfuse: add missing INIT flags
177 2013-02-05 Miklos Szeredi <miklos@szeredi.hu>
179 * libfuse: fix fuse_get_context() in non fuse threads. Reported
182 2013-02-04 Miklos Szeredi <miklos@szeredi.hu>
184 * libfuse: fix crash in unlock_path(). Patch by Ratna Manoj
186 * libfuse: fix the 'remember' option. The lru list was not
187 initialized for the "/" path. This resulted in remove_node_lru()
188 crashing on LOOKUP-DOTDOT. Patch by Madan Valluri
190 * libfuse: configure: detect new util-linux
192 * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
193 Patch by Anatol Pomozov
195 * libfuse: rename ./configure.in to ./configure.ac. Patch by
198 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
202 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
204 * Fix deadlock in libfuse. Running "svn update" on a fuse
205 filesystem could deadlock because of a bug in the way the paths
206 are locked. Reported by Kazuaki Anami
208 2012-08-23 Miklos Szeredi <miklos@szeredi.hu>
210 * Fix missing config.h in buffer.c. Reported by Matthew Gabeler-Lee
212 2012-08-14 Miklos Szeredi <miklos@szeredi.hu>
214 * Not unhashing the name in forget (commit on 2011-12-09) broke
215 the forget logic in a subtle way, resulting in "fuse internal
216 error: node NNN not found" and causing the filesystem daemon to
217 abort. Fix by incrementing the node refcount if nlookup goes from
218 zero to one. Reported by Kyle Lippincott
220 2012-08-13 Miklos Szeredi <miklos@szeredi.hu>
222 * Fix linking against GNU libiconv. Patch by Natanael Copa
224 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
226 * Start of 3.0 series. This is going to be a new major version of
227 the library breaking backward compatibility on the binary level as
228 well as the source level.
230 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
234 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
236 * Fix crash caused by freeing a stack address. Reported by Itay
239 2012-07-04 Miklos Szeredi <miklos@szeredi.hu>
241 * Fix install of mount.fuse from out-of-tree build. Patch by
244 * Fix build with automake >= 1.12.1. Patch by Olivier Blin
246 2012-04-24 Miklos Szeredi <miklos@szeredi.hu>
248 * Add fallocate operation. Only works on linux kernels 3.5 or
249 later. Patch by Anatol Pomozov
251 2012-05-16 Miklos Szeredi <miklos@szeredi.hu>
253 * Linking to a library that uses threads requires the application
254 to be linked with -pthreads otherwise some pthread functions will
255 be linked to stubs in glibc. So move -pthread from Libs.private
256 to Libs in fuse.pc. Reported by Werner Fink
258 * Fix the compile command in the examples. Reported by Luciano
261 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
265 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
267 * Add missing fuse_fs_flock to fuse_versionscript
269 2012-04-10 Miklos Szeredi <miklos@szeredi.hu>
271 * Check protocol version before sending notifications and return
272 -ENOSYS if a particular notification is not supported.
274 * Add 'flag_utime_omit_ok' flag to fuse_operations. If the
275 filesystem sets this flag then ->utimens() will receive UTIME_OMIT
276 and UTIME_NOW values as specified in utimensat(2).
278 2012-01-27 Miklos Szeredi <miklos@szeredi.hu>
280 * Interpret octal escape codes in options. Requested by Jan
283 2012-01-26 Miklos Szeredi <miklos@szeredi.hu>
285 * Add man pages for fusermount, mount.fuse and ulockmgr_server.
286 Lifted from the Debian package. The man pages were written by
287 Daniel Baumann and Bastien Roucaries
289 2012-01-13 Miklos Szeredi <miklos@szeredi.hu>
291 * Disable symbol versions on MacOSX. Patch by Anatol Pomozov
293 2012-01-02 Miklos Szeredi <miklos@szeredi.hu>
295 * Remove unnecessary mutex unlock at the end of multithreaded
298 2011-12-09 Miklos Szeredi <miklos@szeredi.hu>
300 * Fix hang in wait_on_path(). Reported by Ville Silventoinen
302 * Don't unhash name in FORGET. This resulted in ENOENT being
303 returned for unlinked but still open files if the kernel sent a
304 FORGET request for the parent directory.
306 * Free request in fuse_reply_data().
308 2011-12-08 Miklos Szeredi <miklos@szeredi.hu>
310 * Fix build if FUSE_NODE_SLAB is not defined. Patch by Emmanuel
313 * Check for availability of utimensat() function. Patch by
316 2011-12-07 Miklos Szeredi <miklos@szeredi.hu>
318 * Add fuse_lowlevel_notify_delete() which tells the kernel that a
319 file or directory is deleted. Patch by John Muir
321 2011-12-06 Miklos Szeredi <miklos@szeredi.hu>
323 * Update retrieve_reply() method
325 2011-12-05 Miklos Szeredi <miklos@szeredi.hu>
327 * Low level API: lock argument of fuse_reply_lock should have a
328 'const' qualifier. Reported by Shachar Sharon
330 * Add support for ioctl on directories. Reported by Antonio SJ
333 2011-10-13 Miklos Szeredi <miklos@szeredi.hu>
335 * Reply to request with ENOMEM in case of failure to allocate
336 request structure. Otherwise the task issuing the request will
337 just freeze up until the filesystem daemon is killed. Reported by
340 2011-09-23 Miklos Szeredi <miklos@szeredi.hu>
342 * Replace daemon() function with fork(). Patch by Anatol Pomozov
344 2011-08-26 Miklos Szeredi <miklos@szeredi.hu>
346 * If configured with --disable-mtab then don't call mount(8) from
347 libfuse to update the mtab. Reported by: James Sierp
349 2011-08-24 Miklos Szeredi <miklos@szeredi.hu>
351 * Use LRU list for cleaning up the cache if the "remember=T"
352 option was given. Patch by therealneworld@gmail.com
354 2011-07-06 Miklos Szeredi <miklos@szeredi.hu>
356 * Add ->flock() operation to low and high level interfaces. This
357 fixes problems with emulating flock() with POSIX locking.
358 Reported by Sebastian Pipping. As with lock/setlk/getlk most
359 filesystems don't need to implement this, as the kernel takes care
360 of file locking. The only reason to implement locking operations
361 is for network filesystems which want file locking to work between
364 2011-07-02 Sebastian Pipping <sebastian@pipping.org>
366 * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
367 not follow symlinks as other layers do that already.
369 2011-06-02 Miklos Szeredi <miklos@szeredi.hu>
371 * Add "remember" option. This works similar to "noforget" except
372 that eventually the node will be allowed to expire from the cache.
373 Patch by therealneworld@gmail.com
375 2011-05-27 Miklos Szeredi <miklos@szeredi.hu>
377 * Check if splice/vmsplice are supported
379 2011-05-26 Miklos Szeredi <miklos@szeredi.hu>
381 * Remove -lrt -ldl from fuse.pc for dynamic linking since
382 libfuse.so is already linked with these libraries. Reported by:
385 2011-05-20 Miklos Szeredi <miklos@szeredi.hu>
387 * Cleaner build output. Patch by Reuben Hawkins
389 2011-05-19 Miklos Szeredi <miklos@szeredi.hu>
391 * Disable splice by default, add "splice_read", "splice_write" and
392 "splice_move" options. Keep the "no_splice_*" variants, which can
393 disable splice even if the filesystem explicitly enables it.
395 2011-04-15 Max Krasnyansky <maxk@kernel.org>
396 * Added support for "auto_unmount" option which unmounts the
397 filesystem automatically on process exit (or crash).
399 2011-03-30 Miklos Szeredi <miklos@szeredi.hu>
401 * Patches by Laszlo Papp fixing various issues found by the
404 2011-03-11 Miklos Szeredi <miklos@szeredi.hu>
406 * In case of failure to add to /etc/mtab don't umount. Reported
409 2011-02-02 Miklos Szeredi <miklos@szeredi.hu>
411 * libfuse: In fuse_session_loop_mt() don't pause when exiting the
412 worker threads. The pause() was added in 2.2.1 to prevent
413 segfault on pthread_cancel() on an exited, detached thread. Now
414 worker threads are not detached and pthread_cancel() should work
415 fine even after the thread exited. Reported by Boris Protopopov
417 2011-01-31 Miklos Szeredi <miklos@szeredi.hu>
419 * fusermount: chdir to / before performing mount/umount
421 * fusermount: only allow mount and umount if util-linux supports
424 2010-12-16 Miklos Szeredi <miklos@szeredi.hu>
426 * Highlevel lib: allow hash tables to shrink
428 * Highlevel lib: add slab allocation for node cache. This will
429 allow the memory used by the filesystem to grow and shrink
430 depending on how many inodes are currently cached.
432 2010-12-13 Miklos Szeredi <miklos@szeredi.hu>
434 * Highlevel lib: use dynamically resized hash table for looking up
437 2010-12-07 Miklos Szeredi <miklos@szeredi.hu>
439 * Allow batching of forget requests. This allows forget requests
440 to be processed faster and doesn't require a modification to fuse
441 filesystems. Reported by Terje Malmedal
443 * Add ->forget_multi() operation to the lowlevel API. The
444 filesystem may implement this to process multiple forget requests
447 * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
448 for 32bit vs. 64bit userspace
450 2010-11-10 Miklos Szeredi <miklos@szeredi.hu>
452 * Add new write_buf() method to the highlevel API. Similarly to
453 the lowlevel write_buf() method, this allows implementing zero
456 * Add a new read_buf() method to the highlevel API. This allows
457 returning a generic buffer from the read method, which in turn
458 allows zero copy reads.
460 * In fusexmp_fh implement the ->read_buf() and ->write_buf()
461 methods. Leave the ->read() and ->write() implementations for
462 reference, even though they are not necessary.
464 2010-11-08 Miklos Szeredi <miklos@szeredi.hu>
466 * Fix check for read-only fs in mtab update
468 * Open /dev/null for write instead of read for redirecting stdout
471 * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
472 version 2.18 or later), and umount(2) supports the
473 UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then,
474 "fusermount -u" will call the umount(2) system call and use
475 "umount --fake ..." to update /etc/mtab
477 * Added --disable-legacy-umount option to configure. This
478 disables the runtime checking of umount(8) version. When built
479 with this option then "fusermount -u" will fail if umount(8)
480 doesn't support the --fake and --no-canonicalize options.
482 * Fix fuse_buf_copy() if already at the end of the buffers
484 * Add new ->write_buf() method to low level interface. This
485 allows passig a generic buffer, either containing a memory buffer
486 or a file descriptor. This allows implementing zero copy writes.
488 * Add fuse_session_receive_buf() and fuse_session_process_buf()
489 which may be used in event loop implementations to replace
490 fuse_chan_recv() and fuse_session_process() respectively.
492 * Remove unnecessary restoring of current working directory in
495 * Add ctx->pid to debug output
497 * Fix st_nlink value in high level lib if file is unlinked but
500 * libfuse: add store request. Request data to be stored in the
501 kernel buffers for a given inode.
503 * libfuse: add retrieve request. Retrieve data stored in the
504 kernel buffers for a given inode.
506 2010-10-14 Miklos Szeredi <miklos@szeredi.hu>
508 * Use LTLIBICONV when linking libfuse. This fixes building against
509 uclibc + libiconv. Patch by Natanael Copa
511 2010-10-05 Miklos Szeredi <miklos@szeredi.hu>
513 * Add missing argument check in ulockmgr.c to prevent calling
514 ulockmgr_server with illegal arguments. This would cause an ever
515 growing list of ulockmgr_server processes with an endless list of
516 open files which finally exceeds the open file handle limit.
517 Patch by Markus Ammer
519 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
521 * Fix ambiguous symbol version for fuse_chan_new.
522 fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
523 FUSE_2.6. Remove the FUSE_2.4, which is invalid.
525 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
527 * Fix option escaping for fusermount. If the "fsname=" option
528 contained a comma then the option parser in fusermount was
529 confused (Novell bugzilla #641480). Fix by escaping commas when
530 passing them over to fusermount. Reported by Jan Engelhardt
532 2010-08-27 Miklos Szeredi <miklos@szeredi.hu>
534 * Add NetBSD support. Patch from Emmanuel Dreyfus
536 2010-07-12 Miklos Szeredi <miklos@szeredi.hu>
538 * libfuse: add buffer interface. Add a generic buffer interface
539 for use with I/O. Buffer vectors are supplied and each buffer in
540 the vector may be a memory pointer or a file descriptor.
542 * The fuse_reply_fd() interface is converted to using buffers.
544 2010-06-23 Miklos Szeredi <miklos@szeredi.hu>
546 * Make the number of max background requests and congestion
547 threshold tunable. New options are "max_background" and
548 "congestion_threshold". Only effective on linux kernel versions
549 2.6.32 or greater. Patch by Csaba Henk
551 2010-06-17 Miklos Szeredi <miklos@szeredi.hu>
553 * Add fuse_reply_fd() reply function to the low level interface.
554 On linux version 2.6.35 or greater this will use splice() to move
555 data directly from a file descriptor to the fuse device without
556 needing to go though a userspace buffer. With the
557 FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
558 directly into the filesystem's cache. On earlier kernels it will
559 fall back to an intermediate buffer. The options
560 "no_splice_write" and "no_splice_move" can be used to disable
561 splicing and moving respectively.
563 2010-06-15 Miklos Szeredi <miklos@szeredi.hu>
565 * Fix out-of-source build. Patch by Jörg Faschingbauer
567 * Add a "nopath" option and flag, indicating that path argument
568 need not be calculated for the following operations: read, write,
569 flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
570 fgetattr, lock, ioctl and poll.
572 2010-05-10 Miklos Szeredi <miklos@szeredi.hu>
574 * Remove "chmod root" from install of fusermount. Reported by
577 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
581 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
583 * Fix checking for symlinks in umount from /tmp. Reported by Al
586 * Fix umounting if /tmp is a symlink. Reported by Franco Broi
588 2010-02-18 Miklos Szeredi <miklos@szeredi.hu>
590 * Fix definition of FUSE_OPT_END for C++. Reported by Tim
593 2010-02-03 Miklos Szeredi <miklos@szeredi.hu>
595 * Fix stack alignment for clone()
597 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
601 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
603 * Using "--no-canonicalize" with umount(8) conflicts with the race
604 fix, sinceit assumes the supplied path is absolute, while the race
605 fix relies on the path being relative to the current directory.
606 Reported by Tom Rindborg
608 2010-01-26 Miklos Szeredi <miklos@szeredi.hu>
612 2010-01-21 Miklos Szeredi <miklos@szeredi.hu>
614 * Fix race if two "fusermount -u" instances are run in parallel.
615 Reported by Dan Rosenberg
617 * Make sure that the path to be unmounted doesn't refer to a
620 2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
622 * Fix compile error on FreeBSD. Patch by Jay Sullivan
624 2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
626 * Use '--no-canonicalize' option of mount(8) (available in
627 util-linux-ng version 2.17 or greater) to avoid calling
628 readling(2) on the newly mounted filesystem before the mount
629 procedure is finished. This has caused a deadlock if "audit" was
630 enabled in the kernel. Also use '--no-canonicalize' for umount to
631 avoid touching the mounted filesystem.
633 2009-09-11 Miklos Szeredi <miklos@szeredi.hu>
637 2009-08-25 Miklos Szeredi <miklos@szeredi.hu>
639 * Fix missing versioned symbol fuse_get_context@FUSE_2.2
641 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
645 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
647 * Add missing fuse_session_data to versionscript
649 * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
651 2009-07-16 Miklos Szeredi <miklos@szeredi.hu>
653 * Clarify how the protocol version should be negotiated between
654 kernel and userspace. Notably libfuse didn't correctly handle the
655 case when the supported major versions didn't match
657 * Add missing pthread link for libulockmgr. Patch by Petr Salinger
659 2009-07-02 Miklos Szeredi <miklos@szeredi.hu>
661 * The context is extended with a 'umask' field. The umask is sent
662 for mknod, mkdir and create requests by linux kernel version
663 2.6.31 or later, otherwise the umask is set to zero. Also
664 introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel
665 supports this feature, then this flag will be set in conn->capable
666 in the ->init() method. If the filesystem sets this flag in in
667 conn->want, then the create modes will not be masked.
669 * Add low level interfaces for lookup cache and attribute
670 invalidation. This feature is available in linux kernels 2.6.31
671 or later. Patch by John Muir
673 * Kernel interface version is now 7.12
675 * fusermount: Do not silently ignore command line arguments.
676 Patch by Sebastian Harl
678 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
680 * Released 2.8.0-pre3
682 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
684 * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
685 level lib) functions to query the supplementary group IDs for the
686 current request. Currently this is implemented on Linux by
687 reading from the /proc filesystem.
689 2009-06-18 Miklos Szeredi <miklos@szeredi.hu>
691 * Add "noforget" option to high level lib to prevent ESTALE errors
692 on NFS exported filesystems. This result in paths being cached
693 forever, resulting in ever growing memory usage. Use with care.
695 * Add "no_remote_lock" option to disable remote file locking even
696 if the filesystem implements it. With this option locking
697 primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
698 will ignore remotely locked files.
700 * CUSE patches from Tejun Heo:
702 * Unrestricted ioctl support left some debris. Clean them up:
703 o No reason to pass around pointer to flags. Pass flags directly.
704 o Clean up comment and prototype parameter names.
705 o fuse_lib_ioctl() didn't reply when get_path() failed. Fix it.
706 o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
708 * Add fuse_reply_ioctl_iov()
710 * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
711 and make send_reply_iov() and fuse_setup_common() global (also in
712 fuse_i.h). These will be used by CUSE support.
714 * Restructure fuse_ll_process()
716 * Implement libfuse side of CUSE support. CUSE uses subset of FUSE
717 operations as dir operations don't make sense for CUSE where one
718 instance implements single character device.
720 CUSE support comes with its own cuse_lowevel_ops and related
721 initialization and helper functions. Except for initialization, it
722 usage is basically identical to FUSE.
724 This patch also adds example/cusexmp.c which can create a character
725 device with name and device number specified on command line. The
726 created device itself is pretty boring. It's a bit bucket supporting
727 read, write and access via ioctl.
729 2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
731 * Add missing fuse_reply_bmap to versionscript. Debian
732 Bug#531329. Reported by Goswin Brederlow
734 2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
736 * Don't call forget_node() if the lookup was negative and write()
737 for the reply returned ENOENT. Reported by John Haxby
739 2009-05-25 Miklos Szeredi <miklos@szeredi.hu>
741 * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
743 2009-05-08 Miklos Szeredi <miklos@szeredi.hu>
745 * Fix missing newlines in some printfs
747 * Fix 'make install-strip'. Reported by Dominick Layfield
749 2009-01-05 Miklos Szeredi <miklos@szeredi.hu>
751 * Released 2.8.0-pre2
753 2008-12-08 Miklos Szeredi <miklos@szeredi.hu>
755 * Implement poll support. Patch by Tejun Heo
757 * Add missing setattr flags to <fuse_lowlevel.h>.
759 * Only pass valid flags to ->setattr().
761 2008-12-05 Miklos Szeredi <miklos@szeredi.hu>
763 * Implement ioctl support. On high level interface only
764 "restricted" ioctls are supported (which are defined with the
765 _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls
766 will only be allwed to CUSE (Character Device in Userspace)
767 servers. Patch by Tejun Heo
769 2008-11-28 Miklos Szeredi <miklos@szeredi.hu>
771 * If open sets fi->nonseekable, libfuse will tell the kernel that
772 the file is not seekable. Patch by Tejun Heo
774 2008-11-19 Miklos Szeredi <miklos@szeredi.hu>
776 * lowlevel lib: fix deadlock if fuse_reply_* is called from the
777 interrupt handling function. Reported by Tero Marttila
779 2008-10-16 Miklos Szeredi <miklos@szeredi.hu>
781 * Allow commas in options to be escaped with a backslash
783 * Add new function: fuse_opt_add_opt_escaped()
785 * Add missing fuse_reply_bmap() to the version script
787 2008-10-14 Miklos Szeredi <miklos@szeredi.hu>
789 * Pass current file flags to read and write operations
791 2008-07-24 Miklos Szeredi <miklos@szeredi.hu>
793 * Clean up debug output in highlevel lib
795 2008-07-10 Miklos Szeredi <miklos@szeredi.hu>
797 * Released 2.8.0-pre1
799 2008-06-27 Miklos Szeredi <miklos@szeredi.hu>
801 * Fix handling of (no)suid and (no)dev options if filesystem is
802 mounted from /etc/fstab or via mount(8). Reported by Jan Ondrej.
804 * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
805 read-only filesystem. This works around issues with certain mount
806 implementations. Reported by Szabolcs Szakacsits.
808 2008-06-16 Miklos Szeredi <miklos@szeredi.hu>
810 * Remove fuse kernel module sources. Linux 2.6.27 will support
813 2008-06-10 Miklos Szeredi <miklos@szeredi.hu>
815 * Fix theoretical infinite loops in libfuse. Reported by Szabolcs
818 * Fix missing <sys/param.h> include for PATH_MAX. Reported by
821 2008-05-23 Miklos Szeredi <miklos@szeredi.hu>
823 * Fix mounting over symlink. Reported by Szabolcs Szakacsits
825 2008-05-09 Miklos Szeredi <miklos@szeredi.hu>
827 * Don't allow bigger than 4kB writes by default on 2.6.26 and
828 later kernels, so that filesystems not expecting this are not
829 broken on a kernel upgrade. Provide a 'big_writes' mount option
830 to enable this feature. In future API revisions this may become
833 2008-04-09 Miklos Szeredi <miklos@szeredi.hu>
835 * Update warning message for missing newline at end of fuse.conf
837 * Update debug message for successful operation to not include the
840 2008-04-08 Miklos Szeredi <miklos@szeredi.hu>
842 * Update error message for missing mountpoint parameter. Reported
845 2008-04-04 Miklos Szeredi <miklos@szeredi.hu>
847 * Print library version information to debug output
849 * Highlevel lib: don't limit paths to 4095 characters
851 2008-03-25 Miklos Szeredi <miklos@szeredi.hu>
853 * Fix memory leaks on mount. Patch by Szabolcs Szakacsits
855 2008-03-19 Miklos Szeredi <miklos@szeredi.hu>
857 * Fix missing pthread_mutex_destroy in error path of
858 fuse_lib_opendir(). Patch by Szabolcs Szakacsits
860 2008-03-07 Miklos Szeredi <miklos@szeredi.hu>
862 * Add queuing on contention to per-node lock algorithm, to avoid
865 * Only enable cancelation when reading a request, otherwise
866 cancellation could happen with a mutex held, which could hang the
869 2008-02-08 Miklos Szeredi <miklos@szeredi.hu>
871 * Block SIGCHLD when executing mount and umount
873 * fusexmp_fh: avoid unnecessary seeking in readdir
875 * Update kernel interface to 7.9:
877 * Support receiving file handle from kernel in GETATTR request
879 * Allow operations with a NULL path argument, if the filesystem
882 * Add support atomic open(O_TRUNC)
884 * Support the st_blksize field in struct stat
886 * If the "FUSE_THREAD_STACK" environment is set, initialize the
887 stack size of threads by this value. Patch by Florin Malita
889 * Add per-node locking, instead of a global tree lock to protect
890 the path from changing during operations. Original patch by
893 2008-02-03 Csaba Henk <csaba.henk@creo.hu>
896 - string formatting fixes
897 - exit if mounting has failed
898 (in FreeBSD a mount failure is not critical per se, as the daemon
899 still could be mounted externally, but waiting for such an event
900 is more confusing than fruitful)
901 - ditch the kvm(8) stuff and simply use forced unmount which just
903 - prettify option specifications
904 - add "-onosync_unmount" kernel option
906 2008-01-07 Csaba Henk <csaba.henk@creo.hu>
909 - refine device closing in a race-free way
910 - add support for "-osubtype" on FreeBSD
912 * makeconf.sh: make it work under FreeBSD
914 2008-01-03 Csaba Henk <csaba.henk@creo.hu>
916 * lib/mount_bsd.c: close device before unmount
917 (cf. lib/mount.c rev. 1.43) and fix some warnings
919 2007-12-23 Miklos Szeredi <miklos@szeredi.hu>
921 * Fix './configure --disable-static'. Patch from Ismail Dönmez
923 2007-12-17 Miklos Szeredi <miklos@szeredi.hu>
927 2007-12-12 Miklos Szeredi <miklos@szeredi.hu>
929 * Fix kernel module compile for 2.6.24
931 * Invalidate attributes of parent directory after create(), since
932 the modification time changes. Invalidate attributes on rename,
933 since some filesystems may update st_ctime. Reported by Szabolcs
936 * Fix NFS exporting to handle 64bit node IDs
938 * Disable old symbol versions if __UCLIBC__ is defined. If a
939 symbol in a library has multiple versions, the runtime linker in
940 uClibc seems to randomly choose between them.
942 * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
943 fuse_version_script. fuse_opt_free_args() was added in fuse-2.6.
945 * Close fuse device file descriptor before calling umount(),
946 preventing a deadlock when umount is synchronous. Reported by
949 2007-11-12 Miklos Szeredi <miklos@szeredi.hu>
951 * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
952 symlink. This bug was introduced in 2.7.1 by "Don't call
953 /bin/[u]mount if /etc/mtab is a symlink". Found by robertsong.
955 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
959 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
961 * Clarify licence version to be "LGPLv2" for the library
965 * After mount set nlink attribute for the root inode to 1
967 * Fix wake up of task waiting for a reserved request
969 * Fix allowing setattr, listxattr and statfs for other users
971 2007-09-18 Miklos Szeredi <miklos@szeredi.hu>
973 * Add missing context initialization in fuse_fs_chmod(). Bug
976 * Fix kernel module compilation for 2.6.23. Based on patch by
979 2007-09-04 Philippe Elie <phil.el@wanadoo.fr>
981 * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
983 2007-07-31 Miklos Szeredi <miklos@szeredi.hu>
985 * Work around hotplug issue, that it calls filesystem with file
986 descriptors 0, 1 and 2 not open. Tracked down by Leif Johnson
988 2007-07-25 Miklos Szeredi <miklos@szeredi.hu>
990 * Don't call /bin/[u]mount if /etc/mtab is a symlink. Reported by
993 * Also don't touch /etc/mtab if it is within the mounted
994 filesystem. Suggested by Jeffrey Law
996 2007-07-12 Miklos Szeredi <miklos@szeredi.hu>
998 * Reset args->argc in fuse_opt_free_args(). Patch by Lucas
1001 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
1005 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
1007 * Accept a NULL "op" for fuse_main(), etc. This is useful if
1008 filesystem is only invoking fuse to print a help message, or
1009 version. Fixes RedHat bugzilla #217343
1011 2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
1013 * lib: fix locking when loading a filesystem module
1015 2007-06-21 Miklos Szeredi <miklos@szeredi.hu>
1017 * Add fs subtype support to mount.fuse
1019 2007-06-20 Miklos Szeredi <miklos@szeredi.hu>
1021 * Add fs subtype support to libfuse and fusermount
1023 2007-06-19 Miklos Szeredi <miklos@szeredi.hu>
1025 * kernel: sync with mainline (2.6.22)
1027 2007-06-18 Miklos Szeredi <miklos@szeredi.hu>
1029 * Send debug output to stderr instead of stdout. Patch by Jan
1032 2007-06-03 Miklos Szeredi <miklos@szeredi.hu>
1034 * libulockmgr: Work around a kernel bug in recv(), causing it to
1035 sometimes return zero even if data was available on the socket.
1037 2007-05-29 Miklos Szeredi <miklos@szeredi.hu>
1039 * lib: optimization: store parent pointer in node instead of
1042 2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
1044 * lib: don't create new thread for each FORGET request. FORGET
1045 messages sometimes caused so many threads to be created, that
1046 process virtual memory space ran out. Reported by Chris AtLee
1048 2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
1050 * lib: fix memory leak on thread creation failure in multithreaded
1051 event loop. Found by Chris AtLee
1053 2007-05-23 Miklos Szeredi <miklos@szeredi.hu>
1055 * lowlevel lib: add fuse_reply_iov function, which is similar to
1056 fuse_reply_buf, but accepts a vector of buffers. Patch by Roger
1059 2007-05-21 Miklos Szeredi <miklos@szeredi.hu>
1061 * Fix Oops or error if a regular file is created with mknod(2) on
1062 a fuse filesystem. Kernels 2.6.18 onward are affected. Thanks to
1063 J. Cameijo Cerdeira for the report
1065 2007-05-11 Csaba Henk <csaba.henk@creo.hu>
1067 * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1068 Error reported by Csaba Henk, fix by Miklos Szeredi
1070 * libfuse: fix unlock in flush
1072 * libfuse: do unlocking on RELEASE+FLUSH
1074 2007-05-03 Miklos Szeredi <miklos@szeredi.hu>
1076 * Released 2.7.0-rc1
1078 2007-05-02 Miklos Szeredi <miklos@szeredi.hu>
1080 * kernel: sync with mainline:
1082 * Use invalidate_mapping_pages() if available
1084 * Fix BUG when invalid file type is supplied in mount. Patch by
1087 2007-04-27 Miklos Szeredi <miklos@szeredi.hu>
1089 * libfuse: call umount(8) directly instead of fusermount if
1092 * Clean up init script, make it LSB compliant
1094 2007-04-26 Miklos Szeredi <miklos@szeredi.hu>
1096 * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1097 up the main thread on umount. This is more elegant, and works
1098 even if signals are blocked.
1100 2007-04-25 Miklos Szeredi <miklos@szeredi.hu>
1102 * Improve mounting support in libfuse:
1103 - check non-empty mountpoint
1104 - only fall back to fusermount when necessary
1106 2007-04-23 Miklos Szeredi <miklos@szeredi.hu>
1108 * Don't chdir to "/" in foreground mode, it causes more trouble
1111 2007-04-18 Miklos Szeredi <miklos@szeredi.hu>
1113 * Replace utils/mount.fuse "sh" script with a "C" program
1115 2007-04-15 Miklos Szeredi <miklos@szeredi.hu>
1117 * Add -lulockmgr to compilation comment in fusexmp_fh.c
1119 2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
1121 * Check for iconv. Patch by Csaba Henk
1123 * Add direct umounting
1125 * Use "fusectl" as the device for the fusectl filesystem. Debian
1126 Bug#417945. Reported by Laurent Bonnaud
1128 2007-04-01 Csaba Henk <csaba.henk@creo.hu>
1130 * Fix some FreeBSD related macros.
1132 2007-03-30 Miklos Szeredi <miklos@szeredi.hu>
1134 * Add support for direct mounting by libfuse. Fall back on
1135 calling fusermount if it doesn't work
1137 2007-03-14 Miklos Szeredi <miklos@szeredi.hu>
1139 * Released 2.7.0-pre1
1141 2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
1143 * Correctly handle O_APPEND in direct IO mode. Reported by Greg
1146 * mount.fuse should use /bin/bash. Debian Bug#413403. Reported
1147 by Thomas Weinbrenner
1149 2007-02-26 Miklos Szeredi <miklos@szeredi.hu>
1151 * Fix detection of installed fuse in init script. Reported and
1152 fix suggested by Davide Canova
1154 2007-02-05 Miklos Szeredi <miklos@szeredi.hu>
1156 * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1157 don't define mutex_destroy(), bummer. Patch from Phil Schwan
1159 2007-02-04 Miklos Szeredi <miklos@szeredi.hu>
1161 * Compile fuseblk for kernels which don't have an option to turn
1162 off the block layer (CONFIG_BLOCK). Reported by Szakacsits
1165 2007-02-03 Miklos Szeredi <miklos@szeredi.hu>
1167 * Add filesystem stacking support to high level API. Filesystem
1168 modules can be built into libfuse or loaded from shared object
1171 * Add 'subdir' and 'iconv' built in modules
1173 * lib/fuse.c: Fix locking for the reply code in create and open
1175 2007-02-02 Miklos Szeredi <miklos@szeredi.hu>
1177 * kernel: make it compile on "strange" kernels which have emulated
1178 mutexes via <linux/mutex.h> but no i_mutex. Reported by Tomasz
1181 2007-01-28 Miklos Szeredi <miklos@szeredi.hu>
1183 * kernel: fix BUG in control filesystem if it is umounted and
1184 mounted again, while some fuse filesystems are present.
1185 Bugreport from Florent Mertens
1187 * kernel: sync with mainline, support 2.6.20
1189 2007-01-22 Miklos Szeredi <miklos@szeredi.hu>
1191 * lib/Makefile.am: actually link libfuse against libfuse_libs
1193 2007-01-19 Miklos Szeredi <miklos@szeredi.hu>
1195 * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels. Patch from
1198 2007-01-18 Miklos Szeredi <miklos@szeredi.hu>
1200 * Fix abort in fuse_new() compatibility API for opts == NULL case.
1201 Novell bugzilla #233870. Patch from Takashi Iwai.
1203 2007-01-13 Miklos Szeredi <miklos@szeredi.hu>
1205 * Fix option parsing in mount.fuse. Patch from Jens M. Noedler
1207 2007-01-02 Miklos Szeredi <miklos@szeredi.hu>
1209 * Fix unaligned access in file desctriptor passing in libfuse,
1210 fusermount and ulockmgr. Debian bug ID: 404904. Reported and
1211 tested by Sebastian Fontius
1213 2006-12-16 Miklos Szeredi <miklos@szeredi.hu>
1215 * kernel: don't keep unreferenced inodes in the icache.
1217 2006-12-15 Miklos Szeredi <miklos@szeredi.hu>
1219 * fusermount: Fix detection of fuseblk. Reported by Szakacsits
1222 * lib: Fix use after free in fuse_flush(). Reported by Ron
1225 2006-12-10 Miklos Szeredi <miklos@szeredi.hu>
1227 * mount.fuse: add "setuid=USER" option which does a "su - USER"
1230 * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1231 "/bin/umount" to remove entry from /etc/mtab. This gets rid of
1232 the ugly code dealing with mtab, as well as a possible race
1233 between fusermount and mount trying to modify /etc/mtab at the
1236 * Fix "buffer size too small: 4" warning for users of the
1237 fuse_loop_mt_proc() function.
1239 2006-12-04 Miklos Szeredi <miklos@szeredi.hu>
1241 * Fix warnings with gcc-4.1 on 64bit archs. Report from
1244 * Add extra warning options, and fix resulting warnings
1246 * Really fix fuse_teardown problem
1248 2006-12-02 Miklos Szeredi <miklos@szeredi.hu>
1250 * Add -lrt to fuse.pc (if needed) to fix static linking against
1251 libfuse. Reported by Szakacsits Szabolcs
1253 2006-12-01 Miklos Szeredi <miklos@szeredi.hu>
1257 2006-11-30 Miklos Szeredi <miklos@szeredi.hu>
1259 * Fix API version 21 and 22 compatibility for fuse_teardown.
1262 2006-11-29 Miklos Szeredi <miklos@szeredi.hu>
1264 * fusermount: Print a more helpful message in case the kernel
1265 doesn't support the 'fuseblk' filesystem type. This has been
1266 biting ntfs-3g users. Reported by Yura Pakhuchiy
1268 * kernel: fix build problem for "make -C ...". Reported by
1271 2006-11-19 Miklos Szeredi <miklos@szeredi.hu>
1273 * Fix bug in certain error paths of lookup routines. The request
1274 object was reused for sending FORGET, which is illegal. This bug
1275 could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1276 silently corrupt memory in earlier versions. Report and test
1279 2006-11-11 Miklos Szeredi <miklos@szeredi.hu>
1281 * Print an error if an incompatible kernel interface version is
1282 detected in INIT. This will only show if filesystem is started
1285 * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1286 fuse_setup_common(). Reported by Szakacsits Szabolcs
1288 2006-11-06 Miklos Szeredi <miklos@szeredi.hu>
1290 * Fix recursive locking in fuse_create(). Thanks to Takuya
1291 Ishibashi for the bug report
1293 2006-10-28 Miklos Szeredi <miklos@szeredi.hu>
1295 * Fix automake problem. Patch from Nix
1297 2006-10-26 Miklos Szeredi <miklos@szeredi.hu>
1299 * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1300 always available on embedded systems. Patch from Paul Smith
1302 * Fix util/Makefile.am, so that failure to run update-rc.d or
1303 device creation doesn't cause make to fail. Reported by Paul
1306 2006-10-21 Miklos Szeredi <miklos@szeredi.hu>
1310 2006-10-18 Miklos Szeredi <miklos@szeredi.hu>
1312 * fusermount: don't try to create a lock file if /etc/mtab is a
1313 symlink. Report and patch from Alexei Sheplyakov (debian bug
1316 2006-10-17 Miklos Szeredi <miklos@szeredi.hu>
1318 * Minor changes, sync with mainline tree
1320 2006-10-16 Miklos Szeredi <miklos@szeredi.hu>
1322 * Released 2.6.0-rc3
1324 2006-10-15 Miklos Szeredi <miklos@szeredi.hu>
1328 2006-10-13 Miklos Szeredi <miklos@szeredi.hu>
1330 * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1331 Report from David Shaw
1333 * lib: Fix lost error on renaming a file. Report from David Shaw
1335 * lib: Fix lost error on hiding open files (renaming to
1338 * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1339 activity. The cause of the bug was that some calls to
1340 i_size_write() were not protected by a lock, and hence
1341 i_size_seqcount could become corrupted. This caused subsequent
1342 calls to i_size_read() to spin forever. This is a long standing
1343 bug was probably introduced in version 2.2, and thought to be
1344 related to NFS exporting (it's not). It was reported by various
1345 people, but Dana Henriksen has finally helped me to track it down,
1346 so big thanks to him
1348 * kernel: Protect against truncation of a swapfile
1350 2006-10-10 Miklos Szeredi <miklos@szeredi.hu>
1352 * kernel: Check for signature of super_operations->umount_begin().
1353 Ubuntu kernel 2.6.17 seems to use the new signature found in
1354 2.6.18. Thanks to Florent Mertens for the report
1356 2006-10-08 Miklos Szeredi <miklos@szeredi.hu>
1358 * Make sure inode numers wrap around at 2^32. This is needed on
1359 dual 64bit/32bit architectures, because 32bit applications using
1360 the non-largefile interface would otherwise break (EOVERFLOW error
1361 would be returned by the stat() system call family)
1363 * ulockmgr: handle the case, when a locking operation fails
1364 because no more file desctriptors are available in
1365 ulockmgr_server. Also work around a Linux kernel bug (known to
1366 exist for all Linux kernel versions <= 2.6.18) which may cause
1367 sent file descriptors to be lost in the above case
1369 * ulockmgr: optimize file descriptor use
1371 * restore needed cpp flags to util/Makefile.am
1373 * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1375 * Minor clean up of udev rules
1377 * Add a synchronous DESTROY message to kernel interface. This is
1378 invoked from umount, when the final instance of the filesystem is
1379 released. It is only sent for filesystems mounted with the
1380 'blkdev' option for security reasons.
1382 * If the DESTROY message is received, call the filesystem's
1383 ->destroy() method. In this case it's not called from session
1384 destruction as it would be otherwise.
1386 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1388 * Released 2.6.0-rc2
1390 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1392 * Add support for FLUSH+RELEASE operation for FreeBSD. Original
1395 * Add init script to insert fuse module and mount the control
1396 filesystem. The script is installed as /etc/init.d/fuse and on
1397 debian based systems (where update-rc.d is available) symlinks
1398 from /etc/rc*.d/ are also installed.
1400 * Include '#define FUSE_USE_VERSION=XX' into examples so they
1401 become more self contained.
1403 2006-09-30 Miklos Szeredi <miklos@szeredi.hu>
1407 * Move lock_owner from a separate argument into fuse_file_info
1409 * Add a flag to fuse_file_info indicating (1) a highlevel lock
1410 operation (unlock all) was initiated by a flush, (2) a lowlevel
1411 release operation should perform a flush as well.
1413 * fusermount: revert modprobe change (2006-08-18) since it
1414 doesn't work reliably with udev
1416 * Add support for block device backed filesystems. This mode is
1417 selected with the 'blkdev' option, which is privileged.
1419 * Add support for the bmap (FIBMAP ioctl) operation on block
1420 device backed filesystems. This allows swapon and lilo to work on
1425 * Drop support for kernels earlier than 2.6.9. Kernel module from
1426 previous (2.5.x) release can be used with library from this
1429 * In fuse_dentry_revalidate() use dget_parent() instead of
1430 dereferencing d_parent, since there's no protection against parent
1431 changing and going away
1433 * Protect nlookup from concurrent updates
1435 * In lookup if a directory alias exists but is unused,
1436 then get rid of it, otherwise return -EBUSY.
1438 * In mkdir if a directory alias exists, return success, but leave
1439 dentry negative. In reality this could happen if a remote rename
1440 immediately followed the mkdir.
1442 * Don't BUG in fuse_iget() if multiple retries are needed to get a
1443 good inode. This could happen if several lookups are racing for
1446 2006-09-29 Miklos Szeredi <miklos@szeredi.hu>
1448 * Fix compilation on 2.6.9. Report from Troy Ayers
1450 2006-09-27 Miklos Szeredi <miklos@szeredi.hu>
1452 * Fix Oops in fuse_readpages(). Reported by David Shaw
1454 2006-09-24 Csaba Henk <csaba.henk@creo.hu>
1456 * Add support for nanosec times on FreeBSD
1458 * Fix FreeBSD compatibility issues
1460 2006-09-23 Miklos Szeredi <miklos@szeredi.hu>
1462 * Fix one more compatibility bug. Thanks to Ricardo Correia
1464 * Fix utimens compilation with uClibc. Patch from Jamie Guinan
1466 2006-09-22 Miklos Szeredi <miklos@szeredi.hu>
1468 * Fixed several compatibility bugs in low level interface.
1469 Reported by Ricardo Correia
1471 * Add workaround for ARM caching bug
1473 2006-09-16 Miklos Szeredi <miklos@szeredi.hu>
1475 * Rename new utimes() method to more logical utimens()
1477 2006-09-14 Miklos Szeredi <miklos@szeredi.hu>
1479 * Fuse tried to unlink already unlinked hidden files. Bug
1480 reported by Milan Svoboda
1482 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1484 * Released 2.6.0-rc1
1486 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1488 * kernel: Fix unlock on close for kernels < 2.6.18
1490 * Add ulockmgr library & server. This can be used for handling
1491 file locking requests either directly from libfuse or over a
1492 network, etc. This first version is not optimized and the number
1493 of file descriptors it uses may get out of hand
1495 2006-09-07 Miklos Szeredi <miklos@szeredi.hu>
1497 * lib: Add interrupt support to high level library, which may be
1498 enabled with the 'intr' mount option.
1500 * When an operation is interrupted the thread handling that
1501 operation will receive SIGUSR1 (or other signal specified with the
1502 'intr_signal=N' option). The library installs a no-op signal
1503 handler for this signal, unless there's already a handler
1506 * The filesystem may query interrupt status (regardless of 'intr')
1507 with the fuse_interrupted() function.
1509 * mount.fuse: initialize $HOME if not set. Report from Sven Goldt
1511 2006-09-03 Miklos Szeredi <miklos@szeredi.hu>
1513 * lib: Multithreaded loop now allows unlimited number of threads.
1514 This is needed for locking operations which may block
1515 indefinitely. Also the kernel now doesn't limit the number of
1516 outstanding requests so the library shouldn't do so either.
1518 2006-09-01 Miklos Szeredi <miklos@szeredi.hu>
1520 * Fix recursive lock bug in interrupt handling
1522 * Add utimes() method to highlevel interface, which supports
1523 setting times with nanosecond resolution
1525 2006-08-18 Miklos Szeredi <miklos@szeredi.hu>
1527 * kernel: fix page leak if fuse_readpages() failed in it's
1528 initialization. Bug found and original patch from Alexander
1531 * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1532 the kernel tree) the statfs method will receive the path within
1533 the filesystem on which the stat(v)fs syscall was called
1535 * fusermount: try to modprobe fuse module if invoked by root and
1536 unable to open device. This is needed with udev, since the device
1537 node will be created only when the module is inserted, hence
1538 module autoloading won't work. Reported by Szakacsits Szabolcs
1540 2006-07-30 Miklos Szeredi <miklos@szeredi.hu>
1542 * fusermount: if selinux is active, restore the original file's
1543 security context in unmount_rename(). Redhat bugzilla id 188561.
1544 Patch from Yves Perrenoud
1546 * Add POSIX file locking operation to high level library
1548 * Initialize context for unlink of hidden files on umount. Bug
1549 reported by Tim Stoakes
1551 2006-07-14 Miklos Szeredi <miklos@szeredi.hu>
1553 * Multiple release() calls can race with each other, resulting in
1554 the hidden file being deleted before the last release finishes.
1555 Bug found and patch tested by Mark Huijgen
1557 2006-07-05 Miklos Szeredi <miklos@szeredi.hu>
1559 * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1560 this makes sense on systems using udev. Reported by Szakacsits
1563 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1565 * Released 2.6.0-pre3
1567 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1569 * Support in kernel module for file locking and interruption. The
1570 same functionality is available in official kernels >= 2.6.18
1572 2006-06-28 Miklos Szeredi <miklos@szeredi.hu>
1574 * Add POSIX file locking support
1576 * Add request interruption
1578 2006-06-06 Miklos Szeredi <miklos@szeredi.hu>
1580 * Add missing pthread_rwlock_destroy(). Patch from Remy Blank
1582 2006-06-05 Remy Blank <remy.blank@pobox.com>
1584 * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1585 unmounting succeeds even if mount point was relative.
1587 2006-06-04 Csaba Henk <csaba.henk@creo.hu>
1589 * lib: fix emergency umount in helper.c when malloc fails.
1590 (The way it was done would end up in a segfault.)
1592 2006-06-01 Csaba Henk <csaba.henk@creo.hu>
1594 * lib: adjust threading related compiler flags.
1595 Switch to "-pthread" from "-lpthread" as that's the preferred
1596 one on several platforms. Consulted with Terrence Cole and
1599 2006-05-08 Miklos Szeredi <miklos@szeredi.hu>
1601 * lib: search fusermount in installation directory (bindir) as
1604 2006-05-03 Miklos Szeredi <miklos@szeredi.hu>
1606 * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1607 Reported by Christian Magnusson
1609 2006-04-23 Csaba Henk <csaba.henk@creo.hu>
1611 * lib: make FreeBSD mount routine recognize if kernel features
1612 backgrounded init and if it does, run the mount util in foreground
1613 (similarly to Linux)
1615 2006-04-21 Miklos Szeredi <miklos@szeredi.hu>
1617 * kernel: fix fput deadlock fix, the lockless solution could lead
1618 to "VFS: busy inodes after umount..."
1620 * kernel: fix race between checking and setting file->private_data
1621 for the device. Found by Al Viro
1623 2006-04-11 Miklos Szeredi <miklos@szeredi.hu>
1625 * kernel: remove request pool, instead allocate requests on
1626 demand. Account the number of background requests, and if they go
1627 over a limit, block the allocation of new requests.
1629 * kernel: fix deadlock if backgrounded request holds the last
1630 reference to the super block
1632 * kernel: don't use fuse_reset_request() during direct I/O
1634 2006-04-06 Csaba Henk <csaba.henk@creo.hu>
1636 * lib: Let FreeBSD mount option parsing routine recognize "no"
1637 prefixes for FUSE specific options as well
1639 2006-04-01 Miklos Szeredi <miklos@szeredi.hu>
1641 * lib: Add missing rwlock initialization. Patch by Ryan Bradetich
1643 2006-03-17 Miklos Szeredi <miklos@szeredi.hu>
1647 * fuse_main(), fuse_setup() and fuse_new() have an additionl
1650 * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1653 * fuse_unmount() receives a 'struct fuse_chan' pointer. It
1654 destroys the given channel
1656 * fuse_teardown() no longer has a file descriptor parameter
1658 * new exported functions: fuse_session_remove_chan(),
1659 fuse_get_session(), fuse_daemonize()
1661 * fuse_chan_recv() may now return a new channel which will be used
1664 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1666 * Released 2.6.0-pre2
1668 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1670 * Don't unmount if already unmounted. This fixes a problem seen
1671 in the following situation: Lazy unmount a busy filesystem; Mount
1672 a new one in top; When the first finally unmounts, the second also
1673 unmounts. Reported by Franco Broi
1675 2006-03-15 Miklos Szeredi <miklos@szeredi.hu>
1677 * lowlevel lib: use indirect function calls instead of a
1678 switch/case construct. Besides increased efficiency it helps
1679 maintainability & readability too. Patch from Florin Malita
1681 2006-03-13 Miklos Szeredi <miklos@szeredi.hu>
1683 * kernel: replace global spinlock with a per-connection spinlock
1685 2006-03-10 Miklos Szeredi <miklos@szeredi.hu>
1687 * Fix source compatibility breakage for fuse_unmount(). Report
1690 2006-03-02 Miklos Szeredi <miklos@szeredi.hu>
1692 * Fix O_ASYNC handling in fuse_dev_release(). From Jeff Dike
1694 2006-03-01 Miklos Szeredi <miklos@szeredi.hu>
1696 * Add O_ASYNC and O_NONBLOCK support to FUSE device. Patch by
1699 * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1700 interface to return -errno in case of error.
1702 2006-03-01 Csaba Henk <csaba.henk@creo.hu>
1704 * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1705 FreeBSD implementation so that it uses libc (sysctl backed) instead
1706 of an embdedded script (kmem backed). Adjust the control flow of
1707 hello_ll so that device doesn't get closed before unmount attempt.
1709 2006-02-25 Miklos Szeredi <miklos@szeredi.hu>
1711 * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1712 implement method. This is needed on FreeBSD, and nicer on Linux
1713 too. Highlevel lib already did this. Reported by Csaba Henk
1715 * Fix negative entry handling. There was a bug, that negative
1716 lookups with timeouts (nodeid == 0) returned -EIO.
1718 2006-02-23 Miklos Szeredi <miklos@szeredi.hu>
1720 * Fix race between RELEASE and UNLINK, which might leave
1721 .fuse_hidden* files around
1723 2006-02-21 Miklos Szeredi <miklos@szeredi.hu>
1725 * fusexmp_fh: implement flush() method and call close() on the
1726 open file descriptor. This is needed if used on an NFS
1727 filesystem, which buffers data until file is closed. Franco Broi
1728 spotted the situation when 'cp -p' failed to set the modification
1729 time because of this.
1731 2006-02-20 Miklos Szeredi <miklos@szeredi.hu>
1733 * Released 2.6.0-pre1
1735 2006-02-19 Miklos Szeredi <miklos@szeredi.hu>
1737 * libfuse: fix use-after-free bug in interruptred reply_entry().
1738 Patch from John Muir
1740 * libfuse: fix wrong symbol versioning for fuse_mount. Debian bug
1741 ID: 352631. Found by Stéphane Rosi
1743 2006-02-17 Miklos Szeredi <miklos@szeredi.hu>
1745 * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1746 into a single function fuse_add_direntry(). This cleans up the
1747 interface and makes it possible to do stacking.
1749 2006-02-16 Miklos Szeredi <miklos@szeredi.hu>
1751 * Fix rare race betweeen abort and release caused by failed iget()
1752 in fuse_create_open().
1754 * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1755 own attribute caching.
1757 2006-02-15 Miklos Szeredi <miklos@szeredi.hu>
1759 * Work around FreeBSD runtime linker "feature" which binds an old
1760 version of a symbol to internal references if the symbol has more
1761 than one version. This resulted in infinite recursion in
1762 fuse_lowlevel_new_compat25().
1764 2006-02-10 Csaba Henk <csaba.henk@creo.hu>
1766 * Refine clock_gettime() querying so that linker options
1767 shall be set as it's appropriate for the target platform.
1769 2006-02-09 Miklos Szeredi <miklos@szeredi.hu>
1771 * Fix udev rule syntax. Reported by Nix
1773 2006-02-08 Miklos Szeredi <miklos@szeredi.hu>
1775 * In some cases udev rule seems to be ineffective when installed
1776 as 40-fuse.rules but work as 60-fuse.rules. Reported by John Hunt
1778 2006-02-03 Miklos Szeredi <miklos@szeredi.hu>
1780 * Fix compilation when build directory is different from source
1781 directory. Reported by Frédéric L. W. Meunier
1783 2006-02-02 Miklos Szeredi <miklos@szeredi.hu>
1785 * Fix even bigger bug introduced in fix for request_end() on
1786 2006-01-14. Reported by Gal Rosen
1788 2006-01-30 Miklos Szeredi <miklos@szeredi.hu>
1790 * highlevel-lib: add 'auto_cache' option. This caches file data
1791 based on modification time and size
1793 2006-01-20 Miklos Szeredi <miklos@szeredi.hu>
1795 * Sanitize storage type and help message in mount_bsd.c. Patch
1798 * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1799 FUSE_OPT_KEY_DISCARD
1801 * Add options 'max_readahead', 'sync_read' and 'async_read'
1803 * Kernel ABI version 7.6:
1805 * Negotiate the 'max_readahead' value and 'async_read' flags with
1806 userspace in the INIT method
1808 * Add connection info to ->init() methods to both lowlevel and
1811 * Fall back to synchronous read() behavior if either library or
1812 userspace filesystem is using the old interface version. This is
1813 needed so non-updated filesystems won't be confused by the
1814 different read() behavior
1816 2006-01-19 Miklos Szeredi <miklos@szeredi.hu>
1818 * lib: if "fsname=" option was given, pass it to fusermount
1820 * fuse_opt: add new fuse_opt_insert_arg() function, which is
1821 needed by filesystems to implement some argument manipulations
1824 * fuse_opt: fix memory leak in handling "--" option
1826 2006-01-18 Miklos Szeredi <miklos@szeredi.hu>
1828 * kernel: fix detection of case when fuse is not configured into
1829 the kernel either as module or built-in
1831 * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1832 'template' structure member to 'templ'. Reported by Takashi Iwai
1834 * fuse.h: fix compatibility bugs. Patch by Yura Pakhuchiy
1836 * kernel: support version 2.6.16 (i_sem -> i_mutex)
1838 2006-01-16 Miklos Szeredi <miklos@szeredi.hu>
1840 * Added (again) asynchronous readpages support
1842 * Each connection now shows up under /sys/fs/fuse/connections
1844 * Connection attributes exported to sysfs: 'waiting' number of
1845 waiting requests; 'abort' abort the connection
1847 * Connection may be aborted through either the sysfs interface or
1848 with 'umount -f mountpoint'
1850 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1854 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1856 * kernel: fix a couple of bugs
1858 * Order of request_end() and fuse_copy_finish() was wrong.
1859 Posthumous note: Franco Broi managed to exploit this, though it
1860 seemed quite impossible
1862 * request_end() used request pointer after decrementing refcount
1864 * Clearing ->connected or ->mounted connection flags could race
1865 with setting other bitfields not protected with a lock
1867 2006-01-10 Miklos Szeredi <miklos@szeredi.hu>
1869 * kernel: add necessary compile flags for 2.4.X/x86_64.
1870 Report from Sean Ziegeler
1872 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1874 * Released 2.5.0-pre2
1876 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1878 * Applied patch from Csaba Henk, to update mount_bsd to new
1879 fuse_mount() semantics
1881 * Ignore auto,noauto,... options in mount.fuse. Reported by Frank
1882 Steiner and Don Taber
1884 * fusermount: add 'dirsync' mount option
1886 2006-01-07 Miklos Szeredi <miklos@szeredi.hu>
1888 * Improved help reporting and added version reporting to library
1890 2006-01-06 Miklos Szeredi <miklos@szeredi.hu>
1892 * Change working directory to "/" even if running in the
1893 foreground. Patch from Jonathan Brandmeyer
1895 * Changed lots of functions to use 'struct fuse_args' instead of
1896 separate argc and argv
1898 * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1899 fuse_remove_signal_handlers() functions, so that it's now pretty
1900 easy to get all the functionality of fuse_main() with a filesystem
1901 using the lowlevel API.
1903 2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
1905 * mount.fuse: the 'user' option should be ignored. Report and
1906 solution from Mattd.
1908 * mount.fuse: export PATH in the right place. Report and patch
1909 from Hannes Schweizer
1911 2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
1913 * Clean up the option parsing interface slightly, by creating an
1914 "argument list" structure, that contains the argument vector and
1917 2005-12-15 Miklos Szeredi <miklos@szeredi.hu>
1919 * fusermount: check if /mnt/mtab is a symlink and don't modify it
1922 * kernel: simplify request size limiting. INIT only contains
1923 maximum write size, maximum path component size remains fixed at
1924 1024 bytes, and maximum xattr size depends on read buffer.
1926 2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
1928 * Fix readdir() failure on x86_64, of 32bit programs compiled
1929 without largefile support. Bug report and help from Anthony
1932 * If lookup returns invalid mode, return -EIO instead of creating
1935 * Add current output argument vector to option processing
1938 2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
1940 * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
1942 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1944 * Released 2.5.0-pre1
1946 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1948 * libfuse: added option parsing interface, defined in
1951 2005-12-07 Miklos Szeredi <miklos@szeredi.hu>
1953 * Return EIO for file operations (read, write, fsync, flush) on
1954 open files whose inode has become "bad". Inodes will be marked
1955 "bad" if their type changes. Bug report by Csaba Henk
1957 2005-12-06 Miklos Szeredi <miklos@szeredi.hu>
1959 * Use bigger request buffer size. write() did not work on archs
1960 with > 4k page size, Bug report by Mark Haney
1964 * Extend INIT reply with data size limits
1966 2005-12-02 Miklos Szeredi <miklos@szeredi.hu>
1968 * Fix memory leak in fuse_read_cmd()/fuse_process_cmd(). Bug
1969 reported by Vincenzo Ciancia
1971 * Handle exit-by-umount in fuse_read_cmd()
1973 2005-11-29 Miklos Szeredi <miklos@szeredi.hu>
1975 * Check if '-msoft-float' option is supported by compiler when
1976 configuring for a 2.4.x kernel. Bug report by Mark Haney
1978 * In multithreaded loop send a TERM signal to the main thread if
1979 one of the other threads exit. Needed on FreeBSD for a clean exit
1980 on umount. Should not cause any harm on Linux either
1982 2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
1984 * Fix bug in 32-bit file handle compatibility
1986 2005-11-27 Miklos Szeredi <miklos@szeredi.hu>
1988 * Block TERM, INT, HUP and QUIT signals in all but the main
1989 thread. According to POSIX it's not specified which thread will
1990 receive these signals.
1994 * Check for directory aliasing on mkdir, not just on lookup
1996 * Check for special node ID values in create+open operation
1998 * Sync with -mm: readv, writev, aio_read and aio_write methods
1999 added to file operations
2001 * Cleanups: lookup code, page offset calculation
2003 * ABI stepped to 7.4, changes:
2005 * frsize member added to fuse_kstatfs structure
2007 * added support for negative entry caching: on lowlevel API if
2008 fuse_entry_param::ino is set to zero in reply to a lookup request,
2009 the kernel will cache the dentry for the specified amount of time.
2011 * libfuse: added 'negative_timeout' option: specifies how much
2012 negative entries should be cached. Default is zero, to be
2013 compatible with prior versions
2015 2005-11-22 Miklos Szeredi <miklos@szeredi.hu>
2017 * Add detection of mainline FUSE code in running kernel
2019 2005-11-21 Miklos Szeredi <miklos@szeredi.hu>
2021 * Don't use async cancelation in multithreaded loop. This makes
2022 it more portable to systems where read() is not async cancel safe.
2023 Report from Andriy Gapon
2025 2005-11-20 Miklos Szeredi <miklos@szeredi.hu>
2027 * Warn if API version 11 compatibility is requested
2029 2005-11-17 Miklos Szeredi <miklos@szeredi.hu>
2031 * More FreeBSD merge
2033 * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2034 them, because it corrupts /etc/mtab. Found by Thomas Biege
2037 * libfuse: don't use system() to invoke 'fusermount -u ...'
2038 because it breaks mountpoints with spaces in them into multiple
2041 2005-11-16 Miklos Szeredi <miklos@szeredi.hu>
2043 * Merge library part of FreeBSD port. Patch by Csaba Henk
2045 2005-11-11 Miklos Szeredi <miklos@szeredi.hu>
2047 * Use 64bit type for file handle, so the full range supported by
2048 the kernel interface is available to applications
2050 2005-11-10 Miklos Szeredi <miklos@szeredi.hu>
2052 * Moved mountpoint argument checking from fuse_parse_cmdline() to
2053 fuse_mount() in preparation to FreeBSD merge.
2055 2005-11-08 Miklos Szeredi <miklos@szeredi.hu>
2057 * Remove unneeded close() from fuse_teardown(). Spotted by Csaba
2060 2005-11-07 Miklos Szeredi <miklos@szeredi.hu>
2062 * Make the statfs change backwards compatible.
2064 2005-11-06 Miklos Szeredi <miklos@szeredi.hu>
2066 * Change ->statfs() method to use 'struct statvfs' instead of
2067 'struct statfs'. This makes the API more portable since statvfs()
2068 is defined by POSIX.
2070 2005-10-28 Miklos Szeredi <miklos@szeredi.hu>
2072 * Add fgetattr() method, which currently will only be called after
2073 a successful call to a create() method.
2075 2005-10-26 Miklos Szeredi <miklos@szeredi.hu>
2077 * Change kernel ABI version to 7.3
2079 * Add ACCESS operation. This is called from the access() system
2080 call if 'default_permissions' mount option is not given, and is
2081 not called on kernels 2.4.*
2083 * Add atomic CREATE+OPEN operation. This will only work with
2084 2.6.15 (presumably) or later Linux kernels.
2086 * Add ftruncate() method. This will only work with 2.6.15
2087 (presumably) or later Linux kernels.
2089 * Fix kernel module compile if kernel source and build directories
2090 differ. Report and initial patch by John Eastman
2092 2005-10-18 Miklos Szeredi <miklos@szeredi.hu>
2094 * lib: optimize buffer reallocation in fill_dir.
2096 2005-10-17 Miklos Szeredi <miklos@szeredi.hu>
2100 2005-10-14 Miklos Szeredi <miklos@szeredi.hu>
2102 * libfuse: add debug for write result (by Shaun Jackman) and
2103 warnings for too large read/write result
2105 2005-10-11 Miklos Szeredi <miklos@szeredi.hu>
2107 * Spelling fixes, thanks to Ioannis Barkas
2109 2005-10-10 Miklos Szeredi <miklos@szeredi.hu>
2111 * fuse_common.h: use extern "C". Thanks to Valient Gough for the
2114 2005-10-07 Miklos Szeredi <miklos@szeredi.hu>
2116 * highlevel-lib: init() and destroy() methods didn't have an
2117 initialized fuse_context. Bug reported by Tim Stoakes
2119 2005-10-04 Miklos Szeredi <miklos@szeredi.hu>
2123 2005-10-03 Miklos Szeredi <miklos@szeredi.hu>
2125 * Add documentation to fuse_lowlevel.h
2129 * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2131 * Move fuse_mount() and fuse_unmount() to fuse_common.h
2133 * Change the return type of fuse_reply_none() from int to void.
2135 2005-09-30 Miklos Szeredi <miklos@szeredi.hu>
2137 * kernel: NFS exporting leaked dentries. Bug found and fixed by
2140 2005-09-29 Miklos Szeredi <miklos@szeredi.hu>
2142 * fusermount: fix error message, when unable to open /dev/fuse.
2143 Report by Balázs Pozsár
2145 2005-09-28 Miklos Szeredi <miklos@szeredi.hu>
2147 * UClibc fixes from Christian Magnusson
2149 2005-09-27 Miklos Szeredi <miklos@szeredi.hu>
2151 * Added NAME="%k" to util/udev.rules. Fix by Mattias Wadman.
2153 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2155 * Released 2.4.0-rc1
2157 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2159 * fusermount: allow user umount in the case when /etc/mtab is a
2160 symlink to /proc/mounts. Reported by Balázs Pozsár.
2162 2005-09-23 Miklos Szeredi <miklos@szeredi.hu>
2164 * Check for special node ID values in lookup and creation
2166 2005-09-22 Miklos Szeredi <miklos@szeredi.hu>
2168 * Slight optimization in returning EINVAL error in case of an open
2171 2005-09-20 Miklos Szeredi <miklos@szeredi.hu>
2173 * Remove '--enable-auto-modprobe' configure flag. Module
2174 auto-loading is now handled by the kernel.
2176 2005-09-15 Miklos Szeredi <miklos@szeredi.hu>
2178 * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2179 Help from Jens M. Noedler.
2181 2005-09-14 Miklos Szeredi <miklos@szeredi.hu>
2183 * Add memory cleanup on thread exit
2185 2005-09-13 Miklos Szeredi <miklos@szeredi.hu>
2187 * Set umask to zero in fusexmp and fusexmp_fh, so that
2188 files/directories are created with the requested mode.
2190 2005-09-12 Miklos Szeredi <miklos@szeredi.hu>
2192 * Don't ignore read error in multithreaded loop
2194 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2196 * Released 2.4.0-pre2
2198 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2200 * Revert lock and access operations. Postpone these until 2.5.
2202 2005-09-02 Miklos Szeredi <miklos@szeredi.hu>
2204 * Fix compile warning on 2.6.13 and later
2206 * Fix compilation on old kernels
2208 2005-08-19 Miklos Szeredi <miklos@szeredi.hu>
2210 * lib: always refresh directory contents after rewinddir() to
2211 conform to SUS. Bug found by John Muir.
2213 2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
2215 * Released 2.4.0-pre1
2217 2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
2219 * lib: cleaned up (or messed up, depending on your POV) the low
2220 level library API. Hopefully this is close to the final form.
2222 2005-08-05 Miklos Szeredi <miklos@szeredi.hu>
2224 * fusermount: don't allow empty mountpoint argument, which defeats
2225 automatic umounting in fuse_main(). Bugreport by Václav Jůza
2227 2005-08-03 Miklos Szeredi <miklos@szeredi.hu>
2229 * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2230 option is used (Paul Alfille).
2232 2005-08-02 Miklos Szeredi <miklos@szeredi.hu>
2234 * highlevel-lib: added mount options "attr_timeout" and
2235 "entry_timeout". These options control the length of time file
2236 attributes and entries (names) are cached. Both default to 1.0
2239 * kernel: correctly handle zero timeout for attributes and entries
2241 2005-08-01 Miklos Szeredi <miklos@szeredi.hu>
2243 * Added missing symbols to versionscript (Joshua J. Berry)
2245 * kernel: implement two flags, open can set: 'direct_io' and
2246 'keep_cache'. These correspond exactly to mount options
2247 'direct_io' and 'kernel_cache', but allow a per-open setting.
2249 * Move 'direct_io' and 'kernel_cache' mount option handling to
2250 userspace. For both mount options, if the option is given, then
2251 the respective open flag is set, otherwise the open flag is left
2252 unmodified (so the filesystem can set it).
2254 * lib (highlevel): make open method optional
2256 2005-07-28 Miklos Szeredi <miklos@szeredi.hu>
2258 * kernel: invalidate attributes for read/readdir/readlink
2261 * kernel: detect newer UML kernels
2263 2005-07-26 Miklos Szeredi <miklos@szeredi.hu>
2265 * Make the installation path of fuse.ko and mount.fuse
2266 configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2267 environment variables. Requirement and help from Csaba Henk.
2269 2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
2271 * Fix bug, that causes filesystem requests to hang when unique
2272 request counter becomes negative. This happens after
2273 2,147,483,648 operations, so most people won't care. Thanks to
2274 Franco Broi for the report and testing.
2276 2005-07-21 Miklos Szeredi <miklos@szeredi.hu>
2278 * Don't change mtime/ctime/atime to local time on read/write.
2279 Bug reported by Ben Grimm
2281 * Install fuse_common.h and fuse_lowlevel.h. Report by Christian
2284 * fusermount: use getopt_long() for option parsing. It allows the
2285 use of '--' to stop argument scanning, so fusermount can now
2286 operate on directories whose names begin with a '-'. Patch by
2289 2005-07-15 Miklos Szeredi <miklos@szeredi.hu>
2291 * fusermount: add '-v', '--version' and '--help' options
2293 * add inode based API
2295 2005-07-12 Miklos Szeredi <miklos@szeredi.hu>
2297 * lib: don't block signals in worker threads. Problem noticed by
2300 2005-07-07 Miklos Szeredi <miklos@szeredi.hu>
2302 * lib: don't allow both 'allow_other' and 'allow_root' options to
2305 2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
2307 * fusermount: check if mountpoint is empty (only '.' and '..' for
2308 directories, and size = 0 for regular files). If "nonempty"
2309 option is given, omit this check. This is useful, so users don't
2310 accidentally hide data (e.g. from backup programs). Thanks to
2311 Frank van Maarseveen for pointing this out.
2313 * kernel: check if mandatory mount options ('fd', 'rootmode',
2314 'user_id', 'group_id') are all given
2316 * lib: simplify 'readdir_ino' handling
2318 * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2320 2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
2322 * kernel: clean up 'direct_io' code
2324 2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
2326 * Add 'mount.fuse' written by Petr Klima
2328 * '/dev/fuse' is created by 'make install' if does not yet exist
2330 2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
2332 * Fix UCLIBC compile error. Patch by Christian Magnusson
2334 2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
2336 * Enable the auto-loading of the module via access to the
2337 corresponding device file. Patch by Takashi Iwai.
2339 * Allow mounting a regular file (over a regular file) for
2342 * Do not create temporary device file. Require "/dev/fuse" to
2343 exist, and be readable/writable by the mounting user.
2345 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2349 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2351 * Fix serious information leak: if the filesystem returns a short
2352 byte count to a read request, and there are non-zero number of
2353 pages which are not filled at all, these pages will not be zeroed.
2354 Hence the user can read out previous memory contents. Found by
2357 2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
2359 * Add "readdir_ino" mount option, which tries to fill in the d_ino
2360 field in struct dirent. This mount option is ignored if "use_ino"
2361 is used. It helps some programs (e.g. 'pwd' used over NFS from a
2362 non-Linux OS). Patch by David Shaw.
2364 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2368 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2370 * File save in krusader and other editors doesn't work with sshfs,
2371 because open() is interrupted by a periodic signal, and open()
2372 restarts forever, without any progress. This could just be fixed
2373 in open(), but the problem is more generic: if signals are
2374 received more often than the filesystem can get the request to
2375 userspace, it will never finish. This is probably only a
2376 theoretical problem, nevertheless I'm removing the possibility to
2377 interrupt requests with anything other than SIGKILL, even before
2378 being sent to userspace. Bugreport by Eduard Czimbalmos.
2380 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2382 * libfuse: add "tree_lock" rwlock, that is locked for write in
2383 rename, unlink and rmdir, and locked for read in all other
2384 operations. This should fix the rename/release race reported by
2385 Valient Gough and others. The solution is very coarse, a finer
2386 grained locking scheme could be implemented, but it would be much
2387 more complex. Let's see whether this is good enough.
2389 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2393 2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
2395 * Better fix for out of order FORGET messages. Now the
2396 LOOKUP/FORGET messages are balanced exactly (one FORGET can
2397 balance many lookups), so the order no longer matters. This
2398 changes the kernel ABI slightly, but the library remains backward
2401 2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
2403 * Fix abort for out of order FORGET messages. Again. Spotted by
2404 Franco Broi again. Sorry :)
2406 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2410 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2412 * Make fusermount work with fuse kernel modules not yet supporting
2413 the "group_id" option (added for the purpose of stricter
2414 permission checking).
2416 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
2418 * Check for hard-linked directories in lookup. This could cause
2419 problems in the VFS, which assumes that such objects never exist.
2421 * Make checking of permission for other users more strict. Now
2422 the same privilege is required for the mount owner as for ptrace
2423 on the process performing the filesystem operation.
2425 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
2429 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
2431 * Add -msoft-float to kernel module compile flags for 2.4.X. This
2432 is needed on certain architectures. Report from Chris Kirby
2434 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2435 Reported by David Shaw
2437 * Remove "allow_root" option from kernel module, and implement
2438 it's functionality in the library
2440 * Fix Oops caused by premature release of fuse_conn. Clean up
2441 related code, to be more readable
2443 * Sendfile should not use page cache if "direct_io" mount option
2446 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
2448 * Fix Oops in case of nfs export. Spotted by David Shaw
2450 * Fix another Oops in case of write over nfs with direct_io turned
2451 on. Again spotted by David Shaw
2453 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2457 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2459 * lib: finalized new readdir() interface, which now supersedes the
2462 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2466 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2468 * Implement backward compatibility with version 5 kernel ABI
2470 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2474 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2476 * kernel: fix dirent offset handling
2478 * lib: add readdir and releasedir methods
2480 * lib: use fh field of fuse_file_info in opendir, readdir,
2481 releasedir and fsyncdir methods
2483 * lib: check kernel API version and bail out of it's old. This
2484 will be properly fixed in the next release
2486 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2490 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2492 * kernel API: add padding to structures, so 64bit and 32bit
2493 compiler will return the same size
2495 * kernel API: add offset field to fuse_dirent. This will allow
2496 more sophisticated readdir interface for userspace
2498 * kernel API: change major number to 6
2500 * kernel: fix warnings on 64bit archs
2502 * kernel: in case of API version mismatch, return ECONNREFUSED
2504 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
2506 * kernel: trivial cleanups
2508 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
2510 * Add fsyncdir() operation
2512 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
2514 * kernel: add locking to background list (fixes previous fix)
2516 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
2518 * kernel: fix bug which could cause leave busy inodes after
2521 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
2523 * examples: add -lpthread to link flags to work around valgrind
2526 * lib: don't exit threads, so cancelation doesn't cause segfault
2528 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
2530 * kernel: fix nasty bug which could cause an Oops under certain
2531 situations. Found by Magnus Johansson
2533 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
2535 * libfuse: added opendir() method. This can be used in case
2536 permission checking in getdir() is too late. Thanks to Usarin
2537 Heininga for pointing out this deficiency
2539 * libfuse: added init() and destroy() methods to fuse_operations
2541 * kernel: llseek() method for files and directories made explicit
2543 * kernel: fixed inode leak in NFS export in case of nodeid
2546 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
2548 * libfuse: clean up some unitialized memory found with valgrind
2550 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
2551 explicitly linked libpthread for applications
2553 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
2555 * fusermount: set umask, otherwise /etc/mtab will have
2556 unpredictable permission. Spotted by Jindrich Kolorenc
2558 * fusermount: set owner and group of /etc/mtab to original values
2561 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
2563 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
2565 * Cleaned up directory reading (temporary file is not used)
2567 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2571 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2573 * Fix possible race when operation is interrupted
2575 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
2577 * Fix compilation on 2.6.7
2579 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2583 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2585 * Fix bug in link() operation which caused the wrong path to be
2586 passed as the first argument. Found by Anton Altaparmakov
2588 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
2590 * LIB: fix double reply in readdir operation
2592 * fusermount: fix uid checking bug. Patch by Adam Connell
2594 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2595 Patch by Keshava Gowda
2597 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2599 * KERNEL: provide correct llseek semantics for fuse device (fixes
2600 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
2602 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2604 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2606 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
2608 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2609 and RELEASEDIR. This ends the ugly hack of passing a file
2610 descriptor to the kernel, and actually makes the code simpler.
2612 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2616 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2618 * fusermount: remove capability setting, which was the cause of
2619 problems for some users. It seems that FS related capabilities
2620 are removed by setfsuid(), so this isn't even needed.
2622 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
2624 * fix compilation on 2.4 kernels (reported by Valient Gough)
2626 * fix failure to unmount bug (found by David Shaw)
2628 * fusermount: improve parsing of /etc/fuse.conf
2630 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
2632 * Remove 'mount_max' and 'user_allow_other' module options. These
2633 are now checked by fusermount, and can be set in /etc/fuse.conf
2635 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2637 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
2639 * KERNEL: fix possible inode allocation problem, where
2640 sizeof(struct inode) is not aligned (found by Mike Waychison)
2642 * KERNEL: use new follow_link/put_link methods
2644 * KERNEL: cosmetic fixes
2646 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2650 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2652 * Add missing code that was accidently left out
2654 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2658 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2660 * Change "uid" mount option to "user_id" to avoid confusion with a
2661 mount option "uid" commonly used by many filesystems
2663 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2667 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2669 * If FUSE is configured in the kernel, don't build it by default
2671 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
2673 * Compile fix by Christian Magnusson
2675 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
2677 * Fix compilation for 2.6.{0-5} kernels
2679 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
2681 * KERNEL: if request is interrupted, still keep reference to used
2682 inode(s) and file, so that FORGET and RELEASE are not sent until
2683 userspace finishes the request.
2685 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2686 request with the same information, which is more flexible,
2687 simpler, works on embedded systems.
2689 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
2691 * KERNEL ABI: update interface to make it independent of type
2692 sizes. This will help on 64 bit architectures which can run
2693 legacy 32 bit applications.
2695 * KERNEL ABI: add "len" field to request headers. This will allow
2696 sending/receiving requests in multiple chunks.
2698 * KERNEL: handle file type change more intelligently
2700 * LIB: "-o debug" option should disable backgrounding (fix by
2701 Fabien Reygrobellet)
2703 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
2705 * KERNEL: invalidate dentry/attributes if interrupted request
2706 could leave filesystem in an unknown state.
2708 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
2710 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2711 These will cause some regressions, but stability is considered
2712 more important. If any of these features turns out to be
2713 important, it can be readded with the deadlock problems addressed.
2715 * Make all requests interruptible (only with SIGKILL currently).
2716 This can be used to break any deadlock produced by the userspace
2717 filesystem accessing it's own exported files. The RELEASE request
2718 is special, because if it's interrupted before sending it to
2719 userspace it is still sent, but the reply is not awaited.
2721 * If request is interrupted before being sent to userspace, and if
2722 it hasn't yet got any side effects, it is always restarted,
2723 regardless of the SA_RESTART flag. This makes these interruptions
2724 transparent to the process.
2726 * Remove shared-writable mmap support, which was prone to an
2727 out-of-memory deadlock situation
2729 * Remove INVALIDATE userspace initiated request
2731 * Make readpages() synchronous. Asynchronous requests are
2732 deadlock prone, since they cannot be interrupted.
2734 * Add readv/writev support to fuse device operations
2736 * Remove some printks, which userspace FS can use for a DoS
2739 * Remove 'large_read' mount option from 2.6 in kernel, check it in
2742 * LIB: improve compatibility with a fuse.h header installed in
2743 ${prefix}/include which in turn includes the real header.
2745 * LIB: improve compatibility by defining fuse_main() (which is now
2746 not used), so old configure scripts find it.
2748 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
2750 * When mounting on a subdirectory of / don't duplicate slashes at
2751 the beggining of path (spotted by David Shaw)
2753 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
2755 * Fix bug causing garbage in mount options (spotted by David Shaw)
2757 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
2759 * Add 'writepage' flag to 'fuse_file_info'.
2761 * More comments in fuse.h
2763 * Get rid of double underscores
2765 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
2767 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2769 * helper.c: add -ho option, which only displays the options not
2770 the usage header. This can be used by filesystems which have
2773 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2775 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
2776 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2777 including the fuse header
2779 * Add binary compatibility to 2.1 version of library with symbol
2782 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2786 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
2788 * kernel: clean up writing functions
2790 * kernel: no allocation on write in direct_io mode
2792 * move linux/fuse.h to fuse_kernel.h
2794 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
2796 * kernel: clean up reading functions
2798 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
2800 * kernel: make readpage() uninterruptible
2802 * kernel: check readonly filesystem flag in fuse_permission
2804 * lib: don't die if version file not found and new style device
2807 * lib: add '-r' option, which is short for '-o ro'
2809 * fusermount: simplify device opening
2811 * kernel: when direct_io is turend on, copy data directly to
2812 destination without itermediate buffer. More efficient and safer,
2813 since no allocation is done.
2815 * fusermount: fix warning if fuse module is not loaded
2817 * kernel: use /dev/fuse on 2.4 too
2819 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
2821 * libfuse API change: open, read, write, flush, fsync and release
2822 are passed a 'struct fuse_file_info' pointer containing the open
2823 flags (open and release), and the file handle. Verion changed to
2826 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
2828 * More cleanups in the kernel
2830 * The 10,229 charater device number has been assigned for FUSE
2832 * Version file checking fix (reported by Christian Magnusson)
2834 * fusermount: opening the fuse device now doesn't need /sys.
2836 * Optimize reading by controlling the maximum readahead based on
2837 the 'max_read' mount option
2839 * fixes for UCLIBC (Christian Magnusson)
2841 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
2843 * Cleaned up kernel in preparation for merge into mainline:
2845 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2847 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2849 * __user annotations for sparse
2851 * allocate individual pages instead of kmalloc in fuse_readdir,
2852 fuse_read and fuse_write.
2854 * Fix NFS export in case "use_ino" mount option is given
2856 * Make libfuse and fusermount compatible with future versions
2858 * fusermount: properly add mount options to /etc/mtab
2860 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
2862 * fusermount: do not resolve last component of mountpoint on if it
2863 is '.' or '..'. This new path resolvation is now done on mount as
2864 well as unmount. This enables relative paths to work on unmount.
2866 * fusermount: parse common mount options like "ro", "rw", etc...
2868 * Allow module params to be changed through sysfs
2870 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2874 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2876 * Fix bug in fuse_readpages() causing Oops in certain situations.
2877 Bug found by Vincenzo Ciancia.
2879 * Fix compilation with kernels versions > 2.6.9.
2881 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
2883 * Check kernel interface version in fusermount to prevent
2884 strangeness in case of mismatch.
2886 * No need to allocate fuse_conn until actual mount happens
2888 * Fix potential race between umount and fuse_invalidate
2890 * Check superblock of proc file in addition to inode number
2892 * Fix race between request_send_noreply() and fuse_dev_release()
2894 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
2896 * Separate configure for the kernel directory
2898 * Don't allow write to return more than 'count'
2900 * Extend kernel interface for future use
2902 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
2904 * Fix 'makeconf.sh' to use autoreconf if available
2906 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
2908 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
2909 compatibility with earlier versions. To compile earier versions
2910 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2911 Do not use the "use_ino" mount flag with filesystems compiled with
2914 * Add pkg-config support. To compile a FUSE based filesystem you
2915 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2916 or similar. Note, that the PKG_CONFIG_PATH environment variable
2917 usually needs to be set to "/usr/local/lib/pkgconfig".
2919 * fuse.h is now installed in ${prefix}/include/fuse/
2921 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
2923 * Added "use_ino" mount option. This enables the filesystems to
2924 set the st_ino field on files
2926 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
2928 * Fix compile problems with ancient (<=2.4.18) kernels (reported
2931 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
2933 * Clear the 'exited' flag when mail loop is finished
2935 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
2937 * Make xattr functions work under 2.6 (bug found by Vincenzo
2940 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
2942 * Reset request in fuse_flush() (bugreport by David Shaw)
2944 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
2946 * fuse_main() now does not exit on error, rather it returns an
2949 * Exported __fuse_setup() and __fuse_teardown() functions, which
2950 make it easier to implement a custom event loop.
2952 * Use daemon() call to background the filesystem after mounting.
2953 This function closes the standard input, output and error and
2954 changes the current working directory to "/".
2956 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
2960 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
2962 * Don't allow fuse_flush() to be interrupted (bug found by David
2965 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
2967 * Add PID to fuse_context. Patch by Steven James
2969 * Change file handle type to 'unsigned long' in kernel interface
2971 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
2973 * A slight API change: fuse_get_context() doesn't need the "fuse"
2974 pointer, but the returned context contains it instead. The
2975 fuse_get() function is not needed anymore, so it's removed.
2977 * Fix mounting and umounting FUSE filesystem under another FUSE
2978 filesystem by non-root (bug spotted by Valient Gough)
2980 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
2982 * Fix deadlock in case of memory allocation failure. Patch by
2985 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
2987 * Check memory allocation failures in libfuse
2989 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
2991 * Check temporary file creation failure in do_getdir(). Bug
2992 spotted by Terje Oseberg
2994 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
2996 * Allow "large_read" option for 2.6 kernels but warn of deprecation
2998 * Make requests non-interruptible so race with FORGET is avoided.
2999 This is only a temporary solution
3001 * Support compiling FUSE kernel module on 2.4.x UML kernels
3003 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
3005 * Fix bug in case two FORGETs for the same node are executed in
3006 the wrong order. Bug spotted and endured for months by Franco
3007 Broi, and logfile for solution provided by Terje Oseberg
3009 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
3011 * Add -D_REENTRANT to the compile flags
3013 * Add documentation of fuse internals by Terje Oseberg
3015 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
3017 * Change release method to be non-interruptible. Fixes bug
3018 causing missing release() call when program which has opened files
3019 is killed (reported by Franco Broi and David Shaw)
3021 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
3023 * Add fuse_invalidate() to library API
3025 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
3027 * Check permissions in setattr if 'default_permissions' flag is
3028 set. Bug spotted by Damjan Lango
3030 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
3032 * 'large_read' mount option removed for 2.6 kernels, since the
3033 default (dynamic read size) is better
3035 * Extend kernel API with file handles. A file handle is returned
3036 by open, and passed to read, write, flush, fsync and release.
3037 This is currently only used for debug output in the library.
3041 * Change the current directory to the mountpoint before checking
3042 the permissions and mount filesystem on "."
3044 * By default don't modprobe the fuse module for non-root. The old
3045 behavior can be restored with the '--enable-auto-modprobe' flag of
3048 * By default don't allow shared writable mappings for non-root.
3049 The old behavior can be restored with the 'user_mmap=1' module
3052 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
3054 * Clean up mount option passing to fusermount and to fuse_new()
3055 BEWARE: this changes the userspace API slightly, and the command
3056 line usage of programs using fuse_main()
3058 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
3060 * Optimize reading under 2.6 kernels by issuing multiple page
3061 asynchronous read requests
3063 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
3065 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3067 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
3069 * Separate directory entry and inode attribute validity timer
3071 * New write semaphore to stop page writeback during truncate
3073 * Fsync now waits for all writes to complete before sending the
3076 * Optimization: if a page is completely written by
3077 fuse_commit_write(), clear the dirty flag and set the uptodate
3080 * Some memory cleanup at exit
3082 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
3084 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3085 disable the "hide if open" behavior of unlink/rename.
3087 * If temporary buffer allocation fails in raw read, fall back to a
3090 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
3092 * Fix bug in do_open() in libfuse: open count was incremented
3093 after the reply is sent so it could race with unlink/forget and
3096 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
3098 * When performing create or remove operation, refresh the parent's
3099 attributes on next revalidate, as i_nlink (and maybe size/time)
3102 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3105 * Set set_page_dirty address space operation (2.6 only)
3107 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
3109 * Minor fix in read: print debug info even if read size is zero
3111 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
3113 * Fix race between truncate and writepage (fsx-linux now runs
3116 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
3118 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3121 * Added option for direct read/write (-r)
3123 * Fix revalidate time setting for newly created inodes
3125 * Remove uid==0 check for '-x' option in fusermount (kernel checks
3128 * fuse_main() only installs handlers for signals (out of INT, HUP,
3129 TERM, PIPE), for which no handler has yet been installed
3131 * Add module option 'user_allow_other' which if set to non-zero
3132 will allow non root user to specify the 'allow_other' mount option
3133 ('-x' option of fusermount)
3135 * Fix deadlock between page writeback completion and truncate
3136 (bug found by Valient Gough with the fsx-linux utility)
3138 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
3140 * Change passing fuse include dir to 2.6 kernel make system more
3141 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3144 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
3146 * Acquire inode->i_sem before open and release methods to prevent
3147 concurrent rename or unlink operations.
3149 * Make __fuse_read_cmd() read only one command. This allows
3150 multiplexing the fuse file descriptor with other event sources
3151 using select() or poll() (patch by Jeff Harris)
3153 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3155 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
3157 * Fix file offset wrap around at 4G when doing large reads
3159 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3161 * Fix memory leak in open (Valient Gough)
3163 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3165 * Add "close after delete" support to libfuse (patch by Valient
3168 * Cancel all worker threads before exit in multithreaded mode
3170 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
3174 * Don't send reply to RELEASE
3176 * Work with newer libtool (1.5a)
3178 * Check for st_atim member of struct stat
3180 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
3182 * No request allocation needed on inode and file release
3184 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
3186 * Fix possible inode leak in userspace in case of unfinished
3187 lookup/mknod/mkdir/symlink/link operation.
3189 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
3191 * Fix some races and cleanups in fuse_read_super()
3193 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
3195 * Requests are allocated at open time
3197 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
3199 * Build shared library as well as static (using libtool)
3201 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
3202 there has not been a release with the previous minor number, and I
3203 hope nobody is using it for anything.
3205 * Change fuse_main(), so that default behavior is to go into
3206 background if mount is successful. '-f' and '-d' options disable
3207 backgrounding. This fixes the "Why does my FUSE daemon hang?"
3210 * Cache ENOSYS (function not implemented) errors on *xattr, flush
3213 * Don't call getdir method from open() only from first readdir().
3214 Open is sometimes just used to store the current directory
3217 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
3219 * Added flush() call
3221 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
3223 * Extended attributes support for 2.4 (patch by Cody Pisto)
3225 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
3227 * Fixed parser with modversions (Mattias Wadman)
3229 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
3231 * Added mount option parser to 2.4 build
3233 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
3235 * Replaced binary mount data with text options
3237 * Show FUSE specific mount options in /proc/mounts
3239 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3241 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
3243 * Check some limits so userspace won't get too big requests
3245 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
3247 * Kill compile warning
3249 * Upgraded user-mount patch for 2.6.5
3251 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
3253 * Add detection of user-mode-linux to configure
3255 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
3257 * fixed zero size case for getxattr and listxattr
3259 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
3261 * new fusermount flag '-z': lazy unmount, default is not lazy
3263 * Extended attributes operations added (getxattr, setxattr,
3264 listxattr, removexattr)
3266 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
3268 * If filesystem doesn't define a statfs operation, then an
3269 all-zero default statfs is returned instead of ENOSYS
3271 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
3273 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3275 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
3277 * Fix for uClinux (Christian Magnusson)
3279 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
3281 * fuse_main() adds "-n progname" to the fusermount command line
3283 * More kernel interface changes:
3285 * Lookup/getattr return cache timeout values
3287 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
3289 * Clean up option parsing in fuse_main()
3291 * Added fuse_get() function which returns the fuse object created
3294 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
3296 * removed old way of mounting (fusermount mountpoint program)
3298 * more kernel interface changes:
3300 * added nanosecond precision to file times
3302 * removed interface version from mount data
3304 * added /proc/fs/fuse/version which contains MAJOR.MINOR
3306 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
3308 * statfs library API changed to match other methods. Since this
3309 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3311 * kernel interface changes follow:
3313 * statfs changed to 64 bits, added 'bavail' field
3315 * add generation number to lookup result
3317 * optimized mknod/mkdir/symlink/link (no separate lookup is
3320 * rdev size increased to 32 bits for mknod
3322 * kernel interface version changed to 3.1
3324 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
3326 * user-mount upgraded for 2.6.3 kernel
3328 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
3330 * Added user-mount.2.6.2-rc3.patch
3332 * Add FS_SAFE flag to fuse filesystem
3334 * fusermount should allow (un)mounting for non-root even if not
3337 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
3339 * Remove MS_PERMISSION mount flag (that means something else now)
3341 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
3343 * Added check for i_size_read/write functions to configure.in
3344 (patch by Valient Gough)
3346 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
3348 * Fixed writing >= 2G files
3350 * Check file size on open (with generic_file_open())
3352 * Readpage calls flush_dcache_page() after storing data
3354 * Use i_size_read/write for accessing inode->i_size
3356 * Make loopback mount of a fuse file work
3358 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
3362 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
3364 * Properly check if the inode exists in fuse_invalidate
3366 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
3368 * Added -q option for fusermount
3370 * fuse_unmount() now uses -q option of fusermount, so no error is
3371 printed if the cause of the program exit is that the filesystem
3372 has already been unmounted
3374 * Fix i_nlink correctness after rmdir/unlink
3376 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3380 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3382 * Fix typo (thanks Marcos Dione)
3384 * Compile fixes for 2.4 kernels
3386 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
3388 * Fix CONFIG_MODVERSIONS compile on 2.6
3390 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
3392 * Write all pending data before a RELEASE operation
3394 * Suppress 'Bad file descriptor' warning on exit
3396 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3397 get confused with '-d' of fuse_main() (sorry about this change)
3399 * New fusermount option '-l' which enables big reads. Big reads
3400 are now disabled by default.
3402 * fuse_main() can accept fusermount arguments after a '--'
3404 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
3406 * Support for exporting filesystem over NFS (see README.NFS)
3408 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
3410 * Support non-blocking writepage on 2.6. This makes FUSE behave
3411 much more nicely in low-memory situations
3413 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3414 (Note: the mknod method does not yet use 32bit device number)
3416 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
3420 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
3424 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
3426 * Integrated 2.6 kernel support patch by Michael Grigoriev
3428 * Improvements and cleanups for 2.6 kernels
3430 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
3432 * Added -d option to fusermount
3434 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
3436 * Added major+minor version to library API, and minor version to
3439 2003-12-13 David McNab <david@rebirthing.co.nz>
3441 * Implemented fsync support in examples/example.py
3443 * Implemented 'fsync' and 'statfs' methods in python
3446 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
3448 * Make it compile on 2.4.19.
3450 * Add fsync operation (write file failed on xemacs & vi)
3452 2003-12-12 David McNab <david@rebirthing.co.nz>
3454 * Added distutils support to the python module, as per standard
3455 python development practice
3457 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
3459 * Add file locking for mount/unmount (based on patch by Valient
3462 2003-12-11 David McNab <david@rebirthing.co.nz>
3464 * Python filesystem - was broken with python2.3, now fixed:
3465 - changed PyTuple_* calls to PySequence_*, because os.lstat
3466 is no longer returning a pure tuple
3467 - changed PyInt_Check() calls to also call PyLong_Check,
3468 to cover for cases (eg os.lstat) where longs are returned
3469 - Added support for file 'release' handling, which IMO is
3470 essential since this signals to a FS that writes to a file
3471 are complete (and therefore the file can now be disposed of
3472 meaningfully at the python filesystem's discretion)
3473 - Added '__init__' handler to base Fuse class, which allows
3474 your Python class to know the mountpoint and mount args,
3475 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3478 - added 'mount.fuse' script (in util/ dir), which is meant to be
3479 symlinked from /sbin, and which allows FUSE filesystems to
3480 be mounted with the 'mount' command, and listed in fstab;
3481 also, mount arguments get passed to your filesystem
3484 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
3486 * Fix kernel version detection (again). Bugreport by Peter Levart
3488 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
3490 * Applied read combining patch by Michael Grigoriev (tested by
3491 Valient Gough and Vincent Wagelaar)
3493 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
3495 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3498 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
3500 * Error code fixes in kernel module
3502 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
3504 * kernel version detection fix
3506 * fusermount now uses "lazy" umount option
3508 * fusermount can use modprobe with module-init-tools
3510 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
3512 * Integrated caching patch by Michael Grigoriev
3514 * Added "Filesystems" file with descriptions of projects using
3517 * Added patch by Michael Grigoriev to allow compliation of FUSE
3518 kernel module for 2.6 kernels
3520 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
3522 * And another spec-file fix by Achim Settelmeier
3524 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
3526 * Spec-file fix by Achim Settelmeier
3528 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
3530 * Fix umount oops (found by Samuli Kärkkäinen)
3532 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
3534 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3536 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
3538 * Updated fuse.spec file (Achim Settelmeier)
3540 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
3542 * Version 1.0 released
3544 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
3546 * SuSE compilation fix by Juan-Mariano de Goyeneche
3548 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
3550 * The release() VFS call is now exported to the FUSE interface
3552 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
3554 * 64 bit file offset fixes in the fuse kernel module
3556 * Added function 'fuse_exit()' which can be used to exit the main
3559 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
3561 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
3562 an incompatible interface change.
3564 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
3566 * Portablility fix (bug reported by C. Chris Erway)
3568 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
3570 * Use Mark Glines' fd passing method for default operation instead
3573 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3575 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3577 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3579 * fix incompatiblity with Red Hat kernels, with help from Nathan
3582 2002-04-18 Mark Glines <mark@glines.org>
3584 * added an alternative to fuse_mount(), called
3585 fuse_mount_ioslave(), which does not need to reexec the
3587 * added a small helper util needed by fuse_mount_ioslave().
3589 2002-03-16 Mark Glines <mark@glines.org>
3591 * use struct fuse_statfs everywhere possible to avoid problems
3592 with the headerfiles changing struct statfs member sizes
3594 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
3596 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3598 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
3600 * RPM support by Achim Settelmeier
3602 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3604 * Version 0.95 released
3606 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3608 * Revaidate all path components not just the last, this means a
3609 very small performance penalty for being more up-to-date.
3611 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
3613 * Update and fix python interface
3615 2002-01-07 Mark Glines <mark@glines.org>
3617 * Added statfs() support to kernel, lib, examples, and perl!
3619 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
3621 * Better cross compilation support
3623 * Ported to Compaq IPAQ
3625 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
3627 * Added function fuse_get_context() to library API (inspired by
3628 patch from Matt Ryan)
3630 * Added flags to fusermount and to kernel interface to control
3633 * Integrated fuse_set_operations() into fuse_new()
3635 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
3637 * Applied header protection + extern "C" patch by Roland
3640 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
3642 * Added perl bindings by Mark Glines
3644 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
3646 * Cleaned up way of mounting simple filesystems.
3648 * fuse_main() helper function added
3650 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
3652 * Optimized read/write operations, so that minimal copying of data
3655 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
3657 * Python bindings by Jeff Epler added
3659 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
3661 * Fixed vfsmount reference leak in fuse_follow_link
3663 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3664 userspace is ignored
3666 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>