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