4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
31 * lustre/mdt/mdt_reint.c
33 * Lustre Metadata Target (mdt) reintegration routines
35 * Author: Peter Braam <braam@clusterfs.com>
36 * Author: Andreas Dilger <adilger@clusterfs.com>
37 * Author: Phil Schwan <phil@clusterfs.com>
38 * Author: Huang Hua <huanghua@clusterfs.com>
39 * Author: Yury Umanets <umka@clusterfs.com>
42 #define DEBUG_SUBSYSTEM S_MDS
44 #include <lprocfs_status.h>
45 #include "mdt_internal.h"
46 #include <lustre_lmv.h>
47 #include <lustre_crypto.h>
49 static inline void mdt_reint_init_ma(struct mdt_thread_info *info,
52 ma->ma_need = MA_INODE;
57 * Get version of object by fid.
59 * Return real version or ENOENT_VERSION if object doesn't exist
61 static void mdt_obj_version_get(struct mdt_thread_info *info,
62 struct mdt_object *o, __u64 *version)
66 if (mdt_object_exists(o) && !mdt_object_remote(o) &&
67 !fid_is_obf(mdt_object_fid(o)))
68 *version = dt_version_get(info->mti_env, mdt_obj2dt(o));
70 *version = ENOENT_VERSION;
71 CDEBUG(D_INODE, "FID "DFID" version is %#llx\n",
72 PFID(mdt_object_fid(o)), *version);
76 * Check version is correct.
78 * Should be called only during replay.
80 static int mdt_version_check(struct ptlrpc_request *req,
81 __u64 version, int idx)
83 __u64 *pre_ver = lustre_msg_get_versions(req->rq_reqmsg);
86 if (!exp_connect_vbr(req->rq_export))
89 LASSERT(req_is_replay(req));
90 /** VBR: version is checked always because costs nothing */
91 LASSERT(idx < PTLRPC_NUM_VERSIONS);
92 /** Sanity check for malformed buffers */
93 if (pre_ver == NULL) {
94 CERROR("No versions in request buffer\n");
95 spin_lock(&req->rq_export->exp_lock);
96 req->rq_export->exp_vbr_failed = 1;
97 spin_unlock(&req->rq_export->exp_lock);
99 } else if (pre_ver[idx] != version) {
100 CDEBUG(D_INODE, "Version mismatch %#llx != %#llx\n",
101 pre_ver[idx], version);
102 spin_lock(&req->rq_export->exp_lock);
103 req->rq_export->exp_vbr_failed = 1;
104 spin_unlock(&req->rq_export->exp_lock);
111 * Save pre-versions in reply.
113 static void mdt_version_save(struct ptlrpc_request *req, __u64 version,
118 if (!exp_connect_vbr(req->rq_export))
121 LASSERT(!req_is_replay(req));
122 LASSERT(req->rq_repmsg != NULL);
123 reply_ver = lustre_msg_get_versions(req->rq_repmsg);
125 reply_ver[idx] = version;
129 * Save enoent version, it is needed when it is obvious that object doesn't
130 * exist, e.g. child during create.
132 static void mdt_enoent_version_save(struct mdt_thread_info *info, int idx)
134 /* save version of file name for replay, it must be ENOENT here */
135 if (!req_is_replay(mdt_info_req(info))) {
136 info->mti_ver[idx] = ENOENT_VERSION;
137 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
142 * Get version from disk and save in reply buffer.
144 * Versions are saved in reply only during normal operations not replays.
146 void mdt_version_get_save(struct mdt_thread_info *info,
147 struct mdt_object *mto, int idx)
149 /* don't save versions during replay */
150 if (!req_is_replay(mdt_info_req(info))) {
151 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
152 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
157 * Get version from disk and check it, no save in reply.
159 int mdt_version_get_check(struct mdt_thread_info *info,
160 struct mdt_object *mto, int idx)
162 /* only check versions during replay */
163 if (!req_is_replay(mdt_info_req(info)))
166 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
167 return mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
171 * Get version from disk and check if recovery or just save.
173 int mdt_version_get_check_save(struct mdt_thread_info *info,
174 struct mdt_object *mto, int idx)
178 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
179 if (req_is_replay(mdt_info_req(info)))
180 rc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx],
183 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
188 * Lookup with version checking.
190 * This checks version of 'name'. Many reint functions uses 'name' for child not
191 * FID, therefore we need to get object by name and check its version.
193 int mdt_lookup_version_check(struct mdt_thread_info *info,
194 struct mdt_object *p,
195 const struct lu_name *lname,
196 struct lu_fid *fid, int idx)
200 rc = mdo_lookup(info->mti_env, mdt_object_child(p), lname, fid,
202 /* Check version only during replay */
203 if (!req_is_replay(mdt_info_req(info)))
206 info->mti_ver[idx] = ENOENT_VERSION;
208 struct mdt_object *child;
210 child = mdt_object_find(info->mti_env, info->mti_mdt, fid);
211 if (likely(!IS_ERR(child))) {
212 mdt_obj_version_get(info, child, &info->mti_ver[idx]);
213 mdt_object_put(info->mti_env, child);
216 vbrc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
217 return vbrc ? vbrc : rc;
221 static int mdt_unlock_slaves(struct mdt_thread_info *mti,
222 struct mdt_object *obj,
223 struct ldlm_enqueue_info *einfo,
226 union ldlm_policy_data *policy = &mti->mti_policy;
227 struct mdt_lock_handle *lh = &mti->mti_lh[MDT_LH_LOCAL];
228 struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
231 LASSERT(S_ISDIR(obj->mot_header.loh_attr));
232 LASSERT(slave_locks);
234 memset(policy, 0, sizeof(*policy));
235 policy->l_inodebits.bits = einfo->ei_inodebits;
236 mdt_lock_handle_init(lh);
237 mdt_lock_reg_init(lh, einfo->ei_mode);
238 for (i = 0; i < slave_locks->ha_count; i++) {
239 if (test_bit(i, (void *)slave_locks->ha_map))
240 lh->mlh_rreg_lh = slave_locks->ha_handles[i];
242 lh->mlh_reg_lh = slave_locks->ha_handles[i];
243 mdt_object_unlock(mti, NULL, lh, decref);
244 slave_locks->ha_handles[i].cookie = 0ull;
247 return mo_object_unlock(mti->mti_env, mdt_object_child(obj), einfo,
251 static inline int mdt_object_striped(struct mdt_thread_info *mti,
252 struct mdt_object *obj)
254 struct lu_device *bottom_dev;
255 struct lu_object *bottom_obj;
258 if (!S_ISDIR(obj->mot_header.loh_attr))
261 /* getxattr from bottom obj to avoid reading in shard FIDs */
262 bottom_dev = dt2lu_dev(mti->mti_mdt->mdt_bottom);
263 bottom_obj = lu_object_find_slice(mti->mti_env, bottom_dev,
264 mdt_object_fid(obj), NULL);
265 if (IS_ERR(bottom_obj))
266 return PTR_ERR(bottom_obj);
268 rc = dt_xattr_get(mti->mti_env, lu2dt(bottom_obj), &LU_BUF_NULL,
270 lu_object_put(mti->mti_env, bottom_obj);
272 return (rc > 0) ? 1 : (rc == -ENODATA) ? 0 : rc;
276 * Lock slave stripes if necessary, the lock handles of slave stripes
277 * will be stored in einfo->ei_cbdata.
279 static int mdt_lock_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
280 enum ldlm_mode mode, __u64 ibits,
281 struct ldlm_enqueue_info *einfo)
283 union ldlm_policy_data *policy = &mti->mti_policy;
285 LASSERT(S_ISDIR(obj->mot_header.loh_attr));
287 einfo->ei_type = LDLM_IBITS;
288 einfo->ei_mode = mode;
289 einfo->ei_cb_bl = mdt_remote_blocking_ast;
290 einfo->ei_cb_local_bl = mdt_blocking_ast;
291 einfo->ei_cb_cp = ldlm_completion_ast;
292 einfo->ei_enq_slave = 1;
293 einfo->ei_namespace = mti->mti_mdt->mdt_namespace;
294 einfo->ei_inodebits = ibits;
295 einfo->ei_req_slot = 1;
296 memset(policy, 0, sizeof(*policy));
297 policy->l_inodebits.bits = ibits;
299 return mo_object_lock(mti->mti_env, mdt_object_child(obj), NULL, einfo,
303 int mdt_reint_striped_lock(struct mdt_thread_info *info,
304 struct mdt_object *o,
305 struct mdt_lock_handle *lh,
307 struct ldlm_enqueue_info *einfo,
312 LASSERT(!mdt_object_remote(o));
314 memset(einfo, 0, sizeof(*einfo));
316 rc = mdt_reint_object_lock(info, o, lh, ibits, cos_incompat);
320 rc = mdt_object_striped(info, o);
323 mdt_object_unlock(info, o, lh, rc);
327 rc = mdt_lock_slaves(info, o, lh->mlh_reg_mode, ibits, einfo);
329 mdt_object_unlock(info, o, lh, rc);
330 if (rc == -EIO && OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME))
337 void mdt_reint_striped_unlock(struct mdt_thread_info *info,
338 struct mdt_object *o,
339 struct mdt_lock_handle *lh,
340 struct ldlm_enqueue_info *einfo, int decref)
342 if (einfo->ei_cbdata)
343 mdt_unlock_slaves(info, o, einfo, decref);
344 mdt_object_unlock(info, o, lh, decref);
347 static int mdt_restripe(struct mdt_thread_info *info,
348 struct mdt_object *parent,
349 const struct lu_name *lname,
350 const struct lu_fid *tfid,
351 struct md_op_spec *spec,
354 struct mdt_device *mdt = info->mti_mdt;
355 struct lu_fid *fid = &info->mti_tmp_fid2;
356 struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
357 struct lmv_user_md *lum = spec->u.sp_ea.eadata;
358 struct lmv_mds_md_v1 *lmv;
359 struct mdt_object *child;
360 struct mdt_lock_handle *lhp;
361 struct mdt_lock_handle *lhc;
362 struct mdt_body *repbody;
366 if (!mdt->mdt_enable_dir_restripe)
370 lum->lum_hash_type |= cpu_to_le32(LMV_HASH_FLAG_FIXED);
372 rc = mdt_version_get_check_save(info, parent, 0);
376 lhp = &info->mti_lh[MDT_LH_PARENT];
377 mdt_lock_pdo_init(lhp, LCK_PW, lname);
378 rc = mdt_reint_object_lock(info, parent, lhp, MDS_INODELOCK_UPDATE,
383 rc = mdt_stripe_get(info, parent, ma, XATTR_NAME_LMV);
385 GOTO(unlock_parent, rc);
387 if (ma->ma_valid & MA_LMV) {
388 /* don't allow restripe if parent dir layout is changing */
389 lmv = &ma->ma_lmv->lmv_md_v1;
390 if (!lmv_is_sane2(lmv))
391 GOTO(unlock_parent, rc = -EBADF);
393 if (lmv_is_layout_changing(lmv))
394 GOTO(unlock_parent, rc = -EBUSY);
398 rc = mdt_lookup_version_check(info, parent, lname, fid, 1);
400 GOTO(unlock_parent, rc);
402 child = mdt_object_find(info->mti_env, mdt, fid);
404 GOTO(unlock_parent, rc = PTR_ERR(child));
406 if (!mdt_object_exists(child))
407 GOTO(out_child, rc = -ENOENT);
409 if (mdt_object_remote(child)) {
410 struct mdt_body *repbody;
412 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
414 GOTO(out_child, rc = -EPROTO);
416 repbody->mbo_fid1 = *fid;
417 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
418 GOTO(out_child, rc = -EREMOTE);
421 if (!S_ISDIR(lu_object_attr(&child->mot_obj)))
422 GOTO(out_child, rc = -ENOTDIR);
424 rc = mdt_stripe_get(info, child, ma, XATTR_NAME_LMV);
428 /* race with migrate? */
429 if ((ma->ma_valid & MA_LMV) &&
430 lmv_is_migrating(&ma->ma_lmv->lmv_md_v1))
431 GOTO(out_child, rc = -EBUSY);
434 lhc = &info->mti_lh[MDT_LH_CHILD];
435 mdt_lock_reg_init(lhc, LCK_EX);
437 /* enqueue object remote LOOKUP lock */
438 if (mdt_object_remote(parent)) {
439 rc = mdt_remote_object_lock(info, parent, fid,
442 MDS_INODELOCK_LOOKUP, false);
447 rc = mdt_reint_striped_lock(info, child, lhc, MDS_INODELOCK_FULL, einfo,
450 GOTO(unlock_child, rc);
452 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
453 rc = mdt_version_get_check_save(info, child, 1);
455 GOTO(unlock_child, rc);
457 spin_lock(&mdt->mdt_restriper.mdr_lock);
458 if (child->mot_restriping) {
460 spin_unlock(&mdt->mdt_restriper.mdr_lock);
461 GOTO(unlock_child, rc = -EBUSY);
463 child->mot_restriping = 1;
464 spin_unlock(&mdt->mdt_restriper.mdr_lock);
467 rc = mdt_restripe_internal(info, parent, child, lname, fid, spec, ma);
469 GOTO(restriping_clear, rc);
471 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
473 GOTO(restriping_clear, rc = -EPROTO);
475 mdt_pack_attr2body(info, repbody, &ma->ma_attr, fid);
479 child->mot_restriping = 0;
481 mdt_reint_striped_unlock(info, child, lhc, einfo, rc);
483 mdt_object_put(info->mti_env, child);
485 mdt_object_unlock(info, parent, lhp, rc);
491 * VBR: we save three versions in reply:
492 * 0 - parent. Check that parent version is the same during replay.
493 * 1 - name. Version of 'name' if file exists with the same name or
494 * ENOENT_VERSION, it is needed because file may appear due to missed replays.
495 * 2 - child. Version of child by FID. Must be ENOENT. It is mostly sanity
498 static int mdt_create(struct mdt_thread_info *info)
500 struct mdt_device *mdt = info->mti_mdt;
501 struct mdt_object *parent;
502 struct mdt_object *child;
503 struct mdt_lock_handle *lh;
504 struct mdt_body *repbody;
505 struct md_attr *ma = &info->mti_attr;
506 struct mdt_reint_record *rr = &info->mti_rr;
507 struct md_op_spec *spec = &info->mti_spec;
508 bool restripe = false;
512 DEBUG_REQ(D_INODE, mdt_info_req(info),
513 "Create ("DNAME"->"DFID") in "DFID,
514 PNAME(&rr->rr_name), PFID(rr->rr_fid2), PFID(rr->rr_fid1));
516 if (!fid_is_md_operative(rr->rr_fid1))
519 if (S_ISDIR(ma->ma_attr.la_mode) &&
520 spec->u.sp_ea.eadata != NULL && spec->u.sp_ea.eadatalen != 0) {
521 const struct lmv_user_md *lum = spec->u.sp_ea.eadata;
522 struct lu_ucred *uc = mdt_ucred(info);
523 struct obd_export *exp = mdt_info_req(info)->rq_export;
525 /* Only new clients can create remote dir( >= 2.4) and
526 * striped dir(>= 2.6), old client will return -ENOTSUPP
528 if (!mdt_is_dne_client(exp))
531 if (le32_to_cpu(lum->lum_stripe_count) > 1) {
532 if (!mdt_is_striped_client(exp))
535 if (!mdt->mdt_enable_striped_dir)
537 } else if (!mdt->mdt_enable_remote_dir) {
541 if ((!(exp_connect_flags2(exp) & OBD_CONNECT2_CRUSH)) &&
542 (le32_to_cpu(lum->lum_hash_type) & LMV_HASH_TYPE_MASK) >=
546 if (!cap_raised(uc->uc_cap, CAP_SYS_ADMIN) &&
547 uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
548 mdt->mdt_enable_remote_dir_gid != -1)
551 /* restripe if later found dir exists, MDS_OPEN_CREAT means
552 * this is create only, don't try restripe.
554 if (mdt->mdt_enable_dir_restripe &&
555 le32_to_cpu(lum->lum_stripe_offset) == LMV_OFFSET_DEFAULT &&
556 !(spec->sp_cr_flags & MDS_OPEN_CREAT))
560 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
562 parent = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
564 RETURN(PTR_ERR(parent));
566 if (!mdt_object_exists(parent))
567 GOTO(put_parent, rc = -ENOENT);
569 rc = mdt_check_enc(info, parent);
571 GOTO(put_parent, rc);
574 * LU-10235: check if name exists locklessly first to avoid massive
575 * lock recalls on existing directories.
577 rc = mdt_lookup_version_check(info, parent, &rr->rr_name,
578 &info->mti_tmp_fid1, 1);
581 GOTO(put_parent, rc = -EEXIST);
583 rc = mdt_restripe(info, parent, &rr->rr_name, rr->rr_fid2, spec,
587 /* -ENOENT is expected here */
589 GOTO(put_parent, rc);
591 /* save version of file name for replay, it must be ENOENT here */
592 mdt_enoent_version_save(info, 1);
594 OBD_RACE(OBD_FAIL_MDS_CREATE_RACE);
596 lh = &info->mti_lh[MDT_LH_PARENT];
597 mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
598 rc = mdt_object_lock(info, parent, lh, MDS_INODELOCK_UPDATE);
600 GOTO(put_parent, rc);
602 if (!mdt_object_remote(parent)) {
603 rc = mdt_version_get_check_save(info, parent, 0);
605 GOTO(unlock_parent, rc);
608 child = mdt_object_new(info->mti_env, mdt, rr->rr_fid2);
609 if (unlikely(IS_ERR(child)))
610 GOTO(unlock_parent, rc = PTR_ERR(child));
612 ma->ma_need = MA_INODE;
615 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
616 OBD_FAIL_MDS_REINT_CREATE_WRITE);
618 /* Version of child will be updated on disk. */
619 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
620 rc = mdt_version_get_check_save(info, child, 2);
625 * Do not perform lookup sanity check. We know that name does
628 info->mti_spec.sp_cr_lookup = 0;
629 if (mdt_object_remote(parent))
630 info->mti_spec.sp_cr_lookup = 1;
631 info->mti_spec.sp_feat = &dt_directory_features;
633 rc = mdo_create(info->mti_env, mdt_object_child(parent), &rr->rr_name,
634 mdt_object_child(child), &info->mti_spec, ma);
636 rc = mdt_attr_get_complex(info, child, ma);
642 * On DNE, we need to eliminate dependey between 'mkdir a' and
643 * 'mkdir a/b' if b is a striped directory, to achieve this, two
644 * things are done below:
645 * 1. save child and slaves lock.
646 * 2. if the child is a striped directory, relock parent so to
647 * compare against with COS locks to ensure parent was
650 if (mdt_slc_is_enabled(mdt) && S_ISDIR(ma->ma_attr.la_mode)) {
651 struct mdt_lock_handle *lhc;
652 struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
655 rc = mdt_object_striped(info, child);
661 if (!mdt_object_remote(parent)) {
662 mdt_object_unlock(info, parent, lh, 1);
663 mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
664 rc = mdt_reint_object_lock(info, parent, lh,
665 MDS_INODELOCK_UPDATE,
672 lhc = &info->mti_lh[MDT_LH_CHILD];
673 mdt_lock_handle_init(lhc);
674 mdt_lock_reg_init(lhc, LCK_PW);
675 rc = mdt_reint_striped_lock(info, child, lhc,
676 MDS_INODELOCK_UPDATE, einfo,
681 mdt_reint_striped_unlock(info, child, lhc, einfo, rc);
684 /* Return fid & attr to client. */
685 if (ma->ma_valid & MA_INODE)
686 mdt_pack_attr2body(info, repbody, &ma->ma_attr,
687 mdt_object_fid(child));
690 mdt_object_put(info->mti_env, child);
692 mdt_object_unlock(info, parent, lh, rc);
694 mdt_object_put(info->mti_env, parent);
698 static int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
701 struct mdt_lock_handle *lh;
702 int do_vbr = ma->ma_attr.la_valid &
703 (LA_MODE | LA_UID | LA_GID | LA_PROJID | LA_FLAGS);
704 __u64 lockpart = MDS_INODELOCK_UPDATE;
705 struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
710 rc = mdt_object_striped(info, mo);
716 lh = &info->mti_lh[MDT_LH_PARENT];
717 mdt_lock_reg_init(lh, LCK_PW);
719 /* Even though the new MDT will grant PERM lock to the old
720 * client, but the old client will almost ignore that during
721 * So it needs to revoke both LOOKUP and PERM lock here, so
722 * both new and old client can cancel the dcache
724 if (ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID))
725 lockpart |= MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
726 /* Clear xattr cache on clients, so the virtual project ID xattr
727 * can get the new project ID
729 if (ma->ma_attr.la_valid & LA_PROJID)
730 lockpart |= MDS_INODELOCK_XATTR;
732 rc = mdt_reint_striped_lock(info, mo, lh, lockpart, einfo,
737 /* all attrs are packed into mti_attr in unpack_setattr */
738 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
739 OBD_FAIL_MDS_REINT_SETATTR_WRITE);
741 /* VBR: update version if attr changed are important for recovery */
743 /* update on-disk version of changed object */
744 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mo));
745 rc = mdt_version_get_check_save(info, mo, 0);
747 GOTO(out_unlock, rc);
750 /* Ensure constant striping during chown(). See LU-2789. */
751 if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
752 mutex_lock(&mo->mot_lov_mutex);
754 /* all attrs are packed into mti_attr in unpack_setattr */
755 rc = mo_attr_set(info->mti_env, mdt_object_child(mo), ma);
757 if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
758 mutex_unlock(&mo->mot_lov_mutex);
761 GOTO(out_unlock, rc);
762 mdt_dom_obj_lvb_update(info->mti_env, mo, NULL, false);
765 mdt_reint_striped_unlock(info, mo, lh, einfo, rc);
770 * Check HSM flags and add HS_DIRTY flag if relevant.
772 * A file could be set dirty only if it has a copy in the backend (HS_EXISTS)
773 * and is not RELEASED.
775 int mdt_add_dirty_flag(struct mdt_thread_info *info, struct mdt_object *mo,
778 struct lu_ucred *uc = mdt_ucred(info);
779 kernel_cap_t cap_saved;
783 /* If the file was modified, add the dirty flag */
784 ma->ma_need = MA_HSM;
785 rc = mdt_attr_get_complex(info, mo, ma);
787 CERROR("file attribute read error for "DFID": %d.\n",
788 PFID(mdt_object_fid(mo)), rc);
792 /* If an up2date copy exists in the backend, add dirty flag */
793 if ((ma->ma_valid & MA_HSM) && (ma->ma_hsm.mh_flags & HS_EXISTS)
794 && !(ma->ma_hsm.mh_flags & (HS_DIRTY|HS_RELEASED))) {
795 ma->ma_hsm.mh_flags |= HS_DIRTY;
797 /* Bump cap so that closes from non-owner writers can
798 * set the HSM state to dirty.
800 cap_saved = uc->uc_cap;
801 cap_raise(uc->uc_cap, CAP_FOWNER);
802 rc = mdt_hsm_attr_set(info, mo, &ma->ma_hsm);
803 uc->uc_cap = cap_saved;
805 CERROR("file attribute change error for "DFID": %d\n",
806 PFID(mdt_object_fid(mo)), rc);
812 static int mdt_reint_setattr(struct mdt_thread_info *info,
813 struct mdt_lock_handle *lhc)
815 struct mdt_device *mdt = info->mti_mdt;
816 struct md_attr *ma = &info->mti_attr;
817 struct mdt_reint_record *rr = &info->mti_rr;
818 struct ptlrpc_request *req = mdt_info_req(info);
819 struct mdt_object *mo;
820 struct mdt_body *repbody;
821 ktime_t kstart = ktime_get();
825 DEBUG_REQ(D_INODE, req, "setattr "DFID" %x", PFID(rr->rr_fid1),
826 (unsigned int)ma->ma_attr.la_valid);
828 if (info->mti_dlm_req)
829 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
831 OBD_RACE(OBD_FAIL_PTLRPC_RESEND_RACE);
833 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
834 mo = mdt_object_find(info->mti_env, mdt, rr->rr_fid1);
836 GOTO(out, rc = PTR_ERR(mo));
838 if (!mdt_object_exists(mo))
839 GOTO(out_put, rc = -ENOENT);
841 if (mdt_object_remote(mo))
842 GOTO(out_put, rc = -EREMOTE);
844 ma->ma_enable_chprojid_gid = mdt->mdt_enable_chprojid_gid;
845 /* revoke lease lock if size is going to be changed */
846 if (unlikely(ma->ma_attr.la_valid & LA_SIZE &&
847 !(ma->ma_attr_flags & MDS_TRUNC_KEEP_LEASE) &&
848 atomic_read(&mo->mot_lease_count) > 0)) {
849 down_read(&mo->mot_open_sem);
851 if (atomic_read(&mo->mot_lease_count) > 0) { /* lease exists */
852 lhc = &info->mti_lh[MDT_LH_LOCAL];
853 mdt_lock_reg_init(lhc, LCK_CW);
855 rc = mdt_object_lock(info, mo, lhc, MDS_INODELOCK_OPEN);
857 up_read(&mo->mot_open_sem);
861 /* revoke lease lock */
862 mdt_object_unlock(info, mo, lhc, 1);
864 up_read(&mo->mot_open_sem);
867 if (ma->ma_attr.la_valid & LA_SIZE || rr->rr_flags & MRF_OPEN_TRUNC) {
868 /* Check write access for the O_TRUNC case */
869 if (mdt_write_read(mo) < 0)
870 GOTO(out_put, rc = -ETXTBSY);
872 /* LU-10286: compatibility check for FLR.
873 * Please check the comment in mdt_finish_open() for details
875 if (!exp_connect_flr(info->mti_exp) ||
876 !exp_connect_overstriping(info->mti_exp)) {
877 rc = mdt_big_xattr_get(info, mo, XATTR_NAME_LOV);
878 if (rc < 0 && rc != -ENODATA)
881 if (!exp_connect_flr(info->mti_exp)) {
883 mdt_lmm_is_flr(info->mti_big_lmm))
884 GOTO(out_put, rc = -EOPNOTSUPP);
887 if (!exp_connect_overstriping(info->mti_exp)) {
889 mdt_lmm_is_overstriping(info->mti_big_lmm))
890 GOTO(out_put, rc = -EOPNOTSUPP);
894 /* For truncate, the file size sent from client
895 * is believable, but the blocks are incorrect,
896 * which makes the block size in LSOM attribute
897 * inconsisent with the real block size.
899 rc = mdt_lsom_update(info, mo, true);
904 if ((ma->ma_valid & MA_INODE) && ma->ma_attr.la_valid) {
905 if (ma->ma_valid & MA_LOV)
906 GOTO(out_put, rc = -EPROTO);
908 /* MDT supports FMD for regular files due to Data-on-MDT */
909 if (S_ISREG(lu_object_attr(&mo->mot_obj)) &&
910 ma->ma_attr.la_valid & (LA_ATIME | LA_MTIME | LA_CTIME)) {
911 tgt_fmd_update(info->mti_exp, mdt_object_fid(mo),
914 if (ma->ma_attr.la_valid & LA_MTIME) {
915 rc = mdt_attr_get_pfid(info, mo, &ma->ma_pfid);
917 ma->ma_valid |= MA_PFID;
921 rc = mdt_attr_set(info, mo, ma);
924 } else if ((ma->ma_valid & (MA_LOV | MA_LMV)) &&
925 (ma->ma_valid & MA_INODE)) {
926 struct lu_buf *buf = &info->mti_buf;
927 struct lu_ucred *uc = mdt_ucred(info);
928 struct mdt_lock_handle *lh;
930 __u64 lockpart = MDS_INODELOCK_XATTR;
932 /* reject if either remote or striped dir is disabled */
933 if (ma->ma_valid & MA_LMV) {
934 if (!mdt->mdt_enable_remote_dir ||
935 !mdt->mdt_enable_striped_dir)
936 GOTO(out_put, rc = -EPERM);
938 if (!cap_raised(uc->uc_cap, CAP_SYS_ADMIN) &&
939 uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
940 mdt->mdt_enable_remote_dir_gid != -1)
941 GOTO(out_put, rc = -EPERM);
944 if (!S_ISDIR(lu_object_attr(&mo->mot_obj)))
945 GOTO(out_put, rc = -ENOTDIR);
947 if (ma->ma_attr.la_valid != 0)
948 GOTO(out_put, rc = -EPROTO);
950 lh = &info->mti_lh[MDT_LH_PARENT];
951 mdt_lock_reg_init(lh, LCK_PW);
953 if (ma->ma_valid & MA_LOV) {
954 buf->lb_buf = ma->ma_lmm;
955 buf->lb_len = ma->ma_lmm_size;
956 name = XATTR_NAME_LOV;
958 struct lmv_user_md *lmu = &ma->ma_lmv->lmv_user_md;
959 struct lu_fid *pfid = &info->mti_tmp_fid1;
960 struct lu_name *pname = &info->mti_name;
961 const char dotdot[] = "..";
962 struct mdt_object *pobj;
965 buf->lb_len = ma->ma_lmv_size;
966 name = XATTR_NAME_DEFAULT_LMV;
968 if (fid_is_root(rr->rr_fid1)) {
969 lockpart |= MDS_INODELOCK_LOOKUP;
971 /* force client to update dir default layout */
973 pname->ln_name = dotdot;
974 pname->ln_namelen = sizeof(dotdot);
975 rc = mdo_lookup(info->mti_env,
976 mdt_object_child(mo), pname,
981 pobj = mdt_object_find(info->mti_env, mdt,
984 GOTO(out_put, rc = PTR_ERR(pobj));
986 if (mdt_object_remote(pobj))
987 rc = mdt_remote_object_lock(info, pobj,
989 &lh->mlh_rreg_lh, LCK_EX,
990 MDS_INODELOCK_LOOKUP, false);
992 lockpart |= MDS_INODELOCK_LOOKUP;
994 mdt_object_put(info->mti_env, pobj);
1001 rc = mdt_object_lock(info, mo, lh, lockpart);
1005 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo), buf,
1008 mdt_object_unlock(info, mo, lh, rc);
1012 GOTO(out_put, rc = -EPROTO);
1015 /* If file data is modified, add the dirty flag */
1016 if (ma->ma_attr_flags & MDS_DATA_MODIFIED)
1017 rc = mdt_add_dirty_flag(info, mo, ma);
1019 ma->ma_need = MA_INODE;
1021 rc = mdt_attr_get_complex(info, mo, ma);
1025 mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
1029 mdt_object_put(info->mti_env, mo);
1032 mdt_counter_incr(req, LPROC_MDT_SETATTR,
1033 ktime_us_delta(ktime_get(), kstart));
1035 mdt_client_compatibility(info);
1036 rc2 = mdt_fix_reply(info);
1042 static int mdt_reint_create(struct mdt_thread_info *info,
1043 struct mdt_lock_handle *lhc)
1045 struct ptlrpc_request *req = mdt_info_req(info);
1046 ktime_t kstart = ktime_get();
1050 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_CREATE))
1051 RETURN(err_serious(-ESTALE));
1053 if (info->mti_dlm_req)
1054 ldlm_request_cancel(mdt_info_req(info),
1055 info->mti_dlm_req, 0, LATF_SKIP);
1057 if (!lu_name_is_valid(&info->mti_rr.rr_name))
1060 switch (info->mti_attr.ma_attr.la_mode & S_IFMT) {
1070 CERROR("%s: Unsupported mode %o\n",
1071 mdt_obd_name(info->mti_mdt),
1072 info->mti_attr.ma_attr.la_mode);
1073 RETURN(err_serious(-EOPNOTSUPP));
1076 rc = mdt_create(info);
1078 if ((info->mti_attr.ma_attr.la_mode & S_IFMT) == S_IFDIR)
1079 mdt_counter_incr(req, LPROC_MDT_MKDIR,
1080 ktime_us_delta(ktime_get(), kstart));
1082 /* Special file should stay on the same node as parent*/
1083 mdt_counter_incr(req, LPROC_MDT_MKNOD,
1084 ktime_us_delta(ktime_get(), kstart));
1091 * VBR: save parent version in reply and child version getting by its name.
1092 * Version of child is getting and checking during its lookup. If
1094 static int mdt_reint_unlink(struct mdt_thread_info *info,
1095 struct mdt_lock_handle *lhc)
1097 struct mdt_reint_record *rr = &info->mti_rr;
1098 struct ptlrpc_request *req = mdt_info_req(info);
1099 struct md_attr *ma = &info->mti_attr;
1100 struct lu_fid *child_fid = &info->mti_tmp_fid1;
1101 struct mdt_object *mp;
1102 struct mdt_object *mc;
1103 struct mdt_lock_handle *parent_lh;
1104 struct mdt_lock_handle *child_lh;
1105 struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
1107 bool cos_incompat = false;
1109 ktime_t kstart = ktime_get();
1113 DEBUG_REQ(D_INODE, req, "unlink "DFID"/"DNAME"", PFID(rr->rr_fid1),
1114 PNAME(&rr->rr_name));
1116 if (info->mti_dlm_req)
1117 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1119 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNLINK))
1120 RETURN(err_serious(-ENOENT));
1122 if (!fid_is_md_operative(rr->rr_fid1))
1125 mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1127 RETURN(PTR_ERR(mp));
1129 if (mdt_object_remote(mp)) {
1130 cos_incompat = true;
1132 rc = mdt_version_get_check_save(info, mp, 0);
1134 GOTO(put_parent, rc);
1137 OBD_RACE(OBD_FAIL_MDS_REINT_OPEN);
1138 OBD_RACE(OBD_FAIL_MDS_REINT_OPEN2);
1140 parent_lh = &info->mti_lh[MDT_LH_PARENT];
1141 mdt_lock_pdo_init(parent_lh, LCK_PW, &rr->rr_name);
1142 rc = mdt_reint_object_lock(info, mp, parent_lh, MDS_INODELOCK_UPDATE,
1145 GOTO(put_parent, rc);
1147 if (info->mti_spec.sp_cr_flags & MDS_OP_WITH_FID) {
1148 *child_fid = *rr->rr_fid2;
1150 /* lookup child object along with version checking */
1151 fid_zero(child_fid);
1152 rc = mdt_lookup_version_check(info, mp, &rr->rr_name, child_fid,
1155 /* Name might not be able to find during resend of
1156 * remote unlink, considering following case.
1157 * dir_A is a remote directory, the name entry of
1158 * dir_A is on MDT0, the directory is on MDT1,
1160 * 1. client sends unlink req to MDT1.
1161 * 2. MDT1 sends name delete update to MDT0.
1162 * 3. name entry is being deleted in MDT0 synchronously.
1163 * 4. MDT1 is restarted.
1164 * 5. client resends unlink req to MDT1. So it can not
1165 * find the name entry on MDT0 anymore.
1166 * In this case, MDT1 only needs to destory the local
1169 if (mdt_object_remote(mp) && rc == -ENOENT &&
1170 !fid_is_zero(rr->rr_fid2) &&
1171 lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
1173 *child_fid = *rr->rr_fid2;
1175 GOTO(unlock_parent, rc);
1180 if (!fid_is_md_operative(child_fid))
1181 GOTO(unlock_parent, rc = -EPERM);
1183 /* We will lock the child regardless it is local or remote. No harm. */
1184 mc = mdt_object_find(info->mti_env, info->mti_mdt, child_fid);
1186 GOTO(unlock_parent, rc = PTR_ERR(mc));
1188 if (info->mti_spec.sp_cr_flags & MDS_OP_WITH_FID) {
1189 /* In this case, child fid is embedded in the request, and we do
1190 * not have a proper name as rr_name contains an encoded
1191 * hash. So find name that matches provided hash.
1193 if (!find_name_matching_hash(info, &rr->rr_name,
1195 GOTO(put_child, rc = -ENOENT);
1198 if (!cos_incompat) {
1199 rc = mdt_object_striped(info, mc);
1201 GOTO(put_child, rc);
1205 mdt_object_put(info->mti_env, mc);
1206 mdt_object_unlock(info, mp, parent_lh, -EAGAIN);
1211 child_lh = &info->mti_lh[MDT_LH_CHILD];
1212 mdt_lock_reg_init(child_lh, LCK_EX);
1213 if (info->mti_spec.sp_rm_entry) {
1214 struct lu_ucred *uc = mdt_ucred(info);
1216 if (!mdt_is_dne_client(req->rq_export))
1217 /* Return -ENOTSUPP for old client */
1218 GOTO(put_child, rc = -ENOTSUPP);
1220 if (!cap_raised(uc->uc_cap, CAP_SYS_ADMIN))
1221 GOTO(put_child, rc = -EPERM);
1223 ma->ma_need = MA_INODE;
1225 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1226 NULL, &rr->rr_name, ma, no_name);
1227 GOTO(put_child, rc);
1230 if (mdt_object_remote(mc)) {
1231 struct mdt_body *repbody;
1233 if (!fid_is_zero(rr->rr_fid2)) {
1234 CDEBUG(D_INFO, "%s: name "DNAME" cannot find "DFID"\n",
1235 mdt_obd_name(info->mti_mdt),
1236 PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
1237 GOTO(put_child, rc = -ENOENT);
1239 CDEBUG(D_INFO, "%s: name "DNAME": "DFID" is on another MDT\n",
1240 mdt_obd_name(info->mti_mdt),
1241 PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
1243 if (!mdt_is_dne_client(req->rq_export))
1244 /* Return -ENOTSUPP for old client */
1245 GOTO(put_child, rc = -ENOTSUPP);
1247 /* Revoke the LOOKUP lock of the remote object granted by
1248 * this MDT. Since the unlink will happen on another MDT,
1249 * it will release the LOOKUP lock right away. Then What
1250 * would happen if another client try to grab the LOOKUP
1251 * lock at the same time with unlink XXX
1253 mdt_object_lock(info, mc, child_lh, MDS_INODELOCK_LOOKUP);
1254 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1255 LASSERT(repbody != NULL);
1256 repbody->mbo_fid1 = *mdt_object_fid(mc);
1257 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
1258 GOTO(unlock_child, rc = -EREMOTE);
1260 /* We used to acquire MDS_INODELOCK_FULL here but we can't do
1261 * this now because a running HSM restore on the child (unlink
1262 * victim) will hold the layout lock. See LU-4002.
1264 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
1265 if (mdt_object_remote(mp)) {
1266 /* Enqueue lookup lock from parent MDT */
1267 rc = mdt_remote_object_lock(info, mp, mdt_object_fid(mc),
1268 &child_lh->mlh_rreg_lh,
1269 child_lh->mlh_rreg_mode,
1270 MDS_INODELOCK_LOOKUP, false);
1272 GOTO(put_child, rc);
1274 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1277 rc = mdt_reint_striped_lock(info, mc, child_lh, lock_ibits, einfo,
1280 GOTO(put_child, rc);
1283 * Now we can only make sure we need MA_INODE, in mdd layer, will check
1284 * whether need MA_LOV and MA_COOKIE.
1286 ma->ma_need = MA_INODE;
1289 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1290 OBD_FAIL_MDS_REINT_UNLINK_WRITE);
1291 /* save version when object is locked */
1292 mdt_version_get_save(info, mc, 1);
1294 mutex_lock(&mc->mot_lov_mutex);
1296 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1297 mdt_object_child(mc), &rr->rr_name, ma, no_name);
1299 mutex_unlock(&mc->mot_lov_mutex);
1301 GOTO(unlock_child, rc);
1303 if (!lu_object_is_dying(&mc->mot_header)) {
1304 rc = mdt_attr_get_complex(info, mc, ma);
1307 } else if (mdt_dom_check_for_discard(info, mc)) {
1308 mdt_dom_discard_data(info, mc);
1310 mdt_handle_last_unlink(info, mc, ma);
1313 if (ma->ma_valid & MA_INODE) {
1314 switch (ma->ma_attr.la_mode & S_IFMT) {
1316 mdt_counter_incr(req, LPROC_MDT_RMDIR,
1317 ktime_us_delta(ktime_get(), kstart));
1325 mdt_counter_incr(req, LPROC_MDT_UNLINK,
1326 ktime_us_delta(ktime_get(), kstart));
1329 LASSERTF(0, "bad file type %o unlinking\n",
1330 ma->ma_attr.la_mode);
1337 mdt_reint_striped_unlock(info, mc, child_lh, einfo, rc);
1339 if (info->mti_spec.sp_cr_flags & MDS_OP_WITH_FID &&
1340 info->mti_big_buf.lb_buf)
1341 lu_buf_free(&info->mti_big_buf);
1342 mdt_object_put(info->mti_env, mc);
1344 mdt_object_unlock(info, mp, parent_lh, rc);
1346 mdt_object_put(info->mti_env, mp);
1347 CFS_RACE_WAKEUP(OBD_FAIL_OBD_ZERO_NLINK_RACE);
1352 * VBR: save versions in reply: 0 - parent; 1 - child by fid; 2 - target by
1355 static int mdt_reint_link(struct mdt_thread_info *info,
1356 struct mdt_lock_handle *lhc)
1358 struct mdt_reint_record *rr = &info->mti_rr;
1359 struct ptlrpc_request *req = mdt_info_req(info);
1360 struct md_attr *ma = &info->mti_attr;
1361 struct mdt_object *ms;
1362 struct mdt_object *mp;
1363 struct mdt_lock_handle *lhs;
1364 struct mdt_lock_handle *lhp;
1365 ktime_t kstart = ktime_get();
1370 DEBUG_REQ(D_INODE, req, "link "DFID" to "DFID"/"DNAME,
1371 PFID(rr->rr_fid1), PFID(rr->rr_fid2), PNAME(&rr->rr_name));
1373 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_LINK))
1374 RETURN(err_serious(-ENOENT));
1376 if (OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_RESEND_RACE) ||
1377 OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_ENQ_RESEND)) {
1378 req->rq_no_reply = 1;
1379 RETURN(err_serious(-ENOENT));
1382 if (info->mti_dlm_req)
1383 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1385 /* Invalid case so return error immediately instead of
1388 if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2))
1391 if (!fid_is_md_operative(rr->rr_fid1) ||
1392 !fid_is_md_operative(rr->rr_fid2))
1395 /* step 1: find target parent dir */
1396 mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
1398 RETURN(PTR_ERR(mp));
1400 rc = mdt_version_get_check_save(info, mp, 0);
1402 GOTO(put_parent, rc);
1404 rc = mdt_check_enc(info, mp);
1406 GOTO(put_parent, rc);
1408 /* step 2: find source */
1409 ms = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1411 GOTO(put_parent, rc = PTR_ERR(ms));
1413 if (!mdt_object_exists(ms)) {
1414 CDEBUG(D_INFO, "%s: "DFID" does not exist.\n",
1415 mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1));
1416 GOTO(put_source, rc = -ENOENT);
1419 cos_incompat = (mdt_object_remote(mp) || mdt_object_remote(ms));
1421 OBD_RACE(OBD_FAIL_MDS_LINK_RENAME_RACE);
1423 lhp = &info->mti_lh[MDT_LH_PARENT];
1424 mdt_lock_pdo_init(lhp, LCK_PW, &rr->rr_name);
1425 rc = mdt_reint_object_lock(info, mp, lhp, MDS_INODELOCK_UPDATE,
1428 GOTO(put_source, rc);
1430 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1432 lhs = &info->mti_lh[MDT_LH_CHILD];
1433 mdt_lock_reg_init(lhs, LCK_EX);
1434 rc = mdt_reint_object_lock(info, ms, lhs,
1435 MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
1438 GOTO(unlock_parent, rc);
1440 /* step 3: link it */
1441 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1442 OBD_FAIL_MDS_REINT_LINK_WRITE);
1444 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(ms));
1445 rc = mdt_version_get_check_save(info, ms, 1);
1447 GOTO(unlock_source, rc);
1449 /** check target version by name during replay */
1450 rc = mdt_lookup_version_check(info, mp, &rr->rr_name,
1451 &info->mti_tmp_fid1, 2);
1452 if (rc != 0 && rc != -ENOENT)
1453 GOTO(unlock_source, rc);
1454 /* save version of file name for replay, it must be ENOENT here */
1455 if (!req_is_replay(mdt_info_req(info))) {
1456 if (rc != -ENOENT) {
1457 CDEBUG(D_INFO, "link target "DNAME" existed!\n",
1458 PNAME(&rr->rr_name));
1459 GOTO(unlock_source, rc = -EEXIST);
1461 info->mti_ver[2] = ENOENT_VERSION;
1462 mdt_version_save(mdt_info_req(info), info->mti_ver[2], 2);
1465 rc = mdo_link(info->mti_env, mdt_object_child(mp),
1466 mdt_object_child(ms), &rr->rr_name, ma);
1469 mdt_counter_incr(req, LPROC_MDT_LINK,
1470 ktime_us_delta(ktime_get(), kstart));
1474 mdt_object_unlock(info, ms, lhs, rc);
1476 mdt_object_unlock(info, mp, lhp, rc);
1478 mdt_object_put(info->mti_env, ms);
1480 mdt_object_put(info->mti_env, mp);
1484 * lock the part of the directory according to the hash of the name
1485 * (lh->mlh_pdo_hash) in parallel directory lock.
1487 static int mdt_pdir_hash_lock(struct mdt_thread_info *info,
1488 struct mdt_lock_handle *lh,
1489 struct mdt_object *obj, __u64 ibits,
1492 struct ldlm_res_id *res = &info->mti_res_id;
1493 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1494 union ldlm_policy_data *policy = &info->mti_policy;
1495 __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1499 * Finish res_id initializing by name hash marking part of
1500 * directory which is taking modification.
1502 LASSERT(lh->mlh_pdo_hash != 0);
1503 fid_build_pdo_res_name(mdt_object_fid(obj), lh->mlh_pdo_hash, res);
1504 memset(policy, 0, sizeof(*policy));
1505 policy->l_inodebits.bits = ibits;
1507 (lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX))
1508 dlmflags |= LDLM_FL_COS_INCOMPAT;
1510 * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
1511 * going to be sent to client. If it is - mdt_intent_policy() path will
1512 * fix it up and turn FL_LOCAL flag off.
1514 rc = mdt_fid_lock(info->mti_env, ns, &lh->mlh_reg_lh, lh->mlh_reg_mode,
1515 policy, res, dlmflags,
1516 &info->mti_exp->exp_handle.h_cookie);
1521 * Get BFL lock for rename or migrate process.
1523 static int mdt_rename_lock(struct mdt_thread_info *info,
1524 struct lustre_handle *lh)
1529 if (mdt_seq_site(info->mti_mdt)->ss_node_id != 0) {
1530 struct lu_fid *fid = &info->mti_tmp_fid1;
1531 struct mdt_object *obj;
1533 /* XXX, right now, it has to use object API to
1534 * enqueue lock cross MDT, so it will enqueue
1535 * rename lock(with LUSTRE_BFL_FID) by root object
1538 obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1540 RETURN(PTR_ERR(obj));
1542 rc = mdt_remote_object_lock(info, obj,
1543 &LUSTRE_BFL_FID, lh,
1545 MDS_INODELOCK_UPDATE, false);
1546 mdt_object_put(info->mti_env, obj);
1548 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1549 union ldlm_policy_data *policy = &info->mti_policy;
1550 struct ldlm_res_id *res_id = &info->mti_res_id;
1553 fid_build_reg_res_name(&LUSTRE_BFL_FID, res_id);
1554 memset(policy, 0, sizeof(*policy));
1555 policy->l_inodebits.bits = MDS_INODELOCK_UPDATE;
1556 flags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1557 rc = ldlm_cli_enqueue_local(info->mti_env, ns, res_id,
1558 LDLM_IBITS, policy, LCK_EX, &flags,
1560 ldlm_completion_ast, NULL, NULL, 0,
1562 &info->mti_exp->exp_handle.h_cookie,
1569 static void mdt_rename_unlock(struct lustre_handle *lh)
1572 LASSERT(lustre_handle_is_used(lh));
1573 /* Cancel the single rename lock right away */
1574 ldlm_lock_decref_and_cancel(lh, LCK_EX);
1578 static struct mdt_object *mdt_parent_find_check(struct mdt_thread_info *info,
1579 const struct lu_fid *fid,
1582 struct mdt_object *dir;
1586 dir = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1590 /* check early, the real version will be saved after locking */
1591 rc = mdt_version_get_check(info, dir, idx);
1595 if (!mdt_object_exists(dir))
1596 GOTO(out_put, rc = -ENOENT);
1598 if (!S_ISDIR(lu_object_attr(&dir->mot_obj)))
1599 GOTO(out_put, rc = -ENOTDIR);
1603 mdt_object_put(info->mti_env, dir);
1608 * in case obj is remote obj on its parent, revoke LOOKUP lock,
1609 * herein we don't really check it, just do revoke.
1611 int mdt_revoke_remote_lookup_lock(struct mdt_thread_info *info,
1612 struct mdt_object *pobj,
1613 struct mdt_object *obj)
1615 struct mdt_lock_handle *lh = &info->mti_lh[MDT_LH_LOCAL];
1618 mdt_lock_handle_init(lh);
1619 mdt_lock_reg_init(lh, LCK_EX);
1621 if (mdt_object_remote(pobj)) {
1622 /* don't bother to check if pobj and obj are on the same MDT. */
1623 rc = mdt_remote_object_lock(info, pobj, mdt_object_fid(obj),
1624 &lh->mlh_rreg_lh, LCK_EX,
1625 MDS_INODELOCK_LOOKUP, false);
1626 } else if (mdt_object_remote(obj)) {
1627 struct ldlm_res_id *res = &info->mti_res_id;
1628 union ldlm_policy_data *policy = &info->mti_policy;
1629 __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB |
1630 LDLM_FL_COS_INCOMPAT;
1632 fid_build_reg_res_name(mdt_object_fid(obj), res);
1633 memset(policy, 0, sizeof(*policy));
1634 policy->l_inodebits.bits = MDS_INODELOCK_LOOKUP;
1635 rc = mdt_fid_lock(info->mti_env, info->mti_mdt->mdt_namespace,
1636 &lh->mlh_reg_lh, LCK_EX, policy, res,
1639 /* do nothing if both are local */
1647 * TODO, currently we don't save this lock because there is no place to
1648 * hold this lock handle, but to avoid race we need to save this lock.
1650 mdt_object_unlock(info, NULL, lh, 1);
1656 * operation may takes locks of linkea, or directory stripes, group them in
1659 struct mdt_sub_lock {
1660 struct mdt_object *msl_obj;
1661 struct mdt_lock_handle msl_lh;
1662 struct list_head msl_linkage;
1665 static void mdt_unlock_list(struct mdt_thread_info *info,
1666 struct list_head *list, int decref)
1668 struct mdt_sub_lock *msl;
1669 struct mdt_sub_lock *tmp;
1671 list_for_each_entry_safe(msl, tmp, list, msl_linkage) {
1672 mdt_object_unlock_put(info, msl->msl_obj, &msl->msl_lh, decref);
1673 list_del(&msl->msl_linkage);
1678 static inline void mdt_migrate_object_unlock(struct mdt_thread_info *info,
1679 struct mdt_object *obj,
1680 struct mdt_lock_handle *lh,
1681 struct ldlm_enqueue_info *einfo,
1682 struct list_head *slave_locks,
1685 if (mdt_object_remote(obj)) {
1686 mdt_unlock_list(info, slave_locks, decref);
1687 mdt_object_unlock(info, obj, lh, decref);
1689 mdt_reint_striped_unlock(info, obj, lh, einfo, decref);
1694 * lock parents of links, and also check whether total locks don't exceed
1697 * \retval 0 on success, and locks can be saved in ptlrpc_reply_stat
1698 * \retval 1 on success, but total lock count may exceed RS_MAX_LOCKS
1699 * \retval -ev negative errno upon error
1701 static int mdt_link_parents_lock(struct mdt_thread_info *info,
1702 struct mdt_object *pobj,
1703 const struct md_attr *ma,
1704 struct mdt_object *obj,
1705 struct mdt_lock_handle *lhp,
1706 struct ldlm_enqueue_info *peinfo,
1707 struct list_head *parent_slave_locks,
1708 struct list_head *link_locks)
1710 struct mdt_device *mdt = info->mti_mdt;
1711 struct lu_buf *buf = &info->mti_big_buf;
1712 struct lu_name *lname = &info->mti_name;
1713 struct linkea_data ldata = { NULL };
1714 bool blocked = false;
1715 int local_lnkp_cnt = 0;
1719 if (S_ISDIR(lu_object_attr(&obj->mot_obj)))
1722 buf = lu_buf_check_and_alloc(buf, MAX_LINKEA_SIZE);
1723 if (buf->lb_buf == NULL)
1727 rc = mdt_links_read(info, obj, &ldata);
1729 if (rc == -ENOENT || rc == -ENODATA)
1734 for (linkea_first_entry(&ldata); ldata.ld_lee && !rc;
1735 linkea_next_entry(&ldata)) {
1736 struct mdt_object *lnkp;
1737 struct mdt_sub_lock *msl;
1741 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, lname,
1744 /* check if it's also linked to parent */
1745 if (lu_fid_eq(mdt_object_fid(pobj), &fid)) {
1746 CDEBUG(D_INFO, "skip parent "DFID", reovke "DNAME"\n",
1747 PFID(&fid), PNAME(lname));
1748 /* in case link is remote object, revoke LOOKUP lock */
1749 rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
1755 /* check if it's linked to a stripe of parent */
1756 if (ma->ma_valid & MA_LMV) {
1757 struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1758 struct lu_fid *stripe_fid = &info->mti_tmp_fid1;
1761 for (; j < le32_to_cpu(lmv->lmv_stripe_count); j++) {
1762 fid_le_to_cpu(stripe_fid,
1763 &lmv->lmv_stripe_fids[j]);
1764 if (lu_fid_eq(stripe_fid, &fid)) {
1765 CDEBUG(D_INFO, "skip stripe "DFID
1766 ", reovke "DNAME"\n",
1767 PFID(&fid), PNAME(lname));
1768 lnkp = mdt_object_find(info->mti_env,
1771 GOTO(out, rc = PTR_ERR(lnkp));
1777 rc = mdt_revoke_remote_lookup_lock(info, lnkp,
1779 mdt_object_put(info->mti_env, lnkp);
1784 /* Check if it's already locked */
1785 list_for_each_entry(msl, link_locks, msl_linkage) {
1786 if (lu_fid_eq(mdt_object_fid(msl->msl_obj), &fid)) {
1788 DFID" was locked, revoke "DNAME"\n",
1789 PFID(&fid), PNAME(lname));
1790 lnkp = msl->msl_obj;
1796 rc = mdt_revoke_remote_lookup_lock(info, lnkp, obj);
1800 CDEBUG(D_INFO, "lock "DFID":"DNAME"\n",
1801 PFID(&fid), PNAME(lname));
1803 lnkp = mdt_object_find(info->mti_env, mdt, &fid);
1805 CWARN("%s: cannot find obj "DFID": %ld\n",
1806 mdt_obd_name(mdt), PFID(&fid), PTR_ERR(lnkp));
1810 if (!mdt_object_exists(lnkp)) {
1811 CDEBUG(D_INFO, DFID" doesn't exist, skip "DNAME"\n",
1812 PFID(&fid), PNAME(lname));
1813 mdt_object_put(info->mti_env, lnkp);
1817 if (!mdt_object_remote(lnkp))
1822 GOTO(out, rc = -ENOMEM);
1825 * we can't follow parent-child lock order like other MD
1826 * operations, use lock_try here to avoid deadlock, if the lock
1827 * cannot be taken, drop all locks taken, revoke the blocked
1828 * one, and continue processing the remaining entries, and in
1829 * the end of the loop restart from beginning.
1831 mdt_lock_pdo_init(&msl->msl_lh, LCK_PW, lname);
1833 rc = mdt_object_lock_try(info, lnkp, &msl->msl_lh, &ibits,
1834 MDS_INODELOCK_UPDATE, true);
1835 if (!(ibits & MDS_INODELOCK_UPDATE)) {
1837 CDEBUG(D_INFO, "busy lock on "DFID" "DNAME"\n",
1838 PFID(&fid), PNAME(lname));
1840 mdt_unlock_list(info, link_locks, 1);
1841 /* also unlock parent locks to avoid deadlock */
1843 mdt_migrate_object_unlock(info, pobj, lhp,
1850 mdt_lock_pdo_init(&msl->msl_lh, LCK_PW, lname);
1851 rc = mdt_object_lock(info, lnkp, &msl->msl_lh,
1852 MDS_INODELOCK_UPDATE);
1854 mdt_object_put(info->mti_env, lnkp);
1859 if (mdt_object_remote(lnkp)) {
1860 struct ldlm_lock *lock;
1863 * for remote object, set lock cb_atomic,
1864 * so lock can be released in blocking_ast()
1865 * immediately, then the next lock_try will
1866 * have better chance of success.
1868 lock = ldlm_handle2lock(
1869 &msl->msl_lh.mlh_rreg_lh);
1870 LASSERT(lock != NULL);
1871 lock_res_and_lock(lock);
1872 ldlm_set_atomic_cb(lock);
1873 unlock_res_and_lock(lock);
1874 LDLM_LOCK_PUT(lock);
1877 mdt_object_unlock_put(info, lnkp, &msl->msl_lh, 1);
1882 INIT_LIST_HEAD(&msl->msl_linkage);
1883 msl->msl_obj = lnkp;
1884 list_add_tail(&msl->msl_linkage, link_locks);
1886 rc = mdt_revoke_remote_lookup_lock(info, lnkp, obj);
1890 GOTO(out, rc = -EBUSY);
1895 mdt_unlock_list(info, link_locks, rc);
1896 } else if (local_lnkp_cnt > RS_MAX_LOCKS - 5) {
1897 CDEBUG(D_INFO, "Too many links (%d), sync operations\n",
1900 * parent may have 3 local objects: master object and 2 stripes
1901 * (if it's being migrated too); source may have 1 local objects
1902 * as regular file; target has 1 local object.
1903 * Note, source may have 2 local locks if it is directory but it
1904 * can't have hardlinks, so it is not considered here.
1911 static int mdt_lock_remote_slaves(struct mdt_thread_info *info,
1912 struct mdt_object *obj,
1913 const struct md_attr *ma,
1914 struct list_head *slave_locks)
1916 struct mdt_device *mdt = info->mti_mdt;
1917 const struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1918 struct lu_fid *fid = &info->mti_tmp_fid1;
1919 struct mdt_object *slave;
1920 struct mdt_sub_lock *msl;
1925 LASSERT(mdt_object_remote(obj));
1926 LASSERT(ma->ma_valid & MA_LMV);
1929 if (!lmv_is_sane(lmv))
1932 for (i = 0; i < le32_to_cpu(lmv->lmv_stripe_count); i++) {
1933 fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[i]);
1935 if (!fid_is_sane(fid))
1938 slave = mdt_object_find(info->mti_env, mdt, fid);
1940 GOTO(out, rc = PTR_ERR(slave));
1944 mdt_object_put(info->mti_env, slave);
1945 GOTO(out, rc = -ENOMEM);
1948 mdt_lock_reg_init(&msl->msl_lh, LCK_EX);
1949 rc = mdt_reint_object_lock(info, slave, &msl->msl_lh,
1950 MDS_INODELOCK_UPDATE, true);
1953 mdt_object_put(info->mti_env, slave);
1957 INIT_LIST_HEAD(&msl->msl_linkage);
1958 msl->msl_obj = slave;
1959 list_add_tail(&msl->msl_linkage, slave_locks);
1965 mdt_unlock_list(info, slave_locks, rc);
1969 /* lock parent and its stripes */
1970 static int mdt_migrate_parent_lock(struct mdt_thread_info *info,
1971 struct mdt_object *obj,
1972 const struct md_attr *ma,
1973 struct mdt_lock_handle *lh,
1974 struct ldlm_enqueue_info *einfo,
1975 struct list_head *slave_locks)
1979 if (mdt_object_remote(obj)) {
1980 rc = mdt_remote_object_lock(info, obj, mdt_object_fid(obj),
1981 &lh->mlh_rreg_lh, LCK_PW,
1982 MDS_INODELOCK_UPDATE, false);
1987 * if obj is remote and striped, lock its stripes explicitly
1988 * because it's not striped in LOD layer on this MDT.
1990 if (ma->ma_valid & MA_LMV) {
1991 rc = mdt_lock_remote_slaves(info, obj, ma, slave_locks);
1993 mdt_object_unlock(info, obj, lh, rc);
1996 rc = mdt_reint_striped_lock(info, obj, lh, MDS_INODELOCK_UPDATE,
2004 * in migration, object may be remote, and we need take full lock of it and its
2005 * stripes if it's directory, besides, object may be a remote object on its
2006 * parent, revoke its LOOKUP lock on where its parent is located.
2008 static int mdt_migrate_object_lock(struct mdt_thread_info *info,
2009 struct mdt_object *pobj,
2010 struct mdt_object *obj,
2011 struct mdt_lock_handle *lh,
2012 struct ldlm_enqueue_info *einfo,
2013 struct list_head *slave_locks)
2017 if (mdt_object_remote(obj)) {
2018 rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
2022 rc = mdt_remote_object_lock(info, obj, mdt_object_fid(obj),
2023 &lh->mlh_rreg_lh, LCK_EX,
2024 MDS_INODELOCK_FULL, false);
2029 * if obj is remote and striped, lock its stripes explicitly
2030 * because it's not striped in LOD layer on this MDT.
2032 if (S_ISDIR(lu_object_attr(&obj->mot_obj))) {
2033 struct md_attr *ma = &info->mti_attr;
2035 rc = mdt_stripe_get(info, obj, ma, XATTR_NAME_LMV);
2037 mdt_object_unlock(info, obj, lh, rc);
2041 if (ma->ma_valid & MA_LMV) {
2042 rc = mdt_lock_remote_slaves(info, obj, ma,
2045 mdt_object_unlock(info, obj, lh, rc);
2049 if (mdt_object_remote(pobj)) {
2050 rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
2055 rc = mdt_reint_striped_lock(info, obj, lh, MDS_INODELOCK_FULL,
2063 * lookup source by name, if parent is striped directory, we need to find the
2064 * corresponding stripe where source is located, and then lookup there.
2066 * besides, if parent is migrating too, and file is already in target stripe,
2067 * this should be a redo of 'lfs migrate' on client side.
2069 static int mdt_migrate_lookup(struct mdt_thread_info *info,
2070 struct mdt_object *pobj,
2071 const struct md_attr *ma,
2072 const struct lu_name *lname,
2073 struct mdt_object **spobj,
2074 struct mdt_object **sobj)
2076 const struct lu_env *env = info->mti_env;
2077 struct lu_fid *fid = &info->mti_tmp_fid1;
2078 struct mdt_object *stripe;
2081 if (ma->ma_valid & MA_LMV) {
2082 /* if parent is striped, lookup on corresponding stripe */
2083 struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
2085 if (!lmv_is_sane(lmv))
2088 rc = lmv_name_to_stripe_index_old(lmv, lname->ln_name,
2093 fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[rc]);
2095 stripe = mdt_object_find(env, info->mti_mdt, fid);
2097 return PTR_ERR(stripe);
2100 rc = mdo_lookup(env, mdt_object_child(stripe), lname, fid,
2102 if (rc == -ENOENT && lmv_is_layout_changing(lmv)) {
2104 * if parent layout is changeing, and lookup child
2105 * failed on source stripe, lookup again on target
2106 * stripe, if it exists, it means previous migration
2107 * was interrupted, and current file was migrated
2110 mdt_object_put(env, stripe);
2112 rc = lmv_name_to_stripe_index(lmv, lname->ln_name,
2117 fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[rc]);
2119 stripe = mdt_object_find(env, info->mti_mdt, fid);
2121 return PTR_ERR(stripe);
2124 rc = mdo_lookup(env, mdt_object_child(stripe), lname,
2125 fid, &info->mti_spec);
2126 mdt_object_put(env, stripe);
2127 return rc ?: -EALREADY;
2129 mdt_object_put(env, stripe);
2134 rc = mdo_lookup(env, mdt_object_child(pobj), lname, fid,
2140 mdt_object_get(env, stripe);
2145 *sobj = mdt_object_find(env, info->mti_mdt, fid);
2146 if (IS_ERR(*sobj)) {
2147 mdt_object_put(env, stripe);
2148 rc = PTR_ERR(*sobj);
2156 /* end lease and close file for regular file */
2157 static int mdd_migrate_close(struct mdt_thread_info *info,
2158 struct mdt_object *obj)
2160 struct close_data *data;
2161 struct mdt_body *repbody;
2162 struct ldlm_lock *lease;
2167 if (!req_capsule_field_present(info->mti_pill, &RMF_MDT_EPOCH,
2169 !req_capsule_field_present(info->mti_pill, &RMF_CLOSE_DATA,
2173 data = req_capsule_client_get(info->mti_pill, &RMF_CLOSE_DATA);
2178 lease = ldlm_handle2lock(&data->cd_handle);
2182 /* check if the lease was already canceled */
2183 lock_res_and_lock(lease);
2184 rc = ldlm_is_cancel(lease);
2185 unlock_res_and_lock(lease);
2189 LDLM_DEBUG(lease, DFID" lease broken",
2190 PFID(mdt_object_fid(obj)));
2194 * cancel server side lease, client side counterpart should have been
2195 * cancelled, it's okay to cancel it now as we've held mot_open_sem.
2197 ldlm_lock_cancel(lease);
2198 ldlm_reprocess_all(lease->l_resource,
2199 lease->l_policy_data.l_inodebits.bits);
2200 LDLM_LOCK_PUT(lease);
2203 rc2 = mdt_close_internal(info, mdt_info_req(info), NULL);
2204 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
2205 repbody->mbo_valid |= OBD_MD_CLOSE_INTENT_EXECED;
2211 * migrate file in below steps:
2212 * 1. lock parent and its stripes
2213 * 2. lookup source by name
2214 * 3. lock parents of source links if source is not directory
2215 * 4. reject if source is in HSM
2216 * 5. take source open_sem and close file if source is regular file
2217 * 6. lock source and its stripes if it's directory
2218 * 7. lock target so subsequent change to it can trigger COS
2220 * 9. unlock above locks
2221 * 10. sync device if source has links
2223 int mdt_reint_migrate(struct mdt_thread_info *info,
2224 struct mdt_lock_handle *unused)
2226 const struct lu_env *env = info->mti_env;
2227 struct mdt_device *mdt = info->mti_mdt;
2228 struct ptlrpc_request *req = mdt_info_req(info);
2229 struct mdt_reint_record *rr = &info->mti_rr;
2230 struct lu_ucred *uc = mdt_ucred(info);
2231 struct md_attr *ma = &info->mti_attr;
2232 struct ldlm_enqueue_info *peinfo = &info->mti_einfo[0];
2233 struct ldlm_enqueue_info *seinfo = &info->mti_einfo[1];
2234 struct mdt_object *pobj;
2235 struct mdt_object *spobj = NULL;
2236 struct mdt_object *sobj = NULL;
2237 struct mdt_object *tobj;
2238 struct lustre_handle rename_lh = { 0 };
2239 struct mdt_lock_handle *lhp;
2240 struct mdt_lock_handle *lhs;
2241 struct mdt_lock_handle *lht;
2242 LIST_HEAD(parent_slave_locks);
2243 LIST_HEAD(child_slave_locks);
2244 LIST_HEAD(link_locks);
2245 int lock_retries = 5;
2246 bool open_sem_locked = false;
2247 bool do_sync = false;
2251 CDEBUG(D_INODE, "migrate "DFID"/"DNAME" to "DFID"\n", PFID(rr->rr_fid1),
2252 PNAME(&rr->rr_name), PFID(rr->rr_fid2));
2254 if (info->mti_dlm_req)
2255 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2257 if (!fid_is_md_operative(rr->rr_fid1) ||
2258 !fid_is_md_operative(rr->rr_fid2))
2261 /* don't allow migrate . or .. */
2262 if (lu_name_is_dot_or_dotdot(&rr->rr_name))
2265 if (!mdt->mdt_enable_remote_dir || !mdt->mdt_enable_dir_migration)
2268 if (uc && !cap_raised(uc->uc_cap, CAP_SYS_ADMIN) &&
2269 uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
2270 mdt->mdt_enable_remote_dir_gid != -1)
2274 * Note: do not enqueue rename lock for replay request, because
2275 * if other MDT holds rename lock, but being blocked to wait for
2276 * this MDT to finish its recovery, and the failover MDT can not
2277 * get rename lock, which will cause deadlock.
2279 * req is NULL if this is called by directory auto-split.
2281 if (req && !req_is_replay(req)) {
2282 rc = mdt_rename_lock(info, &rename_lh);
2284 CERROR("%s: can't lock FS for rename: rc = %d\n",
2285 mdt_obd_name(info->mti_mdt), rc);
2290 /* pobj is master object of parent */
2291 pobj = mdt_object_find(env, mdt, rr->rr_fid1);
2293 GOTO(unlock_rename, rc = PTR_ERR(pobj));
2296 rc = mdt_version_get_check(info, pobj, 0);
2298 GOTO(put_parent, rc);
2301 if (!mdt_object_exists(pobj))
2302 GOTO(put_parent, rc = -ENOENT);
2304 if (!S_ISDIR(lu_object_attr(&pobj->mot_obj)))
2305 GOTO(put_parent, rc = -ENOTDIR);
2307 rc = mdt_check_enc(info, pobj);
2309 GOTO(put_parent, rc);
2311 rc = mdt_stripe_get(info, pobj, ma, XATTR_NAME_LMV);
2313 GOTO(put_parent, rc);
2316 /* lock parent object */
2317 lhp = &info->mti_lh[MDT_LH_PARENT];
2318 mdt_lock_reg_init(lhp, LCK_PW);
2319 rc = mdt_migrate_parent_lock(info, pobj, ma, lhp, peinfo,
2320 &parent_slave_locks);
2322 GOTO(put_parent, rc);
2325 * spobj is the corresponding stripe against name if pobj is striped
2326 * directory, which is the real parent, and no need to lock, because
2327 * we've taken full lock of pobj.
2329 rc = mdt_migrate_lookup(info, pobj, ma, &rr->rr_name, &spobj, &sobj);
2331 GOTO(unlock_parent, rc);
2333 /* lock parents of source links, and revoke LOOKUP lock of links */
2334 rc = mdt_link_parents_lock(info, pobj, ma, sobj, lhp, peinfo,
2335 &parent_slave_locks, &link_locks);
2336 if (rc == -EBUSY && lock_retries-- > 0) {
2337 mdt_object_put(env, sobj);
2338 mdt_object_put(env, spobj);
2343 GOTO(put_source, rc);
2346 * RS_MAX_LOCKS is the limit of number of locks that can be saved along
2347 * with one request, if total lock count exceeds this limit, we will
2348 * drop all locks after migration, and synchronous device in the end.
2352 /* TODO: DoM migration is not supported, migrate dirent only */
2353 if (S_ISREG(lu_object_attr(&sobj->mot_obj))) {
2354 rc = mdt_stripe_get(info, sobj, ma, XATTR_NAME_LOV);
2356 GOTO(unlock_links, rc);
2358 if (ma->ma_valid & MA_LOV && mdt_lmm_dom_stripesize(ma->ma_lmm))
2359 info->mti_spec.sp_migrate_nsonly = 1;
2360 } else if (S_ISDIR(lu_object_attr(&sobj->mot_obj))) {
2361 rc = mdt_stripe_get(info, sobj, ma, XATTR_NAME_LMV);
2363 GOTO(unlock_links, rc);
2365 /* race with restripe/auto-split? */
2366 if ((ma->ma_valid & MA_LMV) &&
2367 lmv_is_restriping(&ma->ma_lmv->lmv_md_v1))
2368 GOTO(unlock_links, rc = -EBUSY);
2371 /* if migration HSM is allowed */
2372 if (!mdt->mdt_opts.mo_migrate_hsm_allowed) {
2373 ma->ma_need = MA_HSM;
2375 rc = mdt_attr_get_complex(info, sobj, ma);
2377 GOTO(unlock_links, rc);
2379 if ((ma->ma_valid & MA_HSM) && ma->ma_hsm.mh_flags != 0)
2380 GOTO(unlock_links, rc = -EOPNOTSUPP);
2383 /* end lease and close file for regular file */
2384 if (info->mti_spec.sp_migrate_close) {
2385 /* try to hold open_sem so that nobody else can open the file */
2386 if (!down_write_trylock(&sobj->mot_open_sem)) {
2388 mdd_migrate_close(info, sobj);
2389 GOTO(unlock_links, rc = -EBUSY);
2391 open_sem_locked = true;
2392 rc = mdd_migrate_close(info, sobj);
2394 GOTO(unlock_open_sem, rc);
2399 lhs = &info->mti_lh[MDT_LH_OLD];
2400 mdt_lock_reg_init(lhs, LCK_EX);
2401 rc = mdt_migrate_object_lock(info, spobj, sobj, lhs, seinfo,
2402 &child_slave_locks);
2404 GOTO(unlock_open_sem, rc);
2407 tobj = mdt_object_find(env, mdt, rr->rr_fid2);
2409 GOTO(unlock_source, rc = PTR_ERR(tobj));
2411 lht = &info->mti_lh[MDT_LH_NEW];
2412 mdt_lock_reg_init(lht, LCK_EX);
2413 rc = mdt_reint_object_lock(info, tobj, lht, MDS_INODELOCK_FULL, true);
2415 GOTO(put_target, rc);
2417 /* Don't do lookup sanity check. We know name doesn't exist. */
2418 info->mti_spec.sp_cr_lookup = 0;
2419 info->mti_spec.sp_feat = &dt_directory_features;
2421 rc = mdo_migrate(env, mdt_object_child(pobj),
2422 mdt_object_child(sobj), &rr->rr_name,
2423 mdt_object_child(tobj),
2424 &info->mti_spec, ma);
2426 lprocfs_counter_incr(mdt->mdt_lu_dev.ld_obd->obd_md_stats,
2427 LPROC_MDT_MIGRATE + LPROC_MD_LAST_OPC);
2430 mdt_object_unlock(info, tobj, lht, rc);
2432 mdt_object_put(env, tobj);
2434 mdt_migrate_object_unlock(info, sobj, lhs, seinfo,
2435 &child_slave_locks, rc);
2437 if (open_sem_locked)
2438 up_write(&sobj->mot_open_sem);
2440 /* if we've got too many locks to save into RPC,
2441 * then just commit before the locks are released
2444 mdt_device_sync(env, mdt);
2445 mdt_unlock_list(info, &link_locks, do_sync ? 1 : rc);
2447 mdt_object_put(env, sobj);
2448 mdt_object_put(env, spobj);
2450 mdt_migrate_object_unlock(info, pobj, lhp, peinfo,
2451 &parent_slave_locks, rc);
2453 mdt_object_put(env, pobj);
2455 if (lustre_handle_is_used(&rename_lh))
2456 mdt_rename_unlock(&rename_lh);
2461 static int mdt_object_lock_save(struct mdt_thread_info *info,
2462 struct mdt_object *dir,
2463 struct mdt_lock_handle *lh,
2464 int idx, bool cos_incompat)
2468 /* we lock the target dir if it is local */
2469 rc = mdt_reint_object_lock(info, dir, lh, MDS_INODELOCK_UPDATE,
2474 /* get and save correct version after locking */
2475 mdt_version_get_save(info, dir, idx);
2480 * determine lock order of sobj and tobj
2482 * there are two situations we need to lock tobj before sobj:
2483 * 1. sobj is child of tobj
2484 * 2. sobj and tobj are stripes of a directory, and stripe index of sobj is
2485 * larger than that of tobj
2487 * \retval 1 lock tobj before sobj
2488 * \retval 0 lock sobj before tobj
2489 * \retval -ev negative errno upon error
2491 static int mdt_rename_determine_lock_order(struct mdt_thread_info *info,
2492 struct mdt_object *sobj,
2493 struct mdt_object *tobj)
2495 struct md_attr *ma = &info->mti_attr;
2496 struct lu_fid *spfid = &info->mti_tmp_fid1;
2497 struct lu_fid *tpfid = &info->mti_tmp_fid2;
2498 struct lmv_mds_md_v1 *lmv;
2503 /* sobj and tobj are the same */
2507 if (fid_is_root(mdt_object_fid(sobj)))
2510 if (fid_is_root(mdt_object_fid(tobj)))
2513 /* check whether sobj is child of tobj */
2514 rc = mdo_is_subdir(info->mti_env, mdt_object_child(sobj),
2515 mdt_object_fid(tobj));
2522 /* check whether sobj and tobj are children of the same parent */
2523 rc = mdt_attr_get_pfid(info, sobj, spfid);
2527 rc = mdt_attr_get_pfid(info, tobj, tpfid);
2531 if (!lu_fid_eq(spfid, tpfid))
2534 /* check whether sobj and tobj are sibling stripes */
2535 rc = mdt_stripe_get(info, sobj, ma, XATTR_NAME_LMV);
2539 if (!(ma->ma_valid & MA_LMV))
2542 lmv = &ma->ma_lmv->lmv_md_v1;
2543 if (!(le32_to_cpu(lmv->lmv_magic) & LMV_MAGIC_STRIPE))
2545 sindex = le32_to_cpu(lmv->lmv_master_mdt_index);
2548 rc = mdt_stripe_get(info, tobj, ma, XATTR_NAME_LMV);
2552 if (!(ma->ma_valid & MA_LMV))
2555 lmv = &ma->ma_lmv->lmv_md_v1;
2556 if (!(le32_to_cpu(lmv->lmv_magic) & LMV_MAGIC_STRIPE))
2558 tindex = le32_to_cpu(lmv->lmv_master_mdt_index);
2560 /* check stripe index of sobj and tobj */
2561 if (sindex == tindex)
2564 return sindex < tindex ? 0 : 1;
2568 * lock rename source object.
2570 * Both source and source parent may be remote, and source may be a remote
2571 * object on source parent, to avoid overriding lock handle, store remote
2572 * LOOKUP lock separately in @lhr.
2574 * \retval 0 on success
2575 * \retval -ev negative errno upon error
2577 static int mdt_rename_source_lock(struct mdt_thread_info *info,
2578 struct mdt_object *parent,
2579 struct mdt_object *child,
2580 struct mdt_lock_handle *lhc,
2581 struct mdt_lock_handle *lhr,
2587 rc = mdt_is_remote_object(info, parent, child);
2592 /* enqueue remote LOOKUP lock from the parent MDT */
2593 __u64 rmt_ibits = MDS_INODELOCK_LOOKUP;
2595 if (mdt_object_remote(parent)) {
2596 rc = mdt_remote_object_lock(info, parent,
2597 mdt_object_fid(child),
2604 LASSERT(mdt_object_remote(child));
2605 rc = mdt_object_local_lock(info, child, lhr,
2606 &rmt_ibits, 0, true);
2611 ibits &= ~MDS_INODELOCK_LOOKUP;
2614 if (mdt_object_remote(child)) {
2615 rc = mdt_remote_object_lock(info, child, mdt_object_fid(child),
2622 rc = mdt_reint_object_lock(info, child, lhc, ibits,
2627 mdt_object_unlock(info, child, lhr, rc);
2632 /* Helper function for mdt_reint_rename so we don't need to opencode
2633 * two different order lockings
2635 static int mdt_lock_two_dirs(struct mdt_thread_info *info,
2636 struct mdt_object *mfirstdir,
2637 struct mdt_lock_handle *lh_firstdirp,
2638 struct mdt_object *mseconddir,
2639 struct mdt_lock_handle *lh_seconddirp,
2644 rc = mdt_object_lock_save(info, mfirstdir, lh_firstdirp, 0,
2649 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
2651 if (mfirstdir != mseconddir) {
2652 rc = mdt_object_lock_save(info, mseconddir, lh_seconddirp, 1,
2654 } else if (!mdt_object_remote(mseconddir) &&
2655 lh_firstdirp->mlh_pdo_hash !=
2656 lh_seconddirp->mlh_pdo_hash) {
2657 rc = mdt_pdir_hash_lock(info, lh_seconddirp, mseconddir,
2658 MDS_INODELOCK_UPDATE,
2660 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PDO_LOCK2, 10);
2664 mdt_object_unlock(info, mfirstdir, lh_firstdirp, rc);
2670 * VBR: rename versions in reply: 0 - srcdir parent; 1 - tgtdir parent;
2671 * 2 - srcdir child; 3 - tgtdir child.
2672 * Update on disk version of srcdir child.
2674 static int mdt_reint_rename(struct mdt_thread_info *info,
2675 struct mdt_lock_handle *unused)
2677 struct mdt_device *mdt = info->mti_mdt;
2678 struct mdt_reint_record *rr = &info->mti_rr;
2679 struct md_attr *ma = &info->mti_attr;
2680 struct ptlrpc_request *req = mdt_info_req(info);
2681 struct mdt_object *msrcdir = NULL;
2682 struct mdt_object *mtgtdir = NULL;
2683 struct mdt_object *mold;
2684 struct mdt_object *mnew = NULL;
2685 struct lustre_handle rename_lh = { 0 };
2686 struct mdt_lock_handle *lh_srcdirp;
2687 struct mdt_lock_handle *lh_tgtdirp;
2688 struct mdt_lock_handle *lh_oldp = NULL;
2689 struct mdt_lock_handle *lh_rmt = NULL;
2690 struct mdt_lock_handle *lh_newp = NULL;
2691 struct lu_fid *old_fid = &info->mti_tmp_fid1;
2692 struct lu_fid *new_fid = &info->mti_tmp_fid2;
2694 bool reverse = false, discard = false;
2696 ktime_t kstart = ktime_get();
2697 enum mdt_stat_idx msi = 0;
2701 DEBUG_REQ(D_INODE, req, "rename "DFID"/"DNAME" to "DFID"/"DNAME,
2702 PFID(rr->rr_fid1), PNAME(&rr->rr_name),
2703 PFID(rr->rr_fid2), PNAME(&rr->rr_tgt_name));
2705 if (info->mti_dlm_req)
2706 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2708 if (!fid_is_md_operative(rr->rr_fid1) ||
2709 !fid_is_md_operative(rr->rr_fid2))
2712 /* find both parents. */
2713 msrcdir = mdt_parent_find_check(info, rr->rr_fid1, 0);
2714 if (IS_ERR(msrcdir))
2715 RETURN(PTR_ERR(msrcdir));
2717 rc = mdt_check_enc(info, msrcdir);
2719 GOTO(out_put_srcdir, rc);
2721 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
2723 if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2)) {
2725 mdt_object_get(info->mti_env, mtgtdir);
2727 mtgtdir = mdt_parent_find_check(info, rr->rr_fid2, 1);
2728 if (IS_ERR(mtgtdir))
2729 GOTO(out_put_srcdir, rc = PTR_ERR(mtgtdir));
2732 rc = mdt_check_enc(info, mtgtdir);
2734 GOTO(out_put_tgtdir, rc);
2737 * Note: do not enqueue rename lock for replay request, because
2738 * if other MDT holds rename lock, but being blocked to wait for
2739 * this MDT to finish its recovery, and the failover MDT can not
2740 * get rename lock, which will cause deadlock.
2742 if (!req_is_replay(req)) {
2743 bool remote = mdt_object_remote(msrcdir);
2746 * Normally rename RPC is handled on the MDT with the target
2747 * directory (if target exists, it's on the MDT with the
2748 * target), if the source directory is remote, it's a hint that
2749 * source is remote too (this may not be true, but it won't
2750 * cause any issue), return -EXDEV early to avoid taking
2753 if (!mdt->mdt_enable_remote_rename && remote)
2754 GOTO(out_put_tgtdir, rc = -EXDEV);
2756 /* This might be further relaxed in the future for regular file
2757 * renames in different source and target parents. Start with
2758 * only same-directory renames for simplicity and because this
2759 * is by far the most the common use case.
2761 * Striped directories should be considered "remote".
2763 if (msrcdir != mtgtdir || remote ||
2764 (S_ISDIR(ma->ma_attr.la_mode) &&
2765 !mdt->mdt_enable_parallel_rename_dir) ||
2766 (!S_ISDIR(ma->ma_attr.la_mode) &&
2767 !mdt->mdt_enable_parallel_rename_file)) {
2768 rc = mdt_rename_lock(info, &rename_lh);
2770 CERROR("%s: cannot lock for rename: rc = %d\n",
2771 mdt_obd_name(mdt), rc);
2772 GOTO(out_put_tgtdir, rc);
2775 if (S_ISDIR(ma->ma_attr.la_mode))
2776 msi = LPROC_MDT_RENAME_PAR_DIR;
2778 msi = LPROC_MDT_RENAME_PAR_FILE;
2781 "%s: samedir parallel rename "DFID"/"DNAME"\n",
2782 mdt_obd_name(mdt), PFID(rr->rr_fid1),
2783 PNAME(&rr->rr_name));
2787 rc = mdt_rename_determine_lock_order(info, msrcdir, mtgtdir);
2789 GOTO(out_unlock_rename, rc);
2792 /* source needs to be looked up after locking source parent, otherwise
2793 * this rename may race with unlink source, and cause rename hang, see
2794 * sanityn.sh 55b, so check parents first, if later we found source is
2795 * remote, relock parents.
2797 cos_incompat = (mdt_object_remote(msrcdir) ||
2798 mdt_object_remote(mtgtdir));
2800 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
2802 /* lock parents in the proper order. */
2803 lh_srcdirp = &info->mti_lh[MDT_LH_PARENT];
2804 lh_tgtdirp = &info->mti_lh[MDT_LH_CHILD];
2806 OBD_RACE(OBD_FAIL_MDS_REINT_OPEN);
2807 OBD_RACE(OBD_FAIL_MDS_REINT_OPEN2);
2809 mdt_lock_pdo_init(lh_srcdirp, LCK_PW, &rr->rr_name);
2810 mdt_lock_pdo_init(lh_tgtdirp, LCK_PW, &rr->rr_tgt_name);
2812 /* In case of same dir local rename we must sort by the hash,
2813 * otherwise a lock deadlock is possible when renaming
2814 * a to b and b to a at the same time LU-15285
2816 if (!mdt_object_remote(mtgtdir) && mtgtdir == msrcdir)
2817 reverse = lh_srcdirp->mlh_pdo_hash > lh_tgtdirp->mlh_pdo_hash;
2818 if (unlikely(OBD_FAIL_PRECHECK(OBD_FAIL_MDS_PDO_LOCK)))
2822 rc = mdt_lock_two_dirs(info, mtgtdir, lh_tgtdirp, msrcdir,
2823 lh_srcdirp, cos_incompat);
2825 rc = mdt_lock_two_dirs(info, msrcdir, lh_srcdirp, mtgtdir,
2826 lh_tgtdirp, cos_incompat);
2829 GOTO(out_unlock_rename, rc);
2831 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
2832 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME2, 5);
2834 /* find mold object. */
2836 rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
2838 GOTO(out_unlock_parents, rc);
2840 if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
2841 GOTO(out_unlock_parents, rc = -EINVAL);
2843 if (!fid_is_md_operative(old_fid))
2844 GOTO(out_unlock_parents, rc = -EPERM);
2846 mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
2848 GOTO(out_unlock_parents, rc = PTR_ERR(mold));
2850 if (!mdt_object_exists(mold)) {
2851 LU_OBJECT_DEBUG(D_INODE, info->mti_env,
2853 "object does not exist");
2854 GOTO(out_put_old, rc = -ENOENT);
2857 if (mdt_object_remote(mold) && !mdt->mdt_enable_remote_rename)
2858 GOTO(out_put_old, rc = -EXDEV);
2860 /* Check if @mtgtdir is subdir of @mold, before locking child
2861 * to avoid reverse locking.
2863 if (mtgtdir != msrcdir) {
2864 rc = mdo_is_subdir(info->mti_env, mdt_object_child(mtgtdir),
2869 GOTO(out_put_old, rc);
2873 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mold));
2874 /* save version after locking */
2875 mdt_version_get_save(info, mold, 2);
2877 if (!cos_incompat && mdt_object_remote(mold)) {
2878 cos_incompat = true;
2879 mdt_object_put(info->mti_env, mold);
2880 mdt_object_unlock(info, mtgtdir, lh_tgtdirp, -EAGAIN);
2881 mdt_object_unlock(info, msrcdir, lh_srcdirp, -EAGAIN);
2885 /* find mnew object:
2886 * mnew target object may not exist now
2887 * lookup with version checking
2890 rc = mdt_lookup_version_check(info, mtgtdir, &rr->rr_tgt_name, new_fid,
2893 /* the new_fid should have been filled at this moment */
2894 if (lu_fid_eq(old_fid, new_fid))
2895 GOTO(out_put_old, rc);
2897 if (lu_fid_eq(new_fid, rr->rr_fid1) ||
2898 lu_fid_eq(new_fid, rr->rr_fid2))
2899 GOTO(out_put_old, rc = -EINVAL);
2901 if (!fid_is_md_operative(new_fid))
2902 GOTO(out_put_old, rc = -EPERM);
2904 mnew = mdt_object_find(info->mti_env, info->mti_mdt, new_fid);
2906 GOTO(out_put_old, rc = PTR_ERR(mnew));
2908 if (!mdt_object_exists(mnew)) {
2909 LU_OBJECT_DEBUG(D_INODE, info->mti_env,
2911 "object does not exist");
2912 GOTO(out_put_new, rc = -ENOENT);
2915 if (mdt_object_remote(mnew)) {
2916 struct mdt_body *repbody;
2918 /* Always send rename req to the target child MDT */
2919 repbody = req_capsule_server_get(info->mti_pill,
2921 LASSERT(repbody != NULL);
2922 repbody->mbo_fid1 = *new_fid;
2923 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
2924 GOTO(out_put_new, rc = -EXDEV);
2926 /* Before locking the target dir, check we do not replace
2927 * a dir with a non-dir, otherwise it may deadlock with
2928 * link op which tries to create a link in this dir
2929 * back to this non-dir.
2931 if (S_ISDIR(lu_object_attr(&mnew->mot_obj)) &&
2932 !S_ISDIR(lu_object_attr(&mold->mot_obj)))
2933 GOTO(out_put_new, rc = -EISDIR);
2935 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2936 lh_rmt = &info->mti_lh[MDT_LH_RMT];
2937 mdt_lock_reg_init(lh_oldp, LCK_EX);
2938 mdt_lock_reg_init(lh_rmt, LCK_EX);
2939 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2940 rc = mdt_rename_source_lock(info, msrcdir, mold, lh_oldp,
2941 lh_rmt, lock_ibits, cos_incompat);
2943 GOTO(out_put_new, rc);
2945 /* Check if @msrcdir is subdir of @mnew, before locking child
2946 * to avoid reverse locking.
2948 if (mtgtdir != msrcdir) {
2949 rc = mdo_is_subdir(info->mti_env,
2950 mdt_object_child(msrcdir), new_fid);
2954 GOTO(out_unlock_old, rc);
2958 /* We used to acquire MDS_INODELOCK_FULL here but we
2959 * can't do this now because a running HSM restore on
2960 * the rename onto victim will hold the layout
2961 * lock. See LU-4002.
2964 lh_newp = &info->mti_lh[MDT_LH_NEW];
2965 mdt_lock_reg_init(lh_newp, LCK_EX);
2966 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
2967 if (mdt_object_remote(mtgtdir)) {
2968 rc = mdt_remote_object_lock(info, mtgtdir,
2969 mdt_object_fid(mnew),
2970 &lh_newp->mlh_rreg_lh,
2971 lh_newp->mlh_rreg_mode,
2972 MDS_INODELOCK_LOOKUP,
2975 GOTO(out_unlock_old, rc);
2977 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
2979 rc = mdt_reint_object_lock(info, mnew, lh_newp, lock_ibits,
2982 GOTO(out_unlock_new, rc);
2984 /* get and save version after locking */
2985 mdt_version_get_save(info, mnew, 3);
2986 } else if (rc != -ENOENT) {
2987 GOTO(out_put_old, rc);
2989 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2990 lh_rmt = &info->mti_lh[MDT_LH_RMT];
2991 mdt_lock_reg_init(lh_oldp, LCK_EX);
2992 mdt_lock_reg_init(lh_rmt, LCK_EX);
2993 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2994 rc = mdt_rename_source_lock(info, msrcdir, mold, lh_oldp,
2995 lh_rmt, lock_ibits, cos_incompat);
2997 GOTO(out_put_old, rc);
2999 mdt_enoent_version_save(info, 3);
3002 /* step 5: rename it */
3003 mdt_reint_init_ma(info, ma);
3005 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
3006 OBD_FAIL_MDS_REINT_RENAME_WRITE);
3009 mutex_lock(&mnew->mot_lov_mutex);
3011 rc = mdo_rename(info->mti_env, mdt_object_child(msrcdir),
3012 mdt_object_child(mtgtdir), old_fid, &rr->rr_name,
3013 mnew != NULL ? mdt_object_child(mnew) : NULL,
3014 &rr->rr_tgt_name, ma);
3017 mutex_unlock(&mnew->mot_lov_mutex);
3019 /* handle last link of tgt object */
3022 mdt_handle_last_unlink(info, mnew, ma);
3023 discard = mdt_dom_check_for_discard(info, mnew);
3025 mdt_rename_counter_tally(info, info->mti_mdt, req,
3026 msrcdir, mtgtdir, msi,
3027 ktime_us_delta(ktime_get(), kstart));
3033 mdt_object_unlock(info, mnew, lh_newp, rc);
3035 mdt_object_unlock(info, NULL, lh_rmt, rc);
3036 mdt_object_unlock(info, mold, lh_oldp, rc);
3038 if (mnew && !discard)
3039 mdt_object_put(info->mti_env, mnew);
3041 mdt_object_put(info->mti_env, mold);
3043 mdt_object_unlock(info, mtgtdir, lh_tgtdirp, rc);
3044 mdt_object_unlock(info, msrcdir, lh_srcdirp, rc);
3046 if (lustre_handle_is_used(&rename_lh))
3047 mdt_rename_unlock(&rename_lh);
3049 mdt_object_put(info->mti_env, mtgtdir);
3051 mdt_object_put(info->mti_env, msrcdir);
3053 /* The DoM discard can be done right in the place above where it is
3054 * assigned, meanwhile it is done here after rename unlock due to
3055 * compatibility with old clients, for them the discard blocks
3056 * the main thread until completion. Check LU-11359 for details.
3059 mdt_dom_discard_data(info, mnew);
3060 mdt_object_put(info->mti_env, mnew);
3062 OBD_RACE(OBD_FAIL_MDS_LINK_RENAME_RACE);
3066 static int mdt_reint_resync(struct mdt_thread_info *info,
3067 struct mdt_lock_handle *lhc)
3069 struct mdt_reint_record *rr = &info->mti_rr;
3070 struct ptlrpc_request *req = mdt_info_req(info);
3071 struct md_attr *ma = &info->mti_attr;
3072 struct mdt_object *mo;
3073 struct ldlm_lock *lease;
3074 struct mdt_body *repbody;
3075 struct md_layout_change layout = { .mlc_mirror_id = rr->rr_mirror_id };
3080 DEBUG_REQ(D_INODE, req, DFID", FLR file resync", PFID(rr->rr_fid1));
3082 if (info->mti_dlm_req)
3083 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
3085 mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
3087 GOTO(out, rc = PTR_ERR(mo));
3089 if (!mdt_object_exists(mo))
3090 GOTO(out_obj, rc = -ENOENT);
3092 if (!S_ISREG(lu_object_attr(&mo->mot_obj)))
3093 GOTO(out_obj, rc = -EINVAL);
3095 if (mdt_object_remote(mo))
3096 GOTO(out_obj, rc = -EREMOTE);
3098 lease = ldlm_handle2lock(rr->rr_lease_handle);
3100 GOTO(out_obj, rc = -ESTALE);
3102 /* It's really necessary to grab open_sem and check if the lease lock
3103 * has been lost. There would exist a concurrent writer coming in and
3104 * generating some dirty data in memory cache, the writeback would fail
3105 * after the layout version is increased by MDS_REINT_RESYNC RPC.
3107 if (!down_write_trylock(&mo->mot_open_sem))
3108 GOTO(out_put_lease, rc = -EBUSY);
3110 lock_res_and_lock(lease);
3111 lease_broken = ldlm_is_cancel(lease);
3112 unlock_res_and_lock(lease);
3114 GOTO(out_unlock, rc = -EBUSY);
3116 /* the file has yet opened by anyone else after we took the lease. */
3117 layout.mlc_opc = MD_LAYOUT_RESYNC;
3118 lhc = &info->mti_lh[MDT_LH_LOCAL];
3119 rc = mdt_layout_change(info, mo, lhc, &layout);
3121 GOTO(out_unlock, rc);
3123 mdt_object_unlock(info, mo, lhc, 0);
3125 ma->ma_need = MA_INODE;
3127 rc = mdt_attr_get_complex(info, mo, ma);
3129 GOTO(out_unlock, rc);
3131 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
3132 mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
3136 up_write(&mo->mot_open_sem);
3138 LDLM_LOCK_PUT(lease);
3140 mdt_object_put(info->mti_env, mo);
3142 mdt_client_compatibility(info);
3143 rc2 = mdt_fix_reply(info);
3149 struct mdt_reinter {
3150 int (*mr_handler)(struct mdt_thread_info *, struct mdt_lock_handle *);
3151 enum lprocfs_extra_opc mr_extra_opc;
3154 static const struct mdt_reinter mdt_reinters[] = {
3156 .mr_handler = &mdt_reint_setattr,
3157 .mr_extra_opc = MDS_REINT_SETATTR,
3160 .mr_handler = &mdt_reint_create,
3161 .mr_extra_opc = MDS_REINT_CREATE,
3164 .mr_handler = &mdt_reint_link,
<