Whamcloud - gitweb
Minor bugfix to allow multiple networked operations:
[fs/lustre-release.git] / lustre / llite / namei.c
1 /*
2  *
3  * This code is issued under the GNU General Public License.
4  * See the file COPYING in this distribution
5  *
6  * Copyright (C) 1992, 1993, 1994, 1995
7  * Remy Card (card@masi.ibp.fr)
8  * Laboratoire MASI - Institut Blaise Pascal
9  * Universite Pierre et Marie Curie (Paris VI)
10  *
11  *  from
12  *
13  *  linux/fs/ext2/namei.c
14  *
15  *  Copyright (C) 1991, 1992  Linus Torvalds
16  *
17  *  Big-endian to little-endian byte-swapping/bitmaps by
18  *        David S. Miller (davem@caip.rutgers.edu), 1995
19  *  Directory entry file type support and forward compatibility hooks
20  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
21  * 
22  *  Changes for use in OBDFS
23  *  Copyright (c) 1999, Seagate Technology Inc.
24  *  Copyright (C) 2001, Cluster File Systems, Inc.
25  *                       Rewritten based on recent ext2 page cache use.
26  * 
27  */
28
29 #include <linux/fs.h>
30 #include <linux/locks.h>
31 #include <linux/quotaops.h>
32 #include <linux/obd_support.h>
33 #include <linux/lustre_light.h>
34 extern struct address_space_operations ll_aops;
35
36 /* from super.c */
37 extern void ll_change_inode(struct inode *inode);
38 extern int ll_setattr(struct dentry *de, struct iattr *attr);
39
40 /* from dir.c */
41 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
42 ino_t ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
43 int ext2_make_empty(struct inode *inode, struct inode *parent);
44 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
45                    struct dentry *dentry, struct page ** res_page);
46 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
47 int ext2_empty_dir (struct inode * inode);
48 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
49 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
50                    struct page *page, struct inode *inode);
51
52 /*
53  * Couple of helper functions - make the code slightly cleaner.
54  */
55 static inline void ext2_inc_count(struct inode *inode)
56 {
57         inode->i_nlink++;
58 }
59
60 /* postpone the disk update until the inode really goes away */ 
61 static inline void ext2_dec_count(struct inode *inode)
62 {
63         inode->i_nlink--;
64 }
65
66 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
67 {
68         int err;
69         err = ll_add_link(dentry, inode);
70         if (!err) {
71                 d_instantiate(dentry, inode);
72                 return 0;
73         }
74         ext2_dec_count(inode);
75         iput(inode);
76         return err;
77 }
78
79 /* methods */
80 static struct dentry *ll_lookup(struct inode * dir, struct dentry *dentry)
81 {
82         struct mds_rep *rep; 
83         struct ptlrep_hdr *hdr = NULL; 
84         struct inode * inode = NULL;
85         struct ll_sb_info *sbi;
86         int err;
87         int type;
88         ino_t ino;
89         
90         ENTRY;
91         if (dentry->d_name.len > EXT2_NAME_LEN)
92                 return ERR_PTR(-ENAMETOOLONG);
93
94         ino = ll_inode_by_name(dir, dentry, &type);
95         if (!ino)
96                 goto negative;
97
98         sbi = (struct ll_sb_info *)(&dir->i_sb->u.generic_sbp);
99
100         err = mdc_getattr(sbi->ll_peer_ptr, ino, type,
101                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, &rep, &hdr);
102         if ( err ) {
103                 printk(__FUNCTION__ ": obdo_fromid failed\n");
104                 EXIT;
105                 return ERR_PTR(-EACCES); 
106         }
107
108         inode = iget4(dir->i_sb, ino, NULL, rep);
109         kfree(hdr); 
110
111         if (!inode) 
112                 return ERR_PTR(-EACCES);
113
114  negative:
115         d_add(dentry, inode);
116         return NULL;
117 }
118
119
120 /*
121  * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
122  *
123  * `len <= EXT2_NAME_LEN' is guaranteed by caller.
124  * `de != NULL' is guaranteed by caller.
125  */
126 static inline int ext2_match (int len, const char * const name,
127                        struct ext2_dir_entry_2 * de)
128 {
129         if (len != de->name_len)
130                 return 0;
131         if (!de->inode)
132                 return 0;
133         return !memcmp(name, de->name, len);
134 }
135
136 static struct inode *ll_create_node(struct inode *dir, const char *name, 
137                                     int namelen, int mode, __u64 id)
138 {
139         struct inode *inode;
140         struct mds_rep *rep;
141         struct ptlrep_hdr *hdr;
142         int err;
143         struct ll_sb_info *sbi =
144                 (struct ll_sb_info *)(&dir->i_sb->u.generic_sbp);
145
146         ENTRY;
147
148         err = mdc_create(sbi->ll_peer_ptr, dir, name, namelen, mode, id,
149                          current->uid, current->gid, CURRENT_TIME, 
150                          &rep, &hdr); 
151         if (err) { 
152                 EXIT;
153                 return ERR_PTR(err);
154         }
155         if ( hdr->status) {
156                 EXIT;
157                 return ERR_PTR(hdr->status);
158         }
159         rep->valid = OBD_MD_FLNOTOBD;
160
161         rep->objid = id; 
162         rep->nlink = 1;
163         rep->mode = mode;
164         printk("-- new_inode: objid %lld, ino %d, mode %o\n", 
165                rep->objid, rep->ino, rep->mode); 
166
167         inode = iget4(dir->i_sb, rep->ino, NULL, rep);
168         if (IS_ERR(inode)) {
169                 printk(__FUNCTION__ ": new_inode -fatal:  %ld\n", 
170                        PTR_ERR(inode));
171                 EXIT;
172                 return ERR_PTR(-EIO);
173         }
174
175         if (!list_empty(&inode->i_dentry)) {
176                 printk("new_inode -fatal: aliases %d, ct %d lnk %d\n", 
177                        rep->ino, atomic_read(&inode->i_count), 
178                        inode->i_nlink);
179                 iput(inode);
180                 EXIT;
181                 return ERR_PTR(-EIO);
182         }
183
184         EXIT;
185         return inode;
186 } /* ll_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 ll_create (struct inode * dir, struct dentry * dentry, int mode)
198 {
199         int err; 
200         struct obdo oa;
201         struct inode * inode;
202
203         err = obd_create(IID(dir), &oa);  
204         if (err) { 
205                 EXIT; 
206                 return err;
207         }
208
209         mode = mode | S_IFREG;
210         printk("ll_create: name %s mode %o\n", dentry->d_name.name, mode);
211         inode = ll_create_node(dir, dentry->d_name.name, 
212                                dentry->d_name.len, 
213                                mode, oa.o_id);
214         err = PTR_ERR(inode);
215         if (!IS_ERR(inode)) {
216                 // XXX clean up the object
217                 inode->i_op = &ll_file_inode_operations;
218                 inode->i_fop = &ll_file_operations;
219                 inode->i_mapping->a_ops = &ll_aops;
220                 err = ext2_add_nondir(dentry, inode);
221         }
222         EXIT;
223         return err;
224 } /* ll_create */
225
226
227 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
228 {
229         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
230                                               dentry->d_name.len, mode, 0);
231         int err = PTR_ERR(inode);
232         if (!IS_ERR(inode)) {
233                 init_special_inode(inode, mode, rdev);
234                 err = ext2_add_nondir(dentry, inode);
235         }
236         return err;
237 }
238
239 static int ll_symlink (struct inode * dir, struct dentry * dentry,
240         const char * symname)
241 {
242         struct super_block * sb = dir->i_sb;
243         int err = -ENAMETOOLONG;
244         unsigned l = strlen(symname)+1;
245         struct inode * inode;
246         struct ll_inode_info *oinfo;
247
248         if (l > sb->s_blocksize)
249                 goto out;
250
251         inode = ll_create_node(dir, dentry->d_name.name, 
252                                dentry->d_name.len, 
253                                S_IFLNK | S_IRWXUGO, 0);
254         err = PTR_ERR(inode);
255         if (IS_ERR(inode))
256                 goto out;
257
258         oinfo = ll_i2info(inode);
259         if (l >= sizeof(oinfo->lli_inline)) {
260                 /* slow symlink */
261                 inode->i_op = &page_symlink_inode_operations;
262                 inode->i_mapping->a_ops = &ll_aops;
263                 err = block_symlink(inode, symname, l);
264                 if (err)
265                         goto out_fail;
266         } else {
267                 /* fast symlink */
268                 inode->i_op = &ll_fast_symlink_inode_operations;
269                 memcpy(oinfo->lli_inline, symname, l);
270                 inode->i_size = l-1;
271         }
272
273         err = ext2_add_nondir(dentry, inode);
274 out:
275         return err;
276
277 out_fail:
278         ext2_dec_count(inode);
279         iput (inode);
280         goto out;
281 }
282
283
284
285 static int ll_link (struct dentry * old_dentry, struct inode * dir,
286         struct dentry *dentry)
287 {
288         struct inode *inode = old_dentry->d_inode;
289
290         if (S_ISDIR(inode->i_mode))
291                 return -EPERM;
292
293         if (inode->i_nlink >= EXT2_LINK_MAX)
294                 return -EMLINK;
295
296         inode->i_ctime = CURRENT_TIME;
297         ext2_inc_count(inode);
298         atomic_inc(&inode->i_count);
299
300         return ext2_add_nondir(dentry, inode);
301 }
302
303
304 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
305 {
306         struct inode * inode;
307         int err = -EMLINK;
308         ENTRY;
309
310         if (dir->i_nlink >= EXT2_LINK_MAX)
311                 goto out;
312
313         ext2_inc_count(dir);
314
315         inode = ll_create_node (dir, dentry->d_name.name, 
316                                 dentry->d_name.len,
317                                 S_IFDIR | mode, 0);
318         err = PTR_ERR(inode);
319         if (IS_ERR(inode))
320                 goto out_dir;
321
322         inode->i_op = &ll_dir_inode_operations;
323         inode->i_fop = &ll_dir_operations;
324         inode->i_mapping->a_ops = &ll_aops;
325
326         ext2_inc_count(inode);
327
328         err = ext2_make_empty(inode, dir);
329         if (err)
330                 goto out_fail;
331
332         err = ll_add_link(dentry, inode);
333         if (err)
334                 goto out_fail;
335
336         d_instantiate(dentry, inode);
337 out:
338         EXIT;
339         return err;
340
341 out_fail:
342         ext2_dec_count(inode);
343         ext2_dec_count(inode);
344         iput(inode);
345         EXIT;
346 out_dir:
347         ext2_dec_count(dir);
348         EXIT;
349         goto out;
350 }
351
352 static int ll_unlink(struct inode * dir, struct dentry *dentry)
353 {
354         struct inode * inode = dentry->d_inode;
355         struct ext2_dir_entry_2 * de;
356         struct page * page;
357         int err = -ENOENT;
358
359         de = ext2_find_entry (dir, dentry, &page);
360         if (!de)
361                 goto out;
362
363         err = ext2_delete_entry (de, page);
364         if (err)
365                 goto out;
366
367         inode->i_ctime = dir->i_ctime;
368         ext2_dec_count(inode);
369         err = 0;
370 out:
371         return err;
372 }
373
374
375 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
376 {
377         struct inode * inode = dentry->d_inode;
378         int err = -ENOTEMPTY;
379
380         if (ext2_empty_dir(inode)) {
381                 err = ll_unlink(dir, dentry);
382                 if (!err) {
383                         inode->i_size = 0;
384                         ext2_dec_count(inode);
385                         ext2_dec_count(dir);
386                 }
387         }
388         return err;
389 }
390
391 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
392         struct inode * new_dir, struct dentry * new_dentry )
393 {
394         struct inode * old_inode = old_dentry->d_inode;
395         struct inode * new_inode = new_dentry->d_inode;
396         struct page * dir_page = NULL;
397         struct ext2_dir_entry_2 * dir_de = NULL;
398         struct page * old_page;
399         struct ext2_dir_entry_2 * old_de;
400         int err = -ENOENT;
401
402         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
403         if (!old_de)
404                 goto out;
405
406         if (S_ISDIR(old_inode->i_mode)) {
407                 err = -EIO;
408                 dir_de = ext2_dotdot(old_inode, &dir_page);
409                 if (!dir_de)
410                         goto out_old;
411         }
412
413         if (new_inode) {
414                 struct page *new_page;
415                 struct ext2_dir_entry_2 *new_de;
416
417                 err = -ENOTEMPTY;
418                 if (dir_de && !ext2_empty_dir (new_inode))
419                         goto out_dir;
420
421                 err = -ENOENT;
422                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
423                 if (!new_de)
424                         goto out_dir;
425                 ext2_inc_count(old_inode);
426                 ext2_set_link(new_dir, new_de, new_page, old_inode);
427                 new_inode->i_ctime = CURRENT_TIME;
428                 if (dir_de)
429                         new_inode->i_nlink--;
430                 ext2_dec_count(new_inode);
431         } else {
432                 if (dir_de) {
433                         err = -EMLINK;
434                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
435                                 goto out_dir;
436                 }
437                 ext2_inc_count(old_inode);
438                 err = ll_add_link(new_dentry, old_inode);
439                 if (err) {
440                         ext2_dec_count(old_inode);
441                         goto out_dir;
442                 }
443                 if (dir_de)
444                         ext2_inc_count(new_dir);
445         }
446
447         ext2_delete_entry (old_de, old_page);
448         ext2_dec_count(old_inode);
449
450         if (dir_de) {
451                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
452                 ext2_dec_count(old_dir);
453         }
454         return 0;
455
456
457 out_dir:
458         if (dir_de) {
459                 kunmap(dir_page);
460                 page_cache_release(dir_page);
461         }
462 out_old:
463         kunmap(old_page);
464         page_cache_release(old_page);
465 out:
466         return err;
467 }
468
469 struct inode_operations ll_dir_inode_operations = {
470         create:         ll_create,
471         lookup:         ll_lookup,
472         link:           ll_link,
473         unlink:         ll_unlink,
474         symlink:        ll_symlink,
475         mkdir:          ll_mkdir,
476         rmdir:          ll_rmdir,
477         mknod:          ll_mknod,
478         rename:         ll_rename,
479         setattr:        ll_setattr
480 };