Whamcloud - gitweb
Merged branch 'peter' with the tip. Pre-merge tag is 't_20020302_networking'.
[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\n", dentry->d_name.name, mode);
295         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
296                                NULL, 0,
297                                mode, oa.o_id);
298         err = PTR_ERR(inode);
299         if (!IS_ERR(inode)) {
300                 // XXX clean up the object
301                 inode->i_op = &ll_file_inode_operations;
302                 inode->i_fop = &ll_file_operations;
303                 inode->i_mapping->a_ops = &ll_aops;
304                 err = ext2_add_nondir(dentry, inode);
305         }
306         EXIT;
307         return err;
308 } /* ll_create */
309
310
311 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
312 {
313         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
314                                               dentry->d_name.len, NULL, 0,
315                                               mode, 0);
316         int err = PTR_ERR(inode);
317         if (!IS_ERR(inode)) {
318                 init_special_inode(inode, mode, rdev);
319                 err = ext2_add_nondir(dentry, inode);
320         }
321         return err;
322 }
323
324 static int ll_symlink (struct inode * dir, struct dentry * dentry,
325         const char * symname)
326 {
327         int err = -ENAMETOOLONG;
328         unsigned l = strlen(symname);
329         struct inode * inode;
330         struct ll_inode_info *oinfo;
331
332         if (l > LL_INLINESZ)
333                 return err;
334
335         inode = ll_create_node(dir, dentry->d_name.name, 
336                                dentry->d_name.len, symname, l,
337                                S_IFLNK | S_IRWXUGO, 0);
338         err = PTR_ERR(inode);
339         if (IS_ERR(inode))
340                 return err;
341
342         oinfo = ll_i2info(inode);
343         
344         inode->i_op = &ll_fast_symlink_inode_operations;
345         memcpy(oinfo->lli_inline, symname, l);
346         inode->i_size = l-1;
347
348         err = ext2_add_nondir(dentry, inode);
349
350         if (err) { 
351                 ext2_dec_count(inode);
352                 iput (inode);
353         }
354         return err;
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 };