Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6/btrfs-unstable.git] / fs / affs / namei.c
blobc36cbb4537a26e0348a44f0ec7a65f64ac3204bf
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 *parent, 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 *parent, 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_SB(sb)->s_flags & SF_INTL ? affs_intl_toupper : affs_toupper;
60 * Note: the dentry argument is the parent dentry.
62 static inline int
63 __affs_hash_dentry(struct qstr *qstr, toupper_t toupper)
65 const u8 *name = qstr->name;
66 unsigned long hash;
67 int i;
69 i = affs_check_name(qstr->name, qstr->len);
70 if (i)
71 return i;
73 hash = init_name_hash();
74 i = min(qstr->len, 30u);
75 for (; i > 0; name++, i--)
76 hash = partial_name_hash(toupper(*name), hash);
77 qstr->hash = end_name_hash(hash);
79 return 0;
82 static int
83 affs_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
85 return __affs_hash_dentry(qstr, affs_toupper);
87 static int
88 affs_intl_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
90 return __affs_hash_dentry(qstr, affs_intl_toupper);
93 static inline int __affs_compare_dentry(unsigned int len,
94 const char *str, const struct qstr *name, toupper_t toupper)
96 const u8 *aname = str;
97 const u8 *bname = name->name;
100 * 'str' is the name of an already existing dentry, so the name
101 * must be valid. 'name' must be validated first.
104 if (affs_check_name(name->name, name->len))
105 return 1;
108 * If the names are longer than the allowed 30 chars,
109 * the excess is ignored, so their length may differ.
111 if (len >= 30) {
112 if (name->len < 30)
113 return 1;
114 len = 30;
115 } else if (len != name->len)
116 return 1;
118 for (; len > 0; len--)
119 if (toupper(*aname++) != toupper(*bname++))
120 return 1;
122 return 0;
125 static int
126 affs_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
127 unsigned int len, const char *str, const struct qstr *name)
129 return __affs_compare_dentry(len, str, name, affs_toupper);
131 static int
132 affs_intl_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
133 unsigned int len, const char *str, const struct qstr *name)
135 return __affs_compare_dentry(len, str, name, affs_intl_toupper);
139 * NOTE! unlike strncmp, affs_match returns 1 for success, 0 for failure.
142 static inline int
143 affs_match(struct dentry *dentry, const u8 *name2, toupper_t toupper)
145 const u8 *name = dentry->d_name.name;
146 int len = dentry->d_name.len;
148 if (len >= 30) {
149 if (*name2 < 30)
150 return 0;
151 len = 30;
152 } else if (len != *name2)
153 return 0;
155 for (name2++; len > 0; len--)
156 if (toupper(*name++) != toupper(*name2++))
157 return 0;
158 return 1;
162 affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len)
164 toupper_t toupper = affs_get_toupper(sb);
165 int hash;
167 hash = len = min(len, 30u);
168 for (; len > 0; len--)
169 hash = (hash * 13 + toupper(*name++)) & 0x7ff;
171 return hash % AFFS_SB(sb)->s_hashsize;
174 static struct buffer_head *
175 affs_find_entry(struct inode *dir, struct dentry *dentry)
177 struct super_block *sb = dir->i_sb;
178 struct buffer_head *bh;
179 toupper_t toupper = affs_get_toupper(sb);
180 u32 key;
182 pr_debug("AFFS: find_entry(\"%.*s\")\n", (int)dentry->d_name.len, dentry->d_name.name);
184 bh = affs_bread(sb, dir->i_ino);
185 if (!bh)
186 return ERR_PTR(-EIO);
188 key = be32_to_cpu(AFFS_HEAD(bh)->table[affs_hash_name(sb, dentry->d_name.name, dentry->d_name.len)]);
190 for (;;) {
191 affs_brelse(bh);
192 if (key == 0)
193 return NULL;
194 bh = affs_bread(sb, key);
195 if (!bh)
196 return ERR_PTR(-EIO);
197 if (affs_match(dentry, AFFS_TAIL(sb, bh)->name, toupper))
198 return bh;
199 key = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain);
203 struct dentry *
204 affs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
206 struct super_block *sb = dir->i_sb;
207 struct buffer_head *bh;
208 struct inode *inode = NULL;
210 pr_debug("AFFS: lookup(\"%.*s\")\n",(int)dentry->d_name.len,dentry->d_name.name);
212 affs_lock_dir(dir);
213 bh = affs_find_entry(dir, dentry);
214 affs_unlock_dir(dir);
215 if (IS_ERR(bh))
216 return ERR_CAST(bh);
217 if (bh) {
218 u32 ino = bh->b_blocknr;
220 /* store the real header ino in d_fsdata for faster lookups */
221 dentry->d_fsdata = (void *)(long)ino;
222 switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
223 //link to dirs disabled
224 //case ST_LINKDIR:
225 case ST_LINKFILE:
226 ino = be32_to_cpu(AFFS_TAIL(sb, bh)->original);
228 affs_brelse(bh);
229 inode = affs_iget(sb, ino);
230 if (IS_ERR(inode))
231 return ERR_CAST(inode);
233 d_add(dentry, inode);
234 return NULL;
238 affs_unlink(struct inode *dir, struct dentry *dentry)
240 pr_debug("AFFS: unlink(dir=%d, %lu \"%.*s\")\n", (u32)dir->i_ino,
241 dentry->d_inode->i_ino,
242 (int)dentry->d_name.len, dentry->d_name.name);
244 return affs_remove_header(dentry);
248 affs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
250 struct super_block *sb = dir->i_sb;
251 struct inode *inode;
252 int error;
254 pr_debug("AFFS: create(%lu,\"%.*s\",0%ho)\n",dir->i_ino,(int)dentry->d_name.len,
255 dentry->d_name.name,mode);
257 inode = affs_new_inode(dir);
258 if (!inode)
259 return -ENOSPC;
261 inode->i_mode = mode;
262 mode_to_prot(inode);
263 mark_inode_dirty(inode);
265 inode->i_op = &affs_file_inode_operations;
266 inode->i_fop = &affs_file_operations;
267 inode->i_mapping->a_ops = (AFFS_SB(sb)->s_flags & SF_OFS) ? &affs_aops_ofs : &affs_aops;
268 error = affs_add_entry(dir, inode, dentry, ST_FILE);
269 if (error) {
270 clear_nlink(inode);
271 iput(inode);
272 return error;
274 return 0;
278 affs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
280 struct inode *inode;
281 int error;
283 pr_debug("AFFS: mkdir(%lu,\"%.*s\",0%ho)\n",dir->i_ino,
284 (int)dentry->d_name.len,dentry->d_name.name,mode);
286 inode = affs_new_inode(dir);
287 if (!inode)
288 return -ENOSPC;
290 inode->i_mode = S_IFDIR | mode;
291 mode_to_prot(inode);
293 inode->i_op = &affs_dir_inode_operations;
294 inode->i_fop = &affs_dir_operations;
296 error = affs_add_entry(dir, inode, dentry, ST_USERDIR);
297 if (error) {
298 clear_nlink(inode);
299 mark_inode_dirty(inode);
300 iput(inode);
301 return error;
303 return 0;
307 affs_rmdir(struct inode *dir, struct dentry *dentry)
309 pr_debug("AFFS: rmdir(dir=%u, %lu \"%.*s\")\n", (u32)dir->i_ino,
310 dentry->d_inode->i_ino,
311 (int)dentry->d_name.len, dentry->d_name.name);
313 return affs_remove_header(dentry);
317 affs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
319 struct super_block *sb = dir->i_sb;
320 struct buffer_head *bh;
321 struct inode *inode;
322 char *p;
323 int i, maxlen, error;
324 char c, lc;
326 pr_debug("AFFS: symlink(%lu,\"%.*s\" -> \"%s\")\n",dir->i_ino,
327 (int)dentry->d_name.len,dentry->d_name.name,symname);
329 maxlen = AFFS_SB(sb)->s_hashsize * sizeof(u32) - 1;
330 inode = affs_new_inode(dir);
331 if (!inode)
332 return -ENOSPC;
334 inode->i_op = &affs_symlink_inode_operations;
335 inode->i_data.a_ops = &affs_symlink_aops;
336 inode->i_mode = S_IFLNK | 0777;
337 mode_to_prot(inode);
339 error = -EIO;
340 bh = affs_bread(sb, inode->i_ino);
341 if (!bh)
342 goto err;
343 i = 0;
344 p = (char *)AFFS_HEAD(bh)->table;
345 lc = '/';
346 if (*symname == '/') {
347 struct affs_sb_info *sbi = AFFS_SB(sb);
348 while (*symname == '/')
349 symname++;
350 spin_lock(&sbi->symlink_lock);
351 while (sbi->s_volume[i]) /* Cannot overflow */
352 *p++ = sbi->s_volume[i++];
353 spin_unlock(&sbi->symlink_lock);
355 while (i < maxlen && (c = *symname++)) {
356 if (c == '.' && lc == '/' && *symname == '.' && symname[1] == '/') {
357 *p++ = '/';
358 i++;
359 symname += 2;
360 lc = '/';
361 } else if (c == '.' && lc == '/' && *symname == '/') {
362 symname++;
363 lc = '/';
364 } else {
365 *p++ = c;
366 lc = c;
367 i++;
369 if (lc == '/')
370 while (*symname == '/')
371 symname++;
373 *p = 0;
374 mark_buffer_dirty_inode(bh, inode);
375 affs_brelse(bh);
376 mark_inode_dirty(inode);
378 error = affs_add_entry(dir, inode, dentry, ST_SOFTLINK);
379 if (error)
380 goto err;
382 return 0;
384 err:
385 clear_nlink(inode);
386 mark_inode_dirty(inode);
387 iput(inode);
388 return error;
392 affs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
394 struct inode *inode = old_dentry->d_inode;
396 pr_debug("AFFS: link(%u, %u, \"%.*s\")\n", (u32)inode->i_ino, (u32)dir->i_ino,
397 (int)dentry->d_name.len,dentry->d_name.name);
399 return affs_add_entry(dir, inode, dentry, ST_LINKFILE);
403 affs_rename(struct inode *old_dir, struct dentry *old_dentry,
404 struct inode *new_dir, struct dentry *new_dentry)
406 struct super_block *sb = old_dir->i_sb;
407 struct buffer_head *bh = NULL;
408 int retval;
410 pr_debug("AFFS: rename(old=%u,\"%*s\" to new=%u,\"%*s\")\n",
411 (u32)old_dir->i_ino, (int)old_dentry->d_name.len, old_dentry->d_name.name,
412 (u32)new_dir->i_ino, (int)new_dentry->d_name.len, new_dentry->d_name.name);
414 retval = affs_check_name(new_dentry->d_name.name,new_dentry->d_name.len);
415 if (retval)
416 return retval;
418 /* Unlink destination if it already exists */
419 if (new_dentry->d_inode) {
420 retval = affs_remove_header(new_dentry);
421 if (retval)
422 return retval;
425 bh = affs_bread(sb, old_dentry->d_inode->i_ino);
426 if (!bh)
427 return -EIO;
429 /* Remove header from its parent directory. */
430 affs_lock_dir(old_dir);
431 retval = affs_remove_hash(old_dir, bh);
432 affs_unlock_dir(old_dir);
433 if (retval)
434 goto done;
436 /* And insert it into the new directory with the new name. */
437 affs_copy_name(AFFS_TAIL(sb, bh)->name, new_dentry);
438 affs_fix_checksum(sb, bh);
439 affs_lock_dir(new_dir);
440 retval = affs_insert_hash(new_dir, bh);
441 affs_unlock_dir(new_dir);
442 /* TODO: move it back to old_dir, if error? */
444 done:
445 mark_buffer_dirty_inode(bh, retval ? old_dir : new_dir);
446 affs_brelse(bh);
447 return retval;