xref: /openbmc/linux/fs/omfs/dir.c (revision cdb26496)
1a3ab7155SBob Copeland /*
2a3ab7155SBob Copeland  * OMFS (as used by RIO Karma) directory operations.
3a3ab7155SBob Copeland  * Copyright (C) 2005 Bob Copeland <me@bobcopeland.com>
4a3ab7155SBob Copeland  * Released under GPL v2.
5a3ab7155SBob Copeland  */
6a3ab7155SBob Copeland 
7a3ab7155SBob Copeland #include <linux/fs.h>
8a3ab7155SBob Copeland #include <linux/ctype.h>
9a3ab7155SBob Copeland #include <linux/buffer_head.h>
10a3ab7155SBob Copeland #include "omfs.h"
11a3ab7155SBob Copeland 
12a3ab7155SBob Copeland static int omfs_hash(const char *name, int namelen, int mod)
13a3ab7155SBob Copeland {
14a3ab7155SBob Copeland 	int i, hash = 0;
15a3ab7155SBob Copeland 	for (i = 0; i < namelen; i++)
16a3ab7155SBob Copeland 		hash ^= tolower(name[i]) << (i % 24);
17a3ab7155SBob Copeland 	return hash % mod;
18a3ab7155SBob Copeland }
19a3ab7155SBob Copeland 
20a3ab7155SBob Copeland /*
21a3ab7155SBob Copeland  * Finds the bucket for a given name and reads the containing block;
22a3ab7155SBob Copeland  * *ofs is set to the offset of the first list entry.
23a3ab7155SBob Copeland  */
24a3ab7155SBob Copeland static struct buffer_head *omfs_get_bucket(struct inode *dir,
25a3ab7155SBob Copeland 		const char *name, int namelen, int *ofs)
26a3ab7155SBob Copeland {
27a3ab7155SBob Copeland 	int nbuckets = (dir->i_size - OMFS_DIR_START)/8;
28a3ab7155SBob Copeland 	int bucket = omfs_hash(name, namelen, nbuckets);
29a3ab7155SBob Copeland 
30a3ab7155SBob Copeland 	*ofs = OMFS_DIR_START + bucket * 8;
31f068272cSBob Copeland 	return omfs_bread(dir->i_sb, dir->i_ino);
32a3ab7155SBob Copeland }
33a3ab7155SBob Copeland 
34a3ab7155SBob Copeland static struct buffer_head *omfs_scan_list(struct inode *dir, u64 block,
35a3ab7155SBob Copeland 				const char *name, int namelen,
36a3ab7155SBob Copeland 				u64 *prev_block)
37a3ab7155SBob Copeland {
38a3ab7155SBob Copeland 	struct buffer_head *bh;
39a3ab7155SBob Copeland 	struct omfs_inode *oi;
40a3ab7155SBob Copeland 	int err = -ENOENT;
41a3ab7155SBob Copeland 	*prev_block = ~0;
42a3ab7155SBob Copeland 
43a3ab7155SBob Copeland 	while (block != ~0) {
44f068272cSBob Copeland 		bh = omfs_bread(dir->i_sb, block);
45a3ab7155SBob Copeland 		if (!bh) {
46a3ab7155SBob Copeland 			err = -EIO;
47a3ab7155SBob Copeland 			goto err;
48a3ab7155SBob Copeland 		}
49a3ab7155SBob Copeland 
50a3ab7155SBob Copeland 		oi = (struct omfs_inode *) bh->b_data;
51a3ab7155SBob Copeland 		if (omfs_is_bad(OMFS_SB(dir->i_sb), &oi->i_head, block)) {
52a3ab7155SBob Copeland 			brelse(bh);
53a3ab7155SBob Copeland 			goto err;
54a3ab7155SBob Copeland 		}
55a3ab7155SBob Copeland 
56a3ab7155SBob Copeland 		if (strncmp(oi->i_name, name, namelen) == 0)
57a3ab7155SBob Copeland 			return bh;
58a3ab7155SBob Copeland 
59a3ab7155SBob Copeland 		*prev_block = block;
60a3ab7155SBob Copeland 		block = be64_to_cpu(oi->i_sibling);
61a3ab7155SBob Copeland 		brelse(bh);
62a3ab7155SBob Copeland 	}
63a3ab7155SBob Copeland err:
64a3ab7155SBob Copeland 	return ERR_PTR(err);
65a3ab7155SBob Copeland }
66a3ab7155SBob Copeland 
67a3ab7155SBob Copeland static struct buffer_head *omfs_find_entry(struct inode *dir,
68a3ab7155SBob Copeland 					   const char *name, int namelen)
69a3ab7155SBob Copeland {
70a3ab7155SBob Copeland 	struct buffer_head *bh;
71a3ab7155SBob Copeland 	int ofs;
72a3ab7155SBob Copeland 	u64 block, dummy;
73a3ab7155SBob Copeland 
74a3ab7155SBob Copeland 	bh = omfs_get_bucket(dir, name, namelen, &ofs);
75a3ab7155SBob Copeland 	if (!bh)
76a3ab7155SBob Copeland 		return ERR_PTR(-EIO);
77a3ab7155SBob Copeland 
78a3ab7155SBob Copeland 	block = be64_to_cpu(*((__be64 *) &bh->b_data[ofs]));
79a3ab7155SBob Copeland 	brelse(bh);
80a3ab7155SBob Copeland 
81a3ab7155SBob Copeland 	return omfs_scan_list(dir, block, name, namelen, &dummy);
82a3ab7155SBob Copeland }
83a3ab7155SBob Copeland 
84a3ab7155SBob Copeland int omfs_make_empty(struct inode *inode, struct super_block *sb)
85a3ab7155SBob Copeland {
86a3ab7155SBob Copeland 	struct omfs_sb_info *sbi = OMFS_SB(sb);
87a3ab7155SBob Copeland 	struct buffer_head *bh;
88a3ab7155SBob Copeland 	struct omfs_inode *oi;
89a3ab7155SBob Copeland 
90f068272cSBob Copeland 	bh = omfs_bread(sb, inode->i_ino);
91a3ab7155SBob Copeland 	if (!bh)
92a3ab7155SBob Copeland 		return -ENOMEM;
93a3ab7155SBob Copeland 
94a3ab7155SBob Copeland 	memset(bh->b_data, 0, sizeof(struct omfs_inode));
95a3ab7155SBob Copeland 
96a3ab7155SBob Copeland 	if (inode->i_mode & S_IFDIR) {
97a3ab7155SBob Copeland 		memset(&bh->b_data[OMFS_DIR_START], 0xff,
98a3ab7155SBob Copeland 			sbi->s_sys_blocksize - OMFS_DIR_START);
99a3ab7155SBob Copeland 	} else
100a3ab7155SBob Copeland 		omfs_make_empty_table(bh, OMFS_EXTENT_START);
101a3ab7155SBob Copeland 
102a3ab7155SBob Copeland 	oi = (struct omfs_inode *) bh->b_data;
103a3ab7155SBob Copeland 	oi->i_head.h_self = cpu_to_be64(inode->i_ino);
104d406f66dSHarvey Harrison 	oi->i_sibling = ~cpu_to_be64(0ULL);
105a3ab7155SBob Copeland 
106a3ab7155SBob Copeland 	mark_buffer_dirty(bh);
107a3ab7155SBob Copeland 	brelse(bh);
108a3ab7155SBob Copeland 	return 0;
109a3ab7155SBob Copeland }
110a3ab7155SBob Copeland 
111a3ab7155SBob Copeland static int omfs_add_link(struct dentry *dentry, struct inode *inode)
112a3ab7155SBob Copeland {
113a3ab7155SBob Copeland 	struct inode *dir = dentry->d_parent->d_inode;
114a3ab7155SBob Copeland 	const char *name = dentry->d_name.name;
115a3ab7155SBob Copeland 	int namelen = dentry->d_name.len;
116a3ab7155SBob Copeland 	struct omfs_inode *oi;
117a3ab7155SBob Copeland 	struct buffer_head *bh;
118a3ab7155SBob Copeland 	u64 block;
119a3ab7155SBob Copeland 	__be64 *entry;
120a3ab7155SBob Copeland 	int ofs;
121a3ab7155SBob Copeland 
122a3ab7155SBob Copeland 	/* just prepend to head of queue in proper bucket */
123a3ab7155SBob Copeland 	bh = omfs_get_bucket(dir, name, namelen, &ofs);
124a3ab7155SBob Copeland 	if (!bh)
125a3ab7155SBob Copeland 		goto out;
126a3ab7155SBob Copeland 
127a3ab7155SBob Copeland 	entry = (__be64 *) &bh->b_data[ofs];
128a3ab7155SBob Copeland 	block = be64_to_cpu(*entry);
129a3ab7155SBob Copeland 	*entry = cpu_to_be64(inode->i_ino);
130a3ab7155SBob Copeland 	mark_buffer_dirty(bh);
131a3ab7155SBob Copeland 	brelse(bh);
132a3ab7155SBob Copeland 
133a3ab7155SBob Copeland 	/* now set the sibling and parent pointers on the new inode */
134f068272cSBob Copeland 	bh = omfs_bread(dir->i_sb, inode->i_ino);
135a3ab7155SBob Copeland 	if (!bh)
136a3ab7155SBob Copeland 		goto out;
137a3ab7155SBob Copeland 
138a3ab7155SBob Copeland 	oi = (struct omfs_inode *) bh->b_data;
139a3ab7155SBob Copeland 	memcpy(oi->i_name, name, namelen);
140a3ab7155SBob Copeland 	memset(oi->i_name + namelen, 0, OMFS_NAMELEN - namelen);
141a3ab7155SBob Copeland 	oi->i_sibling = cpu_to_be64(block);
142a3ab7155SBob Copeland 	oi->i_parent = cpu_to_be64(dir->i_ino);
143a3ab7155SBob Copeland 	mark_buffer_dirty(bh);
144a3ab7155SBob Copeland 	brelse(bh);
145a3ab7155SBob Copeland 
146a3ab7155SBob Copeland 	dir->i_ctime = CURRENT_TIME_SEC;
147a3ab7155SBob Copeland 
148a3ab7155SBob Copeland 	/* mark affected inodes dirty to rebuild checksums */
149a3ab7155SBob Copeland 	mark_inode_dirty(dir);
150a3ab7155SBob Copeland 	mark_inode_dirty(inode);
151a3ab7155SBob Copeland 	return 0;
152a3ab7155SBob Copeland out:
153a3ab7155SBob Copeland 	return -ENOMEM;
154a3ab7155SBob Copeland }
155a3ab7155SBob Copeland 
156a3ab7155SBob Copeland static int omfs_delete_entry(struct dentry *dentry)
157a3ab7155SBob Copeland {
158a3ab7155SBob Copeland 	struct inode *dir = dentry->d_parent->d_inode;
159a3ab7155SBob Copeland 	struct inode *dirty;
160a3ab7155SBob Copeland 	const char *name = dentry->d_name.name;
161a3ab7155SBob Copeland 	int namelen = dentry->d_name.len;
162a3ab7155SBob Copeland 	struct omfs_inode *oi;
163a3ab7155SBob Copeland 	struct buffer_head *bh, *bh2;
164a3ab7155SBob Copeland 	__be64 *entry, next;
165a3ab7155SBob Copeland 	u64 block, prev;
166a3ab7155SBob Copeland 	int ofs;
167a3ab7155SBob Copeland 	int err = -ENOMEM;
168a3ab7155SBob Copeland 
169a3ab7155SBob Copeland 	/* delete the proper node in the bucket's linked list */
170a3ab7155SBob Copeland 	bh = omfs_get_bucket(dir, name, namelen, &ofs);
171a3ab7155SBob Copeland 	if (!bh)
172a3ab7155SBob Copeland 		goto out;
173a3ab7155SBob Copeland 
174a3ab7155SBob Copeland 	entry = (__be64 *) &bh->b_data[ofs];
175a3ab7155SBob Copeland 	block = be64_to_cpu(*entry);
176a3ab7155SBob Copeland 
177a3ab7155SBob Copeland 	bh2 = omfs_scan_list(dir, block, name, namelen, &prev);
178a3ab7155SBob Copeland 	if (IS_ERR(bh2)) {
179a3ab7155SBob Copeland 		err = PTR_ERR(bh2);
180a3ab7155SBob Copeland 		goto out_free_bh;
181a3ab7155SBob Copeland 	}
182a3ab7155SBob Copeland 
183a3ab7155SBob Copeland 	oi = (struct omfs_inode *) bh2->b_data;
184a3ab7155SBob Copeland 	next = oi->i_sibling;
185a3ab7155SBob Copeland 	brelse(bh2);
186a3ab7155SBob Copeland 
187a3ab7155SBob Copeland 	if (prev != ~0) {
188a3ab7155SBob Copeland 		/* found in middle of list, get list ptr */
189a3ab7155SBob Copeland 		brelse(bh);
190f068272cSBob Copeland 		bh = omfs_bread(dir->i_sb, prev);
191a3ab7155SBob Copeland 		if (!bh)
192a3ab7155SBob Copeland 			goto out;
193a3ab7155SBob Copeland 
194a3ab7155SBob Copeland 		oi = (struct omfs_inode *) bh->b_data;
195a3ab7155SBob Copeland 		entry = &oi->i_sibling;
196a3ab7155SBob Copeland 	}
197a3ab7155SBob Copeland 
198a3ab7155SBob Copeland 	*entry = next;
199a3ab7155SBob Copeland 	mark_buffer_dirty(bh);
200a3ab7155SBob Copeland 
201a3ab7155SBob Copeland 	if (prev != ~0) {
202a3ab7155SBob Copeland 		dirty = omfs_iget(dir->i_sb, prev);
203a3ab7155SBob Copeland 		if (!IS_ERR(dirty)) {
204a3ab7155SBob Copeland 			mark_inode_dirty(dirty);
205a3ab7155SBob Copeland 			iput(dirty);
206a3ab7155SBob Copeland 		}
207a3ab7155SBob Copeland 	}
208a3ab7155SBob Copeland 
209a3ab7155SBob Copeland 	err = 0;
210a3ab7155SBob Copeland out_free_bh:
211a3ab7155SBob Copeland 	brelse(bh);
212a3ab7155SBob Copeland out:
213a3ab7155SBob Copeland 	return err;
214a3ab7155SBob Copeland }
215a3ab7155SBob Copeland 
216a3ab7155SBob Copeland static int omfs_dir_is_empty(struct inode *inode)
217a3ab7155SBob Copeland {
218a3ab7155SBob Copeland 	int nbuckets = (inode->i_size - OMFS_DIR_START) / 8;
219a3ab7155SBob Copeland 	struct buffer_head *bh;
220a3ab7155SBob Copeland 	u64 *ptr;
221a3ab7155SBob Copeland 	int i;
222a3ab7155SBob Copeland 
223f068272cSBob Copeland 	bh = omfs_bread(inode->i_sb, inode->i_ino);
224a3ab7155SBob Copeland 
225a3ab7155SBob Copeland 	if (!bh)
226a3ab7155SBob Copeland 		return 0;
227a3ab7155SBob Copeland 
228a3ab7155SBob Copeland 	ptr = (u64 *) &bh->b_data[OMFS_DIR_START];
229a3ab7155SBob Copeland 
230a3ab7155SBob Copeland 	for (i = 0; i < nbuckets; i++, ptr++)
231a3ab7155SBob Copeland 		if (*ptr != ~0)
232a3ab7155SBob Copeland 			break;
233a3ab7155SBob Copeland 
234a3ab7155SBob Copeland 	brelse(bh);
235a3ab7155SBob Copeland 	return *ptr != ~0;
236a3ab7155SBob Copeland }
237a3ab7155SBob Copeland 
238a3ab7155SBob Copeland static int omfs_unlink(struct inode *dir, struct dentry *dentry)
239a3ab7155SBob Copeland {
240a3ab7155SBob Copeland 	int ret;
241a3ab7155SBob Copeland 	struct inode *inode = dentry->d_inode;
242a3ab7155SBob Copeland 
243a3ab7155SBob Copeland 	ret = omfs_delete_entry(dentry);
244a3ab7155SBob Copeland 	if (ret)
245a3ab7155SBob Copeland 		goto end_unlink;
246a3ab7155SBob Copeland 
247a3ab7155SBob Copeland 	inode_dec_link_count(inode);
248a3ab7155SBob Copeland 	mark_inode_dirty(dir);
249a3ab7155SBob Copeland 
250a3ab7155SBob Copeland end_unlink:
251a3ab7155SBob Copeland 	return ret;
252a3ab7155SBob Copeland }
253a3ab7155SBob Copeland 
254a3ab7155SBob Copeland static int omfs_rmdir(struct inode *dir, struct dentry *dentry)
255a3ab7155SBob Copeland {
256a3ab7155SBob Copeland 	int err = -ENOTEMPTY;
257a3ab7155SBob Copeland 	struct inode *inode = dentry->d_inode;
258a3ab7155SBob Copeland 
259a3ab7155SBob Copeland 	if (omfs_dir_is_empty(inode)) {
260a3ab7155SBob Copeland 		err = omfs_unlink(dir, dentry);
261a3ab7155SBob Copeland 		if (!err)
262a3ab7155SBob Copeland 			inode_dec_link_count(inode);
263a3ab7155SBob Copeland 	}
264a3ab7155SBob Copeland 	return err;
265a3ab7155SBob Copeland }
266a3ab7155SBob Copeland 
267a3ab7155SBob Copeland static int omfs_add_node(struct inode *dir, struct dentry *dentry, int mode)
268a3ab7155SBob Copeland {
269a3ab7155SBob Copeland 	int err;
270a3ab7155SBob Copeland 	struct inode *inode = omfs_new_inode(dir, mode);
271a3ab7155SBob Copeland 
272a3ab7155SBob Copeland 	if (IS_ERR(inode))
273a3ab7155SBob Copeland 		return PTR_ERR(inode);
274a3ab7155SBob Copeland 
275a3ab7155SBob Copeland 	err = omfs_make_empty(inode, dir->i_sb);
276a3ab7155SBob Copeland 	if (err)
277a3ab7155SBob Copeland 		goto out_free_inode;
278a3ab7155SBob Copeland 
279a3ab7155SBob Copeland 	err = omfs_add_link(dentry, inode);
280a3ab7155SBob Copeland 	if (err)
281a3ab7155SBob Copeland 		goto out_free_inode;
282a3ab7155SBob Copeland 
283a3ab7155SBob Copeland 	d_instantiate(dentry, inode);
284a3ab7155SBob Copeland 	return 0;
285a3ab7155SBob Copeland 
286a3ab7155SBob Copeland out_free_inode:
287a3ab7155SBob Copeland 	iput(inode);
288a3ab7155SBob Copeland 	return err;
289a3ab7155SBob Copeland }
290a3ab7155SBob Copeland 
291a3ab7155SBob Copeland static int omfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
292a3ab7155SBob Copeland {
293a3ab7155SBob Copeland 	return omfs_add_node(dir, dentry, mode | S_IFDIR);
294a3ab7155SBob Copeland }
295a3ab7155SBob Copeland 
296a3ab7155SBob Copeland static int omfs_create(struct inode *dir, struct dentry *dentry, int mode,
297a3ab7155SBob Copeland 		struct nameidata *nd)
298a3ab7155SBob Copeland {
299a3ab7155SBob Copeland 	return omfs_add_node(dir, dentry, mode | S_IFREG);
300a3ab7155SBob Copeland }
301a3ab7155SBob Copeland 
302a3ab7155SBob Copeland static struct dentry *omfs_lookup(struct inode *dir, struct dentry *dentry,
303a3ab7155SBob Copeland 				  struct nameidata *nd)
304a3ab7155SBob Copeland {
305a3ab7155SBob Copeland 	struct buffer_head *bh;
306a3ab7155SBob Copeland 	struct inode *inode = NULL;
307a3ab7155SBob Copeland 
308a3ab7155SBob Copeland 	if (dentry->d_name.len > OMFS_NAMELEN)
309a3ab7155SBob Copeland 		return ERR_PTR(-ENAMETOOLONG);
310a3ab7155SBob Copeland 
311a3ab7155SBob Copeland 	bh = omfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len);
312a3ab7155SBob Copeland 	if (!IS_ERR(bh)) {
313a3ab7155SBob Copeland 		struct omfs_inode *oi = (struct omfs_inode *)bh->b_data;
314a3ab7155SBob Copeland 		ino_t ino = be64_to_cpu(oi->i_head.h_self);
315a3ab7155SBob Copeland 		brelse(bh);
316a3ab7155SBob Copeland 		inode = omfs_iget(dir->i_sb, ino);
317a3ab7155SBob Copeland 		if (IS_ERR(inode))
318a3ab7155SBob Copeland 			return ERR_CAST(inode);
319a3ab7155SBob Copeland 	}
320a3ab7155SBob Copeland 	d_add(dentry, inode);
321a3ab7155SBob Copeland 	return NULL;
322a3ab7155SBob Copeland }
323a3ab7155SBob Copeland 
324a3ab7155SBob Copeland /* sanity check block's self pointer */
325a3ab7155SBob Copeland int omfs_is_bad(struct omfs_sb_info *sbi, struct omfs_header *header,
326a3ab7155SBob Copeland 	u64 fsblock)
327a3ab7155SBob Copeland {
328a3ab7155SBob Copeland 	int is_bad;
329a3ab7155SBob Copeland 	u64 ino = be64_to_cpu(header->h_self);
330a3ab7155SBob Copeland 	is_bad = ((ino != fsblock) || (ino < sbi->s_root_ino) ||
331a3ab7155SBob Copeland 		(ino > sbi->s_num_blocks));
332a3ab7155SBob Copeland 
333a3ab7155SBob Copeland 	if (is_bad)
334a3ab7155SBob Copeland 		printk(KERN_WARNING "omfs: bad hash chain detected\n");
335a3ab7155SBob Copeland 
336a3ab7155SBob Copeland 	return is_bad;
337a3ab7155SBob Copeland }
338a3ab7155SBob Copeland 
339a3ab7155SBob Copeland static int omfs_fill_chain(struct file *filp, void *dirent, filldir_t filldir,
340a3ab7155SBob Copeland 		u64 fsblock, int hindex)
341a3ab7155SBob Copeland {
342a3ab7155SBob Copeland 	struct inode *dir = filp->f_dentry->d_inode;
343a3ab7155SBob Copeland 	struct buffer_head *bh;
344a3ab7155SBob Copeland 	struct omfs_inode *oi;
345a3ab7155SBob Copeland 	u64 self;
346a3ab7155SBob Copeland 	int res = 0;
347a3ab7155SBob Copeland 	unsigned char d_type;
348a3ab7155SBob Copeland 
349a3ab7155SBob Copeland 	/* follow chain in this bucket */
350a3ab7155SBob Copeland 	while (fsblock != ~0) {
351f068272cSBob Copeland 		bh = omfs_bread(dir->i_sb, fsblock);
352a3ab7155SBob Copeland 		if (!bh)
353a3ab7155SBob Copeland 			goto out;
354a3ab7155SBob Copeland 
355a3ab7155SBob Copeland 		oi = (struct omfs_inode *) bh->b_data;
356a3ab7155SBob Copeland 		if (omfs_is_bad(OMFS_SB(dir->i_sb), &oi->i_head, fsblock)) {
357a3ab7155SBob Copeland 			brelse(bh);
358a3ab7155SBob Copeland 			goto out;
359a3ab7155SBob Copeland 		}
360a3ab7155SBob Copeland 
361a3ab7155SBob Copeland 		self = fsblock;
362a3ab7155SBob Copeland 		fsblock = be64_to_cpu(oi->i_sibling);
363a3ab7155SBob Copeland 
364a3ab7155SBob Copeland 		/* skip visited nodes */
365a3ab7155SBob Copeland 		if (hindex) {
366a3ab7155SBob Copeland 			hindex--;
367a3ab7155SBob Copeland 			brelse(bh);
368a3ab7155SBob Copeland 			continue;
369a3ab7155SBob Copeland 		}
370a3ab7155SBob Copeland 
371a3ab7155SBob Copeland 		d_type = (oi->i_type == OMFS_DIR) ? DT_DIR : DT_REG;
372a3ab7155SBob Copeland 
373a3ab7155SBob Copeland 		res = filldir(dirent, oi->i_name, strnlen(oi->i_name,
374a3ab7155SBob Copeland 			OMFS_NAMELEN), filp->f_pos, self, d_type);
375a3ab7155SBob Copeland 		if (res == 0)
376a3ab7155SBob Copeland 			filp->f_pos++;
377a3ab7155SBob Copeland 		brelse(bh);
378a3ab7155SBob Copeland 	}
379a3ab7155SBob Copeland out:
380a3ab7155SBob Copeland 	return res;
381a3ab7155SBob Copeland }
382a3ab7155SBob Copeland 
383a3ab7155SBob Copeland static int omfs_rename(struct inode *old_dir, struct dentry *old_dentry,
384a3ab7155SBob Copeland 		struct inode *new_dir, struct dentry *new_dentry)
385a3ab7155SBob Copeland {
386a3ab7155SBob Copeland 	struct inode *new_inode = new_dentry->d_inode;
387a3ab7155SBob Copeland 	struct inode *old_inode = old_dentry->d_inode;
388a3ab7155SBob Copeland 	struct buffer_head *bh;
389a3ab7155SBob Copeland 	int is_dir;
390a3ab7155SBob Copeland 	int err;
391a3ab7155SBob Copeland 
392a3ab7155SBob Copeland 	is_dir = S_ISDIR(old_inode->i_mode);
393a3ab7155SBob Copeland 
394a3ab7155SBob Copeland 	if (new_inode) {
395a3ab7155SBob Copeland 		/* overwriting existing file/dir */
396a3ab7155SBob Copeland 		err = -ENOTEMPTY;
397a3ab7155SBob Copeland 		if (is_dir && !omfs_dir_is_empty(new_inode))
398a3ab7155SBob Copeland 			goto out;
399a3ab7155SBob Copeland 
400a3ab7155SBob Copeland 		err = -ENOENT;
401a3ab7155SBob Copeland 		bh = omfs_find_entry(new_dir, new_dentry->d_name.name,
402a3ab7155SBob Copeland 			new_dentry->d_name.len);
403a3ab7155SBob Copeland 		if (IS_ERR(bh))
404a3ab7155SBob Copeland 			goto out;
405a3ab7155SBob Copeland 		brelse(bh);
406a3ab7155SBob Copeland 
407a3ab7155SBob Copeland 		err = omfs_unlink(new_dir, new_dentry);
408a3ab7155SBob Copeland 		if (err)
409a3ab7155SBob Copeland 			goto out;
410a3ab7155SBob Copeland 	}
411a3ab7155SBob Copeland 
412a3ab7155SBob Copeland 	/* since omfs locates files by name, we need to unlink _before_
413a3ab7155SBob Copeland 	 * adding the new link or we won't find the old one */
414a3ab7155SBob Copeland 	inode_inc_link_count(old_inode);
415cdb26496SAl Viro 	err = omfs_delete_entry(old_dentry);
416cdb26496SAl Viro 	if (err)
417a3ab7155SBob Copeland 		goto out;
418a3ab7155SBob Copeland 
419cdb26496SAl Viro 	mark_inode_dirty(old_dir);
420a3ab7155SBob Copeland 	err = omfs_add_link(new_dentry, old_inode);
421a3ab7155SBob Copeland 	if (err)
422a3ab7155SBob Copeland 		goto out;
423a3ab7155SBob Copeland 
424a3ab7155SBob Copeland 	old_inode->i_ctime = CURRENT_TIME_SEC;
425013e4f4aSAl Viro 	mark_inode_dirty(old_inode);
426a3ab7155SBob Copeland out:
427a3ab7155SBob Copeland 	return err;
428a3ab7155SBob Copeland }
429a3ab7155SBob Copeland 
430a3ab7155SBob Copeland static int omfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
431a3ab7155SBob Copeland {
432a3ab7155SBob Copeland 	struct inode *dir = filp->f_dentry->d_inode;
433a3ab7155SBob Copeland 	struct buffer_head *bh;
434a3ab7155SBob Copeland 	loff_t offset, res;
435a3ab7155SBob Copeland 	unsigned int hchain, hindex;
436a3ab7155SBob Copeland 	int nbuckets;
437a3ab7155SBob Copeland 	u64 fsblock;
438a3ab7155SBob Copeland 	int ret = -EINVAL;
439a3ab7155SBob Copeland 
440a3ab7155SBob Copeland 	if (filp->f_pos >> 32)
441a3ab7155SBob Copeland 		goto success;
442a3ab7155SBob Copeland 
443a3ab7155SBob Copeland 	switch ((unsigned long) filp->f_pos) {
444a3ab7155SBob Copeland 	case 0:
445a3ab7155SBob Copeland 		if (filldir(dirent, ".", 1, 0, dir->i_ino, DT_DIR) < 0)
446a3ab7155SBob Copeland 			goto success;
447a3ab7155SBob Copeland 		filp->f_pos++;
448a3ab7155SBob Copeland 		/* fall through */
449a3ab7155SBob Copeland 	case 1:
450a3ab7155SBob Copeland 		if (filldir(dirent, "..", 2, 1,
451a3ab7155SBob Copeland 		    parent_ino(filp->f_dentry), DT_DIR) < 0)
452a3ab7155SBob Copeland 			goto success;
453a3ab7155SBob Copeland 		filp->f_pos = 1 << 20;
454a3ab7155SBob Copeland 		/* fall through */
455a3ab7155SBob Copeland 	}
456a3ab7155SBob Copeland 
457a3ab7155SBob Copeland 	nbuckets = (dir->i_size - OMFS_DIR_START) / 8;
458a3ab7155SBob Copeland 
459a3ab7155SBob Copeland 	/* high 12 bits store bucket + 1 and low 20 bits store hash index */
460a3ab7155SBob Copeland 	hchain = (filp->f_pos >> 20) - 1;
461a3ab7155SBob Copeland 	hindex = filp->f_pos & 0xfffff;
462a3ab7155SBob Copeland 
463f068272cSBob Copeland 	bh = omfs_bread(dir->i_sb, dir->i_ino);
464a3ab7155SBob Copeland 	if (!bh)
465a3ab7155SBob Copeland 		goto out;
466a3ab7155SBob Copeland 
467a3ab7155SBob Copeland 	offset = OMFS_DIR_START + hchain * 8;
468a3ab7155SBob Copeland 
469a3ab7155SBob Copeland 	for (; hchain < nbuckets; hchain++, offset += 8) {
470a3ab7155SBob Copeland 		fsblock = be64_to_cpu(*((__be64 *) &bh->b_data[offset]));
471a3ab7155SBob Copeland 
472a3ab7155SBob Copeland 		res = omfs_fill_chain(filp, dirent, filldir, fsblock, hindex);
473a3ab7155SBob Copeland 		hindex = 0;
474a3ab7155SBob Copeland 		if (res < 0)
475a3ab7155SBob Copeland 			break;
476a3ab7155SBob Copeland 
477a3ab7155SBob Copeland 		filp->f_pos = (hchain+2) << 20;
478a3ab7155SBob Copeland 	}
479a3ab7155SBob Copeland 	brelse(bh);
480a3ab7155SBob Copeland success:
481a3ab7155SBob Copeland 	ret = 0;
482a3ab7155SBob Copeland out:
483a3ab7155SBob Copeland 	return ret;
484a3ab7155SBob Copeland }
485a3ab7155SBob Copeland 
4866e1d5dccSAlexey Dobriyan const struct inode_operations omfs_dir_inops = {
487a3ab7155SBob Copeland 	.lookup = omfs_lookup,
488a3ab7155SBob Copeland 	.mkdir = omfs_mkdir,
489a3ab7155SBob Copeland 	.rename = omfs_rename,
490a3ab7155SBob Copeland 	.create = omfs_create,
491a3ab7155SBob Copeland 	.unlink = omfs_unlink,
492a3ab7155SBob Copeland 	.rmdir = omfs_rmdir,
493a3ab7155SBob Copeland };
494a3ab7155SBob Copeland 
495828c0950SAlexey Dobriyan const struct file_operations omfs_dir_operations = {
496a3ab7155SBob Copeland 	.read = generic_read_dir,
497a3ab7155SBob Copeland 	.readdir = omfs_readdir,
4983222a3e5SChristoph Hellwig 	.llseek = generic_file_llseek,
499a3ab7155SBob Copeland };
500