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