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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/buffer_head.h> |
| 34 | |
| 35 | #include "udf_i.h" |
| 36 | #include "udf_sb.h" |
| 37 | |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 38 | |
| 39 | static int udf_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | { |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 41 | struct inode *dir = file_inode(file); |
| 42 | struct udf_inode_info *iinfo = UDF_I(dir); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 43 | struct udf_fileident_bh fibh = { .sbh = NULL, .ebh = NULL}; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 44 | struct fileIdentDesc *fi = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct fileIdentDesc cfi; |
| 46 | int block, iblock; |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 47 | loff_t nf_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | int flen; |
Al Viro | 391e8bb | 2010-01-31 21:28:48 -0500 | [diff] [blame] | 49 | unsigned char *fname = NULL; |
| 50 | unsigned char *nameptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | uint16_t liu; |
| 52 | uint8_t lfi; |
Jan Kara | e28d80f | 2008-02-13 15:03:33 -0800 | [diff] [blame] | 53 | loff_t size = udf_ext0_offset(dir) + dir->i_size; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 54 | struct buffer_head *tmp, *bha[16]; |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 55 | struct kernel_lb_addr eloc; |
Jan Kara | ff116fc | 2007-05-08 00:35:14 -0700 | [diff] [blame] | 56 | uint32_t elen; |
Jan Kara | 60448b1 | 2007-05-08 00:35:13 -0700 | [diff] [blame] | 57 | sector_t offset; |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 58 | int i, num, ret = 0; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 59 | struct extent_position epos = { NULL, 0, {0, 0} }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 61 | if (ctx->pos == 0) { |
| 62 | if (!dir_emit_dot(file, ctx)) |
| 63 | return 0; |
| 64 | ctx->pos = 1; |
| 65 | } |
| 66 | nf_pos = (ctx->pos - 1) << 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | if (nf_pos >= size) |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 68 | goto out; |
| 69 | |
| 70 | fname = kmalloc(UDF_NAME_LEN, GFP_NOFS); |
| 71 | if (!fname) { |
| 72 | ret = -ENOMEM; |
| 73 | goto out; |
| 74 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | if (nf_pos == 0) |
Jan Kara | e28d80f | 2008-02-13 15:03:33 -0800 | [diff] [blame] | 77 | nf_pos = udf_ext0_offset(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Jan Kara | e28d80f | 2008-02-13 15:03:33 -0800 | [diff] [blame] | 79 | fibh.soffset = fibh.eoffset = nf_pos & (dir->i_sb->s_blocksize - 1); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 80 | if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) { |
| 81 | if (inode_bmap(dir, nf_pos >> dir->i_sb->s_blocksize_bits, |
| 82 | &epos, &eloc, &elen, &offset) |
| 83 | != (EXT_RECORDED_ALLOCATED >> 30)) { |
| 84 | ret = -ENOENT; |
| 85 | goto out; |
| 86 | } |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 87 | block = udf_get_lb_pblock(dir->i_sb, &eloc, offset); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 88 | if ((++offset << dir->i_sb->s_blocksize_bits) < elen) { |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 89 | if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 90 | epos.offset -= sizeof(struct short_ad); |
Marcin Slusarz | 48d6d8f | 2008-02-08 04:20:44 -0800 | [diff] [blame] | 91 | else if (iinfo->i_alloc_type == |
Marcin Slusarz | c0b3443 | 2008-02-08 04:20:42 -0800 | [diff] [blame] | 92 | ICBTAG_FLAG_AD_LONG) |
Pekka Enberg | 5ca4e4b | 2008-10-15 12:28:03 +0200 | [diff] [blame] | 93 | epos.offset -= sizeof(struct long_ad); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 94 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | offset = 0; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 96 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 98 | if (!(fibh.sbh = fibh.ebh = udf_tread(dir->i_sb, block))) { |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 99 | ret = -EIO; |
| 100 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 102 | |
| 103 | if (!(offset & ((16 >> (dir->i_sb->s_blocksize_bits - 9)) - 1))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | i = 16 >> (dir->i_sb->s_blocksize_bits - 9); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 105 | if (i + offset > (elen >> dir->i_sb->s_blocksize_bits)) |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 106 | i = (elen >> dir->i_sb->s_blocksize_bits) - offset; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 107 | for (num = 0; i > 0; i--) { |
Pekka Enberg | 97e961f | 2008-10-15 12:29:03 +0200 | [diff] [blame] | 108 | block = udf_get_lb_pblock(dir->i_sb, &eloc, offset + i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | tmp = udf_tgetblk(dir->i_sb, block); |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 110 | if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | bha[num++] = tmp; |
| 112 | else |
| 113 | brelse(tmp); |
| 114 | } |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 115 | if (num) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | ll_rw_block(READA, num, bha); |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 117 | for (i = 0; i < num; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | brelse(bha[i]); |
| 119 | } |
| 120 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 123 | while (nf_pos < size) { |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 124 | struct kernel_lb_addr tloc; |
| 125 | |
| 126 | ctx->pos = (nf_pos >> 2) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 128 | fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc, |
| 129 | &elen, &offset); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 130 | if (!fi) |
| 131 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | liu = le16_to_cpu(cfi.lengthOfImpUse); |
| 134 | lfi = cfi.lengthFileIdent; |
| 135 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 136 | if (fibh.sbh == fibh.ebh) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | nameptr = fi->fileIdent + liu; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 138 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | int poffset; /* Unpaded ending offset */ |
| 140 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 141 | poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 143 | if (poffset >= lfi) { |
| 144 | nameptr = (char *)(fibh.ebh->b_data + poffset - lfi); |
| 145 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | nameptr = fname; |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 147 | memcpy(nameptr, fi->fileIdent + liu, |
| 148 | lfi - poffset); |
| 149 | memcpy(nameptr + lfi - poffset, |
| 150 | fibh.ebh->b_data, poffset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 154 | if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) { |
| 155 | if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNDELETE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | continue; |
| 157 | } |
| 158 | |
Cyrill Gorcunov | cb00ea3 | 2007-07-19 01:47:43 -0700 | [diff] [blame] | 159 | if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) { |
| 160 | if (!UDF_QUERY_FLAG(dir->i_sb, UDF_FLAG_UNHIDE)) |
| 161 | continue; |
| 162 | } |
| 163 | |
| 164 | if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) { |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 165 | if (!dir_emit_dotdot(file, ctx)) |
| 166 | goto out; |
| 167 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 170 | flen = udf_get_filename(dir->i_sb, nameptr, fname, lfi); |
| 171 | if (!flen) |
| 172 | continue; |
| 173 | |
| 174 | tloc = lelb_to_cpu(cfi.icb.extLocation); |
| 175 | iblock = udf_get_lb_pblock(dir->i_sb, &tloc, 0); |
| 176 | if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN)) |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 177 | goto out; |
Cyrill Gorcunov | 28de794 | 2007-07-21 04:37:18 -0700 | [diff] [blame] | 178 | } /* end while */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 180 | ctx->pos = (nf_pos >> 2) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 182 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 187 | kfree(fname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Jan Kara | b80697c | 2008-03-04 14:14:05 +0100 | [diff] [blame] | 189 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame] | 191 | |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame] | 192 | /* readdir and lookup functions */ |
| 193 | const struct file_operations udf_dir_operations = { |
jan Blunck | ca57272 | 2010-05-26 14:44:53 -0700 | [diff] [blame] | 194 | .llseek = generic_file_llseek, |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame] | 195 | .read = generic_read_dir, |
Al Viro | 5add2ee | 2013-05-16 01:09:37 -0400 | [diff] [blame] | 196 | .iterate = udf_readdir, |
John Kacur | 2f07a88 | 2010-05-05 15:15:39 +0200 | [diff] [blame] | 197 | .unlocked_ioctl = udf_ioctl, |
Christoph Hellwig | 1b061d9 | 2010-05-26 17:53:41 +0200 | [diff] [blame] | 198 | .fsync = generic_file_fsync, |
Marcin Slusarz | 934c5e6 | 2008-02-08 04:20:47 -0800 | [diff] [blame] | 199 | }; |