blob: de84f4d3e9eccdfee1381a80aca9552a3d506809 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/affs/namei.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1991 Linus Torvalds - minix filesystem
9 */
10
11#include "affs.h"
12
13typedef int (*toupper_t)(int);
14
15static int affs_toupper(int ch);
Linus Torvaldsda53be12013-05-21 15:22:44 -070016static int affs_hash_dentry(const struct dentry *, struct qstr *);
17static int affs_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +110018 unsigned int len, const char *str, const struct qstr *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019static int affs_intl_toupper(int ch);
Linus Torvaldsda53be12013-05-21 15:22:44 -070020static int affs_intl_hash_dentry(const struct dentry *, struct qstr *);
21static int affs_intl_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +110022 unsigned int len, const char *str, const struct qstr *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Al Viroe16404e2009-02-20 05:55:13 +000024const struct dentry_operations affs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .d_hash = affs_hash_dentry,
26 .d_compare = affs_compare_dentry,
27};
28
Al Viroa1298802011-01-12 16:45:19 -050029const struct dentry_operations affs_intl_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .d_hash = affs_intl_hash_dentry,
31 .d_compare = affs_intl_compare_dentry,
32};
33
34
35/* Simple toupper() for DOS\1 */
36
37static int
38affs_toupper(int ch)
39{
40 return ch >= 'a' && ch <= 'z' ? ch -= ('a' - 'A') : ch;
41}
42
43/* International toupper() for DOS\3 ("international") */
44
45static int
46affs_intl_toupper(int ch)
47{
48 return (ch >= 'a' && ch <= 'z') || (ch >= 0xE0
49 && ch <= 0xFE && ch != 0xF7) ?
50 ch - ('a' - 'A') : ch;
51}
52
53static inline toupper_t
54affs_get_toupper(struct super_block *sb)
55{
56 return AFFS_SB(sb)->s_flags & SF_INTL ? affs_intl_toupper : affs_toupper;
57}
58
59/*
60 * Note: the dentry argument is the parent dentry.
61 */
62static inline int
Fabian Frederick8ca57722014-04-07 15:39:01 -070063__affs_hash_dentry(struct qstr *qstr, toupper_t toupper, bool notruncate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 const u8 *name = qstr->name;
66 unsigned long hash;
67 int i;
68
Fabian Frederick8ca57722014-04-07 15:39:01 -070069 i = affs_check_name(qstr->name, qstr->len, notruncate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (i)
71 return i;
72
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);
78
79 return 0;
80}
81
82static int
Linus Torvaldsda53be12013-05-21 15:22:44 -070083affs_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Fabian Frederick8ca57722014-04-07 15:39:01 -070085 return __affs_hash_dentry(qstr, affs_toupper,
86 affs_nofilenametruncate(dentry));
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
Fabian Frederick8ca57722014-04-07 15:39:01 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static int
Linus Torvaldsda53be12013-05-21 15:22:44 -070091affs_intl_hash_dentry(const struct dentry *dentry, struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Fabian Frederick8ca57722014-04-07 15:39:01 -070093 return __affs_hash_dentry(qstr, affs_intl_toupper,
94 affs_nofilenametruncate(dentry));
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
Nick Piggin621e1552011-01-07 17:49:27 +110098static inline int __affs_compare_dentry(unsigned int len,
Fabian Frederick8ca57722014-04-07 15:39:01 -070099 const char *str, const struct qstr *name, toupper_t toupper,
100 bool notruncate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Nick Piggin621e1552011-01-07 17:49:27 +1100102 const u8 *aname = str;
103 const u8 *bname = name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Nick Piggin621e1552011-01-07 17:49:27 +1100105 /*
106 * 'str' is the name of an already existing dentry, so the name
107 * must be valid. 'name' must be validated first.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
109
Fabian Frederick8ca57722014-04-07 15:39:01 -0700110 if (affs_check_name(name->name, name->len, notruncate))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return 1;
112
Nick Piggin621e1552011-01-07 17:49:27 +1100113 /*
114 * If the names are longer than the allowed 30 chars,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * the excess is ignored, so their length may differ.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (len >= 30) {
Nick Piggin621e1552011-01-07 17:49:27 +1100118 if (name->len < 30)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return 1;
120 len = 30;
Nick Piggin621e1552011-01-07 17:49:27 +1100121 } else if (len != name->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 1;
123
124 for (; len > 0; len--)
125 if (toupper(*aname++) != toupper(*bname++))
126 return 1;
127
128 return 0;
129}
130
131static int
Linus Torvaldsda53be12013-05-21 15:22:44 -0700132affs_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100133 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Fabian Frederick8ca57722014-04-07 15:39:01 -0700135
136 return __affs_compare_dentry(len, str, name, affs_toupper,
137 affs_nofilenametruncate(parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
Fabian Frederick8ca57722014-04-07 15:39:01 -0700139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static int
Linus Torvaldsda53be12013-05-21 15:22:44 -0700141affs_intl_compare_dentry(const struct dentry *parent, const struct dentry *dentry,
Nick Piggin621e1552011-01-07 17:49:27 +1100142 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Fabian Frederick8ca57722014-04-07 15:39:01 -0700144 return __affs_compare_dentry(len, str, name, affs_intl_toupper,
145 affs_nofilenametruncate(parent));
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
150 * NOTE! unlike strncmp, affs_match returns 1 for success, 0 for failure.
151 */
152
153static inline int
154affs_match(struct dentry *dentry, const u8 *name2, toupper_t toupper)
155{
156 const u8 *name = dentry->d_name.name;
157 int len = dentry->d_name.len;
158
159 if (len >= 30) {
160 if (*name2 < 30)
161 return 0;
162 len = 30;
163 } else if (len != *name2)
164 return 0;
165
166 for (name2++; len > 0; len--)
167 if (toupper(*name++) != toupper(*name2++))
168 return 0;
169 return 1;
170}
171
172int
173affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len)
174{
175 toupper_t toupper = affs_get_toupper(sb);
176 int hash;
177
178 hash = len = min(len, 30u);
179 for (; len > 0; len--)
180 hash = (hash * 13 + toupper(*name++)) & 0x7ff;
181
182 return hash % AFFS_SB(sb)->s_hashsize;
183}
184
185static struct buffer_head *
186affs_find_entry(struct inode *dir, struct dentry *dentry)
187{
188 struct super_block *sb = dir->i_sb;
189 struct buffer_head *bh;
190 toupper_t toupper = affs_get_toupper(sb);
191 u32 key;
192
Al Viroa4555892014-10-21 20:11:25 -0400193 pr_debug("%s(\"%pd\")\n", __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 bh = affs_bread(sb, dir->i_ino);
196 if (!bh)
197 return ERR_PTR(-EIO);
198
199 key = be32_to_cpu(AFFS_HEAD(bh)->table[affs_hash_name(sb, dentry->d_name.name, dentry->d_name.len)]);
200
201 for (;;) {
202 affs_brelse(bh);
203 if (key == 0)
204 return NULL;
205 bh = affs_bread(sb, key);
206 if (!bh)
207 return ERR_PTR(-EIO);
208 if (affs_match(dentry, AFFS_TAIL(sb, bh)->name, toupper))
209 return bh;
210 key = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain);
211 }
212}
213
214struct dentry *
Al Viro00cd8dd2012-06-10 17:13:09 -0400215affs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 struct super_block *sb = dir->i_sb;
218 struct buffer_head *bh;
219 struct inode *inode = NULL;
220
Al Viroa4555892014-10-21 20:11:25 -0400221 pr_debug("%s(\"%pd\")\n", __func__, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 affs_lock_dir(dir);
224 bh = affs_find_entry(dir, dentry);
225 affs_unlock_dir(dir);
David Howells210f8552008-02-07 00:15:29 -0800226 if (IS_ERR(bh))
David Howellse231c2e2008-02-07 00:15:26 -0800227 return ERR_CAST(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (bh) {
229 u32 ino = bh->b_blocknr;
230
231 /* store the real header ino in d_fsdata for faster lookups */
232 dentry->d_fsdata = (void *)(long)ino;
233 switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
234 //link to dirs disabled
235 //case ST_LINKDIR:
236 case ST_LINKFILE:
237 ino = be32_to_cpu(AFFS_TAIL(sb, bh)->original);
238 }
239 affs_brelse(bh);
David Howells210f8552008-02-07 00:15:29 -0800240 inode = affs_iget(sb, ino);
241 if (IS_ERR(inode))
Julia Lawallcccad8f2010-05-26 14:44:23 -0700242 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 d_add(dentry, inode);
245 return NULL;
246}
247
248int
249affs_unlink(struct inode *dir, struct dentry *dentry)
250{
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800251 pr_debug("%s(dir=%lu, %lu \"%pd\")\n", __func__, dir->i_ino,
252 dentry->d_inode->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 return affs_remove_header(dentry);
255}
256
257int
Al Viroebfc3b42012-06-10 18:05:36 -0400258affs_create(struct inode *dir, struct dentry *dentry, umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 struct super_block *sb = dir->i_sb;
261 struct inode *inode;
262 int error;
263
Al Viroa4555892014-10-21 20:11:25 -0400264 pr_debug("%s(%lu,\"%pd\",0%ho)\n",
265 __func__, dir->i_ino, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 inode = affs_new_inode(dir);
268 if (!inode)
269 return -ENOSPC;
270
271 inode->i_mode = mode;
272 mode_to_prot(inode);
273 mark_inode_dirty(inode);
274
275 inode->i_op = &affs_file_inode_operations;
276 inode->i_fop = &affs_file_operations;
277 inode->i_mapping->a_ops = (AFFS_SB(sb)->s_flags & SF_OFS) ? &affs_aops_ofs : &affs_aops;
278 error = affs_add_entry(dir, inode, dentry, ST_FILE);
279 if (error) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200280 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 iput(inode);
282 return error;
283 }
284 return 0;
285}
286
287int
Al Viro18bb1db2011-07-26 01:41:39 -0400288affs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct inode *inode;
291 int error;
292
Al Viroa4555892014-10-21 20:11:25 -0400293 pr_debug("%s(%lu,\"%pd\",0%ho)\n",
294 __func__, dir->i_ino, dentry, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 inode = affs_new_inode(dir);
297 if (!inode)
298 return -ENOSPC;
299
300 inode->i_mode = S_IFDIR | mode;
301 mode_to_prot(inode);
302
303 inode->i_op = &affs_dir_inode_operations;
304 inode->i_fop = &affs_dir_operations;
305
306 error = affs_add_entry(dir, inode, dentry, ST_USERDIR);
307 if (error) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200308 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 mark_inode_dirty(inode);
310 iput(inode);
311 return error;
312 }
313 return 0;
314}
315
316int
317affs_rmdir(struct inode *dir, struct dentry *dentry)
318{
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800319 pr_debug("%s(dir=%lu, %lu \"%pd\")\n", __func__, dir->i_ino,
320 dentry->d_inode->i_ino, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 return affs_remove_header(dentry);
323}
324
325int
326affs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
327{
328 struct super_block *sb = dir->i_sb;
329 struct buffer_head *bh;
330 struct inode *inode;
331 char *p;
332 int i, maxlen, error;
333 char c, lc;
334
Al Viroa4555892014-10-21 20:11:25 -0400335 pr_debug("%s(%lu,\"%pd\" -> \"%s\")\n",
336 __func__, dir->i_ino, dentry, symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 maxlen = AFFS_SB(sb)->s_hashsize * sizeof(u32) - 1;
339 inode = affs_new_inode(dir);
340 if (!inode)
341 return -ENOSPC;
342
343 inode->i_op = &affs_symlink_inode_operations;
344 inode->i_data.a_ops = &affs_symlink_aops;
345 inode->i_mode = S_IFLNK | 0777;
346 mode_to_prot(inode);
347
348 error = -EIO;
349 bh = affs_bread(sb, inode->i_ino);
350 if (!bh)
351 goto err;
352 i = 0;
353 p = (char *)AFFS_HEAD(bh)->table;
354 lc = '/';
355 if (*symname == '/') {
Al Viro29333922010-01-24 00:04:07 -0500356 struct affs_sb_info *sbi = AFFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 while (*symname == '/')
358 symname++;
Al Viro29333922010-01-24 00:04:07 -0500359 spin_lock(&sbi->symlink_lock);
360 while (sbi->s_volume[i]) /* Cannot overflow */
361 *p++ = sbi->s_volume[i++];
362 spin_unlock(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
364 while (i < maxlen && (c = *symname++)) {
365 if (c == '.' && lc == '/' && *symname == '.' && symname[1] == '/') {
366 *p++ = '/';
367 i++;
368 symname += 2;
369 lc = '/';
370 } else if (c == '.' && lc == '/' && *symname == '/') {
371 symname++;
372 lc = '/';
373 } else {
374 *p++ = c;
375 lc = c;
376 i++;
377 }
378 if (lc == '/')
379 while (*symname == '/')
380 symname++;
381 }
382 *p = 0;
383 mark_buffer_dirty_inode(bh, inode);
384 affs_brelse(bh);
385 mark_inode_dirty(inode);
386
387 error = affs_add_entry(dir, inode, dentry, ST_SOFTLINK);
388 if (error)
389 goto err;
390
391 return 0;
392
393err:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200394 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 mark_inode_dirty(inode);
396 iput(inode);
397 return error;
398}
399
400int
401affs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
402{
403 struct inode *inode = old_dentry->d_inode;
404
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800405 pr_debug("%s(%lu, %lu, \"%pd\")\n", __func__, inode->i_ino, dir->i_ino,
Al Viroa4555892014-10-21 20:11:25 -0400406 dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 return affs_add_entry(dir, inode, dentry, ST_LINKFILE);
409}
410
411int
412affs_rename(struct inode *old_dir, struct dentry *old_dentry,
413 struct inode *new_dir, struct dentry *new_dentry)
414{
415 struct super_block *sb = old_dir->i_sb;
416 struct buffer_head *bh = NULL;
417 int retval;
418
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800419 pr_debug("%s(old=%lu,\"%pd\" to new=%lu,\"%pd\")\n", __func__,
420 old_dir->i_ino, old_dentry, new_dir->i_ino, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Fabian Frederick8ca57722014-04-07 15:39:01 -0700422 retval = affs_check_name(new_dentry->d_name.name,
423 new_dentry->d_name.len,
424 affs_nofilenametruncate(old_dentry));
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (retval)
427 return retval;
428
429 /* Unlink destination if it already exists */
430 if (new_dentry->d_inode) {
431 retval = affs_remove_header(new_dentry);
432 if (retval)
433 return retval;
434 }
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 bh = affs_bread(sb, old_dentry->d_inode->i_ino);
437 if (!bh)
Florin Malita3ac81412006-05-25 18:44:23 -0700438 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Remove header from its parent directory. */
441 affs_lock_dir(old_dir);
442 retval = affs_remove_hash(old_dir, bh);
443 affs_unlock_dir(old_dir);
444 if (retval)
445 goto done;
446
447 /* And insert it into the new directory with the new name. */
448 affs_copy_name(AFFS_TAIL(sb, bh)->name, new_dentry);
449 affs_fix_checksum(sb, bh);
450 affs_lock_dir(new_dir);
451 retval = affs_insert_hash(new_dir, bh);
452 affs_unlock_dir(new_dir);
453 /* TODO: move it back to old_dir, if error? */
454
455done:
456 mark_buffer_dirty_inode(bh, retval ? old_dir : new_dir);
457 affs_brelse(bh);
458 return retval;
459}