1 // SPDX-License-Identifier: GPL-2.0
3 * QNX4 file system, Linux implementation.
7 * Using parts of the xiafs filesystem.
11 * 01-06-1998 by Richard Frowijn : first release.
12 * 21-06-1998 by Frank Denis : dcache support, fixed error codes.
13 * 04-07-1998 by Frank Denis : first step for rmdir/unlink.
16 #include <linux/buffer_head.h>
21 * check if the filename is correct. For some obscure reason, qnx writes a
22 * new file twice in the directory entry, first with all possible options at 0
23 * and for a second time the way it is, they want us not to access the qnx
24 * filesystem when whe are using linux.
26 static int qnx4_match(int len
, const char *name
,
27 struct buffer_head
*bh
, unsigned long *offset
)
29 struct qnx4_inode_entry
*de
;
33 printk(KERN_WARNING
"qnx4: matching unassigned buffer !\n");
36 de
= (struct qnx4_inode_entry
*) (bh
->b_data
+ *offset
);
37 *offset
+= QNX4_DIR_ENTRY_SIZE
;
38 if ((de
->di_status
& QNX4_FILE_LINK
) != 0) {
39 namelen
= QNX4_NAME_MAX
;
41 namelen
= QNX4_SHORT_NAME_MAX
;
43 thislen
= strlen( de
->di_fname
);
44 if ( thislen
> namelen
)
49 if (strncmp(name
, de
->di_fname
, len
) == 0) {
50 if ((de
->di_status
& (QNX4_FILE_USED
|QNX4_FILE_LINK
)) != 0) {
57 static struct buffer_head
*qnx4_find_entry(int len
, struct inode
*dir
,
58 const char *name
, struct qnx4_inode_entry
**res_dir
, int *ino
)
60 unsigned long block
, offset
, blkofs
;
61 struct buffer_head
*bh
;
65 block
= offset
= blkofs
= 0;
66 while (blkofs
* QNX4_BLOCK_SIZE
+ offset
< dir
->i_size
) {
68 block
= qnx4_block_map(dir
, blkofs
);
70 bh
= sb_bread(dir
->i_sb
, block
);
76 *res_dir
= (struct qnx4_inode_entry
*) (bh
->b_data
+ offset
);
77 if (qnx4_match(len
, name
, bh
, &offset
)) {
78 *ino
= block
* QNX4_INODES_PER_BLOCK
+
79 (offset
/ QNX4_DIR_ENTRY_SIZE
) - 1;
82 if (offset
< bh
->b_size
) {
95 struct dentry
* qnx4_lookup(struct inode
*dir
, struct dentry
*dentry
, unsigned int flags
)
98 struct qnx4_inode_entry
*de
;
99 struct qnx4_link_info
*lnk
;
100 struct buffer_head
*bh
;
101 const char *name
= dentry
->d_name
.name
;
102 int len
= dentry
->d_name
.len
;
103 struct inode
*foundinode
= NULL
;
105 if (!(bh
= qnx4_find_entry(len
, dir
, name
, &de
, &ino
)))
107 /* The entry is linked, let's get the real info */
108 if ((de
->di_status
& QNX4_FILE_LINK
) == QNX4_FILE_LINK
) {
109 lnk
= (struct qnx4_link_info
*) de
;
110 ino
= (le32_to_cpu(lnk
->dl_inode_blk
) - 1) *
111 QNX4_INODES_PER_BLOCK
+
116 foundinode
= qnx4_iget(dir
->i_sb
, ino
);
117 if (IS_ERR(foundinode
))
118 QNX4DEBUG((KERN_ERR
"qnx4: lookup->iget -> error %ld\n",
119 PTR_ERR(foundinode
)));
121 return d_splice_alias(foundinode
, dentry
);