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