Whamcloud - gitweb
- The server side of the DLM wasn't always handling the invalid handle case
[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 obd_id 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 | IT_RENAME | IT_RENAME2))
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         obd_id 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         if (err < 0) {
156                 /* FIXME: Mike handle EINTR here */
157                 LBUG();
158                 RETURN(ERR_PTR(err));
159         }
160         memcpy(it->it_lock_handle, &lockh, sizeof(lockh));
161
162         if ((it->it_op & (IT_CREAT | IT_MKDIR | IT_SYMLINK | IT_MKNOD)) &&
163             it->it_disposition && !it->it_status) {
164 #if 0
165                 if (it->it_data)
166                         CERROR("leaking request %p\n", it->it_data);
167 #endif
168                 GOTO(negative, NULL);
169         }
170
171         if ((it->it_op & (IT_RENAME | IT_GETATTR | IT_UNLINK | IT_RMDIR)) &&
172             it->it_disposition && it->it_status) {
173 #if 0
174                 if (it->it_data)
175                         CERROR("request: %p, status: %d\n", it->it_data,
176                                it->it_status);
177 #endif
178                 GOTO(negative, NULL);
179         }
180
181         request = (struct ptlrpc_request *)it->it_data;
182         if (!it->it_disposition) {
183                 struct ll_inode_info *lli = ll_i2info(dir);
184                 memcpy(&lli->lli_intent_lock_handle, &lockh, sizeof(lockh));
185
186                 ino = ll_inode_by_name(dir, dentry, &type);
187
188                 err = mdc_getattr(&sbi->ll_mdc_conn, ino, type,
189                                   OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, 0, &request);
190                 if (err) {
191                         CERROR("failure %d inode %Ld\n", err, (long long)ino);
192                         ptlrpc_free_req(request);
193                         RETURN(ERR_PTR(-abs(err)));
194                 }
195                 offset = 0;
196         } else if (it->it_op == IT_UNLINK) {
197                 struct obdo *obdo;
198                 obdo = lustre_msg_buf(request->rq_repmsg, 1);
199                 inode = new_inode(dir->i_sb);
200
201                 ll_i2info(inode)->lli_obdo = obdo_alloc();
202                 /* XXX fix mem allocation error */
203                 memcpy(ll_i2info(inode)->lli_obdo, obdo, sizeof(*obdo));
204
205                 if (!inode)
206                         GOTO(out_req, -ENOMEM);
207                 inode->i_mode = S_IFREG;
208                 inode->i_nlink = 1;
209                 GOTO(out_req, 0);
210         } else if (it->it_op == IT_RMDIR) {
211                 inode = new_inode(dir->i_sb);
212                 if (!inode)
213                         GOTO(out_req, -ENOMEM);
214                 ll_i2info(inode)->lli_obdo = NULL;
215                 inode->i_mode = S_IFDIR;
216                 inode->i_nlink = 1;
217                 GOTO(out_req, 0);
218         } else if (it->it_op != IT_RENAME2) {
219                 struct mds_body *body;
220
221                 offset = 1;
222                 body = lustre_msg_buf(request->rq_repmsg, 1);
223                 type = body->mode;
224                 ino = body->fid1.id;
225         }
226
227         if (S_ISREG(type)) {
228                 if (request->rq_repmsg->bufcount < offset + 2 ||
229                     request->rq_repmsg->buflens[offset + 1] !=
230                     sizeof(struct obdo))
231                         LBUG();
232
233                 md.obdo = lustre_msg_buf(request->rq_repmsg, offset + 1);
234         } else
235                 md.obdo = NULL;
236
237         if (!(it->it_op & IT_RENAME2))
238                 md.body = lustre_msg_buf(request->rq_repmsg, offset);
239
240         inode = iget4(dir->i_sb, ino, ll_find_inode, &md);
241
242         if (it->it_op & IT_RENAME)
243                 it->it_data = dentry;
244
245  out_req:
246         ptlrpc_free_req(request);
247         if (!inode)
248                 RETURN(ERR_PTR(-ENOMEM));
249
250         EXIT;
251  negative:
252         dentry->d_op = &ll_d_ops;
253         d_add(dentry, inode);
254         return NULL;
255 }
256
257 static struct inode *ll_create_node(struct inode *dir, const char *name,
258                                     int namelen, const char *tgt, int tgtlen,
259                                     int mode, __u64 extra,
260                                     struct lookup_intent *it, struct obdo *obdo)
261 {
262         struct inode *inode;
263         struct ptlrpc_request *request = NULL;
264         struct mds_body *body;
265         int rc;
266         time_t time = CURRENT_TIME;
267         struct ll_sb_info *sbi = ll_i2sbi(dir);
268         int gid = current->fsgid;
269         struct ll_inode_md md;
270
271         ENTRY;
272
273         if (dir->i_mode & S_ISGID) {
274                 gid = dir->i_gid;
275                 if (S_ISDIR(mode))
276                         mode |= S_ISGID;
277         }
278
279         if (!it->it_disposition) {
280                 rc = mdc_create(&sbi->ll_mdc_conn, dir, name, namelen, tgt,
281                                  tgtlen, mode, current->fsuid,
282                                  gid, time, extra, obdo, &request);
283                 if (rc) {
284                         inode = ERR_PTR(rc);
285                         GOTO(out, rc);
286                 }
287                 body = lustre_msg_buf(request->rq_repmsg, 0);
288                 md.obdo = obdo;
289         } else {
290                 request = it->it_data;
291                 body = lustre_msg_buf(request->rq_repmsg, 1);
292                 md.obdo = NULL;
293         }
294
295         body->valid = OBD_MD_FLNOTOBD;
296
297         body->nlink = 1;
298         body->atime = body->ctime = body->mtime = time;
299         body->uid = current->fsuid;
300         body->gid = gid;
301         body->mode = mode;
302
303         md.body = body;
304
305         inode = iget4(dir->i_sb, body->ino, ll_find_inode, &md);
306         if (IS_ERR(inode)) {
307                 rc = PTR_ERR(inode);
308                 CERROR("new_inode -fatal: rc %d\n", rc);
309                 LBUG();
310                 GOTO(out, rc);
311         }
312
313         if (!list_empty(&inode->i_dentry)) {
314                 CERROR("new_inode -fatal: inode %d, ct %d lnk %d\n",
315                        body->ino, atomic_read(&inode->i_count),
316                        inode->i_nlink);
317                 iput(inode);
318                 LBUG();
319                 inode = ERR_PTR(-EIO);
320                 GOTO(out, -EIO);
321         }
322
323         EXIT;
324  out:
325         ptlrpc_free_req(request);
326         return inode;
327 }
328
329 int ll_mdc_unlink(struct inode *dir, struct inode *child,
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_unlink(&sbi->ll_mdc_conn, dir, child,
339                          name, len, &request);
340         ptlrpc_free_req(request);
341
342         RETURN(err);
343 }
344
345 int ll_mdc_link(struct dentry *src, struct inode *dir,
346                 const char *name, int len)
347 {
348         struct ptlrpc_request *request = NULL;
349         int err;
350         struct ll_sb_info *sbi = ll_i2sbi(dir);
351
352         ENTRY;
353
354         err = mdc_link(&sbi->ll_mdc_conn, src, dir, name,
355                        len, &request);
356         ptlrpc_free_req(request);
357
358         RETURN(err);
359 }
360
361 int ll_mdc_rename(struct inode *src, struct inode *tgt,
362                   struct dentry *old, struct dentry *new)
363 {
364         struct ptlrpc_request *request = NULL;
365         struct ll_sb_info *sbi = ll_i2sbi(src);
366         int err;
367
368         ENTRY;
369
370         err = mdc_rename(&sbi->ll_mdc_conn, src, tgt,
371                          old->d_name.name, old->d_name.len,
372                          new->d_name.name, new->d_name.len, &request);
373         ptlrpc_free_req(request);
374
375         RETURN(err);
376 }
377
378 /*
379  * By the time this is called, we already have created
380  * the directory cache entry for the new file, but it
381  * is so far negative - it has no inode.
382  *
383  * If the create succeeds, we fill in the inode information
384  * with d_instantiate().
385  */
386
387 static int ll_create(struct inode * dir, struct dentry * dentry, int mode)
388 {
389         int err, rc = 0;
390         struct obdo oa;
391         struct inode *inode;
392
393         if (dentry->d_it->it_disposition == 0) {
394                 memset(&oa, 0, sizeof(oa));
395                 oa.o_valid = OBD_MD_FLMODE;
396                 oa.o_mode = S_IFREG | 0600;
397                 rc = obd_create(ll_i2obdconn(dir), &oa);
398                 if (rc)
399                         RETURN(rc);
400         }
401
402         mode = mode | S_IFREG;
403         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n",
404                dentry->d_name.name, mode, (unsigned long long)oa.o_id);
405         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
406                                NULL, 0, mode, 0, dentry->d_it, &oa);
407
408         if (IS_ERR(inode)) {
409                 rc = PTR_ERR(inode);
410                 CERROR("error creating MDS object for id %Ld: rc = %d\n",
411                        (unsigned long long)oa.o_id, rc);
412                 GOTO(out_destroy, rc);
413         }
414
415         if (dentry->d_it->it_disposition) {
416                 struct ll_inode_info *ii = ll_i2info(inode);
417                 ii->lli_flags |= OBD_FL_CREATEONOPEN;
418                 memcpy(&ii->lli_intent_lock_handle,
419                        dentry->d_it->it_lock_handle,
420                        sizeof(struct lustre_handle));
421         }
422
423         /* no directory data updates when intents rule */
424         if (dentry->d_it->it_disposition == 0)
425                 rc = ext2_add_nondir(dentry, inode);
426         else
427                 d_instantiate(dentry, inode);
428         RETURN(rc);
429
430 out_destroy:
431         err = obd_destroy(ll_i2obdconn(dir), &oa);
432         if (err)
433                 CERROR("error destroying object %Ld in error path: err = %d\n",
434                        (unsigned long long)oa.o_id, err);
435         return rc;
436 }
437
438 static int ll_mknod(struct inode *dir, struct dentry *dentry, int mode,
439                     int rdev)
440 {
441         struct inode * inode = ll_create_node(dir, dentry->d_name.name,
442                                               dentry->d_name.len, NULL, 0,
443                                               mode, rdev, NULL, NULL);
444         int err = PTR_ERR(inode);
445         if (!IS_ERR(inode))
446                 err = ext2_add_nondir(dentry, inode);
447         return err;
448 }
449
450 static int ll_symlink(struct inode *dir, struct dentry *dentry,
451                       const char *symname)
452 {
453         int err = -ENAMETOOLONG;
454         unsigned l = strlen(symname);
455         struct inode * inode;
456         struct ll_inode_info *oinfo;
457
458         inode = ll_create_node(dir, dentry->d_name.name,
459                                dentry->d_name.len, symname, l,
460                                S_IFLNK | S_IRWXUGO, 0, dentry->d_it, NULL);
461         err = PTR_ERR(inode);
462         if (IS_ERR(inode))
463                 return err;
464
465         oinfo = ll_i2info(inode);
466
467         OBD_ALLOC(oinfo->lli_symlink_name, l + 1);
468         memcpy(oinfo->lli_symlink_name, symname, l + 1);
469         inode->i_size = l;
470
471         err = ext2_add_nondir(dentry, inode);
472
473         if (err) {
474                 ext2_dec_count(inode);
475                 iput (inode);
476         }
477         return err;
478 }
479
480 static int ll_link(struct dentry * old_dentry, struct inode * dir,
481                    struct dentry *dentry)
482 {
483         int err;
484         struct inode *inode = old_dentry->d_inode;
485
486         if (S_ISDIR(inode->i_mode))
487                 return -EPERM;
488
489         if (inode->i_nlink >= EXT2_LINK_MAX)
490                 return -EMLINK;
491
492         err = ll_mdc_link(old_dentry, dir,
493                           dentry->d_name.name, dentry->d_name.len);
494         if (err) {
495                 EXIT;
496                 return err;
497         }
498
499         inode->i_ctime = CURRENT_TIME;
500         ext2_inc_count(inode);
501         atomic_inc(&inode->i_count);
502
503         return ext2_add_nondir(dentry, inode);
504 }
505
506 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
507 {
508         struct inode * inode;
509         int err = -EMLINK;
510         ENTRY;
511
512         if (dir->i_nlink >= EXT2_LINK_MAX)
513                 goto out;
514
515         ext2_inc_count(dir);
516
517         inode = ll_create_node (dir, dentry->d_name.name,
518                                 dentry->d_name.len, NULL, 0,
519                                 S_IFDIR | mode, 0, dentry->d_it, NULL);
520         err = PTR_ERR(inode);
521         if (IS_ERR(inode))
522                 goto out_dir;
523
524         inode->i_nlink = 1;
525         ext2_inc_count(inode);
526
527         err = ext2_make_empty(inode, dir);
528         if (err)
529                 goto out_fail;
530
531         /* no directory data updates when intents rule */
532         if (dentry->d_it->it_disposition == 0) {
533                 err = ll_add_link(dentry, inode);
534                 if (err)
535                         goto out_fail;
536         }
537
538         d_instantiate(dentry, inode);
539 out:
540         EXIT;
541         return err;
542
543 out_fail:
544         ext2_dec_count(inode);
545         ext2_dec_count(inode);
546         iput(inode);
547         EXIT;
548 out_dir:
549         ext2_dec_count(dir);
550         EXIT;
551         goto out;
552 }
553
554 static int ll_unlink(struct inode * dir, struct dentry *dentry)
555 {
556         struct inode * inode = dentry->d_inode;
557         struct ext2_dir_entry_2 * de;
558         struct page * page;
559         int err = -ENOENT;
560
561         if (dentry->d_it && dentry->d_it->it_disposition) {
562                 inode->i_nlink = 0;
563                 GOTO(out, err = dentry->d_it->it_status);
564         }
565
566         de = ext2_find_entry (dir, dentry, &page);
567         if (!de)
568                 goto out;
569
570         err = ll_mdc_unlink(dir, dentry->d_inode,
571                             dentry->d_name.name, dentry->d_name.len);
572         if (err)
573                 goto out;
574
575         err = ext2_delete_entry (de, page);
576         if (err)
577                 goto out;
578
579         inode->i_ctime = dir->i_ctime;
580         ext2_dec_count(inode);
581 out:
582         return err;
583 }
584
585 static int ll_rmdir(struct inode * dir, struct dentry *dentry)
586 {
587         struct inode * inode = dentry->d_inode;
588         int err = 0;
589         int intent_did = dentry->d_it && dentry->d_it->it_disposition;
590
591         if (!intent_did) {
592                 if (!ext2_empty_dir(inode))
593                 LBUG();
594
595                 err = ll_unlink(dir, dentry);
596                 if (err)
597                         RETURN(err);
598         } else
599                 err = dentry->d_it->it_status;
600         inode->i_size = 0;
601         ext2_dec_count(inode);
602         ext2_dec_count(dir);
603         RETURN(err);
604 }
605
606 static int ll_rename(struct inode * old_dir, struct dentry * old_dentry,
607                      struct inode * new_dir, struct dentry * new_dentry)
608 {
609         struct inode * old_inode = old_dentry->d_inode;
610         struct inode * new_inode = new_dentry->d_inode;
611         struct page * dir_page = NULL;
612         struct ext2_dir_entry_2 * dir_de = NULL;
613         struct page * old_page;
614         struct ext2_dir_entry_2 * old_de;
615         int err = -ENOENT;
616
617         if (new_dentry->d_it && new_dentry->d_it->it_disposition)
618                 GOTO(out, err = new_dentry->d_it->it_status);
619
620         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry);
621         if (err)
622                 goto out;
623
624         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
625         if (!old_de)
626                 goto out;
627
628         if (S_ISDIR(old_inode->i_mode)) {
629                 err = -EIO;
630                 dir_de = ext2_dotdot(old_inode, &dir_page);
631                 if (!dir_de)
632                         goto out_old;
633         }
634
635         if (new_inode) {
636                 struct page *new_page;
637                 struct ext2_dir_entry_2 *new_de;
638
639                 err = -ENOTEMPTY;
640                 if (dir_de && !ext2_empty_dir (new_inode))
641                         goto out_dir;
642
643                 err = -ENOENT;
644                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
645                 if (!new_de)
646                         goto out_dir;
647                 ext2_inc_count(old_inode);
648                 ext2_set_link(new_dir, new_de, new_page, old_inode);
649                 new_inode->i_ctime = CURRENT_TIME;
650                 if (dir_de)
651                         new_inode->i_nlink--;
652                 ext2_dec_count(new_inode);
653         } else {
654                 if (dir_de) {
655                         err = -EMLINK;
656                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
657                                 goto out_dir;
658                 }
659                 ext2_inc_count(old_inode);
660                 err = ll_add_link(new_dentry, old_inode);
661                 if (err) {
662                         ext2_dec_count(old_inode);
663                         goto out_dir;
664                 }
665                 if (dir_de)
666                         ext2_inc_count(new_dir);
667         }
668
669         ext2_delete_entry (old_de, old_page);
670         ext2_dec_count(old_inode);
671
672         if (dir_de) {
673                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
674                 ext2_dec_count(old_dir);
675         }
676         return 0;
677
678 out_dir:
679         if (dir_de) {
680                 kunmap(dir_page);
681                 page_cache_release(dir_page);
682         }
683 out_old:
684         kunmap(old_page);
685         page_cache_release(old_page);
686 out:
687         return err;
688 }
689
690 struct inode_operations ll_dir_inode_operations = {
691         create:         ll_create,
692         lookup2:        ll_lookup2,
693         link:           ll_link,
694         unlink:         ll_unlink,
695         symlink:        ll_symlink,
696         mkdir:          ll_mkdir,
697         rmdir:          ll_rmdir,
698         mknod:          ll_mknod,
699         rename:         ll_rename,
700         setattr:        ll_setattr
701 };