Whamcloud - gitweb
- Added DEBUG_SUBSYSTEMs
[fs/lustre-release.git] / lustre / obdfs / namei.c
1 /*
2  *  linux/fs/obdfs/namei.c
3  *
4  * This code is issued under the GNU General Public License.
5  * See the file COPYING in this distribution
6  *
7  * Copyright (C) 1992, 1993, 1994, 1995
8  * Remy Card (card@masi.ibp.fr)
9  * Laboratoire MASI - Institut Blaise Pascal
10  * Universite Pierre et Marie Curie (Paris VI)
11  *
12  *  from
13  *
14  *  linux/fs/ext2/namei.c
15  *
16  *  Copyright (C) 1991, 1992  Linus Torvalds
17  *
18  *  Big-endian to little-endian byte-swapping/bitmaps by
19  *        David S. Miller (davem@caip.rutgers.edu), 1995
20  *  Directory entry file type support and forward compatibility hooks
21  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
22  * 
23  *  Changes for use in OBDFS
24  *  Copyright (c) 1999, Seagate Technology Inc.
25  *  Copyright (C) 2001, Cluster File Systems, Inc.
26  *                       Rewritten based on recent ext2 page cache use.
27  * 
28  */
29
30 #include <linux/fs.h>
31 #include <linux/locks.h>
32 #include <linux/quotaops.h>
33
34 #define DEBUG_SUBSYSTEM S_OBDFS
35
36 #include <linux/obd_support.h>
37 #include <linux/obdfs.h>
38 extern struct address_space_operations obdfs_aops;
39
40 /* from super.c */
41 extern void obdfs_change_inode(struct inode *inode);
42 extern int obdfs_setattr(struct dentry *de, struct iattr *attr);
43
44 /* from dir.c */
45 extern int ext2_add_link (struct dentry *dentry, struct inode *inode);
46 ino_t obdfs_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
47 int ext2_make_empty(struct inode *inode, struct inode *parent);
48 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
49                    struct dentry *dentry, struct page ** res_page);
50 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
51 int ext2_empty_dir (struct inode * inode);
52 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
53 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
54                    struct page *page, struct inode *inode);
55
56 /*
57  * Couple of helper functions - make the code slightly cleaner.
58  */
59 static inline void ext2_inc_count(struct inode *inode)
60 {
61         inode->i_nlink++;
62         obdfs_change_inode(inode);
63 }
64
65 /* postpone the disk update until the inode really goes away */ 
66 static inline void ext2_dec_count(struct inode *inode)
67 {
68         inode->i_nlink--;
69         if (inode->i_nlink > 0) 
70                 obdfs_change_inode(inode);
71 }
72
73 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
74 {
75         int err;
76         err = ext2_add_link(dentry, inode);
77         if (!err) {
78                 d_instantiate(dentry, inode);
79                 return 0;
80         }
81         ext2_dec_count(inode);
82         iput(inode);
83         return err;
84 }
85
86 /* methods */
87 static struct dentry *obdfs_lookup(struct inode * dir, struct dentry *dentry)
88 {
89         struct obdo *oa;
90         struct inode * inode = NULL;
91         int type;
92         ino_t ino;
93         
94         ENTRY;
95         if (dentry->d_name.len > EXT2_NAME_LEN)
96                 return ERR_PTR(-ENAMETOOLONG);
97
98         ino = obdfs_inode_by_name(dir, dentry, &type);
99         if (!ino)
100                 goto negative;
101
102         oa = obdo_fromid(IID(dir), ino, type, 
103                          OBD_MD_FLNOTOBD | OBD_MD_FLBLOCKS);
104         if ( IS_ERR(oa) ) {
105                 printk(__FUNCTION__ ": obdo_fromid failed\n");
106                 EXIT;
107                 return ERR_PTR(-EACCES); 
108         }
109
110         inode = iget4(dir->i_sb, ino, NULL, oa);
111         obdo_free(oa);
112
113         if (!inode) 
114                 return ERR_PTR(-EACCES);
115
116  negative:
117         d_add(dentry, inode);
118         return NULL;
119 }
120
121
122 /*
123  * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
124  *
125  * `len <= EXT2_NAME_LEN' is guaranteed by caller.
126  * `de != NULL' is guaranteed by caller.
127  */
128 static inline int ext2_match (int len, const char * const name,
129                        struct ext2_dir_entry_2 * de)
130 {
131         if (len != de->name_len)
132                 return 0;
133         if (!de->inode)
134                 return 0;
135         return !memcmp(name, de->name, len);
136 }
137
138 static struct inode *obdfs_new_inode(struct inode *dir, int mode)
139 {
140         struct obdo *oa;
141         struct inode *inode;
142         int err;
143
144         ENTRY;
145         oa = obdo_alloc();
146         if (!oa) {
147                 EXIT;
148                 return ERR_PTR(-ENOMEM);
149         }
150
151         /* Send a hint to the create method on the type of file to create */
152         oa->o_mode = mode;
153         oa->o_valid |= OBD_MD_FLMODE;
154         CDEBUG(D_INODE, "\n");
155         err = obd_create(IID(dir), oa);
156         CDEBUG(D_INODE, "\n");
157
158         if ( err ) {
159                 printk("new_inode - fatal: err %d\n", err);
160                 obdo_free(oa);
161                 EXIT;
162                 return ERR_PTR(err);
163         }
164         CDEBUG(D_INODE, "obdo mode %o\n", oa->o_mode);
165
166         inode = iget4(dir->i_sb, (ino_t)oa->o_id, NULL, oa);
167         CDEBUG(D_INODE, "\n");
168
169         if (!inode) {
170                 printk("new_inode -fatal:  %ld\n", (long)oa->o_id);
171                 obd_destroy(IID(dir), oa);
172                 obdo_free(oa);
173                 EXIT;
174                 return ERR_PTR(-EIO);
175         }
176         obdo_free(oa);
177
178         if (!list_empty(&inode->i_dentry)) {
179                 printk("new_inode -fatal: aliases %ld, ct %d lnk %d\n", 
180                        (long)oa->o_id,
181                        atomic_read(&inode->i_count), 
182                        inode->i_nlink);
183                 obd_destroy(IID(dir), oa);
184                 iput(inode);
185                 EXIT;
186                 return ERR_PTR(-EIO);
187         }
188
189         EXIT;
190         return inode;
191 } /* obdfs_new_inode */
192
193
194 /*
195  * By the time this is called, we already have created
196  * the directory cache entry for the new file, but it
197  * is so far negative - it has no inode.
198  *
199  * If the create succeeds, we fill in the inode information
200  * with d_instantiate(). 
201  */
202 static int obdfs_create (struct inode * dir, struct dentry * dentry, int mode)
203 {
204         struct inode * inode = obdfs_new_inode (dir, mode);
205         int err = PTR_ERR(inode);
206         if (!IS_ERR(inode)) {
207                 inode->i_op = &obdfs_file_inode_operations;
208                 inode->i_fop = &obdfs_file_operations;
209                 inode->i_mapping->a_ops = &obdfs_aops;
210                 err = ext2_add_nondir(dentry, inode);
211         }
212         return err;
213 } /* obdfs_create */
214
215
216 static int obdfs_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
217 {
218         struct inode * inode = obdfs_new_inode (dir, mode);
219         int err = PTR_ERR(inode);
220         if (!IS_ERR(inode)) {
221                 init_special_inode(inode, mode, rdev);
222                 obdfs_change_inode(inode);
223                 err = ext2_add_nondir(dentry, inode);
224         }
225         return err;
226 }
227
228 static int obdfs_symlink (struct inode * dir, struct dentry * dentry,
229         const char * symname)
230 {
231         struct super_block * sb = dir->i_sb;
232         int err = -ENAMETOOLONG;
233         unsigned l = strlen(symname)+1;
234         struct inode * inode;
235         struct obdfs_inode_info *oinfo;
236
237         if (l > sb->s_blocksize)
238                 goto out;
239
240         inode = obdfs_new_inode (dir, S_IFLNK | S_IRWXUGO);
241         err = PTR_ERR(inode);
242         if (IS_ERR(inode))
243                 goto out;
244
245         oinfo = obdfs_i2info(inode);
246         if (l >= sizeof(oinfo->oi_inline)) {
247                 /* slow symlink */
248                 inode->i_op = &page_symlink_inode_operations;
249                 inode->i_mapping->a_ops = &obdfs_aops;
250                 err = block_symlink(inode, symname, l);
251                 if (err)
252                         goto out_fail;
253         } else {
254                 /* fast symlink */
255                 inode->i_op = &obdfs_fast_symlink_inode_operations;
256                 memcpy(oinfo->oi_inline, symname, l);
257                 inode->i_size = l-1;
258         }
259         obdfs_change_inode(inode);
260
261         err = ext2_add_nondir(dentry, inode);
262 out:
263         return err;
264
265 out_fail:
266         ext2_dec_count(inode);
267         iput (inode);
268         goto out;
269 }
270
271
272
273 static int obdfs_link (struct dentry * old_dentry, struct inode * dir,
274         struct dentry *dentry)
275 {
276         struct inode *inode = old_dentry->d_inode;
277
278         if (S_ISDIR(inode->i_mode))
279                 return -EPERM;
280
281         if (inode->i_nlink >= EXT2_LINK_MAX)
282                 return -EMLINK;
283
284         inode->i_ctime = CURRENT_TIME;
285         ext2_inc_count(inode);
286         atomic_inc(&inode->i_count);
287
288         return ext2_add_nondir(dentry, inode);
289 }
290
291
292 static int obdfs_mkdir(struct inode * dir, struct dentry * dentry, int mode)
293 {
294         struct inode * inode;
295         int err = -EMLINK;
296         ENTRY;
297
298         if (dir->i_nlink >= EXT2_LINK_MAX)
299                 goto out;
300
301         ext2_inc_count(dir);
302
303         inode = obdfs_new_inode (dir, S_IFDIR | mode);
304         err = PTR_ERR(inode);
305         if (IS_ERR(inode))
306                 goto out_dir;
307
308         inode->i_op = &obdfs_dir_inode_operations;
309         inode->i_fop = &obdfs_dir_operations;
310         inode->i_mapping->a_ops = &obdfs_aops;
311
312         ext2_inc_count(inode);
313
314         err = ext2_make_empty(inode, dir);
315         if (err)
316                 goto out_fail;
317
318         err = ext2_add_link(dentry, inode);
319         if (err)
320                 goto out_fail;
321
322         d_instantiate(dentry, inode);
323 out:
324         EXIT;
325         return err;
326
327 out_fail:
328         ext2_dec_count(inode);
329         ext2_dec_count(inode);
330         iput(inode);
331         EXIT;
332 out_dir:
333         ext2_dec_count(dir);
334         EXIT;
335         goto out;
336 }
337
338 static int obdfs_unlink(struct inode * dir, struct dentry *dentry)
339 {
340         struct inode * inode = dentry->d_inode;
341         struct ext2_dir_entry_2 * de;
342         struct page * page;
343         int err = -ENOENT;
344
345         de = ext2_find_entry (dir, dentry, &page);
346         if (!de)
347                 goto out;
348
349         err = ext2_delete_entry (de, page);
350         if (err)
351                 goto out;
352
353         inode->i_ctime = dir->i_ctime;
354         ext2_dec_count(inode);
355         err = 0;
356 out:
357         return err;
358 }
359
360
361 static int obdfs_rmdir (struct inode * dir, struct dentry *dentry)
362 {
363         struct inode * inode = dentry->d_inode;
364         int err = -ENOTEMPTY;
365
366         if (ext2_empty_dir(inode)) {
367                 err = obdfs_unlink(dir, dentry);
368                 if (!err) {
369                         inode->i_size = 0;
370                         ext2_dec_count(inode);
371                         ext2_dec_count(dir);
372                 }
373         }
374         return err;
375 }
376
377 static int obdfs_rename (struct inode * old_dir, struct dentry * old_dentry,
378         struct inode * new_dir, struct dentry * new_dentry )
379 {
380         struct inode * old_inode = old_dentry->d_inode;
381         struct inode * new_inode = new_dentry->d_inode;
382         struct page * dir_page = NULL;
383         struct ext2_dir_entry_2 * dir_de = NULL;
384         struct page * old_page;
385         struct ext2_dir_entry_2 * old_de;
386         int err = -ENOENT;
387
388         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
389         if (!old_de)
390                 goto out;
391
392         if (S_ISDIR(old_inode->i_mode)) {
393                 err = -EIO;
394                 dir_de = ext2_dotdot(old_inode, &dir_page);
395                 if (!dir_de)
396                         goto out_old;
397         }
398
399         if (new_inode) {
400                 struct page *new_page;
401                 struct ext2_dir_entry_2 *new_de;
402
403                 err = -ENOTEMPTY;
404                 if (dir_de && !ext2_empty_dir (new_inode))
405                         goto out_dir;
406
407                 err = -ENOENT;
408                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
409                 if (!new_de)
410                         goto out_dir;
411                 ext2_inc_count(old_inode);
412                 ext2_set_link(new_dir, new_de, new_page, old_inode);
413                 new_inode->i_ctime = CURRENT_TIME;
414                 if (dir_de)
415                         new_inode->i_nlink--;
416                 ext2_dec_count(new_inode);
417         } else {
418                 if (dir_de) {
419                         err = -EMLINK;
420                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
421                                 goto out_dir;
422                 }
423                 ext2_inc_count(old_inode);
424                 err = ext2_add_link(new_dentry, old_inode);
425                 if (err) {
426                         ext2_dec_count(old_inode);
427                         goto out_dir;
428                 }
429                 if (dir_de)
430                         ext2_inc_count(new_dir);
431         }
432
433         ext2_delete_entry (old_de, old_page);
434         ext2_dec_count(old_inode);
435
436         if (dir_de) {
437                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
438                 ext2_dec_count(old_dir);
439         }
440         return 0;
441
442
443 out_dir:
444         if (dir_de) {
445                 kunmap(dir_page);
446                 page_cache_release(dir_page);
447         }
448 out_old:
449         kunmap(old_page);
450         page_cache_release(old_page);
451 out:
452         return err;
453 }
454
455 struct inode_operations obdfs_dir_inode_operations = {
456         create:         obdfs_create,
457         lookup:         obdfs_lookup,
458         link:           obdfs_link,
459         unlink:         obdfs_unlink,
460         symlink:        obdfs_symlink,
461         mkdir:          obdfs_mkdir,
462         rmdir:          obdfs_rmdir,
463         mknod:          obdfs_mknod,
464         rename:         obdfs_rename,
465         setattr:        obdfs_setattr
466 };