1 2014-07-15 Miklos Szeredi <miklos@szeredi.hu>
3 * libfuse: document deadlock avoidance for
4 fuse_notify_inval_entry() and fuse_notify_delete()
6 * fusermount, libfuse: send value as unsigned in "user_id=" and
7 "group_id=" options. Uids/gids larger than 2147483647 would
8 result in EINVAL when mounting the filesystem. This also needs a
11 * libfuse: add "time_gran" option. This allows the filesystem to
12 specify the time granularity it supports when the kernel is
13 responsible for updating times ("writeback_cache" option).
15 * libfuse: allow setting ctime in ->setattr()
17 2014-03-26 Miklos Szeredi <miklos@szeredi.hu>
19 * Initilaize stat buffer passed to ->getattr() and ->fgetattr() to
20 zero in all cases. Reported by Daniel Iwan
22 2014-03-05 Miklos Szeredi <miklos@szeredi.hu>
24 * libfuse: implement readdirplus for high-level API. Reuse the
25 old "readdir" callback, but add a flags argument, that has
26 FUSE_READDIR_PLUS in case this is a "plus" version. Filesystems
27 can safely ignore this flag, but if they want they can add
28 optimizations based on it: i.e. only retrieve the full attributes
29 in PLUS mode. The filler function is also given a flags argument
30 and the filesystem can set FUSE_FILL_DIR_PLUS if all the
31 attributes in "stat" are valid. Original patch by Eric Wong
33 2014-02-21 Miklos Szeredi <miklos@szeredi.hu>
35 * libfuse: added fuse_lo-plus.c to the examples
37 2014-02-04 Miklos Szeredi <miklos@szeredi.hu>
39 * libfuse: Don't use constructor functions for loading modules.
40 Original patch by Fabrice Bauzac
42 2014-01-29 Miklos Szeredi <miklos@szeredi.hu>
44 * libfuse: Add "async_dio" and "writeback_cache" options.
45 Asynchronous direct I/O is supported by linux kernels 3.13 and
46 later, writeback caching is supported by 3.14 and later.
48 2013-08-26 Miklos Szeredi <miklos@szeredi.hu>
50 * libfuse: Add missing includes. This allows compiling fuse with
51 musl. Patch by Daniel Thau
53 2013-07-26 Miklos Szeredi <miklos@szeredi.hu>
55 * Print help on stdout instead of stderr
57 2013-07-25 Miklos Szeredi <miklos@szeredi.hu>
59 * libfuse: fuse -> fuse3. Allow 2.X and 3.X to coexist. Includes
60 are now stored under /usr/include/fuse3 and library is named
61 libfuse3.*. Invoke pkg-config with "fuse3" as the first argument
62 to build with version 3 of the library.
64 * ulockmgr: strip ulockmgr support from this source package and
65 distribute it separately. It is not needed for the building of
66 libfuse, only fusexmp_fh. Check ulockmgr library in ./configure
67 and if not disable remote-lock suport in fusexmp_fh.
69 2013-07-24 Miklos Szeredi <miklos@szeredi.hu>
71 * libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc, add
72 AC_SYS_LARGEFILE to your configure.ac instead.
74 2013-06-21 Miklos Szeredi <miklos@szeredi.hu>
76 * libfuse: set FD_CLOEXEC also when receiving device fd from
79 2013-06-20 Miklos Szeredi <miklos@szeredi.hu>
81 * libfuse: fix multiple close of device fd. Reported by Dan
84 2013-03-19 Miklos Szeredi <miklos@szeredi.hu>
86 * libfuse: fix thread cancel race. Exiting a worker my race with
87 cancelling that same worker. This caused a segmenation
88 fault. Reported and tested by Anatol Pomozov
90 2013-02-20 Miklos Szeredi <miklos@szeredi.hu>
92 * libfuse: change the type of fuse_ino_t from 'unsigned long' to
95 * libfuse: use O_CLOEXEC flag when opening /dev/fuse device.
96 Patch by Richard W.M. Jones
98 * libfuse: don't force -D_FILE_OFFSET_BITS=64 in pkgconfig file.
99 Patch by Richard W.M. Jones
101 2013-02-19 Miklos Szeredi <miklos@szeredi.hu>
103 * fuse_daemonize(): chdir to "/" even if not running in the
104 background for consistency. Reported by Vladimir Rutsky
106 2013-02-18 Miklos Szeredi <miklos@szeredi.hu>
108 * fuse_opt_parse(): when storing a newly allocated string for
109 format "%s", free the previous value stored at that location.
110 Reported by Marco Schuster
112 2013-02-07 Miklos Szeredi <miklos@szeredi.hu>
114 * libfuse: add readdirplus support in fuse_lowlevel_ops. Patch by
117 * libfuse: add poll_events to fuse_file_info. Patch by Enke Chen
119 * libfuse: fix fs cleanup. Reported by Eric Wong
121 * libfuse: pass security context options to kernel. Patch by
124 * libfuse: remove deprecated features:
125 - fuse_is_lib_option()
127 - fuse_set_getcontext_func()
128 - fuse_loop_mt_proc()
134 - fuse_lowlevel_is_lib_option()
135 - fuse_operations.getdir()
136 - fuse_operations.utime()
137 - fuse_operations.utime_omit_ok
139 2013-02-06 Miklos Szeredi <miklos@szeredi.hu>
141 * libfuse: set close-on-exec flag on pipe file descriptors. Patch
144 * libfuse: add missing INIT flags
146 2013-02-05 Miklos Szeredi <miklos@szeredi.hu>
148 * libfuse: fix fuse_get_context() in non fuse threads. Reported
151 2013-02-04 Miklos Szeredi <miklos@szeredi.hu>
153 * libfuse: fix crash in unlock_path(). Patch by Ratna Manoj
155 * libfuse: fix the 'remember' option. The lru list was not
156 initialized for the "/" path. This resulted in remove_node_lru()
157 crashing on LOOKUP-DOTDOT. Patch by Madan Valluri
159 * libfuse: configure: detect new util-linux
161 * libfuse: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
162 Patch by Anatol Pomozov
164 * libfuse: rename ./configure.in to ./configure.ac. Patch by
167 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
171 2012-10-01 Miklos Szeredi <miklos@szeredi.hu>
173 * Fix deadlock in libfuse. Running "svn update" on a fuse
174 filesystem could deadlock because of a bug in the way the paths
175 are locked. Reported by Kazuaki Anami
177 2012-08-23 Miklos Szeredi <miklos@szeredi.hu>
179 * Fix missing config.h in buffer.c. Reported by Matthew Gabeler-Lee
181 2012-08-14 Miklos Szeredi <miklos@szeredi.hu>
183 * Not unhashing the name in forget (commit on 2011-12-09) broke
184 the forget logic in a subtle way, resulting in "fuse internal
185 error: node NNN not found" and causing the filesystem daemon to
186 abort. Fix by incrementing the node refcount if nlookup goes from
187 zero to one. Reported by Kyle Lippincott
189 2012-08-13 Miklos Szeredi <miklos@szeredi.hu>
191 * Fix linking against GNU libiconv. Patch by Natanael Copa
193 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
195 * Start of 3.0 series. This is going to be a new major version of
196 the library breaking backward compatibility on the binary level as
197 well as the source level.
199 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
203 2012-07-19 Miklos Szeredi <miklos@szeredi.hu>
205 * Fix crash caused by freeing a stack address. Reported by Itay
208 2012-07-04 Miklos Szeredi <miklos@szeredi.hu>
210 * Fix install of mount.fuse from out-of-tree build. Patch by
213 * Fix build with automake >= 1.12.1. Patch by Olivier Blin
215 2012-04-24 Miklos Szeredi <miklos@szeredi.hu>
217 * Add fallocate operation. Only works on linux kernels 3.5 or
218 later. Patch by Anatol Pomozov
220 2012-05-16 Miklos Szeredi <miklos@szeredi.hu>
222 * Linking to a library that uses threads requires the application
223 to be linked with -pthreads otherwise some pthread functions will
224 be linked to stubs in glibc. So move -pthread from Libs.private
225 to Libs in fuse.pc. Reported by Werner Fink
227 * Fix the compile command in the examples. Reported by Luciano
230 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
234 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
236 * Add missing fuse_fs_flock to fuse_versionscript
238 2012-04-10 Miklos Szeredi <miklos@szeredi.hu>
240 * Check protocol version before sending notifications and return
241 -ENOSYS if a particular notification is not supported.
243 * Add 'flag_utime_omit_ok' flag to fuse_operations. If the
244 filesystem sets this flag then ->utimens() will receive UTIME_OMIT
245 and UTIME_NOW values as specified in utimensat(2).
247 2012-01-27 Miklos Szeredi <miklos@szeredi.hu>
249 * Interpret octal escape codes in options. Requested by Jan
252 2012-01-26 Miklos Szeredi <miklos@szeredi.hu>
254 * Add man pages for fusermount, mount.fuse and ulockmgr_server.
255 Lifted from the Debian package. The man pages were written by
256 Daniel Baumann and Bastien Roucaries
258 2012-01-13 Miklos Szeredi <miklos@szeredi.hu>
260 * Disable symbol versions on MacOSX. Patch by Anatol Pomozov
262 2012-01-02 Miklos Szeredi <miklos@szeredi.hu>
264 * Remove unnecessary mutex unlock at the end of multithreaded
267 2011-12-09 Miklos Szeredi <miklos@szeredi.hu>
269 * Fix hang in wait_on_path(). Reported by Ville Silventoinen
271 * Don't unhash name in FORGET. This resulted in ENOENT being
272 returned for unlinked but still open files if the kernel sent a
273 FORGET request for the parent directory.
275 * Free request in fuse_reply_data().
277 2011-12-08 Miklos Szeredi <miklos@szeredi.hu>
279 * Fix build if FUSE_NODE_SLAB is not defined. Patch by Emmanuel
282 * Check for availability of utimensat() function. Patch by
285 2011-12-07 Miklos Szeredi <miklos@szeredi.hu>
287 * Add fuse_lowlevel_notify_delete() which tells the kernel that a
288 file or directory is deleted. Patch by John Muir
290 2011-12-06 Miklos Szeredi <miklos@szeredi.hu>
292 * Update retrieve_reply() method
294 2011-12-05 Miklos Szeredi <miklos@szeredi.hu>
296 * Low level API: lock argument of fuse_reply_lock should have a
297 'const' qualifier. Reported by Shachar Sharon
299 * Add support for ioctl on directories. Reported by Antonio SJ
302 2011-10-13 Miklos Szeredi <miklos@szeredi.hu>
304 * Reply to request with ENOMEM in case of failure to allocate
305 request structure. Otherwise the task issuing the request will
306 just freeze up until the filesystem daemon is killed. Reported by
309 2011-09-23 Miklos Szeredi <miklos@szeredi.hu>
311 * Replace daemon() function with fork(). Patch by Anatol Pomozov
313 2011-08-26 Miklos Szeredi <miklos@szeredi.hu>
315 * If configured with --disable-mtab then don't call mount(8) from
316 libfuse to update the mtab. Reported by: James Sierp
318 2011-08-24 Miklos Szeredi <miklos@szeredi.hu>
320 * Use LRU list for cleaning up the cache if the "remember=T"
321 option was given. Patch by therealneworld@gmail.com
323 2011-07-06 Miklos Szeredi <miklos@szeredi.hu>
325 * Add ->flock() operation to low and high level interfaces. This
326 fixes problems with emulating flock() with POSIX locking.
327 Reported by Sebastian Pipping. As with lock/setlk/getlk most
328 filesystems don't need to implement this, as the kernel takes care
329 of file locking. The only reason to implement locking operations
330 is for network filesystems which want file locking to work between
333 2011-07-02 Sebastian Pipping <sebastian@pipping.org>
335 * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
336 not follow symlinks as other layers do that already.
338 2011-06-02 Miklos Szeredi <miklos@szeredi.hu>
340 * Add "remember" option. This works similar to "noforget" except
341 that eventually the node will be allowed to expire from the cache.
342 Patch by therealneworld@gmail.com
344 2011-05-27 Miklos Szeredi <miklos@szeredi.hu>
346 * Check if splice/vmsplice are supported
348 2011-05-26 Miklos Szeredi <miklos@szeredi.hu>
350 * Remove -lrt -ldl from fuse.pc for dynamic linking since
351 libfuse.so is already linked with these libraries. Reported by:
354 2011-05-20 Miklos Szeredi <miklos@szeredi.hu>
356 * Cleaner build output. Patch by Reuben Hawkins
358 2011-05-19 Miklos Szeredi <miklos@szeredi.hu>
360 * Disable splice by default, add "splice_read", "splice_write" and
361 "splice_move" options. Keep the "no_splice_*" variants, which can
362 disable splice even if the filesystem explicitly enables it.
364 2011-04-15 Max Krasnyansky <maxk@kernel.org>
365 * Added support for "auto_unmount" option which unmounts the
366 filesystem automatically on process exit (or crash).
368 2011-03-30 Miklos Szeredi <miklos@szeredi.hu>
370 * Patches by Laszlo Papp fixing various issues found by the
373 2011-03-11 Miklos Szeredi <miklos@szeredi.hu>
375 * In case of failure to add to /etc/mtab don't umount. Reported
378 2011-02-02 Miklos Szeredi <miklos@szeredi.hu>
380 * libfuse: In fuse_session_loop_mt() don't pause when exiting the
381 worker threads. The pause() was added in 2.2.1 to prevent
382 segfault on pthread_cancel() on an exited, detached thread. Now
383 worker threads are not detached and pthread_cancel() should work
384 fine even after the thread exited. Reported by Boris Protopopov
386 2011-01-31 Miklos Szeredi <miklos@szeredi.hu>
388 * fusermount: chdir to / before performing mount/umount
390 * fusermount: only allow mount and umount if util-linux supports
393 2010-12-16 Miklos Szeredi <miklos@szeredi.hu>
395 * Highlevel lib: allow hash tables to shrink
397 * Highlevel lib: add slab allocation for node cache. This will
398 allow the memory used by the filesystem to grow and shrink
399 depending on how many inodes are currently cached.
401 2010-12-13 Miklos Szeredi <miklos@szeredi.hu>
403 * Highlevel lib: use dynamically resized hash table for looking up
406 2010-12-07 Miklos Szeredi <miklos@szeredi.hu>
408 * Allow batching of forget requests. This allows forget requests
409 to be processed faster and doesn't require a modification to fuse
410 filesystems. Reported by Terje Malmedal
412 * Add ->forget_multi() operation to the lowlevel API. The
413 filesystem may implement this to process multiple forget requests
416 * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
417 for 32bit vs. 64bit userspace
419 2010-11-10 Miklos Szeredi <miklos@szeredi.hu>
421 * Add new write_buf() method to the highlevel API. Similarly to
422 the lowlevel write_buf() method, this allows implementing zero
425 * Add a new read_buf() method to the highlevel API. This allows
426 returning a generic buffer from the read method, which in turn
427 allows zero copy reads.
429 * In fusexmp_fh implement the ->read_buf() and ->write_buf()
430 methods. Leave the ->read() and ->write() implementations for
431 reference, even though they are not necessary.
433 2010-11-08 Miklos Szeredi <miklos@szeredi.hu>
435 * Fix check for read-only fs in mtab update
437 * Open /dev/null for write instead of read for redirecting stdout
440 * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
441 version 2.18 or later), and umount(2) supports the
442 UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then,
443 "fusermount -u" will call the umount(2) system call and use
444 "umount --fake ..." to update /etc/mtab
446 * Added --disable-legacy-umount option to configure. This
447 disables the runtime checking of umount(8) version. When built
448 with this option then "fusermount -u" will fail if umount(8)
449 doesn't support the --fake and --no-canonicalize options.
451 * Fix fuse_buf_copy() if already at the end of the buffers
453 * Add new ->write_buf() method to low level interface. This
454 allows passig a generic buffer, either containing a memory buffer
455 or a file descriptor. This allows implementing zero copy writes.
457 * Add fuse_session_receive_buf() and fuse_session_process_buf()
458 which may be used in event loop implementations to replace
459 fuse_chan_recv() and fuse_session_process() respectively.
461 * Remove unnecessary restoring of current working directory in
464 * Add ctx->pid to debug output
466 * Fix st_nlink value in high level lib if file is unlinked but
469 * libfuse: add store request. Request data to be stored in the
470 kernel buffers for a given inode.
472 * libfuse: add retrieve request. Retrieve data stored in the
473 kernel buffers for a given inode.
475 2010-10-14 Miklos Szeredi <miklos@szeredi.hu>
477 * Use LTLIBICONV when linking libfuse. This fixes building against
478 uclibc + libiconv. Patch by Natanael Copa
480 2010-10-05 Miklos Szeredi <miklos@szeredi.hu>
482 * Add missing argument check in ulockmgr.c to prevent calling
483 ulockmgr_server with illegal arguments. This would cause an ever
484 growing list of ulockmgr_server processes with an endless list of
485 open files which finally exceeds the open file handle limit.
486 Patch by Markus Ammer
488 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
490 * Fix ambiguous symbol version for fuse_chan_new.
491 fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
492 FUSE_2.6. Remove the FUSE_2.4, which is invalid.
494 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
496 * Fix option escaping for fusermount. If the "fsname=" option
497 contained a comma then the option parser in fusermount was
498 confused (Novell bugzilla #641480). Fix by escaping commas when
499 passing them over to fusermount. Reported by Jan Engelhardt
501 2010-08-27 Miklos Szeredi <miklos@szeredi.hu>
503 * Add NetBSD support. Patch from Emmanuel Dreyfus
505 2010-07-12 Miklos Szeredi <miklos@szeredi.hu>
507 * libfuse: add buffer interface. Add a generic buffer interface
508 for use with I/O. Buffer vectors are supplied and each buffer in
509 the vector may be a memory pointer or a file descriptor.
511 * The fuse_reply_fd() interface is converted to using buffers.
513 2010-06-23 Miklos Szeredi <miklos@szeredi.hu>
515 * Make the number of max background requests and congestion
516 threshold tunable. New options are "max_background" and
517 "congestion_threshold". Only effective on linux kernel versions
518 2.6.32 or greater. Patch by Csaba Henk
520 2010-06-17 Miklos Szeredi <miklos@szeredi.hu>
522 * Add fuse_reply_fd() reply function to the low level interface.
523 On linux version 2.6.35 or greater this will use splice() to move
524 data directly from a file descriptor to the fuse device without
525 needing to go though a userspace buffer. With the
526 FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
527 directly into the filesystem's cache. On earlier kernels it will
528 fall back to an intermediate buffer. The options
529 "no_splice_write" and "no_splice_move" can be used to disable
530 splicing and moving respectively.
532 2010-06-15 Miklos Szeredi <miklos@szeredi.hu>
534 * Fix out-of-source build. Patch by Jörg Faschingbauer
536 * Add a "nopath" option and flag, indicating that path argument
537 need not be calculated for the following operations: read, write,
538 flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
539 fgetattr, lock, ioctl and poll.
541 2010-05-10 Miklos Szeredi <miklos@szeredi.hu>
543 * Remove "chmod root" from install of fusermount. Reported by
546 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
550 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
552 * Fix checking for symlinks in umount from /tmp. Reported by Al
555 * Fix umounting if /tmp is a symlink. Reported by Franco Broi
557 2010-02-18 Miklos Szeredi <miklos@szeredi.hu>
559 * Fix definition of FUSE_OPT_END for C++. Reported by Tim
562 2010-02-03 Miklos Szeredi <miklos@szeredi.hu>
564 * Fix stack alignment for clone()
566 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
570 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
572 * Using "--no-canonicalize" with umount(8) conflicts with the race
573 fix, sinceit assumes the supplied path is absolute, while the race
574 fix relies on the path being relative to the current directory.
575 Reported by Tom Rindborg
577 2010-01-26 Miklos Szeredi <miklos@szeredi.hu>
581 2010-01-21 Miklos Szeredi <miklos@szeredi.hu>
583 * Fix race if two "fusermount -u" instances are run in parallel.
584 Reported by Dan Rosenberg
586 * Make sure that the path to be unmounted doesn't refer to a
589 2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
591 * Fix compile error on FreeBSD. Patch by Jay Sullivan
593 2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
595 * Use '--no-canonicalize' option of mount(8) (available in
596 util-linux-ng version 2.17 or greater) to avoid calling
597 readling(2) on the newly mounted filesystem before the mount
598 procedure is finished. This has caused a deadlock if "audit" was
599 enabled in the kernel. Also use '--no-canonicalize' for umount to
600 avoid touching the mounted filesystem.
602 2009-09-11 Miklos Szeredi <miklos@szeredi.hu>
606 2009-08-25 Miklos Szeredi <miklos@szeredi.hu>
608 * Fix missing versioned symbol fuse_get_context@FUSE_2.2
610 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
614 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
616 * Add missing fuse_session_data to versionscript
618 * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
620 2009-07-16 Miklos Szeredi <miklos@szeredi.hu>
622 * Clarify how the protocol version should be negotiated between
623 kernel and userspace. Notably libfuse didn't correctly handle the
624 case when the supported major versions didn't match
626 * Add missing pthread link for libulockmgr. Patch by Petr Salinger
628 2009-07-02 Miklos Szeredi <miklos@szeredi.hu>
630 * The context is extended with a 'umask' field. The umask is sent
631 for mknod, mkdir and create requests by linux kernel version
632 2.6.31 or later, otherwise the umask is set to zero. Also
633 introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel
634 supports this feature, then this flag will be set in conn->capable
635 in the ->init() method. If the filesystem sets this flag in in
636 conn->want, then the create modes will not be masked.
638 * Add low level interfaces for lookup cache and attribute
639 invalidation. This feature is available in linux kernels 2.6.31
640 or later. Patch by John Muir
642 * Kernel interface version is now 7.12
644 * fusermount: Do not silently ignore command line arguments.
645 Patch by Sebastian Harl
647 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
649 * Released 2.8.0-pre3
651 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
653 * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
654 level lib) functions to query the supplementary group IDs for the
655 current request. Currently this is implemented on Linux by
656 reading from the /proc filesystem.
658 2009-06-18 Miklos Szeredi <miklos@szeredi.hu>
660 * Add "noforget" option to high level lib to prevent ESTALE errors
661 on NFS exported filesystems. This result in paths being cached
662 forever, resulting in ever growing memory usage. Use with care.
664 * Add "no_remote_lock" option to disable remote file locking even
665 if the filesystem implements it. With this option locking
666 primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
667 will ignore remotely locked files.
669 * CUSE patches from Tejun Heo:
671 * Unrestricted ioctl support left some debris. Clean them up:
672 o No reason to pass around pointer to flags. Pass flags directly.
673 o Clean up comment and prototype parameter names.
674 o fuse_lib_ioctl() didn't reply when get_path() failed. Fix it.
675 o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
677 * Add fuse_reply_ioctl_iov()
679 * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
680 and make send_reply_iov() and fuse_setup_common() global (also in
681 fuse_i.h). These will be used by CUSE support.
683 * Restructure fuse_ll_process()
685 * Implement libfuse side of CUSE support. CUSE uses subset of FUSE
686 operations as dir operations don't make sense for CUSE where one
687 instance implements single character device.
689 CUSE support comes with its own cuse_lowevel_ops and related
690 initialization and helper functions. Except for initialization, it
691 usage is basically identical to FUSE.
693 This patch also adds example/cusexmp.c which can create a character
694 device with name and device number specified on command line. The
695 created device itself is pretty boring. It's a bit bucket supporting
696 read, write and access via ioctl.
698 2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
700 * Add missing fuse_reply_bmap to versionscript. Debian
701 Bug#531329. Reported by Goswin Brederlow
703 2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
705 * Don't call forget_node() if the lookup was negative and write()
706 for the reply returned ENOENT. Reported by John Haxby
708 2009-05-25 Miklos Szeredi <miklos@szeredi.hu>
710 * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
712 2009-05-08 Miklos Szeredi <miklos@szeredi.hu>
714 * Fix missing newlines in some printfs
716 * Fix 'make install-strip'. Reported by Dominick Layfield
718 2009-01-05 Miklos Szeredi <miklos@szeredi.hu>
720 * Released 2.8.0-pre2
722 2008-12-08 Miklos Szeredi <miklos@szeredi.hu>
724 * Implement poll support. Patch by Tejun Heo
726 * Add missing setattr flags to <fuse_lowlevel.h>.
728 * Only pass valid flags to ->setattr().
730 2008-12-05 Miklos Szeredi <miklos@szeredi.hu>
732 * Implement ioctl support. On high level interface only
733 "restricted" ioctls are supported (which are defined with the
734 _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls
735 will only be allwed to CUSE (Character Device in Userspace)
736 servers. Patch by Tejun Heo
738 2008-11-28 Miklos Szeredi <miklos@szeredi.hu>
740 * If open sets fi->nonseekable, libfuse will tell the kernel that
741 the file is not seekable. Patch by Tejun Heo
743 2008-11-19 Miklos Szeredi <miklos@szeredi.hu>
745 * lowlevel lib: fix deadlock if fuse_reply_* is called from the
746 interrupt handling function. Reported by Tero Marttila
748 2008-10-16 Miklos Szeredi <miklos@szeredi.hu>
750 * Allow commas in options to be escaped with a backslash
752 * Add new function: fuse_opt_add_opt_escaped()
754 * Add missing fuse_reply_bmap() to the version script
756 2008-10-14 Miklos Szeredi <miklos@szeredi.hu>
758 * Pass current file flags to read and write operations
760 2008-07-24 Miklos Szeredi <miklos@szeredi.hu>
762 * Clean up debug output in highlevel lib
764 2008-07-10 Miklos Szeredi <miklos@szeredi.hu>
766 * Released 2.8.0-pre1
768 2008-06-27 Miklos Szeredi <miklos@szeredi.hu>
770 * Fix handling of (no)suid and (no)dev options if filesystem is
771 mounted from /etc/fstab or via mount(8). Reported by Jan Ondrej.
773 * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
774 read-only filesystem. This works around issues with certain mount
775 implementations. Reported by Szabolcs Szakacsits.
777 2008-06-16 Miklos Szeredi <miklos@szeredi.hu>
779 * Remove fuse kernel module sources. Linux 2.6.27 will support
782 2008-06-10 Miklos Szeredi <miklos@szeredi.hu>
784 * Fix theoretical infinite loops in libfuse. Reported by Szabolcs
787 * Fix missing <sys/param.h> include for PATH_MAX. Reported by
790 2008-05-23 Miklos Szeredi <miklos@szeredi.hu>
792 * Fix mounting over symlink. Reported by Szabolcs Szakacsits
794 2008-05-09 Miklos Szeredi <miklos@szeredi.hu>
796 * Don't allow bigger than 4kB writes by default on 2.6.26 and
797 later kernels, so that filesystems not expecting this are not
798 broken on a kernel upgrade. Provide a 'big_writes' mount option
799 to enable this feature. In future API revisions this may become
802 2008-04-09 Miklos Szeredi <miklos@szeredi.hu>
804 * Update warning message for missing newline at end of fuse.conf
806 * Update debug message for successful operation to not include the
809 2008-04-08 Miklos Szeredi <miklos@szeredi.hu>
811 * Update error message for missing mountpoint parameter. Reported
814 2008-04-04 Miklos Szeredi <miklos@szeredi.hu>
816 * Print library version information to debug output
818 * Highlevel lib: don't limit paths to 4095 characters
820 2008-03-25 Miklos Szeredi <miklos@szeredi.hu>
822 * Fix memory leaks on mount. Patch by Szabolcs Szakacsits
824 2008-03-19 Miklos Szeredi <miklos@szeredi.hu>
826 * Fix missing pthread_mutex_destroy in error path of
827 fuse_lib_opendir(). Patch by Szabolcs Szakacsits
829 2008-03-07 Miklos Szeredi <miklos@szeredi.hu>
831 * Add queuing on contention to per-node lock algorithm, to avoid
834 * Only enable cancelation when reading a request, otherwise
835 cancellation could happen with a mutex held, which could hang the
838 2008-02-08 Miklos Szeredi <miklos@szeredi.hu>
840 * Block SIGCHLD when executing mount and umount
842 * fusexmp_fh: avoid unnecessary seeking in readdir
844 * Update kernel interface to 7.9:
846 * Support receiving file handle from kernel in GETATTR request
848 * Allow operations with a NULL path argument, if the filesystem
851 * Add support atomic open(O_TRUNC)
853 * Support the st_blksize field in struct stat
855 * If the "FUSE_THREAD_STACK" environment is set, initialize the
856 stack size of threads by this value. Patch by Florin Malita
858 * Add per-node locking, instead of a global tree lock to protect
859 the path from changing during operations. Original patch by
862 2008-02-03 Csaba Henk <csaba.henk@creo.hu>
865 - string formatting fixes
866 - exit if mounting has failed
867 (in FreeBSD a mount failure is not critical per se, as the daemon
868 still could be mounted externally, but waiting for such an event
869 is more confusing than fruitful)
870 - ditch the kvm(8) stuff and simply use forced unmount which just
872 - prettify option specifications
873 - add "-onosync_unmount" kernel option
875 2008-01-07 Csaba Henk <csaba.henk@creo.hu>
878 - refine device closing in a race-free way
879 - add support for "-osubtype" on FreeBSD
881 * makeconf.sh: make it work under FreeBSD
883 2008-01-03 Csaba Henk <csaba.henk@creo.hu>
885 * lib/mount_bsd.c: close device before unmount
886 (cf. lib/mount.c rev. 1.43) and fix some warnings
888 2007-12-23 Miklos Szeredi <miklos@szeredi.hu>
890 * Fix './configure --disable-static'. Patch from Ismail Dönmez
892 2007-12-17 Miklos Szeredi <miklos@szeredi.hu>
896 2007-12-12 Miklos Szeredi <miklos@szeredi.hu>
898 * Fix kernel module compile for 2.6.24
900 * Invalidate attributes of parent directory after create(), since
901 the modification time changes. Invalidate attributes on rename,
902 since some filesystems may update st_ctime. Reported by Szabolcs
905 * Fix NFS exporting to handle 64bit node IDs
907 * Disable old symbol versions if __UCLIBC__ is defined. If a
908 symbol in a library has multiple versions, the runtime linker in
909 uClibc seems to randomly choose between them.
911 * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
912 fuse_version_script. fuse_opt_free_args() was added in fuse-2.6.
914 * Close fuse device file descriptor before calling umount(),
915 preventing a deadlock when umount is synchronous. Reported by
918 2007-11-12 Miklos Szeredi <miklos@szeredi.hu>
920 * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
921 symlink. This bug was introduced in 2.7.1 by "Don't call
922 /bin/[u]mount if /etc/mtab is a symlink". Found by robertsong.
924 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
928 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
930 * Clarify licence version to be "LGPLv2" for the library
934 * After mount set nlink attribute for the root inode to 1
936 * Fix wake up of task waiting for a reserved request
938 * Fix allowing setattr, listxattr and statfs for other users
940 2007-09-18 Miklos Szeredi <miklos@szeredi.hu>
942 * Add missing context initialization in fuse_fs_chmod(). Bug
945 * Fix kernel module compilation for 2.6.23. Based on patch by
948 2007-09-04 Philippe Elie <phil.el@wanadoo.fr>
950 * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
952 2007-07-31 Miklos Szeredi <miklos@szeredi.hu>
954 * Work around hotplug issue, that it calls filesystem with file
955 descriptors 0, 1 and 2 not open. Tracked down by Leif Johnson
957 2007-07-25 Miklos Szeredi <miklos@szeredi.hu>
959 * Don't call /bin/[u]mount if /etc/mtab is a symlink. Reported by
962 * Also don't touch /etc/mtab if it is within the mounted
963 filesystem. Suggested by Jeffrey Law
965 2007-07-12 Miklos Szeredi <miklos@szeredi.hu>
967 * Reset args->argc in fuse_opt_free_args(). Patch by Lucas
970 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
974 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
976 * Accept a NULL "op" for fuse_main(), etc. This is useful if
977 filesystem is only invoking fuse to print a help message, or
978 version. Fixes RedHat bugzilla #217343
980 2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
982 * lib: fix locking when loading a filesystem module
984 2007-06-21 Miklos Szeredi <miklos@szeredi.hu>
986 * Add fs subtype support to mount.fuse
988 2007-06-20 Miklos Szeredi <miklos@szeredi.hu>
990 * Add fs subtype support to libfuse and fusermount
992 2007-06-19 Miklos Szeredi <miklos@szeredi.hu>
994 * kernel: sync with mainline (2.6.22)
996 2007-06-18 Miklos Szeredi <miklos@szeredi.hu>
998 * Send debug output to stderr instead of stdout. Patch by Jan
1001 2007-06-03 Miklos Szeredi <miklos@szeredi.hu>
1003 * libulockmgr: Work around a kernel bug in recv(), causing it to
1004 sometimes return zero even if data was available on the socket.
1006 2007-05-29 Miklos Szeredi <miklos@szeredi.hu>
1008 * lib: optimization: store parent pointer in node instead of
1011 2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
1013 * lib: don't create new thread for each FORGET request. FORGET
1014 messages sometimes caused so many threads to be created, that
1015 process virtual memory space ran out. Reported by Chris AtLee
1017 2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
1019 * lib: fix memory leak on thread creation failure in multithreaded
1020 event loop. Found by Chris AtLee
1022 2007-05-23 Miklos Szeredi <miklos@szeredi.hu>
1024 * lowlevel lib: add fuse_reply_iov function, which is similar to
1025 fuse_reply_buf, but accepts a vector of buffers. Patch by Roger
1028 2007-05-21 Miklos Szeredi <miklos@szeredi.hu>
1030 * Fix Oops or error if a regular file is created with mknod(2) on
1031 a fuse filesystem. Kernels 2.6.18 onward are affected. Thanks to
1032 J. Cameijo Cerdeira for the report
1034 2007-05-11 Csaba Henk <csaba.henk@creo.hu>
1036 * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
1037 Error reported by Csaba Henk, fix by Miklos Szeredi
1039 * libfuse: fix unlock in flush
1041 * libfuse: do unlocking on RELEASE+FLUSH
1043 2007-05-03 Miklos Szeredi <miklos@szeredi.hu>
1045 * Released 2.7.0-rc1
1047 2007-05-02 Miklos Szeredi <miklos@szeredi.hu>
1049 * kernel: sync with mainline:
1051 * Use invalidate_mapping_pages() if available
1053 * Fix BUG when invalid file type is supplied in mount. Patch by
1056 2007-04-27 Miklos Szeredi <miklos@szeredi.hu>
1058 * libfuse: call umount(8) directly instead of fusermount if
1061 * Clean up init script, make it LSB compliant
1063 2007-04-26 Miklos Szeredi <miklos@szeredi.hu>
1065 * In multithreaded loop, use a semaphore instead of SIGHUP to wake
1066 up the main thread on umount. This is more elegant, and works
1067 even if signals are blocked.
1069 2007-04-25 Miklos Szeredi <miklos@szeredi.hu>
1071 * Improve mounting support in libfuse:
1072 - check non-empty mountpoint
1073 - only fall back to fusermount when necessary
1075 2007-04-23 Miklos Szeredi <miklos@szeredi.hu>
1077 * Don't chdir to "/" in foreground mode, it causes more trouble
1080 2007-04-18 Miklos Szeredi <miklos@szeredi.hu>
1082 * Replace utils/mount.fuse "sh" script with a "C" program
1084 2007-04-15 Miklos Szeredi <miklos@szeredi.hu>
1086 * Add -lulockmgr to compilation comment in fusexmp_fh.c
1088 2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
1090 * Check for iconv. Patch by Csaba Henk
1092 * Add direct umounting
1094 * Use "fusectl" as the device for the fusectl filesystem. Debian
1095 Bug#417945. Reported by Laurent Bonnaud
1097 2007-04-01 Csaba Henk <csaba.henk@creo.hu>
1099 * Fix some FreeBSD related macros.
1101 2007-03-30 Miklos Szeredi <miklos@szeredi.hu>
1103 * Add support for direct mounting by libfuse. Fall back on
1104 calling fusermount if it doesn't work
1106 2007-03-14 Miklos Szeredi <miklos@szeredi.hu>
1108 * Released 2.7.0-pre1
1110 2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
1112 * Correctly handle O_APPEND in direct IO mode. Reported by Greg
1115 * mount.fuse should use /bin/bash. Debian Bug#413403. Reported
1116 by Thomas Weinbrenner
1118 2007-02-26 Miklos Szeredi <miklos@szeredi.hu>
1120 * Fix detection of installed fuse in init script. Reported and
1121 fix suggested by Davide Canova
1123 2007-02-05 Miklos Szeredi <miklos@szeredi.hu>
1125 * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
1126 don't define mutex_destroy(), bummer. Patch from Phil Schwan
1128 2007-02-04 Miklos Szeredi <miklos@szeredi.hu>
1130 * Compile fuseblk for kernels which don't have an option to turn
1131 off the block layer (CONFIG_BLOCK). Reported by Szakacsits
1134 2007-02-03 Miklos Szeredi <miklos@szeredi.hu>
1136 * Add filesystem stacking support to high level API. Filesystem
1137 modules can be built into libfuse or loaded from shared object
1140 * Add 'subdir' and 'iconv' built in modules
1142 * lib/fuse.c: Fix locking for the reply code in create and open
1144 2007-02-02 Miklos Szeredi <miklos@szeredi.hu>
1146 * kernel: make it compile on "strange" kernels which have emulated
1147 mutexes via <linux/mutex.h> but no i_mutex. Reported by Tomasz
1150 2007-01-28 Miklos Szeredi <miklos@szeredi.hu>
1152 * kernel: fix BUG in control filesystem if it is umounted and
1153 mounted again, while some fuse filesystems are present.
1154 Bugreport from Florent Mertens
1156 * kernel: sync with mainline, support 2.6.20
1158 2007-01-22 Miklos Szeredi <miklos@szeredi.hu>
1160 * lib/Makefile.am: actually link libfuse against libfuse_libs
1162 2007-01-19 Miklos Szeredi <miklos@szeredi.hu>
1164 * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels. Patch from
1167 2007-01-18 Miklos Szeredi <miklos@szeredi.hu>
1169 * Fix abort in fuse_new() compatibility API for opts == NULL case.
1170 Novell bugzilla #233870. Patch from Takashi Iwai.
1172 2007-01-13 Miklos Szeredi <miklos@szeredi.hu>
1174 * Fix option parsing in mount.fuse. Patch from Jens M. Noedler
1176 2007-01-02 Miklos Szeredi <miklos@szeredi.hu>
1178 * Fix unaligned access in file desctriptor passing in libfuse,
1179 fusermount and ulockmgr. Debian bug ID: 404904. Reported and
1180 tested by Sebastian Fontius
1182 2006-12-16 Miklos Szeredi <miklos@szeredi.hu>
1184 * kernel: don't keep unreferenced inodes in the icache.
1186 2006-12-15 Miklos Szeredi <miklos@szeredi.hu>
1188 * fusermount: Fix detection of fuseblk. Reported by Szakacsits
1191 * lib: Fix use after free in fuse_flush(). Reported by Ron
1194 2006-12-10 Miklos Szeredi <miklos@szeredi.hu>
1196 * mount.fuse: add "setuid=USER" option which does a "su - USER"
1199 * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
1200 "/bin/umount" to remove entry from /etc/mtab. This gets rid of
1201 the ugly code dealing with mtab, as well as a possible race
1202 between fusermount and mount trying to modify /etc/mtab at the
1205 * Fix "buffer size too small: 4" warning for users of the
1206 fuse_loop_mt_proc() function.
1208 2006-12-04 Miklos Szeredi <miklos@szeredi.hu>
1210 * Fix warnings with gcc-4.1 on 64bit archs. Report from
1213 * Add extra warning options, and fix resulting warnings
1215 * Really fix fuse_teardown problem
1217 2006-12-02 Miklos Szeredi <miklos@szeredi.hu>
1219 * Add -lrt to fuse.pc (if needed) to fix static linking against
1220 libfuse. Reported by Szakacsits Szabolcs
1222 2006-12-01 Miklos Szeredi <miklos@szeredi.hu>
1226 2006-11-30 Miklos Szeredi <miklos@szeredi.hu>
1228 * Fix API version 21 and 22 compatibility for fuse_teardown.
1231 2006-11-29 Miklos Szeredi <miklos@szeredi.hu>
1233 * fusermount: Print a more helpful message in case the kernel
1234 doesn't support the 'fuseblk' filesystem type. This has been
1235 biting ntfs-3g users. Reported by Yura Pakhuchiy
1237 * kernel: fix build problem for "make -C ...". Reported by
1240 2006-11-19 Miklos Szeredi <miklos@szeredi.hu>
1242 * Fix bug in certain error paths of lookup routines. The request
1243 object was reused for sending FORGET, which is illegal. This bug
1244 could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1245 silently corrupt memory in earlier versions. Report and test
1248 2006-11-11 Miklos Szeredi <miklos@szeredi.hu>
1250 * Print an error if an incompatible kernel interface version is
1251 detected in INIT. This will only show if filesystem is started
1254 * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1255 fuse_setup_common(). Reported by Szakacsits Szabolcs
1257 2006-11-06 Miklos Szeredi <miklos@szeredi.hu>
1259 * Fix recursive locking in fuse_create(). Thanks to Takuya
1260 Ishibashi for the bug report
1262 2006-10-28 Miklos Szeredi <miklos@szeredi.hu>
1264 * Fix automake problem. Patch from Nix
1266 2006-10-26 Miklos Szeredi <miklos@szeredi.hu>
1268 * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1269 always available on embedded systems. Patch from Paul Smith
1271 * Fix util/Makefile.am, so that failure to run update-rc.d or
1272 device creation doesn't cause make to fail. Reported by Paul
1275 2006-10-21 Miklos Szeredi <miklos@szeredi.hu>
1279 2006-10-18 Miklos Szeredi <miklos@szeredi.hu>
1281 * fusermount: don't try to create a lock file if /etc/mtab is a
1282 symlink. Report and patch from Alexei Sheplyakov (debian bug
1285 2006-10-17 Miklos Szeredi <miklos@szeredi.hu>
1287 * Minor changes, sync with mainline tree
1289 2006-10-16 Miklos Szeredi <miklos@szeredi.hu>
1291 * Released 2.6.0-rc3
1293 2006-10-15 Miklos Szeredi <miklos@szeredi.hu>
1297 2006-10-13 Miklos Szeredi <miklos@szeredi.hu>
1299 * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1300 Report from David Shaw
1302 * lib: Fix lost error on renaming a file. Report from David Shaw
1304 * lib: Fix lost error on hiding open files (renaming to
1307 * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1308 activity. The cause of the bug was that some calls to
1309 i_size_write() were not protected by a lock, and hence
1310 i_size_seqcount could become corrupted. This caused subsequent
1311 calls to i_size_read() to spin forever. This is a long standing
1312 bug was probably introduced in version 2.2, and thought to be
1313 related to NFS exporting (it's not). It was reported by various
1314 people, but Dana Henriksen has finally helped me to track it down,
1315 so big thanks to him
1317 * kernel: Protect against truncation of a swapfile
1319 2006-10-10 Miklos Szeredi <miklos@szeredi.hu>
1321 * kernel: Check for signature of super_operations->umount_begin().
1322 Ubuntu kernel 2.6.17 seems to use the new signature found in
1323 2.6.18. Thanks to Florent Mertens for the report
1325 2006-10-08 Miklos Szeredi <miklos@szeredi.hu>
1327 * Make sure inode numers wrap around at 2^32. This is needed on
1328 dual 64bit/32bit architectures, because 32bit applications using
1329 the non-largefile interface would otherwise break (EOVERFLOW error
1330 would be returned by the stat() system call family)
1332 * ulockmgr: handle the case, when a locking operation fails
1333 because no more file desctriptors are available in
1334 ulockmgr_server. Also work around a Linux kernel bug (known to
1335 exist for all Linux kernel versions <= 2.6.18) which may cause
1336 sent file descriptors to be lost in the above case
1338 * ulockmgr: optimize file descriptor use
1340 * restore needed cpp flags to util/Makefile.am
1342 * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1344 * Minor clean up of udev rules
1346 * Add a synchronous DESTROY message to kernel interface. This is
1347 invoked from umount, when the final instance of the filesystem is
1348 released. It is only sent for filesystems mounted with the
1349 'blkdev' option for security reasons.
1351 * If the DESTROY message is received, call the filesystem's
1352 ->destroy() method. In this case it's not called from session
1353 destruction as it would be otherwise.
1355 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1357 * Released 2.6.0-rc2
1359 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1361 * Add support for FLUSH+RELEASE operation for FreeBSD. Original
1364 * Add init script to insert fuse module and mount the control
1365 filesystem. The script is installed as /etc/init.d/fuse and on
1366 debian based systems (where update-rc.d is available) symlinks
1367 from /etc/rc*.d/ are also installed.
1369 * Include '#define FUSE_USE_VERSION=XX' into examples so they
1370 become more self contained.
1372 2006-09-30 Miklos Szeredi <miklos@szeredi.hu>
1376 * Move lock_owner from a separate argument into fuse_file_info
1378 * Add a flag to fuse_file_info indicating (1) a highlevel lock
1379 operation (unlock all) was initiated by a flush, (2) a lowlevel
1380 release operation should perform a flush as well.
1382 * fusermount: revert modprobe change (2006-08-18) since it
1383 doesn't work reliably with udev
1385 * Add support for block device backed filesystems. This mode is
1386 selected with the 'blkdev' option, which is privileged.
1388 * Add support for the bmap (FIBMAP ioctl) operation on block
1389 device backed filesystems. This allows swapon and lilo to work on
1394 * Drop support for kernels earlier than 2.6.9. Kernel module from
1395 previous (2.5.x) release can be used with library from this
1398 * In fuse_dentry_revalidate() use dget_parent() instead of
1399 dereferencing d_parent, since there's no protection against parent
1400 changing and going away
1402 * Protect nlookup from concurrent updates
1404 * In lookup if a directory alias exists but is unused,
1405 then get rid of it, otherwise return -EBUSY.
1407 * In mkdir if a directory alias exists, return success, but leave
1408 dentry negative. In reality this could happen if a remote rename
1409 immediately followed the mkdir.
1411 * Don't BUG in fuse_iget() if multiple retries are needed to get a
1412 good inode. This could happen if several lookups are racing for
1415 2006-09-29 Miklos Szeredi <miklos@szeredi.hu>
1417 * Fix compilation on 2.6.9. Report from Troy Ayers
1419 2006-09-27 Miklos Szeredi <miklos@szeredi.hu>
1421 * Fix Oops in fuse_readpages(). Reported by David Shaw
1423 2006-09-24 Csaba Henk <csaba.henk@creo.hu>
1425 * Add support for nanosec times on FreeBSD
1427 * Fix FreeBSD compatibility issues
1429 2006-09-23 Miklos Szeredi <miklos@szeredi.hu>
1431 * Fix one more compatibility bug. Thanks to Ricardo Correia
1433 * Fix utimens compilation with uClibc. Patch from Jamie Guinan
1435 2006-09-22 Miklos Szeredi <miklos@szeredi.hu>
1437 * Fixed several compatibility bugs in low level interface.
1438 Reported by Ricardo Correia
1440 * Add workaround for ARM caching bug
1442 2006-09-16 Miklos Szeredi <miklos@szeredi.hu>
1444 * Rename new utimes() method to more logical utimens()
1446 2006-09-14 Miklos Szeredi <miklos@szeredi.hu>
1448 * Fuse tried to unlink already unlinked hidden files. Bug
1449 reported by Milan Svoboda
1451 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1453 * Released 2.6.0-rc1
1455 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1457 * kernel: Fix unlock on close for kernels < 2.6.18
1459 * Add ulockmgr library & server. This can be used for handling
1460 file locking requests either directly from libfuse or over a
1461 network, etc. This first version is not optimized and the number
1462 of file descriptors it uses may get out of hand
1464 2006-09-07 Miklos Szeredi <miklos@szeredi.hu>
1466 * lib: Add interrupt support to high level library, which may be
1467 enabled with the 'intr' mount option.
1469 * When an operation is interrupted the thread handling that
1470 operation will receive SIGUSR1 (or other signal specified with the
1471 'intr_signal=N' option). The library installs a no-op signal
1472 handler for this signal, unless there's already a handler
1475 * The filesystem may query interrupt status (regardless of 'intr')
1476 with the fuse_interrupted() function.
1478 * mount.fuse: initialize $HOME if not set. Report from Sven Goldt
1480 2006-09-03 Miklos Szeredi <miklos@szeredi.hu>
1482 * lib: Multithreaded loop now allows unlimited number of threads.
1483 This is needed for locking operations which may block
1484 indefinitely. Also the kernel now doesn't limit the number of
1485 outstanding requests so the library shouldn't do so either.
1487 2006-09-01 Miklos Szeredi <miklos@szeredi.hu>
1489 * Fix recursive lock bug in interrupt handling
1491 * Add utimes() method to highlevel interface, which supports
1492 setting times with nanosecond resolution
1494 2006-08-18 Miklos Szeredi <miklos@szeredi.hu>
1496 * kernel: fix page leak if fuse_readpages() failed in it's
1497 initialization. Bug found and original patch from Alexander
1500 * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1501 the kernel tree) the statfs method will receive the path within
1502 the filesystem on which the stat(v)fs syscall was called
1504 * fusermount: try to modprobe fuse module if invoked by root and
1505 unable to open device. This is needed with udev, since the device
1506 node will be created only when the module is inserted, hence
1507 module autoloading won't work. Reported by Szakacsits Szabolcs
1509 2006-07-30 Miklos Szeredi <miklos@szeredi.hu>
1511 * fusermount: if selinux is active, restore the original file's
1512 security context in unmount_rename(). Redhat bugzilla id 188561.
1513 Patch from Yves Perrenoud
1515 * Add POSIX file locking operation to high level library
1517 * Initialize context for unlink of hidden files on umount. Bug
1518 reported by Tim Stoakes
1520 2006-07-14 Miklos Szeredi <miklos@szeredi.hu>
1522 * Multiple release() calls can race with each other, resulting in
1523 the hidden file being deleted before the last release finishes.
1524 Bug found and patch tested by Mark Huijgen
1526 2006-07-05 Miklos Szeredi <miklos@szeredi.hu>
1528 * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1529 this makes sense on systems using udev. Reported by Szakacsits
1532 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1534 * Released 2.6.0-pre3
1536 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1538 * Support in kernel module for file locking and interruption. The
1539 same functionality is available in official kernels >= 2.6.18
1541 2006-06-28 Miklos Szeredi <miklos@szeredi.hu>
1543 * Add POSIX file locking support
1545 * Add request interruption
1547 2006-06-06 Miklos Szeredi <miklos@szeredi.hu>
1549 * Add missing pthread_rwlock_destroy(). Patch from Remy Blank
1551 2006-06-05 Remy Blank <remy.blank@pobox.com>
1553 * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1554 unmounting succeeds even if mount point was relative.
1556 2006-06-04 Csaba Henk <csaba.henk@creo.hu>
1558 * lib: fix emergency umount in helper.c when malloc fails.
1559 (The way it was done would end up in a segfault.)
1561 2006-06-01 Csaba Henk <csaba.henk@creo.hu>
1563 * lib: adjust threading related compiler flags.
1564 Switch to "-pthread" from "-lpthread" as that's the preferred
1565 one on several platforms. Consulted with Terrence Cole and
1568 2006-05-08 Miklos Szeredi <miklos@szeredi.hu>
1570 * lib: search fusermount in installation directory (bindir) as
1573 2006-05-03 Miklos Szeredi <miklos@szeredi.hu>
1575 * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1576 Reported by Christian Magnusson
1578 2006-04-23 Csaba Henk <csaba.henk@creo.hu>
1580 * lib: make FreeBSD mount routine recognize if kernel features
1581 backgrounded init and if it does, run the mount util in foreground
1582 (similarly to Linux)
1584 2006-04-21 Miklos Szeredi <miklos@szeredi.hu>
1586 * kernel: fix fput deadlock fix, the lockless solution could lead
1587 to "VFS: busy inodes after umount..."
1589 * kernel: fix race between checking and setting file->private_data
1590 for the device. Found by Al Viro
1592 2006-04-11 Miklos Szeredi <miklos@szeredi.hu>
1594 * kernel: remove request pool, instead allocate requests on
1595 demand. Account the number of background requests, and if they go
1596 over a limit, block the allocation of new requests.
1598 * kernel: fix deadlock if backgrounded request holds the last
1599 reference to the super block
1601 * kernel: don't use fuse_reset_request() during direct I/O
1603 2006-04-06 Csaba Henk <csaba.henk@creo.hu>
1605 * lib: Let FreeBSD mount option parsing routine recognize "no"
1606 prefixes for FUSE specific options as well
1608 2006-04-01 Miklos Szeredi <miklos@szeredi.hu>
1610 * lib: Add missing rwlock initialization. Patch by Ryan Bradetich
1612 2006-03-17 Miklos Szeredi <miklos@szeredi.hu>
1616 * fuse_main(), fuse_setup() and fuse_new() have an additionl
1619 * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1622 * fuse_unmount() receives a 'struct fuse_chan' pointer. It
1623 destroys the given channel
1625 * fuse_teardown() no longer has a file descriptor parameter
1627 * new exported functions: fuse_session_remove_chan(),
1628 fuse_get_session(), fuse_daemonize()
1630 * fuse_chan_recv() may now return a new channel which will be used
1633 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1635 * Released 2.6.0-pre2
1637 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1639 * Don't unmount if already unmounted. This fixes a problem seen
1640 in the following situation: Lazy unmount a busy filesystem; Mount
1641 a new one in top; When the first finally unmounts, the second also
1642 unmounts. Reported by Franco Broi
1644 2006-03-15 Miklos Szeredi <miklos@szeredi.hu>
1646 * lowlevel lib: use indirect function calls instead of a
1647 switch/case construct. Besides increased efficiency it helps
1648 maintainability & readability too. Patch from Florin Malita
1650 2006-03-13 Miklos Szeredi <miklos@szeredi.hu>
1652 * kernel: replace global spinlock with a per-connection spinlock
1654 2006-03-10 Miklos Szeredi <miklos@szeredi.hu>
1656 * Fix source compatibility breakage for fuse_unmount(). Report
1659 2006-03-02 Miklos Szeredi <miklos@szeredi.hu>
1661 * Fix O_ASYNC handling in fuse_dev_release(). From Jeff Dike
1663 2006-03-01 Miklos Szeredi <miklos@szeredi.hu>
1665 * Add O_ASYNC and O_NONBLOCK support to FUSE device. Patch by
1668 * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1669 interface to return -errno in case of error.
1671 2006-03-01 Csaba Henk <csaba.henk@creo.hu>
1673 * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1674 FreeBSD implementation so that it uses libc (sysctl backed) instead
1675 of an embdedded script (kmem backed). Adjust the control flow of
1676 hello_ll so that device doesn't get closed before unmount attempt.
1678 2006-02-25 Miklos Szeredi <miklos@szeredi.hu>
1680 * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1681 implement method. This is needed on FreeBSD, and nicer on Linux
1682 too. Highlevel lib already did this. Reported by Csaba Henk
1684 * Fix negative entry handling. There was a bug, that negative
1685 lookups with timeouts (nodeid == 0) returned -EIO.
1687 2006-02-23 Miklos Szeredi <miklos@szeredi.hu>
1689 * Fix race between RELEASE and UNLINK, which might leave
1690 .fuse_hidden* files around
1692 2006-02-21 Miklos Szeredi <miklos@szeredi.hu>
1694 * fusexmp_fh: implement flush() method and call close() on the
1695 open file descriptor. This is needed if used on an NFS
1696 filesystem, which buffers data until file is closed. Franco Broi
1697 spotted the situation when 'cp -p' failed to set the modification
1698 time because of this.
1700 2006-02-20 Miklos Szeredi <miklos@szeredi.hu>
1702 * Released 2.6.0-pre1
1704 2006-02-19 Miklos Szeredi <miklos@szeredi.hu>
1706 * libfuse: fix use-after-free bug in interruptred reply_entry().
1707 Patch from John Muir
1709 * libfuse: fix wrong symbol versioning for fuse_mount. Debian bug
1710 ID: 352631. Found by Stéphane Rosi
1712 2006-02-17 Miklos Szeredi <miklos@szeredi.hu>
1714 * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1715 into a single function fuse_add_direntry(). This cleans up the
1716 interface and makes it possible to do stacking.
1718 2006-02-16 Miklos Szeredi <miklos@szeredi.hu>
1720 * Fix rare race betweeen abort and release caused by failed iget()
1721 in fuse_create_open().
1723 * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1724 own attribute caching.
1726 2006-02-15 Miklos Szeredi <miklos@szeredi.hu>
1728 * Work around FreeBSD runtime linker "feature" which binds an old
1729 version of a symbol to internal references if the symbol has more
1730 than one version. This resulted in infinite recursion in
1731 fuse_lowlevel_new_compat25().
1733 2006-02-10 Csaba Henk <csaba.henk@creo.hu>
1735 * Refine clock_gettime() querying so that linker options
1736 shall be set as it's appropriate for the target platform.
1738 2006-02-09 Miklos Szeredi <miklos@szeredi.hu>
1740 * Fix udev rule syntax. Reported by Nix
1742 2006-02-08 Miklos Szeredi <miklos@szeredi.hu>
1744 * In some cases udev rule seems to be ineffective when installed
1745 as 40-fuse.rules but work as 60-fuse.rules. Reported by John Hunt
1747 2006-02-03 Miklos Szeredi <miklos@szeredi.hu>
1749 * Fix compilation when build directory is different from source
1750 directory. Reported by Frédéric L. W. Meunier
1752 2006-02-02 Miklos Szeredi <miklos@szeredi.hu>
1754 * Fix even bigger bug introduced in fix for request_end() on
1755 2006-01-14. Reported by Gal Rosen
1757 2006-01-30 Miklos Szeredi <miklos@szeredi.hu>
1759 * highlevel-lib: add 'auto_cache' option. This caches file data
1760 based on modification time and size
1762 2006-01-20 Miklos Szeredi <miklos@szeredi.hu>
1764 * Sanitize storage type and help message in mount_bsd.c. Patch
1767 * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1768 FUSE_OPT_KEY_DISCARD
1770 * Add options 'max_readahead', 'sync_read' and 'async_read'
1772 * Kernel ABI version 7.6:
1774 * Negotiate the 'max_readahead' value and 'async_read' flags with
1775 userspace in the INIT method
1777 * Add connection info to ->init() methods to both lowlevel and
1780 * Fall back to synchronous read() behavior if either library or
1781 userspace filesystem is using the old interface version. This is
1782 needed so non-updated filesystems won't be confused by the
1783 different read() behavior
1785 2006-01-19 Miklos Szeredi <miklos@szeredi.hu>
1787 * lib: if "fsname=" option was given, pass it to fusermount
1789 * fuse_opt: add new fuse_opt_insert_arg() function, which is
1790 needed by filesystems to implement some argument manipulations
1793 * fuse_opt: fix memory leak in handling "--" option
1795 2006-01-18 Miklos Szeredi <miklos@szeredi.hu>
1797 * kernel: fix detection of case when fuse is not configured into
1798 the kernel either as module or built-in
1800 * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1801 'template' structure member to 'templ'. Reported by Takashi Iwai
1803 * fuse.h: fix compatibility bugs. Patch by Yura Pakhuchiy
1805 * kernel: support version 2.6.16 (i_sem -> i_mutex)
1807 2006-01-16 Miklos Szeredi <miklos@szeredi.hu>
1809 * Added (again) asynchronous readpages support
1811 * Each connection now shows up under /sys/fs/fuse/connections
1813 * Connection attributes exported to sysfs: 'waiting' number of
1814 waiting requests; 'abort' abort the connection
1816 * Connection may be aborted through either the sysfs interface or
1817 with 'umount -f mountpoint'
1819 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1823 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1825 * kernel: fix a couple of bugs
1827 * Order of request_end() and fuse_copy_finish() was wrong.
1828 Posthumous note: Franco Broi managed to exploit this, though it
1829 seemed quite impossible
1831 * request_end() used request pointer after decrementing refcount
1833 * Clearing ->connected or ->mounted connection flags could race
1834 with setting other bitfields not protected with a lock
1836 2006-01-10 Miklos Szeredi <miklos@szeredi.hu>
1838 * kernel: add necessary compile flags for 2.4.X/x86_64.
1839 Report from Sean Ziegeler
1841 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1843 * Released 2.5.0-pre2
1845 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1847 * Applied patch from Csaba Henk, to update mount_bsd to new
1848 fuse_mount() semantics
1850 * Ignore auto,noauto,... options in mount.fuse. Reported by Frank
1851 Steiner and Don Taber
1853 * fusermount: add 'dirsync' mount option
1855 2006-01-07 Miklos Szeredi <miklos@szeredi.hu>
1857 * Improved help reporting and added version reporting to library
1859 2006-01-06 Miklos Szeredi <miklos@szeredi.hu>
1861 * Change working directory to "/" even if running in the
1862 foreground. Patch from Jonathan Brandmeyer
1864 * Changed lots of functions to use 'struct fuse_args' instead of
1865 separate argc and argv
1867 * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1868 fuse_remove_signal_handlers() functions, so that it's now pretty
1869 easy to get all the functionality of fuse_main() with a filesystem
1870 using the lowlevel API.
1872 2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
1874 * mount.fuse: the 'user' option should be ignored. Report and
1875 solution from Mattd.
1877 * mount.fuse: export PATH in the right place. Report and patch
1878 from Hannes Schweizer
1880 2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
1882 * Clean up the option parsing interface slightly, by creating an
1883 "argument list" structure, that contains the argument vector and
1886 2005-12-15 Miklos Szeredi <miklos@szeredi.hu>
1888 * fusermount: check if /mnt/mtab is a symlink and don't modify it
1891 * kernel: simplify request size limiting. INIT only contains
1892 maximum write size, maximum path component size remains fixed at
1893 1024 bytes, and maximum xattr size depends on read buffer.
1895 2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
1897 * Fix readdir() failure on x86_64, of 32bit programs compiled
1898 without largefile support. Bug report and help from Anthony
1901 * If lookup returns invalid mode, return -EIO instead of creating
1904 * Add current output argument vector to option processing
1907 2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
1909 * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
1911 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1913 * Released 2.5.0-pre1
1915 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1917 * libfuse: added option parsing interface, defined in
1920 2005-12-07 Miklos Szeredi <miklos@szeredi.hu>
1922 * Return EIO for file operations (read, write, fsync, flush) on
1923 open files whose inode has become "bad". Inodes will be marked
1924 "bad" if their type changes. Bug report by Csaba Henk
1926 2005-12-06 Miklos Szeredi <miklos@szeredi.hu>
1928 * Use bigger request buffer size. write() did not work on archs
1929 with > 4k page size, Bug report by Mark Haney
1933 * Extend INIT reply with data size limits
1935 2005-12-02 Miklos Szeredi <miklos@szeredi.hu>
1937 * Fix memory leak in fuse_read_cmd()/fuse_process_cmd(). Bug
1938 reported by Vincenzo Ciancia
1940 * Handle exit-by-umount in fuse_read_cmd()
1942 2005-11-29 Miklos Szeredi <miklos@szeredi.hu>
1944 * Check if '-msoft-float' option is supported by compiler when
1945 configuring for a 2.4.x kernel. Bug report by Mark Haney
1947 * In multithreaded loop send a TERM signal to the main thread if
1948 one of the other threads exit. Needed on FreeBSD for a clean exit
1949 on umount. Should not cause any harm on Linux either
1951 2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
1953 * Fix bug in 32-bit file handle compatibility
1955 2005-11-27 Miklos Szeredi <miklos@szeredi.hu>
1957 * Block TERM, INT, HUP and QUIT signals in all but the main
1958 thread. According to POSIX it's not specified which thread will
1959 receive these signals.
1963 * Check for directory aliasing on mkdir, not just on lookup
1965 * Check for special node ID values in create+open operation
1967 * Sync with -mm: readv, writev, aio_read and aio_write methods
1968 added to file operations
1970 * Cleanups: lookup code, page offset calculation
1972 * ABI stepped to 7.4, changes:
1974 * frsize member added to fuse_kstatfs structure
1976 * added support for negative entry caching: on lowlevel API if
1977 fuse_entry_param::ino is set to zero in reply to a lookup request,
1978 the kernel will cache the dentry for the specified amount of time.
1980 * libfuse: added 'negative_timeout' option: specifies how much
1981 negative entries should be cached. Default is zero, to be
1982 compatible with prior versions
1984 2005-11-22 Miklos Szeredi <miklos@szeredi.hu>
1986 * Add detection of mainline FUSE code in running kernel
1988 2005-11-21 Miklos Szeredi <miklos@szeredi.hu>
1990 * Don't use async cancelation in multithreaded loop. This makes
1991 it more portable to systems where read() is not async cancel safe.
1992 Report from Andriy Gapon
1994 2005-11-20 Miklos Szeredi <miklos@szeredi.hu>
1996 * Warn if API version 11 compatibility is requested
1998 2005-11-17 Miklos Szeredi <miklos@szeredi.hu>
2000 * More FreeBSD merge
2002 * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
2003 them, because it corrupts /etc/mtab. Found by Thomas Biege
2006 * libfuse: don't use system() to invoke 'fusermount -u ...'
2007 because it breaks mountpoints with spaces in them into multiple
2010 2005-11-16 Miklos Szeredi <miklos@szeredi.hu>
2012 * Merge library part of FreeBSD port. Patch by Csaba Henk
2014 2005-11-11 Miklos Szeredi <miklos@szeredi.hu>
2016 * Use 64bit type for file handle, so the full range supported by
2017 the kernel interface is available to applications
2019 2005-11-10 Miklos Szeredi <miklos@szeredi.hu>
2021 * Moved mountpoint argument checking from fuse_parse_cmdline() to
2022 fuse_mount() in preparation to FreeBSD merge.
2024 2005-11-08 Miklos Szeredi <miklos@szeredi.hu>
2026 * Remove unneeded close() from fuse_teardown(). Spotted by Csaba
2029 2005-11-07 Miklos Szeredi <miklos@szeredi.hu>
2031 * Make the statfs change backwards compatible.
2033 2005-11-06 Miklos Szeredi <miklos@szeredi.hu>
2035 * Change ->statfs() method to use 'struct statvfs' instead of
2036 'struct statfs'. This makes the API more portable since statvfs()
2037 is defined by POSIX.
2039 2005-10-28 Miklos Szeredi <miklos@szeredi.hu>
2041 * Add fgetattr() method, which currently will only be called after
2042 a successful call to a create() method.
2044 2005-10-26 Miklos Szeredi <miklos@szeredi.hu>
2046 * Change kernel ABI version to 7.3
2048 * Add ACCESS operation. This is called from the access() system
2049 call if 'default_permissions' mount option is not given, and is
2050 not called on kernels 2.4.*
2052 * Add atomic CREATE+OPEN operation. This will only work with
2053 2.6.15 (presumably) or later Linux kernels.
2055 * Add ftruncate() method. This will only work with 2.6.15
2056 (presumably) or later Linux kernels.
2058 * Fix kernel module compile if kernel source and build directories
2059 differ. Report and initial patch by John Eastman
2061 2005-10-18 Miklos Szeredi <miklos@szeredi.hu>
2063 * lib: optimize buffer reallocation in fill_dir.
2065 2005-10-17 Miklos Szeredi <miklos@szeredi.hu>
2069 2005-10-14 Miklos Szeredi <miklos@szeredi.hu>
2071 * libfuse: add debug for write result (by Shaun Jackman) and
2072 warnings for too large read/write result
2074 2005-10-11 Miklos Szeredi <miklos@szeredi.hu>
2076 * Spelling fixes, thanks to Ioannis Barkas
2078 2005-10-10 Miklos Szeredi <miklos@szeredi.hu>
2080 * fuse_common.h: use extern "C". Thanks to Valient Gough for the
2083 2005-10-07 Miklos Szeredi <miklos@szeredi.hu>
2085 * highlevel-lib: init() and destroy() methods didn't have an
2086 initialized fuse_context. Bug reported by Tim Stoakes
2088 2005-10-04 Miklos Szeredi <miklos@szeredi.hu>
2092 2005-10-03 Miklos Szeredi <miklos@szeredi.hu>
2094 * Add documentation to fuse_lowlevel.h
2098 * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
2100 * Move fuse_mount() and fuse_unmount() to fuse_common.h
2102 * Change the return type of fuse_reply_none() from int to void.
2104 2005-09-30 Miklos Szeredi <miklos@szeredi.hu>
2106 * kernel: NFS exporting leaked dentries. Bug found and fixed by
2109 2005-09-29 Miklos Szeredi <miklos@szeredi.hu>
2111 * fusermount: fix error message, when unable to open /dev/fuse.
2112 Report by Balázs Pozsár
2114 2005-09-28 Miklos Szeredi <miklos@szeredi.hu>
2116 * UClibc fixes from Christian Magnusson
2118 2005-09-27 Miklos Szeredi <miklos@szeredi.hu>
2120 * Added NAME="%k" to util/udev.rules. Fix by Mattias Wadman.
2122 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2124 * Released 2.4.0-rc1
2126 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
2128 * fusermount: allow user umount in the case when /etc/mtab is a
2129 symlink to /proc/mounts. Reported by Balázs Pozsár.
2131 2005-09-23 Miklos Szeredi <miklos@szeredi.hu>
2133 * Check for special node ID values in lookup and creation
2135 2005-09-22 Miklos Szeredi <miklos@szeredi.hu>
2137 * Slight optimization in returning EINVAL error in case of an open
2140 2005-09-20 Miklos Szeredi <miklos@szeredi.hu>
2142 * Remove '--enable-auto-modprobe' configure flag. Module
2143 auto-loading is now handled by the kernel.
2145 2005-09-15 Miklos Szeredi <miklos@szeredi.hu>
2147 * Install UDEV rule file, so /dev/fuse is created with mode 0666.
2148 Help from Jens M. Noedler.
2150 2005-09-14 Miklos Szeredi <miklos@szeredi.hu>
2152 * Add memory cleanup on thread exit
2154 2005-09-13 Miklos Szeredi <miklos@szeredi.hu>
2156 * Set umask to zero in fusexmp and fusexmp_fh, so that
2157 files/directories are created with the requested mode.
2159 2005-09-12 Miklos Szeredi <miklos@szeredi.hu>
2161 * Don't ignore read error in multithreaded loop
2163 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2165 * Released 2.4.0-pre2
2167 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
2169 * Revert lock and access operations. Postpone these until 2.5.
2171 2005-09-02 Miklos Szeredi <miklos@szeredi.hu>
2173 * Fix compile warning on 2.6.13 and later
2175 * Fix compilation on old kernels
2177 2005-08-19 Miklos Szeredi <miklos@szeredi.hu>
2179 * lib: always refresh directory contents after rewinddir() to
2180 conform to SUS. Bug found by John Muir.
2182 2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
2184 * Released 2.4.0-pre1
2186 2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
2188 * lib: cleaned up (or messed up, depending on your POV) the low
2189 level library API. Hopefully this is close to the final form.
2191 2005-08-05 Miklos Szeredi <miklos@szeredi.hu>
2193 * fusermount: don't allow empty mountpoint argument, which defeats
2194 automatic umounting in fuse_main(). Bugreport by Václav Jůza
2196 2005-08-03 Miklos Szeredi <miklos@szeredi.hu>
2198 * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
2199 option is used (Paul Alfille).
2201 2005-08-02 Miklos Szeredi <miklos@szeredi.hu>
2203 * highlevel-lib: added mount options "attr_timeout" and
2204 "entry_timeout". These options control the length of time file
2205 attributes and entries (names) are cached. Both default to 1.0
2208 * kernel: correctly handle zero timeout for attributes and entries
2210 2005-08-01 Miklos Szeredi <miklos@szeredi.hu>
2212 * Added missing symbols to versionscript (Joshua J. Berry)
2214 * kernel: implement two flags, open can set: 'direct_io' and
2215 'keep_cache'. These correspond exactly to mount options
2216 'direct_io' and 'kernel_cache', but allow a per-open setting.
2218 * Move 'direct_io' and 'kernel_cache' mount option handling to
2219 userspace. For both mount options, if the option is given, then
2220 the respective open flag is set, otherwise the open flag is left
2221 unmodified (so the filesystem can set it).
2223 * lib (highlevel): make open method optional
2225 2005-07-28 Miklos Szeredi <miklos@szeredi.hu>
2227 * kernel: invalidate attributes for read/readdir/readlink
2230 * kernel: detect newer UML kernels
2232 2005-07-26 Miklos Szeredi <miklos@szeredi.hu>
2234 * Make the installation path of fuse.ko and mount.fuse
2235 configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2236 environment variables. Requirement and help from Csaba Henk.
2238 2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
2240 * Fix bug, that causes filesystem requests to hang when unique
2241 request counter becomes negative. This happens after
2242 2,147,483,648 operations, so most people won't care. Thanks to
2243 Franco Broi for the report and testing.
2245 2005-07-21 Miklos Szeredi <miklos@szeredi.hu>
2247 * Don't change mtime/ctime/atime to local time on read/write.
2248 Bug reported by Ben Grimm
2250 * Install fuse_common.h and fuse_lowlevel.h. Report by Christian
2253 * fusermount: use getopt_long() for option parsing. It allows the
2254 use of '--' to stop argument scanning, so fusermount can now
2255 operate on directories whose names begin with a '-'. Patch by
2258 2005-07-15 Miklos Szeredi <miklos@szeredi.hu>
2260 * fusermount: add '-v', '--version' and '--help' options
2262 * add inode based API
2264 2005-07-12 Miklos Szeredi <miklos@szeredi.hu>
2266 * lib: don't block signals in worker threads. Problem noticed by
2269 2005-07-07 Miklos Szeredi <miklos@szeredi.hu>
2271 * lib: don't allow both 'allow_other' and 'allow_root' options to
2274 2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
2276 * fusermount: check if mountpoint is empty (only '.' and '..' for
2277 directories, and size = 0 for regular files). If "nonempty"
2278 option is given, omit this check. This is useful, so users don't
2279 accidentally hide data (e.g. from backup programs). Thanks to
2280 Frank van Maarseveen for pointing this out.
2282 * kernel: check if mandatory mount options ('fd', 'rootmode',
2283 'user_id', 'group_id') are all given
2285 * lib: simplify 'readdir_ino' handling
2287 * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2289 2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
2291 * kernel: clean up 'direct_io' code
2293 2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
2295 * Add 'mount.fuse' written by Petr Klima
2297 * '/dev/fuse' is created by 'make install' if does not yet exist
2299 2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
2301 * Fix UCLIBC compile error. Patch by Christian Magnusson
2303 2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
2305 * Enable the auto-loading of the module via access to the
2306 corresponding device file. Patch by Takashi Iwai.
2308 * Allow mounting a regular file (over a regular file) for
2311 * Do not create temporary device file. Require "/dev/fuse" to
2312 exist, and be readable/writable by the mounting user.
2314 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2318 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2320 * Fix serious information leak: if the filesystem returns a short
2321 byte count to a read request, and there are non-zero number of
2322 pages which are not filled at all, these pages will not be zeroed.
2323 Hence the user can read out previous memory contents. Found by
2326 2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
2328 * Add "readdir_ino" mount option, which tries to fill in the d_ino
2329 field in struct dirent. This mount option is ignored if "use_ino"
2330 is used. It helps some programs (e.g. 'pwd' used over NFS from a
2331 non-Linux OS). Patch by David Shaw.
2333 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2337 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2339 * File save in krusader and other editors doesn't work with sshfs,
2340 because open() is interrupted by a periodic signal, and open()
2341 restarts forever, without any progress. This could just be fixed
2342 in open(), but the problem is more generic: if signals are
2343 received more often than the filesystem can get the request to
2344 userspace, it will never finish. This is probably only a
2345 theoretical problem, nevertheless I'm removing the possibility to
2346 interrupt requests with anything other than SIGKILL, even before
2347 being sent to userspace. Bugreport by Eduard Czimbalmos.
2349 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2351 * libfuse: add "tree_lock" rwlock, that is locked for write in
2352 rename, unlink and rmdir, and locked for read in all other
2353 operations. This should fix the rename/release race reported by
2354 Valient Gough and others. The solution is very coarse, a finer
2355 grained locking scheme could be implemented, but it would be much
2356 more complex. Let's see whether this is good enough.
2358 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2362 2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
2364 * Better fix for out of order FORGET messages. Now the
2365 LOOKUP/FORGET messages are balanced exactly (one FORGET can
2366 balance many lookups), so the order no longer matters. This
2367 changes the kernel ABI slightly, but the library remains backward
2370 2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
2372 * Fix abort for out of order FORGET messages. Again. Spotted by
2373 Franco Broi again. Sorry :)
2375 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2379 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2381 * Make fusermount work with fuse kernel modules not yet supporting
2382 the "group_id" option (added for the purpose of stricter
2383 permission checking).
2385 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
2387 * Check for hard-linked directories in lookup. This could cause
2388 problems in the VFS, which assumes that such objects never exist.
2390 * Make checking of permission for other users more strict. Now
2391 the same privilege is required for the mount owner as for ptrace
2392 on the process performing the filesystem operation.
2394 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
2398 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
2400 * Add -msoft-float to kernel module compile flags for 2.4.X. This
2401 is needed on certain architectures. Report from Chris Kirby
2403 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2404 Reported by David Shaw
2406 * Remove "allow_root" option from kernel module, and implement
2407 it's functionality in the library
2409 * Fix Oops caused by premature release of fuse_conn. Clean up
2410 related code, to be more readable
2412 * Sendfile should not use page cache if "direct_io" mount option
2415 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
2417 * Fix Oops in case of nfs export. Spotted by David Shaw
2419 * Fix another Oops in case of write over nfs with direct_io turned
2420 on. Again spotted by David Shaw
2422 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2426 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2428 * lib: finalized new readdir() interface, which now supersedes the
2431 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2435 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2437 * Implement backward compatibility with version 5 kernel ABI
2439 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2443 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2445 * kernel: fix dirent offset handling
2447 * lib: add readdir and releasedir methods
2449 * lib: use fh field of fuse_file_info in opendir, readdir,
2450 releasedir and fsyncdir methods
2452 * lib: check kernel API version and bail out of it's old. This
2453 will be properly fixed in the next release
2455 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2459 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2461 * kernel API: add padding to structures, so 64bit and 32bit
2462 compiler will return the same size
2464 * kernel API: add offset field to fuse_dirent. This will allow
2465 more sophisticated readdir interface for userspace
2467 * kernel API: change major number to 6
2469 * kernel: fix warnings on 64bit archs
2471 * kernel: in case of API version mismatch, return ECONNREFUSED
2473 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
2475 * kernel: trivial cleanups
2477 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
2479 * Add fsyncdir() operation
2481 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
2483 * kernel: add locking to background list (fixes previous fix)
2485 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
2487 * kernel: fix bug which could cause leave busy inodes after
2490 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
2492 * examples: add -lpthread to link flags to work around valgrind
2495 * lib: don't exit threads, so cancelation doesn't cause segfault
2497 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
2499 * kernel: fix nasty bug which could cause an Oops under certain
2500 situations. Found by Magnus Johansson
2502 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
2504 * libfuse: added opendir() method. This can be used in case
2505 permission checking in getdir() is too late. Thanks to Usarin
2506 Heininga for pointing out this deficiency
2508 * libfuse: added init() and destroy() methods to fuse_operations
2510 * kernel: llseek() method for files and directories made explicit
2512 * kernel: fixed inode leak in NFS export in case of nodeid
2515 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
2517 * libfuse: clean up some unitialized memory found with valgrind
2519 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
2520 explicitly linked libpthread for applications
2522 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
2524 * fusermount: set umask, otherwise /etc/mtab will have
2525 unpredictable permission. Spotted by Jindrich Kolorenc
2527 * fusermount: set owner and group of /etc/mtab to original values
2530 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
2532 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
2534 * Cleaned up directory reading (temporary file is not used)
2536 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2540 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2542 * Fix possible race when operation is interrupted
2544 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
2546 * Fix compilation on 2.6.7
2548 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2552 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2554 * Fix bug in link() operation which caused the wrong path to be
2555 passed as the first argument. Found by Anton Altaparmakov
2557 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
2559 * LIB: fix double reply in readdir operation
2561 * fusermount: fix uid checking bug. Patch by Adam Connell
2563 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2564 Patch by Keshava Gowda
2566 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2568 * KERNEL: provide correct llseek semantics for fuse device (fixes
2569 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
2571 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2573 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2575 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
2577 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2578 and RELEASEDIR. This ends the ugly hack of passing a file
2579 descriptor to the kernel, and actually makes the code simpler.
2581 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2585 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2587 * fusermount: remove capability setting, which was the cause of
2588 problems for some users. It seems that FS related capabilities
2589 are removed by setfsuid(), so this isn't even needed.
2591 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
2593 * fix compilation on 2.4 kernels (reported by Valient Gough)
2595 * fix failure to unmount bug (found by David Shaw)
2597 * fusermount: improve parsing of /etc/fuse.conf
2599 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
2601 * Remove 'mount_max' and 'user_allow_other' module options. These
2602 are now checked by fusermount, and can be set in /etc/fuse.conf
2604 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2606 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
2608 * KERNEL: fix possible inode allocation problem, where
2609 sizeof(struct inode) is not aligned (found by Mike Waychison)
2611 * KERNEL: use new follow_link/put_link methods
2613 * KERNEL: cosmetic fixes
2615 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2619 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2621 * Add missing code that was accidently left out
2623 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2627 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2629 * Change "uid" mount option to "user_id" to avoid confusion with a
2630 mount option "uid" commonly used by many filesystems
2632 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2636 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2638 * If FUSE is configured in the kernel, don't build it by default
2640 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
2642 * Compile fix by Christian Magnusson
2644 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
2646 * Fix compilation for 2.6.{0-5} kernels
2648 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
2650 * KERNEL: if request is interrupted, still keep reference to used
2651 inode(s) and file, so that FORGET and RELEASE are not sent until
2652 userspace finishes the request.
2654 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2655 request with the same information, which is more flexible,
2656 simpler, works on embedded systems.
2658 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
2660 * KERNEL ABI: update interface to make it independent of type
2661 sizes. This will help on 64 bit architectures which can run
2662 legacy 32 bit applications.
2664 * KERNEL ABI: add "len" field to request headers. This will allow
2665 sending/receiving requests in multiple chunks.
2667 * KERNEL: handle file type change more intelligently
2669 * LIB: "-o debug" option should disable backgrounding (fix by
2670 Fabien Reygrobellet)
2672 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
2674 * KERNEL: invalidate dentry/attributes if interrupted request
2675 could leave filesystem in an unknown state.
2677 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
2679 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2680 These will cause some regressions, but stability is considered
2681 more important. If any of these features turns out to be
2682 important, it can be readded with the deadlock problems addressed.
2684 * Make all requests interruptible (only with SIGKILL currently).
2685 This can be used to break any deadlock produced by the userspace
2686 filesystem accessing it's own exported files. The RELEASE request
2687 is special, because if it's interrupted before sending it to
2688 userspace it is still sent, but the reply is not awaited.
2690 * If request is interrupted before being sent to userspace, and if
2691 it hasn't yet got any side effects, it is always restarted,
2692 regardless of the SA_RESTART flag. This makes these interruptions
2693 transparent to the process.
2695 * Remove shared-writable mmap support, which was prone to an
2696 out-of-memory deadlock situation
2698 * Remove INVALIDATE userspace initiated request
2700 * Make readpages() synchronous. Asynchronous requests are
2701 deadlock prone, since they cannot be interrupted.
2703 * Add readv/writev support to fuse device operations
2705 * Remove some printks, which userspace FS can use for a DoS
2708 * Remove 'large_read' mount option from 2.6 in kernel, check it in
2711 * LIB: improve compatibility with a fuse.h header installed in
2712 ${prefix}/include which in turn includes the real header.
2714 * LIB: improve compatibility by defining fuse_main() (which is now
2715 not used), so old configure scripts find it.
2717 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
2719 * When mounting on a subdirectory of / don't duplicate slashes at
2720 the beggining of path (spotted by David Shaw)
2722 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
2724 * Fix bug causing garbage in mount options (spotted by David Shaw)
2726 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
2728 * Add 'writepage' flag to 'fuse_file_info'.
2730 * More comments in fuse.h
2732 * Get rid of double underscores
2734 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
2736 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2738 * helper.c: add -ho option, which only displays the options not
2739 the usage header. This can be used by filesystems which have
2742 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2744 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
2745 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2746 including the fuse header
2748 * Add binary compatibility to 2.1 version of library with symbol
2751 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2755 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
2757 * kernel: clean up writing functions
2759 * kernel: no allocation on write in direct_io mode
2761 * move linux/fuse.h to fuse_kernel.h
2763 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
2765 * kernel: clean up reading functions
2767 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
2769 * kernel: make readpage() uninterruptible
2771 * kernel: check readonly filesystem flag in fuse_permission
2773 * lib: don't die if version file not found and new style device
2776 * lib: add '-r' option, which is short for '-o ro'
2778 * fusermount: simplify device opening
2780 * kernel: when direct_io is turend on, copy data directly to
2781 destination without itermediate buffer. More efficient and safer,
2782 since no allocation is done.
2784 * fusermount: fix warning if fuse module is not loaded
2786 * kernel: use /dev/fuse on 2.4 too
2788 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
2790 * libfuse API change: open, read, write, flush, fsync and release
2791 are passed a 'struct fuse_file_info' pointer containing the open
2792 flags (open and release), and the file handle. Verion changed to
2795 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
2797 * More cleanups in the kernel
2799 * The 10,229 charater device number has been assigned for FUSE
2801 * Version file checking fix (reported by Christian Magnusson)
2803 * fusermount: opening the fuse device now doesn't need /sys.
2805 * Optimize reading by controlling the maximum readahead based on
2806 the 'max_read' mount option
2808 * fixes for UCLIBC (Christian Magnusson)
2810 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
2812 * Cleaned up kernel in preparation for merge into mainline:
2814 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2816 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2818 * __user annotations for sparse
2820 * allocate individual pages instead of kmalloc in fuse_readdir,
2821 fuse_read and fuse_write.
2823 * Fix NFS export in case "use_ino" mount option is given
2825 * Make libfuse and fusermount compatible with future versions
2827 * fusermount: properly add mount options to /etc/mtab
2829 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
2831 * fusermount: do not resolve last component of mountpoint on if it
2832 is '.' or '..'. This new path resolvation is now done on mount as
2833 well as unmount. This enables relative paths to work on unmount.
2835 * fusermount: parse common mount options like "ro", "rw", etc...
2837 * Allow module params to be changed through sysfs
2839 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2843 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2845 * Fix bug in fuse_readpages() causing Oops in certain situations.
2846 Bug found by Vincenzo Ciancia.
2848 * Fix compilation with kernels versions > 2.6.9.
2850 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
2852 * Check kernel interface version in fusermount to prevent
2853 strangeness in case of mismatch.
2855 * No need to allocate fuse_conn until actual mount happens
2857 * Fix potential race between umount and fuse_invalidate
2859 * Check superblock of proc file in addition to inode number
2861 * Fix race between request_send_noreply() and fuse_dev_release()
2863 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
2865 * Separate configure for the kernel directory
2867 * Don't allow write to return more than 'count'
2869 * Extend kernel interface for future use
2871 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
2873 * Fix 'makeconf.sh' to use autoreconf if available
2875 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
2877 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
2878 compatibility with earlier versions. To compile earier versions
2879 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2880 Do not use the "use_ino" mount flag with filesystems compiled with
2883 * Add pkg-config support. To compile a FUSE based filesystem you
2884 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2885 or similar. Note, that the PKG_CONFIG_PATH environment variable
2886 usually needs to be set to "/usr/local/lib/pkgconfig".
2888 * fuse.h is now installed in ${prefix}/include/fuse/
2890 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
2892 * Added "use_ino" mount option. This enables the filesystems to
2893 set the st_ino field on files
2895 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
2897 * Fix compile problems with ancient (<=2.4.18) kernels (reported
2900 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
2902 * Clear the 'exited' flag when mail loop is finished
2904 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
2906 * Make xattr functions work under 2.6 (bug found by Vincenzo
2909 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
2911 * Reset request in fuse_flush() (bugreport by David Shaw)
2913 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
2915 * fuse_main() now does not exit on error, rather it returns an
2918 * Exported __fuse_setup() and __fuse_teardown() functions, which
2919 make it easier to implement a custom event loop.
2921 * Use daemon() call to background the filesystem after mounting.
2922 This function closes the standard input, output and error and
2923 changes the current working directory to "/".
2925 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
2929 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
2931 * Don't allow fuse_flush() to be interrupted (bug found by David
2934 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
2936 * Add PID to fuse_context. Patch by Steven James
2938 * Change file handle type to 'unsigned long' in kernel interface
2940 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
2942 * A slight API change: fuse_get_context() doesn't need the "fuse"
2943 pointer, but the returned context contains it instead. The
2944 fuse_get() function is not needed anymore, so it's removed.
2946 * Fix mounting and umounting FUSE filesystem under another FUSE
2947 filesystem by non-root (bug spotted by Valient Gough)
2949 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
2951 * Fix deadlock in case of memory allocation failure. Patch by
2954 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
2956 * Check memory allocation failures in libfuse
2958 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
2960 * Check temporary file creation failure in do_getdir(). Bug
2961 spotted by Terje Oseberg
2963 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
2965 * Allow "large_read" option for 2.6 kernels but warn of deprecation
2967 * Make requests non-interruptible so race with FORGET is avoided.
2968 This is only a temporary solution
2970 * Support compiling FUSE kernel module on 2.4.x UML kernels
2972 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
2974 * Fix bug in case two FORGETs for the same node are executed in
2975 the wrong order. Bug spotted and endured for months by Franco
2976 Broi, and logfile for solution provided by Terje Oseberg
2978 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
2980 * Add -D_REENTRANT to the compile flags
2982 * Add documentation of fuse internals by Terje Oseberg
2984 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
2986 * Change release method to be non-interruptible. Fixes bug
2987 causing missing release() call when program which has opened files
2988 is killed (reported by Franco Broi and David Shaw)
2990 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
2992 * Add fuse_invalidate() to library API
2994 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
2996 * Check permissions in setattr if 'default_permissions' flag is
2997 set. Bug spotted by Damjan Lango
2999 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
3001 * 'large_read' mount option removed for 2.6 kernels, since the
3002 default (dynamic read size) is better
3004 * Extend kernel API with file handles. A file handle is returned
3005 by open, and passed to read, write, flush, fsync and release.
3006 This is currently only used for debug output in the library.
3010 * Change the current directory to the mountpoint before checking
3011 the permissions and mount filesystem on "."
3013 * By default don't modprobe the fuse module for non-root. The old
3014 behavior can be restored with the '--enable-auto-modprobe' flag of
3017 * By default don't allow shared writable mappings for non-root.
3018 The old behavior can be restored with the 'user_mmap=1' module
3021 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
3023 * Clean up mount option passing to fusermount and to fuse_new()
3024 BEWARE: this changes the userspace API slightly, and the command
3025 line usage of programs using fuse_main()
3027 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
3029 * Optimize reading under 2.6 kernels by issuing multiple page
3030 asynchronous read requests
3032 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
3034 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
3036 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
3038 * Separate directory entry and inode attribute validity timer
3040 * New write semaphore to stop page writeback during truncate
3042 * Fsync now waits for all writes to complete before sending the
3045 * Optimization: if a page is completely written by
3046 fuse_commit_write(), clear the dirty flag and set the uptodate
3049 * Some memory cleanup at exit
3051 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
3053 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
3054 disable the "hide if open" behavior of unlink/rename.
3056 * If temporary buffer allocation fails in raw read, fall back to a
3059 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
3061 * Fix bug in do_open() in libfuse: open count was incremented
3062 after the reply is sent so it could race with unlink/forget and
3065 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
3067 * When performing create or remove operation, refresh the parent's
3068 attributes on next revalidate, as i_nlink (and maybe size/time)
3071 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
3074 * Set set_page_dirty address space operation (2.6 only)
3076 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
3078 * Minor fix in read: print debug info even if read size is zero
3080 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
3082 * Fix race between truncate and writepage (fsx-linux now runs
3085 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
3087 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
3090 * Added option for direct read/write (-r)
3092 * Fix revalidate time setting for newly created inodes
3094 * Remove uid==0 check for '-x' option in fusermount (kernel checks
3097 * fuse_main() only installs handlers for signals (out of INT, HUP,
3098 TERM, PIPE), for which no handler has yet been installed
3100 * Add module option 'user_allow_other' which if set to non-zero
3101 will allow non root user to specify the 'allow_other' mount option
3102 ('-x' option of fusermount)
3104 * Fix deadlock between page writeback completion and truncate
3105 (bug found by Valient Gough with the fsx-linux utility)
3107 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
3109 * Change passing fuse include dir to 2.6 kernel make system more
3110 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
3113 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
3115 * Acquire inode->i_sem before open and release methods to prevent
3116 concurrent rename or unlink operations.
3118 * Make __fuse_read_cmd() read only one command. This allows
3119 multiplexing the fuse file descriptor with other event sources
3120 using select() or poll() (patch by Jeff Harris)
3122 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
3124 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
3126 * Fix file offset wrap around at 4G when doing large reads
3128 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3130 * Fix memory leak in open (Valient Gough)
3132 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
3134 * Add "close after delete" support to libfuse (patch by Valient
3137 * Cancel all worker threads before exit in multithreaded mode
3139 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
3143 * Don't send reply to RELEASE
3145 * Work with newer libtool (1.5a)
3147 * Check for st_atim member of struct stat
3149 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
3151 * No request allocation needed on inode and file release
3153 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
3155 * Fix possible inode leak in userspace in case of unfinished
3156 lookup/mknod/mkdir/symlink/link operation.
3158 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
3160 * Fix some races and cleanups in fuse_read_super()
3162 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
3164 * Requests are allocated at open time
3166 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
3168 * Build shared library as well as static (using libtool)
3170 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
3171 there has not been a release with the previous minor number, and I
3172 hope nobody is using it for anything.
3174 * Change fuse_main(), so that default behavior is to go into
3175 background if mount is successful. '-f' and '-d' options disable
3176 backgrounding. This fixes the "Why does my FUSE daemon hang?"
3179 * Cache ENOSYS (function not implemented) errors on *xattr, flush
3182 * Don't call getdir method from open() only from first readdir().
3183 Open is sometimes just used to store the current directory
3186 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
3188 * Added flush() call
3190 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
3192 * Extended attributes support for 2.4 (patch by Cody Pisto)
3194 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
3196 * Fixed parser with modversions (Mattias Wadman)
3198 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
3200 * Added mount option parser to 2.4 build
3202 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
3204 * Replaced binary mount data with text options
3206 * Show FUSE specific mount options in /proc/mounts
3208 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3210 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
3212 * Check some limits so userspace won't get too big requests
3214 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
3216 * Kill compile warning
3218 * Upgraded user-mount patch for 2.6.5
3220 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
3222 * Add detection of user-mode-linux to configure
3224 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
3226 * fixed zero size case for getxattr and listxattr
3228 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
3230 * new fusermount flag '-z': lazy unmount, default is not lazy
3232 * Extended attributes operations added (getxattr, setxattr,
3233 listxattr, removexattr)
3235 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
3237 * If filesystem doesn't define a statfs operation, then an
3238 all-zero default statfs is returned instead of ENOSYS
3240 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
3242 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3244 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
3246 * Fix for uClinux (Christian Magnusson)
3248 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
3250 * fuse_main() adds "-n progname" to the fusermount command line
3252 * More kernel interface changes:
3254 * Lookup/getattr return cache timeout values
3256 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
3258 * Clean up option parsing in fuse_main()
3260 * Added fuse_get() function which returns the fuse object created
3263 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
3265 * removed old way of mounting (fusermount mountpoint program)
3267 * more kernel interface changes:
3269 * added nanosecond precision to file times
3271 * removed interface version from mount data
3273 * added /proc/fs/fuse/version which contains MAJOR.MINOR
3275 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
3277 * statfs library API changed to match other methods. Since this
3278 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3280 * kernel interface changes follow:
3282 * statfs changed to 64 bits, added 'bavail' field
3284 * add generation number to lookup result
3286 * optimized mknod/mkdir/symlink/link (no separate lookup is
3289 * rdev size increased to 32 bits for mknod
3291 * kernel interface version changed to 3.1
3293 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
3295 * user-mount upgraded for 2.6.3 kernel
3297 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
3299 * Added user-mount.2.6.2-rc3.patch
3301 * Add FS_SAFE flag to fuse filesystem
3303 * fusermount should allow (un)mounting for non-root even if not
3306 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
3308 * Remove MS_PERMISSION mount flag (that means something else now)
3310 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
3312 * Added check for i_size_read/write functions to configure.in
3313 (patch by Valient Gough)
3315 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
3317 * Fixed writing >= 2G files
3319 * Check file size on open (with generic_file_open())
3321 * Readpage calls flush_dcache_page() after storing data
3323 * Use i_size_read/write for accessing inode->i_size
3325 * Make loopback mount of a fuse file work
3327 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
3331 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
3333 * Properly check if the inode exists in fuse_invalidate
3335 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
3337 * Added -q option for fusermount
3339 * fuse_unmount() now uses -q option of fusermount, so no error is
3340 printed if the cause of the program exit is that the filesystem
3341 has already been unmounted
3343 * Fix i_nlink correctness after rmdir/unlink
3345 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3349 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3351 * Fix typo (thanks Marcos Dione)
3353 * Compile fixes for 2.4 kernels
3355 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
3357 * Fix CONFIG_MODVERSIONS compile on 2.6
3359 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
3361 * Write all pending data before a RELEASE operation
3363 * Suppress 'Bad file descriptor' warning on exit
3365 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3366 get confused with '-d' of fuse_main() (sorry about this change)
3368 * New fusermount option '-l' which enables big reads. Big reads
3369 are now disabled by default.
3371 * fuse_main() can accept fusermount arguments after a '--'
3373 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
3375 * Support for exporting filesystem over NFS (see README.NFS)
3377 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
3379 * Support non-blocking writepage on 2.6. This makes FUSE behave
3380 much more nicely in low-memory situations
3382 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3383 (Note: the mknod method does not yet use 32bit device number)
3385 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
3389 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
3393 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
3395 * Integrated 2.6 kernel support patch by Michael Grigoriev
3397 * Improvements and cleanups for 2.6 kernels
3399 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
3401 * Added -d option to fusermount
3403 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
3405 * Added major+minor version to library API, and minor version to
3408 2003-12-13 David McNab <david@rebirthing.co.nz>
3410 * Implemented fsync support in examples/example.py
3412 * Implemented 'fsync' and 'statfs' methods in python
3415 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
3417 * Make it compile on 2.4.19.
3419 * Add fsync operation (write file failed on xemacs & vi)
3421 2003-12-12 David McNab <david@rebirthing.co.nz>
3423 * Added distutils support to the python module, as per standard
3424 python development practice
3426 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
3428 * Add file locking for mount/unmount (based on patch by Valient
3431 2003-12-11 David McNab <david@rebirthing.co.nz>
3433 * Python filesystem - was broken with python2.3, now fixed:
3434 - changed PyTuple_* calls to PySequence_*, because os.lstat
3435 is no longer returning a pure tuple
3436 - changed PyInt_Check() calls to also call PyLong_Check,
3437 to cover for cases (eg os.lstat) where longs are returned
3438 - Added support for file 'release' handling, which IMO is
3439 essential since this signals to a FS that writes to a file
3440 are complete (and therefore the file can now be disposed of
3441 meaningfully at the python filesystem's discretion)
3442 - Added '__init__' handler to base Fuse class, which allows
3443 your Python class to know the mountpoint and mount args,
3444 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3447 - added 'mount.fuse' script (in util/ dir), which is meant to be
3448 symlinked from /sbin, and which allows FUSE filesystems to
3449 be mounted with the 'mount' command, and listed in fstab;
3450 also, mount arguments get passed to your filesystem
3453 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
3455 * Fix kernel version detection (again). Bugreport by Peter Levart
3457 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
3459 * Applied read combining patch by Michael Grigoriev (tested by
3460 Valient Gough and Vincent Wagelaar)
3462 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
3464 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3467 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
3469 * Error code fixes in kernel module
3471 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
3473 * kernel version detection fix
3475 * fusermount now uses "lazy" umount option
3477 * fusermount can use modprobe with module-init-tools
3479 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
3481 * Integrated caching patch by Michael Grigoriev
3483 * Added "Filesystems" file with descriptions of projects using
3486 * Added patch by Michael Grigoriev to allow compliation of FUSE
3487 kernel module for 2.6 kernels
3489 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
3491 * And another spec-file fix by Achim Settelmeier
3493 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
3495 * Spec-file fix by Achim Settelmeier
3497 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
3499 * Fix umount oops (found by Samuli Kärkkäinen)
3501 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
3503 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3505 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
3507 * Updated fuse.spec file (Achim Settelmeier)
3509 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
3511 * Version 1.0 released
3513 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
3515 * SuSE compilation fix by Juan-Mariano de Goyeneche
3517 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
3519 * The release() VFS call is now exported to the FUSE interface
3521 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
3523 * 64 bit file offset fixes in the fuse kernel module
3525 * Added function 'fuse_exit()' which can be used to exit the main
3528 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
3530 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
3531 an incompatible interface change.
3533 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
3535 * Portablility fix (bug reported by C. Chris Erway)
3537 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
3539 * Use Mark Glines' fd passing method for default operation instead
3542 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3544 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3546 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3548 * fix incompatiblity with Red Hat kernels, with help from Nathan
3551 2002-04-18 Mark Glines <mark@glines.org>
3553 * added an alternative to fuse_mount(), called
3554 fuse_mount_ioslave(), which does not need to reexec the
3556 * added a small helper util needed by fuse_mount_ioslave().
3558 2002-03-16 Mark Glines <mark@glines.org>
3560 * use struct fuse_statfs everywhere possible to avoid problems
3561 with the headerfiles changing struct statfs member sizes
3563 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
3565 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3567 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
3569 * RPM support by Achim Settelmeier
3571 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3573 * Version 0.95 released
3575 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3577 * Revaidate all path components not just the last, this means a
3578 very small performance penalty for being more up-to-date.
3580 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
3582 * Update and fix python interface
3584 2002-01-07 Mark Glines <mark@glines.org>
3586 * Added statfs() support to kernel, lib, examples, and perl!
3588 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
3590 * Better cross compilation support
3592 * Ported to Compaq IPAQ
3594 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
3596 * Added function fuse_get_context() to library API (inspired by
3597 patch from Matt Ryan)
3599 * Added flags to fusermount and to kernel interface to control
3602 * Integrated fuse_set_operations() into fuse_new()
3604 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
3606 * Applied header protection + extern "C" patch by Roland
3609 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
3611 * Added perl bindings by Mark Glines
3613 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
3615 * Cleaned up way of mounting simple filesystems.
3617 * fuse_main() helper function added
3619 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
3621 * Optimized read/write operations, so that minimal copying of data
3624 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
3626 * Python bindings by Jeff Epler added
3628 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
3630 * Fixed vfsmount reference leak in fuse_follow_link
3632 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3633 userspace is ignored
3635 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>