2 * QNX4 file system, Linux implementation.
6 * Using parts of the xiafs filesystem.
10 * 01-06-1998 by Richard Frowijn : first release.
11 * 21-06-1998 by Frank Denis : dcache support, fixed error codes.
12 * 04-07-1998 by Frank Denis : first step for rmdir/unlink.
15 #include <linux/config.h>
16 #include <linux/time.h>
18 #include <linux/qnx4_fs.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/stat.h>
22 #include <linux/fcntl.h>
23 #include <linux/errno.h>
24 #include <linux/smp_lock.h>
25 #include <linux/buffer_head.h>
29 * check if the filename is correct. For some obscure reason, qnx writes a
30 * new file twice in the directory entry, first with all possible options at 0
31 * and for a second time the way it is, they want us not to access the qnx
32 * filesystem when whe are using linux.
34 static int qnx4_match(int len
, const char *name
,
35 struct buffer_head
*bh
, unsigned long *offset
)
37 struct qnx4_inode_entry
*de
;
41 printk("qnx4: matching unassigned buffer !\n");
44 de
= (struct qnx4_inode_entry
*) (bh
->b_data
+ *offset
);
45 *offset
+= QNX4_DIR_ENTRY_SIZE
;
46 if ((de
->di_status
& QNX4_FILE_LINK
) != 0) {
47 namelen
= QNX4_NAME_MAX
;
49 namelen
= QNX4_SHORT_NAME_MAX
;
51 /* "" means "." ---> so paths like "/usr/lib//libc.a" work */
52 if (!len
&& (de
->di_fname
[0] == '.') && (de
->di_fname
[1] == '\0')) {
55 thislen
= strlen( de
->di_fname
);
56 if ( thislen
> namelen
)
61 if (strncmp(name
, de
->di_fname
, len
) == 0) {
62 if ((de
->di_status
& (QNX4_FILE_USED
|QNX4_FILE_LINK
)) != 0) {
69 static struct buffer_head
*qnx4_find_entry(int len
, struct inode
*dir
,
70 const char *name
, struct qnx4_inode_entry
**res_dir
, int *ino
)
72 unsigned long block
, offset
, blkofs
;
73 struct buffer_head
*bh
;
77 printk("qnx4: no superblock on dir.\n");
81 block
= offset
= blkofs
= 0;
82 while (blkofs
* QNX4_BLOCK_SIZE
+ offset
< dir
->i_size
) {
84 bh
= qnx4_bread(dir
, blkofs
, 0);
90 *res_dir
= (struct qnx4_inode_entry
*) (bh
->b_data
+ offset
);
91 if (qnx4_match(len
, name
, bh
, &offset
)) {
92 block
= qnx4_block_map( dir
, blkofs
);
93 *ino
= block
* QNX4_INODES_PER_BLOCK
+
94 (offset
/ QNX4_DIR_ENTRY_SIZE
) - 1;
97 if (offset
< bh
->b_size
) {
110 struct dentry
* qnx4_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
113 struct qnx4_inode_entry
*de
;
114 struct qnx4_link_info
*lnk
;
115 struct buffer_head
*bh
;
116 const char *name
= dentry
->d_name
.name
;
117 int len
= dentry
->d_name
.len
;
118 struct inode
*foundinode
= NULL
;
121 if (!(bh
= qnx4_find_entry(len
, dir
, name
, &de
, &ino
)))
123 /* The entry is linked, let's get the real info */
124 if ((de
->di_status
& QNX4_FILE_LINK
) == QNX4_FILE_LINK
) {
125 lnk
= (struct qnx4_link_info
*) de
;
126 ino
= (le32_to_cpu(lnk
->dl_inode_blk
) - 1) *
127 QNX4_INODES_PER_BLOCK
+
132 if ((foundinode
= iget(dir
->i_sb
, ino
)) == NULL
) {
134 QNX4DEBUG(("qnx4: lookup->iget -> NULL\n"));
135 return ERR_PTR(-EACCES
);
139 d_add(dentry
, foundinode
);
144 #ifdef CONFIG_QNX4FS_RW
145 int qnx4_create(struct inode
*dir
, struct dentry
*dentry
, int mode
,
146 struct nameidata
*nd
)
148 QNX4DEBUG(("qnx4: qnx4_create\n"));
155 int qnx4_rmdir(struct inode
*dir
, struct dentry
*dentry
)
157 struct buffer_head
*bh
;
158 struct qnx4_inode_entry
*de
;
163 QNX4DEBUG(("qnx4: qnx4_rmdir [%s]\n", dentry
->d_name
.name
));
165 bh
= qnx4_find_entry(dentry
->d_name
.len
, dir
, dentry
->d_name
.name
,
171 inode
= dentry
->d_inode
;
172 if (inode
->i_ino
!= ino
) {
177 if (!empty_dir(inode
)) {
182 if (inode
->i_nlink
!= 2) {
183 QNX4DEBUG(("empty directory has nlink!=2 (%d)\n", inode
->i_nlink
));
185 QNX4DEBUG(("qnx4: deleting directory\n"));
187 memset(de
->di_fname
, 0, sizeof de
->di_fname
);
189 mark_buffer_dirty(bh
);
191 mark_inode_dirty(inode
);
192 inode
->i_ctime
= dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME
;
194 mark_inode_dirty(dir
);
204 int qnx4_unlink(struct inode
*dir
, struct dentry
*dentry
)
206 struct buffer_head
*bh
;
207 struct qnx4_inode_entry
*de
;
212 QNX4DEBUG(("qnx4: qnx4_unlink [%s]\n", dentry
->d_name
.name
));
214 bh
= qnx4_find_entry(dentry
->d_name
.len
, dir
, dentry
->d_name
.name
,
220 inode
= dentry
->d_inode
;
221 if (inode
->i_ino
!= ino
) {
226 if (!inode
->i_nlink
) {
227 QNX4DEBUG(("Deleting nonexistent file (%s:%lu), %d\n",
229 inode
->i_ino
, inode
->i_nlink
));
233 memset(de
->di_fname
, 0, sizeof de
->di_fname
);
235 mark_buffer_dirty(bh
);
236 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME
;
237 mark_inode_dirty(dir
);
239 inode
->i_ctime
= dir
->i_ctime
;
240 mark_inode_dirty(inode
);