blob: a6ee23aadd2837829037a61beb22bfa24e99c50c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * QNX4 file system, Linux implementation.
4 *
5 * Version : 0.2.1
6 *
7 * Using parts of the xiafs filesystem.
8 *
9 * History :
10 *
11 * 28-05-1998 by Richard Frowijn : first release.
12 * 20-06-1998 by Frank Denis : Linux 2.1.99+ & dcache support.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/buffer_head.h>
Al Viro964f5362009-06-07 09:47:13 -040016#include "qnx4.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Al Viro663f4de2013-05-17 15:17:59 -040018static int qnx4_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
Al Viro663f4de2013-05-17 15:17:59 -040020 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 unsigned int offset;
22 struct buffer_head *bh;
23 struct qnx4_inode_entry *de;
24 struct qnx4_link_info *le;
25 unsigned long blknum;
26 int ix, ino;
27 int size;
28
Anders Larsen891ddb92009-09-26 20:15:09 +020029 QNX4DEBUG((KERN_INFO "qnx4_readdir:i_size = %ld\n", (long) inode->i_size));
Al Viro663f4de2013-05-17 15:17:59 -040030 QNX4DEBUG((KERN_INFO "pos = %ld\n", (long) ctx->pos));
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Al Viro663f4de2013-05-17 15:17:59 -040032 while (ctx->pos < inode->i_size) {
33 blknum = qnx4_block_map(inode, ctx->pos >> QNX4_BLOCK_SIZE_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 bh = sb_bread(inode->i_sb, blknum);
Al Viro663f4de2013-05-17 15:17:59 -040035 if (bh == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 printk(KERN_ERR "qnx4_readdir: bread failed (%ld)\n", blknum);
Al Viro663f4de2013-05-17 15:17:59 -040037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 }
Al Viro663f4de2013-05-17 15:17:59 -040039 ix = (ctx->pos >> QNX4_DIR_ENTRY_SIZE_BITS) % QNX4_INODES_PER_BLOCK;
40 for (; ix < QNX4_INODES_PER_BLOCK; ix++, ctx->pos += QNX4_DIR_ENTRY_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 offset = ix * QNX4_DIR_ENTRY_SIZE;
42 de = (struct qnx4_inode_entry *) (bh->b_data + offset);
Al Viro663f4de2013-05-17 15:17:59 -040043 if (!de->di_fname[0])
44 continue;
45 if (!(de->di_status & (QNX4_FILE_USED|QNX4_FILE_LINK)))
46 continue;
47 if (!(de->di_status & QNX4_FILE_LINK))
48 size = QNX4_SHORT_NAME_MAX;
49 else
50 size = QNX4_NAME_MAX;
51 size = strnlen(de->di_fname, size);
52 QNX4DEBUG((KERN_INFO "qnx4_readdir:%.*s\n", size, de->di_fname));
53 if (!(de->di_status & QNX4_FILE_LINK))
54 ino = blknum * QNX4_INODES_PER_BLOCK + ix - 1;
55 else {
56 le = (struct qnx4_link_info*)de;
57 ino = ( le32_to_cpu(le->dl_inode_blk) - 1 ) *
58 QNX4_INODES_PER_BLOCK +
59 le->dl_inode_ndx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
Al Viro663f4de2013-05-17 15:17:59 -040061 if (!dir_emit(ctx, de->di_fname, size, ino, DT_UNKNOWN)) {
62 brelse(bh);
63 return 0;
64 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66 brelse(bh);
67 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
69}
70
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080071const struct file_operations qnx4_dir_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
jan Blunckca572722010-05-26 14:44:53 -070073 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -040075 .iterate_shared = qnx4_readdir,
Christoph Hellwig1b061d92010-05-26 17:53:41 +020076 .fsync = generic_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Arjan van de Venc5ef1c42007-02-12 00:55:40 -080079const struct inode_operations qnx4_dir_inode_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 .lookup = qnx4_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};