fs/dcache.c | 19 ++ fs/exec.c | 17 +- fs/namei.c | 295 +++++++++++++++++++++++++++++++++++++++------- fs/namespace.c | 28 +++- fs/open.c | 172 +++++++++++++++++++------- fs/stat.c | 52 +++++--- include/linux/dcache.h | 60 +++++++++ include/linux/fs.h | 32 ++++ include/linux/fs_struct.h | 4 kernel/exit.c | 3 kernel/fork.c | 3 kernel/ksyms.c | 1 12 files changed, 558 insertions(+), 128 deletions(-) Index: linux-2.4.19.SuSE/fs/dcache.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/dcache.c Mon Jan 27 05:08:04 2003 +++ linux-2.4.19.SuSE/fs/dcache.c Sat Nov 15 17:29:03 2003 @@ -186,6 +186,13 @@ spin_unlock(&dcache_lock); return 0; } + + /* network invalidation by Lustre */ + if (dentry->d_flags & DCACHE_LUSTRE_INVALID) { + spin_unlock(&dcache_lock); + return 0; + } + /* * Check whether to do a partial shrink_dcache * to get rid of unused child entries. @@ -838,13 +845,19 @@ * Adds a dentry to the hash according to its name. */ -void d_rehash(struct dentry * entry) +void __d_rehash(struct dentry * entry, int lock) { struct list_head *list = d_hash(entry->d_parent, entry->d_name.hash); if (!list_empty(&entry->d_hash)) BUG(); - spin_lock(&dcache_lock); + if (lock) spin_lock(&dcache_lock); list_add(&entry->d_hash, list); - spin_unlock(&dcache_lock); + if (lock) spin_unlock(&dcache_lock); +} +EXPORT_SYMBOL(__d_rehash); + +void d_rehash(struct dentry * entry) +{ + __d_rehash(entry, 1); } #define do_switch(x,y) do { \ Index: linux-2.4.19.SuSE/fs/exec.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/exec.c Mon Jan 27 05:08:35 2003 +++ linux-2.4.19.SuSE/fs/exec.c Sat Nov 15 17:34:06 2003 @@ -107,8 +107,10 @@ struct file * file; struct nameidata nd; int error; + struct lookup_intent it = { .it_op = IT_OPEN, + .it_flags = FMODE_READ|FMODE_EXEC }; - error = user_path_walk(library, &nd); + error = user_path_walk_it(library, &nd, &it); if (error) goto out; @@ -120,7 +122,8 @@ if (error) goto exit; - file = dentry_open(nd.dentry, nd.mnt, O_RDONLY); + file = dentry_open_it(nd.dentry, nd.mnt, O_RDONLY, &it); + intent_release(&it); error = PTR_ERR(file); if (IS_ERR(file)) goto out; @@ -346,9 +349,11 @@ struct inode *inode; struct file *file; int err = 0; + struct lookup_intent it = { .it_op = IT_OPEN, + .it_flags = FMODE_READ|FMODE_EXEC }; if (path_init(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd)) - err = path_walk(name, &nd); + err = path_walk_it(name, &nd, &it); file = ERR_PTR(err); if (!err) { inode = nd.dentry->d_inode; @@ -360,7 +365,8 @@ err = -EACCES; file = ERR_PTR(err); if (!err) { - file = dentry_open(nd.dentry, nd.mnt, O_RDONLY); + file = dentry_open_it(nd.dentry, nd.mnt, O_RDONLY, &it); + intent_release(&it); if (!IS_ERR(file)) { err = deny_write_access(file); if (err) { @@ -372,6 +378,7 @@ return file; } } + intent_release(&it); path_release(&nd); } goto out; @@ -981,7 +988,7 @@ goto close_fail; if (!file->f_op->write) goto close_fail; - if (do_truncate(file->f_dentry, 0) != 0) + if (do_truncate(file->f_dentry, 0, 0) != 0) goto close_fail; retval = binfmt->core_dump(signr, regs, file); Index: linux-2.4.19.SuSE/fs/namei.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/namei.c Mon Jan 27 05:08:07 2003 +++ linux-2.4.19.SuSE/fs/namei.c Sat Nov 15 17:52:03 2003 @@ -94,6 +94,13 @@ * XEmacs seems to be relying on it... */ +void intent_release(struct lookup_intent *it) +{ + if (it && it->it_op_release) + it->it_op_release(it); + +} + /* In order to reduce some races, while at the same time doing additional * checking and hopefully speeding things up, we copy filenames to the * kernel data space before using them.. @@ -260,10 +267,19 @@ * Internal lookup() using the new generic dcache. * SMP-safe */ -static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, int flags) +static struct dentry *cached_lookup(struct dentry *parent, struct qstr *name, + int flags, struct lookup_intent *it) { struct dentry * dentry = d_lookup(parent, name); + if (dentry && dentry->d_op && dentry->d_op->d_revalidate_it) { + if (!dentry->d_op->d_revalidate_it(dentry, flags, NULL, it) && + !d_invalidate(dentry)) { + dput(dentry); + dentry = NULL; + } + return dentry; + } else if (dentry && dentry->d_op && dentry->d_op->d_revalidate) { if (!dentry->d_op->d_revalidate(dentry, flags) && !d_invalidate(dentry)) { dput(dentry); @@ -281,11 +297,15 @@ * make sure that nobody added the entry to the dcache in the meantime.. * SMP-safe */ -static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, int flags) +static struct dentry *real_lookup(struct dentry *parent, struct qstr *name, + int flags, struct lookup_intent *it) { struct dentry * result; struct inode *dir = parent->d_inode; + int counter = 0; +again: + counter++; down(&dir->i_sem); /* * First re-do the cached lookup just in case it was created @@ -300,6 +320,9 @@ result = ERR_PTR(-ENOMEM); if (dentry) { lock_kernel(); + if (dir->i_op->lookup_it) + result = dir->i_op->lookup_it(dir, dentry, NULL, it, flags); + else result = dir->i_op->lookup(dir, dentry); unlock_kernel(); if (result) @@ -321,6 +344,15 @@ dput(result); result = ERR_PTR(-ENOENT); } + } else if (result->d_op && result->d_op->d_revalidate_it) { + if (!result->d_op->d_revalidate_it(result, flags, NULL, it) && + !d_invalidate(result)) { + dput(result); + if (counter > 10) + result = ERR_PTR(-ESTALE); + if (!IS_ERR(result)) + goto again; + } } return result; } @@ -332,7 +364,8 @@ * Without that kind of total limit, nasty chains of consecutive * symlinks can cause almost arbitrarily long lookups. */ -static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd) +static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd, + struct lookup_intent *it) { int err; if (current->link_count >= 8) @@ -346,10 +379,12 @@ current->link_count++; current->total_link_count++; UPDATE_ATIME(dentry->d_inode); + nd->intent = it; err = dentry->d_inode->i_op->follow_link(dentry, nd); current->link_count--; return err; loop: + intent_release(it); path_release(nd); return -ELOOP; } @@ -447,7 +482,8 @@ * * We expect 'base' to be positive and a directory. */ -int link_path_walk(const char * name, struct nameidata *nd) +int link_path_walk_it(const char *name, struct nameidata *nd, + struct lookup_intent *it) { struct dentry *dentry; struct inode *inode; @@ -524,12 +560,13 @@ break; } /* This does the actual lookups.. */ - dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE); + dentry = cached_lookup(nd->dentry, &this, LOOKUP_CONTINUE, NULL); if (!dentry) { err = -EWOULDBLOCKIO; if (atomic) break; - dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE); + dentry = real_lookup(nd->dentry, &this, LOOKUP_CONTINUE, + NULL); err = PTR_ERR(dentry); if (IS_ERR(dentry)) break; @@ -547,7 +584,7 @@ goto out_dput; if (inode->i_op->follow_link) { - err = do_follow_link(dentry, nd); + err = do_follow_link(dentry, nd, NULL); dput(dentry); if (err) goto return_err; @@ -563,7 +600,7 @@ nd->dentry = dentry; } err = -ENOTDIR; - if (!inode->i_op->lookup) + if (!inode->i_op->lookup && !inode->i_op->lookup_it) break; continue; /* here ends the main loop */ @@ -590,12 +627,12 @@ if (err < 0) break; } - dentry = cached_lookup(nd->dentry, &this, 0); + dentry = cached_lookup(nd->dentry, &this, 0, it); if (!dentry) { err = -EWOULDBLOCKIO; if (atomic) break; - dentry = real_lookup(nd->dentry, &this, 0); + dentry = real_lookup(nd->dentry, &this, 0, it); err = PTR_ERR(dentry); if (IS_ERR(dentry)) break; @@ -605,7 +642,7 @@ inode = dentry->d_inode; if ((lookup_flags & LOOKUP_FOLLOW) && inode && inode->i_op && inode->i_op->follow_link) { - err = do_follow_link(dentry, nd); + err = do_follow_link(dentry, nd, it); dput(dentry); if (err) goto return_err; @@ -619,7 +656,8 @@ goto no_inode; if (lookup_flags & LOOKUP_DIRECTORY) { err = -ENOTDIR; - if (!inode->i_op || !inode->i_op->lookup) + if (!inode->i_op || + (!inode->i_op->lookup && !inode->i_op->lookup_it)) break; } goto return_base; @@ -643,6 +681,25 @@ * Check the cached dentry for staleness. */ dentry = nd->dentry; + if (dentry && dentry->d_op && dentry->d_op->d_revalidate_it) { + err = -ESTALE; + if (!dentry->d_op->d_revalidate_it(dentry, 0, NULL, it)) { + struct dentry *new; + err = permission(dentry->d_parent->d_inode, + MAY_EXEC); + if (err) + break; + new = real_lookup(dentry->d_parent, + &dentry->d_name, 0, it); + if (IS_ERR(new)) { + err = PTR_ERR(new); + break; + } + d_invalidate(dentry); + dput(dentry); + nd->dentry = new; + } + if (!nd->dentry->d_inode) + goto no_inode; + } else if (dentry && dentry->d_op && dentry->d_op->d_revalidate) { err = -ESTALE; if (!dentry->d_op->d_revalidate(dentry, lookup_flags & LOOKUP_PARENT)) { @@ -656,15 +713,28 @@ dput(dentry); break; } + if (err) + intent_release(it); path_release(nd); return_err: return err; } +int link_path_walk(const char * name, struct nameidata *nd) +{ + return link_path_walk_it(name, nd, NULL); +} + +int path_walk_it(const char * name, struct nameidata *nd, struct lookup_intent *it) +{ + current->total_link_count = 0; + return link_path_walk_it(name, nd, it); +} + int path_walk(const char * name, struct nameidata *nd) { current->total_link_count = 0; - return link_path_walk(name, nd); + return link_path_walk_it(name, nd, NULL); } /* SMP-safe */ @@ -753,6 +823,7 @@ { nd->last_type = LAST_ROOT; /* if there are only slashes... */ nd->flags = flags; + nd->intent = NULL; if (*name=='/') return walk_init_root(name,nd); read_lock(¤t->fs->lock); @@ -767,7 +838,8 @@ * needs parent already locked. Doesn't follow mounts. * SMP-safe. */ -struct dentry * lookup_hash(struct qstr *name, struct dentry * base) +struct dentry * lookup_hash_it(struct qstr *name, struct dentry * base, + struct lookup_intent *it) { struct dentry * dentry; struct inode *inode; @@ -790,13 +862,16 @@ goto out; } - dentry = cached_lookup(base, name, 0); + dentry = cached_lookup(base, name, 0, it); if (!dentry) { struct dentry *new = d_alloc(base, name); dentry = ERR_PTR(-ENOMEM); if (!new) goto out; lock_kernel(); + if (inode->i_op->lookup_it) + dentry = inode->i_op->lookup_it(inode, new, NULL, it, 0); + else dentry = inode->i_op->lookup(inode, new); unlock_kernel(); if (!dentry) @@ -808,6 +883,12 @@ return dentry; } +struct dentry * lookup_hash(struct qstr *name, struct dentry * base) +{ + return lookup_hash_it(name, base, NULL); +} + + /* SMP-safe */ struct dentry * lookup_one_len(const char * name, struct dentry * base, int len) { @@ -829,7 +910,7 @@ } this.hash = end_name_hash(hash); - return lookup_hash(&this, base); + return lookup_hash_it(&this, base, NULL); access: return ERR_PTR(-EACCES); } @@ -861,6 +942,23 @@ return err; } +int __user_walk_it(const char *name, unsigned flags, struct nameidata *nd, + struct lookup_intent *it) +{ + char *tmp; + int err; + + tmp = getname(name); + err = PTR_ERR(tmp); + if (!IS_ERR(tmp)) { + err = 0; + if (path_init(tmp, flags, nd)) + err = path_walk_it(tmp, nd, it); + putname(tmp); + } + return err; +} + /* * It's inline, so penalty for filesystems that don't use sticky bit is * minimal. @@ -958,7 +1056,8 @@ return retval; } -int vfs_create(struct inode *dir, struct dentry *dentry, int mode) +static int vfs_create_it(struct inode *dir, struct dentry *dentry, int mode, + struct lookup_intent *it) { int error; @@ -971,12 +1070,15 @@ goto exit_lock; error = -EACCES; /* shouldn't it be ENOSYS? */ - if (!dir->i_op || !dir->i_op->create) + if (!dir->i_op || (!dir->i_op->create && !dir->i_op->create_it)) goto exit_lock; DQUOT_INIT(dir); lock_kernel(); - error = dir->i_op->create(dir, dentry, mode); + if (dir->i_op->create_it) + error = dir->i_op->create_it(dir, dentry, mode, it); + else + error = dir->i_op->create(dir, dentry, mode); unlock_kernel(); exit_lock: up(&dir->i_zombie); @@ -985,6 +1087,11 @@ return error; } +int vfs_create(struct inode *dir, struct dentry *dentry, int mode) +{ + return vfs_create_it(dir, dentry, mode, NULL); +} + /* * open_namei() * @@ -999,7 +1106,8 @@ * for symlinks (where the permissions are checked later). * SMP-safe */ -int open_namei(const char * pathname, int flag, int mode, struct nameidata *nd) +int open_namei_it(const char *pathname, int flag, int mode, + struct nameidata *nd, struct lookup_intent *it) { int acc_mode, error = 0; struct inode *inode; @@ -1009,12 +1117,14 @@ acc_mode = ACC_MODE(flag); + if (it) + it->it_flags = flag; /* * The simplest case - just a plain lookup. */ if (!(flag & O_CREAT)) { if (path_init(pathname, lookup_flags(flag), nd)) - error = path_walk(pathname, nd); + error = path_walk_it(pathname, nd, it); if (error) return error; dentry = nd->dentry; @@ -1024,6 +1134,10 @@ /* * Create - we need to know the parent. */ + if (it) { + it->it_create_mode = mode; + it->it_op |= IT_CREAT; + } if (path_init(pathname, LOOKUP_PARENT, nd)) error = path_walk(pathname, nd); if (error) @@ -1040,7 +1154,7 @@ dir = nd->dentry; down(&dir->d_inode->i_sem); - dentry = lookup_hash(&nd->last, nd->dentry); + dentry = lookup_hash_it(&nd->last, nd->dentry, it); do_last: error = PTR_ERR(dentry); @@ -1049,11 +1163,13 @@ goto exit; } + it->it_create_mode = mode; /* Negative dentry, just create the file */ if (!dentry->d_inode) { if (!IS_POSIXACL(dir->d_inode)) mode &= ~current->fs->umask; - error = vfs_create(dir->d_inode, dentry, mode); + error = vfs_create_it(dir->d_inode, dentry, + mode & ~current->fs->umask, it); up(&dir->d_inode->i_sem); #ifndef DENTRY_WASTE_RAM if (error) @@ -1161,7 +1277,7 @@ if (!error) { DQUOT_INIT(inode); - error = do_truncate(dentry, 0); + error = do_truncate(dentry, 0, 1); } put_write_access(inode); if (error) @@ -1173,8 +1289,10 @@ return 0; exit_dput: + intent_release(it); dput(dentry); exit: + intent_release(it); path_release(nd); return error; @@ -1193,7 +1311,10 @@ * are done. Procfs-like symlinks just set LAST_BIND. */ UPDATE_ATIME(dentry->d_inode); + nd->intent = it; error = dentry->d_inode->i_op->follow_link(dentry, nd); + if (error) + intent_release(it); dput(dentry); if (error) return error; @@ -1215,13 +1336,20 @@ } dir = nd->dentry; down(&dir->d_inode->i_sem); - dentry = lookup_hash(&nd->last, nd->dentry); + dentry = lookup_hash_it(&nd->last, nd->dentry, it); putname(nd->last.name); goto do_last; } +int open_namei(const char *pathname, int flag, int mode, struct nameidata *nd) +{ + return open_namei_it(pathname, flag, mode, nd, NULL); +} + + /* SMP-safe */ -static struct dentry *lookup_create(struct nameidata *nd, int is_dir) +struct dentry *lookup_create(struct nameidata *nd, int is_dir, + struct lookup_intent *it) { struct dentry *dentry; @@ -1229,7 +1357,7 @@ dentry = ERR_PTR(-EEXIST); if (nd->last_type != LAST_NORM) goto fail; - dentry = lookup_hash(&nd->last, nd->dentry); + dentry = lookup_hash_it(&nd->last, nd->dentry, it); if (IS_ERR(dentry)) goto fail; if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode) @@ -1286,7 +1414,20 @@ error = path_walk(tmp, &nd); if (error) goto out; - dentry = lookup_create(&nd, 0); + + if (nd.last_type != LAST_NORM) { + error = -EEXIST; + goto out2; + } + if (nd.dentry->d_inode->i_op->mknod_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + error = op->mknod_raw(&nd, mode, dev); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto out2; + } + + dentry = lookup_create(&nd, 0, NULL); error = PTR_ERR(dentry); if (!IS_POSIXACL(nd.dentry->d_inode)) @@ -1308,6 +1445,7 @@ dput(dentry); } up(&nd.dentry->d_inode->i_sem); +out2: path_release(&nd); out: putname(tmp); @@ -1356,7 +1494,18 @@ error = path_walk(tmp, &nd); if (error) goto out; - dentry = lookup_create(&nd, 1); + if (nd.last_type != LAST_NORM) { + error = -EEXIST; + goto out2; + } + if (nd.dentry->d_inode->i_op->mkdir_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + error = op->mkdir_raw(&nd, mode); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto out2; + } + dentry = lookup_create(&nd, 1, NULL); error = PTR_ERR(dentry); if (!IS_ERR(dentry)) { if (!IS_POSIXACL(nd.dentry->d_inode)) @@ -1365,6 +1510,7 @@ dput(dentry); } up(&nd.dentry->d_inode->i_sem); +out2: path_release(&nd); out: putname(tmp); @@ -1466,8 +1612,16 @@ error = -EBUSY; goto exit1; } + if (nd.dentry->d_inode->i_op->rmdir_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + + error = op->rmdir_raw(&nd); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto exit1; + } down(&nd.dentry->d_inode->i_sem); - dentry = lookup_hash(&nd.last, nd.dentry); + dentry = lookup_hash_it(&nd.last, nd.dentry, NULL); error = PTR_ERR(dentry); if (!IS_ERR(dentry)) { error = vfs_rmdir(nd.dentry->d_inode, dentry); @@ -1526,8 +1680,15 @@ error = -EISDIR; if (nd.last_type != LAST_NORM) goto exit1; + if (nd.dentry->d_inode->i_op->unlink_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + error = op->unlink_raw(&nd); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto exit1; + } down(&nd.dentry->d_inode->i_sem); - dentry = lookup_hash(&nd.last, nd.dentry); + dentry = lookup_hash_it(&nd.last, nd.dentry, NULL); error = PTR_ERR(dentry); if (!IS_ERR(dentry)) { /* Why not before? Because we want correct error value */ @@ -1595,15 +1756,27 @@ error = path_walk(to, &nd); if (error) goto out; - dentry = lookup_create(&nd, 0); + if (nd.last_type != LAST_NORM) { + error = -EEXIST; + goto out2; + } + if (nd.dentry->d_inode->i_op->symlink_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + error = op->symlink_raw(&nd, from); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto out2; + } + dentry = lookup_create(&nd, 0, NULL); error = PTR_ERR(dentry); if (!IS_ERR(dentry)) { error = vfs_symlink(nd.dentry->d_inode, dentry, from); dput(dentry); } up(&nd.dentry->d_inode->i_sem); + out2: path_release(&nd); -out: + out: putname(to); } putname(from); @@ -1686,7 +1855,14 @@ error = -EXDEV; if (old_nd.mnt != nd.mnt) goto out_release; - new_dentry = lookup_create(&nd, 0); + if (nd.last_type != LAST_NORM) { + error = -EEXIST; + goto out_release; + } + if (nd.dentry->d_inode->i_op->link_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + error = op->link_raw(&old_nd, &nd); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto out_release; + } + new_dentry = lookup_create(&nd, 0, NULL); error = PTR_ERR(new_dentry); if (!IS_ERR(new_dentry)) { error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry); @@ -1732,7 +1908,7 @@ * locking]. */ int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry, - struct inode *new_dir, struct dentry *new_dentry) + struct inode *new_dir, struct dentry *new_dentry) { int error; struct inode *target; @@ -1811,7 +1987,7 @@ } int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry, - struct inode *new_dir, struct dentry *new_dentry) + struct inode *new_dir, struct dentry *new_dentry) { int error; @@ -1902,9 +2078,18 @@ if (newnd.last_type != LAST_NORM) goto exit2; + if (old_dir->d_inode->i_op->rename_raw) { + lock_kernel(); + error = old_dir->d_inode->i_op->rename_raw(&oldnd, &newnd); + unlock_kernel(); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto exit2; + } + double_lock(new_dir, old_dir); - old_dentry = lookup_hash(&oldnd.last, old_dir); + old_dentry = lookup_hash_it(&oldnd.last, old_dir, NULL); error = PTR_ERR(old_dentry); if (IS_ERR(old_dentry)) goto exit3; @@ -1920,16 +2105,16 @@ if (newnd.last.name[newnd.last.len]) goto exit4; } - new_dentry = lookup_hash(&newnd.last, new_dir); + new_dentry = lookup_hash_it(&newnd.last, new_dir, NULL); error = PTR_ERR(new_dentry); if (IS_ERR(new_dentry)) goto exit4; + lock_kernel(); error = vfs_rename(old_dir->d_inode, old_dentry, new_dir->d_inode, new_dentry); unlock_kernel(); - dput(new_dentry); exit4: dput(old_dentry); @@ -1980,20 +2165,26 @@ } static inline int -__vfs_follow_link(struct nameidata *nd, const char *link) +__vfs_follow_link(struct nameidata *nd, const char *link, + struct lookup_intent *it) { int res = 0; char *name; if (IS_ERR(link)) goto fail; + if (it == NULL) + it = nd->intent; + else if (it != nd->intent) + printk("it != nd->intent: tell phil@clusterfs.com\n"); + if (*link == '/') { path_release(nd); if (!walk_init_root(link, nd)) /* weird __emul_prefix() stuff did it */ goto out; } - res = link_path_walk(link, nd); + res = link_path_walk_it(link, nd, it); out: if (current->link_count || res || nd->last_type!=LAST_NORM) return res; @@ -2015,7 +2206,13 @@ int vfs_follow_link(struct nameidata *nd, const char *link) { - return __vfs_follow_link(nd, link); + return __vfs_follow_link(nd, link, NULL); +} + +int vfs_follow_link_it(struct nameidata *nd, const char *link, + struct lookup_intent *it) +{ + return __vfs_follow_link(nd, link, it); } /* get the link contents into pagecache */ @@ -2057,7 +2254,7 @@ { struct page *page = NULL; char *s = page_getlink(dentry, &page); - int res = __vfs_follow_link(nd, s); + int res = __vfs_follow_link(nd, s, NULL); if (page) { kunmap(page); page_cache_release(page); Index: linux-2.4.19.SuSE/fs/namespace.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/namespace.c Mon Jan 27 05:08:07 2003 +++ linux-2.4.19.SuSE/fs/namespace.c Sat Nov 15 17:56:42 2003 @@ -97,6 +97,7 @@ { old_nd->dentry = mnt->mnt_mountpoint; old_nd->mnt = mnt->mnt_parent; + UNPIN(old_nd->dentry, old_nd->mnt, 1); mnt->mnt_parent = mnt; mnt->mnt_mountpoint = mnt->mnt_root; list_del_init(&mnt->mnt_child); @@ -108,6 +109,7 @@ { mnt->mnt_parent = mntget(nd->mnt); mnt->mnt_mountpoint = dget(nd->dentry); + PIN(nd->dentry, nd->mnt, 1); list_add(&mnt->mnt_hash, mount_hashtable+hash(nd->mnt, nd->dentry)); list_add(&mnt->mnt_child, &nd->mnt->mnt_mounts); nd->dentry->d_mounted++; @@ -286,7 +293,7 @@ } } -static int do_umount(struct vfsmount *mnt, int flags) +int do_umount(struct vfsmount *mnt, int flags) { struct super_block * sb = mnt->mnt_sb; int retval = 0; @@ -491,15 +493,18 @@ { struct nameidata old_nd; struct vfsmount *mnt = NULL; + struct lookup_intent it = { .it_op = IT_GETATTR }; int err = mount_is_safe(nd); if (err) return err; if (!old_name || !*old_name) return -EINVAL; if (path_init(old_name, LOOKUP_POSITIVE|LOOKUP_FOLLOW, &old_nd)) - err = path_walk(old_name, &old_nd); - if (err) + err = path_walk_it(old_name, &old_nd, &it); + if (err) { + intent_release(&it); return err; + } down_write(¤t->namespace->sem); err = -EINVAL; @@ -522,6 +527,7 @@ } up_write(¤t->namespace->sem); + intent_release(&it); path_release(&old_nd); return err; } @@ -725,6 +731,7 @@ unsigned long flags, void *data_page) { struct nameidata nd; + struct lookup_intent it = { .it_op = IT_GETATTR }; int retval = 0; int mnt_flags = 0; @@ -750,9 +757,11 @@ /* ... and get the mountpoint */ if (path_init(dir_name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, &nd)) - retval = path_walk(dir_name, &nd); - if (retval) + retval = path_walk_it(dir_name, &nd, &it); + if (retval) { + intent_release(&it); return retval; + } if (flags & MS_REMOUNT) retval = do_remount(&nd, flags & ~MS_REMOUNT, mnt_flags, @@ -764,6 +773,8 @@ else retval = do_add_mount(&nd, type_page, flags, mnt_flags, dev_name, data_page); + + intent_release(&it); path_release(&nd); return retval; } @@ -929,6 +940,8 @@ { struct vfsmount *tmp; struct nameidata new_nd, old_nd, parent_nd, root_parent, user_nd; + struct lookup_intent new_it = { .it_op = IT_GETATTR }; + struct lookup_intent old_it = { .it_op = IT_GETATTR }; char *name; int error; @@ -943,7 +956,7 @@ goto out0; error = 0; if (path_init(name, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &new_nd)) - error = path_walk(name, &new_nd); + error = path_walk_it(name, &new_nd, &new_it); putname(name); if (error) goto out0; @@ -957,7 +970,7 @@ goto out1; error = 0; if (path_init(name, LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY, &old_nd)) - error = path_walk(name, &old_nd); + error = path_walk_it(name, &old_nd, &old_it); putname(name); if (error) goto out1; @@ -1013,8 +1026,10 @@ up(&old_nd.dentry->d_inode->i_zombie); up_write(¤t->namespace->sem); path_release(&user_nd); + intent_release(&old_it); path_release(&old_nd); out1: + intent_release(&new_it); path_release(&new_nd); out0: unlock_kernel(); Index: linux-2.4.19.SuSE/fs/open.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/open.c Mon Jan 27 05:08:00 2003 +++ linux-2.4.19.SuSE/fs/open.c Sat Nov 15 17:43:27 2003 @@ -19,6 +19,8 @@ #include #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m)) +extern int path_walk_it(const char *name, struct nameidata *nd, + struct lookup_intent *it); int vfs_statfs(struct super_block *sb, struct statfs *buf) { @@ -95,9 +97,10 @@ write_unlock(&files->file_lock); } -int do_truncate(struct dentry *dentry, loff_t length) +int do_truncate(struct dentry *dentry, loff_t length, int called_from_open) { struct inode *inode = dentry->d_inode; + struct inode_operations *op = dentry->d_inode->i_op; int error; struct iattr newattrs; @@ -108,7 +111,13 @@ down(&inode->i_sem); newattrs.ia_size = length; newattrs.ia_valid = ATTR_SIZE | ATTR_CTIME; - error = notify_change(dentry, &newattrs); + if (called_from_open) + newattrs.ia_valid |= ATTR_FROM_OPEN; + if (op->setattr_raw) { + newattrs.ia_valid |= ATTR_RAW; + error = op->setattr_raw(inode, &newattrs); + } else + error = notify_change(dentry, &newattrs); up(&inode->i_sem); return error; } @@ -118,12 +127,13 @@ struct nameidata nd; struct inode * inode; int error; + struct lookup_intent it = { .it_op = IT_GETATTR }; error = -EINVAL; if (length < 0) /* sorry, but loff_t says... */ goto out; - error = user_path_walk(path, &nd); + error = user_path_walk_it(path, &nd, &it); if (error) goto out; inode = nd.dentry->d_inode; @@ -163,11 +173,13 @@ error = locks_verify_truncate(inode, NULL, length); if (!error) { DQUOT_INIT(inode); - error = do_truncate(nd.dentry, length); + intent_release(&it); + error = do_truncate(nd.dentry, length, 0); } put_write_access(inode); dput_and_out: + intent_release(&it); path_release(&nd); out: return error; @@ -215,7 +227,7 @@ error = locks_verify_truncate(inode, file, length); if (!error) - error = do_truncate(dentry, length); + error = do_truncate(dentry, length, 0); out_putf: fput(file); out: @@ -260,11 +272,13 @@ struct inode * inode; struct iattr newattrs; - error = user_path_walk(filename, &nd); + error = user_path_walk_it(filename, &nd, NULL); if (error) goto out; inode = nd.dentry->d_inode; + /* this is safe without a Lustre lock because it only depends + on the super block */ error = -EROFS; if (IS_RDONLY(inode)) goto dput_and_out; @@ -279,11 +293,25 @@ goto dput_and_out; newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET; - } else { + } + + if (inode->i_op->setattr_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + + newattrs.ia_valid |= ATTR_RAW; + error = op->setattr_raw(inode, &newattrs); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto dput_and_out; + } + + error = -EPERM; + if (!times) { if (current->fsuid != inode->i_uid && (error = permission(inode,MAY_WRITE)) != 0) goto dput_and_out; } + error = notify_change(nd.dentry, &newattrs); dput_and_out: path_release(&nd); @@ -304,12 +332,14 @@ struct inode * inode; struct iattr newattrs; - error = user_path_walk(filename, &nd); + error = user_path_walk_it(filename, &nd, NULL); if (error) goto out; inode = nd.dentry->d_inode; + /* this is safe without a Lustre lock because it only depends + on the super block */ error = -EROFS; if (IS_RDONLY(inode)) goto dput_and_out; @@ -324,7 +354,20 @@ newattrs.ia_atime = times[0].tv_sec; newattrs.ia_mtime = times[1].tv_sec; newattrs.ia_valid |= ATTR_ATIME_SET | ATTR_MTIME_SET; - } else { + } + + if (inode->i_op->setattr_raw) { + struct inode_operations *op = nd.dentry->d_inode->i_op; + + newattrs.ia_valid |= ATTR_RAW; + error = op->setattr_raw(inode, &newattrs); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + goto dput_and_out; + } + + error = -EPERM; + if (!utimes) { if (current->fsuid != inode->i_uid && (error = permission(inode,MAY_WRITE)) != 0) goto dput_and_out; @@ -347,6 +390,7 @@ int old_fsuid, old_fsgid; kernel_cap_t old_cap; int res; + struct lookup_intent it = { .it_op = IT_GETATTR }; if (mode & ~S_IRWXO) /* where's F_OK, X_OK, W_OK, R_OK? */ return -EINVAL; @@ -364,13 +408,14 @@ else current->cap_effective = current->cap_permitted; - res = user_path_walk(filename, &nd); + res = user_path_walk_it(filename, &nd, &it); if (!res) { res = permission(nd.dentry->d_inode, mode); /* SuS v2 requires we report a read only fs too */ if(!res && (mode & S_IWOTH) && IS_RDONLY(nd.dentry->d_inode) && !special_file(nd.dentry->d_inode->i_mode)) res = -EROFS; + intent_release(&it); path_release(&nd); } @@ -386,6 +431,7 @@ int error; struct nameidata nd; char *name; + struct lookup_intent it = { .it_op = IT_GETATTR }; name = getname(filename); error = PTR_ERR(name); @@ -394,7 +440,7 @@ error = 0; if (path_init(name,LOOKUP_POSITIVE|LOOKUP_FOLLOW|LOOKUP_DIRECTORY,&nd)) - error = path_walk(name, &nd); + error = path_walk_it(name, &nd, &it); putname(name); if (error) goto out; @@ -406,6 +452,7 @@ set_fs_pwd(current->fs, nd.mnt, nd.dentry); dput_and_out: + intent_release(&it); path_release(&nd); out: return error; @@ -446,6 +493,7 @@ int error; struct nameidata nd; char *name; + struct lookup_intent it = { .it_op = IT_GETATTR }; name = getname(filename); error = PTR_ERR(name); @@ -454,7 +502,7 @@ path_init(name, LOOKUP_POSITIVE | LOOKUP_FOLLOW | LOOKUP_DIRECTORY | LOOKUP_NOALT, &nd); - error = path_walk(name, &nd); + error = path_walk_it(name, &nd, &it); putname(name); if (error) goto out; @@ -471,39 +519,56 @@ set_fs_altroot(); error = 0; dput_and_out: + intent_release(&it); path_release(&nd); out: return error; } -asmlinkage long sys_fchmod(unsigned int fd, mode_t mode) +int chmod_common(struct dentry *dentry, mode_t mode) { - struct inode * inode; - struct dentry * dentry; - struct file * file; - int err = -EBADF; + struct inode *inode = dentry->d_inode; struct iattr newattrs; + int err = -EROFS; - file = fget(fd); - if (!file) + if (IS_RDONLY(inode)) goto out; - dentry = file->f_dentry; - inode = dentry->d_inode; + if (inode->i_op->setattr_raw) { + newattrs.ia_mode = mode; + newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; + newattrs.ia_valid |= ATTR_RAW; + err = inode->i_op->setattr_raw(inode, &newattrs); + /* the file system wants to use normal vfs path now */ + if (err != -EOPNOTSUPP) + goto out; + } - err = -EROFS; - if (IS_RDONLY(inode)) - goto out_putf; err = -EPERM; if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) - goto out_putf; + goto out; + if (mode == (mode_t) -1) mode = inode->i_mode; newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; err = notify_change(dentry, &newattrs); -out_putf: +out: + return err; +} + +asmlinkage long sys_fchmod(unsigned int fd, mode_t mode) +{ + struct file * file; + int err = -EBADF; + + file = fget(fd); + if (!file) + goto out; + + err = chmod_common(file->f_dentry, mode); + fput(file); out: return err; @@ -512,30 +577,14 @@ asmlinkage long sys_chmod(const char * filename, mode_t mode) { struct nameidata nd; - struct inode * inode; int error; - struct iattr newattrs; error = user_path_walk(filename, &nd); if (error) goto out; - inode = nd.dentry->d_inode; - - error = -EROFS; - if (IS_RDONLY(inode)) - goto dput_and_out; - error = -EPERM; - if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) - goto dput_and_out; + error = chmod_common(nd.dentry, mode); - if (mode == (mode_t) -1) - mode = inode->i_mode; - newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); - newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; - error = notify_change(nd.dentry, &newattrs); - -dput_and_out: path_release(&nd); out: return error; @@ -555,6 +604,20 @@ error = -EROFS; if (IS_RDONLY(inode)) goto out; + + if (inode->i_op->setattr_raw) { + struct inode_operations *op = dentry->d_inode->i_op; + + newattrs.ia_uid = user; + newattrs.ia_gid = group; + newattrs.ia_valid = ATTR_UID | ATTR_GID | ATTR_CTIME; + newattrs.ia_valid |= ATTR_RAW; + error = op->setattr_raw(inode, &newattrs); + /* the file system wants to use normal vfs path now */ + if (error != -EOPNOTSUPP) + return error; + } + error = -EPERM; if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) goto out; @@ -659,6 +722,7 @@ { int namei_flags, error; struct nameidata nd; + struct lookup_intent it = { .it_op = IT_OPEN }; namei_flags = flags; if ((namei_flags+1) & O_ACCMODE) @@ -666,14 +730,15 @@ if (namei_flags & O_TRUNC) namei_flags |= 2; - error = open_namei(filename, namei_flags, mode, &nd); - if (!error) - return dentry_open(nd.dentry, nd.mnt, flags); + error = open_namei_it(filename, namei_flags, mode, &nd, &it); + if (error) + return ERR_PTR(error); - return ERR_PTR(error); + return dentry_open_it(nd.dentry, nd.mnt, flags, &it); } -struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags) +struct file *dentry_open_it(struct dentry *dentry, struct vfsmount *mnt, + int flags, struct lookup_intent *it) { struct file * f; struct inode *inode; @@ -710,7 +775,9 @@ } if (f->f_op && f->f_op->open) { + f->f_it = it; error = f->f_op->open(inode,f); + f->f_it = NULL; if (error) goto cleanup_all; } @@ -722,6 +789,7 @@ !inode->i_mapping->a_ops->direct_IO)) goto cleanup_all; + intent_release(it); return f; cleanup_all: @@ -736,11 +804,17 @@ cleanup_file: put_filp(f); cleanup_dentry: + intent_release(it); dput(dentry); mntput(mnt); return ERR_PTR(error); } +struct file *dentry_open(struct dentry *dentry, struct vfsmount *mnt, int flags) +{ + return dentry_open_it(dentry, mnt, flags, NULL); +} + /* * Find an empty file descriptor entry, and mark it busy. */ Index: linux-2.4.19.SuSE/fs/stat.c =================================================================== --- linux-2.4.19.SuSE.orig/fs/stat.c Mon Jan 27 05:08:00 2003 +++ linux-2.4.19.SuSE/fs/stat.c Sat Nov 15 17:29:03 2003 @@ -17,10 +17,16 @@ * Revalidate the inode. This is required for proper NFS attribute caching. */ static __inline__ int -do_revalidate(struct dentry *dentry) +do_revalidate(struct dentry *dentry, struct lookup_intent *it) { struct inode * inode = dentry->d_inode; - if (inode->i_op && inode->i_op->revalidate) + if (inode->i_op && inode->i_op->revalidate_it) + return inode->i_op->revalidate_it(dentry, it); + else if (inode->i_op && inode->i_op->revalidate) return inode->i_op->revalidate(dentry); return 0; } @@ -141,13 +145,15 @@ asmlinkage long sys_stat(char * filename, struct __old_kernel_stat * statbuf) { struct nameidata nd; + struct lookup_intent it = { .it_op = IT_GETATTR }; int error; - error = user_path_walk(filename, &nd); + error = user_path_walk_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_old_stat(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -157,13 +163,15 @@ asmlinkage long sys_newstat(char * filename, struct stat * statbuf) { struct nameidata nd; + struct lookup_intent it = { .it_op = IT_GETATTR }; int error; - error = user_path_walk(filename, &nd); + error = user_path_walk_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_new_stat(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -178,13 +186,15 @@ asmlinkage long sys_lstat(char * filename, struct __old_kernel_stat * statbuf) { struct nameidata nd; + struct lookup_intent it = { .it_op = IT_GETATTR }; int error; - error = user_path_walk_link(filename, &nd); + error = user_path_walk_link_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_old_stat(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -195,13 +205,15 @@ asmlinkage long sys_newlstat(char * filename, struct stat * statbuf) { struct nameidata nd; + struct lookup_intent it = { .it_op = IT_GETATTR }; int error; - error = user_path_walk_link(filename, &nd); + error = user_path_walk_link_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_new_stat(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -222,7 +234,7 @@ if (f) { struct dentry * dentry = f->f_dentry; - err = do_revalidate(dentry); + err = do_revalidate(dentry, NULL); if (!err) err = cp_old_stat(dentry->d_inode, statbuf); fput(f); @@ -241,7 +253,7 @@ if (f) { struct dentry * dentry = f->f_dentry; - err = do_revalidate(dentry); + err = do_revalidate(dentry, NULL); if (!err) err = cp_new_stat(dentry->d_inode, statbuf); fput(f); @@ -263,7 +275,7 @@ error = -EINVAL; if (inode->i_op && inode->i_op->readlink && - !(error = do_revalidate(nd.dentry))) { + !(error = do_revalidate(nd.dentry, NULL))) { UPDATE_ATIME(inode); error = inode->i_op->readlink(nd.dentry, buf, bufsiz); } @@ -339,12 +351,14 @@ { struct nameidata nd; int error; + struct lookup_intent it = { .it_op = IT_GETATTR }; - error = user_path_walk(filename, &nd); + error = user_path_walk_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_new_stat64(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -354,12 +368,14 @@ { struct nameidata nd; int error; + struct lookup_intent it = { .it_op = IT_GETATTR }; - error = user_path_walk_link(filename, &nd); + error = user_path_walk_link_it(filename, &nd, &it); if (!error) { - error = do_revalidate(nd.dentry); + error = do_revalidate(nd.dentry, &it); if (!error) error = cp_new_stat64(nd.dentry->d_inode, statbuf); + intent_release(&it); path_release(&nd); } return error; @@ -374,7 +390,7 @@ if (f) { struct dentry * dentry = f->f_dentry; - err = do_revalidate(dentry); + err = do_revalidate(dentry, NULL); if (!err) err = cp_new_stat64(dentry->d_inode, statbuf); fput(f); Index: linux-2.4.19.SuSE/include/linux/dcache.h =================================================================== --- linux-2.4.19.SuSE.orig/include/linux/dcache.h Mon Jan 27 05:13:15 2003 +++ linux-2.4.19.SuSE/include/linux/dcache.h Sat Nov 15 17:35:46 2003 @@ -5,6 +5,52 @@ #include #include +#include + +#define IT_OPEN 0x0001 +#define IT_CREAT 0x0002 +#define IT_READDIR 0x0004 +#define IT_GETATTR 0x0008 +#define IT_LOOKUP 0x0010 +#define IT_UNLINK 0x0020 +#define IT_GETXATTR 0x0040 +#define IT_EXEC 0x0080 +#define IT_PIN 0x0100 +#define IT_CHDIR 0x0200 + +#define IT_FL_LOCKED 0x0001 +#define IT_FL_FOLLOWED 0x0002 /* set by vfs_follow_link */ + +#define INTENT_MAGIC 0x19620323 + + +struct lustre_intent_data { + int it_disposition; + int it_status; + __u64 it_lock_handle; + void *it_data; + int it_lock_mode; + int it_int_flags; +}; +struct lookup_intent { + int it_magic; + void (*it_op_release)(struct lookup_intent *); + int it_op; + int it_flags; + int it_create_mode; + union { + struct lustre_intent_data lustre; + } d; +}; + +static inline void intent_init(struct lookup_intent *it, int op, int flags) +{ + memset(it, 0, sizeof(*it)); + it->it_magic = INTENT_MAGIC; + it->it_op = op; + it->it_flags = flags; +} + /* * linux/include/linux/dcache.h @@ -84,6 +130,8 @@ unsigned char d_iname[DNAME_INLINE_LEN]; /* small names */ }; +struct nameidata; + struct dentry_operations { int (*d_revalidate)(struct dentry *, int); int (*d_hash) (struct dentry *, struct qstr *); @@ -92,8 +137,22 @@ int (*d_delete)(struct dentry *); void (*d_release)(struct dentry *); void (*d_iput)(struct dentry *, struct inode *); + int (*d_revalidate_it)(struct dentry *, int, struct nameidata *, struct lookup_intent *); + void (*d_pin)(struct dentry *, struct vfsmount * , int); + void (*d_unpin)(struct dentry *, struct vfsmount *, int); }; +#define PIN(de,mnt,flag) if (de && de->d_op && de->d_op->d_pin) \ + de->d_op->d_pin(de, mnt, flag); +#define UNPIN(de,mnt,flag) if (de && de->d_op && de->d_op->d_unpin) \ + de->d_op->d_unpin(de, mnt, flag); + + +/* defined in fs/namei.c */ +extern void intent_release(struct lookup_intent *it); +/* defined in fs/dcache.c */ +extern void __d_rehash(struct dentry * entry, int lock); + /* the dentry parameter passed to d_hash and d_compare is the parent * directory of the entries to be compared. It is used in case these * functions need any directory specific information for determining @@ -125,6 +184,7 @@ * s_nfsd_free_path semaphore will be down */ #define DCACHE_REFERENCED 0x0008 /* Recently used, don't discard. */ +#define DCACHE_LUSTRE_INVALID 0x0010 /* Lustre invalidated */ extern spinlock_t dcache_lock; Index: linux-2.4.19.SuSE/include/linux/fs.h =================================================================== --- linux-2.4.19.SuSE.orig/include/linux/fs.h Sat Nov 15 17:25:06 2003 +++ linux-2.4.19.SuSE/include/linux/fs.h Sat Nov 15 17:29:03 2003 @@ -73,6 +73,7 @@ #define FMODE_READ 1 #define FMODE_WRITE 2 +#define FMODE_EXEC 4 #define READ 0 #define WRITE 1 @@ -363,6 +364,9 @@ #define ATTR_MTIME_SET 256 #define ATTR_FORCE 512 /* Not a change, but a change it */ #define ATTR_ATTR_FLAG 1024 +#define ATTR_RAW 0x0800 /* file system, not vfs will massage attrs */ +#define ATTR_FROM_OPEN 0x1000 /* called from open path, ie O_TRUNC */ +#define ATTR_CTIME_SET 0x2000 /* * This is the Inode Attributes structure, used for notify_change(). It @@ -507,6 +511,7 @@ struct pipe_inode_info *i_pipe; struct block_device *i_bdev; struct char_device *i_cdev; + void *i_filterdata; unsigned long i_dnotify_mask; /* Directory notify events */ struct dnotify_struct *i_dnotify; /* for directory notifications */ @@ -669,6 +674,7 @@ /* needed for tty driver, and maybe others */ void *private_data; + struct lookup_intent *f_it; /* preallocated helper kiobuf to speedup O_DIRECT */ struct kiobuf *f_iobuf; @@ -799,6 +805,7 @@ struct qstr last; unsigned int flags; int last_type; + struct lookup_intent *intent; }; #define DQUOT_USR_ENABLED 0x01 /* User diskquotas enabled */ @@ -947,7 +954,8 @@ extern int __vfs_rmdir(struct inode *, struct dentry *); extern int vfs_rmdir(struct inode *, struct dentry *); extern int vfs_unlink(struct inode *, struct dentry *); -extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *); +int vfs_rename(struct inode *old_dir, struct dentry *old_dentry, + struct inode *new_dir, struct dentry *new_dentry); /* * File types @@ -1020,21 +1028,32 @@ struct inode_operations { int (*create) (struct inode *,struct dentry *,int); + int (*create_it) (struct inode *,struct dentry *,int, struct lookup_intent *); struct dentry * (*lookup) (struct inode *,struct dentry *); + struct dentry * (*lookup_it) (struct inode *,struct dentry *, struct nameidata *, struct lookup_intent *, int flags); int (*link) (struct dentry *,struct inode *,struct dentry *); + int (*link_raw) (struct nameidata *,struct nameidata *); int (*unlink) (struct inode *,struct dentry *); + int (*unlink_raw) (struct nameidata *); int (*symlink) (struct inode *,struct dentry *,const char *); + int (*symlink_raw) (struct nameidata *,const char *); int (*mkdir) (struct inode *,struct dentry *,int); + int (*mkdir_raw) (struct nameidata *,int); int (*rmdir) (struct inode *,struct dentry *); + int (*rmdir_raw) (struct nameidata *); int (*mknod) (struct inode *,struct dentry *,int,int); + int (*mknod_raw) (struct nameidata *,int,dev_t); int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *); + int (*rename_raw) (struct nameidata *, struct nameidata *); int (*readlink) (struct dentry *, char *,int); int (*follow_link) (struct dentry *, struct nameidata *); void (*truncate) (struct inode *); int (*permission) (struct inode *, int); int (*revalidate) (struct dentry *); + int (*revalidate_it) (struct dentry *, struct lookup_intent *); int (*setattr) (struct dentry *, struct iattr *); + int (*setattr_raw) (struct inode *, struct iattr *); int (*getattr) (struct dentry *, struct iattr *); int (*setxattr) (struct dentry *, const char *, const void *, size_t, int); ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t); @@ -938,6 +957,7 @@ int (*remount_fs) (struct super_block *, int *, char *); void (*clear_inode) (struct inode *); void (*umount_begin) (struct super_block *); + void (*umount_lustre) (struct super_block *); /* Following are for knfsd to interact with "interesting" filesystems * Currently just reiserfs, but possibly FAT and others later @@ -1244,10 +1263,16 @@ asmlinkage long sys_open(const char *, int, int); asmlinkage long sys_close(unsigned int); /* yes, it's really unsigned */ -extern int do_truncate(struct dentry *, loff_t start); +extern int do_truncate(struct dentry *, loff_t start, int called_from_open); +struct dentry *lookup_create(struct nameidata *nd, int is_dir, + struct lookup_intent *it); extern struct file *filp_open(const char *, int, int); extern struct file * dentry_open(struct dentry *, struct vfsmount *, int); +extern int open_namei_it(const char *filename, int namei_flags, int mode, + struct nameidata *nd, struct lookup_intent *it); +extern struct file *dentry_open_it(struct dentry *dentry, struct vfsmount *mnt, + int flags, struct lookup_intent *it); extern int filp_close(struct file *, fl_owner_t id); extern char * getname(const char *); @@ -1515,6 +1538,7 @@ extern loff_t default_llseek(struct file *file, loff_t offset, int origin); extern int FASTCALL(__user_walk(const char *, unsigned, struct nameidata *)); +extern int FASTCALL(__user_walk_it(const char *, unsigned, struct nameidata *, struct lookup_intent *it)); extern int FASTCALL(path_init(const char *, unsigned, struct nameidata *)); extern int FASTCALL(path_walk(const char *, struct nameidata *)); extern int FASTCALL(link_path_walk(const char *, struct nameidata *)); @@ -1526,6 +1550,8 @@ extern struct dentry * lookup_hash(struct qstr *, struct dentry *); #define user_path_walk(name,nd) __user_walk(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd) #define user_path_walk_link(name,nd) __user_walk(name, LOOKUP_POSITIVE, nd) +#define user_path_walk_it(name,nd,it) __user_walk_it(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd, it) +#define user_path_walk_link_it(name,nd,it) __user_walk_it(name, LOOKUP_POSITIVE, nd, it) extern void iput(struct inode *); extern void force_delete(struct inode *); @@ -1646,6 +1672,8 @@ extern int vfs_readlink(struct dentry *, char *, int, const char *); extern int vfs_follow_link(struct nameidata *, const char *); +extern int vfs_follow_link_it(struct nameidata *, const char *, + struct lookup_intent *it); extern int page_readlink(struct dentry *, char *, int); extern int page_follow_link(struct dentry *, struct nameidata *); extern struct inode_operations page_symlink_inode_operations; Index: linux-2.4.19.SuSE/include/linux/fs_struct.h =================================================================== --- linux-2.4.19.SuSE.orig/include/linux/fs_struct.h Fri Jul 13 15:10:44 2001 +++ linux-2.4.19.SuSE/include/linux/fs_struct.h Sat Nov 15 17:29:03 2003 @@ -34,10 +34,12 @@ write_lock(&fs->lock); old_root = fs->root; old_rootmnt = fs->rootmnt; + PIN(dentry, mnt, 1); fs->rootmnt = mntget(mnt); fs->root = dget(dentry); write_unlock(&fs->lock); if (old_root) { + UNPIN(old_root, old_rootmnt, 1); dput(old_root); mntput(old_rootmnt); } @@ -57,10 +59,12 @@ write_lock(&fs->lock); old_pwd = fs->pwd; old_pwdmnt = fs->pwdmnt; + PIN(dentry, mnt, 0); fs->pwdmnt = mntget(mnt); fs->pwd = dget(dentry); write_unlock(&fs->lock); if (old_pwd) { + UNPIN(old_pwd, old_pwdmnt, 0); dput(old_pwd); mntput(old_pwdmnt); } Index: linux-2.4.19.SuSE/kernel/exit.c =================================================================== --- linux-2.4.19.SuSE.orig/kernel/exit.c Mon Jan 27 05:08:16 2003 +++ linux-2.4.19.SuSE/kernel/exit.c Sat Nov 15 17:29:03 2003 @@ -288,11 +288,14 @@ { /* No need to hold fs->lock if we are killing it */ if (atomic_dec_and_test(&fs->count)) { + UNPIN(fs->pwd, fs->pwdmnt, 0); + UNPIN(fs->root, fs->rootmnt, 1); dput(fs->root); mntput(fs->rootmnt); dput(fs->pwd); mntput(fs->pwdmnt); if (fs->altroot) { + UNPIN(fs->altroot, fs->altrootmnt, 1); dput(fs->altroot); mntput(fs->altrootmnt); } Index: linux-2.4.19.SuSE/kernel/fork.c =================================================================== --- linux-2.4.19.SuSE.orig/kernel/fork.c Mon Jan 27 05:08:56 2003 +++ linux-2.4.19.SuSE/kernel/fork.c Sat Nov 15 17:29:03 2003 @@ -454,10 +454,13 @@ fs->umask = old->umask; read_lock(&old->lock); fs->rootmnt = mntget(old->rootmnt); + PIN(old->pwd, old->pwdmnt, 0); + PIN(old->root, old->rootmnt, 1); fs->root = dget(old->root); fs->pwdmnt = mntget(old->pwdmnt); fs->pwd = dget(old->pwd); if (old->altroot) { + PIN(old->altroot, old->altrootmnt, 1); fs->altrootmnt = mntget(old->altrootmnt); fs->altroot = dget(old->altroot); } else { Index: linux-2.4.19.SuSE/kernel/ksyms.c =================================================================== --- linux-2.4.19.SuSE.orig/kernel/ksyms.c Sat Nov 15 17:24:46 2003 +++ linux-2.4.19.SuSE/kernel/ksyms.c Sat Nov 15 17:29:03 2003 @@ -315,6 +315,9 @@ EXPORT_SYMBOL(set_page_dirty); EXPORT_SYMBOL(vfs_readlink); EXPORT_SYMBOL(vfs_follow_link); +EXPORT_SYMBOL(vfs_follow_link_it); +EXPORT_SYMBOL(do_umount); +EXPORT_SYMBOL(lookup_create); EXPORT_SYMBOL(page_readlink); EXPORT_SYMBOL(page_follow_link); EXPORT_SYMBOL(page_symlink_inode_operations); ===== include/linux/mount.h 1.7 vs edited ===== --- linux-2.4.19.SuSE.orig/include/linux/mount.h Tue Feb 5 09:49:35 2002 +++ linux-2.4.19.SuSE/include/linux/mount.h Tue May 4 19:23:48 2004 @@ -29,6 +29,8 @@ int mnt_flags; char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ struct list_head mnt_list; + struct list_head mnt_lustre_list; /* GNS mount list */ + unsigned long mnt_last_used; /* for GNS auto-umount (jiffies) */ }; static inline struct vfsmount *mntget(struct vfsmount *mnt) @@ -39,6 +39,7 @@ } extern void __mntput(struct vfsmount *mnt); +extern int do_umount(struct vfsmount *mnt, int flags); static inline void mntput(struct vfsmount *mnt) {