blob: eb2f8273e6f15e4575d7985024bd97a0f8e0de3a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/isofs/dir.c
4 *
5 * (C) 1992, 1993, 1994 Eric Youngdale Modified for ISO 9660 filesystem.
6 *
7 * (C) 1991 Linus Torvalds - minix filesystem
8 *
9 * Steve Beynon : Missing last directory entries fixed
10 * (stephen@askone.demon.co.uk) : 21st June 1996
Dave Jonesc3ed85a2007-07-15 23:40:03 -070011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * isofs directory handling functions
13 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Al Viro94f2f7152005-04-25 18:32:12 -070015#include "isofs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Linus Torvalds1da177e2005-04-16 15:20:36 -070017int isofs_name_translate(struct iso_directory_record *de, char *new, struct inode *inode)
18{
19 char * old = de->name;
20 int len = de->name_len[0];
21 int i;
Dave Jonesc3ed85a2007-07-15 23:40:03 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 for (i = 0; i < len; i++) {
24 unsigned char c = old[i];
25 if (!c)
26 break;
27
28 if (c >= 'A' && c <= 'Z')
29 c |= 0x20; /* lower case */
30
31 /* Drop trailing '.;1' (ISO 9660:1988 7.5.1 requires period) */
32 if (c == '.' && i == len - 3 && old[i + 1] == ';' && old[i + 2] == '1')
33 break;
34
35 /* Drop trailing ';1' */
36 if (c == ';' && i == len - 2 && old[i + 1] == '1')
37 break;
38
39 /* Convert remaining ';' to '.' */
40 /* Also '/' to '.' (broken Acorn-generated ISO9660 images) */
41 if (c == ';' || c == '/')
42 c = '.';
43
44 new[i] = c;
45 }
46 return i;
47}
48
Matthew Wilcox3d0186b2018-06-16 17:32:07 -040049/* Acorn extensions written by Matthew Wilcox <willy@infradead.org> 1998 */
Dave Jonesc3ed85a2007-07-15 23:40:03 -070050int get_acorn_filename(struct iso_directory_record *de,
51 char *retname, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 int std;
Dave Jonesc3ed85a2007-07-15 23:40:03 -070054 unsigned char *chr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 int retnamlen = isofs_name_translate(de, retname, inode);
Dave Jonesc3ed85a2007-07-15 23:40:03 -070056
57 if (retnamlen == 0)
58 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 std = sizeof(struct iso_directory_record) + de->name_len[0];
Dave Jonesc3ed85a2007-07-15 23:40:03 -070060 if (std & 1)
61 std++;
Al Viroe17a21d2016-05-05 10:48:47 -040062 if (de->length[0] - std != 32)
Dave Jonesc3ed85a2007-07-15 23:40:03 -070063 return retnamlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 chr = ((unsigned char *) de) + std;
Dave Jonesc3ed85a2007-07-15 23:40:03 -070065 if (strncmp(chr, "ARCHIMEDES", 10))
66 return retnamlen;
67 if ((*retname == '_') && ((chr[19] & 1) == 1))
68 *retname = '!';
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (((de->flags[0] & 2) == 0) && (chr[13] == 0xff)
Dave Jonesc3ed85a2007-07-15 23:40:03 -070070 && ((chr[12] & 0xf0) == 0xf0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 retname[retnamlen] = ',';
72 sprintf(retname+retnamlen+1, "%3.3x",
73 ((chr[12] & 0xf) << 8) | chr[11]);
74 retnamlen += 4;
75 }
76 return retnamlen;
77}
78
79/*
80 * This should _really_ be cleaned up some day..
81 */
Al Virobfee7162013-05-17 21:11:59 -040082static int do_isofs_readdir(struct inode *inode, struct file *file,
83 struct dir_context *ctx,
Dave Jonesc3ed85a2007-07-15 23:40:03 -070084 char *tmpname, struct iso_directory_record *tmpde)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
87 unsigned char bufbits = ISOFS_BUFFER_BITS(inode);
88 unsigned long block, offset, block_saved, offset_saved;
89 unsigned long inode_number = 0; /* Quiet GCC */
90 struct buffer_head *bh = NULL;
91 int len;
92 int map;
93 int first_de = 1;
94 char *p = NULL; /* Quiet GCC */
95 struct iso_directory_record *de;
96 struct isofs_sb_info *sbi = ISOFS_SB(inode->i_sb);
97
Al Virobfee7162013-05-17 21:11:59 -040098 offset = ctx->pos & (bufsize - 1);
99 block = ctx->pos >> bufbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Al Virobfee7162013-05-17 21:11:59 -0400101 while (ctx->pos < inode->i_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int de_len;
103
104 if (!bh) {
105 bh = isofs_bread(inode, block);
106 if (!bh)
107 return 0;
108 }
109
110 de = (struct iso_directory_record *) (bh->b_data + offset);
111
Al Virobfee7162013-05-17 21:11:59 -0400112 de_len = *(unsigned char *)de;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700114 /*
115 * If the length byte is zero, we should move on to the next
116 * CDROM sector. If we are at the end of the directory, we
117 * kick out of the while loop.
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if (de_len == 0) {
121 brelse(bh);
122 bh = NULL;
Al Virobfee7162013-05-17 21:11:59 -0400123 ctx->pos = (ctx->pos + ISOFS_BLOCK_SIZE) & ~(ISOFS_BLOCK_SIZE - 1);
124 block = ctx->pos >> bufbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 offset = 0;
126 continue;
127 }
128
129 block_saved = block;
130 offset_saved = offset;
131 offset += de_len;
132
133 /* Make sure we have a full directory entry */
134 if (offset >= bufsize) {
135 int slop = bufsize - offset + de_len;
136 memcpy(tmpde, de, slop);
137 offset &= bufsize - 1;
138 block++;
139 brelse(bh);
140 bh = NULL;
141 if (offset) {
142 bh = isofs_bread(inode, block);
143 if (!bh)
144 return 0;
145 memcpy((void *) tmpde + slop, bh->b_data, offset);
146 }
147 de = tmpde;
148 }
Jan Kara2deb1ac2008-04-30 00:52:33 -0700149 /* Basic sanity check, whether name doesn't exceed dir entry */
150 if (de_len < de->name_len[0] +
151 sizeof(struct iso_directory_record)) {
152 printk(KERN_NOTICE "iso9660: Corrupted directory entry"
153 " in block %lu of inode %lu\n", block,
154 inode->i_ino);
Pan Bian0a6dc672021-01-18 04:04:55 -0800155 brelse(bh);
Jan Kara2deb1ac2008-04-30 00:52:33 -0700156 return -EIO;
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 if (first_de) {
160 isofs_normalize_block_and_offset(de,
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700161 &block_saved,
162 &offset_saved);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 inode_number = isofs_get_ino(block_saved,
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700164 offset_saved, bufbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 if (de->flags[-sbi->s_high_sierra] & 0x80) {
168 first_de = 0;
Al Virobfee7162013-05-17 21:11:59 -0400169 ctx->pos += de_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 continue;
171 }
172 first_de = 1;
173
174 /* Handle the case of the '.' directory */
175 if (de->name_len[0] == 1 && de->name[0] == 0) {
Al Virobfee7162013-05-17 21:11:59 -0400176 if (!dir_emit_dot(file, ctx))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 break;
Al Virobfee7162013-05-17 21:11:59 -0400178 ctx->pos += de_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 continue;
180 }
181
182 len = 0;
183
184 /* Handle the case of the '..' directory */
185 if (de->name_len[0] == 1 && de->name[0] == 1) {
Al Virobfee7162013-05-17 21:11:59 -0400186 if (!dir_emit_dotdot(file, ctx))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 break;
Al Virobfee7162013-05-17 21:11:59 -0400188 ctx->pos += de_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 continue;
190 }
191
192 /* Handle everything else. Do name translation if there
193 is no Rock Ridge NM field. */
Jeremy White9769f4e2005-06-21 17:16:53 -0700194
195 /*
196 * Do not report hidden files if so instructed, or associated
197 * files unless instructed to do so
198 */
Jan Kara5404ac82009-06-17 16:26:27 -0700199 if ((sbi->s_hide && (de->flags[-sbi->s_high_sierra] & 1)) ||
200 (!sbi->s_showassoc &&
Jeremy White9769f4e2005-06-21 17:16:53 -0700201 (de->flags[-sbi->s_high_sierra] & 4))) {
Al Virobfee7162013-05-17 21:11:59 -0400202 ctx->pos += de_len;
Jeremy White9769f4e2005-06-21 17:16:53 -0700203 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 map = 1;
207 if (sbi->s_rock) {
208 len = get_rock_ridge_filename(de, tmpname, inode);
209 if (len != 0) { /* may be -1 */
210 p = tmpname;
211 map = 0;
212 }
213 }
214 if (map) {
215#ifdef CONFIG_JOLIET
216 if (sbi->s_joliet_level) {
217 len = get_joliet_filename(de, tmpname, inode);
218 p = tmpname;
219 } else
220#endif
221 if (sbi->s_mapping == 'a') {
222 len = get_acorn_filename(de, tmpname, inode);
223 p = tmpname;
224 } else
225 if (sbi->s_mapping == 'n') {
226 len = isofs_name_translate(de, tmpname, inode);
227 p = tmpname;
228 } else {
229 p = de->name;
230 len = de->name_len[0];
231 }
232 }
233 if (len > 0) {
Al Virobfee7162013-05-17 21:11:59 -0400234 if (!dir_emit(ctx, p, len, inode_number, DT_UNKNOWN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
236 }
Al Virobfee7162013-05-17 21:11:59 -0400237 ctx->pos += de_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700239 if (bh)
240 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242}
243
244/*
245 * Handle allocation of temporary space for name translation and
246 * handling split directory entries.. The real work is done by
247 * "do_isofs_readdir()".
248 */
Al Virobfee7162013-05-17 21:11:59 -0400249static int isofs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 int result;
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700252 char *tmpname;
253 struct iso_directory_record *tmpde;
Al Virobfee7162013-05-17 21:11:59 -0400254 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 tmpname = (char *)__get_free_page(GFP_KERNEL);
257 if (tmpname == NULL)
258 return -ENOMEM;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 tmpde = (struct iso_directory_record *) (tmpname+1024);
261
Al Virobfee7162013-05-17 21:11:59 -0400262 result = do_isofs_readdir(inode, file, ctx, tmpname, tmpde);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 free_page((unsigned long) tmpname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return result;
266}
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700267
268const struct file_operations isofs_dir_operations =
269{
jan Blunckca572722010-05-26 14:44:53 -0700270 .llseek = generic_file_llseek,
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700271 .read = generic_read_dir,
Al Viroe8991082016-05-09 12:53:03 -0400272 .iterate_shared = isofs_readdir,
Dave Jonesc3ed85a2007-07-15 23:40:03 -0700273};
274
275/*
276 * directories can handle most operations...
277 */
278const struct inode_operations isofs_dir_inode_operations =
279{
280 .lookup = isofs_lookup,
281};
282
283