Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * dir.c |
| 4 | * |
| 5 | * Copyright (c) 1999 Al Smith |
| 6 | */ |
| 7 | |
| 8 | #include <linux/buffer_head.h> |
Christoph Hellwig | 45254b4 | 2008-02-23 15:23:51 -0800 | [diff] [blame] | 9 | #include "efs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 11 | static int efs_readdir(struct file *, struct dir_context *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 13 | const struct file_operations efs_dir_operations = { |
Al Viro | e7ec952 | 2009-06-16 23:35:46 -0400 | [diff] [blame] | 14 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | .read = generic_read_dir, |
Al Viro | c51da20 | 2016-04-30 22:37:34 -0400 | [diff] [blame] | 16 | .iterate_shared = efs_readdir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | }; |
| 18 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 19 | const struct inode_operations efs_dir_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | .lookup = efs_lookup, |
| 21 | }; |
| 22 | |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 23 | static int efs_readdir(struct file *file, struct dir_context *ctx) |
| 24 | { |
| 25 | struct inode *inode = file_inode(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | efs_block_t block; |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 27 | int slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | if (inode->i_size & (EFS_DIRBSIZE-1)) |
Fabian Frederick | f403d1d | 2014-06-04 16:12:12 -0700 | [diff] [blame] | 30 | pr_warn("%s(): directory size not a multiple of EFS_DIRBSIZE\n", |
| 31 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* work out where this entry can be found */ |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 34 | block = ctx->pos >> EFS_DIRBSIZE_BITS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | /* each block contains at most 256 slots */ |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 37 | slot = ctx->pos & 0xff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* look at all blocks */ |
| 40 | while (block < inode->i_blocks) { |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 41 | struct efs_dir *dirblock; |
| 42 | struct buffer_head *bh; |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* read the dir block */ |
| 45 | bh = sb_bread(inode->i_sb, efs_bmap(inode, block)); |
| 46 | |
| 47 | if (!bh) { |
Fabian Frederick | f403d1d | 2014-06-04 16:12:12 -0700 | [diff] [blame] | 48 | pr_err("%s(): failed to read dir block %d\n", |
| 49 | __func__, block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | break; |
| 51 | } |
| 52 | |
| 53 | dirblock = (struct efs_dir *) bh->b_data; |
| 54 | |
| 55 | if (be16_to_cpu(dirblock->magic) != EFS_DIRBLK_MAGIC) { |
Fabian Frederick | f403d1d | 2014-06-04 16:12:12 -0700 | [diff] [blame] | 56 | pr_err("%s(): invalid directory block\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | brelse(bh); |
| 58 | break; |
| 59 | } |
| 60 | |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 61 | for (; slot < dirblock->slots; slot++) { |
| 62 | struct efs_dentry *dirslot; |
| 63 | efs_ino_t inodenum; |
| 64 | const char *nameptr; |
| 65 | int namelen; |
| 66 | |
| 67 | if (dirblock->space[slot] == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
| 70 | dirslot = (struct efs_dentry *) (((char *) bh->b_data) + EFS_SLOTAT(dirblock, slot)); |
| 71 | |
| 72 | inodenum = be32_to_cpu(dirslot->inode); |
| 73 | namelen = dirslot->namelen; |
| 74 | nameptr = dirslot->name; |
Fabian Frederick | d1826f2 | 2014-06-04 16:12:13 -0700 | [diff] [blame] | 75 | pr_debug("%s(): block %d slot %d/%d: inode %u, name \"%s\", namelen %u\n", |
| 76 | __func__, block, slot, dirblock->slots-1, |
| 77 | inodenum, nameptr, namelen); |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 78 | if (!namelen) |
| 79 | continue; |
| 80 | /* found the next entry */ |
| 81 | ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 83 | /* sanity check */ |
| 84 | if (nameptr - (char *) dirblock + namelen > EFS_DIRBSIZE) { |
Fabian Frederick | f403d1d | 2014-06-04 16:12:12 -0700 | [diff] [blame] | 85 | pr_warn("directory entry %d exceeds directory block\n", |
| 86 | slot); |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 87 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 89 | |
| 90 | /* copy filename and data in dirslot */ |
| 91 | if (!dir_emit(ctx, nameptr, namelen, inodenum, DT_UNKNOWN)) { |
| 92 | brelse(bh); |
| 93 | return 0; |
| 94 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | } |
| 96 | brelse(bh); |
| 97 | |
| 98 | slot = 0; |
| 99 | block++; |
| 100 | } |
Al Viro | 7aa123a | 2013-05-16 01:41:10 -0400 | [diff] [blame] | 101 | ctx->pos = (block << EFS_DIRBSIZE_BITS) | slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return 0; |
| 103 | } |