Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 *  linux/fs/adfs/dir_f.c
  4 *
  5 * Copyright (C) 1997-1999 Russell King
  6 *
 
 
 
 
  7 *  E and F format directory handling
  8 */
 
  9#include "adfs.h"
 10#include "dir_f.h"
 11
 
 
 12/*
 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;
 21		fallthrough;
 22	case 3:		val |= p[2] << 16;
 23		fallthrough;
 24	case 2:		val |= p[1] << 8;
 25		fallthrough;
 26	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;
 35		fallthrough;
 36	case 3:		p[2] = val >> 16;
 37		fallthrough;
 38	case 2:		p[1] = val >> 8;
 39		fallthrough;
 40	default:	p[0] = val;
 41	}
 42}
 43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 44#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);\
 61	  (void *)(_bh[_buf]->b_data + _off);	\
 62	})
 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
101		do {
102			dircheck = *ptr.ptr8++ ^ ror13(dircheck);
103		} while (ptr.ptr8 < end.ptr8);
104	}
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
124static int adfs_f_validate(struct adfs_dir *dir)
 
 
 
 
 
125{
126	struct adfs_dirheader *head = dir->dirhead;
127	struct adfs_newdirtail *tail = dir->newtail;
128
129	if (head->startmasseq != tail->endmasseq ||
130	    tail->dirlastmask || tail->reserved[0] || tail->reserved[1] ||
131	    (memcmp(&head->startname, "Nick", 4) &&
132	     memcmp(&head->startname, "Hugo", 4)) ||
133	    memcmp(&head->startname, &tail->endname, 4) ||
134	    adfs_dir_checkbyte(dir) != tail->dircheckbyte)
135		return -EIO;
136
137	return 0;
138}
139
140/* Read and check that a directory is valid */
141static int adfs_f_read(struct super_block *sb, u32 indaddr, unsigned int size,
142		       struct adfs_dir *dir)
143{
144	const unsigned int blocksize_bits = sb->s_blocksize_bits;
145	int ret;
146
147	if (size && size != ADFS_NEWDIR_SIZE)
148		return -EIO;
149
150	ret = adfs_dir_read_buffers(sb, indaddr, ADFS_NEWDIR_SIZE, dir);
151	if (ret)
152		return ret;
 
 
 
153
154	dir->dirhead = bufoff(dir->bh, 0);
155	dir->newtail = bufoff(dir->bh, 2007);
 
 
 
 
 
 
 
 
 
156
157	if (adfs_f_validate(dir))
 
158		goto bad_dir;
159
160	dir->parent_id = adfs_readval(dir->newtail->dirparent, 3);
 
 
 
161
162	return 0;
163
164bad_dir:
165	adfs_error(sb, "dir %06x is corrupted", indaddr);
166	adfs_dir_relse(dir);
 
 
 
 
 
167
168	return -EIO;
169}
170
171/*
172 * convert a disk-based directory entry to a Linux ADFS directory entry
173 */
174static inline void
175adfs_dir2obj(struct adfs_dir *dir, struct object_info *obj,
176	struct adfs_direntry *de)
177{
178	unsigned int name_len;
179
180	for (name_len = 0; name_len < ADFS_F_NAME_LEN; name_len++) {
181		if (de->dirobname[name_len] < ' ')
182			break;
183
184		obj->name[name_len] = de->dirobname[name_len];
185	}
186
187	obj->name_len =	name_len;
188	obj->indaddr  = adfs_readval(de->dirinddiscadd, 3);
189	obj->loadaddr = adfs_readval(de->dirload, 4);
190	obj->execaddr = adfs_readval(de->direxec, 4);
191	obj->size     = adfs_readval(de->dirlen,  4);
192	obj->attr     = de->newdiratts;
 
193
194	adfs_object_fixup(dir, obj);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195}
196
197/*
198 * convert a Linux ADFS directory entry to a disk-based directory entry
199 */
200static inline void
201adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj)
202{
203	adfs_writeval(de->dirinddiscadd, 3, obj->indaddr);
204	adfs_writeval(de->dirload, 4, obj->loadaddr);
205	adfs_writeval(de->direxec, 4, obj->execaddr);
206	adfs_writeval(de->dirlen,  4, obj->size);
207	de->newdiratts = obj->attr;
208}
209
210/*
211 * get a directory entry.  Note that the caller is responsible
212 * for holding the relevant locks.
213 */
214static int
215__adfs_dir_get(struct adfs_dir *dir, int pos, struct object_info *obj)
216{
 
217	struct adfs_direntry de;
218	int ret;
219
220	ret = adfs_dir_copyfrom(&de, dir, pos, 26);
221	if (ret)
222		return ret;
 
 
 
 
 
 
 
 
 
 
 
223
224	if (!de.dirobname[0])
225		return -ENOENT;
226
227	adfs_dir2obj(dir, obj, &de);
228
229	return 0;
230}
231
232static int
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233adfs_f_setpos(struct adfs_dir *dir, unsigned int fpos)
234{
235	if (fpos >= ADFS_NUM_DIR_ENTRIES)
236		return -ENOENT;
237
238	dir->pos = 5 + fpos * 26;
239	return 0;
240}
241
242static int
243adfs_f_getnext(struct adfs_dir *dir, struct object_info *obj)
244{
245	unsigned int ret;
246
247	ret = __adfs_dir_get(dir, dir->pos, obj);
248	if (ret == 0)
249		dir->pos += 26;
250
251	return ret;
252}
253
254static int adfs_f_iterate(struct adfs_dir *dir, struct dir_context *ctx)
 
255{
256	struct object_info obj;
257	int pos = 5 + (ctx->pos - 2) * 26;
258
259	while (ctx->pos < 2 + ADFS_NUM_DIR_ENTRIES) {
260		if (__adfs_dir_get(dir, pos, &obj))
261			break;
262		if (!dir_emit(ctx, obj.name, obj.name_len,
263			      obj.indaddr, DT_UNKNOWN))
264			break;
265		pos += 26;
266		ctx->pos++;
267	}
268	return 0;
269}
270
271static int adfs_f_update(struct adfs_dir *dir, struct object_info *obj)
272{
273	struct adfs_direntry de;
274	int offset, ret;
 
 
 
275
276	offset = 5 - (int)sizeof(de);
 
 
 
 
277
278	do {
279		offset += sizeof(de);
280		ret = adfs_dir_copyfrom(&de, dir, offset, sizeof(de));
281		if (ret) {
282			adfs_error(dir->sb, "error reading directory entry");
283			return -ENOENT;
284		}
285		if (!de.dirobname[0]) {
286			adfs_error(dir->sb, "unable to locate entry to update");
287			return -ENOENT;
288		}
289	} while (adfs_readval(de.dirinddiscadd, 3) != obj->indaddr);
290
291	/* Update the directory entry with the new object state */
292	adfs_obj2dir(&de, obj);
 
 
 
 
 
 
 
 
293
294	/* Write the directory entry back to the directory */
295	return adfs_dir_copyto(dir, offset, &de, 26);
 
 
 
 
 
 
 
 
 
 
 
 
 
296}
297
298static int adfs_f_commit(struct adfs_dir *dir)
 
299{
300	int ret;
 
301
302	/* Increment directory sequence number */
303	dir->dirhead->startmasseq += 1;
304	dir->newtail->endmasseq += 1;
 
 
 
305
306	/* Update directory check byte */
307	dir->newtail->dircheckbyte = adfs_dir_checkbyte(dir);
308
309	/* Make sure the directory still validates correctly */
310	ret = adfs_f_validate(dir);
311	if (ret)
312		adfs_msg(dir->sb, KERN_ERR, "error: update broke directory");
313
314	return ret;
 
 
 
 
 
 
315}
316
317const struct adfs_dir_ops adfs_f_dir_ops = {
318	.read		= adfs_f_read,
319	.iterate	= adfs_f_iterate,
320	.setpos		= adfs_f_setpos,
321	.getnext	= adfs_f_getnext,
322	.update		= adfs_f_update,
323	.commit		= adfs_f_commit,
 
324};
v4.6
 
  1/*
  2 *  linux/fs/adfs/dir_f.c
  3 *
  4 * Copyright (C) 1997-1999 Russell King
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License version 2 as
  8 * published by the Free Software Foundation.
  9 *
 10 *  E and F format directory handling
 11 */
 12#include <linux/buffer_head.h>
 13#include "adfs.h"
 14#include "dir_f.h"
 15
 16static void adfs_f_free(struct adfs_dir *dir);
 17
 18/*
 19 * Read an (unaligned) value of length 1..4 bytes
 20 */
 21static inline unsigned int adfs_readval(unsigned char *p, int len)
 22{
 23	unsigned int val = 0;
 24
 25	switch (len) {
 26	case 4:		val |= p[3] << 24;
 
 27	case 3:		val |= p[2] << 16;
 
 28	case 2:		val |= p[1] << 8;
 
 29	default:	val |= p[0];
 30	}
 31	return val;
 32}
 33
 34static inline void adfs_writeval(unsigned char *p, int len, unsigned int val)
 35{
 36	switch (len) {
 37	case 4:		p[3] = val >> 24;
 
 38	case 3:		p[2] = val >> 16;
 
 39	case 2:		p[1] = val >> 8;
 
 40	default:	p[0] = val;
 41	}
 42}
 43
 44static inline int adfs_readname(char *buf, char *ptr, int maxlen)
 45{
 46	char *old_buf = buf;
 47
 48	while ((unsigned char)*ptr >= ' ' && maxlen--) {
 49		if (*ptr == '/')
 50			*buf++ = '.';
 51		else
 52			*buf++ = *ptr;
 53		ptr++;
 54	}
 55
 56	return buf - old_buf;
 57}
 58
 59#define ror13(v) ((v >> 13) | (v << 19))
 60
 61#define dir_u8(idx)				\
 62	({ int _buf = idx >> blocksize_bits;	\
 63	   int _off = idx - (_buf << blocksize_bits);\
 64	  *(u8 *)(bh[_buf]->b_data + _off);	\
 65	})
 66
 67#define dir_u32(idx)				\
 68	({ int _buf = idx >> blocksize_bits;	\
 69	   int _off = idx - (_buf << blocksize_bits);\
 70	  *(__le32 *)(bh[_buf]->b_data + _off);	\
 71	})
 72
 73#define bufoff(_bh,_idx)			\
 74	({ int _buf = _idx >> blocksize_bits;	\
 75	   int _off = _idx - (_buf << blocksize_bits);\
 76	  (u8 *)(_bh[_buf]->b_data + _off);	\
 77	})
 78
 79/*
 80 * There are some algorithms that are nice in
 81 * assembler, but a bitch in C...  This is one
 82 * of them.
 83 */
 84static u8
 85adfs_dir_checkbyte(const struct adfs_dir *dir)
 86{
 87	struct buffer_head * const *bh = dir->bh;
 88	const int blocksize_bits = dir->sb->s_blocksize_bits;
 89	union { __le32 *ptr32; u8 *ptr8; } ptr, end;
 90	u32 dircheck = 0;
 91	int last = 5 - 26;
 92	int i = 0;
 93
 94	/*
 95	 * Accumulate each word up to the last whole
 96	 * word of the last directory entry.  This
 97	 * can spread across several buffer heads.
 98	 */
 99	do {
100		last += 26;
101		do {
102			dircheck = le32_to_cpu(dir_u32(i)) ^ ror13(dircheck);
103
104			i += sizeof(u32);
105		} while (i < (last & ~3));
106	} while (dir_u8(last) != 0);
107
108	/*
109	 * Accumulate the last few bytes.  These
110	 * bytes will be within the same bh.
111	 */
112	if (i != last) {
113		ptr.ptr8 = bufoff(bh, i);
114		end.ptr8 = ptr.ptr8 + last - i;
115
116		do {
117			dircheck = *ptr.ptr8++ ^ ror13(dircheck);
118		} while (ptr.ptr8 < end.ptr8);
119	}
120
121	/*
122	 * The directory tail is in the final bh
123	 * Note that contary to the RISC OS PRMs,
124	 * the first few bytes are NOT included
125	 * in the check.  All bytes are in the
126	 * same bh.
127	 */
128	ptr.ptr8 = bufoff(bh, 2008);
129	end.ptr8 = ptr.ptr8 + 36;
130
131	do {
132		__le32 v = *ptr.ptr32++;
133		dircheck = le32_to_cpu(v) ^ ror13(dircheck);
134	} while (ptr.ptr32 < end.ptr32);
135
136	return (dircheck ^ (dircheck >> 8) ^ (dircheck >> 16) ^ (dircheck >> 24)) & 0xff;
137}
138
139/*
140 * Read and check that a directory is valid
141 */
142static int
143adfs_dir_read(struct super_block *sb, unsigned long object_id,
144	      unsigned int size, struct adfs_dir *dir)
145{
146	const unsigned int blocksize_bits = sb->s_blocksize_bits;
147	int blk = 0;
148
149	/*
150	 * Directories which are not a multiple of 2048 bytes
151	 * are considered bad v2 [3.6]
152	 */
153	if (size & 2047)
154		goto bad_dir;
 
155
156	size >>= blocksize_bits;
 
157
158	dir->nr_buffers = 0;
159	dir->sb = sb;
 
 
 
 
160
161	for (blk = 0; blk < size; blk++) {
162		int phys;
163
164		phys = __adfs_block_map(sb, object_id, blk);
165		if (!phys) {
166			adfs_error(sb, "dir object %lX has a hole at offset %d",
167				   object_id, blk);
168			goto release_buffers;
169		}
170
171		dir->bh[blk] = sb_bread(sb, phys);
172		if (!dir->bh[blk])
173			goto release_buffers;
174	}
175
176	memcpy(&dir->dirhead, bufoff(dir->bh, 0), sizeof(dir->dirhead));
177	memcpy(&dir->dirtail, bufoff(dir->bh, 2007), sizeof(dir->dirtail));
178
179	if (dir->dirhead.startmasseq != dir->dirtail.new.endmasseq ||
180	    memcmp(&dir->dirhead.startname, &dir->dirtail.new.endname, 4))
181		goto bad_dir;
182
183	if (memcmp(&dir->dirhead.startname, "Nick", 4) &&
184	    memcmp(&dir->dirhead.startname, "Hugo", 4))
185		goto bad_dir;
186
187	if (adfs_dir_checkbyte(dir) != dir->dirtail.new.dircheckbyte)
188		goto bad_dir;
189
190	dir->nr_buffers = blk;
191
192	return 0;
193
194bad_dir:
195	adfs_error(sb, "corrupted directory fragment %lX",
196		   object_id);
197release_buffers:
198	for (blk -= 1; blk >= 0; blk -= 1)
199		brelse(dir->bh[blk]);
200
201	dir->sb = NULL;
202
203	return -EIO;
204}
205
206/*
207 * convert a disk-based directory entry to a Linux ADFS directory entry
208 */
209static inline void
210adfs_dir2obj(struct adfs_dir *dir, struct object_info *obj,
211	struct adfs_direntry *de)
212{
213	obj->name_len =	adfs_readname(obj->name, de->dirobname, ADFS_F_NAME_LEN);
214	obj->file_id  = adfs_readval(de->dirinddiscadd, 3);
 
 
 
 
 
 
 
 
 
215	obj->loadaddr = adfs_readval(de->dirload, 4);
216	obj->execaddr = adfs_readval(de->direxec, 4);
217	obj->size     = adfs_readval(de->dirlen,  4);
218	obj->attr     = de->newdiratts;
219	obj->filetype = -1;
220
221	/*
222	 * object is a file and is filetyped and timestamped?
223	 * RISC OS 12-bit filetype is stored in load_address[19:8]
224	 */
225	if ((0 == (obj->attr & ADFS_NDA_DIRECTORY)) &&
226		(0xfff00000 == (0xfff00000 & obj->loadaddr))) {
227		obj->filetype = (__u16) ((0x000fff00 & obj->loadaddr) >> 8);
228
229		/* optionally append the ,xyz hex filetype suffix */
230		if (ADFS_SB(dir->sb)->s_ftsuffix)
231			obj->name_len +=
232				append_filetype_suffix(
233					&obj->name[obj->name_len],
234					obj->filetype);
235	}
236}
237
238/*
239 * convert a Linux ADFS directory entry to a disk-based directory entry
240 */
241static inline void
242adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj)
243{
244	adfs_writeval(de->dirinddiscadd, 3, obj->file_id);
245	adfs_writeval(de->dirload, 4, obj->loadaddr);
246	adfs_writeval(de->direxec, 4, obj->execaddr);
247	adfs_writeval(de->dirlen,  4, obj->size);
248	de->newdiratts = obj->attr;
249}
250
251/*
252 * get a directory entry.  Note that the caller is responsible
253 * for holding the relevant locks.
254 */
255static int
256__adfs_dir_get(struct adfs_dir *dir, int pos, struct object_info *obj)
257{
258	struct super_block *sb = dir->sb;
259	struct adfs_direntry de;
260	int thissize, buffer, offset;
261
262	buffer = pos >> sb->s_blocksize_bits;
263
264	if (buffer > dir->nr_buffers)
265		return -EINVAL;
266
267	offset = pos & (sb->s_blocksize - 1);
268	thissize = sb->s_blocksize - offset;
269	if (thissize > 26)
270		thissize = 26;
271
272	memcpy(&de, dir->bh[buffer]->b_data + offset, thissize);
273	if (thissize != 26)
274		memcpy(((char *)&de) + thissize, dir->bh[buffer + 1]->b_data,
275		       26 - thissize);
276
277	if (!de.dirobname[0])
278		return -ENOENT;
279
280	adfs_dir2obj(dir, obj, &de);
281
282	return 0;
283}
284
285static int
286__adfs_dir_put(struct adfs_dir *dir, int pos, struct object_info *obj)
287{
288	struct super_block *sb = dir->sb;
289	struct adfs_direntry de;
290	int thissize, buffer, offset;
291
292	buffer = pos >> sb->s_blocksize_bits;
293
294	if (buffer > dir->nr_buffers)
295		return -EINVAL;
296
297	offset = pos & (sb->s_blocksize - 1);
298	thissize = sb->s_blocksize - offset;
299	if (thissize > 26)
300		thissize = 26;
301
302	/*
303	 * Get the entry in total
304	 */
305	memcpy(&de, dir->bh[buffer]->b_data + offset, thissize);
306	if (thissize != 26)
307		memcpy(((char *)&de) + thissize, dir->bh[buffer + 1]->b_data,
308		       26 - thissize);
309
310	/*
311	 * update it
312	 */
313	adfs_obj2dir(&de, obj);
314
315	/*
316	 * Put the new entry back
317	 */
318	memcpy(dir->bh[buffer]->b_data + offset, &de, thissize);
319	if (thissize != 26)
320		memcpy(dir->bh[buffer + 1]->b_data, ((char *)&de) + thissize,
321		       26 - thissize);
322
323	return 0;
324}
325
326/*
327 * the caller is responsible for holding the necessary
328 * locks.
329 */
330static int
331adfs_dir_find_entry(struct adfs_dir *dir, unsigned long object_id)
332{
333	int pos, ret;
334
335	ret = -ENOENT;
336
337	for (pos = 5; pos < ADFS_NUM_DIR_ENTRIES * 26 + 5; pos += 26) {
338		struct object_info obj;
339
340		if (!__adfs_dir_get(dir, pos, &obj))
341			break;
342
343		if (obj.file_id == object_id) {
344			ret = pos;
345			break;
346		}
347	}
348
349	return ret;
350}
351
352static int
353adfs_f_read(struct super_block *sb, unsigned int id, unsigned int sz, struct adfs_dir *dir)
354{
355	int ret;
356
357	if (sz != ADFS_NEWDIR_SIZE)
358		return -EIO;
359
360	ret = adfs_dir_read(sb, id, sz, dir);
361	if (ret)
362		adfs_error(sb, "unable to read directory");
363	else
364		dir->parent_id = adfs_readval(dir->dirtail.new.dirparent, 3);
365
366	return ret;
367}
368
369static int
370adfs_f_setpos(struct adfs_dir *dir, unsigned int fpos)
371{
372	if (fpos >= ADFS_NUM_DIR_ENTRIES)
373		return -ENOENT;
374
375	dir->pos = 5 + fpos * 26;
376	return 0;
377}
378
379static int
380adfs_f_getnext(struct adfs_dir *dir, struct object_info *obj)
381{
382	unsigned int ret;
383
384	ret = __adfs_dir_get(dir, dir->pos, obj);
385	if (ret == 0)
386		dir->pos += 26;
387
388	return ret;
389}
390
391static int
392adfs_f_update(struct adfs_dir *dir, struct object_info *obj)
393{
394	struct super_block *sb = dir->sb;
395	int ret, i;
396
397	ret = adfs_dir_find_entry(dir, obj->file_id);
398	if (ret < 0) {
399		adfs_error(dir->sb, "unable to locate entry to update");
400		goto out;
 
 
 
 
401	}
 
 
402
403	__adfs_dir_put(dir, ret, obj);
404 
405	/*
406	 * Increment directory sequence number
407	 */
408	dir->bh[0]->b_data[0] += 1;
409	dir->bh[dir->nr_buffers - 1]->b_data[sb->s_blocksize - 6] += 1;
410
411	ret = adfs_dir_checkbyte(dir);
412	/*
413	 * Update directory check byte
414	 */
415	dir->bh[dir->nr_buffers - 1]->b_data[sb->s_blocksize - 1] = ret;
416
417#if 1
418	{
419	const unsigned int blocksize_bits = sb->s_blocksize_bits;
 
 
 
 
 
 
 
 
 
420
421	memcpy(&dir->dirhead, bufoff(dir->bh, 0), sizeof(dir->dirhead));
422	memcpy(&dir->dirtail, bufoff(dir->bh, 2007), sizeof(dir->dirtail));
423
424	if (dir->dirhead.startmasseq != dir->dirtail.new.endmasseq ||
425	    memcmp(&dir->dirhead.startname, &dir->dirtail.new.endname, 4))
426		goto bad_dir;
427
428	if (memcmp(&dir->dirhead.startname, "Nick", 4) &&
429	    memcmp(&dir->dirhead.startname, "Hugo", 4))
430		goto bad_dir;
431
432	if (adfs_dir_checkbyte(dir) != dir->dirtail.new.dircheckbyte)
433		goto bad_dir;
434	}
435#endif
436	for (i = dir->nr_buffers - 1; i >= 0; i--)
437		mark_buffer_dirty(dir->bh[i]);
438
439	ret = 0;
440out:
441	return ret;
442#if 1
443bad_dir:
444	adfs_error(dir->sb, "whoops!  I broke a directory!");
445	return -EIO;
446#endif
447}
448
449static int
450adfs_f_sync(struct adfs_dir *dir)
451{
452	int err = 0;
453	int i;
454
455	for (i = dir->nr_buffers - 1; i >= 0; i--) {
456		struct buffer_head *bh = dir->bh[i];
457		sync_dirty_buffer(bh);
458		if (buffer_req(bh) && !buffer_uptodate(bh))
459			err = -EIO;
460	}
461
462	return err;
463}
464
465static void
466adfs_f_free(struct adfs_dir *dir)
467{
468	int i;
469
470	for (i = dir->nr_buffers - 1; i >= 0; i--) {
471		brelse(dir->bh[i]);
472		dir->bh[i] = NULL;
473	}
474
475	dir->nr_buffers = 0;
476	dir->sb = NULL;
477}
478
479const struct adfs_dir_ops adfs_f_dir_ops = {
480	.read		= adfs_f_read,
 
481	.setpos		= adfs_f_setpos,
482	.getnext	= adfs_f_getnext,
483	.update		= adfs_f_update,
484	.sync		= adfs_f_sync,
485	.free		= adfs_f_free
486};