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