5 * Directory handling routines for the OSTA-UDF(tm) filesystem.
8 * This file is distributed under the terms of the GNU General Public
9 * License (GPL). Copies of the GPL can be obtained from:
10 * ftp://prep.ai.mit.edu/pub/gnu/GPL
11 * Each contributing author retains all rights to their own work.
13 * (C) 1998-2004 Ben Fennema
17 * 10/05/98 dgb Split directory operations into its own file
18 * Implemented directory reads via do_udf_readdir
19 * 10/06/98 Made directory operations work!
20 * 11/17/98 Rewrote directory to support ICBTAG_FLAG_AD_LONG
21 * 11/25/98 blf Rewrote directory handling (readdir+lookup) to support reading
23 * 12/12/98 Split out the lookup code to namei.c. bulk of directory
24 * code now in directory.c:udf_fileident_read.
29 #include <linux/string.h>
30 #include <linux/errno.h>
32 #include <linux/slab.h>
33 #include <linux/smp_lock.h>
34 #include <linux/buffer_head.h>
39 static int do_udf_readdir(struct inode
*dir
, struct file
*filp
,
40 filldir_t filldir
, void *dirent
)
42 struct udf_fileident_bh fibh
;
43 struct fileIdentDesc
*fi
= NULL
;
44 struct fileIdentDesc cfi
;
46 loff_t nf_pos
= (filp
->f_pos
- 1) << 2;
48 char fname
[UDF_NAME_LEN
];
52 loff_t size
= udf_ext0_offset(dir
) + dir
->i_size
;
53 struct buffer_head
*tmp
, *bha
[16];
59 struct extent_position epos
= { NULL
, 0, {0, 0} };
60 struct udf_inode_info
*iinfo
;
66 nf_pos
= udf_ext0_offset(dir
);
68 fibh
.soffset
= fibh
.eoffset
= nf_pos
& (dir
->i_sb
->s_blocksize
- 1);
70 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_IN_ICB
) {
71 fibh
.sbh
= fibh
.ebh
= NULL
;
72 } else if (inode_bmap(dir
, nf_pos
>> dir
->i_sb
->s_blocksize_bits
,
73 &epos
, &eloc
, &elen
, &offset
) == (EXT_RECORDED_ALLOCATED
>> 30)) {
74 block
= udf_get_lb_pblock(dir
->i_sb
, eloc
, offset
);
75 if ((++offset
<< dir
->i_sb
->s_blocksize_bits
) < elen
) {
76 if (iinfo
->i_alloc_type
== ICBTAG_FLAG_AD_SHORT
)
77 epos
.offset
-= sizeof(short_ad
);
78 else if (iinfo
->i_alloc_type
==
80 epos
.offset
-= sizeof(long_ad
);
85 if (!(fibh
.sbh
= fibh
.ebh
= udf_tread(dir
->i_sb
, block
))) {
90 if (!(offset
& ((16 >> (dir
->i_sb
->s_blocksize_bits
- 9)) - 1))) {
91 i
= 16 >> (dir
->i_sb
->s_blocksize_bits
- 9);
92 if (i
+ offset
> (elen
>> dir
->i_sb
->s_blocksize_bits
))
93 i
= (elen
>> dir
->i_sb
->s_blocksize_bits
) - offset
;
94 for (num
= 0; i
> 0; i
--) {
95 block
= udf_get_lb_pblock(dir
->i_sb
, eloc
, offset
+ i
);
96 tmp
= udf_tgetblk(dir
->i_sb
, block
);
97 if (tmp
&& !buffer_uptodate(tmp
) && !buffer_locked(tmp
))
103 ll_rw_block(READA
, num
, bha
);
104 for (i
= 0; i
< num
; i
++)
113 while (nf_pos
< size
) {
114 filp
->f_pos
= (nf_pos
>> 2) + 1;
116 fi
= udf_fileident_read(dir
, &nf_pos
, &fibh
, &cfi
, &epos
, &eloc
,
119 if (fibh
.sbh
!= fibh
.ebh
)
126 liu
= le16_to_cpu(cfi
.lengthOfImpUse
);
127 lfi
= cfi
.lengthFileIdent
;
129 if (fibh
.sbh
== fibh
.ebh
) {
130 nameptr
= fi
->fileIdent
+ liu
;
132 int poffset
; /* Unpaded ending offset */
134 poffset
= fibh
.soffset
+ sizeof(struct fileIdentDesc
) + liu
+ lfi
;
136 if (poffset
>= lfi
) {
137 nameptr
= (char *)(fibh
.ebh
->b_data
+ poffset
- lfi
);
140 memcpy(nameptr
, fi
->fileIdent
+ liu
,
142 memcpy(nameptr
+ lfi
- poffset
,
143 fibh
.ebh
->b_data
, poffset
);
147 if ((cfi
.fileCharacteristics
& FID_FILE_CHAR_DELETED
) != 0) {
148 if (!UDF_QUERY_FLAG(dir
->i_sb
, UDF_FLAG_UNDELETE
))
152 if ((cfi
.fileCharacteristics
& FID_FILE_CHAR_HIDDEN
) != 0) {
153 if (!UDF_QUERY_FLAG(dir
->i_sb
, UDF_FLAG_UNHIDE
))
157 if (cfi
.fileCharacteristics
& FID_FILE_CHAR_PARENT
) {
158 iblock
= parent_ino(filp
->f_path
.dentry
);
160 memcpy(fname
, "..", flen
);
163 kernel_lb_addr tloc
= lelb_to_cpu(cfi
.icb
.extLocation
);
165 iblock
= udf_get_lb_pblock(dir
->i_sb
, tloc
, 0);
166 flen
= udf_get_filename(dir
->i_sb
, nameptr
, fname
, lfi
);
167 dt_type
= DT_UNKNOWN
;
171 if (filldir(dirent
, fname
, flen
, filp
->f_pos
, iblock
, dt_type
) < 0) {
172 if (fibh
.sbh
!= fibh
.ebh
)
181 filp
->f_pos
= (nf_pos
>> 2) + 1;
183 if (fibh
.sbh
!= fibh
.ebh
)
195 * Read a directory entry.
198 * Optional - sys_getdents() will return -ENOTDIR if this routine is not
201 * Refer to sys_getdents() in fs/readdir.c
202 * sys_getdents() -> .
205 * filp Pointer to directory file.
206 * buf Pointer to directory entry buffer.
207 * filldir Pointer to filldir function.
210 * <return> >=0 on success.
213 * July 1, 1997 - Andrew E. Mileski
214 * Written, tested, and released.
217 static int udf_readdir(struct file
*filp
, void *dirent
, filldir_t filldir
)
219 struct inode
*dir
= filp
->f_path
.dentry
->d_inode
;
224 if (filp
->f_pos
== 0) {
225 if (filldir(dirent
, ".", 1, filp
->f_pos
, dir
->i_ino
, DT_DIR
) < 0) {
232 result
= do_udf_readdir(dir
, filp
, filldir
, dirent
);
237 /* readdir and lookup functions */
238 const struct file_operations udf_dir_operations
= {
239 .read
= generic_read_dir
,
240 .readdir
= udf_readdir
,
242 .fsync
= udf_fsync_file
,