3 @@ -77,6 +77,7 @@ dep_mbool ' JFS debugging' CONFIG_JFS_D
4 dep_mbool ' JFS statistics' CONFIG_JFS_STATISTICS $CONFIG_JFS_FS
6 tristate 'Minix fs support' CONFIG_MINIX_FS
7 +tristate 'mini_fo filesystem overlay' CONFIG_MINI_FO
9 tristate 'FreeVxFS file system support (VERITAS VxFS(TM) compatible)' CONFIG_VXFS_FS
10 tristate 'NTFS file system support (read only)' CONFIG_NTFS_FS
13 @@ -31,6 +31,7 @@ subdir-$(CONFIG_RAMFS) += ramfs
14 subdir-$(CONFIG_CODA_FS) += coda
15 subdir-$(CONFIG_INTERMEZZO_FS) += intermezzo
16 subdir-$(CONFIG_MINIX_FS) += minix
17 +subdir-$(CONFIG_MINI_FO) += mini_fo
18 subdir-$(CONFIG_FAT_FS) += fat
19 subdir-$(CONFIG_UMSDOS_FS) += umsdos
20 subdir-$(CONFIG_MSDOS_FS) += msdos
22 +++ b/fs/mini_fo/aux.c
25 + * Copyright (c) 1997-2003 Erez Zadok
26 + * Copyright (c) 2001-2003 Stony Brook University
28 + * For specific licensing information, see the COPYING file distributed with
29 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
31 + * This Copyright notice must be kept intact and distributed with all
32 + * fistgen sources INCLUDING sources generated by fistgen.
35 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
37 + * This program is free software; you can redistribute it and/or
38 + * modify it under the terms of the GNU General Public License
39 + * as published by the Free Software Foundation; either version
40 + * 2 of the License, or (at your option) any later version.
53 +/* check if file exists in storage */
54 +int exists_in_storage(dentry_t *dentry)
56 + check_mini_fo_dentry(dentry);
57 + if(dtost(dentry) == MODIFIED || dtost(dentry) == CREATED || dtost(dentry) == DEL_REWRITTEN)
62 +/* check if dentry is in an existing state */
63 +int is_mini_fo_existant(dentry_t *dentry)
65 + check_mini_fo_dentry(dentry);
67 + if(dtost(dentry) == DELETED || dtost(dentry) == NON_EXISTANT)
74 + * This function will create a negative storage dentry for
75 + * dentry, what is required for many create like options.
76 + * It will create the storage structure if necessary.
78 +int get_neg_sto_dentry(dentry_t *dentry)
82 + const unsigned char *name;
86 + !(dtost(dentry) == UNMODIFIED ||
87 + dtost(dentry) == NON_EXISTANT ||
88 + dtost(dentry) == DELETED)) {
89 + printk(KERN_CRIT "mini_fo: get_neg_sto_dentry: invalid dentry passed.\n");
93 + /* Have we got a neg. dentry already? */
94 + if(dtohd2(dentry)) {
98 + if(dtost(dentry->d_parent) == UNMODIFIED) {
99 + /* build sto struct */
100 + err = build_sto_structure(dentry->d_parent->d_parent, dentry->d_parent);
102 + dtost(dentry->d_parent) != MODIFIED) {
103 + printk(KERN_CRIT "mini_fo: get_neg_sto_dentry: ERROR building sto structure.\n");
109 + len = dentry->d_name.len;
110 + name = dentry->d_name.name;
113 + lookup_one_len(name, dtohd2(dentry->d_parent), len);
119 +int check_mini_fo_dentry(dentry_t *dentry)
121 + ASSERT(dentry != NULL);
122 + ASSERT(dtopd(dentry) != NULL);
123 + ASSERT((dtohd(dentry) != NULL) || (dtohd2(dentry) != NULL));
125 +/* if(dtost(dentry) == MODIFIED) { */
126 +/* ASSERT(dentry->d_inode != NULL); */
127 +/* ASSERT(dtohd(dentry) != NULL); */
128 +/* ASSERT(dtohd(dentry)->d_inode != NULL); */
129 +/* ASSERT(dtohd2(dentry) != NULL); */
130 +/* ASSERT(dtohd2(dentry)->d_inode != NULL); */
132 +/* else if(dtost(dentry) == UNMODIFIED) { */
133 +/* ASSERT(dentry->d_inode != NULL); */
139 +int check_mini_fo_file(file_t *file)
141 + ASSERT(file != NULL);
142 + ASSERT(ftopd(file) != NULL);
143 + ASSERT(file->f_dentry != NULL);
145 + /* violent checking, check depending of state and type
146 + * if(S_ISDIR(file->f_dentry->d_inode->i_mode)) {}
148 + ASSERT((ftohf(file) != NULL) || (ftohf2(file) != NULL));
152 +int check_mini_fo_inode(inode_t *inode)
154 + ASSERT(inode != NULL);
155 + ASSERT(itopd(inode) != NULL);
156 + ASSERT((itohi(inode) != NULL) || (itohi2(inode) != NULL));
161 + * will walk a base path as provided by get_mini_fo_bpath and return
162 + * the (hopefully ;-) ) positive dentry of the renamed base dir.
164 + * This does some work of path_init.
166 +dentry_t *bpath_walk(super_block_t *sb, char *bpath)
169 + struct nameidata nd;
172 + if(!bpath || bpath[0] != '/') {
173 + printk(KERN_CRIT "mini_fo: bpath_walk: Invalid string.\n");
176 + if(!sb || !stopd(sb)) {
177 + printk(KERN_CRIT "mini_fo: bpath_walk: Invalid sb.\n");
181 + /* setup nd as path_init does */
182 + nd.last_type = LAST_ROOT; /* if there are only slashes... */
183 + nd.flags = LOOKUP_FOLLOW;
184 + /* fix this: how do I reach this lock?
185 + * read_lock(¤t->fs->lock); */
186 + nd.mnt = mntget(stopd(sb)->hidden_mnt);
187 + nd.dentry = dget(stopd(sb)->base_dir_dentry);
188 + /* read_unlock(¤t->fs->lock); */
190 + err = path_walk(bpath+1, &nd);
193 + if (err || !nd.dentry || !nd.dentry->d_inode) {
194 + printk(KERN_CRIT "mini_fo: bpath_walk: path_walk failed.\n");
201 +/* returns the full path of the basefile incl. its name */
202 +int get_mini_fo_bpath(dentry_t *dentry, char **bpath, int *bpath_len)
206 + dentry_t *sky_walker;
208 + if(!dentry || !dtohd(dentry)) {
209 + printk(KERN_CRIT "mini_fo: get_mini_fo_bpath: invalid dentry passed.\n");
212 + sky_walker = dtohd(dentry);
215 + len += sky_walker->d_name.len + 1 ; /* 1 for '/' */
216 + sky_walker = sky_walker->d_parent;
217 + } while(sky_walker != stopd(dentry->d_inode->i_sb)->base_dir_dentry);
219 + /* 1 to oil the loop */
220 + *bpath = (char*) kmalloc(len + 1, GFP_KERNEL);
222 + printk(KERN_CRIT "mini_fo: get_mini_fo_bpath: out of mem.\n");
225 + buf_walker = *bpath+len; /* put it on last char */
226 + *buf_walker = '\n';
227 + sky_walker = dtohd(dentry);
230 + buf_walker -= sky_walker->d_name.len;
231 + strncpy(buf_walker,
232 + sky_walker->d_name.name,
233 + sky_walker->d_name.len);
234 + *(--buf_walker) = '/';
235 + sky_walker = sky_walker->d_parent;
236 + } while(sky_walker != stopd(dentry->d_inode->i_sb)->base_dir_dentry);
238 + /* bpath_len doesn't count newline! */
243 +int mini_fo_cp_cont(dentry_t *tgt_dentry, struct vfsmount *tgt_mnt,
244 + dentry_t *src_dentry, struct vfsmount *src_mnt)
247 + mm_segment_t old_fs;
250 + int bytes, len, tmp, err;
253 + if(!(tgt_dentry->d_inode && src_dentry->d_inode)) {
254 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR, neg. dentry passed.\n");
264 + /* open file write only */
265 + tgt_file = dentry_open(tgt_dentry, tgt_mnt, 0x1);
266 + if(!tgt_file || IS_ERR(tgt_file)) {
267 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR opening target file.\n");
268 + err = PTR_ERR(tgt_file);
272 + /* open file read only */
273 + src_file = dentry_open(src_dentry, src_mnt, 0x0);
274 + if(!src_file || IS_ERR(src_file)) {
275 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR opening source file.\n");
276 + err = PTR_ERR(src_file);
278 + /* close target file */
283 + /* check if the filesystem(s) support read respective write */
284 + if(!src_file->f_op->read || !tgt_file->f_op->write) {
285 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR, no fs read or write support.\n");
290 + /* allocate a page for transfering the data */
291 + buf = (void *) __get_free_page(GFP_KERNEL);
293 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR, out of kernel mem.\n");
297 + tgt_file->f_pos = 0;
298 + src_file->f_pos = 0;
303 + /* Doing this I assume that a read operation will return a full
304 + * buffer while there is still data to read, and a less than
305 + * full buffer when all data has been read.
307 + bytes = len = PAGE_SIZE;
308 + while(bytes == len) {
309 + bytes = src_file->f_op->read(src_file, buf, len,
311 + tmp = tgt_file->f_op->write(tgt_file, buf, bytes,
314 + printk(KERN_CRIT "mini_fo_cp_cont: ERROR writing.\n");
315 + goto out_close_unset;
319 + free_page((unsigned long) buf);
326 + free_page((unsigned long) buf);
337 + /* mk: not sure if this need to be done */
346 + * ndl (no-duplicate list) stuff
347 + * This is used in mini_fo_readdir, to save the storage directory contents
348 + * and later when reading base, match them against the list in order
349 + * to avoid duplicates.
352 +/* add a file specified by name and len to the ndl
353 + * Return values: 0 on success, <0 on failure.
355 +int ndl_add_entry(struct readdir_data *rd, const char *name, int len)
357 + struct ndl_entry *tmp_entry;
359 + tmp_entry = (struct ndl_entry *)
360 + kmalloc(sizeof(struct ndl_entry), GFP_KERNEL);
362 + printk(KERN_CRIT "mini_fo: ndl_add_entry: out of mem.\n");
365 + tmp_entry->name = (char*) kmalloc(len, GFP_KERNEL);
366 + if(!tmp_entry->name) {
367 + printk(KERN_CRIT "mini_fo: ndl_add_entry: out of mem.\n");
370 + strncpy(tmp_entry->name, name, len);
371 + tmp_entry->len = len;
373 + list_add(&tmp_entry->list, &rd->ndl_list);
378 +/* delete all list entries and free memory */
379 +void ndl_put_list(struct readdir_data *rd)
381 + struct list_head *tmp;
382 + struct ndl_entry *tmp_entry;
384 + if(rd->ndl_size <= 0)
386 + while(!list_empty(&rd->ndl_list)) {
387 + tmp = rd->ndl_list.next;
389 + tmp_entry = list_entry(tmp, struct ndl_entry, list);
390 + kfree(tmp_entry->name);
396 +/* Check if a file specified by name and len is in the ndl
397 + * Return value: 0 if not in list, 1 if file is found in ndl.
399 +int ndl_check_entry(struct readdir_data *rd, const char *name, int len)
401 + struct list_head *tmp;
402 + struct ndl_entry *tmp_entry;
404 + if(rd->ndl_size <= 0)
407 + list_for_each(tmp, &rd->ndl_list) {
408 + tmp_entry = list_entry(tmp, struct ndl_entry, list);
409 + if(tmp_entry->len != len)
411 + if(!strncmp(tmp_entry->name, name, len))
418 + * Recursive function to create corresponding directorys in the storage fs.
419 + * The function will build the storage directorys up to dentry.
421 +int build_sto_structure(dentry_t *dir, dentry_t *dentry)
424 + dentry_t *hidden_sto_dentry;
425 + dentry_t *hidden_sto_dir_dentry;
427 + if(dentry->d_parent != dir) {
428 + printk(KERN_CRIT "mini_fo: build_sto_structure: invalid parameter or meta data corruption [1].\n");
432 + if(dtost(dir) != MODIFIED) {
433 + err = build_sto_structure(dir->d_parent, dentry->d_parent);
438 + /* ok, coming back again. */
439 + check_mini_fo_dentry(dentry);
440 + hidden_sto_dentry = dtohd2(dentry);
442 + if(!hidden_sto_dentry) {
444 + * This is the case after creating the first
445 + * hidden_sto_dentry.
446 + * After one negative storage_dentry, all pointers to
447 + * hidden_storage dentries are set to NULL. We need to
448 + * create the negative dentry before we create the storage
452 + const unsigned char *name;
453 + len = dtohd(dentry)->d_name.len;
454 + name = dtohd(dentry)->d_name.name;
455 + hidden_sto_dentry = lookup_one_len(name, dtohd2(dir), len);
456 + dtohd2(dentry) = hidden_sto_dentry;
459 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry); */
460 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
461 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
462 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
464 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
467 + if(dtohd2(dir) != hidden_sto_dir_dentry) {
468 + printk(KERN_CRIT "mini_fo: build_sto_structure: invalid parameter or meta data corruption [2].\n");
472 + /* check for errors in lock_parent */
473 + err = PTR_ERR(hidden_sto_dir_dentry);
474 + if(IS_ERR(hidden_sto_dir_dentry)) {
475 + printk(KERN_CRIT "mini_fo: build_sto_structure: lock_parent failed.\n");
479 + err = vfs_mkdir(hidden_sto_dir_dentry->d_inode,
481 + dir->d_inode->i_mode);
484 + printk(KERN_CRIT "mini_fo: build_sto_structure: failed to create storage dir [1].\n");
485 + /* was: unlock_dir(dir); */
486 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
487 + mutex_unlock(&dir->d_inode->i_mutex);
489 + up(&dir->d_inode->i_sem);
495 + /* everything ok! */
496 + if(!dtohd2(dentry)->d_inode) {
497 + printk(KERN_CRIT "mini_fo: build_sto_structure: failed to create storage dir [2].\n");
498 + /* was: unlock_dir(dir); */
499 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
500 + mutex_unlock(&dir->d_inode->i_mutex);
502 + up(&dir->d_inode->i_sem);
508 + /* interpose the new inode and set new state */
509 + itohi2(dentry->d_inode) = igrab(dtohd2(dentry)->d_inode);
510 + dtopd(dentry)->state = MODIFIED;
512 + /* initalize the wol list */
513 + itopd(dentry->d_inode)->deleted_list_size = -1;
514 + itopd(dentry->d_inode)->renamed_list_size = -1;
515 + meta_build_lists(dentry);
517 + fist_copy_attr_all(dentry->d_inode, itohi2(dentry->d_inode));
518 + fist_copy_attr_timesizes(dir->d_inode,
519 + hidden_sto_dir_dentry->d_inode);
520 + dir->d_inode->i_nlink++;
521 + /* was: unlock_dir(hidden_sto_dir_dentry); */
522 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
523 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
525 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
527 + dput(hidden_sto_dir_dentry);
535 + * Read "len" bytes from "filename" into "buf".
536 + * "buf" is in kernel space.
539 +mini_fo_read_file(const char *filename, void *buf, int len)
542 + mm_segment_t oldfs;
544 + /* Chroot? Maybe NULL isn't right here */
545 + filp = filp_open(filename, O_RDONLY, 0);
546 + if (!filp || IS_ERR(filp)) {
547 + printk("mini_fo_read_file err %d\n", (int) PTR_ERR(filp));
548 + return -1; /* or do something else */
551 + if (!filp->f_op->read)
552 + return -2; /* file(system) doesn't allow reads */
554 + /* now read len bytes from offset 0 */
555 + filp->f_pos = 0; /* start offset */
558 + bytes = filp->f_op->read(filp, buf, len, &filp->f_pos);
561 + /* close the file */
570 + * Write "len" bytes from "buf" to "filename"
571 + * "buf" is in kernel space.
574 +mini_fo_write_file(const char *filename, void *buf, int len)
577 + mm_segment_t oldfs;
579 + /* Chroot? Maybe NULL isn't right here */
580 + filp = filp_open(filename, O_RDWR|O_CREAT, 0640);
581 + if (!filp || IS_ERR(filp)) {
582 + printk("mini_fo_write_file err %d\n", (int) PTR_ERR(filp));
583 + return -1; /* or do something else */
586 + if (!filp->f_op->write)
587 + return -2; /* file(system) doesn't allow writes */
589 + /* now write len bytes from offset 0 */
590 + filp->f_pos = 0; /* start offset */
593 + bytes = filp->f_op->write(filp, buf, len, &filp->f_pos);
596 + /* close the file */
605 +++ b/fs/mini_fo/ChangeLog
607 +2006-01-24 Markus Klotzbuecher <mk@mary.denx.de>
609 + * Add tons of ugly ifdefs to Ed L. Cashin's mutex patch to
610 + retain backwards compatibility.
612 +2006-01-24 Ed L. Cashin <ecashin@coraid.com>
614 + * Support for the new mutex infrastructure
615 + (7892f2f48d165a34b0b8130c8a195dfd807b8cb6)
617 +2005-10-15 Markus Klotzbuecher <mk@localhost.localdomain>
619 + * Bugfix for a serious memory leak in mini_fo_follow_link.
621 +2005-09-21 Markus Klotzbuecher <mk@mary>
623 + * new release 0.6.1
625 + * fix of a compiler warning due to changes in 2.6.13
627 +2005-09-21 Klaus Wenninger <klaus.wenninger@siemens.com>
629 + * file.c: readdir: fix for a bug that caused directory entries
630 + to show up twice when using storage filesystems such as
633 +2005-06-30 Eric Lammerts <eric@lammerts.org>
635 + * fix for an oops when overwriting a binary thats beeing
638 +2005-06-09 <mk@mary>
640 + * Renamed overlay to mini_fo-overlay.
642 + * Added mini_fo-merge script to allow merging of storage and base
643 + after making modifications.
645 +2005-05-22 root <mk@mary>
647 + * Added overlay script that allows to easily mount mini_fo ontop
648 + of a given base directory
650 +2005-05-10 <mk@mary>
652 + * inode.c: xattr functions return -EOPNOSUPP instead of
653 + -ENOSUPP, what confuses "ls -l"
655 + * Changed license from LGPL to GPL.
657 +2005-05-08 root <mk@mary>
659 + * Makefile: clean it up and added make install and make
662 +2005-05-06 <mk@mary>
664 + * merged devel branch back to main. [v0-6-0-pre3]
666 + * removed unused files print.c and fist_ioctl. [devel-0-0-18]
668 + * ioctl: removed fist_ioctl stuff, that is not needed for
671 +2005-05-03 <mk@mary>
673 + * file.c: simplified mini_fo_open and mini_fo_setattr using
674 + new state changing functions. [devel-0-0-17]
676 + * inode.c: Fixed getattr state bug (see below) in 2.4 function
677 + mini_fo_inode revalidate.
679 + * inode.c: found an other bug in mini_fo_getattr. States are not
680 + reliable in this function, as a file can be opened, unlinked and
681 + the getattr function called. This results in a deleted dentry
682 + with an inode. Fix is to ignore states and simply use the inode
685 +2005-04-29 <mk@mary>
687 + * file.c: Bugfix and cleanup in fasync and fsync. [devel-0-0-16]
689 + * file.c: do not use mini_fo_lock so the generic version is
692 + * inode.c: getattr, never call getattr on lower files, as this
693 + will cause the inum to change.
695 + * inode.c: rename_reg_file renamed to rename_nondir, as it
696 + doesn't matter as long it't not a dir. Removed all
697 + rename_dev_file etc.
699 + * tagged as devel-0-0-15
701 + * inode.c: added support for chosing support for extended
702 + attrs at compile time by XATTR define in mini_fo.h .
704 + * inode.c: fixed mini_fo_getattr to use mini_fo inode and not
705 + lower again, what avoids inode number changes that confused
706 + rm again. This is the proper solution.
708 +2005-04-24 <mk@mary>
710 + * all files: updated Copyright notive to 2005. [devel-0-0-14]
712 + * inode.c: fixed mini_fo_getattr to not change the inode
713 + number, even if lower files change.
715 + * super.c: fixed a bug that caused deleted base file to show
716 + up suddenly after some time, or after creating a special
717 + file. The problem was that after some time or after special
718 + file creating sync_sb_inodes is called by the vfs, that
719 + called our mini_fo_put_inode. There was (wrongly) called
720 + __meta_put_lists, that nuked the lists, although the inode
721 + was going to continue its life. Moving __meta_put_lists to
722 + mini_fo_clear_inode, where an inode is really destroyed,
723 + solved the problem.
726 +2005-04-23 <mk@mary>
728 + * state.c, aux.c: more cleaning up and
729 + simplifications. [devel-0-0-13]
731 + * inode.c: implemented mini_fo_getattr, that was required for
732 + 2.6 because inode_revalidate has been remove there, and the
733 + old "du" bug returned.
736 +2005-04-20 <mk@mary>
738 + * aux.c: get_neg_sto_dentry(): allow to be called for dentries
739 + in state UNMODIFIED, NON_EXISTANT _and_ DELETED.
741 +2005-04-19 <mk@mary>
743 + * Fixed a bug under 2.6 that caused files deleted via mini_fo
744 + not to be deleted properly and therefore the fs filled up
745 + untill no memory was left. [devel-0-0-12]
747 + * Added basic hard link support. This means that creating
748 + hardlinks will work, but existing ones will be treated as
749 + individual files. [devel-0-0-11]
751 +2005-04-17 <mk@mary>
755 +2005-04-13 root <mk@mary>
757 + * Added file state.c for the state transition
758 + functions. Doesn't work very well yet, though...
760 +2005-04-12 <mk@mary>
762 + * Porting to 2.6 started, which is easier than expected, also
763 + due to Olivier previous work.
765 +2005-04-08 <mk@mary>
767 + * Fixed the bug that caused du to return invalid sizes of
768 + directory trees. The problem was that
769 + mini_fo_inode_revalidate didn't always copy the attributes
770 + from the base inode properly.
772 +2005-04-01 Markus Klotzbuecher <mk@chasey>
774 + * Merged devel branch back to main trunk and updated the
775 + RELEASE notes. This will be 0-6-0-pre1.
777 +2005-03-31 Markus Klotzbuecher <mk@chasey>
779 + * Fixed some bugs in rename_reg_file, that only showed up in
780 + the kernel compile test. Kernel compiles cleanly ontop of
781 + mini_fo, now also make mrproper etc. work. Seems pretty stable.
783 +2005-03-28 Markus Klotzbuecher <mk@chasey>
785 + * Many, many directory renaming bugfixes and a lot of other
786 + cleanup. Dir renaming seems to work relatively stable.
788 +2005-03-22 Markus Klotzbuecher <mk@chasey>
790 + * Finished implementing lightweight directory renaming. Some
791 + basic testing indicates it works fine.
792 + Next is to implement testcases for the testsuite and confirm
793 + everything is really working ok.
795 +2005-03-18 Markus Klotzbuecher <mk@chasey>
797 + * Finished implementing meta.c stuff required for directory
800 +2005-03-17 Markus Klotzbuecher <mk@chasey>
802 + * Fixed all compile warnings + an extremly old bug that
803 + somehow crept in while reworking the wol stuff to the META
804 + system. Turning on -Werror again... :-)
806 + * Fixed some bugs in the new rename_reg_file function.
808 + * Rewrote mini_fo rename and split it into several
809 + subfunctions, that handle the different types
810 + seperately. Rewrote the regular file function aswell, as it
811 + was implemented somewhat inefficient.
813 +2005-03-16 Markus Klotzbuecher <mk@chasey>
815 + * Implemented new META subsystem, removed old WOL stuff in favor
818 + * After some basic testing everything seems ok...
820 +2005-03-11 Markus Klotzbuecher <mk@chasey>
822 + * Renaming a non regular file caused trouble because I always
823 + tried to copy the contents. Now I only do this for regular
824 + files. mini_fo_rename still isn't implemented properly, renaming
825 + of device files, symlinks etc. results in a empty regular file
826 + instead of the proper type.
828 + * Directory renaming suddenly works! What a surprise! I guess
829 + this is because renaming is implemented as making a copy and
830 + removing the original. Still this might not work
833 +2005-03-09 Markus Klotzbuecher <mk@chasey>
835 + * Bugfix, when a mini_fo directory that exists in storage
836 + (state: MODIFIED, CREATED and DEL_REWRITTEN) is deleted, a
837 + possibly existing WOL file contained in it needs to be
840 + * Starting cleanup: defined state names in order to get rid of
843 +2005-03-08 Markus Klotzbuecher <mk@chasey>
845 + * Makefile fix, fist_ioctl was built against wrong sources if ARCH=um
847 + * Fixed a bug in dentry.c, mini_fo_d_hash. In state 4 =
848 + DEL_REWRITTEN the hash was calculated from the base dentry,
849 + which was wrong and and caused assertions in
850 + __mini_fo_hidden_dentry to fail.
852 +2005-02-21 <mk@mary>
854 + * Implemented directory deleting (inode.c)
856 + * main.c: made mini_fo_parse_options a little more robust.
858 +2004-12-22 <mk@mary>
860 + * Makefile cleanup and uml stuff, removed unneccessary files
862 + * Created a new and hopefully more informative README
864 + * CHANGELOG: created a new CHANGELOG and added old entries reversely
867 +2004-10-24 Gleb Natapov <gleb@nbase.co.il>
869 + * Fix: owner and group where not correctly copied from base to
873 +2004-10-05 Gleb Natapov <gleb@nbase.co.il>
875 + * Implementation of fsync, fasync and lock mini_fo functions.
878 +2004-09-29 Bob Lee <bob@pantasys.com>
880 + * Fix of a serious pointer bug
883 +2004-09-28 Gleb Natapov <gleb@nbase.co.il>
885 + * Implementation of mini_fo_mknod and mini_fo_rename, support
889 +++ b/fs/mini_fo/dentry.c
892 + * Copyright (c) 1997-2003 Erez Zadok
893 + * Copyright (c) 2001-2003 Stony Brook University
895 + * For specific licensing information, see the COPYING file distributed with
896 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
898 + * This Copyright notice must be kept intact and distributed with all
899 + * fistgen sources INCLUDING sources generated by fistgen.
902 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
904 + * This program is free software; you can redistribute it and/or
905 + * modify it under the terms of the GNU General Public License
906 + * as published by the Free Software Foundation; either version
907 + * 2 of the License, or (at your option) any later version.
914 +#ifdef HAVE_CONFIG_H
915 +# include <config.h>
919 +#include "mini_fo.h"
922 + * THIS IS A BOOLEAN FUNCTION: returns 1 if valid, 0 otherwise.
925 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
926 +mini_fo_d_revalidate(dentry_t *dentry, struct nameidata *nd)
928 +mini_fo_d_revalidate(dentry_t *dentry, int flags)
931 + int err1 = 1; /* valid = 1, invalid = 0 */
933 + dentry_t *hidden_dentry;
934 + dentry_t *hidden_sto_dentry;
937 + check_mini_fo_dentry(dentry);
939 + hidden_dentry = dtohd(dentry);
940 + hidden_sto_dentry = dtohd2(dentry);
942 + if(hidden_dentry &&
943 + hidden_dentry->d_op &&
944 + hidden_dentry->d_op->d_revalidate) {
945 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
946 + err1 = hidden_dentry->d_op->d_revalidate(hidden_dentry, nd);
948 + err1 = hidden_dentry->d_op->d_revalidate(hidden_dentry, flags);
951 + if(hidden_sto_dentry &&
952 + hidden_sto_dentry->d_op &&
953 + hidden_sto_dentry->d_op->d_revalidate) {
954 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
955 + err2 = hidden_sto_dentry->d_op->d_revalidate(hidden_sto_dentry,
958 + err2 = hidden_sto_dentry->d_op->d_revalidate(hidden_sto_dentry,
963 + /* mk: if one of the lower level dentries are valid,
964 + * the mini_fo dentry is too.
966 + return (err1 || err2);
971 +mini_fo_d_hash(dentry_t *dentry, qstr_t *name)
974 + dentry_t *hidden_dentry;
975 + dentry_t *hidden_sto_dentry;
977 + /* hidden_dentry = mini_fo_hidden_dentry(dentry);
978 + * hidden_sto_dentry = mini_fo_hidden_sto_dentry(dentry); */
980 + /* state 1, 3, 4, 5: build the hash for the storage dentry */
981 + if((dtopd(dentry)->state == MODIFIED) ||
982 + (dtopd(dentry)->state == CREATED) ||
983 + (dtopd(dentry)->state == DEL_REWRITTEN) ||
984 + (dtopd(dentry)->state == DELETED)) {
985 + hidden_sto_dentry = dtohd2(dentry);
986 + if(hidden_sto_dentry &&
987 + hidden_sto_dentry->d_op &&
988 + hidden_sto_dentry->d_op->d_hash) {
989 + err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, name);
993 + /* state 2: build the hash for the base dentry */
994 + if(dtopd(dentry)->state == UNMODIFIED) {
995 + hidden_dentry = dtohd(dentry);
996 + if(hidden_dentry &&
997 + hidden_dentry->d_op &&
998 + hidden_dentry->d_op->d_hash) {
999 + err = hidden_dentry->d_op->d_hash(hidden_dentry, name);
1003 + /* state 6: build hash for the dentry that exists */
1004 + if(dtopd(dentry)->state == NON_EXISTANT) {
1005 + hidden_sto_dentry = dtohd2(dentry);
1006 + if(hidden_sto_dentry &&
1007 + hidden_sto_dentry->d_op &&
1008 + hidden_sto_dentry->d_op->d_hash) {
1009 + err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, name);
1012 + hidden_dentry = dtohd(dentry);
1013 + if(hidden_dentry &&
1014 + hidden_dentry->d_op &&
1015 + hidden_dentry->d_op->d_hash) {
1016 + err = hidden_dentry->d_op->d_hash(hidden_dentry, name);
1021 + printk(KERN_CRIT "mini_fo: d_hash: invalid state detected.\n");
1029 +mini_fo_d_compare(dentry_t *dentry, qstr_t *a, qstr_t *b)
1032 + dentry_t *hidden_dentry=NULL;
1034 + /* hidden_dentry = mini_fo_hidden_dentry(dentry); */
1035 + if(dtohd2(dentry))
1036 + hidden_dentry = dtohd2(dentry);
1037 + else if(dtohd(dentry))
1038 + hidden_dentry = dtohd(dentry);
1040 + if (hidden_dentry && hidden_dentry->d_op && hidden_dentry->d_op->d_compare) {
1041 + err = hidden_dentry->d_op->d_compare(hidden_dentry, a, b);
1043 + err = ((a->len != b->len) || memcmp(a->name, b->name, b->len));
1051 +mini_fo_d_delete(dentry_t *dentry)
1053 + dentry_t *hidden_dentry;
1054 + dentry_t *hidden_sto_dentry;
1057 + /* this could be a negative dentry, so check first */
1058 + if (!dtopd(dentry)) {
1059 + printk(KERN_CRIT "mini_fo_d_delete: negative dentry passed.\n");
1062 + hidden_dentry = dtohd(dentry);
1063 + hidden_sto_dentry = dtohd2(dentry);
1065 + if(hidden_dentry) {
1066 + if(hidden_dentry->d_op &&
1067 + hidden_dentry->d_op->d_delete) {
1068 + err = hidden_dentry->d_op->d_delete(hidden_dentry);
1071 + if(hidden_sto_dentry) {
1072 + if(hidden_sto_dentry->d_op &&
1073 + hidden_sto_dentry->d_op->d_delete) {
1074 + err = hidden_sto_dentry->d_op->d_delete(hidden_sto_dentry);
1084 +mini_fo_d_release(dentry_t *dentry)
1086 + dentry_t *hidden_dentry;
1087 + dentry_t *hidden_sto_dentry;
1090 + /* this could be a negative dentry, so check first */
1091 + if (!dtopd(dentry)) {
1092 + printk(KERN_CRIT "mini_fo_d_release: no private data.\n");
1095 + hidden_dentry = dtohd(dentry);
1096 + hidden_sto_dentry = dtohd2(dentry);
1098 + if(hidden_dentry) {
1099 + /* decrement hidden dentry's counter and free its inode */
1100 + dput(hidden_dentry);
1102 + if(hidden_sto_dentry) {
1103 + /* decrement hidden dentry's counter and free its inode */
1104 + dput(hidden_sto_dentry);
1107 + /* free private data (mini_fo_dentry_info) here */
1108 + kfree(dtopd(dentry));
1109 + __dtopd(dentry) = NULL; /* just to be safe */
1116 + * we don't really need mini_fo_d_iput, because dentry_iput will call iput() if
1117 + * mini_fo_d_iput is not defined. We left this implemented for ease of
1118 + * tracing/debugging.
1121 +mini_fo_d_iput(dentry_t *dentry, inode_t *inode)
1127 +struct dentry_operations mini_fo_dops = {
1128 + d_revalidate: mini_fo_d_revalidate,
1129 + d_hash: mini_fo_d_hash,
1130 + d_compare: mini_fo_d_compare,
1131 + d_release: mini_fo_d_release,
1132 + d_delete: mini_fo_d_delete,
1133 + d_iput: mini_fo_d_iput,
1136 +++ b/fs/mini_fo/file.c
1139 + * Copyright (c) 1997-2003 Erez Zadok
1140 + * Copyright (c) 2001-2003 Stony Brook University
1142 + * For specific licensing information, see the COPYING file distributed with
1143 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
1145 + * This Copyright notice must be kept intact and distributed with all
1146 + * fistgen sources INCLUDING sources generated by fistgen.
1149 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
1151 + * This program is free software; you can redistribute it and/or
1152 + * modify it under the terms of the GNU General Public License
1153 + * as published by the Free Software Foundation; either version
1154 + * 2 of the License, or (at your option) any later version.
1161 +#ifdef HAVE_CONFIG_H
1162 +# include <config.h>
1166 +#include "mini_fo.h"
1167 +#define ROUND_UP(x) (((x)+sizeof(long)-1) & ~(sizeof(long)-1))
1169 +/*******************
1170 + * File Operations *
1171 + *******************/
1174 +mini_fo_llseek(file_t *file, loff_t offset, int origin)
1177 + file_t *hidden_file = NULL;
1179 + if(S_ISDIR(file->f_dentry->d_inode->i_mode)) {
1180 + /* Check if trying to llseek from a directory */
1184 + if (ftopd(file) != NULL) {
1185 + if(ftohf2(file)) {
1186 + hidden_file = ftohf2(file);
1188 + hidden_file = ftohf(file);
1192 + /* always set hidden position to this one */
1193 + hidden_file->f_pos = file->f_pos;
1195 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
1196 + memcpy(&(hidden_file->f_ra),
1198 + sizeof(struct file_ra_state));
1200 + if (file->f_reada) { /* update readahead information if needed */
1201 + hidden_file->f_reada = file->f_reada;
1202 + hidden_file->f_ramax = file->f_ramax;
1203 + hidden_file->f_raend = file->f_raend;
1204 + hidden_file->f_ralen = file->f_ralen;
1205 + hidden_file->f_rawin = file->f_rawin;
1208 + if (hidden_file->f_op && hidden_file->f_op->llseek)
1209 + err = hidden_file->f_op->llseek(hidden_file, offset, origin);
1211 + err = generic_file_llseek(hidden_file, offset, origin);
1216 + if (err != file->f_pos) {
1217 + file->f_pos = err;
1218 + // ION maybe this?
1219 + // file->f_pos = hidden_file->f_pos;
1220 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
1221 + file->f_reada = 0;
1223 + file->f_version++;
1231 +/* mk: fanout capable */
1233 +mini_fo_read(file_t *file, char *buf, size_t count, loff_t *ppos)
1235 + int err = -EINVAL;
1236 + file_t *hidden_file = NULL;
1237 + loff_t pos = *ppos;
1239 + if(S_ISDIR(file->f_dentry->d_inode->i_mode)) {
1240 + /* Check if trying to read from a directory */
1241 + /* printk(KERN_CRIT "mini_fo_read: ERROR: trying to read data from a directory.\n"); */
1246 + if (ftopd(file) != NULL) {
1247 + if(ftohf2(file)) {
1248 + hidden_file = ftohf2(file);
1250 + hidden_file = ftohf(file);
1254 + if (!hidden_file->f_op || !hidden_file->f_op->read)
1257 + err = hidden_file->f_op->read(hidden_file, buf, count, &pos);
1261 + /* atime should also be updated for reads of size zero or more */
1262 + fist_copy_attr_atime(file->f_dentry->d_inode,
1263 + hidden_file->f_dentry->d_inode);
1266 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
1269 + * because pread() does not have any way to tell us that it is
1270 + * our caller, then we don't know for sure if we have to update
1271 + * the file positions. This hack relies on read() having passed us
1272 + * the "real" pointer of its struct file's f_pos field.
1274 + if (ppos == &file->f_pos)
1275 + hidden_file->f_pos = *ppos = pos;
1276 + if (hidden_file->f_reada) { /* update readahead information if needed */
1277 + file->f_reada = hidden_file->f_reada;
1278 + file->f_ramax = hidden_file->f_ramax;
1279 + file->f_raend = hidden_file->f_raend;
1280 + file->f_ralen = hidden_file->f_ralen;
1281 + file->f_rawin = hidden_file->f_rawin;
1284 + memcpy(&(file->f_ra),&(hidden_file->f_ra),sizeof(struct file_ra_state));
1292 +/* this mini_fo_write() does not modify data pages! */
1294 +mini_fo_write(file_t *file, const char *buf, size_t count, loff_t *ppos)
1296 + int err = -EINVAL;
1297 + file_t *hidden_file = NULL;
1299 + inode_t *hidden_inode;
1300 + loff_t pos = *ppos;
1302 + /* mk: fan out: */
1303 + if (ftopd(file) != NULL) {
1304 + if(ftohf2(file)) {
1305 + hidden_file = ftohf2(file);
1307 + /* This is bad! We have no storage file to write to. This
1308 + * should never happen because if a file is opened for
1309 + * writing, a copy should have been made earlier.
1311 + printk(KERN_CRIT "mini_fo: write : ERROR, no storage file to write.\n");
1317 + inode = file->f_dentry->d_inode;
1318 + hidden_inode = itohi2(inode);
1319 + if(!hidden_inode) {
1320 + printk(KERN_CRIT "mini_fo: write: no sto inode found, not good.\n");
1324 + if (!hidden_file->f_op || !hidden_file->f_op->write)
1327 + /* adjust for append -- seek to the end of the file */
1328 + if (file->f_flags & O_APPEND)
1329 + pos = inode->i_size;
1331 + err = hidden_file->f_op->write(hidden_file, buf, count, &pos);
1334 + * copy ctime and mtime from lower layer attributes
1335 + * atime is unchanged for both layers
1338 + fist_copy_attr_times(inode, hidden_inode);
1341 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
1345 + * because pwrite() does not have any way to tell us that it is
1346 + * our caller, then we don't know for sure if we have to update
1347 + * the file positions. This hack relies on write() having passed us
1348 + * the "real" pointer of its struct file's f_pos field.
1350 + if (ppos == &file->f_pos)
1351 + hidden_file->f_pos = *ppos = pos;
1353 + /* update this inode's size */
1354 + if (pos > inode->i_size)
1355 + inode->i_size = pos;
1361 +/* Global variable to hold a file_t pointer.
1362 + * This serves to allow mini_fo_filldir function to know which file is
1363 + * beeing read, which is required for two reasons:
1365 + * - be able to call wol functions in order to avoid listing deleted
1367 + * - if we're reading a directory which is in state 1, we need to
1368 + * maintain a list (in mini_fo_filldir) of which files allready
1369 + * have been copied to userspace,to detect files existing in base
1370 + * and storage and not list them twice.
1372 +filldir_t mini_fo_filldir_orig;
1373 +file_t *mini_fo_filldir_file;
1375 +/* mainly copied from fs/readdir.c */
1377 +mini_fo_filldir(void * __buf, const char * name, int namlen, loff_t offset,
1378 + ino_t ino, unsigned int d_type)
1380 + struct linux_dirent *dirent, d;
1381 + struct getdents_callback * buf = (struct getdents_callback *) __buf;
1383 + file_t* file = mini_fo_filldir_file;
1385 + /* In theses states we filter meta files in storage (WOL) */
1386 + if(file && (dtopd(file->f_dentry)->state == MODIFIED ||
1387 + dtopd(file->f_dentry)->state == CREATED ||
1388 + dtopd(file->f_dentry)->state == DEL_REWRITTEN)) {
1390 + int tmp = strlen(META_FILENAME);
1391 + if(tmp == namlen) {
1392 + if(!strncmp(name, META_FILENAME, namlen))
1397 + /* check if we are merging the contents of storage and base */
1398 + if(file && dtopd(file->f_dentry)->state == MODIFIED) {
1399 + /* check if we are still reading storage contents, if
1400 + * yes, we just save the name of the file for duplicate
1401 + * checking later. */
1403 + if(!ftopd(file)->rd.sto_done) {
1404 + /* put file into ndl list */
1405 + if(ndl_add_entry(&ftopd(file)->rd, name, namlen))
1406 + printk(KERN_CRIT "mini_fo_filldir: Error adding to ndl.\n");
1408 + /* check if file has been deleted */
1409 + if(meta_check_d_entry(file->f_dentry, name, namlen))
1412 + /* do duplicate checking */
1413 + if(ndl_check_entry(&ftopd(file)->rd, name, namlen))
1418 + return mini_fo_filldir_orig(buf, name, namlen, offset, ino, d_type);
1423 +mini_fo_readdir(file_t *file, void *dirent, filldir_t filldir)
1425 + int err = 0;/* mk: ??? -ENOTDIR; */
1426 + file_t *hidden_file = NULL;
1427 + file_t *hidden_sto_file = NULL;
1429 + struct getdents_callback *buf;
1432 +#if defined(FIST_FILTER_NAME) || defined(FIST_FILTER_SCA)
1433 + struct mini_fo_getdents_callback buf;
1434 +#endif /* FIST_FILTER_NAME || FIST_FILTER_SCA */
1436 + buf = (struct getdents_callback *) dirent;
1437 + oldcount = buf->count;
1438 + inode = file->f_dentry->d_inode;
1439 + mini_fo_filldir_file = file;
1440 + mini_fo_filldir_orig = filldir;
1442 + ftopd(file)->rd.sto_done = 0;
1444 + if (ftopd(file) != NULL) {
1445 + if(ftohf2(file)) {
1446 + hidden_sto_file = ftohf2(file);
1447 + err = vfs_readdir(hidden_sto_file, mini_fo_filldir, dirent);
1448 + file->f_pos = hidden_sto_file->f_pos;
1450 + fist_copy_attr_atime(inode, hidden_sto_file->f_dentry->d_inode);
1451 + /* not finshed yet, we'll be called again */
1452 + if (buf->count != oldcount)
1456 + ftopd(file)->rd.sto_done = 1;
1459 + hidden_file = ftohf(file);
1460 + err = vfs_readdir(hidden_file, mini_fo_filldir, dirent);
1461 + file->f_pos = hidden_file->f_pos;
1463 + fist_copy_attr_atime(inode, hidden_file->f_dentry->d_inode);
1470 + * we need to check if all the directory data has been copied to userspace,
1471 + * or if we will be called again by userspace to complete the operation.
1473 + if(buf->count == oldcount) {
1474 + ndl_put_list(&ftopd(file)->rd);
1477 + /* unset this, safe */
1478 + mini_fo_filldir_file = NULL;
1483 +STATIC unsigned int
1484 +mini_fo_poll(file_t *file, poll_table *wait)
1486 + unsigned int mask = DEFAULT_POLLMASK;
1487 + file_t *hidden_file = NULL;
1489 + if (ftopd(file) != NULL) {
1490 + if(ftohf2(file)) {
1491 + hidden_file = ftohf2(file);
1493 + hidden_file = ftohf(file);
1497 + if (!hidden_file->f_op || !hidden_file->f_op->poll)
1500 + mask = hidden_file->f_op->poll(hidden_file, wait);
1506 +/* FIST-LITE special version of mmap */
1508 +mini_fo_mmap(file_t *file, vm_area_t *vma)
1511 + file_t *hidden_file = NULL;
1513 + /* fanout capability */
1514 + if (ftopd(file) != NULL) {
1515 + if(ftohf2(file)) {
1516 + hidden_file = ftohf2(file);
1518 + hidden_file = ftohf(file);
1522 + ASSERT(hidden_file != NULL);
1523 + ASSERT(hidden_file->f_op != NULL);
1524 + ASSERT(hidden_file->f_op->mmap != NULL);
1526 + vma->vm_file = hidden_file;
1527 + err = hidden_file->f_op->mmap(hidden_file, vma);
1528 + get_file(hidden_file); /* make sure it doesn't get freed on us */
1529 + fput(file); /* no need to keep extra ref on ours */
1537 +mini_fo_open(inode_t *inode, file_t *file)
1541 + file_t *hidden_file = NULL;
1542 + dentry_t *hidden_dentry = NULL;
1544 + /* fanout stuff */
1545 + file_t *hidden_sto_file = NULL;
1546 + dentry_t *hidden_sto_dentry = NULL;
1549 + kmalloc(sizeof(struct mini_fo_file_info), GFP_KERNEL);
1550 + if (!ftopd(file)) {
1555 + /* init the readdir_helper structure */
1556 + INIT_LIST_HEAD(&ftopd(file)->rd.ndl_list);
1557 + ftopd(file)->rd.ndl_size = 0;
1559 + /* In certain paths this could stay uninitalized and cause trouble */
1560 + ftohf(file) = NULL;
1561 + ftohf2(file) = NULL;
1562 + hidden_flags = file->f_flags;
1564 + /* create storage files? */
1565 + if(dtost(file->f_dentry) == UNMODIFIED) {
1566 + if(!IS_WRITE_FLAG(file->f_flags)) {
1567 + hidden_dentry = dtohd(file->f_dentry);
1568 + dget(hidden_dentry);
1569 + /* dentry_open will decrement mnt refcnt if err.
1570 + * otherwise fput() will do an mntput() for us upon file close. */
1571 + mntget(stopd(inode->i_sb)->hidden_mnt);
1572 + hidden_file = dentry_open(hidden_dentry,
1573 + stopd(inode->i_sb)->hidden_mnt,
1575 + if (IS_ERR(hidden_file)) {
1576 + err = PTR_ERR(hidden_file);
1577 + dput(hidden_dentry);
1580 + ftohf(file) = hidden_file; /* link two files */
1584 + if(S_ISDIR(file->f_dentry->d_inode->i_mode)) {
1585 + err = dir_unmod_to_mod(file->f_dentry);
1587 + err = nondir_unmod_to_mod(file->f_dentry, 1);
1590 + printk("mini_fo_open: ERROR creating storage file.\n");
1595 + hidden_sto_dentry = dtohd2(file->f_dentry);
1596 + dget(hidden_sto_dentry);
1598 + if(dtopd(file->f_dentry)->state == MODIFIED) {
1599 + /* Directorys are special, interpose on both lower level files */
1600 + if(S_ISDIR(itohi(inode)->i_mode)) {
1601 + /* check for invalid file types of lower level files */
1602 + if(!(S_ISDIR(itohi(inode)->i_mode) && S_ISDIR(itohi2(inode)->i_mode))) {
1603 + printk(KERN_CRIT "mini_fo_open: meta data corruption detected.\n");
1604 + dput(hidden_sto_dentry);
1609 + /* lower level directorys are ok, open the base file */
1610 + hidden_dentry = dtohd(file->f_dentry);
1611 + dget(hidden_dentry);
1613 + mntget(stopd(inode->i_sb)->hidden_mnt);
1614 + hidden_file = dentry_open(hidden_dentry,
1615 + stopd(inode->i_sb)->hidden_mnt,
1617 + if (IS_ERR(hidden_file)) {
1618 + err = PTR_ERR(hidden_file);
1619 + dput(hidden_dentry);
1620 + dput(hidden_sto_dentry);
1623 + ftohf(file) = hidden_file; /* link the two files */
1627 + if(!exists_in_storage(file->f_dentry)) {
1628 + printk(KERN_CRIT "mini_fo_open: invalid file state detected.\n");
1630 + dput(hidden_sto_dentry);
1632 + /* If the base file has been opened, we need to close it here */
1634 + if (hidden_file->f_op && hidden_file->f_op->flush)
1635 + hidden_file->f_op->flush(hidden_file);
1636 + dput(hidden_dentry);
1641 + /* ok, now we can safely open the storage file */
1642 + mntget(stopd(inode->i_sb)->hidden_mnt2);
1643 + hidden_sto_file = dentry_open(hidden_sto_dentry,
1644 + stopd(inode->i_sb)->hidden_mnt2,
1647 + /* dentry_open dputs the dentry if it fails */
1648 + if (IS_ERR(hidden_sto_file)) {
1649 + err = PTR_ERR(hidden_sto_file);
1650 + /* close base file if open */
1652 + if (hidden_file->f_op && hidden_file->f_op->flush)
1653 + hidden_file->f_op->flush(hidden_file);
1654 + dput(hidden_dentry);
1658 + ftohf2(file) = hidden_sto_file; /* link storage file */
1661 + if (err < 0 && ftopd(file)) {
1662 + kfree(ftopd(file));
1668 +mini_fo_flush(file_t *file)
1670 + int err1 = 0; /* assume ok (see open.c:close_fp) */
1672 + file_t *hidden_file = NULL;
1674 + check_mini_fo_file(file);
1676 + /* mk: we don't do any state checking here, as its not worth the time.
1677 + * Just flush the lower level files if they exist.
1679 + if(ftopd(file) != NULL) {
1680 + if(ftohf(file) != NULL) {
1681 + hidden_file = ftohf(file);
1682 + if (hidden_file->f_op && hidden_file->f_op->flush)
1683 + err1 = hidden_file->f_op->flush(hidden_file);
1685 + if(ftohf2(file) != NULL) {
1686 + hidden_file = ftohf2(file);
1687 + if (hidden_file->f_op && hidden_file->f_op->flush)
1688 + err2 = hidden_file->f_op->flush(hidden_file);
1691 + return (err1 | err2);
1696 +mini_fo_release(inode_t *inode, file_t *file)
1699 + file_t *hidden_file = NULL;
1701 + if (ftopd(file) != NULL) {
1703 + hidden_file = ftohf(file);
1704 + fput(hidden_file);
1706 + if(ftohf2(file)) {
1707 + hidden_file = ftohf2(file);
1708 + fput(hidden_file);
1710 + kfree(ftopd(file));
1716 +mini_fo_fsync(file_t *file, dentry_t *dentry, int datasync)
1720 + file_t *hidden_file = NULL;
1721 + dentry_t *hidden_dentry;
1723 + check_mini_fo_file(file);
1725 + if ((hidden_file = ftohf(file)) != NULL) {
1726 + hidden_dentry = dtohd(dentry);
1727 + if (hidden_file->f_op && hidden_file->f_op->fsync) {
1728 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
1729 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
1731 + down(&hidden_dentry->d_inode->i_sem);
1733 + err1 = hidden_file->f_op->fsync(hidden_file, hidden_dentry, datasync);
1734 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
1735 + mutex_unlock(&hidden_dentry->d_inode->i_mutex);
1737 + up(&hidden_dentry->d_inode->i_sem);
1742 + if ((hidden_file = ftohf2(file)) != NULL) {
1743 + hidden_dentry = dtohd2(dentry);
1744 + if (hidden_file->f_op && hidden_file->f_op->fsync) {
1745 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
1746 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
1748 + down(&hidden_dentry->d_inode->i_sem);
1750 + err2 = hidden_file->f_op->fsync(hidden_file, hidden_dentry, datasync);
1751 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
1752 + mutex_unlock(&hidden_dentry->d_inode->i_mutex);
1754 + up(&hidden_dentry->d_inode->i_sem);
1762 + return (err1 || err2);
1767 +mini_fo_fasync(int fd, file_t *file, int flag)
1772 + file_t *hidden_file = NULL;
1774 + check_mini_fo_file(file);
1776 + if((hidden_file = ftohf(file)) != NULL) {
1777 + err1 = hidden_file->f_op->fasync(fd, hidden_file, flag);
1779 + if((hidden_file = ftohf2(file)) != NULL) {
1780 + err2 = hidden_file->f_op->fasync(fd, hidden_file, flag);
1783 + return (err1 || err2);
1788 +mini_fo_lock(file_t *file, int cmd, struct file_lock *fl)
1790 + int err = -EINVAL;
1791 + file_t *hidden_file = NULL;
1793 + if(!check_mini_fo_file(file))
1796 + /* which file shall we lock? */
1798 + hidden_file = ftohf2(file);
1800 + hidden_file = ftohf(file);
1802 + if (hidden_file->f_op->lock) {
1803 + fl->fl_file = hidden_file;
1804 + err = hidden_file->f_op->lock(hidden_file, F_GETLK, fl);
1805 + fl->fl_file = file;
1807 + if(posix_test_lock(hidden_file, fl))
1815 +struct file_operations mini_fo_dir_fops =
1817 + read: generic_read_dir,
1818 + write: mini_fo_write,
1819 + readdir: mini_fo_readdir,
1820 + poll: mini_fo_poll,
1821 + /* ioctl: mini_fo_ioctl, */
1822 + mmap: mini_fo_mmap,
1823 + open: mini_fo_open,
1824 + flush: mini_fo_flush,
1825 + release: mini_fo_release,
1826 + fsync: mini_fo_fsync,
1827 + fasync: mini_fo_fasync,
1828 + /* not needed lock: mini_fo_lock, */
1829 + /* not needed: readv */
1830 + /* not needed: writev */
1831 + /* not implemented: sendpage */
1832 + /* not implemented: get_unmapped_area */
1835 +struct file_operations mini_fo_main_fops =
1837 + llseek: mini_fo_llseek,
1838 + read: mini_fo_read,
1839 + write: mini_fo_write,
1840 + readdir: mini_fo_readdir,
1841 + poll: mini_fo_poll,
1842 + /* ioctl: mini_fo_ioctl, */
1843 + mmap: mini_fo_mmap,
1844 + open: mini_fo_open,
1845 + flush: mini_fo_flush,
1846 + release: mini_fo_release,
1847 + fsync: mini_fo_fsync,
1848 + fasync: mini_fo_fasync,
1849 + /* not needed: lock: mini_fo_lock, */
1850 + /* not needed: readv */
1851 + /* not needed: writev */
1852 + /* not implemented: sendpage */
1853 + /* not implemented: get_unmapped_area */
1856 +++ b/fs/mini_fo/fist.h
1859 + * Copyright (c) 1997-2003 Erez Zadok
1860 + * Copyright (c) 2001-2003 Stony Brook University
1862 + * For specific licensing information, see the COPYING file distributed with
1863 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
1865 + * This Copyright notice must be kept intact and distributed with all
1866 + * fistgen sources INCLUDING sources generated by fistgen.
1869 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
1871 + * This program is free software; you can redistribute it and/or
1872 + * modify it under the terms of the GNU General Public License
1873 + * as published by the Free Software Foundation; either version
1874 + * 2 of the License, or (at your option) any later version.
1886 + * KERNEL ONLY CODE:
1889 +#include <linux/config.h>
1890 +#include <linux/version.h>
1891 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
1892 +#ifdef CONFIG_MODVERSIONS
1893 +# define MODVERSIONS
1894 +# include <linux/modversions.h>
1895 +#endif /* CONFIG_MODVERSIONS */
1896 +#endif /* KERNEL_VERSION < 2.6.0 */
1897 +#include <linux/sched.h>
1898 +#include <linux/kernel.h>
1899 +#include <linux/mm.h>
1900 +#include <linux/string.h>
1901 +#include <linux/stat.h>
1902 +#include <linux/errno.h>
1903 +#include <linux/wait.h>
1904 +#include <linux/limits.h>
1905 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
1906 +#include <linux/locks.h>
1908 +#include <linux/buffer_head.h>
1909 +#include <linux/pagemap.h>
1910 +#include <linux/namei.h>
1911 +#include <linux/module.h>
1912 +#include <linux/mount.h>
1913 +#include <linux/page-flags.h>
1914 +#include <linux/writeback.h>
1915 +#include <linux/statfs.h>
1917 +#include <linux/smp.h>
1918 +#include <linux/smp_lock.h>
1919 +#include <linux/file.h>
1920 +#include <linux/slab.h>
1921 +#include <linux/vmalloc.h>
1922 +#include <linux/poll.h>
1923 +#include <linux/list.h>
1924 +#include <linux/init.h>
1926 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20)
1927 +#include <linux/xattr.h>
1930 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
1931 +#include <linux/security.h>
1934 +#include <linux/swap.h>
1936 +#include <asm/system.h>
1937 +#include <asm/segment.h>
1938 +#include <asm/mman.h>
1939 +#include <linux/seq_file.h>
1945 +/* those mapped to ATTR_* were copied from linux/fs.h */
1946 +#define FA_MODE ATTR_MODE
1947 +#define FA_UID ATTR_UID
1948 +#define FA_GID ATTR_GID
1949 +#define FA_SIZE ATTR_SIZE
1950 +#define FA_ATIME ATTR_ATIME
1951 +#define FA_MTIME ATTR_MTIME
1952 +#define FA_CTIME ATTR_CTIME
1953 +#define FA_ATIME_SET ATTR_ATIME_SET
1954 +#define FA_MTIME_SET ATTR_MTIME_SET
1955 +#define FA_FORCE ATTR_FORCE
1956 +#define FA_ATTR_FLAGS ATTR_ATTR_FLAG
1958 +/* must be greater than all other ATTR_* flags! */
1959 +#define FA_NLINK 2048
1960 +#define FA_BLKSIZE 4096
1961 +#define FA_BLOCKS 8192
1962 +#define FA_TIMES (FA_ATIME|FA_MTIME|FA_CTIME)
1965 +/* macros to manage changes between kernels */
1966 +#define INODE_DATA(i) (&(i)->i_data)
1968 +#define MIN(x,y) ((x < y) ? (x) : (y))
1969 +#define MAX(x,y) ((x > y) ? (x) : (y))
1970 +#define MAXPATHLEN PATH_MAX
1972 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,5)
1973 +# define lookup_one_len(a,b,c) lookup_one(a,b)
1974 +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,4,5) */
1976 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,8)
1977 +# define generic_file_llseek default_llseek
1978 +#endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,4,8) */
1981 +# define SEEK_SET 0
1982 +#endif /* not SEEK_SET */
1985 +# define SEEK_CUR 1
1986 +#endif /* not SEEK_CUR */
1989 +# define SEEK_END 2
1990 +#endif /* not SEEK_END */
1992 +#ifndef DEFAULT_POLLMASK
1993 +# define DEFAULT_POLLMASK (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM)
1994 +#endif /* not DEFAULT_POLLMASK */
1996 +/* XXX: fix this so fistgen generates kfree() code directly */
1997 +#define kfree_s(a,b) kfree(a)
2002 +typedef struct dentry dentry_t;
2003 +typedef struct file file_t;
2004 +typedef struct inode inode_t;
2005 +typedef inode_t vnode_t;
2006 +typedef struct page page_t;
2007 +typedef struct qstr qstr_t;
2008 +typedef struct super_block super_block_t;
2009 +typedef super_block_t vfs_t;
2010 +typedef struct vm_area_struct vm_area_t;
2017 +#define FPPF(str,page) printk("PPF %s 0x%x/%d: Lck:%d Err:%d Ref:%d Upd:%d Other::%d:%d:%d:%d:\n", \
2020 + (int) page->index, \
2021 + (PageLocked(page) ? 1 : 0), \
2022 + (PageError(page) ? 1 : 0), \
2023 + (PageReferenced(page) ? 1 : 0), \
2024 + (Page_Uptodate(page) ? 1 : 0), \
2025 + (PageDecrAfter(page) ? 1 : 0), \
2026 + (PageSlab(page) ? 1 : 0), \
2027 + (PageSwapCache(page) ? 1 : 0), \
2028 + (PageReserved(page) ? 1 : 0) \
2030 +#define EZKDBG printk("EZK %s:%d:%s\n",__FILE__,__LINE__,__FUNCTION__)
2032 +# define EZKDBG1 printk("EZK %s:%d\n",__FILE__,__LINE__)
2037 +extern int fist_get_debug_value(void);
2038 +extern int fist_set_debug_value(int val);
2039 +#if 0 /* mini_fo doesn't need these */
2040 +extern void fist_dprint_internal(int level, char *str,...);
2041 +extern void fist_print_dentry(char *str, const dentry_t *dentry);
2042 +extern void fist_print_inode(char *str, const inode_t *inode);
2043 +extern void fist_print_file(char *str, const file_t *file);
2044 +extern void fist_print_buffer_flags(char *str, struct buffer_head *buffer);
2045 +extern void fist_print_page_flags(char *str, page_t *page);
2046 +extern void fist_print_page_bytes(char *str, page_t *page);
2047 +extern void fist_print_pte_flags(char *str, const page_t *page);
2048 +extern void fist_checkinode(inode_t *inode, char *msg);
2049 +extern void fist_print_sb(char *str, const super_block_t *sb);
2051 +/* §$% by mk: special debug functions */
2052 +extern void fist_mk_print_dentry(char *str, const dentry_t *dentry);
2053 +extern void fist_mk_print_inode(char *str, const inode_t *inode);
2055 +extern char *add_indent(void);
2056 +extern char *del_indent(void);
2057 +#endif/* mini_fo doesn't need these */
2061 +#define ASSERT(EX) \
2064 + printk(KERN_CRIT "ASSERTION FAILED: %s at %s:%d (%s)\n", #EX, \
2065 + __FILE__, __LINE__, __FUNCTION__); \
2066 + (*((char *)0))=0; \
2069 +/* same ASSERT, but tell me who was the caller of the function */
2070 +#define ASSERT2(EX) \
2073 + printk(KERN_CRIT "ASSERTION FAILED (caller): %s at %s:%d (%s)\n", #EX, \
2074 + file, line, func); \
2075 + (*((char *)0))=0; \
2079 +#if 0 /* mini_fo doesn't need these */
2080 +#define dprintk(format, args...) printk(KERN_DEBUG format, ##args)
2081 +#define fist_dprint(level, str, args...) fist_dprint_internal(level, KERN_DEBUG str, ## args)
2082 +#define print_entry_location() fist_dprint(4, "%sIN: %s %s:%d\n", add_indent(), __FUNCTION__, __FILE__, __LINE__)
2083 +#define print_exit_location() fist_dprint(4, "%s OUT: %s %s:%d\n", del_indent(), __FUNCTION__, __FILE__, __LINE__)
2084 +#define print_exit_status(status) fist_dprint(4, "%s OUT: %s %s:%d, STATUS: %d\n", del_indent(), __FUNCTION__, __FILE__, __LINE__, status)
2085 +#define print_exit_pointer(status) \
2087 + if (IS_ERR(status)) \
2088 + fist_dprint(4, "%s OUT: %s %s:%d, RESULT: %ld\n", del_indent(), __FUNCTION__, __FILE__, __LINE__, PTR_ERR(status)); \
2090 + fist_dprint(4, "%s OUT: %s %s:%d, RESULT: 0x%x\n", del_indent(), __FUNCTION__, __FILE__, __LINE__, PTR_ERR(status)); \
2092 +#endif/* mini_fo doesn't need these */
2094 +#endif /* __KERNEL__ */
2098 + * DEFINITIONS FOR USER AND KERNEL CODE:
2099 + * (Note: ioctl numbers 1--9 are reserved for fistgen, the rest
2100 + * are auto-generated automatically based on the user's .fist file.)
2102 +# define FIST_IOCTL_GET_DEBUG_VALUE _IOR(0x15, 1, int)
2103 +# define FIST_IOCTL_SET_DEBUG_VALUE _IOW(0x15, 2, int)
2105 +#endif /* not __FIST_H_ */
2107 +++ b/fs/mini_fo/inode.c
2110 + * Copyright (c) 1997-2003 Erez Zadok
2111 + * Copyright (c) 2001-2003 Stony Brook University
2113 + * For specific licensing information, see the COPYING file distributed with
2114 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
2116 + * This Copyright notice must be kept intact and distributed with all
2117 + * fistgen sources INCLUDING sources generated by fistgen.
2120 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
2122 + * This program is free software; you can redistribute it and/or
2123 + * modify it under the terms of the GNU General Public License
2124 + * as published by the Free Software Foundation; either version
2125 + * 2 of the License, or (at your option) any later version.
2132 +#ifdef HAVE_CONFIG_H
2133 +# include <config.h>
2137 +#include "mini_fo.h"
2140 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2141 +mini_fo_create(inode_t *dir, dentry_t *dentry, int mode, struct nameidata *nd)
2143 +mini_fo_create(inode_t *dir, dentry_t *dentry, int mode)
2148 + check_mini_fo_dentry(dentry);
2150 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2151 + err = create_sto_reg_file(dentry, mode, nd);
2153 + err = create_sto_reg_file(dentry, mode);
2155 + check_mini_fo_dentry(dentry);
2161 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2162 +mini_fo_lookup(inode_t *dir, dentry_t *dentry, struct nameidata* nd)
2164 +mini_fo_lookup(inode_t *dir, dentry_t *dentry)
2168 + dentry_t *hidden_dir_dentry;
2169 + dentry_t *hidden_dentry = NULL;
2171 + dentry_t *hidden_sto_dir_dentry;
2172 + dentry_t *hidden_sto_dentry = NULL;
2174 + /* whiteout flag */
2176 + char *bpath = NULL;
2179 + unsigned int namelen;
2181 + /* Don't allow lookups of META-files */
2182 + namelen = strlen(META_FILENAME);
2183 + if(namelen == dentry->d_name.len) {
2184 + if(!strncmp(dentry->d_name.name, META_FILENAME, namelen)) {
2190 + hidden_dir_dentry = dtohd(dentry->d_parent);
2191 + hidden_sto_dir_dentry = dtohd2(dentry->d_parent);
2193 + name = dentry->d_name.name;
2194 + namelen = dentry->d_name.len;
2196 + /* must initialize dentry operations */
2197 + dentry->d_op = &mini_fo_dops;
2199 + /* setup the del_flag */
2200 + del_flag = __meta_check_d_entry(dir, name, namelen);
2201 + bpath = __meta_check_r_entry(dir, name, namelen);
2203 + /* perform the lookups of base and storage files:
2205 + * This caused some serious trouble, as a lookup_one_len passing
2206 + * a negative dentry oopses. Solution is to only do the lookup
2207 + * if the dentry is positive, else we set it to NULL
2208 + * More trouble, who said a *_dir_dentry can't be NULL?
2211 + /* Cross-Interposing (C), yeah! */
2212 + hidden_dentry = bpath_walk(dir->i_sb, bpath);
2213 + if(!hidden_dentry || !hidden_dentry->d_inode) {
2214 + printk(KERN_CRIT "mini_fo_lookup: bpath_walk failed.\n");
2219 + /* this can be set up safely without fear of spaghetti
2220 + * interposing as it is only used for copying times */
2221 + hidden_dir_dentry = hidden_dentry->d_parent;
2224 + else if(hidden_dir_dentry && hidden_dir_dentry->d_inode)
2226 + lookup_one_len(name, hidden_dir_dentry, namelen);
2228 + hidden_dentry = NULL;
2230 + if(hidden_sto_dir_dentry && hidden_sto_dir_dentry->d_inode)
2231 + hidden_sto_dentry =
2232 + lookup_one_len(name, hidden_sto_dir_dentry, namelen);
2234 + hidden_sto_dentry = NULL;
2236 + /* catch error in lookup */
2237 + if (IS_ERR(hidden_dentry) || IS_ERR(hidden_sto_dentry)) {
2238 + /* mk: we need to call dput on the dentry, whose
2239 + * lookup_one_len operation failed, in order to avoid
2240 + * unmount trouble.
2242 + if(IS_ERR(hidden_dentry)) {
2243 + printk(KERN_CRIT "mini_fo_lookup: ERR from base dentry, lookup failed.\n");
2244 + err = PTR_ERR(hidden_dentry);
2246 + dput(hidden_dentry);
2248 + if(IS_ERR(hidden_sto_dentry)) {
2249 + printk(KERN_CRIT "mini_fo_lookup: ERR from storage dentry, lookup failed.\n");
2250 + err = PTR_ERR(hidden_sto_dentry);
2252 + dput(hidden_sto_dentry);
2257 + /* allocate dentry private data */
2258 + __dtopd(dentry) = (struct mini_fo_dentry_info *)
2259 + kmalloc(sizeof(struct mini_fo_dentry_info), GFP_KERNEL);
2261 + if (!dtopd(dentry)) {
2266 + /* check for different states of the mini_fo file to be looked up. */
2268 + /* state 1, file has been modified */
2269 + if(hidden_dentry && hidden_sto_dentry &&
2270 + hidden_dentry->d_inode && hidden_sto_dentry->d_inode && !del_flag) {
2272 + /* update parent directory's atime */
2273 + fist_copy_attr_atime(dir, hidden_sto_dir_dentry->d_inode);
2275 + dtopd(dentry)->state = MODIFIED;
2276 + dtohd(dentry) = hidden_dentry;
2277 + dtohd2(dentry) = hidden_sto_dentry;
2279 + err = mini_fo_tri_interpose(hidden_dentry,
2280 + hidden_sto_dentry,
2281 + dentry, dir->i_sb, 1);
2283 + printk(KERN_CRIT "mini_fo_lookup: error interposing (state1).\n");
2288 + /* state 2, file is unmodified */
2289 + if(hidden_dentry && hidden_dentry->d_inode && !del_flag) {
2291 + fist_copy_attr_atime(dir, hidden_dir_dentry->d_inode);
2293 + dtopd(dentry)->state = UNMODIFIED;
2294 + dtohd(dentry) = hidden_dentry;
2295 + dtohd2(dentry) = hidden_sto_dentry; /* could be negative */
2297 + err = mini_fo_tri_interpose(hidden_dentry,
2298 + hidden_sto_dentry,
2299 + dentry, dir->i_sb, 1);
2301 + printk(KERN_CRIT "mini_fo_lookup: error interposing (state2).\n");
2306 + /* state 3, file has been newly created */
2307 + if(hidden_sto_dentry && hidden_sto_dentry->d_inode && !del_flag) {
2309 + fist_copy_attr_atime(dir, hidden_sto_dir_dentry->d_inode);
2310 + dtopd(dentry)->state = CREATED;
2311 + dtohd(dentry) = hidden_dentry; /* could be negative */
2312 + dtohd2(dentry) = hidden_sto_dentry;
2314 + err = mini_fo_tri_interpose(hidden_dentry,
2315 + hidden_sto_dentry,
2316 + dentry, dir->i_sb, 1);
2318 + printk(KERN_CRIT "mini_fo_lookup: error interposing (state3).\n");
2324 + /* state 4, file has deleted and created again. */
2325 + if(hidden_dentry && hidden_sto_dentry &&
2326 + hidden_dentry->d_inode &&
2327 + hidden_sto_dentry->d_inode && del_flag) {
2329 + fist_copy_attr_atime(dir, hidden_sto_dir_dentry->d_inode);
2330 + dtopd(dentry)->state = DEL_REWRITTEN;
2331 + dtohd(dentry) = NULL;
2332 + dtohd2(dentry) = hidden_sto_dentry;
2334 + err = mini_fo_tri_interpose(NULL,
2335 + hidden_sto_dentry,
2336 + dentry, dir->i_sb, 1);
2338 + printk(KERN_CRIT "mini_fo_lookup: error interposing (state4).\n");
2341 + /* We will never need this dentry again, as the file has been
2342 + * deleted from base */
2343 + dput(hidden_dentry);
2346 + /* state 5, file has been deleted in base */
2347 + if(hidden_dentry && hidden_sto_dentry &&
2348 + hidden_dentry->d_inode &&
2349 + !hidden_sto_dentry->d_inode && del_flag) {
2351 + /* check which parents atime we need for updating */
2352 + if(hidden_sto_dir_dentry->d_inode)
2353 + fist_copy_attr_atime(dir,
2354 + hidden_sto_dir_dentry->d_inode);
2356 + fist_copy_attr_atime(dir,
2357 + hidden_dir_dentry->d_inode);
2359 + dtopd(dentry)->state = DELETED;
2360 + dtohd(dentry) = NULL;
2361 + dtohd2(dentry) = hidden_sto_dentry;
2363 + /* add negative dentry to dcache to speed up lookups */
2364 + d_add(dentry, NULL);
2365 + dput(hidden_dentry);
2368 + /* state 6, file does not exist */
2369 + if(((hidden_dentry && !hidden_dentry->d_inode) ||
2370 + (hidden_sto_dentry && !hidden_sto_dentry->d_inode)) && !del_flag)
2372 + /* check which parents atime we need for updating */
2373 + if(hidden_sto_dir_dentry && hidden_sto_dir_dentry->d_inode)
2374 + fist_copy_attr_atime(dir, hidden_sto_dir_dentry->d_inode);
2376 + fist_copy_attr_atime(dir, hidden_dir_dentry->d_inode);
2378 + dtopd(dentry)->state = NON_EXISTANT;
2379 + dtohd(dentry) = hidden_dentry;
2380 + dtohd2(dentry) = hidden_sto_dentry;
2381 + d_add(dentry, NULL);
2385 + /* if we get to here, were in an invalid state. bad. */
2386 + printk(KERN_CRIT "mini_fo_lookup: ERROR, meta data corruption detected.\n");
2388 + /* end state checking */
2390 + d_drop(dentry); /* so that our bad dentry will get destroyed */
2391 + kfree(dtopd(dentry));
2392 + __dtopd(dentry) = NULL; /* be safe */
2396 + dput(hidden_dentry);
2397 + if(hidden_sto_dentry)
2398 + dput(hidden_sto_dentry); /* drops usage count and marks for release */
2401 + /* initalize wol if file exists and is directory */
2402 + if(dentry->d_inode) {
2403 + if(S_ISDIR(dentry->d_inode->i_mode)) {
2404 + itopd(dentry->d_inode)->deleted_list_size = -1;
2405 + itopd(dentry->d_inode)->renamed_list_size = -1;
2406 + meta_build_lists(dentry);
2409 + return ERR_PTR(err);
2414 +mini_fo_link(dentry_t *old_dentry, inode_t *dir, dentry_t *new_dentry)
2417 + dentry_t *hidden_old_dentry;
2418 + dentry_t *hidden_new_dentry;
2419 + dentry_t *hidden_dir_dentry;
2422 + check_mini_fo_dentry(old_dentry);
2423 + check_mini_fo_dentry(new_dentry);
2424 + check_mini_fo_inode(dir);
2426 + /* no links to directorys and existing targets target allowed */
2427 + if(S_ISDIR(old_dentry->d_inode->i_mode) ||
2428 + is_mini_fo_existant(new_dentry)) {
2433 + /* bring it directly from unmod to del_rew */
2434 + if(dtost(old_dentry) == UNMODIFIED) {
2435 + err = nondir_unmod_to_mod(old_dentry, 1);
2440 + err = meta_add_d_entry(old_dentry->d_parent,
2441 + old_dentry->d_name.name,
2442 + old_dentry->d_name.len);
2447 + dput(dtohd(old_dentry));
2448 + dtohd(old_dentry) = NULL;
2449 + dtost(old_dentry) = DEL_REWRITTEN;
2452 + err = get_neg_sto_dentry(new_dentry);
2458 + hidden_old_dentry = dtohd2(old_dentry);
2459 + hidden_new_dentry = dtohd2(new_dentry);
2461 + dget(hidden_old_dentry);
2462 + dget(hidden_new_dentry);
2464 + /* was: hidden_dir_dentry = lock_parent(hidden_new_dentry); */
2465 + hidden_dir_dentry = dget(hidden_new_dentry->d_parent);
2466 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2467 + mutex_lock(&hidden_dir_dentry->d_inode->i_mutex);
2469 + down(&hidden_dir_dentry->d_inode->i_sem);
2472 + err = vfs_link(hidden_old_dentry,
2473 + hidden_dir_dentry->d_inode,
2474 + hidden_new_dentry);
2475 + if (err || !hidden_new_dentry->d_inode)
2478 + dtost(new_dentry) = CREATED;
2479 + err = mini_fo_tri_interpose(NULL, hidden_new_dentry, new_dentry, dir->i_sb, 0);
2483 + fist_copy_attr_timesizes(dir, hidden_new_dentry->d_inode);
2484 + /* propagate number of hard-links */
2485 + old_dentry->d_inode->i_nlink = itohi2(old_dentry->d_inode)->i_nlink;
2488 + /* was: unlock_dir(hidden_dir_dentry); */
2489 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2490 + mutex_unlock(&hidden_dir_dentry->d_inode->i_mutex);
2492 + up(&hidden_dir_dentry->d_inode->i_sem);
2494 + dput(hidden_dir_dentry);
2496 + dput(hidden_new_dentry);
2497 + dput(hidden_old_dentry);
2498 + if (!new_dentry->d_inode)
2499 + d_drop(new_dentry);
2507 +mini_fo_unlink(inode_t *dir, dentry_t *dentry)
2512 + if(dtopd(dentry)->state == MODIFIED) {
2513 + err = nondir_mod_to_del(dentry);
2516 + else if(dtopd(dentry)->state == UNMODIFIED) {
2517 + err = nondir_unmod_to_del(dentry);
2520 + else if(dtopd(dentry)->state == CREATED) {
2521 + err = nondir_creat_to_del(dentry);
2524 + else if(dtopd(dentry)->state == DEL_REWRITTEN) {
2525 + err = nondir_del_rew_to_del(dentry);
2529 + printk(KERN_CRIT "mini_fo_unlink: ERROR, invalid state detected.\n");
2532 + fist_copy_attr_times(dir, itohi2(dentry->d_parent->d_inode));
2535 + /* is this causing my pain? d_delete(dentry); */
2545 +mini_fo_symlink(inode_t *dir, dentry_t *dentry, const char *symname)
2548 + dentry_t *hidden_sto_dentry;
2549 + dentry_t *hidden_sto_dir_dentry;
2550 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2554 + /* Fail if the symlink file exists */
2555 + if(!(dtost(dentry) == DELETED ||
2556 + dtost(dentry) == NON_EXISTANT)) {
2561 + err = get_neg_sto_dentry(dentry);
2566 + hidden_sto_dentry = dtohd2(dentry);
2568 + dget(hidden_sto_dentry);
2569 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry); */
2570 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
2571 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2572 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2574 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
2577 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2579 + err = vfs_symlink(hidden_sto_dir_dentry->d_inode,
2580 + hidden_sto_dentry, symname, mode);
2582 + err = vfs_symlink(hidden_sto_dir_dentry->d_inode,
2583 + hidden_sto_dentry,
2586 + if (err || !hidden_sto_dentry->d_inode)
2589 + if(dtost(dentry) == DELETED) {
2590 + dtost(dentry) = DEL_REWRITTEN;
2591 + err = mini_fo_tri_interpose(NULL, hidden_sto_dentry, dentry, dir->i_sb, 0);
2594 + } else if(dtost(dentry) == NON_EXISTANT) {
2595 + dtost(dentry) = CREATED;
2596 + err = mini_fo_tri_interpose(dtohd(dentry), hidden_sto_dentry, dentry, dir->i_sb, 0);
2600 + fist_copy_attr_timesizes(dir, hidden_sto_dir_dentry->d_inode);
2603 + /* was: unlock_dir(hidden_sto_dir_dentry); */
2604 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2605 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2607 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
2609 + dput(hidden_sto_dir_dentry);
2611 + dput(hidden_sto_dentry);
2612 + if (!dentry->d_inode)
2619 +mini_fo_mkdir(inode_t *dir, dentry_t *dentry, int mode)
2623 + err = create_sto_dir(dentry, mode);
2625 + check_mini_fo_dentry(dentry);
2632 +mini_fo_rmdir(inode_t *dir, dentry_t *dentry)
2636 + dentry_t *hidden_sto_dentry;
2637 + dentry_t *hidden_sto_dir_dentry;
2638 + dentry_t *meta_dentry;
2639 + inode_t *hidden_sto_dir = NULL;
2641 + check_mini_fo_dentry(dentry);
2642 + check_mini_fo_inode(dir);
2645 + if(dtopd(dentry)->state == MODIFIED) {
2646 + /* XXX: disabled, because it does not bother to check files on
2647 + * the original filesystem - just a hack, but better than simply
2648 + * removing it without testing */
2652 + hidden_sto_dir = itohi2(dir);
2653 + hidden_sto_dentry = dtohd2(dentry);
2655 + /* was:hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry); */
2656 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
2657 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2658 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2660 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
2663 + /* avoid destroying the hidden inode if the file is in use */
2664 + dget(hidden_sto_dentry);
2666 + /* Delete an old WOL file contained in the storage dir */
2667 + meta_dentry = lookup_one_len(META_FILENAME,
2668 + hidden_sto_dentry,
2669 + strlen(META_FILENAME));
2670 + if(meta_dentry->d_inode) {
2671 + err = vfs_unlink(hidden_sto_dentry->d_inode, meta_dentry);
2672 + dput(meta_dentry);
2674 + d_delete(meta_dentry);
2677 + err = vfs_rmdir(hidden_sto_dir, hidden_sto_dentry);
2678 + dput(hidden_sto_dentry);
2680 + d_delete(hidden_sto_dentry);
2682 + /* propagate number of hard-links */
2683 + dentry->d_inode->i_nlink = itohi2(dentry->d_inode)->i_nlink;
2685 + dput(dtohd(dentry));
2687 + dtohd(dentry) = NULL;
2688 + dtopd(dentry)->state = DELETED;
2690 + /* carefull with R files */
2691 + if( __meta_is_r_entry(dir,
2692 + dentry->d_name.name,
2693 + dentry->d_name.len) == 1) {
2694 + err = meta_remove_r_entry(dentry->d_parent,
2695 + dentry->d_name.name,
2696 + dentry->d_name.len);
2698 + printk(KERN_CRIT "mini_fo: rmdir: meta_remove_r_entry failed.\n");
2703 + /* ok, add deleted file to META */
2704 + meta_add_d_entry(dentry->d_parent,
2705 + dentry->d_name.name,
2706 + dentry->d_name.len);
2708 + /* was: unlock_dir(hidden_sto_dir_dentry); */
2709 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2710 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2712 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
2714 + dput(hidden_sto_dir_dentry);
2717 + else if(dtopd(dentry)->state == UNMODIFIED) {
2718 + /* XXX: simply adding it to the delete list here is fscking dangerous!
2719 + * as a temporary hack, i will disable rmdir on unmodified directories
2725 + err = get_neg_sto_dentry(dentry);
2731 + /* dput base dentry, this will relase the inode and free the
2732 + * dentry, as we will never need it again. */
2733 + dput(dtohd(dentry));
2734 + dtohd(dentry) = NULL;
2735 + dtopd(dentry)->state = DELETED;
2737 + /* add deleted file to META-file */
2738 + meta_add_d_entry(dentry->d_parent,
2739 + dentry->d_name.name,
2740 + dentry->d_name.len);
2743 + else if(dtopd(dentry)->state == CREATED) {
2744 + hidden_sto_dir = itohi2(dir);
2745 + hidden_sto_dentry = dtohd2(dentry);
2747 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry);*/
2748 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
2750 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2751 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2753 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
2756 + /* avoid destroying the hidden inode if the file is in use */
2757 + dget(hidden_sto_dentry);
2759 + /* Delete an old WOL file contained in the storage dir */
2760 + meta_dentry = lookup_one_len(META_FILENAME,
2761 + hidden_sto_dentry,
2762 + strlen(META_FILENAME));
2763 + if(meta_dentry->d_inode) {
2764 + /* is this necessary? dget(meta_dentry); */
2765 + err = vfs_unlink(hidden_sto_dentry->d_inode,
2767 + dput(meta_dentry);
2769 + d_delete(meta_dentry);
2772 + err = vfs_rmdir(hidden_sto_dir, hidden_sto_dentry);
2773 + dput(hidden_sto_dentry);
2775 + d_delete(hidden_sto_dentry);
2777 + /* propagate number of hard-links */
2778 + dentry->d_inode->i_nlink = itohi2(dentry->d_inode)->i_nlink;
2779 + dtopd(dentry)->state = NON_EXISTANT;
2781 + /* was: unlock_dir(hidden_sto_dir_dentry); */
2782 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2783 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2785 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
2787 + dput(hidden_sto_dir_dentry);
2791 + else if(dtopd(dentry)->state == DEL_REWRITTEN) {
2792 + hidden_sto_dir = itohi2(dir);
2793 + hidden_sto_dentry = dtohd2(dentry);
2795 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry);*/
2796 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
2798 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2799 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2801 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
2804 + /* avoid destroying the hidden inode if the file is in use */
2805 + dget(hidden_sto_dentry);
2807 + /* Delete an old WOL file contained in the storage dir */
2808 + meta_dentry = lookup_one_len(META_FILENAME,
2809 + hidden_sto_dentry,
2810 + strlen(META_FILENAME));
2811 + if(meta_dentry->d_inode) {
2812 + /* is this necessary? dget(meta_dentry); */
2813 + err = vfs_unlink(hidden_sto_dentry->d_inode,
2815 + dput(meta_dentry);
2817 + d_delete(meta_dentry);
2820 + err = vfs_rmdir(hidden_sto_dir, hidden_sto_dentry);
2821 + dput(hidden_sto_dentry);
2823 + d_delete(hidden_sto_dentry);
2825 + /* propagate number of hard-links */
2826 + dentry->d_inode->i_nlink = itohi2(dentry->d_inode)->i_nlink;
2827 + dtopd(dentry)->state = DELETED;
2828 + /* was: unlock_dir(hidden_sto_dir_dentry); */
2830 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
2831 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
2833 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
2835 + dput(hidden_sto_dir_dentry);
2839 + printk(KERN_CRIT "mini_fo_rmdir: ERROR, invalid state detected.\n");
2846 + fist_copy_attr_times(dir, itohi2(dentry->d_parent->d_inode));
2854 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2855 +mini_fo_mknod(inode_t *dir, dentry_t *dentry, int mode, dev_t dev)
2857 +mini_fo_mknod(inode_t *dir, dentry_t *dentry, int mode, int dev)
2862 + check_mini_fo_dentry(dentry);
2864 + err = create_sto_nod(dentry, mode, dev);
2866 + printk(KERN_CRIT "mini_fo_mknod: creating sto nod failed.\n");
2870 + check_mini_fo_dentry(dentry);
2876 +mini_fo_rename(inode_t *old_dir, dentry_t *old_dentry,
2877 + inode_t *new_dir, dentry_t *new_dentry)
2880 + if(S_ISDIR(old_dentry->d_inode->i_mode))
2881 + return rename_directory(old_dir, old_dentry, new_dir, new_dentry);
2882 + return rename_nondir(old_dir, old_dentry, new_dir, new_dentry);
2886 +int rename_directory(inode_t *old_dir, dentry_t *old_dentry,
2887 + inode_t *new_dir, dentry_t *new_dentry)
2889 + int err, bpath_len;
2892 + dentry_t *hidden_old_dentry;
2893 + dentry_t *hidden_new_dentry;
2894 + dentry_t *hidden_old_dir_dentry;
2895 + dentry_t *hidden_new_dir_dentry;
2901 + /* this is a test, chuck out if it works */
2902 + if(!(dtopd(new_dentry)->state == DELETED ||
2903 + dtopd(new_dentry)->state == NON_EXISTANT)) {
2904 + printk(KERN_CRIT "mini_fo: rename_directory: \
2905 + uh, ah, new_dentry not negative.\n");
2909 + /* state = UNMODIFIED */
2910 + if(dtopd(old_dentry)->state == UNMODIFIED) {
2911 + err = dir_unmod_to_mod(old_dentry);
2916 + /* state = MODIFIED */
2917 + if(dtopd(old_dentry)->state == MODIFIED) {
2918 + bpath = meta_check_r_entry(old_dentry->d_parent,
2919 + old_dentry->d_name.name,
2920 + old_dentry->d_name.len);
2922 + err = meta_remove_r_entry(old_dentry->d_parent,
2923 + old_dentry->d_name.name,
2924 + old_dentry->d_name.len);
2926 + printk(KERN_CRIT "mini_fo: rename_directory:\
2927 + meta_remove_r_entry \
2931 + err = meta_add_r_entry(new_dentry->d_parent,
2934 + new_dentry->d_name.name,
2935 + new_dentry->d_name.len);
2938 + else {/* wol it */
2939 + err = meta_add_d_entry(old_dentry->d_parent,
2940 + old_dentry->d_name.name,
2941 + old_dentry->d_name.len);
2944 + /* put it on rename list */
2945 + err = get_mini_fo_bpath(old_dentry,
2950 + err = meta_add_r_entry(new_dentry->d_parent,
2952 + new_dentry->d_name.name,
2953 + new_dentry->d_name.len);
2957 + /* no state change, MODIFIED stays MODIFIED */
2959 + /* state = CREATED */
2960 + if(dtopd(old_dentry)->state == CREATED ||
2961 + dtopd(old_dentry)->state == DEL_REWRITTEN) {
2962 + if(dtohd(old_dentry))
2963 + dput(dtohd(old_dentry));
2965 + if(dtopd(new_dentry)->state == DELETED) {
2966 + dtopd(old_dentry)->state = DEL_REWRITTEN;
2967 + dtohd(old_dentry) = NULL;
2969 + else if(dtopd(new_dentry)->state == NON_EXISTANT) {
2970 + dtopd(old_dentry)->state = CREATED;
2971 + /* steal new dentry's neg. base dentry */
2972 + dtohd(old_dentry) = dtohd(new_dentry);
2973 + dtohd(new_dentry) = NULL;
2976 + if(dtopd(new_dentry)->state == UNMODIFIED ||
2977 + dtopd(new_dentry)->state == NON_EXISTANT) {
2978 + err = get_neg_sto_dentry(new_dentry);
2983 + /* now move sto file */
2984 + hidden_old_dentry = dtohd2(old_dentry);
2985 + hidden_new_dentry = dtohd2(new_dentry);
2987 + dget(hidden_old_dentry);
2988 + dget(hidden_new_dentry);
2990 + hidden_old_dir_dentry = dget(hidden_old_dentry->d_parent);
2991 + hidden_new_dir_dentry = dget(hidden_new_dentry->d_parent);
2992 + double_lock(hidden_old_dir_dentry, hidden_new_dir_dentry);
2994 + err = vfs_rename(hidden_old_dir_dentry->d_inode, hidden_old_dentry,
2995 + hidden_new_dir_dentry->d_inode, hidden_new_dentry);
2999 + fist_copy_attr_all(new_dir, hidden_new_dir_dentry->d_inode);
3000 + if (new_dir != old_dir)
3001 + fist_copy_attr_all(old_dir,
3002 + hidden_old_dir_dentry->d_inode);
3005 + /* double_unlock will dput the new/old parent dentries
3006 + * whose refcnts were incremented via get_parent above. */
3007 + double_unlock(hidden_old_dir_dentry, hidden_new_dir_dentry);
3008 + dput(hidden_new_dentry);
3009 + dput(hidden_old_dentry);
3015 +int rename_nondir(inode_t *old_dir, dentry_t *old_dentry,
3016 + inode_t *new_dir, dentry_t *new_dentry)
3020 + check_mini_fo_dentry(old_dentry);
3021 + check_mini_fo_dentry(new_dentry);
3022 + check_mini_fo_inode(old_dir);
3023 + check_mini_fo_inode(new_dir);
3025 + /* state: UNMODIFIED */
3026 + if(dtost(old_dentry) == UNMODIFIED) {
3027 + err = nondir_unmod_to_mod(old_dentry, 1);
3034 + /* the easy states */
3035 + if(exists_in_storage(old_dentry)) {
3037 + dentry_t *hidden_old_dentry;
3038 + dentry_t *hidden_new_dentry;
3039 + dentry_t *hidden_old_dir_dentry;
3040 + dentry_t *hidden_new_dir_dentry;
3042 + /* if old file is MODIFIED, add it to the deleted_list */
3043 + if(dtopd(old_dentry)->state == MODIFIED) {
3044 + meta_add_d_entry(old_dentry->d_parent,
3045 + old_dentry->d_name.name,
3046 + old_dentry->d_name.len);
3048 + dput(dtohd(old_dentry));
3050 + /* if old file is CREATED, we only release the base dentry */
3051 + if(dtopd(old_dentry)->state == CREATED) {
3052 + if(dtohd(old_dentry))
3053 + dput(dtohd(old_dentry));
3056 + /* now setup the new states (depends on new_dentry state) */
3057 + /* new dentry state = MODIFIED */
3058 + if(dtopd(new_dentry)->state == MODIFIED) {
3059 + meta_add_d_entry(new_dentry->d_parent,
3060 + new_dentry->d_name.name,
3061 + new_dentry->d_name.len);
3063 + /* new dentry will be d_put'ed later by the vfs
3064 + * so don't do it here
3065 + * dput(dtohd(new_dentry));
3067 + dtohd(old_dentry) = NULL;
3068 + dtopd(old_dentry)->state = DEL_REWRITTEN;
3070 + /* new dentry state = UNMODIFIED */
3071 + else if(dtopd(new_dentry)->state == UNMODIFIED) {
3072 + if(get_neg_sto_dentry(new_dentry))
3075 + meta_add_d_entry(new_dentry->d_parent,
3076 + new_dentry->d_name.name,
3077 + new_dentry->d_name.len);
3079 + /* is this right??? */
3080 + /*dput(dtohd(new_dentry));*/
3081 + dtohd(old_dentry) = NULL;
3082 + dtopd(old_dentry)->state = DEL_REWRITTEN;
3084 + /* new dentry state = CREATED */
3085 + else if(dtopd(new_dentry)->state == CREATED) {
3086 + /* we keep the neg. base dentry (if exists) */
3087 + dtohd(old_dentry) = dtohd(new_dentry);
3088 + /* ...and set it to Null, or we'll get
3089 + * dcache.c:345 if it gets dput twice... */
3090 + dtohd(new_dentry) = NULL;
3091 + dtopd(old_dentry)->state = CREATED;
3093 + /* new dentry state = NON_EXISTANT */
3094 + else if(dtopd(new_dentry)->state == NON_EXISTANT) {
3095 + if(get_neg_sto_dentry(new_dentry))
3098 + /* we keep the neg. base dentry (if exists) */
3099 + dtohd(old_dentry) = dtohd(new_dentry);
3100 + /* ...and set it to Null, or we'll get
3101 + * Dr. dcache.c:345 if it gets dput twice... */
3102 + dtohd(new_dentry) = NULL;
3103 + dtopd(old_dentry)->state = CREATED;
3105 + /* new dentry state = DEL_REWRITTEN or DELETED */
3106 + else if(dtopd(new_dentry)->state == DEL_REWRITTEN ||
3107 + dtopd(new_dentry)->state == DELETED) {
3108 + dtohd(old_dentry) = NULL;
3109 + dtopd(old_dentry)->state = DEL_REWRITTEN;
3111 + else { /* not possible, uhh, ahh */
3113 + "mini_fo: rename_reg_file: invalid state detected [1].\n");
3117 + /* now we definitely have a sto file */
3118 + hidden_old_dentry = dtohd2(old_dentry);
3119 + hidden_new_dentry = dtohd2(new_dentry);
3121 + dget(hidden_old_dentry);
3122 + dget(hidden_new_dentry);
3124 + hidden_old_dir_dentry = dget(hidden_old_dentry->d_parent);
3125 + hidden_new_dir_dentry = dget(hidden_new_dentry->d_parent);
3126 + double_lock(hidden_old_dir_dentry, hidden_new_dir_dentry);
3128 + err = vfs_rename(hidden_old_dir_dentry->d_inode,
3129 + hidden_old_dentry,
3130 + hidden_new_dir_dentry->d_inode,
3131 + hidden_new_dentry);
3135 + fist_copy_attr_all(new_dir, hidden_new_dir_dentry->d_inode);
3136 + if (new_dir != old_dir)
3137 + fist_copy_attr_all(old_dir, hidden_old_dir_dentry->d_inode);
3140 + /* double_unlock will dput the new/old parent dentries
3141 + * whose refcnts were incremented via get_parent above.
3143 + double_unlock(hidden_old_dir_dentry, hidden_new_dir_dentry);
3144 + dput(hidden_new_dentry);
3145 + dput(hidden_old_dentry);
3149 + else { /* invalid state */
3150 + printk(KERN_CRIT "mini_fo: rename_reg_file: ERROR: invalid state detected [2].\n");
3157 +mini_fo_readlink(dentry_t *dentry, char *buf, int bufsiz)
3160 + dentry_t *hidden_dentry = NULL;
3162 + if(dtohd2(dentry) && dtohd2(dentry)->d_inode) {
3163 + hidden_dentry = dtohd2(dentry);
3164 + } else if(dtohd(dentry) && dtohd(dentry)->d_inode) {
3165 + hidden_dentry = dtohd(dentry);
3170 + if (!hidden_dentry->d_inode->i_op ||
3171 + !hidden_dentry->d_inode->i_op->readlink) {
3172 + err = -EINVAL; goto out;
3175 + err = hidden_dentry->d_inode->i_op->readlink(hidden_dentry,
3179 + fist_copy_attr_atime(dentry->d_inode, hidden_dentry->d_inode);
3186 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13)
3187 +static int mini_fo_follow_link(dentry_t *dentry, struct nameidata *nd)
3189 +static void* mini_fo_follow_link(dentry_t *dentry, struct nameidata *nd)
3193 + int len = PAGE_SIZE, err;
3194 + mm_segment_t old_fs;
3196 + /* in 2.6 this is freed by mini_fo_put_link called by __do_follow_link */
3197 + buf = kmalloc(len, GFP_KERNEL);
3203 + /* read the symlink, and then we will follow it */
3204 + old_fs = get_fs();
3205 + set_fs(KERNEL_DS);
3206 + err = dentry->d_inode->i_op->readlink(dentry, buf, len);
3214 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3215 + nd_set_link(nd, buf);
3218 + err = vfs_follow_link(nd, buf);
3222 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3226 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13)
3229 + return ERR_PTR(err);
3234 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3235 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,13)
3236 +void mini_fo_put_link(struct dentry *dentry, struct nameidata *nd)
3238 +void mini_fo_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
3242 + link = nd_get_link(nd);
3248 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3249 +mini_fo_permission(inode_t *inode, int mask, struct nameidata *nd)
3251 +mini_fo_permission(inode_t *inode, int mask)
3254 + inode_t *hidden_inode;
3258 + if(itohi2(inode)) {
3259 + hidden_inode = itohi2(inode);
3261 + hidden_inode = itohi(inode);
3263 + mode = inode->i_mode;
3265 + /* not really needed, as permission handles everything:
3266 + * err = vfs_permission(inode, mask);
3271 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3272 + err = permission(hidden_inode, mask, nd);
3274 + err = permission(hidden_inode, mask);
3281 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3283 +mini_fo_inode_revalidate(dentry_t *dentry)
3286 + dentry_t *hidden_dentry;
3287 + inode_t *hidden_inode;
3289 + ASSERT(dentry->d_inode);
3290 + ASSERT(itopd(dentry->d_inode));
3292 + if(itohi2(dentry->d_inode)) {
3293 + hidden_dentry = dtohd2(dentry);
3294 + hidden_inode = hidden_dentry->d_inode;
3295 + } else if(itohi(dentry->d_inode)) {
3296 + hidden_dentry = dtohd(dentry);
3297 + hidden_inode = hidden_dentry->d_inode;
3299 + printk(KERN_CRIT "mini_fo_inode_revalidate: ERROR, invalid state detected.\n");
3303 + if (hidden_inode && hidden_inode->i_op && hidden_inode->i_op->revalidate){
3304 + err = hidden_inode->i_op->revalidate(hidden_dentry);
3308 + fist_copy_attr_all(dentry->d_inode, hidden_inode);
3315 +mini_fo_setattr(dentry_t *dentry, struct iattr *ia)
3319 + check_mini_fo_dentry(dentry);
3321 + if(!is_mini_fo_existant(dentry)) {
3322 + printk(KERN_CRIT "mini_fo_setattr: ERROR, invalid state detected [1].\n");
3326 + if(dtost(dentry) == UNMODIFIED) {
3327 + if(!IS_COPY_FLAG(ia->ia_valid))
3328 + goto out; /* we ignore these changes to base */
3330 + if(S_ISDIR(dentry->d_inode->i_mode)) {
3331 + err = dir_unmod_to_mod(dentry);
3333 + /* we copy contents if file is not beeing truncated */
3334 + if(S_ISREG(dentry->d_inode->i_mode) &&
3335 + !(ia->ia_size == 0 && (ia->ia_valid & ATTR_SIZE))) {
3336 + err = nondir_unmod_to_mod(dentry, 1);
3338 + err = nondir_unmod_to_mod(dentry, 0);
3342 + printk(KERN_CRIT "mini_fo_setattr: ERROR changing states.\n");
3346 + if(!exists_in_storage(dentry)) {
3347 + printk(KERN_CRIT "mini_fo_setattr: ERROR, invalid state detected [2].\n");
3351 + ASSERT(dentry->d_inode);
3352 + ASSERT(dtohd2(dentry));
3353 + ASSERT(itopd(dentry->d_inode));
3354 + ASSERT(itohi2(dentry->d_inode));
3356 + err = notify_change(dtohd2(dentry), ia);
3357 + fist_copy_attr_all(dentry->d_inode, itohi2(dentry->d_inode));
3362 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3364 +mini_fo_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
3367 + dentry_t *hidden_dentry;
3369 + ASSERT(dentry->d_inode);
3370 + ASSERT(itopd(dentry->d_inode));
3372 + if(itohi2(dentry->d_inode)) {
3373 + hidden_dentry = dtohd2(dentry);
3374 + } else if(itohi(dentry->d_inode)) {
3375 + hidden_dentry = dtohd(dentry);
3377 + printk(KERN_CRIT "mini_fo_getattr: ERROR, invalid state detected.\n");
3381 + fist_copy_attr_all(dentry->d_inode, hidden_dentry->d_inode);
3383 + ASSERT(hidden_dentry);
3384 + ASSERT(hidden_dentry->d_inode);
3385 + ASSERT(hidden_dentry->d_inode->i_op);
3387 + generic_fillattr(dentry->d_inode, stat);
3388 + if (!stat->blksize) {
3389 + struct super_block *s = hidden_dentry->d_inode->i_sb;
3391 + blocks = (stat->size+s->s_blocksize-1) >> s->s_blocksize_bits;
3392 + stat->blocks = (s->s_blocksize / 512) * blocks;
3393 + stat->blksize = s->s_blocksize;
3400 +#if defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20))
3401 +#if 0 /* no xattr_alloc() and xattr_free() */
3402 +/* This is lifted from fs/xattr.c */
3404 +xattr_alloc(size_t size, size_t limit)
3409 + return ERR_PTR(-E2BIG);
3411 + if (!size) /* size request, no buffer is needed */
3413 + else if (size <= PAGE_SIZE)
3414 + ptr = kmalloc((unsigned long) size, GFP_KERNEL);
3416 + ptr = vmalloc((unsigned long) size);
3418 + return ERR_PTR(-ENOMEM);
3423 +xattr_free(void *ptr, size_t size)
3425 + if (!size) /* size request, no buffer was needed */
3427 + else if (size <= PAGE_SIZE)
3432 +#endif /* no xattr_alloc() and xattr_free() */
3434 +/* BKL held by caller.
3435 + * dentry->d_inode->i_sem down
3438 +mini_fo_getxattr(struct dentry *dentry, const char *name, void *value, size_t size) {
3439 + struct dentry *hidden_dentry = NULL;
3440 + int err = -EOPNOTSUPP;
3441 + /* Define these anyway so we don't need as much ifdef'ed code. */
3442 + char *encoded_name = NULL;
3443 + char *encoded_value = NULL;
3445 + check_mini_fo_dentry(dentry);
3447 + if(exists_in_storage(dentry))
3448 + hidden_dentry = dtohd2(dentry);
3450 + hidden_dentry = dtohd(dentry);
3452 + ASSERT(hidden_dentry);
3453 + ASSERT(hidden_dentry->d_inode);
3454 + ASSERT(hidden_dentry->d_inode->i_op);
3456 + if (hidden_dentry->d_inode->i_op->getxattr) {
3457 + encoded_name = (char *)name;
3458 + encoded_value = (char *)value;
3460 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3461 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
3463 + down(&hidden_dentry->d_inode->i_sem);
3465 + /* lock_kernel() already done by caller. */
3466 + err = hidden_dentry->d_inode->i_op->getxattr(hidden_dentry, encoded_name, encoded_value, size);
3467 + /* unlock_kernel() will be done by caller. */
3468 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3469 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
3471 + up(&hidden_dentry->d_inode->i_sem);
3477 +/* BKL held by caller.
3478 + * dentry->d_inode->i_sem down
3481 +#if ((LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,21) \
3482 + && LINUX_VERSION_CODE <= KERNEL_VERSION(2,4,23)) \
3483 + || LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0))
3484 +mini_fo_setxattr(struct dentry *dentry, const char *name,
3485 + const void *value, size_t size, int flags)
3487 +mini_fo_setxattr(struct dentry *dentry, const char *name,
3488 + void *value, size_t size, int flags)
3492 + struct dentry *hidden_dentry = NULL;
3493 + int err = -EOPNOTSUPP;
3495 + /* Define these anyway, so we don't have as much ifdef'ed code. */
3496 + char *encoded_value = NULL;
3497 + char *encoded_name = NULL;
3499 + check_mini_fo_dentry(dentry);
3501 + if(exists_in_storage(dentry))
3502 + hidden_dentry = dtohd2(dentry);
3504 + hidden_dentry = dtohd(dentry);
3506 + ASSERT(hidden_dentry);
3507 + ASSERT(hidden_dentry->d_inode);
3508 + ASSERT(hidden_dentry->d_inode->i_op);
3510 + if (hidden_dentry->d_inode->i_op->setxattr) {
3511 + encoded_name = (char *)name;
3512 + encoded_value = (char *)value;
3514 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3515 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
3517 + down(&hidden_dentry->d_inode->i_sem);
3519 + /* lock_kernel() already done by caller. */
3520 + err = hidden_dentry->d_inode->i_op->setxattr(hidden_dentry, encoded_name, encoded_value, size, flags);
3521 + /* unlock_kernel() will be done by caller. */
3522 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3523 + mutex_unlock(&hidden_dentry->d_inode->i_mutex);
3525 + up(&hidden_dentry->d_inode->i_sem);
3531 +/* BKL held by caller.
3532 + * dentry->d_inode->i_sem down
3535 +mini_fo_removexattr(struct dentry *dentry, const char *name) {
3536 + struct dentry *hidden_dentry = NULL;
3537 + int err = -EOPNOTSUPP;
3538 + char *encoded_name;
3540 + check_mini_fo_dentry(dentry);
3542 + if(exists_in_storage(dentry))
3543 + hidden_dentry = dtohd2(dentry);
3545 + hidden_dentry = dtohd(dentry);
3547 + ASSERT(hidden_dentry);
3548 + ASSERT(hidden_dentry->d_inode);
3549 + ASSERT(hidden_dentry->d_inode->i_op);
3551 + if (hidden_dentry->d_inode->i_op->removexattr) {
3552 + encoded_name = (char *)name;
3554 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3555 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
3557 + down(&hidden_dentry->d_inode->i_sem);
3559 + /* lock_kernel() already done by caller. */
3560 + err = hidden_dentry->d_inode->i_op->removexattr(hidden_dentry, encoded_name);
3561 + /* unlock_kernel() will be done by caller. */
3562 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3563 + mutex_unlock(&hidden_dentry->d_inode->i_mutex);
3565 + up(&hidden_dentry->d_inode->i_sem);
3571 +/* BKL held by caller.
3572 + * dentry->d_inode->i_sem down
3575 +mini_fo_listxattr(struct dentry *dentry, char *list, size_t size) {
3576 + struct dentry *hidden_dentry = NULL;
3577 + int err = -EOPNOTSUPP;
3578 + char *encoded_list = NULL;
3580 + check_mini_fo_dentry(dentry);
3582 + if(exists_in_storage(dentry))
3583 + hidden_dentry = dtohd2(dentry);
3585 + hidden_dentry = dtohd(dentry);
3587 + ASSERT(hidden_dentry);
3588 + ASSERT(hidden_dentry->d_inode);
3589 + ASSERT(hidden_dentry->d_inode->i_op);
3591 + if (hidden_dentry->d_inode->i_op->listxattr) {
3592 + encoded_list = list;
3594 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3595 + mutex_lock(&hidden_dentry->d_inode->i_mutex);
3597 + down(&hidden_dentry->d_inode->i_sem);
3599 + /* lock_kernel() already done by caller. */
3600 + err = hidden_dentry->d_inode->i_op->listxattr(hidden_dentry, encoded_list, size);
3601 + /* unlock_kernel() will be done by caller. */
3602 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
3603 + mutex_unlock(&hidden_dentry->d_inode->i_mutex);
3605 + up(&hidden_dentry->d_inode->i_sem);
3610 +# endif /* defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20)) */
3612 +struct inode_operations mini_fo_symlink_iops =
3614 + readlink: mini_fo_readlink,
3615 + follow_link: mini_fo_follow_link,
3616 + /* mk: permission: mini_fo_permission, */
3617 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3618 + revalidate: mini_fo_inode_revalidate,
3620 + setattr: mini_fo_setattr,
3621 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3622 + getattr: mini_fo_getattr,
3623 + put_link: mini_fo_put_link,
3626 +#if defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20))
3627 + setxattr: mini_fo_setxattr,
3628 + getxattr: mini_fo_getxattr,
3629 + listxattr: mini_fo_listxattr,
3630 + removexattr: mini_fo_removexattr
3631 +# endif /* defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20)) */
3634 +struct inode_operations mini_fo_dir_iops =
3636 + create: mini_fo_create,
3637 + lookup: mini_fo_lookup,
3638 + link: mini_fo_link,
3639 + unlink: mini_fo_unlink,
3640 + symlink: mini_fo_symlink,
3641 + mkdir: mini_fo_mkdir,
3642 + rmdir: mini_fo_rmdir,
3643 + mknod: mini_fo_mknod,
3644 + rename: mini_fo_rename,
3645 + /* no readlink/follow_link for non-symlinks */
3646 + // off because we have setattr
3647 + // truncate: mini_fo_truncate,
3648 + /* mk:permission: mini_fo_permission, */
3649 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3650 + revalidate: mini_fo_inode_revalidate,
3652 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3653 + getattr: mini_fo_getattr,
3655 + setattr: mini_fo_setattr,
3656 +#if defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20))
3657 + setxattr: mini_fo_setxattr,
3658 + getxattr: mini_fo_getxattr,
3659 + listxattr: mini_fo_listxattr,
3660 + removexattr: mini_fo_removexattr
3661 +# endif /* XATTR && LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20) */
3664 +struct inode_operations mini_fo_main_iops =
3666 + /* permission: mini_fo_permission, */
3667 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3668 + revalidate: mini_fo_inode_revalidate,
3670 + setattr: mini_fo_setattr,
3672 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3673 + getattr: mini_fo_getattr,
3675 +#if defined(XATTR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20))
3676 + setxattr: mini_fo_setxattr,
3677 + getxattr: mini_fo_getxattr,
3678 + listxattr: mini_fo_listxattr,
3679 + removexattr: mini_fo_removexattr
3680 +# endif /* XATTR && LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,20) */
3683 +++ b/fs/mini_fo/main.c
3686 + * Copyright (c) 1997-2003 Erez Zadok
3687 + * Copyright (c) 2001-2003 Stony Brook University
3689 + * For specific licensing information, see the COPYING file distributed with
3690 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
3692 + * This Copyright notice must be kept intact and distributed with all
3693 + * fistgen sources INCLUDING sources generated by fistgen.
3696 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
3698 + * This program is free software; you can redistribute it and/or
3699 + * modify it under the terms of the GNU General Public License
3700 + * as published by the Free Software Foundation; either version
3701 + * 2 of the License, or (at your option) any later version.
3708 +#ifdef HAVE_CONFIG_H
3709 +# include <config.h>
3713 +#include "mini_fo.h"
3714 +#include <linux/module.h>
3716 +/* This definition must only appear after we include <linux/module.h> */
3717 +#ifndef MODULE_LICENSE
3718 +# define MODULE_LICENSE(bison)
3719 +#endif /* not MODULE_LICENSE */
3722 + * This is the mini_fo tri interpose function, which extends the
3723 + * functionality of the regular interpose by interposing a higher
3724 + * level inode on top of two lower level ones: the base filesystem
3725 + * inode and the storage filesystem inode.
3727 + * sb we pass is mini_fo's super_block
3730 +mini_fo_tri_interpose(dentry_t *hidden_dentry,
3731 + dentry_t *hidden_sto_dentry,
3732 + dentry_t *dentry, super_block_t *sb, int flag)
3734 + inode_t *hidden_inode = NULL;
3735 + inode_t *hidden_sto_inode = NULL; /* store corresponding storage inode */
3739 + /* Pointer to hidden_sto_inode if exists, else to hidden_inode.
3740 + * This is used to copy the attributes of the correct inode. */
3741 + inode_t *master_inode;
3744 + hidden_inode = hidden_dentry->d_inode;
3745 + if(hidden_sto_dentry)
3746 + hidden_sto_inode = hidden_sto_dentry->d_inode;
3748 + ASSERT(dentry->d_inode == NULL);
3750 + /* mk: One of the inodes associated with the dentrys is likely to
3751 + * be NULL, so carefull:
3753 + ASSERT((hidden_inode != NULL) || (hidden_sto_inode != NULL));
3755 + if(hidden_sto_inode)
3756 + master_inode = hidden_sto_inode;
3758 + master_inode = hidden_inode;
3761 + * We allocate our new inode below, by calling iget.
3762 + * iget will call our read_inode which will initialize some
3763 + * of the new inode's fields
3767 + * original: inode = iget(sb, hidden_inode->i_ino);
3769 + inode = iget(sb, iunique(sb, 25));
3771 + err = -EACCES; /* should be impossible??? */
3776 + * interpose the inode if not already interposed
3777 + * this is possible if the inode is being reused
3778 + * XXX: what happens if we get_empty_inode() but there's another already?
3779 + * for now, ASSERT() that this can't happen; fix later.
3781 + if (itohi(inode) != NULL) {
3782 + printk(KERN_CRIT "mini_fo_tri_interpose: itohi(inode) != NULL.\n");
3784 + if (itohi2(inode) != NULL) {
3785 + printk(KERN_CRIT "mini_fo_tri_interpose: itohi2(inode) != NULL.\n");
3788 + /* mk: Carefull, igrab can't handle NULL inodes (ok, why should it?), so
3789 + * we need to check here:
3792 + itohi(inode) = igrab(hidden_inode);
3794 + itohi(inode) = NULL;
3796 + if(hidden_sto_inode)
3797 + itohi2(inode) = igrab(hidden_sto_inode);
3799 + itohi2(inode) = NULL;
3802 + /* Use different set of inode ops for symlinks & directories*/
3803 + if (S_ISLNK(master_inode->i_mode))
3804 + inode->i_op = &mini_fo_symlink_iops;
3805 + else if (S_ISDIR(master_inode->i_mode))
3806 + inode->i_op = &mini_fo_dir_iops;
3808 + /* Use different set of file ops for directories */
3809 + if (S_ISDIR(master_inode->i_mode))
3810 + inode->i_fop = &mini_fo_dir_fops;
3812 + /* properly initialize special inodes */
3813 + if (S_ISBLK(master_inode->i_mode) || S_ISCHR(master_inode->i_mode) ||
3814 + S_ISFIFO(master_inode->i_mode) || S_ISSOCK(master_inode->i_mode)) {
3815 + init_special_inode(inode, master_inode->i_mode, master_inode->i_rdev);
3818 + /* Fix our inode's address operations to that of the lower inode */
3819 + if (inode->i_mapping->a_ops != master_inode->i_mapping->a_ops) {
3820 + inode->i_mapping->a_ops = master_inode->i_mapping->a_ops;
3823 + /* only (our) lookup wants to do a d_add */
3825 + d_add(dentry, inode);
3827 + d_instantiate(dentry, inode);
3829 + ASSERT(dtopd(dentry) != NULL);
3831 + /* all well, copy inode attributes */
3832 + fist_copy_attr_all(inode, master_inode);
3838 +/* parse mount options "base=" and "sto=" */
3840 +mini_fo_parse_options(super_block_t *sb, char *options)
3842 + dentry_t *hidden_root = ERR_PTR(-EINVAL);
3843 + dentry_t *hidden_root2 = ERR_PTR(-EINVAL);
3844 + struct nameidata nd, nd2;
3845 + char *name, *tmp, *end;
3848 + /* We don't want to go off the end of our arguments later on. */
3849 + for (end = options; *end; end++);
3851 + while (options < end) {
3853 + while (*tmp && *tmp != ',')
3856 + if (!strncmp("base=", options, 5)) {
3857 + name = options + 5;
3858 + printk(KERN_INFO "mini_fo: using base directory: %s\n", name);
3860 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3861 + if (path_init(name, LOOKUP_FOLLOW, &nd))
3862 + err = path_walk(name, &nd);
3864 + err = path_lookup(name, LOOKUP_FOLLOW, &nd);
3867 + printk(KERN_CRIT "mini_fo: error accessing hidden directory '%s'\n", name);
3868 + hidden_root = ERR_PTR(err);
3871 + hidden_root = nd.dentry;
3872 + stopd(sb)->base_dir_dentry = nd.dentry;
3873 + stopd(sb)->hidden_mnt = nd.mnt;
3875 + } else if(!strncmp("sto=", options, 4)) {
3876 + /* parse the storage dir */
3877 + name = options + 4;
3878 + printk(KERN_INFO "mini_fo: using storage directory: %s\n", name);
3879 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3880 + if(path_init(name, LOOKUP_FOLLOW, &nd2))
3881 + err = path_walk(name, &nd2);
3883 + err = path_lookup(name, LOOKUP_FOLLOW, &nd2);
3886 + printk(KERN_CRIT "mini_fo: error accessing hidden storage directory '%s'\n", name);
3888 + hidden_root2 = ERR_PTR(err);
3891 + hidden_root2 = nd2.dentry;
3892 + stopd(sb)->storage_dir_dentry = nd2.dentry;
3893 + stopd(sb)->hidden_mnt2 = nd2.mnt;
3894 + stohs2(sb) = hidden_root2->d_sb;
3896 + /* validate storage dir, this is done in
3897 + * mini_fo_read_super for the base directory.
3899 + if (IS_ERR(hidden_root2)) {
3900 + printk(KERN_WARNING "mini_fo_parse_options: storage dentry lookup failed (err = %ld)\n", PTR_ERR(hidden_root2));
3903 + if (!hidden_root2->d_inode) {
3904 + printk(KERN_WARNING "mini_fo_parse_options: no storage dir to interpose on.\n");
3907 + stohs2(sb) = hidden_root2->d_sb;
3909 + printk(KERN_WARNING "mini_fo: unrecognized option '%s'\n", options);
3910 + hidden_root = ERR_PTR(-EINVAL);
3913 + options = tmp + 1;
3917 + if(IS_ERR(hidden_root2))
3918 + return hidden_root2;
3919 + return hidden_root;
3923 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
3928 +mini_fo_read_super(super_block_t *sb, void *raw_data, int silent)
3930 + dentry_t *hidden_root;
3934 + printk(KERN_WARNING "mini_fo_read_super: missing argument\n");
3939 + * Allocate superblock private data
3941 + __stopd(sb) = kmalloc(sizeof(struct mini_fo_sb_info), GFP_KERNEL);
3943 + printk(KERN_WARNING "%s: out of memory\n", __FUNCTION__);
3949 + hidden_root = mini_fo_parse_options(sb, raw_data);
3950 + if (IS_ERR(hidden_root)) {
3951 + printk(KERN_WARNING "mini_fo_read_super: lookup_dentry failed (err = %ld)\n", PTR_ERR(hidden_root));
3952 + err = PTR_ERR(hidden_root);
3955 + if (!hidden_root->d_inode) {
3956 + printk(KERN_WARNING "mini_fo_read_super: no directory to interpose on\n");
3959 + stohs(sb) = hidden_root->d_sb;
3962 + * Linux 2.4.2-ac3 and beyond has code in
3963 + * mm/filemap.c:generic_file_write() that requires sb->s_maxbytes
3964 + * to be populated. If not set, all write()s under that sb will
3967 + * Linux 2.4.4+ automatically sets s_maxbytes to MAX_NON_LFS;
3968 + * the filesystem should override it only if it supports LFS.
3970 + /* non-SCA code is good to go with LFS */
3971 + sb->s_maxbytes = hidden_root->d_sb->s_maxbytes;
3973 + sb->s_op = &mini_fo_sops;
3975 + * we can't use d_alloc_root if we want to use
3976 + * our own interpose function unchanged,
3977 + * so we simply replicate *most* of the code in d_alloc_root here
3979 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
3980 + sb->s_root = d_alloc(NULL, &(const struct qstr) { "/", 1, 0 });
3982 + sb->s_root = d_alloc(NULL, &(const struct qstr){hash: 0, name: "/", len : 1});
3984 + if (IS_ERR(sb->s_root)) {
3985 + printk(KERN_WARNING "mini_fo_read_super: d_alloc failed\n");
3990 + sb->s_root->d_op = &mini_fo_dops;
3991 + sb->s_root->d_sb = sb;
3992 + sb->s_root->d_parent = sb->s_root;
3994 + /* link the upper and lower dentries */
3995 + __dtopd(sb->s_root) = (struct mini_fo_dentry_info *)
3996 + kmalloc(sizeof(struct mini_fo_dentry_info), GFP_KERNEL);
3997 + if (!dtopd(sb->s_root)) {
4001 + dtopd(sb->s_root)->state = MODIFIED;
4002 + dtohd(sb->s_root) = hidden_root;
4004 + /* fanout relevant, interpose on storage root dentry too */
4005 + dtohd2(sb->s_root) = stopd(sb)->storage_dir_dentry;
4007 + /* ...and call tri-interpose to interpose root dir inodes
4008 + * if (mini_fo_interpose(hidden_root, sb->s_root, sb, 0))
4010 + if(mini_fo_tri_interpose(hidden_root, dtohd2(sb->s_root), sb->s_root, sb, 0))
4013 + /* initalize the wol list */
4014 + itopd(sb->s_root->d_inode)->deleted_list_size = -1;
4015 + itopd(sb->s_root->d_inode)->renamed_list_size = -1;
4016 + meta_build_lists(sb->s_root);
4023 + dput(hidden_root);
4024 + dput(dtohd2(sb->s_root)); /* release the hidden_sto_dentry too */
4027 + __stopd(sb) = NULL;
4030 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4034 + return ERR_PTR(err);
4041 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4042 +static struct super_block *mini_fo_get_sb(struct file_system_type *fs_type,
4043 + int flags, const char *dev_name,
4046 + return get_sb_nodev(fs_type, flags, raw_data, mini_fo_read_super);
4049 +void mini_fo_kill_block_super(struct super_block *sb)
4051 + generic_shutdown_super(sb);
4053 + * XXX: BUG: Halcrow: Things get unstable sometime after this point:
4054 + * lib/rwsem-spinlock.c:127: spin_is_locked on uninitialized
4055 + * fs/fs-writeback.c:402: spin_lock(fs/super.c:a0381828) already
4056 + * locked by fs/fs-writeback.c/402
4058 + * Apparently, someone's not releasing a lock on sb_lock...
4062 +static struct file_system_type mini_fo_fs_type = {
4063 + .owner = THIS_MODULE,
4064 + .name = "mini_fo",
4065 + .get_sb = mini_fo_get_sb,
4066 + .kill_sb = mini_fo_kill_block_super,
4072 +static DECLARE_FSTYPE(mini_fo_fs_type, "mini_fo", mini_fo_read_super, 0);
4075 +static int __init init_mini_fo_fs(void)
4077 + printk("Registering mini_fo version $Id$\n");
4078 + return register_filesystem(&mini_fo_fs_type);
4080 +static void __exit exit_mini_fo_fs(void)
4082 + printk("Unregistering mini_fo version $Id$\n");
4083 + unregister_filesystem(&mini_fo_fs_type);
4086 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
4090 +MODULE_AUTHOR("Erez Zadok <ezk@cs.sunysb.edu>");
4091 +MODULE_DESCRIPTION("FiST-generated mini_fo filesystem");
4092 +MODULE_LICENSE("GPL");
4094 +/* MODULE_PARM(fist_debug_var, "i"); */
4095 +/* MODULE_PARM_DESC(fist_debug_var, "Debug level"); */
4097 +module_init(init_mini_fo_fs)
4098 +module_exit(exit_mini_fo_fs)
4100 +++ b/fs/mini_fo/Makefile
4103 +# Makefile for mini_fo 2.4 and 2.6 Linux kernels
4105 +# Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
4107 +# This program is free software; you can redistribute it and/or
4108 +# modify it under the terms of the GNU General Public License
4109 +# as published by the Free Software Foundation; either version
4110 +# 2 of the License, or (at your option) any later version.
4113 +obj-$(CONFIG_MINI_FO) := mini_fo.o
4114 +mini_fo-objs := meta.o dentry.o file.o inode.o main.o super.o state.o aux.o
4116 +O_TARGET := $(obj-$(CONFIG_MINI_FO))
4117 +obj-y := $(mini_fo-objs)
4119 +-include $(TOPDIR)/Rules.make
4122 +${mini_fo-objs}: mini_fo.h fist.h
4125 +++ b/fs/mini_fo/meta.c
4128 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
4130 + * This program is free software; you can redistribute it and/or
4131 + * modify it under the terms of the GNU General Public License
4132 + * as published by the Free Software Foundation; either version
4133 + * 2 of the License, or (at your option) any later version.
4136 +#ifdef HAVE_CONFIG_H
4137 +# include <config.h>
4138 +#endif /* HAVE_CONFIG_H */
4140 +#include "mini_fo.h"
4142 +int meta_build_lists(dentry_t *dentry)
4144 + struct mini_fo_inode_info *inode_info;
4146 + dentry_t *meta_dentry = 0;
4147 + file_t *meta_file = 0;
4148 + mm_segment_t old_fs;
4152 + struct vfsmount *meta_mnt;
4155 + inode_info = itopd(dentry->d_inode);
4156 + if(!(inode_info->deleted_list_size == -1 &&
4157 + inode_info->renamed_list_size == -1)) {
4158 + printk(KERN_CRIT "mini_fo: meta_build_lists: \
4159 + Error, list(s) not virgin.\n");
4163 + /* init our meta lists */
4164 + INIT_LIST_HEAD(&inode_info->deleted_list);
4165 + inode_info->deleted_list_size = 0;
4167 + INIT_LIST_HEAD(&inode_info->renamed_list);
4168 + inode_info->renamed_list_size = 0;
4170 + /* might there be a META-file? */
4171 + if(dtohd2(dentry) && dtohd2(dentry)->d_inode) {
4172 + meta_dentry = lookup_one_len(META_FILENAME,
4174 + strlen(META_FILENAME));
4175 + if(!meta_dentry->d_inode) {
4176 + dput(meta_dentry);
4179 + /* $%& err, is this correct? */
4180 + meta_mnt = stopd(dentry->d_inode->i_sb)->hidden_mnt2;
4184 + /* open META-file for reading */
4185 + meta_file = dentry_open(meta_dentry, meta_mnt, 0x0);
4186 + if(!meta_file || IS_ERR(meta_file)) {
4187 + printk(KERN_CRIT "mini_fo: meta_build_lists: \
4188 + ERROR opening META file.\n");
4192 + /* check if fs supports reading */
4193 + if(!meta_file->f_op->read) {
4194 + printk(KERN_CRIT "mini_fo: meta_build_lists: \
4195 + ERROR, fs does not support reading.\n");
4196 + goto out_err_close;
4199 + /* allocate a page for transfering the data */
4200 + buf = (void *) __get_free_page(GFP_KERNEL);
4202 + printk(KERN_CRIT "mini_fo: meta_build_lists: \
4203 + ERROR, out of mem.\n");
4204 + goto out_err_close;
4206 + meta_file->f_pos = 0;
4207 + old_fs = get_fs();
4208 + set_fs(KERNEL_DS);
4211 + bytes = meta_file->f_op->read(meta_file, buf, PAGE_SIZE, &meta_file->f_pos);
4212 + if(bytes == PAGE_SIZE) {
4213 + /* trim a cut off filename and adjust f_pos to get it next time */
4214 + for(c = (char*) buf+PAGE_SIZE;
4216 + c--, bytes--, meta_file->f_pos--);
4218 + entry = (char *) buf;
4219 + while(entry < (char *) buf+bytes) {
4223 + int old_len, new_len;
4225 + /* len without '\n'*/
4226 + len = (int) (strchr(entry, '\n') - entry);
4229 + /* format: "D filename" */
4230 + meta_list_add_d_entry(dentry,
4235 + /* format: "R path/xy/dir newDir" */
4236 + old_path = entry+2;
4237 + dir_name = strchr(old_path, ' ') + 1;
4238 + old_len = dir_name - old_path - 1;
4239 + new_len = ((int) entry) + len - ((int ) dir_name);
4240 + meta_list_add_r_entry(dentry,
4247 + /* unknown entry type detected */
4253 + } while(meta_file->f_pos < meta_dentry->d_inode->i_size);
4255 + free_page((unsigned long) buf);
4265 + dput(meta_dentry);
4268 + return 1; /* check this!!! inode_info->wol_size; */
4271 +/* cleanups up all lists and free's the mem by dentry */
4272 +int meta_put_lists(dentry_t *dentry)
4274 + if(!dentry || !dentry->d_inode) {
4275 + printk("mini_fo: meta_put_lists: invalid dentry passed.\n");
4278 + return __meta_put_lists(dentry->d_inode);
4281 +/* cleanups up all lists and free's the mem by inode */
4282 +int __meta_put_lists(inode_t *inode)
4285 + if(!inode || !itopd(inode)) {
4286 + printk("mini_fo: __meta_put_lists: invalid inode passed.\n");
4289 + err = __meta_put_d_list(inode);
4290 + err |= __meta_put_r_list(inode);
4294 +int meta_sync_lists(dentry_t *dentry)
4297 + if(!dentry || !dentry->d_inode) {
4298 + printk("mini_fo: meta_sync_lists: \
4299 + invalid dentry passed.\n");
4302 + err = meta_sync_d_list(dentry, 0);
4303 + err |= meta_sync_r_list(dentry, 1);
4308 +/* remove all D entries from the renamed list and free the mem */
4309 +int __meta_put_d_list(inode_t *inode)
4311 + struct list_head *tmp;
4312 + struct deleted_entry *del_entry;
4313 + struct mini_fo_inode_info *inode_info;
4315 + if(!inode || !itopd(inode)) {
4316 + printk(KERN_CRIT "mini_fo: __meta_put_d_list: \
4317 + invalid inode passed.\n");
4320 + inode_info = itopd(inode);
4322 + /* nuke the DELETED-list */
4323 + if(inode_info->deleted_list_size <= 0)
4326 + while(!list_empty(&inode_info->deleted_list)) {
4327 + tmp = inode_info->deleted_list.next;
4329 + del_entry = list_entry(tmp, struct deleted_entry, list);
4330 + kfree(del_entry->name);
4333 + inode_info->deleted_list_size = 0;
4338 +/* remove all R entries from the renamed list and free the mem */
4339 +int __meta_put_r_list(inode_t *inode)
4341 + struct list_head *tmp;
4342 + struct renamed_entry *ren_entry;
4343 + struct mini_fo_inode_info *inode_info;
4345 + if(!inode || !itopd(inode)) {
4346 + printk(KERN_CRIT "mini_fo: meta_put_r_list: invalid inode.\n");
4349 + inode_info = itopd(inode);
4351 + /* nuke the RENAMED-list */
4352 + if(inode_info->renamed_list_size <= 0)
4355 + while(!list_empty(&inode_info->renamed_list)) {
4356 + tmp = inode_info->renamed_list.next;
4358 + ren_entry = list_entry(tmp, struct renamed_entry, list);
4359 + kfree(ren_entry->new_name);
4360 + kfree(ren_entry->old_name);
4363 + inode_info->renamed_list_size = 0;
4368 +int meta_add_d_entry(dentry_t *dentry, const char *name, int len)
4371 + err = meta_list_add_d_entry(dentry, name, len);
4372 + err |= meta_write_d_entry(dentry,name,len);
4376 +/* add a D entry to the deleted list */
4377 +int meta_list_add_d_entry(dentry_t *dentry, const char *name, int len)
4379 + struct deleted_entry *del_entry;
4380 + struct mini_fo_inode_info *inode_info;
4382 + if(!dentry || !dentry->d_inode) {
4383 + printk(KERN_CRIT "mini_fo: meta_list_add_d_entry: \
4384 + invalid dentry passed.\n");
4387 + inode_info = itopd(dentry->d_inode);
4389 + if(inode_info->deleted_list_size < 0)
4392 + del_entry = (struct deleted_entry *)
4393 + kmalloc(sizeof(struct deleted_entry), GFP_KERNEL);
4394 + del_entry->name = (char*) kmalloc(len, GFP_KERNEL);
4395 + if(!del_entry || !del_entry->name) {
4396 + printk(KERN_CRIT "mini_fo: meta_list_add_d_entry: \
4398 + kfree(del_entry->name);
4403 + strncpy(del_entry->name, name, len);
4404 + del_entry->len = len;
4406 + list_add(&del_entry->list, &inode_info->deleted_list);
4407 + inode_info->deleted_list_size++;
4411 +int meta_add_r_entry(dentry_t *dentry,
4412 + const char *old_name, int old_len,
4413 + const char *new_name, int new_len)
4416 + err = meta_list_add_r_entry(dentry,
4417 + old_name, old_len,
4418 + new_name, new_len);
4419 + err |= meta_write_r_entry(dentry,
4420 + old_name, old_len,
4421 + new_name, new_len);
4425 +/* add a R entry to the renamed list */
4426 +int meta_list_add_r_entry(dentry_t *dentry,
4427 + const char *old_name, int old_len,
4428 + const char *new_name, int new_len)
4430 + struct renamed_entry *ren_entry;
4431 + struct mini_fo_inode_info *inode_info;
4433 + if(!dentry || !dentry->d_inode) {
4434 + printk(KERN_CRIT "mini_fo: meta_list_add_r_entry: \
4435 + invalid dentry passed.\n");
4438 + inode_info = itopd(dentry->d_inode);
4440 + if(inode_info->renamed_list_size < 0)
4443 + ren_entry = (struct renamed_entry *)
4444 + kmalloc(sizeof(struct renamed_entry), GFP_KERNEL);
4445 + ren_entry->old_name = (char*) kmalloc(old_len, GFP_KERNEL);
4446 + ren_entry->new_name = (char*) kmalloc(new_len, GFP_KERNEL);
4448 + if(!ren_entry || !ren_entry->old_name || !ren_entry->new_name) {
4449 + printk(KERN_CRIT "mini_fo: meta_list_add_r_entry: \
4451 + kfree(ren_entry->new_name);
4452 + kfree(ren_entry->old_name);
4457 + strncpy(ren_entry->old_name, old_name, old_len);
4458 + ren_entry->old_len = old_len;
4459 + strncpy(ren_entry->new_name, new_name, new_len);
4460 + ren_entry->new_len = new_len;
4462 + list_add(&ren_entry->list, &inode_info->renamed_list);
4463 + inode_info->renamed_list_size++;
4468 +int meta_remove_r_entry(dentry_t *dentry, const char *name, int len)
4471 + if(!dentry || !dentry->d_inode) {
4473 + "mini_fo: meta_remove_r_entry: \
4474 + invalid dentry passed.\n");
4478 + err = meta_list_remove_r_entry(dentry, name, len);
4479 + err |= meta_sync_lists(dentry);
4483 +int meta_list_remove_r_entry(dentry_t *dentry, const char *name, int len)
4485 + if(!dentry || !dentry->d_inode) {
4487 + "mini_fo: meta_list_remove_r_entry: \
4488 + invalid dentry passed.\n");
4491 + return __meta_list_remove_r_entry(dentry->d_inode, name, len);
4494 +int __meta_list_remove_r_entry(inode_t *inode, const char *name, int len)
4496 + struct list_head *tmp;
4497 + struct renamed_entry *ren_entry;
4498 + struct mini_fo_inode_info *inode_info;
4500 + if(!inode || !itopd(inode))
4502 + "mini_fo: __meta_list_remove_r_entry: \
4503 + invalid inode passed.\n");
4504 + inode_info = itopd(inode);
4506 + if(inode_info->renamed_list_size < 0)
4508 + if(inode_info->renamed_list_size == 0)
4511 + list_for_each(tmp, &inode_info->renamed_list) {
4512 + ren_entry = list_entry(tmp, struct renamed_entry, list);
4513 + if(ren_entry->new_len != len)
4516 + if(!strncmp(ren_entry->new_name, name, len)) {
4518 + kfree(ren_entry->new_name);
4519 + kfree(ren_entry->old_name);
4521 + inode_info->renamed_list_size--;
4529 +/* append a single D entry to the meta file */
4530 +int meta_write_d_entry(dentry_t *dentry, const char *name, int len)
4532 + dentry_t *meta_dentry = 0;
4533 + file_t *meta_file = 0;
4534 + mm_segment_t old_fs;
4537 + struct vfsmount *meta_mnt = 0;
4542 + if(itopd(dentry->d_inode)->deleted_list_size < 0) {
4547 + if(dtopd(dentry)->state == UNMODIFIED) {
4548 + err = build_sto_structure(dentry->d_parent, dentry);
4550 + printk(KERN_CRIT "mini_fo: meta_write_d_entry: \
4551 + build_sto_structure failed.\n");
4555 + meta_dentry = lookup_one_len(META_FILENAME,
4556 + dtohd2(dentry), strlen (META_FILENAME));
4558 + /* We need to create a META-file */
4559 + if(!meta_dentry->d_inode) {
4560 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4561 + vfs_create(dtohd2(dentry)->d_inode,
4563 + S_IRUSR | S_IWUSR,
4566 + vfs_create(dtohd2(dentry)->d_inode,
4568 + S_IRUSR | S_IWUSR);
4571 + /* open META-file for writing */
4572 + meta_file = dentry_open(meta_dentry, meta_mnt, 0x1);
4573 + if(!meta_file || IS_ERR(meta_file)) {
4574 + printk(KERN_CRIT "mini_fo: meta_write_d_entry: \
4575 + ERROR opening meta file.\n");
4576 + mntput(meta_mnt); /* $%& is this necessary? */
4577 + dput(meta_dentry);
4582 + /* check if fs supports writing */
4583 + if(!meta_file->f_op->write) {
4584 + printk(KERN_CRIT "mini_fo: meta_write_d_entry: \
4585 + ERROR, fs does not support writing.\n");
4586 + goto out_err_close;
4589 + meta_file->f_pos = meta_dentry->d_inode->i_size; /* append */
4590 + old_fs = get_fs();
4591 + set_fs(KERNEL_DS);
4593 + /* size: len for name, 1 for \n and 2 for "D " */
4594 + buf = (char *) kmalloc(len+3, GFP_KERNEL);
4596 + printk(KERN_CRIT "mini_fo: meta_write_d_entry: \
4603 + strncpy(buf+2, name, len);
4604 + buf[len+2] = '\n';
4605 + bytes = meta_file->f_op->write(meta_file, buf, len+3,
4606 + &meta_file->f_pos);
4607 + if(bytes != len+3) {
4608 + printk(KERN_CRIT "mini_fo: meta_write_d_entry: \
4609 + ERROR writing.\n");
4621 +/* append a single R entry to the meta file */
4622 +int meta_write_r_entry(dentry_t *dentry,
4623 + const char *old_name, int old_len,
4624 + const char *new_name, int new_len)
4626 + dentry_t *meta_dentry = 0;
4627 + file_t *meta_file = 0;
4628 + mm_segment_t old_fs;
4630 + int bytes, err, buf_len;
4631 + struct vfsmount *meta_mnt = 0;
4637 + if(itopd(dentry->d_inode)->renamed_list_size < 0) {
4642 + /* build the storage structure? */
4643 + if(dtopd(dentry)->state == UNMODIFIED) {
4644 + err = build_sto_structure(dentry->d_parent, dentry);
4646 + printk(KERN_CRIT "mini_fo: meta_write_r_entry: \
4647 + build_sto_structure failed.\n");
4651 + meta_dentry = lookup_one_len(META_FILENAME,
4653 + strlen (META_FILENAME));
4654 + if(!meta_dentry->d_inode) {
4655 + /* We need to create a META-file */
4656 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4657 + vfs_create(dtohd2(dentry)->d_inode,
4658 + meta_dentry, S_IRUSR | S_IWUSR, NULL);
4660 + vfs_create(dtohd2(dentry)->d_inode,
4661 + meta_dentry, S_IRUSR | S_IWUSR);
4664 + /* open META-file for writing */
4665 + meta_file = dentry_open(meta_dentry, meta_mnt, 0x1);
4666 + if(!meta_file || IS_ERR(meta_file)) {
4667 + printk(KERN_CRIT "mini_fo: meta_write_r_entry: \
4668 + ERROR opening meta file.\n");
4670 + dput(meta_dentry);
4675 + /* check if fs supports writing */
4676 + if(!meta_file->f_op->write) {
4677 + printk(KERN_CRIT "mini_fo: meta_write_r_entry: \
4678 + ERROR, fs does not support writing.\n");
4679 + goto out_err_close;
4682 + meta_file->f_pos = meta_dentry->d_inode->i_size; /* append */
4683 + old_fs = get_fs();
4684 + set_fs(KERNEL_DS);
4686 + /* size: 2 for "R ", old_len+new_len for names, 1 blank+1 \n */
4687 + buf_len = old_len + new_len + 4;
4688 + buf = (char *) kmalloc(buf_len, GFP_KERNEL);
4690 + printk(KERN_CRIT "mini_fo: meta_write_r_entry: out of mem.\n");
4696 + strncpy(buf + 2, old_name, old_len);
4697 + buf[old_len + 2] = ' ';
4698 + strncpy(buf + old_len + 3, new_name, new_len);
4699 + buf[buf_len -1] = '\n';
4700 + bytes = meta_file->f_op->write(meta_file, buf, buf_len, &meta_file->f_pos);
4701 + if(bytes != buf_len) {
4702 + printk(KERN_CRIT "mini_fo: meta_write_r_entry: ERROR writing.\n");
4715 +/* sync D list to disk, append data if app_flag is 1 */
4716 +/* check the meta_mnt, which seems not to be used (properly) */
4718 +int meta_sync_d_list(dentry_t *dentry, int app_flag)
4720 + dentry_t *meta_dentry;
4721 + file_t *meta_file;
4722 + mm_segment_t old_fs;
4725 + struct vfsmount *meta_mnt;
4728 + struct list_head *tmp;
4729 + struct deleted_entry *del_entry;
4730 + struct mini_fo_inode_info *inode_info;
4736 + if(!dentry || !dentry->d_inode) {
4737 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4738 + invalid inode passed.\n");
4742 + inode_info = itopd(dentry->d_inode);
4744 + if(inode_info->deleted_list_size < 0) {
4749 + /* ok, there is something to sync */
4751 + /* build the storage structure? */
4752 + if(!dtohd2(dentry) && !itohi2(dentry->d_inode)) {
4753 + err = build_sto_structure(dentry->d_parent, dentry);
4755 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4756 + build_sto_structure failed.\n");
4760 + meta_dentry = lookup_one_len(META_FILENAME,
4762 + strlen(META_FILENAME));
4763 + if(!meta_dentry->d_inode) {
4764 + /* We need to create a META-file */
4765 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4766 + vfs_create(dtohd2(dentry)->d_inode,
4767 + meta_dentry, S_IRUSR | S_IWUSR, NULL);
4769 + vfs_create(dtohd2(dentry)->d_inode,
4770 + meta_dentry, S_IRUSR | S_IWUSR);
4774 + /* need we truncate the meta file? */
4776 + struct iattr newattrs;
4777 + newattrs.ia_size = 0;
4778 + newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
4780 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
4781 + mutex_lock(&meta_dentry->d_inode->i_mutex);
4783 + down(&meta_dentry->d_inode->i_sem);
4785 + err = notify_change(meta_dentry, &newattrs);
4787 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
4788 + mutex_unlock(&meta_dentry->d_inode->i_mutex);
4790 + up(&meta_dentry->d_inode->i_sem);
4793 + if(err || meta_dentry->d_inode->i_size != 0) {
4794 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4795 + ERROR truncating meta file.\n");
4796 + goto out_err_close;
4800 + /* open META-file for writing */
4801 + meta_file = dentry_open(meta_dentry, meta_mnt, 0x1);
4802 + if(!meta_file || IS_ERR(meta_file)) {
4803 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4804 + ERROR opening meta file.\n");
4805 + /* we don't mntget so we dont't mntput (for now)
4806 + * mntput(meta_mnt);
4808 + dput(meta_dentry);
4813 + /* check if fs supports writing */
4814 + if(!meta_file->f_op->write) {
4815 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4816 + ERROR, fs does not support writing.\n");
4817 + goto out_err_close;
4820 + meta_file->f_pos = meta_dentry->d_inode->i_size; /* append */
4821 + old_fs = get_fs();
4822 + set_fs(KERNEL_DS);
4824 + /* here we go... */
4825 + list_for_each(tmp, &inode_info->deleted_list) {
4826 + del_entry = list_entry(tmp, struct deleted_entry, list);
4828 + /* size: len for name, 1 for \n and 2 for "D " */
4829 + buf = (char *) kmalloc(del_entry->len+3, GFP_KERNEL);
4831 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4838 + strncpy(buf+2, del_entry->name, del_entry->len);
4839 + buf[del_entry->len+2] = '\n';
4840 + bytes = meta_file->f_op->write(meta_file, buf,
4842 + &meta_file->f_pos);
4843 + if(bytes != del_entry->len+3) {
4844 + printk(KERN_CRIT "mini_fo: meta_sync_d_list: \
4845 + ERROR writing.\n");
4859 +int meta_sync_r_list(dentry_t *dentry, int app_flag)
4861 + dentry_t *meta_dentry;
4862 + file_t *meta_file;
4863 + mm_segment_t old_fs;
4865 + int bytes, err, buf_len;
4866 + struct vfsmount *meta_mnt;
4869 + struct list_head *tmp;
4870 + struct renamed_entry *ren_entry;
4871 + struct mini_fo_inode_info *inode_info;
4877 + if(!dentry || !dentry->d_inode) {
4878 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4879 + invalid dentry passed.\n");
4883 + inode_info = itopd(dentry->d_inode);
4885 + if(inode_info->deleted_list_size < 0) {
4890 + /* ok, there is something to sync */
4892 + /* build the storage structure? */
4893 + if(!dtohd2(dentry) && !itohi2(dentry->d_inode)) {
4894 + err = build_sto_structure(dentry->d_parent, dentry);
4896 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4897 + build_sto_structure failed.\n");
4901 + meta_dentry = lookup_one_len(META_FILENAME,
4903 + strlen(META_FILENAME));
4904 + if(!meta_dentry->d_inode) {
4905 + /* We need to create a META-file */
4906 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
4907 + vfs_create(dtohd2(dentry)->d_inode,
4908 + meta_dentry, S_IRUSR | S_IWUSR, NULL);
4910 + vfs_create(dtohd2(dentry)->d_inode,
4911 + meta_dentry, S_IRUSR | S_IWUSR);
4915 + /* need we truncate the meta file? */
4917 + struct iattr newattrs;
4918 + newattrs.ia_size = 0;
4919 + newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME;
4921 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
4922 + mutex_lock(&meta_dentry->d_inode->i_mutex);
4924 + down(&meta_dentry->d_inode->i_sem);
4926 + err = notify_change(meta_dentry, &newattrs);
4928 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
4929 + mutex_unlock(&meta_dentry->d_inode->i_mutex);
4931 + up(&meta_dentry->d_inode->i_sem);
4933 + if(err || meta_dentry->d_inode->i_size != 0) {
4934 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4935 + ERROR truncating meta file.\n");
4936 + goto out_err_close;
4940 + /* open META-file for writing */
4941 + meta_file = dentry_open(meta_dentry, meta_mnt, 0x1);
4942 + if(!meta_file || IS_ERR(meta_file)) {
4943 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4944 + ERROR opening meta file.\n");
4945 + /* we don't mntget so we dont't mntput (for now)
4946 + * mntput(meta_mnt);
4948 + dput(meta_dentry);
4953 + /* check if fs supports writing */
4954 + if(!meta_file->f_op->write) {
4955 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4956 + ERROR, fs does not support writing.\n");
4957 + goto out_err_close;
4960 + meta_file->f_pos = meta_dentry->d_inode->i_size; /* append */
4961 + old_fs = get_fs();
4962 + set_fs(KERNEL_DS);
4964 + /* here we go... */
4965 + list_for_each(tmp, &inode_info->renamed_list) {
4966 + ren_entry = list_entry(tmp, struct renamed_entry, list);
4968 + * 2 for "R ", old_len+new_len for names, 1 blank+1 \n */
4969 + buf_len = ren_entry->old_len + ren_entry->new_len + 4;
4970 + buf = (char *) kmalloc(buf_len, GFP_KERNEL);
4972 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4978 + strncpy(buf + 2, ren_entry->old_name, ren_entry->old_len);
4979 + buf[ren_entry->old_len + 2] = ' ';
4980 + strncpy(buf + ren_entry->old_len + 3,
4981 + ren_entry->new_name, ren_entry->new_len);
4982 + buf[buf_len - 1] = '\n';
4983 + bytes = meta_file->f_op->write(meta_file, buf,
4984 + buf_len, &meta_file->f_pos);
4985 + if(bytes != buf_len) {
4986 + printk(KERN_CRIT "mini_fo: meta_sync_r_list: \
4987 + ERROR writing.\n");
5000 +int meta_check_d_entry(dentry_t *dentry, const char *name, int len)
5002 + if(!dentry || !dentry->d_inode)
5003 + printk(KERN_CRIT "mini_fo: meta_check_d_dentry: \
5004 + invalid dentry passed.\n");
5005 + return __meta_check_d_entry(dentry->d_inode, name, len);
5008 +int __meta_check_d_entry(inode_t *inode, const char *name, int len)
5010 + struct list_head *tmp;
5011 + struct deleted_entry *del_entry;
5012 + struct mini_fo_inode_info *inode_info;
5014 + if(!inode || !itopd(inode))
5015 + printk(KERN_CRIT "mini_fo: __meta_check_d_dentry: \
5016 + invalid inode passed.\n");
5018 + inode_info = itopd(inode);
5020 + if(inode_info->deleted_list_size <= 0)
5023 + list_for_each(tmp, &inode_info->deleted_list) {
5024 + del_entry = list_entry(tmp, struct deleted_entry, list);
5025 + if(del_entry->len != len)
5028 + if(!strncmp(del_entry->name, name, len))
5035 + * check if file has been renamed and return path to orig. base dir.
5036 + * Implements no error return values so far, what of course sucks.
5037 + * String is null terminated.'
5039 +char* meta_check_r_entry(dentry_t *dentry, const char *name, int len)
5041 + if(!dentry || !dentry->d_inode) {
5042 + printk(KERN_CRIT "mini_fo: meta_check_r_dentry: \
5043 + invalid dentry passed.\n");
5046 + return __meta_check_r_entry(dentry->d_inode, name, len);
5049 +char* __meta_check_r_entry(inode_t *inode, const char *name, int len)
5051 + struct list_head *tmp;
5052 + struct renamed_entry *ren_entry;
5053 + struct mini_fo_inode_info *inode_info;
5056 + if(!inode || !itopd(inode)) {
5057 + printk(KERN_CRIT "mini_fo: meta_check_r_dentry: \
5058 + invalid inode passed.\n");
5061 + inode_info = itopd(inode);
5063 + if(inode_info->renamed_list_size <= 0)
5066 + list_for_each(tmp, &inode_info->renamed_list) {
5067 + ren_entry = list_entry(tmp, struct renamed_entry, list);
5068 + if(ren_entry->new_len != len)
5071 + if(!strncmp(ren_entry->new_name, name, len)) {
5072 + old_path = (char *)
5073 + kmalloc(ren_entry->old_len+1, GFP_KERNEL);
5075 + ren_entry->old_name,
5076 + ren_entry->old_len);
5077 + old_path[ren_entry->old_len]='\0';
5085 + * This version only checks if entry exists and return:
5090 +int meta_is_r_entry(dentry_t *dentry, const char *name, int len)
5092 + if(!dentry || !dentry->d_inode) {
5093 + printk(KERN_CRIT "mini_fo: meta_check_r_dentry [2]: \
5094 + invalid dentry passed.\n");
5097 + return __meta_is_r_entry(dentry->d_inode, name, len);
5100 +int __meta_is_r_entry(inode_t *inode, const char *name, int len)
5102 + struct list_head *tmp;
5103 + struct renamed_entry *ren_entry;
5104 + struct mini_fo_inode_info *inode_info;
5106 + if(!inode || !itopd(inode)) {
5107 + printk(KERN_CRIT "mini_fo: meta_check_r_dentry [2]: \
5108 + invalid inode passed.\n");
5111 + inode_info = itopd(inode);
5113 + if(inode_info->renamed_list_size <= 0)
5116 + list_for_each(tmp, &inode_info->renamed_list) {
5117 + ren_entry = list_entry(tmp, struct renamed_entry, list);
5118 + if(ren_entry->new_len != len)
5121 + if(!strncmp(ren_entry->new_name, name, len))
5128 +++ b/fs/mini_fo/mini_fo.h
5131 + * Copyright (c) 1997-2003 Erez Zadok
5132 + * Copyright (c) 2001-2003 Stony Brook University
5134 + * For specific licensing information, see the COPYING file distributed with
5135 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
5137 + * This Copyright notice must be kept intact and distributed with all
5138 + * fistgen sources INCLUDING sources generated by fistgen.
5141 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
5143 + * This program is free software; you can redistribute it and/or
5144 + * modify it under the terms of the GNU General Public License
5145 + * as published by the Free Software Foundation; either version
5146 + * 2 of the License, or (at your option) any later version.
5153 +#ifndef __MINI_FO_H_
5154 +#define __MINI_FO_H_
5159 +#define META_FILENAME "META_dAfFgHE39ktF3HD2sr"
5164 +/* File attributes that when changed, result in a file beeing copied to storage */
5165 +#define COPY_FLAGS ATTR_MODE | ATTR_UID | ATTR_GID | ATTR_SIZE
5168 + * mini_fo filestates
5171 +#define UNMODIFIED 2
5173 +#define DEL_REWRITTEN 4
5175 +#define NON_EXISTANT 6
5177 +/* fist file systems superblock magic */
5178 +# define MINI_FO_SUPER_MAGIC 0xf15f
5184 +/* mini_fo inode data in memory */
5185 +struct mini_fo_inode_info {
5186 + inode_t *wii_inode;
5187 + inode_t *wii_inode2; /* pointer to storage inode */
5189 + /* META-data lists */
5190 + /* deleted list, ex wol */
5191 + struct list_head deleted_list;
5192 + int deleted_list_size;
5194 + /* renamed list */
5195 + struct list_head renamed_list;
5196 + int renamed_list_size;
5198 + /* add other lists here ... */
5201 +/* mini_fo dentry data in memory */
5202 +struct mini_fo_dentry_info {
5203 + dentry_t *wdi_dentry;
5204 + dentry_t *wdi_dentry2; /* pointer to storage dentry */
5205 + unsigned int state; /* state of the mini_fo dentry */
5209 +/* mini_fo super-block data in memory */
5210 +struct mini_fo_sb_info {
5211 + super_block_t *wsi_sb, *wsi_sb2; /* mk: might point to the same sb */
5212 + struct vfsmount *hidden_mnt, *hidden_mnt2;
5213 + dentry_t *base_dir_dentry;
5214 + dentry_t *storage_dir_dentry;
5218 +/* readdir_data, readdir helper struct */
5219 +struct readdir_data {
5220 + struct list_head ndl_list; /* linked list head ptr */
5221 + int ndl_size; /* list size */
5222 + int sto_done; /* flag to show that the storage dir entries have
5223 + * all been read an now follow base entries */
5226 +/* file private data. */
5227 +struct mini_fo_file_info {
5228 + struct file *wfi_file;
5229 + struct file *wfi_file2; /* pointer to storage file */
5230 + struct readdir_data rd;
5233 +/* struct ndl_entry */
5235 + struct list_head list;
5240 +/********************************
5241 + * META-data structures
5242 + ********************************/
5244 +/* deleted entry */
5245 +struct deleted_entry {
5246 + struct list_head list;
5251 +/* renamed entry */
5252 +struct renamed_entry {
5253 + struct list_head list;
5254 + char *old_name; /* old directory with full path */
5255 + int old_len; /* length of above string */
5256 + char *new_name; /* new directory name */
5257 + int new_len; /* length of above string */
5260 +/* attr_change entry */
5261 +struct attr_change_entry {
5262 + struct list_head list;
5268 +struct link_entry {
5269 + struct list_head list;
5274 + int weird_name_len;
5278 +/* Some other stuff required for mini_fo_filldir64, copied from
5282 +#define ROUND_UP64(x) (((x)+sizeof(u64)-1) & ~(sizeof(u64)-1))
5283 +#define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
5286 +struct linux_dirent64 {
5289 + unsigned short d_reclen;
5290 + unsigned char d_type;
5295 +struct getdents_callback64 {
5296 + struct linux_dirent64 * current_dir;
5297 + struct linux_dirent64 * previous;
5302 +struct linux_dirent {
5303 + unsigned long d_ino;
5304 + unsigned long d_off;
5305 + unsigned short d_reclen;
5309 +struct getdents_callback {
5310 + struct linux_dirent * current_dir;
5311 + struct linux_dirent * previous;
5321 +/* file TO private_data */
5322 +# define ftopd(file) ((struct mini_fo_file_info *)((file)->private_data))
5323 +# define __ftopd(file) ((file)->private_data)
5324 +/* file TO hidden_file */
5325 +# define ftohf(file) ((ftopd(file))->wfi_file)
5326 +# define ftohf2(file) ((ftopd(file))->wfi_file2)
5328 +/* inode TO private_data */
5329 +# define itopd(ino) ((struct mini_fo_inode_info *)(ino)->u.generic_ip)
5330 +# define __itopd(ino) ((ino)->u.generic_ip)
5331 +/* inode TO hidden_inode */
5332 +# define itohi(ino) (itopd(ino)->wii_inode)
5333 +# define itohi2(ino) (itopd(ino)->wii_inode2)
5335 +/* superblock TO private_data */
5336 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
5337 +# define stopd(super) ((struct mini_fo_sb_info *)(super)->s_fs_info)
5338 +# define __stopd(super) ((super)->s_fs_info)
5340 +# define stopd(super) ((struct mini_fo_sb_info *)(super)->u.generic_sbp)
5341 +# define __stopd(super) ((super)->u.generic_sbp)
5344 +/* unused? # define vfs2priv stopd */
5345 +/* superblock TO hidden_superblock */
5347 +# define stohs(super) (stopd(super)->wsi_sb)
5348 +# define stohs2(super) (stopd(super)->wsi_sb2)
5350 +/* dentry TO private_data */
5351 +# define dtopd(dentry) ((struct mini_fo_dentry_info *)(dentry)->d_fsdata)
5352 +# define __dtopd(dentry) ((dentry)->d_fsdata)
5353 +/* dentry TO hidden_dentry */
5354 +# define dtohd(dent) (dtopd(dent)->wdi_dentry)
5355 +# define dtohd2(dent) (dtopd(dent)->wdi_dentry2)
5357 +/* dentry to state */
5358 +# define dtost(dent) (dtopd(dent)->state)
5359 +# define sbt(sb) ((sb)->s_type->name)
5361 +#define IS_WRITE_FLAG(flag) (flag & (O_RDWR | O_WRONLY | O_APPEND))
5362 +#define IS_COPY_FLAG(flag) (flag & (COPY_FLAGS))
5364 +/* macros to simplify non-SCA code */
5365 +# define MALLOC_PAGE_POINTERS(hidden_pages, num_hidden_pages)
5366 +# define MALLOC_PAGEDATA_POINTERS(hidden_pages_data, num_hidden_pages)
5367 +# define FREE_PAGE_POINTERS(hidden_pages, num)
5368 +# define FREE_PAGEDATA_POINTERS(hidden_pages_data, num)
5369 +# define FOR_EACH_PAGE
5370 +# define CURRENT_HIDDEN_PAGE hidden_page
5371 +# define CURRENT_HIDDEN_PAGEDATA hidden_page_data
5372 +# define CURRENT_HIDDEN_PAGEINDEX page->index
5377 +extern struct file_operations mini_fo_main_fops;
5378 +extern struct file_operations mini_fo_dir_fops;
5379 +extern struct inode_operations mini_fo_main_iops;
5380 +extern struct inode_operations mini_fo_dir_iops;
5381 +extern struct inode_operations mini_fo_symlink_iops;
5382 +extern struct super_operations mini_fo_sops;
5383 +extern struct dentry_operations mini_fo_dops;
5384 +extern struct vm_operations_struct mini_fo_shared_vmops;
5385 +extern struct vm_operations_struct mini_fo_private_vmops;
5386 +extern struct address_space_operations mini_fo_aops;
5388 +#if 0 /* unused by mini_fo */
5389 +extern int mini_fo_interpose(dentry_t *hidden_dentry, dentry_t *this_dentry, super_block_t *sb, int flag);
5390 +#if defined(FIST_FILTER_DATA) || defined(FIST_FILTER_SCA)
5391 +extern page_t *mini_fo_get1page(file_t *file, int index);
5392 +extern int mini_fo_fill_zeros(file_t *file, page_t *page, unsigned from);
5393 +# endif /* FIST_FILTER_DATA || FIST_FILTER_SCA */
5396 +# define mini_fo_hidden_dentry(d) __mini_fo_hidden_dentry(__FILE__,__FUNCTION__,__LINE__,(d))
5397 +# define mini_fo_hidden_sto_dentry(d) __mini_fo_hidden_sto_dentry(__FILE__,__FUNCTION__,__LINE__,(d))
5399 +extern dentry_t *__mini_fo_hidden_dentry(char *file, char *func, int line, dentry_t *this_dentry);
5400 +extern dentry_t *__mini_fo_hidden_sto_dentry(char *file, char *func, int line, dentry_t *this_dentry);
5402 +extern int mini_fo_read_file(const char *filename, void *buf, int len);
5403 +extern int mini_fo_write_file(const char *filename, void *buf, int len);
5404 +extern dentry_t *fist_lookup(dentry_t *dir, const char *name, vnode_t **out, uid_t uid, gid_t gid);
5405 +#endif /* unused by mini_fo */
5407 +/* state transition functions */
5408 +extern int nondir_unmod_to_mod(dentry_t *dentry, int cp_flag);
5409 +extern int nondir_del_rew_to_del(dentry_t *dentry);
5410 +extern int nondir_creat_to_del(dentry_t *dentry);
5411 +extern int nondir_mod_to_del(dentry_t *dentry);
5412 +extern int nondir_unmod_to_del(dentry_t *dentry);
5414 +extern int dir_unmod_to_mod(dentry_t *dentry);
5416 +/* rename specials */
5417 +extern int rename_directory(inode_t *old_dir, dentry_t *old_dentry, inode_t *new_dir, dentry_t *new_dentry);
5418 +extern int rename_nondir(inode_t *old_dir, dentry_t *old_dentry, inode_t *new_dir, dentry_t *new_dentry);
5421 +extern int mini_fo_tri_interpose(dentry_t *hidden_dentry,
5422 + dentry_t *hidden_sto_dentry,
5424 + super_block_t *sb, int flag);
5426 +extern int mini_fo_cp_cont(dentry_t *tgt_dentry, struct vfsmount *tgt_mnt,
5427 + dentry_t *src_dentry, struct vfsmount *src_mnt);
5429 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
5430 +extern int mini_fo_create(inode_t *dir, dentry_t *dentry, int mode, struct nameidata *nd);
5432 +extern int create_sto_nod(dentry_t *dentry, int mode, dev_t dev);
5433 +extern int create_sto_reg_file(dentry_t *dentry, int mode, struct nameidata *nd);
5435 +extern int mini_fo_create(inode_t *dir, dentry_t *dentry, int mode);
5437 +extern int create_sto_nod(dentry_t *dentry, int mode, int dev);
5438 +extern int create_sto_reg_file(dentry_t *dentry, int mode);
5441 +extern int create_sto_dir(dentry_t *dentry, int mode);
5443 +extern int exists_in_storage(dentry_t *dentry);
5444 +extern int is_mini_fo_existant(dentry_t *dentry);
5445 +extern int get_neg_sto_dentry(dentry_t *dentry);
5446 +extern int build_sto_structure(dentry_t *dir, dentry_t *dentry);
5447 +extern int get_mini_fo_bpath(dentry_t *dentry, char **bpath, int *bpath_len);
5448 +extern dentry_t *bpath_walk(super_block_t *sb, char *bpath);
5449 +extern int bpath_put(dentry_t *dentry);
5451 +/* check_mini_fo types functions */
5452 +extern int check_mini_fo_dentry(dentry_t *dentry);
5453 +extern int check_mini_fo_file(file_t *file);
5454 +extern int check_mini_fo_inode(inode_t *inode);
5456 +/* General meta functions, can be called from outside of meta.c */
5457 +extern int meta_build_lists(dentry_t *dentry);
5458 +extern int meta_put_lists(dentry_t *dentry);
5459 +extern int __meta_put_lists(inode_t *inode);
5461 +extern int meta_add_d_entry(dentry_t *dentry, const char *name, int len);
5462 +extern int meta_add_r_entry(dentry_t *dentry,
5463 + const char *old_name, int old_len,
5464 + const char *new_name, int new_len);
5466 +extern int meta_remove_r_entry(dentry_t *dentry, const char *name, int len);
5468 +extern int meta_check_d_entry(dentry_t *dentry, const char *name, int len);
5469 +extern int __meta_check_d_entry(inode_t *inode, const char *name, int len);
5471 +extern char* meta_check_r_entry(dentry_t *dentry, const char *name, int len);
5472 +extern char* __meta_check_r_entry(inode_t *inode, const char *name, int len);
5473 +extern int meta_is_r_entry(dentry_t *dentry, const char *name, int len);
5474 +extern int __meta_is_r_entry(inode_t *inode, const char *name, int len);
5476 +/* Specific meta functions, should be called only inside meta.c */
5477 +extern int __meta_put_d_list(inode_t *inode);
5478 +extern int __meta_put_r_list(inode_t *inode);
5480 +extern int meta_list_add_d_entry(dentry_t *dentry,
5481 + const char *name, int len);
5482 +extern int meta_list_add_r_entry(dentry_t *dentry,
5483 + const char *old_name, int old_len,
5484 + const char *new_name, int new_len);
5486 +extern int meta_list_remove_r_entry(dentry_t *dentry,
5487 + const char *name, int len);
5489 +extern int __meta_list_remove_r_entry(inode_t *inode,
5490 + const char *name, int len);
5492 +extern int meta_write_d_entry(dentry_t *dentry, const char *name, int len);
5493 +extern int meta_write_r_entry(dentry_t *dentry,
5494 + const char *old_name, int old_len,
5495 + const char *new_name, int new_len);
5497 +extern int meta_sync_lists(dentry_t *dentry);
5498 +extern int meta_sync_d_list(dentry_t *dentry, int app_flag);
5499 +extern int meta_sync_r_list(dentry_t *dentry, int app_flag);
5502 +extern int ndl_add_entry(struct readdir_data *rd, const char *name, int len);
5503 +extern void ndl_put_list(struct readdir_data *rd);
5504 +extern int ndl_check_entry(struct readdir_data *rd,
5505 + const char *name, int len);
5508 +# define copy_inode_size(dst, src) \
5509 + dst->i_size = src->i_size; \
5510 + dst->i_blocks = src->i_blocks;
5513 +fist_copy_attr_atime(inode_t *dest, const inode_t *src)
5515 + ASSERT(dest != NULL);
5516 + ASSERT(src != NULL);
5517 + dest->i_atime = src->i_atime;
5520 +fist_copy_attr_times(inode_t *dest, const inode_t *src)
5522 + ASSERT(dest != NULL);
5523 + ASSERT(src != NULL);
5524 + dest->i_atime = src->i_atime;
5525 + dest->i_mtime = src->i_mtime;
5526 + dest->i_ctime = src->i_ctime;
5529 +fist_copy_attr_timesizes(inode_t *dest, const inode_t *src)
5531 + ASSERT(dest != NULL);
5532 + ASSERT(src != NULL);
5533 + dest->i_atime = src->i_atime;
5534 + dest->i_mtime = src->i_mtime;
5535 + dest->i_ctime = src->i_ctime;
5536 + copy_inode_size(dest, src);
5539 +fist_copy_attr_all(inode_t *dest, const inode_t *src)
5541 + ASSERT(dest != NULL);
5542 + ASSERT(src != NULL);
5543 + dest->i_mode = src->i_mode;
5544 + dest->i_nlink = src->i_nlink;
5545 + dest->i_uid = src->i_uid;
5546 + dest->i_gid = src->i_gid;
5547 + dest->i_rdev = src->i_rdev;
5548 + dest->i_atime = src->i_atime;
5549 + dest->i_mtime = src->i_mtime;
5550 + dest->i_ctime = src->i_ctime;
5551 + dest->i_blksize = src->i_blksize;
5552 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,12)
5553 + dest->i_blkbits = src->i_blkbits;
5554 +# endif /* linux 2.4.12 and newer */
5555 + copy_inode_size(dest, src);
5556 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
5557 + dest->i_attr_flags = src->i_attr_flags;
5559 + dest->i_flags = src->i_flags;
5563 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
5564 +/* copied from linux/fs.h */
5565 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
5566 +static inline void double_lock(struct dentry *d1, struct dentry *d2)
5568 + struct mutex *m1 = &d1->d_inode->i_mutex;
5569 + struct mutex *m2 = &d2->d_inode->i_mutex;
5571 + if ((unsigned long) m1 < (unsigned long) m2) {
5572 + struct mutex *tmp = m2;
5573 + m2 = m1; m1 = tmp;
5580 +static inline void double_unlock(struct dentry *d1, struct dentry *d2)
5582 + struct mutex *m1 = &d1->d_inode->i_mutex;
5583 + struct mutex *m2 = &d2->d_inode->i_mutex;
5592 +static inline void double_down(struct semaphore *s1, struct semaphore *s2)
5595 + if ((unsigned long) s1 < (unsigned long) s2) {
5596 + struct semaphore *tmp = s2;
5597 + s2 = s1; s1 = tmp;
5604 +static inline void double_up(struct semaphore *s1, struct semaphore *s2)
5611 +static inline void double_lock(struct dentry *d1, struct dentry *d2)
5613 + double_down(&d1->d_inode->i_sem, &d2->d_inode->i_sem);
5616 +static inline void double_unlock(struct dentry *d1, struct dentry *d2)
5618 + double_up(&d1->d_inode->i_sem,&d2->d_inode->i_sem);
5622 +#endif /* if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16) */
5623 +#endif /* if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) */
5624 +#endif /* __KERNEL__ */
5627 + * Definitions for user and kernel code
5632 +#endif /* not __MINI_FO_H_ */
5634 +++ b/fs/mini_fo/mini_fo-merge
5638 +# Copyright (C) 2005 Markus Klotzbuecher <mk@creamnet.de>
5639 +# This program is free software; you can redistribute it and/or
5640 +# modify it under the terms of the GNU General Public License
5641 +# as published by the Free Software Foundation; either version
5642 +# 2 of the License, or (at your option) any later version.
5651 +META_NAME="META_dAfFgHE39ktF3HD2sr"
5652 +SKIP_DEL_LIST="skip-delete-list.mini_fo-merge"
5657 + if [ x$DRYRUN == "xset" ]; then
5658 + echo " would run: $COMMAND"
5659 + elif ! [ x$DRYRUN == "xset" ]; then
5660 + if [ x$VERBOSE == "xset" ]; then
5661 + echo " running: $COMMAND"
5671 +USAGE: $0 -b <base dir> -s <storage dir>
5674 +This script merges the contents of a mini_fo storage file system back
5675 +to the base file system.
5677 +!!! Warning: This will modify the base filesystem and can destroy data
5682 + the directory of the base file system.
5685 + the directory of the storage file system.
5687 + -d dry run, will not change anything and print the commands that
5688 + would be executed.
5690 + -t tmp dir for storing temporary file. default: $TMP
5692 + -v show what operations are performed.
5694 + -h displays this message.
5700 +while getopts hdvt:b:s: OPTS
5705 + v) VERBOSE="set";;
5706 + b) BASE="$OPTARG";;
5707 + s) STO="$OPTARG";;
5708 + t) TMP="$OPTARG";;
5714 +if [ "x$HELP" == "xset" ]; then
5719 +if ! [ -d "$BASE" ] || ! [ -d "$STO" ]; then
5720 + echo -e "$0:\n Error, -s and/or -b argument missing. type $0 -h for help."
5725 +pushd $STO; STO=`pwd`; popd
5726 +pushd $BASE; BASE=`pwd`; popd
5731 +###############################################################################
5735 +# storage dir: $STO
5736 +# meta filename: $META_NAME
5738 +# verbose: $VERBOSE
5740 +###############################################################################
5744 +rm $TMP/$SKIP_DEL_LIST
5746 +# first process all renamed dirs
5747 +echo "Merging renamed directories..."
5748 +pushd $STO &> /dev/null
5749 +find . -name $META_NAME -type f -print0 | xargs -0 -e grep -e '^R ' | tr -s ':R' ' ' | while read ENTRY; do
5750 + echo "entry: $ENTRY"
5751 + META_FILE=`echo $ENTRY | cut -d ' ' -f 1`
5752 + OLD_B_DIR=`echo $ENTRY | cut -d ' ' -f 2 | sed -e 's/\///'`
5753 + NEW_NAME=`echo $ENTRY | cut -d ' ' -f 3`
5754 + NEW_B_DIR=`echo $META_FILE | sed -e "s/$META_NAME/$NEW_NAME/" | sed -e 's/^\.\///'`
5755 + echo "META_FILE: $META_FILE"
5756 + echo "OLD_B_DIR: $OLD_B_DIR"
5757 + echo "NEW_NAME: $NEW_NAME"
5758 + echo "NEW_B_DIR: $NEW_B_DIR"
5760 + pushd $BASE &> /dev/null
5761 + # remove an existing dir in storage
5762 + COMMAND="rm -rf $NEW_B_DIR"; exec_command
5763 + COMMAND="cp -R $OLD_B_DIR $NEW_B_DIR"; exec_command
5767 + # remember this dir to exclude it from deleting later
5768 + echo $NEW_B_DIR >> $TMP/$SKIP_DEL_LIST
5771 +# delete all whiteouted files from base
5772 +echo -e "\nDeleting whiteout'ed files from base file system..."
5773 +find . -name $META_NAME -type f -print0 | xargs -0 -e grep -e '^D ' | sed -e 's/:D//' | while read ENTRY; do
5774 + META_FILE=`echo $ENTRY | cut -d ' ' -f 1`
5775 + DEL_NAME=`echo $ENTRY | cut -d ' ' -f 2`
5776 + DEL_FILE=`echo $META_FILE | sed -e "s/$META_NAME/$DEL_NAME/" | sed -e 's/^\.\///'`
5777 + grep -x $DEL_FILE $TMP/$SKIP_DEL_LIST &> /dev/null
5778 + if [ $? -ne 0 ]; then
5779 + pushd $BASE &> /dev/null
5780 + COMMAND="rm -rf $DEL_FILE"; exec_command
5783 + echo " excluding: $DEL_FILE as in skip-del-list."
5787 +# create all dirs and update permissions
5788 +echo -e "\nSetting up directory structures in base file system..."
5789 +find . -type d | sed -e 's/^\.\///' | while read DIR; do
5790 + PERMS=`stat -c %a $DIR`
5791 + DIR_UID=`stat -c %u $DIR`
5792 + DIR_GID=`stat -c %g $DIR`
5793 + pushd $BASE &> /dev/null
5794 + if ! [ -d $DIR ]; then
5795 + COMMAND="mkdir -p $DIR"; exec_command
5797 + COMMAND="chmod $PERMS $DIR"; exec_command
5798 + COMMAND="chown $DIR_UID:$DIR_GID $DIR"; exec_command
5802 +# merge all non-directory files
5803 +echo -e "\nMerging all non-directory files...."
5804 +for i in b c p f l s; do
5805 + find . -type $i | sed -e 's/^\.\///' | grep -v "$META_NAME" | while read FILE; do
5806 + pushd $BASE #&> /dev/null
5807 + COMMAND="cp -df $STO/$FILE $BASE/$FILE"; exec_command
5813 +#rm $TMP/$SKIP_DEL_LIST
5817 +++ b/fs/mini_fo/mini_fo-overlay
5821 +# Copyright (C) 2005 Markus Klotzbuecher <mk@creamnet.de>
5822 +# This program is free software; you can redistribute it and/or
5823 +# modify it under the terms of the GNU General Public License
5824 +# as published by the Free Software Foundation; either version
5825 +# 2 of the License, or (at your option) any later version.
5840 +Usage: $0 [-s suffix] [-d sto_dir_dir] [-m mount point] base_dir
5843 +This script overlays the given base directory using the mini_fo file
5844 +system. If only the base directory base_dir is given, $0
5845 +will use a storage directory called "sto-<base_dir_name>" in $STO_DIR,
5846 +and mount point "mini_fo-<base_dir_dir>" in $MNT_DIR.
5850 + add given suffix to storage directory and the mount
5851 + point. This is usefull for overlaying one base directory
5852 + several times and avoiding conflicts with storage directory
5853 + names and mount points.
5856 + change the directory in which the storage directory will be
5857 + created (default is currently "$STO_DIR".
5860 + use an alternative directory to create the mini_fo
5861 + mountpoint (default is currently "$MNT_DIR".
5863 + -h displays this message.
5869 +while getopts hm:s:d: OPTS
5872 + s) SUFF="$OPTARG";;
5873 + d) STO_DIR="$OPTARG";;
5874 + m) MNT_DIR="$OPTARG";;
5880 +shift $(($OPTIND - 1))
5884 +if [ "x$HELP" == "xset" ]; then
5890 +if [ "x$SUFF" != "x" ]; then
5894 +# kill trailing slashes
5895 +MNT_DIR=${MNT_DIR%/}
5896 +STO_DIR=${STO_DIR%/}
5900 +if ! [ -d "$BASE" ]; then
5901 + echo "invalid base dir $BASE, run $0 -h for help."
5906 +if ! [ -d "$MNT_DIR" ]; then
5907 + echo "invalid mount dir $MNT_DIR, run $0 -h for help."
5911 +if ! [ -d "$STO_DIR" ]; then
5912 + echo "invalid sto_dir_dir $STO_DIR, run $0 -h for help."
5916 +MNTP="$MNT_DIR/mini_fo-`basename $BASE`$SUFF"
5917 +STO="$STO_DIR/sto-`basename $BASE`$SUFF"
5919 +# create the mount point if it doesn't exist
5921 +if [ $? -ne 0 ]; then
5922 + echo "Error, failed to create mount point $MNTP"
5926 +if [ $? -ne 0 ]; then
5927 + echo "Error, failed to create storage dir $STO"
5930 +# check if fs is already mounted
5931 +mount | grep mini_fo | grep $MNTP &> /dev/null
5932 +if [ $? -eq 0 ]; then
5933 + echo "Error, existing mini_fo mount at $MNTP."
5937 +mount | grep mini_fo | grep $STO &> /dev/null
5938 +if [ $? -eq 0 ]; then
5939 + echo "Error, $STO seems to be used already."
5944 +mount -t mini_fo -o base=$BASE,sto=$STO $BASE $MNTP
5946 +if [ $? -ne 0 ]; then
5947 + echo "Error, mounting failed, maybe no permisson to mount?"
5950 +++ b/fs/mini_fo/mmap.c
5953 + * Copyright (c) 1997-2003 Erez Zadok
5954 + * Copyright (c) 2001-2003 Stony Brook University
5956 + * For specific licensing information, see the COPYING file distributed with
5957 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
5959 + * This Copyright notice must be kept intact and distributed with all
5960 + * fistgen sources INCLUDING sources generated by fistgen.
5963 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
5965 + * This program is free software; you can redistribute it and/or
5966 + * modify it under the terms of the GNU General Public License
5967 + * as published by the Free Software Foundation; either version
5968 + * 2 of the License, or (at your option) any later version.
5975 +#ifdef HAVE_CONFIG_H
5976 +# include <config.h>
5977 +#endif /* HAVE_CONFIG_H */
5980 +#include "mini_fo.h"
5983 +#ifdef FIST_COUNT_WRITES
5984 +/* for counting writes in the middle vs. regular writes */
5985 +unsigned long count_writes = 0, count_writes_middle = 0;
5986 +#endif /* FIST_COUNT_WRITES */
5988 +/* forward declaration of commit write and prepare write */
5989 +STATIC int mini_fo_commit_write(file_t *file, page_t *page, unsigned from, unsigned to);
5990 +STATIC int mini_fo_prepare_write(file_t *file, page_t *page, unsigned from, unsigned to);
5994 + * Function for handling creation of holes when lseek-ing past the
5995 + * end of the file and then writing some data.
5998 +mini_fo_fill_zeros(file_t* file, page_t *page, unsigned from)
6001 + dentry_t *dentry = file->f_dentry;
6002 + inode_t *inode = dentry->d_inode;
6006 + print_entry_location();
6008 + for (index = inode->i_size >> PAGE_CACHE_SHIFT; index < page->index; index++) {
6009 + tmp_page = mini_fo_get1page(file, index);
6010 + if (IS_ERR(tmp_page)) {
6011 + err = PTR_ERR(tmp_page);
6016 + * zero out rest of the contents of the page between the appropriate
6019 + memset((char*)page_address(tmp_page) + (inode->i_size & ~PAGE_CACHE_MASK), 0, PAGE_CACHE_SIZE - (inode->i_size & ~PAGE_CACHE_MASK));
6021 + if (! (err = mini_fo_prepare_write(file, tmp_page, 0, PAGE_CACHE_SIZE)))
6022 + err = mini_fo_commit_write(file, tmp_page, 0, PAGE_CACHE_SIZE);
6024 + page_cache_release(tmp_page);
6027 + if (current->need_resched)
6031 + /* zero out appropriate parts of last page */
6034 + * if the encoding type is block, then adjust the 'from' (where the
6035 + * zeroing will start) offset appropriately
6037 + from = from & (~(FIST_ENCODING_BLOCKSIZE - 1));
6039 + if ((from - (inode->i_size & ~PAGE_CACHE_MASK)) > 0) {
6041 + memset((char*)page_address(page) + (inode->i_size & ~PAGE_CACHE_MASK), 0, from - (inode->i_size & ~PAGE_CACHE_MASK));
6042 + if (! (err = mini_fo_prepare_write(file, page, 0, PAGE_CACHE_SIZE)))
6043 + err = mini_fo_commit_write(file, page, 0, PAGE_CACHE_SIZE);
6047 + if (current->need_resched)
6052 + print_exit_status(err);
6059 +mini_fo_writepage(page_t *page)
6063 + inode_t *hidden_inode;
6064 + page_t *hidden_page;
6065 + char *kaddr, *hidden_kaddr;
6067 + print_entry_location();
6069 + inode = page->mapping->host;
6070 + hidden_inode = itohi(inode);
6073 + * writepage is called when shared mmap'ed files need to write
6074 + * their pages, while prepare/commit_write are called from the
6075 + * non-paged write() interface. (However, in 2.3 the two interfaces
6076 + * share the same cache, while in 2.2 they didn't.)
6078 + * So we pretty much have to duplicate much of what commit_write does.
6081 + /* find lower page (returns a locked page) */
6082 + hidden_page = grab_cache_page(hidden_inode->i_mapping, page->index);
6086 + /* get page address, and encode it */
6087 + kaddr = (char *) kmap(page);
6088 + hidden_kaddr = (char*) kmap(hidden_page);
6089 + mini_fo_encode_block(kaddr, hidden_kaddr, PAGE_CACHE_SIZE, inode, inode->i_sb, page->index);
6090 + /* if encode_block could fail, then return error */
6092 + kunmap(hidden_page);
6094 + /* call lower writepage (expects locked page) */
6095 + err = hidden_inode->i_mapping->a_ops->writepage(hidden_page);
6098 + * update mtime and ctime of lower level file system
6099 + * mini_fo' mtime and ctime are updated by generic_file_write
6101 + hidden_inode->i_mtime = hidden_inode->i_ctime = CURRENT_TIME;
6103 +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,1)
6104 + UnlockPage(hidden_page); /* b/c grab_cache_page locked it */
6105 +# endif /* kernel older than 2.4.1 */
6106 + page_cache_release(hidden_page); /* b/c grab_cache_page increased refcnt */
6109 + ClearPageUptodate(page);
6111 + SetPageUptodate(page);
6113 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,1)
6115 +# endif /* kernel 2.4.1 and newer */
6116 + print_exit_status(err);
6122 + * get one page from cache or lower f/s, return error otherwise.
6123 + * returns unlocked, up-to-date page (if ok), with increased refcnt.
6126 +mini_fo_get1page(file_t *file, int index)
6131 + struct address_space *mapping;
6134 + print_entry_location();
6136 + dentry = file->f_dentry; /* CPW: Moved below print_entry_location */
6137 + inode = dentry->d_inode;
6138 + mapping = inode->i_mapping;
6140 + fist_dprint(8, "%s: read page index %d pid %d\n", __FUNCTION__, index, current->pid);
6142 + printk("%s BUG: index=%d\n", __FUNCTION__, index);
6143 + page = ERR_PTR(-EIO);
6146 + page = read_cache_page(mapping,
6148 + (filler_t *) mapping->a_ops->readpage,
6152 + wait_on_page(page);
6153 + if (!Page_Uptodate(page)) {
6155 + err = mapping->a_ops->readpage(file, page);
6157 + page = ERR_PTR(err);
6160 + wait_on_page(page);
6161 + if (!Page_Uptodate(page)) {
6162 + page = ERR_PTR(-EIO);
6168 + print_exit_pointer(page);
6174 + * get one page from cache or lower f/s, return error otherwise.
6175 + * similar to get1page, but doesn't guarantee that it will return
6176 + * an unlocked page.
6179 +mini_fo_get1page_cached(file_t *file, int index)
6184 + struct address_space *mapping;
6187 + print_entry_location();
6189 + dentry = file->f_dentry; /* CPW: Moved below print_entry_location */
6190 + inode = dentry->d_inode;
6191 + mapping = inode->i_mapping;
6193 + fist_dprint(8, "%s: read page index %d pid %d\n", __FUNCTION__, index, current->pid);
6195 + printk("%s BUG: index=%d\n", __FUNCTION__, index);
6196 + page = ERR_PTR(-EIO);
6199 + page = read_cache_page(mapping,
6201 + (filler_t *) mapping->a_ops->readpage,
6207 + print_exit_pointer(page);
6213 + * readpage is called from generic_page_read and the fault handler.
6214 + * If your file system uses generic_page_read for the read op, it
6215 + * must implement readpage.
6217 + * Readpage expects a locked page, and must unlock it.
6220 +mini_fo_do_readpage(file_t *file, page_t *page)
6224 + file_t *hidden_file = NULL;
6225 + dentry_t *hidden_dentry;
6227 + inode_t *hidden_inode;
6229 + page_t *hidden_page;
6230 + char *hidden_page_data;
6233 + print_entry_location();
6235 + dentry = file->f_dentry; /* CPW: Moved below print_entry_location */
6236 + if (ftopd(file) != NULL)
6237 + hidden_file = ftohf(file);
6238 + hidden_dentry = dtohd(dentry);
6239 + inode = dentry->d_inode;
6240 + hidden_inode = itohi(inode);
6242 + fist_dprint(7, "%s: requesting page %d from file %s\n", __FUNCTION__, page->index, dentry->d_name.name);
6244 + MALLOC_PAGE_POINTERS(hidden_pages, num_hidden_pages);
6245 + MALLOC_PAGEDATA_POINTERS(hidden_pages_data, num_hidden_pages);
6247 + CURRENT_HIDDEN_PAGE = NULL;
6249 + /* find lower page (returns a locked page) */
6251 + fist_dprint(8, "%s: Current page index = %d\n", __FUNCTION__, CURRENT_HIDDEN_PAGEINDEX);
6252 + CURRENT_HIDDEN_PAGE = read_cache_page(hidden_inode->i_mapping,
6253 + CURRENT_HIDDEN_PAGEINDEX,
6254 + (filler_t *) hidden_inode->i_mapping->a_ops->readpage,
6255 + (void *) hidden_file);
6256 + if (IS_ERR(CURRENT_HIDDEN_PAGE)) {
6257 + err = PTR_ERR(CURRENT_HIDDEN_PAGE);
6258 + CURRENT_HIDDEN_PAGE = NULL;
6264 + * wait for the page data to show up
6265 + * (signaled by readpage as unlocking the page)
6268 + wait_on_page(CURRENT_HIDDEN_PAGE);
6269 + if (!Page_Uptodate(CURRENT_HIDDEN_PAGE)) {
6271 + * call readpage() again if we returned from wait_on_page with a
6272 + * page that's not up-to-date; that can happen when a partial
6273 + * page has a few buffers which are ok, but not the whole
6276 + lock_page(CURRENT_HIDDEN_PAGE);
6277 + err = hidden_inode->i_mapping->a_ops->readpage(hidden_file,
6278 + CURRENT_HIDDEN_PAGE);
6280 + CURRENT_HIDDEN_PAGE = NULL;
6283 + wait_on_page(CURRENT_HIDDEN_PAGE);
6284 + if (!Page_Uptodate(CURRENT_HIDDEN_PAGE)) {
6291 + /* map pages, get their addresses */
6292 + page_data = (char *) kmap(page);
6294 + CURRENT_HIDDEN_PAGEDATA = (char *) kmap(CURRENT_HIDDEN_PAGE);
6296 + /* if decode_block could fail, then return error */
6298 + real_size = hidden_inode->i_size - (page->index << PAGE_CACHE_SHIFT);
6299 + if (real_size <= 0)
6300 + memset(page_data, 0, PAGE_CACHE_SIZE);
6301 + else if (real_size < PAGE_CACHE_SIZE) {
6302 + mini_fo_decode_block(hidden_page_data, page_data, real_size, inode, inode->i_sb, page->index);
6303 + memset(page_data + real_size, 0, PAGE_CACHE_SIZE - real_size);
6305 + mini_fo_decode_block(hidden_page_data, page_data, PAGE_CACHE_SIZE, inode, inode->i_sb, page->index);
6308 + kunmap(CURRENT_HIDDEN_PAGE);
6313 + if (CURRENT_HIDDEN_PAGE)
6314 + page_cache_release(CURRENT_HIDDEN_PAGE); /* undo read_cache_page */
6316 + FREE_PAGE_POINTERS(hidden_pages, num_hidden_pages);
6317 + FREE_PAGEDATA_POINTERS(hidden_pages_data, num_hidden_pages);
6321 + SetPageUptodate(page);
6323 + ClearPageUptodate(page);
6325 + print_exit_status(err);
6331 +mini_fo_readpage(file_t *file, page_t *page)
6334 + print_entry_location();
6336 + err = mini_fo_do_readpage(file, page);
6339 + * we have to unlock our page, b/c we _might_ have gotten a locked page.
6340 + * but we no longer have to wakeup on our page here, b/c UnlockPage does
6345 + print_exit_status(err);
6351 +mini_fo_prepare_write(file_t *file, page_t *page, unsigned from, unsigned to)
6355 + print_entry_location();
6358 + * we call kmap(page) only here, and do the kunmap
6359 + * and the actual downcalls, including unlockpage and uncache
6360 + * in commit_write.
6364 + /* fast path for whole page writes */
6365 + if (from == 0 && to == PAGE_CACHE_SIZE)
6367 + /* read the page to "revalidate" our data */
6368 + /* call the helper function which doesn't unlock the page */
6369 + if (!Page_Uptodate(page))
6370 + err = mini_fo_do_readpage(file, page);
6373 + print_exit_status(err);
6380 +mini_fo_commit_write(file_t *file, page_t *page, unsigned from, unsigned to)
6382 + int err = -ENOMEM;
6384 + inode_t *hidden_inode;
6385 + page_t *hidden_page;
6386 + file_t *hidden_file = NULL;
6388 + unsigned bytes = to - from;
6389 + unsigned hidden_from, hidden_to, hidden_bytes;
6391 + print_entry_location();
6393 + inode = page->mapping->host; /* CPW: Moved below print_entry_location */
6394 + hidden_inode = itohi(inode);
6396 + ASSERT(file != NULL);
6398 + * here we have a kmapped page, with data from the user copied
6399 + * into it. we need to encode_block it, and then call the lower
6400 + * commit_write. We also need to simulate same behavior of
6401 + * generic_file_write, and call prepare_write on the lower f/s first.
6403 +#ifdef FIST_COUNT_WRITES
6405 +# endif /* FIST_COUNT_WRITES */
6407 + /* this is append and/or extend -- we can't have holes so fill them in */
6408 + if (page->index > (hidden_inode->i_size >> PAGE_CACHE_SHIFT)) {
6411 + for (index = hidden_inode->i_size >> PAGE_CACHE_SHIFT; index < page->index; index++) {
6412 + tmp_page = mini_fo_get1page(file, index);
6413 + if (IS_ERR(tmp_page)) {
6414 + err = PTR_ERR(tmp_page);
6417 + /* zero out the contents of the page at the appropriate offsets */
6418 + memset((char*)page_address(tmp_page) + (inode->i_size & ~PAGE_CACHE_MASK), 0, PAGE_CACHE_SIZE - (inode->i_size & ~PAGE_CACHE_MASK));
6419 + if (!(err = mini_fo_prepare_write(file, tmp_page, 0, PAGE_CACHE_SIZE)))
6420 + err = mini_fo_commit_write(file, tmp_page, 0, PAGE_CACHE_SIZE);
6421 + page_cache_release(tmp_page);
6424 + if (current->need_resched)
6429 + if (ftopd(file) != NULL)
6430 + hidden_file = ftohf(file);
6432 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
6433 + mutex_lock(&hidden_inode->i_mutex);
6435 + down(&hidden_inode->i_sem);
6437 + /* find lower page (returns a locked page) */
6438 + hidden_page = grab_cache_page(hidden_inode->i_mapping, page->index);
6442 +#if FIST_ENCODING_BLOCKSIZE > 1
6443 +# error encoding_blocksize greater than 1 is not yet supported
6444 +# endif /* FIST_ENCODING_BLOCKSIZE > 1 */
6446 + hidden_from = from & (~(FIST_ENCODING_BLOCKSIZE - 1));
6447 + hidden_to = ((to + FIST_ENCODING_BLOCKSIZE - 1) & (~(FIST_ENCODING_BLOCKSIZE - 1)));
6448 + if ((page->index << PAGE_CACHE_SHIFT) + to > hidden_inode->i_size) {
6451 + * if this call to commit_write had introduced holes and the code
6452 + * for handling holes was invoked, then the beginning of this page
6453 + * must be zeroed out
6454 + * zero out bytes from 'size_of_file%pagesize' to 'from'.
6456 + if ((hidden_from - (inode->i_size & ~PAGE_CACHE_MASK)) > 0)
6457 + memset((char*)page_address(page) + (inode->i_size & ~PAGE_CACHE_MASK), 0, hidden_from - (inode->i_size & ~PAGE_CACHE_MASK));
6460 + hidden_bytes = hidden_to - hidden_from;
6462 + /* call lower prepare_write */
6464 + if (hidden_inode->i_mapping &&
6465 + hidden_inode->i_mapping->a_ops &&
6466 + hidden_inode->i_mapping->a_ops->prepare_write)
6467 + err = hidden_inode->i_mapping->a_ops->prepare_write(hidden_file,
6472 + /* don't leave locked pages behind, esp. on an ENOSPC */
6475 + fist_dprint(8, "%s: encoding %d bytes\n", __FUNCTION__, hidden_bytes);
6476 + mini_fo_encode_block((char *) page_address(page) + hidden_from, (char*) page_address(hidden_page) + hidden_from, hidden_bytes, inode, inode->i_sb, page->index);
6477 + /* if encode_block could fail, then goto unlock and return error */
6479 + /* call lower commit_write */
6480 + err = hidden_inode->i_mapping->a_ops->commit_write(hidden_file,
6488 + err = bytes; /* convert error to no. of bytes */
6490 + inode->i_blocks = hidden_inode->i_blocks;
6491 + /* we may have to update i_size */
6492 + pos = (page->index << PAGE_CACHE_SHIFT) + to;
6493 + if (pos > inode->i_size)
6494 + inode->i_size = pos;
6497 + * update mtime and ctime of lower level file system
6498 + * mini_fo' mtime and ctime are updated by generic_file_write
6500 + hidden_inode->i_mtime = hidden_inode->i_ctime = CURRENT_TIME;
6502 + mark_inode_dirty_sync(inode);
6505 + UnlockPage(hidden_page);
6506 + page_cache_release(hidden_page);
6507 + kunmap(page); /* kmap was done in prepare_write */
6509 + /* we must set our page as up-to-date */
6511 + ClearPageUptodate(page);
6513 + SetPageUptodate(page);
6515 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
6516 + mutex_unlock(&hidden_inode->i_mutex);
6518 + up(&hidden_inode->i_sem);
6520 + print_exit_status(err);
6521 + return err; /* assume all is ok */
6526 +mini_fo_bmap(struct address_space *mapping, long block)
6530 + inode_t *hidden_inode;
6532 + print_entry_location();
6534 + inode = (inode_t *) mapping->host;
6535 + hidden_inode = itohi(inode);
6537 + if (hidden_inode->i_mapping->a_ops->bmap)
6538 + err = hidden_inode->i_mapping->a_ops->bmap(hidden_inode->i_mapping, block);
6539 + print_exit_location();
6545 + * This function is copied verbatim from mm/filemap.c.
6546 + * XXX: It should be simply moved to some header file instead -- bug Al about it!
6548 +static inline int sync_page(struct page *page)
6550 + struct address_space *mapping = page->mapping;
6552 + if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
6553 + return mapping->a_ops->sync_page(page);
6559 + * XXX: we may not need this function if not FIST_FILTER_DATA.
6560 + * FIXME: for FIST_FILTER_SCA, get all lower pages and sync them each.
6563 +mini_fo_sync_page(page_t *page)
6567 + inode_t *hidden_inode;
6568 + page_t *hidden_page;
6570 + print_entry_location();
6572 + inode = page->mapping->host; /* CPW: Moved below print_entry_location */
6573 + hidden_inode = itohi(inode);
6575 + /* find lower page (returns a locked page) */
6576 + hidden_page = grab_cache_page(hidden_inode->i_mapping, page->index);
6580 + err = sync_page(hidden_page);
6582 + UnlockPage(hidden_page); /* b/c grab_cache_page locked it */
6583 + page_cache_release(hidden_page); /* b/c grab_cache_page increased refcnt */
6586 + print_exit_status(err);
6590 +++ b/fs/mini_fo/README
6592 +README for the mini_fo overlay file system
6593 +=========================================
6599 +mini_fo is a virtual kernel file system that can make read-only
6600 +file systems writable. This is done by redirecting modifying operations
6601 +to a writeable location called "storage directory", and leaving the
6602 +original data in the "base directory" untouched. When reading, the
6603 +file system merges the modifed and original data so that only the
6604 +newest versions will appear. This occurs transparently to the user,
6605 +who can access the data like on any other read-write file system.
6607 +Base and storage directories may be located on the same or on
6608 +different partitions and may be of different file system types. While
6609 +the storage directory obviously needs to be writable, the base may or
6610 +may not be writable, what doesn't matter as it will no be modified
6617 +The primary purpose of the mini_fo file system is to allow easy
6618 +software updates to embedded systems, that often store their root
6619 +file system in a read-only flash file system, but there are many
6620 +more as for example sandboxing, or for allowing live-cds to
6621 +permanently store information.
6626 +This should be simple. Adjust the Makefile to point to the correct
6627 +kernel headers you want to build the module for. Then:
6631 +should build "mini_fo.o" for a 2.4 kernel or "mini_fo.ko" for a 2.6
6634 +If you are building the module for you current kernel, you can install
6635 +the module (as root):
6644 +USING THE FILE SYSTEM
6645 +--------------------
6647 +the general mount syntax is:
6649 + mount -t mini_fo -o base=<base directory>,sto=<storage directory>\
6650 + <base directory> <mount point>
6654 +You have mounted a cdrom to /mnt/cdrom and want to modifiy some files
6657 +load the module (as root)
6659 + # insmod mini_fo.o for a 2.4 kernel or
6661 + # insmod mini_fo.ko for a 2.6 kernel
6664 +create a storage dir in tmp and a mountpoint for mini_fo:
6667 + # mkdir /mnt/mini_fo
6669 +and mount the mini_fo file system:
6671 + # mount -t mini_fo -o base=/mnt/cdrom,sto=/tmp/sto /mnt/cdrom /mnt/mini_fo
6674 +Now the data stored on the cd can be accessed via the mini_fo
6675 +mountpoint just like any read-write file system, files can be modified
6676 +and deleted, new ones can be created and so on. When done unmount the
6679 + # unmount /mnt/mini_fo
6681 +Note that if the file system is mounted again using the same storage
6682 +file system, of course it will appear in the modified state again. If
6683 +you remount it using an new empty storage directory, it will be
6684 +unmodified. Therefore by executing:
6689 +you can nuke all the changes you made to the original file system. But
6690 + remember NEVER do this while the mini_fo file system is mounted!
6693 +Alternatively you can use the mini_fo-overlay bash script, that
6694 +simplifies managing mini_fo mounts. See TOOLS Section.
6700 +mini_fo-merge (experimental):
6702 +This is a bash script that will merge changes contained in the storage
6703 +directory back to the base directory. This allows mini_fo to function
6704 +as a cache file system by overlaying a slow (network, ...) file system
6705 +and using a fast (ramdisk, ...) as storage. When done, changes can be
6706 +merged back to the (slow) base with mini_fo-merge. See "mini_fo-merge
6709 +It can be usefull for merging changes back after a successfull test
6710 +(patches, software updates...)
6715 +This bash script simplifies managing one or more mini_fo mounts. For
6716 +overlaying a directory called "basedir1", you can just call:
6718 + # mini_fo-overlay basedir1
6720 +This will mount mini_fo with "basedir1" as base, "/tmp/sto-basedir1/"
6721 +as storage to "/mnt/mini_fo-basedir1/". It has more options though,
6722 +type "mini_fo-overlay -h" for details.
6725 +DOCUMENTATION, REPORTING BUGS, GETTING HELP
6726 +-------------------------------------------
6728 +Please visit the mini_fo project page at:
6730 +http://www.denx.de/twiki/bin/view/Know/MiniFOHome
6736 +Never modify the base or the storage directorys while the mini_fo
6737 +file system is mounted, or you might crash you system. Simply accessing
6738 +and reading should not cause any trouble.
6740 +Exporting a mini_fo mount point via NFS has not been tested, and may
6743 +Check the RELEASE_NOTES for details on bugs and features.
6747 +Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
6749 +This program is free software; you can redistribute it and/or
6750 +modify it under the terms of the GNU General Public License
6751 +as published by the Free Software Foundation; either version
6752 +2 of the License, or (at your option) any later version.
6756 +++ b/fs/mini_fo/RELEASE_NOTES
6758 +Release: mini_fo-0.6.1 (v0-6-1)
6766 +- bugfixes (see ChangeLog)
6768 +- two helper scripts "mini_fo_merge" and "mini_fo_overlay" (see
6769 + README for details).
6773 +- Support for 2.4 and 2.6 (see Makefile)
6775 +- Partial hard link support (creating works as expected, but already
6776 + existing links in the base file system will be treated as if they
6777 + were individual files).
6779 +- Various bugfixes and cleanups.
6784 +- This is mini_fo-0-6-0-pre1! This release is a complete rewrite of
6785 + many vital mini_fo parts such as the old whiteout list code which
6786 + has been replaced by the new META subsystem.
6788 +- Light weight directory renaming implemented. This means if a
6789 + directory is renamed via the mini_fo filesystem this will no longer
6790 + result in a complete copy in storage, instead only one empty
6791 + directory will be created. All base filed contained in the original
6792 + directory stay there until modified.
6794 +- Special files (creating, renaming, deleting etc.) now working.
6796 +- Many bugfixes and cleanup, mini_fo is now a lot more stable.
6801 +- Final release of the 0-5-* versions. Next will be a complete rewrite
6802 + of many features. This release contains several bugfixes related to
6803 + directory renaming.
6808 +- Lots of cleanup and several bugfixes related to directory deleting
6810 +- Directory renaming suddenly works, what is most likely due to the
6811 + fact tha that "mv" is smart: if the classic rename doesn't work it
6812 + will assume that source and target file are on different fs and will
6813 + copy the directory and try to remove the source directory. Until
6814 + directory removing wasn't implemented, it would fail to do this and
6816 + So, directory renaming works for now, but it doesn't yet do what you
6817 + would expect from a overlay fs, so use with care.
6822 +- implemented directory deleting
6823 +- made parsing of mount options more stable
6824 +- New format of mount options! (See README)
6825 +- I can't reproduce the unknown panic with 2.4.25 anymore, so I'll
6826 + happily assume it never existed!
6829 +Implemented features:
6830 +---------------------
6832 +- creating hard links (see BUGS on already existing hard links)
6833 +- lightweight directory renaming
6834 +- renaming device files, pipes, sockets, etc.
6835 +- creating, renaming, deleting of special files
6836 +- deleting directorys
6837 +- general directory reading (simple "ls" )
6838 +- creating files in existing directorys
6839 +- creating directorys
6841 +- reading and writing files (involves opening)
6842 +- appending to files (creates copy in storage)
6844 +- llseek works too, what allows editors to work
6845 +- persistency (a deleted file stay deleted over remounts)
6846 +- use of symbolic links
6847 +- creating of device files
6850 +Not (yet) implemented features:
6851 +-------------------------------
6853 +- full hard link support.
6860 +Hard links in the base file system will be treated as individual
6861 +files, not as links to one inode.
6863 +The main problem with hard links isn't allowing to create them, but
6864 +their pure existence. If you modify a base hard link, the changes made
6865 +will only show up on this link, the other link will remain in the
6866 +original state. I hope to fix this someday. Please note that this does
6867 +not effect the special hard links '.' and '..', that are handled
6868 +seperately by the lower fs.
6870 +++ b/fs/mini_fo/state.c
6873 + * Copyright (C) 2005 Markus Klotzbuecher <mk@creamnet.de>
6875 + * This program is free software; you can redistribute it and/or
6876 + * modify it under the terms of the GNU General Public License
6877 + * as published by the Free Software Foundation; either version
6878 + * 2 of the License, or (at your option) any later version.
6881 +#ifdef HAVE_CONFIG_H
6882 +# include <config.h>
6883 +#endif /* HAVE_CONFIG_H */
6886 +#include "mini_fo.h"
6889 +/* create the storage file, setup new states */
6890 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
6891 +int create_sto_reg_file(dentry_t *dentry, int mode, struct nameidata *nd)
6893 +int create_sto_reg_file(dentry_t *dentry, int mode)
6898 + dentry_t *hidden_sto_dentry;
6899 + dentry_t *hidden_sto_dir_dentry;
6901 + if(exists_in_storage(dentry)) {
6902 + printk(KERN_CRIT "mini_fo: create_sto_file: wrong type or state.\n");
6906 + err = get_neg_sto_dentry(dentry);
6909 + printk(KERN_CRIT "mini_fo: create_sto_file: ERROR getting neg. sto dentry.\n");
6913 + dir = dentry->d_parent->d_inode;
6914 + hidden_sto_dentry = dtohd2(dentry);
6917 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
6919 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
6920 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
6922 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
6925 + err = PTR_ERR(hidden_sto_dir_dentry);
6926 + if (IS_ERR(hidden_sto_dir_dentry))
6929 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
6930 + err = vfs_create(hidden_sto_dir_dentry->d_inode,
6931 + hidden_sto_dentry,
6934 + err = vfs_create(hidden_sto_dir_dentry->d_inode,
6935 + hidden_sto_dentry,
6939 + printk(KERN_CRIT "mini_fo: create_sto_file: ERROR creating sto file.\n");
6943 + if(!dtohd2(dentry)->d_inode) {
6944 + printk(KERN_CRIT "mini_fo: create_sto_file: ERROR creating sto file [2].\n");
6949 + /* interpose the new inode */
6950 + if(dtost(dentry) == DELETED) {
6951 + dtost(dentry) = DEL_REWRITTEN;
6952 + err = mini_fo_tri_interpose(NULL, hidden_sto_dentry, dentry, dir->i_sb, 0);
6956 + else if(dtost(dentry) == NON_EXISTANT) {
6957 + dtost(dentry) = CREATED;
6958 + err = mini_fo_tri_interpose(dtohd(dentry), hidden_sto_dentry, dentry, dir->i_sb, 0);
6962 + else if(dtost(dentry) == UNMODIFIED) {
6963 + dtost(dentry) = MODIFIED;
6964 + /* interpose on new inode */
6965 + if(itohi2(dentry->d_inode) != NULL) {
6966 + printk(KERN_CRIT "mini_fo: create_sto_file: invalid inode detected.\n");
6970 + itohi2(dentry->d_inode) = igrab(dtohd2(dentry)->d_inode);
6972 + fist_copy_attr_timesizes(dentry->d_parent->d_inode,
6973 + hidden_sto_dir_dentry->d_inode);
6976 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
6977 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
6979 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
6981 + dput(hidden_sto_dir_dentry);
6986 +/* create the sto dir, setup states */
6987 +int create_sto_dir(dentry_t *dentry, int mode)
6991 + dentry_t *hidden_sto_dentry;
6992 + dentry_t *hidden_sto_dir_dentry;
6994 + /* had to take the "!S_ISDIR(mode))" check out, because it failed */
6995 + if(exists_in_storage(dentry)) {
6996 + printk(KERN_CRIT "mini_fo: create_sto_dir: wrong type or state.\\
7002 + err = get_neg_sto_dentry(dentry);
7008 + dir = dentry->d_parent->d_inode;
7009 + hidden_sto_dentry = dtohd2(dentry);
7011 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry); */
7012 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
7014 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7015 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7017 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
7020 + err = PTR_ERR(hidden_sto_dir_dentry);
7021 + if (IS_ERR(hidden_sto_dir_dentry))
7024 + err = vfs_mkdir(hidden_sto_dir_dentry->d_inode,
7025 + hidden_sto_dentry,
7028 + printk(KERN_CRIT "mini_fo: create_sto_dir: ERROR creating sto dir.\n");
7032 + if(!dtohd2(dentry)->d_inode) {
7033 + printk(KERN_CRIT "mini_fo: create_sto_dir: ERROR creating sto dir [2].\n");
7038 + /* interpose the new inode */
7039 + if(dtost(dentry) == DELETED) {
7040 + dtost(dentry) = DEL_REWRITTEN;
7041 + err = mini_fo_tri_interpose(NULL, hidden_sto_dentry, dentry, dir->i_sb, 0);
7045 + else if(dtopd(dentry)->state == NON_EXISTANT) {
7046 + dtopd(dentry)->state = CREATED;
7047 + err = mini_fo_tri_interpose(dtohd(dentry), hidden_sto_dentry, dentry, dir->i_sb, 0);
7051 + else if(dtopd(dentry)->state == UNMODIFIED) {
7052 + dtopd(dentry)->state = MODIFIED;
7053 + /* interpose on new inode */
7054 + if(itohi2(dentry->d_inode) != NULL) {
7055 + printk(KERN_CRIT "mini_fo: create_sto_dir: ERROR, invalid inode detected.\n");
7059 + itohi2(dentry->d_inode) = igrab(dtohd2(dentry)->d_inode);
7062 + fist_copy_attr_timesizes(dir, hidden_sto_dir_dentry->d_inode);
7064 + /* initalize the wol list */
7065 + itopd(dentry->d_inode)->deleted_list_size = -1;
7066 + itopd(dentry->d_inode)->renamed_list_size = -1;
7067 + meta_build_lists(dentry);
7071 + /* was: unlock_dir(hidden_sto_dir_dentry); */
7072 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7073 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7075 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7077 + dput(hidden_sto_dir_dentry);
7082 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
7083 +int create_sto_nod(dentry_t *dentry, int mode, dev_t dev)
7085 +int create_sto_nod(dentry_t *dentry, int mode, int dev)
7090 + dentry_t *hidden_sto_dentry;
7091 + dentry_t *hidden_sto_dir_dentry;
7093 + if(exists_in_storage(dentry)) {
7097 + err = get_neg_sto_dentry(dentry);
7100 + printk(KERN_CRIT "mini_fo: create_sto_nod: ERROR getting neg. sto dentry.\n");
7104 + dir = dentry->d_parent->d_inode;
7105 + hidden_sto_dentry = dtohd2(dentry);
7108 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
7110 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7111 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7113 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
7116 + err = PTR_ERR(hidden_sto_dir_dentry);
7117 + if (IS_ERR(hidden_sto_dir_dentry))
7120 + err = vfs_mknod(hidden_sto_dir_dentry->d_inode, hidden_sto_dentry, mode, dev);
7124 + if(!dtohd2(dentry)->d_inode) {
7125 + printk(KERN_CRIT "mini_fo: create_sto_nod: creating storage inode failed [1].\n");
7126 + err = -EINVAL; /* return something indicating failure */
7130 + /* interpose the new inode */
7131 + if(dtost(dentry) == DELETED) {
7132 + dtost(dentry) = DEL_REWRITTEN;
7133 + err = mini_fo_tri_interpose(NULL, hidden_sto_dentry, dentry, dir->i_sb, 0);
7137 + else if(dtost(dentry) == NON_EXISTANT) {
7138 + dtost(dentry) = CREATED;
7139 + err = mini_fo_tri_interpose(dtohd(dentry), hidden_sto_dentry, dentry, dir->i_sb, 0);
7143 + else if(dtost(dentry) == UNMODIFIED) {
7144 + dtost(dentry) = MODIFIED;
7145 + /* interpose on new inode */
7146 + if(itohi2(dentry->d_inode) != NULL) {
7147 + printk(KERN_CRIT "mini_fo: create_sto_nod: error, invalid inode detected.\n");
7151 + itohi2(dentry->d_inode) = igrab(dtohd2(dentry)->d_inode);
7154 + fist_copy_attr_timesizes(dir, hidden_sto_dir_dentry->d_inode);
7157 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7158 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7160 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7162 + dput(hidden_sto_dir_dentry);
7168 +/* unimplemented (and possibly not usefull):
7170 + nondir-del_to_del_rew
7171 + nondir-non_exist_to_creat
7176 + dir-del_rew_to_del
7177 + dir-del_to_del_rew
7178 + dir-non_exist_to_creat
7182 +/* bring a file of any type from state UNMODIFIED to MODIFIED */
7183 +int nondir_unmod_to_mod(dentry_t *dentry, int cp_flag)
7186 + struct vfsmount *tgt_mnt;
7187 + struct vfsmount *src_mnt;
7188 + dentry_t *tgt_dentry;
7189 + dentry_t *src_dentry;
7190 + dentry_t *hidden_sto_dentry;
7191 + dentry_t *hidden_sto_dir_dentry;
7193 + check_mini_fo_dentry(dentry);
7195 + if((dtost(dentry) != UNMODIFIED) ||
7196 + S_ISDIR(dentry->d_inode->i_mode)) {
7197 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_mod: \
7198 + wrong type or state.\n");
7202 + err = get_neg_sto_dentry(dentry);
7205 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_mod: \
7206 + ERROR getting neg. sto dentry.\n");
7210 + /* create sto file */
7211 + hidden_sto_dentry = dtohd2(dentry);
7214 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
7216 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7217 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7219 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
7222 + err = PTR_ERR(hidden_sto_dir_dentry);
7223 + if (IS_ERR(hidden_sto_dir_dentry))
7226 + /* handle different types of nondirs */
7227 + if(S_ISCHR(dentry->d_inode->i_mode) ||
7228 + S_ISBLK(dentry->d_inode->i_mode)) {
7229 + err = vfs_mknod(hidden_sto_dir_dentry->d_inode,
7230 + hidden_sto_dentry,
7231 + dtohd(dentry)->d_inode->i_mode,
7232 + dtohd(dentry)->d_inode->i_rdev);
7235 + else if(S_ISREG(dentry->d_inode->i_mode)) {
7237 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
7238 + err = vfs_create(hidden_sto_dir_dentry->d_inode,
7239 + hidden_sto_dentry,
7240 + dtohd(dentry)->d_inode->i_mode, NULL);
7242 + err = vfs_create(hidden_sto_dir_dentry->d_inode,
7243 + hidden_sto_dentry,
7244 + dtohd(dentry)->d_inode->i_mode);
7248 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_mod: \
7249 + ERROR creating sto file.\n");
7253 + /* interpose on new inode */
7254 + if(itohi2(dentry->d_inode) != NULL) {
7255 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_mod: \
7256 + ERROR, invalid inode detected.\n");
7261 + itohi2(dentry->d_inode) = igrab(dtohd2(dentry)->d_inode);
7263 + fist_copy_attr_timesizes(dentry->d_parent->d_inode,
7264 + hidden_sto_dir_dentry->d_inode);
7265 + dtost(dentry) = MODIFIED;
7267 + /* copy contents if regular file and cp_flag = 1 */
7268 + if((cp_flag == 1) && S_ISREG(dentry->d_inode->i_mode)) {
7270 + /* unlock first */
7271 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7272 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7274 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7277 + dput(hidden_sto_dir_dentry);
7279 + tgt_dentry = dtohd2(dentry);
7280 + tgt_mnt = stopd(dentry->d_inode->i_sb)->hidden_mnt2;
7281 + src_dentry = dtohd(dentry);
7282 + src_mnt = stopd(dentry->d_inode->i_sb)->hidden_mnt;
7284 + err = mini_fo_cp_cont(tgt_dentry, tgt_mnt,
7285 + src_dentry, src_mnt);
7287 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_mod: \
7288 + ERROR copying contents.\n");
7294 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7295 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7297 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7299 + dput(hidden_sto_dir_dentry);
7304 +/* this function is currently identical to nondir_creat_to_del */
7305 +int nondir_del_rew_to_del(dentry_t *dentry)
7307 + return nondir_creat_to_del(dentry);
7310 +int nondir_creat_to_del(dentry_t *dentry)
7314 + inode_t *hidden_sto_dir_inode;
7315 + dentry_t *hidden_sto_dir_dentry;
7316 + dentry_t *hidden_sto_dentry;
7318 + check_mini_fo_dentry(dentry);
7320 + /* for now this function serves for both state DEL_REWRITTEN and
7322 + if(!(dtost(dentry) == CREATED || (dtost(dentry) == DEL_REWRITTEN)) ||
7323 + S_ISDIR(dentry->d_inode->i_mode)) {
7324 + printk(KERN_CRIT "mini_fo: nondir_mod_to_del/del_rew_to_del: \
7325 + wrong type or state.\n");
7330 + hidden_sto_dir_inode = itohi2(dentry->d_parent->d_inode);
7331 + hidden_sto_dentry = dtohd2(dentry);
7333 + /* was: hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry);*/
7334 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
7336 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7337 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7339 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
7342 + /* avoid destroying the hidden inode if the file is in use */
7343 + dget(hidden_sto_dentry);
7344 + err = vfs_unlink(hidden_sto_dir_inode, hidden_sto_dentry);
7345 + dput(hidden_sto_dentry);
7347 + d_delete(hidden_sto_dentry);
7349 + /* propagate number of hard-links */
7350 + dentry->d_inode->i_nlink = itohi2(dentry->d_inode)->i_nlink;
7352 + dtost(dentry) = NON_EXISTANT;
7354 + /* was: unlock_dir(hidden_sto_dir_dentry); */
7355 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7356 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7358 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7360 + dput(hidden_sto_dir_dentry);
7366 +int nondir_mod_to_del(dentry_t *dentry)
7369 + dentry_t *hidden_sto_dentry;
7370 + inode_t *hidden_sto_dir_inode;
7371 + dentry_t *hidden_sto_dir_dentry;
7373 + check_mini_fo_dentry(dentry);
7375 + if(dtost(dentry) != MODIFIED ||
7376 + S_ISDIR(dentry->d_inode->i_mode)) {
7377 + printk(KERN_CRIT "mini_fo: nondir_mod_to_del: \
7378 + wrong type or state.\n");
7383 + hidden_sto_dir_inode = itohi2(dentry->d_parent->d_inode);
7384 + hidden_sto_dentry = dtohd2(dentry);
7386 + /* was hidden_sto_dir_dentry = lock_parent(hidden_sto_dentry); */
7387 + hidden_sto_dir_dentry = dget(hidden_sto_dentry->d_parent);
7389 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7390 + mutex_lock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7392 + down(&hidden_sto_dir_dentry->d_inode->i_sem);
7395 + /* avoid destroying the hidden inode if the file is in use */
7396 + dget(hidden_sto_dentry);
7397 + err = vfs_unlink(hidden_sto_dir_inode, hidden_sto_dentry);
7398 + dput(hidden_sto_dentry);
7400 + d_delete(hidden_sto_dentry);
7402 + /* propagate number of hard-links */
7403 + dentry->d_inode->i_nlink = itohi2(dentry->d_inode)->i_nlink;
7405 + /* dput base dentry, this will relase the inode and free the
7406 + * dentry, as we will never need it again. */
7407 + dput(dtohd(dentry));
7408 + dtohd(dentry) = NULL;
7409 + dtost(dentry) = DELETED;
7411 + /* add deleted file to META-file */
7412 + meta_add_d_entry(dentry->d_parent,
7413 + dentry->d_name.name,
7414 + dentry->d_name.len);
7416 + /* was: unlock_dir(hidden_sto_dir_dentry); */
7417 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
7418 + mutex_unlock(&hidden_sto_dir_dentry->d_inode->i_mutex);
7420 + up(&hidden_sto_dir_dentry->d_inode->i_sem);
7422 + dput(hidden_sto_dir_dentry);
7428 +int nondir_unmod_to_del(dentry_t *dentry)
7432 + check_mini_fo_dentry(dentry);
7434 + if(dtost(dentry) != UNMODIFIED ||
7435 + S_ISDIR(dentry->d_inode->i_mode)) {
7436 + printk(KERN_CRIT "mini_fo: nondir_unmod_to_del: \
7437 + wrong type or state.\n");
7442 + /* next we have to get a negative dentry for the storage file */
7443 + err = get_neg_sto_dentry(dentry);
7448 + /* add deleted file to META lists */
7449 + err = meta_add_d_entry(dentry->d_parent,
7450 + dentry->d_name.name,
7451 + dentry->d_name.len);
7456 + /* dput base dentry, this will relase the inode and free the
7457 + * dentry, as we will never need it again. */
7458 + dput(dtohd(dentry));
7459 + dtohd(dentry) = NULL;
7460 + dtost(dentry) = DELETED;
7466 +/* bring a dir from state UNMODIFIED to MODIFIED */
7467 +int dir_unmod_to_mod(dentry_t *dentry)
7471 + check_mini_fo_dentry(dentry);
7473 + if(dtost(dentry) != UNMODIFIED ||
7474 + !S_ISDIR(dentry->d_inode->i_mode)) {
7475 + printk(KERN_CRIT "mini_fo: dir_unmod_to_mod: \
7476 + wrong type or state.\n");
7481 + /* this creates our dir incl. sto. structure */
7482 + err = build_sto_structure(dentry->d_parent, dentry);
7484 + printk(KERN_CRIT "mini_fo: dir_unmod_to_mod: \
7485 + build_sto_structure failed.\n");
7493 +++ b/fs/mini_fo/super.c
7496 + * Copyright (c) 1997-2003 Erez Zadok
7497 + * Copyright (c) 2001-2003 Stony Brook University
7499 + * For specific licensing information, see the COPYING file distributed with
7500 + * this package, or get one from ftp://ftp.filesystems.org/pub/fist/COPYING.
7502 + * This Copyright notice must be kept intact and distributed with all
7503 + * fistgen sources INCLUDING sources generated by fistgen.
7506 + * Copyright (C) 2004, 2005 Markus Klotzbuecher <mk@creamnet.de>
7508 + * This program is free software; you can redistribute it and/or
7509 + * modify it under the terms of the GNU General Public License
7510 + * as published by the Free Software Foundation; either version
7511 + * 2 of the License, or (at your option) any later version.
7518 +#ifdef HAVE_CONFIG_H
7519 +# include <config.h>
7523 +#include "mini_fo.h"
7527 +mini_fo_read_inode(inode_t *inode)
7529 + static struct address_space_operations mini_fo_empty_aops;
7531 + __itopd(inode) = kmalloc(sizeof(struct mini_fo_inode_info), GFP_KERNEL);
7532 + if (!itopd(inode)) {
7533 + printk("<0>%s:%s:%d: No kernel memory!\n", __FILE__, __FUNCTION__, __LINE__);
7536 + itohi(inode) = NULL;
7537 + itohi2(inode) = NULL;
7539 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
7540 + inode->i_version++;
7542 + inode->i_version = ++event; /* increment inode version */
7544 + inode->i_op = &mini_fo_main_iops;
7545 + inode->i_fop = &mini_fo_main_fops;
7548 + * XXX: To export a file system via NFS, it has to have the
7549 + * FS_REQUIRES_DEV flag, so turn it on. But should we inherit it from
7550 + * the lower file system, or can we allow our file system to be exported
7551 + * even if the lower one cannot be natively exported.
7553 + inode->i_sb->s_type->fs_flags |= FS_REQUIRES_DEV;
7555 + * OK, the above was a hack, which is now turned off because it may
7556 + * cause a panic/oops on some systems. The correct way to export a
7557 + * "nodev" filesystem is via using nfs-utils > 1.0 and the "fsid=" export
7558 + * parameter, which requires 2.4.20 or later.
7561 + /* I don't think ->a_ops is ever allowed to be NULL */
7562 + inode->i_mapping->a_ops = &mini_fo_empty_aops;
7566 +#if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
7568 + * No need to call write_inode() on the lower inode, as it
7569 + * will have been marked 'dirty' anyway. But we might need
7570 + * to write some of our own stuff to disk.
7573 +mini_fo_write_inode(inode_t *inode, int sync)
7575 + print_entry_location();
7576 + print_exit_location();
7578 +#endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
7582 +mini_fo_put_inode(inode_t *inode)
7585 + * This is really funky stuff:
7586 + * Basically, if i_count == 1, iput will then decrement it and this inode will be destroyed.
7587 + * It is currently holding a reference to the hidden inode.
7588 + * Therefore, it needs to release that reference by calling iput on the hidden inode.
7589 + * iput() _will_ do it for us (by calling our clear_inode), but _only_ if i_nlink == 0.
7590 + * The problem is, NFS keeps i_nlink == 1 for silly_rename'd files.
7591 + * So we must for our i_nlink to 0 here to trick iput() into calling our clear_inode.
7593 + if (atomic_read(&inode->i_count) == 1)
7594 + inode->i_nlink = 0;
7598 +#if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
7600 + * we now define delete_inode, because there are two VFS paths that may
7601 + * destroy an inode: one of them calls clear inode before doing everything
7602 + * else that's needed, and the other is fine. This way we truncate the inode
7603 + * size (and its pages) and then clear our own inode, which will do an iput
7604 + * on our and the lower inode.
7607 +mini_fo_delete_inode(inode_t *inode)
7609 + print_entry_location();
7611 + fist_checkinode(inode, "mini_fo_delete_inode IN");
7612 + inode->i_size = 0; /* every f/s seems to do that */
7613 + clear_inode(inode);
7615 + print_exit_location();
7617 +#endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
7620 +/* final actions when unmounting a file system */
7622 +mini_fo_put_super(super_block_t *sb)
7625 + mntput(stopd(sb)->hidden_mnt);
7626 + mntput(stopd(sb)->hidden_mnt2);
7628 + /* mk: no! dput(stopd(sb)->base_dir_dentry);
7629 + dput(stopd(sb)->storage_dir_dentry); */
7632 + __stopd(sb) = NULL;
7639 + * This is called in do_umount before put_super.
7640 + * The superblock lock is not held yet.
7641 + * We probably do not need to define this or call write_super
7642 + * on the hidden_sb, because sync_supers() will get to hidden_sb
7643 + * sooner or later. But it is also called from file_fsync()...
7646 +mini_fo_write_super(super_block_t *sb)
7650 +#endif /* NOT_NEEDED */
7654 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
7655 +mini_fo_statfs(super_block_t *sb, struct kstatfs *buf)
7657 +mini_fo_statfs(super_block_t *sb, struct statfs *buf)
7661 + super_block_t *hidden_sb;
7663 + hidden_sb = stohs(sb);
7664 + err = vfs_statfs(hidden_sb, buf);
7671 + * XXX: not implemented. This is not allowed yet.
7672 + * Should we call this on the hidden_sb? Probably not.
7675 +mini_fo_remount_fs(super_block_t *sb, int *flags, char *data)
7677 + //printk(KERN_CRIT "mini_fo_remount_fs: WARNING, this function is umimplemented.\n");
7683 + * Called by iput() when the inode reference count reached zero
7684 + * and the inode is not hashed anywhere. Used to clear anything
7685 + * that needs to be, before the inode is completely destroyed and put
7686 + * on the inode free list.
7689 +mini_fo_clear_inode(inode_t *inode)
7692 + * Decrement a reference to a hidden_inode, which was incremented
7693 + * by our read_inode when it was created initially.
7696 + /* release the wol_list */
7697 + if(S_ISDIR(inode->i_mode)) {
7698 + __meta_put_lists(inode);
7701 + /* mk: fan out fun */
7703 + iput(itohi(inode));
7705 + iput(itohi2(inode));
7707 + // XXX: why this assertion fails?
7708 + // because it doesn't like us
7709 + // ASSERT((inode->i_state & I_DIRTY) == 0);
7710 + kfree(itopd(inode));
7711 + __itopd(inode) = NULL;
7716 + * Called in do_umount() if the MNT_FORCE flag was used and this
7717 + * function is defined. See comment in linux/fs/super.c:do_umount().
7718 + * Used only in nfs, to kill any pending RPC tasks, so that subsequent
7719 + * code can actually succeed and won't leave tasks that need handling.
7721 + * PS. I wonder if this is somehow useful to undo damage that was
7722 + * left in the kernel after a user level file server (such as amd)
7726 +mini_fo_umount_begin(super_block_t *sb)
7728 + super_block_t *hidden_sb;
7730 + hidden_sb = stohs(sb);
7732 + if (hidden_sb->s_op->umount_begin)
7733 + hidden_sb->s_op->umount_begin(hidden_sb);
7738 +struct super_operations mini_fo_sops =
7740 + read_inode: mini_fo_read_inode,
7741 +#if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
7742 + write_inode: mini_fo_write_inode,
7743 +#endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
7744 + put_inode: mini_fo_put_inode,
7745 +#if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
7746 + delete_inode: mini_fo_delete_inode,
7747 +#endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
7748 + put_super: mini_fo_put_super,
7749 + statfs: mini_fo_statfs,
7750 + remount_fs: mini_fo_remount_fs,
7751 + clear_inode: mini_fo_clear_inode,
7752 + umount_begin: mini_fo_umount_begin,