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