blob: 05e90edd199214fd0507b5e5b79a3b60ea8a49d3 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/buffer_head.h>
34
35#include "udf_i.h"
36#include "udf_sb.h"
37
Al Viro5add2ee2013-05-16 01:09:37 -040038
39static 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;
46 int block, iblock;
Al Viro5add2ee2013-05-16 01:09:37 -040047 loff_t nf_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int flen;
Al Viro391e8bb2010-01-31 21:28:48 -050049 unsigned char *fname = NULL;
50 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Al Viro5add2ee2013-05-16 01:09:37 -040062 if (ctx->pos == 0) {
63 if (!dir_emit_dot(file, ctx))
64 return 0;
65 ctx->pos = 1;
66 }
67 nf_pos = (ctx->pos - 1) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (nf_pos >= size)
Jan Karab80697c2008-03-04 14:14:05 +010069 goto out;
70
71 fname = kmalloc(UDF_NAME_LEN, GFP_NOFS);
72 if (!fname) {
73 ret = -ENOMEM;
74 goto out;
75 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 if (nf_pos == 0)
Jan Karae28d80f2008-02-13 15:03:33 -080078 nf_pos = udf_ext0_offset(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Jan Kara3ee30392014-12-18 22:49:12 +010080 fibh.soffset = fibh.eoffset = nf_pos & (sb->s_blocksize - 1);
Jan Karab80697c2008-03-04 14:14:05 +010081 if (iinfo->i_alloc_type != ICBTAG_FLAG_AD_IN_ICB) {
Jan Kara3ee30392014-12-18 22:49:12 +010082 if (inode_bmap(dir, nf_pos >> sb->s_blocksize_bits,
Jan Karab80697c2008-03-04 14:14:05 +010083 &epos, &eloc, &elen, &offset)
84 != (EXT_RECORDED_ALLOCATED >> 30)) {
85 ret = -ENOENT;
86 goto out;
87 }
Jan Kara3ee30392014-12-18 22:49:12 +010088 block = udf_get_lb_pblock(sb, &eloc, offset);
89 if ((++offset << sb->s_blocksize_bits) < elen) {
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080090 if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_SHORT)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020091 epos.offset -= sizeof(struct short_ad);
Marcin Slusarz48d6d8f2008-02-08 04:20:44 -080092 else if (iinfo->i_alloc_type ==
Marcin Slusarzc0b34432008-02-08 04:20:42 -080093 ICBTAG_FLAG_AD_LONG)
Pekka Enberg5ca4e4b2008-10-15 12:28:03 +020094 epos.offset -= sizeof(struct long_ad);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070095 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 offset = 0;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -070097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Jan Kara3ee30392014-12-18 22:49:12 +010099 if (!(fibh.sbh = fibh.ebh = udf_tread(sb, block))) {
Jan Karab80697c2008-03-04 14:14:05 +0100100 ret = -EIO;
101 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700103
Jan Kara3ee30392014-12-18 22:49:12 +0100104 if (!(offset & ((16 >> (sb->s_blocksize_bits - 9)) - 1))) {
105 i = 16 >> (sb->s_blocksize_bits - 9);
106 if (i + offset > (elen >> sb->s_blocksize_bits))
107 i = (elen >> sb->s_blocksize_bits) - offset;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700108 for (num = 0; i > 0; i--) {
Jan Kara3ee30392014-12-18 22:49:12 +0100109 block = udf_get_lb_pblock(sb, &eloc, offset + i);
110 tmp = udf_tgetblk(sb, block);
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700111 if (tmp && !buffer_uptodate(tmp) && !buffer_locked(tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 bha[num++] = tmp;
113 else
114 brelse(tmp);
115 }
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700116 if (num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 ll_rw_block(READA, num, bha);
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700118 for (i = 0; i < num; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 brelse(bha[i]);
120 }
121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700124 while (nf_pos < size) {
Al Viro5add2ee2013-05-16 01:09:37 -0400125 struct kernel_lb_addr tloc;
126
127 ctx->pos = (nf_pos >> 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700129 fi = udf_fileident_read(dir, &nf_pos, &fibh, &cfi, &epos, &eloc,
130 &elen, &offset);
Jan Karab80697c2008-03-04 14:14:05 +0100131 if (!fi)
132 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 liu = le16_to_cpu(cfi.lengthOfImpUse);
135 lfi = cfi.lengthFileIdent;
136
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700137 if (fibh.sbh == fibh.ebh) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 nameptr = fi->fileIdent + liu;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700139 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int poffset; /* Unpaded ending offset */
141
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700142 poffset = fibh.soffset + sizeof(struct fileIdentDesc) + liu + lfi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700144 if (poffset >= lfi) {
145 nameptr = (char *)(fibh.ebh->b_data + poffset - lfi);
146 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 nameptr = fname;
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700148 memcpy(nameptr, fi->fileIdent + liu,
149 lfi - poffset);
150 memcpy(nameptr + lfi - poffset,
151 fibh.ebh->b_data, poffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153 }
154
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700155 if ((cfi.fileCharacteristics & FID_FILE_CHAR_DELETED) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100156 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNDELETE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 continue;
158 }
159
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700160 if ((cfi.fileCharacteristics & FID_FILE_CHAR_HIDDEN) != 0) {
Jan Kara3ee30392014-12-18 22:49:12 +0100161 if (!UDF_QUERY_FLAG(sb, UDF_FLAG_UNHIDE))
Cyrill Gorcunovcb00ea32007-07-19 01:47:43 -0700162 continue;
163 }
164
165 if (cfi.fileCharacteristics & FID_FILE_CHAR_PARENT) {
Al Viro5add2ee2013-05-16 01:09:37 -0400166 if (!dir_emit_dotdot(file, ctx))
167 goto out;
168 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
Jan Kara3ee30392014-12-18 22:49:12 +0100171 flen = udf_get_filename(sb, nameptr, lfi, fname, UDF_NAME_LEN);
Al Viro5add2ee2013-05-16 01:09:37 -0400172 if (!flen)
173 continue;
174
175 tloc = lelb_to_cpu(cfi.icb.extLocation);
Jan Kara3ee30392014-12-18 22:49:12 +0100176 iblock = udf_get_lb_pblock(sb, &tloc, 0);
Al Viro5add2ee2013-05-16 01:09:37 -0400177 if (!dir_emit(ctx, fname, flen, iblock, DT_UNKNOWN))
Jan Karab80697c2008-03-04 14:14:05 +0100178 goto out;
Cyrill Gorcunov28de7942007-07-21 04:37:18 -0700179 } /* end while */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Al Viro5add2ee2013-05-16 01:09:37 -0400181 ctx->pos = (nf_pos >> 2) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jan Karab80697c2008-03-04 14:14:05 +0100183out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (fibh.sbh != fibh.ebh)
Jan Kara3bf25cb2007-05-08 00:35:16 -0700185 brelse(fibh.ebh);
186 brelse(fibh.sbh);
187 brelse(epos.bh);
Jan Karab80697c2008-03-04 14:14:05 +0100188 kfree(fname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Jan Karab80697c2008-03-04 14:14:05 +0100190 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800192
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800193/* readdir and lookup functions */
194const struct file_operations udf_dir_operations = {
jan Blunckca572722010-05-26 14:44:53 -0700195 .llseek = generic_file_llseek,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800196 .read = generic_read_dir,
Al Viro5add2ee2013-05-16 01:09:37 -0400197 .iterate = udf_readdir,
John Kacur2f07a882010-05-05 15:15:39 +0200198 .unlocked_ioctl = udf_ioctl,
Christoph Hellwig1b061d92010-05-26 17:53:41 +0200199 .fsync = generic_file_fsync,
Marcin Slusarz934c5e62008-02-08 04:20:47 -0800200};