Whamcloud - gitweb
LU-7473 acl: increase ACL entries limitation
[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         lu_buf_check_and_alloc(&info->mti_xattr_buf,
2411                                mdd->mdd_dt_conf.ddp_max_ea_size);
2412         acl_buf = info->mti_xattr_buf;
2413         def_acl_buf.lb_buf = info->mti_key;
2414         def_acl_buf.lb_len = sizeof(info->mti_key);
2415         rc = mdd_acl_init(env, mdd_pobj, attr, &def_acl_buf, &acl_buf);
2416         if (rc < 0)
2417                 GOTO(out_stop, rc);
2418
2419         mdd_object_make_hint(env, mdd_pobj, son, attr, spec, hint);
2420
2421         memset(ldata, 0, sizeof(*ldata));
2422         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_PARENT)) {
2423                 struct lu_fid tfid = *mdd_object_fid(mdd_pobj);
2424
2425                 tfid.f_oid--;
2426                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2427                                         &tfid, lname, 1, 0, ldata);
2428         } else {
2429                 rc = mdd_linkea_prepare(env, son, NULL, NULL,
2430                                         mdd_object_fid(mdd_pobj),
2431                                         lname, 1, 0, ldata);
2432         }
2433
2434         rc = mdd_declare_create(env, mdd, mdd_pobj, son, lname, attr,
2435                                 handle, spec, ldata, &def_acl_buf, &acl_buf,
2436                                 hint);
2437         if (rc)
2438                 GOTO(out_stop, rc);
2439
2440         rc = mdd_trans_start(env, mdd, handle);
2441         if (rc)
2442                 GOTO(out_stop, rc);
2443
2444         rc = mdd_object_create(env, mdd_pobj, son, attr, spec, &acl_buf,
2445                                &def_acl_buf, hint, handle);
2446         if (rc != 0)
2447                 GOTO(out_stop, rc);
2448
2449         if (unlikely(spec->sp_cr_flags & MDS_OPEN_VOLATILE)) {
2450                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2451                 son->mod_flags |= VOLATILE_OBJ;
2452                 rc = __mdd_orphan_add(env, son, handle);
2453                 GOTO(out_volatile, rc);
2454         } else {
2455                 rc = __mdd_index_insert(env, mdd_pobj, mdo2fid(son),
2456                                         attr->la_mode, name, handle);
2457                 if (rc != 0)
2458                         GOTO(err_created, rc);
2459
2460                 mdd_links_add(env, son, mdo2fid(mdd_pobj), lname, handle,
2461                               ldata, 1);
2462
2463                 /* update parent directory mtime/ctime */
2464                 *la = *attr;
2465                 la->la_valid = LA_CTIME | LA_MTIME;
2466                 rc = mdd_update_time(env, mdd_pobj, pattr, la, handle);
2467                 if (rc)
2468                         GOTO(err_insert, rc);
2469         }
2470
2471         EXIT;
2472 err_insert:
2473         if (rc != 0) {
2474                 if (spec->sp_cr_flags & MDS_OPEN_VOLATILE)
2475                         rc2 = __mdd_orphan_del(env, son, handle);
2476                 else
2477                         rc2 = __mdd_index_delete(env, mdd_pobj, name,
2478                                                  S_ISDIR(attr->la_mode),
2479                                                  handle);
2480                 if (rc2 != 0)
2481                         goto out_stop;
2482
2483 err_created:
2484                 mdd_write_lock(env, son, MOR_TGT_CHILD);
2485                 if (S_ISDIR(attr->la_mode)) {
2486                         /* Drop the reference, no need to delete "."/"..",
2487                          * because the object is to be destroyed directly. */
2488                         rc2 = mdo_ref_del(env, son, handle);
2489                         if (rc2 != 0) {
2490                                 mdd_write_unlock(env, son);
2491                                 goto out_stop;
2492                         }
2493                 }
2494 out_volatile:
2495                 /* For volatile files drop one link immediately, since there is
2496                  * no filename in the namespace, and save any error returned. */
2497                 rc2 = mdo_ref_del(env, son, handle);
2498                 if (rc2 != 0) {
2499                         mdd_write_unlock(env, son);
2500                         if (unlikely(rc == 0))
2501                                 rc = rc2;
2502                         goto out_stop;
2503                 }
2504
2505                 /* Don't destroy the volatile object on success */
2506                 if (likely(rc != 0))
2507                         mdo_destroy(env, son, handle);
2508                 mdd_write_unlock(env, son);
2509         }
2510
2511         if (rc == 0 && fid_is_namespace_visible(mdo2fid(son)) &&
2512             likely((spec->sp_cr_flags & MDS_OPEN_VOLATILE) == 0))
2513                 rc = mdd_changelog_ns_store(env, mdd,
2514                                 S_ISDIR(attr->la_mode) ? CL_MKDIR :
2515                                 S_ISREG(attr->la_mode) ? CL_CREATE :
2516                                 S_ISLNK(attr->la_mode) ? CL_SOFTLINK : CL_MKNOD,
2517                                 0, son, mdo2fid(mdd_pobj), NULL, NULL, lname,
2518                                 NULL, handle);
2519 out_stop:
2520         rc2 = mdd_trans_stop(env, mdd, rc, handle);
2521         if (rc == 0) {
2522                 /* If creation fails, it is most likely due to the remote update
2523                  * failure, because local transaction will mostly succeed at
2524                  * this stage. There is no easy way to rollback all of previous
2525                  * updates, so let's remove the object from namespace, and
2526                  * LFSCK should handle the orphan object. */
2527                 if (rc2 < 0 && !mdd_object_remote(mdd_pobj))
2528                         mdd_index_delete(env, mdd_pobj, attr, lname);
2529                 rc = rc2;
2530         }
2531 out_free:
2532         if (is_vmalloc_addr(ldata->ld_buf))
2533                 /* if we vmalloced a large buffer drop it */
2534                 lu_buf_free(ldata->ld_buf);
2535
2536         /* The child object shouldn't be cached anymore */
2537         if (rc)
2538                 set_bit(LU_OBJECT_HEARD_BANSHEE,
2539                         &child->mo_lu.lo_header->loh_flags);
2540         return rc;
2541 }
2542
2543 /*
2544  * Get locks on parents in proper order
2545  * RETURN: < 0 - error, rename_order if successful
2546  */
2547 enum rename_order {
2548         MDD_RN_SAME,
2549         MDD_RN_SRCTGT,
2550         MDD_RN_TGTSRC
2551 };
2552
2553 static int mdd_rename_order(const struct lu_env *env,
2554                             struct mdd_device *mdd,
2555                             struct mdd_object *src_pobj,
2556                             const struct lu_attr *pattr,
2557                             struct mdd_object *tgt_pobj)
2558 {
2559         /* order of locking, 1 - tgt-src, 0 - src-tgt*/
2560         int rc;
2561         ENTRY;
2562
2563         if (src_pobj == tgt_pobj)
2564                 RETURN(MDD_RN_SAME);
2565
2566         /* compared the parent child relationship of src_p&tgt_p */
2567         if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(src_pobj))){
2568                 rc = MDD_RN_SRCTGT;
2569         } else if (lu_fid_eq(&mdd->mdd_root_fid, mdo2fid(tgt_pobj))) {
2570                 rc = MDD_RN_TGTSRC;
2571         } else {
2572                 rc = mdd_is_parent(env, mdd, src_pobj, pattr, mdo2fid(tgt_pobj),
2573                                    NULL);
2574                 if (rc == -EREMOTE)
2575                         rc = 0;
2576
2577                 if (rc == 1)
2578                         rc = MDD_RN_TGTSRC;
2579                 else if (rc == 0)
2580                         rc = MDD_RN_SRCTGT;
2581         }
2582
2583         RETURN(rc);
2584 }
2585
2586 /* has not mdd_write{read}_lock on any obj yet. */
2587 static int mdd_rename_sanity_check(const struct lu_env *env,
2588                                    struct mdd_object *src_pobj,
2589                                    const struct lu_attr *pattr,
2590                                    struct mdd_object *tgt_pobj,
2591                                    const struct lu_attr *tpattr,
2592                                    struct mdd_object *sobj,
2593                                    const struct lu_attr *cattr,
2594                                    struct mdd_object *tobj,
2595                                    const struct lu_attr *tattr)
2596 {
2597         int rc = 0;
2598         ENTRY;
2599
2600         /* XXX: when get here, sobj must NOT be NULL,
2601          * the other case has been processed in cld_rename
2602          * before mdd_rename and enable MDS_PERM_BYPASS. */
2603         LASSERT(sobj);
2604
2605         /*
2606          * If we are using project inheritance, we only allow renames
2607          * into our tree when the project IDs are the same; otherwise
2608          * tree quota mechanism would be circumvented.
2609          */
2610         if (((tpattr->la_flags & LUSTRE_PROJINHERIT_FL) &&
2611             tpattr->la_projid != cattr->la_projid) ||
2612             ((pattr->la_flags & LUSTRE_PROJINHERIT_FL) &&
2613             (pattr->la_projid != tpattr->la_projid)))
2614                 RETURN(-EXDEV);
2615
2616         rc = mdd_may_delete(env, src_pobj, pattr, sobj, cattr, NULL, 1, 0);
2617         if (rc)
2618                 RETURN(rc);
2619
2620         /* XXX: when get here, "tobj == NULL" means tobj must
2621          * NOT exist (neither on remote MDS, such case has been
2622          * processed in cld_rename before mdd_rename and enable
2623          * MDS_PERM_BYPASS).
2624          * So check may_create, but not check may_unlink. */
2625         if (tobj == NULL)
2626                 rc = mdd_may_create(env, tgt_pobj, tpattr, NULL,
2627                                     (src_pobj != tgt_pobj));
2628         else
2629                 rc = mdd_may_delete(env, tgt_pobj, tpattr, tobj, tattr, cattr,
2630                                     (src_pobj != tgt_pobj), 1);
2631
2632         if (!rc && !tobj && (src_pobj != tgt_pobj) && S_ISDIR(cattr->la_mode))
2633                 rc = __mdd_may_link(env, tgt_pobj, tpattr);
2634
2635         RETURN(rc);
2636 }
2637
2638 static int mdd_declare_rename(const struct lu_env *env,
2639                               struct mdd_device *mdd,
2640                               struct mdd_object *mdd_spobj,
2641                               struct mdd_object *mdd_tpobj,
2642                               struct mdd_object *mdd_sobj,
2643                               struct mdd_object *mdd_tobj,
2644                               const struct lu_name *sname,
2645                               const struct lu_name *tname,
2646                               struct md_attr *ma,
2647                               struct linkea_data *ldata,
2648                               struct thandle *handle)
2649 {
2650         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2651         int rc;
2652
2653         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2654         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2655
2656         LASSERT(mdd_spobj);
2657         LASSERT(mdd_tpobj);
2658         LASSERT(mdd_sobj);
2659
2660         /* name from source dir */
2661         rc = mdo_declare_index_delete(env, mdd_spobj, sname->ln_name, handle);
2662         if (rc)
2663                 return rc;
2664
2665         /* .. from source child */
2666         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
2667                 /* source child can be directory,
2668                  * counted by source dir's nlink */
2669                 rc = mdo_declare_ref_del(env, mdd_spobj, handle);
2670                 if (rc)
2671                         return rc;
2672                 if (mdd_spobj != mdd_tpobj) {
2673                         rc = mdo_declare_index_delete(env, mdd_sobj, dotdot,
2674                                                       handle);
2675                         if (rc != 0)
2676                                 return rc;
2677
2678                         rc = mdo_declare_index_insert(env, mdd_sobj,
2679                                                       mdo2fid(mdd_tpobj),
2680                                                       S_IFDIR, dotdot, handle);
2681                         if (rc != 0)
2682                                 return rc;
2683                 }
2684
2685                 /* new target child can be directory,
2686                  * counted by target dir's nlink */
2687                 rc = mdo_declare_ref_add(env, mdd_tpobj, handle);
2688                 if (rc != 0)
2689                         return rc;
2690         }
2691
2692         la->la_valid = LA_CTIME | LA_MTIME;
2693         rc = mdo_declare_attr_set(env, mdd_spobj, la, handle);
2694         if (rc != 0)
2695                 return rc;
2696
2697         rc = mdo_declare_attr_set(env, mdd_tpobj, la, handle);
2698         if (rc != 0)
2699                 return rc;
2700
2701         la->la_valid = LA_CTIME;
2702         rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
2703         if (rc)
2704                 return rc;
2705
2706         rc = mdd_declare_links_add(env, mdd_sobj, handle, ldata);
2707         if (rc)
2708                 return rc;
2709
2710         /* new name */
2711         rc = mdo_declare_index_insert(env, mdd_tpobj, mdo2fid(mdd_sobj),
2712                                       mdd_object_type(mdd_sobj),
2713                                       tname->ln_name, handle);
2714         if (rc != 0)
2715                 return rc;
2716
2717         if (mdd_tobj && mdd_object_exists(mdd_tobj)) {
2718                 /* delete target child in target parent directory */
2719                 rc = mdo_declare_index_delete(env, mdd_tpobj, tname->ln_name,
2720                                               handle);
2721                 if (rc)
2722                         return rc;
2723
2724                 rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2725                 if (rc)
2726                         return rc;
2727
2728                 if (S_ISDIR(mdd_object_type(mdd_tobj))) {
2729                         /* target child can be directory,
2730                          * delete "." reference in target child directory */
2731                         rc = mdo_declare_ref_del(env, mdd_tobj, handle);
2732                         if (rc)
2733                                 return rc;
2734
2735                         /* delete ".." reference in target parent directory */
2736                         rc = mdo_declare_ref_del(env, mdd_tpobj, handle);
2737                         if (rc)
2738                                 return rc;
2739                 }
2740
2741                 la->la_valid = LA_CTIME;
2742                 rc = mdo_declare_attr_set(env, mdd_tobj, la, handle);
2743                 if (rc)
2744                         return rc;
2745
2746                 rc = mdd_declare_finish_unlink(env, mdd_tobj, handle);
2747                 if (rc)
2748                         return rc;
2749         }
2750
2751         rc = mdd_declare_changelog_store(env, mdd, tname, sname, handle);
2752         if (rc)
2753                 return rc;
2754
2755         return rc;
2756 }
2757
2758 /* src object can be remote that is why we use only fid and type of object */
2759 static int mdd_rename(const struct lu_env *env,
2760                       struct md_object *src_pobj, struct md_object *tgt_pobj,
2761                       const struct lu_fid *lf, const struct lu_name *lsname,
2762                       struct md_object *tobj, const struct lu_name *ltname,
2763                       struct md_attr *ma)
2764 {
2765         const char *sname = lsname->ln_name;
2766         const char *tname = ltname->ln_name;
2767         struct lu_attr    *la = &mdd_env_info(env)->mti_la_for_fix;
2768         struct mdd_object *mdd_spobj = md2mdd_obj(src_pobj); /* source parent */
2769         struct mdd_object *mdd_tpobj = md2mdd_obj(tgt_pobj);
2770         struct mdd_device *mdd = mdo2mdd(src_pobj);
2771         struct mdd_object *mdd_sobj = NULL;                  /* source object */
2772         struct mdd_object *mdd_tobj = NULL;
2773         struct lu_attr *cattr = MDD_ENV_VAR(env, cattr);
2774         struct lu_attr *pattr = MDD_ENV_VAR(env, pattr);
2775         struct lu_attr *tattr = MDD_ENV_VAR(env, tattr);
2776         struct lu_attr *tpattr = MDD_ENV_VAR(env, tpattr);
2777         struct thandle *handle;
2778         struct linkea_data  *ldata = &mdd_env_info(env)->mti_link_data;
2779         const struct lu_fid *tpobj_fid = mdo2fid(mdd_tpobj);
2780         const struct lu_fid *spobj_fid = mdo2fid(mdd_spobj);
2781         bool is_dir;
2782         bool tobj_ref = 0;
2783         bool tobj_locked = 0;
2784         unsigned cl_flags = 0;
2785         int rc, rc2;
2786         ENTRY;
2787
2788         if (tobj)
2789                 mdd_tobj = md2mdd_obj(tobj);
2790
2791         mdd_sobj = mdd_object_find(env, mdd, lf);
2792         if (IS_ERR(mdd_sobj))
2793                 RETURN(PTR_ERR(mdd_sobj));
2794
2795         rc = mdd_la_get(env, mdd_sobj, cattr);
2796         if (rc)
2797                 GOTO(out_pending, rc);
2798
2799         rc = mdd_la_get(env, mdd_spobj, pattr);
2800         if (rc)
2801                 GOTO(out_pending, rc);
2802
2803         if (mdd_tobj) {
2804                 rc = mdd_la_get(env, mdd_tobj, tattr);
2805                 if (rc)
2806                         GOTO(out_pending, rc);
2807                 /* search for an existing archive.
2808                  * we should check ahead as the object
2809                  * can be destroyed in this transaction */
2810                 if (mdd_hsm_archive_exists(env, mdd_tobj, ma))
2811                         cl_flags |= CLF_RENAME_LAST_EXISTS;
2812         }
2813
2814         rc = mdd_la_get(env, mdd_tpobj, tpattr);
2815         if (rc)
2816                 GOTO(out_pending, rc);
2817
2818         rc = mdd_rename_sanity_check(env, mdd_spobj, pattr, mdd_tpobj, tpattr,
2819                                      mdd_sobj, cattr, mdd_tobj, tattr);
2820         if (rc)
2821                 GOTO(out_pending, rc);
2822
2823         rc = mdd_name_check(mdd, ltname);
2824         if (rc < 0)
2825                 GOTO(out_pending, rc);
2826
2827         /* FIXME: Should consider tobj and sobj too in rename_lock. */
2828         rc = mdd_rename_order(env, mdd, mdd_spobj, pattr, mdd_tpobj);
2829         if (rc < 0)
2830                 GOTO(out_pending, rc);
2831
2832         handle = mdd_trans_create(env, mdd);
2833         if (IS_ERR(handle))
2834                 GOTO(out_pending, rc = PTR_ERR(handle));
2835
2836         memset(ldata, 0, sizeof(*ldata));
2837         rc = mdd_linkea_prepare(env, mdd_sobj, mdd_object_fid(mdd_spobj),
2838                                 lsname, mdd_object_fid(mdd_tpobj), ltname,
2839                                 1, 0, ldata);
2840         if (rc)
2841                 GOTO(stop, rc);
2842
2843         rc = mdd_declare_rename(env, mdd, mdd_spobj, mdd_tpobj, mdd_sobj,
2844                                 mdd_tobj, lsname, ltname, ma, ldata, handle);
2845         if (rc)
2846                 GOTO(stop, rc);
2847
2848         rc = mdd_trans_start(env, mdd, handle);
2849         if (rc)
2850                 GOTO(stop, rc);
2851
2852         is_dir = S_ISDIR(cattr->la_mode);
2853
2854         /* Remove source name from source directory */
2855         rc = __mdd_index_delete(env, mdd_spobj, sname, is_dir, handle);
2856         if (rc != 0)
2857                 GOTO(stop, rc);
2858
2859         /* "mv dir1 dir2" needs "dir1/.." link update */
2860         if (is_dir && !lu_fid_eq(spobj_fid, tpobj_fid)) {
2861                 rc = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
2862                 if (rc != 0)
2863                         GOTO(fixup_spobj2, rc);
2864
2865                 rc = __mdd_index_insert_only(env, mdd_sobj, tpobj_fid, S_IFDIR,
2866                                              dotdot, handle);
2867                 if (rc != 0)
2868                         GOTO(fixup_spobj, rc);
2869         }
2870
2871         if (mdd_tobj != NULL && mdd_object_exists(mdd_tobj)) {
2872                 rc = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
2873                 if (rc != 0)
2874                         /* tname might been renamed to something else */
2875                         GOTO(fixup_spobj, rc);
2876         }
2877
2878         /* Insert new fid with target name into target dir */
2879         rc = __mdd_index_insert(env, mdd_tpobj, lf, cattr->la_mode,
2880                                 tname, handle);
2881         if (rc != 0)
2882                 GOTO(fixup_tpobj, rc);
2883
2884         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
2885         la->la_ctime = la->la_mtime = ma->ma_attr.la_ctime;
2886
2887         /* XXX: mdd_sobj must be local one if it is NOT NULL. */
2888         la->la_valid = LA_CTIME;
2889         rc = mdd_update_time(env, mdd_sobj, cattr, la, handle);
2890         if (rc)
2891                 GOTO(fixup_tpobj, rc);
2892
2893         /* Update the linkEA for the source object */
2894         mdd_write_lock(env, mdd_sobj, MOR_SRC_CHILD);
2895         rc = mdd_links_rename(env, mdd_sobj, mdo2fid(mdd_spobj), lsname,
2896                               mdo2fid(mdd_tpobj), ltname, handle, ldata,
2897                               0, 0);
2898         if (rc == -ENOENT)
2899                 /* Old files might not have EA entry */
2900                 mdd_links_add(env, mdd_sobj, mdo2fid(mdd_spobj),
2901                               lsname, handle, NULL, 0);
2902         mdd_write_unlock(env, mdd_sobj);
2903         /* We don't fail the transaction if the link ea can't be
2904            updated -- fid2path will use alternate lookup method. */
2905         rc = 0;
2906
2907         /* Remove old target object
2908          * For tobj is remote case cmm layer has processed
2909          * and set tobj to NULL then. So when tobj is NOT NULL,
2910          * it must be local one.
2911          */
2912         if (tobj && mdd_object_exists(mdd_tobj)) {
2913                 mdd_write_lock(env, mdd_tobj, MOR_TGT_CHILD);
2914                 tobj_locked = 1;
2915                 if (mdd_is_dead_obj(mdd_tobj)) {
2916                         /* shld not be dead, something is wrong */
2917                         CERROR("tobj is dead, something is wrong\n");
2918                         rc = -EINVAL;
2919                         goto cleanup;
2920                 }
2921                 mdo_ref_del(env, mdd_tobj, handle);
2922
2923                 /* Remove dot reference. */
2924                 if (S_ISDIR(tattr->la_mode))
2925                         mdo_ref_del(env, mdd_tobj, handle);
2926                 tobj_ref = 1;
2927
2928                 /* fetch updated nlink */
2929                 rc = mdd_la_get(env, mdd_tobj, tattr);
2930                 if (rc != 0) {
2931                         CERROR("%s: Failed to get nlink for tobj "
2932                                 DFID": rc = %d\n",
2933                                 mdd2obd_dev(mdd)->obd_name,
2934                                 PFID(tpobj_fid), rc);
2935                         GOTO(fixup_tpobj, rc);
2936                 }
2937
2938                 la->la_valid = LA_CTIME;
2939                 rc = mdd_update_time(env, mdd_tobj, tattr, la, handle);
2940                 if (rc != 0) {
2941                         CERROR("%s: Failed to set ctime for tobj "
2942                                 DFID": rc = %d\n",
2943                                 mdd2obd_dev(mdd)->obd_name,
2944                                 PFID(tpobj_fid), rc);
2945                         GOTO(fixup_tpobj, rc);
2946                 }
2947
2948                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2949                 ma->ma_attr = *tattr;
2950                 ma->ma_valid |= MA_INODE;
2951                 rc = mdd_finish_unlink(env, mdd_tobj, ma, mdd_tpobj, ltname,
2952                                        handle);
2953                 if (rc != 0) {
2954                         CERROR("%s: Failed to unlink tobj "
2955                                 DFID": rc = %d\n",
2956                                 mdd2obd_dev(mdd)->obd_name,
2957                                 PFID(tpobj_fid), rc);
2958                         GOTO(fixup_tpobj, rc);
2959                 }
2960
2961                 /* fetch updated nlink */
2962                 rc = mdd_la_get(env, mdd_tobj, tattr);
2963                 if (rc == -ENOENT) {
2964                         /* the object got removed, let's
2965                          * return the latest known attributes */
2966                         tattr->la_nlink = 0;
2967                         rc = 0;
2968                 } else if (rc != 0) {
2969                         CERROR("%s: Failed to get nlink for tobj "
2970                                 DFID": rc = %d\n",
2971                                 mdd2obd_dev(mdd)->obd_name,
2972                                 PFID(tpobj_fid), rc);
2973                         GOTO(fixup_tpobj, rc);
2974                 }
2975                 /* XXX: this transfer to ma will be removed with LOD/OSP */
2976                 ma->ma_attr = *tattr;
2977                 ma->ma_valid |= MA_INODE;
2978
2979                 if (tattr->la_nlink == 0)
2980                         cl_flags |= CLF_RENAME_LAST;
2981                 else
2982                         cl_flags &= ~CLF_RENAME_LAST_EXISTS;
2983         }
2984
2985         la->la_valid = LA_CTIME | LA_MTIME;
2986         rc = mdd_update_time(env, mdd_spobj, pattr, la, handle);
2987         if (rc)
2988                 GOTO(fixup_tpobj, rc);
2989
2990         if (mdd_spobj != mdd_tpobj) {
2991                 la->la_valid = LA_CTIME | LA_MTIME;
2992                 rc = mdd_update_time(env, mdd_tpobj, tpattr, la, handle);
2993                 if (rc != 0)
2994                         GOTO(fixup_tpobj, rc);
2995         }
2996
2997         EXIT;
2998
2999 fixup_tpobj:
3000         if (rc) {
3001                 rc2 = __mdd_index_delete(env, mdd_tpobj, tname, is_dir, handle);
3002                 if (rc2)
3003                         CWARN("tp obj fix error %d\n",rc2);
3004
3005                 if (mdd_tobj && mdd_object_exists(mdd_tobj) &&
3006                     !mdd_is_dead_obj(mdd_tobj)) {
3007                         if (tobj_ref) {
3008                                 mdo_ref_add(env, mdd_tobj, handle);
3009                                 if (is_dir)
3010                                         mdo_ref_add(env, mdd_tobj, handle);
3011                         }
3012
3013                         rc2 = __mdd_index_insert(env, mdd_tpobj,
3014                                                   mdo2fid(mdd_tobj),
3015                                                   mdd_object_type(mdd_tobj),
3016                                                   tname, handle);
3017                         if (rc2 != 0)
3018                                 CWARN("tp obj fix error: rc = %d\n", rc2);
3019                 }
3020         }
3021
3022 fixup_spobj:
3023         if (rc && is_dir && mdd_sobj && mdd_spobj != mdd_tpobj) {
3024                 rc2 = __mdd_index_delete_only(env, mdd_sobj, dotdot, handle);
3025                 if (rc2)
3026                         CWARN("%s: sp obj dotdot delete error: rc = %d\n",
3027                                mdd2obd_dev(mdd)->obd_name, rc2);
3028
3029
3030                 rc2 = __mdd_index_insert_only(env, mdd_sobj, spobj_fid, S_IFDIR,
3031                                               dotdot, handle);
3032                 if (rc2 != 0)
3033                         CWARN("%s: sp obj dotdot insert error: rc = %d\n",
3034                               mdd2obd_dev(mdd)->obd_name, rc2);
3035         }
3036
3037 fixup_spobj2:
3038         if (rc != 0) {
3039                 rc2 = __mdd_index_insert(env, mdd_spobj, lf,
3040                                          mdd_object_type(mdd_sobj), sname,
3041                                          handle);
3042                 if (rc2 != 0)
3043                         CWARN("sp obj fix error: rc = %d\n", rc2);
3044         }
3045
3046 cleanup:
3047         if (tobj_locked)
3048                 mdd_write_unlock(env, mdd_tobj);
3049
3050         if (rc == 0)
3051                 rc = mdd_changelog_ns_store(env, mdd, CL_RENAME, cl_flags,
3052                                             mdd_tobj, tpobj_fid, lf, spobj_fid,
3053                                             ltname, lsname, handle);
3054
3055 stop:
3056         rc = mdd_trans_stop(env, mdd, rc, handle);
3057
3058 out_pending:
3059         mdd_object_put(env, mdd_sobj);
3060         return rc;
3061 }
3062
3063 /**
3064  * During migration once the parent FID has been changed,
3065  * we need update the parent FID in linkea.
3066  **/
3067 static int mdd_linkea_update_child_internal(const struct lu_env *env,
3068                                             struct mdd_object *parent,
3069                                             struct mdd_object *newparent,
3070                                             struct mdd_object *child,
3071                                             const char *name, int namelen,
3072                                             struct thandle *handle,
3073                                             bool declare)
3074 {
3075         struct mdd_thread_info  *info = mdd_env_info(env);
3076         struct linkea_data      ldata = { NULL };
3077         struct lu_buf           *buf = &info->mti_link_buf;
3078         int                     count;
3079         int                     rc = 0;
3080
3081         ENTRY;
3082
3083         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
3084         if (buf->lb_buf == NULL)
3085                 RETURN(-ENOMEM);
3086
3087         ldata.ld_buf = buf;
3088         rc = mdd_links_read(env, child, &ldata);
3089         if (rc != 0) {
3090                 if (rc == -ENOENT || rc == -ENODATA)
3091                         rc = 0;
3092                 RETURN(rc);
3093         }
3094
3095         LASSERT(ldata.ld_leh != NULL);
3096         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
3097         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
3098                 struct mdd_device *mdd = mdo2mdd(&child->mod_obj);
3099                 struct lu_name lname;
3100                 struct lu_fid  fid;
3101
3102                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
3103                                     &lname, &fid);
3104
3105                 if (strncmp(lname.ln_name, name, namelen) != 0 ||
3106                     !lu_fid_eq(&fid, mdd_object_fid(parent))) {
3107                         ldata.ld_lee = (struct link_ea_entry *)
3108                                        ((char *)ldata.ld_lee +
3109                                         ldata.ld_reclen);
3110                         continue;
3111                 }
3112
3113                 CDEBUG(D_INFO, "%s: update "DFID" with %.*s:"DFID"\n",
3114                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(child)),
3115                        lname.ln_namelen, lname.ln_name,
3116                        PFID(mdd_object_fid(newparent)));
3117                 /* update to the new parent fid */
3118                 linkea_entry_pack(ldata.ld_lee, &lname,
3119                                   mdd_object_fid(newparent));
3120                 if (declare)
3121                         rc = mdd_declare_links_add(env, child, handle, &ldata);
3122                 else
3123                         rc = mdd_links_write(env, child, &ldata, handle);
3124                 break;
3125         }
3126         RETURN(rc);
3127 }
3128
3129 static int mdd_linkea_declare_update_child(const struct lu_env *env,
3130                                            struct mdd_object *parent,
3131                                            struct mdd_object *newparent,
3132                                            struct mdd_object *child,
3133                                            const char *name, int namelen,
3134                                            struct thandle *handle)
3135 {
3136         return mdd_linkea_update_child_internal(env, parent, newparent,
3137                                                 child, name,
3138                                                 namelen, handle, true);
3139 }
3140
3141 static int mdd_linkea_update_child(const struct lu_env *env,
3142                                    struct mdd_object *parent,
3143                                    struct mdd_object *newparent,
3144                                    struct mdd_object *child,
3145                                    const char *name, int namelen,
3146                                    struct thandle *handle)
3147 {
3148         return mdd_linkea_update_child_internal(env, parent, newparent,
3149                                                 child, name,
3150                                                 namelen, handle, false);
3151 }
3152
3153 static int mdd_update_linkea_internal(const struct lu_env *env,
3154                                       struct mdd_object *mdd_pobj,
3155                                       struct mdd_object *mdd_sobj,
3156                                       struct mdd_object *mdd_tobj,
3157                                       const struct lu_name *child_name,
3158                                       struct linkea_data *ldata,
3159                                       struct thandle *handle,
3160                                       int declare)
3161 {
3162         struct mdd_thread_info  *info = mdd_env_info(env);
3163         int                     count;
3164         int                     rc = 0;
3165         ENTRY;
3166
3167         LASSERT(ldata->ld_buf != NULL);
3168         LASSERT(ldata->ld_leh != NULL);
3169
3170         /* If it is mulitple links file, we need update the name entry for
3171          * all parent */
3172         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
3173         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
3174                 struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3175                 struct mdd_object       *pobj;
3176                 struct lu_name          lname;
3177                 struct lu_fid           fid;
3178
3179                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
3180                                     &lname, &fid);
3181                 pobj = mdd_object_find(env, mdd, &fid);
3182                 if (IS_ERR(pobj)) {
3183                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
3184                               mdd2obd_dev(mdd)->obd_name, PFID(&fid),
3185                               PTR_ERR(pobj));
3186                         continue;
3187                 }
3188
3189                 if (!mdd_object_exists(pobj)) {
3190                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
3191                               mdd2obd_dev(mdd)->obd_name, PFID(&fid));
3192                         goto next_put;
3193                 }
3194
3195                 if (pobj == mdd_pobj &&
3196                     lname.ln_namelen == child_name->ln_namelen &&
3197                     strncmp(lname.ln_name, child_name->ln_name,
3198                             lname.ln_namelen) == 0) {
3199                         CDEBUG(D_INFO, "%s: skip its own %s: "DFID"\n",
3200                               mdd2obd_dev(mdd)->obd_name, child_name->ln_name,
3201                               PFID(&fid));
3202                         goto next_put;
3203                 }
3204
3205                 CDEBUG(D_INFO, "%s: update "DFID" with "DNAME":"DFID"\n",
3206                        mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(pobj)),
3207                        PNAME(&lname), PFID(mdd_object_fid(mdd_tobj)));
3208
3209                 if (declare) {
3210                         /* Remove source name from source directory */
3211                         /* Insert new fid with target name into target dir */
3212                         rc = mdo_declare_index_delete(env, pobj, lname.ln_name,
3213                                                       handle);
3214                         if (rc != 0)
3215                                 GOTO(next_put, rc);
3216
3217                         rc = mdo_declare_index_insert(env, pobj,
3218                                         mdd_object_fid(mdd_tobj),
3219                                         mdd_object_type(mdd_tobj),
3220                                         lname.ln_name, handle);
3221                         if (rc != 0)
3222                                 GOTO(next_put, rc);
3223
3224                         rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3225                         if (rc)
3226                                 GOTO(next_put, rc);
3227
3228                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3229                         if (rc)
3230                                 GOTO(next_put, rc);
3231                 } else {
3232                         char *tmp_name = info->mti_key;
3233
3234                         if (lname.ln_namelen >= sizeof(info->mti_key)) {
3235                                 /* lnamelen is too big(> NAME_MAX + 16),
3236                                  * something wrong about this linkea, let's
3237                                  * skip it */
3238                                 CWARN("%s: the name %.*s is too long under "
3239                                       DFID"\n", mdd2obd_dev(mdd)->obd_name,
3240                                       lname.ln_namelen, lname.ln_name,
3241                                       PFID(&fid));
3242                                 goto next_put;
3243                         }
3244
3245                         /* Note: lname might be without \0 at the end, see
3246                          * linkea_entry_unpack(), let's add extra \0 by
3247                          * snprintf */
3248                         snprintf(tmp_name, sizeof(info->mti_key), "%.*s",
3249                                  lname.ln_namelen, lname.ln_name);
3250                         lname.ln_name = tmp_name;
3251
3252                         /* Let's check if this linkEA still valid, before
3253                          * it might be packed into the RPC buffer. */
3254                         rc = mdd_lookup(env, &pobj->mod_obj, &lname,
3255                                         &info->mti_fid, NULL);
3256                         if (rc < 0 || !lu_fid_eq(&info->mti_fid,
3257                                                  mdd_object_fid(mdd_sobj)))
3258                                 GOTO(next_put, rc == -ENOENT ? 0 : rc);
3259
3260                         rc = __mdd_index_delete(env, pobj, tmp_name, 0, handle);
3261                         if (rc != 0)
3262                                 GOTO(next_put, rc);
3263
3264                         rc = __mdd_index_insert(env, pobj,
3265                                         mdd_object_fid(mdd_tobj),
3266                                         mdd_object_type(mdd_tobj),
3267                                         tmp_name, handle);
3268                         if (rc != 0)
3269                                 GOTO(next_put, rc);
3270
3271                         mdd_write_lock(env, mdd_tobj, MOR_SRC_CHILD);
3272                         rc = mdo_ref_add(env, mdd_tobj, handle);
3273                         mdd_write_unlock(env, mdd_tobj);
3274                         if (rc)
3275                                 GOTO(next_put, rc);
3276
3277                         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
3278                         mdo_ref_del(env, mdd_sobj, handle);
3279                         mdd_write_unlock(env, mdd_sobj);
3280                 }
3281 next_put:
3282                 mdd_object_put(env, pobj);
3283                 if (rc != 0)
3284                         break;
3285
3286                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
3287                                                          ldata->ld_reclen);
3288         }
3289
3290         RETURN(rc);
3291 }
3292
3293 static int mdd_migrate_xattrs(const struct lu_env *env,
3294                               struct mdd_object *mdd_sobj,
3295                               struct mdd_object *mdd_tobj)
3296 {
3297         struct mdd_thread_info  *info = mdd_env_info(env);
3298         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3299         char                    *xname;
3300         struct thandle          *handle;
3301         struct lu_buf           xbuf;
3302         int                     xlen;
3303         int                     rem;
3304         int                     xsize;
3305         int                     list_xsize;
3306         struct lu_buf           list_xbuf;
3307         int                     rc;
3308
3309         /* retrieve xattr list from the old object */
3310         list_xsize = mdo_xattr_list(env, mdd_sobj, &LU_BUF_NULL);
3311         if (list_xsize == -ENODATA)
3312                 return 0;
3313
3314         if (list_xsize < 0)
3315                 return list_xsize;
3316
3317         lu_buf_check_and_alloc(&info->mti_big_buf, list_xsize);
3318         if (info->mti_big_buf.lb_buf == NULL)
3319                 return -ENOMEM;
3320
3321         list_xbuf.lb_buf = info->mti_big_buf.lb_buf;
3322         list_xbuf.lb_len = list_xsize;
3323         rc = mdo_xattr_list(env, mdd_sobj, &list_xbuf);
3324         if (rc < 0)
3325                 return rc;
3326         rc = 0;
3327         rem = list_xsize;
3328         xname = list_xbuf.lb_buf;
3329         while (rem > 0) {
3330                 xlen = strnlen(xname, rem - 1) + 1;
3331                 if (strcmp(XATTR_NAME_LMA, xname) == 0 ||
3332                     strcmp(XATTR_NAME_LMV, xname) == 0)
3333                         goto next;
3334
3335                 /* For directory, if there are default layout, migrate here */
3336                 if (strcmp(XATTR_NAME_LOV, xname) == 0 &&
3337                     !S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu)))
3338                         goto next;
3339
3340                 xsize = mdo_xattr_get(env, mdd_sobj, &LU_BUF_NULL, xname);
3341                 if (xsize == -ENODATA)
3342                         goto next;
3343                 if (xsize < 0)
3344                         GOTO(out, rc);
3345
3346                 lu_buf_check_and_alloc(&info->mti_link_buf, xsize);
3347                 if (info->mti_link_buf.lb_buf == NULL)
3348                         GOTO(out, rc = -ENOMEM);
3349
3350                 xbuf.lb_len = xsize;
3351                 xbuf.lb_buf = info->mti_link_buf.lb_buf;
3352                 rc = mdo_xattr_get(env, mdd_sobj, &xbuf, xname);
3353                 if (rc == -ENODATA)
3354                         goto next;
3355                 if (rc < 0)
3356                         GOTO(out, rc);
3357
3358                 handle = mdd_trans_create(env, mdd);
3359                 if (IS_ERR(handle))
3360                         GOTO(out, rc = PTR_ERR(handle));
3361
3362                 rc = mdo_declare_xattr_set(env, mdd_tobj, &xbuf, xname, 0,
3363                                            handle);
3364                 if (rc != 0)
3365                         GOTO(stop_trans, rc);
3366                 /* Note: this transaction is part of migration, and it is not
3367                  * the last step of migration, so we set th_local = 1 to avoid
3368                  * update last rcvd for this transaction */
3369                 handle->th_local = 1;
3370                 rc = mdd_trans_start(env, mdd, handle);
3371                 if (rc != 0)
3372                         GOTO(stop_trans, rc);
3373
3374 again:
3375                 rc = mdo_xattr_set(env, mdd_tobj, &xbuf, xname, 0, handle);
3376                 if (rc == -EEXIST)
3377                         GOTO(stop_trans, rc = 0);
3378
3379                 if (unlikely(rc == -ENOSPC &&
3380                              strcmp(xname, XATTR_NAME_LINK) == 0)) {
3381                         rc = linkea_overflow_shrink(
3382                                         (struct linkea_data *)(xbuf.lb_buf));
3383                         if (likely(rc > 0)) {
3384                                 xbuf.lb_len = rc;
3385                                 goto again;
3386                         }
3387                 }
3388
3389                 if (rc != 0)
3390                         GOTO(stop_trans, rc);
3391 stop_trans:
3392                 rc = mdd_trans_stop(env, mdd, rc, handle);
3393                 if (rc != 0)
3394                         GOTO(out, rc);
3395 next:
3396                 rem -= xlen;
3397                 memmove(xname, xname + xlen, rem);
3398         }
3399 out:
3400         return rc;
3401 }
3402
3403 static int mdd_declare_migrate_create(const struct lu_env *env,
3404                                       struct mdd_object *mdd_pobj,
3405                                       struct mdd_object *mdd_sobj,
3406                                       struct mdd_object *mdd_tobj,
3407                                       struct md_op_spec *spec,
3408                                       struct lu_attr *la,
3409                                       union lmv_mds_md *mgr_ea,
3410                                       struct linkea_data *ldata,
3411                                       struct thandle *handle)
3412 {
3413         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3414         const struct lu_buf     *buf;
3415         int                     rc;
3416         int                     mgr_easize;
3417
3418         rc = mdd_declare_object_create_internal(env, mdd_pobj, mdd_tobj, la,
3419                                                 handle, spec, NULL);
3420         if (rc != 0)
3421                 return rc;
3422
3423         rc = mdd_declare_object_initialize(env, mdd_pobj, mdd_tobj, la,
3424                                            handle);
3425         if (rc != 0)
3426                 return rc;
3427
3428         if (S_ISLNK(la->la_mode)) {
3429                 const char *target_name = spec->u.sp_symname;
3430                 int sym_len = strlen(target_name);
3431                 const struct lu_buf *buf;
3432
3433                 buf = mdd_buf_get_const(env, target_name, sym_len);
3434                 rc = dt_declare_record_write(env, mdd_object_child(mdd_tobj),
3435                                              buf, 0, handle);
3436                 if (rc != 0)
3437                         return rc;
3438         } else if (S_ISDIR(la->la_mode) && ldata != NULL) {
3439                 rc = mdd_declare_links_add(env, mdd_tobj, handle, ldata);
3440                 if (rc != 0)
3441                         return rc;
3442         }
3443
3444         if (spec->u.sp_ea.eadata != NULL && spec->u.sp_ea.eadatalen != 0) {
3445                 buf = mdd_buf_get_const(env, spec->u.sp_ea.eadata,
3446                                         spec->u.sp_ea.eadatalen);
3447                 rc = mdo_declare_xattr_set(env, mdd_tobj, buf, XATTR_NAME_LOV,
3448                                            0, handle);
3449                 if (rc)
3450                         return rc;
3451         }
3452
3453         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3454         buf = mdd_buf_get_const(env, mgr_ea, mgr_easize);
3455         rc = mdo_declare_xattr_set(env, mdd_sobj, buf, XATTR_NAME_LMV,
3456                                    0, handle);
3457         if (rc)
3458                 return rc;
3459
3460         la_flag->la_valid = LA_FLAGS;
3461         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3462         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3463
3464         return rc;
3465 }
3466
3467 static int mdd_migrate_create(const struct lu_env *env,
3468                               struct mdd_object *mdd_pobj,
3469                               struct mdd_object *mdd_sobj,
3470                               struct mdd_object *mdd_tobj,
3471                               const struct lu_name *lname,
3472                               struct lu_attr *la)
3473 {
3474         struct mdd_thread_info  *info = mdd_env_info(env);
3475         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3476         struct md_op_spec       *spec = &info->mti_spec;
3477         struct lu_buf           lmm_buf = { NULL };
3478         struct lu_buf           link_buf = { NULL };
3479         struct lu_buf            mgr_buf;
3480         struct thandle          *handle;
3481         struct lmv_mds_md_v1    *mgr_ea;
3482         struct lu_attr          *la_flag = MDD_ENV_VAR(env, la_for_fix);
3483         struct dt_allocation_hint *hint = &mdd_env_info(env)->mti_hint;
3484         int                     mgr_easize;
3485         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3486         int                     rc;
3487         ENTRY;
3488
3489         /* prepare spec for create */
3490         memset(spec, 0, sizeof(*spec));
3491         spec->sp_cr_lookup = 0;
3492         spec->sp_feat = &dt_directory_features;
3493         if (S_ISLNK(la->la_mode)) {
3494                 const struct lu_buf *buf;
3495
3496                 buf = lu_buf_check_and_alloc(
3497                                 &mdd_env_info(env)->mti_big_buf,
3498                                 la->la_size + 1);
3499                 link_buf = *buf;
3500                 link_buf.lb_len = la->la_size + 1;
3501                 memset(link_buf.lb_buf, 0, link_buf.lb_len);
3502                 rc = mdd_readlink(env, &mdd_sobj->mod_obj, &link_buf);
3503                 if (rc <= 0) {
3504                         rc = rc != 0 ? rc : -EFAULT;
3505                         CERROR("%s: "DFID" readlink failed: rc = %d\n",
3506                                mdd2obd_dev(mdd)->obd_name,
3507                                PFID(mdd_object_fid(mdd_sobj)), rc);
3508                         RETURN(rc);
3509                 }
3510                 spec->u.sp_symname = link_buf.lb_buf;
3511         } else if (S_ISREG(la->la_mode)) {
3512                 /* retrieve lov of the old object */
3513                 rc = mdd_get_lov_ea(env, mdd_sobj, &lmm_buf);
3514                 if (rc != 0 && rc != -ENODATA)
3515                         RETURN(rc);
3516                 if (lmm_buf.lb_buf != NULL && lmm_buf.lb_len != 0) {
3517                         spec->u.sp_ea.eadata = lmm_buf.lb_buf;
3518                         spec->u.sp_ea.eadatalen = lmm_buf.lb_len;
3519                         spec->sp_cr_flags |= MDS_OPEN_HAS_EA;
3520                 }
3521         } else if (S_ISDIR(la->la_mode)) {
3522                 rc = mdd_links_read_with_rec(env, mdd_sobj, ldata);
3523                 if (rc == -ENODATA) {
3524                         /* ignore the non-linkEA error */
3525                         ldata = NULL;
3526                         rc = 0;
3527                 }
3528                 if (rc < 0)
3529                         RETURN(rc);
3530         }
3531
3532         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
3533         lu_buf_check_and_alloc(&info->mti_xattr_buf, mgr_easize);
3534         mgr_buf.lb_buf = info->mti_xattr_buf.lb_buf;
3535         mgr_buf.lb_len = mgr_easize;
3536         mgr_ea = mgr_buf.lb_buf;
3537         memset(mgr_ea, 0, sizeof(*mgr_ea));
3538         mgr_ea->lmv_magic = cpu_to_le32(LMV_MAGIC_V1);
3539         mgr_ea->lmv_stripe_count = cpu_to_le32(2);
3540         mgr_ea->lmv_master_mdt_index = mdd_seq_site(mdd)->ss_node_id;
3541         mgr_ea->lmv_hash_type = cpu_to_le32(LMV_HASH_FLAG_MIGRATION);
3542         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[0], mdd_object_fid(mdd_sobj));
3543         fid_cpu_to_le(&mgr_ea->lmv_stripe_fids[1], mdd_object_fid(mdd_tobj));
3544
3545         mdd_object_make_hint(env, mdd_pobj, mdd_tobj, la, spec, hint);
3546
3547         handle = mdd_trans_create(env, mdd);
3548         if (IS_ERR(handle))
3549                 GOTO(out_free, rc = PTR_ERR(handle));
3550
3551         /* Note: this transaction is part of migration, and it is not
3552          * the last step of migration, so we set th_local = 1 to avoid
3553          * update last rcvd for this transaction */
3554         handle->th_local = 1;
3555         rc = mdd_declare_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj, spec,
3556                                         la, mgr_buf.lb_buf, ldata, handle);
3557         if (rc != 0)
3558                 GOTO(stop_trans, rc);
3559
3560         rc = mdd_trans_start(env, mdd, handle);
3561         if (rc != 0)
3562                 GOTO(stop_trans, rc);
3563
3564         /* don't set nlink from the original object */
3565         la->la_valid &= ~LA_NLINK;
3566
3567         /* create the target object */
3568         rc = mdd_object_create(env, mdd_pobj, mdd_tobj, la, spec, NULL, NULL,
3569                                hint, handle);
3570         if (rc != 0)
3571                 GOTO(stop_trans, rc);
3572
3573         if (S_ISDIR(la->la_mode) && ldata != NULL) {
3574                 rc = mdd_links_write(env, mdd_tobj, ldata, handle);
3575                 if (rc != 0)
3576                         GOTO(stop_trans, rc);
3577         }
3578
3579         /* Set MIGRATE EA on the source inode, so once the migration needs
3580          * to be re-done during failover, the re-do process can locate the
3581          * target object which is already being created. */
3582         rc = mdo_xattr_set(env, mdd_sobj, &mgr_buf, XATTR_NAME_LMV, 0, handle);
3583         if (rc != 0)
3584                 GOTO(stop_trans, rc);
3585
3586         /* Set immutable flag, so any modification is disabled until
3587          * the migration is done. Once the migration is interrupted,
3588          * if the resume process find the migrating object has both
3589          * IMMUTALBE flag and MIGRATE EA, it need to clear IMMUTABLE
3590          * flag and approve the migration */
3591         la_flag->la_valid = LA_FLAGS;
3592         la_flag->la_flags = la->la_flags | LUSTRE_IMMUTABLE_FL;
3593         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3594 stop_trans:
3595         if (handle != NULL)
3596                 rc = mdd_trans_stop(env, mdd, rc, handle);
3597 out_free:
3598         if (lmm_buf.lb_buf != NULL)
3599                 OBD_FREE(lmm_buf.lb_buf, lmm_buf.lb_len);
3600         RETURN(rc);
3601 }
3602
3603 static int mdd_migrate_entries(const struct lu_env *env,
3604                                struct mdd_object *mdd_sobj,
3605                                struct mdd_object *mdd_tobj)
3606 {
3607         struct dt_object        *next = mdd_object_child(mdd_sobj);
3608         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3609         struct dt_object        *dt_tobj = mdd_object_child(mdd_tobj);
3610         struct thandle          *handle;
3611         struct dt_it            *it;
3612         const struct dt_it_ops  *iops;
3613         int                      result;
3614         struct lu_dirent        *ent;
3615         int                      rc;
3616         ENTRY;
3617
3618         OBD_ALLOC(ent, NAME_MAX + sizeof(*ent) + 1);
3619         if (ent == NULL)
3620                 RETURN(-ENOMEM);
3621
3622         if (!dt_try_as_dir(env, next))
3623                 GOTO(out_ent, rc = -ENOTDIR);
3624         /*
3625          * iterate directories
3626          */
3627         iops = &next->do_index_ops->dio_it;
3628         it = iops->init(env, next, LUDA_FID | LUDA_TYPE);
3629         if (IS_ERR(it))
3630                 GOTO(out_ent, rc = PTR_ERR(it));
3631
3632         rc = iops->load(env, it, 0);
3633         if (rc == 0)
3634                 rc = iops->next(env, it);
3635         else if (rc > 0)
3636                 rc = 0;
3637         /*
3638          * At this point and across for-loop:
3639          *
3640          *  rc == 0 -> ok, proceed.
3641          *  rc >  0 -> end of directory.
3642          *  rc <  0 -> error.
3643          */
3644         do {
3645                 struct mdd_object       *child;
3646                 char                    *name = mdd_env_info(env)->mti_key;
3647                 int                     len;
3648                 int                     is_dir;
3649                 bool                    target_exist = false;
3650
3651                 len = iops->key_size(env, it);
3652                 if (len == 0)
3653                         goto next;
3654
3655                 result = iops->rec(env, it, (struct dt_rec *)ent,
3656                                    LUDA_FID | LUDA_TYPE);
3657                 if (result == -ESTALE)
3658                         goto next;
3659                 if (result != 0) {
3660                         rc = result;
3661                         goto out;
3662                 }
3663
3664                 fid_le_to_cpu(&ent->lde_fid, &ent->lde_fid);
3665
3666                 /* Insert new fid with target name into target dir */
3667                 if ((ent->lde_namelen == 1 && ent->lde_name[0] == '.') ||
3668                     (ent->lde_namelen == 2 && ent->lde_name[0] == '.' &&
3669                      ent->lde_name[1] == '.'))
3670                         goto next;
3671
3672                 child = mdd_object_find(env, mdd, &ent->lde_fid);
3673                 if (IS_ERR(child))
3674                         GOTO(out, rc = PTR_ERR(child));
3675
3676                 mdd_write_lock(env, child, MOR_SRC_CHILD);
3677                 is_dir = S_ISDIR(mdd_object_type(child));
3678
3679                 snprintf(name, ent->lde_namelen + 1, "%s", ent->lde_name);
3680
3681                 /* Check whether the name has been inserted to the target */
3682                 if (dt_try_as_dir(env, dt_tobj)) {
3683                         struct lu_fid *fid = &mdd_env_info(env)->mti_fid2;
3684
3685                         rc = dt_lookup(env, dt_tobj, (struct dt_rec *)fid,
3686                                        (struct dt_key *)name);
3687                         if (unlikely(rc == 0))
3688                                 target_exist = true;
3689                 }
3690
3691                 handle = mdd_trans_create(env, mdd);
3692                 if (IS_ERR(handle))
3693                         GOTO(out_put, rc = PTR_ERR(handle));
3694
3695                 /* Note: this transaction is part of migration, and it is not
3696                  * the last step of migration, so we set th_local = 1 to avoid
3697                  * updating last rcvd for this transaction */
3698                 handle->th_local = 1;
3699                 if (likely(!target_exist)) {
3700                         rc = mdo_declare_index_insert(env, mdd_tobj,
3701                                                       &ent->lde_fid,
3702                                                       mdd_object_type(child),
3703                                                       name, handle);
3704                         if (rc != 0)
3705                                 GOTO(out_put, rc);
3706
3707                         if (is_dir) {
3708                                 rc = mdo_declare_ref_add(env, mdd_tobj, handle);
3709                                 if (rc != 0)
3710                                         GOTO(out_put, rc);
3711                         }
3712                 }
3713
3714                 rc = mdo_declare_index_delete(env, mdd_sobj, name, handle);
3715                 if (rc != 0)
3716                         GOTO(out_put, rc);
3717
3718                 if (is_dir) {
3719                         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3720                         if (rc != 0)
3721                                 GOTO(out_put, rc);
3722
3723                         /* Update .. for child */
3724                         rc = mdo_declare_index_delete(env, child, dotdot,
3725                                                       handle);
3726                         if (rc != 0)
3727                                 GOTO(out_put, rc);
3728
3729                         rc = mdo_declare_index_insert(env, child,
3730                                                       mdd_object_fid(mdd_tobj),
3731                                                       S_IFDIR, dotdot, handle);
3732                         if (rc != 0)
3733                                 GOTO(out_put, rc);
3734                 }
3735
3736                 rc = mdd_linkea_declare_update_child(env, mdd_sobj,mdd_tobj,
3737                                                      child, name,
3738                                                      strlen(name),
3739                                                      handle);
3740                 if (rc != 0)
3741                         GOTO(out_put, rc);
3742
3743                 rc = mdd_trans_start(env, mdd, handle);
3744                 if (rc != 0) {
3745                         CERROR("%s: transaction start failed: rc = %d\n",
3746                                mdd2obd_dev(mdd)->obd_name, rc);
3747                         GOTO(out_put, rc);
3748                 }
3749
3750                 if (likely(!target_exist)) {
3751                         rc = __mdd_index_insert(env, mdd_tobj, &ent->lde_fid,
3752                                                 mdd_object_type(child),
3753                                                 name, handle);
3754                         if (rc != 0)
3755                                 GOTO(out_put, rc);
3756                 }
3757
3758                 rc = __mdd_index_delete(env, mdd_sobj, name, is_dir, handle);
3759                 if (rc != 0)
3760                         GOTO(out_put, rc);
3761
3762                 if (is_dir) {
3763                         rc = __mdd_index_delete_only(env, child, dotdot,
3764                                                      handle);
3765                         if (rc != 0)
3766                                 GOTO(out_put, rc);
3767
3768                         rc = __mdd_index_insert_only(env, child,
3769                                          mdd_object_fid(mdd_tobj), S_IFDIR,
3770                                          dotdot, handle);
3771                         if (rc != 0)
3772                                 GOTO(out_put, rc);
3773                 }
3774
3775                 rc = mdd_linkea_update_child(env, mdd_sobj, mdd_tobj,
3776                                              child, name,
3777                                              strlen(name), handle);
3778
3779 out_put:
3780                 mdd_write_unlock(env, child);
3781                 mdd_object_put(env, child);
3782                 rc = mdd_trans_stop(env, mdd, rc, handle);
3783                 if (rc != 0)
3784                         GOTO(out, rc);
3785 next:
3786                 result = iops->next(env, it);
3787                 if (OBD_FAIL_CHECK(OBD_FAIL_MIGRATE_ENTRIES))
3788                         GOTO(out, rc = -EINTR);
3789
3790                 if (result == -ESTALE)
3791                         goto next;
3792         } while (result == 0);
3793 out:
3794         iops->put(env, it);
3795         iops->fini(env, it);
3796 out_ent:
3797         OBD_FREE(ent, NAME_MAX + sizeof(*ent) + 1);
3798         RETURN(rc);
3799 }
3800
3801 static int mdd_declare_update_linkea(const struct lu_env *env,
3802                                      struct mdd_object *mdd_pobj,
3803                                      struct mdd_object *mdd_sobj,
3804                                      struct mdd_object *mdd_tobj,
3805                                      const struct lu_name *child_name,
3806                                      struct linkea_data *ldata,
3807                                      struct thandle *handle)
3808 {
3809         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3810                                           child_name, ldata, handle, 1);
3811 }
3812
3813 static int mdd_update_linkea(const struct lu_env *env,
3814                              struct mdd_object *mdd_pobj,
3815                              struct mdd_object *mdd_sobj,
3816                              struct mdd_object *mdd_tobj,
3817                              const struct lu_name *child_name,
3818                              struct linkea_data *ldata,
3819                              struct thandle *handle)
3820 {
3821         return mdd_update_linkea_internal(env, mdd_pobj, mdd_sobj, mdd_tobj,
3822                                           child_name, ldata, handle, 0);
3823 }
3824
3825 static int mdd_declare_migrate_update_name(const struct lu_env *env,
3826                                            struct mdd_object *mdd_pobj,
3827                                            struct mdd_object *mdd_sobj,
3828                                            struct mdd_object *mdd_tobj,
3829                                            const struct lu_name *lname,
3830                                            struct lu_attr *la,
3831                                            struct lu_attr *parent_la,
3832                                            struct linkea_data *ldata,
3833                                            struct thandle *handle)
3834 {
3835         struct mdd_device *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3836         struct lu_attr *la_flag = MDD_ENV_VAR(env, tattr);
3837         int rc;
3838
3839         /* Revert IMMUTABLE flag */
3840         la_flag->la_valid = LA_FLAGS;
3841         la_flag->la_flags = la->la_flags & ~LUSTRE_IMMUTABLE_FL;
3842         rc = mdo_declare_attr_set(env, mdd_sobj, la_flag, handle);
3843         if (rc != 0)
3844                 return rc;
3845
3846         /* delete entry from source dir */
3847         rc = mdo_declare_index_delete(env, mdd_pobj, lname->ln_name, handle);
3848         if (rc != 0)
3849                 return rc;
3850
3851         if (ldata->ld_buf != NULL) {
3852                 rc = mdd_declare_update_linkea(env, mdd_pobj, mdd_sobj,
3853                                                mdd_tobj, lname, ldata, handle);
3854                 if (rc != 0)
3855                         return rc;
3856         }
3857
3858         if (S_ISREG(mdd_object_type(mdd_sobj))) {
3859                 rc = mdo_declare_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
3860                                            handle);
3861                 if (rc != 0)
3862                         return rc;
3863
3864                 handle->th_complex = 1;
3865                 rc = mdo_declare_xattr_set(env, mdd_tobj, NULL,
3866                                            XATTR_NAME_FID,
3867                                            LU_XATTR_REPLACE, handle);
3868                 if (rc < 0)
3869                         return rc;
3870         }
3871
3872         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3873                 rc = mdo_declare_ref_del(env, mdd_pobj, handle);
3874                 if (rc != 0)
3875                         return rc;
3876         }
3877
3878         /* new name */
3879         rc = mdo_declare_index_insert(env, mdd_pobj, mdo2fid(mdd_tobj),
3880                                       mdd_object_type(mdd_tobj),
3881                                       lname->ln_name, handle);
3882         if (rc != 0)
3883                 return rc;
3884
3885         rc = mdd_declare_links_add(env, mdd_tobj, handle, NULL);
3886         if (rc != 0)
3887                 return rc;
3888
3889         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3890                 rc = mdo_declare_ref_add(env, mdd_pobj, handle);
3891                 if (rc != 0)
3892                         return rc;
3893         }
3894
3895         /* delete old object */
3896         rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3897         if (rc != 0)
3898                 return rc;
3899
3900         if (S_ISDIR(mdd_object_type(mdd_sobj))) {
3901                 /* delete old object */
3902                 rc = mdo_declare_ref_del(env, mdd_sobj, handle);
3903                 if (rc != 0)
3904                         return rc;
3905                 /* set nlink to 0 */
3906                 rc = mdo_declare_attr_set(env, mdd_sobj, la, handle);
3907                 if (rc != 0)
3908                         return rc;
3909         }
3910
3911         rc = mdd_declare_finish_unlink(env, mdd_sobj, handle);
3912         if (rc)
3913                 return rc;
3914
3915         rc = mdo_declare_attr_set(env, mdd_pobj, parent_la, handle);
3916         if (rc != 0)
3917                 return rc;
3918
3919         rc = mdd_declare_changelog_store(env, mdd, lname, NULL, handle);
3920
3921         return rc;
3922 }
3923
3924 static int mdd_migrate_update_name(const struct lu_env *env,
3925                                    struct mdd_object *mdd_pobj,
3926                                    struct mdd_object *mdd_sobj,
3927                                    struct mdd_object *mdd_tobj,
3928                                    const struct lu_name *lname,
3929                                    struct md_attr *ma)
3930 {
3931         struct lu_attr          *p_la = MDD_ENV_VAR(env, la_for_fix);
3932         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
3933         struct lu_attr          *la_flag = MDD_ENV_VAR(env, tattr);
3934         struct mdd_device       *mdd = mdo2mdd(&mdd_sobj->mod_obj);
3935         struct linkea_data      *ldata = &mdd_env_info(env)->mti_link_data;
3936         struct thandle          *handle;
3937         int                     is_dir = S_ISDIR(mdd_object_type(mdd_sobj));
3938         const char              *name = lname->ln_name;
3939         int                     rc;
3940         ENTRY;
3941
3942         /* update time for parent */
3943         LASSERT(ma->ma_attr.la_valid & LA_CTIME);
3944         p_la->la_ctime = p_la->la_mtime = ma->ma_attr.la_ctime;
3945         p_la->la_valid = LA_CTIME;
3946
3947         rc = mdd_la_get(env, mdd_sobj, so_attr);
3948         if (rc != 0)
3949                 RETURN(rc);
3950
3951         ldata->ld_buf = NULL;
3952         rc = mdd_links_read(env, mdd_sobj, ldata);
3953         if (rc != 0 && rc != -ENOENT && rc != -ENODATA)
3954                 RETURN(rc);
3955
3956         handle = mdd_trans_create(env, mdd);
3957         if (IS_ERR(handle))
3958                 RETURN(PTR_ERR(handle));
3959
3960         rc = mdd_declare_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj,
3961                                              lname, so_attr, p_la, ldata,
3962                                              handle);
3963         if (rc != 0) {
3964                 /* If the migration can not be fit in one transaction, just
3965                  * leave it in the original MDT */
3966                 if (rc == -E2BIG)
3967                         GOTO(stop_trans, rc = 0);
3968                 else
3969                         GOTO(stop_trans, rc);
3970         }
3971
3972         CDEBUG(D_INFO, "%s: update "DFID"/"DFID" with %s:"DFID"\n",
3973                mdd2obd_dev(mdd)->obd_name, PFID(mdd_object_fid(mdd_pobj)),
3974                PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
3975                PFID(mdd_object_fid(mdd_tobj)));
3976
3977         rc = mdd_trans_start(env, mdd, handle);
3978         if (rc != 0)
3979                 GOTO(stop_trans, rc);
3980
3981         /* Revert IMMUTABLE flag */
3982         la_flag->la_valid = LA_FLAGS;
3983         la_flag->la_flags = so_attr->la_flags & ~LUSTRE_IMMUTABLE_FL;
3984         rc = mdo_attr_set(env, mdd_sobj, la_flag, handle);
3985         if (rc != 0)
3986                 GOTO(stop_trans, rc);
3987
3988         /* Remove source name from source directory */
3989         rc = __mdd_index_delete(env, mdd_pobj, name, is_dir, handle);
3990         if (rc != 0)
3991                 GOTO(stop_trans, rc);
3992
3993         if (ldata->ld_buf != NULL) {
3994                 rc = mdd_update_linkea(env, mdd_pobj, mdd_sobj, mdd_tobj,
3995                                        lname, ldata, handle);
3996                 if (rc != 0)
3997                         GOTO(stop_trans, rc);
3998
3999                 /*  linkea update might decrease the source object
4000                  *  nlink, let's get the attr again after ref_del */
4001                 rc = mdd_la_get(env, mdd_sobj, so_attr);
4002                 if (rc != 0)
4003                         GOTO(stop_trans, rc);
4004         }
4005
4006         if (S_ISREG(so_attr->la_mode)) {
4007                 if (so_attr->la_nlink == 1) {
4008                         rc = mdo_xattr_del(env, mdd_sobj, XATTR_NAME_LOV,
4009                                            handle);
4010                         if (rc != 0 && rc != -ENODATA)
4011                                 GOTO(stop_trans, rc);
4012
4013                         rc = mdo_xattr_set(env, mdd_tobj, NULL,
4014                                            XATTR_NAME_FID,
4015                                            LU_XATTR_REPLACE, handle);
4016                         if (rc < 0)
4017                                 GOTO(stop_trans, rc);
4018                 }
4019         }
4020
4021         /* Insert new fid with target name into target dir */
4022         rc = __mdd_index_insert(env, mdd_pobj, mdd_object_fid(mdd_tobj),
4023                                 mdd_object_type(mdd_tobj), name, handle);
4024         if (rc != 0)
4025                 GOTO(stop_trans, rc);
4026
4027         mdd_write_lock(env, mdd_sobj, MOR_TGT_CHILD);
4028
4029         mdd_sobj->mod_flags |= DEAD_OBJ;
4030         rc = mdd_mark_orphan_object(env, mdd_sobj, handle, false);
4031         if (rc != 0)
4032                 GOTO(out_unlock, rc);
4033
4034         rc = __mdd_orphan_add(env, mdd_sobj, handle);
4035         if (rc != 0)
4036                 GOTO(out_unlock, rc);
4037
4038         mdo_ref_del(env, mdd_sobj, handle);
4039         if (is_dir)
4040                 mdo_ref_del(env, mdd_sobj, handle);
4041
4042         /* Get the attr again after ref_del */
4043         rc = mdd_la_get(env, mdd_sobj, so_attr);
4044         if (rc != 0)
4045                 GOTO(out_unlock, rc);
4046
4047         ma->ma_attr = *so_attr;
4048         ma->ma_valid |= MA_INODE;
4049
4050         rc = mdd_attr_set_internal(env, mdd_pobj, p_la, handle, 0);
4051         if (rc != 0)
4052                 GOTO(out_unlock, rc);
4053
4054         rc = mdd_changelog_ns_store(env, mdd, CL_MIGRATE, 0, mdd_tobj,
4055                                mdo2fid(mdd_pobj), mdo2fid(mdd_sobj),
4056                                mdo2fid(mdd_pobj), lname, lname, handle);
4057         if (rc != 0) {
4058                 CWARN("%s: changelog for migrate %s "DFID
4059                       "under "DFID" failed: rc = %d\n",
4060                       mdd2obd_dev(mdd)->obd_name, lname->ln_name,
4061                       PFID(mdd_object_fid(mdd_sobj)),
4062                       PFID(mdd_object_fid(mdd_pobj)), rc);
4063                 /* Sigh, there are no easy way to migrate back the object, so
4064                  * let's reset the result to 0 for now XXX */
4065                 rc = 0;
4066         }
4067 out_unlock:
4068         mdd_write_unlock(env, mdd_sobj);
4069
4070 stop_trans:
4071         rc = mdd_trans_stop(env, mdd, rc, handle);
4072
4073         RETURN(rc);
4074 }
4075
4076 static int mdd_fld_lookup(const struct lu_env *env, struct mdd_device *mdd,
4077                           const struct lu_fid *fid, __u32 *mdt_index)
4078 {
4079         struct lu_seq_range *range = &mdd_env_info(env)->mti_range;
4080         struct seq_server_site *ss;
4081         int rc;
4082
4083         ss = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site;
4084
4085         range->lsr_flags = LU_SEQ_RANGE_MDT;
4086         rc = fld_server_lookup(env, ss->ss_server_fld, fid->f_seq, range);
4087         if (rc != 0)
4088                 return rc;
4089
4090         *mdt_index = range->lsr_index;
4091
4092         return 0;
4093 }
4094 /**
4095  * Check whether we should migrate the file/dir
4096  * return val
4097  *      < 0  permission check failed or other error.
4098  *      = 0  the file can be migrated.
4099  *      > 0  the file does not need to be migrated, mostly
4100  *           for multiple link file
4101  **/
4102 static int mdd_migrate_sanity_check(const struct lu_env *env,
4103                                     struct mdd_object *pobj,
4104                                     const struct lu_attr *pattr,
4105                                     struct mdd_object *sobj,
4106                                     struct lu_attr *sattr)
4107 {
4108         struct mdd_thread_info  *info = mdd_env_info(env);
4109         struct linkea_data      *ldata = &info->mti_link_data;
4110         struct mdd_device       *mdd = mdo2mdd(&pobj->mod_obj);
4111         int                     mgr_easize;
4112         struct lu_buf           *mgr_buf;
4113         int                     count;
4114         int                     rc;
4115         __u64 mdt_index;
4116         ENTRY;
4117
4118         mgr_easize = lmv_mds_md_size(2, LMV_MAGIC_V1);
4119         mgr_buf = lu_buf_check_and_alloc(&info->mti_big_buf, mgr_easize);
4120         if (mgr_buf->lb_buf == NULL)
4121                 RETURN(-ENOMEM);
4122
4123         rc = mdo_xattr_get(env, sobj, mgr_buf, XATTR_NAME_LMV);
4124         if (rc > 0) {
4125                 union lmv_mds_md *lmm = mgr_buf->lb_buf;
4126
4127                 /* If the object has migrateEA, it means IMMUTE flag
4128                  * is being set by previous migration process, so it
4129                  * needs to override the IMMUTE flag, otherwise the
4130                  * following sanity check will fail */
4131                 if (le32_to_cpu(lmm->lmv_md_v1.lmv_hash_type) &
4132                                                 LMV_HASH_FLAG_MIGRATION) {
4133                         struct mdd_device *mdd = mdo2mdd(&sobj->mod_obj);
4134
4135                         sattr->la_flags &= ~LUSTRE_IMMUTABLE_FL;
4136                         CDEBUG(D_HA, "%s: "DFID" override IMMUTE FLAG\n",
4137                                mdd2obd_dev(mdd)->obd_name,
4138                                PFID(mdd_object_fid(sobj)));
4139                 }
4140         }
4141
4142         rc = mdd_rename_sanity_check(env, pobj, pattr, pobj, pattr,
4143                                      sobj, sattr, NULL, NULL);
4144         if (rc != 0)
4145                 RETURN(rc);
4146
4147         /* Then it will check if the file should be migrated. If the file
4148          * has mulitple links, we only need migrate the file if all of its
4149          * entries has been migrated to the remote MDT */
4150         if (!S_ISREG(sattr->la_mode) || sattr->la_nlink < 2)
4151                 RETURN(0);
4152
4153         rc = mdd_links_read(env, sobj, ldata);
4154         if (rc != 0) {
4155                 /* For multiple links files, if there are no linkEA data at all,
4156                  * means the file might be created before linkEA is enabled, and
4157                  * all of its links should not be migrated yet, otherwise it
4158                  * should have some linkEA there */
4159                 if (rc == -ENOENT || rc == -ENODATA)
4160                         RETURN(1);
4161                 RETURN(rc);
4162         }
4163
4164         mdt_index = mdd->mdd_md_dev.md_lu_dev.ld_site->ld_seq_site->ss_node_id;
4165         /* If there are still links locally, then the file will not be
4166          * migrated. */
4167         LASSERT(ldata->ld_leh != NULL);
4168
4169         /* If the linkEA is overflow, then means there are some unknown name
4170          * entries under unknown parents, that will prevent the migration. */
4171         if (unlikely(ldata->ld_leh->leh_overflow_time))
4172                 RETURN(1);
4173
4174         ldata->ld_lee = (struct link_ea_entry *)(ldata->ld_leh + 1);
4175         for (count = 0; count < ldata->ld_leh->leh_reccount; count++) {
4176                 struct lu_name          lname;
4177                 struct lu_fid           fid;
4178                 __u32                   parent_mdt_index;
4179
4180                 linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen,
4181                                     &lname, &fid);
4182                 ldata->ld_lee = (struct link_ea_entry *)((char *)ldata->ld_lee +
4183                                                          ldata->ld_reclen);
4184
4185                 rc = mdd_fld_lookup(env, mdd, &fid, &parent_mdt_index);
4186                 if (rc != 0)
4187                         RETURN(rc);
4188
4189                 /* Migrate the object only if none of its parents are on the
4190                  * current MDT. */
4191                 if (parent_mdt_index != mdt_index)
4192                         continue;
4193
4194                 CDEBUG(D_INFO, DFID"still has local entry %.*s "DFID"\n",
4195                        PFID(mdd_object_fid(sobj)), lname.ln_namelen,
4196                        lname.ln_name, PFID(&fid));
4197                 rc = 1;
4198                 break;
4199         }
4200
4201         RETURN(rc);
4202 }
4203
4204 static int mdd_migrate(const struct lu_env *env, struct md_object *pobj,
4205                        struct md_object *sobj, const struct lu_name *lname,
4206                        struct md_object *tobj, struct md_attr *ma)
4207 {
4208         struct mdd_object       *mdd_pobj = md2mdd_obj(pobj);
4209         struct mdd_device       *mdd = mdo2mdd(pobj);
4210         struct mdd_object       *mdd_sobj = md2mdd_obj(sobj);
4211         struct mdd_object       *mdd_tobj = md2mdd_obj(tobj);
4212         struct lu_attr          *so_attr = MDD_ENV_VAR(env, cattr);
4213         struct lu_attr          *pattr = MDD_ENV_VAR(env, pattr);
4214         bool                    created = false;
4215         int                     rc;
4216
4217         ENTRY;
4218         /* If the file will being migrated, it will check whether
4219          * the file is being opened by someone else right now */
4220         mdd_read_lock(env, mdd_sobj, MOR_SRC_CHILD);
4221         if (mdd_sobj->mod_count > 0) {
4222                 CDEBUG(D_OTHER,
4223                        "%s: "DFID"%s is already opened count %d: rc = %d\n",
4224                        mdd2obd_dev(mdd)->obd_name,
4225                        PFID(mdd_object_fid(mdd_sobj)), lname->ln_name,
4226                        mdd_sobj->mod_count, -EBUSY);
4227                 mdd_read_unlock(env, mdd_sobj);
4228                 GOTO(put, rc = -EBUSY);
4229         }
4230         mdd_read_unlock(env, mdd_sobj);
4231
4232         rc = mdd_la_get(env, mdd_sobj, so_attr);
4233         if (rc != 0)
4234                 GOTO(put, rc);
4235
4236         rc = mdd_la_get(env, mdd_pobj, pattr);
4237         if (rc != 0)
4238                 GOTO(put, rc);
4239
4240         rc = mdd_migrate_sanity_check(env, mdd_pobj, pattr, mdd_sobj, so_attr);
4241         if (rc != 0) {
4242                 if (rc > 0)
4243                         rc = 0;
4244                 GOTO(put, rc);
4245         }
4246
4247         /* Sigh, it is impossible to finish all of migration in a single
4248          * transaction, for example migrating big directory entries to the
4249          * new MDT, it needs insert all of name entries of children in the
4250          * new directory.
4251          *
4252          * So migration will be done in multiple steps and transactions.
4253          *
4254          * 1. create an orphan object on the remote MDT in one transaction.
4255          * 2. migrate extend attributes to the new target file/directory.
4256          * 3. For directory, migrate the entries to the new MDT and update
4257          * linkEA of each children. Because we can not migrate all entries
4258          * in a single transaction, so the migrating directory will become
4259          * a striped directory during migration, so once the process is
4260          * interrupted, the directory is still accessible. (During lookup,
4261          * client will locate the name by searching both original and target
4262          * object).
4263          * 4. Finally, update the name/FID to point to the new file/directory
4264          * in a separate transaction.
4265          */
4266
4267         /* step 1: Check whether the orphan object has been created, and create
4268          * orphan object on the remote MDT if needed */
4269         if (!mdd_object_exists(mdd_tobj)) {
4270                 rc = mdd_migrate_create(env, mdd_pobj, mdd_sobj, mdd_tobj,
4271                                         lname, so_attr);
4272                 if (rc != 0)
4273                         GOTO(put, rc);
4274                 created = true;
4275         }
4276
4277         LASSERT(mdd_object_exists(mdd_tobj));
4278         /* step 2: migrate xattr */
4279         rc = mdd_migrate_xattrs(env, mdd_sobj, mdd_tobj);
4280         if (rc != 0)
4281                 GOTO(put, rc);
4282
4283         /* step 3: migrate name entries to the orphan object */
4284         if (S_ISDIR(lu_object_attr(&mdd_sobj->mod_obj.mo_lu))) {
4285                 rc = mdd_migrate_entries(env, mdd_sobj, mdd_tobj);
4286                 if (rc != 0)
4287                         GOTO(put, rc);
4288                 if (unlikely(OBD_FAIL_CHECK_RESET(OBD_FAIL_MIGRATE_NET_REP,
4289                                                   OBD_FAIL_MDS_REINT_NET_REP)))
4290                         GOTO(put, rc = 0);
4291         } else {
4292                 OBD_FAIL_TIMEOUT(OBD_FAIL_MIGRATE_DELAY, cfs_fail_val);
4293         }
4294
4295         LASSERT(mdd_object_exists(mdd_tobj));
4296         /* step 4: update name entry to the new object */
4297         rc = mdd_migrate_update_name(env, mdd_pobj, mdd_sobj, mdd_tobj, lname,
4298                                      ma);
4299         if (rc != 0)
4300                 GOTO(put, rc);
4301
4302         /* newly created target was not locked, don't cache its attributes */
4303         if (created)
4304                 mdd_invalidate(env, tobj);
4305 put:
4306         RETURN(rc);
4307 }
4308
4309 const struct md_dir_operations mdd_dir_ops = {
4310         .mdo_is_subdir     = mdd_is_subdir,
4311         .mdo_lookup        = mdd_lookup,
4312         .mdo_create        = mdd_create,
4313         .mdo_rename        = mdd_rename,
4314         .mdo_link          = mdd_link,
4315         .mdo_unlink        = mdd_unlink,
4316         .mdo_create_data   = mdd_create_data,
4317         .mdo_migrate       = mdd_migrate,
4318 };