Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * namei.c |
| 3 | * |
| 4 | * Copyright (c) 1999 Al Smith |
| 5 | * |
| 6 | * Portions derived from work (c) 1995,1996 Christian Vogelgsang. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/buffer_head.h> |
| 10 | #include <linux/string.h> |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 11 | #include <linux/exportfs.h> |
Christoph Hellwig | 45254b4 | 2008-02-23 15:23:51 -0800 | [diff] [blame] | 12 | #include "efs.h" |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | static efs_ino_t efs_find_entry(struct inode *inode, const char *name, int len) { |
| 16 | struct buffer_head *bh; |
| 17 | |
| 18 | int slot, namelen; |
| 19 | char *nameptr; |
| 20 | struct efs_dir *dirblock; |
| 21 | struct efs_dentry *dirslot; |
| 22 | efs_ino_t inodenum; |
| 23 | efs_block_t block; |
| 24 | |
| 25 | if (inode->i_size & (EFS_DIRBSIZE-1)) |
| 26 | printk(KERN_WARNING "EFS: WARNING: find_entry(): directory size not a multiple of EFS_DIRBSIZE\n"); |
| 27 | |
| 28 | for(block = 0; block < inode->i_blocks; block++) { |
| 29 | |
| 30 | bh = sb_bread(inode->i_sb, efs_bmap(inode, block)); |
| 31 | if (!bh) { |
| 32 | printk(KERN_ERR "EFS: find_entry(): failed to read dir block %d\n", block); |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | dirblock = (struct efs_dir *) bh->b_data; |
| 37 | |
| 38 | if (be16_to_cpu(dirblock->magic) != EFS_DIRBLK_MAGIC) { |
| 39 | printk(KERN_ERR "EFS: find_entry(): invalid directory block\n"); |
| 40 | brelse(bh); |
| 41 | return(0); |
| 42 | } |
| 43 | |
| 44 | for(slot = 0; slot < dirblock->slots; slot++) { |
| 45 | dirslot = (struct efs_dentry *) (((char *) bh->b_data) + EFS_SLOTAT(dirblock, slot)); |
| 46 | |
| 47 | namelen = dirslot->namelen; |
| 48 | nameptr = dirslot->name; |
| 49 | |
| 50 | if ((namelen == len) && (!memcmp(name, nameptr, len))) { |
| 51 | inodenum = be32_to_cpu(dirslot->inode); |
| 52 | brelse(bh); |
| 53 | return(inodenum); |
| 54 | } |
| 55 | } |
| 56 | brelse(bh); |
| 57 | } |
| 58 | return(0); |
| 59 | } |
| 60 | |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 61 | struct dentry *efs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags) |
| 62 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | efs_ino_t inodenum; |
Al Viro | a904937 | 2011-07-08 21:20:11 -0400 | [diff] [blame] | 64 | struct inode *inode = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | inodenum = efs_find_entry(dir, dentry->d_name.name, dentry->d_name.len); |
Al Viro | a904937 | 2011-07-08 21:20:11 -0400 | [diff] [blame] | 67 | if (inodenum) |
David Howells | 298384cd | 2008-02-07 00:15:34 -0800 | [diff] [blame] | 68 | inode = efs_iget(dir->i_sb, inodenum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Al Viro | 2d8a10c | 2008-08-11 11:33:57 -0400 | [diff] [blame] | 70 | return d_splice_alias(inode, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 73 | static struct inode *efs_nfs_get_inode(struct super_block *sb, u64 ino, |
| 74 | u32 generation) |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 75 | { |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 76 | struct inode *inode; |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 77 | |
| 78 | if (ino == 0) |
| 79 | return ERR_PTR(-ESTALE); |
David Howells | 298384cd | 2008-02-07 00:15:34 -0800 | [diff] [blame] | 80 | inode = efs_iget(sb, ino); |
| 81 | if (IS_ERR(inode)) |
| 82 | return ERR_CAST(inode); |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 83 | |
David Howells | 298384cd | 2008-02-07 00:15:34 -0800 | [diff] [blame] | 84 | if (generation && inode->i_generation != generation) { |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 85 | iput(inode); |
| 86 | return ERR_PTR(-ESTALE); |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 89 | return inode; |
| 90 | } |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 91 | |
Christoph Hellwig | 05da080 | 2007-10-21 16:42:09 -0700 | [diff] [blame] | 92 | struct dentry *efs_fh_to_dentry(struct super_block *sb, struct fid *fid, |
| 93 | int fh_len, int fh_type) |
| 94 | { |
| 95 | return generic_fh_to_dentry(sb, fid, fh_len, fh_type, |
| 96 | efs_nfs_get_inode); |
| 97 | } |
| 98 | |
| 99 | struct dentry *efs_fh_to_parent(struct super_block *sb, struct fid *fid, |
| 100 | int fh_len, int fh_type) |
| 101 | { |
| 102 | return generic_fh_to_parent(sb, fid, fh_len, fh_type, |
| 103 | efs_nfs_get_inode); |
Christoph Hellwig | 5ca2960 | 2007-07-17 04:04:29 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | struct dentry *efs_get_parent(struct dentry *child) |
| 107 | { |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 108 | struct dentry *parent = ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | efs_ino_t ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | ino = efs_find_entry(child->d_inode, "..", 2); |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 112 | if (ino) |
| 113 | parent = d_obtain_alias(efs_iget(child->d_inode->i_sb, ino)); |
Christoph Hellwig | 4400372 | 2008-08-11 15:49:04 +0200 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |