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