blob: 42e3e551fa4c34f7d636b40524a50cb55dc8fad6 [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>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060033#include <linux/bio.h>
Jan Karaa48fc692021-11-04 15:22:35 +010034#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include "udf_i.h"
37#include "udf_sb.h"
38
Al Viro5add2ee2013-05-16 01:09:37 -040039static int udf_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Al Viro5add2ee2013-05-16 01:09:37 -040041 struct inode *dir = file_inode(file);
42 struct udf_inode_info *iinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +010043 struct udf_fileident_bh fibh = { .sbh = NULL, .ebh = NULL};
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070044 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct fileIdentDesc cfi;
Steve Magnanib490bdd2017-10-12 08:48:40 -050046 udf_pblk_t block, iblock;
Jan Karaa48fc692021-11-04 15:22:35 +010047 loff_t nf_pos, emit_pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int flen;
Jan Kara066b9cd2016-01-26 21:07:30 +010049 unsigned char *fname = NULL, *copy_name = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -050050 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 uint16_t liu;
52 uint8_t lfi;
Jan Karae28d80f2008-02-13 15:03:33 -080053 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -070054 struct buffer_head *tmp, *bha[16];
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020055 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -070056 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -070057 sector_t offset;
Jan Karab80697c2008-03-04 14:14:05 +010058 int i, num, ret = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070059 struct extent_position epos = { NULL, 0, {0, 0} };
Jan Kara3ee30392014-12-18 22:49:12 +010060 struct super_block *sb = dir->i_sb;
Jan Karaa48fc692021-11-04 15:22:35 +010061 bool pos_valid = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Al Viro5add2ee2013-05-16 01:09:37 -040063 if (ctx->pos == 0) {
64 if (!dir_emit_dot(file, ctx))
65 return 0;
66 ctx->pos = 1;
67 }
68 nf_pos = (ctx->pos - 1) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (nf_pos >= size)
Jan Karab80697c2008-03-04 14:14:05 +010070 goto out;
71
Jan Karaa48fc692021-11-04 15:22:35 +010072 /*
73 * Something changed since last readdir (either lseek was called or dir
74 * changed)? We need to verify the position correctly points at the
75 * beginning of some dir entry so that the directory parsing code does
76 * not get confused. Since UDF does not have any reliable way of
77 * identifying beginning of dir entry (names are under user control),
78 * we need to scan the directory from the beginning.
79 */
80 if (!inode_eq_iversion(dir, file->f_version)) {
81 emit_pos = nf_pos;
82 nf_pos = 0;
83 } else {
84 pos_valid = true;
85 }
86
Jan Karab80697c2008-03-04 14:14:05 +010087 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
88 if (!fname) {
89 ret = -ENOMEM;
90 goto out;
91 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 if (nf_pos == 0)
Jan Karae28d80f2008-02-13 15:03:33 -080094 nf_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Jan Kara3ee30392014-12-18 22:49:12 +010096 fibh.soffset = fibh.eoffset = nf_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +010097 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +010098 if (inode_bmap(dir, nf_pos >> sb->s_blocksize_bits,
Jan Karab80697c2008-03-04 14:14:05 +010099 &epos, &eloc, &elen, &offset)
100 != (EXT_RECORDED_ALLOCATED >> 30)) {
101 ret = -ENOENT;
102 goto out;
103 }
Jan Kara3ee30392014-12-18 22:49:12 +0100104 block = udf_get_lb_pblock(sb, &eloc, offset);
105 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800106 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200107 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800108 else if (iinfo->i_alloc_type ==
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800109 ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200110 epos.offset -= sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700111 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 offset = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Jan Kara3ee30392014-12-18 22:49:12 +0100115 if (!(fibh.sbh = fibh.ebh = udf_tread(sb, block))) {
Jan Karab80697c2008-03-04 14:14:05 +0100116 ret = -EIO;
117 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700119
Jan Kara3ee30392014-12-18 22:49:12 +0100120 if (!(offset & ((16 >> (sb->s_blocksize_bits - 9)) - 1))) {
121 i = 16 >> (sb->s_blocksize_bits - 9);
122 if (i + offset > (elen >> sb->s_blocksize_bits))
123 i = (elen >> sb->s_blocksize_bits) - offset;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700124 for (num = 0; i > 0; i--) {
Jan Kara3ee30392014-12-18 22:49:12 +0100125 block = udf_get_lb_pblock(sb, &eloc, offset + i);
126 tmp = udf_tgetblk(sb, block);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700127 if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 bha[num++] = tmp;
129 else
130 brelse(tmp);
131 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700132 if (num) {
Christoph Hellwig70246282016-07-19 11:28:41 +0200133 ll_rw_block(REQ_OP_READ, REQ_RAHEAD, num, bha);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700134 for (i = 0; i < num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 brelse(bha[i]);
136 }
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700140 while (nf_pos < size) {
Al Viro5add2ee2013-05-16 01:09:37 -0400141 struct kernel_lb_addr tloc;
Jan Karaa48fc692021-11-04 15:22:35 +0100142 loff_t cur_pos = nf_pos;
Al Viro5add2ee2013-05-16 01:09:37 -0400143
Jan Karaa48fc692021-11-04 15:22:35 +0100144 /* Update file position only if we got past the current one */
145 if (nf_pos >= emit_pos) {
146 ctx->pos = (nf_pos >> 2) + 1;
147 pos_valid = true;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700150 fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
151 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100152 if (!fi)
153 goto out;
Jan Karaa48fc692021-11-04 15:22:35 +0100154 /* Still not at offset where user asked us to read from? */
155 if (cur_pos < emit_pos)
156 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 liu = le16_to_cpu(cfi.lengthOfImpUse);
159 lfi = cfi.lengthFileIdent;
160
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700161 if (fibh.sbh == fibh.ebh) {
Jan Kara979a6e22021-05-03 11:54:24 +0200162 nameptr = udf_get_fi_ident(fi);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700163 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int poffset; /* Unpaded ending offset */
165
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700166 poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700168 if (poffset >= lfi) {
169 nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
170 } else {
Jan Kara066b9cd2016-01-26 21:07:30 +0100171 if (!copy_name) {
172 copy_name = kmalloc(UDF_NAME_LEN,
173 GFP_NOFS);
174 if (!copy_name) {
175 ret = -ENOMEM;
176 goto out;
177 }
178 }
179 nameptr = copy_name;
Jan Kara979a6e22021-05-03 11:54:24 +0200180 memcpy(nameptr, udf_get_fi_ident(fi),
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700181 lfi - poffset);
182 memcpy(nameptr + lfi - poffset,
183 fibh.ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185 }
186
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700187 if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100188 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 continue;
190 }
191
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700192 if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100193 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700194 continue;
195 }
196
197 if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
Al Viro5add2ee2013-05-16 01:09:37 -0400198 if (!dir_emit_dotdot(file, ctx))
199 goto out;
200 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
Jan Kara3ee30392014-12-18 22:49:12 +0100203 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick6ce63832015-04-08 21:23:57 +0200204 if (flen < 0)
Al Viro5add2ee2013-05-16 01:09:37 -0400205 continue;
206
207 tloc = lelb_to_cpu(cfi.icb.extLocation);
Jan Kara3ee30392014-12-18 22:49:12 +0100208 iblock = udf_get_lb_pblock(sb, &tloc, 0);
Al Viro5add2ee2013-05-16 01:09:37 -0400209 if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN))
Jan Karab80697c2008-03-04 14:14:05 +0100210 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700211 } /* end while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Al Viro5add2ee2013-05-16 01:09:37 -0400213 ctx->pos = (nf_pos >> 2) + 1;
Jan Karaa48fc692021-11-04 15:22:35 +0100214 pos_valid = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jan Karab80697c2008-03-04 14:14:05 +0100216out:
Jan Karaa48fc692021-11-04 15:22:35 +0100217 if (pos_valid)
218 file->f_version = inode_query_iversion(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700220 brelse(fibh.ebh);
221 brelse(fibh.sbh);
222 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100223 kfree(fname);
Jan Kara066b9cd2016-01-26 21:07:30 +0100224 kfree(copy_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jan Karab80697c2008-03-04 14:14:05 +0100226 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800228
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800229/* readdir and lookup functions */
230const struct file_operations udf_dir_operations = {
jan Blunckca572722010-05-26 14:44:53 -0700231 .llseek = generic_file_llseek,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800232 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -0400233 .iterate_shared = udf_readdir,
John Kacur2f07a882010-05-05 15:15:39 +0200234 .unlocked_ioctl = udf_ioctl,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200235 .fsync = generic_file_fsync,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800236};