Blame view

fs/affs/amigaffs.c 11.3 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
  /*
   *  linux/fs/affs/amigaffs.c
   *
   *  (c) 1996  Hans-Joachim Widmaier - Rewritten
   *
   *  (C) 1993  Ray Burr - Amiga FFS filesystem.
   *
   *  Please send bug reports to: hjw@zvw.de
   */
db39c1672   DengChao   fs:affs:Replace t...
11
  #include <linux/math64.h>
9dffe569d   Jeff Layton   affs: convert to ...
12
  #include <linux/iversion.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
  #include "affs.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  /*
   * Functions for accessing Amiga-FFS structures.
   */
  
  
  /* Insert a header block bh into the directory dir
   * caller must hold AFFS_DIR->i_hash_lock!
   */
  
  int
  affs_insert_hash(struct inode *dir, struct buffer_head *bh)
  {
  	struct super_block *sb = dir->i_sb;
  	struct buffer_head *dir_bh;
  	u32 ino, hash_ino;
  	int offset;
  
  	ino = bh->b_blocknr;
  	offset = affs_hash_name(sb, AFFS_TAIL(sb, bh)->name + 1, AFFS_TAIL(sb, bh)->name[0]);
08fe100d9   Geert Uytterhoeven   fs/affs: fix cast...
33
34
  	pr_debug("%s(dir=%lu, ino=%d)
  ", __func__, dir->i_ino, ino);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  
  	dir_bh = affs_bread(sb, dir->i_ino);
  	if (!dir_bh)
  		return -EIO;
  
  	hash_ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[offset]);
  	while (hash_ino) {
  		affs_brelse(dir_bh);
  		dir_bh = affs_bread(sb, hash_ino);
  		if (!dir_bh)
  			return -EIO;
  		hash_ino = be32_to_cpu(AFFS_TAIL(sb, dir_bh)->hash_chain);
  	}
  	AFFS_TAIL(sb, bh)->parent = cpu_to_be32(dir->i_ino);
  	AFFS_TAIL(sb, bh)->hash_chain = 0;
  	affs_fix_checksum(sb, bh);
  
  	if (dir->i_ino == dir_bh->b_blocknr)
  		AFFS_HEAD(dir_bh)->table[offset] = cpu_to_be32(ino);
  	else
  		AFFS_TAIL(sb, dir_bh)->hash_chain = cpu_to_be32(ino);
  
  	affs_adjust_checksum(dir_bh, ino);
  	mark_buffer_dirty_inode(dir_bh, dir);
  	affs_brelse(dir_bh);
02027d42c   Deepa Dinamani   fs: Replace CURRE...
60
  	dir->i_mtime = dir->i_ctime = current_time(dir);
9dffe569d   Jeff Layton   affs: convert to ...
61
  	inode_inc_iversion(dir);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  	mark_inode_dirty(dir);
  
  	return 0;
  }
  
  /* Remove a header block from its directory.
   * caller must hold AFFS_DIR->i_hash_lock!
   */
  
  int
  affs_remove_hash(struct inode *dir, struct buffer_head *rem_bh)
  {
  	struct super_block *sb;
  	struct buffer_head *bh;
  	u32 rem_ino, hash_ino;
  	__be32 ino;
  	int offset, retval;
  
  	sb = dir->i_sb;
  	rem_ino = rem_bh->b_blocknr;
  	offset = affs_hash_name(sb, AFFS_TAIL(sb, rem_bh)->name+1, AFFS_TAIL(sb, rem_bh)->name[0]);
08fe100d9   Geert Uytterhoeven   fs/affs: fix cast...
83
84
85
  	pr_debug("%s(dir=%lu, ino=%d, hashval=%d)
  ", __func__, dir->i_ino,
  		 rem_ino, offset);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  
  	bh = affs_bread(sb, dir->i_ino);
  	if (!bh)
  		return -EIO;
  
  	retval = -ENOENT;
  	hash_ino = be32_to_cpu(AFFS_HEAD(bh)->table[offset]);
  	while (hash_ino) {
  		if (hash_ino == rem_ino) {
  			ino = AFFS_TAIL(sb, rem_bh)->hash_chain;
  			if (dir->i_ino == bh->b_blocknr)
  				AFFS_HEAD(bh)->table[offset] = ino;
  			else
  				AFFS_TAIL(sb, bh)->hash_chain = ino;
  			affs_adjust_checksum(bh, be32_to_cpu(ino) - hash_ino);
  			mark_buffer_dirty_inode(bh, dir);
  			AFFS_TAIL(sb, rem_bh)->parent = 0;
  			retval = 0;
  			break;
  		}
  		affs_brelse(bh);
  		bh = affs_bread(sb, hash_ino);
  		if (!bh)
  			return -EIO;
  		hash_ino = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain);
  	}
  
  	affs_brelse(bh);
02027d42c   Deepa Dinamani   fs: Replace CURRE...
114
  	dir->i_mtime = dir->i_ctime = current_time(dir);
9dffe569d   Jeff Layton   affs: convert to ...
115
  	inode_inc_iversion(dir);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
117
118
119
120
121
  	mark_inode_dirty(dir);
  
  	return retval;
  }
  
  static void
12447c403   Al Viro   affs: unobfuscate...
122
  affs_fix_dcache(struct inode *inode, u32 entry_ino)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
  {
12447c403   Al Viro   affs: unobfuscate...
124
  	struct dentry *dentry;
873feea09   Nick Piggin   fs: dcache per-in...
125
  	spin_lock(&inode->i_lock);
946e51f2b   Al Viro   move d_rcu from o...
126
  	hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127
  		if (entry_ino == (u32)(long)dentry->d_fsdata) {
12447c403   Al Viro   affs: unobfuscate...
128
  			dentry->d_fsdata = (void *)inode->i_ino;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
130
  			break;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
  	}
873feea09   Nick Piggin   fs: dcache per-in...
132
  	spin_unlock(&inode->i_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
134
135
136
137
138
139
140
  }
  
  
  /* Remove header from link chain */
  
  static int
  affs_remove_link(struct dentry *dentry)
  {
2b0143b5c   David Howells   VFS: normal files...
141
  	struct inode *dir, *inode = d_inode(dentry);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142
  	struct super_block *sb = inode->i_sb;
4709187ef   Fabian Frederick   fs/affs/amigaffs....
143
  	struct buffer_head *bh, *link_bh = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
144
145
  	u32 link_ino, ino;
  	int retval;
9606d9aa8   Fabian Frederick   fs/affs: pr_debug...
146
147
  	pr_debug("%s(key=%ld)
  ", __func__, inode->i_ino);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  	retval = -EIO;
  	bh = affs_bread(sb, inode->i_ino);
  	if (!bh)
  		goto done;
  
  	link_ino = (u32)(long)dentry->d_fsdata;
  	if (inode->i_ino == link_ino) {
  		/* we can't remove the head of the link, as its blocknr is still used as ino,
  		 * so we remove the block of the first link instead.
  		 */ 
  		link_ino = be32_to_cpu(AFFS_TAIL(sb, bh)->link_chain);
  		link_bh = affs_bread(sb, link_ino);
  		if (!link_bh)
  			goto done;
210f85596   David Howells   iget: stop AFFS f...
162
163
164
  		dir = affs_iget(sb, be32_to_cpu(AFFS_TAIL(sb, link_bh)->parent));
  		if (IS_ERR(dir)) {
  			retval = PTR_ERR(dir);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
  			goto done;
210f85596   David Howells   iget: stop AFFS f...
166
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167
168
  
  		affs_lock_dir(dir);
12447c403   Al Viro   affs: unobfuscate...
169
170
171
172
173
  		/*
  		 * if there's a dentry for that block, make it
  		 * refer to inode itself.
  		 */
  		affs_fix_dcache(inode, link_ino);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
174
  		retval = affs_remove_hash(dir, link_bh);
ec1ab0abd   Christoph Hellwig   affs: fix missing...
175
176
  		if (retval) {
  			affs_unlock_dir(dir);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
177
  			goto done;
ec1ab0abd   Christoph Hellwig   affs: fix missing...
178
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
181
182
  		mark_buffer_dirty_inode(link_bh, inode);
  
  		memcpy(AFFS_TAIL(sb, bh)->name, AFFS_TAIL(sb, link_bh)->name, 32);
  		retval = affs_insert_hash(dir, bh);
ec1ab0abd   Christoph Hellwig   affs: fix missing...
183
184
  		if (retval) {
  			affs_unlock_dir(dir);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
  			goto done;
ec1ab0abd   Christoph Hellwig   affs: fix missing...
186
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
  		mark_buffer_dirty_inode(bh, inode);
  
  		affs_unlock_dir(dir);
  		iput(dir);
  	} else {
  		link_bh = affs_bread(sb, link_ino);
  		if (!link_bh)
  			goto done;
  	}
  
  	while ((ino = be32_to_cpu(AFFS_TAIL(sb, bh)->link_chain)) != 0) {
  		if (ino == link_ino) {
  			__be32 ino2 = AFFS_TAIL(sb, link_bh)->link_chain;
  			AFFS_TAIL(sb, bh)->link_chain = ino2;
  			affs_adjust_checksum(bh, be32_to_cpu(ino2) - link_ino);
  			mark_buffer_dirty_inode(bh, inode);
  			retval = 0;
  			/* Fix the link count, if bh is a normal header block without links */
  			switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
  			case ST_LINKDIR:
  			case ST_LINKFILE:
  				break;
  			default:
  				if (!AFFS_TAIL(sb, bh)->link_chain)
bfe868486   Miklos Szeredi   filesystems: add ...
211
  					set_nlink(inode, 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
  			}
  			affs_free_block(sb, link_ino);
  			goto done;
  		}
  		affs_brelse(bh);
  		bh = affs_bread(sb, ino);
  		if (!bh)
  			goto done;
  	}
  	retval = -ENOENT;
  done:
  	affs_brelse(link_bh);
  	affs_brelse(bh);
  	return retval;
  }
  
  
  static int
  affs_empty_dir(struct inode *inode)
  {
  	struct super_block *sb = inode->i_sb;
  	struct buffer_head *bh;
  	int retval, size;
  
  	retval = -EIO;
  	bh = affs_bread(sb, inode->i_ino);
  	if (!bh)
  		goto done;
  
  	retval = -ENOTEMPTY;
  	for (size = AFFS_SB(sb)->s_hashsize - 1; size >= 0; size--)
  		if (AFFS_HEAD(bh)->table[size])
  			goto not_empty;
  	retval = 0;
  not_empty:
  	affs_brelse(bh);
  done:
  	return retval;
  }
  
  
  /* Remove a filesystem object. If the object to be removed has
   * links to it, one of the links must be changed to inherit
   * the file or directory. As above, any inode will do.
   * The buffer will not be freed. If the header is a link, the
   * block will be marked as free.
   * This function returns a negative error number in case of
   * an error, else 0 if the inode is to be deleted or 1 if not.
   */
  
  int
  affs_remove_header(struct dentry *dentry)
  {
  	struct super_block *sb;
  	struct inode *inode, *dir;
  	struct buffer_head *bh = NULL;
  	int retval;
2b0143b5c   David Howells   VFS: normal files...
269
  	dir = d_inode(dentry->d_parent);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
270
271
272
  	sb = dir->i_sb;
  
  	retval = -ENOENT;
2b0143b5c   David Howells   VFS: normal files...
273
  	inode = d_inode(dentry);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
274
275
  	if (!inode)
  		goto done;
9606d9aa8   Fabian Frederick   fs/affs: pr_debug...
276
277
  	pr_debug("%s(key=%ld)
  ", __func__, inode->i_ino);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  	retval = -EIO;
  	bh = affs_bread(sb, (u32)(long)dentry->d_fsdata);
  	if (!bh)
  		goto done;
  
  	affs_lock_link(inode);
  	affs_lock_dir(dir);
  	switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
  	case ST_USERDIR:
  		/* if we ever want to support links to dirs
  		 * i_hash_lock of the inode must only be
  		 * taken after some checks
  		 */
  		affs_lock_dir(inode);
  		retval = affs_empty_dir(inode);
  		affs_unlock_dir(inode);
  		if (retval)
  			goto done_unlock;
  		break;
  	default:
  		break;
  	}
  
  	retval = affs_remove_hash(dir, bh);
  	if (retval)
  		goto done_unlock;
  	mark_buffer_dirty_inode(bh, inode);
  
  	affs_unlock_dir(dir);
  
  	if (inode->i_nlink > 1)
  		retval = affs_remove_link(dentry);
  	else
6d6b77f16   Miklos Szeredi   filesystems: add ...
311
  		clear_nlink(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
312
  	affs_unlock_link(inode);
02027d42c   Deepa Dinamani   fs: Replace CURRE...
313
  	inode->i_ctime = current_time(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
  	mark_inode_dirty(inode);
  
  done:
  	affs_brelse(bh);
  	return retval;
  
  done_unlock:
  	affs_unlock_dir(dir);
  	affs_unlock_link(inode);
  	goto done;
  }
  
  /* Checksum a block, do various consistency checks and optionally return
     the blocks type number.  DATA points to the block.  If their pointers
     are non-null, *PTYPE and *STYPE are set to the primary and secondary
     block types respectively, *HASHSIZE is set to the size of the hashtable
     (which lets us calculate the block size).
     Returns non-zero if the block is not consistent. */
  
  u32
  affs_checksum_block(struct super_block *sb, struct buffer_head *bh)
  {
  	__be32 *ptr = (__be32 *)bh->b_data;
  	u32 sum;
  	int bsize;
  
  	sum = 0;
  	for (bsize = sb->s_blocksize / sizeof(__be32); bsize > 0; bsize--)
  		sum += be32_to_cpu(*ptr++);
  	return sum;
  }
  
  /*
   * Calculate the checksum of a disk block and store it
   * at the indicated position.
   */
  
  void
  affs_fix_checksum(struct super_block *sb, struct buffer_head *bh)
  {
  	int cnt = sb->s_blocksize / sizeof(__be32);
  	__be32 *ptr = (__be32 *)bh->b_data;
  	u32 checksum;
  	__be32 *checksumptr;
  
  	checksumptr = ptr + 5;
  	*checksumptr = 0;
  	for (checksum = 0; cnt > 0; ptr++, cnt--)
  		checksum += be32_to_cpu(*ptr);
  	*checksumptr = cpu_to_be32(-checksum);
  }
  
  void
c16182085   Fabian Frederick   fs/affs: add pref...
367
  affs_secs_to_datestamp(time64_t secs, struct affs_date *ds)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
368
369
370
  {
  	u32	 days;
  	u32	 minute;
db39c1672   DengChao   fs:affs:Replace t...
371
  	s32	 rem;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
372

487b25bc4   Deepa Dinamani   fs: affs: Initial...
373
  	secs -= sys_tz.tz_minuteswest * 60 + AFFS_EPOCH_DELTA;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
374
375
  	if (secs < 0)
  		secs = 0;
db39c1672   DengChao   fs:affs:Replace t...
376
377
378
  	days    = div_s64_rem(secs, 86400, &rem);
  	minute  = rem / 60;
  	rem    -= minute * 60;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
379
380
381
  
  	ds->days = cpu_to_be32(days);
  	ds->mins = cpu_to_be32(minute);
db39c1672   DengChao   fs:affs:Replace t...
382
  	ds->ticks = cpu_to_be32(rem * 50);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
383
  }
a760b03dc   Al Viro   affs: propagate u...
384
  umode_t
c16182085   Fabian Frederick   fs/affs: add pref...
385
  affs_prot_to_mode(u32 prot)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
386
  {
a760b03dc   Al Viro   affs: propagate u...
387
  	umode_t mode = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
388
389
  
  	if (!(prot & FIBF_NOWRITE))
1bafd6f16   Fabian Frederick   fs/affs: use octa...
390
  		mode |= 0200;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
391
  	if (!(prot & FIBF_NOREAD))
1bafd6f16   Fabian Frederick   fs/affs: use octa...
392
  		mode |= 0400;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
393
  	if (!(prot & FIBF_NOEXECUTE))
1bafd6f16   Fabian Frederick   fs/affs: use octa...
394
  		mode |= 0100;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
395
  	if (prot & FIBF_GRP_WRITE)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
396
  		mode |= 0020;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
  	if (prot & FIBF_GRP_READ)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
398
  		mode |= 0040;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
399
  	if (prot & FIBF_GRP_EXECUTE)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
400
  		mode |= 0010;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
401
  	if (prot & FIBF_OTR_WRITE)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
402
  		mode |= 0002;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
403
  	if (prot & FIBF_OTR_READ)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
404
  		mode |= 0004;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
  	if (prot & FIBF_OTR_EXECUTE)
1bafd6f16   Fabian Frederick   fs/affs: use octa...
406
  		mode |= 0001;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
408
409
410
411
  
  	return mode;
  }
  
  void
c16182085   Fabian Frederick   fs/affs: add pref...
412
  affs_mode_to_prot(struct inode *inode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
413
414
  {
  	u32 prot = AFFS_I(inode)->i_protect;
a760b03dc   Al Viro   affs: propagate u...
415
  	umode_t mode = inode->i_mode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
416

1bafd6f16   Fabian Frederick   fs/affs: use octa...
417
  	if (!(mode & 0100))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
418
  		prot |= FIBF_NOEXECUTE;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
419
  	if (!(mode & 0400))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
420
  		prot |= FIBF_NOREAD;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
421
  	if (!(mode & 0200))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
422
  		prot |= FIBF_NOWRITE;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
423
  	if (mode & 0010)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
424
  		prot |= FIBF_GRP_EXECUTE;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
425
  	if (mode & 0040)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
426
  		prot |= FIBF_GRP_READ;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
427
  	if (mode & 0020)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
428
  		prot |= FIBF_GRP_WRITE;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
429
  	if (mode & 0001)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
430
  		prot |= FIBF_OTR_EXECUTE;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
431
  	if (mode & 0004)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
432
  		prot |= FIBF_OTR_READ;
1bafd6f16   Fabian Frederick   fs/affs: use octa...
433
  	if (mode & 0002)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
434
435
436
437
438
439
440
441
  		prot |= FIBF_OTR_WRITE;
  
  	AFFS_I(inode)->i_protect = prot;
  }
  
  void
  affs_error(struct super_block *sb, const char *function, const char *fmt, ...)
  {
1ee54b099   Fabian Frederick   fs/affs/amigaffs....
442
443
  	struct va_format vaf;
  	va_list args;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
444

1ee54b099   Fabian Frederick   fs/affs/amigaffs....
445
446
447
448
449
  	va_start(args, fmt);
  	vaf.fmt = fmt;
  	vaf.va = &args;
  	pr_crit("error (device %s): %s(): %pV
  ", sb->s_id, function, &vaf);
bc98a42c1   David Howells   VFS: Convert sb->...
450
  	if (!sb_rdonly(sb))
0158de12b   Fabian Frederick   fs/affs: convert ...
451
452
  		pr_warn("Remounting filesystem read-only
  ");
1751e8a6c   Linus Torvalds   Rename superblock...
453
  	sb->s_flags |= SB_RDONLY;
1ee54b099   Fabian Frederick   fs/affs/amigaffs....
454
  	va_end(args);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
455
456
457
458
459
  }
  
  void
  affs_warning(struct super_block *sb, const char *function, const char *fmt, ...)
  {
1ee54b099   Fabian Frederick   fs/affs/amigaffs....
460
461
  	struct va_format vaf;
  	va_list args;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
462

1ee54b099   Fabian Frederick   fs/affs/amigaffs....
463
464
465
466
467
  	va_start(args, fmt);
  	vaf.fmt = fmt;
  	vaf.va = &args;
  	pr_warn("(device %s): %s(): %pV
  ", sb->s_id, function, &vaf);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
468
  	va_end(args);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
  }
8ca577223   Fabian Frederick   affs: add mount o...
470
471
472
  bool
  affs_nofilenametruncate(const struct dentry *dentry)
  {
e0b3f595d   Al Viro   affs ->d_compare(...
473
  	return affs_test_opt(AFFS_SB(dentry->d_sb)->s_flags, SF_NO_TRUNCATE);
8ca577223   Fabian Frederick   affs: add mount o...
474
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
475
476
477
  /* Check if the name is valid for a affs object. */
  
  int
8ca577223   Fabian Frederick   affs: add mount o...
478
  affs_check_name(const unsigned char *name, int len, bool notruncate)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
479
480
  {
  	int	 i;
f157853e4   Fabian Frederick   fs/affs: define A...
481
  	if (len > AFFSNAMEMAX) {
8ca577223   Fabian Frederick   affs: add mount o...
482
483
  		if (notruncate)
  			return -ENAMETOOLONG;
b4478e353   Fabian Frederick   fs/affs/amigaffs....
484
  		len = AFFSNAMEMAX;
8ca577223   Fabian Frederick   affs: add mount o...
485
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
  	for (i = 0; i < len; i++) {
  		if (name[i] < ' ' || name[i] == ':'
  		    || (name[i] > 0x7e && name[i] < 0xa0))
  			return -EINVAL;
  	}
  
  	return 0;
  }
  
  /* This function copies name to bstr, with at most 30
   * characters length. The bstr will be prepended by
   * a length byte.
   * NOTE: The name will must be already checked by
   *       affs_check_name()!
   */
  
  int
  affs_copy_name(unsigned char *bstr, struct dentry *dentry)
  {
f157853e4   Fabian Frederick   fs/affs: define A...
505
  	u32 len = min(dentry->d_name.len, AFFSNAMEMAX);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
506
507
508
509
510
  
  	*bstr++ = len;
  	memcpy(bstr, dentry->d_name.name, len);
  	return len;
  }