Whamcloud - gitweb
Merge trivial changes from branch to head.
[fs/lustre-release.git] / lustre / llite / namei.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * This code is issued under the GNU General Public License.
5  * See the file COPYING in this distribution
6  *
7  * Copyright (C) 1992, 1993, 1994, 1995
8  * Remy Card (card@masi.ibp.fr)
9  * Laboratoire MASI - Institut Blaise Pascal
10  * Universite Pierre et Marie Curie (Paris VI)
11  *
12  *  from
13  *
14  *  linux/fs/ext2/namei.c
15  *
16  *  Copyright (C) 1991, 1992  Linus Torvalds
17  *
18  *  Big-endian to little-endian byte-swapping/bitmaps by
19  *        David S. Miller (davem@caip.rutgers.edu), 1995
20  *  Directory entry file type support and forward compatibility hooks
21  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
22  *
23  *  Changes for use in OBDFS
24  *  Copyright (c) 1999, Seagate Technology Inc.
25  *  Copyright (C) 2001, Cluster File Systems, Inc.
26  *                       Rewritten based on recent ext2 page cache use.
27  *
28  */
29
30 #include <linux/fs.h>
31 #include <linux/locks.h>
32 #include <linux/quotaops.h>
33
34 #define DEBUG_SUBSYSTEM S_LLITE
35
36 #include <linux/obd_support.h>
37 #include <linux/lustre_lite.h>
38 #include <linux/lustre_dlm.h>
39 extern struct address_space_operations ll_aops;
40
41 /* from super.c */
42 extern void ll_change_inode(struct inode *inode);
43 extern int ll_setattr(struct dentry *de, struct iattr *attr);
44
45 /* from dir.c */
46 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
47 ino_t ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
48 int ext2_make_empty(struct inode *inode, struct inode *parent);
49 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
50                    struct dentry *dentry, struct page ** res_page);
51 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
52 int ext2_empty_dir (struct inode * inode);
53 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
54 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
55                    struct page *page, struct inode *inode);
56
57 /*
58  * Couple of helper functions - make the code slightly cleaner.
59  */
60 static inline void ext2_inc_count(struct inode *inode)
61 {
62         inode->i_nlink++;
63 }
64
65 /* postpone the disk update until the inode really goes away */
66 static inline void ext2_dec_count(struct inode *inode)
67 {
68         inode->i_nlink--;
69 }
70
71 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
72 {
73         int err;
74         err = ll_add_link(dentry, inode);
75         if (!err) {
76                 d_instantiate(dentry, inode);
77                 return 0;
78         }
79         ext2_dec_count(inode);
80         iput(inode);
81         return err;
82 }
83
84 /* methods */
85 static int ll_find_inode(struct inode *inode, unsigned long ino, void *opaque)
86 {
87         struct mds_body *body = (struct mds_body *)opaque;
88
89         if (inode->i_generation != body->generation)
90                 return 0;
91
92         return 1;
93 }
94
95 extern struct dentry_operations ll_d_ops;
96
97 int ll_lock(struct inode *dir, struct dentry *dentry,
98             struct lookup_intent *it, struct lustre_handle *lockh)
99 {
100         struct ll_sb_info *sbi = ll_i2sbi(dir);
101         int err;
102
103         if ((it->it_op & (IT_CREAT | IT_MKDIR | IT_SYMLINK | IT_SETATTR |
104                           IT_MKNOD)) )
105                 err = mdc_enqueue(&sbi->ll_mdc_conn, LDLM_MDSINTENT,
106                                   it, LCK_PW, dir, dentry, lockh, 0, NULL, 0,
107                                   dir, sizeof(*dir));
108         else if (it->it_op & (IT_READDIR | IT_GETATTR | IT_OPEN | IT_UNLINK |
109                               IT_RMDIR))
110                 err = mdc_enqueue(&sbi->ll_mdc_conn, LDLM_MDSINTENT,
111                                   it, LCK_PR, dir, dentry, lockh, 0, NULL, 0,
112                                   dir, sizeof(*dir));
113         else {
114                 LBUG();
115                 RETURN(-1);
116         }
117
118         RETURN(err);
119 }
120
121 int ll_unlock(__u32 mode, struct lustre_handle *lockh)
122 {
123         ENTRY;
124
125         ldlm_lock_decref(lockh, mode);
126
127         RETURN(0);
128 }
129
130 static struct dentry *ll_lookup2(struct inode * dir, struct dentry *dentry,
131                                  struct lookup_intent *it)
132 {
133         struct ptlrpc_request *request = NULL;
134         struct inode * inode = NULL;
135         struct ll_sb_info *sbi = ll_i2sbi(dir);
136         struct ll_inode_md md;
137         struct lustre_handle lockh;
138         int err, type, offset;
139         ino_t ino;
140
141         ENTRY;
142
143         if (it == NULL) {
144                 LBUG();
145                 RETURN(NULL);
146         }
147
148         CDEBUG(D_INFO, "name: %*s, intent op: %d\n", dentry->d_name.len,
149                dentry->d_name.name, it->it_op);
150
151         if (dentry->d_name.len > EXT2_NAME_LEN)
152                 RETURN(ERR_PTR(-ENAMETOOLONG));
153
154         err = ll_lock(dir, dentry, it, &lockh);
155         memcpy(it->it_lock_handle, &lockh, sizeof(lockh));
156
157         if ( (it->it_op & (IT_CREAT | IT_MKDIR | IT_SYMLINK | IT_MKNOD)) &&
158              it->it_disposition && !it->it_status)
159                 GOTO(negative, NULL);
160
161         if ( (it->it_op & (IT_GETATTR | IT_UNLINK | IT_RMDIR)) &&
162              it->it_disposition && it->it_status)
163                 GOTO(negative, NULL);
164
165         if (!it->it_disposition) {
166                 struct ll_inode_info *lli = ll_i2info(dir);
167                 memcpy(&lli->lli_intent_lock_handle, &lockh, sizeof(lockh));
168
169                 ino = ll_inode_by_name(dir, dentry, &type);
170
171                 err = mdc_getattr(&sbi->ll_mdc_conn, ino, type,
172                                   OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, 0, &request);
173                 if (err) {
174                         CERROR("failure %d inode %ld\n", err, (long)ino);
175                         ptlrpc_free_req(request);
176                         RETURN(ERR_PTR(-abs(err)));
177                 }
178                 offset = 0;
179         } else if (it->it_op == IT_UNLINK) { 
180                 struct obdo *obdo;
181                 request = (struct ptlrpc_request *)it->it_data;
182                 obdo = lustre_msg_buf(request->rq_repmsg, 1);
183                 inode = new_inode(dir->i_sb);
184                 ll_i2info(inode)->lli_obdo = obdo_alloc();
185
186                 /* XXX fix mem allocation error */
187                 memcpy(ll_i2info(inode)->lli_obdo, obdo, sizeof(*obdo));
188
189                 if (!inode) 
190                         GOTO(out_req, -ENOMEM);
191                 inode->i_mode= S_IFREG;
192                 inode->i_nlink = 1;
193                 GOTO(out_req, 0);
194         } else if (it->it_op == IT_RMDIR) { 
195                 inode = new_inode(dir->i_sb);
196                 if (!inode) 
197                         GOTO(out_req, -ENOMEM);
198                 ll_i2info(inode)->lli_obdo = NULL;
199                 inode->i_mode= S_IFDIR;
200                 inode->i_nlink = 1;
201                 GOTO(out_req, 0);
202         } else {
203                 struct mds_body *body;
204
205                 offset = 1;
206                 request = (struct ptlrpc_request *)it->it_data;
207                 body = lustre_msg_buf(request->rq_repmsg, 1);
208                 type = body->mode;
209                 ino = body->fid1.id;
210         }
211
212         if (S_ISREG(type)) {
213                 if (request->rq_repmsg->bufcount < offset + 2 ||
214                     request->rq_repmsg->buflens[offset + 1] !=
215                     sizeof(struct obdo))
216                         LBUG();
217
218                 md.obdo = lustre_msg_buf(request->rq_repmsg, offset + 1);
219         } else
220                 md.obdo = NULL;
221
222         md.body = lustre_msg_buf(request->rq_repmsg, offset);
223
224         inode = iget4(dir->i_sb, ino, ll_find_inode, &md);
225
226         if (it->it_op & IT_RENAME)
227                 it->it_data = dentry;
228
229  out_req:
230         ptlrpc_free_req(request);
231         if (!inode)
232                 RETURN(ERR_PTR(-ENOMEM));
233
234         EXIT;
235  negative:
236         dentry->d_op = &ll_d_ops;
237         d_add(dentry, inode);
238         return NULL;
239 }
240
241 static struct inode *ll_create_node(struct inode *dir, const char *name,
242                                     int namelen, const char *tgt, int tgtlen,
243                                     int mode, __u64 extra,
244                                     struct lookup_intent *it, struct obdo *obdo)
245 {
246         struct inode *inode;
247         struct ptlrpc_request *request = NULL;
248         struct mds_body *body;
249         int rc;
250         time_t time = CURRENT_TIME;
251         struct ll_sb_info *sbi = ll_i2sbi(dir);
252         int gid = current->fsgid;
253         struct ll_inode_md md;
254
255         ENTRY;
256
257         if (dir->i_mode & S_ISGID) {
258                 gid = dir->i_gid;
259                 if (S_ISDIR(mode))
260                         mode |= S_ISGID;
261         }
262
263         if (!it->it_disposition) {
264                 rc = mdc_create(&sbi->ll_mdc_conn, dir, name, namelen, tgt,
265                                  tgtlen, mode, current->fsuid,
266                                  gid, time, extra, obdo, &request);
267                 if (rc) {
268                         inode = ERR_PTR(rc);
269                         GOTO(out, rc);
270                 }
271                 body = lustre_msg_buf(request->rq_repmsg, 0);
272                 md.obdo = obdo;
273         } else {
274                 request = it->it_data;
275                 body = lustre_msg_buf(request->rq_repmsg, 1);
276                 md.obdo = NULL;
277         }
278
279         body->valid = OBD_MD_FLNOTOBD;
280
281         body->nlink = 1;
282         body->atime = body->ctime = body->mtime = time;
283         body->uid = current->fsuid;
284         body->gid = gid;
285         body->mode = mode;
286
287         md.body = body;
288
289         inode = iget4(dir->i_sb, body->ino, ll_find_inode, &md);
290         if (IS_ERR(inode)) {
291                 rc = PTR_ERR(inode);
292                 CERROR("new_inode -fatal: rc %d\n", rc);
293                 LBUG();
294                 GOTO(out, rc);
295         }
296
297         if (!list_empty(&inode->i_dentry)) {
298                 CERROR("new_inode -fatal: inode %d, ct %d lnk %d\n",
299                        body->ino, atomic_read(&inode->i_count),
300                        inode->i_nlink);
301                 iput(inode);
302                 LBUG();
303                 inode = ERR_PTR(-EIO);
304                 GOTO(out, -EIO);
305         }
306
307         EXIT;
308  out:
309         ptlrpc_free_req(request);
310         return inode;
311 }
312
313 int ll_mdc_unlink(struct inode *dir, struct inode *child,
314                   const char *name, int len)
315 {
316         struct ptlrpc_request *request = NULL;
317         int err;
318         struct ll_sb_info *sbi = ll_i2sbi(dir);
319
320         ENTRY;
321
322         err = mdc_unlink(&sbi->ll_mdc_conn, dir, child,
323                          name, len, &request);
324         ptlrpc_free_req(request);
325
326         RETURN(err);
327 }
328
329 int ll_mdc_link(struct dentry *src, struct inode *dir,
330                 const char *name, int len)
331 {
332         struct ptlrpc_request *request = NULL;
333         int err;
334         struct ll_sb_info *sbi = ll_i2sbi(dir);
335
336         ENTRY;
337
338         err = mdc_link(&sbi->ll_mdc_conn, src, dir, name,
339                        len, &request);
340         ptlrpc_free_req(request);
341
342         RETURN(err);
343 }
344
345 int ll_mdc_rename(struct inode *src, struct inode *tgt,
346                   struct dentry *old, struct dentry *new)
347 {
348         struct ptlrpc_request *request = NULL;
349         struct ll_sb_info *sbi = ll_i2sbi(src);
350         int err;
351
352         ENTRY;
353
354         err = mdc_rename(&sbi->ll_mdc_conn, src, tgt,
355                          old->d_name.name, old->d_name.len,
356                          new->d_name.name, new->d_name.len, &request);
357         ptlrpc_free_req(request);
358
359         RETURN(err);
360 }
361
362 /*
363  * By the time this is called, we already have created
364  * the directory cache entry for the new file, but it
365  * is so far negative - it has no inode.
366  *
367  * If the create succeeds, we fill in the inode information
368  * with d_instantiate().
369  */
370
371 static int ll_create(struct inode * dir, struct dentry * dentry, int mode)
372 {
373         int err, rc = 0;
374         struct obdo oa;
375         struct inode *inode;
376
377         if (dentry->d_it->it_disposition == 0) {
378                 memset(&oa, 0, sizeof(oa));
379                 oa.o_valid = OBD_MD_FLMODE;
380                 oa.o_mode = S_IFREG | 0600;
381                 rc = obd_create(ll_i2obdconn(dir), &oa);
382                 if (rc)
383                         RETURN(rc);
384         }
385
386         mode = mode | S_IFREG;
387         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n",
388                dentry->d_name.name, mode, (unsigned long long)oa.o_id);
389         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
390                                NULL, 0, mode, 0, dentry->d_it, &oa);
391
392         if (IS_ERR(inode)) {
393                 rc = PTR_ERR(inode);
394                 CERROR("error creating MDS object for id %Ld: rc = %d\n",
395                        (unsigned long long)oa.o_id, rc);
396                 GOTO(out_destroy, rc);
397         }
398
399         if (dentry->d_it->it_disposition) {
400                 struct ll_inode_info *ii = ll_i2info(inode);
401                 ii->lli_flags |= OBD_FL_CREATEONOPEN;
402                 memcpy(&ii->lli_intent_lock_handle,
403                        dentry->d_it->it_lock_handle,
404                        sizeof(struct lustre_handle));
405         }
406
407         /* no directory data updates when intents rule */
408         if (dentry->d_it->it_disposition == 0)
409                 rc = ext2_add_nondir(dentry, inode);
410         else
411                 d_instantiate(dentry, inode);
412         RETURN(rc);
413
414 out_destroy:
415         err = obd_destroy(ll_i2obdconn(dir), &oa);
416         if (err)
417                 CERROR("error destroying object %Ld in error path: err = %d\n",
418                        (unsigned long long)oa.o_id, err);
419         return rc;
420 }
421
422 static int ll_mknod(struct inode *dir, struct dentry *dentry, int mode,
423                     int rdev)
424 {
425         struct inode * inode = ll_create_node(dir, dentry->d_name.name,
426                                               dentry->d_name.len, NULL, 0,
427                                               mode, rdev, NULL, NULL);
428         int err = PTR_ERR(inode);
429         if (!IS_ERR(inode))
430                 err = ext2_add_nondir(dentry, inode);
431         return err;
432 }
433
434 static int ll_symlink(struct inode *dir, struct dentry *dentry,
435                       const char *symname)
436 {
437         int err = -ENAMETOOLONG;
438         unsigned l = strlen(symname);
439         struct inode * inode;
440         struct ll_inode_info *oinfo;
441
442         if (l > LL_INLINESZ)
443                 return err;
444
445         inode = ll_create_node(dir, dentry->d_name.name,
446                                dentry->d_name.len, symname, l,
447                                S_IFLNK | S_IRWXUGO, 0, dentry->d_it, NULL);
448         err = PTR_ERR(inode);
449         if (IS_ERR(inode))
450                 return err;
451
452         oinfo = ll_i2info(inode);
453
454         memcpy(oinfo->lli_inline, symname, l);
455         inode->i_size = l-1;
456
457         err = ext2_add_nondir(dentry, inode);
458
459         if (err) {
460                 ext2_dec_count(inode);
461                 iput (inode);
462         }
463         return err;
464 }
465
466 static int ll_link(struct dentry * old_dentry, struct inode * dir,
467                    struct dentry *dentry)
468 {
469         int err;
470         struct inode *inode = old_dentry->d_inode;
471
472         if (S_ISDIR(inode->i_mode))
473                 return -EPERM;
474
475         if (inode->i_nlink >= EXT2_LINK_MAX)
476                 return -EMLINK;
477
478         err = ll_mdc_link(old_dentry, dir,
479                           dentry->d_name.name, dentry->d_name.len);
480         if (err) {
481                 EXIT;
482                 return err;
483         }
484
485         inode->i_ctime = CURRENT_TIME;
486         ext2_inc_count(inode);
487         atomic_inc(&inode->i_count);
488
489         return ext2_add_nondir(dentry, inode);
490 }
491
492 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
493 {
494         struct inode * inode;
495         int err = -EMLINK;
496         ENTRY;
497
498         if (dir->i_nlink >= EXT2_LINK_MAX)
499                 goto out;
500
501         ext2_inc_count(dir);
502
503         inode = ll_create_node (dir, dentry->d_name.name,
504                                 dentry->d_name.len, NULL, 0,
505                                 S_IFDIR | mode, 0, dentry->d_it, NULL);
506         err = PTR_ERR(inode);
507         if (IS_ERR(inode))
508                 goto out_dir;
509
510         inode->i_nlink = 1;
511         ext2_inc_count(inode);
512
513         err = ext2_make_empty(inode, dir);
514         if (err)
515                 goto out_fail;
516
517         /* no directory data updates when intents rule */
518         if (dentry->d_it->it_disposition == 0) {
519                 err = ll_add_link(dentry, inode);
520                 if (err)
521                         goto out_fail;
522         }
523
524         d_instantiate(dentry, inode);
525 out:
526         EXIT;
527         return err;
528
529 out_fail:
530         ext2_dec_count(inode);
531         ext2_dec_count(inode);
532         iput(inode);
533         EXIT;
534 out_dir:
535         ext2_dec_count(dir);
536         EXIT;
537         goto out;
538 }
539
540 static int ll_unlink(struct inode * dir, struct dentry *dentry)
541 {
542         struct inode * inode = dentry->d_inode;
543         struct ext2_dir_entry_2 * de;
544         struct page * page;
545         int err = -ENOENT;
546
547         if (dentry->d_it && dentry->d_it->it_disposition) { 
548                 inode->i_nlink = 0;
549                 GOTO(out, err=0);
550         }
551
552         de = ext2_find_entry (dir, dentry, &page);
553         if (!de)
554                 goto out;
555
556         err = ll_mdc_unlink(dir, dentry->d_inode,
557                             dentry->d_name.name, dentry->d_name.len);
558         if (err)
559                 goto out;
560
561         err = ext2_delete_entry (de, page);
562         if (err)
563                 goto out;
564
565         inode->i_ctime = dir->i_ctime;
566         ext2_dec_count(inode);
567 out:
568         return err;
569 }
570
571 static int ll_rmdir(struct inode * dir, struct dentry *dentry)
572 {
573         struct inode * inode = dentry->d_inode;
574         int err = 0;
575         int intent_did = dentry->d_it && dentry->d_it->it_disposition;
576
577         if (!intent_did) { 
578                 if (!ext2_empty_dir(inode))
579                 LBUG();
580
581                 err = ll_unlink(dir, dentry);
582                 if (err) 
583                         RETURN(err);
584         }
585         inode->i_size = 0;
586         ext2_dec_count(inode);
587         ext2_dec_count(dir);
588         RETURN(err);
589 }
590
591 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
592                       struct inode * new_dir, struct dentry * new_dentry )
593 {
594         struct inode * old_inode = old_dentry->d_inode;
595         struct inode * new_inode = new_dentry->d_inode;
596         struct page * dir_page = NULL;
597         struct ext2_dir_entry_2 * dir_de = NULL;
598         struct page * old_page;
599         struct ext2_dir_entry_2 * old_de;
600         int err = -ENOENT;
601
602         if (new_dentry->d_it) {
603                 struct ptlrpc_request *req = new_dentry->d_it->it_data;
604                 err = req->rq_status;
605                 goto out;
606         }
607
608         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry);
609         if (err)
610                 goto out;
611
612         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
613         if (!old_de)
614                 goto out;
615
616         if (S_ISDIR(old_inode->i_mode)) {
617                 err = -EIO;
618                 dir_de = ext2_dotdot(old_inode, &dir_page);
619                 if (!dir_de)
620                         goto out_old;
621         }
622
623         if (new_inode) {
624                 struct page *new_page;
625                 struct ext2_dir_entry_2 *new_de;
626
627                 err = -ENOTEMPTY;
628                 if (dir_de && !ext2_empty_dir (new_inode))
629                         goto out_dir;
630
631                 err = -ENOENT;
632                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
633                 if (!new_de)
634                         goto out_dir;
635                 ext2_inc_count(old_inode);
636                 ext2_set_link(new_dir, new_de, new_page, old_inode);
637                 new_inode->i_ctime = CURRENT_TIME;
638                 if (dir_de)
639                         new_inode->i_nlink--;
640                 ext2_dec_count(new_inode);
641         } else {
642                 if (dir_de) {
643                         err = -EMLINK;
644                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
645                                 goto out_dir;
646                 }
647                 ext2_inc_count(old_inode);
648                 err = ll_add_link(new_dentry, old_inode);
649                 if (err) {
650                         ext2_dec_count(old_inode);
651                         goto out_dir;
652                 }
653                 if (dir_de)
654                         ext2_inc_count(new_dir);
655         }
656
657         ext2_delete_entry (old_de, old_page);
658         ext2_dec_count(old_inode);
659
660         if (dir_de) {
661                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
662                 ext2_dec_count(old_dir);
663         }
664         return 0;
665
666 out_dir:
667         if (dir_de) {
668                 kunmap(dir_page);
669                 page_cache_release(dir_page);
670         }
671 out_old:
672         kunmap(old_page);
673         page_cache_release(old_page);
674 out:
675         return err;
676 }
677
678 struct inode_operations ll_dir_inode_operations = {
679         create:         ll_create,
680         lookup2:        ll_lookup2,
681         link:           ll_link,
682         unlink:         ll_unlink,
683         symlink:        ll_symlink,
684         mkdir:          ll_mkdir,
685         rmdir:          ll_rmdir,
686         mknod:          ll_mknod,
687         rename:         ll_rename,
688         setattr:        ll_setattr
689 };