Whamcloud - gitweb
- tiny fix to ost_request.c
[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_mds_client, 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_mds_client, 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_mds_client, 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_mds_client, 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_mds_client, 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
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         memset(&oa, 0, sizeof(oa)); 
285         oa.o_valid = OBD_MD_FLMODE; 
286         oa.o_mode = S_IFREG | 0600;
287         err = obd_create(ll_i2obdconn(dir), &oa);  
288         if (err) { 
289                 EXIT; 
290                 return err;
291         }
292
293         mode = mode | S_IFREG;
294         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n", 
295                dentry->d_name.name, mode, oa.o_id);
296         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
297                                NULL, 0,
298                                mode, oa.o_id);
299         err = PTR_ERR(inode);
300         if (!IS_ERR(inode)) {
301                 // XXX clean up the object
302                 inode->i_op = &ll_file_inode_operations;
303                 inode->i_fop = &ll_file_operations;
304                 inode->i_mapping->a_ops = &ll_aops;
305                 err = ext2_add_nondir(dentry, inode);
306         }
307         EXIT;
308         return err;
309 } /* ll_create */
310
311
312 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
313 {
314         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
315                                               dentry->d_name.len, NULL, 0,
316                                               mode, 0);
317         int err = PTR_ERR(inode);
318         if (!IS_ERR(inode)) {
319                 init_special_inode(inode, mode, rdev);
320                 err = ext2_add_nondir(dentry, inode);
321         }
322         return err;
323 }
324
325 static int ll_symlink (struct inode * dir, struct dentry * dentry,
326         const char * symname)
327 {
328         int err = -ENAMETOOLONG;
329         unsigned l = strlen(symname);
330         struct inode * inode;
331         struct ll_inode_info *oinfo;
332
333         if (l > LL_INLINESZ)
334                 return err;
335
336         inode = ll_create_node(dir, dentry->d_name.name, 
337                                dentry->d_name.len, symname, l,
338                                S_IFLNK | S_IRWXUGO, 0);
339         err = PTR_ERR(inode);
340         if (IS_ERR(inode))
341                 return err;
342
343         oinfo = ll_i2info(inode);
344         
345         inode->i_op = &ll_fast_symlink_inode_operations;
346         memcpy(oinfo->lli_inline, symname, l);
347         inode->i_size = l-1;
348
349         err = ext2_add_nondir(dentry, inode);
350
351         if (err) { 
352                 ext2_dec_count(inode);
353                 iput (inode);
354         }
355         return err;
356 }
357
358 static int ll_link (struct dentry * old_dentry, struct inode * dir,
359         struct dentry *dentry)
360 {
361         int err;
362         struct inode *inode = old_dentry->d_inode;
363
364         if (S_ISDIR(inode->i_mode))
365                 return -EPERM;
366
367         if (inode->i_nlink >= EXT2_LINK_MAX)
368                 return -EMLINK;
369
370         err = ll_mdc_link(old_dentry, dir, 
371                           dentry->d_name.name, dentry->d_name.len);
372         if (err) { 
373                 EXIT;
374                 return err;
375         }
376
377         inode->i_ctime = CURRENT_TIME;
378         ext2_inc_count(inode);
379         atomic_inc(&inode->i_count);
380
381         return ext2_add_nondir(dentry, inode);
382 }
383
384
385 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
386 {
387         struct inode * inode;
388         int err = -EMLINK;
389         ENTRY;
390
391         if (dir->i_nlink >= EXT2_LINK_MAX)
392                 goto out;
393
394         ext2_inc_count(dir);
395
396         inode = ll_create_node (dir, dentry->d_name.name, 
397                                 dentry->d_name.len, NULL, 0, 
398                                 S_IFDIR | mode, 0);
399         err = PTR_ERR(inode);
400         if (IS_ERR(inode))
401                 goto out_dir;
402
403         inode->i_op = &ll_dir_inode_operations;
404         inode->i_fop = &ll_dir_operations;
405         inode->i_mapping->a_ops = &ll_aops;
406         inode->i_nlink = 1;
407         ext2_inc_count(inode);
408
409         err = ext2_make_empty(inode, dir);
410         if (err)
411                 goto out_fail;
412
413         err = ll_add_link(dentry, inode);
414         if (err)
415                 goto out_fail;
416
417         d_instantiate(dentry, inode);
418 out:
419         EXIT;
420         return err;
421
422 out_fail:
423         ext2_dec_count(inode);
424         ext2_dec_count(inode);
425         iput(inode);
426         EXIT;
427 out_dir:
428         ext2_dec_count(dir);
429         EXIT;
430         goto out;
431 }
432
433 static int ll_unlink(struct inode * dir, struct dentry *dentry)
434 {
435         struct inode * inode = dentry->d_inode;
436         struct ext2_dir_entry_2 * de;
437         struct page * page;
438         int err = -ENOENT;
439
440         de = ext2_find_entry (dir, dentry, &page);
441         if (!de)
442                 goto out;
443         
444         err = ll_mdc_unlink(dir, dentry->d_name.name, dentry->d_name.len);
445         if (err) 
446                 goto out;
447
448
449         err = ext2_delete_entry (de, page);
450         if (err)
451                 goto out;
452
453         inode->i_ctime = dir->i_ctime;
454         ext2_dec_count(inode);
455         err = 0;
456 out:
457         return err;
458 }
459
460
461 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
462 {
463         struct inode * inode = dentry->d_inode;
464         int err = -ENOTEMPTY;
465
466         if (ext2_empty_dir(inode)) {
467                 err = ll_unlink(dir, dentry);
468                 if (!err) {
469                         inode->i_size = 0;
470                         ext2_dec_count(inode);
471                         ext2_dec_count(dir);
472                 }
473         }
474         return err;
475 }
476
477 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
478         struct inode * new_dir, struct dentry * new_dentry )
479 {
480         struct inode * old_inode = old_dentry->d_inode;
481         struct inode * new_inode = new_dentry->d_inode;
482         struct page * dir_page = NULL;
483         struct ext2_dir_entry_2 * dir_de = NULL;
484         struct page * old_page;
485         struct ext2_dir_entry_2 * old_de;
486         int err = -ENOENT;
487
488         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
489         if (err) 
490                 goto out;
491
492         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
493         if (!old_de)
494                 goto out;
495
496         if (S_ISDIR(old_inode->i_mode)) {
497                 err = -EIO;
498                 dir_de = ext2_dotdot(old_inode, &dir_page);
499                 if (!dir_de)
500                         goto out_old;
501         }
502
503         if (new_inode) {
504                 struct page *new_page;
505                 struct ext2_dir_entry_2 *new_de;
506
507                 err = -ENOTEMPTY;
508                 if (dir_de && !ext2_empty_dir (new_inode))
509                         goto out_dir;
510
511                 err = -ENOENT;
512                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
513                 if (!new_de)
514                         goto out_dir;
515                 ext2_inc_count(old_inode);
516                 ext2_set_link(new_dir, new_de, new_page, old_inode);
517                 new_inode->i_ctime = CURRENT_TIME;
518                 if (dir_de)
519                         new_inode->i_nlink--;
520                 ext2_dec_count(new_inode);
521         } else {
522                 if (dir_de) {
523                         err = -EMLINK;
524                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
525                                 goto out_dir;
526                 }
527                 ext2_inc_count(old_inode);
528                 err = ll_add_link(new_dentry, old_inode);
529                 if (err) {
530                         ext2_dec_count(old_inode);
531                         goto out_dir;
532                 }
533                 if (dir_de)
534                         ext2_inc_count(new_dir);
535         }
536
537         ext2_delete_entry (old_de, old_page);
538         ext2_dec_count(old_inode);
539
540         if (dir_de) {
541                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
542                 ext2_dec_count(old_dir);
543         }
544         return 0;
545
546
547 out_dir:
548         if (dir_de) {
549                 kunmap(dir_page);
550                 page_cache_release(dir_page);
551         }
552 out_old:
553         kunmap(old_page);
554         page_cache_release(old_page);
555 out:
556         return err;
557 }
558
559 struct inode_operations ll_dir_inode_operations = {
560         create:         ll_create,
561         lookup:         ll_lookup,
562         link:           ll_link,
563         unlink:         ll_unlink,
564         symlink:        ll_symlink,
565         mkdir:          ll_mkdir,
566         rmdir:          ll_rmdir,
567         mknod:          ll_mknod,
568         rename:         ll_rename,
569         setattr:        ll_setattr
570 };