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