Whamcloud - gitweb
- Added DEBUG_SUBSYSTEMs
[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
33 #define DEBUG_SUBSYSTEM S_LLIGHT
34
35 #include <linux/obd_support.h>
36 #include <linux/lustre_light.h>
37 extern struct address_space_operations ll_aops;
38
39 /* from super.c */
40 extern void ll_change_inode(struct inode *inode);
41 extern int ll_setattr(struct dentry *de, struct iattr *attr);
42
43 /* from dir.c */
44 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
45 ino_t ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
46 int ext2_make_empty(struct inode *inode, struct inode *parent);
47 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
48                    struct dentry *dentry, struct page ** res_page);
49 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
50 int ext2_empty_dir (struct inode * inode);
51 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
52 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
53                    struct page *page, struct inode *inode);
54
55 /*
56  * Couple of helper functions - make the code slightly cleaner.
57  */
58 static inline void ext2_inc_count(struct inode *inode)
59 {
60         inode->i_nlink++;
61 }
62
63 /* postpone the disk update until the inode really goes away */ 
64 static inline void ext2_dec_count(struct inode *inode)
65 {
66         inode->i_nlink--;
67 }
68
69 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
70 {
71         int err;
72         err = ll_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 *ll_lookup(struct inode * dir, struct dentry *dentry)
84 {
85         struct mds_rep *rep; 
86         struct ptlrep_hdr *hdr = NULL; 
87         struct inode * inode = NULL;
88         struct ll_sb_info *sbi = ll_i2sbi(dir);
89         int err;
90         int type;
91         ino_t ino;
92         
93         ENTRY;
94         if (dentry->d_name.len > EXT2_NAME_LEN)
95                 return ERR_PTR(-ENAMETOOLONG);
96
97         ino = ll_inode_by_name(dir, dentry, &type);
98         if (!ino)
99                 goto negative;
100
101         err = mdc_getattr(sbi->ll_peer_ptr, ino, type,
102                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, &rep, &hdr);
103         if ( err ) {
104                 printk(__FUNCTION__ ": obdo_fromid failed\n");
105                 EXIT;
106                 return ERR_PTR(-EACCES); 
107         }
108
109         inode = iget4(dir->i_sb, ino, NULL, rep);
110
111         /* FIXME: this is not the right way to get this size */
112         OBD_FREE(hdr, sizeof(struct ptlrep_hdr) + sizeof(struct mds_rep));
113
114         if (!inode) 
115                 return ERR_PTR(-EACCES);
116
117  negative:
118         d_add(dentry, inode);
119         return NULL;
120 }
121
122
123 /*
124  * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
125  *
126  * `len <= EXT2_NAME_LEN' is guaranteed by caller.
127  * `de != NULL' is guaranteed by caller.
128  */
129 static inline int ext2_match (int len, const char * const name,
130                        struct ext2_dir_entry_2 * de)
131 {
132         if (len != de->name_len)
133                 return 0;
134         if (!de->inode)
135                 return 0;
136         return !memcmp(name, de->name, len);
137 }
138
139 static struct inode *ll_create_node(struct inode *dir, const char *name, 
140                                     int namelen, const char *tgt, int tgtlen, 
141                                     int mode, __u64 id)
142 {
143         struct inode *inode;
144         struct mds_rep *rep;
145         struct ptlrep_hdr *hdr;
146         int err;
147         time_t time = CURRENT_TIME;
148         struct ll_sb_info *sbi = ll_i2sbi(dir);
149
150         ENTRY;
151
152         err = mdc_create(sbi->ll_peer_ptr, dir, name, namelen, tgt, tgtlen,
153                          mode, id, 
154                          current->uid, current->gid, time, &rep, &hdr); 
155         if (err) { 
156                 EXIT;
157                 return ERR_PTR(err);
158         }
159         if ( hdr->status) {
160                 EXIT;
161                 return ERR_PTR(hdr->status);
162         }
163         rep->valid = OBD_MD_FLNOTOBD;
164
165         rep->objid = id; 
166         rep->nlink = 1;
167         rep->atime = rep->ctime = rep->mtime = time;
168         rep->mode = mode;
169         CDEBUG(D_INODE, "-- new_inode: objid %lld, ino %d, mode %o\n",
170                rep->objid, rep->ino, rep->mode); 
171
172         inode = iget4(dir->i_sb, rep->ino, NULL, rep);
173         if (IS_ERR(inode)) {
174                 printk(__FUNCTION__ ": new_inode -fatal:  %ld\n", 
175                        PTR_ERR(inode));
176                 EXIT;
177                 return ERR_PTR(-EIO);
178         }
179
180         if (!list_empty(&inode->i_dentry)) {
181                 printk("new_inode -fatal: aliases %d, ct %d lnk %d\n", 
182                        rep->ino, atomic_read(&inode->i_count), 
183                        inode->i_nlink);
184                 iput(inode);
185                 EXIT;
186                 return ERR_PTR(-EIO);
187         }
188
189         EXIT;
190         return inode;
191 } /* ll_new_inode */
192
193 int ll_mdc_unlink(struct inode *dir, const char *name, int len)
194 {
195         struct mds_rep *rep;
196         struct ptlrep_hdr *hdr;
197         int err;
198         struct ll_sb_info *sbi = ll_i2sbi(dir);
199
200         ENTRY;
201
202         err = mdc_unlink(sbi->ll_peer_ptr, dir, name, len, &rep, &hdr); 
203
204         if (err) { 
205                 EXIT;
206                 return err;
207         }
208         if ( hdr->status) {
209                 EXIT;
210                 return hdr->status;
211         }
212
213         EXIT;
214         return 0;
215 }
216
217 int ll_mdc_link(struct dentry *src, struct inode *dir, 
218                 const char *name, int len)
219 {
220         struct mds_rep *rep;
221         struct ptlrep_hdr *hdr;
222         int err;
223         struct ll_sb_info *sbi = ll_i2sbi(dir);
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 = ll_i2sbi(src);
249
250         ENTRY;
251
252         err = mdc_rename(sbi->ll_peer_ptr, src, tgt, 
253                          old->d_name.name, old->d_name.len, 
254                          new->d_name.name, new->d_name.len, 
255                          &rep, &hdr); 
256
257         if (err) { 
258                 EXIT;
259                 return err;
260         }
261         if ( hdr->status) {
262                 EXIT;
263                 return hdr->status;
264         }
265
266         EXIT;
267         return 0;
268 }
269
270 /*
271  * By the time this is called, we already have created
272  * the directory cache entry for the new file, but it
273  * is so far negative - it has no inode.
274  *
275  * If the create succeeds, we fill in the inode information
276  * with d_instantiate(). 
277  */
278 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
279 {
280         int err; 
281         struct obdo oa;
282         struct inode * inode;
283
284         err = obd_create(IID(dir), &oa);  
285         if (err) { 
286                 EXIT; 
287                 return err;
288         }
289
290         mode = mode | S_IFREG;
291         CDEBUG(D_DENTRY, "name %s mode %o\n", dentry->d_name.name, mode);
292         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
293                                NULL, 0,
294                                mode, oa.o_id);
295         err = PTR_ERR(inode);
296         if (!IS_ERR(inode)) {
297                 // XXX clean up the object
298                 inode->i_op = &ll_file_inode_operations;
299                 inode->i_fop = &ll_file_operations;
300                 inode->i_mapping->a_ops = &ll_aops;
301                 err = ext2_add_nondir(dentry, inode);
302         }
303         EXIT;
304         return err;
305 } /* ll_create */
306
307
308 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
309 {
310         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
311                                               dentry->d_name.len, NULL, 0,
312                                               mode, 0);
313         int err = PTR_ERR(inode);
314         if (!IS_ERR(inode)) {
315                 init_special_inode(inode, mode, rdev);
316                 err = ext2_add_nondir(dentry, inode);
317         }
318         return err;
319 }
320
321 static int ll_symlink (struct inode * dir, struct dentry * dentry,
322         const char * symname)
323 {
324         int err = -ENAMETOOLONG;
325         unsigned l = strlen(symname);
326         struct inode * inode;
327         struct ll_inode_info *oinfo;
328
329         if (l > LL_INLINESZ)
330                 return err;
331
332         inode = ll_create_node(dir, dentry->d_name.name, 
333                                dentry->d_name.len, symname, l,
334                                S_IFLNK | S_IRWXUGO, 0);
335         err = PTR_ERR(inode);
336         if (IS_ERR(inode))
337                 return err;
338
339         oinfo = ll_i2info(inode);
340         
341         inode->i_op = &ll_fast_symlink_inode_operations;
342         memcpy(oinfo->lli_inline, symname, l);
343         inode->i_size = l-1;
344
345         err = ext2_add_nondir(dentry, inode);
346
347         if (err) { 
348                 ext2_dec_count(inode);
349                 iput (inode);
350         }
351         return err;
352 }
353
354 static int ll_link (struct dentry * old_dentry, struct inode * dir,
355         struct dentry *dentry)
356 {
357         int err;
358         struct inode *inode = old_dentry->d_inode;
359
360         if (S_ISDIR(inode->i_mode))
361                 return -EPERM;
362
363         if (inode->i_nlink >= EXT2_LINK_MAX)
364                 return -EMLINK;
365
366         err = ll_mdc_link(old_dentry, dir, 
367                           dentry->d_name.name, dentry->d_name.len);
368         if (err) { 
369                 EXIT;
370                 return err;
371         }
372
373         inode->i_ctime = CURRENT_TIME;
374         ext2_inc_count(inode);
375         atomic_inc(&inode->i_count);
376
377         return ext2_add_nondir(dentry, inode);
378 }
379
380
381 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
382 {
383         struct inode * inode;
384         int err = -EMLINK;
385         ENTRY;
386
387         if (dir->i_nlink >= EXT2_LINK_MAX)
388                 goto out;
389
390         ext2_inc_count(dir);
391
392         inode = ll_create_node (dir, dentry->d_name.name, 
393                                 dentry->d_name.len, NULL, 0, 
394                                 S_IFDIR | mode, 0);
395         err = PTR_ERR(inode);
396         if (IS_ERR(inode))
397                 goto out_dir;
398
399         inode->i_op = &ll_dir_inode_operations;
400         inode->i_fop = &ll_dir_operations;
401         inode->i_mapping->a_ops = &ll_aops;
402         inode->i_nlink = 1;
403         ext2_inc_count(inode);
404
405         err = ext2_make_empty(inode, dir);
406         if (err)
407                 goto out_fail;
408
409         err = ll_add_link(dentry, inode);
410         if (err)
411                 goto out_fail;
412
413         d_instantiate(dentry, inode);
414 out:
415         EXIT;
416         return err;
417
418 out_fail:
419         ext2_dec_count(inode);
420         ext2_dec_count(inode);
421         iput(inode);
422         EXIT;
423 out_dir:
424         ext2_dec_count(dir);
425         EXIT;
426         goto out;
427 }
428
429 static int ll_unlink(struct inode * dir, struct dentry *dentry)
430 {
431         struct inode * inode = dentry->d_inode;
432         struct ext2_dir_entry_2 * de;
433         struct page * page;
434         int err = -ENOENT;
435
436         de = ext2_find_entry (dir, dentry, &page);
437         if (!de)
438                 goto out;
439         
440         err = ll_mdc_unlink(dir, dentry->d_name.name, dentry->d_name.len);
441         if (err) 
442                 goto out;
443
444
445         err = ext2_delete_entry (de, page);
446         if (err)
447                 goto out;
448
449         inode->i_ctime = dir->i_ctime;
450         ext2_dec_count(inode);
451         err = 0;
452 out:
453         return err;
454 }
455
456
457 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
458 {
459         struct inode * inode = dentry->d_inode;
460         int err = -ENOTEMPTY;
461
462         if (ext2_empty_dir(inode)) {
463                 err = ll_unlink(dir, dentry);
464                 if (!err) {
465                         inode->i_size = 0;
466                         ext2_dec_count(inode);
467                         ext2_dec_count(dir);
468                 }
469         }
470         return err;
471 }
472
473 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
474         struct inode * new_dir, struct dentry * new_dentry )
475 {
476         struct inode * old_inode = old_dentry->d_inode;
477         struct inode * new_inode = new_dentry->d_inode;
478         struct page * dir_page = NULL;
479         struct ext2_dir_entry_2 * dir_de = NULL;
480         struct page * old_page;
481         struct ext2_dir_entry_2 * old_de;
482         int err = -ENOENT;
483
484         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
485         if (err) 
486                 goto out;
487
488         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
489         if (!old_de)
490                 goto out;
491
492         if (S_ISDIR(old_inode->i_mode)) {
493                 err = -EIO;
494                 dir_de = ext2_dotdot(old_inode, &dir_page);
495                 if (!dir_de)
496                         goto out_old;
497         }
498
499         if (new_inode) {
500                 struct page *new_page;
501                 struct ext2_dir_entry_2 *new_de;
502
503                 err = -ENOTEMPTY;
504                 if (dir_de && !ext2_empty_dir (new_inode))
505                         goto out_dir;
506
507                 err = -ENOENT;
508                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
509                 if (!new_de)
510                         goto out_dir;
511                 ext2_inc_count(old_inode);
512                 ext2_set_link(new_dir, new_de, new_page, old_inode);
513                 new_inode->i_ctime = CURRENT_TIME;
514                 if (dir_de)
515                         new_inode->i_nlink--;
516                 ext2_dec_count(new_inode);
517         } else {
518                 if (dir_de) {
519                         err = -EMLINK;
520                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
521                                 goto out_dir;
522                 }
523                 ext2_inc_count(old_inode);
524                 err = ll_add_link(new_dentry, old_inode);
525                 if (err) {
526                         ext2_dec_count(old_inode);
527                         goto out_dir;
528                 }
529                 if (dir_de)
530                         ext2_inc_count(new_dir);
531         }
532
533         ext2_delete_entry (old_de, old_page);
534         ext2_dec_count(old_inode);
535
536         if (dir_de) {
537                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
538                 ext2_dec_count(old_dir);
539         }
540         return 0;
541
542
543 out_dir:
544         if (dir_de) {
545                 kunmap(dir_page);
546                 page_cache_release(dir_page);
547         }
548 out_old:
549         kunmap(old_page);
550         page_cache_release(old_page);
551 out:
552         return err;
553 }
554
555 struct inode_operations ll_dir_inode_operations = {
556         create:         ll_create,
557         lookup:         ll_lookup,
558         link:           ll_link,
559         unlink:         ll_unlink,
560         symlink:        ll_symlink,
561         mkdir:          ll_mkdir,
562         rmdir:          ll_rmdir,
563         mknod:          ll_mknod,
564         rename:         ll_rename,
565         setattr:        ll_setattr
566 };