minix: bug widening a binary "not" operation
[linux-2.6-block.git] / fs / adfs / dir.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/adfs/dir.c
3 *
4 * Copyright (C) 1999-2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Common directory handling for ADFS
11 */
1da177e4
LT
12#include "adfs.h"
13
14/*
15 * For future. This should probably be per-directory.
16 */
17static DEFINE_RWLOCK(adfs_dir_lock);
18
19static int
2638ffba 20adfs_readdir(struct file *file, struct dir_context *ctx)
1da177e4 21{
2638ffba 22 struct inode *inode = file_inode(file);
1da177e4
LT
23 struct super_block *sb = inode->i_sb;
24 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
25 struct object_info obj;
26 struct adfs_dir dir;
27 int ret = 0;
28
2638ffba
AV
29 if (ctx->pos >> 32)
30 return 0;
1da177e4
LT
31
32 ret = ops->read(sb, inode->i_ino, inode->i_size, &dir);
33 if (ret)
2638ffba 34 return ret;
1da177e4 35
2638ffba
AV
36 if (ctx->pos == 0) {
37 if (!dir_emit_dot(file, ctx))
1da177e4 38 goto free_out;
2638ffba
AV
39 ctx->pos = 1;
40 }
41 if (ctx->pos == 1) {
42 if (!dir_emit(ctx, "..", 2, dir.parent_id, DT_DIR))
1da177e4 43 goto free_out;
2638ffba 44 ctx->pos = 2;
1da177e4
LT
45 }
46
47 read_lock(&adfs_dir_lock);
48
2638ffba 49 ret = ops->setpos(&dir, ctx->pos - 2);
1da177e4
LT
50 if (ret)
51 goto unlock_out;
52 while (ops->getnext(&dir, &obj) == 0) {
2638ffba
AV
53 if (!dir_emit(ctx, obj.name, obj.name_len,
54 obj.file_id, DT_UNKNOWN))
55 break;
56 ctx->pos++;
1da177e4
LT
57 }
58
59unlock_out:
60 read_unlock(&adfs_dir_lock);
61
62free_out:
63 ops->free(&dir);
1da177e4
LT
64 return ret;
65}
66
67int
ffdc9064 68adfs_dir_update(struct super_block *sb, struct object_info *obj, int wait)
1da177e4
LT
69{
70 int ret = -EINVAL;
71#ifdef CONFIG_ADFS_FS_RW
72 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
73 struct adfs_dir dir;
74
75 printk(KERN_INFO "adfs_dir_update: object %06X in dir %06X\n",
76 obj->file_id, obj->parent_id);
77
78 if (!ops->update) {
79 ret = -EINVAL;
80 goto out;
81 }
82
83 ret = ops->read(sb, obj->parent_id, 0, &dir);
84 if (ret)
85 goto out;
86
87 write_lock(&adfs_dir_lock);
88 ret = ops->update(&dir, obj);
89 write_unlock(&adfs_dir_lock);
90
ffdc9064
AV
91 if (wait) {
92 int err = ops->sync(&dir);
93 if (!ret)
94 ret = err;
95 }
96
1da177e4
LT
97 ops->free(&dir);
98out:
99#endif
100 return ret;
101}
102
103static int
104adfs_match(struct qstr *name, struct object_info *obj)
105{
106 int i;
107
108 if (name->len != obj->name_len)
109 return 0;
110
111 for (i = 0; i < name->len; i++) {
112 char c1, c2;
113
114 c1 = name->name[i];
115 c2 = obj->name[i];
116
117 if (c1 >= 'A' && c1 <= 'Z')
118 c1 += 'a' - 'A';
119 if (c2 >= 'A' && c2 <= 'Z')
120 c2 += 'a' - 'A';
121
122 if (c1 != c2)
123 return 0;
124 }
125 return 1;
126}
127
128static int
129adfs_dir_lookup_byname(struct inode *inode, struct qstr *name, struct object_info *obj)
130{
131 struct super_block *sb = inode->i_sb;
132 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
133 struct adfs_dir dir;
134 int ret;
135
136 ret = ops->read(sb, inode->i_ino, inode->i_size, &dir);
137 if (ret)
138 goto out;
139
140 if (ADFS_I(inode)->parent_id != dir.parent_id) {
141 adfs_error(sb, "parent directory changed under me! (%lx but got %lx)\n",
142 ADFS_I(inode)->parent_id, dir.parent_id);
143 ret = -EIO;
144 goto free_out;
145 }
146
147 obj->parent_id = inode->i_ino;
148
149 /*
150 * '.' is handled by reserved_lookup() in fs/namei.c
151 */
152 if (name->len == 2 && name->name[0] == '.' && name->name[1] == '.') {
153 /*
154 * Currently unable to fill in the rest of 'obj',
155 * but this is better than nothing. We need to
156 * ascend one level to find it's parent.
157 */
158 obj->name_len = 0;
159 obj->file_id = obj->parent_id;
160 goto free_out;
161 }
162
163 read_lock(&adfs_dir_lock);
164
165 ret = ops->setpos(&dir, 0);
166 if (ret)
167 goto unlock_out;
168
169 ret = -ENOENT;
170 while (ops->getnext(&dir, obj) == 0) {
171 if (adfs_match(name, obj)) {
172 ret = 0;
173 break;
174 }
175 }
176
177unlock_out:
178 read_unlock(&adfs_dir_lock);
179
180free_out:
181 ops->free(&dir);
182out:
183 return ret;
184}
185
4b6f5d20 186const struct file_operations adfs_dir_operations = {
1da177e4 187 .read = generic_read_dir,
59af1584 188 .llseek = generic_file_llseek,
2638ffba 189 .iterate = adfs_readdir,
1b061d92 190 .fsync = generic_file_fsync,
1da177e4
LT
191};
192
193static int
b1e6a015
NP
194adfs_hash(const struct dentry *parent, const struct inode *inode,
195 struct qstr *qstr)
1da177e4
LT
196{
197 const unsigned int name_len = ADFS_SB(parent->d_sb)->s_namelen;
198 const unsigned char *name;
199 unsigned long hash;
200 int i;
201
202 if (qstr->len < name_len)
203 return 0;
204
205 /*
206 * Truncate the name in place, avoids
207 * having to define a compare function.
208 */
209 qstr->len = i = name_len;
210 name = qstr->name;
211 hash = init_name_hash();
212 while (i--) {
213 char c;
214
215 c = *name++;
216 if (c >= 'A' && c <= 'Z')
217 c += 'a' - 'A';
218
219 hash = partial_name_hash(c, hash);
220 }
221 qstr->hash = end_name_hash(hash);
222
223 return 0;
224}
225
226/*
227 * Compare two names, taking note of the name length
228 * requirements of the underlying filesystem.
229 */
230static int
621e155a
NP
231adfs_compare(const struct dentry *parent, const struct inode *pinode,
232 const struct dentry *dentry, const struct inode *inode,
233 unsigned int len, const char *str, const struct qstr *name)
1da177e4
LT
234{
235 int i;
236
621e155a 237 if (len != name->len)
1da177e4
LT
238 return 1;
239
240 for (i = 0; i < name->len; i++) {
241 char a, b;
242
621e155a 243 a = str[i];
1da177e4
LT
244 b = name->name[i];
245
246 if (a >= 'A' && a <= 'Z')
247 a += 'a' - 'A';
248 if (b >= 'A' && b <= 'Z')
249 b += 'a' - 'A';
250
251 if (a != b)
252 return 1;
253 }
254 return 0;
255}
256
e16404ed 257const struct dentry_operations adfs_dentry_operations = {
1da177e4
LT
258 .d_hash = adfs_hash,
259 .d_compare = adfs_compare,
260};
261
262static struct dentry *
00cd8dd3 263adfs_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
1da177e4
LT
264{
265 struct inode *inode = NULL;
266 struct object_info obj;
267 int error;
268
1da177e4
LT
269 error = adfs_dir_lookup_byname(dir, &dentry->d_name, &obj);
270 if (error == 0) {
271 error = -EACCES;
272 /*
273 * This only returns NULL if get_empty_inode
274 * fails.
275 */
276 inode = adfs_iget(dir->i_sb, &obj);
277 if (inode)
278 error = 0;
279 }
1da177e4
LT
280 d_add(dentry, inode);
281 return ERR_PTR(error);
282}
283
284/*
285 * directories can handle most operations...
286 */
754661f1 287const struct inode_operations adfs_dir_inode_operations = {
1da177e4
LT
288 .lookup = adfs_lookup,
289 .setattr = adfs_notify_change,
290};