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