udf: remove UDF_I_* macros and open code them
[deliverable/linux.git] / fs / udf / dir.c
CommitLineData
1da177e4
LT
1/*
2 * dir.c
3 *
4 * PURPOSE
5 * Directory handling routines for the OSTA-UDF(tm) filesystem.
6 *
1da177e4
LT
7 * 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
4b6f5d20 45const struct file_operations udf_dir_operations = {
28de7948
CG
46 .read = generic_read_dir,
47 .readdir = udf_readdir,
48 .ioctl = udf_ioctl,
49 .fsync = udf_fsync_file,
1da177e4
LT
50};
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{
5096e933 80 struct inode *dir = filp->f_path.dentry->d_inode;
1da177e4
LT
81 int result;
82
83 lock_kernel();
84
cb00ea35 85 if (filp->f_pos == 0) {
28de7948 86 if (filldir(dirent, ".", 1, filp->f_pos, dir->i_ino, DT_DIR) < 0) {
1da177e4
LT
87 unlock_kernel();
88 return 0;
89 }
cb00ea35 90 filp->f_pos++;
1da177e4
LT
91 }
92
93 result = do_udf_readdir(dir, filp, filldir, dirent);
94 unlock_kernel();
28de7948 95 return result;
1da177e4
LT
96}
97
cb00ea35
CG
98static int
99do_udf_readdir(struct inode *dir, struct file *filp, filldir_t filldir,
100 void *dirent)
1da177e4
LT
101{
102 struct udf_fileident_bh fibh;
cb00ea35 103 struct fileIdentDesc *fi = NULL;
1da177e4
LT
104 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;
ff116fc8
JK
113 struct buffer_head *tmp, *bha[16];
114 kernel_lb_addr eloc;
115 uint32_t elen;
60448b1d 116 sector_t offset;
1da177e4
LT
117 int i, num;
118 unsigned int dt_type;
cb00ea35 119 struct extent_position epos = { NULL, 0, {0, 0} };
1da177e4
LT
120
121 if (nf_pos >= size)
122 return 0;
123
124 if (nf_pos == 0)
125 nf_pos = (udf_ext0_offset(dir) >> 2);
126
28de7948 127 fibh.soffset = fibh.eoffset = (nf_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2;
c0b34438 128 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
1da177e4 129 fibh.sbh = fibh.ebh = NULL;
28de7948
CG
130 } else if (inode_bmap(dir, nf_pos >> (dir->i_sb->s_blocksize_bits - 2),
131 &epos, &eloc, &elen, &offset) == (EXT_RECORDED_ALLOCATED >> 30)) {
1da177e4 132 block = udf_get_lb_pblock(dir->i_sb, eloc, offset);
cb00ea35 133 if ((++offset << dir->i_sb->s_blocksize_bits) < elen) {
c0b34438 134 if (UDF_I(dir)->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
ff116fc8 135 epos.offset -= sizeof(short_ad);
c0b34438
MS
136 else if (UDF_I(dir)->i_alloc_type ==
137 ICBTAG_FLAG_AD_LONG)
ff116fc8 138 epos.offset -= sizeof(long_ad);
28de7948 139 } else {
1da177e4 140 offset = 0;
28de7948 141 }
1da177e4 142
cb00ea35 143 if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) {
3bf25cb4 144 brelse(epos.bh);
1da177e4
LT
145 return -EIO;
146 }
cb00ea35
CG
147
148 if (!(offset & ((16 >> (dir->i_sb->s_blocksize_bits - 9)) - 1))) {
1da177e4 149 i = 16 >> (dir->i_sb->s_blocksize_bits - 9);
cb00ea35 150 if (i + offset > (elen >> dir->i_sb->s_blocksize_bits))
28de7948 151 i = (elen >> dir->i_sb->s_blocksize_bits) - offset;
cb00ea35 152 for (num = 0; i > 0; i--) {
28de7948 153 block = udf_get_lb_pblock(dir->i_sb, eloc, offset + i);
1da177e4 154 tmp = udf_tgetblk(dir->i_sb, block);
28de7948 155 if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
1da177e4
LT
156 bha[num++] = tmp;
157 else
158 brelse(tmp);
159 }
cb00ea35 160 if (num) {
1da177e4 161 ll_rw_block(READA, num, bha);
cb00ea35 162 for (i = 0; i < num; i++)
1da177e4
LT
163 brelse(bha[i]);
164 }
165 }
cb00ea35 166 } else {
3bf25cb4 167 brelse(epos.bh);
1da177e4
LT
168 return -ENOENT;
169 }
170
cb00ea35 171 while (nf_pos < size) {
1da177e4
LT
172 filp->f_pos = nf_pos + 1;
173
cb00ea35
CG
174 fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
175 &elen, &offset);
cb00ea35 176 if (!fi) {
1da177e4 177 if (fibh.sbh != fibh.ebh)
3bf25cb4
JK
178 brelse(fibh.ebh);
179 brelse(fibh.sbh);
180 brelse(epos.bh);
1da177e4
LT
181 return 0;
182 }
183
184 liu = le16_to_cpu(cfi.lengthOfImpUse);
185 lfi = cfi.lengthFileIdent;
186
28de7948 187 if (fibh.sbh == fibh.ebh) {
1da177e4 188 nameptr = fi->fileIdent + liu;
28de7948 189 } else {
1da177e4
LT
190 int poffset; /* Unpaded ending offset */
191
28de7948 192 poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
1da177e4 193
28de7948
CG
194 if (poffset >= lfi) {
195 nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
196 } else {
1da177e4 197 nameptr = fname;
cb00ea35
CG
198 memcpy(nameptr, fi->fileIdent + liu,
199 lfi - poffset);
200 memcpy(nameptr + lfi - poffset,
201 fibh.ebh->b_data, poffset);
1da177e4
LT
202 }
203 }
204
cb00ea35
CG
205 if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
206 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE))
1da177e4
LT
207 continue;
208 }
cb00ea35
CG
209
210 if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
211 if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE))
1da177e4
LT
212 continue;
213 }
214
cb00ea35 215 if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
5096e933 216 iblock = parent_ino(filp->f_path.dentry);
1da177e4
LT
217 flen = 2;
218 memcpy(fname, "..", flen);
219 dt_type = DT_DIR;
cb00ea35 220 } else {
1da177e4
LT
221 kernel_lb_addr tloc = lelb_to_cpu(cfi.icb.extLocation);
222
223 iblock = udf_get_lb_pblock(dir->i_sb, tloc, 0);
224 flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi);
225 dt_type = DT_UNKNOWN;
226 }
227
cb00ea35 228 if (flen) {
28de7948 229 if (filldir(dirent, fname, flen, filp->f_pos, iblock, dt_type) < 0) {
1da177e4 230 if (fibh.sbh != fibh.ebh)
3bf25cb4
JK
231 brelse(fibh.ebh);
232 brelse(fibh.sbh);
233 brelse(epos.bh);
28de7948 234 return 0;
1da177e4
LT
235 }
236 }
28de7948 237 } /* end while */
1da177e4
LT
238
239 filp->f_pos = nf_pos + 1;
240
241 if (fibh.sbh != fibh.ebh)
3bf25cb4
JK
242 brelse(fibh.ebh);
243 brelse(fibh.sbh);
244 brelse(epos.bh);
1da177e4
LT
245
246 return 0;
247}
This page took 0.337807 seconds and 5 git commands to generate.