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