dm: dm-zoned: use __bio_add_page for adding single metadata page
[linux-block.git] / fs / efs / namei.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * namei.c
4 *
5 * Copyright (c) 1999 Al Smith
6 *
7 * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
8 */
9
10#include <linux/buffer_head.h>
11#include <linux/string.h>
05da0804 12#include <linux/exportfs.h>
45254b4f 13#include "efs.h"
05da0804 14
1da177e4 15
ca356640
FF
16static efs_ino_t efs_find_entry(struct inode *inode, const char *name, int len)
17{
1da177e4
LT
18 struct buffer_head *bh;
19
20 int slot, namelen;
21 char *nameptr;
22 struct efs_dir *dirblock;
23 struct efs_dentry *dirslot;
24 efs_ino_t inodenum;
25 efs_block_t block;
26
27 if (inode->i_size & (EFS_DIRBSIZE-1))
f403d1db
FF
28 pr_warn("%s(): directory size not a multiple of EFS_DIRBSIZE\n",
29 __func__);
1da177e4
LT
30
31 for(block = 0; block < inode->i_blocks; block++) {
32
33 bh = sb_bread(inode->i_sb, efs_bmap(inode, block));
34 if (!bh) {
f403d1db
FF
35 pr_err("%s(): failed to read dir block %d\n",
36 __func__, block);
1da177e4
LT
37 return 0;
38 }
39
40 dirblock = (struct efs_dir *) bh->b_data;
41
42 if (be16_to_cpu(dirblock->magic) != EFS_DIRBLK_MAGIC) {
f403d1db 43 pr_err("%s(): invalid directory block\n", __func__);
1da177e4 44 brelse(bh);
ca356640 45 return 0;
1da177e4
LT
46 }
47
ca356640 48 for (slot = 0; slot < dirblock->slots; slot++) {
1da177e4
LT
49 dirslot = (struct efs_dentry *) (((char *) bh->b_data) + EFS_SLOTAT(dirblock, slot));
50
51 namelen = dirslot->namelen;
52 nameptr = dirslot->name;
53
54 if ((namelen == len) && (!memcmp(name, nameptr, len))) {
55 inodenum = be32_to_cpu(dirslot->inode);
56 brelse(bh);
ca356640 57 return inodenum;
1da177e4
LT
58 }
59 }
60 brelse(bh);
61 }
ca356640 62 return 0;
1da177e4
LT
63}
64
00cd8dd3
AV
65struct dentry *efs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
66{
1da177e4 67 efs_ino_t inodenum;
a9049376 68 struct inode *inode = NULL;
1da177e4 69
1da177e4 70 inodenum = efs_find_entry(dir, dentry->d_name.name, dentry->d_name.len);
a9049376 71 if (inodenum)
298384cd 72 inode = efs_iget(dir->i_sb, inodenum);
1da177e4 73
2d8a10cd 74 return d_splice_alias(inode, dentry);
1da177e4
LT
75}
76
05da0804
CH
77static struct inode *efs_nfs_get_inode(struct super_block *sb, u64 ino,
78 u32 generation)
5ca29607 79{
5ca29607 80 struct inode *inode;
5ca29607
CH
81
82 if (ino == 0)
83 return ERR_PTR(-ESTALE);
298384cd
DH
84 inode = efs_iget(sb, ino);
85 if (IS_ERR(inode))
86 return ERR_CAST(inode);
5ca29607 87
298384cd 88 if (generation && inode->i_generation != generation) {
05da0804
CH
89 iput(inode);
90 return ERR_PTR(-ESTALE);
5ca29607
CH
91 }
92
05da0804
CH
93 return inode;
94}
5ca29607 95
05da0804
CH
96struct dentry *efs_fh_to_dentry(struct super_block *sb, struct fid *fid,
97 int fh_len, int fh_type)
98{
99 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
100 efs_nfs_get_inode);
101}
102
103struct dentry *efs_fh_to_parent(struct super_block *sb, struct fid *fid,
104 int fh_len, int fh_type)
105{
106 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
107 efs_nfs_get_inode);
5ca29607
CH
108}
109
1da177e4
LT
110struct dentry *efs_get_parent(struct dentry *child)
111{
44003728 112 struct dentry *parent = ERR_PTR(-ENOENT);
1da177e4 113 efs_ino_t ino;
1da177e4 114
2b0143b5 115 ino = efs_find_entry(d_inode(child), "..", 2);
44003728 116 if (ino)
fc64005c 117 parent = d_obtain_alias(efs_iget(child->d_sb, ino));
1da177e4 118
44003728 119 return parent;
1da177e4 120}