1 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
5 2005-04-29 Miklos Szeredi <miklos@szeredi.hu>
7 * Make fusermount work with fuse kernel modules not yet supporting
8 the "group_id" option (added for the purpose of stricter
11 2005-04-28 Miklos Szeredi <miklos@szeredi.hu>
13 * Check for hard-linked directories in lookup. This could cause
14 problems in the VFS, which assumes that such objects never exist.
16 * Make checking of permission for other users more strict. Now
17 the same privilege is required for the mount owner as for ptrace
18 on the process performing the filesystem operation.
20 2005-04-23 Miklos Szeredi <miklos@szeredi.hu>
24 2005-04-22 Miklos Szeredi <miklos@szeredi.hu>
26 * Add -msoft-float to kernel module compile flags for 2.4.X. This
27 is needed on certain architectures. Report from Chris Kirby
29 * Fix buggy behavior of open(..., O_CREAT|O_EXCL) if interrupted.
30 Reported by David Shaw
32 * Remove "allow_root" option from kernel module, and implement
33 it's functionality in the library
35 * Fix Oops caused by premature release of fuse_conn. Clean up
36 related code, to be more readable
38 * Sendfile should not use page cache if "direct_io" mount option
41 2005-04-08 Miklos Szeredi <miklos@szeredi.hu>
43 * Fix Oops in case of nfs export. Spotted by David Shaw
45 * Fix another Oops in case of write over nfs with direct_io turned
46 on. Again spotted by David Shaw
48 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
52 2005-04-07 Miklos Szeredi <miklos@szeredi.hu>
54 * lib: finalized new readdir() interface, which now supersedes the
57 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
61 2005-04-03 Miklos Szeredi <miklos@szeredi.hu>
63 * Implement backward compatibility with version 5 kernel ABI
65 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
69 2005-04-01 Miklos Szeredi <miklos@szeredi.hu>
71 * kernel: fix dirent offset handling
73 * lib: add readdir and releasedir methods
75 * lib: use fh field of fuse_file_info in opendir, readdir,
76 releasedir and fsyncdir methods
78 * lib: check kernel API version and bail out of it's old. This
79 will be properly fixed in the next release
81 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
85 2005-03-31 Miklos Szeredi <miklos@szeredi.hu>
87 * kernel API: add padding to structures, so 64bit and 32bit
88 compiler will return the same size
90 * kernel API: add offset field to fuse_dirent. This will allow
91 more sophisticated readdir interface for userspace
93 * kernel API: change major number to 6
95 * kernel: fix warnings on 64bit archs
97 * kernel: in case of API version mismatch, return ECONNREFUSED
99 2005-03-24 Miklos Szeredi <miklos@szeredi.hu>
101 * kernel: trivial cleanups
103 2005-03-21 Miklos Szeredi <miklos@szeredi.hu>
105 * Add fsyncdir() operation
107 2005-03-19 Miklos Szeredi <miklos@szeredi.hu>
109 * kernel: add locking to background list (fixes previous fix)
111 2005-03-18 Miklos Szeredi <miklos@szeredi.hu>
113 * kernel: fix bug which could cause leave busy inodes after
116 2005-03-08 Miklos Szeredi <miklos@szeredi.hu>
118 * examples: add -lpthread to link flags to work around valgrind
121 * lib: don't exit threads, so cancelation doesn't cause segfault
123 2005-03-04 Miklos Szeredi <miklos@szeredi.hu>
125 * kernel: fix nasty bug which could cause an Oops under certain
126 situations. Found by Magnus Johansson
128 2005-02-28 Miklos Szeredi <miklos@szeredi.hu>
130 * libfuse: added opendir() method. This can be used in case
131 permission checking in getdir() is too late. Thanks to Usarin
132 Heininga for pointing out this deficiency
134 * libfuse: added init() and destroy() methods to fuse_operations
136 * kernel: llseek() method for files and directories made explicit
138 * kernel: fixed inode leak in NFS export in case of nodeid
141 2005-02-15 Miklos Szeredi <miklos@szeredi.hu>
143 * libfuse: clean up some unitialized memory found with valgrind
145 * Add -lpthread to Libs in fuse.pc. Valgrind seems to need an
146 explicitly linked libpthread for applications
148 2005-02-10 Miklos Szeredi <miklos@szeredi.hu>
150 * fusermount: set umask, otherwise /etc/mtab will have
151 unpredictable permission. Spotted by Jindrich Kolorenc
153 * fusermount: set owner and group of /etc/mtab to original values
156 * libfuse: add 'use_ino' option to help. Patch by Valient Gough
158 2005-02-07 Miklos Szeredi <miklos@szeredi.hu>
160 * Cleaned up directory reading (temporary file is not used)
162 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
166 2005-02-02 Miklos Szeredi <miklos@szeredi.hu>
168 * Fix possible race when operation is interrupted
170 2005-01-28 Miklos Szeredi <miklos@szeredi.hu>
172 * Fix compilation on 2.6.7
174 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
178 2005-01-26 Miklos Szeredi <miklos@szeredi.hu>
180 * Fix bug in link() operation which caused the wrong path to be
181 passed as the first argument. Found by Anton Altaparmakov
183 2005-01-21 Miklos Szeredi <miklos@szeredi.hu>
185 * LIB: fix double reply in readdir operation
187 * fusermount: fix uid checking bug. Patch by Adam Connell
189 * KERNEL: fix compile on various RedHat patched 2.4 kernels.
190 Patch by Keshava Gowda
192 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
194 * KERNEL: provide correct llseek semantics for fuse device (fixes
195 a bug on Progeny 2.4.20 kernel). Reported by Valient Gough
197 2005-01-20 Miklos Szeredi <miklos@szeredi.hu>
199 * Released 2.2-pre5 (matches kernel 2.6.11-rc1-mm2)
201 2005-01-18 Miklos Szeredi <miklos@szeredi.hu>
203 * KERNEL ABI: remove GETDIR operation, and add OPENDIR, READDIR
204 and RELEASEDIR. This ends the ugly hack of passing a file
205 descriptor to the kernel, and actually makes the code simpler.
207 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
211 2005-01-17 Miklos Szeredi <miklos@szeredi.hu>
213 * fusermount: remove capability setting, which was the cause of
214 problems for some users. It seems that FS related capabilities
215 are removed by setfsuid(), so this isn't even needed.
217 2005-01-15 Miklos Szeredi <miklos@szeredi.hu>
219 * fix compilation on 2.4 kernels (reported by Valient Gough)
221 * fix failure to unmount bug (found by David Shaw)
223 * fusermount: improve parsing of /etc/fuse.conf
225 2005-01-13 Miklos Szeredi <miklos@szeredi.hu>
227 * Remove 'mount_max' and 'user_allow_other' module options. These
228 are now checked by fusermount, and can be set in /etc/fuse.conf
230 * KERNEL: change check for fsid == 0 to capable(CAP_DAC_OVERRIDE)
232 2005-01-11 Miklos Szeredi <miklos@szeredi.hu>
234 * KERNEL: fix possible inode allocation problem, where
235 sizeof(struct inode) is not aligned (found by Mike Waychison)
237 * KERNEL: use new follow_link/put_link methods
239 * KERNEL: cosmetic fixes
241 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
245 2005-01-10 Miklos Szeredi <miklos@szeredi.hu>
247 * Add missing code that was accidently left out
249 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
253 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
255 * Change "uid" mount option to "user_id" to avoid confusion with a
256 mount option "uid" commonly used by many filesystems
258 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
262 2005-01-09 Miklos Szeredi <miklos@szeredi.hu>
264 * If FUSE is configured in the kernel, don't build it by default
266 2005-01-07 Miklos Szeredi <miklos@szeredi.hu>
268 * Compile fix by Christian Magnusson
270 2005-01-05 Miklos Szeredi <miklos@szeredi.hu>
272 * Fix compilation for 2.6.{0-5} kernels
274 2005-01-04 Miklos Szeredi <miklos@szeredi.hu>
276 * KERNEL: if request is interrupted, still keep reference to used
277 inode(s) and file, so that FORGET and RELEASE are not sent until
278 userspace finishes the request.
280 * remove /{sys,proc}/fs/fuse/version, and instead add an INIT
281 request with the same information, which is more flexible,
282 simpler, works on embedded systems.
284 2004-12-16 Miklos Szeredi <miklos@szeredi.hu>
286 * KERNEL ABI: update interface to make it independent of type
287 sizes. This will help on 64 bit architectures which can run
288 legacy 32 bit applications.
290 * KERNEL ABI: add "len" field to request headers. This will allow
291 sending/receiving requests in multiple chunks.
293 * KERNEL: handle file type change more intelligently
295 * LIB: "-o debug" option should disable backgrounding (fix by
298 2004-12-13 Miklos Szeredi <miklos@szeredi.hu>
300 * KERNEL: invalidate dentry/attributes if interrupted request
301 could leave filesystem in an unknown state.
303 2004-12-12 Miklos Szeredi <miklos@szeredi.hu>
305 * KERNEL: lots of cleanups related to avoiding possible deadlocks.
306 These will cause some regressions, but stability is considered
307 more important. If any of these features turns out to be
308 important, it can be readded with the deadlock problems addressed.
310 * Make all requests interruptible (only with SIGKILL currently).
311 This can be used to break any deadlock produced by the userspace
312 filesystem accessing it's own exported files. The RELEASE request
313 is special, because if it's interrupted before sending it to
314 userspace it is still sent, but the reply is not awaited.
316 * If request is interrupted before being sent to userspace, and if
317 it hasn't yet got any side effects, it is always restarted,
318 regardless of the SA_RESTART flag. This makes these interruptions
319 transparent to the process.
321 * Remove shared-writable mmap support, which was prone to an
322 out-of-memory deadlock situation
324 * Remove INVALIDATE userspace initiated request
326 * Make readpages() synchronous. Asynchronous requests are
327 deadlock prone, since they cannot be interrupted.
329 * Add readv/writev support to fuse device operations
331 * Remove some printks, which userspace FS can use for a DoS
334 * Remove 'large_read' mount option from 2.6 in kernel, check it in
337 * LIB: improve compatibility with a fuse.h header installed in
338 ${prefix}/include which in turn includes the real header.
340 * LIB: improve compatibility by defining fuse_main() (which is now
341 not used), so old configure scripts find it.
343 2004-12-10 Miklos Szeredi <miklos@szeredi.hu>
345 * When mounting on a subdirectory of / don't duplicate slashes at
346 the beggining of path (spotted by David Shaw)
348 2004-12-09 Miklos Szeredi <miklos@szeredi.hu>
350 * Fix bug causing garbage in mount options (spotted by David Shaw)
352 2004-12-07 Miklos Szeredi <miklos@szeredi.hu>
354 * Add 'writepage' flag to 'fuse_file_info'.
356 * More comments in fuse.h
358 * Get rid of double underscores
360 2004-12-04 Miklos Szeredi <miklos@szeredi.hu>
362 * Add -D_FILE_OFFSET_BITS=64 to cflags provided by pkg-config
364 * helper.c: add -ho option, which only displays the options not
365 the usage header. This can be used by filesystems which have
368 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
370 * Add source compatibility to 2.1 and 1.1 APIs. To select betwen
371 versions simply define FUSE_USE_VERSION to 22, 21 or 11 before
372 including the fuse header
374 * Add binary compatibility to 2.1 version of library with symbol
377 2004-12-03 Miklos Szeredi <miklos@szeredi.hu>
381 2004-12-01 Miklos Szeredi <miklos@szeredi.hu>
383 * kernel: clean up writing functions
385 * kernel: no allocation on write in direct_io mode
387 * move linux/fuse.h to fuse_kernel.h
389 2004-11-30 Miklos Szeredi <miklos@szeredi.hu>
391 * kernel: clean up reading functions
393 2004-11-29 Miklos Szeredi <miklos@szeredi.hu>
395 * kernel: make readpage() uninterruptible
397 * kernel: check readonly filesystem flag in fuse_permission
399 * lib: don't die if version file not found and new style device
402 * lib: add '-r' option, which is short for '-o ro'
404 * fusermount: simplify device opening
406 * kernel: when direct_io is turend on, copy data directly to
407 destination without itermediate buffer. More efficient and safer,
408 since no allocation is done.
410 * fusermount: fix warning if fuse module is not loaded
412 * kernel: use /dev/fuse on 2.4 too
414 2004-11-26 Miklos Szeredi <miklos@szeredi.hu>
416 * libfuse API change: open, read, write, flush, fsync and release
417 are passed a 'struct fuse_file_info' pointer containing the open
418 flags (open and release), and the file handle. Verion changed to
421 2004-11-23 Miklos Szeredi <miklos@szeredi.hu>
423 * More cleanups in the kernel
425 * The 10,229 charater device number has been assigned for FUSE
427 * Version file checking fix (reported by Christian Magnusson)
429 * fusermount: opening the fuse device now doesn't need /sys.
431 * Optimize reading by controlling the maximum readahead based on
432 the 'max_read' mount option
434 * fixes for UCLIBC (Christian Magnusson)
436 2004-11-19 Miklos Szeredi <miklos@szeredi.hu>
438 * Cleaned up kernel in preparation for merge into mainline:
440 * Use /sys/fs/fuse/version instead of /proc/fs/fuse/version
442 * Use real device (/dev/fuse) instead of /proc/fs/fuse/dev
444 * __user annotations for sparse
446 * allocate individual pages instead of kmalloc in fuse_readdir,
447 fuse_read and fuse_write.
449 * Fix NFS export in case "use_ino" mount option is given
451 * Make libfuse and fusermount compatible with future versions
453 * fusermount: properly add mount options to /etc/mtab
455 2004-11-15 Miklos Szeredi <miklos@szeredi.hu>
457 * fusermount: do not resolve last component of mountpoint on if it
458 is '.' or '..'. This new path resolvation is now done on mount as
459 well as unmount. This enables relative paths to work on unmount.
461 * fusermount: parse common mount options like "ro", "rw", etc...
463 * Allow module params to be changed through sysfs
465 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
469 2004-11-14 Miklos Szeredi <miklos@szeredi.hu>
471 * Fix bug in fuse_readpages() causing Oops in certain situations.
472 Bug found by Vincenzo Ciancia.
474 * Fix compilation with kernels versions > 2.6.9.
476 2004-11-11 Miklos Szeredi <miklos@szeredi.hu>
478 * Check kernel interface version in fusermount to prevent
479 strangeness in case of mismatch.
481 * No need to allocate fuse_conn until actual mount happens
483 * Fix potential race between umount and fuse_invalidate
485 * Check superblock of proc file in addition to inode number
487 * Fix race between request_send_noreply() and fuse_dev_release()
489 2004-11-10 Miklos Szeredi <miklos@szeredi.hu>
491 * Separate configure for the kernel directory
493 * Don't allow write to return more than 'count'
495 * Extend kernel interface for future use
497 2004-11-09 Miklos Szeredi <miklos@szeredi.hu>
499 * Fix 'makeconf.sh' to use autoreconf if available
501 2004-11-08 Miklos Szeredi <miklos@szeredi.hu>
503 * Add ino argument to 'fuse_dirfil_t'. NOTE: This breaks source
504 compatibility with earlier versions. To compile earier versions
505 just add '-DFUSE_DIRFIL_COMPAT' compile flag or fix the source.
506 Do not use the "use_ino" mount flag with filesystems compiled with
509 * Add pkg-config support. To compile a FUSE based filesystem you
510 can do "gcc -Wall `pkg-config --cflags --libs fuse` myfs.c -o myfs"
511 or similar. Note, that the PKG_CONFIG_PATH environment variable
512 usually needs to be set to "/usr/local/lib/pkgconfig".
514 * fuse.h is now installed in ${prefix}/include/fuse/
516 2004-11-02 Miklos Szeredi <miklos@szeredi.hu>
518 * Added "use_ino" mount option. This enables the filesystems to
519 set the st_ino field on files
521 2004-11-01 Miklos Szeredi <miklos@szeredi.hu>
523 * Fix compile problems with ancient (<=2.4.18) kernels (reported
526 * Add "allow_root" mount option. Patch by Yaroslav Rastrigin
528 * Clear the 'exited' flag when mail loop is finished
530 2004-10-28 Miklos Szeredi <miklos@szeredi.hu>
532 * Make xattr functions work under 2.6 (bug found by Vincenzo
535 2004-10-26 Miklos Szeredi <miklos@szeredi.hu>
537 * Reset request in fuse_flush() (bugreport by David Shaw)
539 2004-10-21 Miklos Szeredi <miklos@szeredi.hu>
541 * fuse_main() now does not exit on error, rather it returns an
544 * Exported __fuse_setup() and __fuse_teardown() functions, which
545 make it easier to implement a custom event loop.
547 * Use daemon() call to background the filesystem after mounting.
548 This function closes the standard input, output and error and
549 changes the current working directory to "/".
551 2004-10-14 Miklos Szeredi <miklos@szeredi.hu>
555 2004-10-09 Miklos Szeredi <miklos@szeredi.hu>
557 * Don't allow fuse_flush() to be interrupted (bug found by David
560 2004-09-27 Miklos Szeredi <miklos@szeredi.hu>
562 * Add PID to fuse_context. Patch by Steven James
564 * Change file handle type to 'unsigned long' in kernel interface
566 2004-09-22 Miklos Szeredi <miklos@szeredi.hu>
568 * A slight API change: fuse_get_context() doesn't need the "fuse"
569 pointer, but the returned context contains it instead. The
570 fuse_get() function is not needed anymore, so it's removed.
572 * Fix mounting and umounting FUSE filesystem under another FUSE
573 filesystem by non-root (bug spotted by Valient Gough)
575 2004-09-21 Miklos Szeredi <miklos@szeredi.hu>
577 * Fix deadlock in case of memory allocation failure. Patch by
580 2004-09-16 Miklos Szeredi <miklos@szeredi.hu>
582 * Check memory allocation failures in libfuse
584 2004-09-14 Miklos Szeredi <miklos@szeredi.hu>
586 * Check temporary file creation failure in do_getdir(). Bug
587 spotted by Terje Oseberg
589 2004-09-13 Miklos Szeredi <miklos@szeredi.hu>
591 * Allow "large_read" option for 2.6 kernels but warn of deprecation
593 * Make requests non-interruptible so race with FORGET is avoided.
594 This is only a temporary solution
596 * Support compiling FUSE kernel module on 2.4.x UML kernels
598 2004-09-09 Miklos Szeredi <miklos@szeredi.hu>
600 * Fix bug in case two FORGETs for the same node are executed in
601 the wrong order. Bug spotted and endured for months by Franco
602 Broi, and logfile for solution provided by Terje Oseberg
604 2004-09-01 Miklos Szeredi <miklos@szeredi.hu>
606 * Add -D_REENTRANT to the compile flags
608 * Add documentation of fuse internals by Terje Oseberg
610 2004-08-16 Miklos Szeredi <miklos@szeredi.hu>
612 * Change release method to be non-interruptible. Fixes bug
613 causing missing release() call when program which has opened files
614 is killed (reported by Franco Broi and David Shaw)
616 2004-07-29 Miklos Szeredi <miklos@szeredi.hu>
618 * Add fuse_invalidate() to library API
620 2004-07-26 Miklos Szeredi <miklos@szeredi.hu>
622 * Check permissions in setattr if 'default_permissions' flag is
623 set. Bug spotted by Damjan Lango
625 2004-07-24 Miklos Szeredi <miklos@szeredi.hu>
627 * 'large_read' mount option removed for 2.6 kernels, since the
628 default (dynamic read size) is better
630 * Extend kernel API with file handles. A file handle is returned
631 by open, and passed to read, write, flush, fsync and release.
632 This is currently only used for debug output in the library.
636 * Change the current directory to the mountpoint before checking
637 the permissions and mount filesystem on "."
639 * By default don't modprobe the fuse module for non-root. The old
640 behavior can be restored with the '--enable-auto-modprobe' flag of
643 * By default don't allow shared writable mappings for non-root.
644 The old behavior can be restored with the 'user_mmap=1' module
647 2004-07-23 Miklos Szeredi <miklos@szeredi.hu>
649 * Clean up mount option passing to fusermount and to fuse_new()
650 BEWARE: this changes the userspace API slightly, and the command
651 line usage of programs using fuse_main()
653 2004-07-20 Miklos Szeredi <miklos@szeredi.hu>
655 * Optimize reading under 2.6 kernels by issuing multiple page
656 asynchronous read requests
658 2004-07-18 Miklos Szeredi <miklos@szeredi.hu>
660 * Only use redirty_page_for_writepage() for kernels >= 2.6.6
662 2004-07-16 Miklos Szeredi <miklos@szeredi.hu>
664 * Separate directory entry and inode attribute validity timer
666 * New write semaphore to stop page writeback during truncate
668 * Fsync now waits for all writes to complete before sending the
671 * Optimization: if a page is completely written by
672 fuse_commit_write(), clear the dirty flag and set the uptodate
675 * Some memory cleanup at exit
677 2004-07-13 Miklos Szeredi <miklos@szeredi.hu>
679 * Add FUSE_HARD_REMOVE flag, and '-i' option to fuse main, which
680 disable the "hide if open" behavior of unlink/rename.
682 * If temporary buffer allocation fails in raw read, fall back to a
685 2004-07-12 Miklos Szeredi <miklos@szeredi.hu>
687 * Fix bug in do_open() in libfuse: open count was incremented
688 after the reply is sent so it could race with unlink/forget and
691 2004-07-08 Miklos Szeredi <miklos@szeredi.hu>
693 * When performing create or remove operation, refresh the parent's
694 attributes on next revalidate, as i_nlink (and maybe size/time)
697 * Use redirty_page_for_writepage() in fuse_writepage() for skipped
700 * Set set_page_dirty address space operation (2.6 only)
702 2004-07-06 Miklos Szeredi <miklos@szeredi.hu>
704 * Minor fix in read: print debug info even if read size is zero
706 2004-07-04 Miklos Szeredi <miklos@szeredi.hu>
708 * Fix race between truncate and writepage (fsx-linux now runs
711 2004-07-02 Miklos Szeredi <miklos@szeredi.hu>
713 * Fix kernel hang on mkfifo under 2.4 kernels (spotted and patch
716 * Added option for direct read/write (-r)
718 * Fix revalidate time setting for newly created inodes
720 * Remove uid==0 check for '-x' option in fusermount (kernel checks
723 * fuse_main() only installs handlers for signals (out of INT, HUP,
724 TERM, PIPE), for which no handler has yet been installed
726 * Add module option 'user_allow_other' which if set to non-zero
727 will allow non root user to specify the 'allow_other' mount option
728 ('-x' option of fusermount)
730 * Fix deadlock between page writeback completion and truncate
731 (bug found by Valient Gough with the fsx-linux utility)
733 2004-07-01 Miklos Szeredi <miklos@szeredi.hu>
735 * Change passing fuse include dir to 2.6 kernel make system more
736 robust (fixes compile problems seen on SuSE 9.1 with updated 2.6
739 2004-06-30 Miklos Szeredi <miklos@szeredi.hu>
741 * Acquire inode->i_sem before open and release methods to prevent
742 concurrent rename or unlink operations.
744 * Make __fuse_read_cmd() read only one command. This allows
745 multiplexing the fuse file descriptor with other event sources
746 using select() or poll() (patch by Jeff Harris)
748 * Export 'exited' flag with __fuse_exited() (patch by Jeff Harris)
750 2004-06-27 Miklos Szeredi <miklos@szeredi.hu>
752 * Fix file offset wrap around at 4G when doing large reads
754 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
756 * Fix memory leak in open (Valient Gough)
758 2004-06-24 Miklos Szeredi <miklos@szeredi.hu>
760 * Add "close after delete" support to libfuse (patch by Valient
763 * Cancel all worker threads before exit in multithreaded mode
765 2004-06-23 Miklos Szeredi <miklos@szeredi.hu>
769 * Don't send reply to RELEASE
771 * Work with newer libtool (1.5a)
773 * Check for st_atim member of struct stat
775 2004-06-22 Miklos Szeredi <miklos@szeredi.hu>
777 * No request allocation needed on inode and file release
779 2004-06-21 Miklos Szeredi <miklos@szeredi.hu>
781 * Fix possible inode leak in userspace in case of unfinished
782 lookup/mknod/mkdir/symlink/link operation.
784 2004-06-20 Miklos Szeredi <miklos@szeredi.hu>
786 * Fix some races and cleanups in fuse_read_super()
788 2004-06-19 Miklos Szeredi <miklos@szeredi.hu>
790 * Requests are allocated at open time
792 2004-06-03 Miklos Szeredi <miklos@szeredi.hu>
794 * Build shared library as well as static (using libtool)
796 * Change FUSE_MINOR_VERSION from 1 to 0. I know it's illegal but
797 there has not been a release with the previous minor number, and I
798 hope nobody is using it for anything.
800 * Change fuse_main(), so that default behavior is to go into
801 background if mount is successful. '-f' and '-d' options disable
802 backgrounding. This fixes the "Why does my FUSE daemon hang?"
805 * Cache ENOSYS (function not implemented) errors on *xattr, flush
808 * Don't call getdir method from open() only from first readdir().
809 Open is sometimes just used to store the current directory
812 2004-05-18 Miklos Szeredi <miklos@szeredi.hu>
816 2004-05-04 Miklos Szeredi <miklos@szeredi.hu>
818 * Extended attributes support for 2.4 (patch by Cody Pisto)
820 2004-04-20 Miklos Szeredi <miklos@szeredi.hu>
822 * Fixed parser with modversions (Mattias Wadman)
824 2004-04-19 Miklos Szeredi <miklos@szeredi.hu>
826 * Added mount option parser to 2.4 build
828 2004-04-13 Miklos Szeredi <miklos@szeredi.hu>
830 * Replaced binary mount data with text options
832 * Show FUSE specific mount options in /proc/mounts
834 * Check in fuse.h whether _FILE_OFFSET_BITS is set to 64
836 2004-04-09 Miklos Szeredi <miklos@szeredi.hu>
838 * Check some limits so userspace won't get too big requests
840 2004-04-05 Miklos Szeredi <miklos@szeredi.hu>
842 * Kill compile warning
844 * Upgraded user-mount patch for 2.6.5
846 2004-04-02 Miklos Szeredi <miklos@szeredi.hu>
848 * Add detection of user-mode-linux to configure
850 2004-03-31 Miklos Szeredi <miklos@szeredi.hu>
852 * fixed zero size case for getxattr and listxattr
854 2004-03-30 Miklos Szeredi <miklos@szeredi.hu>
856 * new fusermount flag '-z': lazy unmount, default is not lazy
858 * Extended attributes operations added (getxattr, setxattr,
859 listxattr, removexattr)
861 2004-03-25 Miklos Szeredi <miklos@szeredi.hu>
863 * If filesystem doesn't define a statfs operation, then an
864 all-zero default statfs is returned instead of ENOSYS
866 2004-03-24 Miklos Szeredi <miklos@szeredi.hu>
868 * Add FS_BINARY_MOUNTDATA filesystem flag for kernels > 2.6.4
870 2004-03-09 Miklos Szeredi <miklos@szeredi.hu>
872 * Fix for uClinux (Christian Magnusson)
874 2004-03-02 Miklos Szeredi <miklos@szeredi.hu>
876 * fuse_main() adds "-n progname" to the fusermount command line
878 * More kernel interface changes:
880 * Lookup/getattr return cache timeout values
882 2004-02-25 Miklos Szeredi <miklos@szeredi.hu>
884 * Clean up option parsing in fuse_main()
886 * Added fuse_get() function which returns the fuse object created
889 2004-02-20 Miklos Szeredi <miklos@szeredi.hu>
891 * removed old way of mounting (fusermount mountpoint program)
893 * more kernel interface changes:
895 * added nanosecond precision to file times
897 * removed interface version from mount data
899 * added /proc/fs/fuse/version which contains MAJOR.MINOR
901 2004-02-19 Miklos Szeredi <miklos@szeredi.hu>
903 * statfs library API changed to match other methods. Since this
904 is not backward compatible FUSE_MAJOR_VERSION is changed to 2
906 * kernel interface changes follow:
908 * statfs changed to 64 bits, added 'bavail' field
910 * add generation number to lookup result
912 * optimized mknod/mkdir/symlink/link (no separate lookup is
915 * rdev size increased to 32 bits for mknod
917 * kernel interface version changed to 3.1
919 2004-02-18 Miklos Szeredi <miklos@szeredi.hu>
921 * user-mount upgraded for 2.6.3 kernel
923 2004-02-17 Miklos Szeredi <miklos@szeredi.hu>
925 * Added user-mount.2.6.2-rc3.patch
927 * Add FS_SAFE flag to fuse filesystem
929 * fusermount should allow (un)mounting for non-root even if not
932 2004-02-12 Miklos Szeredi <miklos@szeredi.hu>
934 * Remove MS_PERMISSION mount flag (that means something else now)
936 2004-02-10 Miklos Szeredi <miklos@szeredi.hu>
938 * Added check for i_size_read/write functions to configure.in
939 (patch by Valient Gough)
941 2004-02-06 Miklos Szeredi <miklos@szeredi.hu>
943 * Fixed writing >= 2G files
945 * Check file size on open (with generic_file_open())
947 * Readpage calls flush_dcache_page() after storing data
949 * Use i_size_read/write for accessing inode->i_size
951 * Make loopback mount of a fuse file work
953 2004-02-04 Miklos Szeredi <miklos@szeredi.hu>
957 2004-01-29 Miklos Szeredi <miklos@szeredi.hu>
959 * Properly check if the inode exists in fuse_invalidate
961 2004-01-27 Miklos Szeredi <miklos@szeredi.hu>
963 * Added -q option for fusermount
965 * fuse_unmount() now uses -q option of fusermount, so no error is
966 printed if the cause of the program exit is that the filesystem
967 has already been unmounted
969 * Fix i_nlink correctness after rmdir/unlink
971 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
975 2004-01-26 Miklos Szeredi <miklos@szeredi.hu>
977 * Fix typo (thanks Marcos Dione)
979 * Compile fixes for 2.4 kernels
981 2004-01-23 Miklos Szeredi <miklos@szeredi.hu>
983 * Fix CONFIG_MODVERSIONS compile on 2.6
985 2004-01-22 Miklos Szeredi <miklos@szeredi.hu>
987 * Write all pending data before a RELEASE operation
989 * Suppress 'Bad file descriptor' warning on exit
991 * Replaced fusermount option '-d xxx' with '-n xxx' so it doesn't
992 get confused with '-d' of fuse_main() (sorry about this change)
994 * New fusermount option '-l' which enables big reads. Big reads
995 are now disabled by default.
997 * fuse_main() can accept fusermount arguments after a '--'
999 2004-01-19 Miklos Szeredi <miklos@szeredi.hu>
1001 * Support for exporting filesystem over NFS (see README.NFS)
1003 2004-01-14 Miklos Szeredi <miklos@szeredi.hu>
1005 * Support non-blocking writepage on 2.6. This makes FUSE behave
1006 much more nicely in low-memory situations
1008 * Fix 32-bit dev handling in getattr and mknod for 2.6 kernels.
1009 (Note: the mknod method does not yet use 32bit device number)
1011 2004-01-13 Miklos Szeredi <miklos@szeredi.hu>
1015 2004-01-07 Miklos Szeredi <miklos@szeredi.hu>
1019 2004-01-06 Miklos Szeredi <miklos@szeredi.hu>
1021 * Integrated 2.6 kernel support patch by Michael Grigoriev
1023 * Improvements and cleanups for 2.6 kernels
1025 2004-01-05 Miklos Szeredi <miklos@szeredi.hu>
1027 * Added -d option to fusermount
1029 2003-12-15 Miklos Szeredi <miklos@szeredi.hu>
1031 * Added major+minor version to library API, and minor version to
1034 2003-12-13 David McNab <david@rebirthing.co.nz>
1036 * Implemented fsync support in examples/example.py
1038 * Implemented 'fsync' and 'statfs' methods in python
1041 2003-12-12 Miklos Szeredi <miklos@szeredi.hu>
1043 * Make it compile on 2.4.19.
1045 * Add fsync operation (write file failed on xemacs & vi)
1047 2003-12-12 David McNab <david@rebirthing.co.nz>
1049 * Added distutils support to the python module, as per standard
1050 python development practice
1052 2003-12-11 Miklos Szeredi <miklos@szeredi.hu>
1054 * Add file locking for mount/unmount (based on patch by Valient
1057 2003-12-11 David McNab <david@rebirthing.co.nz>
1059 * Python filesystem - was broken with python2.3, now fixed:
1060 - changed PyTuple_* calls to PySequence_*, because os.lstat
1061 is no longer returning a pure tuple
1062 - changed PyInt_Check() calls to also call PyLong_Check,
1063 to cover for cases (eg os.lstat) where longs are returned
1064 - Added support for file 'release' handling, which IMO is
1065 essential since this signals to a FS that writes to a file
1066 are complete (and therefore the file can now be disposed of
1067 meaningfully at the python filesystem's discretion)
1068 - Added '__init__' handler to base Fuse class, which allows
1069 your Python class to know the mountpoint and mount args,
1070 as attributes myfs.mountpoint, myfs.optlist, myfs.optdict
1073 - added 'mount.fuse' script (in util/ dir), which is meant to be
1074 symlinked from /sbin, and which allows FUSE filesystems to
1075 be mounted with the 'mount' command, and listed in fstab;
1076 also, mount arguments get passed to your filesystem
1079 2003-11-04 Miklos Szeredi <miklos@szeredi.hu>
1081 * Fix kernel version detection (again). Bugreport by Peter Levart
1083 2003-11-03 Miklos Szeredi <miklos@szeredi.hu>
1085 * Applied read combining patch by Michael Grigoriev (tested by
1086 Valient Gough and Vincent Wagelaar)
1088 2003-10-22 Miklos Szeredi <miklos@szeredi.hu>
1090 * Mtab handling fix in fusermount by "Valient Gough" (SF patch
1093 2003-10-13 Miklos Szeredi <miklos@szeredi.hu>
1095 * Error code fixes in kernel module
1097 2003-10-04 Miklos Szeredi <miklos@szeredi.hu>
1099 * kernel version detection fix
1101 * fusermount now uses "lazy" umount option
1103 * fusermount can use modprobe with module-init-tools
1105 2003-09-08 Miklos Szeredi <miklos@szeredi.hu>
1107 * Integrated caching patch by Michael Grigoriev
1109 * Added "Filesystems" file with descriptions of projects using
1112 * Added patch by Michael Grigoriev to allow compliation of FUSE
1113 kernel module for 2.6 kernels
1115 2003-06-02 Miklos Szeredi <miklos@szeredi.hu>
1117 * And another spec-file fix by Achim Settelmeier
1119 2003-05-26 Miklos Szeredi <miklos@szeredi.hu>
1121 * Spec-file fix by Achim Settelmeier
1123 2003-03-10 Miklos Szeredi <miklos@szeredi.hu>
1125 * Fix umount oops (found by Samuli Kärkkäinen)
1127 2003-03-05 Miklos Szeredi <miklos@szeredi.hu>
1129 * Merge of fuse_redhat.spec and fuse.spec by Achim Settelmeier
1131 2003-03-04 Miklos Szeredi <miklos@szeredi.hu>
1133 * Updated fuse.spec file (Achim Settelmeier)
1135 2003-02-19 Miklos Szeredi <miklos@szeredi.hu>
1137 * Version 1.0 released
1139 2003-02-12 Miklos Szeredi <miklos@szeredi.hu>
1141 * SuSE compilation fix by Juan-Mariano de Goyeneche
1143 2002-12-10 Miklos Szeredi <miklos@szeredi.hu>
1145 * The release() VFS call is now exported to the FUSE interface
1147 2002-12-05 Miklos Szeredi <miklos@szeredi.hu>
1149 * 64 bit file offset fixes in the fuse kernel module
1151 * Added function 'fuse_exit()' which can be used to exit the main
1154 2002-12-03 Miklos Szeredi <miklos@szeredi.hu>
1156 * Added _FILE_OFFSET_BITS=64 define to fuse.h. Note, that this is
1157 an incompatible interface change.
1159 2002-10-28 Miklos Szeredi <miklos@szeredi.hu>
1161 * Portablility fix (bug reported by C. Chris Erway)
1163 2002-10-25 Miklos Szeredi <miklos@szeredi.hu>
1165 * Use Mark Glines' fd passing method for default operation instead
1168 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
1170 * fix "Stale NFS file handle" bug caused by changes in 2.4.19
1172 2002-10-22 Miklos Szeredi <miklos@szeredi.hu>
1174 * fix incompatiblity with Red Hat kernels, with help from Nathan
1177 2002-04-18 Mark Glines <mark@glines.org>
1179 * added an alternative to fuse_mount(), called
1180 fuse_mount_ioslave(), which does not need to reexec the
1182 * added a small helper util needed by fuse_mount_ioslave().
1184 2002-03-16 Mark Glines <mark@glines.org>
1186 * use struct fuse_statfs everywhere possible to avoid problems
1187 with the headerfiles changing struct statfs member sizes
1189 2002-03-01 Miklos Szeredi <miklos@szeredi.hu>
1191 * Another RPM spec file for RedHat >= 7 by Ian Pilcher
1193 2002-01-14 Miklos Szeredi <miklos@szeredi.hu>
1195 * RPM support by Achim Settelmeier
1197 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
1199 * Version 0.95 released
1201 2002-01-09 Miklos Szeredi <miklos@szeredi.hu>
1203 * Revaidate all path components not just the last, this means a
1204 very small performance penalty for being more up-to-date.
1206 2002-01-08 Miklos Szeredi <miklos@szeredi.hu>
1208 * Update and fix python interface
1210 2002-01-07 Mark Glines <mark@glines.org>
1212 * Added statfs() support to kernel, lib, examples, and perl!
1214 2001-12-26 Miklos Szeredi <miklos@szeredi.hu>
1216 * Better cross compilation support
1218 * Ported to Compaq IPAQ
1220 2001-12-20 Miklos Szeredi <miklos@szeredi.hu>
1222 * Added function fuse_get_context() to library API (inspired by
1223 patch from Matt Ryan)
1225 * Added flags to fusermount and to kernel interface to control
1228 * Integrated fuse_set_operations() into fuse_new()
1230 2001-12-08 Miklos Szeredi <miklos@szeredi.hu>
1232 * Applied header protection + extern "C" patch by Roland
1235 2001-12-02 Miklos Szeredi <miklos@szeredi.hu>
1237 * Added perl bindings by Mark Glines
1239 2001-11-21 Miklos Szeredi <miklos@szeredi.hu>
1241 * Cleaned up way of mounting simple filesystems.
1243 * fuse_main() helper function added
1245 2001-11-18 Miklos Szeredi <miklos@szeredi.hu>
1247 * Optimized read/write operations, so that minimal copying of data
1250 2001-11-14 Miklos Szeredi <miklos@szeredi.hu>
1252 * Python bindings by Jeff Epler added
1254 2001-11-13 Miklos Szeredi <miklos@szeredi.hu>
1256 * Fixed vfsmount reference leak in fuse_follow_link
1258 * FS blocksize is set to PAGE_CACHE_SIZE, blksize attribute from
1259 userspace is ignored
1261 2001-11-09 Miklos Szeredi <miklos@szeredi.hu>