Whamcloud - gitweb
This adds most of the metadata infrastructure: I think that all commands
[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, const char *tgt, int tgtlen, 
138                                     int mode, __u64 id)
139 {
140         struct inode *inode;
141         struct mds_rep *rep;
142         struct ptlrep_hdr *hdr;
143         int err;
144         time_t time = CURRENT_TIME;
145         struct ll_sb_info *sbi =
146                 (struct ll_sb_info *)(&dir->i_sb->u.generic_sbp);
147
148         ENTRY;
149
150         err = mdc_create(sbi->ll_peer_ptr, dir, name, namelen, tgt, tgtlen,
151                          mode, id, 
152                          current->uid, current->gid, time, &rep, &hdr); 
153         if (err) { 
154                 EXIT;
155                 return ERR_PTR(err);
156         }
157         if ( hdr->status) {
158                 EXIT;
159                 return ERR_PTR(hdr->status);
160         }
161         rep->valid = OBD_MD_FLNOTOBD;
162
163         rep->objid = id; 
164         rep->nlink = 1;
165         rep->atime = rep->ctime = rep->mtime = time;
166         rep->mode = mode;
167         printk("-- new_inode: objid %lld, ino %d, mode %o\n", 
168                rep->objid, rep->ino, rep->mode); 
169
170         inode = iget4(dir->i_sb, rep->ino, NULL, rep);
171         if (IS_ERR(inode)) {
172                 printk(__FUNCTION__ ": new_inode -fatal:  %ld\n", 
173                        PTR_ERR(inode));
174                 EXIT;
175                 return ERR_PTR(-EIO);
176         }
177
178         if (!list_empty(&inode->i_dentry)) {
179                 printk("new_inode -fatal: aliases %d, ct %d lnk %d\n", 
180                        rep->ino, atomic_read(&inode->i_count), 
181                        inode->i_nlink);
182                 iput(inode);
183                 EXIT;
184                 return ERR_PTR(-EIO);
185         }
186
187         EXIT;
188         return inode;
189 } /* ll_new_inode */
190
191 int ll_mdc_unlink(struct inode *dir, const char *name, int len)
192 {
193         struct mds_rep *rep;
194         struct ptlrep_hdr *hdr;
195         int err;
196         struct ll_sb_info *sbi =
197                 (struct ll_sb_info *)(&dir->i_sb->u.generic_sbp);
198
199         ENTRY;
200
201         err = mdc_unlink(sbi->ll_peer_ptr, dir, name, len, &rep, &hdr); 
202
203         if (err) { 
204                 EXIT;
205                 return err;
206         }
207         if ( hdr->status) {
208                 EXIT;
209                 return hdr->status;
210         }
211
212         EXIT;
213         return 0;
214 }
215
216 int ll_mdc_link(struct dentry *src, struct inode *dir, 
217                 const char *name, int len)
218 {
219         struct mds_rep *rep;
220         struct ptlrep_hdr *hdr;
221         int err;
222         struct ll_sb_info *sbi =
223                 (struct ll_sb_info *)(&dir->i_sb->u.generic_sbp);
224
225         ENTRY;
226
227         err = mdc_link(sbi->ll_peer_ptr, src, dir, name, len, &rep, &hdr); 
228
229         if (err) { 
230                 EXIT;
231                 return err;
232         }
233         if ( hdr->status) {
234                 EXIT;
235                 return hdr->status;
236         }
237
238         EXIT;
239         return 0;
240 }
241
242 int ll_mdc_rename(struct inode *src, struct inode *tgt, 
243                   struct dentry *old, struct dentry *new)
244 {
245         struct mds_rep *rep;
246         struct ptlrep_hdr *hdr;
247         int err;
248         struct ll_sb_info *sbi =
249                 (struct ll_sb_info *)(&src->i_sb->u.generic_sbp);
250
251         ENTRY;
252
253         err = mdc_rename(sbi->ll_peer_ptr, src, tgt, 
254                          old->d_name.name, old->d_name.len, 
255                          new->d_name.name, new->d_name.len, 
256                          &rep, &hdr); 
257
258         if (err) { 
259                 EXIT;
260                 return err;
261         }
262         if ( hdr->status) {
263                 EXIT;
264                 return hdr->status;
265         }
266
267         EXIT;
268         return 0;
269 }
270
271 /*
272  * By the time this is called, we already have created
273  * the directory cache entry for the new file, but it
274  * is so far negative - it has no inode.
275  *
276  * If the create succeeds, we fill in the inode information
277  * with d_instantiate(). 
278  */
279 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
280 {
281         int err; 
282         struct obdo oa;
283         struct inode * inode;
284
285         err = obd_create(IID(dir), &oa);  
286         if (err) { 
287                 EXIT; 
288                 return err;
289         }
290
291         mode = mode | S_IFREG;
292         printk("ll_create: name %s mode %o\n", dentry->d_name.name, mode);
293         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
294                                NULL, 0,
295                                mode, oa.o_id);
296         err = PTR_ERR(inode);
297         if (!IS_ERR(inode)) {
298                 // XXX clean up the object
299                 inode->i_op = &ll_file_inode_operations;
300                 inode->i_fop = &ll_file_operations;
301                 inode->i_mapping->a_ops = &ll_aops;
302                 err = ext2_add_nondir(dentry, inode);
303         }
304         EXIT;
305         return err;
306 } /* ll_create */
307
308
309 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
310 {
311         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
312                                               dentry->d_name.len, NULL, 0,
313                                               mode, 0);
314         int err = PTR_ERR(inode);
315         if (!IS_ERR(inode)) {
316                 init_special_inode(inode, mode, rdev);
317                 err = ext2_add_nondir(dentry, inode);
318         }
319         return err;
320 }
321
322 static int ll_symlink (struct inode * dir, struct dentry * dentry,
323         const char * symname)
324 {
325         struct super_block * sb = dir->i_sb;
326         int err = -ENAMETOOLONG;
327         unsigned l = strlen(symname);
328         struct inode * inode;
329         struct ll_inode_info *oinfo;
330
331         if (l > sb->s_blocksize)
332                 goto out;
333
334         inode = ll_create_node(dir, dentry->d_name.name, 
335                                dentry->d_name.len, symname, l,
336                                S_IFLNK | S_IRWXUGO, 0);
337         err = PTR_ERR(inode);
338         if (IS_ERR(inode))
339                 goto out;
340
341         oinfo = ll_i2info(inode);
342         
343         inode->i_op = &ll_fast_symlink_inode_operations;
344         memcpy(oinfo->lli_inline, symname, l);
345         inode->i_size = l-1;
346
347         err = ext2_add_nondir(dentry, inode);
348 out:
349         return err;
350
351 out_fail:
352         ext2_dec_count(inode);
353         iput (inode);
354         goto out;
355 }
356
357 static int ll_link (struct dentry * old_dentry, struct inode * dir,
358         struct dentry *dentry)
359 {
360         int err;
361         struct inode *inode = old_dentry->d_inode;
362
363         if (S_ISDIR(inode->i_mode))
364                 return -EPERM;
365
366         if (inode->i_nlink >= EXT2_LINK_MAX)
367                 return -EMLINK;
368
369         err = ll_mdc_link(old_dentry, dir, 
370                           dentry->d_name.name, dentry->d_name.len);
371         if (err) { 
372                 EXIT;
373                 return err;
374         }
375
376         inode->i_ctime = CURRENT_TIME;
377         ext2_inc_count(inode);
378         atomic_inc(&inode->i_count);
379
380         return ext2_add_nondir(dentry, inode);
381 }
382
383
384 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
385 {
386         struct inode * inode;
387         int err = -EMLINK;
388         ENTRY;
389
390         if (dir->i_nlink >= EXT2_LINK_MAX)
391                 goto out;
392
393         ext2_inc_count(dir);
394
395         inode = ll_create_node (dir, dentry->d_name.name, 
396                                 dentry->d_name.len, NULL, 0, 
397                                 S_IFDIR | mode, 0);
398         err = PTR_ERR(inode);
399         if (IS_ERR(inode))
400                 goto out_dir;
401
402         inode->i_op = &ll_dir_inode_operations;
403         inode->i_fop = &ll_dir_operations;
404         inode->i_mapping->a_ops = &ll_aops;
405         inode->i_nlink = 1;
406         ext2_inc_count(inode);
407
408         err = ext2_make_empty(inode, dir);
409         if (err)
410                 goto out_fail;
411
412         err = ll_add_link(dentry, inode);
413         if (err)
414                 goto out_fail;
415
416         d_instantiate(dentry, inode);
417 out:
418         EXIT;
419         return err;
420
421 out_fail:
422         ext2_dec_count(inode);
423         ext2_dec_count(inode);
424         iput(inode);
425         EXIT;
426 out_dir:
427         ext2_dec_count(dir);
428         EXIT;
429         goto out;
430 }
431
432 static int ll_unlink(struct inode * dir, struct dentry *dentry)
433 {
434         struct inode * inode = dentry->d_inode;
435         struct ext2_dir_entry_2 * de;
436         struct page * page;
437         int err = -ENOENT;
438
439         de = ext2_find_entry (dir, dentry, &page);
440         if (!de)
441                 goto out;
442         
443         err = ll_mdc_unlink(dir, dentry->d_name.name, dentry->d_name.len);
444         if (err) 
445                 goto out;
446
447
448         err = ext2_delete_entry (de, page);
449         if (err)
450                 goto out;
451
452         inode->i_ctime = dir->i_ctime;
453         ext2_dec_count(inode);
454         err = 0;
455 out:
456         return err;
457 }
458
459
460 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
461 {
462         struct inode * inode = dentry->d_inode;
463         int err = -ENOTEMPTY;
464
465         if (ext2_empty_dir(inode)) {
466                 err = ll_unlink(dir, dentry);
467                 if (!err) {
468                         inode->i_size = 0;
469                         ext2_dec_count(inode);
470                         ext2_dec_count(dir);
471                 }
472         }
473         return err;
474 }
475
476 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
477         struct inode * new_dir, struct dentry * new_dentry )
478 {
479         struct inode * old_inode = old_dentry->d_inode;
480         struct inode * new_inode = new_dentry->d_inode;
481         struct page * dir_page = NULL;
482         struct ext2_dir_entry_2 * dir_de = NULL;
483         struct page * old_page;
484         struct ext2_dir_entry_2 * old_de;
485         int err = -ENOENT;
486
487         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
488         if (err) 
489                 goto out;
490
491         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
492         if (!old_de)
493                 goto out;
494
495         if (S_ISDIR(old_inode->i_mode)) {
496                 err = -EIO;
497                 dir_de = ext2_dotdot(old_inode, &dir_page);
498                 if (!dir_de)
499                         goto out_old;
500         }
501
502         if (new_inode) {
503                 struct page *new_page;
504                 struct ext2_dir_entry_2 *new_de;
505
506                 err = -ENOTEMPTY;
507                 if (dir_de && !ext2_empty_dir (new_inode))
508                         goto out_dir;
509
510                 err = -ENOENT;
511                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
512                 if (!new_de)
513                         goto out_dir;
514                 ext2_inc_count(old_inode);
515                 ext2_set_link(new_dir, new_de, new_page, old_inode);
516                 new_inode->i_ctime = CURRENT_TIME;
517                 if (dir_de)
518                         new_inode->i_nlink--;
519                 ext2_dec_count(new_inode);
520         } else {
521                 if (dir_de) {
522                         err = -EMLINK;
523                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
524                                 goto out_dir;
525                 }
526                 ext2_inc_count(old_inode);
527                 err = ll_add_link(new_dentry, old_inode);
528                 if (err) {
529                         ext2_dec_count(old_inode);
530                         goto out_dir;
531                 }
532                 if (dir_de)
533                         ext2_inc_count(new_dir);
534         }
535
536         ext2_delete_entry (old_de, old_page);
537         ext2_dec_count(old_inode);
538
539         if (dir_de) {
540                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
541                 ext2_dec_count(old_dir);
542         }
543         return 0;
544
545
546 out_dir:
547         if (dir_de) {
548                 kunmap(dir_page);
549                 page_cache_release(dir_page);
550         }
551 out_old:
552         kunmap(old_page);
553         page_cache_release(old_page);
554 out:
555         return err;
556 }
557
558 struct inode_operations ll_dir_inode_operations = {
559         create:         ll_create,
560         lookup:         ll_lookup,
561         link:           ll_link,
562         unlink:         ll_unlink,
563         symlink:        ll_symlink,
564         mkdir:          ll_mkdir,
565         rmdir:          ll_rmdir,
566         mknod:          ll_mknod,
567         rename:         ll_rename,
568         setattr:        ll_setattr
569 };