1 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
5 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
7 * Fix checking for symlinks in umount from /tmp. Reported by Al
10 * Fix umounting if /tmp is a symlink. Reported by Franco Broi
12 2010-02-18 Miklos Szeredi <miklos@szeredi.hu>
14 * Fix definition of FUSE_OPT_END for C++. Reported by Tim
17 2010-02-03 Miklos Szeredi <miklos@szeredi.hu>
19 * Fix stack alignment for clone()
21 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
25 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
27 * Using "--no-canonicalize" with umount(8) conflicts with the race
28 fix, sinceit assumes the supplied path is absolute, while the race
29 fix relies on the path being relative to the current directory.
30 Reported by Tom Rindborg
32 2010-01-26 Miklos Szeredi <miklos@szeredi.hu>
36 2010-01-21 Miklos Szeredi <miklos@szeredi.hu>
38 * Fix race if two "fusermount -u" instances are run in parallel.
39 Reported by Dan Rosenberg
41 * Make sure that the path to be unmounted doesn't refer to a
44 2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
46 * Fix compile error on FreeBSD. Patch by Jay Sullivan
48 2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
50 * Use '--no-canonicalize' option of mount(8) (available in
51 util-linux-ng version 2.17 or greater) to avoid calling
52 readling(2) on the newly mounted filesystem before the mount
53 procedure is finished. This has caused a deadlock if "audit" was
54 enabled in the kernel. Also use '--no-canonicalize' for umount to
55 avoid touching the mounted filesystem.
57 2009-09-11 Miklos Szeredi <miklos@szeredi.hu>
61 2009-08-25 Miklos Szeredi <miklos@szeredi.hu>
63 * Fix missing versioned symbol fuse_get_context@FUSE_2.2
65 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
69 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
71 * Add missing fuse_session_data to versionscript
73 * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
75 2009-07-16 Miklos Szeredi <miklos@szeredi.hu>
77 * Clarify how the protocol version should be negotiated between
78 kernel and userspace. Notably libfuse didn't correctly handle the
79 case when the supported major versions didn't match
81 * Add missing pthread link for libulockmgr. Patch by Petr Salinger
83 2009-07-02 Miklos Szeredi <miklos@szeredi.hu>
85 * The context is extended with a 'umask' field. The umask is sent
86 for mknod, mkdir and create requests by linux kernel version
87 2.6.31 or later, otherwise the umask is set to zero. Also
88 introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel
89 supports this feature, then this flag will be set in conn->capable
90 in the ->init() method. If the filesystem sets this flag in in
91 conn->want, then the create modes will not be masked.
93 * Add low level interfaces for lookup cache and attribute
94 invalidation. This feature is available in linux kernels 2.6.31
95 or later. Patch by John Muir
97 * Kernel interface version is now 7.12
99 * fusermount: Do not silently ignore command line arguments.
100 Patch by Sebastian Harl
102 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
104 * Released 2.8.0-pre3
106 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
108 * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
109 level lib) functions to query the supplementary group IDs for the
110 current request. Currently this is implemented on Linux by
111 reading from the /proc filesystem.
113 2009-06-18 Miklos Szeredi <miklos@szeredi.hu>
115 * Add "noforget" option to high level lib to prevent ESTALE errors
116 on NFS exported filesystems. This result in paths being cached
117 forever, resulting in ever growing memory usage. Use with care.
119 * Add "no_remote_lock" option to disable remote file locking even
120 if the filesystem implements it. With this option locking
121 primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
122 will ignore remotely locked files.
124 * CUSE patches from Tejun Heo:
126 * Unrestricted ioctl support left some debris. Clean them up:
127 o No reason to pass around pointer to flags. Pass flags directly.
128 o Clean up comment and prototype parameter names.
129 o fuse_lib_ioctl() didn't reply when get_path() failed. Fix it.
130 o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
132 * Add fuse_reply_ioctl_iov()
134 * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
135 and make send_reply_iov() and fuse_setup_common() global (also in
136 fuse_i.h). These will be used by CUSE support.
138 * Restructure fuse_ll_process()
140 * Implement libfuse side of CUSE support. CUSE uses subset of FUSE
141 operations as dir operations don't make sense for CUSE where one
142 instance implements single character device.
144 CUSE support comes with its own cuse_lowevel_ops and related
145 initialization and helper functions. Except for initialization, it
146 usage is basically identical to FUSE.
148 This patch also adds example/cusexmp.c which can create a character
149 device with name and device number specified on command line. The
150 created device itself is pretty boring. It's a bit bucket supporting
151 read, write and access via ioctl.
153 2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
155 * Add missing fuse_reply_bmap to versionscript. Debian
156 Bug#531329. Reported by Goswin Brederlow
158 2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
160 * Don't call forget_node() if the lookup was negative and write()
161 for the reply returned ENOENT. Reported by John Haxby
163 2009-05-25 Miklos Szeredi <miklos@szeredi.hu>
165 * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
167 2009-05-08 Miklos Szeredi <miklos@szeredi.hu>
169 * Fix missing newlines in some printfs
171 * Fix 'make install-strip'. Reported by Dominick Layfield
173 2009-01-05 Miklos Szeredi <miklos@szeredi.hu>
175 * Released 2.8.0-pre2
177 2008-12-08 Miklos Szeredi <miklos@szeredi.hu>
179 * Implement poll support. Patch by Tejun Heo
181 * Add missing setattr flags to <fuse_lowlevel.h>.
183 * Only pass valid flags to ->setattr().
185 2008-12-05 Miklos Szeredi <miklos@szeredi.hu>
187 * Implement ioctl support. On high level interface only
188 "restricted" ioctls are supported (which are defined with the
189 _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls
190 will only be allwed to CUSE (Character Device in Userspace)
191 servers. Patch by Tejun Heo
193 2008-11-28 Miklos Szeredi <miklos@szeredi.hu>
195 * If open sets fi->nonseekable, libfuse will tell the kernel that
196 the file is not seekable. Patch by Tejun Heo
198 2008-11-19 Miklos Szeredi <miklos@szeredi.hu>
200 * lowlevel lib: fix deadlock if fuse_reply_* is called from the
201 interrupt handling function. Reported by Tero Marttila
203 2008-10-16 Miklos Szeredi <miklos@szeredi.hu>
205 * Allow commas in options to be escaped with a backslash
207 * Add new function: fuse_opt_add_opt_escaped()
209 * Add missing fuse_reply_bmap() to the version script
211 2008-10-14 Miklos Szeredi <miklos@szeredi.hu>
213 * Pass current file flags to read and write operations
215 2008-07-24 Miklos Szeredi <miklos@szeredi.hu>
217 * Clean up debug output in highlevel lib
219 2008-07-10 Miklos Szeredi <miklos@szeredi.hu>
221 * Released 2.8.0-pre1
223 2008-06-27 Miklos Szeredi <miklos@szeredi.hu>
225 * Fix handling of (no)suid and (no)dev options if filesystem is
226 mounted from /etc/fstab or via mount(8). Reported by Jan Ondrej.
228 * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
229 read-only filesystem. This works around issues with certain mount
230 implementations. Reported by Szabolcs Szakacsits.
232 2008-06-16 Miklos Szeredi <miklos@szeredi.hu>
234 * Remove fuse kernel module sources. Linux 2.6.27 will support
237 2008-06-10 Miklos Szeredi <miklos@szeredi.hu>
239 * Fix theoretical infinite loops in libfuse. Reported by Szabolcs
242 * Fix missing <sys/param.h> include for PATH_MAX. Reported by
245 2008-05-23 Miklos Szeredi <miklos@szeredi.hu>
247 * Fix mounting over symlink. Reported by Szabolcs Szakacsits
249 2008-05-09 Miklos Szeredi <miklos@szeredi.hu>
251 * Don't allow bigger than 4kB writes by default on 2.6.26 and
252 later kernels, so that filesystems not expecting this are not
253 broken on a kernel upgrade. Provide a 'big_writes' mount option
254 to enable this feature. In future API revisions this may become
257 2008-04-09 Miklos Szeredi <miklos@szeredi.hu>
259 * Update warning message for missing newline at end of fuse.conf
261 * Update debug message for successful operation to not include the
264 2008-04-08 Miklos Szeredi <miklos@szeredi.hu>
266 * Update error message for missing mountpoint parameter. Reported
269 2008-04-04 Miklos Szeredi <miklos@szeredi.hu>
271 * Print library version information to debug output
273 * Highlevel lib: don't limit paths to 4095 characters
275 2008-03-25 Miklos Szeredi <miklos@szeredi.hu>
277 * Fix memory leaks on mount. Patch by Szabolcs Szakacsits
279 2008-03-19 Miklos Szeredi <miklos@szeredi.hu>
281 * Fix missing pthread_mutex_destroy in error path of
282 fuse_lib_opendir(). Patch by Szabolcs Szakacsits
284 2008-03-07 Miklos Szeredi <miklos@szeredi.hu>
286 * Add queuing on contention to per-node lock algorithm, to avoid
289 * Only enable cancelation when reading a request, otherwise
290 cancellation could happen with a mutex held, which could hang the
293 2008-02-08 Miklos Szeredi <miklos@szeredi.hu>
295 * Block SIGCHLD when executing mount and umount
297 * fusexmp_fh: avoid unnecessary seeking in readdir
299 * Update kernel interface to 7.9:
301 * Support receiving file handle from kernel in GETATTR request
303 * Allow operations with a NULL path argument, if the filesystem
306 * Add support atomic open(O_TRUNC)
308 * Support the st_blksize field in struct stat
310 * If the "FUSE_THREAD_STACK" environment is set, initialize the
311 stack size of threads by this value. Patch by Florin Malita
313 * Add per-node locking, instead of a global tree lock to protect
314 the path from changing during operations. Original patch by
317 2008-02-03 Csaba Henk <csaba.henk@creo.hu>
320 - string formatting fixes
321 - exit if mounting has failed
322 (in FreeBSD a mount failure is not critical per se, as the daemon
323 still could be mounted externally, but waiting for such an event
324 is more confusing than fruitful)
325 - ditch the kvm(8) stuff and simply use forced unmount which just
327 - prettify option specifications
328 - add "-onosync_unmount" kernel option
330 2008-01-07 Csaba Henk <csaba.henk@creo.hu>
333 - refine device closing in a race-free way
334 - add support for "-osubtype" on FreeBSD
336 * makeconf.sh: make it work under FreeBSD
338 2008-01-03 Csaba Henk <csaba.henk@creo.hu>
340 * lib/mount_bsd.c: close device before unmount
341 (cf. lib/mount.c rev. 1.43) and fix some warnings
343 2007-12-23 Miklos Szeredi <miklos@szeredi.hu>
345 * Fix './configure --disable-static'. Patch from Ismail Dönmez
347 2007-12-17 Miklos Szeredi <miklos@szeredi.hu>
351 2007-12-12 Miklos Szeredi <miklos@szeredi.hu>
353 * Fix kernel module compile for 2.6.24
355 * Invalidate attributes of parent directory after create(), since
356 the modification time changes. Invalidate attributes on rename,
357 since some filesystems may update st_ctime. Reported by Szabolcs
360 * Fix NFS exporting to handle 64bit node IDs
362 * Disable old symbol versions if __UCLIBC__ is defined. If a
363 symbol in a library has multiple versions, the runtime linker in
364 uClibc seems to randomly choose between them.
366 * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
367 fuse_version_script. fuse_opt_free_args() was added in fuse-2.6.
369 * Close fuse device file descriptor before calling umount(),
370 preventing a deadlock when umount is synchronous. Reported by
373 2007-11-12 Miklos Szeredi <miklos@szeredi.hu>
375 * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
376 symlink. This bug was introduced in 2.7.1 by "Don't call
377 /bin/[u]mount if /etc/mtab is a symlink". Found by robertsong.
379 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
383 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
385 * Clarify licence version to be "LGPLv2" for the library
389 * After mount set nlink attribute for the root inode to 1
391 * Fix wake up of task waiting for a reserved request
393 * Fix allowing setattr, listxattr and statfs for other users
395 2007-09-18 Miklos Szeredi <miklos@szeredi.hu>
397 * Add missing context initialization in fuse_fs_chmod(). Bug
400 * Fix kernel module compilation for 2.6.23. Based on patch by
403 2007-09-04 Philippe Elie <phil.el@wanadoo.fr>
405 * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
407 2007-07-31 Miklos Szeredi <miklos@szeredi.hu>
409 * Work around hotplug issue, that it calls filesystem with file
410 descriptors 0, 1 and 2 not open. Tracked down by Leif Johnson
412 2007-07-25 Miklos Szeredi <miklos@szeredi.hu>
414 * Don't call /bin/[u]mount if /etc/mtab is a symlink. Reported by
417 * Also don't touch /etc/mtab if it is within the mounted
418 filesystem. Suggested by Jeffrey Law
420 2007-07-12 Miklos Szeredi <miklos@szeredi.hu>
422 * Reset args->argc in fuse_opt_free_args(). Patch by Lucas
425 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
429 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
431 * Accept a NULL "op" for fuse_main(), etc. This is useful if
432 filesystem is only invoking fuse to print a help message, or
433 version. Fixes RedHat bugzilla #217343
435 2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
437 * lib: fix locking when loading a filesystem module
439 2007-06-21 Miklos Szeredi <miklos@szeredi.hu>
441 * Add fs subtype support to mount.fuse
443 2007-06-20 Miklos Szeredi <miklos@szeredi.hu>
445 * Add fs subtype support to libfuse and fusermount
447 2007-06-19 Miklos Szeredi <miklos@szeredi.hu>
449 * kernel: sync with mainline (2.6.22)
451 2007-06-18 Miklos Szeredi <miklos@szeredi.hu>
453 * Send debug output to stderr instead of stdout. Patch by Jan
456 2007-06-03 Miklos Szeredi <miklos@szeredi.hu>
458 * libulockmgr: Work around a kernel bug in recv(), causing it to
459 sometimes return zero even if data was available on the socket.
461 2007-05-29 Miklos Szeredi <miklos@szeredi.hu>
463 * lib: optimization: store parent pointer in node instead of
466 2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
468 * lib: don't create new thread for each FORGET request. FORGET
469 messages sometimes caused so many threads to be created, that
470 process virtual memory space ran out. Reported by Chris AtLee
472 2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
474 * lib: fix memory leak on thread creation failure in multithreaded
475 event loop. Found by Chris AtLee
477 2007-05-23 Miklos Szeredi <miklos@szeredi.hu>
479 * lowlevel lib: add fuse_reply_iov function, which is similar to
480 fuse_reply_buf, but accepts a vector of buffers. Patch by Roger
483 2007-05-21 Miklos Szeredi <miklos@szeredi.hu>
485 * Fix Oops or error if a regular file is created with mknod(2) on
486 a fuse filesystem. Kernels 2.6.18 onward are affected. Thanks to
487 J. Cameijo Cerdeira for the report
489 2007-05-11 Csaba Henk <csaba.henk@creo.hu>
491 * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
492 Error reported by Csaba Henk, fix by Miklos Szeredi
494 * libfuse: fix unlock in flush
496 * libfuse: do unlocking on RELEASE+FLUSH
498 2007-05-03 Miklos Szeredi <miklos@szeredi.hu>
502 2007-05-02 Miklos Szeredi <miklos@szeredi.hu>
504 * kernel: sync with mainline:
506 * Use invalidate_mapping_pages() if available
508 * Fix BUG when invalid file type is supplied in mount. Patch by
511 2007-04-27 Miklos Szeredi <miklos@szeredi.hu>
513 * libfuse: call umount(8) directly instead of fusermount if
516 * Clean up init script, make it LSB compliant
518 2007-04-26 Miklos Szeredi <miklos@szeredi.hu>
520 * In multithreaded loop, use a semaphore instead of SIGHUP to wake
521 up the main thread on umount. This is more elegant, and works
522 even if signals are blocked.
524 2007-04-25 Miklos Szeredi <miklos@szeredi.hu>
526 * Improve mounting support in libfuse:
527 - check non-empty mountpoint
528 - only fall back to fusermount when necessary
530 2007-04-23 Miklos Szeredi <miklos@szeredi.hu>
532 * Don't chdir to "/" in foreground mode, it causes more trouble
535 2007-04-18 Miklos Szeredi <miklos@szeredi.hu>
537 * Replace utils/mount.fuse "sh" script with a "C" program
539 2007-04-15 Miklos Szeredi <miklos@szeredi.hu>
541 * Add -lulockmgr to compilation comment in fusexmp_fh.c
543 2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
545 * Check for iconv. Patch by Csaba Henk
547 * Add direct umounting
549 * Use "fusectl" as the device for the fusectl filesystem. Debian
550 Bug#417945. Reported by Laurent Bonnaud
552 2007-04-01 Csaba Henk <csaba.henk@creo.hu>
554 * Fix some FreeBSD related macros.
556 2007-03-30 Miklos Szeredi <miklos@szeredi.hu>
558 * Add support for direct mounting by libfuse. Fall back on
559 calling fusermount if it doesn't work
561 2007-03-14 Miklos Szeredi <miklos@szeredi.hu>
563 * Released 2.7.0-pre1
565 2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
567 * Correctly handle O_APPEND in direct IO mode. Reported by Greg
570 * mount.fuse should use /bin/bash. Debian Bug#413403. Reported
571 by Thomas Weinbrenner
573 2007-02-26 Miklos Szeredi <miklos@szeredi.hu>
575 * Fix detection of installed fuse in init script. Reported and
576 fix suggested by Davide Canova
578 2007-02-05 Miklos Szeredi <miklos@szeredi.hu>
580 * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
581 don't define mutex_destroy(), bummer. Patch from Phil Schwan
583 2007-02-04 Miklos Szeredi <miklos@szeredi.hu>
585 * Compile fuseblk for kernels which don't have an option to turn
586 off the block layer (CONFIG_BLOCK). Reported by Szakacsits
589 2007-02-03 Miklos Szeredi <miklos@szeredi.hu>
591 * Add filesystem stacking support to high level API. Filesystem
592 modules can be built into libfuse or loaded from shared object
595 * Add 'subdir' and 'iconv' built in modules
597 * lib/fuse.c: Fix locking for the reply code in create and open
599 2007-02-02 Miklos Szeredi <miklos@szeredi.hu>
601 * kernel: make it compile on "strange" kernels which have emulated
602 mutexes via <linux/mutex.h> but no i_mutex. Reported by Tomasz
605 2007-01-28 Miklos Szeredi <miklos@szeredi.hu>
607 * kernel: fix BUG in control filesystem if it is umounted and
608 mounted again, while some fuse filesystems are present.
609 Bugreport from Florent Mertens
611 * kernel: sync with mainline, support 2.6.20
613 2007-01-22 Miklos Szeredi <miklos@szeredi.hu>
615 * lib/Makefile.am: actually link libfuse against libfuse_libs
617 2007-01-19 Miklos Szeredi <miklos@szeredi.hu>
619 * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels. Patch from
622 2007-01-18 Miklos Szeredi <miklos@szeredi.hu>
624 * Fix abort in fuse_new() compatibility API for opts == NULL case.
625 Novell bugzilla #233870. Patch from Takashi Iwai.
627 2007-01-13 Miklos Szeredi <miklos@szeredi.hu>
629 * Fix option parsing in mount.fuse. Patch from Jens M. Noedler
631 2007-01-02 Miklos Szeredi <miklos@szeredi.hu>
633 * Fix unaligned access in file desctriptor passing in libfuse,
634 fusermount and ulockmgr. Debian bug ID: 404904. Reported and
635 tested by Sebastian Fontius
637 2006-12-16 Miklos Szeredi <miklos@szeredi.hu>
639 * kernel: don't keep unreferenced inodes in the icache.
641 2006-12-15 Miklos Szeredi <miklos@szeredi.hu>
643 * fusermount: Fix detection of fuseblk. Reported by Szakacsits
646 * lib: Fix use after free in fuse_flush(). Reported by Ron
649 2006-12-10 Miklos Szeredi <miklos@szeredi.hu>
651 * mount.fuse: add "setuid=USER" option which does a "su - USER"
654 * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
655 "/bin/umount" to remove entry from /etc/mtab. This gets rid of
656 the ugly code dealing with mtab, as well as a possible race
657 between fusermount and mount trying to modify /etc/mtab at the
660 * Fix "buffer size too small: 4" warning for users of the
661 fuse_loop_mt_proc() function.
663 2006-12-04 Miklos Szeredi <miklos@szeredi.hu>
665 * Fix warnings with gcc-4.1 on 64bit archs. Report from
668 * Add extra warning options, and fix resulting warnings
670 * Really fix fuse_teardown problem
672 2006-12-02 Miklos Szeredi <miklos@szeredi.hu>
674 * Add -lrt to fuse.pc (if needed) to fix static linking against
675 libfuse. Reported by Szakacsits Szabolcs
677 2006-12-01 Miklos Szeredi <miklos@szeredi.hu>
681 2006-11-30 Miklos Szeredi <miklos@szeredi.hu>
683 * Fix API version 21 and 22 compatibility for fuse_teardown.
686 2006-11-29 Miklos Szeredi <miklos@szeredi.hu>
688 * fusermount: Print a more helpful message in case the kernel
689 doesn't support the 'fuseblk' filesystem type. This has been
690 biting ntfs-3g users. Reported by Yura Pakhuchiy
692 * kernel: fix build problem for "make -C ...". Reported by
695 2006-11-19 Miklos Szeredi <miklos@szeredi.hu>
697 * Fix bug in certain error paths of lookup routines. The request
698 object was reused for sending FORGET, which is illegal. This bug
699 could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
700 silently corrupt memory in earlier versions. Report and test
703 2006-11-11 Miklos Szeredi <miklos@szeredi.hu>
705 * Print an error if an incompatible kernel interface version is
706 detected in INIT. This will only show if filesystem is started
709 * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
710 fuse_setup_common(). Reported by Szakacsits Szabolcs
712 2006-11-06 Miklos Szeredi <miklos@szeredi.hu>
714 * Fix recursive locking in fuse_create(). Thanks to Takuya
715 Ishibashi for the bug report
717 2006-10-28 Miklos Szeredi <miklos@szeredi.hu>
719 * Fix automake problem. Patch from Nix
721 2006-10-26 Miklos Szeredi <miklos@szeredi.hu>
723 * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
724 always available on embedded systems. Patch from Paul Smith
726 * Fix util/Makefile.am, so that failure to run update-rc.d or
727 device creation doesn't cause make to fail. Reported by Paul
730 2006-10-21 Miklos Szeredi <miklos@szeredi.hu>
734 2006-10-18 Miklos Szeredi <miklos@szeredi.hu>
736 * fusermount: don't try to create a lock file if /etc/mtab is a
737 symlink. Report and patch from Alexei Sheplyakov (debian bug
740 2006-10-17 Miklos Szeredi <miklos@szeredi.hu>
742 * Minor changes, sync with mainline tree
744 2006-10-16 Miklos Szeredi <miklos@szeredi.hu>
748 2006-10-15 Miklos Szeredi <miklos@szeredi.hu>
752 2006-10-13 Miklos Szeredi <miklos@szeredi.hu>
754 * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
755 Report from David Shaw
757 * lib: Fix lost error on renaming a file. Report from David Shaw
759 * lib: Fix lost error on hiding open files (renaming to
762 * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
763 activity. The cause of the bug was that some calls to
764 i_size_write() were not protected by a lock, and hence
765 i_size_seqcount could become corrupted. This caused subsequent
766 calls to i_size_read() to spin forever. This is a long standing
767 bug was probably introduced in version 2.2, and thought to be
768 related to NFS exporting (it's not). It was reported by various
769 people, but Dana Henriksen has finally helped me to track it down,
772 * kernel: Protect against truncation of a swapfile
774 2006-10-10 Miklos Szeredi <miklos@szeredi.hu>
776 * kernel: Check for signature of super_operations->umount_begin().
777 Ubuntu kernel 2.6.17 seems to use the new signature found in
778 2.6.18. Thanks to Florent Mertens for the report
780 2006-10-08 Miklos Szeredi <miklos@szeredi.hu>
782 * Make sure inode numers wrap around at 2^32. This is needed on
783 dual 64bit/32bit architectures, because 32bit applications using
784 the non-largefile interface would otherwise break (EOVERFLOW error
785 would be returned by the stat() system call family)
787 * ulockmgr: handle the case, when a locking operation fails
788 because no more file desctriptors are available in
789 ulockmgr_server. Also work around a Linux kernel bug (known to
790 exist for all Linux kernel versions <= 2.6.18) which may cause
791 sent file descriptors to be lost in the above case
793 * ulockmgr: optimize file descriptor use
795 * restore needed cpp flags to util/Makefile.am
797 * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
799 * Minor clean up of udev rules
801 * Add a synchronous DESTROY message to kernel interface. This is
802 invoked from umount, when the final instance of the filesystem is
803 released. It is only sent for filesystems mounted with the
804 'blkdev' option for security reasons.
806 * If the DESTROY message is received, call the filesystem's
807 ->destroy() method. In this case it's not called from session
808 destruction as it would be otherwise.
810 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
814 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
816 * Add support for FLUSH+RELEASE operation for FreeBSD. Original
819 * Add init script to insert fuse module and mount the control
820 filesystem. The script is installed as /etc/init.d/fuse and on
821 debian based systems (where update-rc.d is available) symlinks
822 from /etc/rc*.d/ are also installed.
824 * Include '#define FUSE_USE_VERSION=XX' into examples so they
825 become more self contained.
827 2006-09-30 Miklos Szeredi <miklos@szeredi.hu>
831 * Move lock_owner from a separate argument into fuse_file_info
833 * Add a flag to fuse_file_info indicating (1) a highlevel lock
834 operation (unlock all) was initiated by a flush, (2) a lowlevel
835 release operation should perform a flush as well.
837 * fusermount: revert modprobe change (2006-08-18) since it
838 doesn't work reliably with udev
840 * Add support for block device backed filesystems. This mode is
841 selected with the 'blkdev' option, which is privileged.
843 * Add support for the bmap (FIBMAP ioctl) operation on block
844 device backed filesystems. This allows swapon and lilo to work on
849 * Drop support for kernels earlier than 2.6.9. Kernel module from
850 previous (2.5.x) release can be used with library from this
853 * In fuse_dentry_revalidate() use dget_parent() instead of
854 dereferencing d_parent, since there's no protection against parent
855 changing and going away
857 * Protect nlookup from concurrent updates
859 * In lookup if a directory alias exists but is unused,
860 then get rid of it, otherwise return -EBUSY.
862 * In mkdir if a directory alias exists, return success, but leave
863 dentry negative. In reality this could happen if a remote rename
864 immediately followed the mkdir.
866 * Don't BUG in fuse_iget() if multiple retries are needed to get a
867 good inode. This could happen if several lookups are racing for
870 2006-09-29 Miklos Szeredi <miklos@szeredi.hu>
872 * Fix compilation on 2.6.9. Report from Troy Ayers
874 2006-09-27 Miklos Szeredi <miklos@szeredi.hu>
876 * Fix Oops in fuse_readpages(). Reported by David Shaw
878 2006-09-24 Csaba Henk <csaba.henk@creo.hu>
880 * Add support for nanosec times on FreeBSD
882 * Fix FreeBSD compatibility issues
884 2006-09-23 Miklos Szeredi <miklos@szeredi.hu>
886 * Fix one more compatibility bug. Thanks to Ricardo Correia
888 * Fix utimens compilation with uClibc. Patch from Jamie Guinan
890 2006-09-22 Miklos Szeredi <miklos@szeredi.hu>
892 * Fixed several compatibility bugs in low level interface.
893 Reported by Ricardo Correia
895 * Add workaround for ARM caching bug
897 2006-09-16 Miklos Szeredi <miklos@szeredi.hu>
899 * Rename new utimes() method to more logical utimens()
901 2006-09-14 Miklos Szeredi <miklos@szeredi.hu>
903 * Fuse tried to unlink already unlinked hidden files. Bug
904 reported by Milan Svoboda
906 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
910 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
912 * kernel: Fix unlock on close for kernels < 2.6.18
914 * Add ulockmgr library & server. This can be used for handling
915 file locking requests either directly from libfuse or over a
916 network, etc. This first version is not optimized and the number
917 of file descriptors it uses may get out of hand
919 2006-09-07 Miklos Szeredi <miklos@szeredi.hu>
921 * lib: Add interrupt support to high level library, which may be
922 enabled with the 'intr' mount option.
924 * When an operation is interrupted the thread handling that
925 operation will receive SIGUSR1 (or other signal specified with the
926 'intr_signal=N' option). The library installs a no-op signal
927 handler for this signal, unless there's already a handler
930 * The filesystem may query interrupt status (regardless of 'intr')
931 with the fuse_interrupted() function.
933 * mount.fuse: initialize $HOME if not set. Report from Sven Goldt
935 2006-09-03 Miklos Szeredi <miklos@szeredi.hu>
937 * lib: Multithreaded loop now allows unlimited number of threads.
938 This is needed for locking operations which may block
939 indefinitely. Also the kernel now doesn't limit the number of
940 outstanding requests so the library shouldn't do so either.
942 2006-09-01 Miklos Szeredi <miklos@szeredi.hu>
944 * Fix recursive lock bug in interrupt handling
946 * Add utimes() method to highlevel interface, which supports
947 setting times with nanosecond resolution
949 2006-08-18 Miklos Szeredi <miklos@szeredi.hu>
951 * kernel: fix page leak if fuse_readpages() failed in it's
952 initialization. Bug found and original patch from Alexander
955 * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
956 the kernel tree) the statfs method will receive the path within
957 the filesystem on which the stat(v)fs syscall was called
959 * fusermount: try to modprobe fuse module if invoked by root and
960 unable to open device. This is needed with udev, since the device
961 node will be created only when the module is inserted, hence
962 module autoloading won't work. Reported by Szakacsits Szabolcs
964 2006-07-30 Miklos Szeredi <miklos@szeredi.hu>
966 * fusermount: if selinux is active, restore the original file's
967 security context in unmount_rename(). Redhat bugzilla id 188561.
968 Patch from Yves Perrenoud
970 * Add POSIX file locking operation to high level library
972 * Initialize context for unlink of hidden files on umount. Bug
973 reported by Tim Stoakes
975 2006-07-14 Miklos Szeredi <miklos@szeredi.hu>
977 * Multiple release() calls can race with each other, resulting in
978 the hidden file being deleted before the last release finishes.
979 Bug found and patch tested by Mark Huijgen
981 2006-07-05 Miklos Szeredi <miklos@szeredi.hu>
983 * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
984 this makes sense on systems using udev. Reported by Szakacsits
987 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
989 * Released 2.6.0-pre3
991 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
993 * Support in kernel module for file locking and interruption. The
994 same functionality is available in official kernels >= 2.6.18
996 2006-06-28 Miklos Szeredi <miklos@szeredi.hu>
998 * Add POSIX file locking support
1000 * Add request interruption
1002 2006-06-06 Miklos Szeredi <miklos@szeredi.hu>
1004 * Add missing pthread_rwlock_destroy(). Patch from Remy Blank
1006 2006-06-05 Remy Blank <remy.blank@pobox.com>
1008 * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1009 unmounting succeeds even if mount point was relative.
1011 2006-06-04 Csaba Henk <csaba.henk@creo.hu>
1013 * lib: fix emergency umount in helper.c when malloc fails.
1014 (The way it was done would end up in a segfault.)
1016 2006-06-01 Csaba Henk <csaba.henk@creo.hu>
1018 * lib: adjust threading related compiler flags.
1019 Switch to "-pthread" from "-lpthread" as that's the preferred
1020 one on several platforms. Consulted with Terrence Cole and
1023 2006-05-08 Miklos Szeredi <miklos@szeredi.hu>
1025 * lib: search fusermount in installation directory (bindir) as
1028 2006-05-03 Miklos Szeredi <miklos@szeredi.hu>
1030 * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1031 Reported by Christian Magnusson
1033 2006-04-23 Csaba Henk <csaba.henk@creo.hu>
1035 * lib: make FreeBSD mount routine recognize if kernel features
1036 backgrounded init and if it does, run the mount util in foreground
1037 (similarly to Linux)
1039 2006-04-21 Miklos Szeredi <miklos@szeredi.hu>
1041 * kernel: fix fput deadlock fix, the lockless solution could lead
1042 to "VFS: busy inodes after umount..."
1044 * kernel: fix race between checking and setting file->private_data
1045 for the device. Found by Al Viro
1047 2006-04-11 Miklos Szeredi <miklos@szeredi.hu>
1049 * kernel: remove request pool, instead allocate requests on
1050 demand. Account the number of background requests, and if they go
1051 over a limit, block the allocation of new requests.
1053 * kernel: fix deadlock if backgrounded request holds the last
1054 reference to the super block
1056 * kernel: don't use fuse_reset_request() during direct I/O
1058 2006-04-06 Csaba Henk <csaba.henk@creo.hu>
1060 * lib: Let FreeBSD mount option parsing routine recognize "no"
1061 prefixes for FUSE specific options as well
1063 2006-04-01 Miklos Szeredi <miklos@szeredi.hu>
1065 * lib: Add missing rwlock initialization. Patch by Ryan Bradetich
1067 2006-03-17 Miklos Szeredi <miklos@szeredi.hu>
1071 * fuse_main(), fuse_setup() and fuse_new() have an additionl
1074 * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1077 * fuse_unmount() receives a 'struct fuse_chan' pointer. It
1078 destroys the given channel
1080 * fuse_teardown() no longer has a file descriptor parameter
1082 * new exported functions: fuse_session_remove_chan(),
1083 fuse_get_session(), fuse_daemonize()
1085 * fuse_chan_recv() may now return a new channel which will be used
1088 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1090 * Released 2.6.0-pre2
1092 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1094 * Don't unmount if already unmounted. This fixes a problem seen
1095 in the following situation: Lazy unmount a busy filesystem; Mount
1096 a new one in top; When the first finally unmounts, the second also
1097 unmounts. Reported by Franco Broi
1099 2006-03-15 Miklos Szeredi <miklos@szeredi.hu>
1101 * lowlevel lib: use indirect function calls instead of a
1102 switch/case construct. Besides increased efficiency it helps
1103 maintainability & readability too. Patch from Florin Malita
1105 2006-03-13 Miklos Szeredi <miklos@szeredi.hu>
1107 * kernel: replace global spinlock with a per-connection spinlock
1109 2006-03-10 Miklos Szeredi <miklos@szeredi.hu>
1111 * Fix source compatibility breakage for fuse_unmount(). Report
1114 2006-03-02 Miklos Szeredi <miklos@szeredi.hu>
1116 * Fix O_ASYNC handling in fuse_dev_release(). From Jeff Dike
1118 2006-03-01 Miklos Szeredi <miklos@szeredi.hu>
1120 * Add O_ASYNC and O_NONBLOCK support to FUSE device. Patch by
1123 * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1124 interface to return -errno in case of error.
1126 2006-03-01 Csaba Henk <csaba.henk@creo.hu>
1128 * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1129 FreeBSD implementation so that it uses libc (sysctl backed) instead
1130 of an embdedded script (kmem backed). Adjust the control flow of
1131 hello_ll so that device doesn't get closed before unmount attempt.
1133 2006-02-25 Miklos Szeredi <miklos@szeredi.hu>
1135 * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1136 implement method. This is needed on FreeBSD, and nicer on Linux
1137 too. Highlevel lib already did this. Reported by Csaba Henk
1139 * Fix negative entry handling. There was a bug, that negative
1140 lookups with timeouts (nodeid == 0) returned -EIO.
1142 2006-02-23 Miklos Szeredi <miklos@szeredi.hu>
1144 * Fix race between RELEASE and UNLINK, which might leave
1145 .fuse_hidden* files around
1147 2006-02-21 Miklos Szeredi <miklos@szeredi.hu>
1149 * fusexmp_fh: implement flush() method and call close() on the
1150 open file descriptor. This is needed if used on an NFS
1151 filesystem, which buffers data until file is closed. Franco Broi
1152 spotted the situation when 'cp -p' failed to set the modification
1153 time because of this.
1155 2006-02-20 Miklos Szeredi <miklos@szeredi.hu>
1157 * Released 2.6.0-pre1
1159 2006-02-19 Miklos Szeredi <miklos@szeredi.hu>
1161 * libfuse: fix use-after-free bug in interruptred reply_entry().
1162 Patch from John Muir
1164 * libfuse: fix wrong symbol versioning for fuse_mount. Debian bug
1165 ID: 352631. Found by Stéphane Rosi
1167 2006-02-17 Miklos Szeredi <miklos@szeredi.hu>
1169 * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1170 into a single function fuse_add_direntry(). This cleans up the
1171 interface and makes it possible to do stacking.
1173 2006-02-16 Miklos Szeredi <miklos@szeredi.hu>
1175 * Fix rare race betweeen abort and release caused by failed iget()
1176 in fuse_create_open().
1178 * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1179 own attribute caching.
1181 2006-02-15 Miklos Szeredi <miklos@szeredi.hu>
1183 * Work around FreeBSD runtime linker "feature" which binds an old
1184 version of a symbol to internal references if the symbol has more
1185 than one version. This resulted in infinite recursion in
1186 fuse_lowlevel_new_compat25().
1188 2006-02-10 Csaba Henk <csaba.henk@creo.hu>
1190 * Refine clock_gettime() querying so that linker options
1191 shall be set as it's appropriate for the target platform.
1193 2006-02-09 Miklos Szeredi <miklos@szeredi.hu>
1195 * Fix udev rule syntax. Reported by Nix
1197 2006-02-08 Miklos Szeredi <miklos@szeredi.hu>
1199 * In some cases udev rule seems to be ineffective when installed
1200 as 40-fuse.rules but work as 60-fuse.rules. Reported by John Hunt
1202 2006-02-03 Miklos Szeredi <miklos@szeredi.hu>
1204 * Fix compilation when build directory is different from source
1205 directory. Reported by Frédéric L. W. Meunier
1207 2006-02-02 Miklos Szeredi <miklos@szeredi.hu>
1209 * Fix even bigger bug introduced in fix for request_end() on
1210 2006-01-14. Reported by Gal Rosen
1212 2006-01-30 Miklos Szeredi <miklos@szeredi.hu>
1214 * highlevel-lib: add 'auto_cache' option. This caches file data
1215 based on modification time and size
1217 2006-01-20 Miklos Szeredi <miklos@szeredi.hu>
1219 * Sanitize storage type and help message in mount_bsd.c. Patch
1222 * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1223 FUSE_OPT_KEY_DISCARD
1225 * Add options 'max_readahead', 'sync_read' and 'async_read'
1227 * Kernel ABI version 7.6:
1229 * Negotiate the 'max_readahead' value and 'async_read' flags with
1230 userspace in the INIT method
1232 * Add connection info to ->init() methods to both lowlevel and
1235 * Fall back to synchronous read() behavior if either library or
1236 userspace filesystem is using the old interface version. This is
1237 needed so non-updated filesystems won't be confused by the
1238 different read() behavior
1240 2006-01-19 Miklos Szeredi <miklos@szeredi.hu>
1242 * lib: if "fsname=" option was given, pass it to fusermount
1244 * fuse_opt: add new fuse_opt_insert_arg() function, which is
1245 needed by filesystems to implement some argument manipulations
1248 * fuse_opt: fix memory leak in handling "--" option
1250 2006-01-18 Miklos Szeredi <miklos@szeredi.hu>
1252 * kernel: fix detection of case when fuse is not configured into
1253 the kernel either as module or built-in
1255 * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1256 'template' structure member to 'templ'. Reported by Takashi Iwai
1258 * fuse.h: fix compatibility bugs. Patch by Yura Pakhuchiy
1260 * kernel: support version 2.6.16 (i_sem -> i_mutex)
1262 2006-01-16 Miklos Szeredi <miklos@szeredi.hu>
1264 * Added (again) asynchronous readpages support
1266 * Each connection now shows up under /sys/fs/fuse/connections
1268 * Connection attributes exported to sysfs: 'waiting' number of
1269 waiting requests; 'abort' abort the connection
1271 * Connection may be aborted through either the sysfs interface or
1272 with 'umount -f mountpoint'
1274 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1278 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1280 * kernel: fix a couple of bugs
1282 * Order of request_end() and fuse_copy_finish() was wrong.
1283 Posthumous note: Franco Broi managed to exploit this, though it
1284 seemed quite impossible
1286 * request_end() used request pointer after decrementing refcount
1288 * Clearing ->connected or ->mounted connection flags could race
1289 with setting other bitfields not protected with a lock
1291 2006-01-10 Miklos Szeredi <miklos@szeredi.hu>
1293 * kernel: add necessary compile flags for 2.4.X/x86_64.
1294 Report from Sean Ziegeler
1296 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1298 * Released 2.5.0-pre2
1300 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1302 * Applied patch from Csaba Henk, to update mount_bsd to new
1303 fuse_mount() semantics
1305 * Ignore auto,noauto,... options in mount.fuse. Reported by Frank
1306 Steiner and Don Taber
1308 * fusermount: add 'dirsync' mount option
1310 2006-01-07 Miklos Szeredi <miklos@szeredi.hu>
1312 * Improved help reporting and added version reporting to library
1314 2006-01-06 Miklos Szeredi <miklos@szeredi.hu>
1316 * Change working directory to "/" even if running in the
1317 foreground. Patch from Jonathan Brandmeyer
1319 * Changed lots of functions to use 'struct fuse_args' instead of
1320 separate argc and argv
1322 * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1323 fuse_remove_signal_handlers() functions, so that it's now pretty
1324 easy to get all the functionality of fuse_main() with a filesystem
1325 using the lowlevel API.
1327 2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
1329 * mount.fuse: the 'user' option should be ignored. Report and
1330 solution from Mattd.
1332 * mount.fuse: export PATH in the right place. Report and patch
1333 from Hannes Schweizer
1335 2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
1337 * Clean up the option parsing interface slightly, by creating an
1338 "argument list" structure, that contains the argument vector and
1341 2005-12-15 Miklos Szeredi <miklos@szeredi.hu>
1343 * fusermount: check if /mnt/mtab is a symlink and don't modify it
1346 * kernel: simplify request size limiting. INIT only contains
1347 maximum write size, maximum path component size remains fixed at
1348 1024 bytes, and maximum xattr size depends on read buffer.
1350 2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
1352 * Fix readdir() failure on x86_64, of 32bit programs compiled
1353 without largefile support. Bug report and help from Anthony
1356 * If lookup returns invalid mode, return -EIO instead of creating
1359 * Add current output argument vector to option processing
1362 2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
1364 * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
1366 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1368 * Released 2.5.0-pre1
1370 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1372 * libfuse: added option parsing interface, defined in
1375 2005-12-07 Miklos Szeredi <miklos@szeredi.hu>
1377 * Return EIO for file operations (read, write, fsync, flush) on
1378 open files whose inode has become "bad". Inodes will be marked
1379 "bad" if their type changes. Bug report by Csaba Henk
1381 2005-12-06 Miklos Szeredi <miklos@szeredi.hu>
1383 * Use bigger request buffer size. write() did not work on archs
1384 with > 4k page size, Bug report by Mark Haney
1388 * Extend INIT reply with data size limits
1390 2005-12-02 Miklos Szeredi <miklos@szeredi.hu>
1392 * Fix memory leak in fuse_read_cmd()/fuse_process_cmd(). Bug
1393 reported by Vincenzo Ciancia
1395 * Handle exit-by-umount in fuse_read_cmd()
1397 2005-11-29 Miklos Szeredi <miklos@szeredi.hu>
1399 * Check if '-msoft-float' option is supported by compiler when
1400 configuring for a 2.4.x kernel. Bug report by Mark Haney
1402 * In multithreaded loop send a TERM signal to the main thread if
1403 one of the other threads exit. Needed on FreeBSD for a clean exit
1404 on umount. Should not cause any harm on Linux either
1406 2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
1408 * Fix bug in 32-bit file handle compatibility
1410 2005-11-27 Miklos Szeredi <miklos@szeredi.hu>
1412 * Block TERM, INT, HUP and QUIT signals in all but the main
1413 thread. According to POSIX it's not specified which thread will
1414 receive these signals.
1418 * Check for directory aliasing on mkdir, not just on lookup
1420 * Check for special node ID values in create+open operation
1422 * Sync with -mm: readv, writev, aio_read and aio_write methods
1423 added to file operations
1425 * Cleanups: lookup code, page offset calculation
1427 * ABI stepped to 7.4, changes:
1429 * frsize member added to fuse_kstatfs structure
1431 * added support for negative entry caching: on lowlevel API if
1432 fuse_entry_param::ino is set to zero in reply to a lookup request,
1433 the kernel will cache the dentry for the specified amount of time.
1435 * libfuse: added 'negative_timeout' option: specifies how much
1436 negative entries should be cached. Default is zero, to be
1437 compatible with prior versions
1439 2005-11-22 Miklos Szeredi <miklos@szeredi.hu>
1441 * Add detection of mainline FUSE code in running kernel
1443 2005-11-21 Miklos Szeredi <miklos@szeredi.hu>
1445 * Don't use async cancelation in multithreaded loop. This makes
1446 it more portable to systems where read() is not async cancel safe.
1447 Report from Andriy Gapon
1449 2005-11-20 Miklos Szeredi <miklos@szeredi.hu>
1451 * Warn if API version 11 compatibility is requested
1453 2005-11-17 Miklos Szeredi <miklos@szeredi.hu>
1455 * More FreeBSD merge
1457 * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1458 them, because it corrupts /etc/mtab. Found by Thomas Biege
1461 * libfuse: don't use system() to invoke 'fusermount -u ...'
1462 because it breaks mountpoints with spaces in them into multiple
1465 2005-11-16 Miklos Szeredi <miklos@szeredi.hu>
1467 * Merge library part of FreeBSD port. Patch by Csaba Henk
1469 2005-11-11 Miklos Szeredi <miklos@szeredi.hu>
1471 * Use 64bit type for file handle, so the full range supported by
1472 the kernel interface is available to applications
1474 2005-11-10 Miklos Szeredi <miklos@szeredi.hu>
1476 * Moved mountpoint argument checking from fuse_parse_cmdline() to
1477 fuse_mount() in preparation to FreeBSD merge.
1479 2005-11-08 Miklos Szeredi <miklos@szeredi.hu>
1481 * Remove unneeded close() from fuse_teardown(). Spotted by Csaba
1484 2005-11-07 Miklos Szeredi <miklos@szeredi.hu>
1486 * Make the statfs change backwards compatible.
1488 2005-11-06 Miklos Szeredi <miklos@szeredi.hu>
1490 * Change ->statfs() method to use 'struct statvfs' instead of
1491 'struct statfs'. This makes the API more portable since statvfs()
1492 is defined by POSIX.
1494 2005-10-28 Miklos Szeredi <miklos@szeredi.hu>
1496 * Add fgetattr() method, which currently will only be called after
1497 a successful call to a create() method.
1499 2005-10-26 Miklos Szeredi <miklos@szeredi.hu>
1501 * Change kernel ABI version to 7.3
1503 * Add ACCESS operation. This is called from the access() system
1504 call if 'default_permissions' mount option is not given, and is
1505 not called on kernels 2.4.*
1507 * Add atomic CREATE+OPEN operation. This will only work with
1508 2.6.15 (presumably) or later Linux kernels.
1510 * Add ftruncate() method. This will only work with 2.6.15
1511 (presumably) or later Linux kernels.
1513 * Fix kernel module compile if kernel source and build directories
1514 differ. Report and initial patch by John Eastman
1516 2005-10-18 Miklos Szeredi <miklos@szeredi.hu>
1518 * lib: optimize buffer reallocation in fill_dir.
1520 2005-10-17 Miklos Szeredi <miklos@szeredi.hu>
1524 2005-10-14 Miklos Szeredi <miklos@szeredi.hu>
1526 * libfuse: add debug for write result (by Shaun Jackman) and
1527 warnings for too large read/write result
1529 2005-10-11 Miklos Szeredi <miklos@szeredi.hu>
1531 * Spelling fixes, thanks to Ioannis Barkas
1533 2005-10-10 Miklos Szeredi <miklos@szeredi.hu>
1535 * fuse_common.h: use extern "C". Thanks to Valient Gough for the
1538 2005-10-07 Miklos Szeredi <miklos@szeredi.hu>
1540 * highlevel-lib: init() and destroy() methods didn't have an
1541 initialized fuse_context. Bug reported by Tim Stoakes
1543 2005-10-04 Miklos Szeredi <miklos@szeredi.hu>
1547 2005-10-03 Miklos Szeredi <miklos@szeredi.hu>
1549 * Add documentation to fuse_lowlevel.h
1553 * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1555 * Move fuse_mount() and fuse_unmount() to fuse_common.h
1557 * Change the return type of fuse_reply_none() from int to void.
1559 2005-09-30 Miklos Szeredi <miklos@szeredi.hu>
1561 * kernel: NFS exporting leaked dentries. Bug found and fixed by
1564 2005-09-29 Miklos Szeredi <miklos@szeredi.hu>
1566 * fusermount: fix error message, when unable to open /dev/fuse.
1567 Report by Balázs Pozsár
1569 2005-09-28 Miklos Szeredi <miklos@szeredi.hu>
1571 * UClibc fixes from Christian Magnusson
1573 2005-09-27 Miklos Szeredi <miklos@szeredi.hu>
1575 * Added NAME="%k" to util/udev.rules. Fix by Mattias Wadman.
1577 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
1579 * Released 2.4.0-rc1
1581 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
1583 * fusermount: allow user umount in the case when /etc/mtab is a
1584 symlink to /proc/mounts. Reported by Balázs Pozsár.
1586 2005-09-23 Miklos Szeredi <miklos@szeredi.hu>
1588 * Check for special node ID values in lookup and creation
1590 2005-09-22 Miklos Szeredi <miklos@szeredi.hu>
1592 * Slight optimization in returning EINVAL error in case of an open
1595 2005-09-20 Miklos Szeredi <miklos@szeredi.hu>
1597 * Remove '--enable-auto-modprobe' configure flag. Module
1598 auto-loading is now handled by the kernel.
1600 2005-09-15 Miklos Szeredi <miklos@szeredi.hu>
1602 * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1603 Help from Jens M. Noedler.
1605 2005-09-14 Miklos Szeredi <miklos@szeredi.hu>
1607 * Add memory cleanup on thread exit
1609 2005-09-13 Miklos Szeredi <miklos@szeredi.hu>
1611 * Set umask to zero in fusexmp and fusexmp_fh, so that
1612 files/directories are created with the requested mode.
1614 2005-09-12 Miklos Szeredi <miklos@szeredi.hu>
1616 * Don't ignore read error in multithreaded loop
1618 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
1620 * Released 2.4.0-pre2
1622 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
1624 * Revert lock and access operations. Postpone these until 2.5.
1626 2005-09-02 Miklos Szeredi <miklos@szeredi.hu>
1628 * Fix compile warning on 2.6.13 and later
1630 * Fix compilation on old kernels
1632 2005-08-19 Miklos Szeredi <miklos@szeredi.hu>
1634 * lib: always refresh directory contents after rewinddir() to
1635 conform to SUS. Bug found by John Muir.
1637 2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
1639 * Released 2.4.0-pre1
1641 2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
1643 * lib: cleaned up (or messed up, depending on your POV) the low
1644 level library API. Hopefully this is close to the final form.
1646 2005-08-05 Miklos Szeredi <miklos@szeredi.hu>
1648 * fusermount: don't allow empty mountpoint argument, which defeats
1649 automatic umounting in fuse_main(). Bugreport by Václav Jůza
1651 2005-08-03 Miklos Szeredi <miklos@szeredi.hu>
1653 * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
1654 option is used (Paul Alfille).
1656 2005-08-02 Miklos Szeredi <miklos@szeredi.hu>
1658 * highlevel-lib: added mount options "attr_timeout" and
1659 "entry_timeout". These options control the length of time file
1660 attributes and entries (names) are cached. Both default to 1.0
1663 * kernel: correctly handle zero timeout for attributes and entries
1665 2005-08-01 Miklos Szeredi <miklos@szeredi.hu>
1667 * Added missing symbols to versionscript (Joshua J. Berry)
1669 * kernel: implement two flags, open can set: 'direct_io' and
1670 'keep_cache'. These correspond exactly to mount options
1671 'direct_io' and 'kernel_cache', but allow a per-open setting.
1673 * Move 'direct_io' and 'kernel_cache' mount option handling to
1674 userspace. For both mount options, if the option is given, then
1675 the respective open flag is set, otherwise the open flag is left
1676 unmodified (so the filesystem can set it).
1678 * lib (highlevel): make open method optional
1680 2005-07-28 Miklos Szeredi <miklos@szeredi.hu>
1682 * kernel: invalidate attributes for read/readdir/readlink
1685 * kernel: detect newer UML kernels
1687 2005-07-26 Miklos Szeredi <miklos@szeredi.hu>
1689 * Make the installation path of fuse.ko and mount.fuse
1690 configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
1691 environment variables. Requirement and help from Csaba Henk.
1693 2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
1695 * Fix bug, that causes filesystem requests to hang when unique
1696 request counter becomes negative. This happens after
1697 2,147,483,648 operations, so most people won't care. Thanks to
1698 Franco Broi for the report and testing.
1700 2005-07-21 Miklos Szeredi <miklos@szeredi.hu>
1702 * Don't change mtime/ctime/atime to local time on read/write.
1703 Bug reported by Ben Grimm
1705 * Install fuse_common.h and fuse_lowlevel.h. Report by Christian
1708 * fusermount: use getopt_long() for option parsing. It allows the
1709 use of '--' to stop argument scanning, so fusermount can now
1710 operate on directories whose names begin with a '-'. Patch by
1713 2005-07-15 Miklos Szeredi <miklos@szeredi.hu>
1715 * fusermount: add '-v', '--version' and '--help' options
1717 * add inode based API
1719 2005-07-12 Miklos Szeredi <miklos@szeredi.hu>
1721 * lib: don't block signals in worker threads. Problem noticed by
1724 2005-07-07 Miklos Szeredi <miklos@szeredi.hu>
1726 * lib: don't allow both 'allow_other' and 'allow_root' options to
1729 2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
1731 * fusermount: check if mountpoint is empty (only '.' and '..' for
1732 directories, and size = 0 for regular files). If "nonempty"
1733 option is given, omit this check. This is useful, so users don't
1734 accidentally hide data (e.g. from backup programs). Thanks to
1735 Frank van Maarseveen for pointing this out.
1737 * kernel: check if mandatory mount options ('fd', 'rootmode',
1738 'user_id', 'group_id') are all given
1740 * lib: simplify 'readdir_ino' handling
1742 * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
1744 2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
1746 * kernel: clean up 'direct_io' code
1748 2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
1750 * Add 'mount.fuse' written by Petr Klima
1752 * '/dev/fuse' is created by 'make install' if does not yet exist
1754 2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
1756 * Fix UCLIBC compile error. Patch by Christian Magnusson
1758 2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
1760 * Enable the auto-loading of the module via access to the
1761 corresponding device file. Patch by Takashi Iwai.
1763 * Allow mounting a regular file (over a regular file) for
1766 * Do not create temporary device file. Require "/dev/fuse" to
1767 exist, and be readable/writable by the mounting user.
1769 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
1773 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
1775 * Fix serious information leak: if the filesystem returns a short
1776 byte count to a read request, and there are non-zero number of
1777 pages which are not filled at all, these pages will not be zeroed.
1778 Hence the user can read out previous memory contents. Found by
1781 2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
1783 * Add "readdir_ino" mount option, which tries to fill in the d_ino
1784 field in struct dirent. This mount option is ignored if "use_ino"
1785 is used. It helps some programs (e.g. 'pwd' used over NFS from a
1786 non-Linux OS). Patch by David Shaw.
1788 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
1792 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
1794 * File save in krusader and other editors doesn't work with sshfs,
1795 because open() is interrupted by a periodic signal, and open()
1796 restarts forever, without any progress. This could just be fixed
1797 in open(), but the problem is more generic: if signals are
1798 received more often than the filesystem can get the request to
1799 userspace, it will never finish. This is probably only a
1800 theoretical problem, nevertheless I'm removing the possibility to
1801 interrupt requests with anything other than SIGKILL, even before
1802 being sent to userspace. Bugreport by Eduard Czimbalmos.
1804 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
1806 * libfuse: add "tree_lock" rwlock, that is locked for write in
1807 rename, unlink and rmdir, and locked for read in all other
1808 operations. This should fix the rename/release race reported by
1809 Valient Gough and others. The solution is very coarse, a finer
1810 grained locking scheme could be implemented, but it would be much
1811 more complex. Let's see whether this is good enough.
1813 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
1817 2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
1819 * Better fix for out of order FORGET messages. Now the
1820 LOOKUP/FORGET messages are balanced exactly (one FORGET can
1821 balance many lookups), so the order no longer matters. This
1822 changes the kernel ABI slightly, but the library remains backward
1825 2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
1827 * Fix abort for out of order FORGET messages. Again. Spotted by
1828 Franco Broi again. Sorry :)
1830 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
1834 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
1836 * Make fusermount work with fuse kernel modules not yet supporting
1837 the "group_id" option (added for the purpose of stricter
1838 permission checking).
1840 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
1842 * Check for hard-linked directories in lookup. This could cause
1843 problems in the VFS, which assumes that such objects never exist.
1845 * Make checking of permission for other users more strict. Now
1846 the same privilege is required for the mount owner as for ptrace
1847 on the process performing the filesystem operation.
1849 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
1853 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
1855 * Add -msoft-float to kernel module compile flags for 2.4.X. This
1856 is needed on certain architectures. Report from Chris Kirby
1858 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
1859 Reported by David Shaw
1861 * Remove "allow_root" option from kernel module, and implement
1862 it's functionality in the library
1864 * Fix Oops caused by premature release of fuse_conn. Clean up
1865 related code, to be more readable
1867 * Sendfile should not use page cache if "direct_io" mount option
1870 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
1872 * Fix Oops in case of nfs export. Spotted by David Shaw
1874 * Fix another Oops in case of write over nfs with direct_io turned
1875 on. Again spotted by David Shaw
1877 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
1881 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
1883 * lib: finalized new readdir() interface, which now supersedes the
1886 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
1890 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
1892 * Implement backward compatibility with version 5 kernel ABI
1894 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
1898 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
1900 * kernel: fix dirent offset handling
1902 * lib: add readdir and releasedir methods
1904 * lib: use fh field of fuse_file_info in opendir, readdir,
1905 releasedir and fsyncdir methods
1907 * lib: check kernel API version and bail out of it's old. This
1908 will be properly fixed in the next release
1910 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
1914 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
1916 * kernel API: add padding to structures, so 64bit and 32bit
1917 compiler will return the same size
1919 * kernel API: add offset field to fuse_dirent. This will allow
1920 more sophisticated readdir interface for userspace
1922 * kernel API: change major number to 6
1924 * kernel: fix warnings on 64bit archs
1926 * kernel: in case of API version mismatch, return ECONNREFUSED
1928 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
1930 * kernel: trivial cleanups
1932 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
1934 * Add fsyncdir() operation
1936 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
1938 * kernel: add locking to background list (fixes previous fix)
1940 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
1942 * kernel: fix bug which could cause leave busy inodes after
1945 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
1947 * examples: add -lpthread to link flags to work around valgrind
1950 * lib: don't exit threads, so cancelation doesn't cause segfault
1952 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
1954 * kernel: fix nasty bug which could cause an Oops under certain
1955 situations. Found by Magnus Johansson
1957 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
1959 * libfuse: added opendir() method. This can be used in case
1960 permission checking in getdir() is too late. Thanks to Usarin
1961 Heininga for pointing out this deficiency
1963 * libfuse: added init() and destroy() methods to fuse_operations
1965 * kernel: llseek() method for files and directories made explicit
1967 * kernel: fixed inode leak in NFS export in case of nodeid
1970 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
1972 * libfuse: clean up some unitialized memory found with valgrind
1974 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
1975 explicitly linked libpthread for applications
1977 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
1979 * fusermount: set umask, otherwise /etc/mtab will have
1980 unpredictable permission. Spotted by Jindrich Kolorenc
1982 * fusermount: set owner and group of /etc/mtab to original values
1985 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
1987 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
1989 * Cleaned up directory reading (temporary file is not used)
1991 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
1995 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
1997 * Fix possible race when operation is interrupted
1999 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
2001 * Fix compilation on 2.6.7
2003 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2007 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2009 * Fix bug in link() operation which caused the wrong path to be
2010 passed as the first argument. Found by Anton Altaparmakov
2012 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
2014 * LIB: fix double reply in readdir operation
2016 * fusermount: fix uid checking bug. Patch by Adam Connell
2018 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2019 Patch by Keshava Gowda
2021 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2023 * KERNEL: provide correct llseek semantics for fuse device (fixes
2024 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
2026 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2028 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2030 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
2032 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2033 and RELEASEDIR. This ends the ugly hack of passing a file
2034 descriptor to the kernel, and actually makes the code simpler.
2036 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2040 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2042 * fusermount: remove capability setting, which was the cause of
2043 problems for some users. It seems that FS related capabilities
2044 are removed by setfsuid(), so this isn't even needed.
2046 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
2048 * fix compilation on 2.4 kernels (reported by Valient Gough)
2050 * fix failure to unmount bug (found by David Shaw)
2052 * fusermount: improve parsing of /etc/fuse.conf
2054 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
2056 * Remove 'mount_max' and 'user_allow_other' module options. These
2057 are now checked by fusermount, and can be set in /etc/fuse.conf
2059 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2061 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
2063 * KERNEL: fix possible inode allocation problem, where
2064 sizeof(struct inode) is not aligned (found by Mike Waychison)
2066 * KERNEL: use new follow_link/put_link methods
2068 * KERNEL: cosmetic fixes
2070 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2074 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2076 * Add missing code that was accidently left out
2078 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2082 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2084 * Change "uid" mount option to "user_id" to avoid confusion with a
2085 mount option "uid" commonly used by many filesystems
2087 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2091 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2093 * If FUSE is configured in the kernel, don't build it by default
2095 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
2097 * Compile fix by Christian Magnusson
2099 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
2101 * Fix compilation for 2.6.{0-5} kernels
2103 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
2105 * KERNEL: if request is interrupted, still keep reference to used
2106 inode(s) and file, so that FORGET and RELEASE are not sent until
2107 userspace finishes the request.
2109 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2110 request with the same information, which is more flexible,
2111 simpler, works on embedded systems.
2113 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
2115 * KERNEL ABI: update interface to make it independent of type
2116 sizes. This will help on 64 bit architectures which can run
2117 legacy 32 bit applications.
2119 * KERNEL ABI: add "len" field to request headers. This will allow
2120 sending/receiving requests in multiple chunks.
2122 * KERNEL: handle file type change more intelligently
2124 * LIB: "-o debug" option should disable backgrounding (fix by
2125 Fabien Reygrobellet)
2127 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
2129 * KERNEL: invalidate dentry/attributes if interrupted request
2130 could leave filesystem in an unknown state.
2132 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
2134 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2135 These will cause some regressions, but stability is considered
2136 more important. If any of these features turns out to be
2137 important, it can be readded with the deadlock problems addressed.
2139 * Make all requests interruptible (only with SIGKILL currently).
2140 This can be used to break any deadlock produced by the userspace
2141 filesystem accessing it's own exported files. The RELEASE request
2142 is special, because if it's interrupted before sending it to
2143 userspace it is still sent, but the reply is not awaited.
2145 * If request is interrupted before being sent to userspace, and if
2146 it hasn't yet got any side effects, it is always restarted,
2147 regardless of the SA_RESTART flag. This makes these interruptions
2148 transparent to the process.
2150 * Remove shared-writable mmap support, which was prone to an
2151 out-of-memory deadlock situation
2153 * Remove INVALIDATE userspace initiated request
2155 * Make readpages() synchronous. Asynchronous requests are
2156 deadlock prone, since they cannot be interrupted.
2158 * Add readv/writev support to fuse device operations
2160 * Remove some printks, which userspace FS can use for a DoS
2163 * Remove 'large_read' mount option from 2.6 in kernel, check it in
2166 * LIB: improve compatibility with a fuse.h header installed in
2167 ${prefix}/include which in turn includes the real header.
2169 * LIB: improve compatibility by defining fuse_main() (which is now
2170 not used), so old configure scripts find it.
2172 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
2174 * When mounting on a subdirectory of / don't duplicate slashes at
2175 the beggining of path (spotted by David Shaw)
2177 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
2179 * Fix bug causing garbage in mount options (spotted by David Shaw)
2181 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
2183 * Add 'writepage' flag to 'fuse_file_info'.
2185 * More comments in fuse.h
2187 * Get rid of double underscores
2189 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
2191 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2193 * helper.c: add -ho option, which only displays the options not
2194 the usage header. This can be used by filesystems which have
2197 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2199 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
2200 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2201 including the fuse header
2203 * Add binary compatibility to 2.1 version of library with symbol
2206 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2210 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
2212 * kernel: clean up writing functions
2214 * kernel: no allocation on write in direct_io mode
2216 * move linux/fuse.h to fuse_kernel.h
2218 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
2220 * kernel: clean up reading functions
2222 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
2224 * kernel: make readpage() uninterruptible
2226 * kernel: check readonly filesystem flag in fuse_permission
2228 * lib: don't die if version file not found and new style device
2231 * lib: add '-r' option, which is short for '-o ro'
2233 * fusermount: simplify device opening
2235 * kernel: when direct_io is turend on, copy data directly to
2236 destination without itermediate buffer. More efficient and safer,
2237 since no allocation is done.
2239 * fusermount: fix warning if fuse module is not loaded
2241 * kernel: use /dev/fuse on 2.4 too
2243 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
2245 * libfuse API change: open, read, write, flush, fsync and release
2246 are passed a 'struct fuse_file_info' pointer containing the open
2247 flags (open and release), and the file handle. Verion changed to
2250 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
2252 * More cleanups in the kernel
2254 * The 10,229 charater device number has been assigned for FUSE
2256 * Version file checking fix (reported by Christian Magnusson)
2258 * fusermount: opening the fuse device now doesn't need /sys.
2260 * Optimize reading by controlling the maximum readahead based on
2261 the 'max_read' mount option
2263 * fixes for UCLIBC (Christian Magnusson)
2265 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
2267 * Cleaned up kernel in preparation for merge into mainline:
2269 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2271 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2273 * __user annotations for sparse
2275 * allocate individual pages instead of kmalloc in fuse_readdir,
2276 fuse_read and fuse_write.
2278 * Fix NFS export in case "use_ino" mount option is given
2280 * Make libfuse and fusermount compatible with future versions
2282 * fusermount: properly add mount options to /etc/mtab
2284 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
2286 * fusermount: do not resolve last component of mountpoint on if it
2287 is '.' or '..'. This new path resolvation is now done on mount as
2288 well as unmount. This enables relative paths to work on unmount.
2290 * fusermount: parse common mount options like "ro", "rw", etc...
2292 * Allow module params to be changed through sysfs
2294 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2298 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2300 * Fix bug in fuse_readpages() causing Oops in certain situations.
2301 Bug found by Vincenzo Ciancia.
2303 * Fix compilation with kernels versions > 2.6.9.
2305 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
2307 * Check kernel interface version in fusermount to prevent
2308 strangeness in case of mismatch.
2310 * No need to allocate fuse_conn until actual mount happens
2312 * Fix potential race between umount and fuse_invalidate
2314 * Check superblock of proc file in addition to inode number
2316 * Fix race between request_send_noreply() and fuse_dev_release()
2318 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
2320 * Separate configure for the kernel directory
2322 * Don't allow write to return more than 'count'
2324 * Extend kernel interface for future use
2326 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
2328 * Fix 'makeconf.sh' to use autoreconf if available
2330 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
2332 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
2333 compatibility with earlier versions. To compile earier versions
2334 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2335 Do not use the "use_ino" mount flag with filesystems compiled with
2338 * Add pkg-config support. To compile a FUSE based filesystem you
2339 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2340 or similar. Note, that the PKG_CONFIG_PATH environment variable
2341 usually needs to be set to "/usr/local/lib/pkgconfig".
2343 * fuse.h is now installed in ${prefix}/include/fuse/
2345 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
2347 * Added "use_ino" mount option. This enables the filesystems to
2348 set the st_ino field on files
2350 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
2352 * Fix compile problems with ancient (<=2.4.18) kernels (reported
2355 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
2357 * Clear the 'exited' flag when mail loop is finished
2359 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
2361 * Make xattr functions work under 2.6 (bug found by Vincenzo
2364 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
2366 * Reset request in fuse_flush() (bugreport by David Shaw)
2368 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
2370 * fuse_main() now does not exit on error, rather it returns an
2373 * Exported __fuse_setup() and __fuse_teardown() functions, which
2374 make it easier to implement a custom event loop.
2376 * Use daemon() call to background the filesystem after mounting.
2377 This function closes the standard input, output and error and
2378 changes the current working directory to "/".
2380 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
2384 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
2386 * Don't allow fuse_flush() to be interrupted (bug found by David
2389 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
2391 * Add PID to fuse_context. Patch by Steven James
2393 * Change file handle type to 'unsigned long' in kernel interface
2395 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
2397 * A slight API change: fuse_get_context() doesn't need the "fuse"
2398 pointer, but the returned context contains it instead. The
2399 fuse_get() function is not needed anymore, so it's removed.
2401 * Fix mounting and umounting FUSE filesystem under another FUSE
2402 filesystem by non-root (bug spotted by Valient Gough)
2404 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
2406 * Fix deadlock in case of memory allocation failure. Patch by
2409 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
2411 * Check memory allocation failures in libfuse
2413 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
2415 * Check temporary file creation failure in do_getdir(). Bug
2416 spotted by Terje Oseberg
2418 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
2420 * Allow "large_read" option for 2.6 kernels but warn of deprecation
2422 * Make requests non-interruptible so race with FORGET is avoided.
2423 This is only a temporary solution
2425 * Support compiling FUSE kernel module on 2.4.x UML kernels
2427 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
2429 * Fix bug in case two FORGETs for the same node are executed in
2430 the wrong order. Bug spotted and endured for months by Franco
2431 Broi, and logfile for solution provided by Terje Oseberg
2433 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
2435 * Add -D_REENTRANT to the compile flags
2437 * Add documentation of fuse internals by Terje Oseberg
2439 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
2441 * Change release method to be non-interruptible. Fixes bug
2442 causing missing release() call when program which has opened files
2443 is killed (reported by Franco Broi and David Shaw)
2445 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
2447 * Add fuse_invalidate() to library API
2449 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
2451 * Check permissions in setattr if 'default_permissions' flag is
2452 set. Bug spotted by Damjan Lango
2454 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
2456 * 'large_read' mount option removed for 2.6 kernels, since the
2457 default (dynamic read size) is better
2459 * Extend kernel API with file handles. A file handle is returned
2460 by open, and passed to read, write, flush, fsync and release.
2461 This is currently only used for debug output in the library.
2465 * Change the current directory to the mountpoint before checking
2466 the permissions and mount filesystem on "."
2468 * By default don't modprobe the fuse module for non-root. The old
2469 behavior can be restored with the '--enable-auto-modprobe' flag of
2472 * By default don't allow shared writable mappings for non-root.
2473 The old behavior can be restored with the 'user_mmap=1' module
2476 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
2478 * Clean up mount option passing to fusermount and to fuse_new()
2479 BEWARE: this changes the userspace API slightly, and the command
2480 line usage of programs using fuse_main()
2482 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
2484 * Optimize reading under 2.6 kernels by issuing multiple page
2485 asynchronous read requests
2487 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
2489 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2491 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
2493 * Separate directory entry and inode attribute validity timer
2495 * New write semaphore to stop page writeback during truncate
2497 * Fsync now waits for all writes to complete before sending the
2500 * Optimization: if a page is completely written by
2501 fuse_commit_write(), clear the dirty flag and set the uptodate
2504 * Some memory cleanup at exit
2506 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
2508 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2509 disable the "hide if open" behavior of unlink/rename.
2511 * If temporary buffer allocation fails in raw read, fall back to a
2514 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
2516 * Fix bug in do_open() in libfuse: open count was incremented
2517 after the reply is sent so it could race with unlink/forget and
2520 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
2522 * When performing create or remove operation, refresh the parent's
2523 attributes on next revalidate, as i_nlink (and maybe size/time)
2526 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2529 * Set set_page_dirty address space operation (2.6 only)
2531 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
2533 * Minor fix in read: print debug info even if read size is zero
2535 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
2537 * Fix race between truncate and writepage (fsx-linux now runs
2540 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
2542 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2545 * Added option for direct read/write (-r)
2547 * Fix revalidate time setting for newly created inodes
2549 * Remove uid==0 check for '-x' option in fusermount (kernel checks
2552 * fuse_main() only installs handlers for signals (out of INT, HUP,
2553 TERM, PIPE), for which no handler has yet been installed
2555 * Add module option 'user_allow_other' which if set to non-zero
2556 will allow non root user to specify the 'allow_other' mount option
2557 ('-x' option of fusermount)
2559 * Fix deadlock between page writeback completion and truncate
2560 (bug found by Valient Gough with the fsx-linux utility)
2562 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
2564 * Change passing fuse include dir to 2.6 kernel make system more
2565 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2568 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
2570 * Acquire inode->i_sem before open and release methods to prevent
2571 concurrent rename or unlink operations.
2573 * Make __fuse_read_cmd() read only one command. This allows
2574 multiplexing the fuse file descriptor with other event sources
2575 using select() or poll() (patch by Jeff Harris)
2577 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2579 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
2581 * Fix file offset wrap around at 4G when doing large reads
2583 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
2585 * Fix memory leak in open (Valient Gough)
2587 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
2589 * Add "close after delete" support to libfuse (patch by Valient
2592 * Cancel all worker threads before exit in multithreaded mode
2594 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
2598 * Don't send reply to RELEASE
2600 * Work with newer libtool (1.5a)
2602 * Check for st_atim member of struct stat
2604 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
2606 * No request allocation needed on inode and file release
2608 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
2610 * Fix possible inode leak in userspace in case of unfinished
2611 lookup/mknod/mkdir/symlink/link operation.
2613 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
2615 * Fix some races and cleanups in fuse_read_super()
2617 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
2619 * Requests are allocated at open time
2621 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
2623 * Build shared library as well as static (using libtool)
2625 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
2626 there has not been a release with the previous minor number, and I
2627 hope nobody is using it for anything.
2629 * Change fuse_main(), so that default behavior is to go into
2630 background if mount is successful. '-f' and '-d' options disable
2631 backgrounding. This fixes the "Why does my FUSE daemon hang?"
2634 * Cache ENOSYS (function not implemented) errors on *xattr, flush
2637 * Don't call getdir method from open() only from first readdir().
2638 Open is sometimes just used to store the current directory
2641 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
2643 * Added flush() call
2645 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
2647 * Extended attributes support for 2.4 (patch by Cody Pisto)
2649 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
2651 * Fixed parser with modversions (Mattias Wadman)
2653 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
2655 * Added mount option parser to 2.4 build
2657 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
2659 * Replaced binary mount data with text options
2661 * Show FUSE specific mount options in /proc/mounts
2663 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
2665 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
2667 * Check some limits so userspace won't get too big requests
2669 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
2671 * Kill compile warning
2673 * Upgraded user-mount patch for 2.6.5
2675 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
2677 * Add detection of user-mode-linux to configure
2679 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
2681 * fixed zero size case for getxattr and listxattr
2683 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
2685 * new fusermount flag '-z': lazy unmount, default is not lazy
2687 * Extended attributes operations added (getxattr, setxattr,
2688 listxattr, removexattr)
2690 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
2692 * If filesystem doesn't define a statfs operation, then an
2693 all-zero default statfs is returned instead of ENOSYS
2695 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
2697 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
2699 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
2701 * Fix for uClinux (Christian Magnusson)
2703 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
2705 * fuse_main() adds "-n progname" to the fusermount command line
2707 * More kernel interface changes:
2709 * Lookup/getattr return cache timeout values
2711 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
2713 * Clean up option parsing in fuse_main()
2715 * Added fuse_get() function which returns the fuse object created
2718 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
2720 * removed old way of mounting (fusermount mountpoint program)
2722 * more kernel interface changes:
2724 * added nanosecond precision to file times
2726 * removed interface version from mount data
2728 * added /proc/fs/fuse/version which contains MAJOR.MINOR
2730 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
2732 * statfs library API changed to match other methods. Since this
2733 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
2735 * kernel interface changes follow:
2737 * statfs changed to 64 bits, added 'bavail' field
2739 * add generation number to lookup result
2741 * optimized mknod/mkdir/symlink/link (no separate lookup is
2744 * rdev size increased to 32 bits for mknod
2746 * kernel interface version changed to 3.1
2748 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
2750 * user-mount upgraded for 2.6.3 kernel
2752 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
2754 * Added user-mount.2.6.2-rc3.patch
2756 * Add FS_SAFE flag to fuse filesystem
2758 * fusermount should allow (un)mounting for non-root even if not
2761 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
2763 * Remove MS_PERMISSION mount flag (that means something else now)
2765 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
2767 * Added check for i_size_read/write functions to configure.in
2768 (patch by Valient Gough)
2770 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
2772 * Fixed writing >= 2G files
2774 * Check file size on open (with generic_file_open())
2776 * Readpage calls flush_dcache_page() after storing data
2778 * Use i_size_read/write for accessing inode->i_size
2780 * Make loopback mount of a fuse file work
2782 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
2786 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
2788 * Properly check if the inode exists in fuse_invalidate
2790 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
2792 * Added -q option for fusermount
2794 * fuse_unmount() now uses -q option of fusermount, so no error is
2795 printed if the cause of the program exit is that the filesystem
2796 has already been unmounted
2798 * Fix i_nlink correctness after rmdir/unlink
2800 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
2804 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
2806 * Fix typo (thanks Marcos Dione)
2808 * Compile fixes for 2.4 kernels
2810 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
2812 * Fix CONFIG_MODVERSIONS compile on 2.6
2814 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
2816 * Write all pending data before a RELEASE operation
2818 * Suppress 'Bad file descriptor' warning on exit
2820 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
2821 get confused with '-d' of fuse_main() (sorry about this change)
2823 * New fusermount option '-l' which enables big reads. Big reads
2824 are now disabled by default.
2826 * fuse_main() can accept fusermount arguments after a '--'
2828 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
2830 * Support for exporting filesystem over NFS (see README.NFS)
2832 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
2834 * Support non-blocking writepage on 2.6. This makes FUSE behave
2835 much more nicely in low-memory situations
2837 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
2838 (Note: the mknod method does not yet use 32bit device number)
2840 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
2844 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
2848 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
2850 * Integrated 2.6 kernel support patch by Michael Grigoriev
2852 * Improvements and cleanups for 2.6 kernels
2854 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
2856 * Added -d option to fusermount
2858 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
2860 * Added major+minor version to library API, and minor version to
2863 2003-12-13 David McNab <david@rebirthing.co.nz>
2865 * Implemented fsync support in examples/example.py
2867 * Implemented 'fsync' and 'statfs' methods in python
2870 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
2872 * Make it compile on 2.4.19.
2874 * Add fsync operation (write file failed on xemacs & vi)
2876 2003-12-12 David McNab <david@rebirthing.co.nz>
2878 * Added distutils support to the python module, as per standard
2879 python development practice
2881 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
2883 * Add file locking for mount/unmount (based on patch by Valient
2886 2003-12-11 David McNab <david@rebirthing.co.nz>
2888 * Python filesystem - was broken with python2.3, now fixed:
2889 - changed PyTuple_* calls to PySequence_*, because os.lstat
2890 is no longer returning a pure tuple
2891 - changed PyInt_Check() calls to also call PyLong_Check,
2892 to cover for cases (eg os.lstat) where longs are returned
2893 - Added support for file 'release' handling, which IMO is
2894 essential since this signals to a FS that writes to a file
2895 are complete (and therefore the file can now be disposed of
2896 meaningfully at the python filesystem's discretion)
2897 - Added '__init__' handler to base Fuse class, which allows
2898 your Python class to know the mountpoint and mount args,
2899 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
2902 - added 'mount.fuse' script (in util/ dir), which is meant to be
2903 symlinked from /sbin, and which allows FUSE filesystems to
2904 be mounted with the 'mount' command, and listed in fstab;
2905 also, mount arguments get passed to your filesystem
2908 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
2910 * Fix kernel version detection (again). Bugreport by Peter Levart
2912 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
2914 * Applied read combining patch by Michael Grigoriev (tested by
2915 Valient Gough and Vincent Wagelaar)
2917 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
2919 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
2922 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
2924 * Error code fixes in kernel module
2926 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
2928 * kernel version detection fix
2930 * fusermount now uses "lazy" umount option
2932 * fusermount can use modprobe with module-init-tools
2934 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
2936 * Integrated caching patch by Michael Grigoriev
2938 * Added "Filesystems" file with descriptions of projects using
2941 * Added patch by Michael Grigoriev to allow compliation of FUSE
2942 kernel module for 2.6 kernels
2944 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
2946 * And another spec-file fix by Achim Settelmeier
2948 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
2950 * Spec-file fix by Achim Settelmeier
2952 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
2954 * Fix umount oops (found by Samuli Kärkkäinen)
2956 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
2958 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
2960 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
2962 * Updated fuse.spec file (Achim Settelmeier)
2964 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
2966 * Version 1.0 released
2968 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
2970 * SuSE compilation fix by Juan-Mariano de Goyeneche
2972 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
2974 * The release() VFS call is now exported to the FUSE interface
2976 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
2978 * 64 bit file offset fixes in the fuse kernel module
2980 * Added function 'fuse_exit()' which can be used to exit the main
2983 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
2985 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
2986 an incompatible interface change.
2988 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
2990 * Portablility fix (bug reported by C. Chris Erway)
2992 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
2994 * Use Mark Glines' fd passing method for default operation instead
2997 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
2999 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3001 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3003 * fix incompatiblity with Red Hat kernels, with help from Nathan
3006 2002-04-18 Mark Glines <mark@glines.org>
3008 * added an alternative to fuse_mount(), called
3009 fuse_mount_ioslave(), which does not need to reexec the
3011 * added a small helper util needed by fuse_mount_ioslave().
3013 2002-03-16 Mark Glines <mark@glines.org>
3015 * use struct fuse_statfs everywhere possible to avoid problems
3016 with the headerfiles changing struct statfs member sizes
3018 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
3020 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3022 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
3024 * RPM support by Achim Settelmeier
3026 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3028 * Version 0.95 released
3030 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3032 * Revaidate all path components not just the last, this means a
3033 very small performance penalty for being more up-to-date.
3035 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
3037 * Update and fix python interface
3039 2002-01-07 Mark Glines <mark@glines.org>
3041 * Added statfs() support to kernel, lib, examples, and perl!
3043 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
3045 * Better cross compilation support
3047 * Ported to Compaq IPAQ
3049 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
3051 * Added function fuse_get_context() to library API (inspired by
3052 patch from Matt Ryan)
3054 * Added flags to fusermount and to kernel interface to control
3057 * Integrated fuse_set_operations() into fuse_new()
3059 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
3061 * Applied header protection + extern "C" patch by Roland
3064 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
3066 * Added perl bindings by Mark Glines
3068 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
3070 * Cleaned up way of mounting simple filesystems.
3072 * fuse_main() helper function added
3074 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
3076 * Optimized read/write operations, so that minimal copying of data
3079 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
3081 * Python bindings by Jeff Epler added
3083 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
3085 * Fixed vfsmount reference leak in fuse_follow_link
3087 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3088 userspace is ignored
3090 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>