Whamcloud - gitweb
LU-2049 grant: add support for OBD_CONNECT_GRANT_PARAM
[fs/lustre-release.git] / lustre / mdd / mdd_dir.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdd/mdd_dir.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@intel.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <obd_class.h>
46 #include <obd_support.h>
47 #include <lustre_mds.h>
48 #include <lustre_fid.h>
49
50 #include "mdd_internal.h"
51
52 static const char dot[] = ".";
53 static const char dotdot[] = "..";
54
55 static struct lu_name lname_dotdot = {
56         (char *) dotdot,
57         sizeof(dotdot) - 1
58 };
59
60 static inline int
61 mdd_name_check(struct mdd_device *m, const struct lu_name *ln)
62 {
63         if (!lu_name_is_valid(ln))
64                 return -EINVAL;
65         else if (ln->ln_namelen > m->mdd_dt_conf.ddp_max_name_len)
66                 return -ENAMETOOLONG;
67         else
68                 return 0;
69 }
70
71 /* Get FID from name and parent */
72 static int
73 __mdd_lookup(const struct lu_env *env, struct md_object *pobj,
74              const struct lu_attr *pattr, const struct lu_name *lname,
75              struct lu_fid* fid, int mask)
76 {
77         const char *name                = lname->ln_name;
78         const struct dt_key *key        = (const struct dt_key *)name;
79         struct mdd_object *mdd_obj      = md2mdd_obj(pobj);
80         struct mdd_device *m            = mdo2mdd(pobj);
81         struct dt_object *dir           = mdd_object_child(mdd_obj);
82         int rc;
83         ENTRY;
84
85         if (unlikely(mdd_is_dead_obj(mdd_obj)))
86                 RETURN(-ESTALE);
87
88         if (!mdd_object_exists(mdd_obj))
89                 RETURN(-ESTALE);
90
91         if (mdd_object_remote(mdd_obj)) {
92                 CDEBUG(D_INFO, "%s: Object "DFID" locates on remote server\n",
93                        mdd2obd_dev(m)->obd_name, PFID(mdo2fid(mdd_obj)));
94         }
95
96         rc = mdd_permission_internal_locked(env, mdd_obj, pattr, mask,
97                                             MOR_TGT_PARENT);
98         if (rc)
99                 RETURN(rc);
100
101         if (likely(S_ISDIR(mdd_object_type(mdd_obj)) &&
102                    dt_try_as_dir(env, dir)))
103                 rc = dt_lookup(env, dir, (struct dt_rec *)fid, key);
104         else
105                 rc = -ENOTDIR;
106
107         RETURN(rc);
108 }
109
110 int mdd_lookup(const struct lu_env *env,
111                struct md_object *pobj, const struct lu_name *lname,
112                struct lu_fid *fid, struct md_op_spec *spec)
113 {
114         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
115         int rc;
116         ENTRY;
117
118         rc = mdd_la_get(env, md2mdd_obj(pobj), pattr);
119         if (rc != 0)
120                 RETURN(rc);
121
122         rc = __mdd_lookup(env, pobj, pattr, lname, fid,
123                           (spec != NULL && spec->sp_permitted) ? 0 : MAY_EXEC);
124         RETURN(rc);
125 }
126
127 /**
128  * Get parent FID of the directory
129  *
130  * Read parent FID from linkEA, if that fails, then do lookup
131  * dotdot to get the parent FID.
132  *
133  * \param[in] env       execution environment
134  * \param[in] obj       object from which to find the parent FID
135  * \param[in] attr      attribute of the object
136  * \param[out] fid      fid to get the parent FID
137  *
138  * \retval              0 if getting the parent FID succeeds.
139  * \retval              negative errno if getting the parent FID fails.
140  **/
141 static inline int mdd_parent_fid(const struct lu_env *env,
142                                  struct mdd_object *obj,
143                                  const struct lu_attr *attr,
144                                  struct lu_fid *fid)
145 {
146         struct mdd_thread_info  *info = mdd_env_info(env);
147         struct linkea_data      ldata = { NULL };
148         struct lu_buf           *buf = &info->mti_link_buf;
149         struct lu_name          lname;
150         int                     rc = 0;
151
152         ENTRY;
153
154         LASSERT(S_ISDIR(mdd_object_type(obj)));
155
156         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
157         if (buf->lb_buf == NULL)
158                 GOTO(lookup, rc = 0);
159
160         ldata.ld_buf = buf;
161         rc = mdd_links_read(env, obj, &ldata);
162         if (rc != 0)
163                 GOTO(lookup, rc);
164
165         LASSERT(ldata.ld_leh != NULL);
166         /* Directory should only have 1 parent */
167         if (ldata.ld_leh->leh_reccount > 1)
168                 GOTO(lookup, rc);
169
170         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
171
172         linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, &lname, fid);
173         if (likely(fid_is_sane(fid)))
174                 RETURN(0);
175 lookup:
176         rc =  __mdd_lookup(env, &obj->mod_obj, attr, &lname_dotdot, fid, 0);
177         RETURN(rc);
178 }
179
180 /*
181  * For root fid use special function, which does not compare version component
182  * of fid. Version component is different for root fids on all MDTs.
183  */
184 int mdd_is_root(struct mdd_device *mdd, const struct lu_fid *fid)
185 {
186         return fid_seq(&mdd->mdd_root_fid) == fid_seq(fid) &&
187                 fid_oid(&mdd->mdd_root_fid) == fid_oid(fid);
188 }
189
190 /*
191  * return 1: if lf is the fid of the ancestor of p1;
192  * return 0: if not;
193  *
194  * return -EREMOTE: if remote object is found, in this
195  * case fid of remote object is saved to @pf;
196  *
197  * otherwise: values < 0, errors.
198  */
199 static int mdd_is_parent(const struct lu_env *env,
200                         struct mdd_device *mdd,
201                         struct mdd_object *p1,
202                         const struct lu_attr *attr,
203                         const struct lu_fid *lf,
204                         struct lu_fid *pf)
205 {
206         struct mdd_object *parent = NULL;
207         struct lu_fid *pfid;
208         int rc;
209         ENTRY;
210
211         LASSERT(!lu_fid_eq(mdo2fid(p1), lf));
212         pfid = &mdd_env_info(env)->mti_fid;
213
214         /* Check for root first. */
215         if (mdd_is_root(mdd, mdo2fid(p1)))
216                 RETURN(0);
217
218         for(;;) {
219                 /* this is done recursively */
220                 rc = mdd_parent_fid(env, p1, attr, pfid);
221                 if (rc)
222                         GOTO(out, rc);
223                 if (mdd_is_root(mdd, pfid))
224                         GOTO(out, rc = 0);
225                 if (lu_fid_eq(pfid, &mdd->mdd_local_root_fid))
226                         GOTO(out, rc = 0);
227                 if (lu_fid_eq(pfid, lf))
228                         GOTO(out, rc = 1);
229                 if (parent != NULL)
230                         mdd_object_put(env, parent);
231
232                 parent = mdd_object_find(env, mdd, pfid);
233                 if (IS_ERR(parent))
234                         GOTO(out, rc = PTR_ERR(parent));
235
236                 if (!mdd_object_exists(parent))
237                         GOTO(out, rc = -EINVAL);
238
239                 p1 = parent;
240         }
241         EXIT;
242 out:
243         if (parent && !IS_ERR(parent))
244                 mdd_object_put(env, parent);
245         return rc;
246 }
247
248 /*
249  * No permission check is needed.
250  *
251  * returns 1: if fid is ancestor of @mo;
252  * returns 0: if fid is not an ancestor of @mo;
253  *
254  * returns EREMOTE if remote object is found, fid of remote object is saved to
255  * @fid;
256  *
257  * returns < 0: if error
258  */
259 int mdd_is_subdir(const struct lu_env *env, struct md_object *mo,
260                   const struct lu_fid *fid, struct lu_fid *sfid)
261 {
262         struct mdd_device *mdd = mdo2mdd(mo);
263         struct lu_attr *attr = MDD_ENV_VAR(env, cattr);
264         int rc;
265         ENTRY;
266
267         if (!S_ISDIR(mdd_object_type(md2mdd_obj(mo))))
268                 RETURN(0);
269
270         rc = mdd_la_get(env, md2mdd_obj(mo), attr);
271         if (rc != 0)
272                 RETURN(rc);
273
274         rc = mdd_is_parent(env, mdd, md2mdd_obj(mo), attr, fid, sfid);
275         if (rc == 0) {
276                 /* found root */
277                 fid_zero(sfid);
278         } else if (rc == 1) {
279                 /* found @fid is parent */
280                 *sfid = *fid;
281                 rc = 0;
282         }
283         RETURN(rc);
284 }
285
286 /*
287  * Check that @dir contains no entries except (possibly) dot and dotdot.
288  *
289  * Returns:
290  *
291  *             0        empty
292  *      -ENOTDIR        not a directory object
293  *    -ENOTEMPTY        not empty
294  *           -ve        other error
295  *
296  */
297 static int mdd_dir_is_empty(const struct lu_env *env,
298                             struct mdd_object *dir)
299 {
300         struct dt_it     *it;
301         struct dt_object *obj;
302         const struct dt_it_ops *iops;
303         int result;
304         ENTRY;
305
306         obj = mdd_object_child(dir);
307         if (!dt_try_as_dir(env, obj))
308                 RETURN(-ENOTDIR);
309
310         iops = &obj->do_index_ops->dio_it;
311         it = iops->init(env, obj, LUDA_64BITHASH);
312         if (!IS_ERR(it)) {
313                 result = iops->get(env, it, (const struct dt_key *)"");
314                 if (result > 0) {
315                         int i;
316                         for (result = 0, i = 0; result == 0 && i < 3; ++i)
317                                 result = iops->next(env, it);
318                         if (result == 0)
319                                 result = -ENOTEMPTY;
320                         else if (result == 1)
321                                 result = 0;
322                 } else if (result == 0)
323                         /*
324                          * Huh? Index contains no zero key?
325                          */
326                         result = -EIO;
327
328                 iops->put(env, it);
329                 iops->fini(env, it);
330         } else
331                 result = PTR_ERR(it);
332         RETURN(result);
333 }
334
335 /**
336  * Determine if the target object can be hard linked, and right now it only
337  * checks if the link count reach the maximum limit. Note: for ldiskfs, the
338  * directory nlink count might exceed the maximum link count(see
339  * osd_object_ref_add), so it only check nlink for non-directories.
340  *
341  * \param[in] env       thread environment
342  * \param[in] obj       object being linked to
343  * \param[in] la        attributes of \a obj
344  *
345  * \retval              0 if \a obj can be hard linked
346  * \retval              negative error if \a obj is a directory or has too
347  *                      many links
348  */
349 static int __mdd_may_link(const struct lu_env *env, struct mdd_object *obj,
350                           const struct lu_attr *la)
351 {
352         struct mdd_device *m = mdd_obj2mdd_dev(obj);
353         ENTRY;
354
355         LASSERT(la != NULL);
356
357         /* Subdir count limitation can be broken through
358          * (see osd_object_ref_add), so only check non-directory here. */
359         if (!S_ISDIR(la->la_mode) &&
360             la->la_nlink >= m->mdd_dt_conf.ddp_max_nlink)
361                 RETURN(-EMLINK);
362
363         RETURN(0);
364 }
365
366 /**
367  * Check whether it may create the cobj under the pobj.
368  *
369  * \param[in] env       execution environment
370  * \param[in] pobj      the parent directory
371  * \param[in] pattr     the attribute of the parent directory
372  * \param[in] cobj      the child to be created
373  * \param[in] check_perm        if check WRITE|EXEC permission for parent
374  *
375  * \retval              = 0 create the child under this dir is allowed
376  * \retval              negative errno create the child under this dir is
377  *                      not allowed
378  */
379 int mdd_may_create(const struct lu_env *env, struct mdd_object *pobj,
380                    const struct lu_attr *pattr, struct mdd_object *cobj,
381                    bool check_perm)
382 {
383         int rc = 0;
384         ENTRY;
385
386         if (cobj && mdd_object_exists(cobj))
387                 RETURN(-EEXIST);
388
389         if (mdd_is_dead_obj(pobj))
390                 RETURN(-ENOENT);
391
392         if (check_perm)
393                 rc = mdd_permission_internal_locked(env, pobj, pattr,
394                                                     MAY_WRITE | MAY_EXEC,
395                                                     MOR_TGT_PARENT);
396         RETURN(rc);
397 }
398
399 /*
400  * Check whether can unlink from the pobj in the case of "cobj == NULL".
401  */
402 int mdd_may_unlink(const struct lu_env *env, struct mdd_object *pobj,
403                    const struct lu_attr *pattr, const struct lu_attr *attr)
404 {
405         int rc;
406         ENTRY;
407
408         if (mdd_is_dead_obj(pobj))
409                 RETURN(-ENOENT);
410
411         if (attr->la_flags & (LUSTRE_APPEND_FL | LUSTRE_IMMUTABLE_FL))
412                 RETURN(-EPERM);
413
414         rc = mdd_permission_internal_locked(env, pobj, pattr,
415                                             MAY_WRITE | MAY_EXEC,
416                                             MOR_TGT_PARENT);
417         if (rc != 0)
418                 RETURN(rc);
419
420         if (pattr->la_flags & LUSTRE_APPEND_FL)
421                 RETURN(-EPERM);
422
423         RETURN(rc);
424 }
425
426 /*
427  * pobj == NULL is remote ops case, under such case, pobj's
428  * VTX feature has been checked already, no need check again.
429  */
430 static inline int mdd_is_sticky(const struct lu_env *env,
431                                 struct mdd_object *pobj,
432                                 const struct lu_attr *pattr,
433                                 struct mdd_object *cobj,
434                                 const struct lu_attr *cattr)
435 {
436         struct lu_ucred *uc = lu_ucred_assert(env);
437
438         if (pobj != NULL) {
439                 LASSERT(pattr != NULL);
440                 if (!(pattr->la_mode & S_ISVTX) ||
441                     (pattr->la_uid == uc->uc_fsuid))
442                         return 0;
443         }
444
445         LASSERT(cattr != NULL);
446         if (cattr->la_uid == uc->uc_fsuid)
447                 return 0;
448
449         return !md_capable(uc, CFS_CAP_FOWNER);
450 }
451
452 static int mdd_may_delete_entry(const struct lu_env *env,
453                                 struct mdd_object *pobj,
454                                 const struct lu_attr *pattr,
455                                 int check_perm)
456 {
457         ENTRY;
458
459         LASSERT(pobj != NULL);
460         if (!mdd_object_exists(pobj))
461                 RETURN(-ENOENT);
462
463         if (mdd_is_dead_obj(pobj))
464                 RETURN(-ENOENT);
465
466         if (check_perm) {
467                 int rc;
468                 rc = mdd_permission_internal_locked(env, pobj, pattr,
469                                             MAY_WRITE | MAY_EXEC,
470                                             MOR_TGT_PARENT);
471                 if (rc)
472                         RETURN(rc);
473         }
474
475         if (pattr->la_flags & LUSTRE_APPEND_FL)
476                 RETURN(-EPERM);
477
478         RETURN(0);
479 }
480
481 /*
482  * Check whether it may delete the cobj from the pobj.
483  * pobj maybe NULL
484  */
485 int mdd_may_delete(const struct lu_env *env, struct mdd_object *tpobj,
486                    const struct lu_attr *tpattr, struct mdd_object *tobj,
487                    const struct lu_attr *tattr, const struct lu_attr *cattr,
488                    int check_perm, int check_empty)
489 {
490         int rc = 0;
491         ENTRY;
492
493         if (tpobj) {
494                 LASSERT(tpattr != NULL);
495                 rc = mdd_may_delete_entry(env, tpobj, tpattr, check_perm);
496                 if (rc != 0)
497                         RETURN(rc);
498         }
499
500         if (tobj == NULL)
501                 RETURN(0);
502
503         if (!mdd_object_exists(tobj))
504                 RETURN(-ENOENT);
505
506         if (mdd_is_dead_obj(tobj))
507                 RETURN(-ESTALE);
508
509         if (mdd_is_sticky(env, tpobj, tpattr, tobj, tattr))
510                 RETURN(-EPERM);
511
512         if (tattr->la_flags & (LUSTRE_APPEND_FL | LUSTRE_IMMUTABLE_FL))
513                 RETURN(-EPERM);
514
515         /* additional check the rename case */
516         if (cattr) {
517                 if (S_ISDIR(cattr->la_mode)) {
518                         struct mdd_device *mdd = mdo2mdd(&tobj->mod_obj);
519
520                         if (!S_ISDIR(tattr->la_mode))
521                                 RETURN(-ENOTDIR);
522
523                         if (lu_fid_eq(mdo2fid(tobj), &mdd->mdd_root_fid))
524                                 RETURN(-EBUSY);
525                 } else if (S_ISDIR(tattr->la_mode))
526                         RETURN(-EISDIR);
527         }
528
529         if (S_ISDIR(tattr->la_mode) && check_empty)
530                 rc = mdd_dir_is_empty(env, tobj);
531
532         RETURN(rc);
533 }
534
535 /**
536  * Check whether it can create the link file(linked to @src_obj) under
537  * the target directory(@tgt_obj), and src_obj has been locked by
538  * mdd_write_lock.
539  *
540  * \param[in] env       execution environment
541  * \param[in] tgt_obj   the target directory
542  * \param[in] tattr     attributes of target directory
543  * \param[in] lname     the link name
544  * \param[in] src_obj   source object for link
545  * \param[in] cattr     attributes for source object
546  *
547  * \retval              = 0 it is allowed to create the link file under tgt_obj
548  * \retval              negative error not allowed to create the link file
549  */
550 static int mdd_link_sanity_check(const struct lu_env *env,
551                                  struct mdd_object *tgt_obj,
552                                  const struct lu_attr *tattr,
553                                  const struct lu_name *lname,
554                                  struct mdd_object *src_obj,
555                                  const struct lu_attr *cattr)
556 {
557         struct mdd_device *m = mdd_obj2mdd_dev(src_obj);
558         int rc = 0;
559         ENTRY;
560
561         if (!mdd_object_exists(src_obj))
562                 RETURN(-ENOENT);
563
564         if (mdd_is_dead_obj(src_obj))
565                 RETURN(-ESTALE);
566
567         /* Local ops, no lookup before link, check filename length here. */
568         rc = mdd_name_check(m, lname);
569         if (rc < 0)
570                 RETURN(rc);
571
572         if (cattr->la_flags & (LUSTRE_IMMUTABLE_FL | LUSTRE_APPEND_FL))
573                 RETURN(-EPERM);
574
575         if (S_ISDIR(mdd_object_type(src_obj)))
576                 RETURN(-EPERM);
577
578         LASSERT(src_obj != tgt_obj);
579         rc = mdd_may_create(env, tgt_obj, tattr, NULL, true);
580         if (rc != 0)
581                 RETURN(rc);
582
583         rc = __mdd_may_link(env, src_obj, cattr);
584
585         RETURN(rc);
586 }
587
588 static int __mdd_index_delete_only(const struct lu_env *env, struct mdd_object *pobj,
589                                    const char *name, struct thandle *handle)
590 {
591         struct dt_object *next = mdd_object_child(pobj);
592         int rc;
593         ENTRY;
594
595         if (dt_try_as_dir(env, next))
596                 rc = dt_delete(env, next, (struct dt_key *)name, handle);
597         else
598                 rc = -ENOTDIR;
599
600         RETURN(rc);
601 }
602
603 static int __mdd_index_insert_only(const struct lu_env *env,
604                                    struct mdd_object *pobj,
605                                    const struct lu_fid *lf, __u32 type,
606                                    const char *name,
607                                    struct thandle *handle)
608 {
609         struct dt_object *next = mdd_object_child(pobj);
610         int               rc;
611         ENTRY;
612
613         if (dt_try_as_dir(env, next)) {
614                 struct dt_insert_rec    *rec = &mdd_env_info(env)->mti_dt_rec;
615                 struct lu_ucred         *uc  = lu_ucred_check(env);
616                 int                      ignore_quota;
617
618                 rec->rec_fid = lf;
619                 rec->rec_type = type;
620                 ignore_quota = uc ? uc->uc_cap & CFS_CAP_SYS_RESOURCE_MASK : 1;
621                 rc = dt_insert(env, next, (const struct dt_rec *)rec,
622                                (const struct dt_key *)name, handle,
623                                ignore_quota);
624         } else {
625                 rc = -ENOTDIR;
626         }
627         RETURN(rc);
628 }
629
630 /* insert named index, add reference if isdir */
631 static int __mdd_index_insert(const struct lu_env *env, struct mdd_object *pobj,
632                               const struct lu_fid *lf, __u32 type,
633                               const char *name, struct thandle *handle)
634 {
635         int rc;
636         ENTRY;
637
638         rc = __mdd_index_insert_only(env, pobj, lf, type, name, handle);
639         if (rc == 0 && S_ISDIR(type)) {
640                 mdd_write_lock(env, pobj, MOR_TGT_PARENT);
641                 mdo_ref_add(env, pobj, handle);
642                 mdd_write_unlock(env, pobj);
643         }
644
645         RETURN(rc);
646 }
647
648 /* delete named index, drop reference if isdir */
649 static int __mdd_index_delete(const struct lu_env *env, struct mdd_object *pobj,
650                               const char *name, int is_dir,
651                               struct thandle *handle)
652 {
653         int               rc;
654         ENTRY;
655
656         rc = __mdd_index_delete_only(env, pobj, name, handle);
657         if (rc == 0 && is_dir) {
658                 mdd_write_lock(env, pobj, MOR_TGT_PARENT);
659                 mdo_ref_del(env, pobj, handle);
660                 mdd_write_unlock(env, pobj);
661         }
662
663         RETURN(rc);
664 }
665
666 static int mdd_llog_record_calc_size(const struct lu_env *env,
667                                      const struct lu_name *tname,
668                                      const struct lu_name *sname)
669 {
670         const struct lu_ucred   *uc = lu_ucred(env);
671         enum changelog_rec_flags crf = 0;
672         size_t                   hdr_size = sizeof(struct llog_changelog_rec) -
673                                             sizeof(struct changelog_rec);
674
675         if (sname != NULL)
676                 crf |= CLF_RENAME;
677
678         if (uc != NULL && uc->uc_jobid[0] != '\0')
679                 crf |= CLF_JOBID;
680
681         return llog_data_len(hdr_size + changelog_rec_offset(crf) +
682                              (tname != NULL ? tname->ln_namelen : 0) +
683                              (sname != NULL ? 1 + sname->ln_namelen : 0));
684 }
685
686 int mdd_declare_changelog_store(const struct lu_env *env,
687                                 struct mdd_device *mdd,
688                                 const struct lu_name *tname,
689                                 const struct lu_name *sname,
690                                 struct thandle *handle)
691 {
692         struct obd_device               *obd = mdd2obd_dev(mdd);
693         struct llog_ctxt                *ctxt;
694         struct llog_changelog_rec       *rec;
695         struct lu_buf                   *buf;
696         struct thandle                  *llog_th;
697         int                              reclen;
698         int                              rc;
699
700         /* Not recording */
701         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
702                 return 0;
703
704         reclen = mdd_llog_record_calc_size(env, tname, sname);
705         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
706         if (buf->lb_buf == NULL)
707                 return -ENOMEM;
708
709         rec = buf->lb_buf;
710         rec->cr_hdr.lrh_len = reclen;
711         rec->cr_hdr.lrh_type = CHANGELOG_REC;
712
713         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
714         if (ctxt == NULL)
715                 return -ENXIO;
716
717         llog_th = thandle_get_sub(env, handle, ctxt->loc_handle->lgh_obj);
718         if (IS_ERR(llog_th))
719                 GOTO(out_put, rc = PTR_ERR(llog_th));
720
721         rc = llog_declare_add(env, ctxt->loc_handle, &rec->cr_hdr, llog_th);
722
723 out_put:
724         llog_ctxt_put(ctxt);
725
726         return rc;
727 }
728
729 /** Add a changelog entry \a rec to the changelog llog
730  * \param mdd
731  * \param rec
732  * \param handle - currently ignored since llogs start their own transaction;
733  *              this will hopefully be fixed in llog rewrite
734  * \retval 0 ok
735  */
736 int mdd_changelog_store(const struct lu_env *env, struct mdd_device *mdd,
737                         struct llog_changelog_rec *rec, struct thandle *th)
738 {
739         struct obd_device       *obd = mdd2obd_dev(mdd);
740         struct llog_ctxt        *ctxt;
741         struct thandle          *llog_th;
742         int                      rc;
743
744         rec->cr_hdr.lrh_len = llog_data_len(sizeof(*rec) +
745                                             changelog_rec_varsize(&rec->cr));
746
747         /* llog_lvfs_write_rec sets the llog tail len */
748         rec->cr_hdr.lrh_type = CHANGELOG_REC;
749         rec->cr.cr_time = cl_time();
750
751         spin_lock(&mdd->mdd_cl.mc_lock);
752         /* NB: I suppose it's possible llog_add adds out of order wrt cr_index,
753          * but as long as the MDD transactions are ordered correctly for e.g.
754          * rename conflicts, I don't think this should matter. */
755         rec->cr.cr_index = ++mdd->mdd_cl.mc_index;
756         spin_unlock(&mdd->mdd_cl.mc_lock);
757
758         ctxt = llog_get_context(obd, LLOG_CHANGELOG_ORIG_CTXT);
759         if (ctxt == NULL)
760                 return -ENXIO;
761
762         llog_th = thandle_get_sub(env, th, ctxt->loc_handle->lgh_obj);
763         if (IS_ERR(llog_th))
764                 GOTO(out_put, rc = PTR_ERR(llog_th));
765
766         /* nested journal transaction */
767         rc = llog_add(env, ctxt->loc_handle, &rec->cr_hdr, NULL, llog_th);
768
769 out_put:
770         llog_ctxt_put(ctxt);
771         if (rc > 0)
772                 rc = 0;
773         return rc;
774 }
775
776 static void mdd_changelog_rec_ext_rename(struct changelog_rec *rec,
777                                          const struct lu_fid *sfid,
778                                          const struct lu_fid *spfid,
779                                          const struct lu_name *sname)
780 {
781         struct changelog_ext_rename     *rnm = changelog_rec_rename(rec);
782         size_t                           extsize = sname->ln_namelen + 1;
783
784         LASSERT(sfid != NULL);
785         LASSERT(spfid != NULL);
786         LASSERT(sname != NULL);
787
788         rnm->cr_sfid = *sfid;
789         rnm->cr_spfid = *spfid;
790
791         changelog_rec_name(rec)[rec->cr_namelen] = '\0';
792         strlcpy(changelog_rec_sname(rec), sname->ln_name, extsize);
793         rec->cr_namelen += extsize;
794 }
795
796 void mdd_changelog_rec_ext_jobid(struct changelog_rec *rec, const char *jobid)
797 {
798         struct changelog_ext_jobid      *jid = changelog_rec_jobid(rec);
799
800         if (jobid == NULL || jobid[0] == '\0')
801                 return;
802
803         strlcpy(jid->cr_jobid, jobid, sizeof(jid->cr_jobid));
804 }
805
806 /** Store a namespace change changelog record
807  * If this fails, we must fail the whole transaction; we don't
808  * want the change to commit without the log entry.
809  * \param target - mdd_object of change
810  * \param tpfid - target parent dir/object fid
811  * \param sfid - source object fid
812  * \param spfid - source parent fid
813  * \param tname - target name string
814  * \param sname - source name string
815  * \param handle - transaction handle
816  */
817 int mdd_changelog_ns_store(const struct lu_env *env,
818                            struct mdd_device *mdd,
819                            enum changelog_rec_type type,
820                            enum changelog_rec_flags crf,
821                            struct mdd_object *target,
822                            const struct lu_fid *tpfid,
823                            const struct lu_fid *sfid,
824                            const struct lu_fid *spfid,
825                            const struct lu_name *tname,
826                            const struct lu_name *sname,
827                            struct thandle *handle)
828 {
829         const struct lu_ucred           *uc = lu_ucred(env);
830         struct llog_changelog_rec       *rec;
831         struct lu_buf                   *buf;
832         int                              reclen;
833         int                              rc;
834         ENTRY;
835
836         /* Not recording */
837         if (!(mdd->mdd_cl.mc_flags & CLM_ON))
838                 RETURN(0);
839
840         if ((mdd->mdd_cl.mc_mask & (1 << type)) == 0)
841                 RETURN(0);
842
843         LASSERT(tpfid != NULL);
844         LASSERT(tname != NULL);
845         LASSERT(handle != NULL);
846
847         reclen = mdd_llog_record_calc_size(env, tname, sname);
848         buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_big_buf, reclen);
849         if (buf->lb_buf == NULL)
850                 RETURN(-ENOMEM);
851         rec = buf->lb_buf;
852
853         crf &= CLF_FLAGMASK;
854
855         if (uc != NULL && uc->uc_jobid[0] != '\0')
856                 crf |= CLF_JOBID;
857
858         if (sname != NULL)
859                 crf |= CLF_RENAME;
860         else
861                 crf |= CLF_VERSION;
862
863         rec->cr.cr_flags = crf;
864         rec->cr.cr_type = (__u32)type;
865         rec->cr.cr_pfid = *tpfid;
866         rec->cr.cr_namelen = tname->ln_namelen;
867         memcpy(changelog_rec_name(&rec->cr), tname->ln_name, tname->ln_namelen);
868
869         if (crf & CLF_RENAME)
870                 mdd_changelog_rec_ext_rename(&rec->cr, sfid, spfid, sname);
871
872         if (crf & CLF_JOBID)
873                 mdd_changelog_rec_ext_jobid(&rec->cr, uc->uc_jobid);
874
875         if (likely(target != NULL)) {
876                 rec->cr.cr_tfid = *mdo2fid(target);
877                 target->mod_cltime = cfs_time_current_64();
878         } else {
879                 fid_zero(&rec->cr.cr_tfid);
880         }
881
882         rc = mdd_changelog_store(env, mdd, rec, handle);
883         if (rc < 0) {
884                 CERROR("%s: cannot store changelog record: type = %d, "
885                        "name = '%s', t = "DFID", p = "DFID": rc = %d\n",
886                        mdd2obd_dev(mdd)->obd_name, type, tname->ln_name,
887                        PFID(&rec->cr.cr_tfid), PFID(&rec->cr.cr_pfid), rc);
888                 return -EFAULT;
889         }
890
891         return 0;
892 }
893
894 static int __mdd_links_add(const struct lu_env *env,
895                            struct mdd_object *mdd_obj,
896                            struct linkea_data *ldata,
897                            const struct lu_name *lname,
898                            const struct lu_fid *pfid,
899                            int first, int check)
900 {
901         int rc;
902
903         if (ldata->ld_leh == NULL) {
904                 rc = first ? -ENODATA : mdd_links_read(env, mdd_obj, ldata);
905                 if (rc) {
906                         if (rc != -ENODATA)
907                                 return rc;
908                         rc = linkea_data_new(ldata,
909                                              &mdd_env_info(env)->mti_link_buf);
910                         if (rc)
911                                 return rc;
912                 }
913         }
914
915         if (check) {
916                 rc = linkea_links_find(ldata, lname, pfid);
917                 if (rc && rc != -ENOENT)
918                         return rc;
919                 if (rc == 0)
920                         return -EEXIST;
921         }
922
923         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_MORE)) {
924                 struct lu_fid *tfid = &mdd_env_info(env)->mti_fid2;
925
926                 *tfid = *pfid;
927                 tfid->f_ver = ~0;
928                 linkea_add_buf(ldata, lname, tfid);
929         }
930
931         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_MORE2))
932                 linkea_add_buf(ldata, lname, pfid);
933
934         return linkea_add_buf(ldata, lname, pfid);
935 }
936
937 static int __mdd_links_del(const struct lu_env *env,
938                            struct mdd_object *mdd_obj,
939                            struct linkea_data *ldata,
940                            const struct lu_name *lname,
941                            const struct lu_fid *pfid)
942 {
943         int rc;
944
945         if (ldata->ld_leh == NULL) {
946                 rc = mdd_links_read(env, mdd_obj, ldata);
947                 if (rc)
948                         return rc;
949         }
950
951         rc = linkea_links_find(ldata, lname, pfid);
952         if (rc)
953                 return rc;
954
955         linkea_del_buf(ldata, lname);
956         return 0;
957 }
958
959 static int mdd_linkea_prepare(const struct lu_env *env,
960                               struct mdd_object *mdd_obj,
961                               const struct lu_fid *oldpfid,
962                               const struct lu_name *oldlname,
963                               const struct lu_fid *newpfid,
964                               const struct lu_name *newlname,
965                               int first, int check,
966                               struct linkea_data *ldata)
967 {
968         int rc = 0;
969         int rc2 = 0;
970         ENTRY;
971
972         if (OBD_FAIL_CHECK(OBD_FAIL_FID_IGIF))
973                 return 0;
974
975         LASSERT(oldpfid != NULL || newpfid != NULL);
976
977         if (mdd_obj->mod_flags & DEAD_OBJ) {
978                 /* Prevent linkea to be updated which is NOT necessary. */
979                 ldata->ld_reclen = 0;
980                 /* No more links, don't bother */
981                 RETURN(0);
982         }
983
984         if (oldpfid != NULL) {
985                 rc = __mdd_links_del(env, mdd_obj, ldata, oldlname, oldpfid);
986                 if (rc) {
987                         if ((check == 1) ||
988                             (rc != -ENODATA && rc != -ENOENT))
989                                 RETURN(rc);
990                         /* No changes done. */
991                         rc = 0;
992                 }
993         }
994
995         /* If renaming, add the new record */
996         if (newpfid != NULL) {
997                 /* even if the add fails, we still delete the out-of-date
998                  * old link */
999                 rc2 = __mdd_links_add(env, mdd_obj, ldata, newlname, newpfid,
1000                                       first, check);
1001         }
1002
1003         rc = rc != 0 ? rc : rc2;
1004
1005         RETURN(rc);
1006 }
1007
1008 int mdd_links_rename(const struct lu_env *env,
1009                      struct mdd_object *mdd_obj,
1010                      const struct lu_fid *oldpfid,
1011                      const struct lu_name *oldlname,
1012                      const struct lu_fid *newpfid,
1013                      const struct lu_name *newlname,
1014                      struct thandle *handle,
1015                      struct linkea_data *ldata,
1016                      int first, int check)
1017 {
1018         int rc = 0;
1019         ENTRY;
1020
1021         if (ldata == NULL) {
1022                 ldata = &mdd_env_info(env)->mti_link_data;
1023                 memset(ldata, 0, sizeof(*ldata));
1024                 rc = mdd_linkea_prepare(env, mdd_obj, oldpfid, oldlname,
1025                                         newpfid, newlname, first, check,
1026                                         ldata);
1027                 if (rc != 0)
1028                         GOTO(out, rc);
1029         }
1030
1031         if (ldata->ld_reclen != 0)
1032                 rc = mdd_links_write(env, mdd_obj, ldata, handle);
1033         EXIT;
1034 out:
1035         if (rc != 0) {
1036                 int error = 1;
1037                 if (rc == -EOVERFLOW || rc == -ENOSPC)
1038                         error = 0;
1039                 if (newlname == NULL)
1040                         CDEBUG(error ? D_ERROR : D_OTHER,
1041                                "link_ea add failed %d "DFID"\n",
1042                                rc, PFID(mdd_object_fid(mdd_obj)));
1043                 else if (oldpfid == NULL)
1044                         CDEBUG(error ? D_ERROR : D_OTHER,
1045                                "link_ea add '%.*s' failed %d "DFID"\n",
1046                                newlname->ln_namelen, newlname->ln_name,
1047                                rc, PFID(mdd_object_fid(mdd_obj)));
1048                 else if (newpfid == NULL)
1049                         CDEBUG(error ? D_ERROR : D_OTHER,
1050                                "link_ea del '%.*s' failed %d "DFID"\n",
1051                                oldlname->ln_namelen, oldlname->ln_name,
1052                                rc, PFID(mdd_object_fid(mdd_obj)));
1053                 else
1054                         CDEBUG(error ? D_ERROR : D_OTHER,
1055                                "link_ea rename '%.*s'->'%.*s' failed %d "
1056                                DFID"\n",
1057                                oldlname->ln_namelen, oldlname->ln_name,
1058                                newlname->ln_namelen, newlname->ln_name,
1059                                rc, PFID(mdd_object_fid(mdd_obj)));
1060         }
1061
1062         if (is_vmalloc_addr(ldata->ld_buf))
1063                 /* if we vmalloced a large buffer drop it */
1064                 lu_buf_free(ldata->ld_buf);
1065
1066         return rc;
1067 }
1068
1069 static inline int mdd_links_add(const struct lu_env *env,
1070                                 struct mdd_object *mdd_obj,
1071                                 const struct lu_fid *pfid,
1072                                 const struct lu_name *lname,
1073                                 struct thandle *handle,
1074                                 struct linkea_data *ldata, int first)
1075 {
1076         return mdd_links_rename(env, mdd_obj, NULL, NULL,
1077                                 pfid, lname, handle, ldata, first, 0);
1078 }
1079
1080 static inline int mdd_links_del(const struct lu_env *env,
1081                                 struct mdd_object *mdd_obj,
1082                                 const struct lu_fid *pfid,
1083                                 const struct lu_name *lname,
1084                                 struct thandle *handle)
1085 {
1086         return mdd_links_rename(env, mdd_obj, pfid, lname,
1087                                 NULL, NULL, handle, NULL, 0, 0);
1088 }
1089
1090 /** Read the link EA into a temp buffer.
1091  * Uses the mdd_thread_info::mti_big_buf since it is generally large.
1092  * A pointer to the buffer is stored in \a ldata::ld_buf.
1093  *
1094  * \retval 0 or error
1095  */
1096 int mdd_links_read(const struct lu_env *env, struct mdd_object *mdd_obj,
1097                    struct linkea_data *ldata)
1098 {
1099         int rc;
1100
1101         if (!mdd_object_exists(mdd_obj))
1102                 return -ENODATA;
1103
1104         /* First try a small buf */
1105         LASSERT(env != NULL);
1106         ldata->ld_buf = lu_buf_check_and_alloc(&mdd_env_info(env)->mti_link_buf,
1107                                                PAGE_CACHE_SIZE);
1108         if (ldata->ld_buf->lb_buf == NULL)
1109                 return -ENOMEM;
1110
1111         rc = mdo_xattr_get(env, mdd_obj, ldata->ld_buf, XATTR_NAME_LINK);
1112         if (rc == -ERANGE) {
1113                 /* Buf was too small, figure out what we need. */
1114                 lu_buf_free(ldata->ld_buf);
1115                 rc = mdo_xattr_get(env, mdd_obj, ldata->ld_buf,
1116                                    XATTR_NAME_LINK);
1117                 if (rc < 0)
1118                         return rc;
1119                 ldata->ld_buf = lu_buf_check_and_alloc(ldata->ld_buf, rc);
1120                 if (ldata->ld_buf->lb_buf == NULL)
1121                         return -ENOMEM;
1122                 rc = mdo_xattr_get(env, mdd_obj, ldata->ld_buf,
1123                                   XATTR_NAME_LINK);
1124         }
1125         if (rc < 0) {
1126                 lu_buf_free(ldata->ld_buf);
1127                 ldata->ld_buf = NULL;
1128                 return rc;
1129         }
1130
1131         return linkea_init(ldata);
1132 }
1133
1134 /** Read the link EA into a temp buffer.
1135  * Uses the name_buf since it is generally large.
1136  * \retval IS_ERR err
1137  * \retval ptr to \a lu_buf (always \a mti_big_buf)
1138  */
1139 struct lu_buf *mdd_links_get(const struct lu_env *env,
1140                              struct mdd_object *mdd_obj)
1141 {
1142         struct linkea_data ldata = { NULL };
1143         int rc;
1144
1145         rc = mdd_links_read(env, mdd_obj, &ldata);
1146         return rc ? ERR_PTR(rc) : ldata.ld_buf;
1147 }
1148
1149 int mdd_links_write(const struct lu_env *env, struct mdd_object *mdd_obj,
1150                     struct linkea_data *ldata, struct thandle *handle)
1151 {
1152         const struct lu_buf *buf;
1153         int                 rc;
1154
1155         if (ldata == NULL || ldata->ld_buf == NULL ||
1156             ldata->ld_leh == NULL)
1157                 return 0;
1158
1159         buf = mdd_buf_get_const(env, ldata->ld_buf->lb_buf,
1160                                 ldata->ld_leh->leh_len);
1161         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_LINKEA))
1162                 return 0;
1163
1164         rc = mdo_xattr_set(env, mdd_obj, buf, XATTR_NAME_LINK, 0, handle);
1165         if (unlikely(rc == -ENOSPC) && S_ISREG(mdd_object_type(mdd_obj)) &&
1166             mdd_object_remote(mdd_obj) == 0) {
1167                 struct lfsck_request *lr = &mdd_env_info(env)->mti_lr;
1168                 struct thandle  *sub_th;
1169
1170                 /* XXX: If the linkEA is overflow, then we need to notify the
1171                  *      namespace LFSCK to skip "nlink" attribute verification
1172                  *      on this object to avoid the "nlink" to be shrinked by
1173                  *      wrong. It may be not good an interaction with LFSCK
1174                  *      like this. We will consider to replace it with other
1175                  *      mechanism in future. LU-5802. */
1176                 lfsck_pack_rfa(lr, mdo2fid(mdd_obj), LE_SKIP_NLINK,
1177                                LFSCK_TYPE_NAMESPACE);
1178
1179                 sub_th = thandle_get_sub_by_dt(env, handle,
1180                                 mdo2mdd(&mdd_obj->mod_obj)->mdd_bottom);
1181                 lfsck_in_notify(env, mdo2mdd(&mdd_obj->mod_obj)->mdd_bottom,
1182                                 lr, sub_th);
1183         }
1184
1185         return rc;
1186 }
1187
1188 int mdd_declare_links_add(const struct lu_env *env, struct mdd_object *mdd_obj,
1189                           struct thandle *handle, struct linkea_data *ldata,
1190                           enum mdd_links_add_overflow overflow)
1191 {
1192         int     rc;
1193         int     ea_len;
1194         void    *linkea;
1195
1196         if (ldata != NULL && ldata->ld_leh != NULL) {
1197                 ea_len = ldata->ld_leh->leh_len;
1198                 linkea = ldata->ld_buf->lb_buf;
1199         } else {
1200                 ea_len = DEFAULT_LINKEA_SIZE;
1201                 linkea = NULL;
1202         }
1203
1204         /* XXX: max size? */
1205         rc = mdo_declare_xattr_set(env, mdd_obj,
1206                                    mdd_buf_get_const(env, linkea, ea_len),
1207                                    XATTR_NAME_LINK, 0, handle);
1208         if (rc != 0)
1209                 return rc;
1210
1211         if (mdd_object_remote(mdd_obj) == 0 && overflow == MLAO_CHECK) {
1212                 struct lfsck_request *lr = &mdd_env_info(env)->mti_lr;
1213                 struct thandle  *sub_th;
1214
1215                 /* XXX: If the linkEA is overflow, then we need to notify the
1216                  *      namespace LFSCK to skip "nlink" attribute verification
1217                  *      on this object to avoid the "nlink" to be shrinked by
1218                  *      wrong. It may be not good an interaction with LFSCK
1219                  *      like this. We will consider to replace it with other
1220                  *      mechanism in future. LU-5802. */
1221                 lfsck_pack_rfa(lr, mdo2fid(mdd_obj), LE_SKIP_NLINK_DECLARE,
1222                                LFSCK_TYPE_NAMESPACE);
1223
1224                 sub_th = thandle_get_sub_by_dt(env, handle,
1225                                 mdo2mdd(&mdd_obj->mod_obj)->mdd_bottom);
1226                 rc = lfsck_in_notify(env,
1227                                      mdo2mdd(&mdd_obj->mod_obj)->mdd_bottom,
1228                                      lr, sub_th);
1229         }
1230
1231         return rc;
1232 }
1233
1234 static inline int mdd_declare_links_del(const struct lu_env *env,
1235                                         struct mdd_object *c,
1236                                         struct thandle *handle)
1237 {
1238         int rc = 0;
1239
1240         /* For directory, the linkEA will be removed together
1241          * with the object. */
1242         if (!S_ISDIR(mdd_object_type(c)))
1243                 rc = mdd_declare_links_add(env, c, handle, NULL, MLAO_IGNORE);
1244
1245         return rc;
1246 }
1247
1248 static int mdd_declare_link(const struct lu_env *env,
1249                             struct mdd_device *mdd,
1250                             struct mdd_object *p,
1251                             struct mdd_object *c,
1252                             const struct lu_name *name,
1253                             struct thandle *handle,
1254                             struct lu_attr *la,
1255                             struct linkea_data *data)
1256 {
1257         int rc;
1258
1259         rc = mdo_declare_index_insert(env, p, mdo2fid(c), mdd_object_type(c),
1260                                       name->ln_name, handle);
1261         if (rc != 0)
1262                 return rc;
1263
1264         rc = mdo_declare_ref_add(env, c, handle);
1265         if (rc != 0)
1266                 return rc;
1267
1268         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MORE_NLINK)) {
1269                 rc = mdo_declare_ref_add(env, c, handle);
1270                 if (rc != 0)
1271                         return rc;
1272         }
1273
1274         la->la_valid = LA_CTIME | LA_MTIME;
1275         rc = mdo_declare_attr_set(env, p, la, handle);
1276         if (rc != 0)
1277                 return rc;
1278
1279         la->la_valid = LA_CTIME;
1280         rc = mdo_declare_attr_set(env, c, la, handle);
1281         if (rc != 0)
1282                 return rc;
1283
1284         rc = mdd_declare_links_add(env, c, handle, data,
1285                         S_ISREG(mdd_object_type(c)) ? MLAO_CHECK : MLAO_IGNORE);
1286         if (rc != 0)
1287                 return rc;
1288
1289         rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
1290
1291         return rc;
1292 }
1293
1294 static int mdd_link(const struct lu_env *env, struct md_object *tgt_obj,
1295                     struct md_object *src_obj, const struct lu_name *lname,
1296                     struct md_attr *ma)
1297 {
1298         const char *name = lname->ln_name;
1299         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
1300         struct mdd_object *mdd_tobj = md2mdd_obj(tgt_obj);
1301         struct mdd_object *mdd_sobj = md2mdd_obj(src_obj);
1302         struct lu_attr    *cattr = MDD_ENV_VAR(env, cattr);
1303         struct lu_attr    *tattr = MDD_ENV_VAR(env, tattr);
1304         struct mdd_device *mdd = mdo2mdd(src_obj);
1305         struct thandle *handle;
1306         struct linkea_data *ldata = &mdd_env_info(env)->mti_link_data;
1307         int rc;
1308         ENTRY;
1309
1310         rc = mdd_la_get(env, mdd_sobj, cattr);
1311         if (rc != 0)
1312                 RETURN(rc);
1313
1314         rc = mdd_la_get(env, mdd_tobj, tattr);
1315         if (rc != 0)
1316                 RETURN(rc);
1317
1318         handle = mdd_trans_create(env, mdd);
1319         if (IS_ERR(handle))
1320                 GOTO(out_pending, rc = PTR_ERR(handle));
1321
1322         memset(ldata, 0, sizeof(*ldata));
1323
1324         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1325         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1326
1327         rc = mdd_declare_link(env, mdd, mdd_tobj, mdd_sobj, lname, handle,
1328                               la, ldata);
1329         if (rc)
1330                 GOTO(stop, rc);
1331
1332         rc = mdd_trans_start(env, mdd, handle);
1333         if (rc)
1334                 GOTO(stop, rc);
1335
1336         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
1337         rc = mdd_link_sanity_check(env, mdd_tobj, tattr, lname, mdd_sobj,
1338                                    cattr);
1339         if (rc)
1340                 GOTO(out_unlock, rc);
1341
1342         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LESS_NLINK)) {
1343                 rc = mdo_ref_add(env, mdd_sobj, handle);
1344                 if (rc != 0)
1345                         GOTO(out_unlock, rc);
1346         }
1347
1348         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MORE_NLINK)) {
1349                 rc = mdo_ref_add(env, mdd_sobj, handle);
1350                 if (rc != 0)
1351                         GOTO(out_unlock, rc);
1352         }
1353
1354         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING3)) {
1355                 struct lu_fid tfid = *mdo2fid(mdd_sobj);
1356
1357                 tfid.f_oid++;
1358                 rc = __mdd_index_insert_only(env, mdd_tobj, &tfid,
1359                                              mdd_object_type(mdd_sobj),
1360                                              name, handle);
1361         } else {
1362                 rc = __mdd_index_insert_only(env, mdd_tobj, mdo2fid(mdd_sobj),
1363                                              mdd_object_type(mdd_sobj),
1364                                              name, handle);
1365         }
1366
1367         if (rc != 0) {
1368                 mdo_ref_del(env, mdd_sobj, handle);
1369                 GOTO(out_unlock, rc);
1370         }
1371
1372         la->la_valid = LA_CTIME | LA_MTIME;
1373         rc = mdd_update_time(env, mdd_tobj, tattr, la, handle);
1374         if (rc)
1375                 GOTO(out_unlock, rc);
1376
1377         la->la_valid = LA_CTIME;
1378         rc = mdd_update_time(env, mdd_sobj, cattr, la, handle);
1379         if (rc == 0) {
1380                 rc = mdd_linkea_prepare(env, mdd_sobj, NULL, NULL,
1381                                         mdo2fid(mdd_tobj), lname, 0, 0,
1382                                         ldata);
1383                 if (rc == 0)
1384                         mdd_links_add(env, mdd_sobj, mdo2fid(mdd_tobj),
1385                                       lname, handle, ldata, 0);
1386                 /* The failure of links_add should not cause the link
1387                  * failure, reset rc here */
1388                 rc = 0;
1389         }
1390         EXIT;
1391 out_unlock:
1392         mdd_write_unlock(env, mdd_sobj);
1393         if (rc == 0)
1394                 rc = mdd_changelog_ns_store(env, mdd, CL_HARDLINK, 0, mdd_sobj,
1395                                             mdo2fid(mdd_tobj), NULL, NULL,
1396                                             lname, NULL, handle);
1397 stop:
1398         mdd_trans_stop(env, mdd, rc, handle);
1399
1400         if (is_vmalloc_addr(ldata->ld_buf))
1401                 /* if we vmalloced a large buffer drop it */
1402                 lu_buf_free(ldata->ld_buf);
1403 out_pending:
1404         return rc;
1405 }
1406
1407 static int mdd_mark_orphan_object(const struct lu_env *env,
1408                                 struct mdd_object *obj, struct thandle *handle,
1409                                 bool declare)
1410 {
1411         struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
1412         int rc;
1413
1414         if (!S_ISDIR(mdd_object_type(obj)))
1415                 return 0;
1416
1417         attr->la_valid = LA_FLAGS;
1418         attr->la_flags = LUSTRE_ORPHAN_FL;
1419
1420         if (declare)
1421                 rc = mdo_declare_attr_set(env, obj, attr, handle);
1422         else
1423                 rc = mdo_attr_set(env, obj, attr, handle);
1424
1425         return rc;
1426 }
1427
1428 static int mdd_declare_finish_unlink(const struct lu_env *env,
1429                                      struct mdd_object *obj,
1430                                      struct thandle *handle)
1431 {
1432         int     rc;
1433
1434         /* Sigh, we do not know if the unlink object will become orphan in
1435          * declare phase, but fortunately the flags here does not matter
1436          * in current declare implementation */
1437         rc = mdd_mark_orphan_object(env, obj, handle, true);
1438         if (rc != 0)
1439                 return rc;
1440
1441         rc = mdo_declare_destroy(env, obj, handle);
1442         if (rc != 0)
1443                 return rc;
1444
1445         rc = orph_declare_index_insert(env, obj, mdd_object_type(obj), handle);
1446         if (rc != 0)
1447                 return rc;
1448
1449         return mdd_declare_links_del(env, obj, handle);
1450 }
1451
1452 /* caller should take a lock before calling */
1453 int mdd_finish_unlink(const struct lu_env *env,
1454                       struct mdd_object *obj, struct md_attr *ma,
1455                       const struct mdd_object *pobj,
1456                       const struct lu_name *lname,
1457                       struct thandle *th)
1458 {
1459         int rc = 0;
1460         int is_dir = S_ISDIR(ma->ma_attr.la_mode);
1461         ENTRY;
1462
1463         LASSERT(mdd_write_locked(env, obj) != 0);
1464
1465         if (ma->ma_attr.la_nlink == 0 || is_dir) {
1466                 /* add new orphan and the object
1467                  * will be deleted during mdd_close() */
1468                 obj->mod_flags |= DEAD_OBJ;
1469                 if (obj->mod_count) {
1470                         rc = __mdd_orphan_add(env, obj, th);
1471                         if (rc == 0)
1472                                 CDEBUG(D_HA, "Object "DFID" is inserted into "
1473                                         "orphan list, open count = %d\n",
1474                                         PFID(mdd_object_fid(obj)),
1475                                         obj->mod_count);
1476                         else
1477                                 CERROR("Object "DFID" fail to be an orphan, "
1478                                        "open count = %d, maybe cause failed "
1479                                        "open replay\n",
1480                                         PFID(mdd_object_fid(obj)),
1481                                         obj->mod_count);
1482
1483                         /* mark object as an orphan here, not
1484                          * before __mdd_orphan_add() as racing
1485                          * mdd_la_get() may propagate ORPHAN_OBJ
1486                          * causing the asserition */
1487                         rc = mdd_mark_orphan_object(env, obj, th, false);
1488                 } else {
1489                         rc = mdo_destroy(env, obj, th);
1490                 }
1491         } else if (!is_dir) {
1492                 /* old files may not have link ea; ignore errors */
1493                 mdd_links_del(env, obj, mdo2fid(pobj), lname, th);
1494         }
1495
1496         RETURN(rc);
1497 }
1498
1499 /*
1500  * pobj maybe NULL
1501  * has mdd_write_lock on cobj already, but not on pobj yet
1502  */
1503 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
1504                             const struct lu_attr *pattr,
1505                             struct mdd_object *cobj,
1506                             const struct lu_attr *cattr)
1507 {
1508         int rc;
1509         ENTRY;
1510
1511         rc = mdd_may_delete(env, pobj, pattr, cobj, cattr, NULL, 1, 1);
1512
1513         RETURN(rc);
1514 }
1515
1516 static int mdd_declare_unlink(const struct lu_env *env, struct mdd_device *mdd,
1517                               struct mdd_object *p, struct mdd_object *c,
1518                               const struct lu_name *name, struct md_attr *ma,
1519                               struct thandle *handle, int no_name, int is_dir)
1520 {
1521         struct lu_attr  *la = &mdd_env_info(env)->mti_la_for_fix;
1522         int              rc;
1523
1524         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING2)) {
1525                 if (likely(no_name == 0)) {
1526                         rc = mdo_declare_index_delete(env, p, name->ln_name,
1527                                                       handle);
1528                         if (rc != 0)
1529                                 return rc;
1530                 }
1531
1532                 if (is_dir != 0) {
1533                         rc = mdo_declare_ref_del(env, p, handle);
1534                         if (rc != 0)
1535                                 return rc;
1536                 }
1537         }
1538
1539         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1540         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1541         la->la_valid = LA_CTIME | LA_MTIME;
1542         rc = mdo_declare_attr_set(env, p, la, handle);
1543         if (rc)
1544                 return rc;
1545
1546         if (c != NULL) {
1547                 rc = mdo_declare_ref_del(env, c, handle);
1548                 if (rc)
1549                         return rc;
1550
1551                 rc = mdo_declare_ref_del(env, c, handle);
1552                 if (rc)
1553                         return rc;
1554
1555                 la->la_valid = LA_CTIME;
1556                 rc = mdo_declare_attr_set(env, c, la, handle);
1557                 if (rc)
1558                         return rc;
1559
1560                 rc = mdd_declare_finish_unlink(env, c, handle);
1561                 if (rc)
1562                         return rc;
1563
1564                 /* FIXME: need changelog for remove entry */
1565                 rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
1566         }
1567
1568         return rc;
1569 }
1570
1571 /*
1572  * test if a file has an HSM archive
1573  * if HSM attributes are not found in ma update them from
1574  * HSM xattr
1575  */
1576 static bool mdd_hsm_archive_exists(const struct lu_env *env,
1577                                    struct mdd_object *obj,
1578                                    struct md_attr *ma)
1579 {
1580         ENTRY;
1581
1582         if (!(ma->ma_valid & MA_HSM)) {
1583                 /* no HSM MD provided, read xattr */
1584                 struct lu_buf   *hsm_buf;
1585                 const size_t     buflen = sizeof(struct hsm_attrs);
1586                 int              rc;
1587
1588                 hsm_buf = mdd_buf_get(env, NULL, 0);
1589                 lu_buf_alloc(hsm_buf, buflen);
1590                 rc = mdo_xattr_get(env, obj, hsm_buf, XATTR_NAME_HSM);
1591                 rc = lustre_buf2hsm(hsm_buf->lb_buf, rc, &ma->ma_hsm);
1592                 lu_buf_free(hsm_buf);
1593                 if (rc < 0)
1594                         RETURN(false);
1595
1596                 ma->ma_valid |= MA_HSM;
1597         }
1598         if (ma->ma_hsm.mh_flags & HS_EXISTS)
1599                 RETURN(true);
1600         RETURN(false);
1601 }
1602
1603 /**
1604  * Delete name entry and the object.
1605  * Note: no_name == 1 means it only destory the object, i.e. name_entry
1606  * does not exist for this object, and it could only happen during resending
1607  * of remote unlink. see the comments in mdt_reint_unlink. Unfortunately, lname
1608  * is also needed in this case(needed by changelog), so we have to add another
1609  * parameter(no_name)here. XXX: this is only needed in DNE phase I, on Phase II,
1610  * the ENOENT failure should be able to be fixed by redo mechanism.
1611  */
1612 static int mdd_unlink(const struct lu_env *env, struct md_object *pobj,
1613                       struct md_object *cobj, const struct lu_name *lname,
1614                       struct md_attr *ma, int no_name)
1615 {
1616         const char *name = lname->ln_name;
1617         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
1618         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
1619         struct lu_attr *la = &mdd_env_info(env)->mti_la_for_fix;
1620         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1621         struct mdd_object *mdd_cobj = NULL;
1622         struct mdd_device *mdd = mdo2mdd(pobj);
1623         struct thandle    *handle;
1624         int rc, is_dir = 0, cl_flags = 0;
1625         ENTRY;
1626
1627         /* cobj == NULL means only delete name entry */
1628         if (likely(cobj != NULL)) {
1629                 mdd_cobj = md2mdd_obj(cobj);
1630                 if (mdd_object_exists(mdd_cobj) == 0)
1631                         RETURN(-ENOENT);
1632         }
1633
1634         rc = mdd_la_get(env, mdd_pobj, pattr);
1635         if (rc)
1636                 RETURN(rc);
1637
1638         if (likely(mdd_cobj != NULL)) {
1639                 /* fetch cattr */
1640                 rc = mdd_la_get(env, mdd_cobj, cattr);
1641                 if (rc)
1642                         RETURN(rc);
1643
1644                 is_dir = S_ISDIR(cattr->la_mode);
1645                 /* search for an existing archive.
1646                  * we should check ahead as the object
1647                  * can be destroyed in this transaction */
1648                 if (mdd_hsm_archive_exists(env, mdd_cobj, ma))
1649                         cl_flags |= CLF_UNLINK_HSM_EXISTS;
1650         }
1651
1652         rc = mdd_unlink_sanity_check(env, mdd_pobj, pattr, mdd_cobj, cattr);
1653         if (rc)
1654                 RETURN(rc);
1655
1656         handle = mdd_trans_create(env, mdd);
1657         if (IS_ERR(handle))
1658                 RETURN(PTR_ERR(handle));
1659
1660         rc = mdd_declare_unlink(env, mdd, mdd_pobj, mdd_cobj,
1661                                 lname, ma, handle, no_name, is_dir);
1662         if (rc)
1663                 GOTO(stop, rc);
1664
1665         rc = mdd_trans_start(env, mdd, handle);
1666         if (rc)
1667                 GOTO(stop, rc);
1668
1669         if (likely(mdd_cobj != NULL))
1670                 mdd_write_lock(env, mdd_cobj, MOR_TGT_CHILD);
1671
1672         if (likely(no_name == 0) && !OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING2)) {
1673                 rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle);
1674                 if (rc)
1675                         GOTO(cleanup, rc);
1676         }
1677
1678         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MUL_REF) ||
1679             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_NAMEENTRY))
1680                 GOTO(cleanup, rc = 0);
1681
1682         if (likely(mdd_cobj != NULL)) {
1683                 rc = mdo_ref_del(env, mdd_cobj, handle);
1684                 if (rc != 0) {
1685                         __mdd_index_insert_only(env, mdd_pobj,
1686                                                 mdo2fid(mdd_cobj),
1687                                                 mdd_object_type(mdd_cobj),
1688                                                 name, handle);
1689                         GOTO(cleanup, rc);
1690                 }
1691
1692                 if (is_dir)
1693                         /* unlink dot */
1694                         mdo_ref_del(env, mdd_cobj, handle);
1695
1696                 /* fetch updated nlink */
1697                 rc = mdd_la_get(env, mdd_cobj, cattr);
1698                 if (rc)
1699                         GOTO(cleanup, rc);
1700         }
1701
1702         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1703         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1704
1705         la->la_valid = LA_CTIME | LA_MTIME;
1706         rc = mdd_update_time(env, mdd_pobj, pattr, la, handle);
1707         if (rc)
1708                 GOTO(cleanup, rc);
1709
1710         /* Enough for only unlink the entry */
1711         if (unlikely(mdd_cobj == NULL))
1712                 GOTO(stop, rc);
1713
1714         if (cattr->la_nlink > 0 || mdd_cobj->mod_count > 0) {
1715                 /* update ctime of an unlinked file only if it is still
1716                  * opened or a link still exists */
1717                 la->la_valid = LA_CTIME;
1718                 rc = mdd_update_time(env, mdd_cobj, cattr, la, handle);
1719                 if (rc)
1720                         GOTO(cleanup, rc);
1721         }
1722
1723         /* XXX: this transfer to ma will be removed with LOD/OSP */
1724         ma->ma_attr = *cattr;
1725         ma->ma_valid |= MA_INODE;
1726         rc = mdd_finish_unlink(env, mdd_cobj, ma, mdd_pobj, lname, handle);
1727         if (rc != 0)
1728                 GOTO(cleanup, rc);
1729
1730         /* fetch updated nlink */
1731         rc = mdd_la_get(env, mdd_cobj, cattr);
1732         /* if object is removed then we can't get its attrs,
1733          * use last get */
1734         if (rc == -ENOENT) {
1735                 cattr->la_nlink = 0;
1736                 rc = 0;
1737         }
1738
1739         if (cattr->la_nlink == 0) {
1740                 ma->ma_attr = *cattr;
1741                 ma->ma_valid |= MA_INODE;
1742         }
1743
1744         EXIT;
1745 cleanup:
1746         if (likely(mdd_cobj != NULL))
1747                 mdd_write_unlock(env, mdd_cobj);
1748
1749         if (rc == 0) {
1750                 if (cattr->la_nlink == 0)
1751                         cl_flags |= CLF_UNLINK_LAST;
1752                 else
1753                         cl_flags &= ~CLF_UNLINK_HSM_EXISTS;
1754
1755                 rc = mdd_changelog_ns_store(env, mdd,
1756                         is_dir ? CL_RMDIR : CL_UNLINK, cl_flags,
1757                         mdd_cobj, mdo2fid(mdd_pobj), NULL, NULL, lname, NULL,
1758                         handle);
1759         }
1760
1761 stop:
1762         mdd_trans_stop(env, mdd, rc, handle);
1763
1764         return rc;
1765 }
1766
1767 /*
1768  * The permission has been checked when obj created, no need check again.
1769  */
1770 static int mdd_cd_sanity_check(const struct lu_env *env,
1771                                struct mdd_object *obj)
1772 {
1773         ENTRY;
1774
1775         /* EEXIST check */
1776         if (!obj || mdd_is_dead_obj(obj))
1777                 RETURN(-ENOENT);
1778
1779         RETURN(0);
1780 }
1781
1782 static int mdd_create_data(const struct lu_env *env, struct md_object *pobj,
1783                            struct md_object *cobj, const struct md_op_spec *spec,
1784                            struct md_attr *ma)
1785 {
1786         struct mdd_device *mdd = mdo2mdd(cobj);
1787         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1788         struct mdd_object *son = md2mdd_obj(cobj);
1789         struct thandle    *handle;
1790         const struct lu_buf *buf;
1791         struct lu_attr    *attr = MDD_ENV_VAR(env, cattr);
1792         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
1793         int                rc;
1794         ENTRY;
1795
1796         rc = mdd_cd_sanity_check(env, son);
1797         if (rc)
1798                 RETURN(rc);
1799
1800         if (!md_should_create(spec->sp_cr_flags))
1801                 RETURN(0);
1802
1803         /*
1804          * there are following use cases for this function:
1805          * 1) late striping - file was created with MDS_OPEN_DELAY_CREATE
1806          *    striping can be specified or not
1807          * 2) CMD?
1808          */
1809         rc = mdd_la_get(env, son, attr);
1810         if (rc)
1811                 RETURN(rc);
1812
1813         /* calling ->ah_make_hint() is used to transfer information from parent */
1814         mdd_object_make_hint(env, mdd_pobj, son, attr, spec, hint);
1815
1816         handle = mdd_trans_create(env, mdd);
1817         if (IS_ERR(handle))
1818                 GOTO(out_free, rc = PTR_ERR(handle));
1819
1820         /*
1821          * XXX: Setting the lov ea is not locked but setting the attr is locked?
1822          * Should this be fixed?
1823          */
1824         CDEBUG(D_OTHER, "ea %p/%u, cr_flags "LPO64", no_create %u\n",
1825                spec->u.sp_ea.eadata, spec->u.sp_ea.eadatalen,
1826                spec->sp_cr_flags, spec->no_create);
1827
1828         if (spec->no_create || (spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1829                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1830                                         spec->u.sp_ea.eadatalen);
1831         } else {
1832                 buf = &LU_BUF_NULL;
1833         }
1834
1835         rc = dt_declare_xattr_set(env, mdd_object_child(son), buf,
1836                                   XATTR_NAME_LOV, 0, handle);
1837         if (rc)
1838                 GOTO(stop, rc);
1839
1840         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1841         if (rc)
1842                 GOTO(stop, rc);
1843
1844         rc = mdd_trans_start(env, mdd, handle);
1845         if (rc)
1846                 GOTO(stop, rc);
1847
1848         rc = dt_xattr_set(env, mdd_object_child(son), buf, XATTR_NAME_LOV,
1849                           0, handle);
1850
1851         if (rc)
1852                 GOTO(stop, rc);
1853
1854         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, son, handle);
1855
1856 stop:
1857         mdd_trans_stop(env, mdd, rc, handle);
1858 out_free:
1859         RETURN(rc);
1860 }
1861
1862 static int mdd_declare_object_initialize(const struct lu_env *env,
1863                                          struct mdd_object *parent,
1864                                          struct mdd_object *child,
1865                                          struct lu_attr *attr,
1866                                          struct thandle *handle)
1867 {
1868         int rc;
1869         ENTRY;
1870
1871         /*
1872          * inode mode has been set in creation time, and it's based on umask,
1873          * la_mode and acl, don't set here again! (which will go wrong
1874          * because below function doesn't consider umask).
1875          * I'd suggest set all object attributes in creation time, see above.
1876          */
1877         LASSERT(attr->la_valid & (LA_MODE | LA_TYPE));
1878         attr->la_valid &= ~(LA_MODE | LA_TYPE);
1879         rc = mdo_declare_attr_set(env, child, attr, handle);
1880         attr->la_valid |= LA_MODE | LA_TYPE;
1881         if (rc != 0 || !S_ISDIR(attr->la_mode))
1882                 RETURN(rc);
1883
1884         rc = mdo_declare_index_insert(env, child, mdo2fid(child), S_IFDIR,
1885                                       dot, handle);
1886         if (rc != 0)
1887                 RETURN(rc);
1888
1889         rc = mdo_declare_ref_add(env, child, handle);
1890         if (rc != 0)
1891                 RETURN(rc);
1892
1893         rc = mdo_declare_index_insert(env, child, mdo2fid(parent), S_IFDIR,
1894                                       dotdot, handle);
1895
1896         RETURN(rc);
1897 }
1898
1899 static int mdd_object_initialize(const struct lu_env *env,
1900                                  const struct lu_fid *pfid,
1901                                  struct mdd_object *child,
1902                                  struct lu_attr *attr, struct thandle *handle,
1903                                  const struct md_op_spec *spec)
1904 {
1905         int rc = 0;
1906         ENTRY;
1907
1908         if (S_ISDIR(attr->la_mode)) {
1909                 /* Add "." and ".." for newly created dir */
1910                 mdo_ref_add(env, child, handle);
1911                 rc = __mdd_index_insert_only(env, child, mdo2fid(child),
1912                                              S_IFDIR, dot, handle);
1913                 if (rc == 0)
1914                         rc = __mdd_index_insert_only(env, child, pfid, S_IFDIR,
1915                                                      dotdot, handle);
1916                 if (rc != 0)
1917                         mdo_ref_del(env, child, handle);
1918         }
1919
1920         RETURN(rc);
1921 }
1922
1923 /**
1924  * This function checks whether it can create a file/dir under the
1925  * directory(@pobj). The directory(@pobj) is not being locked by
1926  * mdd lock.
1927  *
1928  * \param[in] env       execution environment
1929  * \param[in] pobj      the directory to create files
1930  * \param[in] pattr     the attributes of the directory
1931  * \param[in] lname     the name of the created file/dir
1932  * \param[in] cattr     the attributes of the file/dir
1933  * \param[in] spec      create specification
1934  *
1935  * \retval              = 0 it is allowed to create file/dir under
1936  *                      the directory
1937  * \retval              negative error not allowed to create file/dir
1938  *                      under the directory
1939  */
1940 static int mdd_create_sanity_check(const struct lu_env *env,
1941                                    struct md_object *pobj,
1942                                    const struct lu_attr *pattr,
1943                                    const struct lu_name *lname,
1944                                    struct lu_attr *cattr,
1945                                    struct md_op_spec *spec)
1946 {
1947         struct mdd_thread_info *info = mdd_env_info(env);
1948         struct lu_fid     *fid       = &info->mti_fid;
1949         struct mdd_object *obj       = md2mdd_obj(pobj);
1950         struct mdd_device *m         = mdo2mdd(pobj);
1951         bool            check_perm = true;
1952         int rc;
1953         ENTRY;
1954
1955         /* EEXIST check */
1956         if (mdd_is_dead_obj(obj))
1957                 RETURN(-ENOENT);
1958
1959         /*
1960          * In some cases this lookup is not needed - we know before if name
1961          * exists or not because MDT performs lookup for it.
1962          * name length check is done in lookup.
1963          */
1964         if (spec->sp_cr_lookup) {
1965                 /*
1966                  * Check if the name already exist, though it will be checked in
1967                  * _index_insert also, for avoiding rolling back if exists
1968                  * _index_insert.
1969                  */
1970                 rc = __mdd_lookup(env, pobj, pattr, lname, fid,
1971                                   MAY_WRITE | MAY_EXEC);
1972                 if (rc != -ENOENT)
1973                         RETURN(rc ? : -EEXIST);
1974
1975                 /* Permission is already being checked in mdd_lookup */
1976                 check_perm = false;
1977         }
1978
1979         rc = mdd_may_create(env, obj, pattr, NULL, check_perm);
1980         if (rc != 0)
1981                 RETURN(rc);
1982
1983         /* sgid check */
1984         if (pattr->la_mode & S_ISGID) {
1985                 cattr->la_gid = pattr->la_gid;
1986                 if (S_ISDIR(cattr->la_mode)) {
1987                         cattr->la_mode |= S_ISGID;
1988                         cattr->la_valid |= LA_MODE;
1989                 }
1990         }
1991
1992         rc = mdd_name_check(m, lname);
1993         if (rc < 0)
1994                 RETURN(rc);
1995
1996         switch (cattr->la_mode & S_IFMT) {
1997         case S_IFLNK: {
1998                 unsigned int symlen = strlen(spec->u.sp_symname) + 1;
1999
2000                 if (symlen > m->mdd_dt_conf.ddp_symlink_max)
2001                         RETURN(-ENAMETOOLONG);
2002                 else
2003                         RETURN(0);
2004         }
2005         case S_IFDIR:
2006         case S_IFREG:
2007         case S_IFCHR:
2008         case S_IFBLK:
2009         case S_IFIFO:
2010         case S_IFSOCK:
2011                 rc = 0;
2012                 break;
2013         default:
2014                 rc = -EINVAL;
2015                 break;
2016         }
2017         RETURN(rc);
2018 }
2019
2020 static int mdd_declare_object_create(const struct lu_env *env,
2021                                      struct mdd_device *mdd,
2022                                      struct mdd_object *p, struct mdd_object *c,
2023                                      struct lu_attr *attr,
2024                                      struct thandle *handle,
2025                                      const struct md_op_spec *spec,
2026                                      struct lu_buf *def_acl_buf,
2027                                      struct lu_buf *acl_buf,
2028                                      struct dt_allocation_hint *hint)
2029 {
2030         int rc;
2031
2032         rc = mdd_declare_object_create_internal(env, p, c, attr, handle, spec,
2033                                                 hint);
2034         if (rc)
2035                 GOTO(out, rc);
2036
2037 #ifdef CONFIG_FS_POSIX_ACL
2038         if (def_acl_buf->lb_len > 0 && S_ISDIR(attr->la_mode)) {
2039                 /* if dir, then can inherit default ACl */
2040                 rc = mdo_declare_xattr_set(env, c, def_acl_buf,
2041                                            XATTR_NAME_ACL_DEFAULT,
2042                                            0, handle);
2043                 if (rc)
2044                         GOTO(out, rc);
2045         }
2046
2047         if (acl_buf->lb_len > 0) {
2048                 rc = mdo_declare_attr_set(env, c, attr, handle);
2049                 if (rc)
2050                         GOTO(out, rc);
2051
2052                 rc = mdo_declare_xattr_set(env, c, acl_buf,
2053                                            XATTR_NAME_ACL_ACCESS, 0, handle);
2054                 if (rc)
2055                         GOTO(out, rc);
2056         }
2057 #endif
2058         rc = mdd_declare_object_initialize(env, p, c, attr, handle);
2059         if (rc)
2060                 GOTO(out, rc);
2061
2062         /* replay case, create LOV EA from client data */
2063         if (spec->no_create ||
2064             (spec->sp_cr_flags & MDS_OPEN_HAS_EA && S_ISREG(attr->la_mode))) {
2065                 const struct lu_buf *buf;
2066
2067                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
2068                                         spec->u.sp_ea.eadatalen);
2069                 rc = mdo_declare_xattr_set(env, c, buf, XATTR_NAME_LOV, 0,
2070                                            handle);
2071                 if (rc)
2072                         GOTO(out, rc);
2073         }
2074
2075         if (S_ISLNK(attr->la_mode)) {
2076                 const char *target_name = spec->u.sp_symname;
2077                 int sym_len = strlen(target_name);
2078                 const struct lu_buf *buf;
2079
2080                 buf = mdd_buf_get_const(env, target_name, sym_len);
2081                 rc = dt_declare_record_write(env, mdd_object_child(c),
2082                                              buf, 0, handle);
2083                 if (rc)
2084                         GOTO(out, rc);
2085         }
2086 out:
2087         return rc;
2088 }
2089
2090 static int mdd_declare_create(const struct lu_env *env, struct mdd_device *mdd,
2091                               struct mdd_object *p, struct mdd_object *c,
2092                               const struct lu_name *name,
2093                               struct lu_attr *attr,
2094                               struct thandle *handle,
2095                               const struct md_op_spec *spec,
2096                               struct linkea_data *ldata,
2097                               struct lu_buf *def_acl_buf,
2098                               struct lu_buf *acl_buf,
2099                               struct dt_allocation_hint *hint)
2100 {
2101         int rc;
2102
2103         rc = mdd_declare_object_create(env, mdd, p, c, attr, handle, spec,
2104                                        def_acl_buf, acl_buf, hint);
2105         if (rc)
2106                 GOTO(out, rc);
2107
2108         if (S_ISDIR(attr->la_mode)) {
2109                 rc = mdo_declare_ref_add(env, p, handle);
2110                 if (rc)
2111                         GOTO(out, rc);
2112         }
2113
2114         if (unlikely(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
2115                 rc = orph_declare_index_insert(env, c, attr->la_mode, handle);
2116                 if (rc)
2117                         GOTO(out, rc);
2118         } else {
2119                 struct lu_attr  *la = &mdd_env_info(env)->mti_la_for_fix;
2120
2121                 rc = mdo_declare_index_insert(env, p, mdo2fid(c), attr->la_mode,
2122                                               name->ln_name, handle);
2123                 if (rc != 0)
2124                         return rc;
2125
2126                 rc = mdd_declare_links_add(env, c, handle, ldata, MLAO_IGNORE);
2127                 if (rc)
2128                         return rc;
2129
2130                 *la = *attr;
2131                 la->la_valid = LA_CTIME | LA_MTIME;
2132                 rc = mdo_declare_attr_set(env, p, la, handle);
2133                 if (rc)
2134                         return rc;
2135
2136                 rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
2137                 if (rc)
2138                         return rc;
2139         }
2140 out:
2141         return rc;
2142 }
2143
2144 static int mdd_acl_init(const struct lu_env *env, struct mdd_object *pobj,
2145                         struct lu_attr *la, struct lu_buf *def_acl_buf,
2146                         struct lu_buf *acl_buf)
2147 {
2148         int     rc;
2149         ENTRY;
2150
2151         if (S_ISLNK(la->la_mode)) {
2152                 acl_buf->lb_len = 0;
2153                 def_acl_buf->lb_len = 0;
2154                 RETURN(0);
2155         }
2156
2157         mdd_read_lock(env, pobj, MOR_TGT_PARENT);
2158         rc = mdo_xattr_get(env, pobj, def_acl_buf,
2159                            XATTR_NAME_ACL_DEFAULT);
2160         mdd_read_unlock(env, pobj);
2161         if (rc > 0) {
2162                 /* If there are default ACL, fix mode/ACL by default ACL */
2163                 def_acl_buf->lb_len = rc;
2164                 LASSERT(def_acl_buf->lb_len <= acl_buf->lb_len);
2165                 memcpy(acl_buf->lb_buf, def_acl_buf->lb_buf, rc);
2166                 acl_buf->lb_len = rc;
2167                 rc = __mdd_fix_mode_acl(env, acl_buf, &la->la_mode);
2168                 if (rc < 0)
2169                         RETURN(rc);
2170         } else if (rc == -ENODATA || rc == -EOPNOTSUPP) {
2171                 /* If there are no default ACL, fix mode by mask */
2172                 struct lu_ucred *uc = lu_ucred(env);
2173
2174                 /* The create triggered by MDT internal events, such as
2175                  * LFSCK reset, will not contain valid "uc". */
2176                 if (unlikely(uc != NULL))
2177                         la->la_mode &= ~uc->uc_umask;
2178                 rc = 0;
2179                 acl_buf->lb_len = 0;
2180                 def_acl_buf->lb_len = 0;
2181         }
2182
2183         RETURN(rc);
2184 }
2185
2186 /**
2187  * Create a metadata object and initialize it, set acl, xattr.
2188  **/
2189 static int mdd_object_create(const struct lu_env *env, struct mdd_object *pobj,
2190                              struct mdd_object *son, struct lu_attr *attr,
2191                              struct md_op_spec *spec, struct lu_buf *acl_buf,
2192                              struct lu_buf *def_acl_buf,
2193                              struct dt_allocation_hint *hint,
2194                              struct thandle *handle)
2195 {
2196         int                     rc;
2197
2198         mdd_write_lock(env, son, MOR_TGT_CHILD);
2199         rc = mdd_object_create_internal(env, NULL, son, attr, handle, spec,
2200                                         hint);
2201         if (rc)
2202                 GOTO(unlock, rc);
2203
2204         /* Note: In DNE phase I, for striped dir, though sub-stripes will be
2205          * created in declare phase, they also needs to be added to master
2206          * object as sub-directory entry. So it has to initialize the master
2207          * object, then set dir striped EA.(in mdo_xattr_set) */
2208         rc = mdd_object_initialize(env, mdo2fid(pobj), son, attr, handle,
2209                                    spec);
2210         if (rc != 0)
2211                 GOTO(err_destroy, rc);
2212
2213         /*
2214          * in case of replay we just set LOVEA provided by the client
2215          * XXX: I think it would be interesting to try "old" way where
2216          *      MDT calls this xattr_set(LOV) in a different transaction.
2217          *      probably this way we code can be made better.
2218          */
2219
2220         /* During creation, there are only a few cases we need do xattr_set to
2221          * create stripes.
2222          * 1. regular file: see comments above.
2223          * 2. dir: inherit default striping or pool settings from parent.
2224          * 3. create striped directory with provided stripeEA.
2225          * 4. create striped directory because inherit default layout from the
2226          * parent.
2227          */
2228         if (spec->no_create ||
2229             (S_ISREG(attr->la_mode) && spec->sp_cr_flags & MDS_OPEN_HAS_EA) ||
2230             S_ISDIR(attr->la_mode)) {
2231                 const struct lu_buf *buf;
2232
2233                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
2234                                         spec->u.sp_ea.eadatalen);
2235                 rc = mdo_xattr_set(env, son, buf,
2236                                    S_ISDIR(attr->la_mode) ? XATTR_NAME_LMV :
2237                                                             XATTR_NAME_LOV, 0,
2238                                    handle);
2239                 if (rc != 0)
2240                         GOTO(err_destroy, rc);
2241         }
2242
2243 #ifdef CONFIG_FS_POSIX_ACL
2244         if (def_acl_buf != NULL && def_acl_buf->lb_len > 0 &&
2245             S_ISDIR(attr->la_mode)) {
2246                 /* set default acl */
2247                 rc = mdo_xattr_set(env, son, def_acl_buf,
2248                                    XATTR_NAME_ACL_DEFAULT, 0,
2249                                    handle);
2250                 if (rc)
2251                         GOTO(err_destroy, rc);
2252         }
2253         /* set its own acl */
2254         if (acl_buf != NULL && acl_buf->lb_len > 0) {
2255                 rc = mdo_xattr_set(env, son, acl_buf,
2256                                    XATTR_NAME_ACL_ACCESS,
2257                                    0, handle);
2258                 if (rc)
2259                         GOTO(err_destroy, rc);
2260         }
2261 #endif
2262
2263         if (S_ISLNK(attr->la_mode)) {
2264                 struct lu_ucred  *uc = lu_ucred_assert(env);
2265                 struct dt_object *dt = mdd_object_child(son);
2266                 const char *target_name = spec->u.sp_symname;
2267                 int sym_len = strlen(target_name);
2268                 const struct lu_buf *buf;
2269                 loff_t pos = 0;
2270
2271                 buf = mdd_buf_get_const(env, target_name, sym_len);
2272                 rc = dt->do_body_ops->dbo_write(env, dt, buf, &pos, handle,
2273                                                 uc->uc_cap &
2274                                                 CFS_CAP_SYS_RESOURCE_MASK);
2275
2276                 if (rc == sym_len)
2277                         rc = 0;
2278                 else
2279                         GOTO(err_initlized, rc = -EFAULT);
2280         }
2281
2282 err_initlized:
2283         if (unlikely(rc != 0)) {
2284                 int rc2;
2285                 if (S_ISDIR(attr->la_mode)) {
2286                         /* Drop the reference, no need to delete "."/"..",
2287                          * because the object to be destroied directly. */
2288                         rc2 = mdo_ref_del(env, son, handle);
2289                         if (rc2 != 0)
2290                                 GOTO(unlock, rc);
2291                 }
2292                 rc2 = mdo_ref_del(env, son, handle);
2293                 if (rc2 != 0)
2294                         GOTO(unlock, rc);
2295 err_destroy:
2296                 mdo_destroy(env, son, handle);
2297         }
2298 unlock:
2299         mdd_write_unlock(env, son);
2300         RETURN(rc);
2301 }
2302
2303 static int mdd_index_delete(const struct lu_env *env,
2304                             struct mdd_object *mdd_pobj,
2305                             struct lu_attr *cattr,
2306                             const struct lu_name *lname)
2307 {
2308         struct mdd_device *mdd = mdo2mdd(&mdd_pobj->mod_obj);
2309         struct thandle *handle;
2310         int rc;
2311         ENTRY;
2312
2313         handle = mdd_trans_create(env, mdd);
2314         if (IS_ERR(handle))
2315                 RETURN(PTR_ERR(handle));
2316
2317         rc = mdo_declare_index_delete(env, mdd_pobj, lname->ln_name,
2318                                       handle);
2319         if (rc != 0)
2320                 GOTO(stop, rc);
2321
2322         if (S_ISDIR(cattr->la_mode)) {
2323                 rc = mdo_declare_ref_del(env, mdd_pobj, handle);
2324                 if (rc != 0)
2325                         GOTO(stop, rc);
2326         }
2327
2328         /* Since this will only be used in the error handler path,
2329          * Let's set the thandle to be local and not mess the transno */
2330         handle->th_local = 1;
2331         rc = mdd_trans_start(env, mdd, handle);
2332         if (rc)
2333                 GOTO(stop, rc);
2334
2335         rc = __mdd_index_delete(env, mdd_pobj, lname->ln_name,
2336                                 S_ISDIR(cattr->la_mode), handle);
2337         if (rc)
2338                 GOTO(stop, rc);
2339 stop:
2340         mdd_trans_stop(env, mdd, rc, handle);
2341         RETURN(rc);
2342 }
2343
2344 /*
2345  * Create object and insert it into namespace.
2346  */
2347 static int mdd_create(const struct lu_env *env, struct md_object *pobj,
2348                       const struct lu_name *lname, struct md_object *child,
2349                       struct md_op_spec *spec, struct md_attr* ma)
2350 {
2351         struct mdd_thread_info  *info = mdd_env_info(env);
2352         struct lu_attr          *la = &info->mti_la_for_fix;
2353         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
2354         struct mdd_object       *son = md2mdd_obj(child);
2355         struct mdd_device       *mdd = mdo2mdd(pobj);
2356         struct lu_attr          *attr = &ma->ma_attr;
2357         struct thandle          *handle;
2358         struct lu_attr          *pattr = &info->mti_pattr;
2359         struct lu_buf           acl_buf;
2360         struct lu_buf           def_acl_buf;
2361         struct linkea_data      *ldata = &info->mti_link_data;
2362         const char              *name = lname->ln_name;
2363         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
2364         int                      rc;
2365         int                      rc2;
2366         ENTRY;
2367
2368         /*
2369          * Two operations have to be performed:
2370          *
2371          *  - an allocation of a new object (->do_create()), and
2372          *
2373          *  - an insertion into a parent index (->dio_insert()).
2374          *
2375          * Due to locking, operation order is not important, when both are
2376          * successful, *but* error handling cases are quite different:
2377          *
2378          *  - if insertion is done first, and following object creation fails,
2379          *  insertion has to be rolled back, but this operation might fail
2380          *  also leaving us with dangling index entry.
2381          *
2382          *  - if creation is done first, is has to be undone if insertion
2383          *  fails, leaving us with leaked space, which is neither good, nor
2384          *  fatal.
2385          *
2386          * It seems that creation-first is simplest solution, but it is
2387          * sub-optimal in the frequent
2388          *
2389          *         $ mkdir foo
2390          *         $ mkdir foo
2391          *
2392          * case, because second mkdir is bound to create object, only to
2393          * destroy it immediately.
2394          *
2395          * To avoid this follow local file systems that do double lookup:
2396          *
2397          *     0. lookup -> -EEXIST (mdd_create_sanity_check())
2398          *
2399          *     1. create            (mdd_object_create_internal())
2400          *
2401          *     2. insert            (__mdd_index_insert(), lookup again)
2402          */
2403
2404         rc = mdd_la_get(env, mdd_pobj, pattr);
2405         if (rc != 0)
2406                 RETURN(rc);
2407
2408         /* Sanity checks before big job. */
2409         rc = mdd_create_sanity_check(env, pobj, pattr, lname, attr, spec);
2410         if (rc)
2411                 RETURN(rc);
2412
2413         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DQACQ_NET))
2414                 GOTO(out_free, rc = -EINPROGRESS);
2415
2416         handle = mdd_trans_create(env, mdd);
2417         if (IS_ERR(handle))
2418                 GOTO(out_free, rc = PTR_ERR(handle));
2419
2420         acl_buf.lb_buf = info->mti_xattr_buf;
2421         acl_buf.lb_len = sizeof(info->mti_xattr_buf);
2422         def_acl_buf.lb_buf = info->mti_key;
2423         def_acl_buf.lb_len = sizeof(info->mti_key);
2424         rc = mdd_acl_init(env, mdd_pobj, attr, &def_acl_buf, &acl_buf);
2425         if (rc < 0)
2426                 GOTO(out_stop, rc);
2427
2428         mdd_object_make_hint(env, mdd_pobj, son, attr, spec, hint);
2429
2430         memset(ldata, 0, sizeof(*ldata));
2431         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
2432                 struct lu_fid tfid = *mdd_object_fid(mdd_pobj);
2433
2434                 tfid.f_oid--;
2435                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2436                                         &tfid, lname, 1, 0, ldata);
2437         } else {
2438                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2439                                         mdd_object_fid(mdd_pobj),
2440                                         lname, 1, 0, ldata);
2441         }
2442
2443         rc = mdd_declare_create(env, mdd, mdd_pobj, son, lname, attr,
2444                                 handle, spec, ldata, &def_acl_buf, &acl_buf,
2445                                 hint);
2446         if (rc)
2447                 GOTO(out_stop, rc);
2448
2449         rc = mdd_trans_start(env, mdd, handle);
2450         if (rc)
2451                 GOTO(out_stop, rc);
2452
2453         rc = mdd_object_create(env, mdd_pobj, son, attr, spec, &acl_buf,
2454                                &def_acl_buf, hint, handle);
2455         if (rc != 0)
2456                 GOTO(out_stop, rc);
2457
2458         if (unlikely(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
2459                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2460                 rc = __mdd_orphan_add(env, son, handle);
2461                 GOTO(out_volatile, rc);
2462         } else {
2463                 rc = __mdd_index_insert(env, mdd_pobj, mdo2fid(son),
2464                                         attr->la_mode, name, handle);
2465                 if (rc != 0)
2466                         GOTO(err_created, rc);
2467
2468                 mdd_links_add(env, son, mdo2fid(mdd_pobj), lname, handle,
2469                               ldata, 1);
2470
2471                 /* update parent directory mtime/ctime */
2472                 *la = *attr;
2473                 la->la_valid = LA_CTIME | LA_MTIME;
2474                 rc = mdd_update_time(env, mdd_pobj, pattr, la, handle);
2475                 if (rc)
2476                         GOTO(err_insert, rc);
2477         }
2478
2479         EXIT;
2480 err_insert:
2481         if (rc != 0) {
2482                 int rc2;
2483
2484                 if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
2485                         rc2 = __mdd_orphan_del(env, son, handle);
2486                 else
2487                         rc2 = __mdd_index_delete(env, mdd_pobj, name,
2488                                                  S_ISDIR(attr->la_mode),
2489                                                  handle);
2490                 if (rc2 != 0)
2491                         goto out_stop;
2492
2493 err_created:
2494                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2495                 if (S_ISDIR(attr->la_mode)) {
2496                         /* Drop the reference, no need to delete "."/"..",
2497                          * because the object is to be destroyed directly. */
2498                         rc2 = mdo_ref_del(env, son, handle);
2499                         if (rc2 != 0) {
2500                                 mdd_write_unlock(env, son);
2501                                 goto out_stop;
2502                         }
2503                 }
2504 out_volatile:
2505                 /* For volatile files drop one link immediately, since there is
2506                  * no filename in the namespace, and save any error returned. */
2507                 rc2 = mdo_ref_del(env, son, handle);
2508                 if (rc2 != 0) {
2509                         mdd_write_unlock(env, son);
2510                         if (unlikely(rc == 0))
2511                                 rc = rc2;
2512                         goto out_stop;
2513                 }
2514
2515                 /* Don't destroy the volatile object on success */
2516                 if (likely(rc != 0))
2517                         mdo_destroy(env, son, handle);
2518                 mdd_write_unlock(env, son);
2519         }
2520
2521         if (rc == 0 && fid_is_namespace_visible(mdo2fid(son)) &&
2522             likely((spec->sp_cr_flags & MDS_OPEN_VOLATILE) == 0))
2523                 rc = mdd_changelog_ns_store(env, mdd,
2524                                 S_ISDIR(attr->la_mode) ? CL_MKDIR :
2525                                 S_ISREG(attr->la_mode) ? CL_CREATE :
2526                                 S_ISLNK(attr->la_mode) ? CL_SOFTLINK : CL_MKNOD,
2527                                 0, son, mdo2fid(mdd_pobj), NULL, NULL, lname,
2528                                 NULL, handle);
2529 out_stop:
2530         rc2 = mdd_trans_stop(env, mdd, rc, handle);
2531         if (rc == 0) {
2532                 /* If creation fails, it is most likely due to the remote update
2533                  * failure, because local transaction will mostly succeed at
2534                  * this stage. There is no easy way to rollback all of previous
2535                  * updates, so let's remove the object from namespace, and
2536                  * LFSCK should handle the orphan object. */
2537                 if (rc2 < 0 && !mdd_object_remote(mdd_pobj))
2538                         mdd_index_delete(env, mdd_pobj, attr, lname);
2539                 rc = rc2;
2540         }
2541 out_free:
2542         if (is_vmalloc_addr(ldata->ld_buf))
2543                 /* if we vmalloced a large buffer drop it */
2544                 lu_buf_free(ldata->ld_buf);
2545
2546         /* The child object shouldn't be cached anymore */
2547         if (rc)
2548                 set_bit(LU_OBJECT_HEARD_BANSHEE,
2549                         &child->mo_lu.lo_header->loh_flags);
2550         return rc;
2551 }
2552
2553 /*
2554  * Get locks on parents in proper order
2555  * RETURN: < 0 - error, rename_order if successful
2556  */
2557 enum rename_order {
2558         MDD_RN_SAME,
2559         MDD_RN_SRCTGT,
2560         MDD_RN_TGTSRC
2561 };
2562
2563 static int mdd_rename_order(const struct lu_env *env,
2564                             struct mdd_device *mdd,
2565                             struct mdd_object *src_pobj,
2566                             const struct lu_attr *pattr,
2567                             struct mdd_object *tgt_pobj)
2568 {
2569         /* order of locking, 1 - tgt-src, 0 - src-tgt*/
2570         int rc;
2571         ENTRY;
2572
2573         if (src_pobj == tgt_pobj)
2574                 RETURN(MDD_RN_SAME);
2575
2576         /* compared the parent child relationship of src_p&tgt_p */
2577         if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(src_pobj))){
2578                 rc = MDD_RN_SRCTGT;
2579         } else if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(tgt_pobj))) {
2580                 rc = MDD_RN_TGTSRC;
2581         } else {
2582                 rc = mdd_is_parent(env, mdd, src_pobj, pattr, mdo2fid(tgt_pobj),
2583                                    NULL);
2584                 if (rc == -EREMOTE)
2585                         rc = 0;
2586
2587                 if (rc == 1)
2588                         rc = MDD_RN_TGTSRC;
2589                 else if (rc == 0)
2590                         rc = MDD_RN_SRCTGT;
2591         }
2592
2593         RETURN(rc);
2594 }
2595
2596 /* has not mdd_write{read}_lock on any obj yet. */
2597 static int mdd_rename_sanity_check(const struct lu_env *env,
2598                                    struct mdd_object *src_pobj,
2599                                    const struct lu_attr *pattr,
2600                                    struct mdd_object *tgt_pobj,
2601                                    const struct lu_attr *tpattr,
2602                                    struct mdd_object *sobj,
2603                                    const struct lu_attr *cattr,
2604                                    struct mdd_object *tobj,
2605                                    const struct lu_attr *tattr)
2606 {
2607         int rc = 0;
2608         ENTRY;
2609
2610         /* XXX: when get here, sobj must NOT be NULL,
2611          * the other case has been processed in cld_rename
2612          * before mdd_rename and enable MDS_PERM_BYPASS. */
2613         LASSERT(sobj);
2614
2615         rc = mdd_may_delete(env, src_pobj, pattr, sobj, cattr, NULL, 1, 0);
2616         if (rc)
2617                 RETURN(rc);
2618
2619         /* XXX: when get here, "tobj == NULL" means tobj must
2620          * NOT exist (neither on remote MDS, such case has been
2621          * processed in cld_rename before mdd_rename and enable
2622          * MDS_PERM_BYPASS).
2623          * So check may_create, but not check may_unlink. */
2624         if (tobj == NULL)
2625                 rc = mdd_may_create(env, tgt_pobj, tpattr, NULL,
2626                                     (src_pobj != tgt_pobj));
2627         else
2628                 rc = mdd_may_delete(env, tgt_pobj, tpattr, tobj, tattr, cattr,
2629                                     (src_pobj != tgt_pobj), 1);
2630
2631         if (!rc && !tobj && (src_pobj != tgt_pobj) && S_ISDIR(cattr->la_mode))
2632                 rc = __mdd_may_link(env, tgt_pobj, tpattr);
2633
2634         RETURN(rc);
2635 }
2636
2637 static int mdd_declare_rename(const struct lu_env *env,
2638                               struct mdd_device *mdd,
2639                               struct mdd_object *mdd_spobj,
2640                               struct mdd_object *mdd_tpobj,
2641                               struct mdd_object *mdd_sobj,
2642                               struct mdd_object *mdd_tobj,
2643                               const struct lu_name *tname,
2644                               const struct lu_name *sname,
2645                               struct md_attr *ma,
2646                               struct linkea_data *ldata,
2647                               struct thandle *handle)
2648 {
2649         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2650         int rc;
2651
2652         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2653         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2654
2655         LASSERT(mdd_spobj);
2656         LASSERT(mdd_tpobj);
2657         LASSERT(mdd_sobj);
2658
2659         /* name from source dir */
2660         rc = mdo_declare_index_delete(env, mdd_spobj, sname->ln_name, handle);
2661         if (rc)
2662                 return rc;
2663
2664         /* .. from source child */
2665         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
2666                 /* source child can be directory,
2667                  * counted by source dir's nlink */
2668                 rc = mdo_declare_ref_del(env, mdd_spobj, handle);
2669                 if (rc)
2670                         return rc;
2671                 if (mdd_spobj != mdd_tpobj) {
2672                         rc = mdo_declare_index_delete(env, mdd_sobj, dotdot,
2673                                                       handle);
2674                         if (rc != 0)
2675                                 return rc;
2676
2677                         rc = mdo_declare_index_insert(env, mdd_sobj,
2678                                                       mdo2fid(mdd_tpobj),
2679                                                       S_IFDIR, dotdot, handle);
2680                         if (rc != 0)
2681                                 return rc;
2682                 }
2683
2684                 /* new target child can be directory,
2685                  * counted by target dir's nlink */
2686                 rc = mdo_declare_ref_add(env, mdd_tpobj, handle);
2687                 if (rc != 0)
2688                         return rc;
2689         }
2690
2691         la->la_valid = LA_CTIME | LA_MTIME;
2692         rc = mdo_declare_attr_set(env, mdd_spobj, la, handle);
2693         if (rc != 0)
2694                 return rc;
2695
2696         rc = mdo_declare_attr_set(env, mdd_tpobj, la, handle);
2697         if (rc != 0)
2698                 return rc;
2699
2700         la->la_valid = LA_CTIME;
2701         rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
2702         if (rc)
2703                 return rc;
2704
2705         rc = mdd_declare_links_add(env, mdd_sobj, handle, ldata,
2706                 S_ISREG(mdd_object_type(mdd_sobj)) ? MLAO_CHECK : MLAO_IGNORE);
2707         if (rc)
2708                 return rc;
2709
2710         /* new name */
2711         rc = mdo_declare_index_insert(env, mdd_tpobj, mdo2fid(mdd_sobj),
2712                                       mdd_object_type(mdd_sobj),
2713                                       tname->ln_name, handle);
2714         if (rc != 0)
2715                 return rc;
2716
2717         if (mdd_tobj && mdd_object_exists(mdd_tobj)) {
2718                 /* delete target child in target parent directory */
2719                 rc = mdo_declare_index_delete(env, mdd_tpobj, tname->ln_name,
2720                                               handle);
2721                 if (rc)
2722                         return rc;
2723
2724                 rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2725                 if (rc)
2726                         return rc;
2727
2728                 if (S_ISDIR(mdd_object_type(mdd_tobj))) {
2729                         /* target child can be directory,
2730                          * delete "." reference in target child directory */
2731                         rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2732                         if (rc)
2733                                 return rc;
2734
2735                         /* delete ".." reference in target parent directory */
2736                         rc = mdo_declare_ref_del(env, mdd_tpobj, handle);
2737                         if (rc)
2738                                 return rc;
2739                 }
2740
2741                 la->la_valid = LA_CTIME;
2742                 rc = mdo_declare_attr_set(env, mdd_tobj, la, handle);
2743                 if (rc)
2744                         return rc;
2745
2746                 rc = mdd_declare_finish_unlink(env, mdd_tobj, handle);
2747                 if (rc)
2748                         return rc;
2749         }
2750
2751         rc = mdd_declare_changelog_store(env, mdd, tname, sname, handle);
2752         if (rc)
2753                 return rc;
2754
2755         return rc;
2756 }
2757
2758 /* src object can be remote that is why we use only fid and type of object */
2759 static int mdd_rename(const struct lu_env *env,
2760                       struct md_object *src_pobj, struct md_object *tgt_pobj,
2761                       const struct lu_fid *lf, const struct lu_name *lsname,
2762                       struct md_object *tobj, const struct lu_name *ltname,
2763                       struct md_attr *ma)
2764 {
2765         const char *sname = lsname->ln_name;
2766         const char *tname = ltname->ln_name;
2767         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2768         struct mdd_object *mdd_spobj = md2mdd_obj(src_pobj); /* source parent */
2769         struct mdd_object *mdd_tpobj = md2mdd_obj(tgt_pobj);
2770         struct mdd_device *mdd = mdo2mdd(src_pobj);
2771         struct mdd_object *mdd_sobj = NULL;                  /* source object */
2772         struct mdd_object *mdd_tobj = NULL;
2773         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
2774         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
2775         struct lu_attr *tattr = MDD_ENV_VAR(env, tattr);
2776         struct lu_attr *tpattr = MDD_ENV_VAR(env, tpattr);
2777         struct thandle *handle;
2778         struct linkea_data  *ldata = &mdd_env_info(env)->mti_link_data;
2779         const struct lu_fid *tpobj_fid = mdo2fid(mdd_tpobj);
2780         const struct lu_fid *spobj_fid = mdo2fid(mdd_spobj);
2781         bool is_dir;
2782         bool tobj_ref = 0;
2783         bool tobj_locked = 0;
2784         unsigned cl_flags = 0;
2785         int rc, rc2;
2786         ENTRY;
2787
2788         if (tobj)
2789                 mdd_tobj = md2mdd_obj(tobj);
2790
2791         mdd_sobj = mdd_object_find(env, mdd, lf);
2792         if (IS_ERR(mdd_sobj))
2793                 RETURN(PTR_ERR(mdd_sobj));
2794
2795         rc = mdd_la_get(env, mdd_sobj, cattr);
2796         if (rc)
2797                 GOTO(out_pending, rc);
2798
2799         rc = mdd_la_get(env, mdd_spobj, pattr);
2800         if (rc)
2801                 GOTO(out_pending, rc);
2802
2803         if (mdd_tobj) {
2804                 rc = mdd_la_get(env, mdd_tobj, tattr);
2805                 if (rc)
2806                         GOTO(out_pending, rc);
2807                 /* search for an existing archive.
2808                  * we should check ahead as the object
2809                  * can be destroyed in this transaction */
2810                 if (mdd_hsm_archive_exists(env, mdd_tobj, ma))
2811                         cl_flags |= CLF_RENAME_LAST_EXISTS;
2812         }
2813
2814         rc = mdd_la_get(env, mdd_tpobj, tpattr);
2815         if (rc)
2816                 GOTO(out_pending, rc);
2817
2818         rc = mdd_rename_sanity_check(env, mdd_spobj, pattr, mdd_tpobj, tpattr,
2819                                      mdd_sobj, cattr, mdd_tobj, tattr);
2820         if (rc)
2821                 GOTO(out_pending, rc);
2822
2823         rc = mdd_name_check(mdd, ltname);
2824         if (rc < 0)
2825                 GOTO(out_pending, rc);
2826
2827         /* FIXME: Should consider tobj and sobj too in rename_lock. */
2828         rc = mdd_rename_order(env, mdd, mdd_spobj, pattr, mdd_tpobj);
2829         if (rc < 0)
2830                 GOTO(out_pending, rc);
2831
2832         handle = mdd_trans_create(env, mdd);
2833         if (IS_ERR(handle))
2834                 GOTO(out_pending, rc = PTR_ERR(handle));
2835
2836         memset(ldata, 0, sizeof(*ldata));
2837         mdd_linkea_prepare(env, mdd_sobj, mdd_object_fid(mdd_spobj), lsname,
2838                            mdd_object_fid(mdd_tpobj), ltname, 1, 0, ldata);
2839         rc = mdd_declare_rename(env, mdd, mdd_spobj, mdd_tpobj, mdd_sobj,
2840                                 mdd_tobj, lsname, ltname, ma, ldata, handle);
2841         if (rc)
2842                 GOTO(stop, rc);
2843
2844         rc = mdd_trans_start(env, mdd, handle);
2845         if (rc)
2846                 GOTO(stop, rc);
2847
2848         is_dir = S_ISDIR(cattr->la_mode);
2849
2850         /* Remove source name from source directory */
2851         rc = __mdd_index_delete(env, mdd_spobj, sname, is_dir, handle);
2852         if (rc != 0)
2853                 GOTO(stop, rc);
2854
2855         /* "mv dir1 dir2" needs "dir1/.." link update */
2856         if (is_dir && !lu_fid_eq(spobj_fid, tpobj_fid)) {
2857                 rc = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
2858                 if (rc != 0)
2859                         GOTO(fixup_spobj2, rc);
2860
2861                 rc = __mdd_index_insert_only(env, mdd_sobj, tpobj_fid, S_IFDIR,
2862                                              dotdot, handle);
2863                 if (rc != 0)
2864                         GOTO(fixup_spobj, rc);
2865         }
2866
2867         if (mdd_tobj != NULL && mdd_object_exists(mdd_tobj)) {
2868                 rc = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
2869                 if (rc != 0)
2870                         /* tname might been renamed to something else */
2871                         GOTO(fixup_spobj, rc);
2872         }
2873
2874         /* Insert new fid with target name into target dir */
2875         rc = __mdd_index_insert(env, mdd_tpobj, lf, cattr->la_mode,
2876                                 tname, handle);
2877         if (rc != 0)
2878                 GOTO(fixup_tpobj, rc);
2879
2880         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2881         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2882
2883         /* XXX: mdd_sobj must be local one if it is NOT NULL. */
2884         la->la_valid = LA_CTIME;
2885         rc = mdd_update_time(env, mdd_sobj, cattr, la, handle);
2886         if (rc)
2887                 GOTO(fixup_tpobj, rc);
2888
2889         /* Update the linkEA for the source object */
2890         mdd_write_lock(env, mdd_sobj, MOR_SRC_CHILD);
2891         rc = mdd_links_rename(env, mdd_sobj, mdo2fid(mdd_spobj), lsname,
2892                               mdo2fid(mdd_tpobj), ltname, handle, ldata,
2893                               0, 0);
2894         if (rc == -ENOENT)
2895                 /* Old files might not have EA entry */
2896                 mdd_links_add(env, mdd_sobj, mdo2fid(mdd_spobj),
2897                               lsname, handle, NULL, 0);
2898         mdd_write_unlock(env, mdd_sobj);
2899         /* We don't fail the transaction if the link ea can't be
2900            updated -- fid2path will use alternate lookup method. */
2901         rc = 0;
2902
2903         /* Remove old target object
2904          * For tobj is remote case cmm layer has processed
2905          * and set tobj to NULL then. So when tobj is NOT NULL,
2906          * it must be local one.
2907          */
2908         if (tobj && mdd_object_exists(mdd_tobj)) {
2909                 mdd_write_lock(env, mdd_tobj, MOR_TGT_CHILD);
2910                 tobj_locked = 1;
2911                 if (mdd_is_dead_obj(mdd_tobj)) {
2912                         /* shld not be dead, something is wrong */
2913                         CERROR("tobj is dead, something is wrong\n");
2914                         rc = -EINVAL;
2915                         goto cleanup;
2916                 }
2917                 mdo_ref_del(env, mdd_tobj, handle);
2918
2919                 /* Remove dot reference. */
2920                 if (S_ISDIR(tattr->la_mode))
2921                         mdo_ref_del(env, mdd_tobj, handle);
2922                 tobj_ref = 1;
2923
2924                 /* fetch updated nlink */
2925                 rc = mdd_la_get(env, mdd_tobj, tattr);
2926                 if (rc != 0) {
2927                         CERROR("%s: Failed to get nlink for tobj "
2928                                 DFID": rc = %d\n",
2929                                 mdd2obd_dev(mdd)->obd_name,
2930                                 PFID(tpobj_fid), rc);
2931                         GOTO(fixup_tpobj, rc);
2932                 }
2933
2934                 la->la_valid = LA_CTIME;
2935                 rc = mdd_update_time(env, mdd_tobj, tattr, la, handle);
2936                 if (rc != 0) {
2937                         CERROR("%s: Failed to set ctime for tobj "
2938                                 DFID": rc = %d\n",
2939                                 mdd2obd_dev(mdd)->obd_name,
2940                                 PFID(tpobj_fid), rc);
2941                         GOTO(fixup_tpobj, rc);
2942                 }
2943
2944                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2945                 ma->ma_attr = *tattr;
2946                 ma->ma_valid |= MA_INODE;
2947                 rc = mdd_finish_unlink(env, mdd_tobj, ma, mdd_tpobj, ltname,
2948                                        handle);
2949                 if (rc != 0) {
2950                         CERROR("%s: Failed to unlink tobj "
2951                                 DFID": rc = %d\n",
2952                                 mdd2obd_dev(mdd)->obd_name,
2953                                 PFID(tpobj_fid), rc);
2954                         GOTO(fixup_tpobj, rc);
2955                 }
2956
2957                 /* fetch updated nlink */
2958                 rc = mdd_la_get(env, mdd_tobj, tattr);
2959                 if (rc == -ENOENT) {
2960                         /* the object got removed, let's
2961                          * return the latest known attributes */
2962                         tattr->la_nlink = 0;
2963                         rc = 0;
2964                 } else if (rc != 0) {
2965                         CERROR("%s: Failed to get nlink for tobj "
2966                                 DFID": rc = %d\n",
2967                                 mdd2obd_dev(mdd)->obd_name,
2968                                 PFID(tpobj_fid), rc);
2969                         GOTO(fixup_tpobj, rc);
2970                 }
2971                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2972                 ma->ma_attr = *tattr;
2973                 ma->ma_valid |= MA_INODE;
2974
2975                 if (tattr->la_nlink == 0)
2976                         cl_flags |= CLF_RENAME_LAST;
2977                 else
2978                         cl_flags &= ~CLF_RENAME_LAST_EXISTS;
2979         }
2980
2981         la->la_valid = LA_CTIME | LA_MTIME;
2982         rc = mdd_update_time(env, mdd_spobj, pattr, la, handle);
2983         if (rc)
2984                 GOTO(fixup_tpobj, rc);
2985
2986         if (mdd_spobj != mdd_tpobj) {
2987                 la->la_valid = LA_CTIME | LA_MTIME;
2988                 rc = mdd_update_time(env, mdd_tpobj, tpattr, la, handle);
2989                 if (rc != 0)
2990                         GOTO(fixup_tpobj, rc);
2991         }
2992
2993         EXIT;
2994
2995 fixup_tpobj:
2996         if (rc) {
2997                 rc2 = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
2998                 if (rc2)
2999                         CWARN("tp obj fix error %d\n",rc2);
3000
3001                 if (mdd_tobj && mdd_object_exists(mdd_tobj) &&
3002                     !mdd_is_dead_obj(mdd_tobj)) {
3003                         if (tobj_ref) {
3004                                 mdo_ref_add(env, mdd_tobj, handle);
3005                                 if (is_dir)
3006                                         mdo_ref_add(env, mdd_tobj, handle);
3007                         }
3008
3009                         rc2 = __mdd_index_insert(env, mdd_tpobj,
3010                                                   mdo2fid(mdd_tobj),
3011                                                   mdd_object_type(mdd_tobj),
3012                                                   tname, handle);
3013                         if (rc2 != 0)
3014                                 CWARN("tp obj fix error: rc = %d\n", rc2);
3015                 }
3016         }
3017
3018 fixup_spobj:
3019         if (rc && is_dir && mdd_sobj && mdd_spobj != mdd_tpobj) {
3020                 rc2 = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
3021                 if (rc2)
3022                         CWARN("%s: sp obj dotdot delete error: rc = %d\n",
3023                                mdd2obd_dev(mdd)->obd_name, rc2);
3024
3025
3026                 rc2 = __mdd_index_insert_only(env, mdd_sobj, spobj_fid, S_IFDIR,
3027                                               dotdot, handle);
3028                 if (rc2 != 0)
3029                         CWARN("%s: sp obj dotdot insert error: rc = %d\n",
3030                               mdd2obd_dev(mdd)->obd_name, rc2);
3031         }
3032
3033 fixup_spobj2:
3034         if (rc != 0) {
3035                 rc2 = __mdd_index_insert(env, mdd_spobj, lf,
3036                                          mdd_object_type(mdd_sobj), sname,
3037                                          handle);
3038                 if (rc2 != 0)
3039                         CWARN("sp obj fix error: rc = %d\n", rc2);
3040         }
3041
3042 cleanup:
3043         if (tobj_locked)
3044                 mdd_write_unlock(env, mdd_tobj);
3045
3046         if (rc == 0)
3047                 rc = mdd_changelog_ns_store(env, mdd, CL_RENAME, cl_flags,
3048                                             mdd_tobj, tpobj_fid, lf, spobj_fid,
3049                                             ltname, lsname, handle);
3050
3051 stop:
3052         mdd_trans_stop(env, mdd, rc, handle);
3053
3054 out_pending:
3055         mdd_object_put(env, mdd_sobj);
3056         return rc;
3057 }
3058
3059 /**
3060  * During migration once the parent FID has been changed,
3061  * we need update the parent FID in linkea.
3062  **/
3063 static int mdd_linkea_update_child_internal(const struct lu_env *env,
3064                                             struct mdd_object *parent,
3065                                             struct mdd_object *newparent,
3066                                             struct mdd_object *child,
3067                                             const char *name, int namelen,
3068                                             struct thandle *handle,
3069                                             bool declare)
3070 {
3071         struct mdd_thread_info  *info = mdd_env_info(env);
3072         struct linkea_data      ldata = { NULL };
3073         struct lu_buf           *buf = &info->mti_link_buf;
3074         int                     count;
3075         int                     rc = 0;
3076
3077         ENTRY;
3078
3079         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
3080         if (buf->lb_buf == NULL)
3081                 RETURN(-ENOMEM);
3082
3083         ldata.ld_buf = buf;
3084         rc = mdd_links_read(env, child, &ldata);
3085         if (rc != 0) {
3086                 if (rc == -ENOENT || rc == -ENODATA)
3087                         rc = 0;
3088                 RETURN(rc);
3089         }
3090
3091         LASSERT(ldata.ld_leh != NULL);
3092         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
3093         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
3094                 struct mdd_device *mdd = mdo2mdd(&child->mod_obj);
3095                 struct lu_name lname;
3096                 struct lu_fid  fid;
3097
3098                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
3099                                     &lname, &fid);
3100
3101                 if (strncmp(lname.ln_name, name, namelen) != 0 ||
3102                     !lu_fid_eq(&fid, mdd_object_fid(parent))) {
3103                         ldata.ld_lee = (struct link_ea_entry *)
3104                                        ((char *)ldata.ld_lee +
3105                                         ldata.ld_reclen);
3106                         continue;
3107                 }
3108
3109                 CDEBUG(D_INFO, "%s: update "DFID" with %.*s:"DFID"\n",
3110                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(child)),
3111                        lname.ln_namelen, lname.ln_name,
3112                        PFID(mdd_object_fid(newparent)));
3113                 /* update to the new parent fid */
3114                 linkea_entry_pack(ldata.ld_lee, &lname,
3115                                   mdd_object_fid(newparent));
3116                 if (declare)
3117                         rc = mdd_declare_links_add(env, child, handle, &ldata,
3118                                                    MLAO_IGNORE);
3119                 else
3120                         rc = mdd_links_write(env, child, &ldata, handle);
3121                 break;
3122         }
3123         RETURN(rc);
3124 }
3125
3126 static int mdd_linkea_declare_update_child(const struct lu_env *env,
3127                                            struct mdd_object *parent,
3128                                            struct mdd_object *newparent,
3129                                            struct mdd_object *child,
3130                                            const char *name, int namelen,
3131                                            struct thandle *handle)
3132 {
3133         return mdd_linkea_update_child_internal(env, parent, newparent,
3134                                                 child, name,
3135                                                 namelen, handle, true);
3136 }
3137
3138 static int mdd_linkea_update_child(const struct lu_env *env,
3139                                    struct mdd_object *parent,
3140                                    struct mdd_object *newparent,
3141                                    struct mdd_object *child,
3142                                    const char *name, int namelen,
3143                                    struct thandle *handle)
3144 {
3145         return mdd_linkea_update_child_internal(env, parent, newparent,
3146                                                 child, name,
3147                                                 namelen, handle, false);
3148 }
3149
3150 static int mdd_update_linkea_internal(const struct lu_env *env,
3151                                       struct mdd_object *mdd_pobj,
3152                                       struct mdd_object *mdd_sobj,
3153                                       struct mdd_object *mdd_tobj,
3154                                       const struct lu_name *child_name,
3155                                       struct linkea_data *ldata,
3156                                       struct thandle *handle,
3157                                       int declare)
3158 {
3159         struct mdd_thread_info  *info = mdd_env_info(env);
3160         int                     count;
3161         int                     rc = 0;
3162         ENTRY;
3163
3164         LASSERT(ldata->ld_buf != NULL);
3165
3166 again:
3167         /* If it is mulitple links file, we need update the name entry for
3168          * all parent */
3169         LASSERT(ldata->ld_leh != NULL);
3170         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
3171         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
3172                 struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3173                 struct mdd_object       *pobj;
3174                 struct lu_name          lname;
3175                 struct lu_fid           fid;
3176
3177                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
3178                                     &lname, &fid);
3179                 pobj = mdd_object_find(env, mdd, &fid);
3180                 if (IS_ERR(pobj)) {
3181                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
3182                               mdd2obd_dev(mdd)->obd_name, PFID(&fid),
3183                               PTR_ERR(pobj));
3184                         linkea_del_buf(ldata, &lname);
3185                         goto again;
3186                 }
3187
3188                 if (!mdd_object_exists(pobj)) {
3189                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
3190                               mdd2obd_dev(mdd)->obd_name, PFID(&fid));
3191                         linkea_del_buf(ldata, &lname);
3192                         mdd_object_put(env, pobj);
3193                         goto again;
3194                 }
3195
3196                 if (pobj == mdd_pobj &&
3197                     lname.ln_namelen == child_name->ln_namelen &&
3198                     strncmp(lname.ln_name, child_name->ln_name,
3199                             lname.ln_namelen) == 0) {
3200                         CDEBUG(D_INFO, "%s: skip its own %s: "DFID"\n",
3201                               mdd2obd_dev(mdd)->obd_name, child_name->ln_name,
3202                               PFID(&fid));
3203                         linkea_del_buf(ldata, &lname);
3204                         mdd_object_put(env, pobj);
3205                         goto again;
3206                 }
3207
3208                 CDEBUG(D_INFO, "%s: update "DFID" with "DNAME":"DFID"\n",
3209                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(pobj)),
3210                        PNAME(&lname), PFID(mdd_object_fid(mdd_tobj)));
3211
3212                 if (declare) {
3213                         /* Remove source name from source directory */
3214                         /* Insert new fid with target name into target dir */
3215                         rc = mdo_declare_index_delete(env, pobj, lname.ln_name,
3216                                                       handle);
3217                         if (rc != 0)
3218                                 GOTO(next_put, rc);
3219
3220                         rc = mdo_declare_index_insert(env, pobj,
3221                                         mdd_object_fid(mdd_tobj),
3222                                         mdd_object_type(mdd_tobj),
3223                                         lname.ln_name, handle);
3224                         if (rc != 0)
3225                                 GOTO(next_put, rc);
3226
3227                         rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3228                         if (rc)
3229                                 GOTO(next_put, rc);
3230
3231                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3232                         if (rc)
3233                                 GOTO(next_put, rc);
3234                 } else {
3235                         char *tmp_name = info->mti_key;
3236
3237                         if (lname.ln_namelen >= sizeof(info->mti_key)) {
3238                                 /* lnamelen is too big(> NAME_MAX + 16),
3239                                  * something wrong about this linkea, let's
3240                                  * skip it */
3241                                 linkea_del_buf(ldata, &lname);
3242                                 mdd_object_put(env, pobj);
3243                                 goto again;
3244                         }
3245
3246                         /* Note: lname might be without \0 at the end, see
3247                          * linkea_entry_unpack(), let's add extra \0 by
3248                          * snprintf */
3249                         snprintf(tmp_name, sizeof(info->mti_key), "%.*s",
3250                                  lname.ln_namelen, lname.ln_name);
3251                         lname.ln_name = tmp_name;
3252
3253                         /* Let's check if this linkEA still valid, before
3254                          * it might be packed into the RPC buffer. */
3255                         rc = mdd_lookup(env, &pobj->mod_obj, &lname,
3256                                         &info->mti_fid, NULL);
3257                         if (rc < 0 ||
3258                             !lu_fid_eq(&info->mti_fid,
3259                                         mdd_object_fid(mdd_sobj))) {
3260                                 /* skip invalid linkea entry */
3261                                 linkea_del_buf(ldata, &lname);
3262                                 mdd_object_put(env, pobj);
3263                                 goto again;
3264                         }
3265
3266                         rc = __mdd_index_delete(env, pobj, tmp_name, 0, handle);
3267                         if (rc != 0)
3268                                 GOTO(next_put, rc);
3269
3270                         rc = __mdd_index_insert(env, pobj,
3271                                         mdd_object_fid(mdd_tobj),
3272                                         mdd_object_type(mdd_tobj),
3273                                         tmp_name, handle);
3274                         if (rc != 0)
3275                                 GOTO(next_put, rc);
3276
3277                         mdd_write_lock(env, mdd_tobj, MOR_SRC_CHILD);
3278                         rc = mdo_ref_add(env, mdd_tobj, handle);
3279                         mdd_write_unlock(env, mdd_tobj);
3280                         if (rc)
3281                                 GOTO(next_put, rc);
3282
3283                         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
3284                         mdo_ref_del(env, mdd_sobj, handle);
3285                         mdd_write_unlock(env, mdd_sobj);
3286                 }
3287 next_put:
3288                 mdd_object_put(env, pobj);
3289                 if (rc != 0)
3290                         break;
3291
3292                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
3293                                                          ldata->ld_reclen);
3294         }
3295
3296         RETURN(rc);
3297 }
3298
3299 static int mdd_migrate_xattrs(const struct lu_env *env,
3300                               struct mdd_object *mdd_sobj,
3301                               struct mdd_object *mdd_tobj)
3302 {
3303         struct mdd_thread_info  *info = mdd_env_info(env);
3304         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3305         char                    *xname;
3306         struct thandle          *handle;
3307         struct lu_buf           xbuf;
3308         int                     xlen;
3309         int                     rem;
3310         int                     xsize;
3311         int                     list_xsize;
3312         struct lu_buf           list_xbuf;
3313         int                     rc;
3314         int                     rc1;
3315
3316         /* retrieve xattr list from the old object */
3317         list_xsize = mdo_xattr_list(env, mdd_sobj, &LU_BUF_NULL);
3318         if (list_xsize == -ENODATA)
3319                 return 0;
3320
3321         if (list_xsize < 0)
3322                 return list_xsize;
3323
3324         lu_buf_check_and_alloc(&info->mti_big_buf, list_xsize);
3325         if (info->mti_big_buf.lb_buf == NULL)
3326                 return -ENOMEM;
3327
3328         list_xbuf.lb_buf = info->mti_big_buf.lb_buf;
3329         list_xbuf.lb_len = list_xsize;
3330         rc = mdo_xattr_list(env, mdd_sobj, &list_xbuf);
3331         if (rc < 0)
3332                 return rc;
3333         rc = 0;
3334         rem = list_xsize;
3335         xname = list_xbuf.lb_buf;
3336         while (rem > 0) {
3337                 xlen = strnlen(xname, rem - 1) + 1;
3338                 if (strcmp(XATTR_NAME_LINK, xname) == 0 ||
3339                     strcmp(XATTR_NAME_LMA, xname) == 0 ||
3340                     strcmp(XATTR_NAME_LMV, xname) == 0)
3341                         goto next;
3342
3343                 /* For directory, if there are default layout, migrate here */
3344                 if (strcmp(XATTR_NAME_LOV, xname) == 0 &&
3345                     !S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu)))
3346                         goto next;
3347
3348                 xsize = mdo_xattr_get(env, mdd_sobj, &LU_BUF_NULL, xname);
3349                 if (xsize == -ENODATA)
3350                         goto next;
3351                 if (xsize < 0)
3352                         GOTO(out, rc);
3353
3354                 lu_buf_check_and_alloc(&info->mti_link_buf, xsize);
3355                 if (info->mti_link_buf.lb_buf == NULL)
3356                         GOTO(out, rc = -ENOMEM);
3357
3358                 xbuf.lb_len = xsize;
3359                 xbuf.lb_buf = info->mti_link_buf.lb_buf;
3360                 rc = mdo_xattr_get(env, mdd_sobj, &xbuf, xname);
3361                 if (rc == -ENODATA)
3362                         goto next;
3363                 if (rc < 0)
3364                         GOTO(out, rc);
3365
3366                 handle = mdd_trans_create(env, mdd);
3367                 if (IS_ERR(handle))
3368                         GOTO(out, rc = PTR_ERR(handle));
3369
3370                 rc = mdo_declare_xattr_set(env, mdd_tobj, &xbuf, xname, 0,
3371                                            handle);
3372                 if (rc != 0)
3373                         GOTO(stop_trans, rc);
3374                 /* Note: this transaction is part of migration, and it is not
3375                  * the last step of migration, so we set th_local = 1 to avoid
3376                  * update last rcvd for this transaction */
3377                 handle->th_local = 1;
3378                 rc = mdd_trans_start(env, mdd, handle);
3379                 if (rc != 0)
3380                         GOTO(stop_trans, rc);
3381
3382                 rc = mdo_xattr_set(env, mdd_tobj, &xbuf, xname, 0, handle);
3383                 if (rc == -EEXIST)
3384                         GOTO(stop_trans, rc = 0);
3385
3386                 if (rc != 0)
3387                         GOTO(stop_trans, rc);
3388 stop_trans:
3389                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3390                 if (rc == 0)
3391                         rc = rc1;
3392                 if (rc != 0)
3393                         GOTO(out, rc);
3394 next:
3395                 rem -= xlen;
3396                 memmove(xname, xname + xlen, rem);
3397         }
3398 out:
3399         return rc;
3400 }
3401
3402 static int mdd_declare_migrate_create(const struct lu_env *env,
3403                                       struct mdd_object *mdd_pobj,
3404                                       struct mdd_object *mdd_sobj,
3405                                       struct mdd_object *mdd_tobj,
3406                                       struct md_op_spec *spec,
3407                                       struct lu_attr *la,
3408                                       union lmv_mds_md *mgr_ea,
3409                                       struct linkea_data *ldata,
3410                                       struct thandle *handle)
3411 {
3412         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3413         const struct lu_buf     *buf;
3414         int                     rc;
3415         int                     mgr_easize;
3416
3417         rc = mdd_declare_object_create_internal(env, mdd_pobj, mdd_tobj, la,
3418                                                 handle, spec, NULL);
3419         if (rc != 0)
3420                 return rc;
3421
3422         rc = mdd_declare_object_initialize(env, mdd_pobj, mdd_tobj, la,
3423                                            handle);
3424         if (rc != 0)
3425                 return rc;
3426
3427         if (S_ISLNK(la->la_mode)) {
3428                 const char *target_name = spec->u.sp_symname;
3429                 int sym_len = strlen(target_name);
3430                 const struct lu_buf *buf;
3431
3432                 buf = mdd_buf_get_const(env, target_name, sym_len);
3433                 rc = dt_declare_record_write(env, mdd_object_child(mdd_tobj),
3434                                              buf, 0, handle);
3435                 if (rc != 0)
3436                         return rc;
3437         } else if (S_ISDIR(la->la_mode) && ldata != NULL) {
3438                 rc = mdd_declare_links_add(env, mdd_tobj, handle, ldata,
3439                                            MLAO_IGNORE);
3440                 if (rc != 0)
3441                         return rc;
3442         }
3443
3444         if (spec->u.sp_ea.eadata != NULL && spec->u.sp_ea.eadatalen != 0) {
3445                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
3446                                         spec->u.sp_ea.eadatalen);
3447                 rc = mdo_declare_xattr_set(env, mdd_tobj, buf, XATTR_NAME_LOV,
3448                                            0, handle);
3449                 if (rc)
3450                         return rc;
3451         }
3452
3453         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3454         buf = mdd_buf_get_const(env, mgr_ea, mgr_easize);
3455         rc = mdo_declare_xattr_set(env, mdd_sobj, buf, XATTR_NAME_LMV,
3456                                    0, handle);
3457         if (rc)
3458                 return rc;
3459
3460         la_flag->la_valid = LA_FLAGS;
3461         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3462         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3463
3464         return rc;
3465 }
3466
3467 static int mdd_migrate_create(const struct lu_env *env,
3468                               struct mdd_object *mdd_pobj,
3469                               struct mdd_object *mdd_sobj,
3470                               struct mdd_object *mdd_tobj,
3471                               const struct lu_name *lname,
3472                               struct lu_attr *la)
3473 {
3474         struct mdd_thread_info  *info = mdd_env_info(env);
3475         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3476         struct md_op_spec       *spec = &info->mti_spec;
3477         struct lu_buf           lmm_buf = { NULL };
3478         struct lu_buf           link_buf = { NULL };
3479         const struct lu_buf     *buf;
3480         struct thandle          *handle;
3481         struct lmv_mds_md_v1    *mgr_ea;
3482         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3483         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
3484         int                     mgr_easize;
3485         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3486         int                     rc;
3487         ENTRY;
3488
3489         /* prepare spec for create */
3490         memset(spec, 0, sizeof(*spec));
3491         spec->sp_cr_lookup = 0;
3492         spec->sp_feat = &dt_directory_features;
3493         if (S_ISLNK(la->la_mode)) {
3494                 buf = lu_buf_check_and_alloc(
3495                                 &mdd_env_info(env)->mti_big_buf,
3496                                 la->la_size + 1);
3497                 link_buf = *buf;
3498                 link_buf.lb_len = la->la_size + 1;
3499                 memset(link_buf.lb_buf, 0, link_buf.lb_len);
3500                 rc = mdd_readlink(env, &mdd_sobj->mod_obj, &link_buf);
3501                 if (rc <= 0) {
3502                         rc = rc != 0 ? rc : -EFAULT;
3503                         CERROR("%s: "DFID" readlink failed: rc = %d\n",
3504                                mdd2obd_dev(mdd)->obd_name,
3505                                PFID(mdd_object_fid(mdd_sobj)), rc);
3506                         RETURN(rc);
3507                 }
3508                 spec->u.sp_symname = link_buf.lb_buf;
3509         } else if (S_ISREG(la->la_mode)) {
3510                 /* retrieve lov of the old object */
3511                 rc = mdd_get_lov_ea(env, mdd_sobj, &lmm_buf);
3512                 if (rc != 0 && rc != -ENODATA)
3513                         RETURN(rc);
3514                 if (lmm_buf.lb_buf != NULL && lmm_buf.lb_len != 0) {
3515                         spec->u.sp_ea.eadata = lmm_buf.lb_buf;
3516                         spec->u.sp_ea.eadatalen = lmm_buf.lb_len;
3517                         spec->sp_cr_flags |= MDS_OPEN_HAS_EA;
3518                 }
3519         } else if (S_ISDIR(la->la_mode)) {
3520                 rc = mdd_links_read(env, mdd_sobj, ldata);
3521                 if (rc == -ENODATA) {
3522                         /* ignore the non-linkEA error */
3523                         ldata = NULL;
3524                         rc = 0;
3525                 }
3526                 if (rc < 0)
3527                         RETURN(rc);
3528         }
3529
3530         mgr_ea = (struct lmv_mds_md_v1 *)info->mti_xattr_buf;
3531         memset(mgr_ea, 0, sizeof(*mgr_ea));
3532         mgr_ea->lmv_magic = cpu_to_le32(LMV_MAGIC_V1);
3533         mgr_ea->lmv_stripe_count = cpu_to_le32(2);
3534         mgr_ea->lmv_master_mdt_index = mdd_seq_site(mdd)->ss_node_id;
3535         mgr_ea->lmv_hash_type = cpu_to_le32(LMV_HASH_FLAG_MIGRATION);
3536         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[0], mdd_object_fid(mdd_sobj));
3537         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[1], mdd_object_fid(mdd_tobj));
3538
3539         mdd_object_make_hint(env, mdd_pobj, mdd_tobj, la, spec, hint);
3540
3541         handle = mdd_trans_create(env, mdd);
3542         if (IS_ERR(handle))
3543                 GOTO(out_free, rc = PTR_ERR(handle));
3544
3545         /* Note: this transaction is part of migration, and it is not
3546          * the last step of migration, so we set th_local = 1 to avoid
3547          * update last rcvd for this transaction */
3548         handle->th_local = 1;
3549         rc = mdd_declare_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj,
3550                                         spec, la,
3551                                         (union lmv_mds_md *)info->mti_xattr_buf,
3552                                         ldata, handle);
3553         if (rc != 0)
3554                 GOTO(stop_trans, rc);
3555
3556         rc = mdd_trans_start(env, mdd, handle);
3557         if (rc != 0)
3558                 GOTO(stop_trans, rc);
3559
3560         /* don't set nlink from the original object */
3561         la->la_valid &= ~LA_NLINK;
3562
3563         /* create the target object */
3564         rc = mdd_object_create(env, mdd_pobj, mdd_tobj, la, spec, NULL, NULL,
3565                                hint, handle);
3566         if (rc != 0)
3567                 GOTO(stop_trans, rc);
3568
3569         if (S_ISDIR(la->la_mode) && ldata != NULL) {
3570                 rc = mdd_links_write(env, mdd_tobj, ldata, handle);
3571                 if (rc != 0)
3572                         GOTO(stop_trans, rc);
3573         }
3574
3575         /* Set MIGRATE EA on the source inode, so once the migration needs
3576          * to be re-done during failover, the re-do process can locate the
3577          * target object which is already being created. */
3578         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3579         buf = mdd_buf_get_const(env, mgr_ea, mgr_easize);
3580         rc = mdo_xattr_set(env, mdd_sobj, buf, XATTR_NAME_LMV, 0, handle);
3581         if (rc != 0)
3582                 GOTO(stop_trans, rc);
3583
3584         /* Set immutable flag, so any modification is disabled until
3585          * the migration is done. Once the migration is interrupted,
3586          * if the resume process find the migrating object has both
3587          * IMMUTALBE flag and MIGRATE EA, it need to clear IMMUTABLE
3588          * flag and approve the migration */
3589         la_flag->la_valid = LA_FLAGS;
3590         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3591         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3592 stop_trans:
3593         if (handle != NULL) {
3594                 int rc1;
3595
3596                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3597                 if (rc == 0)
3598                         rc = rc1;
3599         }
3600 out_free:
3601         if (lmm_buf.lb_buf != NULL)
3602                 OBD_FREE(lmm_buf.lb_buf, lmm_buf.lb_len);
3603         RETURN(rc);
3604 }
3605
3606 static int mdd_migrate_entries(const struct lu_env *env,
3607                                struct mdd_object *mdd_sobj,
3608                                struct mdd_object *mdd_tobj)
3609 {
3610         struct dt_object        *next = mdd_object_child(mdd_sobj);
3611         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3612         struct dt_object        *dt_tobj = mdd_object_child(mdd_tobj);
3613         struct thandle          *handle;
3614         struct dt_it            *it;
3615         const struct dt_it_ops  *iops;
3616         int                      rc;
3617         int                      result;
3618         struct lu_dirent        *ent;
3619         ENTRY;
3620
3621         OBD_ALLOC(ent, NAME_MAX + sizeof(*ent) + 1);
3622         if (ent == NULL)
3623                 RETURN(-ENOMEM);
3624
3625         if (!dt_try_as_dir(env, next))
3626                 GOTO(out_ent, rc = -ENOTDIR);
3627         /*
3628          * iterate directories
3629          */
3630         iops = &next->do_index_ops->dio_it;
3631         it = iops->init(env, next, LUDA_FID | LUDA_TYPE);
3632         if (IS_ERR(it))
3633                 GOTO(out_ent, rc = PTR_ERR(it));
3634
3635         rc = iops->load(env, it, 0);
3636         if (rc == 0)
3637                 rc = iops->next(env, it);
3638         else if (rc > 0)
3639                 rc = 0;
3640         /*
3641          * At this point and across for-loop:
3642          *
3643          *  rc == 0 -> ok, proceed.
3644          *  rc >  0 -> end of directory.
3645          *  rc <  0 -> error.
3646          */
3647         do {
3648                 struct mdd_object       *child;
3649                 char                    *name = mdd_env_info(env)->mti_key;
3650                 int                     len;
3651                 int                     recsize;
3652                 int                     is_dir;
3653                 bool                    target_exist = false;
3654                 int                     rc1;
3655
3656                 len = iops->key_size(env, it);
3657                 if (len == 0)
3658                         goto next;
3659
3660                 result = iops->rec(env, it, (struct dt_rec *)ent,
3661                                    LUDA_FID | LUDA_TYPE);
3662                 if (result == -ESTALE)
3663                         goto next;
3664                 if (result != 0) {
3665                         rc = result;
3666                         goto out;
3667                 }
3668
3669                 fid_le_to_cpu(&ent->lde_fid, &ent->lde_fid);
3670                 recsize = le16_to_cpu(ent->lde_reclen);
3671
3672                 /* Insert new fid with target name into target dir */
3673                 if ((ent->lde_namelen == 1 && ent->lde_name[0] == '.') ||
3674                     (ent->lde_namelen == 2 && ent->lde_name[0] == '.' &&
3675                      ent->lde_name[1] == '.'))
3676                         goto next;
3677
3678                 child = mdd_object_find(env, mdd, &ent->lde_fid);
3679                 if (IS_ERR(child))
3680                         GOTO(out, rc = PTR_ERR(child));
3681
3682                 mdd_write_lock(env, child, MOR_SRC_CHILD);
3683                 is_dir = S_ISDIR(mdd_object_type(child));
3684
3685                 snprintf(name, ent->lde_namelen + 1, "%s", ent->lde_name);
3686
3687                 /* Check whether the name has been inserted to the target */
3688                 if (dt_try_as_dir(env, dt_tobj)) {
3689                         struct lu_fid *fid = &mdd_env_info(env)->mti_fid2;
3690
3691                         rc = dt_lookup(env, dt_tobj, (struct dt_rec *)fid,
3692                                        (struct dt_key *)name);
3693                         if (unlikely(rc == 0))
3694                                 target_exist = true;
3695                 }
3696
3697                 handle = mdd_trans_create(env, mdd);
3698                 if (IS_ERR(handle))
3699                         GOTO(out_put, rc = PTR_ERR(handle));
3700
3701                 /* Note: this transaction is part of migration, and it is not
3702                  * the last step of migration, so we set th_local = 1 to avoid
3703                  * updating last rcvd for this transaction */
3704                 handle->th_local = 1;
3705                 if (likely(!target_exist)) {
3706                         rc = mdo_declare_index_insert(env, mdd_tobj,
3707                                                       &ent->lde_fid,
3708                                                       mdd_object_type(child),
3709                                                       name, handle);
3710                         if (rc != 0)
3711                                 GOTO(out_put, rc);
3712
3713                         if (is_dir) {
3714                                 rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3715                                 if (rc != 0)
3716                                         GOTO(out_put, rc);
3717                         }
3718                 }
3719
3720                 rc = mdo_declare_index_delete(env, mdd_sobj, name, handle);
3721                 if (rc != 0)
3722                         GOTO(out_put, rc);
3723
3724                 if (is_dir) {
3725                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3726                         if (rc != 0)
3727                                 GOTO(out_put, rc);
3728
3729                         /* Update .. for child */
3730                         rc = mdo_declare_index_delete(env, child, dotdot,
3731                                                       handle);
3732                         if (rc != 0)
3733                                 GOTO(out_put, rc);
3734
3735                         rc = mdo_declare_index_insert(env, child,
3736                                                       mdd_object_fid(mdd_tobj),
3737                                                       S_IFDIR, dotdot, handle);
3738                         if (rc != 0)
3739                                 GOTO(out_put, rc);
3740                 }
3741
3742                 rc = mdd_linkea_declare_update_child(env, mdd_sobj,mdd_tobj,
3743                                                      child, name,
3744                                                      strlen(name),
3745                                                      handle);
3746                 if (rc != 0)
3747                         GOTO(out_put, rc);
3748
3749                 rc = mdd_trans_start(env, mdd, handle);
3750                 if (rc != 0) {
3751                         CERROR("%s: transaction start failed: rc = %d\n",
3752                                mdd2obd_dev(mdd)->obd_name, rc);
3753                         GOTO(out_put, rc);
3754                 }
3755
3756                 if (likely(!target_exist)) {
3757                         rc = __mdd_index_insert(env, mdd_tobj, &ent->lde_fid,
3758                                                 mdd_object_type(child),
3759                                                 name, handle);
3760                         if (rc != 0)
3761                                 GOTO(out_put, rc);
3762                 }
3763
3764                 rc = __mdd_index_delete(env, mdd_sobj, name, is_dir, handle);
3765                 if (rc != 0)
3766                         GOTO(out_put, rc);
3767
3768                 if (is_dir) {
3769                         rc = __mdd_index_delete_only(env, child, dotdot,
3770                                                      handle);
3771                         if (rc != 0)
3772                                 GOTO(out_put, rc);
3773
3774                         rc = __mdd_index_insert_only(env, child,
3775                                          mdd_object_fid(mdd_tobj), S_IFDIR,
3776                                          dotdot, handle);
3777                         if (rc != 0)
3778                                 GOTO(out_put, rc);
3779                 }
3780
3781                 rc = mdd_linkea_update_child(env, mdd_sobj, mdd_tobj,
3782                                              child, name,
3783                                              strlen(name), handle);
3784
3785 out_put:
3786                 mdd_write_unlock(env, child);
3787                 mdd_object_put(env, child);
3788                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3789                 if (rc == 0)
3790                         rc = rc1;
3791
3792                 if (rc != 0)
3793                         GOTO(out, rc);
3794 next:
3795                 result = iops->next(env, it);
3796                 if (OBD_FAIL_CHECK(OBD_FAIL_MIGRATE_ENTRIES))
3797                         GOTO(out, rc = -EINTR);
3798
3799                 if (result == -ESTALE)
3800                         goto next;
3801         } while (result == 0);
3802 out:
3803         iops->put(env, it);
3804         iops->fini(env, it);
3805 out_ent:
3806         OBD_FREE(ent, NAME_MAX + sizeof(*ent) + 1);
3807         RETURN(rc);
3808 }
3809
3810 static int mdd_declare_update_linkea(const struct lu_env *env,
3811                                      struct mdd_object *mdd_pobj,
3812                                      struct mdd_object *mdd_sobj,
3813                                      struct mdd_object *mdd_tobj,
3814                                      const struct lu_name *child_name,
3815                                      struct linkea_data *ldata,
3816                                      struct thandle *handle)
3817 {
3818         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3819                                           child_name, ldata, handle, 1);
3820 }
3821
3822 static int mdd_update_linkea(const struct lu_env *env,
3823                              struct mdd_object *mdd_pobj,
3824                              struct mdd_object *mdd_sobj,
3825                              struct mdd_object *mdd_tobj,
3826                              const struct lu_name *child_name,
3827                              struct linkea_data *ldata,
3828                              struct thandle *handle)
3829 {
3830         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3831                                           child_name, ldata, handle, 0);
3832 }
3833
3834 static int mdd_declare_migrate_update_name(const struct lu_env *env,
3835                                            struct mdd_object *mdd_pobj,
3836                                            struct mdd_object *mdd_sobj,
3837                                            struct mdd_object *mdd_tobj,
3838                                            const struct lu_name *lname,
3839                                            struct lu_attr *la,
3840                                            struct lu_attr *parent_la,
3841                                            struct linkea_data *ldata,
3842                                            struct thandle *handle)
3843 {
3844         struct mdd_device *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3845         struct lu_attr *la_flag = MDD_ENV_VAR(env, tattr);
3846         int rc;
3847
3848         /* Revert IMMUTABLE flag */
3849         la_flag->la_valid = LA_FLAGS;
3850         la_flag->la_flags = la->la_flags & ~LUSTRE_IMMUTABLE_FL;
3851         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3852         if (rc != 0)
3853                 return rc;
3854
3855         /* delete entry from source dir */
3856         rc = mdo_declare_index_delete(env, mdd_pobj, lname->ln_name, handle);
3857         if (rc != 0)
3858                 return rc;
3859
3860         if (ldata->ld_buf != NULL) {
3861                 rc = mdd_declare_update_linkea(env, mdd_pobj, mdd_sobj,
3862                                                mdd_tobj, lname, ldata, handle);
3863                 if (rc != 0)
3864                         return rc;
3865         }
3866
3867         if (S_ISREG(mdd_object_type(mdd_sobj))) {
3868                 rc = mdo_declare_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
3869                                            handle);
3870                 if (rc != 0)
3871                         return rc;
3872
3873                 handle->th_complex = 1;
3874                 rc = mdo_declare_xattr_set(env, mdd_tobj, NULL,
3875                                            XATTR_NAME_FID,
3876                                            LU_XATTR_REPLACE, handle);
3877                 if (rc < 0)
3878                         return rc;
3879         }
3880
3881         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3882                 rc = mdo_declare_ref_del(env, mdd_pobj, handle);
3883                 if (rc != 0)
3884                         return rc;
3885         }
3886
3887         /* new name */
3888         rc = mdo_declare_index_insert(env, mdd_pobj, mdo2fid(mdd_tobj),
3889                                       mdd_object_type(mdd_tobj),
3890                                       lname->ln_name, handle);
3891         if (rc != 0)
3892                 return rc;
3893
3894         rc = mdd_declare_links_add(env, mdd_tobj, handle, NULL, MLAO_IGNORE);
3895         if (rc != 0)
3896                 return rc;
3897
3898         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3899                 rc = mdo_declare_ref_add(env, mdd_pobj, handle);
3900                 if (rc != 0)
3901                         return rc;
3902         }
3903
3904         /* delete old object */
3905         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3906         if (rc != 0)
3907                 return rc;
3908
3909         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3910                 /* delete old object */
3911                 rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3912                 if (rc != 0)
3913                         return rc;
3914                 /* set nlink to 0 */
3915                 rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
3916                 if (rc != 0)
3917                         return rc;
3918         }
3919
3920         rc = mdd_declare_finish_unlink(env, mdd_sobj, handle);
3921         if (rc)
3922                 return rc;
3923
3924         rc = mdo_declare_attr_set(env, mdd_pobj, parent_la, handle);
3925         if (rc != 0)
3926                 return rc;
3927
3928         rc = mdd_declare_changelog_store(env, mdd, lname, NULL, handle);
3929
3930         return rc;
3931 }
3932
3933 static int mdd_migrate_update_name(const struct lu_env *env,
3934                                    struct mdd_object *mdd_pobj,
3935                                    struct mdd_object *mdd_sobj,
3936                                    struct mdd_object *mdd_tobj,
3937                                    const struct lu_name *lname,
3938                                    struct md_attr *ma)
3939 {
3940         struct lu_attr          *p_la = MDD_ENV_VAR(env, la_for_fix);
3941         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
3942         struct lu_attr          *la_flag = MDD_ENV_VAR(env, tattr);
3943         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3944         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3945         struct thandle          *handle;
3946         int                     is_dir = S_ISDIR(mdd_object_type(mdd_sobj));
3947         const char              *name = lname->ln_name;
3948         int                     rc;
3949         ENTRY;
3950
3951         /* update time for parent */
3952         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
3953         p_la->la_ctime = p_la->la_mtime = ma->ma_attr.la_ctime;
3954         p_la->la_valid = LA_CTIME;
3955
3956         rc = mdd_la_get(env, mdd_sobj, so_attr);
3957         if (rc != 0)
3958                 RETURN(rc);
3959
3960         ldata->ld_buf = NULL;
3961         rc = mdd_links_read(env, mdd_sobj, ldata);
3962         if (rc != 0 && rc != -ENOENT && rc != -ENODATA)
3963                 RETURN(rc);
3964
3965         handle = mdd_trans_create(env, mdd);
3966         if (IS_ERR(handle))
3967                 RETURN(PTR_ERR(handle));
3968
3969         rc = mdd_declare_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj,
3970                                              lname, so_attr, p_la, ldata,
3971                                              handle);
3972         if (rc != 0) {
3973                 /* If the migration can not be fit in one transaction, just
3974                  * leave it in the original MDT */
3975                 if (rc == -E2BIG)
3976                         GOTO(stop_trans, rc = 0);
3977                 else
3978                         GOTO(stop_trans, rc);
3979         }
3980
3981         CDEBUG(D_INFO, "%s: update "DFID"/"DFID" with %s:"DFID"\n",
3982                mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(mdd_pobj)),
3983                PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
3984                PFID(mdd_object_fid(mdd_tobj)));
3985
3986         rc = mdd_trans_start(env, mdd, handle);
3987         if (rc != 0)
3988                 GOTO(stop_trans, rc);
3989
3990         /* Revert IMMUTABLE flag */
3991         la_flag->la_valid = LA_FLAGS;
3992         la_flag->la_flags = so_attr->la_flags & ~LUSTRE_IMMUTABLE_FL;
3993         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3994         if (rc != 0)
3995                 GOTO(stop_trans, rc);
3996
3997         /* Remove source name from source directory */
3998         rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle);
3999         if (rc != 0)
4000                 GOTO(stop_trans, rc);
4001
4002         if (ldata->ld_buf != NULL) {
4003                 rc = mdd_update_linkea(env, mdd_pobj, mdd_sobj, mdd_tobj,
4004                                        lname, ldata, handle);
4005                 if (rc != 0)
4006                         GOTO(stop_trans, rc);
4007
4008                 /*  linkea update might decrease the source object
4009                  *  nlink, let's get the attr again after ref_del */
4010                 rc = mdd_la_get(env, mdd_sobj, so_attr);
4011                 if (rc != 0)
4012                         GOTO(stop_trans, rc);
4013         }
4014
4015         if (S_ISREG(so_attr->la_mode)) {
4016                 if (so_attr->la_nlink == 1) {
4017                         rc = mdo_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
4018                                            handle);
4019                         if (rc != 0 && rc != -ENODATA)
4020                                 GOTO(stop_trans, rc);
4021
4022                         rc = mdo_xattr_set(env, mdd_tobj, NULL,
4023                                            XATTR_NAME_FID,
4024                                            LU_XATTR_REPLACE, handle);
4025                         if (rc < 0)
4026                                 GOTO(stop_trans, rc);
4027                 }
4028         }
4029
4030         /* Insert new fid with target name into target dir */
4031         rc = __mdd_index_insert(env, mdd_pobj, mdd_object_fid(mdd_tobj),
4032                                 mdd_object_type(mdd_tobj), name, handle);
4033         if (rc != 0)
4034                 GOTO(stop_trans, rc);
4035
4036         linkea_add_buf(ldata, lname, mdd_object_fid(mdd_pobj));
4037         rc = mdd_links_add(env, mdd_tobj, mdo2fid(mdd_pobj), lname, handle,
4038                            ldata, 1);
4039         if (rc != 0)
4040                 GOTO(stop_trans, rc);
4041
4042         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
4043
4044         mdd_sobj->mod_flags |= DEAD_OBJ;
4045         rc = mdd_mark_orphan_object(env, mdd_sobj, handle, false);
4046         if (rc != 0)
4047                 GOTO(out_unlock, rc);
4048
4049         rc = __mdd_orphan_add(env, mdd_sobj, handle);
4050         if (rc != 0)
4051                 GOTO(out_unlock, rc);
4052
4053         mdo_ref_del(env, mdd_sobj, handle);
4054         if (is_dir)
4055                 mdo_ref_del(env, mdd_sobj, handle);
4056
4057         /* Get the attr again after ref_del */
4058         rc = mdd_la_get(env, mdd_sobj, so_attr);
4059         if (rc != 0)
4060                 GOTO(out_unlock, rc);
4061
4062         ma->ma_attr = *so_attr;
4063         ma->ma_valid |= MA_INODE;
4064
4065         rc = mdd_attr_set_internal(env, mdd_pobj, p_la, handle, 0);
4066         if (rc != 0)
4067                 GOTO(out_unlock, rc);
4068
4069         rc = mdd_changelog_ns_store(env, mdd, CL_MIGRATE, 0, mdd_tobj,
4070                                mdo2fid(mdd_pobj), mdo2fid(mdd_sobj),
4071                                mdo2fid(mdd_pobj), lname, lname, handle);
4072         if (rc != 0) {
4073                 CWARN("%s: changelog for migrate %s "DFID
4074                       "under "DFID" failed: rc = %d\n",
4075                       mdd2obd_dev(mdd)->obd_name, lname->ln_name,
4076                       PFID(mdd_object_fid(mdd_sobj)),
4077                       PFID(mdd_object_fid(mdd_pobj)), rc);
4078                 /* Sigh, there are no easy way to migrate back the object, so
4079                  * let's reset the result to 0 for now XXX */
4080                 rc = 0;
4081         }
4082 out_unlock:
4083         mdd_write_unlock(env, mdd_sobj);
4084
4085 stop_trans:
4086         mdd_trans_stop(env, mdd, rc, handle);
4087
4088         RETURN(rc);
4089 }
4090
4091 static int mdd_fld_lookup(const struct lu_env *env, struct mdd_device *mdd,
4092                           const struct lu_fid *fid, __u32 *mdt_index)
4093 {
4094         struct lu_seq_range *range = &mdd_env_info(env)->mti_range;
4095         struct seq_server_site *ss;
4096         int rc;
4097
4098         ss = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site;
4099
4100         range->lsr_flags = LU_SEQ_RANGE_MDT;
4101         rc = fld_server_lookup(env, ss->ss_server_fld, fid->f_seq, range);
4102         if (rc != 0)
4103                 return rc;
4104
4105         *mdt_index = range->lsr_index;
4106
4107         return 0;
4108 }
4109 /**
4110  * Check whether we should migrate the file/dir
4111  * return val
4112  *      < 0  permission check failed or other error.
4113  *      = 0  the file can be migrated.
4114  *      > 0  the file does not need to be migrated, mostly
4115  *           for multiple link file
4116  **/
4117 static int mdd_migrate_sanity_check(const struct lu_env *env,
4118                                     struct mdd_object *pobj,
4119                                     const struct lu_attr *pattr,
4120                                     struct mdd_object *sobj,
4121                                     struct lu_attr *sattr)
4122 {
4123         struct mdd_thread_info  *info = mdd_env_info(env);
4124         struct linkea_data      *ldata = &info->mti_link_data;
4125         struct mdd_device       *mdd = mdo2mdd(&pobj->mod_obj);
4126         int                     mgr_easize;
4127         struct lu_buf           *mgr_buf;
4128         int                     count;
4129         int                     rc;
4130         __u64 mdt_index;
4131         ENTRY;
4132
4133         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
4134         mgr_buf = lu_buf_check_and_alloc(&info->mti_big_buf, mgr_easize);
4135         if (mgr_buf->lb_buf == NULL)
4136                 RETURN(-ENOMEM);
4137
4138         rc = mdo_xattr_get(env, sobj, mgr_buf, XATTR_NAME_LMV);
4139         if (rc > 0) {
4140                 union lmv_mds_md *lmm = mgr_buf->lb_buf;
4141
4142                 /* If the object has migrateEA, it means IMMUTE flag
4143                  * is being set by previous migration process, so it
4144                  * needs to override the IMMUTE flag, otherwise the
4145                  * following sanity check will fail */
4146                 if (le32_to_cpu(lmm->lmv_md_v1.lmv_hash_type) &
4147                                                 LMV_HASH_FLAG_MIGRATION) {
4148                         struct mdd_device *mdd = mdo2mdd(&sobj->mod_obj);
4149
4150                         sattr->la_flags &= ~LUSTRE_IMMUTABLE_FL;
4151                         CDEBUG(D_HA, "%s: "DFID" override IMMUTE FLAG\n",
4152                                mdd2obd_dev(mdd)->obd_name,
4153                                PFID(mdd_object_fid(sobj)));
4154                 }
4155         }
4156
4157         rc = mdd_rename_sanity_check(env, pobj, pattr, pobj, pattr,
4158                                      sobj, sattr, NULL, NULL);
4159         if (rc != 0)
4160                 RETURN(rc);
4161
4162         /* Then it will check if the file should be migrated. If the file
4163          * has mulitple links, we only need migrate the file if all of its
4164          * entries has been migrated to the remote MDT */
4165         if (!S_ISREG(sattr->la_mode) || sattr->la_nlink < 2)
4166                 RETURN(0);
4167
4168         rc = mdd_links_read(env, sobj, ldata);
4169         if (rc != 0) {
4170                 /* For multiple links files, if there are no linkEA data at all,
4171                  * means the file might be created before linkEA is enabled, and
4172                  * all of its links should not be migrated yet, otherwise it
4173                  * should have some linkEA there */
4174                 if (rc == -ENOENT || rc == -ENODATA)
4175                         RETURN(1);
4176                 RETURN(rc);
4177         }
4178
4179         mdt_index = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site->ss_node_id;
4180         /* If there are still links locally, then the file will not be
4181          * migrated. */
4182         LASSERT(ldata->ld_leh != NULL);
4183         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
4184         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
4185                 struct lu_name          lname;
4186                 struct lu_fid           fid;
4187                 __u32                   parent_mdt_index;
4188
4189                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
4190                                     &lname, &fid);
4191                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
4192                                                          ldata->ld_reclen);
4193
4194                 rc = mdd_fld_lookup(env, mdd, &fid, &parent_mdt_index);
4195                 if (rc != 0)
4196                         RETURN(rc);
4197
4198                 /* Migrate the object only if none of its parents are on the
4199                  * current MDT. */
4200                 if (parent_mdt_index != mdt_index)
4201                         continue;
4202
4203                 CDEBUG(D_INFO, DFID"still has local entry %.*s "DFID"\n",
4204                        PFID(mdd_object_fid(sobj)), lname.ln_namelen,
4205                        lname.ln_name, PFID(&fid));
4206                 rc = 1;
4207                 break;
4208         }
4209
4210         RETURN(rc);
4211 }
4212
4213 static int mdd_migrate(const struct lu_env *env, struct md_object *pobj,
4214                        struct md_object *sobj, const struct lu_name *lname,
4215                        struct md_object *tobj, struct md_attr *ma)
4216 {
4217         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
4218         struct mdd_device       *mdd = mdo2mdd(pobj);
4219         struct mdd_object       *mdd_sobj = md2mdd_obj(sobj);
4220         struct mdd_object       *mdd_tobj = md2mdd_obj(tobj);
4221         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
4222         struct lu_attr          *pattr = MDD_ENV_VAR(env, pattr);
4223         int                     rc;
4224
4225         ENTRY;
4226         /* If the file will being migrated, it will check whether
4227          * the file is being opened by someone else right now */
4228         mdd_read_lock(env, mdd_sobj, MOR_SRC_CHILD);
4229         if (mdd_sobj->mod_count > 0) {
4230                 CERROR("%s: "DFID"%s is already opened count %d: rc = %d\n",
4231                        mdd2obd_dev(mdd)->obd_name,
4232                        PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
4233                        mdd_sobj->mod_count, -EBUSY);
4234                 mdd_read_unlock(env, mdd_sobj);
4235                 GOTO(put, rc = -EBUSY);
4236         }
4237         mdd_read_unlock(env, mdd_sobj);
4238
4239         rc = mdd_la_get(env, mdd_sobj, so_attr);
4240         if (rc != 0)
4241                 GOTO(put, rc);
4242
4243         rc = mdd_la_get(env, mdd_pobj, pattr);
4244         if (rc != 0)
4245                 GOTO(put, rc);
4246
4247         rc = mdd_migrate_sanity_check(env, mdd_pobj, pattr, mdd_sobj, so_attr);
4248         if (rc != 0) {
4249                 if (rc > 0)
4250                         rc = 0;
4251                 GOTO(put, rc);
4252         }
4253
4254         /* Sigh, it is impossible to finish all of migration in a single
4255          * transaction, for example migrating big directory entries to the
4256          * new MDT, it needs insert all of name entries of children in the
4257          * new directory.
4258          *
4259          * So migration will be done in multiple steps and transactions.
4260          *
4261          * 1. create an orphan object on the remote MDT in one transaction.
4262          * 2. migrate extend attributes to the new target file/directory.
4263          * 3. For directory, migrate the entries to the new MDT and update
4264          * linkEA of each children. Because we can not migrate all entries
4265          * in a single transaction, so the migrating directory will become
4266          * a striped directory during migration, so once the process is
4267          * interrupted, the directory is still accessible. (During lookup,
4268          * client will locate the name by searching both original and target
4269          * object).
4270          * 4. Finally, update the name/FID to point to the new file/directory
4271          * in a separate transaction.
4272          */
4273
4274         /* step 1: Check whether the orphan object has been created, and create
4275          * orphan object on the remote MDT if needed */
4276         if (!mdd_object_exists(mdd_tobj)) {
4277                 rc = mdd_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj,
4278                                         lname, so_attr);
4279                 if (rc != 0)
4280                         GOTO(put, rc);
4281         }
4282
4283         LASSERT(mdd_object_exists(mdd_tobj));
4284         /* step 2: migrate xattr */
4285         rc = mdd_migrate_xattrs(env, mdd_sobj, mdd_tobj);
4286         if (rc != 0)
4287                 GOTO(put, rc);
4288
4289         /* step 3: migrate name entries to the orphan object */
4290         if (S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu))) {
4291                 rc = mdd_migrate_entries(env, mdd_sobj, mdd_tobj);
4292                 if (rc != 0)
4293                         GOTO(put, rc);
4294                 if (unlikely(OBD_FAIL_CHECK_RESET(OBD_FAIL_MIGRATE_NET_REP,
4295                                                   OBD_FAIL_MDS_REINT_NET_REP)))
4296                         GOTO(put, rc = 0);
4297         } else {
4298                 OBD_FAIL_TIMEOUT(OBD_FAIL_MIGRATE_DELAY, cfs_fail_val);
4299         }
4300
4301         LASSERT(mdd_object_exists(mdd_tobj));
4302         /* step 4: update name entry to the new object */
4303         rc = mdd_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj, lname,
4304                                      ma);
4305         if (rc != 0)
4306                 GOTO(put, rc);
4307 put:
4308         RETURN(rc);
4309 }
4310
4311 const struct md_dir_operations mdd_dir_ops = {
4312         .mdo_is_subdir     = mdd_is_subdir,
4313         .mdo_lookup        = mdd_lookup,
4314         .mdo_create        = mdd_create,
4315         .mdo_rename        = mdd_rename,
4316         .mdo_link          = mdd_link,
4317         .mdo_unlink        = mdd_unlink,
4318         .mdo_create_data   = mdd_create_data,
4319         .mdo_migrate       = mdd_migrate,
4320 };