Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * dir.c |
| 3 | * |
| 4 | * PURPOSE |
| 5 | * Directory handling routines for the OSTA-UDF(tm) filesystem. |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame^] | 39 | static int do_udf_readdir(struct inode *dir, struct file *filp, |
| 40 | filldir_t filldir, void *dirent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
| 42 | struct udf_fileident_bh fibh; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 43 | struct fileIdentDesc *fi = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | struct fileIdentDesc cfi; |
| 45 | int block, iblock; |
| 46 | loff_t nf_pos = filp->f_pos - 1; |
| 47 | int flen; |
| 48 | char fname[UDF_NAME_LEN]; |
| 49 | char *nameptr; |
| 50 | uint16_t liu; |
| 51 | uint8_t lfi; |
| 52 | loff_t size = (udf_ext0_offset(dir) + dir->i_size) >> 2; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 53 | struct buffer_head *tmp, *bha[16]; |
| 54 | kernel_lb_addr eloc; |
| 55 | uint32_t elen; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 56 | sector_t offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | int i, num; |
| 58 | unsigned int dt_type; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 59 | struct extent_position epos = { NULL, 0, {0, 0} }; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 60 | struct udf_inode_info *iinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | if (nf_pos >= size) |
| 63 | return 0; |
| 64 | |
| 65 | if (nf_pos == 0) |
| 66 | nf_pos = (udf_ext0_offset(dir) >> 2); |
| 67 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 68 | fibh.soffset = fibh.eoffset = (nf_pos & ((dir->i_sb->s_blocksize - 1) >> 2)) << 2; |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 69 | iinfo = UDF_I(dir); |
| 70 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | fibh.sbh = fibh.ebh = NULL; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 72 | } else if (inode_bmap(dir, nf_pos >> (dir->i_sb->s_blocksize_bits - 2), |
| 73 | &epos, &eloc, &elen, &offset) == (EXT_RECORDED_ALLOCATED >> 30)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | block = udf_get_lb_pblock(dir->i_sb, eloc, offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 75 | if ((++offset << dir->i_sb->s_blocksize_bits) < elen) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 76 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 77 | epos.offset -= sizeof(short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 78 | else if (iinfo->i_alloc_type == |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 79 | ICBTAG_FLAG_AD_LONG) |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 80 | epos.offset -= sizeof(long_ad); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 81 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | offset = 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 83 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 85 | if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 86 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return -EIO; |
| 88 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 89 | |
| 90 | if (!(offset & ((16 >> (dir->i_sb->s_blocksize_bits - 9)) - 1))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | i = 16 >> (dir->i_sb->s_blocksize_bits - 9); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 92 | if (i + offset > (elen >> dir->i_sb->s_blocksize_bits)) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 93 | i = (elen >> dir->i_sb->s_blocksize_bits) - offset; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 94 | for (num = 0; i > 0; i--) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 95 | block = udf_get_lb_pblock(dir->i_sb, eloc, offset + i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | tmp = udf_tgetblk(dir->i_sb, block); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 97 | if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | bha[num++] = tmp; |
| 99 | else |
| 100 | brelse(tmp); |
| 101 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 102 | if (num) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | ll_rw_block(READA, num, bha); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 104 | for (i = 0; i < num; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | brelse(bha[i]); |
| 106 | } |
| 107 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 108 | } else { |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 109 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | return -ENOENT; |
| 111 | } |
| 112 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 113 | while (nf_pos < size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | filp->f_pos = nf_pos + 1; |
| 115 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 116 | fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc, |
| 117 | &elen, &offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 118 | if (!fi) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 120 | brelse(fibh.ebh); |
| 121 | brelse(fibh.sbh); |
| 122 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | liu = le16_to_cpu(cfi.lengthOfImpUse); |
| 127 | lfi = cfi.lengthFileIdent; |
| 128 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 129 | if (fibh.sbh == fibh.ebh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | nameptr = fi->fileIdent + liu; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 131 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | int poffset; /* Unpaded ending offset */ |
| 133 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 134 | poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 136 | if (poffset >= lfi) { |
| 137 | nameptr = (char *)(fibh.ebh->b_data + poffset - lfi); |
| 138 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | nameptr = fname; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 140 | memcpy(nameptr, fi->fileIdent + liu, |
| 141 | lfi - poffset); |
| 142 | memcpy(nameptr + lfi - poffset, |
| 143 | fibh.ebh->b_data, poffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | } |
| 146 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 147 | if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) { |
| 148 | if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | continue; |
| 150 | } |
| 151 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 152 | if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) { |
| 153 | if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE)) |
| 154 | continue; |
| 155 | } |
| 156 | |
| 157 | if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) { |
Josef Sipek | 5096e93 | 2006-12-08 02:37:44 -0800 | [diff] [blame] | 158 | iblock = parent_ino(filp->f_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | flen = 2; |
| 160 | memcpy(fname, "..", flen); |
| 161 | dt_type = DT_DIR; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 162 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | kernel_lb_addr tloc = lelb_to_cpu(cfi.icb.extLocation); |
| 164 | |
| 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; |
| 168 | } |
| 169 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 170 | if (flen) { |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 171 | if (filldir(dirent, fname, flen, filp->f_pos, iblock, dt_type) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 173 | brelse(fibh.ebh); |
| 174 | brelse(fibh.sbh); |
| 175 | brelse(epos.bh); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 176 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | } |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 179 | } /* end while */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | filp->f_pos = nf_pos + 1; |
| 182 | |
| 183 | if (fibh.sbh != fibh.ebh) |
Jan Kara | 3bf25cb | 2007-05-08 00:35:16 -0700 | [diff] [blame] | 184 | brelse(fibh.ebh); |
| 185 | brelse(fibh.sbh); |
| 186 | brelse(epos.bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
| 188 | return 0; |
| 189 | } |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame^] | 190 | |
| 191 | /* |
| 192 | * udf_readdir |
| 193 | * |
| 194 | * PURPOSE |
| 195 | * Read a directory entry. |
| 196 | * |
| 197 | * DESCRIPTION |
| 198 | * Optional - sys_getdents() will return -ENOTDIR if this routine is not |
| 199 | * available. |
| 200 | * |
| 201 | * Refer to sys_getdents() in fs/readdir.c |
| 202 | * sys_getdents() -> . |
| 203 | * |
| 204 | * PRE-CONDITIONS |
| 205 | * filp Pointer to directory file. |
| 206 | * buf Pointer to directory entry buffer. |
| 207 | * filldir Pointer to filldir function. |
| 208 | * |
| 209 | * POST-CONDITIONS |
| 210 | * <return> >=0 on success. |
| 211 | * |
| 212 | * HISTORY |
| 213 | * July 1, 1997 - Andrew E. Mileski |
| 214 | * Written, tested, and released. |
| 215 | */ |
| 216 | |
| 217 | static int udf_readdir(struct file *filp, void *dirent, filldir_t filldir) |
| 218 | { |
| 219 | struct inode *dir = filp->f_path.dentry->d_inode; |
| 220 | int result; |
| 221 | |
| 222 | lock_kernel(); |
| 223 | |
| 224 | if (filp->f_pos == 0) { |
| 225 | if (filldir(dirent, ".", 1, filp->f_pos, dir->i_ino, DT_DIR) < 0) { |
| 226 | unlock_kernel(); |
| 227 | return 0; |
| 228 | } |
| 229 | filp->f_pos++; |
| 230 | } |
| 231 | |
| 232 | result = do_udf_readdir(dir, filp, filldir, dirent); |
| 233 | unlock_kernel(); |
| 234 | return result; |
| 235 | } |
| 236 | |
| 237 | /* readdir and lookup functions */ |
| 238 | const struct file_operations udf_dir_operations = { |
| 239 | .read = generic_read_dir, |
| 240 | .readdir = udf_readdir, |
| 241 | .ioctl = udf_ioctl, |
| 242 | .fsync = udf_fsync_file, |
| 243 | }; |