ARM: iop: don't use using 64-bit DMA masks
[linux/fpc-iii.git] / fs / affs / namei.c
blob2d4d4952e95108d61272716f2da50b60979559e8
1 /*
2 * linux/fs/affs/namei.c
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 * (C) 1991 Linus Torvalds - minix filesystem
9 */
11 #include "affs.h"
13 typedef int (*toupper_t)(int);
15 static int affs_toupper(int ch);
16 static int affs_hash_dentry(const struct dentry *, struct qstr *);
17 static int affs_compare_dentry(const struct dentry *dentry,
18 unsigned int len, const char *str, const struct qstr *name);
19 static int affs_intl_toupper(int ch);
20 static int affs_intl_hash_dentry(const struct dentry *, struct qstr *);
21 static int affs_intl_compare_dentry(const struct dentry *dentry,
22 unsigned int len, const char *str, const struct qstr *name);
24 const struct dentry_operations affs_dentry_operations = {
25 .d_hash = affs_hash_dentry,
26 .d_compare = affs_compare_dentry,
29 const struct dentry_operations affs_intl_dentry_operations = {
30 .d_hash = affs_intl_hash_dentry,
31 .d_compare = affs_intl_compare_dentry,
35 /* Simple toupper() for DOS\1 */
37 static int
38 affs_toupper(int ch)
40 return ch >= 'a' && ch <= 'z' ? ch -= ('a' - 'A') : ch;
43 /* International toupper() for DOS\3 ("international") */
45 static int
46 affs_intl_toupper(int ch)
48 return (ch >= 'a' && ch <= 'z') || (ch >= 0xE0
49 && ch <= 0xFE && ch != 0xF7) ?
50 ch - ('a' - 'A') : ch;
53 static inline toupper_t
54 affs_get_toupper(struct super_block *sb)
56 return affs_test_opt(AFFS_SB(sb)->s_flags, SF_INTL) ?
57 affs_intl_toupper : affs_toupper;
61 * Note: the dentry argument is the parent dentry.
63 static inline int
64 __affs_hash_dentry(const struct dentry *dentry, struct qstr *qstr, toupper_t toupper, bool notruncate)
66 const u8 *name = qstr->name;
67 unsigned long hash;
68 int retval;
69 u32 len;
71 retval = affs_check_name(qstr->name, qstr->len, notruncate);
72 if (retval)
73 return retval;
75 hash = init_name_hash(dentry);
76 len = min(qstr->len, AFFSNAMEMAX);
77 for (; len > 0; name++, len--)
78 hash = partial_name_hash(toupper(*name), hash);
79 qstr->hash = end_name_hash(hash);
81 return 0;
84 static int
85 affs_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
87 return __affs_hash_dentry(dentry, qstr, affs_toupper,
88 affs_nofilenametruncate(dentry));
92 static int
93 affs_intl_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
95 return __affs_hash_dentry(dentry, qstr, affs_intl_toupper,
96 affs_nofilenametruncate(dentry));
100 static inline int __affs_compare_dentry(unsigned int len,
101 const char *str, const struct qstr *name, toupper_t toupper,
102 bool notruncate)
104 const u8 *aname = str;
105 const u8 *bname = name->name;
108 * 'str' is the name of an already existing dentry, so the name
109 * must be valid. 'name' must be validated first.
112 if (affs_check_name(name->name, name->len, notruncate))
113 return 1;
116 * If the names are longer than the allowed 30 chars,
117 * the excess is ignored, so their length may differ.
119 if (len >= AFFSNAMEMAX) {
120 if (name->len < AFFSNAMEMAX)
121 return 1;
122 len = AFFSNAMEMAX;
123 } else if (len != name->len)
124 return 1;
126 for (; len > 0; len--)
127 if (toupper(*aname++) != toupper(*bname++))
128 return 1;
130 return 0;
133 static int
134 affs_compare_dentry(const struct dentry *dentry,
135 unsigned int len, const char *str, const struct qstr *name)
138 return __affs_compare_dentry(len, str, name, affs_toupper,
139 affs_nofilenametruncate(dentry));
142 static int
143 affs_intl_compare_dentry(const struct dentry *dentry,
144 unsigned int len, const char *str, const struct qstr *name)
146 return __affs_compare_dentry(len, str, name, affs_intl_toupper,
147 affs_nofilenametruncate(dentry));
152 * NOTE! unlike strncmp, affs_match returns 1 for success, 0 for failure.
155 static inline int
156 affs_match(struct dentry *dentry, const u8 *name2, toupper_t toupper)
158 const u8 *name = dentry->d_name.name;
159 int len = dentry->d_name.len;
161 if (len >= AFFSNAMEMAX) {
162 if (*name2 < AFFSNAMEMAX)
163 return 0;
164 len = AFFSNAMEMAX;
165 } else if (len != *name2)
166 return 0;
168 for (name2++; len > 0; len--)
169 if (toupper(*name++) != toupper(*name2++))
170 return 0;
171 return 1;
175 affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len)
177 toupper_t toupper = affs_get_toupper(sb);
178 u32 hash;
180 hash = len = min(len, AFFSNAMEMAX);
181 for (; len > 0; len--)
182 hash = (hash * 13 + toupper(*name++)) & 0x7ff;
184 return hash % AFFS_SB(sb)->s_hashsize;
187 static struct buffer_head *
188 affs_find_entry(struct inode *dir, struct dentry *dentry)
190 struct super_block *sb = dir->i_sb;
191 struct buffer_head *bh;
192 toupper_t toupper = affs_get_toupper(sb);
193 u32 key;
195 pr_debug("%s(\"%pd\")\n", __func__, dentry);
197 bh = affs_bread(sb, dir->i_ino);
198 if (!bh)
199 return ERR_PTR(-EIO);
201 key = be32_to_cpu(AFFS_HEAD(bh)->table[affs_hash_name(sb, dentry->d_name.name, dentry->d_name.len)]);
203 for (;;) {
204 affs_brelse(bh);
205 if (key == 0)
206 return NULL;
207 bh = affs_bread(sb, key);
208 if (!bh)
209 return ERR_PTR(-EIO);
210 if (affs_match(dentry, AFFS_TAIL(sb, bh)->name, toupper))
211 return bh;
212 key = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain);
216 struct dentry *
217 affs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
219 struct super_block *sb = dir->i_sb;
220 struct buffer_head *bh;
221 struct inode *inode = NULL;
223 pr_debug("%s(\"%pd\")\n", __func__, dentry);
225 affs_lock_dir(dir);
226 bh = affs_find_entry(dir, dentry);
227 if (IS_ERR(bh)) {
228 affs_unlock_dir(dir);
229 return ERR_CAST(bh);
231 if (bh) {
232 u32 ino = bh->b_blocknr;
234 /* store the real header ino in d_fsdata for faster lookups */
235 dentry->d_fsdata = (void *)(long)ino;
236 switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
237 //link to dirs disabled
238 //case ST_LINKDIR:
239 case ST_LINKFILE:
240 ino = be32_to_cpu(AFFS_TAIL(sb, bh)->original);
242 affs_brelse(bh);
243 inode = affs_iget(sb, ino);
244 if (IS_ERR(inode)) {
245 affs_unlock_dir(dir);
246 return ERR_CAST(inode);
249 d_add(dentry, inode);
250 affs_unlock_dir(dir);
251 return NULL;
255 affs_unlink(struct inode *dir, struct dentry *dentry)
257 pr_debug("%s(dir=%lu, %lu \"%pd\")\n", __func__, dir->i_ino,
258 d_inode(dentry)->i_ino, dentry);
260 return affs_remove_header(dentry);
264 affs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
266 struct super_block *sb = dir->i_sb;
267 struct inode *inode;
268 int error;
270 pr_debug("%s(%lu,\"%pd\",0%ho)\n",
271 __func__, dir->i_ino, dentry, mode);
273 inode = affs_new_inode(dir);
274 if (!inode)
275 return -ENOSPC;
277 inode->i_mode = mode;
278 mode_to_prot(inode);
279 mark_inode_dirty(inode);
281 inode->i_op = &affs_file_inode_operations;
282 inode->i_fop = &affs_file_operations;
283 inode->i_mapping->a_ops = affs_test_opt(AFFS_SB(sb)->s_flags, SF_OFS) ?
284 &affs_aops_ofs : &affs_aops;
285 error = affs_add_entry(dir, inode, dentry, ST_FILE);
286 if (error) {
287 clear_nlink(inode);
288 iput(inode);
289 return error;
291 return 0;
295 affs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
297 struct inode *inode;
298 int error;
300 pr_debug("%s(%lu,\"%pd\",0%ho)\n",
301 __func__, dir->i_ino, dentry, mode);
303 inode = affs_new_inode(dir);
304 if (!inode)
305 return -ENOSPC;
307 inode->i_mode = S_IFDIR | mode;
308 mode_to_prot(inode);
310 inode->i_op = &affs_dir_inode_operations;
311 inode->i_fop = &affs_dir_operations;
313 error = affs_add_entry(dir, inode, dentry, ST_USERDIR);
314 if (error) {
315 clear_nlink(inode);
316 mark_inode_dirty(inode);
317 iput(inode);
318 return error;
320 return 0;
324 affs_rmdir(struct inode *dir, struct dentry *dentry)
326 pr_debug("%s(dir=%lu, %lu \"%pd\")\n", __func__, dir->i_ino,
327 d_inode(dentry)->i_ino, dentry);
329 return affs_remove_header(dentry);
333 affs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
335 struct super_block *sb = dir->i_sb;
336 struct buffer_head *bh;
337 struct inode *inode;
338 char *p;
339 int i, maxlen, error;
340 char c, lc;
342 pr_debug("%s(%lu,\"%pd\" -> \"%s\")\n",
343 __func__, dir->i_ino, dentry, symname);
345 maxlen = AFFS_SB(sb)->s_hashsize * sizeof(u32) - 1;
346 inode = affs_new_inode(dir);
347 if (!inode)
348 return -ENOSPC;
350 inode->i_op = &affs_symlink_inode_operations;
351 inode_nohighmem(inode);
352 inode->i_data.a_ops = &affs_symlink_aops;
353 inode->i_mode = S_IFLNK | 0777;
354 mode_to_prot(inode);
356 error = -EIO;
357 bh = affs_bread(sb, inode->i_ino);
358 if (!bh)
359 goto err;
360 i = 0;
361 p = (char *)AFFS_HEAD(bh)->table;
362 lc = '/';
363 if (*symname == '/') {
364 struct affs_sb_info *sbi = AFFS_SB(sb);
365 while (*symname == '/')
366 symname++;
367 spin_lock(&sbi->symlink_lock);
368 while (sbi->s_volume[i]) /* Cannot overflow */
369 *p++ = sbi->s_volume[i++];
370 spin_unlock(&sbi->symlink_lock);
372 while (i < maxlen && (c = *symname++)) {
373 if (c == '.' && lc == '/' && *symname == '.' && symname[1] == '/') {
374 *p++ = '/';
375 i++;
376 symname += 2;
377 lc = '/';
378 } else if (c == '.' && lc == '/' && *symname == '/') {
379 symname++;
380 lc = '/';
381 } else {
382 *p++ = c;
383 lc = c;
384 i++;
386 if (lc == '/')
387 while (*symname == '/')
388 symname++;
390 *p = 0;
391 mark_buffer_dirty_inode(bh, inode);
392 affs_brelse(bh);
393 mark_inode_dirty(inode);
395 error = affs_add_entry(dir, inode, dentry, ST_SOFTLINK);
396 if (error)
397 goto err;
399 return 0;
401 err:
402 clear_nlink(inode);
403 mark_inode_dirty(inode);
404 iput(inode);
405 return error;
409 affs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
411 struct inode *inode = d_inode(old_dentry);
413 pr_debug("%s(%lu, %lu, \"%pd\")\n", __func__, inode->i_ino, dir->i_ino,
414 dentry);
416 return affs_add_entry(dir, inode, dentry, ST_LINKFILE);
420 affs_rename(struct inode *old_dir, struct dentry *old_dentry,
421 struct inode *new_dir, struct dentry *new_dentry,
422 unsigned int flags)
424 struct super_block *sb = old_dir->i_sb;
425 struct buffer_head *bh = NULL;
426 int retval;
428 if (flags & ~RENAME_NOREPLACE)
429 return -EINVAL;
431 pr_debug("%s(old=%lu,\"%pd\" to new=%lu,\"%pd\")\n", __func__,
432 old_dir->i_ino, old_dentry, new_dir->i_ino, new_dentry);
434 retval = affs_check_name(new_dentry->d_name.name,
435 new_dentry->d_name.len,
436 affs_nofilenametruncate(old_dentry));
438 if (retval)
439 return retval;
441 /* Unlink destination if it already exists */
442 if (d_really_is_positive(new_dentry)) {
443 retval = affs_remove_header(new_dentry);
444 if (retval)
445 return retval;
448 bh = affs_bread(sb, d_inode(old_dentry)->i_ino);
449 if (!bh)
450 return -EIO;
452 /* Remove header from its parent directory. */
453 affs_lock_dir(old_dir);
454 retval = affs_remove_hash(old_dir, bh);
455 affs_unlock_dir(old_dir);
456 if (retval)
457 goto done;
459 /* And insert it into the new directory with the new name. */
460 affs_copy_name(AFFS_TAIL(sb, bh)->name, new_dentry);
461 affs_fix_checksum(sb, bh);
462 affs_lock_dir(new_dir);
463 retval = affs_insert_hash(new_dir, bh);
464 affs_unlock_dir(new_dir);
465 /* TODO: move it back to old_dir, if error? */
467 done:
468 mark_buffer_dirty_inode(bh, retval ? old_dir : new_dir);
469 affs_brelse(bh);
470 return retval;