blob: 4d9b2153f68678428529430124a3e7c7810afc7d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dir.c
3 *
4 * PURPOSE
5 * Directory handling routines for the OSTA-UDF(tm) filesystem.
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * COPYRIGHT
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.
12 *
13 * (C) 1998-2004 Ben Fennema
14 *
15 * HISTORY
16 *
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
22 * across blocks.
23 * 12/12/98 Split out the lookup code to namei.c. bulk of directory
24 * code now in directory.c:udf_fileident_read.
25 */
26
27#include "udfdecl.h"
28
29#include <linux/string.h>
30#include <linux/errno.h>
31#include <linux/mm.h>
32#include <linux/slab.h>
33#include <linux/smp_lock.h>
34#include <linux/buffer_head.h>
35
36#include "udf_i.h"
37#include "udf_sb.h"
38
39/* Prototypes for file operations */
40static int udf_readdir(struct file *, void *, filldir_t);
41static int do_udf_readdir(struct inode *, struct file *, filldir_t, void *);
42
43/* readdir and lookup functions */
44
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080045const struct file_operations udf_dir_operations = {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070046 .read = generic_read_dir,
47 .readdir = udf_readdir,
48 .ioctl = udf_ioctl,
49 .fsync = udf_fsync_file,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
52/*
53 * udf_readdir
54 *
55 * PURPOSE
56 * Read a directory entry.
57 *
58 * DESCRIPTION
59 * Optional - sys_getdents() will return -ENOTDIR if this routine is not
60 * available.
61 *
62 * Refer to sys_getdents() in fs/readdir.c
63 * sys_getdents() -> .
64 *
65 * PRE-CONDITIONS
66 * filp Pointer to directory file.
67 * buf Pointer to directory entry buffer.
68 * filldir Pointer to filldir function.
69 *
70 * POST-CONDITIONS
71 * <return> >=0 on success.
72 *
73 * HISTORY
74 * July 1, 1997 - Andrew E. Mileski
75 * Written, tested, and released.
76 */
77
78int udf_readdir(struct file *filp, void *dirent, filldir_t filldir)
79{
Josef Sipek5096e932006-12-08 02:37:44 -080080 struct inode *dir = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 int result;
82
83 lock_kernel();
84
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070085 if (filp->f_pos == 0) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070086 if (filldir(dirent, ".", 1, filp->f_pos, dir->i_ino, DT_DIR) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unlock_kernel();
88 return 0;
89 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070090 filp->f_pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92
93 result = do_udf_readdir(dir, filp, filldir, dirent);
94 unlock_kernel();
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070095 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070098static int
99do_udf_readdir(struct inode *dir, struct file *filp, filldir_t filldir,
100 void *dirent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct udf_fileident_bh fibh;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700103 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct fileIdentDesc cfi;
105 int block, iblock;
106 loff_t nf_pos = filp->f_pos - 1;
107 int flen;
108 char fname[UDF_NAME_LEN];
109 char *nameptr;
110 uint16_t liu;
111 uint8_t lfi;
112 loff_t size = (udf_ext0_offset(dir) + dir->i_size) >> 2;
Jan Karaff116fc2007-05-08 00:35:14 -0700113 struct buffer_head *tmp, *bha[16];
114 kernel_lb_addr eloc;
115 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -0700116 sector_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int i, num;
118 unsigned int dt_type;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700119 struct extent_position epos = { NULL, 0, {0, 0} };
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800120 struct udf_inode_info *iinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (nf_pos >= size)
123 return 0;
124
125 if (nf_pos == 0)
126 nf_pos = (udf_ext0_offset(dir) >> 2);
127
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700128 fibh.soffset = fibh.eoffset = (nf_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800129 iinfo = UDF_I(dir);
130 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 fibh.sbh = fibh.ebh = NULL;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700132 } else if (inode_bmap(dir, nf_pos >> (dir->i_sb->s_blocksize_bits - 2),
133 &epos, &eloc, &elen, &offset) == (EXT_RECORDED_ALLOCATED >> 30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700135 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800136 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Jan Karaff116fc2007-05-08 00:35:14 -0700137 epos.offset -= sizeof(short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800138 else if (iinfo->i_alloc_type ==
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800139 ICBTAG_FLAG_AD_LONG)
Jan Karaff116fc2007-05-08 00:35:14 -0700140 epos.offset -= sizeof(long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700141 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 offset = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700145 if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700146 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return -EIO;
148 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700149
150 if (!(offset & ((16 >> (dir->i_sb->s_blocksize_bits - 9)) - 1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 i = 16 >> (dir->i_sb->s_blocksize_bits - 9);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700152 if (i + offset > (elen >> dir->i_sb->s_blocksize_bits))
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700153 i = (elen >> dir->i_sb->s_blocksize_bits) - offset;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700154 for (num = 0; i > 0; i--) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700155 block = udf_get_lb_pblock(dir->i_sb, eloc, offset + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 tmp = udf_tgetblk(dir->i_sb, block);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700157 if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 bha[num++] = tmp;
159 else
160 brelse(tmp);
161 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700162 if (num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 ll_rw_block(READA, num, bha);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700164 for (i = 0; i < num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 brelse(bha[i]);
166 }
167 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700168 } else {
Jan Kara3bf25cb2007-05-08 00:35:16 -0700169 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return -ENOENT;
171 }
172
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700173 while (nf_pos < size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 filp->f_pos = nf_pos + 1;
175
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700176 fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
177 &elen, &offset);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700178 if (!fi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700180 brelse(fibh.ebh);
181 brelse(fibh.sbh);
182 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184 }
185
186 liu = le16_to_cpu(cfi.lengthOfImpUse);
187 lfi = cfi.lengthFileIdent;
188
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700189 if (fibh.sbh == fibh.ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 nameptr = fi->fileIdent + liu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700191 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 int poffset; /* Unpaded ending offset */
193
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700194 poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700196 if (poffset >= lfi) {
197 nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
198 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 nameptr = fname;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700200 memcpy(nameptr, fi->fileIdent + liu,
201 lfi - poffset);
202 memcpy(nameptr + lfi - poffset,
203 fibh.ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205 }
206
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700207 if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
208 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 continue;
210 }
211
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700212 if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
213 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
214 continue;
215 }
216
217 if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
Josef Sipek5096e932006-12-08 02:37:44 -0800218 iblock = parent_ino(filp->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 flen = 2;
220 memcpy(fname, "..", flen);
221 dt_type = DT_DIR;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700222 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 kernel_lb_addr tloc = lelb_to_cpu(cfi.icb.extLocation);
224
225 iblock = udf_get_lb_pblock(dir->i_sb, tloc, 0);
226 flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
227 dt_type = DT_UNKNOWN;
228 }
229
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700230 if (flen) {
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700231 if (filldir(dirent, fname, flen, filp->f_pos, iblock, dt_type) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700233 brelse(fibh.ebh);
234 brelse(fibh.sbh);
235 brelse(epos.bh);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238 }
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700239 } /* end while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 filp->f_pos = nf_pos + 1;
242
243 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700244 brelse(fibh.ebh);
245 brelse(fibh.sbh);
246 brelse(epos.bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 return 0;
249}