blob: 7e56fcc213038318779eb132d2f0de0dde552429 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/adfs/dir_f.c
4 *
5 * Copyright (C) 1997-1999 Russell King
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * E and F format directory handling
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "adfs.h"
10#include "dir_f.h"
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012/*
13 * Read an (unaligned) value of length 1..4 bytes
14 */
15static inline unsigned int adfs_readval(unsigned char *p, int len)
16{
17 unsigned int val = 0;
18
19 switch (len) {
20 case 4: val |= p[3] << 24;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060021 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 case 3: val |= p[2] << 16;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060023 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 case 2: val |= p[1] << 8;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060025 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 default: val |= p[0];
27 }
28 return val;
29}
30
31static inline void adfs_writeval(unsigned char *p, int len, unsigned int val)
32{
33 switch (len) {
34 case 4: p[3] = val >> 24;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060035 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 case 3: p[2] = val >> 16;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060037 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 case 2: p[1] = val >> 8;
Gustavo A. R. Silva74f79092019-01-14 14:30:36 -060039 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 default: p[0] = val;
41 }
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ror13(v) ((v >> 13) | (v << 19))
45
46#define dir_u8(idx) \
47 ({ int _buf = idx >> blocksize_bits; \
48 int _off = idx - (_buf << blocksize_bits);\
49 *(u8 *)(bh[_buf]->b_data + _off); \
50 })
51
52#define dir_u32(idx) \
53 ({ int _buf = idx >> blocksize_bits; \
54 int _off = idx - (_buf << blocksize_bits);\
55 *(__le32 *)(bh[_buf]->b_data + _off); \
56 })
57
58#define bufoff(_bh,_idx) \
59 ({ int _buf = _idx >> blocksize_bits; \
60 int _off = _idx - (_buf << blocksize_bits);\
Russell King016936b2019-12-09 11:10:21 +000061 (void *)(_bh[_buf]->b_data + _off); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 })
63
64/*
65 * There are some algorithms that are nice in
66 * assembler, but a bitch in C... This is one
67 * of them.
68 */
69static u8
70adfs_dir_checkbyte(const struct adfs_dir *dir)
71{
72 struct buffer_head * const *bh = dir->bh;
73 const int blocksize_bits = dir->sb->s_blocksize_bits;
74 union { __le32 *ptr32; u8 *ptr8; } ptr, end;
75 u32 dircheck = 0;
76 int last = 5 - 26;
77 int i = 0;
78
79 /*
80 * Accumulate each word up to the last whole
81 * word of the last directory entry. This
82 * can spread across several buffer heads.
83 */
84 do {
85 last += 26;
86 do {
87 dircheck = le32_to_cpu(dir_u32(i)) ^ ror13(dircheck);
88
89 i += sizeof(u32);
90 } while (i < (last & ~3));
91 } while (dir_u8(last) != 0);
92
93 /*
94 * Accumulate the last few bytes. These
95 * bytes will be within the same bh.
96 */
97 if (i != last) {
98 ptr.ptr8 = bufoff(bh, i);
99 end.ptr8 = ptr.ptr8 + last - i;
100
Harvey Harrisone5949052008-04-29 00:58:41 -0700101 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 dircheck = *ptr.ptr8++ ^ ror13(dircheck);
Harvey Harrisone5949052008-04-29 00:58:41 -0700103 } while (ptr.ptr8 < end.ptr8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105
106 /*
107 * The directory tail is in the final bh
108 * Note that contary to the RISC OS PRMs,
109 * the first few bytes are NOT included
110 * in the check. All bytes are in the
111 * same bh.
112 */
113 ptr.ptr8 = bufoff(bh, 2008);
114 end.ptr8 = ptr.ptr8 + 36;
115
116 do {
117 __le32 v = *ptr.ptr32++;
118 dircheck = le32_to_cpu(v) ^ ror13(dircheck);
119 } while (ptr.ptr32 < end.ptr32);
120
121 return (dircheck ^ (dircheck >> 8) ^ (dircheck >> 16) ^ (dircheck >> 24)) & 0xff;
122}
123
Russell King5ed70bb2019-06-04 14:49:57 +0100124/* Read and check that a directory is valid */
125static int adfs_dir_read(struct super_block *sb, u32 indaddr,
126 unsigned int size, struct adfs_dir *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
128 const unsigned int blocksize_bits = sb->s_blocksize_bits;
Russell King419a6e52019-12-09 11:09:35 +0000129 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 /*
132 * Directories which are not a multiple of 2048 bytes
133 * are considered bad v2 [3.6]
134 */
135 if (size & 2047)
136 goto bad_dir;
137
Russell King419a6e52019-12-09 11:09:35 +0000138 ret = adfs_dir_read_buffers(sb, indaddr, size, dir);
139 if (ret)
140 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Russell King016936b2019-12-09 11:10:21 +0000142 dir->dirhead = bufoff(dir->bh, 0);
143 dir->newtail = bufoff(dir->bh, 2007);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Russell King016936b2019-12-09 11:10:21 +0000145 if (dir->dirhead->startmasseq != dir->newtail->endmasseq ||
146 memcmp(&dir->dirhead->startname, &dir->newtail->endname, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 goto bad_dir;
148
Russell King016936b2019-12-09 11:10:21 +0000149 if (memcmp(&dir->dirhead->startname, "Nick", 4) &&
150 memcmp(&dir->dirhead->startname, "Hugo", 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 goto bad_dir;
152
Russell King016936b2019-12-09 11:10:21 +0000153 if (adfs_dir_checkbyte(dir) != dir->newtail->dircheckbyte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 goto bad_dir;
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 0;
157
158bad_dir:
Russell King5ed70bb2019-06-04 14:49:57 +0100159 adfs_error(sb, "dir %06x is corrupted", indaddr);
Russell King1dd9f5b2019-12-09 11:09:20 +0000160 adfs_dir_relse(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return -EIO;
163}
164
165/*
166 * convert a disk-based directory entry to a Linux ADFS directory entry
167 */
168static inline void
Stuart Swalesda23ef02011-03-22 16:35:06 -0700169adfs_dir2obj(struct adfs_dir *dir, struct object_info *obj,
170 struct adfs_direntry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Russell Kingadb514a2019-03-24 13:22:28 +0000172 unsigned int name_len;
173
174 for (name_len = 0; name_len < ADFS_F_NAME_LEN; name_len++) {
175 if (de->dirobname[name_len] < ' ')
176 break;
177
178 obj->name[name_len] = de->dirobname[name_len];
179 }
180
181 obj->name_len = name_len;
Russell King5ed70bb2019-06-04 14:49:57 +0100182 obj->indaddr = adfs_readval(de->dirinddiscadd, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 obj->loadaddr = adfs_readval(de->dirload, 4);
184 obj->execaddr = adfs_readval(de->direxec, 4);
185 obj->size = adfs_readval(de->dirlen, 4);
186 obj->attr = de->newdiratts;
Stuart Swalesda23ef02011-03-22 16:35:06 -0700187
Russell King411c49b2019-03-24 12:57:32 +0000188 adfs_object_fixup(dir, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191/*
192 * convert a Linux ADFS directory entry to a disk-based directory entry
193 */
194static inline void
195adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj)
196{
Russell King5ed70bb2019-06-04 14:49:57 +0100197 adfs_writeval(de->dirinddiscadd, 3, obj->indaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 adfs_writeval(de->dirload, 4, obj->loadaddr);
199 adfs_writeval(de->direxec, 4, obj->execaddr);
200 adfs_writeval(de->dirlen, 4, obj->size);
201 de->newdiratts = obj->attr;
202}
203
204/*
205 * get a directory entry. Note that the caller is responsible
206 * for holding the relevant locks.
207 */
208static int
209__adfs_dir_get(struct adfs_dir *dir, int pos, struct object_info *obj)
210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct adfs_direntry de;
Russell Kinga3171202019-12-09 11:09:30 +0000212 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Russell Kinga3171202019-12-09 11:09:30 +0000214 ret = adfs_dir_copyfrom(&de, dir, pos, 26);
215 if (ret)
216 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 if (!de.dirobname[0])
219 return -ENOENT;
220
Stuart Swalesda23ef02011-03-22 16:35:06 -0700221 adfs_dir2obj(dir, obj, &de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 return 0;
224}
225
226static int
227__adfs_dir_put(struct adfs_dir *dir, int pos, struct object_info *obj)
228{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 struct adfs_direntry de;
Russell Kinga3171202019-12-09 11:09:30 +0000230 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Russell Kinga3171202019-12-09 11:09:30 +0000232 ret = adfs_dir_copyfrom(&de, dir, pos, 26);
233 if (ret)
234 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 adfs_obj2dir(&de, obj);
237
Russell Kinga3171202019-12-09 11:09:30 +0000238 return adfs_dir_copyto(dir, pos, &de, 26);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/*
242 * the caller is responsible for holding the necessary
243 * locks.
244 */
Russell King5ed70bb2019-06-04 14:49:57 +0100245static int adfs_dir_find_entry(struct adfs_dir *dir, u32 indaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 int pos, ret;
248
249 ret = -ENOENT;
250
251 for (pos = 5; pos < ADFS_NUM_DIR_ENTRIES * 26 + 5; pos += 26) {
252 struct object_info obj;
253
254 if (!__adfs_dir_get(dir, pos, &obj))
255 break;
256
Russell King5ed70bb2019-06-04 14:49:57 +0100257 if (obj.indaddr == indaddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 ret = pos;
259 break;
260 }
261 }
262
263 return ret;
264}
265
Russell King5ed70bb2019-06-04 14:49:57 +0100266static int adfs_f_read(struct super_block *sb, u32 indaddr, unsigned int size,
267 struct adfs_dir *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 int ret;
270
Russell King5ed70bb2019-06-04 14:49:57 +0100271 if (size != ADFS_NEWDIR_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return -EIO;
273
Russell King5ed70bb2019-06-04 14:49:57 +0100274 ret = adfs_dir_read(sb, indaddr, size, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (ret)
276 adfs_error(sb, "unable to read directory");
277 else
Russell King016936b2019-12-09 11:10:21 +0000278 dir->parent_id = adfs_readval(dir->newtail->dirparent, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 return ret;
281}
282
283static int
284adfs_f_setpos(struct adfs_dir *dir, unsigned int fpos)
285{
286 if (fpos >= ADFS_NUM_DIR_ENTRIES)
287 return -ENOENT;
288
289 dir->pos = 5 + fpos * 26;
290 return 0;
291}
292
293static int
294adfs_f_getnext(struct adfs_dir *dir, struct object_info *obj)
295{
296 unsigned int ret;
297
298 ret = __adfs_dir_get(dir, dir->pos, obj);
299 if (ret == 0)
300 dir->pos += 26;
301
302 return ret;
303}
304
Russell King4287e4d2019-12-09 11:10:16 +0000305static int adfs_f_iterate(struct adfs_dir *dir, struct dir_context *ctx)
306{
307 struct object_info obj;
308 int pos = 5 + (ctx->pos - 2) * 26;
309
310 while (ctx->pos < 2 + ADFS_NUM_DIR_ENTRIES) {
311 if (__adfs_dir_get(dir, pos, &obj))
312 break;
313 if (!dir_emit(ctx, obj.name, obj.name_len,
314 obj.indaddr, DT_UNKNOWN))
315 break;
316 pos += 26;
317 ctx->pos++;
318 }
319 return 0;
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static int
323adfs_f_update(struct adfs_dir *dir, struct object_info *obj)
324{
Russell Kingc3c81492019-12-09 11:09:45 +0000325 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Russell King5ed70bb2019-06-04 14:49:57 +0100327 ret = adfs_dir_find_entry(dir, obj->indaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (ret < 0) {
329 adfs_error(dir->sb, "unable to locate entry to update");
330 goto out;
331 }
332
333 __adfs_dir_put(dir, ret, obj);
334
335 /*
336 * Increment directory sequence number
337 */
Russell King016936b2019-12-09 11:10:21 +0000338 dir->dirhead->startmasseq += 1;
339 dir->newtail->endmasseq += 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 ret = adfs_dir_checkbyte(dir);
342 /*
343 * Update directory check byte
344 */
Russell King016936b2019-12-09 11:10:21 +0000345 dir->newtail->dircheckbyte = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347#if 1
Russell King016936b2019-12-09 11:10:21 +0000348 if (dir->dirhead->startmasseq != dir->newtail->endmasseq ||
349 memcmp(&dir->dirhead->startname, &dir->newtail->endname, 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto bad_dir;
351
Russell King016936b2019-12-09 11:10:21 +0000352 if (memcmp(&dir->dirhead->startname, "Nick", 4) &&
353 memcmp(&dir->dirhead->startname, "Hugo", 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 goto bad_dir;
355
Russell King016936b2019-12-09 11:10:21 +0000356 if (adfs_dir_checkbyte(dir) != dir->newtail->dircheckbyte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 goto bad_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 ret = 0;
360out:
361 return ret;
362#if 1
363bad_dir:
364 adfs_error(dir->sb, "whoops! I broke a directory!");
365 return -EIO;
366#endif
367}
368
Julia Lawall0125f502015-11-21 16:15:37 +0100369const struct adfs_dir_ops adfs_f_dir_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .read = adfs_f_read,
Russell King4287e4d2019-12-09 11:10:16 +0000371 .iterate = adfs_f_iterate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 .setpos = adfs_f_setpos,
373 .getnext = adfs_f_getnext,
374 .update = adfs_f_update,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375};