Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-30 | fuse-2.4 examples added. | Stefan Siegl | |
2006-01-30 | new email address | Stefan Siegl | |
2005-12-10 | tell about valid mount options, when printing usage information | Stefan Siegl | |
2005-12-10 | use common Unix permissions-checking only, if default_permissions mount ↵ | Stefan Siegl | |
option is provided (this is to immitate libfuse/Linux's behaviour) | |||
2005-12-09 | don't call chown to make sure, files created with the fusexmp-translator ↵ | Stefan Siegl | |
have the creator's uid, not the translator's one. Fuse/Linux doesn't care for this, so we don't either to be consistent. | |||
2005-12-09 | don't expect opendir and releasedir operations to be available, if readdir ↵ | Stefan Siegl | |
is. this is for example not true for example-23/hello.c | |||
2005-12-09 | set O_RDONLY bit, in case O_EXEC is set, else we won't be able to execute ↵ | Stefan Siegl | |
binaries from the fuse'd filesystem | |||
2005-12-09 | call open/flush/release operations when reading and writing (new api) | Stefan Siegl | |
2005-12-09 | added support for new fuse api's opendir/readdir/releasedir operations | Stefan Siegl | |
2005-12-06 | netfs_startup() check bootstrap == MACH_PORT_NULL. | Thomas Schwinge | |
2005-12-04 | test_allow_root_or_other: new function, check whether or not to allow filesystem | Stefan Siegl | |
access according to the allow_root and allow_other flags netfs_validate_stat: call new test_allow_root_or_other function netfs_attempt_statfs, netfs_attempt_syncfs: likewise. netfs_attempt_readlink: check access permission (including test_allow_root_or_other call) before checking whether the requested action is supported at all netfs_attempt_create_file, netfs_attempt_chown, netfs_attempt_mkdir, netfs_attempt_chmod, netfs_attempt_mkfile, netfs_attempt_sync, netfs_attempt_unlink, netfs_attempt_set_size, netfs_attempt_mkdev, netfs_attempt_link, netfs_attempt_rmdir, netfs_attempt_mksymlink, netfs_attempt_rename, netfs_attempt_write, netfs_attempt_utimes, netfs_attempt_read, netfs_get_dirents: likewise. | |||
2005-12-03 | care for uid,gid,umask mount options in netfs_validate_stats | Stefan Siegl | |
2005-12-03 | mount option parser added. | Stefan Siegl | |
2005-12-03 | Updated. | Stefan Siegl | |
2005-12-03 | Command line option to disable multi-threaded operation (-s) added like the ↵ | Stefan Siegl | |
Linux version has. Furthermore default multi-threaded operation again. | |||
2005-12-03 | added libfuse_params configuration struct (replacing existing fuse_use_ino ↵ | Stefan Siegl | |
by libfuse_params.use_ino) | |||
2005-12-03 | return the number of directory entries as a positive integer from ↵ | Stefan Siegl | |
netfs_get_dirents | |||
2005-12-03 | ignore some more files | Stefan Siegl | |
2005-12-03 | Remove superfluous semicolons. | Thomas Schwinge | |
2005-12-02 | ... but too many words are just noise. | Thomas Schwinge | |
2005-12-02 | Actually use FUNC_EPILOGUE_FMT() in netfs_get_dirents(). | Thomas Schwinge | |
2005-12-02 | Remove no longer used variable. | Thomas Schwinge | |
2005-12-02 | Use getattr() instead of getdir() in netfs_attempt_lookup(). | Thomas Schwinge | |
2005-12-02 | Words are more expressive than numbers... | Thomas Schwinge | |
2005-12-02 | Add the examples from fuse_2_3_0. | Thomas Schwinge | |
2005-12-02 | Bump the API up to fuse_2_3_0. | Thomas Schwinge | |
2005-12-02 | `TODO' updated. | Thomas Schwinge | |
2005-12-02 | `TODO' added. | Thomas Schwinge | |
2005-12-02 | Needed patch for fusexmp.c. | Thomas Schwinge | |
2005-12-01 | Make example*/Makefile.am find <hurd.h>. | Thomas Schwinge | |
2005-11-17 | Removed. Use `autoreconf -i'. | Thomas Schwinge | |
2005-11-15 | Install the public header files. | Thomas Schwinge | |
2005-11-15 | Copy FUSE's `fuse.pc.in' and handle it correctly. | Thomas Schwinge | |
2005-11-15 | New name and new location. | Thomas Schwinge | |
2005-04-08 | Implemented fuse_new, fuse_mount and fuse_loop functions (including | Stefan Siegl | |
compatibility ones). fuse_main adjusted accordingly. | |||
2005-04-06 | disabling malloc debugging | Stefan Siegl | |
2005-04-02 | touching copyright notice | Stefan Siegl | |
2005-04-02 | wrong path specified. | Stefan Siegl | |
2005-04-02 | first shot. | Stefan Siegl | |
2005-04-02 | In fuse_sync_filesystem emit debug messages if a netnode has a node | Stefan Siegl | |
attached to it. | |||
2005-04-02 | * Dropped fuse_bump_helper in favour of simplicity, however now being | Stefan Siegl | |
able to mmap memory ourselves. Thus we trust the buffer passed on to netfs_get_dirents is large enough to be performant. However the 2k we get by default seem reasonable. * Free fuse_dirh_t in netfs_attempt_lookup in any case. * Merged fuse_dirent_helper's back to one function instead of code duplication. | |||
2005-04-02 | *** empty log message *** | Stefan Siegl | |
2005-04-02 | trace malloc/free/strdup calls | Stefan Siegl | |
2005-03-27 | added getopt support. | Stefan Siegl | |
2005-03-27 | * don't FUSE_OP_CALL(open) to check whether we've got sufficient | Stefan Siegl | |
permissions to open * call fuse_dirent_helper_compat when using the new api but without fuse_use_ino set | |||
2005-03-27 | emit warning message if program not started as a translator. | Stefan Siegl | |
2005-03-27 | added -DFUSE_USE_VERSIONS=22 to CFLAGS. | Stefan Siegl | |
2005-03-27 | upgrade to fuse-2.2.1 api. | Stefan Siegl | |
2005-03-27 | create example-22/Makefile | Stefan Siegl | |
2005-03-27 | use creat() to create files in xmp_mknod. | Stefan Siegl | |