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