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