blob: d0f92a52e3babdc689354df59ec0c6787886f922 [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 Kara5875f872021-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 -040039
40static int udf_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Al Viro5add2ee2013-05-16 01:09:37 -040042 struct inode *dir = file_inode(file);
43 struct udf_inode_info *iinfo = UDF_I(dir);
Jan Karab80697c2008-03-04 14:14:05 +010044 struct udf_fileident_bh fibh = { .sbh = NULL, .ebh = NULL};
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070045 struct fileIdentDesc *fi = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct fileIdentDesc cfi;
Steve Magnanib490bdd2017-10-12 08:48:40 -050047 udf_pblk_t block, iblock;
Jan Kara5875f872021-11-04 15:22:35 +010048 loff_t nf_pos, emit_pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 int flen;
Jan Kara066b9cd2016-01-26 21:07:30 +010050 unsigned char *fname = NULL, *copy_name = NULL;
Al Viro391e8bb2010-01-31 21:28:48 -050051 unsigned char *nameptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 uint16_t liu;
53 uint8_t lfi;
Jan Karae28d80f2008-02-13 15:03:33 -080054 loff_t size = udf_ext0_offset(dir) + dir->i_size;
Jan Karaff116fc2007-05-08 00:35:14 -070055 struct buffer_head *tmp, *bha[16];
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020056 struct kernel_lb_addr eloc;
Jan Karaff116fc2007-05-08 00:35:14 -070057 uint32_t elen;
Jan Kara60448b12007-05-08 00:35:13 -070058 sector_t offset;
Jan Karab80697c2008-03-04 14:14:05 +010059 int i, num, ret = 0;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -070060 struct extent_position epos = { NULL, 0, {0, 0} };
Jan Kara3ee30392014-12-18 22:49:12 +010061 struct super_block *sb = dir->i_sb;
Jan Kara5875f872021-11-04 15:22:35 +010062 bool pos_valid = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Al Viro5add2ee2013-05-16 01:09:37 -040064 if (ctx->pos == 0) {
65 if (!dir_emit_dot(file, ctx))
66 return 0;
67 ctx->pos = 1;
68 }
69 nf_pos = (ctx->pos - 1) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (nf_pos >= size)
Jan Karab80697c2008-03-04 14:14:05 +010071 goto out;
72
Jan Kara5875f872021-11-04 15:22:35 +010073 /*
74 * Something changed since last readdir (either lseek was called or dir
75 * changed)? We need to verify the position correctly points at the
76 * beginning of some dir entry so that the directory parsing code does
77 * not get confused. Since UDF does not have any reliable way of
78 * identifying beginning of dir entry (names are under user control),
79 * we need to scan the directory from the beginning.
80 */
81 if (!inode_eq_iversion(dir, file->f_version)) {
82 emit_pos = nf_pos;
83 nf_pos = 0;
84 } else {
85 pos_valid = true;
86 }
87
Jan Karab80697c2008-03-04 14:14:05 +010088 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
89 if (!fname) {
90 ret = -ENOMEM;
91 goto out;
92 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (nf_pos == 0)
Jan Karae28d80f2008-02-13 15:03:33 -080095 nf_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Jan Kara3ee30392014-12-18 22:49:12 +010097 fibh.soffset = fibh.eoffset = nf_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +010098 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +010099 if (inode_bmap(dir, nf_pos >> sb->s_blocksize_bits,
Jan Karab80697c2008-03-04 14:14:05 +0100100 &epos, &eloc, &elen, &offset)
101 != (EXT_RECORDED_ALLOCATED >> 30)) {
102 ret = -ENOENT;
103 goto out;
104 }
Jan Kara3ee30392014-12-18 22:49:12 +0100105 block = udf_get_lb_pblock(sb, &eloc, offset);
106 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800107 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200108 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -0800109 else if (iinfo->i_alloc_type ==
Marcin Slusarzc0b34432008-02-08 04:20:42 -0800110 ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +0200111 epos.offset -= sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700112 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 offset = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Jan Kara3ee30392014-12-18 22:49:12 +0100116 if (!(fibh.sbh = fibh.ebh = udf_tread(sb, block))) {
Jan Karab80697c2008-03-04 14:14:05 +0100117 ret = -EIO;
118 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700120
Jan Kara3ee30392014-12-18 22:49:12 +0100121 if (!(offset & ((16 >> (sb->s_blocksize_bits - 9)) - 1))) {
122 i = 16 >> (sb->s_blocksize_bits - 9);
123 if (i + offset > (elen >> sb->s_blocksize_bits))
124 i = (elen >> sb->s_blocksize_bits) - offset;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700125 for (num = 0; i > 0; i--) {
Jan Kara3ee30392014-12-18 22:49:12 +0100126 block = udf_get_lb_pblock(sb, &eloc, offset + i);
127 tmp = udf_tgetblk(sb, block);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700128 if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 bha[num++] = tmp;
130 else
131 brelse(tmp);
132 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700133 if (num) {
Christoph Hellwig70246282016-07-19 11:28:41 +0200134 ll_rw_block(REQ_OP_READ, REQ_RAHEAD, num, bha);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700135 for (i = 0; i < num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 brelse(bha[i]);
137 }
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700141 while (nf_pos < size) {
Al Viro5add2ee2013-05-16 01:09:37 -0400142 struct kernel_lb_addr tloc;
Jan Kara5875f872021-11-04 15:22:35 +0100143 loff_t cur_pos = nf_pos;
Al Viro5add2ee2013-05-16 01:09:37 -0400144
Jan Kara5875f872021-11-04 15:22:35 +0100145 /* Update file position only if we got past the current one */
146 if (nf_pos >= emit_pos) {
147 ctx->pos = (nf_pos >> 2) + 1;
148 pos_valid = true;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700151 fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
152 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100153 if (!fi)
154 goto out;
Jan Kara5875f872021-11-04 15:22:35 +0100155 /* Still not at offset where user asked us to read from? */
156 if (cur_pos < emit_pos)
157 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 liu = le16_to_cpu(cfi.lengthOfImpUse);
160 lfi = cfi.lengthFileIdent;
161
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700162 if (fibh.sbh == fibh.ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 nameptr = fi->fileIdent + liu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700164 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int poffset; /* Unpaded ending offset */
166
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700167 poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700169 if (poffset >= lfi) {
170 nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
171 } else {
Jan Kara066b9cd2016-01-26 21:07:30 +0100172 if (!copy_name) {
173 copy_name = kmalloc(UDF_NAME_LEN,
174 GFP_NOFS);
175 if (!copy_name) {
176 ret = -ENOMEM;
177 goto out;
178 }
179 }
180 nameptr = copy_name;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700181 memcpy(nameptr, fi->fileIdent + liu,
182 lfi - poffset);
183 memcpy(nameptr + lfi - poffset,
184 fibh.ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 }
187
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700188 if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100189 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 continue;
191 }
192
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700193 if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100194 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700195 continue;
196 }
197
198 if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
Al Viro5add2ee2013-05-16 01:09:37 -0400199 if (!dir_emit_dotdot(file, ctx))
200 goto out;
201 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
Jan Kara3ee30392014-12-18 22:49:12 +0100204 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Fabian Frederick6ce63832015-04-08 21:23:57 +0200205 if (flen < 0)
Al Viro5add2ee2013-05-16 01:09:37 -0400206 continue;
207
208 tloc = lelb_to_cpu(cfi.icb.extLocation);
Jan Kara3ee30392014-12-18 22:49:12 +0100209 iblock = udf_get_lb_pblock(sb, &tloc, 0);
Al Viro5add2ee2013-05-16 01:09:37 -0400210 if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN))
Jan Karab80697c2008-03-04 14:14:05 +0100211 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700212 } /* end while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Al Viro5add2ee2013-05-16 01:09:37 -0400214 ctx->pos = (nf_pos >> 2) + 1;
Jan Kara5875f872021-11-04 15:22:35 +0100215 pos_valid = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Jan Karab80697c2008-03-04 14:14:05 +0100217out:
Jan Kara5875f872021-11-04 15:22:35 +0100218 if (pos_valid)
219 file->f_version = inode_query_iversion(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700221 brelse(fibh.ebh);
222 brelse(fibh.sbh);
223 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100224 kfree(fname);
Jan Kara066b9cd2016-01-26 21:07:30 +0100225 kfree(copy_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Jan Karab80697c2008-03-04 14:14:05 +0100227 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800229
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800230/* readdir and lookup functions */
231const struct file_operations udf_dir_operations = {
jan Blunckca572722010-05-26 14:44:53 -0700232 .llseek = generic_file_llseek,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800233 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -0400234 .iterate_shared = udf_readdir,
John Kacur2f07a882010-05-05 15:15:39 +0200235 .unlocked_ioctl = udf_ioctl,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200236 .fsync = generic_file_fsync,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800237};