Whamcloud - gitweb
land v0.9.1 on HEAD, in preparation for a 1.0.x branch
[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  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  *  derived in small part from linux/fs/ext2/namei.c
22  *
23  *  Copyright (C) 1991, 1992  Linus Torvalds
24  *
25  *  Big-endian to little-endian byte-swapping/bitmaps by
26  *        David S. Miller (davem@caip.rutgers.edu), 1995
27  *  Directory entry file type support and forward compatibility hooks
28  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
29  */
30
31 #include <linux/fs.h>
32 #include <linux/sched.h>
33 #include <linux/mm.h>
34 #include <linux/smp_lock.h>
35 #include <linux/quotaops.h>
36 #include <linux/highmem.h>
37 #include <linux/pagemap.h>
38
39 #define DEBUG_SUBSYSTEM S_LLITE
40
41 #include <linux/obd_support.h>
42 #include <linux/lustre_lite.h>
43 #include <linux/lustre_dlm.h>
44 #include "llite_internal.h"
45
46 /* methods */
47
48 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
49 static int ll_test_inode(struct inode *inode, unsigned long ino, void *opaque)
50 #else
51 static int ll_test_inode(struct inode *inode, void *opaque)
52 #endif
53 {
54         static int last_ino, last_gen, last_count;
55         struct lustre_md *md = opaque;
56
57         if (!(md->body->valid & (OBD_MD_FLGENER | OBD_MD_FLID))) {
58                 CERROR("MDS body missing inum or generation\n");
59                 return 0;
60         }
61
62         if (last_ino == md->body->ino && last_gen == md->body->generation &&
63             last_count < 500) {
64                 last_count++;
65         } else {
66                 if (last_count > 1)
67                         CDEBUG(D_VFSTRACE, "compared %u/%u %u times\n",
68                                last_ino, last_gen, last_count);
69                 last_count = 0;
70                 last_ino = md->body->ino;
71                 last_gen = md->body->generation;
72                 CDEBUG(D_VFSTRACE,
73                        "comparing inode %p ino %lu/%u to body %u/%u\n",
74                        inode, inode->i_ino, inode->i_generation,
75                        md->body->ino, md->body->generation);
76         }
77
78         if (inode->i_generation != md->body->generation)
79                 return 0;
80
81         /* Apply the attributes in 'opaque' to this inode */
82         ll_update_inode(inode, md->body, md->lsm);
83         return 1;
84 }
85
86 extern struct dentry_operations ll_d_ops;
87
88 int ll_unlock(__u32 mode, struct lustre_handle *lockh)
89 {
90         ENTRY;
91
92         ldlm_lock_decref(lockh, mode);
93
94         RETURN(0);
95 }
96
97 /* Get an inode by inode number (already instantiated by the intent lookup).
98  * Returns inode or NULL
99  */
100 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
101 int ll_set_inode(struct inode *inode, void *opaque)
102 {
103         ll_read_inode2(inode, opaque);
104         return 0;
105 }
106 struct inode *ll_iget(struct super_block *sb, ino_t hash,
107                       struct lustre_md *md)
108 {
109         struct inode *inode;
110
111         LASSERT(hash != 0);
112         inode = iget5_locked(sb, hash, ll_test_inode, ll_set_inode, md);
113
114         if (inode) {
115                 if (inode->i_state & I_NEW)
116                         unlock_new_inode(inode);
117                 CDEBUG(D_VFSTRACE, "inode: %lu/%u(%p)\n", inode->i_ino,
118                        inode->i_generation, inode);
119         }
120
121         return inode;
122 }
123 #else
124 struct inode *ll_iget(struct super_block *sb, ino_t hash,
125                       struct lustre_md *md)
126 {
127         struct inode *inode;
128         LASSERT(hash != 0);
129         inode = iget4(sb, hash, ll_test_inode, md);
130         if (inode)
131                 CDEBUG(D_VFSTRACE, "inode: %lu/%u(%p)\n", inode->i_ino,
132                        inode->i_generation, inode);
133         return inode;
134 }
135 #endif
136
137 int ll_mdc_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
138                         void *data, int flag)
139 {
140         int rc;
141         struct lustre_handle lockh;
142         ENTRY;
143
144         switch (flag) {
145         case LDLM_CB_BLOCKING:
146                 ldlm_lock2handle(lock, &lockh);
147                 rc = ldlm_cli_cancel(&lockh);
148                 if (rc < 0) {
149                         CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
150                         RETURN(rc);
151                 }
152                 break;
153         case LDLM_CB_CANCELING: {
154                 struct inode *inode = ll_inode_from_lock(lock);
155
156                 /* Invalidate all dentries associated with this inode */
157                 if (inode == NULL)
158                         break;
159
160                 clear_bit(LLI_F_HAVE_MDS_SIZE_LOCK,
161                           &(ll_i2info(inode)->lli_flags));
162
163                 if (lock->l_resource->lr_name.name[0] != inode->i_ino ||
164                     lock->l_resource->lr_name.name[1] != inode->i_generation) {
165                         LDLM_ERROR(lock, "data mismatch with ino %lu/%u",
166                                    inode->i_ino, inode->i_generation);
167                 }
168                 if (S_ISDIR(inode->i_mode)) {
169                         CDEBUG(D_INODE, "invalidating inode %lu\n",
170                                inode->i_ino);
171
172                         ll_invalidate_inode_pages(inode);
173                 }
174
175                 if (inode->i_sb->s_root &&
176                     inode != inode->i_sb->s_root->d_inode)
177                         ll_unhash_aliases(inode);
178                 iput(inode);
179                 break;
180         }
181         default:
182                 LBUG();
183         }
184
185         RETURN(0);
186 }
187
188 int ll_mdc_cancel_unused(struct lustre_handle *conn, struct inode *inode,
189                          int flags, void *opaque)
190 {
191         struct ldlm_res_id res_id =
192                 { .name = {inode->i_ino, inode->i_generation} };
193         struct obd_device *obddev = class_conn2obd(conn);
194         ENTRY;
195         RETURN(ldlm_cli_cancel_unused(obddev->obd_namespace, &res_id, flags,
196                                       opaque));
197 }
198
199
200 void ll_prepare_mdc_op_data(struct mdc_op_data *data, struct inode *i1,
201                             struct inode *i2, const char *name, int namelen,
202                             int mode)
203 {
204         LASSERT(i1);
205
206         ll_i2uctxt(&data->ctxt, i1, i2);
207         ll_inode2fid(&data->fid1, i1);
208
209         if (i2)
210                 ll_inode2fid(&data->fid2, i2);
211
212         data->name = name;
213         data->namelen = namelen;
214         data->create_mode = mode;
215         data->mod_time = LTIME_S(CURRENT_TIME);
216 }
217
218 /* Search "inode"'s alias list for a dentry that has the same name and parent as
219  * de.  If found, return it.  If not found, return de. */
220 struct dentry *ll_find_alias(struct inode *inode, struct dentry *de)
221 {
222         struct list_head *tmp;
223
224         spin_lock(&dcache_lock);
225         list_for_each(tmp, &inode->i_dentry) {
226                 struct dentry *dentry = list_entry(tmp, struct dentry, d_alias);
227
228                 /* We are called here with 'de' already on the aliases list. */
229                 if (dentry == de) {
230                         CERROR("whoops\n");
231                         continue;
232                 }
233
234                 if (dentry->d_parent != de->d_parent)
235                         continue;
236
237                 if (dentry->d_name.len != de->d_name.len)
238                         continue;
239
240                 if (memcmp(dentry->d_name.name, de->d_name.name,
241                            de->d_name.len) != 0)
242                         continue;
243
244                 if (!list_empty(&dentry->d_lru))
245                         list_del_init(&dentry->d_lru);
246
247                 hlist_del_init(&dentry->d_hash);
248                 __d_rehash(dentry, 0); /* avoid taking dcache_lock inside */
249                 spin_unlock(&dcache_lock);
250                 atomic_inc(&dentry->d_count);
251                 iput(inode);
252                 dentry->d_flags &= ~DCACHE_LUSTRE_INVALID;
253                 return dentry;
254         }
255
256         spin_unlock(&dcache_lock);
257
258         return de;
259 }
260
261 static int lookup_it_finish(struct ptlrpc_request *request, int offset,
262                             struct lookup_intent *it, void *data)
263 {
264         struct it_cb_data *icbd = data;
265         struct dentry **de = icbd->icbd_childp;
266         struct inode *parent = icbd->icbd_parent;
267         struct ll_sb_info *sbi = ll_i2sbi(parent);
268         struct dentry *dentry = *de, *saved = *de;
269         struct inode *inode = NULL;
270         int rc;
271
272         /* NB 1 request reference will be taken away by ll_intent_lock()
273          * when I return */
274         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
275                 ENTRY;
276
277                 rc = ll_prep_inode(sbi->ll_osc_exp, &inode, request, offset,
278                                    dentry->d_sb);
279                 if (rc)
280                         RETURN(rc);
281
282                 /* If this is a stat, get the authoritative file size */
283                 if (it->it_op == IT_GETATTR && S_ISREG(inode->i_mode) &&
284                     ll_i2info(inode)->lli_smd != NULL) {
285                         struct ldlm_extent extent = {0, OBD_OBJECT_EOF};
286                         struct lustre_handle lockh = {0};
287                         struct lov_stripe_md *lsm = ll_i2info(inode)->lli_smd;
288                         ldlm_error_t rc;
289
290                         LASSERT(lsm->lsm_object_id != 0);
291
292                         rc = ll_extent_lock(NULL, inode, lsm, LCK_PR, &extent,
293                                             &lockh);
294                         if (rc != ELDLM_OK) {
295                                 iput(inode);
296                                 RETURN(-EIO);
297                         }
298                         ll_extent_unlock(NULL, inode, lsm, LCK_PR, &lockh);
299                 }
300
301                 dentry = *de = ll_find_alias(inode, dentry);
302         } else {
303                 ENTRY;
304         }
305
306         dentry->d_op = &ll_d_ops;
307         ll_set_dd(dentry);
308
309         if (dentry == saved)
310                 d_add(dentry, inode);
311
312         RETURN(0);
313 }
314
315
316 static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
317                                    struct lookup_intent *it, int flags)
318 {
319         struct dentry *save = dentry, *retval;
320         struct ll_fid pfid;
321         struct ll_uctxt ctxt;
322         struct it_cb_data icbd;
323         struct ptlrpc_request *req = NULL;
324         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
325         int rc;
326         ENTRY;
327
328         if (dentry->d_name.len > EXT3_NAME_LEN)
329                 RETURN(ERR_PTR(-ENAMETOOLONG));
330
331         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p),intent=%s\n",
332                dentry->d_name.name, parent->i_ino, parent->i_generation,
333                parent, LL_IT2STR(it));
334
335         if (d_mountpoint(dentry))
336                 CERROR("Tell Peter, lookup on mtpt, it %s\n", LL_IT2STR(it));
337
338         ll_frob_intent(&it, &lookup_it);
339
340         icbd.icbd_childp = &dentry;
341         icbd.icbd_parent = parent;
342         ll_inode2fid(&pfid, parent);
343         ll_i2uctxt(&ctxt, parent, NULL);
344
345         rc = mdc_intent_lock(ll_i2mdcexp(parent), &ctxt, &pfid,
346                              dentry->d_name.name, dentry->d_name.len, NULL, 0,
347                              NULL, it, flags, &req, ll_mdc_blocking_ast);
348         if (rc < 0)
349                 GOTO(out, retval = ERR_PTR(rc));
350
351         rc = lookup_it_finish(req, 1, it, &icbd);
352         if (rc != 0) {
353                 ll_intent_release(it);
354                 GOTO(out, retval = ERR_PTR(rc));
355         }
356
357         ll_lookup_finish_locks(it, dentry);
358
359         if (dentry == save)
360                 GOTO(out, retval = NULL);
361         else
362                 GOTO(out, retval = dentry);
363  out:
364         if (req)
365                 ptlrpc_req_finished(req);
366         return retval;
367 }
368
369 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
370 static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
371                                    struct nameidata *nd)
372 {
373         struct dentry *de;
374         ENTRY;
375
376         if (nd->flags & LOOKUP_LAST && !(nd->flags & LOOKUP_LINK_NOTLAST))
377                 de = ll_lookup_it(parent, dentry, &nd->intent, nd->flags);
378         else
379                 de = ll_lookup_it(parent, dentry, NULL, 0);
380
381         RETURN(de);
382 }
383 #endif
384
385 /* We depend on "mode" being set with the proper file type/umask by now */
386 static struct inode *ll_create_node(struct inode *dir, const char *name,
387                                     int namelen, const void *data, int datalen,
388                                     int mode, __u64 extra,
389                                     struct lookup_intent *it)
390 {
391         struct inode *inode = NULL;
392         struct ptlrpc_request *request = NULL;
393         struct ll_sb_info *sbi = ll_i2sbi(dir);
394         int rc;
395         ENTRY;
396
397         LASSERT(it && it->d.lustre.it_disposition);
398
399         request = it->d.lustre.it_data;
400         rc = ll_prep_inode(sbi->ll_osc_exp, &inode, request, 1, dir->i_sb);
401         if (rc)
402                 GOTO(out, inode = ERR_PTR(rc));
403
404         LASSERT(list_empty(&inode->i_dentry));
405
406         /* We asked for a lock on the directory, but were granted a
407          * lock on the inode.  Since we finally have an inode pointer,
408          * stuff it in the lock. */
409         CDEBUG(D_DLMTRACE, "setting l_ast_data to inode %p (%lu/%u)\n",
410                inode, inode->i_ino, inode->i_generation);
411         mdc_set_lock_data(&it->d.lustre.it_lock_handle, inode);
412         EXIT;
413  out:
414         ptlrpc_req_finished(request);
415         return inode;
416 }
417
418 /*
419  * By the time this is called, we already have created the directory cache
420  * entry for the new file, but it is so far negative - it has no inode.
421  *
422  * We defer creating the OBD object(s) until open, to keep the intent and
423  * non-intent code paths similar, and also because we do not have the MDS
424  * inode number before calling ll_create_node() (which is needed for LOV),
425  * so we would need to do yet another RPC to the MDS to store the LOV EA
426  * data on the MDS.  If needed, we would pass the PACKED lmm as data and
427  * lmm_size in datalen (the MDS still has code which will handle that).
428  *
429  * If the create succeeds, we fill in the inode information
430  * with d_instantiate().
431  */
432 static int ll_create_it(struct inode *dir, struct dentry *dentry, int mode,
433                         struct lookup_intent *it)
434 {
435         struct inode *inode;
436         struct ptlrpc_request *request = it->d.lustre.it_data;
437         int rc = 0;
438         ENTRY;
439
440         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p),intent=%s\n",
441                dentry->d_name.name, dir->i_ino, dir->i_generation, dir,
442                LL_IT2STR(it));
443
444         rc = it_open_error(DISP_OPEN_CREATE, it);
445         if (rc)
446                 RETURN(rc);
447
448         mdc_store_inode_generation(request, 2, 1);
449         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
450                                NULL, 0, mode, 0, it);
451         if (IS_ERR(inode)) {
452                 RETURN(PTR_ERR(inode));
453         }
454
455         d_instantiate(dentry, inode);
456         RETURN(0);
457 }
458
459 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
460 static int ll_create_nd(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *nd)
461 {
462         return ll_create_it(dir, dentry, mode, &nd->intent);
463 }
464 #endif
465
466 static int ll_mknod_raw(struct nameidata *nd, int mode, dev_t rdev)
467 {
468         struct ptlrpc_request *request = NULL;
469         struct inode *dir = nd->dentry->d_inode;
470         const char *name = nd->last.name;
471         int len = nd->last.len;
472         struct ll_sb_info *sbi = ll_i2sbi(dir);
473         struct mdc_op_data op_data;
474         int err = -EMLINK;
475         ENTRY;
476
477         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p)\n",
478                name, dir->i_ino, dir->i_generation, dir);
479
480         if (dir->i_nlink >= EXT3_LINK_MAX)
481                 RETURN(err);
482
483         mode &= ~current->fs->umask;
484
485         switch (mode & S_IFMT) {
486         case 0:
487         case S_IFREG:
488                 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
489         case S_IFCHR:
490         case S_IFBLK:
491         case S_IFIFO:
492         case S_IFSOCK:
493                 ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, 0);
494                 err = mdc_create(sbi->ll_mdc_exp, &op_data, NULL, 0, mode,
495                                  current->fsuid, current->fsgid,
496                                  rdev, &request);
497                 ptlrpc_req_finished(request);
498                 break;
499         case S_IFDIR:
500                 err = -EPERM;
501                 break;
502         default:
503                 err = -EINVAL;
504         }
505         RETURN(err);
506 }
507
508 static int ll_mknod(struct inode *dir, struct dentry *child, int mode,
509                     ll_dev_t rdev)
510 {
511         struct ptlrpc_request *request = NULL;
512         struct inode *inode = NULL;
513         const char *name = child->d_name.name;
514         int len = child->d_name.len;
515         struct ll_sb_info *sbi = ll_i2sbi(dir);
516         struct mdc_op_data op_data;
517         int err = -EMLINK;
518         ENTRY;
519
520         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p)\n",
521                name, dir->i_ino, dir->i_generation, dir);
522
523         if (dir->i_nlink >= EXT3_LINK_MAX)
524                 RETURN(err);
525
526         mode &= ~current->fs->umask;
527
528         switch (mode & S_IFMT) {
529         case 0:
530         case S_IFREG:
531                 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
532         case S_IFCHR:
533         case S_IFBLK:
534         case S_IFIFO:
535         case S_IFSOCK:
536                 ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, 0);
537                 err = mdc_create(sbi->ll_mdc_exp, &op_data, NULL, 0, mode,
538                                  current->fsuid, current->fsgid,
539                                  rdev, &request);
540                 err = ll_prep_inode(sbi->ll_osc_exp, &inode, request, 0,
541                                     child->d_sb);
542                 if (err)
543                         GOTO(out_err, err);
544                 break;
545         case S_IFDIR:
546                 RETURN(-EPERM);
547                 break;
548         default:
549                 RETURN(-EINVAL);
550         }
551
552         d_instantiate(child, inode);
553  out_err:
554         ptlrpc_req_finished(request);
555         RETURN(err);
556 }
557
558 static int ll_symlink_raw(struct nameidata *nd, const char *tgt)
559 {
560         struct inode *dir = nd->dentry->d_inode;
561         const char *name = nd->last.name;
562         int len = nd->last.len;
563         struct ptlrpc_request *request = NULL;
564         struct ll_sb_info *sbi = ll_i2sbi(dir);
565         struct mdc_op_data op_data;
566         int err = -EMLINK;
567         ENTRY;
568
569         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p),target=%s\n",
570                name, dir->i_ino, dir->i_generation, dir, tgt);
571
572         if (dir->i_nlink >= EXT3_LINK_MAX)
573                 RETURN(err);
574
575         ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, 0);
576         err = mdc_create(sbi->ll_mdc_exp, &op_data,
577                          tgt, strlen(tgt) + 1, S_IFLNK | S_IRWXUGO,
578                          current->fsuid, current->fsgid, 0, &request);
579         ptlrpc_req_finished(request);
580         RETURN(err);
581 }
582
583 static int ll_link_raw(struct nameidata *srcnd, struct nameidata *tgtnd)
584 {
585         struct inode *src = srcnd->dentry->d_inode;
586         struct inode *dir = tgtnd->dentry->d_inode;
587         const char *name = tgtnd->last.name;
588         int len = tgtnd->last.len;
589         struct ptlrpc_request *request = NULL;
590         struct mdc_op_data op_data;
591         int err;
592         struct ll_sb_info *sbi = ll_i2sbi(dir);
593
594         ENTRY;
595         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p),dir=%lu/%u(%p),target=%s\n",
596                src->i_ino, src->i_generation, src,
597                dir->i_ino, dir->i_generation, dir, name);
598
599         ll_prepare_mdc_op_data(&op_data, src, dir, name, len, 0);
600         err = mdc_link(sbi->ll_mdc_exp, &op_data, &request);
601         ptlrpc_req_finished(request);
602
603         RETURN(err);
604 }
605
606
607 static int ll_mkdir_raw(struct nameidata *nd, int mode)
608 {
609         struct inode *dir = nd->dentry->d_inode;
610         const char *name = nd->last.name;
611         int len = nd->last.len;
612         struct ptlrpc_request *request = NULL;
613         struct ll_sb_info *sbi = ll_i2sbi(dir);
614         struct mdc_op_data op_data;
615         int err = -EMLINK;
616         ENTRY;
617         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p)\n",
618                name, dir->i_ino, dir->i_generation, dir);
619
620         if (dir->i_nlink >= EXT3_LINK_MAX)
621                 RETURN(err);
622
623         mode = (mode & (S_IRWXUGO|S_ISVTX) & ~current->fs->umask) | S_IFDIR;
624         ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, 0);
625         err = mdc_create(sbi->ll_mdc_exp, &op_data, NULL, 0, mode,
626                          current->fsuid, current->fsgid, 0, &request);
627         ptlrpc_req_finished(request);
628         RETURN(err);
629 }
630
631 static int ll_rmdir_raw(struct nameidata *nd)
632 {
633         struct inode *dir = nd->dentry->d_inode;
634         const char *name = nd->last.name;
635         int len = nd->last.len;
636         struct ptlrpc_request *request = NULL;
637         struct mdc_op_data op_data;
638         int rc;
639         ENTRY;
640         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p)\n",
641                name, dir->i_ino, dir->i_generation, dir);
642
643         ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, S_IFDIR);
644         rc = mdc_unlink(ll_i2sbi(dir)->ll_mdc_exp, &op_data, &request);
645         ptlrpc_req_finished(request);
646         RETURN(rc);
647 }
648
649 int ll_objects_destroy(struct ptlrpc_request *request, struct inode *dir)
650 {
651         struct mds_body *body;
652         struct lov_mds_md *eadata;
653         struct lov_stripe_md *lsm = NULL;
654         struct obd_trans_info oti = { 0 };
655         struct obdo *oa;
656         int rc;
657         ENTRY;
658
659         /* req is swabbed so this is safe */
660         body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
661
662         if (!(body->valid & OBD_MD_FLEASIZE))
663                 RETURN(0);
664
665         if (body->eadatasize == 0) {
666                 CERROR("OBD_MD_FLEASIZE set but eadatasize zero\n");
667                 GOTO(out, rc = -EPROTO);
668         }
669
670         /* The MDS sent back the EA because we unlinked the last reference
671          * to this file. Use this EA to unlink the objects on the OST.
672          * It's opaque so we don't swab here; we leave it to obd_unpackmd() to
673          * check it is complete and sensible. */
674         eadata = lustre_swab_repbuf(request, 1, body->eadatasize, NULL);
675         LASSERT(eadata != NULL);
676         if (eadata == NULL) {
677                 CERROR("Can't unpack MDS EA data\n");
678                 GOTO(out, rc = -EPROTO);
679         }
680
681         rc = obd_unpackmd(ll_i2obdexp(dir), &lsm, eadata, body->eadatasize);
682         if (rc < 0) {
683                 CERROR("obd_unpackmd: %d\n", rc);
684                 GOTO(out, rc);
685         }
686         LASSERT(rc >= sizeof(*lsm));
687
688         oa = obdo_alloc();
689         if (oa == NULL)
690                 GOTO(out_free_memmd, rc = -ENOMEM);
691
692         oa->o_id = lsm->lsm_object_id;
693         oa->o_mode = body->mode & S_IFMT;
694         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE;
695
696         if (body->valid & OBD_MD_FLCOOKIE) {
697                 oa->o_valid |= OBD_MD_FLCOOKIE;
698                 oti.oti_logcookies =
699                         lustre_msg_buf(request->rq_repmsg, 2,
700                                        sizeof(struct llog_cookie) *
701                                        lsm->lsm_stripe_count);
702                 if (oti.oti_logcookies == NULL) {
703                         oa->o_valid &= ~OBD_MD_FLCOOKIE;
704                         body->valid &= ~OBD_MD_FLCOOKIE;
705                 }
706         }
707
708         rc = obd_destroy(ll_i2obdexp(dir), oa, lsm, &oti);
709         obdo_free(oa);
710         if (rc)
711                 CERROR("obd destroy objid "LPX64" error %d\n",
712                        lsm->lsm_object_id, rc);
713  out_free_memmd:
714         obd_free_memmd(ll_i2obdexp(dir), &lsm);
715  out:
716         return rc;
717 }
718
719 static int ll_unlink_raw(struct nameidata *nd)
720 {
721         struct inode *dir = nd->dentry->d_inode;
722         const char *name = nd->last.name;
723         int len = nd->last.len;
724         struct ptlrpc_request *request = NULL;
725         struct mdc_op_data op_data;
726         int rc;
727         ENTRY;
728         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,dir=%lu/%u(%p)\n",
729                name, dir->i_ino, dir->i_generation, dir);
730
731         ll_prepare_mdc_op_data(&op_data, dir, NULL, name, len, 0);
732         rc = mdc_unlink(ll_i2sbi(dir)->ll_mdc_exp, &op_data, &request);
733         if (rc)
734                 GOTO(out, rc);
735
736         rc = ll_objects_destroy(request, dir);
737  out:
738         ptlrpc_req_finished(request);
739         RETURN(rc);
740 }
741
742 static int ll_rename_raw(struct nameidata *oldnd, struct nameidata *newnd)
743 {
744         struct inode *src = oldnd->dentry->d_inode;
745         struct inode *tgt = newnd->dentry->d_inode;
746         const char *oldname = oldnd->last.name;
747         int oldlen  = oldnd->last.len;
748         const char *newname = newnd->last.name;
749         int newlen  = newnd->last.len;
750         struct ptlrpc_request *request = NULL;
751         struct ll_sb_info *sbi = ll_i2sbi(src);
752         struct mdc_op_data op_data;
753         int err;
754         ENTRY;
755         CDEBUG(D_VFSTRACE, "VFS Op:oldname=%s,src_dir=%lu/%u(%p),newname=%s,"
756                "tgt_dir=%lu/%u(%p)\n", oldname, src->i_ino, src->i_generation,
757                src, newname, tgt->i_ino, tgt->i_generation, tgt);
758
759         ll_prepare_mdc_op_data(&op_data, src, tgt, NULL, 0, 0);
760         err = mdc_rename(sbi->ll_mdc_exp, &op_data,
761                          oldname, oldlen, newname, newlen, &request);
762         if (!err) {
763                 err = ll_objects_destroy(request, src);
764         }
765
766         ptlrpc_req_finished(request);
767
768         RETURN(err);
769 }
770
771 struct inode_operations ll_dir_inode_operations = {
772         link_raw:           ll_link_raw,
773         unlink_raw:         ll_unlink_raw,
774         symlink_raw:        ll_symlink_raw,
775         mkdir_raw:          ll_mkdir_raw,
776         rmdir_raw:          ll_rmdir_raw,
777         mknod_raw:          ll_mknod_raw,
778         mknod:              ll_mknod,
779         rename_raw:         ll_rename_raw,
780         setattr:         ll_setattr,
781         setattr_raw:     ll_setattr_raw,
782 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
783         create_it:          ll_create_it,
784         lookup_it:            ll_lookup_it,
785         revalidate_it:      ll_inode_revalidate_it,
786 #else
787         lookup:          ll_lookup_nd,
788         create:          ll_create_nd,
789         getattr_it:         ll_getattr,
790 #endif
791 };