blob: 05d4816e4e774abd72e738c1d62761ceb824885f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hpfs/dentry.c
3 *
4 * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
5 *
6 * dcache operations
7 */
8
9#include "hpfs_fn.h"
10
11/*
12 * Note: the dentry argument is the parent dentry.
13 */
14
Nick Pigginb1e6a012011-01-07 17:49:28 +110015static int hpfs_hash_dentry(const struct dentry *dentry, const struct inode *inode,
16 struct qstr *qstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
18 unsigned long hash;
19 int i;
20 unsigned l = qstr->len;
21
22 if (l == 1) if (qstr->name[0]=='.') goto x;
23 if (l == 2) if (qstr->name[0]=='.' || qstr->name[1]=='.') goto x;
Al Viro7e7742e2010-01-31 17:09:29 -050024 hpfs_adjust_length(qstr->name, &l);
25 /*if (hpfs_chk_name(qstr->name,&l))*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 /*return -ENAMETOOLONG;*/
27 /*return -ENOENT;*/
28 x:
29
30 hash = init_name_hash();
31 for (i = 0; i < l; i++)
32 hash = partial_name_hash(hpfs_upcase(hpfs_sb(dentry->d_sb)->sb_cp_table,qstr->name[i]), hash);
33 qstr->hash = end_name_hash(hash);
34
35 return 0;
36}
37
Nick Piggin621e1552011-01-07 17:49:27 +110038static int hpfs_compare_dentry(const struct dentry *parent,
39 const struct inode *pinode,
40 const struct dentry *dentry, const struct inode *inode,
41 unsigned int len, const char *str, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Nick Piggin621e1552011-01-07 17:49:27 +110043 unsigned al = len;
44 unsigned bl = name->len;
45
46 hpfs_adjust_length(str, &al);
Al Viro7e7742e2010-01-31 17:09:29 -050047 /*hpfs_adjust_length(b->name, &bl);*/
Nick Piggin621e1552011-01-07 17:49:27 +110048
49 /*
50 * 'str' is the nane of an already existing dentry, so the name
51 * must be valid. 'name' must be validated first.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 */
53
Nick Piggin621e1552011-01-07 17:49:27 +110054 if (hpfs_chk_name(name->name, &bl))
Al Viro7e7742e2010-01-31 17:09:29 -050055 return 1;
Nick Piggin621e1552011-01-07 17:49:27 +110056 if (hpfs_compare_names(parent->d_sb, str, al, name->name, bl, 0))
Al Viro7e7742e2010-01-31 17:09:29 -050057 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 return 0;
59}
60
Al Viro43d344d2011-01-12 16:12:05 -050061const struct dentry_operations hpfs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 .d_hash = hpfs_hash_dentry,
63 .d_compare = hpfs_compare_dentry,
64};