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