blob: b7146526afff303543a2ab11ecd78ab2949f770d [file] [log] [blame]
Bob Copelanda3ab7152008-07-25 19:45:16 -07001/*
2 * OMFS (as used by RIO Karma) directory operations.
3 * Copyright (C) 2005 Bob Copeland <me@bobcopeland.com>
4 * Released under GPL v2.
5 */
6
7#include <linux/fs.h>
8#include <linux/ctype.h>
9#include <linux/buffer_head.h>
10#include "omfs.h"
11
12static int omfs_hash(const char *name, int namelen, int mod)
13{
14 int i, hash = 0;
15 for (i = 0; i < namelen; i++)
16 hash ^= tolower(name[i]) << (i % 24);
17 return hash % mod;
18}
19
20/*
21 * Finds the bucket for a given name and reads the containing block;
22 * *ofs is set to the offset of the first list entry.
23 */
24static struct buffer_head *omfs_get_bucket(struct inode *dir,
25 const char *name, int namelen, int *ofs)
26{
27 int nbuckets = (dir->i_size - OMFS_DIR_START)/8;
Bob Copelanda3ab7152008-07-25 19:45:16 -070028 int bucket = omfs_hash(name, namelen, nbuckets);
29
30 *ofs = OMFS_DIR_START + bucket * 8;
Bob Copelandf0682722008-09-06 17:51:53 -040031 return omfs_bread(dir->i_sb, dir->i_ino);
Bob Copelanda3ab7152008-07-25 19:45:16 -070032}
33
34static struct buffer_head *omfs_scan_list(struct inode *dir, u64 block,
35 const char *name, int namelen,
36 u64 *prev_block)
37{
38 struct buffer_head *bh;
39 struct omfs_inode *oi;
40 int err = -ENOENT;
41 *prev_block = ~0;
42
43 while (block != ~0) {
Bob Copelandf0682722008-09-06 17:51:53 -040044 bh = omfs_bread(dir->i_sb, block);
Bob Copelanda3ab7152008-07-25 19:45:16 -070045 if (!bh) {
46 err = -EIO;
47 goto err;
48 }
49
50 oi = (struct omfs_inode *) bh->b_data;
51 if (omfs_is_bad(OMFS_SB(dir->i_sb), &oi->i_head, block)) {
52 brelse(bh);
53 goto err;
54 }
55
56 if (strncmp(oi->i_name, name, namelen) == 0)
57 return bh;
58
59 *prev_block = block;
60 block = be64_to_cpu(oi->i_sibling);
61 brelse(bh);
62 }
63err:
64 return ERR_PTR(err);
65}
66
67static struct buffer_head *omfs_find_entry(struct inode *dir,
68 const char *name, int namelen)
69{
70 struct buffer_head *bh;
71 int ofs;
72 u64 block, dummy;
73
74 bh = omfs_get_bucket(dir, name, namelen, &ofs);
75 if (!bh)
76 return ERR_PTR(-EIO);
77
78 block = be64_to_cpu(*((__be64 *) &bh->b_data[ofs]));
79 brelse(bh);
80
81 return omfs_scan_list(dir, block, name, namelen, &dummy);
82}
83
84int omfs_make_empty(struct inode *inode, struct super_block *sb)
85{
86 struct omfs_sb_info *sbi = OMFS_SB(sb);
Bob Copelanda3ab7152008-07-25 19:45:16 -070087 struct buffer_head *bh;
88 struct omfs_inode *oi;
89
Bob Copelandf0682722008-09-06 17:51:53 -040090 bh = omfs_bread(sb, inode->i_ino);
Bob Copelanda3ab7152008-07-25 19:45:16 -070091 if (!bh)
92 return -ENOMEM;
93
94 memset(bh->b_data, 0, sizeof(struct omfs_inode));
95
Al Viro41c96482011-07-26 02:34:33 -040096 if (S_ISDIR(inode->i_mode)) {
Bob Copelanda3ab7152008-07-25 19:45:16 -070097 memset(&bh->b_data[OMFS_DIR_START], 0xff,
98 sbi->s_sys_blocksize - OMFS_DIR_START);
99 } else
100 omfs_make_empty_table(bh, OMFS_EXTENT_START);
101
102 oi = (struct omfs_inode *) bh->b_data;
103 oi->i_head.h_self = cpu_to_be64(inode->i_ino);
Harvey Harrisond406f662008-07-29 22:33:46 -0700104 oi->i_sibling = ~cpu_to_be64(0ULL);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700105
106 mark_buffer_dirty(bh);
107 brelse(bh);
108 return 0;
109}
110
111static int omfs_add_link(struct dentry *dentry, struct inode *inode)
112{
David Howells2b0143b2015-03-17 22:25:59 +0000113 struct inode *dir = d_inode(dentry->d_parent);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700114 const char *name = dentry->d_name.name;
115 int namelen = dentry->d_name.len;
116 struct omfs_inode *oi;
117 struct buffer_head *bh;
118 u64 block;
119 __be64 *entry;
120 int ofs;
121
122 /* just prepend to head of queue in proper bucket */
123 bh = omfs_get_bucket(dir, name, namelen, &ofs);
124 if (!bh)
125 goto out;
126
127 entry = (__be64 *) &bh->b_data[ofs];
128 block = be64_to_cpu(*entry);
129 *entry = cpu_to_be64(inode->i_ino);
130 mark_buffer_dirty(bh);
131 brelse(bh);
132
133 /* now set the sibling and parent pointers on the new inode */
Bob Copelandf0682722008-09-06 17:51:53 -0400134 bh = omfs_bread(dir->i_sb, inode->i_ino);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700135 if (!bh)
136 goto out;
137
138 oi = (struct omfs_inode *) bh->b_data;
139 memcpy(oi->i_name, name, namelen);
140 memset(oi->i_name + namelen, 0, OMFS_NAMELEN - namelen);
141 oi->i_sibling = cpu_to_be64(block);
142 oi->i_parent = cpu_to_be64(dir->i_ino);
143 mark_buffer_dirty(bh);
144 brelse(bh);
145
Deepa Dinamani02027d42016-09-14 07:48:05 -0700146 dir->i_ctime = current_time(dir);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700147
148 /* mark affected inodes dirty to rebuild checksums */
149 mark_inode_dirty(dir);
150 mark_inode_dirty(inode);
151 return 0;
152out:
153 return -ENOMEM;
154}
155
156static int omfs_delete_entry(struct dentry *dentry)
157{
David Howells2b0143b2015-03-17 22:25:59 +0000158 struct inode *dir = d_inode(dentry->d_parent);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700159 struct inode *dirty;
160 const char *name = dentry->d_name.name;
161 int namelen = dentry->d_name.len;
162 struct omfs_inode *oi;
163 struct buffer_head *bh, *bh2;
164 __be64 *entry, next;
165 u64 block, prev;
166 int ofs;
167 int err = -ENOMEM;
168
169 /* delete the proper node in the bucket's linked list */
170 bh = omfs_get_bucket(dir, name, namelen, &ofs);
171 if (!bh)
172 goto out;
173
174 entry = (__be64 *) &bh->b_data[ofs];
175 block = be64_to_cpu(*entry);
176
177 bh2 = omfs_scan_list(dir, block, name, namelen, &prev);
178 if (IS_ERR(bh2)) {
179 err = PTR_ERR(bh2);
180 goto out_free_bh;
181 }
182
183 oi = (struct omfs_inode *) bh2->b_data;
184 next = oi->i_sibling;
185 brelse(bh2);
186
187 if (prev != ~0) {
188 /* found in middle of list, get list ptr */
189 brelse(bh);
Bob Copelandf0682722008-09-06 17:51:53 -0400190 bh = omfs_bread(dir->i_sb, prev);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700191 if (!bh)
192 goto out;
193
194 oi = (struct omfs_inode *) bh->b_data;
195 entry = &oi->i_sibling;
196 }
197
198 *entry = next;
199 mark_buffer_dirty(bh);
200
201 if (prev != ~0) {
202 dirty = omfs_iget(dir->i_sb, prev);
203 if (!IS_ERR(dirty)) {
204 mark_inode_dirty(dirty);
205 iput(dirty);
206 }
207 }
208
209 err = 0;
210out_free_bh:
211 brelse(bh);
212out:
213 return err;
214}
215
216static int omfs_dir_is_empty(struct inode *inode)
217{
218 int nbuckets = (inode->i_size - OMFS_DIR_START) / 8;
219 struct buffer_head *bh;
220 u64 *ptr;
221 int i;
222
Bob Copelandf0682722008-09-06 17:51:53 -0400223 bh = omfs_bread(inode->i_sb, inode->i_ino);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700224
225 if (!bh)
226 return 0;
227
228 ptr = (u64 *) &bh->b_data[OMFS_DIR_START];
229
230 for (i = 0; i < nbuckets; i++, ptr++)
231 if (*ptr != ~0)
232 break;
233
234 brelse(bh);
235 return *ptr != ~0;
236}
237
Al Virod9328052011-03-04 01:31:03 -0500238static int omfs_remove(struct inode *dir, struct dentry *dentry)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700239{
David Howells2b0143b2015-03-17 22:25:59 +0000240 struct inode *inode = d_inode(dentry);
Al Virod9328052011-03-04 01:31:03 -0500241 int ret;
242
Sage Weil79bf7c72011-05-24 13:06:06 -0700243
Sage Weil8aaa0f52011-05-27 13:42:04 -0700244 if (S_ISDIR(inode->i_mode) &&
245 !omfs_dir_is_empty(inode))
246 return -ENOTEMPTY;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700247
248 ret = omfs_delete_entry(dentry);
249 if (ret)
Al Virod9328052011-03-04 01:31:03 -0500250 return ret;
251
252 clear_nlink(inode);
253 mark_inode_dirty(inode);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700254 mark_inode_dirty(dir);
Al Virod9328052011-03-04 01:31:03 -0500255 return 0;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700256}
257
Al Viro587228b2011-07-24 22:58:10 -0400258static int omfs_add_node(struct inode *dir, struct dentry *dentry, umode_t mode)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700259{
260 int err;
261 struct inode *inode = omfs_new_inode(dir, mode);
262
263 if (IS_ERR(inode))
264 return PTR_ERR(inode);
265
266 err = omfs_make_empty(inode, dir->i_sb);
267 if (err)
268 goto out_free_inode;
269
270 err = omfs_add_link(dentry, inode);
271 if (err)
272 goto out_free_inode;
273
274 d_instantiate(dentry, inode);
275 return 0;
276
277out_free_inode:
278 iput(inode);
279 return err;
280}
281
Al Viro18bb1db2011-07-26 01:41:39 -0400282static int omfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700283{
284 return omfs_add_node(dir, dentry, mode | S_IFDIR);
285}
286
Al Viro4acdaf22011-07-26 01:42:34 -0400287static int omfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400288 bool excl)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700289{
290 return omfs_add_node(dir, dentry, mode | S_IFREG);
291}
292
293static struct dentry *omfs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400294 unsigned int flags)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700295{
296 struct buffer_head *bh;
297 struct inode *inode = NULL;
298
299 if (dentry->d_name.len > OMFS_NAMELEN)
300 return ERR_PTR(-ENAMETOOLONG);
301
302 bh = omfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len);
303 if (!IS_ERR(bh)) {
304 struct omfs_inode *oi = (struct omfs_inode *)bh->b_data;
305 ino_t ino = be64_to_cpu(oi->i_head.h_self);
306 brelse(bh);
307 inode = omfs_iget(dir->i_sb, ino);
308 if (IS_ERR(inode))
309 return ERR_CAST(inode);
310 }
311 d_add(dentry, inode);
312 return NULL;
313}
314
315/* sanity check block's self pointer */
316int omfs_is_bad(struct omfs_sb_info *sbi, struct omfs_header *header,
317 u64 fsblock)
318{
319 int is_bad;
320 u64 ino = be64_to_cpu(header->h_self);
321 is_bad = ((ino != fsblock) || (ino < sbi->s_root_ino) ||
322 (ino > sbi->s_num_blocks));
323
324 if (is_bad)
325 printk(KERN_WARNING "omfs: bad hash chain detected\n");
326
327 return is_bad;
328}
329
Al Viro9fd4d052013-05-17 15:05:25 -0400330static bool omfs_fill_chain(struct inode *dir, struct dir_context *ctx,
Bob Copelanda3ab7152008-07-25 19:45:16 -0700331 u64 fsblock, int hindex)
332{
Bob Copelanda3ab7152008-07-25 19:45:16 -0700333 /* follow chain in this bucket */
334 while (fsblock != ~0) {
Al Viro9fd4d052013-05-17 15:05:25 -0400335 struct buffer_head *bh = omfs_bread(dir->i_sb, fsblock);
336 struct omfs_inode *oi;
337 u64 self;
338 unsigned char d_type;
339
Bob Copelanda3ab7152008-07-25 19:45:16 -0700340 if (!bh)
Al Viro9fd4d052013-05-17 15:05:25 -0400341 return true;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700342
343 oi = (struct omfs_inode *) bh->b_data;
344 if (omfs_is_bad(OMFS_SB(dir->i_sb), &oi->i_head, fsblock)) {
345 brelse(bh);
Al Viro9fd4d052013-05-17 15:05:25 -0400346 return true;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700347 }
348
349 self = fsblock;
350 fsblock = be64_to_cpu(oi->i_sibling);
351
352 /* skip visited nodes */
353 if (hindex) {
354 hindex--;
355 brelse(bh);
356 continue;
357 }
358
359 d_type = (oi->i_type == OMFS_DIR) ? DT_DIR : DT_REG;
360
Al Viro9fd4d052013-05-17 15:05:25 -0400361 if (!dir_emit(ctx, oi->i_name,
362 strnlen(oi->i_name, OMFS_NAMELEN),
363 self, d_type)) {
364 brelse(bh);
365 return false;
366 }
Bob Copelanda3ab7152008-07-25 19:45:16 -0700367 brelse(bh);
Al Viro9fd4d052013-05-17 15:05:25 -0400368 ctx->pos++;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700369 }
Al Viro9fd4d052013-05-17 15:05:25 -0400370 return true;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700371}
372
373static int omfs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200374 struct inode *new_dir, struct dentry *new_dentry,
375 unsigned int flags)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700376{
David Howells2b0143b2015-03-17 22:25:59 +0000377 struct inode *new_inode = d_inode(new_dentry);
378 struct inode *old_inode = d_inode(old_dentry);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700379 int err;
380
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200381 if (flags & ~RENAME_NOREPLACE)
382 return -EINVAL;
383
Bob Copelanda3ab7152008-07-25 19:45:16 -0700384 if (new_inode) {
385 /* overwriting existing file/dir */
Al Virod9328052011-03-04 01:31:03 -0500386 err = omfs_remove(new_dir, new_dentry);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700387 if (err)
388 goto out;
389 }
390
391 /* since omfs locates files by name, we need to unlink _before_
392 * adding the new link or we won't find the old one */
Al Virocdb26492011-03-04 01:18:19 -0500393 err = omfs_delete_entry(old_dentry);
394 if (err)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700395 goto out;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700396
Al Virocdb26492011-03-04 01:18:19 -0500397 mark_inode_dirty(old_dir);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700398 err = omfs_add_link(new_dentry, old_inode);
399 if (err)
400 goto out;
401
Deepa Dinamani02027d42016-09-14 07:48:05 -0700402 old_inode->i_ctime = current_time(old_inode);
Al Viro013e4f42011-03-04 01:14:55 -0500403 mark_inode_dirty(old_inode);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700404out:
405 return err;
406}
407
Al Viro9fd4d052013-05-17 15:05:25 -0400408static int omfs_readdir(struct file *file, struct dir_context *ctx)
Bob Copelanda3ab7152008-07-25 19:45:16 -0700409{
Al Viro9fd4d052013-05-17 15:05:25 -0400410 struct inode *dir = file_inode(file);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700411 struct buffer_head *bh;
Al Viro9fd4d052013-05-17 15:05:25 -0400412 __be64 *p;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700413 unsigned int hchain, hindex;
414 int nbuckets;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700415
Al Viro9fd4d052013-05-17 15:05:25 -0400416 if (ctx->pos >> 32)
417 return -EINVAL;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700418
Al Viro9fd4d052013-05-17 15:05:25 -0400419 if (ctx->pos < 1 << 20) {
420 if (!dir_emit_dots(file, ctx))
421 return 0;
422 ctx->pos = 1 << 20;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700423 }
424
425 nbuckets = (dir->i_size - OMFS_DIR_START) / 8;
426
427 /* high 12 bits store bucket + 1 and low 20 bits store hash index */
Al Viro9fd4d052013-05-17 15:05:25 -0400428 hchain = (ctx->pos >> 20) - 1;
429 hindex = ctx->pos & 0xfffff;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700430
Bob Copelandf0682722008-09-06 17:51:53 -0400431 bh = omfs_bread(dir->i_sb, dir->i_ino);
Bob Copelanda3ab7152008-07-25 19:45:16 -0700432 if (!bh)
Al Viro9fd4d052013-05-17 15:05:25 -0400433 return -EINVAL;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700434
Al Viro9fd4d052013-05-17 15:05:25 -0400435 p = (__be64 *)(bh->b_data + OMFS_DIR_START) + hchain;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700436
Al Viro9fd4d052013-05-17 15:05:25 -0400437 for (; hchain < nbuckets; hchain++) {
438 __u64 fsblock = be64_to_cpu(*p++);
439 if (!omfs_fill_chain(dir, ctx, fsblock, hindex))
Bob Copelanda3ab7152008-07-25 19:45:16 -0700440 break;
Al Viro9fd4d052013-05-17 15:05:25 -0400441 hindex = 0;
442 ctx->pos = (hchain+2) << 20;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700443 }
444 brelse(bh);
Al Viro9fd4d052013-05-17 15:05:25 -0400445 return 0;
Bob Copelanda3ab7152008-07-25 19:45:16 -0700446}
447
Alexey Dobriyan6e1d5dc2009-09-21 17:01:11 -0700448const struct inode_operations omfs_dir_inops = {
Bob Copelanda3ab7152008-07-25 19:45:16 -0700449 .lookup = omfs_lookup,
450 .mkdir = omfs_mkdir,
451 .rename = omfs_rename,
452 .create = omfs_create,
Al Virod9328052011-03-04 01:31:03 -0500453 .unlink = omfs_remove,
454 .rmdir = omfs_remove,
Bob Copelanda3ab7152008-07-25 19:45:16 -0700455};
456
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700457const struct file_operations omfs_dir_operations = {
Bob Copelanda3ab7152008-07-25 19:45:16 -0700458 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -0400459 .iterate_shared = omfs_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +0200460 .llseek = generic_file_llseek,
Bob Copelanda3ab7152008-07-25 19:45:16 -0700461};