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 /* Prototypes for file operations */
40 static int udf_readdir(struct file
*, void *, filldir_t
);
41 static int do_udf_readdir(struct inode
*, struct file
*, filldir_t
, void *);
43 /* readdir and lookup functions */
45 const struct file_operations udf_dir_operations
= {
46 .read
= generic_read_dir
,
47 .readdir
= udf_readdir
,
49 .fsync
= udf_fsync_file
,
56 * Read a directory entry.
59 * Optional - sys_getdents() will return -ENOTDIR if this routine is not
62 * Refer to sys_getdents() in fs/readdir.c
66 * filp Pointer to directory file.
67 * buf Pointer to directory entry buffer.
68 * filldir Pointer to filldir function.
71 * <return> >=0 on success.
74 * July 1, 1997 - Andrew E. Mileski
75 * Written, tested, and released.
78 int udf_readdir(struct file
*filp
, void *dirent
, filldir_t filldir
)
80 struct inode
*dir
= filp
->f_path
.dentry
->d_inode
;
85 if ( filp
->f_pos
== 0 )
87 if (filldir(dirent
, ".", 1, filp
->f_pos
, dir
->i_ino
, DT_DIR
) < 0)
95 result
= do_udf_readdir(dir
, filp
, filldir
, dirent
);
101 do_udf_readdir(struct inode
* dir
, struct file
*filp
, filldir_t filldir
, void *dirent
)
103 struct udf_fileident_bh fibh
;
104 struct fileIdentDesc
*fi
=NULL
;
105 struct fileIdentDesc cfi
;
107 loff_t nf_pos
= filp
->f_pos
- 1;
109 char fname
[UDF_NAME_LEN
];
113 loff_t size
= (udf_ext0_offset(dir
) + dir
->i_size
) >> 2;
114 struct buffer_head
*tmp
, *bha
[16];
119 unsigned int dt_type
;
120 struct extent_position epos
= { NULL
, 0, {0, 0}};
126 nf_pos
= (udf_ext0_offset(dir
) >> 2);
128 fibh
.soffset
= fibh
.eoffset
= (nf_pos
& ((dir
->i_sb
->s_blocksize
- 1) >> 2)) << 2;
129 if (UDF_I_ALLOCTYPE(dir
) == ICBTAG_FLAG_AD_IN_ICB
)
130 fibh
.sbh
= fibh
.ebh
= NULL
;
131 else if (inode_bmap(dir
, nf_pos
>> (dir
->i_sb
->s_blocksize_bits
- 2),
132 &epos
, &eloc
, &elen
, &offset
) == (EXT_RECORDED_ALLOCATED
>> 30))
134 block
= udf_get_lb_pblock(dir
->i_sb
, eloc
, offset
);
135 if ((++offset
<< dir
->i_sb
->s_blocksize_bits
) < elen
)
137 if (UDF_I_ALLOCTYPE(dir
) == ICBTAG_FLAG_AD_SHORT
)
138 epos
.offset
-= sizeof(short_ad
);
139 else if (UDF_I_ALLOCTYPE(dir
) == ICBTAG_FLAG_AD_LONG
)
140 epos
.offset
-= sizeof(long_ad
);
145 if (!(fibh
.sbh
= fibh
.ebh
= udf_tread(dir
->i_sb
, block
)))
151 if (!(offset
& ((16 >> (dir
->i_sb
->s_blocksize_bits
- 9))-1)))
153 i
= 16 >> (dir
->i_sb
->s_blocksize_bits
- 9);
154 if (i
+offset
> (elen
>> dir
->i_sb
->s_blocksize_bits
))
155 i
= (elen
>> dir
->i_sb
->s_blocksize_bits
)-offset
;
156 for (num
=0; i
>0; i
--)
158 block
= udf_get_lb_pblock(dir
->i_sb
, eloc
, offset
+i
);
159 tmp
= udf_tgetblk(dir
->i_sb
, block
);
160 if (tmp
&& !buffer_uptodate(tmp
) && !buffer_locked(tmp
))
167 ll_rw_block(READA
, num
, bha
);
168 for (i
=0; i
<num
; i
++)
179 while ( nf_pos
< size
)
181 filp
->f_pos
= nf_pos
+ 1;
183 fi
= udf_fileident_read(dir
, &nf_pos
, &fibh
, &cfi
, &epos
, &eloc
, &elen
, &offset
);
187 if (fibh
.sbh
!= fibh
.ebh
)
194 liu
= le16_to_cpu(cfi
.lengthOfImpUse
);
195 lfi
= cfi
.lengthFileIdent
;
197 if (fibh
.sbh
== fibh
.ebh
)
198 nameptr
= fi
->fileIdent
+ liu
;
201 int poffset
; /* Unpaded ending offset */
203 poffset
= fibh
.soffset
+ sizeof(struct fileIdentDesc
) + liu
+ lfi
;
206 nameptr
= (char *)(fibh
.ebh
->b_data
+ poffset
- lfi
);
210 memcpy(nameptr
, fi
->fileIdent
+ liu
, lfi
- poffset
);
211 memcpy(nameptr
+ lfi
- poffset
, fibh
.ebh
->b_data
, poffset
);
215 if ( (cfi
.fileCharacteristics
& FID_FILE_CHAR_DELETED
) != 0 )
217 if ( !UDF_QUERY_FLAG(dir
->i_sb
, UDF_FLAG_UNDELETE
) )
221 if ( (cfi
.fileCharacteristics
& FID_FILE_CHAR_HIDDEN
) != 0 )
223 if ( !UDF_QUERY_FLAG(dir
->i_sb
, UDF_FLAG_UNHIDE
) )
227 if ( cfi
.fileCharacteristics
& FID_FILE_CHAR_PARENT
)
229 iblock
= parent_ino(filp
->f_path
.dentry
);
231 memcpy(fname
, "..", flen
);
236 kernel_lb_addr tloc
= lelb_to_cpu(cfi
.icb
.extLocation
);
238 iblock
= udf_get_lb_pblock(dir
->i_sb
, tloc
, 0);
239 flen
= udf_get_filename(dir
->i_sb
, nameptr
, fname
, lfi
);
240 dt_type
= DT_UNKNOWN
;
245 if (filldir(dirent
, fname
, flen
, filp
->f_pos
, iblock
, dt_type
) < 0)
247 if (fibh
.sbh
!= fibh
.ebh
)
256 filp
->f_pos
= nf_pos
+ 1;
258 if (fibh
.sbh
!= fibh
.ebh
)