1 2012-07-04 Miklos Szeredi <miklos@szeredi.hu>
3 * Fix install of mount.fuse from out-of-tree build. Patch by
6 * Fix build with automake >= 1.12.1. Patch by Olivier Blin
8 2012-04-24 Miklos Szeredi <miklos@szeredi.hu>
10 * Add fallocate operation. Only works on linux kernels 3.5 or
11 later. Patch by Anatol Pomozov
13 2012-05-16 Miklos Szeredi <miklos@szeredi.hu>
15 * Linking to a library that uses threads requires the application
16 to be linked with -pthreads otherwise some pthread functions will
17 be linked to stubs in glibc. So move -pthread from Libs.private
18 to Libs in fuse.pc. Reported by Werner Fink
20 * Fix the compile command in the examples. Reported by Luciano
23 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
27 2012-04-20 Miklos Szeredi <miklos@szeredi.hu>
29 * Add missing fuse_fs_flock to fuse_versionscript
31 2012-04-10 Miklos Szeredi <miklos@szeredi.hu>
33 * Check protocol version before sending notifications and return
34 -ENOSYS if a particular notification is not supported.
36 * Add 'flag_utime_omit_ok' flag to fuse_operations. If the
37 filesystem sets this flag then ->utimens() will receive UTIME_OMIT
38 and UTIME_NOW values as specified in utimensat(2).
40 2012-01-27 Miklos Szeredi <miklos@szeredi.hu>
42 * Interpret octal escape codes in options. Requested by Jan
45 2012-01-26 Miklos Szeredi <miklos@szeredi.hu>
47 * Add man pages for fusermount, mount.fuse and ulockmgr_server.
48 Lifted from the Debian package. The man pages were written by
49 Daniel Baumann and Bastien Roucaries
51 2012-01-13 Miklos Szeredi <miklos@szeredi.hu>
53 * Disable symbol versions on MacOSX. Patch by Anatol Pomozov
55 2012-01-02 Miklos Szeredi <miklos@szeredi.hu>
57 * Remove unnecessary mutex unlock at the end of multithreaded
60 2011-12-09 Miklos Szeredi <miklos@szeredi.hu>
62 * Fix hang in wait_on_path(). Reported by Ville Silventoinen
64 * Don't unhash name in FORGET. This resulted in ENOENT being
65 returned for unlinked but still open files if the kernel sent a
66 FORGET request for the parent directory.
68 * Free request in fuse_reply_data().
70 2011-12-08 Miklos Szeredi <miklos@szeredi.hu>
72 * Fix build if FUSE_NODE_SLAB is not defined. Patch by Emmanuel
75 * Check for availability of utimensat() function. Patch by
78 2011-12-07 Miklos Szeredi <miklos@szeredi.hu>
80 * Add fuse_lowlevel_notify_delete() which tells the kernel that a
81 file or directory is deleted. Patch by John Muir
83 2011-12-06 Miklos Szeredi <miklos@szeredi.hu>
85 * Update retrieve_reply() method
87 2011-12-05 Miklos Szeredi <miklos@szeredi.hu>
89 * Low level API: lock argument of fuse_reply_lock should have a
90 'const' qualifier. Reported by Shachar Sharon
92 * Add support for ioctl on directories. Reported by Antonio SJ
95 2011-10-13 Miklos Szeredi <miklos@szeredi.hu>
97 * Reply to request with ENOMEM in case of failure to allocate
98 request structure. Otherwise the task issuing the request will
99 just freeze up until the filesystem daemon is killed. Reported by
102 2011-09-23 Miklos Szeredi <miklos@szeredi.hu>
104 * Replace daemon() function with fork(). Patch by Anatol Pomozov
106 2011-08-26 Miklos Szeredi <miklos@szeredi.hu>
108 * If configured with --disable-mtab then don't call mount(8) from
109 libfuse to update the mtab. Reported by: James Sierp
111 2011-08-24 Miklos Szeredi <miklos@szeredi.hu>
113 * Use LRU list for cleaning up the cache if the "remember=T"
114 option was given. Patch by therealneworld@gmail.com
116 2011-07-06 Miklos Szeredi <miklos@szeredi.hu>
118 * Add ->flock() operation to low and high level interfaces. This
119 fixes problems with emulating flock() with POSIX locking.
120 Reported by Sebastian Pipping. As with lock/setlk/getlk most
121 filesystems don't need to implement this, as the kernel takes care
122 of file locking. The only reason to implement locking operations
123 is for network filesystems which want file locking to work between
126 2011-07-02 Sebastian Pipping <sebastian@pipping.org>
128 * Make xmp_utimens of examples "fusexmp" and "fusexmp_fh"
129 not follow symlinks as other layers do that already.
131 2011-06-02 Miklos Szeredi <miklos@szeredi.hu>
133 * Add "remember" option. This works similar to "noforget" except
134 that eventually the node will be allowed to expire from the cache.
135 Patch by therealneworld@gmail.com
137 2011-05-27 Miklos Szeredi <miklos@szeredi.hu>
139 * Check if splice/vmsplice are supported
141 2011-05-26 Miklos Szeredi <miklos@szeredi.hu>
143 * Remove -lrt -ldl from fuse.pc for dynamic linking since
144 libfuse.so is already linked with these libraries. Reported by:
147 2011-05-20 Miklos Szeredi <miklos@szeredi.hu>
149 * Cleaner build output. Patch by Reuben Hawkins
151 2011-05-19 Miklos Szeredi <miklos@szeredi.hu>
153 * Disable splice by default, add "splice_read", "splice_write" and
154 "splice_move" options. Keep the "no_splice_*" variants, which can
155 disable splice even if the filesystem explicitly enables it.
157 2011-04-15 Max Krasnyansky <maxk@kernel.org>
158 * Added support for "auto_unmount" option which unmounts the
159 filesystem automatically on process exit (or crash).
161 2011-03-30 Miklos Szeredi <miklos@szeredi.hu>
163 * Patches by Laszlo Papp fixing various issues found by the
166 2011-03-11 Miklos Szeredi <miklos@szeredi.hu>
168 * In case of failure to add to /etc/mtab don't umount. Reported
171 2011-02-02 Miklos Szeredi <miklos@szeredi.hu>
173 * libfuse: In fuse_session_loop_mt() don't pause when exiting the
174 worker threads. The pause() was added in 2.2.1 to prevent
175 segfault on pthread_cancel() on an exited, detached thread. Now
176 worker threads are not detached and pthread_cancel() should work
177 fine even after the thread exited. Reported by Boris Protopopov
179 2011-01-31 Miklos Szeredi <miklos@szeredi.hu>
181 * fusermount: chdir to / before performing mount/umount
183 * fusermount: only allow mount and umount if util-linux supports
186 2010-12-16 Miklos Szeredi <miklos@szeredi.hu>
188 * Highlevel lib: allow hash tables to shrink
190 * Highlevel lib: add slab allocation for node cache. This will
191 allow the memory used by the filesystem to grow and shrink
192 depending on how many inodes are currently cached.
194 2010-12-13 Miklos Szeredi <miklos@szeredi.hu>
196 * Highlevel lib: use dynamically resized hash table for looking up
199 2010-12-07 Miklos Szeredi <miklos@szeredi.hu>
201 * Allow batching of forget requests. This allows forget requests
202 to be processed faster and doesn't require a modification to fuse
203 filesystems. Reported by Terje Malmedal
205 * Add ->forget_multi() operation to the lowlevel API. The
206 filesystem may implement this to process multiple forget requests
209 * Fix the ambiguity of ioctl ABI on the kernel/userspace boundary
210 for 32bit vs. 64bit userspace
212 2010-11-10 Miklos Szeredi <miklos@szeredi.hu>
214 * Add new write_buf() method to the highlevel API. Similarly to
215 the lowlevel write_buf() method, this allows implementing zero
218 * Add a new read_buf() method to the highlevel API. This allows
219 returning a generic buffer from the read method, which in turn
220 allows zero copy reads.
222 * In fusexmp_fh implement the ->read_buf() and ->write_buf()
223 methods. Leave the ->read() and ->write() implementations for
224 reference, even though they are not necessary.
226 2010-11-08 Miklos Szeredi <miklos@szeredi.hu>
228 * Fix check for read-only fs in mtab update
230 * Open /dev/null for write instead of read for redirecting stdout
233 * If umount(8) supports --fake and --no-canonicalize (util-linux-ng
234 version 2.18 or later), and umount(2) supports the
235 UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then,
236 "fusermount -u" will call the umount(2) system call and use
237 "umount --fake ..." to update /etc/mtab
239 * Added --disable-legacy-umount option to configure. This
240 disables the runtime checking of umount(8) version. When built
241 with this option then "fusermount -u" will fail if umount(8)
242 doesn't support the --fake and --no-canonicalize options.
244 * Fix fuse_buf_copy() if already at the end of the buffers
246 * Add new ->write_buf() method to low level interface. This
247 allows passig a generic buffer, either containing a memory buffer
248 or a file descriptor. This allows implementing zero copy writes.
250 * Add fuse_session_receive_buf() and fuse_session_process_buf()
251 which may be used in event loop implementations to replace
252 fuse_chan_recv() and fuse_session_process() respectively.
254 * Remove unnecessary restoring of current working directory in
257 * Add ctx->pid to debug output
259 * Fix st_nlink value in high level lib if file is unlinked but
262 * libfuse: add store request. Request data to be stored in the
263 kernel buffers for a given inode.
265 * libfuse: add retrieve request. Retrieve data stored in the
266 kernel buffers for a given inode.
268 2010-10-14 Miklos Szeredi <miklos@szeredi.hu>
270 * Use LTLIBICONV when linking libfuse. This fixes building against
271 uclibc + libiconv. Patch by Natanael Copa
273 2010-10-05 Miklos Szeredi <miklos@szeredi.hu>
275 * Add missing argument check in ulockmgr.c to prevent calling
276 ulockmgr_server with illegal arguments. This would cause an ever
277 growing list of ulockmgr_server processes with an endless list of
278 open files which finally exceeds the open file handle limit.
279 Patch by Markus Ammer
281 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
283 * Fix ambiguous symbol version for fuse_chan_new.
284 fuse_versionscript included fuse_chan_new in both FUSE_2.4 and
285 FUSE_2.6. Remove the FUSE_2.4, which is invalid.
287 2010-09-28 Miklos Szeredi <miklos@szeredi.hu>
289 * Fix option escaping for fusermount. If the "fsname=" option
290 contained a comma then the option parser in fusermount was
291 confused (Novell bugzilla #641480). Fix by escaping commas when
292 passing them over to fusermount. Reported by Jan Engelhardt
294 2010-08-27 Miklos Szeredi <miklos@szeredi.hu>
296 * Add NetBSD support. Patch from Emmanuel Dreyfus
298 2010-07-12 Miklos Szeredi <miklos@szeredi.hu>
300 * libfuse: add buffer interface. Add a generic buffer interface
301 for use with I/O. Buffer vectors are supplied and each buffer in
302 the vector may be a memory pointer or a file descriptor.
304 * The fuse_reply_fd() interface is converted to using buffers.
306 2010-06-23 Miklos Szeredi <miklos@szeredi.hu>
308 * Make the number of max background requests and congestion
309 threshold tunable. New options are "max_background" and
310 "congestion_threshold". Only effective on linux kernel versions
311 2.6.32 or greater. Patch by Csaba Henk
313 2010-06-17 Miklos Szeredi <miklos@szeredi.hu>
315 * Add fuse_reply_fd() reply function to the low level interface.
316 On linux version 2.6.35 or greater this will use splice() to move
317 data directly from a file descriptor to the fuse device without
318 needing to go though a userspace buffer. With the
319 FUSE_REPLY_FD_MOVE flag the kernel will attempt to move the data
320 directly into the filesystem's cache. On earlier kernels it will
321 fall back to an intermediate buffer. The options
322 "no_splice_write" and "no_splice_move" can be used to disable
323 splicing and moving respectively.
325 2010-06-15 Miklos Szeredi <miklos@szeredi.hu>
327 * Fix out-of-source build. Patch by Jörg Faschingbauer
329 * Add a "nopath" option and flag, indicating that path argument
330 need not be calculated for the following operations: read, write,
331 flush, release, fsync, readdir, releasedir, fsyncdir, ftruncate,
332 fgetattr, lock, ioctl and poll.
334 2010-05-10 Miklos Szeredi <miklos@szeredi.hu>
336 * Remove "chmod root" from install of fusermount. Reported by
339 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
343 2010-04-26 Miklos Szeredi <miklos@szeredi.hu>
345 * Fix checking for symlinks in umount from /tmp. Reported by Al
348 * Fix umounting if /tmp is a symlink. Reported by Franco Broi
350 2010-02-18 Miklos Szeredi <miklos@szeredi.hu>
352 * Fix definition of FUSE_OPT_END for C++. Reported by Tim
355 2010-02-03 Miklos Szeredi <miklos@szeredi.hu>
357 * Fix stack alignment for clone()
359 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
363 2010-02-01 Miklos Szeredi <miklos@szeredi.hu>
365 * Using "--no-canonicalize" with umount(8) conflicts with the race
366 fix, sinceit assumes the supplied path is absolute, while the race
367 fix relies on the path being relative to the current directory.
368 Reported by Tom Rindborg
370 2010-01-26 Miklos Szeredi <miklos@szeredi.hu>
374 2010-01-21 Miklos Szeredi <miklos@szeredi.hu>
376 * Fix race if two "fusermount -u" instances are run in parallel.
377 Reported by Dan Rosenberg
379 * Make sure that the path to be unmounted doesn't refer to a
382 2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
384 * Fix compile error on FreeBSD. Patch by Jay Sullivan
386 2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
388 * Use '--no-canonicalize' option of mount(8) (available in
389 util-linux-ng version 2.17 or greater) to avoid calling
390 readling(2) on the newly mounted filesystem before the mount
391 procedure is finished. This has caused a deadlock if "audit" was
392 enabled in the kernel. Also use '--no-canonicalize' for umount to
393 avoid touching the mounted filesystem.
395 2009-09-11 Miklos Szeredi <miklos@szeredi.hu>
399 2009-08-25 Miklos Szeredi <miklos@szeredi.hu>
401 * Fix missing versioned symbol fuse_get_context@FUSE_2.2
403 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
407 2009-08-18 Miklos Szeredi <miklos@szeredi.hu>
409 * Add missing fuse_session_data to versionscript
411 * Make sure all global symbols are prefixed with "fuse_" or "cuse_"
413 2009-07-16 Miklos Szeredi <miklos@szeredi.hu>
415 * Clarify how the protocol version should be negotiated between
416 kernel and userspace. Notably libfuse didn't correctly handle the
417 case when the supported major versions didn't match
419 * Add missing pthread link for libulockmgr. Patch by Petr Salinger
421 2009-07-02 Miklos Szeredi <miklos@szeredi.hu>
423 * The context is extended with a 'umask' field. The umask is sent
424 for mknod, mkdir and create requests by linux kernel version
425 2.6.31 or later, otherwise the umask is set to zero. Also
426 introduce a new feature flag: FUSE_CAP_DONT_MASK. If the kernel
427 supports this feature, then this flag will be set in conn->capable
428 in the ->init() method. If the filesystem sets this flag in in
429 conn->want, then the create modes will not be masked.
431 * Add low level interfaces for lookup cache and attribute
432 invalidation. This feature is available in linux kernels 2.6.31
433 or later. Patch by John Muir
435 * Kernel interface version is now 7.12
437 * fusermount: Do not silently ignore command line arguments.
438 Patch by Sebastian Harl
440 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
442 * Released 2.8.0-pre3
444 2009-06-19 Miklos Szeredi <miklos@szeredi.hu>
446 * Add fuse_getgroups (high level lib) and fuse_req_getgroups (low
447 level lib) functions to query the supplementary group IDs for the
448 current request. Currently this is implemented on Linux by
449 reading from the /proc filesystem.
451 2009-06-18 Miklos Szeredi <miklos@szeredi.hu>
453 * Add "noforget" option to high level lib to prevent ESTALE errors
454 on NFS exported filesystems. This result in paths being cached
455 forever, resulting in ever growing memory usage. Use with care.
457 * Add "no_remote_lock" option to disable remote file locking even
458 if the filesystem implements it. With this option locking
459 primitives (flock, lockf, fcntl(F_SETLK)) will still work, but
460 will ignore remotely locked files.
462 * CUSE patches from Tejun Heo:
464 * Unrestricted ioctl support left some debris. Clean them up:
465 o No reason to pass around pointer to flags. Pass flags directly.
466 o Clean up comment and prototype parameter names.
467 o fuse_lib_ioctl() didn't reply when get_path() failed. Fix it.
468 o Remove unused variables {in|out}_iov from fuse_lib_ioctl().
470 * Add fuse_reply_ioctl_iov()
472 * Move fuse_session, fuse_req and fuse_ll definitions to fuse_i.h
473 and make send_reply_iov() and fuse_setup_common() global (also in
474 fuse_i.h). These will be used by CUSE support.
476 * Restructure fuse_ll_process()
478 * Implement libfuse side of CUSE support. CUSE uses subset of FUSE
479 operations as dir operations don't make sense for CUSE where one
480 instance implements single character device.
482 CUSE support comes with its own cuse_lowevel_ops and related
483 initialization and helper functions. Except for initialization, it
484 usage is basically identical to FUSE.
486 This patch also adds example/cusexmp.c which can create a character
487 device with name and device number specified on command line. The
488 created device itself is pretty boring. It's a bit bucket supporting
489 read, write and access via ioctl.
491 2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
493 * Add missing fuse_reply_bmap to versionscript. Debian
494 Bug#531329. Reported by Goswin Brederlow
496 2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
498 * Don't call forget_node() if the lookup was negative and write()
499 for the reply returned ENOENT. Reported by John Haxby
501 2009-05-25 Miklos Szeredi <miklos@szeredi.hu>
503 * Add FUSE_CAP_EXPORT_SUPPORT to fuse_common.h
505 2009-05-08 Miklos Szeredi <miklos@szeredi.hu>
507 * Fix missing newlines in some printfs
509 * Fix 'make install-strip'. Reported by Dominick Layfield
511 2009-01-05 Miklos Szeredi <miklos@szeredi.hu>
513 * Released 2.8.0-pre2
515 2008-12-08 Miklos Szeredi <miklos@szeredi.hu>
517 * Implement poll support. Patch by Tejun Heo
519 * Add missing setattr flags to <fuse_lowlevel.h>.
521 * Only pass valid flags to ->setattr().
523 2008-12-05 Miklos Szeredi <miklos@szeredi.hu>
525 * Implement ioctl support. On high level interface only
526 "restricted" ioctls are supported (which are defined with the
527 _IO(), _IOR(), _IOW() or _IOWR() macros). Unrestricted ioctls
528 will only be allwed to CUSE (Character Device in Userspace)
529 servers. Patch by Tejun Heo
531 2008-11-28 Miklos Szeredi <miklos@szeredi.hu>
533 * If open sets fi->nonseekable, libfuse will tell the kernel that
534 the file is not seekable. Patch by Tejun Heo
536 2008-11-19 Miklos Szeredi <miklos@szeredi.hu>
538 * lowlevel lib: fix deadlock if fuse_reply_* is called from the
539 interrupt handling function. Reported by Tero Marttila
541 2008-10-16 Miklos Szeredi <miklos@szeredi.hu>
543 * Allow commas in options to be escaped with a backslash
545 * Add new function: fuse_opt_add_opt_escaped()
547 * Add missing fuse_reply_bmap() to the version script
549 2008-10-14 Miklos Szeredi <miklos@szeredi.hu>
551 * Pass current file flags to read and write operations
553 2008-07-24 Miklos Szeredi <miklos@szeredi.hu>
555 * Clean up debug output in highlevel lib
557 2008-07-10 Miklos Szeredi <miklos@szeredi.hu>
559 * Released 2.8.0-pre1
561 2008-06-27 Miklos Szeredi <miklos@szeredi.hu>
563 * Fix handling of (no)suid and (no)dev options if filesystem is
564 mounted from /etc/fstab or via mount(8). Reported by Jan Ondrej.
566 * Skip calling mount(8) if /etc/mtab doesn't exist or if it's on a
567 read-only filesystem. This works around issues with certain mount
568 implementations. Reported by Szabolcs Szakacsits.
570 2008-06-16 Miklos Szeredi <miklos@szeredi.hu>
572 * Remove fuse kernel module sources. Linux 2.6.27 will support
575 2008-06-10 Miklos Szeredi <miklos@szeredi.hu>
577 * Fix theoretical infinite loops in libfuse. Reported by Szabolcs
580 * Fix missing <sys/param.h> include for PATH_MAX. Reported by
583 2008-05-23 Miklos Szeredi <miklos@szeredi.hu>
585 * Fix mounting over symlink. Reported by Szabolcs Szakacsits
587 2008-05-09 Miklos Szeredi <miklos@szeredi.hu>
589 * Don't allow bigger than 4kB writes by default on 2.6.26 and
590 later kernels, so that filesystems not expecting this are not
591 broken on a kernel upgrade. Provide a 'big_writes' mount option
592 to enable this feature. In future API revisions this may become
595 2008-04-09 Miklos Szeredi <miklos@szeredi.hu>
597 * Update warning message for missing newline at end of fuse.conf
599 * Update debug message for successful operation to not include the
602 2008-04-08 Miklos Szeredi <miklos@szeredi.hu>
604 * Update error message for missing mountpoint parameter. Reported
607 2008-04-04 Miklos Szeredi <miklos@szeredi.hu>
609 * Print library version information to debug output
611 * Highlevel lib: don't limit paths to 4095 characters
613 2008-03-25 Miklos Szeredi <miklos@szeredi.hu>
615 * Fix memory leaks on mount. Patch by Szabolcs Szakacsits
617 2008-03-19 Miklos Szeredi <miklos@szeredi.hu>
619 * Fix missing pthread_mutex_destroy in error path of
620 fuse_lib_opendir(). Patch by Szabolcs Szakacsits
622 2008-03-07 Miklos Szeredi <miklos@szeredi.hu>
624 * Add queuing on contention to per-node lock algorithm, to avoid
627 * Only enable cancelation when reading a request, otherwise
628 cancellation could happen with a mutex held, which could hang the
631 2008-02-08 Miklos Szeredi <miklos@szeredi.hu>
633 * Block SIGCHLD when executing mount and umount
635 * fusexmp_fh: avoid unnecessary seeking in readdir
637 * Update kernel interface to 7.9:
639 * Support receiving file handle from kernel in GETATTR request
641 * Allow operations with a NULL path argument, if the filesystem
644 * Add support atomic open(O_TRUNC)
646 * Support the st_blksize field in struct stat
648 * If the "FUSE_THREAD_STACK" environment is set, initialize the
649 stack size of threads by this value. Patch by Florin Malita
651 * Add per-node locking, instead of a global tree lock to protect
652 the path from changing during operations. Original patch by
655 2008-02-03 Csaba Henk <csaba.henk@creo.hu>
658 - string formatting fixes
659 - exit if mounting has failed
660 (in FreeBSD a mount failure is not critical per se, as the daemon
661 still could be mounted externally, but waiting for such an event
662 is more confusing than fruitful)
663 - ditch the kvm(8) stuff and simply use forced unmount which just
665 - prettify option specifications
666 - add "-onosync_unmount" kernel option
668 2008-01-07 Csaba Henk <csaba.henk@creo.hu>
671 - refine device closing in a race-free way
672 - add support for "-osubtype" on FreeBSD
674 * makeconf.sh: make it work under FreeBSD
676 2008-01-03 Csaba Henk <csaba.henk@creo.hu>
678 * lib/mount_bsd.c: close device before unmount
679 (cf. lib/mount.c rev. 1.43) and fix some warnings
681 2007-12-23 Miklos Szeredi <miklos@szeredi.hu>
683 * Fix './configure --disable-static'. Patch from Ismail Dönmez
685 2007-12-17 Miklos Szeredi <miklos@szeredi.hu>
689 2007-12-12 Miklos Szeredi <miklos@szeredi.hu>
691 * Fix kernel module compile for 2.6.24
693 * Invalidate attributes of parent directory after create(), since
694 the modification time changes. Invalidate attributes on rename,
695 since some filesystems may update st_ctime. Reported by Szabolcs
698 * Fix NFS exporting to handle 64bit node IDs
700 * Disable old symbol versions if __UCLIBC__ is defined. If a
701 symbol in a library has multiple versions, the runtime linker in
702 uClibc seems to randomly choose between them.
704 * Remove erroneous 'fuse_opt_insert_arg@FUSE_2_5' from
705 fuse_version_script. fuse_opt_free_args() was added in fuse-2.6.
707 * Close fuse device file descriptor before calling umount(),
708 preventing a deadlock when umount is synchronous. Reported by
711 2007-11-12 Miklos Szeredi <miklos@szeredi.hu>
713 * 'fusermount -u' did not umount the filesystem if /etc/mtab was a
714 symlink. This bug was introduced in 2.7.1 by "Don't call
715 /bin/[u]mount if /etc/mtab is a symlink". Found by robertsong.
717 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
721 2007-10-16 Miklos Szeredi <miklos@szeredi.hu>
723 * Clarify licence version to be "LGPLv2" for the library
727 * After mount set nlink attribute for the root inode to 1
729 * Fix wake up of task waiting for a reserved request
731 * Fix allowing setattr, listxattr and statfs for other users
733 2007-09-18 Miklos Szeredi <miklos@szeredi.hu>
735 * Add missing context initialization in fuse_fs_chmod(). Bug
738 * Fix kernel module compilation for 2.6.23. Based on patch by
741 2007-09-04 Philippe Elie <phil.el@wanadoo.fr>
743 * lib/fuse_lowlevel.c: fix a fuse_req leak in do_forget()
745 2007-07-31 Miklos Szeredi <miklos@szeredi.hu>
747 * Work around hotplug issue, that it calls filesystem with file
748 descriptors 0, 1 and 2 not open. Tracked down by Leif Johnson
750 2007-07-25 Miklos Szeredi <miklos@szeredi.hu>
752 * Don't call /bin/[u]mount if /etc/mtab is a symlink. Reported by
755 * Also don't touch /etc/mtab if it is within the mounted
756 filesystem. Suggested by Jeffrey Law
758 2007-07-12 Miklos Szeredi <miklos@szeredi.hu>
760 * Reset args->argc in fuse_opt_free_args(). Patch by Lucas
763 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
767 2007-07-02 Miklos Szeredi <miklos@szeredi.hu>
769 * Accept a NULL "op" for fuse_main(), etc. This is useful if
770 filesystem is only invoking fuse to print a help message, or
771 version. Fixes RedHat bugzilla #217343
773 2007-06-22 Miklos Szeredi <miklos@szeredi.hu>
775 * lib: fix locking when loading a filesystem module
777 2007-06-21 Miklos Szeredi <miklos@szeredi.hu>
779 * Add fs subtype support to mount.fuse
781 2007-06-20 Miklos Szeredi <miklos@szeredi.hu>
783 * Add fs subtype support to libfuse and fusermount
785 2007-06-19 Miklos Szeredi <miklos@szeredi.hu>
787 * kernel: sync with mainline (2.6.22)
789 2007-06-18 Miklos Szeredi <miklos@szeredi.hu>
791 * Send debug output to stderr instead of stdout. Patch by Jan
794 2007-06-03 Miklos Szeredi <miklos@szeredi.hu>
796 * libulockmgr: Work around a kernel bug in recv(), causing it to
797 sometimes return zero even if data was available on the socket.
799 2007-05-29 Miklos Szeredi <miklos@szeredi.hu>
801 * lib: optimization: store parent pointer in node instead of
804 2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
806 * lib: don't create new thread for each FORGET request. FORGET
807 messages sometimes caused so many threads to be created, that
808 process virtual memory space ran out. Reported by Chris AtLee
810 2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
812 * lib: fix memory leak on thread creation failure in multithreaded
813 event loop. Found by Chris AtLee
815 2007-05-23 Miklos Szeredi <miklos@szeredi.hu>
817 * lowlevel lib: add fuse_reply_iov function, which is similar to
818 fuse_reply_buf, but accepts a vector of buffers. Patch by Roger
821 2007-05-21 Miklos Szeredi <miklos@szeredi.hu>
823 * Fix Oops or error if a regular file is created with mknod(2) on
824 a fuse filesystem. Kernels 2.6.18 onward are affected. Thanks to
825 J. Cameijo Cerdeira for the report
827 2007-05-11 Csaba Henk <csaba.henk@creo.hu>
829 * libfuse: fix return value of fuse_loop()/fuse_loop_mt().
830 Error reported by Csaba Henk, fix by Miklos Szeredi
832 * libfuse: fix unlock in flush
834 * libfuse: do unlocking on RELEASE+FLUSH
836 2007-05-03 Miklos Szeredi <miklos@szeredi.hu>
840 2007-05-02 Miklos Szeredi <miklos@szeredi.hu>
842 * kernel: sync with mainline:
844 * Use invalidate_mapping_pages() if available
846 * Fix BUG when invalid file type is supplied in mount. Patch by
849 2007-04-27 Miklos Szeredi <miklos@szeredi.hu>
851 * libfuse: call umount(8) directly instead of fusermount if
854 * Clean up init script, make it LSB compliant
856 2007-04-26 Miklos Szeredi <miklos@szeredi.hu>
858 * In multithreaded loop, use a semaphore instead of SIGHUP to wake
859 up the main thread on umount. This is more elegant, and works
860 even if signals are blocked.
862 2007-04-25 Miklos Szeredi <miklos@szeredi.hu>
864 * Improve mounting support in libfuse:
865 - check non-empty mountpoint
866 - only fall back to fusermount when necessary
868 2007-04-23 Miklos Szeredi <miklos@szeredi.hu>
870 * Don't chdir to "/" in foreground mode, it causes more trouble
873 2007-04-18 Miklos Szeredi <miklos@szeredi.hu>
875 * Replace utils/mount.fuse "sh" script with a "C" program
877 2007-04-15 Miklos Szeredi <miklos@szeredi.hu>
879 * Add -lulockmgr to compilation comment in fusexmp_fh.c
881 2007-04-05 Miklos Szeredi <miklos@szeredi.hu>
883 * Check for iconv. Patch by Csaba Henk
885 * Add direct umounting
887 * Use "fusectl" as the device for the fusectl filesystem. Debian
888 Bug#417945. Reported by Laurent Bonnaud
890 2007-04-01 Csaba Henk <csaba.henk@creo.hu>
892 * Fix some FreeBSD related macros.
894 2007-03-30 Miklos Szeredi <miklos@szeredi.hu>
896 * Add support for direct mounting by libfuse. Fall back on
897 calling fusermount if it doesn't work
899 2007-03-14 Miklos Szeredi <miklos@szeredi.hu>
901 * Released 2.7.0-pre1
903 2007-03-05 Miklos Szeredi <miklos@szeredi.hu>
905 * Correctly handle O_APPEND in direct IO mode. Reported by Greg
908 * mount.fuse should use /bin/bash. Debian Bug#413403. Reported
909 by Thomas Weinbrenner
911 2007-02-26 Miklos Szeredi <miklos@szeredi.hu>
913 * Fix detection of installed fuse in init script. Reported and
914 fix suggested by Davide Canova
916 2007-02-05 Miklos Szeredi <miklos@szeredi.hu>
918 * Fix 2.6.9 RHEL kernels, which have compatibility mutex.h, but
919 don't define mutex_destroy(), bummer. Patch from Phil Schwan
921 2007-02-04 Miklos Szeredi <miklos@szeredi.hu>
923 * Compile fuseblk for kernels which don't have an option to turn
924 off the block layer (CONFIG_BLOCK). Reported by Szakacsits
927 2007-02-03 Miklos Szeredi <miklos@szeredi.hu>
929 * Add filesystem stacking support to high level API. Filesystem
930 modules can be built into libfuse or loaded from shared object
933 * Add 'subdir' and 'iconv' built in modules
935 * lib/fuse.c: Fix locking for the reply code in create and open
937 2007-02-02 Miklos Szeredi <miklos@szeredi.hu>
939 * kernel: make it compile on "strange" kernels which have emulated
940 mutexes via <linux/mutex.h> but no i_mutex. Reported by Tomasz
943 2007-01-28 Miklos Szeredi <miklos@szeredi.hu>
945 * kernel: fix BUG in control filesystem if it is umounted and
946 mounted again, while some fuse filesystems are present.
947 Bugreport from Florent Mertens
949 * kernel: sync with mainline, support 2.6.20
951 2007-01-22 Miklos Szeredi <miklos@szeredi.hu>
953 * lib/Makefile.am: actually link libfuse against libfuse_libs
955 2007-01-19 Miklos Szeredi <miklos@szeredi.hu>
957 * Build fix for 2.6.16 vanila and 2.6.15 FC5 kernels. Patch from
960 2007-01-18 Miklos Szeredi <miklos@szeredi.hu>
962 * Fix abort in fuse_new() compatibility API for opts == NULL case.
963 Novell bugzilla #233870. Patch from Takashi Iwai.
965 2007-01-13 Miklos Szeredi <miklos@szeredi.hu>
967 * Fix option parsing in mount.fuse. Patch from Jens M. Noedler
969 2007-01-02 Miklos Szeredi <miklos@szeredi.hu>
971 * Fix unaligned access in file desctriptor passing in libfuse,
972 fusermount and ulockmgr. Debian bug ID: 404904. Reported and
973 tested by Sebastian Fontius
975 2006-12-16 Miklos Szeredi <miklos@szeredi.hu>
977 * kernel: don't keep unreferenced inodes in the icache.
979 2006-12-15 Miklos Szeredi <miklos@szeredi.hu>
981 * fusermount: Fix detection of fuseblk. Reported by Szakacsits
984 * lib: Fix use after free in fuse_flush(). Reported by Ron
987 2006-12-10 Miklos Szeredi <miklos@szeredi.hu>
989 * mount.fuse: add "setuid=USER" option which does a "su - USER"
992 * fusermount: use "/bin/mount -f" to add entry to /etc/mtab, and
993 "/bin/umount" to remove entry from /etc/mtab. This gets rid of
994 the ugly code dealing with mtab, as well as a possible race
995 between fusermount and mount trying to modify /etc/mtab at the
998 * Fix "buffer size too small: 4" warning for users of the
999 fuse_loop_mt_proc() function.
1001 2006-12-04 Miklos Szeredi <miklos@szeredi.hu>
1003 * Fix warnings with gcc-4.1 on 64bit archs. Report from
1006 * Add extra warning options, and fix resulting warnings
1008 * Really fix fuse_teardown problem
1010 2006-12-02 Miklos Szeredi <miklos@szeredi.hu>
1012 * Add -lrt to fuse.pc (if needed) to fix static linking against
1013 libfuse. Reported by Szakacsits Szabolcs
1015 2006-12-01 Miklos Szeredi <miklos@szeredi.hu>
1019 2006-11-30 Miklos Szeredi <miklos@szeredi.hu>
1021 * Fix API version 21 and 22 compatibility for fuse_teardown.
1024 2006-11-29 Miklos Szeredi <miklos@szeredi.hu>
1026 * fusermount: Print a more helpful message in case the kernel
1027 doesn't support the 'fuseblk' filesystem type. This has been
1028 biting ntfs-3g users. Reported by Yura Pakhuchiy
1030 * kernel: fix build problem for "make -C ...". Reported by
1033 2006-11-19 Miklos Szeredi <miklos@szeredi.hu>
1035 * Fix bug in certain error paths of lookup routines. The request
1036 object was reused for sending FORGET, which is illegal. This bug
1037 could cause an Oops in linux-2.6.18 or in fuse-2.6.0, and might
1038 silently corrupt memory in earlier versions. Report and test
1041 2006-11-11 Miklos Szeredi <miklos@szeredi.hu>
1043 * Print an error if an incompatible kernel interface version is
1044 detected in INIT. This will only show if filesystem is started
1047 * Fix order of fuse_destroy()/fuse_unmount() in error cleanup of
1048 fuse_setup_common(). Reported by Szakacsits Szabolcs
1050 2006-11-06 Miklos Szeredi <miklos@szeredi.hu>
1052 * Fix recursive locking in fuse_create(). Thanks to Takuya
1053 Ishibashi for the bug report
1055 2006-10-28 Miklos Szeredi <miklos@szeredi.hu>
1057 * Fix automake problem. Patch from Nix
1059 2006-10-26 Miklos Szeredi <miklos@szeredi.hu>
1061 * Fix mount.fuse to use /bin/sh instead of /bin/bash, which is not
1062 always available on embedded systems. Patch from Paul Smith
1064 * Fix util/Makefile.am, so that failure to run update-rc.d or
1065 device creation doesn't cause make to fail. Reported by Paul
1068 2006-10-21 Miklos Szeredi <miklos@szeredi.hu>
1072 2006-10-18 Miklos Szeredi <miklos@szeredi.hu>
1074 * fusermount: don't try to create a lock file if /etc/mtab is a
1075 symlink. Report and patch from Alexei Sheplyakov (debian bug
1078 2006-10-17 Miklos Szeredi <miklos@szeredi.hu>
1080 * Minor changes, sync with mainline tree
1082 2006-10-16 Miklos Szeredi <miklos@szeredi.hu>
1084 * Released 2.6.0-rc3
1086 2006-10-15 Miklos Szeredi <miklos@szeredi.hu>
1090 2006-10-13 Miklos Szeredi <miklos@szeredi.hu>
1092 * kernel: Fix compilation on patched 2.6.18 (fc6) and 2.6.19.
1093 Report from David Shaw
1095 * lib: Fix lost error on renaming a file. Report from David Shaw
1097 * lib: Fix lost error on hiding open files (renaming to
1100 * kernel: Fix a rare hang on SMP/32bit on heavy filesystem
1101 activity. The cause of the bug was that some calls to
1102 i_size_write() were not protected by a lock, and hence
1103 i_size_seqcount could become corrupted. This caused subsequent
1104 calls to i_size_read() to spin forever. This is a long standing
1105 bug was probably introduced in version 2.2, and thought to be
1106 related to NFS exporting (it's not). It was reported by various
1107 people, but Dana Henriksen has finally helped me to track it down,
1108 so big thanks to him
1110 * kernel: Protect against truncation of a swapfile
1112 2006-10-10 Miklos Szeredi <miklos@szeredi.hu>
1114 * kernel: Check for signature of super_operations->umount_begin().
1115 Ubuntu kernel 2.6.17 seems to use the new signature found in
1116 2.6.18. Thanks to Florent Mertens for the report
1118 2006-10-08 Miklos Szeredi <miklos@szeredi.hu>
1120 * Make sure inode numers wrap around at 2^32. This is needed on
1121 dual 64bit/32bit architectures, because 32bit applications using
1122 the non-largefile interface would otherwise break (EOVERFLOW error
1123 would be returned by the stat() system call family)
1125 * ulockmgr: handle the case, when a locking operation fails
1126 because no more file desctriptors are available in
1127 ulockmgr_server. Also work around a Linux kernel bug (known to
1128 exist for all Linux kernel versions <= 2.6.18) which may cause
1129 sent file descriptors to be lost in the above case
1131 * ulockmgr: optimize file descriptor use
1133 * restore needed cpp flags to util/Makefile.am
1135 * Install udev rules as 99-fuse.rules instead of 60-fuse.rules
1137 * Minor clean up of udev rules
1139 * Add a synchronous DESTROY message to kernel interface. This is
1140 invoked from umount, when the final instance of the filesystem is
1141 released. It is only sent for filesystems mounted with the
1142 'blkdev' option for security reasons.
1144 * If the DESTROY message is received, call the filesystem's
1145 ->destroy() method. In this case it's not called from session
1146 destruction as it would be otherwise.
1148 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1150 * Released 2.6.0-rc2
1152 2006-10-01 Miklos Szeredi <miklos@szeredi.hu>
1154 * Add support for FLUSH+RELEASE operation for FreeBSD. Original
1157 * Add init script to insert fuse module and mount the control
1158 filesystem. The script is installed as /etc/init.d/fuse and on
1159 debian based systems (where update-rc.d is available) symlinks
1160 from /etc/rc*.d/ are also installed.
1162 * Include '#define FUSE_USE_VERSION=XX' into examples so they
1163 become more self contained.
1165 2006-09-30 Miklos Szeredi <miklos@szeredi.hu>
1169 * Move lock_owner from a separate argument into fuse_file_info
1171 * Add a flag to fuse_file_info indicating (1) a highlevel lock
1172 operation (unlock all) was initiated by a flush, (2) a lowlevel
1173 release operation should perform a flush as well.
1175 * fusermount: revert modprobe change (2006-08-18) since it
1176 doesn't work reliably with udev
1178 * Add support for block device backed filesystems. This mode is
1179 selected with the 'blkdev' option, which is privileged.
1181 * Add support for the bmap (FIBMAP ioctl) operation on block
1182 device backed filesystems. This allows swapon and lilo to work on
1187 * Drop support for kernels earlier than 2.6.9. Kernel module from
1188 previous (2.5.x) release can be used with library from this
1191 * In fuse_dentry_revalidate() use dget_parent() instead of
1192 dereferencing d_parent, since there's no protection against parent
1193 changing and going away
1195 * Protect nlookup from concurrent updates
1197 * In lookup if a directory alias exists but is unused,
1198 then get rid of it, otherwise return -EBUSY.
1200 * In mkdir if a directory alias exists, return success, but leave
1201 dentry negative. In reality this could happen if a remote rename
1202 immediately followed the mkdir.
1204 * Don't BUG in fuse_iget() if multiple retries are needed to get a
1205 good inode. This could happen if several lookups are racing for
1208 2006-09-29 Miklos Szeredi <miklos@szeredi.hu>
1210 * Fix compilation on 2.6.9. Report from Troy Ayers
1212 2006-09-27 Miklos Szeredi <miklos@szeredi.hu>
1214 * Fix Oops in fuse_readpages(). Reported by David Shaw
1216 2006-09-24 Csaba Henk <csaba.henk@creo.hu>
1218 * Add support for nanosec times on FreeBSD
1220 * Fix FreeBSD compatibility issues
1222 2006-09-23 Miklos Szeredi <miklos@szeredi.hu>
1224 * Fix one more compatibility bug. Thanks to Ricardo Correia
1226 * Fix utimens compilation with uClibc. Patch from Jamie Guinan
1228 2006-09-22 Miklos Szeredi <miklos@szeredi.hu>
1230 * Fixed several compatibility bugs in low level interface.
1231 Reported by Ricardo Correia
1233 * Add workaround for ARM caching bug
1235 2006-09-16 Miklos Szeredi <miklos@szeredi.hu>
1237 * Rename new utimes() method to more logical utimens()
1239 2006-09-14 Miklos Szeredi <miklos@szeredi.hu>
1241 * Fuse tried to unlink already unlinked hidden files. Bug
1242 reported by Milan Svoboda
1244 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1246 * Released 2.6.0-rc1
1248 2006-09-10 Miklos Szeredi <miklos@szeredi.hu>
1250 * kernel: Fix unlock on close for kernels < 2.6.18
1252 * Add ulockmgr library & server. This can be used for handling
1253 file locking requests either directly from libfuse or over a
1254 network, etc. This first version is not optimized and the number
1255 of file descriptors it uses may get out of hand
1257 2006-09-07 Miklos Szeredi <miklos@szeredi.hu>
1259 * lib: Add interrupt support to high level library, which may be
1260 enabled with the 'intr' mount option.
1262 * When an operation is interrupted the thread handling that
1263 operation will receive SIGUSR1 (or other signal specified with the
1264 'intr_signal=N' option). The library installs a no-op signal
1265 handler for this signal, unless there's already a handler
1268 * The filesystem may query interrupt status (regardless of 'intr')
1269 with the fuse_interrupted() function.
1271 * mount.fuse: initialize $HOME if not set. Report from Sven Goldt
1273 2006-09-03 Miklos Szeredi <miklos@szeredi.hu>
1275 * lib: Multithreaded loop now allows unlimited number of threads.
1276 This is needed for locking operations which may block
1277 indefinitely. Also the kernel now doesn't limit the number of
1278 outstanding requests so the library shouldn't do so either.
1280 2006-09-01 Miklos Szeredi <miklos@szeredi.hu>
1282 * Fix recursive lock bug in interrupt handling
1284 * Add utimes() method to highlevel interface, which supports
1285 setting times with nanosecond resolution
1287 2006-08-18 Miklos Szeredi <miklos@szeredi.hu>
1289 * kernel: fix page leak if fuse_readpages() failed in it's
1290 initialization. Bug found and original patch from Alexander
1293 * For linux kernels >=2.6.18 (2.6.19 if using the fuse module from
1294 the kernel tree) the statfs method will receive the path within
1295 the filesystem on which the stat(v)fs syscall was called
1297 * fusermount: try to modprobe fuse module if invoked by root and
1298 unable to open device. This is needed with udev, since the device
1299 node will be created only when the module is inserted, hence
1300 module autoloading won't work. Reported by Szakacsits Szabolcs
1302 2006-07-30 Miklos Szeredi <miklos@szeredi.hu>
1304 * fusermount: if selinux is active, restore the original file's
1305 security context in unmount_rename(). Redhat bugzilla id 188561.
1306 Patch from Yves Perrenoud
1308 * Add POSIX file locking operation to high level library
1310 * Initialize context for unlink of hidden files on umount. Bug
1311 reported by Tim Stoakes
1313 2006-07-14 Miklos Szeredi <miklos@szeredi.hu>
1315 * Multiple release() calls can race with each other, resulting in
1316 the hidden file being deleted before the last release finishes.
1317 Bug found and patch tested by Mark Huijgen
1319 2006-07-05 Miklos Szeredi <miklos@szeredi.hu>
1321 * fusermount: if /dev/fuse doesn't exist, suggest modprobing fuse;
1322 this makes sense on systems using udev. Reported by Szakacsits
1325 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1327 * Released 2.6.0-pre3
1329 2006-06-29 Miklos Szeredi <miklos@szeredi.hu>
1331 * Support in kernel module for file locking and interruption. The
1332 same functionality is available in official kernels >= 2.6.18
1334 2006-06-28 Miklos Szeredi <miklos@szeredi.hu>
1336 * Add POSIX file locking support
1338 * Add request interruption
1340 2006-06-06 Miklos Szeredi <miklos@szeredi.hu>
1342 * Add missing pthread_rwlock_destroy(). Patch from Remy Blank
1344 2006-06-05 Remy Blank <remy.blank@pobox.com>
1346 * lib: canonicalize mount point in fuse_helper_opt_proc() so that
1347 unmounting succeeds even if mount point was relative.
1349 2006-06-04 Csaba Henk <csaba.henk@creo.hu>
1351 * lib: fix emergency umount in helper.c when malloc fails.
1352 (The way it was done would end up in a segfault.)
1354 2006-06-01 Csaba Henk <csaba.henk@creo.hu>
1356 * lib: adjust threading related compiler flags.
1357 Switch to "-pthread" from "-lpthread" as that's the preferred
1358 one on several platforms. Consulted with Terrence Cole and
1361 2006-05-08 Miklos Szeredi <miklos@szeredi.hu>
1363 * lib: search fusermount in installation directory (bindir) as
1366 2006-05-03 Miklos Szeredi <miklos@szeredi.hu>
1368 * lib: fix compilation if CLOCK_MONOTONIC is not defined.
1369 Reported by Christian Magnusson
1371 2006-04-23 Csaba Henk <csaba.henk@creo.hu>
1373 * lib: make FreeBSD mount routine recognize if kernel features
1374 backgrounded init and if it does, run the mount util in foreground
1375 (similarly to Linux)
1377 2006-04-21 Miklos Szeredi <miklos@szeredi.hu>
1379 * kernel: fix fput deadlock fix, the lockless solution could lead
1380 to "VFS: busy inodes after umount..."
1382 * kernel: fix race between checking and setting file->private_data
1383 for the device. Found by Al Viro
1385 2006-04-11 Miklos Szeredi <miklos@szeredi.hu>
1387 * kernel: remove request pool, instead allocate requests on
1388 demand. Account the number of background requests, and if they go
1389 over a limit, block the allocation of new requests.
1391 * kernel: fix deadlock if backgrounded request holds the last
1392 reference to the super block
1394 * kernel: don't use fuse_reset_request() during direct I/O
1396 2006-04-06 Csaba Henk <csaba.henk@creo.hu>
1398 * lib: Let FreeBSD mount option parsing routine recognize "no"
1399 prefixes for FUSE specific options as well
1401 2006-04-01 Miklos Szeredi <miklos@szeredi.hu>
1403 * lib: Add missing rwlock initialization. Patch by Ryan Bradetich
1405 2006-03-17 Miklos Szeredi <miklos@szeredi.hu>
1409 * fuse_main(), fuse_setup() and fuse_new() have an additionl
1412 * fuse_mount() returns a 'struct fuse_chan' pointer instead of a
1415 * fuse_unmount() receives a 'struct fuse_chan' pointer. It
1416 destroys the given channel
1418 * fuse_teardown() no longer has a file descriptor parameter
1420 * new exported functions: fuse_session_remove_chan(),
1421 fuse_get_session(), fuse_daemonize()
1423 * fuse_chan_recv() may now return a new channel which will be used
1426 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1428 * Released 2.6.0-pre2
1430 2006-03-16 Miklos Szeredi <miklos@szeredi.hu>
1432 * Don't unmount if already unmounted. This fixes a problem seen
1433 in the following situation: Lazy unmount a busy filesystem; Mount
1434 a new one in top; When the first finally unmounts, the second also
1435 unmounts. Reported by Franco Broi
1437 2006-03-15 Miklos Szeredi <miklos@szeredi.hu>
1439 * lowlevel lib: use indirect function calls instead of a
1440 switch/case construct. Besides increased efficiency it helps
1441 maintainability & readability too. Patch from Florin Malita
1443 2006-03-13 Miklos Szeredi <miklos@szeredi.hu>
1445 * kernel: replace global spinlock with a per-connection spinlock
1447 2006-03-10 Miklos Szeredi <miklos@szeredi.hu>
1449 * Fix source compatibility breakage for fuse_unmount(). Report
1452 2006-03-02 Miklos Szeredi <miklos@szeredi.hu>
1454 * Fix O_ASYNC handling in fuse_dev_release(). From Jeff Dike
1456 2006-03-01 Miklos Szeredi <miklos@szeredi.hu>
1458 * Add O_ASYNC and O_NONBLOCK support to FUSE device. Patch by
1461 * Renamed fuse_chan_receive() to fuse_chan_recv() and changed
1462 interface to return -errno in case of error.
1464 2006-03-01 Csaba Henk <csaba.henk@creo.hu>
1466 * libfuse: pass device file descriptor to fuse_unmount(), rewrite
1467 FreeBSD implementation so that it uses libc (sysctl backed) instead
1468 of an embdedded script (kmem backed). Adjust the control flow of
1469 hello_ll so that device doesn't get closed before unmount attempt.
1471 2006-02-25 Miklos Szeredi <miklos@szeredi.hu>
1473 * Lowlevel lib: return all-zero statvfs data if filesystem doesn't
1474 implement method. This is needed on FreeBSD, and nicer on Linux
1475 too. Highlevel lib already did this. Reported by Csaba Henk
1477 * Fix negative entry handling. There was a bug, that negative
1478 lookups with timeouts (nodeid == 0) returned -EIO.
1480 2006-02-23 Miklos Szeredi <miklos@szeredi.hu>
1482 * Fix race between RELEASE and UNLINK, which might leave
1483 .fuse_hidden* files around
1485 2006-02-21 Miklos Szeredi <miklos@szeredi.hu>
1487 * fusexmp_fh: implement flush() method and call close() on the
1488 open file descriptor. This is needed if used on an NFS
1489 filesystem, which buffers data until file is closed. Franco Broi
1490 spotted the situation when 'cp -p' failed to set the modification
1491 time because of this.
1493 2006-02-20 Miklos Szeredi <miklos@szeredi.hu>
1495 * Released 2.6.0-pre1
1497 2006-02-19 Miklos Szeredi <miklos@szeredi.hu>
1499 * libfuse: fix use-after-free bug in interruptred reply_entry().
1500 Patch from John Muir
1502 * libfuse: fix wrong symbol versioning for fuse_mount. Debian bug
1503 ID: 352631. Found by Stéphane Rosi
1505 2006-02-17 Miklos Szeredi <miklos@szeredi.hu>
1507 * Lowlevel lib: Unify fuse_dirent_size() and fuse_add_dirent()
1508 into a single function fuse_add_direntry(). This cleans up the
1509 interface and makes it possible to do stacking.
1511 2006-02-16 Miklos Szeredi <miklos@szeredi.hu>
1513 * Fix rare race betweeen abort and release caused by failed iget()
1514 in fuse_create_open().
1516 * Add 'ac_attr_timeout' option e.g. for filesystems which do their
1517 own attribute caching.
1519 2006-02-15 Miklos Szeredi <miklos@szeredi.hu>
1521 * Work around FreeBSD runtime linker "feature" which binds an old
1522 version of a symbol to internal references if the symbol has more
1523 than one version. This resulted in infinite recursion in
1524 fuse_lowlevel_new_compat25().
1526 2006-02-10 Csaba Henk <csaba.henk@creo.hu>
1528 * Refine clock_gettime() querying so that linker options
1529 shall be set as it's appropriate for the target platform.
1531 2006-02-09 Miklos Szeredi <miklos@szeredi.hu>
1533 * Fix udev rule syntax. Reported by Nix
1535 2006-02-08 Miklos Szeredi <miklos@szeredi.hu>
1537 * In some cases udev rule seems to be ineffective when installed
1538 as 40-fuse.rules but work as 60-fuse.rules. Reported by John Hunt
1540 2006-02-03 Miklos Szeredi <miklos@szeredi.hu>
1542 * Fix compilation when build directory is different from source
1543 directory. Reported by Frédéric L. W. Meunier
1545 2006-02-02 Miklos Szeredi <miklos@szeredi.hu>
1547 * Fix even bigger bug introduced in fix for request_end() on
1548 2006-01-14. Reported by Gal Rosen
1550 2006-01-30 Miklos Szeredi <miklos@szeredi.hu>
1552 * highlevel-lib: add 'auto_cache' option. This caches file data
1553 based on modification time and size
1555 2006-01-20 Miklos Szeredi <miklos@szeredi.hu>
1557 * Sanitize storage type and help message in mount_bsd.c. Patch
1560 * fuse_opt: add new helper constants FUSE_OPT_KEY_KEEP and
1561 FUSE_OPT_KEY_DISCARD
1563 * Add options 'max_readahead', 'sync_read' and 'async_read'
1565 * Kernel ABI version 7.6:
1567 * Negotiate the 'max_readahead' value and 'async_read' flags with
1568 userspace in the INIT method
1570 * Add connection info to ->init() methods to both lowlevel and
1573 * Fall back to synchronous read() behavior if either library or
1574 userspace filesystem is using the old interface version. This is
1575 needed so non-updated filesystems won't be confused by the
1576 different read() behavior
1578 2006-01-19 Miklos Szeredi <miklos@szeredi.hu>
1580 * lib: if "fsname=" option was given, pass it to fusermount
1582 * fuse_opt: add new fuse_opt_insert_arg() function, which is
1583 needed by filesystems to implement some argument manipulations
1586 * fuse_opt: fix memory leak in handling "--" option
1588 2006-01-18 Miklos Szeredi <miklos@szeredi.hu>
1590 * kernel: fix detection of case when fuse is not configured into
1591 the kernel either as module or built-in
1593 * fuse_opt.h: fix incompatibility with C++ compilers by renaming
1594 'template' structure member to 'templ'. Reported by Takashi Iwai
1596 * fuse.h: fix compatibility bugs. Patch by Yura Pakhuchiy
1598 * kernel: support version 2.6.16 (i_sem -> i_mutex)
1600 2006-01-16 Miklos Szeredi <miklos@szeredi.hu>
1602 * Added (again) asynchronous readpages support
1604 * Each connection now shows up under /sys/fs/fuse/connections
1606 * Connection attributes exported to sysfs: 'waiting' number of
1607 waiting requests; 'abort' abort the connection
1609 * Connection may be aborted through either the sysfs interface or
1610 with 'umount -f mountpoint'
1612 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1616 2006-01-14 Miklos Szeredi <miklos@szeredi.hu>
1618 * kernel: fix a couple of bugs
1620 * Order of request_end() and fuse_copy_finish() was wrong.
1621 Posthumous note: Franco Broi managed to exploit this, though it
1622 seemed quite impossible
1624 * request_end() used request pointer after decrementing refcount
1626 * Clearing ->connected or ->mounted connection flags could race
1627 with setting other bitfields not protected with a lock
1629 2006-01-10 Miklos Szeredi <miklos@szeredi.hu>
1631 * kernel: add necessary compile flags for 2.4.X/x86_64.
1632 Report from Sean Ziegeler
1634 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1636 * Released 2.5.0-pre2
1638 2006-01-09 Miklos Szeredi <miklos@szeredi.hu>
1640 * Applied patch from Csaba Henk, to update mount_bsd to new
1641 fuse_mount() semantics
1643 * Ignore auto,noauto,... options in mount.fuse. Reported by Frank
1644 Steiner and Don Taber
1646 * fusermount: add 'dirsync' mount option
1648 2006-01-07 Miklos Szeredi <miklos@szeredi.hu>
1650 * Improved help reporting and added version reporting to library
1652 2006-01-06 Miklos Szeredi <miklos@szeredi.hu>
1654 * Change working directory to "/" even if running in the
1655 foreground. Patch from Jonathan Brandmeyer
1657 * Changed lots of functions to use 'struct fuse_args' instead of
1658 separate argc and argv
1660 * Added fuse_parse_cmdline(), fuse_set_signal_handlers() and
1661 fuse_remove_signal_handlers() functions, so that it's now pretty
1662 easy to get all the functionality of fuse_main() with a filesystem
1663 using the lowlevel API.
1665 2006-01-02 Miklos Szeredi <miklos@szeredi.hu>
1667 * mount.fuse: the 'user' option should be ignored. Report and
1668 solution from Mattd.
1670 * mount.fuse: export PATH in the right place. Report and patch
1671 from Hannes Schweizer
1673 2005-12-16 Miklos Szeredi <miklos@szeredi.hu>
1675 * Clean up the option parsing interface slightly, by creating an
1676 "argument list" structure, that contains the argument vector and
1679 2005-12-15 Miklos Szeredi <miklos@szeredi.hu>
1681 * fusermount: check if /mnt/mtab is a symlink and don't modify it
1684 * kernel: simplify request size limiting. INIT only contains
1685 maximum write size, maximum path component size remains fixed at
1686 1024 bytes, and maximum xattr size depends on read buffer.
1688 2005-12-14 Miklos Szeredi <miklos@szeredi.hu>
1690 * Fix readdir() failure on x86_64, of 32bit programs compiled
1691 without largefile support. Bug report and help from Anthony
1694 * If lookup returns invalid mode, return -EIO instead of creating
1697 * Add current output argument vector to option processing
1700 2005-12-12 Miklos Szeredi <miklos@szeredi.hu>
1702 * Fix stale code in ifdef FreeBSD. Patch from Csaba Henk
1704 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1706 * Released 2.5.0-pre1
1708 2005-12-09 Miklos Szeredi <miklos@szeredi.hu>
1710 * libfuse: added option parsing interface, defined in
1713 2005-12-07 Miklos Szeredi <miklos@szeredi.hu>
1715 * Return EIO for file operations (read, write, fsync, flush) on
1716 open files whose inode has become "bad". Inodes will be marked
1717 "bad" if their type changes. Bug report by Csaba Henk
1719 2005-12-06 Miklos Szeredi <miklos@szeredi.hu>
1721 * Use bigger request buffer size. write() did not work on archs
1722 with > 4k page size, Bug report by Mark Haney
1726 * Extend INIT reply with data size limits
1728 2005-12-02 Miklos Szeredi <miklos@szeredi.hu>
1730 * Fix memory leak in fuse_read_cmd()/fuse_process_cmd(). Bug
1731 reported by Vincenzo Ciancia
1733 * Handle exit-by-umount in fuse_read_cmd()
1735 2005-11-29 Miklos Szeredi <miklos@szeredi.hu>
1737 * Check if '-msoft-float' option is supported by compiler when
1738 configuring for a 2.4.x kernel. Bug report by Mark Haney
1740 * In multithreaded loop send a TERM signal to the main thread if
1741 one of the other threads exit. Needed on FreeBSD for a clean exit
1742 on umount. Should not cause any harm on Linux either
1744 2005-11-28 Miklos Szeredi <miklos@szeredi.hu>
1746 * Fix bug in 32-bit file handle compatibility
1748 2005-11-27 Miklos Szeredi <miklos@szeredi.hu>
1750 * Block TERM, INT, HUP and QUIT signals in all but the main
1751 thread. According to POSIX it's not specified which thread will
1752 receive these signals.
1756 * Check for directory aliasing on mkdir, not just on lookup
1758 * Check for special node ID values in create+open operation
1760 * Sync with -mm: readv, writev, aio_read and aio_write methods
1761 added to file operations
1763 * Cleanups: lookup code, page offset calculation
1765 * ABI stepped to 7.4, changes:
1767 * frsize member added to fuse_kstatfs structure
1769 * added support for negative entry caching: on lowlevel API if
1770 fuse_entry_param::ino is set to zero in reply to a lookup request,
1771 the kernel will cache the dentry for the specified amount of time.
1773 * libfuse: added 'negative_timeout' option: specifies how much
1774 negative entries should be cached. Default is zero, to be
1775 compatible with prior versions
1777 2005-11-22 Miklos Szeredi <miklos@szeredi.hu>
1779 * Add detection of mainline FUSE code in running kernel
1781 2005-11-21 Miklos Szeredi <miklos@szeredi.hu>
1783 * Don't use async cancelation in multithreaded loop. This makes
1784 it more portable to systems where read() is not async cancel safe.
1785 Report from Andriy Gapon
1787 2005-11-20 Miklos Szeredi <miklos@szeredi.hu>
1789 * Warn if API version 11 compatibility is requested
1791 2005-11-17 Miklos Szeredi <miklos@szeredi.hu>
1793 * More FreeBSD merge
1795 * fusermount: don't allow mountpoints with '\n', '\t', or '\\' in
1796 them, because it corrupts /etc/mtab. Found by Thomas Biege
1799 * libfuse: don't use system() to invoke 'fusermount -u ...'
1800 because it breaks mountpoints with spaces in them into multiple
1803 2005-11-16 Miklos Szeredi <miklos@szeredi.hu>
1805 * Merge library part of FreeBSD port. Patch by Csaba Henk
1807 2005-11-11 Miklos Szeredi <miklos@szeredi.hu>
1809 * Use 64bit type for file handle, so the full range supported by
1810 the kernel interface is available to applications
1812 2005-11-10 Miklos Szeredi <miklos@szeredi.hu>
1814 * Moved mountpoint argument checking from fuse_parse_cmdline() to
1815 fuse_mount() in preparation to FreeBSD merge.
1817 2005-11-08 Miklos Szeredi <miklos@szeredi.hu>
1819 * Remove unneeded close() from fuse_teardown(). Spotted by Csaba
1822 2005-11-07 Miklos Szeredi <miklos@szeredi.hu>
1824 * Make the statfs change backwards compatible.
1826 2005-11-06 Miklos Szeredi <miklos@szeredi.hu>
1828 * Change ->statfs() method to use 'struct statvfs' instead of
1829 'struct statfs'. This makes the API more portable since statvfs()
1830 is defined by POSIX.
1832 2005-10-28 Miklos Szeredi <miklos@szeredi.hu>
1834 * Add fgetattr() method, which currently will only be called after
1835 a successful call to a create() method.
1837 2005-10-26 Miklos Szeredi <miklos@szeredi.hu>
1839 * Change kernel ABI version to 7.3
1841 * Add ACCESS operation. This is called from the access() system
1842 call if 'default_permissions' mount option is not given, and is
1843 not called on kernels 2.4.*
1845 * Add atomic CREATE+OPEN operation. This will only work with
1846 2.6.15 (presumably) or later Linux kernels.
1848 * Add ftruncate() method. This will only work with 2.6.15
1849 (presumably) or later Linux kernels.
1851 * Fix kernel module compile if kernel source and build directories
1852 differ. Report and initial patch by John Eastman
1854 2005-10-18 Miklos Szeredi <miklos@szeredi.hu>
1856 * lib: optimize buffer reallocation in fill_dir.
1858 2005-10-17 Miklos Szeredi <miklos@szeredi.hu>
1862 2005-10-14 Miklos Szeredi <miklos@szeredi.hu>
1864 * libfuse: add debug for write result (by Shaun Jackman) and
1865 warnings for too large read/write result
1867 2005-10-11 Miklos Szeredi <miklos@szeredi.hu>
1869 * Spelling fixes, thanks to Ioannis Barkas
1871 2005-10-10 Miklos Szeredi <miklos@szeredi.hu>
1873 * fuse_common.h: use extern "C". Thanks to Valient Gough for the
1876 2005-10-07 Miklos Szeredi <miklos@szeredi.hu>
1878 * highlevel-lib: init() and destroy() methods didn't have an
1879 initialized fuse_context. Bug reported by Tim Stoakes
1881 2005-10-04 Miklos Szeredi <miklos@szeredi.hu>
1885 2005-10-03 Miklos Szeredi <miklos@szeredi.hu>
1887 * Add documentation to fuse_lowlevel.h
1891 * Remove definitions of unused FATTR_CTIME / FUSE_SET_ATTR_CTIME
1893 * Move fuse_mount() and fuse_unmount() to fuse_common.h
1895 * Change the return type of fuse_reply_none() from int to void.
1897 2005-09-30 Miklos Szeredi <miklos@szeredi.hu>
1899 * kernel: NFS exporting leaked dentries. Bug found and fixed by
1902 2005-09-29 Miklos Szeredi <miklos@szeredi.hu>
1904 * fusermount: fix error message, when unable to open /dev/fuse.
1905 Report by Balázs Pozsár
1907 2005-09-28 Miklos Szeredi <miklos@szeredi.hu>
1909 * UClibc fixes from Christian Magnusson
1911 2005-09-27 Miklos Szeredi <miklos@szeredi.hu>
1913 * Added NAME="%k" to util/udev.rules. Fix by Mattias Wadman.
1915 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
1917 * Released 2.4.0-rc1
1919 2005-09-26 Miklos Szeredi <miklos@szeredi.hu>
1921 * fusermount: allow user umount in the case when /etc/mtab is a
1922 symlink to /proc/mounts. Reported by Balázs Pozsár.
1924 2005-09-23 Miklos Szeredi <miklos@szeredi.hu>
1926 * Check for special node ID values in lookup and creation
1928 2005-09-22 Miklos Szeredi <miklos@szeredi.hu>
1930 * Slight optimization in returning EINVAL error in case of an open
1933 2005-09-20 Miklos Szeredi <miklos@szeredi.hu>
1935 * Remove '--enable-auto-modprobe' configure flag. Module
1936 auto-loading is now handled by the kernel.
1938 2005-09-15 Miklos Szeredi <miklos@szeredi.hu>
1940 * Install UDEV rule file, so /dev/fuse is created with mode 0666.
1941 Help from Jens M. Noedler.
1943 2005-09-14 Miklos Szeredi <miklos@szeredi.hu>
1945 * Add memory cleanup on thread exit
1947 2005-09-13 Miklos Szeredi <miklos@szeredi.hu>
1949 * Set umask to zero in fusexmp and fusexmp_fh, so that
1950 files/directories are created with the requested mode.
1952 2005-09-12 Miklos Szeredi <miklos@szeredi.hu>
1954 * Don't ignore read error in multithreaded loop
1956 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
1958 * Released 2.4.0-pre2
1960 2005-09-08 Miklos Szeredi <miklos@szeredi.hu>
1962 * Revert lock and access operations. Postpone these until 2.5.
1964 2005-09-02 Miklos Szeredi <miklos@szeredi.hu>
1966 * Fix compile warning on 2.6.13 and later
1968 * Fix compilation on old kernels
1970 2005-08-19 Miklos Szeredi <miklos@szeredi.hu>
1972 * lib: always refresh directory contents after rewinddir() to
1973 conform to SUS. Bug found by John Muir.
1975 2005-08-15 Miklos Szeredi <miklos@szeredi.hu>
1977 * Released 2.4.0-pre1
1979 2005-08-14 Miklos Szeredi <miklos@szeredi.hu>
1981 * lib: cleaned up (or messed up, depending on your POV) the low
1982 level library API. Hopefully this is close to the final form.
1984 2005-08-05 Miklos Szeredi <miklos@szeredi.hu>
1986 * fusermount: don't allow empty mountpoint argument, which defeats
1987 automatic umounting in fuse_main(). Bugreport by Václav Jůza
1989 2005-08-03 Miklos Szeredi <miklos@szeredi.hu>
1991 * fix warnings in fuse.h and fuse_lowlevel.h if -Wshadow compiler
1992 option is used (Paul Alfille).
1994 2005-08-02 Miklos Szeredi <miklos@szeredi.hu>
1996 * highlevel-lib: added mount options "attr_timeout" and
1997 "entry_timeout". These options control the length of time file
1998 attributes and entries (names) are cached. Both default to 1.0
2001 * kernel: correctly handle zero timeout for attributes and entries
2003 2005-08-01 Miklos Szeredi <miklos@szeredi.hu>
2005 * Added missing symbols to versionscript (Joshua J. Berry)
2007 * kernel: implement two flags, open can set: 'direct_io' and
2008 'keep_cache'. These correspond exactly to mount options
2009 'direct_io' and 'kernel_cache', but allow a per-open setting.
2011 * Move 'direct_io' and 'kernel_cache' mount option handling to
2012 userspace. For both mount options, if the option is given, then
2013 the respective open flag is set, otherwise the open flag is left
2014 unmodified (so the filesystem can set it).
2016 * lib (highlevel): make open method optional
2018 2005-07-28 Miklos Szeredi <miklos@szeredi.hu>
2020 * kernel: invalidate attributes for read/readdir/readlink
2023 * kernel: detect newer UML kernels
2025 2005-07-26 Miklos Szeredi <miklos@szeredi.hu>
2027 * Make the installation path of fuse.ko and mount.fuse
2028 configurable through INSTALL_MOD_PATH and MOUNT_FUSE_PATH
2029 environment variables. Requirement and help from Csaba Henk.
2031 2005-07-22 Miklos Szeredi <miklos@szeredi.hu>
2033 * Fix bug, that causes filesystem requests to hang when unique
2034 request counter becomes negative. This happens after
2035 2,147,483,648 operations, so most people won't care. Thanks to
2036 Franco Broi for the report and testing.
2038 2005-07-21 Miklos Szeredi <miklos@szeredi.hu>
2040 * Don't change mtime/ctime/atime to local time on read/write.
2041 Bug reported by Ben Grimm
2043 * Install fuse_common.h and fuse_lowlevel.h. Report by Christian
2046 * fusermount: use getopt_long() for option parsing. It allows the
2047 use of '--' to stop argument scanning, so fusermount can now
2048 operate on directories whose names begin with a '-'. Patch by
2051 2005-07-15 Miklos Szeredi <miklos@szeredi.hu>
2053 * fusermount: add '-v', '--version' and '--help' options
2055 * add inode based API
2057 2005-07-12 Miklos Szeredi <miklos@szeredi.hu>
2059 * lib: don't block signals in worker threads. Problem noticed by
2062 2005-07-07 Miklos Szeredi <miklos@szeredi.hu>
2064 * lib: don't allow both 'allow_other' and 'allow_root' options to
2067 2005-07-06 Miklos Szeredi <miklos@szeredi.hu>
2069 * fusermount: check if mountpoint is empty (only '.' and '..' for
2070 directories, and size = 0 for regular files). If "nonempty"
2071 option is given, omit this check. This is useful, so users don't
2072 accidentally hide data (e.g. from backup programs). Thanks to
2073 Frank van Maarseveen for pointing this out.
2075 * kernel: check if mandatory mount options ('fd', 'rootmode',
2076 'user_id', 'group_id') are all given
2078 * lib: simplify 'readdir_ino' handling
2080 * lib: add mount options 'umask=M', 'uid=N', 'gid=N'
2082 2005-07-03 Miklos Szeredi <miklos@szeredi.hu>
2084 * kernel: clean up 'direct_io' code
2086 2005-06-28 Miklos Szeredi <miklos@szeredi.hu>
2088 * Add 'mount.fuse' written by Petr Klima
2090 * '/dev/fuse' is created by 'make install' if does not yet exist
2092 2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
2094 * Fix UCLIBC compile error. Patch by Christian Magnusson
2096 2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
2098 * Enable the auto-loading of the module via access to the
2099 corresponding device file. Patch by Takashi Iwai.
2101 * Allow mounting a regular file (over a regular file) for
2104 * Do not create temporary device file. Require "/dev/fuse" to
2105 exist, and be readable/writable by the mounting user.
2107 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2111 2005-06-02 Miklos Szeredi <miklos@szeredi.hu>
2113 * Fix serious information leak: if the filesystem returns a short
2114 byte count to a read request, and there are non-zero number of
2115 pages which are not filled at all, these pages will not be zeroed.
2116 Hence the user can read out previous memory contents. Found by
2119 2005-05-27 Miklos Szeredi <miklos@szeredi.hu>
2121 * Add "readdir_ino" mount option, which tries to fill in the d_ino
2122 field in struct dirent. This mount option is ignored if "use_ino"
2123 is used. It helps some programs (e.g. 'pwd' used over NFS from a
2124 non-Linux OS). Patch by David Shaw.
2126 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2130 2005-05-12 Miklos Szeredi <miklos@szeredi.hu>
2132 * File save in krusader and other editors doesn't work with sshfs,
2133 because open() is interrupted by a periodic signal, and open()
2134 restarts forever, without any progress. This could just be fixed
2135 in open(), but the problem is more generic: if signals are
2136 received more often than the filesystem can get the request to
2137 userspace, it will never finish. This is probably only a
2138 theoretical problem, nevertheless I'm removing the possibility to
2139 interrupt requests with anything other than SIGKILL, even before
2140 being sent to userspace. Bugreport by Eduard Czimbalmos.
2142 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2144 * libfuse: add "tree_lock" rwlock, that is locked for write in
2145 rename, unlink and rmdir, and locked for read in all other
2146 operations. This should fix the rename/release race reported by
2147 Valient Gough and others. The solution is very coarse, a finer
2148 grained locking scheme could be implemented, but it would be much
2149 more complex. Let's see whether this is good enough.
2151 2005-05-09 Miklos Szeredi <miklos@szeredi.hu>
2155 2005-05-08 Miklos Szeredi <miklos@szeredi.hu>
2157 * Better fix for out of order FORGET messages. Now the
2158 LOOKUP/FORGET messages are balanced exactly (one FORGET can
2159 balance many lookups), so the order no longer matters. This
2160 changes the kernel ABI slightly, but the library remains backward
2163 2005-05-06 Miklos Szeredi <miklos@szeredi.hu>
2165 * Fix abort for out of order FORGET messages. Again. Spotted by
2166 Franco Broi again. Sorry :)
2168 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2172 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
2174 * Make fusermount work with fuse kernel modules not yet supporting
2175 the "group_id" option (added for the purpose of stricter
2176 permission checking).
2178 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
2180 * Check for hard-linked directories in lookup. This could cause
2181 problems in the VFS, which assumes that such objects never exist.
2183 * Make checking of permission for other users more strict. Now
2184 the same privilege is required for the mount owner as for ptrace
2185 on the process performing the filesystem operation.
2187 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
2191 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
2193 * Add -msoft-float to kernel module compile flags for 2.4.X. This
2194 is needed on certain architectures. Report from Chris Kirby
2196 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
2197 Reported by David Shaw
2199 * Remove "allow_root" option from kernel module, and implement
2200 it's functionality in the library
2202 * Fix Oops caused by premature release of fuse_conn. Clean up
2203 related code, to be more readable
2205 * Sendfile should not use page cache if "direct_io" mount option
2208 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
2210 * Fix Oops in case of nfs export. Spotted by David Shaw
2212 * Fix another Oops in case of write over nfs with direct_io turned
2213 on. Again spotted by David Shaw
2215 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2219 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
2221 * lib: finalized new readdir() interface, which now supersedes the
2224 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2228 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
2230 * Implement backward compatibility with version 5 kernel ABI
2232 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2236 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
2238 * kernel: fix dirent offset handling
2240 * lib: add readdir and releasedir methods
2242 * lib: use fh field of fuse_file_info in opendir, readdir,
2243 releasedir and fsyncdir methods
2245 * lib: check kernel API version and bail out of it's old. This
2246 will be properly fixed in the next release
2248 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2252 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
2254 * kernel API: add padding to structures, so 64bit and 32bit
2255 compiler will return the same size
2257 * kernel API: add offset field to fuse_dirent. This will allow
2258 more sophisticated readdir interface for userspace
2260 * kernel API: change major number to 6
2262 * kernel: fix warnings on 64bit archs
2264 * kernel: in case of API version mismatch, return ECONNREFUSED
2266 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
2268 * kernel: trivial cleanups
2270 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
2272 * Add fsyncdir() operation
2274 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
2276 * kernel: add locking to background list (fixes previous fix)
2278 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
2280 * kernel: fix bug which could cause leave busy inodes after
2283 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
2285 * examples: add -lpthread to link flags to work around valgrind
2288 * lib: don't exit threads, so cancelation doesn't cause segfault
2290 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
2292 * kernel: fix nasty bug which could cause an Oops under certain
2293 situations. Found by Magnus Johansson
2295 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
2297 * libfuse: added opendir() method. This can be used in case
2298 permission checking in getdir() is too late. Thanks to Usarin
2299 Heininga for pointing out this deficiency
2301 * libfuse: added init() and destroy() methods to fuse_operations
2303 * kernel: llseek() method for files and directories made explicit
2305 * kernel: fixed inode leak in NFS export in case of nodeid
2308 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
2310 * libfuse: clean up some unitialized memory found with valgrind
2312 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
2313 explicitly linked libpthread for applications
2315 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
2317 * fusermount: set umask, otherwise /etc/mtab will have
2318 unpredictable permission. Spotted by Jindrich Kolorenc
2320 * fusermount: set owner and group of /etc/mtab to original values
2323 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
2325 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
2327 * Cleaned up directory reading (temporary file is not used)
2329 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2333 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
2335 * Fix possible race when operation is interrupted
2337 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
2339 * Fix compilation on 2.6.7
2341 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2345 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
2347 * Fix bug in link() operation which caused the wrong path to be
2348 passed as the first argument. Found by Anton Altaparmakov
2350 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
2352 * LIB: fix double reply in readdir operation
2354 * fusermount: fix uid checking bug. Patch by Adam Connell
2356 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
2357 Patch by Keshava Gowda
2359 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2361 * KERNEL: provide correct llseek semantics for fuse device (fixes
2362 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
2364 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
2366 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
2368 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
2370 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
2371 and RELEASEDIR. This ends the ugly hack of passing a file
2372 descriptor to the kernel, and actually makes the code simpler.
2374 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2378 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
2380 * fusermount: remove capability setting, which was the cause of
2381 problems for some users. It seems that FS related capabilities
2382 are removed by setfsuid(), so this isn't even needed.
2384 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
2386 * fix compilation on 2.4 kernels (reported by Valient Gough)
2388 * fix failure to unmount bug (found by David Shaw)
2390 * fusermount: improve parsing of /etc/fuse.conf
2392 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
2394 * Remove 'mount_max' and 'user_allow_other' module options. These
2395 are now checked by fusermount, and can be set in /etc/fuse.conf
2397 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
2399 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
2401 * KERNEL: fix possible inode allocation problem, where
2402 sizeof(struct inode) is not aligned (found by Mike Waychison)
2404 * KERNEL: use new follow_link/put_link methods
2406 * KERNEL: cosmetic fixes
2408 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2412 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
2414 * Add missing code that was accidently left out
2416 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2420 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2422 * Change "uid" mount option to "user_id" to avoid confusion with a
2423 mount option "uid" commonly used by many filesystems
2425 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2429 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
2431 * If FUSE is configured in the kernel, don't build it by default
2433 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
2435 * Compile fix by Christian Magnusson
2437 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
2439 * Fix compilation for 2.6.{0-5} kernels
2441 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
2443 * KERNEL: if request is interrupted, still keep reference to used
2444 inode(s) and file, so that FORGET and RELEASE are not sent until
2445 userspace finishes the request.
2447 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
2448 request with the same information, which is more flexible,
2449 simpler, works on embedded systems.
2451 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
2453 * KERNEL ABI: update interface to make it independent of type
2454 sizes. This will help on 64 bit architectures which can run
2455 legacy 32 bit applications.
2457 * KERNEL ABI: add "len" field to request headers. This will allow
2458 sending/receiving requests in multiple chunks.
2460 * KERNEL: handle file type change more intelligently
2462 * LIB: "-o debug" option should disable backgrounding (fix by
2463 Fabien Reygrobellet)
2465 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
2467 * KERNEL: invalidate dentry/attributes if interrupted request
2468 could leave filesystem in an unknown state.
2470 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
2472 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
2473 These will cause some regressions, but stability is considered
2474 more important. If any of these features turns out to be
2475 important, it can be readded with the deadlock problems addressed.
2477 * Make all requests interruptible (only with SIGKILL currently).
2478 This can be used to break any deadlock produced by the userspace
2479 filesystem accessing it's own exported files. The RELEASE request
2480 is special, because if it's interrupted before sending it to
2481 userspace it is still sent, but the reply is not awaited.
2483 * If request is interrupted before being sent to userspace, and if
2484 it hasn't yet got any side effects, it is always restarted,
2485 regardless of the SA_RESTART flag. This makes these interruptions
2486 transparent to the process.
2488 * Remove shared-writable mmap support, which was prone to an
2489 out-of-memory deadlock situation
2491 * Remove INVALIDATE userspace initiated request
2493 * Make readpages() synchronous. Asynchronous requests are
2494 deadlock prone, since they cannot be interrupted.
2496 * Add readv/writev support to fuse device operations
2498 * Remove some printks, which userspace FS can use for a DoS
2501 * Remove 'large_read' mount option from 2.6 in kernel, check it in
2504 * LIB: improve compatibility with a fuse.h header installed in
2505 ${prefix}/include which in turn includes the real header.
2507 * LIB: improve compatibility by defining fuse_main() (which is now
2508 not used), so old configure scripts find it.
2510 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
2512 * When mounting on a subdirectory of / don't duplicate slashes at
2513 the beggining of path (spotted by David Shaw)
2515 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
2517 * Fix bug causing garbage in mount options (spotted by David Shaw)
2519 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
2521 * Add 'writepage' flag to 'fuse_file_info'.
2523 * More comments in fuse.h
2525 * Get rid of double underscores
2527 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
2529 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
2531 * helper.c: add -ho option, which only displays the options not
2532 the usage header. This can be used by filesystems which have
2535 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2537 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
2538 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
2539 including the fuse header
2541 * Add binary compatibility to 2.1 version of library with symbol
2544 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
2548 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
2550 * kernel: clean up writing functions
2552 * kernel: no allocation on write in direct_io mode
2554 * move linux/fuse.h to fuse_kernel.h
2556 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
2558 * kernel: clean up reading functions
2560 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
2562 * kernel: make readpage() uninterruptible
2564 * kernel: check readonly filesystem flag in fuse_permission
2566 * lib: don't die if version file not found and new style device
2569 * lib: add '-r' option, which is short for '-o ro'
2571 * fusermount: simplify device opening
2573 * kernel: when direct_io is turend on, copy data directly to
2574 destination without itermediate buffer. More efficient and safer,
2575 since no allocation is done.
2577 * fusermount: fix warning if fuse module is not loaded
2579 * kernel: use /dev/fuse on 2.4 too
2581 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
2583 * libfuse API change: open, read, write, flush, fsync and release
2584 are passed a 'struct fuse_file_info' pointer containing the open
2585 flags (open and release), and the file handle. Verion changed to
2588 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
2590 * More cleanups in the kernel
2592 * The 10,229 charater device number has been assigned for FUSE
2594 * Version file checking fix (reported by Christian Magnusson)
2596 * fusermount: opening the fuse device now doesn't need /sys.
2598 * Optimize reading by controlling the maximum readahead based on
2599 the 'max_read' mount option
2601 * fixes for UCLIBC (Christian Magnusson)
2603 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
2605 * Cleaned up kernel in preparation for merge into mainline:
2607 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
2609 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
2611 * __user annotations for sparse
2613 * allocate individual pages instead of kmalloc in fuse_readdir,
2614 fuse_read and fuse_write.
2616 * Fix NFS export in case "use_ino" mount option is given
2618 * Make libfuse and fusermount compatible with future versions
2620 * fusermount: properly add mount options to /etc/mtab
2622 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
2624 * fusermount: do not resolve last component of mountpoint on if it
2625 is '.' or '..'. This new path resolvation is now done on mount as
2626 well as unmount. This enables relative paths to work on unmount.
2628 * fusermount: parse common mount options like "ro", "rw", etc...
2630 * Allow module params to be changed through sysfs
2632 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2636 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
2638 * Fix bug in fuse_readpages() causing Oops in certain situations.
2639 Bug found by Vincenzo Ciancia.
2641 * Fix compilation with kernels versions > 2.6.9.
2643 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
2645 * Check kernel interface version in fusermount to prevent
2646 strangeness in case of mismatch.
2648 * No need to allocate fuse_conn until actual mount happens
2650 * Fix potential race between umount and fuse_invalidate
2652 * Check superblock of proc file in addition to inode number
2654 * Fix race between request_send_noreply() and fuse_dev_release()
2656 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
2658 * Separate configure for the kernel directory
2660 * Don't allow write to return more than 'count'
2662 * Extend kernel interface for future use
2664 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
2666 * Fix 'makeconf.sh' to use autoreconf if available
2668 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
2670 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
2671 compatibility with earlier versions. To compile earier versions
2672 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
2673 Do not use the "use_ino" mount flag with filesystems compiled with
2676 * Add pkg-config support. To compile a FUSE based filesystem you
2677 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
2678 or similar. Note, that the PKG_CONFIG_PATH environment variable
2679 usually needs to be set to "/usr/local/lib/pkgconfig".
2681 * fuse.h is now installed in ${prefix}/include/fuse/
2683 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
2685 * Added "use_ino" mount option. This enables the filesystems to
2686 set the st_ino field on files
2688 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
2690 * Fix compile problems with ancient (<=2.4.18) kernels (reported
2693 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
2695 * Clear the 'exited' flag when mail loop is finished
2697 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
2699 * Make xattr functions work under 2.6 (bug found by Vincenzo
2702 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
2704 * Reset request in fuse_flush() (bugreport by David Shaw)
2706 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
2708 * fuse_main() now does not exit on error, rather it returns an
2711 * Exported __fuse_setup() and __fuse_teardown() functions, which
2712 make it easier to implement a custom event loop.
2714 * Use daemon() call to background the filesystem after mounting.
2715 This function closes the standard input, output and error and
2716 changes the current working directory to "/".
2718 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
2722 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
2724 * Don't allow fuse_flush() to be interrupted (bug found by David
2727 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
2729 * Add PID to fuse_context. Patch by Steven James
2731 * Change file handle type to 'unsigned long' in kernel interface
2733 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
2735 * A slight API change: fuse_get_context() doesn't need the "fuse"
2736 pointer, but the returned context contains it instead. The
2737 fuse_get() function is not needed anymore, so it's removed.
2739 * Fix mounting and umounting FUSE filesystem under another FUSE
2740 filesystem by non-root (bug spotted by Valient Gough)
2742 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
2744 * Fix deadlock in case of memory allocation failure. Patch by
2747 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
2749 * Check memory allocation failures in libfuse
2751 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
2753 * Check temporary file creation failure in do_getdir(). Bug
2754 spotted by Terje Oseberg
2756 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
2758 * Allow "large_read" option for 2.6 kernels but warn of deprecation
2760 * Make requests non-interruptible so race with FORGET is avoided.
2761 This is only a temporary solution
2763 * Support compiling FUSE kernel module on 2.4.x UML kernels
2765 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
2767 * Fix bug in case two FORGETs for the same node are executed in
2768 the wrong order. Bug spotted and endured for months by Franco
2769 Broi, and logfile for solution provided by Terje Oseberg
2771 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
2773 * Add -D_REENTRANT to the compile flags
2775 * Add documentation of fuse internals by Terje Oseberg
2777 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
2779 * Change release method to be non-interruptible. Fixes bug
2780 causing missing release() call when program which has opened files
2781 is killed (reported by Franco Broi and David Shaw)
2783 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
2785 * Add fuse_invalidate() to library API
2787 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
2789 * Check permissions in setattr if 'default_permissions' flag is
2790 set. Bug spotted by Damjan Lango
2792 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
2794 * 'large_read' mount option removed for 2.6 kernels, since the
2795 default (dynamic read size) is better
2797 * Extend kernel API with file handles. A file handle is returned
2798 by open, and passed to read, write, flush, fsync and release.
2799 This is currently only used for debug output in the library.
2803 * Change the current directory to the mountpoint before checking
2804 the permissions and mount filesystem on "."
2806 * By default don't modprobe the fuse module for non-root. The old
2807 behavior can be restored with the '--enable-auto-modprobe' flag of
2810 * By default don't allow shared writable mappings for non-root.
2811 The old behavior can be restored with the 'user_mmap=1' module
2814 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
2816 * Clean up mount option passing to fusermount and to fuse_new()
2817 BEWARE: this changes the userspace API slightly, and the command
2818 line usage of programs using fuse_main()
2820 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
2822 * Optimize reading under 2.6 kernels by issuing multiple page
2823 asynchronous read requests
2825 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
2827 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
2829 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
2831 * Separate directory entry and inode attribute validity timer
2833 * New write semaphore to stop page writeback during truncate
2835 * Fsync now waits for all writes to complete before sending the
2838 * Optimization: if a page is completely written by
2839 fuse_commit_write(), clear the dirty flag and set the uptodate
2842 * Some memory cleanup at exit
2844 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
2846 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
2847 disable the "hide if open" behavior of unlink/rename.
2849 * If temporary buffer allocation fails in raw read, fall back to a
2852 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
2854 * Fix bug in do_open() in libfuse: open count was incremented
2855 after the reply is sent so it could race with unlink/forget and
2858 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
2860 * When performing create or remove operation, refresh the parent's
2861 attributes on next revalidate, as i_nlink (and maybe size/time)
2864 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
2867 * Set set_page_dirty address space operation (2.6 only)
2869 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
2871 * Minor fix in read: print debug info even if read size is zero
2873 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
2875 * Fix race between truncate and writepage (fsx-linux now runs
2878 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
2880 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
2883 * Added option for direct read/write (-r)
2885 * Fix revalidate time setting for newly created inodes
2887 * Remove uid==0 check for '-x' option in fusermount (kernel checks
2890 * fuse_main() only installs handlers for signals (out of INT, HUP,
2891 TERM, PIPE), for which no handler has yet been installed
2893 * Add module option 'user_allow_other' which if set to non-zero
2894 will allow non root user to specify the 'allow_other' mount option
2895 ('-x' option of fusermount)
2897 * Fix deadlock between page writeback completion and truncate
2898 (bug found by Valient Gough with the fsx-linux utility)
2900 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
2902 * Change passing fuse include dir to 2.6 kernel make system more
2903 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
2906 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
2908 * Acquire inode->i_sem before open and release methods to prevent
2909 concurrent rename or unlink operations.
2911 * Make __fuse_read_cmd() read only one command. This allows
2912 multiplexing the fuse file descriptor with other event sources
2913 using select() or poll() (patch by Jeff Harris)
2915 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
2917 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
2919 * Fix file offset wrap around at 4G when doing large reads
2921 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
2923 * Fix memory leak in open (Valient Gough)
2925 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
2927 * Add "close after delete" support to libfuse (patch by Valient
2930 * Cancel all worker threads before exit in multithreaded mode
2932 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
2936 * Don't send reply to RELEASE
2938 * Work with newer libtool (1.5a)
2940 * Check for st_atim member of struct stat
2942 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
2944 * No request allocation needed on inode and file release
2946 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
2948 * Fix possible inode leak in userspace in case of unfinished
2949 lookup/mknod/mkdir/symlink/link operation.
2951 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
2953 * Fix some races and cleanups in fuse_read_super()
2955 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
2957 * Requests are allocated at open time
2959 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
2961 * Build shared library as well as static (using libtool)
2963 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
2964 there has not been a release with the previous minor number, and I
2965 hope nobody is using it for anything.
2967 * Change fuse_main(), so that default behavior is to go into
2968 background if mount is successful. '-f' and '-d' options disable
2969 backgrounding. This fixes the "Why does my FUSE daemon hang?"
2972 * Cache ENOSYS (function not implemented) errors on *xattr, flush
2975 * Don't call getdir method from open() only from first readdir().
2976 Open is sometimes just used to store the current directory
2979 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
2981 * Added flush() call
2983 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
2985 * Extended attributes support for 2.4 (patch by Cody Pisto)
2987 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
2989 * Fixed parser with modversions (Mattias Wadman)
2991 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
2993 * Added mount option parser to 2.4 build
2995 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
2997 * Replaced binary mount data with text options
2999 * Show FUSE specific mount options in /proc/mounts
3001 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
3003 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
3005 * Check some limits so userspace won't get too big requests
3007 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
3009 * Kill compile warning
3011 * Upgraded user-mount patch for 2.6.5
3013 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
3015 * Add detection of user-mode-linux to configure
3017 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
3019 * fixed zero size case for getxattr and listxattr
3021 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
3023 * new fusermount flag '-z': lazy unmount, default is not lazy
3025 * Extended attributes operations added (getxattr, setxattr,
3026 listxattr, removexattr)
3028 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
3030 * If filesystem doesn't define a statfs operation, then an
3031 all-zero default statfs is returned instead of ENOSYS
3033 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
3035 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
3037 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
3039 * Fix for uClinux (Christian Magnusson)
3041 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
3043 * fuse_main() adds "-n progname" to the fusermount command line
3045 * More kernel interface changes:
3047 * Lookup/getattr return cache timeout values
3049 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
3051 * Clean up option parsing in fuse_main()
3053 * Added fuse_get() function which returns the fuse object created
3056 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
3058 * removed old way of mounting (fusermount mountpoint program)
3060 * more kernel interface changes:
3062 * added nanosecond precision to file times
3064 * removed interface version from mount data
3066 * added /proc/fs/fuse/version which contains MAJOR.MINOR
3068 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
3070 * statfs library API changed to match other methods. Since this
3071 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
3073 * kernel interface changes follow:
3075 * statfs changed to 64 bits, added 'bavail' field
3077 * add generation number to lookup result
3079 * optimized mknod/mkdir/symlink/link (no separate lookup is
3082 * rdev size increased to 32 bits for mknod
3084 * kernel interface version changed to 3.1
3086 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
3088 * user-mount upgraded for 2.6.3 kernel
3090 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
3092 * Added user-mount.2.6.2-rc3.patch
3094 * Add FS_SAFE flag to fuse filesystem
3096 * fusermount should allow (un)mounting for non-root even if not
3099 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
3101 * Remove MS_PERMISSION mount flag (that means something else now)
3103 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
3105 * Added check for i_size_read/write functions to configure.in
3106 (patch by Valient Gough)
3108 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
3110 * Fixed writing >= 2G files
3112 * Check file size on open (with generic_file_open())
3114 * Readpage calls flush_dcache_page() after storing data
3116 * Use i_size_read/write for accessing inode->i_size
3118 * Make loopback mount of a fuse file work
3120 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
3124 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
3126 * Properly check if the inode exists in fuse_invalidate
3128 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
3130 * Added -q option for fusermount
3132 * fuse_unmount() now uses -q option of fusermount, so no error is
3133 printed if the cause of the program exit is that the filesystem
3134 has already been unmounted
3136 * Fix i_nlink correctness after rmdir/unlink
3138 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3142 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
3144 * Fix typo (thanks Marcos Dione)
3146 * Compile fixes for 2.4 kernels
3148 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
3150 * Fix CONFIG_MODVERSIONS compile on 2.6
3152 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
3154 * Write all pending data before a RELEASE operation
3156 * Suppress 'Bad file descriptor' warning on exit
3158 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
3159 get confused with '-d' of fuse_main() (sorry about this change)
3161 * New fusermount option '-l' which enables big reads. Big reads
3162 are now disabled by default.
3164 * fuse_main() can accept fusermount arguments after a '--'
3166 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
3168 * Support for exporting filesystem over NFS (see README.NFS)
3170 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
3172 * Support non-blocking writepage on 2.6. This makes FUSE behave
3173 much more nicely in low-memory situations
3175 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
3176 (Note: the mknod method does not yet use 32bit device number)
3178 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
3182 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
3186 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
3188 * Integrated 2.6 kernel support patch by Michael Grigoriev
3190 * Improvements and cleanups for 2.6 kernels
3192 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
3194 * Added -d option to fusermount
3196 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
3198 * Added major+minor version to library API, and minor version to
3201 2003-12-13 David McNab <david@rebirthing.co.nz>
3203 * Implemented fsync support in examples/example.py
3205 * Implemented 'fsync' and 'statfs' methods in python
3208 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
3210 * Make it compile on 2.4.19.
3212 * Add fsync operation (write file failed on xemacs & vi)
3214 2003-12-12 David McNab <david@rebirthing.co.nz>
3216 * Added distutils support to the python module, as per standard
3217 python development practice
3219 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
3221 * Add file locking for mount/unmount (based on patch by Valient
3224 2003-12-11 David McNab <david@rebirthing.co.nz>
3226 * Python filesystem - was broken with python2.3, now fixed:
3227 - changed PyTuple_* calls to PySequence_*, because os.lstat
3228 is no longer returning a pure tuple
3229 - changed PyInt_Check() calls to also call PyLong_Check,
3230 to cover for cases (eg os.lstat) where longs are returned
3231 - Added support for file 'release' handling, which IMO is
3232 essential since this signals to a FS that writes to a file
3233 are complete (and therefore the file can now be disposed of
3234 meaningfully at the python filesystem's discretion)
3235 - Added '__init__' handler to base Fuse class, which allows
3236 your Python class to know the mountpoint and mount args,
3237 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
3240 - added 'mount.fuse' script (in util/ dir), which is meant to be
3241 symlinked from /sbin, and which allows FUSE filesystems to
3242 be mounted with the 'mount' command, and listed in fstab;
3243 also, mount arguments get passed to your filesystem
3246 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
3248 * Fix kernel version detection (again). Bugreport by Peter Levart
3250 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
3252 * Applied read combining patch by Michael Grigoriev (tested by
3253 Valient Gough and Vincent Wagelaar)
3255 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
3257 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
3260 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
3262 * Error code fixes in kernel module
3264 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
3266 * kernel version detection fix
3268 * fusermount now uses "lazy" umount option
3270 * fusermount can use modprobe with module-init-tools
3272 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
3274 * Integrated caching patch by Michael Grigoriev
3276 * Added "Filesystems" file with descriptions of projects using
3279 * Added patch by Michael Grigoriev to allow compliation of FUSE
3280 kernel module for 2.6 kernels
3282 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
3284 * And another spec-file fix by Achim Settelmeier
3286 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
3288 * Spec-file fix by Achim Settelmeier
3290 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
3292 * Fix umount oops (found by Samuli Kärkkäinen)
3294 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
3296 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
3298 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
3300 * Updated fuse.spec file (Achim Settelmeier)
3302 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
3304 * Version 1.0 released
3306 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
3308 * SuSE compilation fix by Juan-Mariano de Goyeneche
3310 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
3312 * The release() VFS call is now exported to the FUSE interface
3314 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
3316 * 64 bit file offset fixes in the fuse kernel module
3318 * Added function 'fuse_exit()' which can be used to exit the main
3321 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
3323 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
3324 an incompatible interface change.
3326 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
3328 * Portablility fix (bug reported by C. Chris Erway)
3330 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
3332 * Use Mark Glines' fd passing method for default operation instead
3335 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3337 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
3339 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
3341 * fix incompatiblity with Red Hat kernels, with help from Nathan
3344 2002-04-18 Mark Glines <mark@glines.org>
3346 * added an alternative to fuse_mount(), called
3347 fuse_mount_ioslave(), which does not need to reexec the
3349 * added a small helper util needed by fuse_mount_ioslave().
3351 2002-03-16 Mark Glines <mark@glines.org>
3353 * use struct fuse_statfs everywhere possible to avoid problems
3354 with the headerfiles changing struct statfs member sizes
3356 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
3358 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
3360 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
3362 * RPM support by Achim Settelmeier
3364 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3366 * Version 0.95 released
3368 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
3370 * Revaidate all path components not just the last, this means a
3371 very small performance penalty for being more up-to-date.
3373 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
3375 * Update and fix python interface
3377 2002-01-07 Mark Glines <mark@glines.org>
3379 * Added statfs() support to kernel, lib, examples, and perl!
3381 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
3383 * Better cross compilation support
3385 * Ported to Compaq IPAQ
3387 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
3389 * Added function fuse_get_context() to library API (inspired by
3390 patch from Matt Ryan)
3392 * Added flags to fusermount and to kernel interface to control
3395 * Integrated fuse_set_operations() into fuse_new()
3397 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
3399 * Applied header protection + extern "C" patch by Roland
3402 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
3404 * Added perl bindings by Mark Glines
3406 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
3408 * Cleaned up way of mounting simple filesystems.
3410 * fuse_main() helper function added
3412 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
3414 * Optimized read/write operations, so that minimal copying of data
3417 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
3419 * Python bindings by Jeff Epler added
3421 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
3423 * Fixed vfsmount reference leak in fuse_follow_link
3425 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
3426 userspace is ignored
3428 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>