Whamcloud - gitweb
LU-7712 mdd: migration is too noisy
[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         struct lu_fid tfid = *mdo2fid(c);
1258         int rc;
1259
1260         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING3))
1261                 tfid.f_oid = cfs_fail_val;
1262
1263         rc = mdo_declare_index_insert(env, p, &tfid, mdd_object_type(c),
1264                                       name->ln_name, handle);
1265         if (rc != 0)
1266                 return rc;
1267
1268         rc = mdo_declare_ref_add(env, c, handle);
1269         if (rc != 0)
1270                 return rc;
1271
1272         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MORE_NLINK)) {
1273                 rc = mdo_declare_ref_add(env, c, handle);
1274                 if (rc != 0)
1275                         return rc;
1276         }
1277
1278         la->la_valid = LA_CTIME | LA_MTIME;
1279         rc = mdo_declare_attr_set(env, p, la, handle);
1280         if (rc != 0)
1281                 return rc;
1282
1283         la->la_valid = LA_CTIME;
1284         rc = mdo_declare_attr_set(env, c, la, handle);
1285         if (rc != 0)
1286                 return rc;
1287
1288         rc = mdd_declare_links_add(env, c, handle, data,
1289                         S_ISREG(mdd_object_type(c)) ? MLAO_CHECK : MLAO_IGNORE);
1290         if (rc != 0)
1291                 return rc;
1292
1293         rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
1294
1295         return rc;
1296 }
1297
1298 static int mdd_link(const struct lu_env *env, struct md_object *tgt_obj,
1299                     struct md_object *src_obj, const struct lu_name *lname,
1300                     struct md_attr *ma)
1301 {
1302         const char *name = lname->ln_name;
1303         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
1304         struct mdd_object *mdd_tobj = md2mdd_obj(tgt_obj);
1305         struct mdd_object *mdd_sobj = md2mdd_obj(src_obj);
1306         struct lu_attr    *cattr = MDD_ENV_VAR(env, cattr);
1307         struct lu_attr    *tattr = MDD_ENV_VAR(env, tattr);
1308         struct mdd_device *mdd = mdo2mdd(src_obj);
1309         struct thandle *handle;
1310         struct lu_fid *tfid = &mdd_env_info(env)->mti_fid2;
1311         struct linkea_data *ldata = &mdd_env_info(env)->mti_link_data;
1312         int rc;
1313         ENTRY;
1314
1315         rc = mdd_la_get(env, mdd_sobj, cattr);
1316         if (rc != 0)
1317                 RETURN(rc);
1318
1319         rc = mdd_la_get(env, mdd_tobj, tattr);
1320         if (rc != 0)
1321                 RETURN(rc);
1322
1323         handle = mdd_trans_create(env, mdd);
1324         if (IS_ERR(handle))
1325                 GOTO(out_pending, rc = PTR_ERR(handle));
1326
1327         memset(ldata, 0, sizeof(*ldata));
1328
1329         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1330         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1331
1332         rc = mdd_declare_link(env, mdd, mdd_tobj, mdd_sobj, lname, handle,
1333                               la, ldata);
1334         if (rc)
1335                 GOTO(stop, rc);
1336
1337         rc = mdd_trans_start(env, mdd, handle);
1338         if (rc)
1339                 GOTO(stop, rc);
1340
1341         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
1342         rc = mdd_link_sanity_check(env, mdd_tobj, tattr, lname, mdd_sobj,
1343                                    cattr);
1344         if (rc)
1345                 GOTO(out_unlock, rc);
1346
1347         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LESS_NLINK)) {
1348                 rc = mdo_ref_add(env, mdd_sobj, handle);
1349                 if (rc != 0)
1350                         GOTO(out_unlock, rc);
1351         }
1352
1353         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MORE_NLINK)) {
1354                 rc = mdo_ref_add(env, mdd_sobj, handle);
1355                 if (rc != 0)
1356                         GOTO(out_unlock, rc);
1357         }
1358
1359         *tfid = *mdo2fid(mdd_sobj);
1360         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING3))
1361                 tfid->f_oid = cfs_fail_val;
1362
1363         rc = __mdd_index_insert_only(env, mdd_tobj, tfid,
1364                                      mdd_object_type(mdd_sobj), name, handle);
1365         if (rc != 0) {
1366                 mdo_ref_del(env, mdd_sobj, handle);
1367                 GOTO(out_unlock, rc);
1368         }
1369
1370         la->la_valid = LA_CTIME | LA_MTIME;
1371         rc = mdd_update_time(env, mdd_tobj, tattr, la, handle);
1372         if (rc)
1373                 GOTO(out_unlock, rc);
1374
1375         la->la_valid = LA_CTIME;
1376         rc = mdd_update_time(env, mdd_sobj, cattr, la, handle);
1377         if (rc == 0) {
1378                 rc = mdd_linkea_prepare(env, mdd_sobj, NULL, NULL,
1379                                         mdo2fid(mdd_tobj), lname, 0, 0,
1380                                         ldata);
1381                 if (rc == 0)
1382                         mdd_links_add(env, mdd_sobj, mdo2fid(mdd_tobj),
1383                                       lname, handle, ldata, 0);
1384                 /* The failure of links_add should not cause the link
1385                  * failure, reset rc here */
1386                 rc = 0;
1387         }
1388         EXIT;
1389 out_unlock:
1390         mdd_write_unlock(env, mdd_sobj);
1391         if (rc == 0)
1392                 rc = mdd_changelog_ns_store(env, mdd, CL_HARDLINK, 0, mdd_sobj,
1393                                             mdo2fid(mdd_tobj), NULL, NULL,
1394                                             lname, NULL, handle);
1395 stop:
1396         mdd_trans_stop(env, mdd, rc, handle);
1397
1398         if (is_vmalloc_addr(ldata->ld_buf))
1399                 /* if we vmalloced a large buffer drop it */
1400                 lu_buf_free(ldata->ld_buf);
1401 out_pending:
1402         return rc;
1403 }
1404
1405 static int mdd_mark_orphan_object(const struct lu_env *env,
1406                                 struct mdd_object *obj, struct thandle *handle,
1407                                 bool declare)
1408 {
1409         struct lu_attr *attr = MDD_ENV_VAR(env, la_for_start);
1410         int rc;
1411
1412         if (!S_ISDIR(mdd_object_type(obj)))
1413                 return 0;
1414
1415         attr->la_valid = LA_FLAGS;
1416         attr->la_flags = LUSTRE_ORPHAN_FL;
1417
1418         if (declare)
1419                 rc = mdo_declare_attr_set(env, obj, attr, handle);
1420         else
1421                 rc = mdo_attr_set(env, obj, attr, handle);
1422
1423         return rc;
1424 }
1425
1426 static int mdd_declare_finish_unlink(const struct lu_env *env,
1427                                      struct mdd_object *obj,
1428                                      struct thandle *handle)
1429 {
1430         int     rc;
1431
1432         /* Sigh, we do not know if the unlink object will become orphan in
1433          * declare phase, but fortunately the flags here does not matter
1434          * in current declare implementation */
1435         rc = mdd_mark_orphan_object(env, obj, handle, true);
1436         if (rc != 0)
1437                 return rc;
1438
1439         rc = mdo_declare_destroy(env, obj, handle);
1440         if (rc != 0)
1441                 return rc;
1442
1443         rc = orph_declare_index_insert(env, obj, mdd_object_type(obj), handle);
1444         if (rc != 0)
1445                 return rc;
1446
1447         return mdd_declare_links_del(env, obj, handle);
1448 }
1449
1450 /* caller should take a lock before calling */
1451 int mdd_finish_unlink(const struct lu_env *env,
1452                       struct mdd_object *obj, struct md_attr *ma,
1453                       const struct mdd_object *pobj,
1454                       const struct lu_name *lname,
1455                       struct thandle *th)
1456 {
1457         int rc = 0;
1458         int is_dir = S_ISDIR(ma->ma_attr.la_mode);
1459         ENTRY;
1460
1461         LASSERT(mdd_write_locked(env, obj) != 0);
1462
1463         if (ma->ma_attr.la_nlink == 0 || is_dir) {
1464                 /* add new orphan and the object
1465                  * will be deleted during mdd_close() */
1466                 obj->mod_flags |= DEAD_OBJ;
1467                 if (obj->mod_count) {
1468                         rc = __mdd_orphan_add(env, obj, th);
1469                         if (rc == 0)
1470                                 CDEBUG(D_HA, "Object "DFID" is inserted into "
1471                                         "orphan list, open count = %d\n",
1472                                         PFID(mdd_object_fid(obj)),
1473                                         obj->mod_count);
1474                         else
1475                                 CERROR("Object "DFID" fail to be an orphan, "
1476                                        "open count = %d, maybe cause failed "
1477                                        "open replay\n",
1478                                         PFID(mdd_object_fid(obj)),
1479                                         obj->mod_count);
1480
1481                         /* mark object as an orphan here, not
1482                          * before __mdd_orphan_add() as racing
1483                          * mdd_la_get() may propagate ORPHAN_OBJ
1484                          * causing the asserition */
1485                         rc = mdd_mark_orphan_object(env, obj, th, false);
1486                 } else {
1487                         rc = mdo_destroy(env, obj, th);
1488                 }
1489         } else if (!is_dir) {
1490                 /* old files may not have link ea; ignore errors */
1491                 mdd_links_del(env, obj, mdo2fid(pobj), lname, th);
1492         }
1493
1494         RETURN(rc);
1495 }
1496
1497 /*
1498  * pobj maybe NULL
1499  * has mdd_write_lock on cobj already, but not on pobj yet
1500  */
1501 int mdd_unlink_sanity_check(const struct lu_env *env, struct mdd_object *pobj,
1502                             const struct lu_attr *pattr,
1503                             struct mdd_object *cobj,
1504                             const struct lu_attr *cattr)
1505 {
1506         int rc;
1507         ENTRY;
1508
1509         rc = mdd_may_delete(env, pobj, pattr, cobj, cattr, NULL, 1, 1);
1510
1511         RETURN(rc);
1512 }
1513
1514 static int mdd_declare_unlink(const struct lu_env *env, struct mdd_device *mdd,
1515                               struct mdd_object *p, struct mdd_object *c,
1516                               const struct lu_name *name, struct md_attr *ma,
1517                               struct thandle *handle, int no_name, int is_dir)
1518 {
1519         struct lu_attr  *la = &mdd_env_info(env)->mti_la_for_fix;
1520         int              rc;
1521
1522         if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING2)) {
1523                 if (likely(no_name == 0)) {
1524                         rc = mdo_declare_index_delete(env, p, name->ln_name,
1525                                                       handle);
1526                         if (rc != 0)
1527                                 return rc;
1528                 }
1529
1530                 if (is_dir != 0) {
1531                         rc = mdo_declare_ref_del(env, p, handle);
1532                         if (rc != 0)
1533                                 return rc;
1534                 }
1535         }
1536
1537         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1538         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1539         la->la_valid = LA_CTIME | LA_MTIME;
1540         rc = mdo_declare_attr_set(env, p, la, handle);
1541         if (rc)
1542                 return rc;
1543
1544         if (c != NULL) {
1545                 rc = mdo_declare_ref_del(env, c, handle);
1546                 if (rc)
1547                         return rc;
1548
1549                 rc = mdo_declare_ref_del(env, c, handle);
1550                 if (rc)
1551                         return rc;
1552
1553                 la->la_valid = LA_CTIME;
1554                 rc = mdo_declare_attr_set(env, c, la, handle);
1555                 if (rc)
1556                         return rc;
1557
1558                 rc = mdd_declare_finish_unlink(env, c, handle);
1559                 if (rc)
1560                         return rc;
1561
1562                 /* FIXME: need changelog for remove entry */
1563                 rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
1564         }
1565
1566         return rc;
1567 }
1568
1569 /*
1570  * test if a file has an HSM archive
1571  * if HSM attributes are not found in ma update them from
1572  * HSM xattr
1573  */
1574 static bool mdd_hsm_archive_exists(const struct lu_env *env,
1575                                    struct mdd_object *obj,
1576                                    struct md_attr *ma)
1577 {
1578         ENTRY;
1579
1580         if (!(ma->ma_valid & MA_HSM)) {
1581                 /* no HSM MD provided, read xattr */
1582                 struct lu_buf   *hsm_buf;
1583                 const size_t     buflen = sizeof(struct hsm_attrs);
1584                 int              rc;
1585
1586                 hsm_buf = mdd_buf_get(env, NULL, 0);
1587                 lu_buf_alloc(hsm_buf, buflen);
1588                 rc = mdo_xattr_get(env, obj, hsm_buf, XATTR_NAME_HSM);
1589                 rc = lustre_buf2hsm(hsm_buf->lb_buf, rc, &ma->ma_hsm);
1590                 lu_buf_free(hsm_buf);
1591                 if (rc < 0)
1592                         RETURN(false);
1593
1594                 ma->ma_valid |= MA_HSM;
1595         }
1596         if (ma->ma_hsm.mh_flags & HS_EXISTS)
1597                 RETURN(true);
1598         RETURN(false);
1599 }
1600
1601 /**
1602  * Delete name entry and the object.
1603  * Note: no_name == 1 means it only destory the object, i.e. name_entry
1604  * does not exist for this object, and it could only happen during resending
1605  * of remote unlink. see the comments in mdt_reint_unlink. Unfortunately, lname
1606  * is also needed in this case(needed by changelog), so we have to add another
1607  * parameter(no_name)here. XXX: this is only needed in DNE phase I, on Phase II,
1608  * the ENOENT failure should be able to be fixed by redo mechanism.
1609  */
1610 static int mdd_unlink(const struct lu_env *env, struct md_object *pobj,
1611                       struct md_object *cobj, const struct lu_name *lname,
1612                       struct md_attr *ma, int no_name)
1613 {
1614         const char *name = lname->ln_name;
1615         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
1616         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
1617         struct lu_attr *la = &mdd_env_info(env)->mti_la_for_fix;
1618         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1619         struct mdd_object *mdd_cobj = NULL;
1620         struct mdd_device *mdd = mdo2mdd(pobj);
1621         struct thandle    *handle;
1622         int rc, is_dir = 0, cl_flags = 0;
1623         ENTRY;
1624
1625         /* cobj == NULL means only delete name entry */
1626         if (likely(cobj != NULL)) {
1627                 mdd_cobj = md2mdd_obj(cobj);
1628                 if (mdd_object_exists(mdd_cobj) == 0)
1629                         RETURN(-ENOENT);
1630         }
1631
1632         rc = mdd_la_get(env, mdd_pobj, pattr);
1633         if (rc)
1634                 RETURN(rc);
1635
1636         if (likely(mdd_cobj != NULL)) {
1637                 /* fetch cattr */
1638                 rc = mdd_la_get(env, mdd_cobj, cattr);
1639                 if (rc)
1640                         RETURN(rc);
1641
1642                 is_dir = S_ISDIR(cattr->la_mode);
1643                 /* search for an existing archive.
1644                  * we should check ahead as the object
1645                  * can be destroyed in this transaction */
1646                 if (mdd_hsm_archive_exists(env, mdd_cobj, ma))
1647                         cl_flags |= CLF_UNLINK_HSM_EXISTS;
1648         }
1649
1650         rc = mdd_unlink_sanity_check(env, mdd_pobj, pattr, mdd_cobj, cattr);
1651         if (rc)
1652                 RETURN(rc);
1653
1654         handle = mdd_trans_create(env, mdd);
1655         if (IS_ERR(handle))
1656                 RETURN(PTR_ERR(handle));
1657
1658         rc = mdd_declare_unlink(env, mdd, mdd_pobj, mdd_cobj,
1659                                 lname, ma, handle, no_name, is_dir);
1660         if (rc)
1661                 GOTO(stop, rc);
1662
1663         rc = mdd_trans_start(env, mdd, handle);
1664         if (rc)
1665                 GOTO(stop, rc);
1666
1667         if (likely(mdd_cobj != NULL))
1668                 mdd_write_lock(env, mdd_cobj, MOR_TGT_CHILD);
1669
1670         if (likely(no_name == 0) && !OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DANGLING2)) {
1671                 rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle);
1672                 if (rc)
1673                         GOTO(cleanup, rc);
1674         }
1675
1676         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_MUL_REF) ||
1677             OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_NAMEENTRY))
1678                 GOTO(cleanup, rc = 0);
1679
1680         if (likely(mdd_cobj != NULL)) {
1681                 rc = mdo_ref_del(env, mdd_cobj, handle);
1682                 if (rc != 0) {
1683                         __mdd_index_insert_only(env, mdd_pobj,
1684                                                 mdo2fid(mdd_cobj),
1685                                                 mdd_object_type(mdd_cobj),
1686                                                 name, handle);
1687                         GOTO(cleanup, rc);
1688                 }
1689
1690                 if (is_dir)
1691                         /* unlink dot */
1692                         mdo_ref_del(env, mdd_cobj, handle);
1693
1694                 /* fetch updated nlink */
1695                 rc = mdd_la_get(env, mdd_cobj, cattr);
1696                 if (rc)
1697                         GOTO(cleanup, rc);
1698         }
1699
1700         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
1701         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
1702
1703         la->la_valid = LA_CTIME | LA_MTIME;
1704         rc = mdd_update_time(env, mdd_pobj, pattr, la, handle);
1705         if (rc)
1706                 GOTO(cleanup, rc);
1707
1708         /* Enough for only unlink the entry */
1709         if (unlikely(mdd_cobj == NULL))
1710                 GOTO(stop, rc);
1711
1712         if (cattr->la_nlink > 0 || mdd_cobj->mod_count > 0) {
1713                 /* update ctime of an unlinked file only if it is still
1714                  * opened or a link still exists */
1715                 la->la_valid = LA_CTIME;
1716                 rc = mdd_update_time(env, mdd_cobj, cattr, la, handle);
1717                 if (rc)
1718                         GOTO(cleanup, rc);
1719         }
1720
1721         /* XXX: this transfer to ma will be removed with LOD/OSP */
1722         ma->ma_attr = *cattr;
1723         ma->ma_valid |= MA_INODE;
1724         rc = mdd_finish_unlink(env, mdd_cobj, ma, mdd_pobj, lname, handle);
1725         if (rc != 0)
1726                 GOTO(cleanup, rc);
1727
1728         /* fetch updated nlink */
1729         rc = mdd_la_get(env, mdd_cobj, cattr);
1730         /* if object is removed then we can't get its attrs,
1731          * use last get */
1732         if (rc == -ENOENT) {
1733                 cattr->la_nlink = 0;
1734                 rc = 0;
1735         }
1736
1737         if (cattr->la_nlink == 0) {
1738                 ma->ma_attr = *cattr;
1739                 ma->ma_valid |= MA_INODE;
1740         }
1741
1742         EXIT;
1743 cleanup:
1744         if (likely(mdd_cobj != NULL))
1745                 mdd_write_unlock(env, mdd_cobj);
1746
1747         if (rc == 0) {
1748                 if (cattr->la_nlink == 0)
1749                         cl_flags |= CLF_UNLINK_LAST;
1750                 else
1751                         cl_flags &= ~CLF_UNLINK_HSM_EXISTS;
1752
1753                 rc = mdd_changelog_ns_store(env, mdd,
1754                         is_dir ? CL_RMDIR : CL_UNLINK, cl_flags,
1755                         mdd_cobj, mdo2fid(mdd_pobj), NULL, NULL, lname, NULL,
1756                         handle);
1757         }
1758
1759 stop:
1760         mdd_trans_stop(env, mdd, rc, handle);
1761
1762         return rc;
1763 }
1764
1765 /*
1766  * The permission has been checked when obj created, no need check again.
1767  */
1768 static int mdd_cd_sanity_check(const struct lu_env *env,
1769                                struct mdd_object *obj)
1770 {
1771         ENTRY;
1772
1773         /* EEXIST check */
1774         if (!obj || mdd_is_dead_obj(obj))
1775                 RETURN(-ENOENT);
1776
1777         RETURN(0);
1778 }
1779
1780 static int mdd_create_data(const struct lu_env *env, struct md_object *pobj,
1781                            struct md_object *cobj, const struct md_op_spec *spec,
1782                            struct md_attr *ma)
1783 {
1784         struct mdd_device *mdd = mdo2mdd(cobj);
1785         struct mdd_object *mdd_pobj = md2mdd_obj(pobj);
1786         struct mdd_object *son = md2mdd_obj(cobj);
1787         struct thandle    *handle;
1788         const struct lu_buf *buf;
1789         struct lu_attr    *attr = MDD_ENV_VAR(env, cattr);
1790         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
1791         int                rc;
1792         ENTRY;
1793
1794         rc = mdd_cd_sanity_check(env, son);
1795         if (rc)
1796                 RETURN(rc);
1797
1798         if (!md_should_create(spec->sp_cr_flags))
1799                 RETURN(0);
1800
1801         /*
1802          * there are following use cases for this function:
1803          * 1) late striping - file was created with MDS_OPEN_DELAY_CREATE
1804          *    striping can be specified or not
1805          * 2) CMD?
1806          */
1807         rc = mdd_la_get(env, son, attr);
1808         if (rc)
1809                 RETURN(rc);
1810
1811         /* calling ->ah_make_hint() is used to transfer information from parent */
1812         mdd_object_make_hint(env, mdd_pobj, son, attr, spec, hint);
1813
1814         handle = mdd_trans_create(env, mdd);
1815         if (IS_ERR(handle))
1816                 GOTO(out_free, rc = PTR_ERR(handle));
1817
1818         /*
1819          * XXX: Setting the lov ea is not locked but setting the attr is locked?
1820          * Should this be fixed?
1821          */
1822         CDEBUG(D_OTHER, "ea %p/%u, cr_flags "LPO64", no_create %u\n",
1823                spec->u.sp_ea.eadata, spec->u.sp_ea.eadatalen,
1824                spec->sp_cr_flags, spec->no_create);
1825
1826         if (spec->no_create || (spec->sp_cr_flags & MDS_OPEN_HAS_EA)) {
1827                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
1828                                         spec->u.sp_ea.eadatalen);
1829         } else {
1830                 buf = &LU_BUF_NULL;
1831         }
1832
1833         rc = dt_declare_xattr_set(env, mdd_object_child(son), buf,
1834                                   XATTR_NAME_LOV, 0, handle);
1835         if (rc)
1836                 GOTO(stop, rc);
1837
1838         rc = mdd_declare_changelog_store(env, mdd, NULL, NULL, handle);
1839         if (rc)
1840                 GOTO(stop, rc);
1841
1842         rc = mdd_trans_start(env, mdd, handle);
1843         if (rc)
1844                 GOTO(stop, rc);
1845
1846         rc = dt_xattr_set(env, mdd_object_child(son), buf, XATTR_NAME_LOV,
1847                           0, handle);
1848
1849         if (rc)
1850                 GOTO(stop, rc);
1851
1852         rc = mdd_changelog_data_store(env, mdd, CL_LAYOUT, 0, son, handle);
1853
1854 stop:
1855         mdd_trans_stop(env, mdd, rc, handle);
1856 out_free:
1857         RETURN(rc);
1858 }
1859
1860 static int mdd_declare_object_initialize(const struct lu_env *env,
1861                                          struct mdd_object *parent,
1862                                          struct mdd_object *child,
1863                                          const struct lu_attr *attr,
1864                                          struct thandle *handle)
1865 {
1866         int rc;
1867         ENTRY;
1868
1869         LASSERT(attr->la_valid & (LA_MODE | LA_TYPE));
1870         if (!S_ISDIR(attr->la_mode))
1871                 RETURN(0);
1872
1873         rc = mdo_declare_index_insert(env, child, mdo2fid(child), S_IFDIR,
1874                                       dot, handle);
1875         if (rc != 0)
1876                 RETURN(rc);
1877
1878         rc = mdo_declare_ref_add(env, child, handle);
1879         if (rc != 0)
1880                 RETURN(rc);
1881
1882         rc = mdo_declare_index_insert(env, child, mdo2fid(parent), S_IFDIR,
1883                                       dotdot, handle);
1884
1885         RETURN(rc);
1886 }
1887
1888 static int mdd_object_initialize(const struct lu_env *env,
1889                                  const struct lu_fid *pfid,
1890                                  struct mdd_object *child,
1891                                  struct lu_attr *attr, struct thandle *handle,
1892                                  const struct md_op_spec *spec)
1893 {
1894         int rc = 0;
1895         ENTRY;
1896
1897         if (S_ISDIR(attr->la_mode)) {
1898                 /* Add "." and ".." for newly created dir */
1899                 mdo_ref_add(env, child, handle);
1900                 rc = __mdd_index_insert_only(env, child, mdo2fid(child),
1901                                              S_IFDIR, dot, handle);
1902                 if (rc == 0)
1903                         rc = __mdd_index_insert_only(env, child, pfid, S_IFDIR,
1904                                                      dotdot, handle);
1905                 if (rc != 0)
1906                         mdo_ref_del(env, child, handle);
1907         }
1908
1909         RETURN(rc);
1910 }
1911
1912 /**
1913  * This function checks whether it can create a file/dir under the
1914  * directory(@pobj). The directory(@pobj) is not being locked by
1915  * mdd lock.
1916  *
1917  * \param[in] env       execution environment
1918  * \param[in] pobj      the directory to create files
1919  * \param[in] pattr     the attributes of the directory
1920  * \param[in] lname     the name of the created file/dir
1921  * \param[in] cattr     the attributes of the file/dir
1922  * \param[in] spec      create specification
1923  *
1924  * \retval              = 0 it is allowed to create file/dir under
1925  *                      the directory
1926  * \retval              negative error not allowed to create file/dir
1927  *                      under the directory
1928  */
1929 static int mdd_create_sanity_check(const struct lu_env *env,
1930                                    struct md_object *pobj,
1931                                    const struct lu_attr *pattr,
1932                                    const struct lu_name *lname,
1933                                    struct lu_attr *cattr,
1934                                    struct md_op_spec *spec)
1935 {
1936         struct mdd_thread_info *info = mdd_env_info(env);
1937         struct lu_fid     *fid       = &info->mti_fid;
1938         struct mdd_object *obj       = md2mdd_obj(pobj);
1939         struct mdd_device *m         = mdo2mdd(pobj);
1940         bool            check_perm = true;
1941         int rc;
1942         ENTRY;
1943
1944         /* EEXIST check */
1945         if (mdd_is_dead_obj(obj))
1946                 RETURN(-ENOENT);
1947
1948         /*
1949          * In some cases this lookup is not needed - we know before if name
1950          * exists or not because MDT performs lookup for it.
1951          * name length check is done in lookup.
1952          */
1953         if (spec->sp_cr_lookup) {
1954                 /*
1955                  * Check if the name already exist, though it will be checked in
1956                  * _index_insert also, for avoiding rolling back if exists
1957                  * _index_insert.
1958                  */
1959                 rc = __mdd_lookup(env, pobj, pattr, lname, fid,
1960                                   MAY_WRITE | MAY_EXEC);
1961                 if (rc != -ENOENT)
1962                         RETURN(rc ? : -EEXIST);
1963
1964                 /* Permission is already being checked in mdd_lookup */
1965                 check_perm = false;
1966         }
1967
1968         rc = mdd_may_create(env, obj, pattr, NULL, check_perm);
1969         if (rc != 0)
1970                 RETURN(rc);
1971
1972         /* sgid check */
1973         if (pattr->la_mode & S_ISGID) {
1974                 cattr->la_gid = pattr->la_gid;
1975                 if (S_ISDIR(cattr->la_mode)) {
1976                         cattr->la_mode |= S_ISGID;
1977                         cattr->la_valid |= LA_MODE;
1978                 }
1979         }
1980
1981         rc = mdd_name_check(m, lname);
1982         if (rc < 0)
1983                 RETURN(rc);
1984
1985         switch (cattr->la_mode & S_IFMT) {
1986         case S_IFLNK: {
1987                 unsigned int symlen = strlen(spec->u.sp_symname) + 1;
1988
1989                 if (symlen > m->mdd_dt_conf.ddp_symlink_max)
1990                         RETURN(-ENAMETOOLONG);
1991                 else
1992                         RETURN(0);
1993         }
1994         case S_IFDIR:
1995         case S_IFREG:
1996         case S_IFCHR:
1997         case S_IFBLK:
1998         case S_IFIFO:
1999         case S_IFSOCK:
2000                 rc = 0;
2001                 break;
2002         default:
2003                 rc = -EINVAL;
2004                 break;
2005         }
2006         RETURN(rc);
2007 }
2008
2009 static int mdd_declare_object_create(const struct lu_env *env,
2010                                      struct mdd_device *mdd,
2011                                      struct mdd_object *p, struct mdd_object *c,
2012                                      struct lu_attr *attr,
2013                                      struct thandle *handle,
2014                                      const struct md_op_spec *spec,
2015                                      struct lu_buf *def_acl_buf,
2016                                      struct lu_buf *acl_buf,
2017                                      struct dt_allocation_hint *hint)
2018 {
2019         int rc;
2020
2021         rc = mdd_declare_object_create_internal(env, p, c, attr, handle, spec,
2022                                                 hint);
2023         if (rc)
2024                 GOTO(out, rc);
2025
2026 #ifdef CONFIG_FS_POSIX_ACL
2027         if (def_acl_buf->lb_len > 0 && S_ISDIR(attr->la_mode)) {
2028                 /* if dir, then can inherit default ACl */
2029                 rc = mdo_declare_xattr_set(env, c, def_acl_buf,
2030                                            XATTR_NAME_ACL_DEFAULT,
2031                                            0, handle);
2032                 if (rc)
2033                         GOTO(out, rc);
2034         }
2035
2036         if (acl_buf->lb_len > 0) {
2037                 rc = mdo_declare_attr_set(env, c, attr, handle);
2038                 if (rc)
2039                         GOTO(out, rc);
2040
2041                 rc = mdo_declare_xattr_set(env, c, acl_buf,
2042                                            XATTR_NAME_ACL_ACCESS, 0, handle);
2043                 if (rc)
2044                         GOTO(out, rc);
2045         }
2046 #endif
2047         rc = mdd_declare_object_initialize(env, p, c, attr, handle);
2048         if (rc)
2049                 GOTO(out, rc);
2050
2051         /* replay case, create LOV EA from client data */
2052         if (spec->no_create ||
2053             (spec->sp_cr_flags & MDS_OPEN_HAS_EA && S_ISREG(attr->la_mode))) {
2054                 const struct lu_buf *buf;
2055
2056                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
2057                                         spec->u.sp_ea.eadatalen);
2058                 rc = mdo_declare_xattr_set(env, c, buf, XATTR_NAME_LOV, 0,
2059                                            handle);
2060                 if (rc)
2061                         GOTO(out, rc);
2062         }
2063
2064         if (S_ISLNK(attr->la_mode)) {
2065                 const char *target_name = spec->u.sp_symname;
2066                 int sym_len = strlen(target_name);
2067                 const struct lu_buf *buf;
2068
2069                 buf = mdd_buf_get_const(env, target_name, sym_len);
2070                 rc = dt_declare_record_write(env, mdd_object_child(c),
2071                                              buf, 0, handle);
2072                 if (rc)
2073                         GOTO(out, rc);
2074         }
2075 out:
2076         return rc;
2077 }
2078
2079 static int mdd_declare_create(const struct lu_env *env, struct mdd_device *mdd,
2080                               struct mdd_object *p, struct mdd_object *c,
2081                               const struct lu_name *name,
2082                               struct lu_attr *attr,
2083                               struct thandle *handle,
2084                               const struct md_op_spec *spec,
2085                               struct linkea_data *ldata,
2086                               struct lu_buf *def_acl_buf,
2087                               struct lu_buf *acl_buf,
2088                               struct dt_allocation_hint *hint)
2089 {
2090         int rc;
2091
2092         rc = mdd_declare_object_create(env, mdd, p, c, attr, handle, spec,
2093                                        def_acl_buf, acl_buf, hint);
2094         if (rc)
2095                 GOTO(out, rc);
2096
2097         if (S_ISDIR(attr->la_mode)) {
2098                 rc = mdo_declare_ref_add(env, p, handle);
2099                 if (rc)
2100                         GOTO(out, rc);
2101         }
2102
2103         if (unlikely(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
2104                 rc = orph_declare_index_insert(env, c, attr->la_mode, handle);
2105                 if (rc)
2106                         GOTO(out, rc);
2107         } else {
2108                 struct lu_attr  *la = &mdd_env_info(env)->mti_la_for_fix;
2109
2110                 rc = mdo_declare_index_insert(env, p, mdo2fid(c), attr->la_mode,
2111                                               name->ln_name, handle);
2112                 if (rc != 0)
2113                         return rc;
2114
2115                 rc = mdd_declare_links_add(env, c, handle, ldata, MLAO_IGNORE);
2116                 if (rc)
2117                         return rc;
2118
2119                 *la = *attr;
2120                 la->la_valid = LA_CTIME | LA_MTIME;
2121                 rc = mdo_declare_attr_set(env, p, la, handle);
2122                 if (rc)
2123                         return rc;
2124
2125                 rc = mdd_declare_changelog_store(env, mdd, name, NULL, handle);
2126                 if (rc)
2127                         return rc;
2128         }
2129 out:
2130         return rc;
2131 }
2132
2133 static int mdd_acl_init(const struct lu_env *env, struct mdd_object *pobj,
2134                         struct lu_attr *la, struct lu_buf *def_acl_buf,
2135                         struct lu_buf *acl_buf)
2136 {
2137         int     rc;
2138         ENTRY;
2139
2140         if (S_ISLNK(la->la_mode)) {
2141                 acl_buf->lb_len = 0;
2142                 def_acl_buf->lb_len = 0;
2143                 RETURN(0);
2144         }
2145
2146         mdd_read_lock(env, pobj, MOR_TGT_PARENT);
2147         rc = mdo_xattr_get(env, pobj, def_acl_buf,
2148                            XATTR_NAME_ACL_DEFAULT);
2149         mdd_read_unlock(env, pobj);
2150         if (rc > 0) {
2151                 /* If there are default ACL, fix mode/ACL by default ACL */
2152                 def_acl_buf->lb_len = rc;
2153                 LASSERT(def_acl_buf->lb_len <= acl_buf->lb_len);
2154                 memcpy(acl_buf->lb_buf, def_acl_buf->lb_buf, rc);
2155                 acl_buf->lb_len = rc;
2156                 rc = __mdd_fix_mode_acl(env, acl_buf, &la->la_mode);
2157                 if (rc < 0)
2158                         RETURN(rc);
2159         } else if (rc == -ENODATA || rc == -EOPNOTSUPP) {
2160                 /* If there are no default ACL, fix mode by mask */
2161                 struct lu_ucred *uc = lu_ucred(env);
2162
2163                 /* The create triggered by MDT internal events, such as
2164                  * LFSCK reset, will not contain valid "uc". */
2165                 if (unlikely(uc != NULL))
2166                         la->la_mode &= ~uc->uc_umask;
2167                 rc = 0;
2168                 acl_buf->lb_len = 0;
2169                 def_acl_buf->lb_len = 0;
2170         }
2171
2172         RETURN(rc);
2173 }
2174
2175 /**
2176  * Create a metadata object and initialize it, set acl, xattr.
2177  **/
2178 static int mdd_object_create(const struct lu_env *env, struct mdd_object *pobj,
2179                              struct mdd_object *son, struct lu_attr *attr,
2180                              struct md_op_spec *spec, struct lu_buf *acl_buf,
2181                              struct lu_buf *def_acl_buf,
2182                              struct dt_allocation_hint *hint,
2183                              struct thandle *handle)
2184 {
2185         int                     rc;
2186
2187         mdd_write_lock(env, son, MOR_TGT_CHILD);
2188         rc = mdd_object_create_internal(env, NULL, son, attr, handle, spec,
2189                                         hint);
2190         if (rc)
2191                 GOTO(unlock, rc);
2192
2193         /* Note: In DNE phase I, for striped dir, though sub-stripes will be
2194          * created in declare phase, they also needs to be added to master
2195          * object as sub-directory entry. So it has to initialize the master
2196          * object, then set dir striped EA.(in mdo_xattr_set) */
2197         rc = mdd_object_initialize(env, mdo2fid(pobj), son, attr, handle,
2198                                    spec);
2199         if (rc != 0)
2200                 GOTO(err_destroy, rc);
2201
2202         /*
2203          * in case of replay we just set LOVEA provided by the client
2204          * XXX: I think it would be interesting to try "old" way where
2205          *      MDT calls this xattr_set(LOV) in a different transaction.
2206          *      probably this way we code can be made better.
2207          */
2208
2209         /* During creation, there are only a few cases we need do xattr_set to
2210          * create stripes.
2211          * 1. regular file: see comments above.
2212          * 2. dir: inherit default striping or pool settings from parent.
2213          * 3. create striped directory with provided stripeEA.
2214          * 4. create striped directory because inherit default layout from the
2215          * parent.
2216          */
2217         if (spec->no_create ||
2218             (S_ISREG(attr->la_mode) && spec->sp_cr_flags & MDS_OPEN_HAS_EA) ||
2219             S_ISDIR(attr->la_mode)) {
2220                 const struct lu_buf *buf;
2221
2222                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
2223                                         spec->u.sp_ea.eadatalen);
2224                 rc = mdo_xattr_set(env, son, buf,
2225                                    S_ISDIR(attr->la_mode) ? XATTR_NAME_LMV :
2226                                                             XATTR_NAME_LOV, 0,
2227                                    handle);
2228                 if (rc != 0)
2229                         GOTO(err_destroy, rc);
2230         }
2231
2232 #ifdef CONFIG_FS_POSIX_ACL
2233         if (def_acl_buf != NULL && def_acl_buf->lb_len > 0 &&
2234             S_ISDIR(attr->la_mode)) {
2235                 /* set default acl */
2236                 rc = mdo_xattr_set(env, son, def_acl_buf,
2237                                    XATTR_NAME_ACL_DEFAULT, 0,
2238                                    handle);
2239                 if (rc)
2240                         GOTO(err_destroy, rc);
2241         }
2242         /* set its own acl */
2243         if (acl_buf != NULL && acl_buf->lb_len > 0) {
2244                 rc = mdo_xattr_set(env, son, acl_buf,
2245                                    XATTR_NAME_ACL_ACCESS,
2246                                    0, handle);
2247                 if (rc)
2248                         GOTO(err_destroy, rc);
2249         }
2250 #endif
2251
2252         if (S_ISLNK(attr->la_mode)) {
2253                 struct lu_ucred  *uc = lu_ucred_assert(env);
2254                 struct dt_object *dt = mdd_object_child(son);
2255                 const char *target_name = spec->u.sp_symname;
2256                 int sym_len = strlen(target_name);
2257                 const struct lu_buf *buf;
2258                 loff_t pos = 0;
2259
2260                 buf = mdd_buf_get_const(env, target_name, sym_len);
2261                 rc = dt->do_body_ops->dbo_write(env, dt, buf, &pos, handle,
2262                                                 uc->uc_cap &
2263                                                 CFS_CAP_SYS_RESOURCE_MASK);
2264
2265                 if (rc == sym_len)
2266                         rc = 0;
2267                 else
2268                         GOTO(err_initlized, rc = -EFAULT);
2269         }
2270
2271 err_initlized:
2272         if (unlikely(rc != 0)) {
2273                 int rc2;
2274                 if (S_ISDIR(attr->la_mode)) {
2275                         /* Drop the reference, no need to delete "."/"..",
2276                          * because the object to be destroied directly. */
2277                         rc2 = mdo_ref_del(env, son, handle);
2278                         if (rc2 != 0)
2279                                 GOTO(unlock, rc);
2280                 }
2281                 rc2 = mdo_ref_del(env, son, handle);
2282                 if (rc2 != 0)
2283                         GOTO(unlock, rc);
2284 err_destroy:
2285                 mdo_destroy(env, son, handle);
2286         }
2287 unlock:
2288         mdd_write_unlock(env, son);
2289         RETURN(rc);
2290 }
2291
2292 static int mdd_index_delete(const struct lu_env *env,
2293                             struct mdd_object *mdd_pobj,
2294                             struct lu_attr *cattr,
2295                             const struct lu_name *lname)
2296 {
2297         struct mdd_device *mdd = mdo2mdd(&mdd_pobj->mod_obj);
2298         struct thandle *handle;
2299         int rc;
2300         ENTRY;
2301
2302         handle = mdd_trans_create(env, mdd);
2303         if (IS_ERR(handle))
2304                 RETURN(PTR_ERR(handle));
2305
2306         rc = mdo_declare_index_delete(env, mdd_pobj, lname->ln_name,
2307                                       handle);
2308         if (rc != 0)
2309                 GOTO(stop, rc);
2310
2311         if (S_ISDIR(cattr->la_mode)) {
2312                 rc = mdo_declare_ref_del(env, mdd_pobj, handle);
2313                 if (rc != 0)
2314                         GOTO(stop, rc);
2315         }
2316
2317         /* Since this will only be used in the error handler path,
2318          * Let's set the thandle to be local and not mess the transno */
2319         handle->th_local = 1;
2320         rc = mdd_trans_start(env, mdd, handle);
2321         if (rc)
2322                 GOTO(stop, rc);
2323
2324         rc = __mdd_index_delete(env, mdd_pobj, lname->ln_name,
2325                                 S_ISDIR(cattr->la_mode), handle);
2326         if (rc)
2327                 GOTO(stop, rc);
2328 stop:
2329         mdd_trans_stop(env, mdd, rc, handle);
2330         RETURN(rc);
2331 }
2332
2333 /*
2334  * Create object and insert it into namespace.
2335  */
2336 static int mdd_create(const struct lu_env *env, struct md_object *pobj,
2337                       const struct lu_name *lname, struct md_object *child,
2338                       struct md_op_spec *spec, struct md_attr* ma)
2339 {
2340         struct mdd_thread_info  *info = mdd_env_info(env);
2341         struct lu_attr          *la = &info->mti_la_for_fix;
2342         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
2343         struct mdd_object       *son = md2mdd_obj(child);
2344         struct mdd_device       *mdd = mdo2mdd(pobj);
2345         struct lu_attr          *attr = &ma->ma_attr;
2346         struct thandle          *handle;
2347         struct lu_attr          *pattr = &info->mti_pattr;
2348         struct lu_buf           acl_buf;
2349         struct lu_buf           def_acl_buf;
2350         struct linkea_data      *ldata = &info->mti_link_data;
2351         const char              *name = lname->ln_name;
2352         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
2353         int                      rc;
2354         int                      rc2;
2355         ENTRY;
2356
2357         /*
2358          * Two operations have to be performed:
2359          *
2360          *  - an allocation of a new object (->do_create()), and
2361          *
2362          *  - an insertion into a parent index (->dio_insert()).
2363          *
2364          * Due to locking, operation order is not important, when both are
2365          * successful, *but* error handling cases are quite different:
2366          *
2367          *  - if insertion is done first, and following object creation fails,
2368          *  insertion has to be rolled back, but this operation might fail
2369          *  also leaving us with dangling index entry.
2370          *
2371          *  - if creation is done first, is has to be undone if insertion
2372          *  fails, leaving us with leaked space, which is neither good, nor
2373          *  fatal.
2374          *
2375          * It seems that creation-first is simplest solution, but it is
2376          * sub-optimal in the frequent
2377          *
2378          *         $ mkdir foo
2379          *         $ mkdir foo
2380          *
2381          * case, because second mkdir is bound to create object, only to
2382          * destroy it immediately.
2383          *
2384          * To avoid this follow local file systems that do double lookup:
2385          *
2386          *     0. lookup -> -EEXIST (mdd_create_sanity_check())
2387          *
2388          *     1. create            (mdd_object_create_internal())
2389          *
2390          *     2. insert            (__mdd_index_insert(), lookup again)
2391          */
2392
2393         rc = mdd_la_get(env, mdd_pobj, pattr);
2394         if (rc != 0)
2395                 RETURN(rc);
2396
2397         /* Sanity checks before big job. */
2398         rc = mdd_create_sanity_check(env, pobj, pattr, lname, attr, spec);
2399         if (rc)
2400                 RETURN(rc);
2401
2402         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DQACQ_NET))
2403                 GOTO(out_free, rc = -EINPROGRESS);
2404
2405         handle = mdd_trans_create(env, mdd);
2406         if (IS_ERR(handle))
2407                 GOTO(out_free, rc = PTR_ERR(handle));
2408
2409         acl_buf.lb_buf = info->mti_xattr_buf;
2410         acl_buf.lb_len = sizeof(info->mti_xattr_buf);
2411         def_acl_buf.lb_buf = info->mti_key;
2412         def_acl_buf.lb_len = sizeof(info->mti_key);
2413         rc = mdd_acl_init(env, mdd_pobj, attr, &def_acl_buf, &acl_buf);
2414         if (rc < 0)
2415                 GOTO(out_stop, rc);
2416
2417         mdd_object_make_hint(env, mdd_pobj, son, attr, spec, hint);
2418
2419         memset(ldata, 0, sizeof(*ldata));
2420         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
2421                 struct lu_fid tfid = *mdd_object_fid(mdd_pobj);
2422
2423                 tfid.f_oid--;
2424                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2425                                         &tfid, lname, 1, 0, ldata);
2426         } else {
2427                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2428                                         mdd_object_fid(mdd_pobj),
2429                                         lname, 1, 0, ldata);
2430         }
2431
2432         rc = mdd_declare_create(env, mdd, mdd_pobj, son, lname, attr,
2433                                 handle, spec, ldata, &def_acl_buf, &acl_buf,
2434                                 hint);
2435         if (rc)
2436                 GOTO(out_stop, rc);
2437
2438         rc = mdd_trans_start(env, mdd, handle);
2439         if (rc)
2440                 GOTO(out_stop, rc);
2441
2442         rc = mdd_object_create(env, mdd_pobj, son, attr, spec, &acl_buf,
2443                                &def_acl_buf, hint, handle);
2444         if (rc != 0)
2445                 GOTO(out_stop, rc);
2446
2447         if (unlikely(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
2448                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2449                 rc = __mdd_orphan_add(env, son, handle);
2450                 GOTO(out_volatile, rc);
2451         } else {
2452                 rc = __mdd_index_insert(env, mdd_pobj, mdo2fid(son),
2453                                         attr->la_mode, name, handle);
2454                 if (rc != 0)
2455                         GOTO(err_created, rc);
2456
2457                 mdd_links_add(env, son, mdo2fid(mdd_pobj), lname, handle,
2458                               ldata, 1);
2459
2460                 /* update parent directory mtime/ctime */
2461                 *la = *attr;
2462                 la->la_valid = LA_CTIME | LA_MTIME;
2463                 rc = mdd_update_time(env, mdd_pobj, pattr, la, handle);
2464                 if (rc)
2465                         GOTO(err_insert, rc);
2466         }
2467
2468         EXIT;
2469 err_insert:
2470         if (rc != 0) {
2471                 int rc2;
2472
2473                 if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
2474                         rc2 = __mdd_orphan_del(env, son, handle);
2475                 else
2476                         rc2 = __mdd_index_delete(env, mdd_pobj, name,
2477                                                  S_ISDIR(attr->la_mode),
2478                                                  handle);
2479                 if (rc2 != 0)
2480                         goto out_stop;
2481
2482 err_created:
2483                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2484                 if (S_ISDIR(attr->la_mode)) {
2485                         /* Drop the reference, no need to delete "."/"..",
2486                          * because the object is to be destroyed directly. */
2487                         rc2 = mdo_ref_del(env, son, handle);
2488                         if (rc2 != 0) {
2489                                 mdd_write_unlock(env, son);
2490                                 goto out_stop;
2491                         }
2492                 }
2493 out_volatile:
2494                 /* For volatile files drop one link immediately, since there is
2495                  * no filename in the namespace, and save any error returned. */
2496                 rc2 = mdo_ref_del(env, son, handle);
2497                 if (rc2 != 0) {
2498                         mdd_write_unlock(env, son);
2499                         if (unlikely(rc == 0))
2500                                 rc = rc2;
2501                         goto out_stop;
2502                 }
2503
2504                 /* Don't destroy the volatile object on success */
2505                 if (likely(rc != 0))
2506                         mdo_destroy(env, son, handle);
2507                 mdd_write_unlock(env, son);
2508         }
2509
2510         if (rc == 0 && fid_is_namespace_visible(mdo2fid(son)) &&
2511             likely((spec->sp_cr_flags & MDS_OPEN_VOLATILE) == 0))
2512                 rc = mdd_changelog_ns_store(env, mdd,
2513                                 S_ISDIR(attr->la_mode) ? CL_MKDIR :
2514                                 S_ISREG(attr->la_mode) ? CL_CREATE :
2515                                 S_ISLNK(attr->la_mode) ? CL_SOFTLINK : CL_MKNOD,
2516                                 0, son, mdo2fid(mdd_pobj), NULL, NULL, lname,
2517                                 NULL, handle);
2518 out_stop:
2519         rc2 = mdd_trans_stop(env, mdd, rc, handle);
2520         if (rc == 0) {
2521                 /* If creation fails, it is most likely due to the remote update
2522                  * failure, because local transaction will mostly succeed at
2523                  * this stage. There is no easy way to rollback all of previous
2524                  * updates, so let's remove the object from namespace, and
2525                  * LFSCK should handle the orphan object. */
2526                 if (rc2 < 0 && !mdd_object_remote(mdd_pobj))
2527                         mdd_index_delete(env, mdd_pobj, attr, lname);
2528                 rc = rc2;
2529         }
2530 out_free:
2531         if (is_vmalloc_addr(ldata->ld_buf))
2532                 /* if we vmalloced a large buffer drop it */
2533                 lu_buf_free(ldata->ld_buf);
2534
2535         /* The child object shouldn't be cached anymore */
2536         if (rc)
2537                 set_bit(LU_OBJECT_HEARD_BANSHEE,
2538                         &child->mo_lu.lo_header->loh_flags);
2539         return rc;
2540 }
2541
2542 /*
2543  * Get locks on parents in proper order
2544  * RETURN: < 0 - error, rename_order if successful
2545  */
2546 enum rename_order {
2547         MDD_RN_SAME,
2548         MDD_RN_SRCTGT,
2549         MDD_RN_TGTSRC
2550 };
2551
2552 static int mdd_rename_order(const struct lu_env *env,
2553                             struct mdd_device *mdd,
2554                             struct mdd_object *src_pobj,
2555                             const struct lu_attr *pattr,
2556                             struct mdd_object *tgt_pobj)
2557 {
2558         /* order of locking, 1 - tgt-src, 0 - src-tgt*/
2559         int rc;
2560         ENTRY;
2561
2562         if (src_pobj == tgt_pobj)
2563                 RETURN(MDD_RN_SAME);
2564
2565         /* compared the parent child relationship of src_p&tgt_p */
2566         if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(src_pobj))){
2567                 rc = MDD_RN_SRCTGT;
2568         } else if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(tgt_pobj))) {
2569                 rc = MDD_RN_TGTSRC;
2570         } else {
2571                 rc = mdd_is_parent(env, mdd, src_pobj, pattr, mdo2fid(tgt_pobj),
2572                                    NULL);
2573                 if (rc == -EREMOTE)
2574                         rc = 0;
2575
2576                 if (rc == 1)
2577                         rc = MDD_RN_TGTSRC;
2578                 else if (rc == 0)
2579                         rc = MDD_RN_SRCTGT;
2580         }
2581
2582         RETURN(rc);
2583 }
2584
2585 /* has not mdd_write{read}_lock on any obj yet. */
2586 static int mdd_rename_sanity_check(const struct lu_env *env,
2587                                    struct mdd_object *src_pobj,
2588                                    const struct lu_attr *pattr,
2589                                    struct mdd_object *tgt_pobj,
2590                                    const struct lu_attr *tpattr,
2591                                    struct mdd_object *sobj,
2592                                    const struct lu_attr *cattr,
2593                                    struct mdd_object *tobj,
2594                                    const struct lu_attr *tattr)
2595 {
2596         int rc = 0;
2597         ENTRY;
2598
2599         /* XXX: when get here, sobj must NOT be NULL,
2600          * the other case has been processed in cld_rename
2601          * before mdd_rename and enable MDS_PERM_BYPASS. */
2602         LASSERT(sobj);
2603
2604         rc = mdd_may_delete(env, src_pobj, pattr, sobj, cattr, NULL, 1, 0);
2605         if (rc)
2606                 RETURN(rc);
2607
2608         /* XXX: when get here, "tobj == NULL" means tobj must
2609          * NOT exist (neither on remote MDS, such case has been
2610          * processed in cld_rename before mdd_rename and enable
2611          * MDS_PERM_BYPASS).
2612          * So check may_create, but not check may_unlink. */
2613         if (tobj == NULL)
2614                 rc = mdd_may_create(env, tgt_pobj, tpattr, NULL,
2615                                     (src_pobj != tgt_pobj));
2616         else
2617                 rc = mdd_may_delete(env, tgt_pobj, tpattr, tobj, tattr, cattr,
2618                                     (src_pobj != tgt_pobj), 1);
2619
2620         if (!rc && !tobj && (src_pobj != tgt_pobj) && S_ISDIR(cattr->la_mode))
2621                 rc = __mdd_may_link(env, tgt_pobj, tpattr);
2622
2623         RETURN(rc);
2624 }
2625
2626 static int mdd_declare_rename(const struct lu_env *env,
2627                               struct mdd_device *mdd,
2628                               struct mdd_object *mdd_spobj,
2629                               struct mdd_object *mdd_tpobj,
2630                               struct mdd_object *mdd_sobj,
2631                               struct mdd_object *mdd_tobj,
2632                               const struct lu_name *sname,
2633                               const struct lu_name *tname,
2634                               struct md_attr *ma,
2635                               struct linkea_data *ldata,
2636                               struct thandle *handle)
2637 {
2638         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2639         int rc;
2640
2641         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2642         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2643
2644         LASSERT(mdd_spobj);
2645         LASSERT(mdd_tpobj);
2646         LASSERT(mdd_sobj);
2647
2648         /* name from source dir */
2649         rc = mdo_declare_index_delete(env, mdd_spobj, sname->ln_name, handle);
2650         if (rc)
2651                 return rc;
2652
2653         /* .. from source child */
2654         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
2655                 /* source child can be directory,
2656                  * counted by source dir's nlink */
2657                 rc = mdo_declare_ref_del(env, mdd_spobj, handle);
2658                 if (rc)
2659                         return rc;
2660                 if (mdd_spobj != mdd_tpobj) {
2661                         rc = mdo_declare_index_delete(env, mdd_sobj, dotdot,
2662                                                       handle);
2663                         if (rc != 0)
2664                                 return rc;
2665
2666                         rc = mdo_declare_index_insert(env, mdd_sobj,
2667                                                       mdo2fid(mdd_tpobj),
2668                                                       S_IFDIR, dotdot, handle);
2669                         if (rc != 0)
2670                                 return rc;
2671                 }
2672
2673                 /* new target child can be directory,
2674                  * counted by target dir's nlink */
2675                 rc = mdo_declare_ref_add(env, mdd_tpobj, handle);
2676                 if (rc != 0)
2677                         return rc;
2678         }
2679
2680         la->la_valid = LA_CTIME | LA_MTIME;
2681         rc = mdo_declare_attr_set(env, mdd_spobj, la, handle);
2682         if (rc != 0)
2683                 return rc;
2684
2685         rc = mdo_declare_attr_set(env, mdd_tpobj, la, handle);
2686         if (rc != 0)
2687                 return rc;
2688
2689         la->la_valid = LA_CTIME;
2690         rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
2691         if (rc)
2692                 return rc;
2693
2694         rc = mdd_declare_links_add(env, mdd_sobj, handle, ldata,
2695                 S_ISREG(mdd_object_type(mdd_sobj)) ? MLAO_CHECK : MLAO_IGNORE);
2696         if (rc)
2697                 return rc;
2698
2699         /* new name */
2700         rc = mdo_declare_index_insert(env, mdd_tpobj, mdo2fid(mdd_sobj),
2701                                       mdd_object_type(mdd_sobj),
2702                                       tname->ln_name, handle);
2703         if (rc != 0)
2704                 return rc;
2705
2706         if (mdd_tobj && mdd_object_exists(mdd_tobj)) {
2707                 /* delete target child in target parent directory */
2708                 rc = mdo_declare_index_delete(env, mdd_tpobj, tname->ln_name,
2709                                               handle);
2710                 if (rc)
2711                         return rc;
2712
2713                 rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2714                 if (rc)
2715                         return rc;
2716
2717                 if (S_ISDIR(mdd_object_type(mdd_tobj))) {
2718                         /* target child can be directory,
2719                          * delete "." reference in target child directory */
2720                         rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2721                         if (rc)
2722                                 return rc;
2723
2724                         /* delete ".." reference in target parent directory */
2725                         rc = mdo_declare_ref_del(env, mdd_tpobj, handle);
2726                         if (rc)
2727                                 return rc;
2728                 }
2729
2730                 la->la_valid = LA_CTIME;
2731                 rc = mdo_declare_attr_set(env, mdd_tobj, la, handle);
2732                 if (rc)
2733                         return rc;
2734
2735                 rc = mdd_declare_finish_unlink(env, mdd_tobj, handle);
2736                 if (rc)
2737                         return rc;
2738         }
2739
2740         rc = mdd_declare_changelog_store(env, mdd, tname, sname, handle);
2741         if (rc)
2742                 return rc;
2743
2744         return rc;
2745 }
2746
2747 /* src object can be remote that is why we use only fid and type of object */
2748 static int mdd_rename(const struct lu_env *env,
2749                       struct md_object *src_pobj, struct md_object *tgt_pobj,
2750                       const struct lu_fid *lf, const struct lu_name *lsname,
2751                       struct md_object *tobj, const struct lu_name *ltname,
2752                       struct md_attr *ma)
2753 {
2754         const char *sname = lsname->ln_name;
2755         const char *tname = ltname->ln_name;
2756         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2757         struct mdd_object *mdd_spobj = md2mdd_obj(src_pobj); /* source parent */
2758         struct mdd_object *mdd_tpobj = md2mdd_obj(tgt_pobj);
2759         struct mdd_device *mdd = mdo2mdd(src_pobj);
2760         struct mdd_object *mdd_sobj = NULL;                  /* source object */
2761         struct mdd_object *mdd_tobj = NULL;
2762         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
2763         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
2764         struct lu_attr *tattr = MDD_ENV_VAR(env, tattr);
2765         struct lu_attr *tpattr = MDD_ENV_VAR(env, tpattr);
2766         struct thandle *handle;
2767         struct linkea_data  *ldata = &mdd_env_info(env)->mti_link_data;
2768         const struct lu_fid *tpobj_fid = mdo2fid(mdd_tpobj);
2769         const struct lu_fid *spobj_fid = mdo2fid(mdd_spobj);
2770         bool is_dir;
2771         bool tobj_ref = 0;
2772         bool tobj_locked = 0;
2773         unsigned cl_flags = 0;
2774         int rc, rc2;
2775         ENTRY;
2776
2777         if (tobj)
2778                 mdd_tobj = md2mdd_obj(tobj);
2779
2780         mdd_sobj = mdd_object_find(env, mdd, lf);
2781         if (IS_ERR(mdd_sobj))
2782                 RETURN(PTR_ERR(mdd_sobj));
2783
2784         rc = mdd_la_get(env, mdd_sobj, cattr);
2785         if (rc)
2786                 GOTO(out_pending, rc);
2787
2788         rc = mdd_la_get(env, mdd_spobj, pattr);
2789         if (rc)
2790                 GOTO(out_pending, rc);
2791
2792         if (mdd_tobj) {
2793                 rc = mdd_la_get(env, mdd_tobj, tattr);
2794                 if (rc)
2795                         GOTO(out_pending, rc);
2796                 /* search for an existing archive.
2797                  * we should check ahead as the object
2798                  * can be destroyed in this transaction */
2799                 if (mdd_hsm_archive_exists(env, mdd_tobj, ma))
2800                         cl_flags |= CLF_RENAME_LAST_EXISTS;
2801         }
2802
2803         rc = mdd_la_get(env, mdd_tpobj, tpattr);
2804         if (rc)
2805                 GOTO(out_pending, rc);
2806
2807         rc = mdd_rename_sanity_check(env, mdd_spobj, pattr, mdd_tpobj, tpattr,
2808                                      mdd_sobj, cattr, mdd_tobj, tattr);
2809         if (rc)
2810                 GOTO(out_pending, rc);
2811
2812         rc = mdd_name_check(mdd, ltname);
2813         if (rc < 0)
2814                 GOTO(out_pending, rc);
2815
2816         /* FIXME: Should consider tobj and sobj too in rename_lock. */
2817         rc = mdd_rename_order(env, mdd, mdd_spobj, pattr, mdd_tpobj);
2818         if (rc < 0)
2819                 GOTO(out_pending, rc);
2820
2821         handle = mdd_trans_create(env, mdd);
2822         if (IS_ERR(handle))
2823                 GOTO(out_pending, rc = PTR_ERR(handle));
2824
2825         memset(ldata, 0, sizeof(*ldata));
2826         mdd_linkea_prepare(env, mdd_sobj, mdd_object_fid(mdd_spobj), lsname,
2827                            mdd_object_fid(mdd_tpobj), ltname, 1, 0, ldata);
2828         rc = mdd_declare_rename(env, mdd, mdd_spobj, mdd_tpobj, mdd_sobj,
2829                                 mdd_tobj, lsname, ltname, ma, ldata, handle);
2830         if (rc)
2831                 GOTO(stop, rc);
2832
2833         rc = mdd_trans_start(env, mdd, handle);
2834         if (rc)
2835                 GOTO(stop, rc);
2836
2837         is_dir = S_ISDIR(cattr->la_mode);
2838
2839         /* Remove source name from source directory */
2840         rc = __mdd_index_delete(env, mdd_spobj, sname, is_dir, handle);
2841         if (rc != 0)
2842                 GOTO(stop, rc);
2843
2844         /* "mv dir1 dir2" needs "dir1/.." link update */
2845         if (is_dir && !lu_fid_eq(spobj_fid, tpobj_fid)) {
2846                 rc = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
2847                 if (rc != 0)
2848                         GOTO(fixup_spobj2, rc);
2849
2850                 rc = __mdd_index_insert_only(env, mdd_sobj, tpobj_fid, S_IFDIR,
2851                                              dotdot, handle);
2852                 if (rc != 0)
2853                         GOTO(fixup_spobj, rc);
2854         }
2855
2856         if (mdd_tobj != NULL && mdd_object_exists(mdd_tobj)) {
2857                 rc = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
2858                 if (rc != 0)
2859                         /* tname might been renamed to something else */
2860                         GOTO(fixup_spobj, rc);
2861         }
2862
2863         /* Insert new fid with target name into target dir */
2864         rc = __mdd_index_insert(env, mdd_tpobj, lf, cattr->la_mode,
2865                                 tname, handle);
2866         if (rc != 0)
2867                 GOTO(fixup_tpobj, rc);
2868
2869         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2870         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2871
2872         /* XXX: mdd_sobj must be local one if it is NOT NULL. */
2873         la->la_valid = LA_CTIME;
2874         rc = mdd_update_time(env, mdd_sobj, cattr, la, handle);
2875         if (rc)
2876                 GOTO(fixup_tpobj, rc);
2877
2878         /* Update the linkEA for the source object */
2879         mdd_write_lock(env, mdd_sobj, MOR_SRC_CHILD);
2880         rc = mdd_links_rename(env, mdd_sobj, mdo2fid(mdd_spobj), lsname,
2881                               mdo2fid(mdd_tpobj), ltname, handle, ldata,
2882                               0, 0);
2883         if (rc == -ENOENT)
2884                 /* Old files might not have EA entry */
2885                 mdd_links_add(env, mdd_sobj, mdo2fid(mdd_spobj),
2886                               lsname, handle, NULL, 0);
2887         mdd_write_unlock(env, mdd_sobj);
2888         /* We don't fail the transaction if the link ea can't be
2889            updated -- fid2path will use alternate lookup method. */
2890         rc = 0;
2891
2892         /* Remove old target object
2893          * For tobj is remote case cmm layer has processed
2894          * and set tobj to NULL then. So when tobj is NOT NULL,
2895          * it must be local one.
2896          */
2897         if (tobj && mdd_object_exists(mdd_tobj)) {
2898                 mdd_write_lock(env, mdd_tobj, MOR_TGT_CHILD);
2899                 tobj_locked = 1;
2900                 if (mdd_is_dead_obj(mdd_tobj)) {
2901                         /* shld not be dead, something is wrong */
2902                         CERROR("tobj is dead, something is wrong\n");
2903                         rc = -EINVAL;
2904                         goto cleanup;
2905                 }
2906                 mdo_ref_del(env, mdd_tobj, handle);
2907
2908                 /* Remove dot reference. */
2909                 if (S_ISDIR(tattr->la_mode))
2910                         mdo_ref_del(env, mdd_tobj, handle);
2911                 tobj_ref = 1;
2912
2913                 /* fetch updated nlink */
2914                 rc = mdd_la_get(env, mdd_tobj, tattr);
2915                 if (rc != 0) {
2916                         CERROR("%s: Failed to get nlink for tobj "
2917                                 DFID": rc = %d\n",
2918                                 mdd2obd_dev(mdd)->obd_name,
2919                                 PFID(tpobj_fid), rc);
2920                         GOTO(fixup_tpobj, rc);
2921                 }
2922
2923                 la->la_valid = LA_CTIME;
2924                 rc = mdd_update_time(env, mdd_tobj, tattr, la, handle);
2925                 if (rc != 0) {
2926                         CERROR("%s: Failed to set ctime for tobj "
2927                                 DFID": rc = %d\n",
2928                                 mdd2obd_dev(mdd)->obd_name,
2929                                 PFID(tpobj_fid), rc);
2930                         GOTO(fixup_tpobj, rc);
2931                 }
2932
2933                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2934                 ma->ma_attr = *tattr;
2935                 ma->ma_valid |= MA_INODE;
2936                 rc = mdd_finish_unlink(env, mdd_tobj, ma, mdd_tpobj, ltname,
2937                                        handle);
2938                 if (rc != 0) {
2939                         CERROR("%s: Failed to unlink tobj "
2940                                 DFID": rc = %d\n",
2941                                 mdd2obd_dev(mdd)->obd_name,
2942                                 PFID(tpobj_fid), rc);
2943                         GOTO(fixup_tpobj, rc);
2944                 }
2945
2946                 /* fetch updated nlink */
2947                 rc = mdd_la_get(env, mdd_tobj, tattr);
2948                 if (rc == -ENOENT) {
2949                         /* the object got removed, let's
2950                          * return the latest known attributes */
2951                         tattr->la_nlink = 0;
2952                         rc = 0;
2953                 } else if (rc != 0) {
2954                         CERROR("%s: Failed to get nlink for tobj "
2955                                 DFID": rc = %d\n",
2956                                 mdd2obd_dev(mdd)->obd_name,
2957                                 PFID(tpobj_fid), rc);
2958                         GOTO(fixup_tpobj, rc);
2959                 }
2960                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2961                 ma->ma_attr = *tattr;
2962                 ma->ma_valid |= MA_INODE;
2963
2964                 if (tattr->la_nlink == 0)
2965                         cl_flags |= CLF_RENAME_LAST;
2966                 else
2967                         cl_flags &= ~CLF_RENAME_LAST_EXISTS;
2968         }
2969
2970         la->la_valid = LA_CTIME | LA_MTIME;
2971         rc = mdd_update_time(env, mdd_spobj, pattr, la, handle);
2972         if (rc)
2973                 GOTO(fixup_tpobj, rc);
2974
2975         if (mdd_spobj != mdd_tpobj) {
2976                 la->la_valid = LA_CTIME | LA_MTIME;
2977                 rc = mdd_update_time(env, mdd_tpobj, tpattr, la, handle);
2978                 if (rc != 0)
2979                         GOTO(fixup_tpobj, rc);
2980         }
2981
2982         EXIT;
2983
2984 fixup_tpobj:
2985         if (rc) {
2986                 rc2 = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
2987                 if (rc2)
2988                         CWARN("tp obj fix error %d\n",rc2);
2989
2990                 if (mdd_tobj && mdd_object_exists(mdd_tobj) &&
2991                     !mdd_is_dead_obj(mdd_tobj)) {
2992                         if (tobj_ref) {
2993                                 mdo_ref_add(env, mdd_tobj, handle);
2994                                 if (is_dir)
2995                                         mdo_ref_add(env, mdd_tobj, handle);
2996                         }
2997
2998                         rc2 = __mdd_index_insert(env, mdd_tpobj,
2999                                                   mdo2fid(mdd_tobj),
3000                                                   mdd_object_type(mdd_tobj),
3001                                                   tname, handle);
3002                         if (rc2 != 0)
3003                                 CWARN("tp obj fix error: rc = %d\n", rc2);
3004                 }
3005         }
3006
3007 fixup_spobj:
3008         if (rc && is_dir && mdd_sobj && mdd_spobj != mdd_tpobj) {
3009                 rc2 = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
3010                 if (rc2)
3011                         CWARN("%s: sp obj dotdot delete error: rc = %d\n",
3012                                mdd2obd_dev(mdd)->obd_name, rc2);
3013
3014
3015                 rc2 = __mdd_index_insert_only(env, mdd_sobj, spobj_fid, S_IFDIR,
3016                                               dotdot, handle);
3017                 if (rc2 != 0)
3018                         CWARN("%s: sp obj dotdot insert error: rc = %d\n",
3019                               mdd2obd_dev(mdd)->obd_name, rc2);
3020         }
3021
3022 fixup_spobj2:
3023         if (rc != 0) {
3024                 rc2 = __mdd_index_insert(env, mdd_spobj, lf,
3025                                          mdd_object_type(mdd_sobj), sname,
3026                                          handle);
3027                 if (rc2 != 0)
3028                         CWARN("sp obj fix error: rc = %d\n", rc2);
3029         }
3030
3031 cleanup:
3032         if (tobj_locked)
3033                 mdd_write_unlock(env, mdd_tobj);
3034
3035         if (rc == 0)
3036                 rc = mdd_changelog_ns_store(env, mdd, CL_RENAME, cl_flags,
3037                                             mdd_tobj, tpobj_fid, lf, spobj_fid,
3038                                             ltname, lsname, handle);
3039
3040 stop:
3041         mdd_trans_stop(env, mdd, rc, handle);
3042
3043 out_pending:
3044         mdd_object_put(env, mdd_sobj);
3045         return rc;
3046 }
3047
3048 /**
3049  * During migration once the parent FID has been changed,
3050  * we need update the parent FID in linkea.
3051  **/
3052 static int mdd_linkea_update_child_internal(const struct lu_env *env,
3053                                             struct mdd_object *parent,
3054                                             struct mdd_object *newparent,
3055                                             struct mdd_object *child,
3056                                             const char *name, int namelen,
3057                                             struct thandle *handle,
3058                                             bool declare)
3059 {
3060         struct mdd_thread_info  *info = mdd_env_info(env);
3061         struct linkea_data      ldata = { NULL };
3062         struct lu_buf           *buf = &info->mti_link_buf;
3063         int                     count;
3064         int                     rc = 0;
3065
3066         ENTRY;
3067
3068         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
3069         if (buf->lb_buf == NULL)
3070                 RETURN(-ENOMEM);
3071
3072         ldata.ld_buf = buf;
3073         rc = mdd_links_read(env, child, &ldata);
3074         if (rc != 0) {
3075                 if (rc == -ENOENT || rc == -ENODATA)
3076                         rc = 0;
3077                 RETURN(rc);
3078         }
3079
3080         LASSERT(ldata.ld_leh != NULL);
3081         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
3082         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
3083                 struct mdd_device *mdd = mdo2mdd(&child->mod_obj);
3084                 struct lu_name lname;
3085                 struct lu_fid  fid;
3086
3087                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
3088                                     &lname, &fid);
3089
3090                 if (strncmp(lname.ln_name, name, namelen) != 0 ||
3091                     !lu_fid_eq(&fid, mdd_object_fid(parent))) {
3092                         ldata.ld_lee = (struct link_ea_entry *)
3093                                        ((char *)ldata.ld_lee +
3094                                         ldata.ld_reclen);
3095                         continue;
3096                 }
3097
3098                 CDEBUG(D_INFO, "%s: update "DFID" with %.*s:"DFID"\n",
3099                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(child)),
3100                        lname.ln_namelen, lname.ln_name,
3101                        PFID(mdd_object_fid(newparent)));
3102                 /* update to the new parent fid */
3103                 linkea_entry_pack(ldata.ld_lee, &lname,
3104                                   mdd_object_fid(newparent));
3105                 if (declare)
3106                         rc = mdd_declare_links_add(env, child, handle, &ldata,
3107                                                    MLAO_IGNORE);
3108                 else
3109                         rc = mdd_links_write(env, child, &ldata, handle);
3110                 break;
3111         }
3112         RETURN(rc);
3113 }
3114
3115 static int mdd_linkea_declare_update_child(const struct lu_env *env,
3116                                            struct mdd_object *parent,
3117                                            struct mdd_object *newparent,
3118                                            struct mdd_object *child,
3119                                            const char *name, int namelen,
3120                                            struct thandle *handle)
3121 {
3122         return mdd_linkea_update_child_internal(env, parent, newparent,
3123                                                 child, name,
3124                                                 namelen, handle, true);
3125 }
3126
3127 static int mdd_linkea_update_child(const struct lu_env *env,
3128                                    struct mdd_object *parent,
3129                                    struct mdd_object *newparent,
3130                                    struct mdd_object *child,
3131                                    const char *name, int namelen,
3132                                    struct thandle *handle)
3133 {
3134         return mdd_linkea_update_child_internal(env, parent, newparent,
3135                                                 child, name,
3136                                                 namelen, handle, false);
3137 }
3138
3139 static int mdd_update_linkea_internal(const struct lu_env *env,
3140                                       struct mdd_object *mdd_pobj,
3141                                       struct mdd_object *mdd_sobj,
3142                                       struct mdd_object *mdd_tobj,
3143                                       const struct lu_name *child_name,
3144                                       struct linkea_data *ldata,
3145                                       struct thandle *handle,
3146                                       int declare)
3147 {
3148         struct mdd_thread_info  *info = mdd_env_info(env);
3149         int                     count;
3150         int                     rc = 0;
3151         ENTRY;
3152
3153         LASSERT(ldata->ld_buf != NULL);
3154
3155 again:
3156         /* If it is mulitple links file, we need update the name entry for
3157          * all parent */
3158         LASSERT(ldata->ld_leh != NULL);
3159         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
3160         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
3161                 struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3162                 struct mdd_object       *pobj;
3163                 struct lu_name          lname;
3164                 struct lu_fid           fid;
3165
3166                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
3167                                     &lname, &fid);
3168                 pobj = mdd_object_find(env, mdd, &fid);
3169                 if (IS_ERR(pobj)) {
3170                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
3171                               mdd2obd_dev(mdd)->obd_name, PFID(&fid),
3172                               PTR_ERR(pobj));
3173                         linkea_del_buf(ldata, &lname);
3174                         goto again;
3175                 }
3176
3177                 if (!mdd_object_exists(pobj)) {
3178                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
3179                               mdd2obd_dev(mdd)->obd_name, PFID(&fid));
3180                         linkea_del_buf(ldata, &lname);
3181                         mdd_object_put(env, pobj);
3182                         goto again;
3183                 }
3184
3185                 if (pobj == mdd_pobj &&
3186                     lname.ln_namelen == child_name->ln_namelen &&
3187                     strncmp(lname.ln_name, child_name->ln_name,
3188                             lname.ln_namelen) == 0) {
3189                         CDEBUG(D_INFO, "%s: skip its own %s: "DFID"\n",
3190                               mdd2obd_dev(mdd)->obd_name, child_name->ln_name,
3191                               PFID(&fid));
3192                         linkea_del_buf(ldata, &lname);
3193                         mdd_object_put(env, pobj);
3194                         goto again;
3195                 }
3196
3197                 CDEBUG(D_INFO, "%s: update "DFID" with "DNAME":"DFID"\n",
3198                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(pobj)),
3199                        PNAME(&lname), PFID(mdd_object_fid(mdd_tobj)));
3200
3201                 if (declare) {
3202                         /* Remove source name from source directory */
3203                         /* Insert new fid with target name into target dir */
3204                         rc = mdo_declare_index_delete(env, pobj, lname.ln_name,
3205                                                       handle);
3206                         if (rc != 0)
3207                                 GOTO(next_put, rc);
3208
3209                         rc = mdo_declare_index_insert(env, pobj,
3210                                         mdd_object_fid(mdd_tobj),
3211                                         mdd_object_type(mdd_tobj),
3212                                         lname.ln_name, handle);
3213                         if (rc != 0)
3214                                 GOTO(next_put, rc);
3215
3216                         rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3217                         if (rc)
3218                                 GOTO(next_put, rc);
3219
3220                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3221                         if (rc)
3222                                 GOTO(next_put, rc);
3223                 } else {
3224                         char *tmp_name = info->mti_key;
3225
3226                         if (lname.ln_namelen >= sizeof(info->mti_key)) {
3227                                 /* lnamelen is too big(> NAME_MAX + 16),
3228                                  * something wrong about this linkea, let's
3229                                  * skip it */
3230                                 linkea_del_buf(ldata, &lname);
3231                                 mdd_object_put(env, pobj);
3232                                 goto again;
3233                         }
3234
3235                         /* Note: lname might be without \0 at the end, see
3236                          * linkea_entry_unpack(), let's add extra \0 by
3237                          * snprintf */
3238                         snprintf(tmp_name, sizeof(info->mti_key), "%.*s",
3239                                  lname.ln_namelen, lname.ln_name);
3240                         lname.ln_name = tmp_name;
3241
3242                         /* Let's check if this linkEA still valid, before
3243                          * it might be packed into the RPC buffer. */
3244                         rc = mdd_lookup(env, &pobj->mod_obj, &lname,
3245                                         &info->mti_fid, NULL);
3246                         if (rc < 0 ||
3247                             !lu_fid_eq(&info->mti_fid,
3248                                         mdd_object_fid(mdd_sobj))) {
3249                                 /* skip invalid linkea entry */
3250                                 linkea_del_buf(ldata, &lname);
3251                                 mdd_object_put(env, pobj);
3252                                 goto again;
3253                         }
3254
3255                         rc = __mdd_index_delete(env, pobj, tmp_name, 0, handle);
3256                         if (rc != 0)
3257                                 GOTO(next_put, rc);
3258
3259                         rc = __mdd_index_insert(env, pobj,
3260                                         mdd_object_fid(mdd_tobj),
3261                                         mdd_object_type(mdd_tobj),
3262                                         tmp_name, handle);
3263                         if (rc != 0)
3264                                 GOTO(next_put, rc);
3265
3266                         mdd_write_lock(env, mdd_tobj, MOR_SRC_CHILD);
3267                         rc = mdo_ref_add(env, mdd_tobj, handle);
3268                         mdd_write_unlock(env, mdd_tobj);
3269                         if (rc)
3270                                 GOTO(next_put, rc);
3271
3272                         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
3273                         mdo_ref_del(env, mdd_sobj, handle);
3274                         mdd_write_unlock(env, mdd_sobj);
3275                 }
3276 next_put:
3277                 mdd_object_put(env, pobj);
3278                 if (rc != 0)
3279                         break;
3280
3281                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
3282                                                          ldata->ld_reclen);
3283         }
3284
3285         RETURN(rc);
3286 }
3287
3288 static int mdd_migrate_xattrs(const struct lu_env *env,
3289                               struct mdd_object *mdd_sobj,
3290                               struct mdd_object *mdd_tobj)
3291 {
3292         struct mdd_thread_info  *info = mdd_env_info(env);
3293         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3294         char                    *xname;
3295         struct thandle          *handle;
3296         struct lu_buf           xbuf;
3297         int                     xlen;
3298         int                     rem;
3299         int                     xsize;
3300         int                     list_xsize;
3301         struct lu_buf           list_xbuf;
3302         int                     rc;
3303         int                     rc1;
3304
3305         /* retrieve xattr list from the old object */
3306         list_xsize = mdo_xattr_list(env, mdd_sobj, &LU_BUF_NULL);
3307         if (list_xsize == -ENODATA)
3308                 return 0;
3309
3310         if (list_xsize < 0)
3311                 return list_xsize;
3312
3313         lu_buf_check_and_alloc(&info->mti_big_buf, list_xsize);
3314         if (info->mti_big_buf.lb_buf == NULL)
3315                 return -ENOMEM;
3316
3317         list_xbuf.lb_buf = info->mti_big_buf.lb_buf;
3318         list_xbuf.lb_len = list_xsize;
3319         rc = mdo_xattr_list(env, mdd_sobj, &list_xbuf);
3320         if (rc < 0)
3321                 return rc;
3322         rc = 0;
3323         rem = list_xsize;
3324         xname = list_xbuf.lb_buf;
3325         while (rem > 0) {
3326                 xlen = strnlen(xname, rem - 1) + 1;
3327                 if (strcmp(XATTR_NAME_LINK, xname) == 0 ||
3328                     strcmp(XATTR_NAME_LMA, xname) == 0 ||
3329                     strcmp(XATTR_NAME_LMV, xname) == 0)
3330                         goto next;
3331
3332                 /* For directory, if there are default layout, migrate here */
3333                 if (strcmp(XATTR_NAME_LOV, xname) == 0 &&
3334                     !S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu)))
3335                         goto next;
3336
3337                 xsize = mdo_xattr_get(env, mdd_sobj, &LU_BUF_NULL, xname);
3338                 if (xsize == -ENODATA)
3339                         goto next;
3340                 if (xsize < 0)
3341                         GOTO(out, rc);
3342
3343                 lu_buf_check_and_alloc(&info->mti_link_buf, xsize);
3344                 if (info->mti_link_buf.lb_buf == NULL)
3345                         GOTO(out, rc = -ENOMEM);
3346
3347                 xbuf.lb_len = xsize;
3348                 xbuf.lb_buf = info->mti_link_buf.lb_buf;
3349                 rc = mdo_xattr_get(env, mdd_sobj, &xbuf, xname);
3350                 if (rc == -ENODATA)
3351                         goto next;
3352                 if (rc < 0)
3353                         GOTO(out, rc);
3354
3355                 handle = mdd_trans_create(env, mdd);
3356                 if (IS_ERR(handle))
3357                         GOTO(out, rc = PTR_ERR(handle));
3358
3359                 rc = mdo_declare_xattr_set(env, mdd_tobj, &xbuf, xname, 0,
3360                                            handle);
3361                 if (rc != 0)
3362                         GOTO(stop_trans, rc);
3363                 /* Note: this transaction is part of migration, and it is not
3364                  * the last step of migration, so we set th_local = 1 to avoid
3365                  * update last rcvd for this transaction */
3366                 handle->th_local = 1;
3367                 rc = mdd_trans_start(env, mdd, handle);
3368                 if (rc != 0)
3369                         GOTO(stop_trans, rc);
3370
3371                 rc = mdo_xattr_set(env, mdd_tobj, &xbuf, xname, 0, handle);
3372                 if (rc == -EEXIST)
3373                         GOTO(stop_trans, rc = 0);
3374
3375                 if (rc != 0)
3376                         GOTO(stop_trans, rc);
3377 stop_trans:
3378                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3379                 if (rc == 0)
3380                         rc = rc1;
3381                 if (rc != 0)
3382                         GOTO(out, rc);
3383 next:
3384                 rem -= xlen;
3385                 memmove(xname, xname + xlen, rem);
3386         }
3387 out:
3388         return rc;
3389 }
3390
3391 static int mdd_declare_migrate_create(const struct lu_env *env,
3392                                       struct mdd_object *mdd_pobj,
3393                                       struct mdd_object *mdd_sobj,
3394                                       struct mdd_object *mdd_tobj,
3395                                       struct md_op_spec *spec,
3396                                       struct lu_attr *la,
3397                                       union lmv_mds_md *mgr_ea,
3398                                       struct linkea_data *ldata,
3399                                       struct thandle *handle)
3400 {
3401         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3402         const struct lu_buf     *buf;
3403         int                     rc;
3404         int                     mgr_easize;
3405
3406         rc = mdd_declare_object_create_internal(env, mdd_pobj, mdd_tobj, la,
3407                                                 handle, spec, NULL);
3408         if (rc != 0)
3409                 return rc;
3410
3411         rc = mdd_declare_object_initialize(env, mdd_pobj, mdd_tobj, la,
3412                                            handle);
3413         if (rc != 0)
3414                 return rc;
3415
3416         if (S_ISLNK(la->la_mode)) {
3417                 const char *target_name = spec->u.sp_symname;
3418                 int sym_len = strlen(target_name);
3419                 const struct lu_buf *buf;
3420
3421                 buf = mdd_buf_get_const(env, target_name, sym_len);
3422                 rc = dt_declare_record_write(env, mdd_object_child(mdd_tobj),
3423                                              buf, 0, handle);
3424                 if (rc != 0)
3425                         return rc;
3426         } else if (S_ISDIR(la->la_mode) && ldata != NULL) {
3427                 rc = mdd_declare_links_add(env, mdd_tobj, handle, ldata,
3428                                            MLAO_IGNORE);
3429                 if (rc != 0)
3430                         return rc;
3431         }
3432
3433         if (spec->u.sp_ea.eadata != NULL && spec->u.sp_ea.eadatalen != 0) {
3434                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
3435                                         spec->u.sp_ea.eadatalen);
3436                 rc = mdo_declare_xattr_set(env, mdd_tobj, buf, XATTR_NAME_LOV,
3437                                            0, handle);
3438                 if (rc)
3439                         return rc;
3440         }
3441
3442         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3443         buf = mdd_buf_get_const(env, mgr_ea, mgr_easize);
3444         rc = mdo_declare_xattr_set(env, mdd_sobj, buf, XATTR_NAME_LMV,
3445                                    0, handle);
3446         if (rc)
3447                 return rc;
3448
3449         la_flag->la_valid = LA_FLAGS;
3450         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3451         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3452
3453         return rc;
3454 }
3455
3456 static int mdd_migrate_create(const struct lu_env *env,
3457                               struct mdd_object *mdd_pobj,
3458                               struct mdd_object *mdd_sobj,
3459                               struct mdd_object *mdd_tobj,
3460                               const struct lu_name *lname,
3461                               struct lu_attr *la)
3462 {
3463         struct mdd_thread_info  *info = mdd_env_info(env);
3464         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3465         struct md_op_spec       *spec = &info->mti_spec;
3466         struct lu_buf           lmm_buf = { NULL };
3467         struct lu_buf           link_buf = { NULL };
3468         const struct lu_buf     *buf;
3469         struct thandle          *handle;
3470         struct lmv_mds_md_v1    *mgr_ea;
3471         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3472         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
3473         int                     mgr_easize;
3474         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3475         int                     rc;
3476         ENTRY;
3477
3478         /* prepare spec for create */
3479         memset(spec, 0, sizeof(*spec));
3480         spec->sp_cr_lookup = 0;
3481         spec->sp_feat = &dt_directory_features;
3482         if (S_ISLNK(la->la_mode)) {
3483                 buf = lu_buf_check_and_alloc(
3484                                 &mdd_env_info(env)->mti_big_buf,
3485                                 la->la_size + 1);
3486                 link_buf = *buf;
3487                 link_buf.lb_len = la->la_size + 1;
3488                 memset(link_buf.lb_buf, 0, link_buf.lb_len);
3489                 rc = mdd_readlink(env, &mdd_sobj->mod_obj, &link_buf);
3490                 if (rc <= 0) {
3491                         rc = rc != 0 ? rc : -EFAULT;
3492                         CERROR("%s: "DFID" readlink failed: rc = %d\n",
3493                                mdd2obd_dev(mdd)->obd_name,
3494                                PFID(mdd_object_fid(mdd_sobj)), rc);
3495                         RETURN(rc);
3496                 }
3497                 spec->u.sp_symname = link_buf.lb_buf;
3498         } else if (S_ISREG(la->la_mode)) {
3499                 /* retrieve lov of the old object */
3500                 rc = mdd_get_lov_ea(env, mdd_sobj, &lmm_buf);
3501                 if (rc != 0 && rc != -ENODATA)
3502                         RETURN(rc);
3503                 if (lmm_buf.lb_buf != NULL && lmm_buf.lb_len != 0) {
3504                         spec->u.sp_ea.eadata = lmm_buf.lb_buf;
3505                         spec->u.sp_ea.eadatalen = lmm_buf.lb_len;
3506                         spec->sp_cr_flags |= MDS_OPEN_HAS_EA;
3507                 }
3508         } else if (S_ISDIR(la->la_mode)) {
3509                 rc = mdd_links_read(env, mdd_sobj, ldata);
3510                 if (rc == -ENODATA) {
3511                         /* ignore the non-linkEA error */
3512                         ldata = NULL;
3513                         rc = 0;
3514                 }
3515                 if (rc < 0)
3516                         RETURN(rc);
3517         }
3518
3519         mgr_ea = (struct lmv_mds_md_v1 *)info->mti_xattr_buf;
3520         memset(mgr_ea, 0, sizeof(*mgr_ea));
3521         mgr_ea->lmv_magic = cpu_to_le32(LMV_MAGIC_V1);
3522         mgr_ea->lmv_stripe_count = cpu_to_le32(2);
3523         mgr_ea->lmv_master_mdt_index = mdd_seq_site(mdd)->ss_node_id;
3524         mgr_ea->lmv_hash_type = cpu_to_le32(LMV_HASH_FLAG_MIGRATION);
3525         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[0], mdd_object_fid(mdd_sobj));
3526         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[1], mdd_object_fid(mdd_tobj));
3527
3528         mdd_object_make_hint(env, mdd_pobj, mdd_tobj, la, spec, hint);
3529
3530         handle = mdd_trans_create(env, mdd);
3531         if (IS_ERR(handle))
3532                 GOTO(out_free, rc = PTR_ERR(handle));
3533
3534         /* Note: this transaction is part of migration, and it is not
3535          * the last step of migration, so we set th_local = 1 to avoid
3536          * update last rcvd for this transaction */
3537         handle->th_local = 1;
3538         rc = mdd_declare_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj,
3539                                         spec, la,
3540                                         (union lmv_mds_md *)info->mti_xattr_buf,
3541                                         ldata, handle);
3542         if (rc != 0)
3543                 GOTO(stop_trans, rc);
3544
3545         rc = mdd_trans_start(env, mdd, handle);
3546         if (rc != 0)
3547                 GOTO(stop_trans, rc);
3548
3549         /* don't set nlink from the original object */
3550         la->la_valid &= ~LA_NLINK;
3551
3552         /* create the target object */
3553         rc = mdd_object_create(env, mdd_pobj, mdd_tobj, la, spec, NULL, NULL,
3554                                hint, handle);
3555         if (rc != 0)
3556                 GOTO(stop_trans, rc);
3557
3558         if (S_ISDIR(la->la_mode) && ldata != NULL) {
3559                 rc = mdd_links_write(env, mdd_tobj, ldata, handle);
3560                 if (rc != 0)
3561                         GOTO(stop_trans, rc);
3562         }
3563
3564         /* Set MIGRATE EA on the source inode, so once the migration needs
3565          * to be re-done during failover, the re-do process can locate the
3566          * target object which is already being created. */
3567         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3568         buf = mdd_buf_get_const(env, mgr_ea, mgr_easize);
3569         rc = mdo_xattr_set(env, mdd_sobj, buf, XATTR_NAME_LMV, 0, handle);
3570         if (rc != 0)
3571                 GOTO(stop_trans, rc);
3572
3573         /* Set immutable flag, so any modification is disabled until
3574          * the migration is done. Once the migration is interrupted,
3575          * if the resume process find the migrating object has both
3576          * IMMUTALBE flag and MIGRATE EA, it need to clear IMMUTABLE
3577          * flag and approve the migration */
3578         la_flag->la_valid = LA_FLAGS;
3579         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3580         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3581 stop_trans:
3582         if (handle != NULL) {
3583                 int rc1;
3584
3585                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3586                 if (rc == 0)
3587                         rc = rc1;
3588         }
3589 out_free:
3590         if (lmm_buf.lb_buf != NULL)
3591                 OBD_FREE(lmm_buf.lb_buf, lmm_buf.lb_len);
3592         RETURN(rc);
3593 }
3594
3595 static int mdd_migrate_entries(const struct lu_env *env,
3596                                struct mdd_object *mdd_sobj,
3597                                struct mdd_object *mdd_tobj)
3598 {
3599         struct dt_object        *next = mdd_object_child(mdd_sobj);
3600         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3601         struct dt_object        *dt_tobj = mdd_object_child(mdd_tobj);
3602         struct thandle          *handle;
3603         struct dt_it            *it;
3604         const struct dt_it_ops  *iops;
3605         int                      rc;
3606         int                      result;
3607         struct lu_dirent        *ent;
3608         ENTRY;
3609
3610         OBD_ALLOC(ent, NAME_MAX + sizeof(*ent) + 1);
3611         if (ent == NULL)
3612                 RETURN(-ENOMEM);
3613
3614         if (!dt_try_as_dir(env, next))
3615                 GOTO(out_ent, rc = -ENOTDIR);
3616         /*
3617          * iterate directories
3618          */
3619         iops = &next->do_index_ops->dio_it;
3620         it = iops->init(env, next, LUDA_FID | LUDA_TYPE);
3621         if (IS_ERR(it))
3622                 GOTO(out_ent, rc = PTR_ERR(it));
3623
3624         rc = iops->load(env, it, 0);
3625         if (rc == 0)
3626                 rc = iops->next(env, it);
3627         else if (rc > 0)
3628                 rc = 0;
3629         /*
3630          * At this point and across for-loop:
3631          *
3632          *  rc == 0 -> ok, proceed.
3633          *  rc >  0 -> end of directory.
3634          *  rc <  0 -> error.
3635          */
3636         do {
3637                 struct mdd_object       *child;
3638                 char                    *name = mdd_env_info(env)->mti_key;
3639                 int                     len;
3640                 int                     recsize;
3641                 int                     is_dir;
3642                 bool                    target_exist = false;
3643                 int                     rc1;
3644
3645                 len = iops->key_size(env, it);
3646                 if (len == 0)
3647                         goto next;
3648
3649                 result = iops->rec(env, it, (struct dt_rec *)ent,
3650                                    LUDA_FID | LUDA_TYPE);
3651                 if (result == -ESTALE)
3652                         goto next;
3653                 if (result != 0) {
3654                         rc = result;
3655                         goto out;
3656                 }
3657
3658                 fid_le_to_cpu(&ent->lde_fid, &ent->lde_fid);
3659                 recsize = le16_to_cpu(ent->lde_reclen);
3660
3661                 /* Insert new fid with target name into target dir */
3662                 if ((ent->lde_namelen == 1 && ent->lde_name[0] == '.') ||
3663                     (ent->lde_namelen == 2 && ent->lde_name[0] == '.' &&
3664                      ent->lde_name[1] == '.'))
3665                         goto next;
3666
3667                 child = mdd_object_find(env, mdd, &ent->lde_fid);
3668                 if (IS_ERR(child))
3669                         GOTO(out, rc = PTR_ERR(child));
3670
3671                 mdd_write_lock(env, child, MOR_SRC_CHILD);
3672                 is_dir = S_ISDIR(mdd_object_type(child));
3673
3674                 snprintf(name, ent->lde_namelen + 1, "%s", ent->lde_name);
3675
3676                 /* Check whether the name has been inserted to the target */
3677                 if (dt_try_as_dir(env, dt_tobj)) {
3678                         struct lu_fid *fid = &mdd_env_info(env)->mti_fid2;
3679
3680                         rc = dt_lookup(env, dt_tobj, (struct dt_rec *)fid,
3681                                        (struct dt_key *)name);
3682                         if (unlikely(rc == 0))
3683                                 target_exist = true;
3684                 }
3685
3686                 handle = mdd_trans_create(env, mdd);
3687                 if (IS_ERR(handle))
3688                         GOTO(out_put, rc = PTR_ERR(handle));
3689
3690                 /* Note: this transaction is part of migration, and it is not
3691                  * the last step of migration, so we set th_local = 1 to avoid
3692                  * updating last rcvd for this transaction */
3693                 handle->th_local = 1;
3694                 if (likely(!target_exist)) {
3695                         rc = mdo_declare_index_insert(env, mdd_tobj,
3696                                                       &ent->lde_fid,
3697                                                       mdd_object_type(child),
3698                                                       name, handle);
3699                         if (rc != 0)
3700                                 GOTO(out_put, rc);
3701
3702                         if (is_dir) {
3703                                 rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3704                                 if (rc != 0)
3705                                         GOTO(out_put, rc);
3706                         }
3707                 }
3708
3709                 rc = mdo_declare_index_delete(env, mdd_sobj, name, handle);
3710                 if (rc != 0)
3711                         GOTO(out_put, rc);
3712
3713                 if (is_dir) {
3714                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3715                         if (rc != 0)
3716                                 GOTO(out_put, rc);
3717
3718                         /* Update .. for child */
3719                         rc = mdo_declare_index_delete(env, child, dotdot,
3720                                                       handle);
3721                         if (rc != 0)
3722                                 GOTO(out_put, rc);
3723
3724                         rc = mdo_declare_index_insert(env, child,
3725                                                       mdd_object_fid(mdd_tobj),
3726                                                       S_IFDIR, dotdot, handle);
3727                         if (rc != 0)
3728                                 GOTO(out_put, rc);
3729                 }
3730
3731                 rc = mdd_linkea_declare_update_child(env, mdd_sobj,mdd_tobj,
3732                                                      child, name,
3733                                                      strlen(name),
3734                                                      handle);
3735                 if (rc != 0)
3736                         GOTO(out_put, rc);
3737
3738                 rc = mdd_trans_start(env, mdd, handle);
3739                 if (rc != 0) {
3740                         CERROR("%s: transaction start failed: rc = %d\n",
3741                                mdd2obd_dev(mdd)->obd_name, rc);
3742                         GOTO(out_put, rc);
3743                 }
3744
3745                 if (likely(!target_exist)) {
3746                         rc = __mdd_index_insert(env, mdd_tobj, &ent->lde_fid,
3747                                                 mdd_object_type(child),
3748                                                 name, handle);
3749                         if (rc != 0)
3750                                 GOTO(out_put, rc);
3751                 }
3752
3753                 rc = __mdd_index_delete(env, mdd_sobj, name, is_dir, handle);
3754                 if (rc != 0)
3755                         GOTO(out_put, rc);
3756
3757                 if (is_dir) {
3758                         rc = __mdd_index_delete_only(env, child, dotdot,
3759                                                      handle);
3760                         if (rc != 0)
3761                                 GOTO(out_put, rc);
3762
3763                         rc = __mdd_index_insert_only(env, child,
3764                                          mdd_object_fid(mdd_tobj), S_IFDIR,
3765                                          dotdot, handle);
3766                         if (rc != 0)
3767                                 GOTO(out_put, rc);
3768                 }
3769
3770                 rc = mdd_linkea_update_child(env, mdd_sobj, mdd_tobj,
3771                                              child, name,
3772                                              strlen(name), handle);
3773
3774 out_put:
3775                 mdd_write_unlock(env, child);
3776                 mdd_object_put(env, child);
3777                 rc1 = mdd_trans_stop(env, mdd, rc, handle);
3778                 if (rc == 0)
3779                         rc = rc1;
3780
3781                 if (rc != 0)
3782                         GOTO(out, rc);
3783 next:
3784                 result = iops->next(env, it);
3785                 if (OBD_FAIL_CHECK(OBD_FAIL_MIGRATE_ENTRIES))
3786                         GOTO(out, rc = -EINTR);
3787
3788                 if (result == -ESTALE)
3789                         goto next;
3790         } while (result == 0);
3791 out:
3792         iops->put(env, it);
3793         iops->fini(env, it);
3794 out_ent:
3795         OBD_FREE(ent, NAME_MAX + sizeof(*ent) + 1);
3796         RETURN(rc);
3797 }
3798
3799 static int mdd_declare_update_linkea(const struct lu_env *env,
3800                                      struct mdd_object *mdd_pobj,
3801                                      struct mdd_object *mdd_sobj,
3802                                      struct mdd_object *mdd_tobj,
3803                                      const struct lu_name *child_name,
3804                                      struct linkea_data *ldata,
3805                                      struct thandle *handle)
3806 {
3807         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3808                                           child_name, ldata, handle, 1);
3809 }
3810
3811 static int mdd_update_linkea(const struct lu_env *env,
3812                              struct mdd_object *mdd_pobj,
3813                              struct mdd_object *mdd_sobj,
3814                              struct mdd_object *mdd_tobj,
3815                              const struct lu_name *child_name,
3816                              struct linkea_data *ldata,
3817                              struct thandle *handle)
3818 {
3819         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3820                                           child_name, ldata, handle, 0);
3821 }
3822
3823 static int mdd_declare_migrate_update_name(const struct lu_env *env,
3824                                            struct mdd_object *mdd_pobj,
3825                                            struct mdd_object *mdd_sobj,
3826                                            struct mdd_object *mdd_tobj,
3827                                            const struct lu_name *lname,
3828                                            struct lu_attr *la,
3829                                            struct lu_attr *parent_la,
3830                                            struct linkea_data *ldata,
3831                                            struct thandle *handle)
3832 {
3833         struct mdd_device *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3834         struct lu_attr *la_flag = MDD_ENV_VAR(env, tattr);
3835         int rc;
3836
3837         /* Revert IMMUTABLE flag */
3838         la_flag->la_valid = LA_FLAGS;
3839         la_flag->la_flags = la->la_flags & ~LUSTRE_IMMUTABLE_FL;
3840         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3841         if (rc != 0)
3842                 return rc;
3843
3844         /* delete entry from source dir */
3845         rc = mdo_declare_index_delete(env, mdd_pobj, lname->ln_name, handle);
3846         if (rc != 0)
3847                 return rc;
3848
3849         if (ldata->ld_buf != NULL) {
3850                 rc = mdd_declare_update_linkea(env, mdd_pobj, mdd_sobj,
3851                                                mdd_tobj, lname, ldata, handle);
3852                 if (rc != 0)
3853                         return rc;
3854         }
3855
3856         if (S_ISREG(mdd_object_type(mdd_sobj))) {
3857                 rc = mdo_declare_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
3858                                            handle);
3859                 if (rc != 0)
3860                         return rc;
3861
3862                 handle->th_complex = 1;
3863                 rc = mdo_declare_xattr_set(env, mdd_tobj, NULL,
3864                                            XATTR_NAME_FID,
3865                                            LU_XATTR_REPLACE, handle);
3866                 if (rc < 0)
3867                         return rc;
3868         }
3869
3870         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3871                 rc = mdo_declare_ref_del(env, mdd_pobj, handle);
3872                 if (rc != 0)
3873                         return rc;
3874         }
3875
3876         /* new name */
3877         rc = mdo_declare_index_insert(env, mdd_pobj, mdo2fid(mdd_tobj),
3878                                       mdd_object_type(mdd_tobj),
3879                                       lname->ln_name, handle);
3880         if (rc != 0)
3881                 return rc;
3882
3883         rc = mdd_declare_links_add(env, mdd_tobj, handle, NULL, MLAO_IGNORE);
3884         if (rc != 0)
3885                 return rc;
3886
3887         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3888                 rc = mdo_declare_ref_add(env, mdd_pobj, handle);
3889                 if (rc != 0)
3890                         return rc;
3891         }
3892
3893         /* delete old object */
3894         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3895         if (rc != 0)
3896                 return rc;
3897
3898         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3899                 /* delete old object */
3900                 rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3901                 if (rc != 0)
3902                         return rc;
3903                 /* set nlink to 0 */
3904                 rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
3905                 if (rc != 0)
3906                         return rc;
3907         }
3908
3909         rc = mdd_declare_finish_unlink(env, mdd_sobj, handle);
3910         if (rc)
3911                 return rc;
3912
3913         rc = mdo_declare_attr_set(env, mdd_pobj, parent_la, handle);
3914         if (rc != 0)
3915                 return rc;
3916
3917         rc = mdd_declare_changelog_store(env, mdd, lname, NULL, handle);
3918
3919         return rc;
3920 }
3921
3922 static int mdd_migrate_update_name(const struct lu_env *env,
3923                                    struct mdd_object *mdd_pobj,
3924                                    struct mdd_object *mdd_sobj,
3925                                    struct mdd_object *mdd_tobj,
3926                                    const struct lu_name *lname,
3927                                    struct md_attr *ma)
3928 {
3929         struct lu_attr          *p_la = MDD_ENV_VAR(env, la_for_fix);
3930         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
3931         struct lu_attr          *la_flag = MDD_ENV_VAR(env, tattr);
3932         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3933         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3934         struct thandle          *handle;
3935         int                     is_dir = S_ISDIR(mdd_object_type(mdd_sobj));
3936         const char              *name = lname->ln_name;
3937         int                     rc;
3938         ENTRY;
3939
3940         /* update time for parent */
3941         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
3942         p_la->la_ctime = p_la->la_mtime = ma->ma_attr.la_ctime;
3943         p_la->la_valid = LA_CTIME;
3944
3945         rc = mdd_la_get(env, mdd_sobj, so_attr);
3946         if (rc != 0)
3947                 RETURN(rc);
3948
3949         ldata->ld_buf = NULL;
3950         rc = mdd_links_read(env, mdd_sobj, ldata);
3951         if (rc != 0 && rc != -ENOENT && rc != -ENODATA)
3952                 RETURN(rc);
3953
3954         handle = mdd_trans_create(env, mdd);
3955         if (IS_ERR(handle))
3956                 RETURN(PTR_ERR(handle));
3957
3958         rc = mdd_declare_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj,
3959                                              lname, so_attr, p_la, ldata,
3960                                              handle);
3961         if (rc != 0) {
3962                 /* If the migration can not be fit in one transaction, just
3963                  * leave it in the original MDT */
3964                 if (rc == -E2BIG)
3965                         GOTO(stop_trans, rc = 0);
3966                 else
3967                         GOTO(stop_trans, rc);
3968         }
3969
3970         CDEBUG(D_INFO, "%s: update "DFID"/"DFID" with %s:"DFID"\n",
3971                mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(mdd_pobj)),
3972                PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
3973                PFID(mdd_object_fid(mdd_tobj)));
3974
3975         rc = mdd_trans_start(env, mdd, handle);
3976         if (rc != 0)
3977                 GOTO(stop_trans, rc);
3978
3979         /* Revert IMMUTABLE flag */
3980         la_flag->la_valid = LA_FLAGS;
3981         la_flag->la_flags = so_attr->la_flags & ~LUSTRE_IMMUTABLE_FL;
3982         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3983         if (rc != 0)
3984                 GOTO(stop_trans, rc);
3985
3986         /* Remove source name from source directory */
3987         rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle);
3988         if (rc != 0)
3989                 GOTO(stop_trans, rc);
3990
3991         if (ldata->ld_buf != NULL) {
3992                 rc = mdd_update_linkea(env, mdd_pobj, mdd_sobj, mdd_tobj,
3993                                        lname, ldata, handle);
3994                 if (rc != 0)
3995                         GOTO(stop_trans, rc);
3996
3997                 /*  linkea update might decrease the source object
3998                  *  nlink, let's get the attr again after ref_del */
3999                 rc = mdd_la_get(env, mdd_sobj, so_attr);
4000                 if (rc != 0)
4001                         GOTO(stop_trans, rc);
4002         }
4003
4004         if (S_ISREG(so_attr->la_mode)) {
4005                 if (so_attr->la_nlink == 1) {
4006                         rc = mdo_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
4007                                            handle);
4008                         if (rc != 0 && rc != -ENODATA)
4009                                 GOTO(stop_trans, rc);
4010
4011                         rc = mdo_xattr_set(env, mdd_tobj, NULL,
4012                                            XATTR_NAME_FID,
4013                                            LU_XATTR_REPLACE, handle);
4014                         if (rc < 0)
4015                                 GOTO(stop_trans, rc);
4016                 }
4017         }
4018
4019         /* Insert new fid with target name into target dir */
4020         rc = __mdd_index_insert(env, mdd_pobj, mdd_object_fid(mdd_tobj),
4021                                 mdd_object_type(mdd_tobj), name, handle);
4022         if (rc != 0)
4023                 GOTO(stop_trans, rc);
4024
4025         linkea_add_buf(ldata, lname, mdd_object_fid(mdd_pobj));
4026         rc = mdd_links_add(env, mdd_tobj, mdo2fid(mdd_pobj), lname, handle,
4027                            ldata, 1);
4028         if (rc != 0)
4029                 GOTO(stop_trans, rc);
4030
4031         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
4032
4033         mdd_sobj->mod_flags |= DEAD_OBJ;
4034         rc = mdd_mark_orphan_object(env, mdd_sobj, handle, false);
4035         if (rc != 0)
4036                 GOTO(out_unlock, rc);
4037
4038         rc = __mdd_orphan_add(env, mdd_sobj, handle);
4039         if (rc != 0)
4040                 GOTO(out_unlock, rc);
4041
4042         mdo_ref_del(env, mdd_sobj, handle);
4043         if (is_dir)
4044                 mdo_ref_del(env, mdd_sobj, handle);
4045
4046         /* Get the attr again after ref_del */
4047         rc = mdd_la_get(env, mdd_sobj, so_attr);
4048         if (rc != 0)
4049                 GOTO(out_unlock, rc);
4050
4051         ma->ma_attr = *so_attr;
4052         ma->ma_valid |= MA_INODE;
4053
4054         rc = mdd_attr_set_internal(env, mdd_pobj, p_la, handle, 0);
4055         if (rc != 0)
4056                 GOTO(out_unlock, rc);
4057
4058         rc = mdd_changelog_ns_store(env, mdd, CL_MIGRATE, 0, mdd_tobj,
4059                                mdo2fid(mdd_pobj), mdo2fid(mdd_sobj),
4060                                mdo2fid(mdd_pobj), lname, lname, handle);
4061         if (rc != 0) {
4062                 CWARN("%s: changelog for migrate %s "DFID
4063                       "under "DFID" failed: rc = %d\n",
4064                       mdd2obd_dev(mdd)->obd_name, lname->ln_name,
4065                       PFID(mdd_object_fid(mdd_sobj)),
4066                       PFID(mdd_object_fid(mdd_pobj)), rc);
4067                 /* Sigh, there are no easy way to migrate back the object, so
4068                  * let's reset the result to 0 for now XXX */
4069                 rc = 0;
4070         }
4071 out_unlock:
4072         mdd_write_unlock(env, mdd_sobj);
4073
4074 stop_trans:
4075         mdd_trans_stop(env, mdd, rc, handle);
4076
4077         RETURN(rc);
4078 }
4079
4080 static int mdd_fld_lookup(const struct lu_env *env, struct mdd_device *mdd,
4081                           const struct lu_fid *fid, __u32 *mdt_index)
4082 {
4083         struct lu_seq_range *range = &mdd_env_info(env)->mti_range;
4084         struct seq_server_site *ss;
4085         int rc;
4086
4087         ss = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site;
4088
4089         range->lsr_flags = LU_SEQ_RANGE_MDT;
4090         rc = fld_server_lookup(env, ss->ss_server_fld, fid->f_seq, range);
4091         if (rc != 0)
4092                 return rc;
4093
4094         *mdt_index = range->lsr_index;
4095
4096         return 0;
4097 }
4098 /**
4099  * Check whether we should migrate the file/dir
4100  * return val
4101  *      < 0  permission check failed or other error.
4102  *      = 0  the file can be migrated.
4103  *      > 0  the file does not need to be migrated, mostly
4104  *           for multiple link file
4105  **/
4106 static int mdd_migrate_sanity_check(const struct lu_env *env,
4107                                     struct mdd_object *pobj,
4108                                     const struct lu_attr *pattr,
4109                                     struct mdd_object *sobj,
4110                                     struct lu_attr *sattr)
4111 {
4112         struct mdd_thread_info  *info = mdd_env_info(env);
4113         struct linkea_data      *ldata = &info->mti_link_data;
4114         struct mdd_device       *mdd = mdo2mdd(&pobj->mod_obj);
4115         int                     mgr_easize;
4116         struct lu_buf           *mgr_buf;
4117         int                     count;
4118         int                     rc;
4119         __u64 mdt_index;
4120         ENTRY;
4121
4122         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
4123         mgr_buf = lu_buf_check_and_alloc(&info->mti_big_buf, mgr_easize);
4124         if (mgr_buf->lb_buf == NULL)
4125                 RETURN(-ENOMEM);
4126
4127         rc = mdo_xattr_get(env, sobj, mgr_buf, XATTR_NAME_LMV);
4128         if (rc > 0) {
4129                 union lmv_mds_md *lmm = mgr_buf->lb_buf;
4130
4131                 /* If the object has migrateEA, it means IMMUTE flag
4132                  * is being set by previous migration process, so it
4133                  * needs to override the IMMUTE flag, otherwise the
4134                  * following sanity check will fail */
4135                 if (le32_to_cpu(lmm->lmv_md_v1.lmv_hash_type) &
4136                                                 LMV_HASH_FLAG_MIGRATION) {
4137                         struct mdd_device *mdd = mdo2mdd(&sobj->mod_obj);
4138
4139                         sattr->la_flags &= ~LUSTRE_IMMUTABLE_FL;
4140                         CDEBUG(D_HA, "%s: "DFID" override IMMUTE FLAG\n",
4141                                mdd2obd_dev(mdd)->obd_name,
4142                                PFID(mdd_object_fid(sobj)));
4143                 }
4144         }
4145
4146         rc = mdd_rename_sanity_check(env, pobj, pattr, pobj, pattr,
4147                                      sobj, sattr, NULL, NULL);
4148         if (rc != 0)
4149                 RETURN(rc);
4150
4151         /* Then it will check if the file should be migrated. If the file
4152          * has mulitple links, we only need migrate the file if all of its
4153          * entries has been migrated to the remote MDT */
4154         if (!S_ISREG(sattr->la_mode) || sattr->la_nlink < 2)
4155                 RETURN(0);
4156
4157         rc = mdd_links_read(env, sobj, ldata);
4158         if (rc != 0) {
4159                 /* For multiple links files, if there are no linkEA data at all,
4160                  * means the file might be created before linkEA is enabled, and
4161                  * all of its links should not be migrated yet, otherwise it
4162                  * should have some linkEA there */
4163                 if (rc == -ENOENT || rc == -ENODATA)
4164                         RETURN(1);
4165                 RETURN(rc);
4166         }
4167
4168         mdt_index = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site->ss_node_id;
4169         /* If there are still links locally, then the file will not be
4170          * migrated. */
4171         LASSERT(ldata->ld_leh != NULL);
4172         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
4173         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
4174                 struct lu_name          lname;
4175                 struct lu_fid           fid;
4176                 __u32                   parent_mdt_index;
4177
4178                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
4179                                     &lname, &fid);
4180                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
4181                                                          ldata->ld_reclen);
4182
4183                 rc = mdd_fld_lookup(env, mdd, &fid, &parent_mdt_index);
4184                 if (rc != 0)
4185                         RETURN(rc);
4186
4187                 /* Migrate the object only if none of its parents are on the
4188                  * current MDT. */
4189                 if (parent_mdt_index != mdt_index)
4190                         continue;
4191
4192                 CDEBUG(D_INFO, DFID"still has local entry %.*s "DFID"\n",
4193                        PFID(mdd_object_fid(sobj)), lname.ln_namelen,
4194                        lname.ln_name, PFID(&fid));
4195                 rc = 1;
4196                 break;
4197         }
4198
4199         RETURN(rc);
4200 }
4201
4202 static int mdd_migrate(const struct lu_env *env, struct md_object *pobj,
4203                        struct md_object *sobj, const struct lu_name *lname,
4204                        struct md_object *tobj, struct md_attr *ma)
4205 {
4206         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
4207         struct mdd_device       *mdd = mdo2mdd(pobj);
4208         struct mdd_object       *mdd_sobj = md2mdd_obj(sobj);
4209         struct mdd_object       *mdd_tobj = md2mdd_obj(tobj);
4210         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
4211         struct lu_attr          *pattr = MDD_ENV_VAR(env, pattr);
4212         bool                    created = false;
4213         int                     rc;
4214
4215         ENTRY;
4216         /* If the file will being migrated, it will check whether
4217          * the file is being opened by someone else right now */
4218         mdd_read_lock(env, mdd_sobj, MOR_SRC_CHILD);
4219         if (mdd_sobj->mod_count > 0) {
4220                 CDEBUG(D_OTHER,
4221                        "%s: "DFID"%s is already opened count %d: rc = %d\n",
4222                        mdd2obd_dev(mdd)->obd_name,
4223                        PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
4224                        mdd_sobj->mod_count, -EBUSY);
4225                 mdd_read_unlock(env, mdd_sobj);
4226                 GOTO(put, rc = -EBUSY);
4227         }
4228         mdd_read_unlock(env, mdd_sobj);
4229
4230         rc = mdd_la_get(env, mdd_sobj, so_attr);
4231         if (rc != 0)
4232                 GOTO(put, rc);
4233
4234         rc = mdd_la_get(env, mdd_pobj, pattr);
4235         if (rc != 0)
4236                 GOTO(put, rc);
4237
4238         rc = mdd_migrate_sanity_check(env, mdd_pobj, pattr, mdd_sobj, so_attr);
4239         if (rc != 0) {
4240                 if (rc > 0)
4241                         rc = 0;
4242                 GOTO(put, rc);
4243         }
4244
4245         /* Sigh, it is impossible to finish all of migration in a single
4246          * transaction, for example migrating big directory entries to the
4247          * new MDT, it needs insert all of name entries of children in the
4248          * new directory.
4249          *
4250          * So migration will be done in multiple steps and transactions.
4251          *
4252          * 1. create an orphan object on the remote MDT in one transaction.
4253          * 2. migrate extend attributes to the new target file/directory.
4254          * 3. For directory, migrate the entries to the new MDT and update
4255          * linkEA of each children. Because we can not migrate all entries
4256          * in a single transaction, so the migrating directory will become
4257          * a striped directory during migration, so once the process is
4258          * interrupted, the directory is still accessible. (During lookup,
4259          * client will locate the name by searching both original and target
4260          * object).
4261          * 4. Finally, update the name/FID to point to the new file/directory
4262          * in a separate transaction.
4263          */
4264
4265         /* step 1: Check whether the orphan object has been created, and create
4266          * orphan object on the remote MDT if needed */
4267         if (!mdd_object_exists(mdd_tobj)) {
4268                 rc = mdd_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj,
4269                                         lname, so_attr);
4270                 if (rc != 0)
4271                         GOTO(put, rc);
4272                 created = true;
4273         }
4274
4275         LASSERT(mdd_object_exists(mdd_tobj));
4276         /* step 2: migrate xattr */
4277         rc = mdd_migrate_xattrs(env, mdd_sobj, mdd_tobj);
4278         if (rc != 0)
4279                 GOTO(put, rc);
4280
4281         /* step 3: migrate name entries to the orphan object */
4282         if (S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu))) {
4283                 rc = mdd_migrate_entries(env, mdd_sobj, mdd_tobj);
4284                 if (rc != 0)
4285                         GOTO(put, rc);
4286                 if (unlikely(OBD_FAIL_CHECK_RESET(OBD_FAIL_MIGRATE_NET_REP,
4287                                                   OBD_FAIL_MDS_REINT_NET_REP)))
4288                         GOTO(put, rc = 0);
4289         } else {
4290                 OBD_FAIL_TIMEOUT(OBD_FAIL_MIGRATE_DELAY, cfs_fail_val);
4291         }
4292
4293         LASSERT(mdd_object_exists(mdd_tobj));
4294         /* step 4: update name entry to the new object */
4295         rc = mdd_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj, lname,
4296                                      ma);
4297         if (rc != 0)
4298                 GOTO(put, rc);
4299
4300         /* newly created target was not locked, don't cache its attributes */
4301         if (created)
4302                 mdd_invalidate(env, tobj);
4303 put:
4304         RETURN(rc);
4305 }
4306
4307 const struct md_dir_operations mdd_dir_ops = {
4308         .mdo_is_subdir     = mdd_is_subdir,
4309         .mdo_lookup        = mdd_lookup,
4310         .mdo_create        = mdd_create,
4311         .mdo_rename        = mdd_rename,
4312         .mdo_link          = mdd_link,
4313         .mdo_unlink        = mdd_unlink,
4314         .mdo_create_data   = mdd_create_data,
4315         .mdo_migrate       = mdd_migrate,
4316 };