1 2015-04-23 Miklos Szeredi <miklos@szeredi.hu>
3 * libfuse: add FUSE_CAP_NO_OPEN_SUPPORT flag to ->init()
5 2015-02-26 Miklos Szeredi <miklos@szeredi.hu>
7 * libfuse: fix fuse_remove_signal_handlers() to properly restore
8 the default signal handler. Reported by: Chris Johnson
10 * libfuse: fix handling of '.' and '..' in highlevel readdirplus
12 2014-07-21 Miklos Szeredi <miklos@szeredi.hu>
14 * libfuse: highlevel API: fix directory file handle passed to
15 ioctl() method. Reported by Eric Biggers
17 2014-07-15 Miklos Szeredi <miklos@szeredi.hu>
19 * libfuse: document deadlock avoidance for
20 fuse_notify_inval_entry() and fuse_notify_delete()
22 * fusermount, libfuse: send value as unsigned in "user_id=" and
23 "group_id=" options. Uids/gids larger than 2147483647 would
24 result in EINVAL when mounting the filesystem. This also needs a
27 * libfuse: add "time_gran" option. This allows the filesystem to
28 specify the time granularity it supports when the kernel is
29 responsible for updating times ("writeback_cache" option).
31 * libfuse: allow setting ctime in ->setattr()
33 * libfuse: add flags to ->rename(). See renameat2() system call
34 in linux-3.15 and later kernels.
36 2014-03-26 Miklos Szeredi <miklos@szeredi.hu>
38 * Initialize stat buffer passed to ->getattr() and ->fgetattr() to
39 zero in all cases. Reported by Daniel Iwan
41 2014-03-05 Miklos Szeredi <miklos@szeredi.hu>
43 * libfuse: implement readdirplus for high-level API. Reuse the
44 old "readdir" callback, but add a flags argument, that has
45 FUSE_READDIR_PLUS in case this is a "plus" version. Filesystems
46 can safely ignore this flag, but if they want they can add
47 optimizations based on it: i.e. only retrieve the full attributes
48 in PLUS mode. The filler function is also given a flags argument
49 and the filesystem can set FUSE_FILL_DIR_PLUS if all the
50 attributes in "stat" are valid. Original patch by Eric Wong
52 2014-02-21 Miklos Szeredi <miklos@szeredi.hu>
54 * libfuse: added fuse_lo-plus.c to the examples
56 2014-02-04 Miklos Szeredi <miklos@szeredi.hu>
58 * libfuse: Don't use constructor functions for loading modules.
59 Original patch by Fabrice Bauzac
61 2014-01-29 Miklos Szeredi <miklos@szeredi.hu>
63 * libfuse: Add "async_dio" and "writeback_cache" options.
64 Asynchronous direct I/O is supported by linux kernels 3.13 and
65 later, writeback caching is supported by 3.14 and later.
67 2013-08-26 Miklos Szeredi <miklos@szeredi.hu>
69 * libfuse: Add missing includes. This allows compiling fuse with
70 musl. Patch by Daniel Thau
72 2013-07-26 Miklos Szeredi <miklos@szeredi.hu>
74 * Print help on stdout instead of stderr
76 2013-07-25 Miklos Szeredi <miklos@szeredi.hu>
78 * libfuse: fuse -> fuse3. Allow 2.X and 3.X to coexist. Includes
79 are now stored under /usr/include/fuse3 and library is named
80 libfuse3.*. Invoke pkg-config with "fuse3" as the first argument
81 to build with version 3 of the library.
83 * ulockmgr: strip ulockmgr support from this source package and
84 distribute it separately. It is not needed for the building of
85 libfuse, only fusexmp_fh. Check ulockmgr library in ./configure
86 and if not disable remote-lock suport in fusexmp_fh.
88 2013-07-24 Miklos Szeredi <miklos@szeredi.hu>
90 * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
91 AC_SYS_LARGEFILE to your configure.ac instead.
93 2013-06-21 Miklos Szeredi <miklos@szeredi.hu>
95 * libfuse: set FD_CLOEXEC also when receiving device fd from
98 2013-06-20 Miklos Szeredi <miklos@szeredi.hu>
100 * libfuse: fix multiple close of device fd. Reported by Dan
103 2013-03-19 Miklos Szeredi <miklos@szeredi.hu>
105 * libfuse: fix thread cancel race. Exiting a worker my race with
106 cancelling that same worker. This caused a segmenation
107 fault. Reported and tested by Anatol Pomozov
109 2013-02-20 Miklos Szeredi <miklos@szeredi.hu>
111 * libfuse: change the type of fuse_ino_t from 'unsigned long' to
114 * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
115 Patch by Richard W.M. Jones
117 * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
118 Patch by Richard W.M. Jones
120 2013-02-19 Miklos Szeredi <miklos@szeredi.hu>
122 * fuse_daemonize(): chdir to "/" even if not running in the
123 background for consistency. Reported by Vladimir Rutsky
125 2013-02-18 Miklos Szeredi <miklos@szeredi.hu>
127 * fuse_opt_parse(): when storing a newly allocated string for
128 format "%s", free the previous value stored at that location.
129 Reported by Marco Schuster
131 2013-02-07 Miklos Szeredi <miklos@szeredi.hu>
133 * libfuse: add readdirplus support in fuse_lowlevel_ops. Patch by
136 * libfuse: add poll_events to fuse_file_info. Patch by Enke Chen
138 * libfuse: fix fs cleanup. Reported by Eric Wong
140 * libfuse: pass security context options to kernel. Patch by
143 * libfuse: remove deprecated features:
144 - fuse_is_lib_option()
146 - fuse_set_getcontext_func()
147 - fuse_loop_mt_proc()
153 - fuse_lowlevel_is_lib_option()
154 - fuse_operations.getdir()
155 - fuse_operations.utime()
156 - fuse_operations.utime_omit_ok
158 2013-02-06 Miklos Szeredi <miklos@szeredi.hu>
160 * libfuse: set close-on-exec flag on pipe file descriptors. Patch
163 * libfuse: add missing INIT flags
165 2013-02-05 Miklos Szeredi <miklos@szeredi.hu>
167 * libfuse: fix fuse_get_context() in non fuse threads. Reported
170 2013-02-04 Miklos Szeredi <miklos@szeredi.hu>
172 * libfuse: fix crash in unlock_path(). Patch by Ratna Manoj
174 * libfuse: fix the 'remember' option. The lru list was not
175 initialized for the "/" path. This resulted in remove_node_lru()
176 crashing on LOOKUP-DOTDOT. Patch by Madan Valluri
178 * libfuse: configure: detect new util-linux
180 * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
181 Patch by Anatol Pomozov
183 * libfuse: rename ./configure.in to ./configure.ac. Patch by
186 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
190 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
192 * Fix deadlock in libfuse. Running "svn update" on a fuse
193 filesystem could deadlock because of a bug in the way the paths
194 are locked. Reported by Kazuaki Anami
196 2012-08-23 Miklos Szeredi <miklos@szeredi.hu>
198 * Fix missing config.h in buffer.c. Reported by Matthew Gabeler-Lee
200 2012-08-14 Miklos Szeredi <miklos@szeredi.hu>
202 * Not unhashing the name in forget (commit on 2011-12-09) broke
203 the forget logic in a subtle way, resulting in "fuse internal
204 error: node NNN not found" and causing the filesystem daemon to
205 abort. Fix by incrementing the node refcount if nlookup goes from
206 zero to one. Reported by Kyle Lippincott
208 2012-08-13 Miklos Szeredi <miklos@szeredi.hu>
210 * Fix linking against GNU libiconv. Patch by Natanael Copa
212 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
214 * Start of 3.0 series. This is going to be a new major version of
215 the library breaking backward compatibility on the binary level as
216 well as the source level.
218 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
222 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
224 * Fix crash caused by freeing a stack address. Reported by Itay
227 2012-07-04 Miklos Szeredi <miklos@szeredi.hu>
229 * Fix install of mount.fuse from out-of-tree build. Patch by
232 * Fix build with automake >= 1.12.1. Patch by Olivier Blin
234 2012-04-24 Miklos Szeredi <miklos@szeredi.hu>
236 * Add fallocate operation. Only works on linux kernels 3.5 or
237 later. Patch by Anatol Pomozov
239 2012-05-16 Miklos Szeredi <miklos@szeredi.hu>
241 * Linking to a library that uses threads requires the application
242 to be linked with -pthreads otherwise some pthread functions will
243 be linked to stubs in glibc. So move -pthread from Libs.private
244 to Libs in fuse.pc. Reported by Werner Fink
246 * Fix the compile command in the examples. Reported by Luciano
249 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
253 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
255 * Add missing fuse_fs_flock to fuse_versionscript
257 2012-04-10 Miklos Szeredi <miklos@szeredi.hu>
259 * Check protocol version before sending notifications and return
260 -ENOSYS if a particular notification is not supported.
262 * Add 'flag_utime_omit_ok' flag to fuse_operations. If the
263 filesystem sets this flag then ->utimens() will receive UTIME_OMIT
264 and UTIME_NOW values as specified in utimensat(2).
266 2012-01-27 Miklos Szeredi <miklos@szeredi.hu>
268 * Interpret octal escape codes in options. Requested by Jan
271 2012-01-26 Miklos Szeredi <miklos@szeredi.hu>
273 * Add man pages for fusermount, mount.fuse and ulockmgr_server.
274 Lifted from the Debian package. The man pages were written by
275 Daniel Baumann and Bastien Roucaries
277 2012-01-13 Miklos Szeredi <miklos@szeredi.hu>
279 * Disable symbol versions on MacOSX. Patch by Anatol Pomozov
281 2012-01-02 Miklos Szeredi <miklos@szeredi.hu>
283 * Remove unnecessary mutex unlock at the end of multithreaded
286 2011-12-09 Miklos Szeredi <miklos@szeredi.hu>
288 * Fix hang in wait_on_path(). Reported by Ville Silventoinen
290 * Don't unhash name in FORGET. This resulted in ENOENT being
291 returned for unlinked but still open files if the kernel sent a
292 FORGET request for the parent directory.
294 * Free request in fuse_reply_data().
296 2011-12-08 Miklos Szeredi <miklos@szeredi.hu>
298 * Fix build if FUSE_NODE_SLAB is not defined. Patch by Emmanuel
301 * Check for availability of utimensat() function. Patch by
304 2011-12-07 Miklos Szeredi <miklos@szeredi.hu>
306 * Add fuse_lowlevel_notify_delete() which tells the kernel that a
307 file or directory is deleted. Patch by John Muir
309 2011-12-06 Miklos Szeredi <miklos@szeredi.hu>
311 * Update retrieve_reply() method
313 2011-12-05 Miklos Szeredi <miklos@szeredi.hu>
315 * Low level API: lock argument of fuse_reply_lock should have a
316 'const' qualifier. Reported by Shachar Sharon
318 * Add support for ioctl on directories. Reported by Antonio SJ
321 2011-10-13 Miklos Szeredi <miklos@szeredi.hu>
323 * Reply to request with ENOMEM in case of failure to allocate
324 request structure. Otherwise the task issuing the request will
325 just freeze up until the filesystem daemon is killed. Reported by
328 2011-09-23 Miklos Szeredi <miklos@szeredi.hu>
330 * Replace daemon() function with fork(). Patch by Anatol Pomozov
332 2011-08-26 Miklos Szeredi <miklos@szeredi.hu>
334 * If configured with --disable-mtab then don't call mount(8) from
335 libfuse to update the mtab. Reported by: James Sierp
337 2011-08-24 Miklos Szeredi <miklos@szeredi.hu>
339 * Use LRU list for cleaning up the cache if the "remember=T"
340 option was given. Patch by therealneworld@gmail.com
342 2011-07-06 Miklos Szeredi <miklos@szeredi.hu>
344 * Add ->flock() operation to low and high level interfaces. This
345 fixes problems with emulating flock() with POSIX locking.
346 Reported by Sebastian Pipping. As with lock/setlk/getlk most
347 filesystems don't need to implement this, as the kernel takes care
348 of file locking. The only reason to implement locking operations
349 is for network filesystems which want file locking to work between
352 2011-07-02 Sebastian Pipping <sebastian@pipping.org>
354 * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
355 not follow symlinks as other layers do that already.
357 2011-06-02 Miklos Szeredi <miklos@szeredi.hu>
359 * Add "remember" option. This works similar to "noforget" except
360 that eventually the node will be allowed to expire from the cache.
361 Patch by therealneworld@gmail.com
363 2011-05-27 Miklos Szeredi <miklos@szeredi.hu>
365 * Check if splice/vmsplice are supported
367 2011-05-26 Miklos Szeredi <miklos@szeredi.hu>
369 * Remove -lrt -ldl from fuse.pc for dynamic linking since
370 libfuse.so is already linked with these libraries. Reported by:
373 2011-05-20 Miklos Szeredi <miklos@szeredi.hu>
375 * Cleaner build output. Patch by Reuben Hawkins
377 2011-05-19 Miklos Szeredi <miklos@szeredi.hu>
379 * Disable splice by default, add "splice_read", "splice_write" and
380 "splice_move" options. Keep the "no_splice_*" variants, which can
381 disable splice even if the filesystem explicitly enables it.
383 2011-04-15 Max Krasnyansky <maxk@kernel.org>
384 * Added support for "auto_unmount" option which unmounts the
385 filesystem automatically on process exit (or crash).
387 2011-03-30 Miklos Szeredi <miklos@szeredi.hu>
389 * Patches by Laszlo Papp fixing various issues found by the
392 2011-03-11 Miklos Szeredi <miklos@szeredi.hu>
394 * In case of failure to add to /etc/mtab don't umount. Reported
397 2011-02-02 Miklos Szeredi <miklos@szeredi.hu>
399 * libfuse: In fuse_session_loop_mt() don't pause when exiting the
400 worker threads. The pause() was added in 2.2.1 to prevent
401 segfault on pthread_cancel() on an exited, detached thread. Now
402 worker threads are not detached and pthread_cancel() should work
403 fine even after the thread exited. Reported by Boris Protopopov
405 2011-01-31 Miklos Szeredi <miklos@szeredi.hu>
407 * fusermount: chdir to / before performing mount/umount
409 * fusermount: only allow mount and umount if util-linux supports
412 2010-12-16 Miklos Szeredi <miklos@szeredi.hu>
414 * Highlevel lib: allow hash tables to shrink
416 * Highlevel lib: add slab allocation for node cache. This will
417 allow the memory used by the filesystem to grow and shrink
418 depending on how many inodes are currently cached.
420 2010-12-13 Miklos Szeredi <miklos@szeredi.hu>
422 * Highlevel lib: use dynamically resized hash table for looking up
425 2010-12-07 Miklos Szeredi <miklos@szeredi.hu>
427 * Allow batching of forget requests. This allows forget requests
428 to be processed faster and doesn't require a modification to fuse
429 filesystems. Reported by Terje Malmedal
431 * Add ->forget_multi() operation to the lowlevel API. The
432 filesystem may implement this to process multiple forget requests
435 * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
436 for 32bit vs. 64bit userspace
438 2010-11-10 Miklos Szeredi <miklos@szeredi.hu>
440 * Add new write_buf() method to the highlevel API. Similarly to
441 the lowlevel write_buf() method, this allows implementing zero
444 * Add a new read_buf() method to the highlevel API. This allows
445 returning a generic buffer from the read method, which in turn
446 allows zero copy reads.
448 * In fusexmp_fh implement the ->read_buf() and ->write_buf()
449 methods. Leave the ->read() and ->write() implementations for
450 reference, even though they are not necessary.
452 2010-11-08 Miklos Szeredi <miklos@szeredi.hu>
454 * Fix check for read-only fs in mtab update
456 * Open /dev/null for write instead of read for redirecting stdout
459 * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
460 version 2.18 or later), and umount(2) supports the
461 UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then,
462 "fusermount -u" will call the umount(2) system call and use
463 "umount --fake ..." to update /etc/mtab
465 * Added --disable-legacy-umount option to configure. This
466 disables the runtime checking of umount(8) version. When built
467 with this option then "fusermount -u" will fail if umount(8)
468 doesn't support the --fake and --no-canonicalize options.
470 * Fix fuse_buf_copy() if already at the end of the buffers
472 * Add new ->write_buf() method to low level interface. This
473 allows passig a generic buffer, either containing a memory buffer
474 or a file descriptor. This allows implementing zero copy writes.
476 * Add fuse_session_receive_buf() and fuse_session_process_buf()
477 which may be used in event loop implementations to replace
478 fuse_chan_recv() and fuse_session_process() respectively.
480 * Remove unnecessary restoring of current working directory in
483 * Add ctx->pid to debug output
485 * Fix st_nlink value in high level lib if file is unlinked but
488 * libfuse: add store request. Request data to be stored in the
489 kernel buffers for a given inode.
491 * libfuse: add retrieve request. Retrieve data stored in the
492 kernel buffers for a given inode.
494 2010-10-14 Miklos Szeredi <miklos@szeredi.hu>
496 * Use LTLIBICONV when linking libfuse. This fixes building against
497 uclibc + libiconv. Patch by Natanael Copa
499 2010-10-05 Miklos Szeredi <miklos@szeredi.hu>
501 * Add missing argument check in ulockmgr.c to prevent calling
502 ulockmgr_server with illegal arguments. This would cause an ever
503 growing list of ulockmgr_server processes with an endless list of
504 open files which finally exceeds the open file handle limit.
505 Patch by Markus Ammer
507 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
509 * Fix ambiguous symbol version for fuse_chan_new.
510 fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
511 FUSE_2.6. Remove the FUSE_2.4, which is invalid.
513 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
515 * Fix option escaping for fusermount. If the "fsname=" option
516 contained a comma then the option parser in fusermount was
517 confused (Novell bugzilla #641480). Fix by escaping commas when
518 passing them over to fusermount. Reported by Jan Engelhardt
520 2010-08-27 Miklos Szeredi <miklos@szeredi.hu>
522 * Add NetBSD support. Patch from Emmanuel Dreyfus
524 2010-07-12 Miklos Szeredi <miklos@szeredi.hu>
526 * libfuse: add buffer interface. Add a generic buffer interface
527 for use with I/O. Buffer vectors are supplied and each buffer in
528 the vector may be a memory pointer or a file descriptor.
530 * The fuse_reply_fd() interface is converted to using buffers.
532 2010-06-23 Miklos Szeredi <miklos@szeredi.hu>
534 * Make the number of max background requests and congestion
535 threshold tunable. New options are "max_background" and
536 "congestion_threshold". Only effective on linux kernel versions
537 2.6.32 or greater. Patch by Csaba Henk
539 2010-06-17 Miklos Szeredi <miklos@szeredi.hu>
541 * Add fuse_reply_fd() reply function to the low level interface.
542 On linux version 2.6.35 or greater this will use splice() to move
543 data directly from a file descriptor to the fuse device without
544 needing to go though a userspace buffer. With the
545 FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
546 directly into the filesystem's cache. On earlier kernels it will
547 fall back to an intermediate buffer. The options
548 "no_splice_write" and "no_splice_move" can be used to disable
549 splicing and moving respectively.
551 2010-06-15 Miklos Szeredi <miklos@szeredi.hu>
553 * Fix out-of-source build. Patch by Jörg Faschingbauer
555 * Add a "nopath" option and flag, indicating that path argument
556 need not be calculated for the following operations: read, write,
557 flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
558 fgetattr, lock, ioctl and poll.
560 2010-05-10 Miklos Szeredi <miklos@szeredi.hu>
562 * Remove "chmod root" from install of fusermount. Reported by
565 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
569 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
571 * Fix checking for symlinks in umount from /tmp. Reported by Al
574 * Fix umounting if /tmp is a symlink. Reported by Franco Broi
576 2010-02-18 Miklos Szeredi <miklos@szeredi.hu>
578 * Fix definition of FUSE_OPT_END for C++. Reported by Tim
581 2010-02-03 Miklos Szeredi <miklos@szeredi.hu>
583 * Fix stack alignment for clone()
585 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
589 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
591 * Using "--no-canonicalize" with umount(8) conflicts with the race
592 fix, sinceit assumes the supplied path is absolute, while the race
593 fix relies on the path being relative to the current directory.
594 Reported by Tom Rindborg
596 2010-01-26 Miklos Szeredi <miklos@szeredi.hu>
600 2010-01-21 Miklos Szeredi <miklos@szeredi.hu>
602 * Fix race if two "fusermount -u" instances are run in parallel.
603 Reported by Dan Rosenberg
605 * Make sure that the path to be unmounted doesn't refer to a
608 2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
610 * Fix compile error on FreeBSD. Patch by Jay Sullivan
612 2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
614 * Use '--no-canonicalize' option of mount(8) (available in
615 util-linux-ng version 2.17 or greater) to avoid calling
616 readling(2) on the newly mounted filesystem before the mount
617 procedure is finished. This has caused a deadlock if "audit" was
618 enabled in the kernel. Also use '--no-canonicalize' for umount to
619 avoid touching the mounted filesystem.
621 2009-09-11 Miklos Szeredi <miklos@szeredi.hu>
625 2009-08-25 Miklos Szeredi <miklos@szeredi.hu>
627 * Fix missing versioned symbol fuse_get_context@FUSE_2.2
629 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
633 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
635 * Add missing fuse_session_data to versionscript
637 * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
639 2009-07-16 Miklos Szeredi <miklos@szeredi.hu>
641 * Clarify how the protocol version should be negotiated between
642 kernel and userspace. Notably libfuse didn't correctly handle the
643 case when the supported major versions didn't match
645 * Add missing pthread link for libulockmgr. Patch by Petr Salinger
647 2009-07-02 Miklos Szeredi <miklos@szeredi.hu>
649 * The context is extended with a 'umask' field. The umask is sent
650 for mknod, mkdir and create requests by linux kernel version
651 2.6.31 or later, otherwise the umask is set to zero. Also
652 introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel
653 supports this feature, then this flag will be set in conn->capable
654 in the ->init() method. If the filesystem sets this flag in in
655 conn->want, then the create modes will not be masked.
657 * Add low level interfaces for lookup cache and attribute
658 invalidation. This feature is available in linux kernels 2.6.31
659 or later. Patch by John Muir
661 * Kernel interface version is now 7.12
663 * fusermount: Do not silently ignore command line arguments.
664 Patch by Sebastian Harl
666 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
668 * Released 2.8.0-pre3
670 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
672 * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
673 level lib) functions to query the supplementary group IDs for the
674 current request. Currently this is implemented on Linux by
675 reading from the /proc filesystem.
677 2009-06-18 Miklos Szeredi <miklos@szeredi.hu>
679 * Add "noforget" option to high level lib to prevent ESTALE errors
680 on NFS exported filesystems. This result in paths being cached
681 forever, resulting in ever growing memory usage. Use with care.
683 * Add "no_remote_lock" option to disable remote file locking even
684 if the filesystem implements it. With this option locking
685 primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
686 will ignore remotely locked files.
688 * CUSE patches from Tejun Heo:
690 * Unrestricted ioctl support left some debris. Clean them up:
691 o No reason to pass around pointer to flags. Pass flags directly.
692 o Clean up comment and prototype parameter names.
693 o fuse_lib_ioctl() didn't reply when get_path() failed. Fix it.
694 o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
696 * Add fuse_reply_ioctl_iov()
698 * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
699 and make send_reply_iov() and fuse_setup_common() global (also in
700 fuse_i.h). These will be used by CUSE support.
702 * Restructure fuse_ll_process()
704 * Implement libfuse side of CUSE support. CUSE uses subset of FUSE
705 operations as dir operations don't make sense for CUSE where one
706 instance implements single character device.
708 CUSE support comes with its own cuse_lowevel_ops and related
709 initialization and helper functions. Except for initialization, it
710 usage is basically identical to FUSE.
712 This patch also adds example/cusexmp.c which can create a character
713 device with name and device number specified on command line. The
714 created device itself is pretty boring. It's a bit bucket supporting
715 read, write and access via ioctl.
717 2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
719 * Add missing fuse_reply_bmap to versionscript. Debian
720 Bug#531329. Reported by Goswin Brederlow
722 2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
724 * Don't call forget_node() if the lookup was negative and write()
725 for the reply returned ENOENT. Reported by John Haxby
727 2009-05-25 Miklos Szeredi <miklos@szeredi.hu>
729 * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
731 2009-05-08 Miklos Szeredi <miklos@szeredi.hu>
733 * Fix missing newlines in some printfs
735 * Fix 'make install-strip'. Reported by Dominick Layfield
737 2009-01-05 Miklos Szeredi <miklos@szeredi.hu>
739 * Released 2.8.0-pre2
741 2008-12-08 Miklos Szeredi <miklos@szeredi.hu>
743 * Implement poll support. Patch by Tejun Heo
745 * Add missing setattr flags to <fuse_lowlevel.h>.
747 * Only pass valid flags to ->setattr().
749 2008-12-05 Miklos Szeredi <miklos@szeredi.hu>
751 * Implement ioctl support. On high level interface only
752 "restricted" ioctls are supported (which are defined with the
753 _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls
754 will only be allwed to CUSE (Character Device in Userspace)
755 servers. Patch by Tejun Heo
757 2008-11-28 Miklos Szeredi <miklos@szeredi.hu>
759 * If open sets fi->nonseekable, libfuse will tell the kernel that
760 the file is not seekable. Patch by Tejun Heo
762 2008-11-19 Miklos Szeredi <miklos@szeredi.hu>
764 * lowlevel lib: fix deadlock if fuse_reply_* is called from the
765 interrupt handling function. Reported by Tero Marttila
767 2008-10-16 Miklos Szeredi <miklos@szeredi.hu>
769 * Allow commas in options to be escaped with a backslash
771 * Add new function: fuse_opt_add_opt_escaped()
773 * Add missing fuse_reply_bmap() to the version script
775 2008-10-14 Miklos Szeredi <miklos@szeredi.hu>
777 * Pass current file flags to read and write operations
779 2008-07-24 Miklos Szeredi <miklos@szeredi.hu>
781 * Clean up debug output in highlevel lib
783 2008-07-10 Miklos Szeredi <miklos@szeredi.hu>
785 * Released 2.8.0-pre1
787 2008-06-27 Miklos Szeredi <miklos@szeredi.hu>
789 * Fix handling of (no)suid and (no)dev options if filesystem is
790 mounted from /etc/fstab or via mount(8). Reported by Jan Ondrej.
792 * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
793 read-only filesystem. This works around issues with certain mount
794 implementations. Reported by Szabolcs Szakacsits.
796 2008-06-16 Miklos Szeredi <miklos@szeredi.hu>
798 * Remove fuse kernel module sources. Linux 2.6.27 will support
801 2008-06-10 Miklos Szeredi <miklos@szeredi.hu>
803 * Fix theoretical infinite loops in libfuse. Reported by Szabolcs
806 * Fix missing <sys/param.h> include for PATH_MAX. Reported by
809 2008-05-23 Miklos Szeredi <miklos@szeredi.hu>
811 * Fix mounting over symlink. Reported by Szabolcs Szakacsits
813 2008-05-09 Miklos Szeredi <miklos@szeredi.hu>
815 * Don't allow bigger than 4kB writes by default on 2.6.26 and
816 later kernels, so that filesystems not expecting this are not
817 broken on a kernel upgrade. Provide a 'big_writes' mount option
818 to enable this feature. In future API revisions this may become
821 2008-04-09 Miklos Szeredi <miklos@szeredi.hu>
823 * Update warning message for missing newline at end of fuse.conf
825 * Update debug message for successful operation to not include the
828 2008-04-08 Miklos Szeredi <miklos@szeredi.hu>
830 * Update error message for missing mountpoint parameter. Reported
833 2008-04-04 Miklos Szeredi <miklos@szeredi.hu>
835 * Print library version information to debug output
837 * Highlevel lib: don't limit paths to 4095 characters
839 2008-03-25 Miklos Szeredi <miklos@szeredi.hu>
841 * Fix memory leaks on mount. Patch by Szabolcs Szakacsits
843 2008-03-19 Miklos Szeredi <miklos@szeredi.hu>
845 * Fix missing pthread_mutex_destroy in error path of
846 fuse_lib_opendir(). Patch by Szabolcs Szakacsits
848 2008-03-07 Miklos Szeredi <miklos@szeredi.hu>
850 * Add queuing on contention to per-node lock algorithm, to avoid
853 * Only enable cancelation when reading a request, otherwise
854 cancellation could happen with a mutex held, which could hang the
857 2008-02-08 Miklos Szeredi <miklos@szeredi.hu>
859 * Block SIGCHLD when executing mount and umount
861 * fusexmp_fh: avoid unnecessary seeking in readdir
863 * Update kernel interface to 7.9:
865 * Support receiving file handle from kernel in GETATTR request
867 * Allow operations with a NULL path argument, if the filesystem
870 * Add support atomic open(O_TRUNC)
872 * Support the st_blksize field in struct stat
874 * If the "FUSE_THREAD_STACK" environment is set, initialize the
875 stack size of threads by this value. Patch by Florin Malita
877 * Add per-node locking, instead of a global tree lock to protect
878 the path from changing during operations. Original patch by
881 2008-02-03 Csaba Henk <csaba.henk@creo.hu>
884 - string formatting fixes
885 - exit if mounting has failed
886 (in FreeBSD a mount failure is not critical per se, as the daemon
887 still could be mounted externally, but waiting for such an event
888 is more confusing than fruitful)
889 - ditch the kvm(8) stuff and simply use forced unmount which just
891 - prettify option specifications
892 - add "-onosync_unmount" kernel option
894 2008-01-07 Csaba Henk <csaba.henk@creo.hu>
897 - refine device closing in a race-free way
898 - add support for "-osubtype" on FreeBSD
900 * makeconf.sh: make it work under FreeBSD
902 2008-01-03 Csaba Henk <csaba.henk@creo.hu>
904 * lib/mount_bsd.c: close device before unmount
905 (cf. lib/mount.c rev. 1.43) and fix some warnings
907 2007-12-23 Miklos Szeredi <miklos@szeredi.hu>
909 * Fix './configure --disable-static'. Patch from Ismail Dönmez
911 2007-12-17 Miklos Szeredi <miklos@szeredi.hu>
915 2007-12-12 Miklos Szeredi <miklos@szeredi.hu>
917 * Fix kernel module compile for 2.6.24
919 * Invalidate attributes of parent directory after create(), since
920 the modification time changes. Invalidate attributes on rename,
921 since some filesystems may update st_ctime. Reported by Szabolcs
924 * Fix NFS exporting to handle 64bit node IDs
926 * Disable old symbol versions if __UCLIBC__ is defined. If a
927 symbol in a library has multiple versions, the runtime linker in
928 uClibc seems to randomly choose between them.
930 * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
931 fuse_version_script. fuse_opt_free_args() was added in fuse-2.6.
933 * Close fuse device file descriptor before calling umount(),
934 preventing a deadlock when umount is synchronous. Reported by
937 2007-11-12 Miklos Szeredi <miklos@szeredi.hu>
939 * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
940 symlink. This bug was introduced in 2.7.1 by "Don't call
941 /bin/[u]mount if /etc/mtab is a symlink". Found by robertsong.
943 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
947 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
949 * Clarify licence version to be "LGPLv2" for the library
953 * After mount set nlink attribute for the root inode to 1
955 * Fix wake up of task waiting for a reserved request
957 * Fix allowing setattr, listxattr and statfs for other users
959 2007-09-18 Miklos Szeredi <miklos@szeredi.hu>
961 * Add missing context initialization in fuse_fs_chmod(). Bug
964 * Fix kernel module compilation for 2.6.23. Based on patch by
967 2007-09-04 Philippe Elie <phil.el@wanadoo.fr>
969 * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
971 2007-07-31 Miklos Szeredi <miklos@szeredi.hu>
973 * Work around hotplug issue, that it calls filesystem with file
974 descriptors 0, 1 and 2 not open. Tracked down by Leif Johnson
976 2007-07-25 Miklos Szeredi <miklos@szeredi.hu>
978 * Don't call /bin/[u]mount if /etc/mtab is a symlink. Reported by
981 * Also don't touch /etc/mtab if it is within the mounted
982 filesystem. Suggested by Jeffrey Law
984 2007-07-12 Miklos Szeredi <miklos@szeredi.hu>
986 * Reset args->argc in fuse_opt_free_args(). Patch by Lucas
989 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
993 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
995 * Accept a NULL "op" for fuse_main(), etc. This is useful if
996 filesystem is only invoking fuse to print a help message, or
997 version. Fixes RedHat bugzilla #217343
999 2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
1001 * lib: fix locking when loading a filesystem module
1003 2007-06-21 Miklos Szeredi <miklos@szeredi.hu>
1005 * Add fs subtype support to mount.fuse
1007 2007-06-20 Miklos Szeredi <miklos@szeredi.hu>
1009 * Add fs subtype support to libfuse and fusermount
1011 2007-06-19 Miklos Szeredi <miklos@szeredi.hu>
1013 * kernel: sync with mainline (2.6.22)
1015 2007-06-18 Miklos Szeredi <miklos@szeredi.hu>
1017 * Send debug output to stderr instead of stdout. Patch by Jan
1020 2007-06-03 Miklos Szeredi <miklos@szeredi.hu>
1022 * libulockmgr: Work around a kernel bug in recv(), causing it to
1023 sometimes return zero even if data was available on the socket.
1025 2007-05-29 Miklos Szeredi <miklos@szeredi.hu>
1027 * lib: optimization: store parent pointer in node instead of
1030 2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
1032 * lib: don't create new thread for each FORGET request. FORGET
1033 messages sometimes caused so many threads to be created, that
1034 process virtual memory space ran out. Reported by Chris AtLee
1036 2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
1038 * lib: fix memory leak on thread creation failure in multithreaded
1039 event loop. Found by Chris AtLee
1041 2007-05-23 Miklos Szeredi <miklos@szeredi.hu>
1043 * lowlevel lib: add fuse_reply_iov function, which is similar to
1044 fuse_reply_buf, but accepts a vector of buffers. Patch by Roger
1047 2007-05-21 Miklos Szeredi <miklos@szeredi.hu>
1049 * Fix Oops or error if a regular file is created with mknod(2) on
1050 a fuse filesystem. Kernels 2.6.18 onward are affected. Thanks to
1051 J. Cameijo Cerdeira for the report
1053 2007-05-11 Csaba Henk <csaba.henk@creo.hu>
1055 * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1056 Error reported by Csaba Henk, fix by Miklos Szeredi
1058 * libfuse: fix unlock in flush
1060 * libfuse: do unlocking on RELEASE+FLUSH
1062 2007-05-03 Miklos Szeredi <miklos@szeredi.hu>
1064 * Released 2.7.0-rc1
1066 2007-05-02 Miklos Szeredi <miklos@szeredi.hu>
1068 * kernel: sync with mainline:
1070 * Use invalidate_mapping_pages() if available
1072 * Fix BUG when invalid file type is supplied in mount. Patch by
1075 2007-04-27 Miklos Szeredi <miklos@szeredi.hu>
1077 * libfuse: call umount(8) directly instead of fusermount if
1080 * Clean up init script, make it LSB compliant
1082 2007-04-26 Miklos Szeredi <miklos@szeredi.hu>
1084 * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1085 up the main thread on umount. This is more elegant, and works
1086 even if signals are blocked.
1088 2007-04-25 Miklos Szeredi <miklos@szeredi.hu>
1090 * Improve mounting support in libfuse:
1091 - check non-empty mountpoint
1092 - only fall back to fusermount when necessary
1094 2007-04-23 Miklos Szeredi <miklos@szeredi.hu>
1096 * Don't chdir to "/" in foreground mode, it causes more trouble
1099 2007-04-18 Miklos Szeredi <miklos@szeredi.hu>
1101 * Replace utils/mount.fuse "sh" script with a "C" program
1103 2007-04-15 Miklos Szeredi <miklos@szeredi.hu>
1105 * Add -lulockmgr to compilation comment in fusexmp_fh.c
1107 2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
1109 * Check for iconv. Patch by Csaba Henk
1111 * Add direct umounting
1113 * Use "fusectl" as the device for the fusectl filesystem. Debian
1114 Bug#417945. Reported by Laurent Bonnaud
1116 2007-04-01 Csaba Henk <csaba.henk@creo.hu>
1118 * Fix some FreeBSD related macros.
1120 2007-03-30 Miklos Szeredi <miklos@szeredi.hu>
1122 * Add support for direct mounting by libfuse. Fall back on
1123 calling fusermount if it doesn't work
1125 2007-03-14 Miklos Szeredi <miklos@szeredi.hu>
1127 * Released 2.7.0-pre1
1129 2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
1131 * Correctly handle O_APPEND in direct IO mode. Reported by Greg
1134 * mount.fuse should use /bin/bash. Debian Bug#413403. Reported
1135 by Thomas Weinbrenner
1137 2007-02-26 Miklos Szeredi <miklos@szeredi.hu>
1139 * Fix detection of installed fuse in init script. Reported and
1140 fix suggested by Davide Canova
1142 2007-02-05 Miklos Szeredi <miklos@szeredi.hu>
1144 * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1145 don't define mutex_destroy(), bummer. Patch from Phil Schwan
1147 2007-02-04 Miklos Szeredi <miklos@szeredi.hu>
1149 * Compile fuseblk for kernels which don't have an option to turn
1150 off the block layer (CONFIG_BLOCK). Reported by Szakacsits
1153 2007-02-03 Miklos Szeredi <miklos@szeredi.hu>
1155 * Add filesystem stacking support to high level API. Filesystem
1156 modules can be built into libfuse or loaded from shared object
1159 * Add 'subdir' and 'iconv' built in modules
1161 * lib/fuse.c: Fix locking for the reply code in create and open
1163 2007-02-02 Miklos Szeredi <miklos@szeredi.hu>
1165 * kernel: make it compile on "strange" kernels which have emulated
1166 mutexes via <linux/mutex.h> but no i_mutex. Reported by Tomasz
1169 2007-01-28 Miklos Szeredi <miklos@szeredi.hu>
1171 * kernel: fix BUG in control filesystem if it is umounted and
1172 mounted again, while some fuse filesystems are present.
1173 Bugreport from Florent Mertens
1175 * kernel: sync with mainline, support 2.6.20
1177 2007-01-22 Miklos Szeredi <miklos@szeredi.hu>
1179 * lib/Makefile.am: actually link libfuse against libfuse_libs
1181 2007-01-19 Miklos Szeredi <miklos@szeredi.hu>
1183 * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels. Patch from
1186 2007-01-18 Miklos Szeredi <miklos@szeredi.hu>
1188 * Fix abort in fuse_new() compatibility API for opts == NULL case.
1189 Novell bugzilla #233870. Patch from Takashi Iwai.
1191 2007-01-13 Miklos Szeredi <miklos@szeredi.hu>
1193 * Fix option parsing in mount.fuse. Patch from Jens M. Noedler
1195 2007-01-02 Miklos Szeredi <miklos@szeredi.hu>
1197 * Fix unaligned access in file desctriptor passing in libfuse,
1198 fusermount and ulockmgr. Debian bug ID: 404904. Reported and
1199 tested by Sebastian Fontius
1201 2006-12-16 Miklos Szeredi <miklos@szeredi.hu>
1203 * kernel: don't keep unreferenced inodes in the icache.
1205 2006-12-15 Miklos Szeredi <miklos@szeredi.hu>
1207 * fusermount: Fix detection of fuseblk. Reported by Szakacsits
1210 * lib: Fix use after free in fuse_flush(). Reported by Ron
1213 2006-12-10 Miklos Szeredi <miklos@szeredi.hu>
1215 * mount.fuse: add "setuid=USER" option which does a "su - USER"
1218 * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1219 "/bin/umount" to remove entry from /etc/mtab. This gets rid of
1220 the ugly code dealing with mtab, as well as a possible race
1221 between fusermount and mount trying to modify /etc/mtab at the
1224 * Fix "buffer size too small: 4" warning for users of the
1225 fuse_loop_mt_proc() function.
1227 2006-12-04 Miklos Szeredi <miklos@szeredi.hu>
1229 * Fix warnings with gcc-4.1 on 64bit archs. Report from
1232 * Add extra warning options, and fix resulting warnings
1234 * Really fix fuse_teardown problem
1236 2006-12-02 Miklos Szeredi <miklos@szeredi.hu>
1238 * Add -lrt to fuse.pc (if needed) to fix static linking against
1239 libfuse. Reported by Szakacsits Szabolcs
1241 2006-12-01 Miklos Szeredi <miklos@szeredi.hu>
1245 2006-11-30 Miklos Szeredi <miklos@szeredi.hu>
1247 * Fix API version 21 and 22 compatibility for fuse_teardown.
1250 2006-11-29 Miklos Szeredi <miklos@szeredi.hu>
1252 * fusermount: Print a more helpful message in case the kernel
1253 doesn't support the 'fuseblk' filesystem type. This has been
1254 biting ntfs-3g users. Reported by Yura Pakhuchiy
1256 * kernel: fix build problem for "make -C ...". Reported by
1259 2006-11-19 Miklos Szeredi <miklos@szeredi.hu>
1261 * Fix bug in certain error paths of lookup routines. The request
1262 object was reused for sending FORGET, which is illegal. This bug
1263 could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1264 silently corrupt memory in earlier versions. Report and test
1267 2006-11-11 Miklos Szeredi <miklos@szeredi.hu>
1269 * Print an error if an incompatible kernel interface version is
1270 detected in INIT. This will only show if filesystem is started
1273 * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1274 fuse_setup_common(). Reported by Szakacsits Szabolcs
1276 2006-11-06 Miklos Szeredi <miklos@szeredi.hu>
1278 * Fix recursive locking in fuse_create(). Thanks to Takuya
1279 Ishibashi for the bug report
1281 2006-10-28 Miklos Szeredi <miklos@szeredi.hu>
1283 * Fix automake problem. Patch from Nix
1285 2006-10-26 Miklos Szeredi <miklos@szeredi.hu>
1287 * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1288 always available on embedded systems. Patch from Paul Smith
1290 * Fix util/Makefile.am, so that failure to run update-rc.d or
1291 device creation doesn't cause make to fail. Reported by Paul
1294 2006-10-21 Miklos Szeredi <miklos@szeredi.hu>
1298 2006-10-18 Miklos Szeredi <miklos@szeredi.hu>
1300 * fusermount: don't try to create a lock file if /etc/mtab is a
1301 symlink. Report and patch from Alexei Sheplyakov (debian bug
1304 2006-10-17 Miklos Szeredi <miklos@szeredi.hu>
1306 * Minor changes, sync with mainline tree
1308 2006-10-16 Miklos Szeredi <miklos@szeredi.hu>
1310 * Released 2.6.0-rc3
1312 2006-10-15 Miklos Szeredi <miklos@szeredi.hu>
1316 2006-10-13 Miklos Szeredi <miklos@szeredi.hu>
1318 * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1319 Report from David Shaw
1321 * lib: Fix lost error on renaming a file. Report from David Shaw
1323 * lib: Fix lost error on hiding open files (renaming to
1326 * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1327 activity. The cause of the bug was that some calls to
1328 i_size_write() were not protected by a lock, and hence
1329 i_size_seqcount could become corrupted. This caused subsequent
1330 calls to i_size_read() to spin forever. This is a long standing
1331 bug was probably introduced in version 2.2, and thought to be
1332 related to NFS exporting (it's not). It was reported by various
1333 people, but Dana Henriksen has finally helped me to track it down,
1334 so big thanks to him
1336 * kernel: Protect against truncation of a swapfile
1338 2006-10-10 Miklos Szeredi <miklos@szeredi.hu>
1340 * kernel: Check for signature of super_operations->umount_begin().
1341 Ubuntu kernel 2.6.17 seems to use the new signature found in
1342 2.6.18. Thanks to Florent Mertens for the report
1344 2006-10-08 Miklos Szeredi <miklos@szeredi.hu>
1346 * Make sure inode numers wrap around at 2^32. This is needed on
1347 dual 64bit/32bit architectures, because 32bit applications using
1348 the non-largefile interface would otherwise break (EOVERFLOW error
1349 would be returned by the stat() system call family)
1351 * ulockmgr: handle the case, when a locking operation fails
1352 because no more file desctriptors are available in
1353 ulockmgr_server. Also work around a Linux kernel bug (known to
1354 exist for all Linux kernel versions <= 2.6.18) which may cause
1355 sent file descriptors to be lost in the above case
1357 * ulockmgr: optimize file descriptor use
1359 * restore needed cpp flags to util/Makefile.am
1361 * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1363 * Minor clean up of udev rules
1365 * Add a synchronous DESTROY message to kernel interface. This is
1366 invoked from umount, when the final instance of the filesystem is
1367 released. It is only sent for filesystems mounted with the
1368 'blkdev' option for security reasons.
1370 * If the DESTROY message is received, call the filesystem's
1371 ->destroy() method. In this case it's not called from session
1372 destruction as it would be otherwise.
1374 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1376 * Released 2.6.0-rc2
1378 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1380 * Add support for FLUSH+RELEASE operation for FreeBSD. Original
1383 * Add init script to insert fuse module and mount the control
1384 filesystem. The script is installed as /etc/init.d/fuse and on
1385 debian based systems (where update-rc.d is available) symlinks
1386 from /etc/rc*.d/ are also installed.
1388 * Include '#define FUSE_USE_VERSION=XX' into examples so they
1389 become more self contained.
1391 2006-09-30 Miklos Szeredi <miklos@szeredi.hu>
1395 * Move lock_owner from a separate argument into fuse_file_info
1397 * Add a flag to fuse_file_info indicating (1) a highlevel lock
1398 operation (unlock all) was initiated by a flush, (2) a lowlevel
1399 release operation should perform a flush as well.
1401 * fusermount: revert modprobe change (2006-08-18) since it
1402 doesn't work reliably with udev
1404 * Add support for block device backed filesystems. This mode is
1405 selected with the 'blkdev' option, which is privileged.
1407 * Add support for the bmap (FIBMAP ioctl) operation on block
1408 device backed filesystems. This allows swapon and lilo to work on
1413 * Drop support for kernels earlier than 2.6.9. Kernel module from
1414 previous (2.5.x) release can be used with library from this
1417 * In fuse_dentry_revalidate() use dget_parent() instead of
1418 dereferencing d_parent, since there's no protection against parent
1419 changing and going away
1421 * Protect nlookup from concurrent updates
1423 * In lookup if a directory alias exists but is unused,
1424 then get rid of it, otherwise return -EBUSY.
1426 * In mkdir if a directory alias exists, return success, but leave
1427 dentry negative. In reality this could happen if a remote rename
1428 immediately followed the mkdir.
1430 * Don't BUG in fuse_iget() if multiple retries are needed to get a
1431 good inode. This could happen if several lookups are racing for
1434 2006-09-29 Miklos Szeredi <miklos@szeredi.hu>
1436 * Fix compilation on 2.6.9. Report from Troy Ayers
1438 2006-09-27 Miklos Szeredi <miklos@szeredi.hu>
1440 * Fix Oops in fuse_readpages(). Reported by David Shaw
1442 2006-09-24 Csaba Henk <csaba.henk@creo.hu>
1444 * Add support for nanosec times on FreeBSD
1446 * Fix FreeBSD compatibility issues
1448 2006-09-23 Miklos Szeredi <miklos@szeredi.hu>
1450 * Fix one more compatibility bug. Thanks to Ricardo Correia
1452 * Fix utimens compilation with uClibc. Patch from Jamie Guinan
1454 2006-09-22 Miklos Szeredi <miklos@szeredi.hu>
1456 * Fixed several compatibility bugs in low level interface.
1457 Reported by Ricardo Correia
1459 * Add workaround for ARM caching bug
1461 2006-09-16 Miklos Szeredi <miklos@szeredi.hu>
1463 * Rename new utimes() method to more logical utimens()
1465 2006-09-14 Miklos Szeredi <miklos@szeredi.hu>
1467 * Fuse tried to unlink already unlinked hidden files. Bug
1468 reported by Milan Svoboda
1470 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1472 * Released 2.6.0-rc1
1474 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1476 * kernel: Fix unlock on close for kernels < 2.6.18
1478 * Add ulockmgr library & server. This can be used for handling
1479 file locking requests either directly from libfuse or over a
1480 network, etc. This first version is not optimized and the number
1481 of file descriptors it uses may get out of hand
1483 2006-09-07 Miklos Szeredi <miklos@szeredi.hu>
1485 * lib: Add interrupt support to high level library, which may be
1486 enabled with the 'intr' mount option.
1488 * When an operation is interrupted the thread handling that
1489 operation will receive SIGUSR1 (or other signal specified with the
1490 'intr_signal=N' option). The library installs a no-op signal
1491 handler for this signal, unless there's already a handler
1494 * The filesystem may query interrupt status (regardless of 'intr')
1495 with the fuse_interrupted() function.
1497 * mount.fuse: initialize $HOME if not set. Report from Sven Goldt
1499 2006-09-03 Miklos Szeredi <miklos@szeredi.hu>
1501 * lib: Multithreaded loop now allows unlimited number of threads.
1502 This is needed for locking operations which may block
1503 indefinitely. Also the kernel now doesn't limit the number of
1504 outstanding requests so the library shouldn't do so either.
1506 2006-09-01 Miklos Szeredi <miklos@szeredi.hu>
1508 * Fix recursive lock bug in interrupt handling
1510 * Add utimes() method to highlevel interface, which supports
1511 setting times with nanosecond resolution
1513 2006-08-18 Miklos Szeredi <miklos@szeredi.hu>
1515 * kernel: fix page leak if fuse_readpages() failed in it's
1516 initialization. Bug found and original patch from Alexander
1519 * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1520 the kernel tree) the statfs method will receive the path within
1521 the filesystem on which the stat(v)fs syscall was called
1523 * fusermount: try to modprobe fuse module if invoked by root and
1524 unable to open device. This is needed with udev, since the device
1525 node will be created only when the module is inserted, hence
1526 module autoloading won't work. Reported by Szakacsits Szabolcs
1528 2006-07-30 Miklos Szeredi <miklos@szeredi.hu>
1530 * fusermount: if selinux is active, restore the original file's
1531 security context in unmount_rename(). Redhat bugzilla id 188561.
1532 Patch from Yves Perrenoud
1534 * Add POSIX file locking operation to high level library
1536 * Initialize context for unlink of hidden files on umount. Bug
1537 reported by Tim Stoakes
1539 2006-07-14 Miklos Szeredi <miklos@szeredi.hu>
1541 * Multiple release() calls can race with each other, resulting in
1542 the hidden file being deleted before the last release finishes.
1543 Bug found and patch tested by Mark Huijgen
1545 2006-07-05 Miklos Szeredi <miklos@szeredi.hu>
1547 * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1548 this makes sense on systems using udev. Reported by Szakacsits
1551 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1553 * Released 2.6.0-pre3
1555 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1557 * Support in kernel module for file locking and interruption. The
1558 same functionality is available in official kernels >= 2.6.18
1560 2006-06-28 Miklos Szeredi <miklos@szeredi.hu>
1562 * Add POSIX file locking support
1564 * Add request interruption
1566 2006-06-06 Miklos Szeredi <miklos@szeredi.hu>
1568 * Add missing pthread_rwlock_destroy(). Patch from Remy Blank
1570 2006-06-05 Remy Blank <remy.blank@pobox.com>
1572 * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1573 unmounting succeeds even if mount point was relative.
1575 2006-06-04 Csaba Henk <csaba.henk@creo.hu>
1577 * lib: fix emergency umount in helper.c when malloc fails.
1578 (The way it was done would end up in a segfault.)
1580 2006-06-01 Csaba Henk <csaba.henk@creo.hu>
1582 * lib: adjust threading related compiler flags.
1583 Switch to "-pthread" from "-lpthread" as that's the preferred
1584 one on several platforms. Consulted with Terrence Cole and
1587 2006-05-08 Miklos Szeredi <miklos@szeredi.hu>
1589 * lib: search fusermount in installation directory (bindir) as
1592 2006-05-03 Miklos Szeredi <miklos@szeredi.hu>
1594 * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1595 Reported by Christian Magnusson
1597 2006-04-23 Csaba Henk <csaba.henk@creo.hu>
1599 * lib: make FreeBSD mount routine recognize if kernel features
1600 backgrounded init and if it does, run the mount util in foreground
1601 (similarly to Linux)
1603 2006-04-21 Miklos Szeredi <miklos@szeredi.hu>
1605 * kernel: fix fput deadlock fix, the lockless solution could lead
1606 to "VFS: busy inodes after umount..."
1608 * kernel: fix race between checking and setting file->private_data
1609 for the device. Found by Al Viro
1611 2006-04-11 Miklos Szeredi <miklos@szeredi.hu>
1613 * kernel: remove request pool, instead allocate requests on
1614 demand. Account the number of background requests, and if they go
1615 over a limit, block the allocation of new requests.
1617 * kernel: fix deadlock if backgrounded request holds the last
1618 reference to the super block
1620 * kernel: don't use fuse_reset_request() during direct I/O
1622 2006-04-06 Csaba Henk <csaba.henk@creo.hu>
1624 * lib: Let FreeBSD mount option parsing routine recognize "no"
1625 prefixes for FUSE specific options as well
1627 2006-04-01 Miklos Szeredi <miklos@szeredi.hu>
1629 * lib: Add missing rwlock initialization. Patch by Ryan Bradetich
1631 2006-03-17 Miklos Szeredi <miklos@szeredi.hu>
1635 * fuse_main(), fuse_setup() and fuse_new() have an additionl
1638 * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1641 * fuse_unmount() receives a 'struct fuse_chan' pointer. It
1642 destroys the given channel
1644 * fuse_teardown() no longer has a file descriptor parameter
1646 * new exported functions: fuse_session_remove_chan(),
1647 fuse_get_session(), fuse_daemonize()
1649 * fuse_chan_recv() may now return a new channel which will be used
1652 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1654 * Released 2.6.0-pre2
1656 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1658 * Don't unmount if already unmounted. This fixes a problem seen
1659 in the following situation: Lazy unmount a busy filesystem; Mount
1660 a new one in top; When the first finally unmounts, the second also
1661 unmounts. Reported by Franco Broi
1663 2006-03-15 Miklos Szeredi <miklos@szeredi.hu>
1665 * lowlevel lib: use indirect function calls instead of a
1666 switch/case construct. Besides increased efficiency it helps
1667 maintainability & readability too. Patch from Florin Malita
1669 2006-03-13 Miklos Szeredi <miklos@szeredi.hu>
1671 * kernel: replace global spinlock with a per-connection spinlock
1673 2006-03-10 Miklos Szeredi <miklos@szeredi.hu>
1675 * Fix source compatibility breakage for fuse_unmount(). Report
1678 2006-03-02 Miklos Szeredi <miklos@szeredi.hu>
1680 * Fix O_ASYNC handling in fuse_dev_release(). From Jeff Dike
1682 2006-03-01 Miklos Szeredi <miklos@szeredi.hu>
1684 * Add O_ASYNC and O_NONBLOCK support to FUSE device. Patch by
1687 * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1688 interface to return -errno in case of error.
1690 2006-03-01 Csaba Henk <csaba.henk@creo.hu>
1692 * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1693 FreeBSD implementation so that it uses libc (sysctl backed) instead
1694 of an embdedded script (kmem backed). Adjust the control flow of
1695 hello_ll so that device doesn't get closed before unmount attempt.
1697 2006-02-25 Miklos Szeredi <miklos@szeredi.hu>
1699 * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1700 implement method. This is needed on FreeBSD, and nicer on Linux
1701 too. Highlevel lib already did this. Reported by Csaba Henk
1703 * Fix negative entry handling. There was a bug, that negative
1704 lookups with timeouts (nodeid == 0) returned -EIO.
1706 2006-02-23 Miklos Szeredi <miklos@szeredi.hu>
1708 * Fix race between RELEASE and UNLINK, which might leave
1709 .fuse_hidden* files around
1711 2006-02-21 Miklos Szeredi <miklos@szeredi.hu>
1713 * fusexmp_fh: implement flush() method and call close() on the
1714 open file descriptor. This is needed if used on an NFS
1715 filesystem, which buffers data until file is closed. Franco Broi
1716 spotted the situation when 'cp -p' failed to set the modification
1717 time because of this.
1719 2006-02-20 Miklos Szeredi <miklos@szeredi.hu>
1721 * Released 2.6.0-pre1
1723 2006-02-19 Miklos Szeredi <miklos@szeredi.hu>
1725 * libfuse: fix use-after-free bug in interruptred reply_entry().
1726 Patch from John Muir
1728 * libfuse: fix wrong symbol versioning for fuse_mount. Debian bug
1729 ID: 352631. Found by Stéphane Rosi
1731 2006-02-17 Miklos Szeredi <miklos@szeredi.hu>
1733 * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1734 into a single function fuse_add_direntry(). This cleans up the
1735 interface and makes it possible to do stacking.
1737 2006-02-16 Miklos Szeredi <miklos@szeredi.hu>
1739 * Fix rare race betweeen abort and release caused by failed iget()
1740 in fuse_create_open().
1742 * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1743 own attribute caching.
1745 2006-02-15 Miklos Szeredi <miklos@szeredi.hu>
1747 * Work around FreeBSD runtime linker "feature" which binds an old
1748 version of a symbol to internal references if the symbol has more
1749 than one version. This resulted in infinite recursion in
1750 fuse_lowlevel_new_compat25().
1752 2006-02-10 Csaba Henk <csaba.henk@creo.hu>
1754 * Refine clock_gettime() querying so that linker options
1755 shall be set as it's appropriate for the target platform.
1757 2006-02-09 Miklos Szeredi <miklos@szeredi.hu>
1759 * Fix udev rule syntax. Reported by Nix
1761 2006-02-08 Miklos Szeredi <miklos@szeredi.hu>
1763 * In some cases udev rule seems to be ineffective when installed
1764 as 40-fuse.rules but work as 60-fuse.rules. Reported by John Hunt
1766 2006-02-03 Miklos Szeredi <miklos@szeredi.hu>
1768 * Fix compilation when build directory is different from source
1769 directory. Reported by Frédéric L. W. Meunier
1771 2006-02-02 Miklos Szeredi <miklos@szeredi.hu>
1773 * Fix even bigger bug introduced in fix for request_end() on
1774 2006-01-14. Reported by Gal Rosen
1776 2006-01-30 Miklos Szeredi <miklos@szeredi.hu>
1778 * highlevel-lib: add 'auto_cache' option. This caches file data
1779 based on modification time and size
1781 2006-01-20 Miklos Szeredi <miklos@szeredi.hu>
1783 * Sanitize storage type and help message in mount_bsd.c. Patch
1786 * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1787 FUSE_OPT_KEY_DISCARD
1789 * Add options 'max_readahead', 'sync_read' and 'async_read'
1791 * Kernel ABI version 7.6:
1793 * Negotiate the 'max_readahead' value and 'async_read' flags with
1794 userspace in the INIT method
1796 * Add connection info to ->init() methods to both lowlevel and
1799 * Fall back to synchronous read() behavior if either library or
1800 userspace filesystem is using the old interface version. This is
1801 needed so non-updated filesystems won't be confused by the
1802 different read() behavior
1804 2006-01-19 Miklos Szeredi <miklos@szeredi.hu>
1806 * lib: if "fsname=" option was given, pass it to fusermount
1808 * fuse_opt: add new fuse_opt_insert_arg() function, which is
1809 needed by filesystems to implement some argument manipulations
1812 * fuse_opt: fix memory leak in handling "--" option
1814 2006-01-18 Miklos Szeredi <miklos@szeredi.hu>
1816 * kernel: fix detection of case when fuse is not configured into
1817 the kernel either as module or built-in
1819 * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1820 'template' structure member to 'templ'. Reported by Takashi Iwai
1822 * fuse.h: fix compatibility bugs. Patch by Yura Pakhuchiy
1824 * kernel: support version 2.6.16 (i_sem -> i_mutex)
1826 2006-01-16 Miklos Szeredi <miklos@szeredi.hu>
1828 * Added (again) asynchronous readpages support
1830 * Each connection now shows up under /sys/fs/fuse/connections
1832 * Connection attributes exported to sysfs: 'waiting' number of
1833 waiting requests; 'abort' abort the connection
1835 * Connection may be aborted through either the sysfs interface or
1836 with 'umount -f mountpoint'
1838 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1842 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1844 * kernel: fix a couple of bugs
1846 * Order of request_end() and fuse_copy_finish() was wrong.
1847 Posthumous note: Franco Broi managed to exploit this, though it
1848 seemed quite impossible
1850 * request_end() used request pointer after decrementing refcount
1852 * Clearing ->connected or ->mounted connection flags could race
1853 with setting other bitfields not protected with a lock
1855 2006-01-10 Miklos Szeredi <miklos@szeredi.hu>
1857 * kernel: add necessary compile flags for 2.4.X/x86_64.
1858 Report from Sean Ziegeler
1860 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1862 * Released 2.5.0-pre2
1864 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1866 * Applied patch from Csaba Henk, to update mount_bsd to new
1867 fuse_mount() semantics
1869 * Ignore auto,noauto,... options in mount.fuse. Reported by Frank
1870 Steiner and Don Taber
1872 * fusermount: add 'dirsync' mount option
1874 2006-01-07 Miklos Szeredi <miklos@szeredi.hu>
1876 * Improved help reporting and added version reporting to library
1878 2006-01-06 Miklos Szeredi <miklos@szeredi.hu>
1880 * Change working directory to "/" even if running in the
1881 foreground. Patch from Jonathan Brandmeyer
1883 * Changed lots of functions to use 'struct fuse_args' instead of
1884 separate argc and argv
1886 * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1887 fuse_remove_signal_handlers() functions, so that it's now pretty
1888 easy to get all the functionality of fuse_main() with a filesystem
1889 using the lowlevel API.
1891 2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
1893 * mount.fuse: the 'user' option should be ignored. Report and
1894 solution from Mattd.
1896 * mount.fuse: export PATH in the right place. Report and patch
1897 from Hannes Schweizer
1899 2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
1901 * Clean up the option parsing interface slightly, by creating an
1902 "argument list" structure, that contains the argument vector and
1905 2005-12-15 Miklos Szeredi <miklos@szeredi.hu>
1907 * fusermount: check if /mnt/mtab is a symlink and don't modify it
1910 * kernel: simplify request size limiting. INIT only contains
1911 maximum write size, maximum path component size remains fixed at
1912 1024 bytes, and maximum xattr size depends on read buffer.
1914 2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
1916 * Fix readdir() failure on x86_64, of 32bit programs compiled
1917 without largefile support. Bug report and help from Anthony
1920 * If lookup returns invalid mode, return -EIO instead of creating
1923 * Add current output argument vector to option processing
1926 2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
1928 * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
1930 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1932 * Released 2.5.0-pre1
1934 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1936 * libfuse: added option parsing interface, defined in
1939 2005-12-07 Miklos Szeredi <miklos@szeredi.hu>
1941 * Return EIO for file operations (read, write, fsync, flush) on
1942 open files whose inode has become "bad". Inodes will be marked
1943 "bad" if their type changes. Bug report by Csaba Henk
1945 2005-12-06 Miklos Szeredi <miklos@szeredi.hu>
1947 * Use bigger request buffer size. write() did not work on archs
1948 with > 4k page size, Bug report by Mark Haney
1952 * Extend INIT reply with data size limits
1954 2005-12-02 Miklos Szeredi <miklos@szeredi.hu>
1956 * Fix memory leak in fuse_read_cmd()/fuse_process_cmd(). Bug
1957 reported by Vincenzo Ciancia
1959 * Handle exit-by-umount in fuse_read_cmd()
1961 2005-11-29 Miklos Szeredi <miklos@szeredi.hu>
1963 * Check if '-msoft-float' option is supported by compiler when
1964 configuring for a 2.4.x kernel. Bug report by Mark Haney
1966 * In multithreaded loop send a TERM signal to the main thread if
1967 one of the other threads exit. Needed on FreeBSD for a clean exit
1968 on umount. Should not cause any harm on Linux either
1970 2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
1972 * Fix bug in 32-bit file handle compatibility
1974 2005-11-27 Miklos Szeredi <miklos@szeredi.hu>
1976 * Block TERM, INT, HUP and QUIT signals in all but the main
1977 thread. According to POSIX it's not specified which thread will
1978 receive these signals.
1982 * Check for directory aliasing on mkdir, not just on lookup
1984 * Check for special node ID values in create+open operation
1986 * Sync with -mm: readv, writev, aio_read and aio_write methods
1987 added to file operations
1989 * Cleanups: lookup code, page offset calculation
1991 * ABI stepped to 7.4, changes:
1993 * frsize member added to fuse_kstatfs structure
1995 * added support for negative entry caching: on lowlevel API if
1996 fuse_entry_param::ino is set to zero in reply to a lookup request,
1997 the kernel will cache the dentry for the specified amount of time.
1999 * libfuse: added 'negative_timeout' option: specifies how much
2000 negative entries should be cached. Default is zero, to be
2001 compatible with prior versions
2003 2005-11-22 Miklos Szeredi <miklos@szeredi.hu>
2005 * Add detection of mainline FUSE code in running kernel
2007 2005-11-21 Miklos Szeredi <miklos@szeredi.hu>
2009 * Don't use async cancelation in multithreaded loop. This makes
2010 it more portable to systems where read() is not async cancel safe.
2011 Report from Andriy Gapon
2013 2005-11-20 Miklos Szeredi <miklos@szeredi.hu>
2015 * Warn if API version 11 compatibility is requested
2017 2005-11-17 Miklos Szeredi <miklos@szeredi.hu>
2019 * More FreeBSD merge
2021 * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2022 them, because it corrupts /etc/mtab. Found by Thomas Biege
2025 * libfuse: don't use system() to invoke 'fusermount -u ...'
2026 because it breaks mountpoints with spaces in them into multiple
2029 2005-11-16 Miklos Szeredi <miklos@szeredi.hu>
2031 * Merge library part of FreeBSD port. Patch by Csaba Henk
2033 2005-11-11 Miklos Szeredi <miklos@szeredi.hu>
2035 * Use 64bit type for file handle, so the full range supported by
2036 the kernel interface is available to applications
2038 2005-11-10 Miklos Szeredi <miklos@szeredi.hu>
2040 * Moved mountpoint argument checking from fuse_parse_cmdline() to
2041 fuse_mount() in preparation to FreeBSD merge.
2043 2005-11-08 Miklos Szeredi <miklos@szeredi.hu>
2045 * Remove unneeded close() from fuse_teardown(). Spotted by Csaba
2048 2005-11-07 Miklos Szeredi <miklos@szeredi.hu>
2050 * Make the statfs change backwards compatible.
2052 2005-11-06 Miklos Szeredi <miklos@szeredi.hu>
2054 * Change ->statfs() method to use 'struct statvfs' instead of
2055 'struct statfs'. This makes the API more portable since statvfs()
2056 is defined by POSIX.
2058 2005-10-28 Miklos Szeredi <miklos@szeredi.hu>
2060 * Add fgetattr() method, which currently will only be called after
2061 a successful call to a create() method.
2063 2005-10-26 Miklos Szeredi <miklos@szeredi.hu>
2065 * Change kernel ABI version to 7.3
2067 * Add ACCESS operation. This is called from the access() system
2068 call if 'default_permissions' mount option is not given, and is
2069 not called on kernels 2.4.*
2071 * Add atomic CREATE+OPEN operation. This will only work with
2072 2.6.15 (presumably) or later Linux kernels.
2074 * Add ftruncate() method. This will only work with 2.6.15
2075 (presumably) or later Linux kernels.
2077 * Fix kernel module compile if kernel source and build directories
2078 differ. Report and initial patch by John Eastman
2080 2005-10-18 Miklos Szeredi <miklos@szeredi.hu>
2082 * lib: optimize buffer reallocation in fill_dir.
2084 2005-10-17 Miklos Szeredi <miklos@szeredi.hu>
2088 2005-10-14 Miklos Szeredi <miklos@szeredi.hu>
2090 * libfuse: add debug for write result (by Shaun Jackman) and
2091 warnings for too large read/write result
2093 2005-10-11 Miklos Szeredi <miklos@szeredi.hu>
2095 * Spelling fixes, thanks to Ioannis Barkas
2097 2005-10-10 Miklos Szeredi <miklos@szeredi.hu>
2099 * fuse_common.h: use extern "C". Thanks to Valient Gough for the
2102 2005-10-07 Miklos Szeredi <miklos@szeredi.hu>
2104 * highlevel-lib: init() and destroy() methods didn't have an
2105 initialized fuse_context. Bug reported by Tim Stoakes
2107 2005-10-04 Miklos Szeredi <miklos@szeredi.hu>
2111 2005-10-03 Miklos Szeredi <miklos@szeredi.hu>
2113 * Add documentation to fuse_lowlevel.h
2117 * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2119 * Move fuse_mount() and fuse_unmount() to fuse_common.h
2121 * Change the return type of fuse_reply_none() from int to void.
2123 2005-09-30 Miklos Szeredi <miklos@szeredi.hu>
2125 * kernel: NFS exporting leaked dentries. Bug found and fixed by
2128 2005-09-29 Miklos Szeredi <miklos@szeredi.hu>
2130 * fusermount: fix error message, when unable to open /dev/fuse.
2131 Report by Balázs Pozsár
2133 2005-09-28 Miklos Szeredi <miklos@szeredi.hu>
2135 * UClibc fixes from Christian Magnusson
2137 2005-09-27 Miklos Szeredi <miklos@szeredi.hu>
2139 * Added NAME="%k" to util/udev.rules. Fix by Mattias Wadman.
2141 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2143 * Released 2.4.0-rc1
2145 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2147 * fusermount: allow user umount in the case when /etc/mtab is a
2148 symlink to /proc/mounts. Reported by Balázs Pozsár.
2150 2005-09-23 Miklos Szeredi <miklos@szeredi.hu>
2152 * Check for special node ID values in lookup and creation
2154 2005-09-22 Miklos Szeredi <miklos@szeredi.hu>
2156 * Slight optimization in returning EINVAL error in case of an open
2159 2005-09-20 Miklos Szeredi <miklos@szeredi.hu>
2161 * Remove '--enable-auto-modprobe' configure flag. Module
2162 auto-loading is now handled by the kernel.
2164 2005-09-15 Miklos Szeredi <miklos@szeredi.hu>
2166 * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2167 Help from Jens M. Noedler.
2169 2005-09-14 Miklos Szeredi <miklos@szeredi.hu>
2171 * Add memory cleanup on thread exit
2173 2005-09-13 Miklos Szeredi <miklos@szeredi.hu>
2175 * Set umask to zero in fusexmp and fusexmp_fh, so that
2176 files/directories are created with the requested mode.
2178 2005-09-12 Miklos Szeredi <miklos@szeredi.hu>
2180 * Don't ignore read error in multithreaded loop
2182 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2184 * Released 2.4.0-pre2
2186 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2188 * Revert lock and access operations. Postpone these until 2.5.
2190 2005-09-02 Miklos Szeredi <miklos@szeredi.hu>
2192 * Fix compile warning on 2.6.13 and later
2194 * Fix compilation on old kernels
2196 2005-08-19 Miklos Szeredi <miklos@szeredi.hu>
2198 * lib: always refresh directory contents after rewinddir() to
2199 conform to SUS. Bug found by John Muir.
2201 2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
2203 * Released 2.4.0-pre1
2205 2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
2207 * lib: cleaned up (or messed up, depending on your POV) the low
2208 level library API. Hopefully this is close to the final form.
2210 2005-08-05 Miklos Szeredi <miklos@szeredi.hu>
2212 * fusermount: don't allow empty mountpoint argument, which defeats
2213 automatic umounting in fuse_main(). Bugreport by Václav Jůza
2215 2005-08-03 Miklos Szeredi <miklos@szeredi.hu>
2217 * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2218 option is used (Paul Alfille).
2220 2005-08-02 Miklos Szeredi <miklos@szeredi.hu>
2222 * highlevel-lib: added mount options "attr_timeout" and
2223 "entry_timeout". These options control the length of time file
2224 attributes and entries (names) are cached. Both default to 1.0
2227 * kernel: correctly handle zero timeout for attributes and entries
2229 2005-08-01 Miklos Szeredi <miklos@szeredi.hu>
2231 * Added missing symbols to versionscript (Joshua J. Berry)
2233 * kernel: implement two flags, open can set: 'direct_io' and
2234 'keep_cache'. These correspond exactly to mount options
2235 'direct_io' and 'kernel_cache', but allow a per-open setting.
2237 * Move 'direct_io' and 'kernel_cache' mount option handling to
2238 userspace. For both mount options, if the option is given, then
2239 the respective open flag is set, otherwise the open flag is left
2240 unmodified (so the filesystem can set it).
2242 * lib (highlevel): make open method optional
2244 2005-07-28 Miklos Szeredi <miklos@szeredi.hu>
2246 * kernel: invalidate attributes for read/readdir/readlink
2249 * kernel: detect newer UML kernels
2251 2005-07-26 Miklos Szeredi <miklos@szeredi.hu>
2253 * Make the installation path of fuse.ko and mount.fuse
2254 configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2255 environment variables. Requirement and help from Csaba Henk.
2257 2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
2259 * Fix bug, that causes filesystem requests to hang when unique
2260 request counter becomes negative. This happens after
2261 2,147,483,648 operations, so most people won't care. Thanks to
2262 Franco Broi for the report and testing.
2264 2005-07-21 Miklos Szeredi <miklos@szeredi.hu>
2266 * Don't change mtime/ctime/atime to local time on read/write.
2267 Bug reported by Ben Grimm
2269 * Install fuse_common.h and fuse_lowlevel.h. Report by Christian
2272 * fusermount: use getopt_long() for option parsing. It allows the
2273 use of '--' to stop argument scanning, so fusermount can now
2274 operate on directories whose names begin with a '-'. Patch by
2277 2005-07-15 Miklos Szeredi <miklos@szeredi.hu>
2279 * fusermount: add '-v', '--version' and '--help' options
2281 * add inode based API
2283 2005-07-12 Miklos Szeredi <miklos@szeredi.hu>
2285 * lib: don't block signals in worker threads. Problem noticed by
2288 2005-07-07 Miklos Szeredi <miklos@szeredi.hu>
2290 * lib: don't allow both 'allow_other' and 'allow_root' options to
2293 2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
2295 * fusermount: check if mountpoint is empty (only '.' and '..' for
2296 directories, and size = 0 for regular files). If "nonempty"
2297 option is given, omit this check. This is useful, so users don't
2298 accidentally hide data (e.g. from backup programs). Thanks to
2299 Frank van Maarseveen for pointing this out.
2301 * kernel: check if mandatory mount options ('fd', 'rootmode',
2302 'user_id', 'group_id') are all given
2304 * lib: simplify 'readdir_ino' handling
2306 * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2308 2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
2310 * kernel: clean up 'direct_io' code
2312 2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
2314 * Add 'mount.fuse' written by Petr Klima
2316 * '/dev/fuse' is created by 'make install' if does not yet exist
2318 2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
2320 * Fix UCLIBC compile error. Patch by Christian Magnusson
2322 2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
2324 * Enable the auto-loading of the module via access to the
2325 corresponding device file. Patch by Takashi Iwai.
2327 * Allow mounting a regular file (over a regular file) for
2330 * Do not create temporary device file. Require "/dev/fuse" to
2331 exist, and be readable/writable by the mounting user.
2333 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2337 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2339 * Fix serious information leak: if the filesystem returns a short
2340 byte count to a read request, and there are non-zero number of
2341 pages which are not filled at all, these pages will not be zeroed.
2342 Hence the user can read out previous memory contents. Found by
2345 2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
2347 * Add "readdir_ino" mount option, which tries to fill in the d_ino
2348 field in struct dirent. This mount option is ignored if "use_ino"
2349 is used. It helps some programs (e.g. 'pwd' used over NFS from a
2350 non-Linux OS). Patch by David Shaw.
2352 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2356 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2358 * File save in krusader and other editors doesn't work with sshfs,
2359 because open() is interrupted by a periodic signal, and open()
2360 restarts forever, without any progress. This could just be fixed
2361 in open(), but the problem is more generic: if signals are
2362 received more often than the filesystem can get the request to
2363 userspace, it will never finish. This is probably only a
2364 theoretical problem, nevertheless I'm removing the possibility to
2365 interrupt requests with anything other than SIGKILL, even before
2366 being sent to userspace. Bugreport by Eduard Czimbalmos.
2368 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2370 * libfuse: add "tree_lock" rwlock, that is locked for write in
2371 rename, unlink and rmdir, and locked for read in all other
2372 operations. This should fix the rename/release race reported by
2373 Valient Gough and others. The solution is very coarse, a finer
2374 grained locking scheme could be implemented, but it would be much
2375 more complex. Let's see whether this is good enough.
2377 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2381 2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
2383 * Better fix for out of order FORGET messages. Now the
2384 LOOKUP/FORGET messages are balanced exactly (one FORGET can
2385 balance many lookups), so the order no longer matters. This
2386 changes the kernel ABI slightly, but the library remains backward
2389 2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
2391 * Fix abort for out of order FORGET messages. Again. Spotted by
2392 Franco Broi again. Sorry :)
2394 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2398 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2400 * Make fusermount work with fuse kernel modules not yet supporting
2401 the "group_id" option (added for the purpose of stricter
2402 permission checking).
2404 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
2406 * Check for hard-linked directories in lookup. This could cause
2407 problems in the VFS, which assumes that such objects never exist.
2409 * Make checking of permission for other users more strict. Now
2410 the same privilege is required for the mount owner as for ptrace
2411 on the process performing the filesystem operation.
2413 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
2417 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
2419 * Add -msoft-float to kernel module compile flags for 2.4.X. This
2420 is needed on certain architectures. Report from Chris Kirby
2422 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2423 Reported by David Shaw
2425 * Remove "allow_root" option from kernel module, and implement
2426 it's functionality in the library
2428 * Fix Oops caused by premature release of fuse_conn. Clean up
2429 related code, to be more readable
2431 * Sendfile should not use page cache if "direct_io" mount option
2434 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
2436 * Fix Oops in case of nfs export. Spotted by David Shaw
2438 * Fix another Oops in case of write over nfs with direct_io turned
2439 on. Again spotted by David Shaw
2441 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2445 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2447 * lib: finalized new readdir() interface, which now supersedes the
2450 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2454 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2456 * Implement backward compatibility with version 5 kernel ABI
2458 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2462 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2464 * kernel: fix dirent offset handling
2466 * lib: add readdir and releasedir methods
2468 * lib: use fh field of fuse_file_info in opendir, readdir,
2469 releasedir and fsyncdir methods
2471 * lib: check kernel API version and bail out of it's old. This
2472 will be properly fixed in the next release
2474 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2478 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2480 * kernel API: add padding to structures, so 64bit and 32bit
2481 compiler will return the same size
2483 * kernel API: add offset field to fuse_dirent. This will allow
2484 more sophisticated readdir interface for userspace
2486 * kernel API: change major number to 6
2488 * kernel: fix warnings on 64bit archs
2490 * kernel: in case of API version mismatch, return ECONNREFUSED
2492 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
2494 * kernel: trivial cleanups
2496 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
2498 * Add fsyncdir() operation
2500 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
2502 * kernel: add locking to background list (fixes previous fix)
2504 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
2506 * kernel: fix bug which could cause leave busy inodes after
2509 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
2511 * examples: add -lpthread to link flags to work around valgrind
2514 * lib: don't exit threads, so cancelation doesn't cause segfault
2516 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
2518 * kernel: fix nasty bug which could cause an Oops under certain
2519 situations. Found by Magnus Johansson
2521 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
2523 * libfuse: added opendir() method. This can be used in case
2524 permission checking in getdir() is too late. Thanks to Usarin
2525 Heininga for pointing out this deficiency
2527 * libfuse: added init() and destroy() methods to fuse_operations
2529 * kernel: llseek() method for files and directories made explicit
2531 * kernel: fixed inode leak in NFS export in case of nodeid
2534 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
2536 * libfuse: clean up some unitialized memory found with valgrind
2538 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
2539 explicitly linked libpthread for applications
2541 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
2543 * fusermount: set umask, otherwise /etc/mtab will have
2544 unpredictable permission. Spotted by Jindrich Kolorenc
2546 * fusermount: set owner and group of /etc/mtab to original values
2549 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
2551 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
2553 * Cleaned up directory reading (temporary file is not used)
2555 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2559 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2561 * Fix possible race when operation is interrupted
2563 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
2565 * Fix compilation on 2.6.7
2567 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2571 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2573 * Fix bug in link() operation which caused the wrong path to be
2574 passed as the first argument. Found by Anton Altaparmakov
2576 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
2578 * LIB: fix double reply in readdir operation
2580 * fusermount: fix uid checking bug. Patch by Adam Connell
2582 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2583 Patch by Keshava Gowda
2585 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2587 * KERNEL: provide correct llseek semantics for fuse device (fixes
2588 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
2590 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2592 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2594 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
2596 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2597 and RELEASEDIR. This ends the ugly hack of passing a file
2598 descriptor to the kernel, and actually makes the code simpler.
2600 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2604 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2606 * fusermount: remove capability setting, which was the cause of
2607 problems for some users. It seems that FS related capabilities
2608 are removed by setfsuid(), so this isn't even needed.
2610 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
2612 * fix compilation on 2.4 kernels (reported by Valient Gough)
2614 * fix failure to unmount bug (found by David Shaw)
2616 * fusermount: improve parsing of /etc/fuse.conf
2618 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
2620 * Remove 'mount_max' and 'user_allow_other' module options. These
2621 are now checked by fusermount, and can be set in /etc/fuse.conf
2623 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2625 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
2627 * KERNEL: fix possible inode allocation problem, where
2628 sizeof(struct inode) is not aligned (found by Mike Waychison)
2630 * KERNEL: use new follow_link/put_link methods
2632 * KERNEL: cosmetic fixes
2634 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2638 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2640 * Add missing code that was accidently left out
2642 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2646 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2648 * Change "uid" mount option to "user_id" to avoid confusion with a
2649 mount option "uid" commonly used by many filesystems
2651 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2655 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2657 * If FUSE is configured in the kernel, don't build it by default
2659 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
2661 * Compile fix by Christian Magnusson
2663 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
2665 * Fix compilation for 2.6.{0-5} kernels
2667 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
2669 * KERNEL: if request is interrupted, still keep reference to used
2670 inode(s) and file, so that FORGET and RELEASE are not sent until
2671 userspace finishes the request.
2673 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2674 request with the same information, which is more flexible,
2675 simpler, works on embedded systems.
2677 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
2679 * KERNEL ABI: update interface to make it independent of type
2680 sizes. This will help on 64 bit architectures which can run
2681 legacy 32 bit applications.
2683 * KERNEL ABI: add "len" field to request headers. This will allow
2684 sending/receiving requests in multiple chunks.
2686 * KERNEL: handle file type change more intelligently
2688 * LIB: "-o debug" option should disable backgrounding (fix by
2689 Fabien Reygrobellet)
2691 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
2693 * KERNEL: invalidate dentry/attributes if interrupted request
2694 could leave filesystem in an unknown state.
2696 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
2698 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2699 These will cause some regressions, but stability is considered
2700 more important. If any of these features turns out to be
2701 important, it can be readded with the deadlock problems addressed.
2703 * Make all requests interruptible (only with SIGKILL currently).
2704 This can be used to break any deadlock produced by the userspace
2705 filesystem accessing it's own exported files. The RELEASE request
2706 is special, because if it's interrupted before sending it to
2707 userspace it is still sent, but the reply is not awaited.
2709 * If request is interrupted before being sent to userspace, and if
2710 it hasn't yet got any side effects, it is always restarted,
2711 regardless of the SA_RESTART flag. This makes these interruptions
2712 transparent to the process.
2714 * Remove shared-writable mmap support, which was prone to an
2715 out-of-memory deadlock situation
2717 * Remove INVALIDATE userspace initiated request
2719 * Make readpages() synchronous. Asynchronous requests are
2720 deadlock prone, since they cannot be interrupted.
2722 * Add readv/writev support to fuse device operations
2724 * Remove some printks, which userspace FS can use for a DoS
2727 * Remove 'large_read' mount option from 2.6 in kernel, check it in
2730 * LIB: improve compatibility with a fuse.h header installed in
2731 ${prefix}/include which in turn includes the real header.
2733 * LIB: improve compatibility by defining fuse_main() (which is now
2734 not used), so old configure scripts find it.
2736 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
2738 * When mounting on a subdirectory of / don't duplicate slashes at
2739 the beggining of path (spotted by David Shaw)
2741 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
2743 * Fix bug causing garbage in mount options (spotted by David Shaw)
2745 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
2747 * Add 'writepage' flag to 'fuse_file_info'.
2749 * More comments in fuse.h
2751 * Get rid of double underscores
2753 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
2755 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2757 * helper.c: add -ho option, which only displays the options not
2758 the usage header. This can be used by filesystems which have
2761 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2763 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
2764 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2765 including the fuse header
2767 * Add binary compatibility to 2.1 version of library with symbol
2770 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2774 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
2776 * kernel: clean up writing functions
2778 * kernel: no allocation on write in direct_io mode
2780 * move linux/fuse.h to fuse_kernel.h
2782 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
2784 * kernel: clean up reading functions
2786 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
2788 * kernel: make readpage() uninterruptible
2790 * kernel: check readonly filesystem flag in fuse_permission
2792 * lib: don't die if version file not found and new style device
2795 * lib: add '-r' option, which is short for '-o ro'
2797 * fusermount: simplify device opening
2799 * kernel: when direct_io is turend on, copy data directly to
2800 destination without itermediate buffer. More efficient and safer,
2801 since no allocation is done.
2803 * fusermount: fix warning if fuse module is not loaded
2805 * kernel: use /dev/fuse on 2.4 too
2807 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
2809 * libfuse API change: open, read, write, flush, fsync and release
2810 are passed a 'struct fuse_file_info' pointer containing the open
2811 flags (open and release), and the file handle. Verion changed to
2814 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
2816 * More cleanups in the kernel
2818 * The 10,229 charater device number has been assigned for FUSE
2820 * Version file checking fix (reported by Christian Magnusson)
2822 * fusermount: opening the fuse device now doesn't need /sys.
2824 * Optimize reading by controlling the maximum readahead based on
2825 the 'max_read' mount option
2827 * fixes for UCLIBC (Christian Magnusson)
2829 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
2831 * Cleaned up kernel in preparation for merge into mainline:
2833 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2835 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2837 * __user annotations for sparse
2839 * allocate individual pages instead of kmalloc in fuse_readdir,
2840 fuse_read and fuse_write.
2842 * Fix NFS export in case "use_ino" mount option is given
2844 * Make libfuse and fusermount compatible with future versions
2846 * fusermount: properly add mount options to /etc/mtab
2848 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
2850 * fusermount: do not resolve last component of mountpoint on if it
2851 is '.' or '..'. This new path resolvation is now done on mount as
2852 well as unmount. This enables relative paths to work on unmount.
2854 * fusermount: parse common mount options like "ro", "rw", etc...
2856 * Allow module params to be changed through sysfs
2858 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2862 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2864 * Fix bug in fuse_readpages() causing Oops in certain situations.
2865 Bug found by Vincenzo Ciancia.
2867 * Fix compilation with kernels versions > 2.6.9.
2869 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
2871 * Check kernel interface version in fusermount to prevent
2872 strangeness in case of mismatch.
2874 * No need to allocate fuse_conn until actual mount happens
2876 * Fix potential race between umount and fuse_invalidate
2878 * Check superblock of proc file in addition to inode number
2880 * Fix race between request_send_noreply() and fuse_dev_release()
2882 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
2884 * Separate configure for the kernel directory
2886 * Don't allow write to return more than 'count'
2888 * Extend kernel interface for future use
2890 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
2892 * Fix 'makeconf.sh' to use autoreconf if available
2894 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
2896 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
2897 compatibility with earlier versions. To compile earier versions
2898 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2899 Do not use the "use_ino" mount flag with filesystems compiled with
2902 * Add pkg-config support. To compile a FUSE based filesystem you
2903 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2904 or similar. Note, that the PKG_CONFIG_PATH environment variable
2905 usually needs to be set to "/usr/local/lib/pkgconfig".
2907 * fuse.h is now installed in ${prefix}/include/fuse/
2909 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
2911 * Added "use_ino" mount option. This enables the filesystems to
2912 set the st_ino field on files
2914 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
2916 * Fix compile problems with ancient (<=2.4.18) kernels (reported
2919 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
2921 * Clear the 'exited' flag when mail loop is finished
2923 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
2925 * Make xattr functions work under 2.6 (bug found by Vincenzo
2928 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
2930 * Reset request in fuse_flush() (bugreport by David Shaw)
2932 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
2934 * fuse_main() now does not exit on error, rather it returns an
2937 * Exported __fuse_setup() and __fuse_teardown() functions, which
2938 make it easier to implement a custom event loop.
2940 * Use daemon() call to background the filesystem after mounting.
2941 This function closes the standard input, output and error and
2942 changes the current working directory to "/".
2944 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
2948 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
2950 * Don't allow fuse_flush() to be interrupted (bug found by David
2953 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
2955 * Add PID to fuse_context. Patch by Steven James
2957 * Change file handle type to 'unsigned long' in kernel interface
2959 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
2961 * A slight API change: fuse_get_context() doesn't need the "fuse"
2962 pointer, but the returned context contains it instead. The
2963 fuse_get() function is not needed anymore, so it's removed.
2965 * Fix mounting and umounting FUSE filesystem under another FUSE
2966 filesystem by non-root (bug spotted by Valient Gough)
2968 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
2970 * Fix deadlock in case of memory allocation failure. Patch by
2973 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
2975 * Check memory allocation failures in libfuse
2977 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
2979 * Check temporary file creation failure in do_getdir(). Bug
2980 spotted by Terje Oseberg
2982 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
2984 * Allow "large_read" option for 2.6 kernels but warn of deprecation
2986 * Make requests non-interruptible so race with FORGET is avoided.
2987 This is only a temporary solution
2989 * Support compiling FUSE kernel module on 2.4.x UML kernels
2991 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
2993 * Fix bug in case two FORGETs for the same node are executed in
2994 the wrong order. Bug spotted and endured for months by Franco
2995 Broi, and logfile for solution provided by Terje Oseberg
2997 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
2999 * Add -D_REENTRANT to the compile flags
3001 * Add documentation of fuse internals by Terje Oseberg
3003 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
3005 * Change release method to be non-interruptible. Fixes bug
3006 causing missing release() call when program which has opened files
3007 is killed (reported by Franco Broi and David Shaw)
3009 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
3011 * Add fuse_invalidate() to library API
3013 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
3015 * Check permissions in setattr if 'default_permissions' flag is
3016 set. Bug spotted by Damjan Lango
3018 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
3020 * 'large_read' mount option removed for 2.6 kernels, since the
3021 default (dynamic read size) is better
3023 * Extend kernel API with file handles. A file handle is returned
3024 by open, and passed to read, write, flush, fsync and release.
3025 This is currently only used for debug output in the library.
3029 * Change the current directory to the mountpoint before checking
3030 the permissions and mount filesystem on "."
3032 * By default don't modprobe the fuse module for non-root. The old
3033 behavior can be restored with the '--enable-auto-modprobe' flag of
3036 * By default don't allow shared writable mappings for non-root.
3037 The old behavior can be restored with the 'user_mmap=1' module
3040 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
3042 * Clean up mount option passing to fusermount and to fuse_new()
3043 BEWARE: this changes the userspace API slightly, and the command
3044 line usage of programs using fuse_main()
3046 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
3048 * Optimize reading under 2.6 kernels by issuing multiple page
3049 asynchronous read requests
3051 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
3053 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3055 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
3057 * Separate directory entry and inode attribute validity timer
3059 * New write semaphore to stop page writeback during truncate
3061 * Fsync now waits for all writes to complete before sending the
3064 * Optimization: if a page is completely written by
3065 fuse_commit_write(), clear the dirty flag and set the uptodate
3068 * Some memory cleanup at exit
3070 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
3072 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3073 disable the "hide if open" behavior of unlink/rename.
3075 * If temporary buffer allocation fails in raw read, fall back to a
3078 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
3080 * Fix bug in do_open() in libfuse: open count was incremented
3081 after the reply is sent so it could race with unlink/forget and
3084 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
3086 * When performing create or remove operation, refresh the parent's
3087 attributes on next revalidate, as i_nlink (and maybe size/time)
3090 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3093 * Set set_page_dirty address space operation (2.6 only)
3095 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
3097 * Minor fix in read: print debug info even if read size is zero
3099 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
3101 * Fix race between truncate and writepage (fsx-linux now runs
3104 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
3106 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3109 * Added option for direct read/write (-r)
3111 * Fix revalidate time setting for newly created inodes
3113 * Remove uid==0 check for '-x' option in fusermount (kernel checks
3116 * fuse_main() only installs handlers for signals (out of INT, HUP,
3117 TERM, PIPE), for which no handler has yet been installed
3119 * Add module option 'user_allow_other' which if set to non-zero
3120 will allow non root user to specify the 'allow_other' mount option
3121 ('-x' option of fusermount)
3123 * Fix deadlock between page writeback completion and truncate
3124 (bug found by Valient Gough with the fsx-linux utility)
3126 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
3128 * Change passing fuse include dir to 2.6 kernel make system more
3129 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3132 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
3134 * Acquire inode->i_sem before open and release methods to prevent
3135 concurrent rename or unlink operations.
3137 * Make __fuse_read_cmd() read only one command. This allows
3138 multiplexing the fuse file descriptor with other event sources
3139 using select() or poll() (patch by Jeff Harris)
3141 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3143 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
3145 * Fix file offset wrap around at 4G when doing large reads
3147 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3149 * Fix memory leak in open (Valient Gough)
3151 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3153 * Add "close after delete" support to libfuse (patch by Valient
3156 * Cancel all worker threads before exit in multithreaded mode
3158 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
3162 * Don't send reply to RELEASE
3164 * Work with newer libtool (1.5a)
3166 * Check for st_atim member of struct stat
3168 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
3170 * No request allocation needed on inode and file release
3172 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
3174 * Fix possible inode leak in userspace in case of unfinished
3175 lookup/mknod/mkdir/symlink/link operation.
3177 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
3179 * Fix some races and cleanups in fuse_read_super()
3181 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
3183 * Requests are allocated at open time
3185 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
3187 * Build shared library as well as static (using libtool)
3189 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
3190 there has not been a release with the previous minor number, and I
3191 hope nobody is using it for anything.
3193 * Change fuse_main(), so that default behavior is to go into
3194 background if mount is successful. '-f' and '-d' options disable
3195 backgrounding. This fixes the "Why does my FUSE daemon hang?"
3198 * Cache ENOSYS (function not implemented) errors on *xattr, flush
3201 * Don't call getdir method from open() only from first readdir().
3202 Open is sometimes just used to store the current directory
3205 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
3207 * Added flush() call
3209 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
3211 * Extended attributes support for 2.4 (patch by Cody Pisto)
3213 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
3215 * Fixed parser with modversions (Mattias Wadman)
3217 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
3219 * Added mount option parser to 2.4 build
3221 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
3223 * Replaced binary mount data with text options
3225 * Show FUSE specific mount options in /proc/mounts
3227 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3229 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
3231 * Check some limits so userspace won't get too big requests
3233 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
3235 * Kill compile warning
3237 * Upgraded user-mount patch for 2.6.5
3239 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
3241 * Add detection of user-mode-linux to configure
3243 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
3245 * fixed zero size case for getxattr and listxattr
3247 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
3249 * new fusermount flag '-z': lazy unmount, default is not lazy
3251 * Extended attributes operations added (getxattr, setxattr,
3252 listxattr, removexattr)
3254 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
3256 * If filesystem doesn't define a statfs operation, then an
3257 all-zero default statfs is returned instead of ENOSYS
3259 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
3261 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3263 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
3265 * Fix for uClinux (Christian Magnusson)
3267 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
3269 * fuse_main() adds "-n progname" to the fusermount command line
3271 * More kernel interface changes:
3273 * Lookup/getattr return cache timeout values
3275 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
3277 * Clean up option parsing in fuse_main()
3279 * Added fuse_get() function which returns the fuse object created
3282 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
3284 * removed old way of mounting (fusermount mountpoint program)
3286 * more kernel interface changes:
3288 * added nanosecond precision to file times
3290 * removed interface version from mount data
3292 * added /proc/fs/fuse/version which contains MAJOR.MINOR
3294 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
3296 * statfs library API changed to match other methods. Since this
3297 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3299 * kernel interface changes follow:
3301 * statfs changed to 64 bits, added 'bavail' field
3303 * add generation number to lookup result
3305 * optimized mknod/mkdir/symlink/link (no separate lookup is
3308 * rdev size increased to 32 bits for mknod
3310 * kernel interface version changed to 3.1
3312 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
3314 * user-mount upgraded for 2.6.3 kernel
3316 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
3318 * Added user-mount.2.6.2-rc3.patch
3320 * Add FS_SAFE flag to fuse filesystem
3322 * fusermount should allow (un)mounting for non-root even if not
3325 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
3327 * Remove MS_PERMISSION mount flag (that means something else now)
3329 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
3331 * Added check for i_size_read/write functions to configure.in
3332 (patch by Valient Gough)
3334 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
3336 * Fixed writing >= 2G files
3338 * Check file size on open (with generic_file_open())
3340 * Readpage calls flush_dcache_page() after storing data
3342 * Use i_size_read/write for accessing inode->i_size
3344 * Make loopback mount of a fuse file work
3346 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
3350 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
3352 * Properly check if the inode exists in fuse_invalidate
3354 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
3356 * Added -q option for fusermount
3358 * fuse_unmount() now uses -q option of fusermount, so no error is
3359 printed if the cause of the program exit is that the filesystem
3360 has already been unmounted
3362 * Fix i_nlink correctness after rmdir/unlink
3364 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3368 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3370 * Fix typo (thanks Marcos Dione)
3372 * Compile fixes for 2.4 kernels
3374 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
3376 * Fix CONFIG_MODVERSIONS compile on 2.6
3378 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
3380 * Write all pending data before a RELEASE operation
3382 * Suppress 'Bad file descriptor' warning on exit
3384 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3385 get confused with '-d' of fuse_main() (sorry about this change)
3387 * New fusermount option '-l' which enables big reads. Big reads
3388 are now disabled by default.
3390 * fuse_main() can accept fusermount arguments after a '--'
3392 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
3394 * Support for exporting filesystem over NFS (see README.NFS)
3396 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
3398 * Support non-blocking writepage on 2.6. This makes FUSE behave
3399 much more nicely in low-memory situations
3401 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3402 (Note: the mknod method does not yet use 32bit device number)
3404 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
3408 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
3412 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
3414 * Integrated 2.6 kernel support patch by Michael Grigoriev
3416 * Improvements and cleanups for 2.6 kernels
3418 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
3420 * Added -d option to fusermount
3422 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
3424 * Added major+minor version to library API, and minor version to
3427 2003-12-13 David McNab <david@rebirthing.co.nz>
3429 * Implemented fsync support in examples/example.py
3431 * Implemented 'fsync' and 'statfs' methods in python
3434 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
3436 * Make it compile on 2.4.19.
3438 * Add fsync operation (write file failed on xemacs & vi)
3440 2003-12-12 David McNab <david@rebirthing.co.nz>
3442 * Added distutils support to the python module, as per standard
3443 python development practice
3445 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
3447 * Add file locking for mount/unmount (based on patch by Valient
3450 2003-12-11 David McNab <david@rebirthing.co.nz>
3452 * Python filesystem - was broken with python2.3, now fixed:
3453 - changed PyTuple_* calls to PySequence_*, because os.lstat
3454 is no longer returning a pure tuple
3455 - changed PyInt_Check() calls to also call PyLong_Check,
3456 to cover for cases (eg os.lstat) where longs are returned
3457 - Added support for file 'release' handling, which IMO is
3458 essential since this signals to a FS that writes to a file
3459 are complete (and therefore the file can now be disposed of
3460 meaningfully at the python filesystem's discretion)
3461 - Added '__init__' handler to base Fuse class, which allows
3462 your Python class to know the mountpoint and mount args,
3463 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3466 - added 'mount.fuse' script (in util/ dir), which is meant to be
3467 symlinked from /sbin, and which allows FUSE filesystems to
3468 be mounted with the 'mount' command, and listed in fstab;
3469 also, mount arguments get passed to your filesystem
3472 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
3474 * Fix kernel version detection (again). Bugreport by Peter Levart
3476 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
3478 * Applied read combining patch by Michael Grigoriev (tested by
3479 Valient Gough and Vincent Wagelaar)
3481 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
3483 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3486 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
3488 * Error code fixes in kernel module
3490 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
3492 * kernel version detection fix
3494 * fusermount now uses "lazy" umount option
3496 * fusermount can use modprobe with module-init-tools
3498 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
3500 * Integrated caching patch by Michael Grigoriev
3502 * Added "Filesystems" file with descriptions of projects using
3505 * Added patch by Michael Grigoriev to allow compliation of FUSE
3506 kernel module for 2.6 kernels
3508 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
3510 * And another spec-file fix by Achim Settelmeier
3512 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
3514 * Spec-file fix by Achim Settelmeier
3516 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
3518 * Fix umount oops (found by Samuli Kärkkäinen)
3520 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
3522 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3524 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
3526 * Updated fuse.spec file (Achim Settelmeier)
3528 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
3530 * Version 1.0 released
3532 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
3534 * SuSE compilation fix by Juan-Mariano de Goyeneche
3536 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
3538 * The release() VFS call is now exported to the FUSE interface
3540 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
3542 * 64 bit file offset fixes in the fuse kernel module
3544 * Added function 'fuse_exit()' which can be used to exit the main
3547 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
3549 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
3550 an incompatible interface change.
3552 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
3554 * Portablility fix (bug reported by C. Chris Erway)
3556 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
3558 * Use Mark Glines' fd passing method for default operation instead
3561 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3563 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3565 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3567 * fix incompatiblity with Red Hat kernels, with help from Nathan
3570 2002-04-18 Mark Glines <mark@glines.org>
3572 * added an alternative to fuse_mount(), called
3573 fuse_mount_ioslave(), which does not need to reexec the
3575 * added a small helper util needed by fuse_mount_ioslave().
3577 2002-03-16 Mark Glines <mark@glines.org>
3579 * use struct fuse_statfs everywhere possible to avoid problems
3580 with the headerfiles changing struct statfs member sizes
3582 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
3584 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3586 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
3588 * RPM support by Achim Settelmeier
3590 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3592 * Version 0.95 released
3594 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3596 * Revaidate all path components not just the last, this means a
3597 very small performance penalty for being more up-to-date.
3599 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
3601 * Update and fix python interface
3603 2002-01-07 Mark Glines <mark@glines.org>
3605 * Added statfs() support to kernel, lib, examples, and perl!
3607 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
3609 * Better cross compilation support
3611 * Ported to Compaq IPAQ
3613 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
3615 * Added function fuse_get_context() to library API (inspired by
3616 patch from Matt Ryan)
3618 * Added flags to fusermount and to kernel interface to control
3621 * Integrated fuse_set_operations() into fuse_new()
3623 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
3625 * Applied header protection + extern "C" patch by Roland
3628 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
3630 * Added perl bindings by Mark Glines
3632 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
3634 * Cleaned up way of mounting simple filesystems.
3636 * fuse_main() helper function added
3638 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
3640 * Optimized read/write operations, so that minimal copying of data
3643 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
3645 * Python bindings by Jeff Epler added
3647 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
3649 * Fixed vfsmount reference leak in fuse_follow_link
3651 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3652 userspace is ignored
3654 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>