Whamcloud - gitweb
LU-14487 modules: remove references to Sun Trademark.
[fs/lustre-release.git] / lustre / mdt / mdt_reint.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, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/mdt/mdt_reint.c
32  *
33  * Lustre Metadata Target (mdt) reintegration routines
34  *
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>
40  */
41
42 #define DEBUG_SUBSYSTEM S_MDS
43
44 #include <lprocfs_status.h>
45 #include "mdt_internal.h"
46 #include <lustre_lmv.h>
47
48 static inline void mdt_reint_init_ma(struct mdt_thread_info *info,
49                                      struct md_attr *ma)
50 {
51         ma->ma_need = MA_INODE;
52         ma->ma_valid = 0;
53 }
54
55 /**
56  * Get version of object by fid.
57  *
58  * Return real version or ENOENT_VERSION if object doesn't exist
59  */
60 static void mdt_obj_version_get(struct mdt_thread_info *info,
61                                 struct mdt_object *o, __u64 *version)
62 {
63         LASSERT(o);
64
65         if (mdt_object_exists(o) && !mdt_object_remote(o) &&
66             !fid_is_obf(mdt_object_fid(o)))
67                 *version = dt_version_get(info->mti_env, mdt_obj2dt(o));
68         else
69                 *version = ENOENT_VERSION;
70         CDEBUG(D_INODE, "FID "DFID" version is %#llx\n",
71                PFID(mdt_object_fid(o)), *version);
72 }
73
74 /**
75  * Check version is correct.
76  *
77  * Should be called only during replay.
78  */
79 static int mdt_version_check(struct ptlrpc_request *req,
80                              __u64 version, int idx)
81 {
82         __u64 *pre_ver = lustre_msg_get_versions(req->rq_reqmsg);
83
84         ENTRY;
85         if (!exp_connect_vbr(req->rq_export))
86                 RETURN(0);
87
88         LASSERT(req_is_replay(req));
89         /** VBR: version is checked always because costs nothing */
90         LASSERT(idx < PTLRPC_NUM_VERSIONS);
91         /** Sanity check for malformed buffers */
92         if (pre_ver == NULL) {
93                 CERROR("No versions in request buffer\n");
94                 spin_lock(&req->rq_export->exp_lock);
95                 req->rq_export->exp_vbr_failed = 1;
96                 spin_unlock(&req->rq_export->exp_lock);
97                 RETURN(-EOVERFLOW);
98         } else if (pre_ver[idx] != version) {
99                 CDEBUG(D_INODE, "Version mismatch %#llx != %#llx\n",
100                        pre_ver[idx], version);
101                 spin_lock(&req->rq_export->exp_lock);
102                 req->rq_export->exp_vbr_failed = 1;
103                 spin_unlock(&req->rq_export->exp_lock);
104                 RETURN(-EOVERFLOW);
105         }
106         RETURN(0);
107 }
108
109 /**
110  * Save pre-versions in reply.
111  */
112 static void mdt_version_save(struct ptlrpc_request *req, __u64 version,
113                              int idx)
114 {
115         __u64 *reply_ver;
116
117         if (!exp_connect_vbr(req->rq_export))
118                 return;
119
120         LASSERT(!req_is_replay(req));
121         LASSERT(req->rq_repmsg != NULL);
122         reply_ver = lustre_msg_get_versions(req->rq_repmsg);
123         if (reply_ver)
124                 reply_ver[idx] = version;
125 }
126
127 /**
128  * Save enoent version, it is needed when it is obvious that object doesn't
129  * exist, e.g. child during create.
130  */
131 static void mdt_enoent_version_save(struct mdt_thread_info *info, int idx)
132 {
133         /* save version of file name for replay, it must be ENOENT here */
134         if (!req_is_replay(mdt_info_req(info))) {
135                 info->mti_ver[idx] = ENOENT_VERSION;
136                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
137         }
138 }
139
140 /**
141  * Get version from disk and save in reply buffer.
142  *
143  * Versions are saved in reply only during normal operations not replays.
144  */
145 void mdt_version_get_save(struct mdt_thread_info *info,
146                           struct mdt_object *mto, int idx)
147 {
148         /* don't save versions during replay */
149         if (!req_is_replay(mdt_info_req(info))) {
150                 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
151                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
152         }
153 }
154
155 /**
156  * Get version from disk and check it, no save in reply.
157  */
158 int mdt_version_get_check(struct mdt_thread_info *info,
159                           struct mdt_object *mto, int idx)
160 {
161         /* only check versions during replay */
162         if (!req_is_replay(mdt_info_req(info)))
163                 return 0;
164
165         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
166         return mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
167 }
168
169 /**
170  * Get version from disk and check if recovery or just save.
171  */
172 int mdt_version_get_check_save(struct mdt_thread_info *info,
173                                struct mdt_object *mto, int idx)
174 {
175         int rc = 0;
176
177         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
178         if (req_is_replay(mdt_info_req(info)))
179                 rc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx],
180                                        idx);
181         else
182                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
183         return rc;
184 }
185
186 /**
187  * Lookup with version checking.
188  *
189  * This checks version of 'name'. Many reint functions uses 'name' for child not
190  * FID, therefore we need to get object by name and check its version.
191  */
192 int mdt_lookup_version_check(struct mdt_thread_info *info,
193                              struct mdt_object *p,
194                              const struct lu_name *lname,
195                              struct lu_fid *fid, int idx)
196 {
197         int rc, vbrc;
198
199         rc = mdo_lookup(info->mti_env, mdt_object_child(p), lname, fid,
200                         &info->mti_spec);
201         /* Check version only during replay */
202         if (!req_is_replay(mdt_info_req(info)))
203                 return rc;
204
205         info->mti_ver[idx] = ENOENT_VERSION;
206         if (rc == 0) {
207                 struct mdt_object *child;
208
209                 child = mdt_object_find(info->mti_env, info->mti_mdt, fid);
210                 if (likely(!IS_ERR(child))) {
211                         mdt_obj_version_get(info, child, &info->mti_ver[idx]);
212                         mdt_object_put(info->mti_env, child);
213                 }
214         }
215         vbrc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
216         return vbrc ? vbrc : rc;
217
218 }
219
220 static int mdt_unlock_slaves(struct mdt_thread_info *mti,
221                              struct mdt_object *obj,
222                              struct ldlm_enqueue_info *einfo,
223                              int decref)
224 {
225         union ldlm_policy_data *policy = &mti->mti_policy;
226         struct mdt_lock_handle *lh = &mti->mti_lh[MDT_LH_LOCAL];
227         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
228         int i;
229
230         LASSERT(S_ISDIR(obj->mot_header.loh_attr));
231         LASSERT(slave_locks);
232
233         memset(policy, 0, sizeof(*policy));
234         policy->l_inodebits.bits = einfo->ei_inodebits;
235         mdt_lock_handle_init(lh);
236         mdt_lock_reg_init(lh, einfo->ei_mode);
237         for (i = 0; i < slave_locks->ha_count; i++) {
238                 if (test_bit(i, (void *)slave_locks->ha_map))
239                         lh->mlh_rreg_lh = slave_locks->ha_handles[i];
240                 else
241                         lh->mlh_reg_lh = slave_locks->ha_handles[i];
242                 mdt_object_unlock(mti, NULL, lh, decref);
243                 slave_locks->ha_handles[i].cookie = 0ull;
244         }
245
246         return mo_object_unlock(mti->mti_env, mdt_object_child(obj), einfo,
247                                 policy);
248 }
249
250 static inline int mdt_object_striped(struct mdt_thread_info *mti,
251                                      struct mdt_object *obj)
252 {
253         struct lu_device *bottom_dev;
254         struct lu_object *bottom_obj;
255         int rc;
256
257         if (!S_ISDIR(obj->mot_header.loh_attr))
258                 return 0;
259
260         /* getxattr from bottom obj to avoid reading in shard FIDs */
261         bottom_dev = dt2lu_dev(mti->mti_mdt->mdt_bottom);
262         bottom_obj = lu_object_find_slice(mti->mti_env, bottom_dev,
263                                           mdt_object_fid(obj), NULL);
264         if (IS_ERR(bottom_obj))
265                 return PTR_ERR(bottom_obj);
266
267         rc = dt_xattr_get(mti->mti_env, lu2dt(bottom_obj), &LU_BUF_NULL,
268                           XATTR_NAME_LMV);
269         lu_object_put(mti->mti_env, bottom_obj);
270
271         return (rc > 0) ? 1 : (rc == -ENODATA) ? 0 : rc;
272 }
273
274 /**
275  * Lock slave stripes if necessary, the lock handles of slave stripes
276  * will be stored in einfo->ei_cbdata.
277  **/
278 static int mdt_lock_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
279                            enum ldlm_mode mode, __u64 ibits,
280                            struct ldlm_enqueue_info *einfo)
281 {
282         union ldlm_policy_data *policy = &mti->mti_policy;
283
284         LASSERT(S_ISDIR(obj->mot_header.loh_attr));
285
286         einfo->ei_type = LDLM_IBITS;
287         einfo->ei_mode = mode;
288         einfo->ei_cb_bl = mdt_remote_blocking_ast;
289         einfo->ei_cb_local_bl = mdt_blocking_ast;
290         einfo->ei_cb_cp = ldlm_completion_ast;
291         einfo->ei_enq_slave = 1;
292         einfo->ei_namespace = mti->mti_mdt->mdt_namespace;
293         einfo->ei_inodebits = ibits;
294         memset(policy, 0, sizeof(*policy));
295         policy->l_inodebits.bits = ibits;
296
297         return mo_object_lock(mti->mti_env, mdt_object_child(obj), NULL, einfo,
298                               policy);
299 }
300
301 int mdt_reint_striped_lock(struct mdt_thread_info *info,
302                            struct mdt_object *o,
303                            struct mdt_lock_handle *lh,
304                            __u64 ibits,
305                            struct ldlm_enqueue_info *einfo,
306                            bool cos_incompat)
307 {
308         int rc;
309
310         LASSERT(!mdt_object_remote(o));
311
312         memset(einfo, 0, sizeof(*einfo));
313
314         rc = mdt_reint_object_lock(info, o, lh, ibits, cos_incompat);
315         if (rc)
316                 return rc;
317
318         rc = mdt_object_striped(info, o);
319         if (rc != 1) {
320                 if (rc < 0)
321                         mdt_object_unlock(info, o, lh, rc);
322                 return rc;
323         }
324
325         rc = mdt_lock_slaves(info, o, lh->mlh_reg_mode, ibits, einfo);
326         if (rc) {
327                 mdt_object_unlock(info, o, lh, rc);
328                 if (rc == -EIO && OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME))
329                         rc = 0;
330         }
331
332         return rc;
333 }
334
335 void mdt_reint_striped_unlock(struct mdt_thread_info *info,
336                               struct mdt_object *o,
337                               struct mdt_lock_handle *lh,
338                               struct ldlm_enqueue_info *einfo, int decref)
339 {
340         if (einfo->ei_cbdata)
341                 mdt_unlock_slaves(info, o, einfo, decref);
342         mdt_object_unlock(info, o, lh, decref);
343 }
344
345 static int mdt_restripe(struct mdt_thread_info *info,
346                         struct mdt_object *parent,
347                         const struct lu_name *lname,
348                         const struct lu_fid *tfid,
349                         struct md_op_spec *spec,
350                         struct md_attr *ma)
351 {
352         struct mdt_device *mdt = info->mti_mdt;
353         struct lu_fid *fid = &info->mti_tmp_fid2;
354         struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
355         struct lmv_mds_md_v1 *lmv;
356         struct mdt_object *child;
357         struct mdt_lock_handle *lhp;
358         struct mdt_lock_handle *lhc;
359         struct mdt_body *repbody;
360         int rc;
361
362         ENTRY;
363         if (!mdt->mdt_enable_dir_restripe)
364                 RETURN(-EPERM);
365
366         rc = mdt_version_get_check_save(info, parent, 0);
367         if (rc)
368                 RETURN(rc);
369
370         lhp = &info->mti_lh[MDT_LH_PARENT];
371         mdt_lock_pdo_init(lhp, LCK_PW, lname);
372         rc = mdt_reint_object_lock(info, parent, lhp, MDS_INODELOCK_UPDATE,
373                                    true);
374         if (rc)
375                 RETURN(rc);
376
377         rc = mdt_stripe_get(info, parent, ma, XATTR_NAME_LMV);
378         if (rc)
379                 GOTO(unlock_parent, rc);
380
381         if (ma->ma_valid & MA_LMV) {
382                 /* don't allow restripe if parent dir layout is changing */
383                 lmv = &ma->ma_lmv->lmv_md_v1;
384                 if (!lmv_is_sane(lmv))
385                         GOTO(unlock_parent, rc = -EBADF);
386
387                 if (lmv_is_layout_changing(lmv))
388                         GOTO(unlock_parent, rc = -EBUSY);
389         }
390
391         fid_zero(fid);
392         rc = mdt_lookup_version_check(info, parent, lname, fid, 1);
393         if (rc)
394                 GOTO(unlock_parent, rc);
395
396         child = mdt_object_find(info->mti_env, mdt, fid);
397         if (IS_ERR(child))
398                 GOTO(unlock_parent, rc = PTR_ERR(child));
399
400         if (!mdt_object_exists(child))
401                 GOTO(out_child, rc = -ENOENT);
402
403         if (mdt_object_remote(child)) {
404                 struct mdt_body *repbody;
405
406                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
407                 if (!repbody)
408                         GOTO(out_child, rc = -EPROTO);
409
410                 repbody->mbo_fid1 = *fid;
411                 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
412                 GOTO(out_child, rc = -EREMOTE);
413         }
414
415         /* lock object */
416         lhc = &info->mti_lh[MDT_LH_CHILD];
417         mdt_lock_reg_init(lhc, LCK_EX);
418
419         /* enqueue object remote LOOKUP lock */
420         if (mdt_object_remote(parent)) {
421                 rc = mdt_remote_object_lock(info, parent, fid,
422                                             &lhc->mlh_rreg_lh,
423                                             lhc->mlh_rreg_mode,
424                                             MDS_INODELOCK_LOOKUP, false);
425                 if (rc != ELDLM_OK)
426                         GOTO(out_child, rc);
427         }
428
429         rc = mdt_reint_striped_lock(info, child, lhc, MDS_INODELOCK_FULL, einfo,
430                                     true);
431         if (rc)
432                 GOTO(unlock_child, rc);
433
434         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
435         rc = mdt_version_get_check_save(info, child, 1);
436         if (rc)
437                 GOTO(unlock_child, rc);
438
439         spin_lock(&mdt->mdt_restriper.mdr_lock);
440         if (child->mot_restriping) {
441                 /* race? */
442                 spin_unlock(&mdt->mdt_restriper.mdr_lock);
443                 GOTO(unlock_child, rc = -EBUSY);
444         }
445         child->mot_restriping = 1;
446         spin_unlock(&mdt->mdt_restriper.mdr_lock);
447
448         *fid = *tfid;
449         rc = mdt_restripe_internal(info, parent, child, lname, fid, spec, ma);
450         if (rc)
451                 GOTO(restriping_clear, rc);
452
453         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
454         if (!repbody)
455                 GOTO(restriping_clear, rc = -EPROTO);
456
457         mdt_pack_attr2body(info, repbody, &ma->ma_attr, fid);
458         EXIT;
459
460 restriping_clear:
461         child->mot_restriping = 0;
462 unlock_child:
463         mdt_reint_striped_unlock(info, child, lhc, einfo, rc);
464 out_child:
465         mdt_object_put(info->mti_env, child);
466 unlock_parent:
467         mdt_object_unlock(info, parent, lhp, rc);
468
469         return rc;
470 }
471
472 /*
473  * VBR: we save three versions in reply:
474  * 0 - parent. Check that parent version is the same during replay.
475  * 1 - name. Version of 'name' if file exists with the same name or
476  * ENOENT_VERSION, it is needed because file may appear due to missed replays.
477  * 2 - child. Version of child by FID. Must be ENOENT. It is mostly sanity
478  * check.
479  */
480 static int mdt_create(struct mdt_thread_info *info)
481 {
482         struct mdt_device *mdt = info->mti_mdt;
483         struct mdt_object *parent;
484         struct mdt_object *child;
485         struct mdt_lock_handle *lh;
486         struct mdt_body *repbody;
487         struct md_attr *ma = &info->mti_attr;
488         struct mdt_reint_record *rr = &info->mti_rr;
489         struct md_op_spec *spec = &info->mti_spec;
490         bool restripe = false;
491         int rc;
492
493         ENTRY;
494         DEBUG_REQ(D_INODE, mdt_info_req(info),
495                   "Create ("DNAME"->"DFID") in "DFID,
496                   PNAME(&rr->rr_name), PFID(rr->rr_fid2), PFID(rr->rr_fid1));
497
498         if (!fid_is_md_operative(rr->rr_fid1))
499                 RETURN(-EPERM);
500
501         if (S_ISDIR(ma->ma_attr.la_mode) &&
502             spec->u.sp_ea.eadata != NULL && spec->u.sp_ea.eadatalen != 0) {
503                 const struct lmv_user_md *lum = spec->u.sp_ea.eadata;
504                 struct lu_ucred *uc = mdt_ucred(info);
505                 struct obd_export *exp = mdt_info_req(info)->rq_export;
506
507                 /* Only new clients can create remote dir( >= 2.4) and
508                  * striped dir(>= 2.6), old client will return -ENOTSUPP
509                  */
510                 if (!mdt_is_dne_client(exp))
511                         RETURN(-ENOTSUPP);
512
513                 if (le32_to_cpu(lum->lum_stripe_count) > 1) {
514                         if (!mdt_is_striped_client(exp))
515                                 RETURN(-ENOTSUPP);
516
517                         if (!mdt->mdt_enable_striped_dir)
518                                 RETURN(-EPERM);
519                 } else if (!mdt->mdt_enable_remote_dir) {
520                         RETURN(-EPERM);
521                 }
522
523                 if ((!(exp_connect_flags2(exp) & OBD_CONNECT2_CRUSH)) &&
524                     (le32_to_cpu(lum->lum_hash_type) & LMV_HASH_TYPE_MASK) ==
525                     LMV_HASH_TYPE_CRUSH)
526                         RETURN(-EPROTO);
527
528                 if (!md_capable(uc, CAP_SYS_ADMIN) &&
529                     uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
530                     mdt->mdt_enable_remote_dir_gid != -1)
531                         RETURN(-EPERM);
532
533                 /* restripe if later found dir exists, MDS_OPEN_CREAT means
534                  * this is create only, don't try restripe.
535                  */
536                 if (mdt->mdt_enable_dir_restripe &&
537                     le32_to_cpu(lum->lum_stripe_offset) == LMV_OFFSET_DEFAULT &&
538                     !(spec->sp_cr_flags & MDS_OPEN_CREAT))
539                         restripe = true;
540         }
541
542         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
543
544         parent = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
545         if (IS_ERR(parent))
546                 RETURN(PTR_ERR(parent));
547
548         if (!mdt_object_exists(parent))
549                 GOTO(put_parent, rc = -ENOENT);
550
551         /*
552          * LU-10235: check if name exists locklessly first to avoid massive
553          * lock recalls on existing directories.
554          */
555         rc = mdt_lookup_version_check(info, parent, &rr->rr_name,
556                                       &info->mti_tmp_fid1, 1);
557         if (rc == 0) {
558                 if (!restripe)
559                         GOTO(put_parent, rc = -EEXIST);
560
561                 rc = mdt_restripe(info, parent, &rr->rr_name, rr->rr_fid2, spec,
562                                   ma);
563         }
564
565         /* -ENOENT is expected here */
566         if (rc != -ENOENT)
567                 GOTO(put_parent, rc);
568
569         /* save version of file name for replay, it must be ENOENT here */
570         mdt_enoent_version_save(info, 1);
571
572         OBD_RACE(OBD_FAIL_MDS_CREATE_RACE);
573
574         lh = &info->mti_lh[MDT_LH_PARENT];
575         mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
576         rc = mdt_object_lock(info, parent, lh, MDS_INODELOCK_UPDATE);
577         if (rc)
578                 GOTO(put_parent, rc);
579
580         if (!mdt_object_remote(parent)) {
581                 rc = mdt_version_get_check_save(info, parent, 0);
582                 if (rc)
583                         GOTO(unlock_parent, rc);
584         }
585
586         child = mdt_object_new(info->mti_env, mdt, rr->rr_fid2);
587         if (unlikely(IS_ERR(child)))
588                 GOTO(unlock_parent, rc = PTR_ERR(child));
589
590         ma->ma_need = MA_INODE;
591         ma->ma_valid = 0;
592
593         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
594                         OBD_FAIL_MDS_REINT_CREATE_WRITE);
595
596         /* Version of child will be updated on disk. */
597         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
598         rc = mdt_version_get_check_save(info, child, 2);
599         if (rc)
600                 GOTO(put_child, rc);
601
602         /* Let lower layer know current lock mode. */
603         info->mti_spec.sp_cr_mode = mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
604
605         /*
606          * Do not perform lookup sanity check. We know that name does
607          * not exist.
608          */
609         info->mti_spec.sp_cr_lookup = 0;
610         info->mti_spec.sp_feat = &dt_directory_features;
611
612         rc = mdo_create(info->mti_env, mdt_object_child(parent), &rr->rr_name,
613                         mdt_object_child(child), &info->mti_spec, ma);
614         if (rc == 0)
615                 rc = mdt_attr_get_complex(info, child, ma);
616
617         if (rc < 0)
618                 GOTO(put_child, rc);
619
620         /*
621          * On DNE, we need to eliminate dependey between 'mkdir a' and
622          * 'mkdir a/b' if b is a striped directory, to achieve this, two
623          * things are done below:
624          * 1. save child and slaves lock.
625          * 2. if the child is a striped directory, relock parent so to
626          *    compare against with COS locks to ensure parent was
627          *    committed to disk.
628          */
629         if (mdt_slc_is_enabled(mdt) && S_ISDIR(ma->ma_attr.la_mode)) {
630                 struct mdt_lock_handle *lhc;
631                 struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
632                 bool cos_incompat;
633
634                 rc = mdt_object_striped(info, child);
635                 if (rc < 0)
636                         GOTO(put_child, rc);
637
638                 cos_incompat = rc;
639                 if (cos_incompat) {
640                         if (!mdt_object_remote(parent)) {
641                                 mdt_object_unlock(info, parent, lh, 1);
642                                 mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
643                                 rc = mdt_reint_object_lock(info, parent, lh,
644                                                            MDS_INODELOCK_UPDATE,
645                                                            true);
646                                 if (rc)
647                                         GOTO(put_child, rc);
648                         }
649                 }
650
651                 lhc = &info->mti_lh[MDT_LH_CHILD];
652                 mdt_lock_handle_init(lhc);
653                 mdt_lock_reg_init(lhc, LCK_PW);
654                 rc = mdt_reint_striped_lock(info, child, lhc,
655                                             MDS_INODELOCK_UPDATE, einfo,
656                                             cos_incompat);
657                 if (rc)
658                         GOTO(put_child, rc);
659
660                 mdt_reint_striped_unlock(info, child, lhc, einfo, rc);
661         }
662
663         /* Return fid & attr to client. */
664         if (ma->ma_valid & MA_INODE)
665                 mdt_pack_attr2body(info, repbody, &ma->ma_attr,
666                                    mdt_object_fid(child));
667         EXIT;
668 put_child:
669         mdt_object_put(info->mti_env, child);
670 unlock_parent:
671         mdt_object_unlock(info, parent, lh, rc);
672 put_parent:
673         mdt_object_put(info->mti_env, parent);
674         return rc;
675 }
676
677 static int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
678                         struct md_attr *ma)
679 {
680         struct mdt_lock_handle  *lh;
681         int do_vbr = ma->ma_attr.la_valid &
682                         (LA_MODE | LA_UID | LA_GID | LA_PROJID | LA_FLAGS);
683         __u64 lockpart = MDS_INODELOCK_UPDATE;
684         struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
685         bool cos_incompat;
686         int rc;
687
688         ENTRY;
689         rc = mdt_object_striped(info, mo);
690         if (rc < 0)
691                 RETURN(rc);
692
693         cos_incompat = rc;
694
695         lh = &info->mti_lh[MDT_LH_PARENT];
696         mdt_lock_reg_init(lh, LCK_PW);
697
698         /* Even though the new MDT will grant PERM lock to the old
699          * client, but the old client will almost ignore that during
700          * So it needs to revoke both LOOKUP and PERM lock here, so
701          * both new and old client can cancel the dcache
702          */
703         if (ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID))
704                 lockpart |= MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
705
706         rc = mdt_reint_striped_lock(info, mo, lh, lockpart, einfo,
707                                     cos_incompat);
708         if (rc != 0)
709                 RETURN(rc);
710
711         /* all attrs are packed into mti_attr in unpack_setattr */
712         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
713                        OBD_FAIL_MDS_REINT_SETATTR_WRITE);
714
715         /* VBR: update version if attr changed are important for recovery */
716         if (do_vbr) {
717                 /* update on-disk version of changed object */
718                 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mo));
719                 rc = mdt_version_get_check_save(info, mo, 0);
720                 if (rc)
721                         GOTO(out_unlock, rc);
722         }
723
724         /* Ensure constant striping during chown(). See LU-2789. */
725         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
726                 mutex_lock(&mo->mot_lov_mutex);
727
728         /* all attrs are packed into mti_attr in unpack_setattr */
729         rc = mo_attr_set(info->mti_env, mdt_object_child(mo), ma);
730
731         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
732                 mutex_unlock(&mo->mot_lov_mutex);
733
734         if (rc != 0)
735                 GOTO(out_unlock, rc);
736         mdt_dom_obj_lvb_update(info->mti_env, mo, false);
737         EXIT;
738 out_unlock:
739         mdt_reint_striped_unlock(info, mo, lh, einfo, rc);
740         return rc;
741 }
742
743 /**
744  * Check HSM flags and add HS_DIRTY flag if relevant.
745  *
746  * A file could be set dirty only if it has a copy in the backend (HS_EXISTS)
747  * and is not RELEASED.
748  */
749 int mdt_add_dirty_flag(struct mdt_thread_info *info, struct mdt_object *mo,
750                         struct md_attr *ma)
751 {
752         struct lu_ucred *uc = mdt_ucred(info);
753         cfs_cap_t cap_saved;
754         int rc;
755
756         ENTRY;
757         /* If the file was modified, add the dirty flag */
758         ma->ma_need = MA_HSM;
759         rc = mdt_attr_get_complex(info, mo, ma);
760         if (rc) {
761                 CERROR("file attribute read error for "DFID": %d.\n",
762                         PFID(mdt_object_fid(mo)), rc);
763                 RETURN(rc);
764         }
765
766         /* If an up2date copy exists in the backend, add dirty flag */
767         if ((ma->ma_valid & MA_HSM) && (ma->ma_hsm.mh_flags & HS_EXISTS)
768             && !(ma->ma_hsm.mh_flags & (HS_DIRTY|HS_RELEASED))) {
769                 ma->ma_hsm.mh_flags |= HS_DIRTY;
770
771                 /* Bump cap so that closes from non-owner writers can
772                  * set the HSM state to dirty.
773                  */
774                 cap_saved = uc->uc_cap;
775                 uc->uc_cap |= MD_CAP_TO_MASK(CAP_FOWNER);
776                 rc = mdt_hsm_attr_set(info, mo, &ma->ma_hsm);
777                 uc->uc_cap = cap_saved;
778                 if (rc)
779                         CERROR("file attribute change error for "DFID": %d\n",
780                                 PFID(mdt_object_fid(mo)), rc);
781         }
782
783         RETURN(rc);
784 }
785
786 static int mdt_reint_setattr(struct mdt_thread_info *info,
787                              struct mdt_lock_handle *lhc)
788 {
789         struct mdt_device *mdt = info->mti_mdt;
790         struct md_attr *ma = &info->mti_attr;
791         struct mdt_reint_record *rr = &info->mti_rr;
792         struct ptlrpc_request *req = mdt_info_req(info);
793         struct mdt_object *mo;
794         struct mdt_body *repbody;
795         ktime_t kstart = ktime_get();
796         int rc, rc2;
797
798         ENTRY;
799         DEBUG_REQ(D_INODE, req, "setattr "DFID" %x", PFID(rr->rr_fid1),
800                   (unsigned int)ma->ma_attr.la_valid);
801
802         if (info->mti_dlm_req)
803                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
804
805         OBD_RACE(OBD_FAIL_PTLRPC_RESEND_RACE);
806
807         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
808         mo = mdt_object_find(info->mti_env, mdt, rr->rr_fid1);
809         if (IS_ERR(mo))
810                 GOTO(out, rc = PTR_ERR(mo));
811
812         if (!mdt_object_exists(mo))
813                 GOTO(out_put, rc = -ENOENT);
814
815         if (mdt_object_remote(mo))
816                 GOTO(out_put, rc = -EREMOTE);
817
818         ma->ma_enable_chprojid_gid = mdt->mdt_enable_chprojid_gid;
819         /* revoke lease lock if size is going to be changed */
820         if (unlikely(ma->ma_attr.la_valid & LA_SIZE &&
821                      !(ma->ma_attr_flags & MDS_TRUNC_KEEP_LEASE) &&
822                      atomic_read(&mo->mot_lease_count) > 0)) {
823                 down_read(&mo->mot_open_sem);
824
825                 if (atomic_read(&mo->mot_lease_count) > 0) { /* lease exists */
826                         lhc = &info->mti_lh[MDT_LH_LOCAL];
827                         mdt_lock_reg_init(lhc, LCK_CW);
828
829                         rc = mdt_object_lock(info, mo, lhc, MDS_INODELOCK_OPEN);
830                         if (rc != 0) {
831                                 up_read(&mo->mot_open_sem);
832                                 GOTO(out_put, rc);
833                         }
834
835                         /* revoke lease lock */
836                         mdt_object_unlock(info, mo, lhc, 1);
837                 }
838                 up_read(&mo->mot_open_sem);
839         }
840
841         if (ma->ma_attr.la_valid & LA_SIZE || rr->rr_flags & MRF_OPEN_TRUNC) {
842                 /* Check write access for the O_TRUNC case */
843                 if (mdt_write_read(mo) < 0)
844                         GOTO(out_put, rc = -ETXTBSY);
845
846                 /* LU-10286: compatibility check for FLR.
847                  * Please check the comment in mdt_finish_open() for details
848                  */
849                 if (!exp_connect_flr(info->mti_exp) ||
850                     !exp_connect_overstriping(info->mti_exp)) {
851                         rc = mdt_big_xattr_get(info, mo, XATTR_NAME_LOV);
852                         if (rc < 0 && rc != -ENODATA)
853                                 GOTO(out_put, rc);
854
855                         if (!exp_connect_flr(info->mti_exp)) {
856                                 if (rc > 0 &&
857                                     mdt_lmm_is_flr(info->mti_big_lmm))
858                                         GOTO(out_put, rc = -EOPNOTSUPP);
859                         }
860
861                         if (!exp_connect_overstriping(info->mti_exp)) {
862                                 if (rc > 0 &&
863                                     mdt_lmm_is_overstriping(info->mti_big_lmm))
864                                         GOTO(out_put, rc = -EOPNOTSUPP);
865                         }
866                 }
867
868                 /* For truncate, the file size sent from client
869                  * is believable, but the blocks are incorrect,
870                  * which makes the block size in LSOM attribute
871                  * inconsisent with the real block size.
872                  */
873                 rc = mdt_lsom_update(info, mo, true);
874                 if (rc)
875                         GOTO(out_put, rc);
876         }
877
878         if ((ma->ma_valid & MA_INODE) && ma->ma_attr.la_valid) {
879                 if (ma->ma_valid & MA_LOV)
880                         GOTO(out_put, rc = -EPROTO);
881
882                 /* MDT supports FMD for regular files due to Data-on-MDT */
883                 if (S_ISREG(lu_object_attr(&mo->mot_obj)) &&
884                     ma->ma_attr.la_valid & (LA_ATIME | LA_MTIME | LA_CTIME)) {
885                         tgt_fmd_update(info->mti_exp, mdt_object_fid(mo),
886                                        req->rq_xid);
887
888                         if (ma->ma_attr.la_valid & LA_MTIME) {
889                                 rc = mdt_attr_get_pfid(info, mo, &ma->ma_pfid);
890                                 if (!rc)
891                                         ma->ma_valid |= MA_PFID;
892                         }
893                 }
894
895                 rc = mdt_attr_set(info, mo, ma);
896                 if (rc)
897                         GOTO(out_put, rc);
898         } else if ((ma->ma_valid & (MA_LOV | MA_LMV)) &&
899                    (ma->ma_valid & MA_INODE)) {
900                 struct lu_buf *buf = &info->mti_buf;
901                 struct lu_ucred *uc = mdt_ucred(info);
902                 struct mdt_lock_handle *lh;
903                 const char *name;
904                 __u64 lockpart = MDS_INODELOCK_XATTR;
905
906                 /* reject if either remote or striped dir is disabled */
907                 if (ma->ma_valid & MA_LMV) {
908                         if (!mdt->mdt_enable_remote_dir ||
909                             !mdt->mdt_enable_striped_dir)
910                                 GOTO(out_put, rc = -EPERM);
911
912                         if (!md_capable(uc, CAP_SYS_ADMIN) &&
913                             uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
914                             mdt->mdt_enable_remote_dir_gid != -1)
915                                 GOTO(out_put, rc = -EPERM);
916                 }
917
918                 if (!S_ISDIR(lu_object_attr(&mo->mot_obj)))
919                         GOTO(out_put, rc = -ENOTDIR);
920
921                 if (ma->ma_attr.la_valid != 0)
922                         GOTO(out_put, rc = -EPROTO);
923
924                 if (ma->ma_valid & MA_LOV) {
925                         buf->lb_buf = ma->ma_lmm;
926                         buf->lb_len = ma->ma_lmm_size;
927                         name = XATTR_NAME_LOV;
928                 } else {
929                         struct lmv_user_md *lmu = &ma->ma_lmv->lmv_user_md;
930
931                         buf->lb_buf = lmu;
932                         buf->lb_len = ma->ma_lmv_size;
933                         name = XATTR_NAME_DEFAULT_LMV;
934                         /* force client to update dir default layout */
935                         lockpart |= MDS_INODELOCK_LOOKUP;
936                 }
937
938                 lh = &info->mti_lh[MDT_LH_PARENT];
939                 mdt_lock_reg_init(lh, LCK_PW);
940
941                 rc = mdt_object_lock(info, mo, lh, lockpart);
942                 if (rc != 0)
943                         GOTO(out_put, rc);
944
945                 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo), buf,
946                                   name, 0);
947
948                 mdt_object_unlock(info, mo, lh, rc);
949                 if (rc)
950                         GOTO(out_put, rc);
951         } else {
952                 GOTO(out_put, rc = -EPROTO);
953         }
954
955         /* If file data is modified, add the dirty flag */
956         if (ma->ma_attr_flags & MDS_DATA_MODIFIED)
957                 rc = mdt_add_dirty_flag(info, mo, ma);
958
959         ma->ma_need = MA_INODE;
960         ma->ma_valid = 0;
961         rc = mdt_attr_get_complex(info, mo, ma);
962         if (rc != 0)
963                 GOTO(out_put, rc);
964
965         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
966
967         EXIT;
968 out_put:
969         mdt_object_put(info->mti_env, mo);
970 out:
971         if (rc == 0)
972                 mdt_counter_incr(req, LPROC_MDT_SETATTR,
973                                  ktime_us_delta(ktime_get(), kstart));
974
975         mdt_client_compatibility(info);
976         rc2 = mdt_fix_reply(info);
977         if (rc == 0)
978                 rc = rc2;
979         return rc;
980 }
981
982 static int mdt_reint_create(struct mdt_thread_info *info,
983                             struct mdt_lock_handle *lhc)
984 {
985         struct ptlrpc_request   *req = mdt_info_req(info);
986         ktime_t                 kstart = ktime_get();
987         int                     rc;
988
989         ENTRY;
990         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_CREATE))
991                 RETURN(err_serious(-ESTALE));
992
993         if (info->mti_dlm_req)
994                 ldlm_request_cancel(mdt_info_req(info),
995                                     info->mti_dlm_req, 0, LATF_SKIP);
996
997         if (!lu_name_is_valid(&info->mti_rr.rr_name))
998                 RETURN(-EPROTO);
999
1000         switch (info->mti_attr.ma_attr.la_mode & S_IFMT) {
1001         case S_IFDIR:
1002         case S_IFREG:
1003         case S_IFLNK:
1004         case S_IFCHR:
1005         case S_IFBLK:
1006         case S_IFIFO:
1007         case S_IFSOCK:
1008                 break;
1009         default:
1010                 CERROR("%s: Unsupported mode %o\n",
1011                        mdt_obd_name(info->mti_mdt),
1012                        info->mti_attr.ma_attr.la_mode);
1013                 RETURN(err_serious(-EOPNOTSUPP));
1014         }
1015
1016         rc = mdt_create(info);
1017         if (rc == 0) {
1018                 if ((info->mti_attr.ma_attr.la_mode & S_IFMT) == S_IFDIR)
1019                         mdt_counter_incr(req, LPROC_MDT_MKDIR,
1020                                          ktime_us_delta(ktime_get(), kstart));
1021                 else
1022                         /* Special file should stay on the same node as parent*/
1023                         mdt_counter_incr(req, LPROC_MDT_MKNOD,
1024                                          ktime_us_delta(ktime_get(), kstart));
1025         }
1026
1027         RETURN(rc);
1028 }
1029
1030 /*
1031  * VBR: save parent version in reply and child version getting by its name.
1032  * Version of child is getting and checking during its lookup. If
1033  */
1034 static int mdt_reint_unlink(struct mdt_thread_info *info,
1035                             struct mdt_lock_handle *lhc)
1036 {
1037         struct mdt_reint_record *rr = &info->mti_rr;
1038         struct ptlrpc_request *req = mdt_info_req(info);
1039         struct md_attr *ma = &info->mti_attr;
1040         struct lu_fid *child_fid = &info->mti_tmp_fid1;
1041         struct mdt_object *mp;
1042         struct mdt_object *mc;
1043         struct mdt_lock_handle *parent_lh;
1044         struct mdt_lock_handle *child_lh;
1045         struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
1046         __u64 lock_ibits;
1047         bool cos_incompat = false;
1048         int no_name = 0;
1049         ktime_t kstart = ktime_get();
1050         int rc;
1051
1052         ENTRY;
1053         DEBUG_REQ(D_INODE, req, "unlink "DFID"/"DNAME"", PFID(rr->rr_fid1),
1054                   PNAME(&rr->rr_name));
1055
1056         if (info->mti_dlm_req)
1057                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1058
1059         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNLINK))
1060                 RETURN(err_serious(-ENOENT));
1061
1062         if (!fid_is_md_operative(rr->rr_fid1))
1063                 RETURN(-EPERM);
1064
1065         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1066         if (IS_ERR(mp))
1067                 RETURN(PTR_ERR(mp));
1068
1069         if (mdt_object_remote(mp)) {
1070                 cos_incompat = true;
1071         } else {
1072                 rc = mdt_version_get_check_save(info, mp, 0);
1073                 if (rc)
1074                         GOTO(put_parent, rc);
1075         }
1076
1077         OBD_RACE(OBD_FAIL_MDS_REINT_OPEN);
1078         OBD_RACE(OBD_FAIL_MDS_REINT_OPEN2);
1079 relock:
1080         parent_lh = &info->mti_lh[MDT_LH_PARENT];
1081         mdt_lock_pdo_init(parent_lh, LCK_PW, &rr->rr_name);
1082         rc = mdt_reint_object_lock(info, mp, parent_lh, MDS_INODELOCK_UPDATE,
1083                                    cos_incompat);
1084         if (rc != 0)
1085                 GOTO(put_parent, rc);
1086
1087         /* lookup child object along with version checking */
1088         fid_zero(child_fid);
1089         rc = mdt_lookup_version_check(info, mp, &rr->rr_name, child_fid, 1);
1090         if (rc != 0) {
1091                 /* Name might not be able to find during resend of
1092                  * remote unlink, considering following case.
1093                  * dir_A is a remote directory, the name entry of
1094                  * dir_A is on MDT0, the directory is on MDT1,
1095                  *
1096                  * 1. client sends unlink req to MDT1.
1097                  * 2. MDT1 sends name delete update to MDT0.
1098                  * 3. name entry is being deleted in MDT0 synchronously.
1099                  * 4. MDT1 is restarted.
1100                  * 5. client resends unlink req to MDT1. So it can not
1101                  *    find the name entry on MDT0 anymore.
1102                  * In this case, MDT1 only needs to destory the local
1103                  * directory.
1104                  */
1105                 if (mdt_object_remote(mp) && rc == -ENOENT &&
1106                     !fid_is_zero(rr->rr_fid2) &&
1107                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
1108                         no_name = 1;
1109                         *child_fid = *rr->rr_fid2;
1110                 } else {
1111                         GOTO(unlock_parent, rc);
1112                 }
1113         }
1114
1115         if (!fid_is_md_operative(child_fid))
1116                 GOTO(unlock_parent, rc = -EPERM);
1117
1118         /* We will lock the child regardless it is local or remote. No harm. */
1119         mc = mdt_object_find(info->mti_env, info->mti_mdt, child_fid);
1120         if (IS_ERR(mc))
1121                 GOTO(unlock_parent, rc = PTR_ERR(mc));
1122
1123         if (!cos_incompat) {
1124                 rc = mdt_object_striped(info, mc);
1125                 if (rc < 0)
1126                         GOTO(put_child, rc);
1127
1128                 cos_incompat = rc;
1129                 if (cos_incompat) {
1130                         mdt_object_put(info->mti_env, mc);
1131                         mdt_object_unlock(info, mp, parent_lh, -EAGAIN);
1132                         goto relock;
1133                 }
1134         }
1135
1136         child_lh = &info->mti_lh[MDT_LH_CHILD];
1137         mdt_lock_reg_init(child_lh, LCK_EX);
1138         if (info->mti_spec.sp_rm_entry) {
1139                 struct lu_ucred *uc  = mdt_ucred(info);
1140
1141                 if (!mdt_is_dne_client(req->rq_export))
1142                         /* Return -ENOTSUPP for old client */
1143                         GOTO(put_child, rc = -ENOTSUPP);
1144
1145                 if (!md_capable(uc, CAP_SYS_ADMIN))
1146                         GOTO(put_child, rc = -EPERM);
1147
1148                 ma->ma_need = MA_INODE;
1149                 ma->ma_valid = 0;
1150                 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1151                                 NULL, &rr->rr_name, ma, no_name);
1152                 GOTO(put_child, rc);
1153         }
1154
1155         if (mdt_object_remote(mc)) {
1156                 struct mdt_body  *repbody;
1157
1158                 if (!fid_is_zero(rr->rr_fid2)) {
1159                         CDEBUG(D_INFO, "%s: name "DNAME" cannot find "DFID"\n",
1160                                mdt_obd_name(info->mti_mdt),
1161                                PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
1162                         GOTO(put_child, rc = -ENOENT);
1163                 }
1164                 CDEBUG(D_INFO, "%s: name "DNAME": "DFID" is on another MDT\n",
1165                        mdt_obd_name(info->mti_mdt),
1166                        PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
1167
1168                 if (!mdt_is_dne_client(req->rq_export))
1169                         /* Return -ENOTSUPP for old client */
1170                         GOTO(put_child, rc = -ENOTSUPP);
1171
1172                 /* Revoke the LOOKUP lock of the remote object granted by
1173                  * this MDT. Since the unlink will happen on another MDT,
1174                  * it will release the LOOKUP lock right away. Then What
1175                  * would happen if another client try to grab the LOOKUP
1176                  * lock at the same time with unlink XXX
1177                  */
1178                 mdt_object_lock(info, mc, child_lh, MDS_INODELOCK_LOOKUP);
1179                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1180                 LASSERT(repbody != NULL);
1181                 repbody->mbo_fid1 = *mdt_object_fid(mc);
1182                 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
1183                 GOTO(unlock_child, rc = -EREMOTE);
1184         }
1185         /* We used to acquire MDS_INODELOCK_FULL here but we can't do
1186          * this now because a running HSM restore on the child (unlink
1187          * victim) will hold the layout lock. See LU-4002.
1188          */
1189         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
1190         if (mdt_object_remote(mp)) {
1191                 /* Enqueue lookup lock from parent MDT */
1192                 rc = mdt_remote_object_lock(info, mp, mdt_object_fid(mc),
1193                                             &child_lh->mlh_rreg_lh,
1194                                             child_lh->mlh_rreg_mode,
1195                                             MDS_INODELOCK_LOOKUP, false);
1196                 if (rc != ELDLM_OK)
1197                         GOTO(put_child, rc);
1198
1199                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1200         }
1201
1202         rc = mdt_reint_striped_lock(info, mc, child_lh, lock_ibits, einfo,
1203                                     cos_incompat);
1204         if (rc != 0)
1205                 GOTO(put_child, rc);
1206
1207         /*
1208          * Now we can only make sure we need MA_INODE, in mdd layer, will check
1209          * whether need MA_LOV and MA_COOKIE.
1210          */
1211         ma->ma_need = MA_INODE;
1212         ma->ma_valid = 0;
1213
1214         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1215                        OBD_FAIL_MDS_REINT_UNLINK_WRITE);
1216         /* save version when object is locked */
1217         mdt_version_get_save(info, mc, 1);
1218
1219         mutex_lock(&mc->mot_lov_mutex);
1220
1221         rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1222                         mdt_object_child(mc), &rr->rr_name, ma, no_name);
1223
1224         mutex_unlock(&mc->mot_lov_mutex);
1225         if (rc != 0)
1226                 GOTO(unlock_child, rc);
1227
1228         if (!lu_object_is_dying(&mc->mot_header)) {
1229                 rc = mdt_attr_get_complex(info, mc, ma);
1230                 if (rc)
1231                         GOTO(out_stat, rc);
1232         } else if (mdt_dom_check_for_discard(info, mc)) {
1233                 mdt_dom_discard_data(info, mc);
1234         }
1235         mdt_handle_last_unlink(info, mc, ma);
1236
1237 out_stat:
1238         if (ma->ma_valid & MA_INODE) {
1239                 switch (ma->ma_attr.la_mode & S_IFMT) {
1240                 case S_IFDIR:
1241                         mdt_counter_incr(req, LPROC_MDT_RMDIR,
1242                                          ktime_us_delta(ktime_get(), kstart));
1243                         break;
1244                 case S_IFREG:
1245                 case S_IFLNK:
1246                 case S_IFCHR:
1247                 case S_IFBLK:
1248                 case S_IFIFO:
1249                 case S_IFSOCK:
1250                         mdt_counter_incr(req, LPROC_MDT_UNLINK,
1251                                          ktime_us_delta(ktime_get(), kstart));
1252                         break;
1253                 default:
1254                         LASSERTF(0, "bad file type %o unlinking\n",
1255                                 ma->ma_attr.la_mode);
1256                 }
1257         }
1258
1259         EXIT;
1260
1261 unlock_child:
1262         mdt_reint_striped_unlock(info, mc, child_lh, einfo, rc);
1263 put_child:
1264         mdt_object_put(info->mti_env, mc);
1265 unlock_parent:
1266         mdt_object_unlock(info, mp, parent_lh, rc);
1267 put_parent:
1268         mdt_object_put(info->mti_env, mp);
1269         CFS_RACE_WAKEUP(OBD_FAIL_OBD_ZERO_NLINK_RACE);
1270         return rc;
1271 }
1272
1273 /*
1274  * VBR: save versions in reply: 0 - parent; 1 - child by fid; 2 - target by
1275  * name.
1276  */
1277 static int mdt_reint_link(struct mdt_thread_info *info,
1278                           struct mdt_lock_handle *lhc)
1279 {
1280         struct mdt_reint_record *rr = &info->mti_rr;
1281         struct ptlrpc_request   *req = mdt_info_req(info);
1282         struct md_attr          *ma = &info->mti_attr;
1283         struct mdt_object       *ms;
1284         struct mdt_object       *mp;
1285         struct mdt_lock_handle  *lhs;
1286         struct mdt_lock_handle  *lhp;
1287         ktime_t kstart = ktime_get();
1288         bool cos_incompat;
1289         int rc;
1290
1291         ENTRY;
1292         DEBUG_REQ(D_INODE, req, "link "DFID" to "DFID"/"DNAME,
1293                   PFID(rr->rr_fid1), PFID(rr->rr_fid2), PNAME(&rr->rr_name));
1294
1295         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_LINK))
1296                 RETURN(err_serious(-ENOENT));
1297
1298         if (OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_RESEND_RACE)) {
1299                 req->rq_no_reply = 1;
1300                 RETURN(err_serious(-ENOENT));
1301         }
1302
1303         if (info->mti_dlm_req)
1304                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1305
1306         /* Invalid case so return error immediately instead of
1307          * processing it
1308          */
1309         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2))
1310                 RETURN(-EPERM);
1311
1312         if (!fid_is_md_operative(rr->rr_fid1) ||
1313             !fid_is_md_operative(rr->rr_fid2))
1314                 RETURN(-EPERM);
1315
1316         /* step 1: find target parent dir */
1317         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
1318         if (IS_ERR(mp))
1319                 RETURN(PTR_ERR(mp));
1320
1321         rc = mdt_version_get_check_save(info, mp, 0);
1322         if (rc)
1323                 GOTO(put_parent, rc);
1324
1325         /* step 2: find source */
1326         ms = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1327         if (IS_ERR(ms))
1328                 GOTO(put_parent, rc = PTR_ERR(ms));
1329
1330         if (!mdt_object_exists(ms)) {
1331                 CDEBUG(D_INFO, "%s: "DFID" does not exist.\n",
1332                        mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1));
1333                 GOTO(put_source, rc = -ENOENT);
1334         }
1335
1336         cos_incompat = (mdt_object_remote(mp) || mdt_object_remote(ms));
1337
1338         lhp = &info->mti_lh[MDT_LH_PARENT];
1339         mdt_lock_pdo_init(lhp, LCK_PW, &rr->rr_name);
1340         rc = mdt_reint_object_lock(info, mp, lhp, MDS_INODELOCK_UPDATE,
1341                                    cos_incompat);
1342         if (rc != 0)
1343                 GOTO(put_source, rc);
1344
1345         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1346
1347         lhs = &info->mti_lh[MDT_LH_CHILD];
1348         mdt_lock_reg_init(lhs, LCK_EX);
1349         rc = mdt_reint_object_lock(info, ms, lhs,
1350                                    MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
1351                                    cos_incompat);
1352         if (rc != 0)
1353                 GOTO(unlock_parent, rc);
1354
1355         /* step 3: link it */
1356         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1357                         OBD_FAIL_MDS_REINT_LINK_WRITE);
1358
1359         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(ms));
1360         rc = mdt_version_get_check_save(info, ms, 1);
1361         if (rc)
1362                 GOTO(unlock_source, rc);
1363
1364         /** check target version by name during replay */
1365         rc = mdt_lookup_version_check(info, mp, &rr->rr_name,
1366                                       &info->mti_tmp_fid1, 2);
1367         if (rc != 0 && rc != -ENOENT)
1368                 GOTO(unlock_source, rc);
1369         /* save version of file name for replay, it must be ENOENT here */
1370         if (!req_is_replay(mdt_info_req(info))) {
1371                 if (rc != -ENOENT) {
1372                         CDEBUG(D_INFO, "link target "DNAME" existed!\n",
1373                                PNAME(&rr->rr_name));
1374                         GOTO(unlock_source, rc = -EEXIST);
1375                 }
1376                 info->mti_ver[2] = ENOENT_VERSION;
1377                 mdt_version_save(mdt_info_req(info), info->mti_ver[2], 2);
1378         }
1379
1380         rc = mdo_link(info->mti_env, mdt_object_child(mp),
1381                       mdt_object_child(ms), &rr->rr_name, ma);
1382
1383         if (rc == 0)
1384                 mdt_counter_incr(req, LPROC_MDT_LINK,
1385                                  ktime_us_delta(ktime_get(), kstart));
1386
1387         EXIT;
1388 unlock_source:
1389         mdt_object_unlock(info, ms, lhs, rc);
1390 unlock_parent:
1391         mdt_object_unlock(info, mp, lhp, rc);
1392 put_source:
1393         mdt_object_put(info->mti_env, ms);
1394 put_parent:
1395         mdt_object_put(info->mti_env, mp);
1396         return rc;
1397 }
1398 /**
1399  * lock the part of the directory according to the hash of the name
1400  * (lh->mlh_pdo_hash) in parallel directory lock.
1401  */
1402 static int mdt_pdir_hash_lock(struct mdt_thread_info *info,
1403                               struct mdt_lock_handle *lh,
1404                               struct mdt_object *obj, __u64 ibits,
1405                               bool cos_incompat)
1406 {
1407         struct ldlm_res_id *res = &info->mti_res_id;
1408         struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1409         union ldlm_policy_data *policy = &info->mti_policy;
1410         __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1411         int rc;
1412
1413         /*
1414          * Finish res_id initializing by name hash marking part of
1415          * directory which is taking modification.
1416          */
1417         LASSERT(lh->mlh_pdo_hash != 0);
1418         fid_build_pdo_res_name(mdt_object_fid(obj), lh->mlh_pdo_hash, res);
1419         memset(policy, 0, sizeof(*policy));
1420         policy->l_inodebits.bits = ibits;
1421         if (cos_incompat &&
1422             (lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX))
1423                 dlmflags |= LDLM_FL_COS_INCOMPAT;
1424         /*
1425          * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
1426          * going to be sent to client. If it is - mdt_intent_policy() path will
1427          * fix it up and turn FL_LOCAL flag off.
1428          */
1429         rc = mdt_fid_lock(info->mti_env, ns, &lh->mlh_reg_lh, lh->mlh_reg_mode,
1430                           policy, res, dlmflags,
1431                           &info->mti_exp->exp_handle.h_cookie);
1432         return rc;
1433 }
1434
1435 /**
1436  * Get BFL lock for rename or migrate process.
1437  **/
1438 static int mdt_rename_lock(struct mdt_thread_info *info,
1439                            struct lustre_handle *lh)
1440 {
1441         int     rc;
1442
1443         ENTRY;
1444         if (mdt_seq_site(info->mti_mdt)->ss_node_id != 0) {
1445                 struct lu_fid *fid = &info->mti_tmp_fid1;
1446                 struct mdt_object *obj;
1447
1448                 /* XXX, right now, it has to use object API to
1449                  * enqueue lock cross MDT, so it will enqueue
1450                  * rename lock(with LUSTRE_BFL_FID) by root object
1451                  */
1452                 lu_root_fid(fid);
1453                 obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1454                 if (IS_ERR(obj))
1455                         RETURN(PTR_ERR(obj));
1456
1457                 rc = mdt_remote_object_lock(info, obj,
1458                                             &LUSTRE_BFL_FID, lh,
1459                                             LCK_EX,
1460                                             MDS_INODELOCK_UPDATE, false);
1461                 mdt_object_put(info->mti_env, obj);
1462         } else {
1463                 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1464                 union ldlm_policy_data *policy = &info->mti_policy;
1465                 struct ldlm_res_id *res_id = &info->mti_res_id;
1466                 __u64 flags = 0;
1467
1468                 fid_build_reg_res_name(&LUSTRE_BFL_FID, res_id);
1469                 memset(policy, 0, sizeof(*policy));
1470                 policy->l_inodebits.bits = MDS_INODELOCK_UPDATE;
1471                 flags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1472                 rc = ldlm_cli_enqueue_local(info->mti_env, ns, res_id,
1473                                             LDLM_IBITS, policy, LCK_EX, &flags,
1474                                             ldlm_blocking_ast,
1475                                             ldlm_completion_ast, NULL, NULL, 0,
1476                                             LVB_T_NONE,
1477                                             &info->mti_exp->exp_handle.h_cookie,
1478                                             lh);
1479                 RETURN(rc);
1480         }
1481         RETURN(rc);
1482 }
1483
1484 static void mdt_rename_unlock(struct lustre_handle *lh)
1485 {
1486         ENTRY;
1487         LASSERT(lustre_handle_is_used(lh));
1488         /* Cancel the single rename lock right away */
1489         ldlm_lock_decref_and_cancel(lh, LCK_EX);
1490         EXIT;
1491 }
1492
1493 static struct mdt_object *mdt_parent_find_check(struct mdt_thread_info *info,
1494                                                 const struct lu_fid *fid,
1495                                                 int idx)
1496 {
1497         struct mdt_object *dir;
1498         int rc;
1499
1500         ENTRY;
1501         dir = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1502         if (IS_ERR(dir))
1503                 RETURN(dir);
1504
1505         /* check early, the real version will be saved after locking */
1506         rc = mdt_version_get_check(info, dir, idx);
1507         if (rc)
1508                 GOTO(out_put, rc);
1509
1510         if (!mdt_object_exists(dir))
1511                 GOTO(out_put, rc = -ENOENT);
1512
1513         if (!S_ISDIR(lu_object_attr(&dir->mot_obj)))
1514                 GOTO(out_put, rc = -ENOTDIR);
1515
1516         RETURN(dir);
1517 out_put:
1518         mdt_object_put(info->mti_env, dir);
1519         return ERR_PTR(rc);
1520 }
1521
1522 /*
1523  * in case obj is remote obj on its parent, revoke LOOKUP lock,
1524  * herein we don't really check it, just do revoke.
1525  */
1526 int mdt_revoke_remote_lookup_lock(struct mdt_thread_info *info,
1527                                   struct mdt_object *pobj,
1528                                   struct mdt_object *obj)
1529 {
1530         struct mdt_lock_handle *lh = &info->mti_lh[MDT_LH_LOCAL];
1531         int rc;
1532
1533         mdt_lock_handle_init(lh);
1534         mdt_lock_reg_init(lh, LCK_EX);
1535
1536         if (mdt_object_remote(pobj)) {
1537                 /* don't bother to check if pobj and obj are on the same MDT. */
1538                 rc = mdt_remote_object_lock(info, pobj, mdt_object_fid(obj),
1539                                             &lh->mlh_rreg_lh, LCK_EX,
1540                                             MDS_INODELOCK_LOOKUP, false);
1541         } else if (mdt_object_remote(obj)) {
1542                 struct ldlm_res_id *res = &info->mti_res_id;
1543                 union ldlm_policy_data *policy = &info->mti_policy;
1544                 __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB |
1545                                  LDLM_FL_COS_INCOMPAT;
1546
1547                 fid_build_reg_res_name(mdt_object_fid(obj), res);
1548                 memset(policy, 0, sizeof(*policy));
1549                 policy->l_inodebits.bits = MDS_INODELOCK_LOOKUP;
1550                 rc = mdt_fid_lock(info->mti_env, info->mti_mdt->mdt_namespace,
1551                                   &lh->mlh_reg_lh, LCK_EX, policy, res,
1552                                   dlmflags, NULL);
1553         } else {
1554                 /* do nothing if both are local */
1555                 return 0;
1556         }
1557
1558         if (rc != ELDLM_OK)
1559                 return rc;
1560
1561         /*
1562          * TODO, currently we don't save this lock because there is no place to
1563          * hold this lock handle, but to avoid race we need to save this lock.
1564          */
1565         mdt_object_unlock(info, NULL, lh, 1);
1566
1567         return 0;
1568 }
1569
1570 /*
1571  * operation may takes locks of linkea, or directory stripes, group them in
1572  * different list.
1573  */
1574 struct mdt_sub_lock {
1575         struct mdt_object *msl_obj;
1576         struct mdt_lock_handle msl_lh;
1577         struct list_head msl_linkage;
1578 };
1579
1580 static void mdt_unlock_list(struct mdt_thread_info *info,
1581                             struct list_head *list, int decref)
1582 {
1583         struct mdt_sub_lock *msl;
1584         struct mdt_sub_lock *tmp;
1585
1586         list_for_each_entry_safe(msl, tmp, list, msl_linkage) {
1587                 mdt_object_unlock_put(info, msl->msl_obj, &msl->msl_lh, decref);
1588                 list_del(&msl->msl_linkage);
1589                 OBD_FREE_PTR(msl);
1590         }
1591 }
1592
1593 static inline void mdt_migrate_object_unlock(struct mdt_thread_info *info,
1594                                              struct mdt_object *obj,
1595                                              struct mdt_lock_handle *lh,
1596                                              struct ldlm_enqueue_info *einfo,
1597                                              struct list_head *slave_locks,
1598                                              int decref)
1599 {
1600         if (mdt_object_remote(obj)) {
1601                 mdt_unlock_list(info, slave_locks, decref);
1602                 mdt_object_unlock(info, obj, lh, decref);
1603         } else {
1604                 mdt_reint_striped_unlock(info, obj, lh, einfo, decref);
1605         }
1606 }
1607
1608 /*
1609  * lock parents of links, and also check whether total locks don't exceed
1610  * RS_MAX_LOCKS.
1611  *
1612  * \retval      0 on success, and locks can be saved in ptlrpc_reply_stat
1613  * \retval      1 on success, but total lock count may exceed RS_MAX_LOCKS
1614  * \retval      -ev negative errno upon error
1615  */
1616 static int mdt_link_parents_lock(struct mdt_thread_info *info,
1617                                  struct mdt_object *pobj,
1618                                  const struct md_attr *ma,
1619                                  struct mdt_object *obj,
1620                                  struct mdt_lock_handle *lhp,
1621                                  struct ldlm_enqueue_info *peinfo,
1622                                  struct list_head *parent_slave_locks,
1623                                  struct list_head *link_locks)
1624 {
1625         struct mdt_device *mdt = info->mti_mdt;
1626         struct lu_buf *buf = &info->mti_big_buf;
1627         struct lu_name *lname = &info->mti_name;
1628         struct linkea_data ldata = { NULL };
1629         bool blocked = false;
1630         int local_lnkp_cnt = 0;
1631         int rc;
1632
1633         ENTRY;
1634         if (S_ISDIR(lu_object_attr(&obj->mot_obj)))
1635                 RETURN(0);
1636
1637         buf = lu_buf_check_and_alloc(buf, MAX_LINKEA_SIZE);
1638         if (buf->lb_buf == NULL)
1639                 RETURN(-ENOMEM);
1640
1641         ldata.ld_buf = buf;
1642         rc = mdt_links_read(info, obj, &ldata);
1643         if (rc) {
1644                 if (rc == -ENOENT || rc == -ENODATA)
1645                         rc = 0;
1646                 RETURN(rc);
1647         }
1648
1649         for (linkea_first_entry(&ldata); ldata.ld_lee && !rc;
1650              linkea_next_entry(&ldata)) {
1651                 struct mdt_object *lnkp;
1652                 struct mdt_sub_lock *msl;
1653                 struct lu_fid fid;
1654                 __u64 ibits;
1655
1656                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, lname,
1657                                     &fid);
1658
1659                 /* check if it's also linked to parent */
1660                 if (lu_fid_eq(mdt_object_fid(pobj), &fid)) {
1661                         CDEBUG(D_INFO, "skip parent "DFID", reovke "DNAME"\n",
1662                                PFID(&fid), PNAME(lname));
1663                         /* in case link is remote object, revoke LOOKUP lock */
1664                         rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
1665                         continue;
1666                 }
1667
1668                 lnkp = NULL;
1669
1670                 /* check if it's linked to a stripe of parent */
1671                 if (ma->ma_valid & MA_LMV) {
1672                         struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1673                         struct lu_fid *stripe_fid = &info->mti_tmp_fid1;
1674                         int j = 0;
1675
1676                         for (; j < le32_to_cpu(lmv->lmv_stripe_count); j++) {
1677                                 fid_le_to_cpu(stripe_fid,
1678                                               &lmv->lmv_stripe_fids[j]);
1679                                 if (lu_fid_eq(stripe_fid, &fid)) {
1680                                         CDEBUG(D_INFO, "skip stripe "DFID
1681                                                ", reovke "DNAME"\n",
1682                                                PFID(&fid), PNAME(lname));
1683                                         lnkp = mdt_object_find(info->mti_env,
1684                                                                mdt, &fid);
1685                                         if (IS_ERR(lnkp))
1686                                                 GOTO(out, rc = PTR_ERR(lnkp));
1687                                         break;
1688                                 }
1689                         }
1690
1691                         if (lnkp) {
1692                                 rc = mdt_revoke_remote_lookup_lock(info, lnkp,
1693                                                                    obj);
1694                                 mdt_object_put(info->mti_env, lnkp);
1695                                 continue;
1696                         }
1697                 }
1698
1699                 /* Check if it's already locked */
1700                 list_for_each_entry(msl, link_locks, msl_linkage) {
1701                         if (lu_fid_eq(mdt_object_fid(msl->msl_obj), &fid)) {
1702                                 CDEBUG(D_INFO,
1703                                        DFID" was locked, revoke "DNAME"\n",
1704                                        PFID(&fid), PNAME(lname));
1705                                 lnkp = msl->msl_obj;
1706                                 break;
1707                         }
1708                 }
1709
1710                 if (lnkp) {
1711                         rc = mdt_revoke_remote_lookup_lock(info, lnkp, obj);
1712                         continue;
1713                 }
1714
1715                 CDEBUG(D_INFO, "lock "DFID":"DNAME"\n",
1716                        PFID(&fid), PNAME(lname));
1717
1718                 lnkp = mdt_object_find(info->mti_env, mdt, &fid);
1719                 if (IS_ERR(lnkp)) {
1720                         CWARN("%s: cannot find obj "DFID": %ld\n",
1721                               mdt_obd_name(mdt), PFID(&fid), PTR_ERR(lnkp));
1722                         continue;
1723                 }
1724
1725                 if (!mdt_object_exists(lnkp)) {
1726                         CDEBUG(D_INFO, DFID" doesn't exist, skip "DNAME"\n",
1727                               PFID(&fid), PNAME(lname));
1728                         mdt_object_put(info->mti_env, lnkp);
1729                         continue;
1730                 }
1731
1732                 if (!mdt_object_remote(lnkp))
1733                         local_lnkp_cnt++;
1734
1735                 OBD_ALLOC_PTR(msl);
1736                 if (msl == NULL)
1737                         GOTO(out, rc = -ENOMEM);
1738
1739                 /*
1740                  * we can't follow parent-child lock order like other MD
1741                  * operations, use lock_try here to avoid deadlock, if the lock
1742                  * cannot be taken, drop all locks taken, revoke the blocked
1743                  * one, and continue processing the remaining entries, and in
1744                  * the end of the loop restart from beginning.
1745                  */
1746                 mdt_lock_pdo_init(&msl->msl_lh, LCK_PW, lname);
1747                 ibits = 0;
1748                 rc = mdt_object_lock_try(info, lnkp, &msl->msl_lh, &ibits,
1749                                          MDS_INODELOCK_UPDATE, true);
1750                 if (!(ibits & MDS_INODELOCK_UPDATE)) {
1751
1752                         CDEBUG(D_INFO, "busy lock on "DFID" "DNAME"\n",
1753                                PFID(&fid), PNAME(lname));
1754
1755                         mdt_unlock_list(info, link_locks, 1);
1756                         /* also unlock parent locks to avoid deadlock */
1757                         if (!blocked)
1758                                 mdt_migrate_object_unlock(info, pobj, lhp,
1759                                                           peinfo,
1760                                                           parent_slave_locks,
1761                                                           1);
1762
1763                         blocked = true;
1764
1765                         mdt_lock_pdo_init(&msl->msl_lh, LCK_PW, lname);
1766                         rc = mdt_object_lock(info, lnkp, &msl->msl_lh,
1767                                              MDS_INODELOCK_UPDATE);
1768                         if (rc) {
1769                                 mdt_object_put(info->mti_env, lnkp);
1770                                 OBD_FREE_PTR(msl);
1771                                 GOTO(out, rc);
1772                         }
1773
1774                         if (mdt_object_remote(lnkp)) {
1775                                 struct ldlm_lock *lock;
1776
1777                                 /*
1778                                  * for remote object, set lock cb_atomic,
1779                                  * so lock can be released in blocking_ast()
1780                                  * immediately, then the next lock_try will
1781                                  * have better chance of success.
1782                                  */
1783                                 lock = ldlm_handle2lock(
1784                                                 &msl->msl_lh.mlh_rreg_lh);
1785                                 LASSERT(lock != NULL);
1786                                 lock_res_and_lock(lock);
1787                                 ldlm_set_atomic_cb(lock);
1788                                 unlock_res_and_lock(lock);
1789                                 LDLM_LOCK_PUT(lock);
1790                         }
1791
1792                         mdt_object_unlock_put(info, lnkp, &msl->msl_lh, 1);
1793                         OBD_FREE_PTR(msl);
1794                         continue;
1795                 }
1796
1797                 INIT_LIST_HEAD(&msl->msl_linkage);
1798                 msl->msl_obj = lnkp;
1799                 list_add_tail(&msl->msl_linkage, link_locks);
1800
1801                 rc = mdt_revoke_remote_lookup_lock(info, lnkp, obj);
1802         }
1803
1804         if (blocked)
1805                 GOTO(out, rc = -EBUSY);
1806
1807         EXIT;
1808 out:
1809         if (rc) {
1810                 mdt_unlock_list(info, link_locks, rc);
1811         } else if (local_lnkp_cnt > RS_MAX_LOCKS - 5) {
1812                 CDEBUG(D_INFO, "Too many links (%d), sync operations\n",
1813                        local_lnkp_cnt);
1814                 /*
1815                  * parent may have 3 local objects: master object and 2 stripes
1816                  * (if it's being migrated too); source may have 1 local objects
1817                  * as regular file; target has 1 local object.
1818                  * Note, source may have 2 local locks if it is directory but it
1819                  * can't have hardlinks, so it is not considered here.
1820                  */
1821                 rc = 1;
1822         }
1823         return rc;
1824 }
1825
1826 static int mdt_lock_remote_slaves(struct mdt_thread_info *info,
1827                                   struct mdt_object *obj,
1828                                   const struct md_attr *ma,
1829                                   struct list_head *slave_locks)
1830 {
1831         struct mdt_device *mdt = info->mti_mdt;
1832         const struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1833         struct lu_fid *fid = &info->mti_tmp_fid1;
1834         struct mdt_object *slave;
1835         struct mdt_sub_lock *msl;
1836         int i;
1837         int rc;
1838
1839         ENTRY;
1840         LASSERT(mdt_object_remote(obj));
1841         LASSERT(ma->ma_valid & MA_LMV);
1842         LASSERT(lmv);
1843
1844         if (!lmv_is_sane(lmv))
1845                 RETURN(-EINVAL);
1846
1847         for (i = 0; i < le32_to_cpu(lmv->lmv_stripe_count); i++) {
1848                 fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[i]);
1849
1850                 if (!fid_is_sane(fid))
1851                         continue;
1852
1853                 slave = mdt_object_find(info->mti_env, mdt, fid);
1854                 if (IS_ERR(slave))
1855                         GOTO(out, rc = PTR_ERR(slave));
1856
1857                 OBD_ALLOC_PTR(msl);
1858                 if (!msl) {
1859                         mdt_object_put(info->mti_env, slave);
1860                         GOTO(out, rc = -ENOMEM);
1861                 }
1862
1863                 mdt_lock_reg_init(&msl->msl_lh, LCK_EX);
1864                 rc = mdt_reint_object_lock(info, slave, &msl->msl_lh,
1865                                            MDS_INODELOCK_UPDATE, true);
1866                 if (rc) {
1867                         OBD_FREE_PTR(msl);
1868                         mdt_object_put(info->mti_env, slave);
1869                         GOTO(out, rc);
1870                 }
1871
1872                 INIT_LIST_HEAD(&msl->msl_linkage);
1873                 msl->msl_obj = slave;
1874                 list_add_tail(&msl->msl_linkage, slave_locks);
1875         }
1876         EXIT;
1877
1878 out:
1879         if (rc)
1880                 mdt_unlock_list(info, slave_locks, rc);
1881         return rc;
1882 }
1883
1884 /* lock parent and its stripes */
1885 static int mdt_migrate_parent_lock(struct mdt_thread_info *info,
1886                                    struct mdt_object *obj,
1887                                    const struct md_attr *ma,
1888                                    struct mdt_lock_handle *lh,
1889                                    struct ldlm_enqueue_info *einfo,
1890                                    struct list_head *slave_locks)
1891 {
1892         int rc;
1893
1894         if (mdt_object_remote(obj)) {
1895                 rc = mdt_remote_object_lock(info, obj, mdt_object_fid(obj),
1896                                             &lh->mlh_rreg_lh, LCK_PW,
1897                                             MDS_INODELOCK_UPDATE, false);
1898                 if (rc != ELDLM_OK)
1899                         return rc;
1900
1901                 /*
1902                  * if obj is remote and striped, lock its stripes explicitly
1903                  * because it's not striped in LOD layer on this MDT.
1904                  */
1905                 if (ma->ma_valid & MA_LMV) {
1906                         rc = mdt_lock_remote_slaves(info, obj, ma, slave_locks);
1907                         if (rc)
1908                                 mdt_object_unlock(info, obj, lh, rc);
1909                 }
1910         } else {
1911                 rc = mdt_reint_striped_lock(info, obj, lh, MDS_INODELOCK_UPDATE,
1912                                             einfo, true);
1913         }
1914
1915         return rc;
1916 }
1917
1918 /*
1919  * in migration, object may be remote, and we need take full lock of it and its
1920  * stripes if it's directory, besides, object may be a remote object on its
1921  * parent, revoke its LOOKUP lock on where its parent is located.
1922  */
1923 static int mdt_migrate_object_lock(struct mdt_thread_info *info,
1924                                    struct mdt_object *pobj,
1925                                    struct mdt_object *obj,
1926                                    struct mdt_lock_handle *lh,
1927                                    struct ldlm_enqueue_info *einfo,
1928                                    struct list_head *slave_locks)
1929 {
1930         int rc;
1931
1932         if (mdt_object_remote(obj)) {
1933                 rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
1934                 if (rc)
1935                         return rc;
1936
1937                 rc = mdt_remote_object_lock(info, obj, mdt_object_fid(obj),
1938                                             &lh->mlh_rreg_lh, LCK_EX,
1939                                             MDS_INODELOCK_FULL, false);
1940                 if (rc != ELDLM_OK)
1941                         return rc;
1942
1943                 /*
1944                  * if obj is remote and striped, lock its stripes explicitly
1945                  * because it's not striped in LOD layer on this MDT.
1946                  */
1947                 if (S_ISDIR(lu_object_attr(&obj->mot_obj))) {
1948                         struct md_attr *ma = &info->mti_attr;
1949
1950                         rc = mdt_stripe_get(info, obj, ma, XATTR_NAME_LMV);
1951                         if (rc) {
1952                                 mdt_object_unlock(info, obj, lh, rc);
1953                                 return rc;
1954                         }
1955
1956                         if (ma->ma_valid & MA_LMV) {
1957                                 rc = mdt_lock_remote_slaves(info, obj, ma,
1958                                                             slave_locks);
1959                                 if (rc)
1960                                         mdt_object_unlock(info, obj, lh, rc);
1961                         }
1962                 }
1963         } else {
1964                 if (mdt_object_remote(pobj)) {
1965                         rc = mdt_revoke_remote_lookup_lock(info, pobj, obj);
1966                         if (rc)
1967                                 return rc;
1968                 }
1969
1970                 rc = mdt_reint_striped_lock(info, obj, lh, MDS_INODELOCK_FULL,
1971                                             einfo, true);
1972         }
1973
1974         return rc;
1975 }
1976
1977 /*
1978  * lookup source by name, if parent is striped directory, we need to find the
1979  * corresponding stripe where source is located, and then lookup there.
1980  *
1981  * besides, if parent is migrating too, and file is already in target stripe,
1982  * this should be a redo of 'lfs migrate' on client side.
1983  */
1984 static int mdt_migrate_lookup(struct mdt_thread_info *info,
1985                               struct mdt_object *pobj,
1986                               const struct md_attr *ma,
1987                               const struct lu_name *lname,
1988                               struct mdt_object **spobj,
1989                               struct mdt_object **sobj)
1990 {
1991         const struct lu_env *env = info->mti_env;
1992         struct lu_fid *fid = &info->mti_tmp_fid1;
1993         struct mdt_object *stripe;
1994         int rc;
1995
1996         if (ma->ma_valid & MA_LMV) {
1997                 /* if parent is striped, lookup on corresponding stripe */
1998                 struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1999
2000                 if (!lmv_is_sane(lmv))
2001                         return -EBADF;
2002
2003                 rc = lmv_name_to_stripe_index_old(lmv, lname->ln_name,
2004                                                   lname->ln_namelen);
2005                 if (rc < 0)
2006                         return rc;
2007
2008                 fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[rc]);
2009
2010                 stripe = mdt_object_find(env, info->mti_mdt, fid);
2011                 if (IS_ERR(stripe))
2012                         return PTR_ERR(stripe);
2013
2014                 fid_zero(fid);
2015                 rc = mdo_lookup(env, mdt_object_child(stripe), lname, fid,
2016                                 &info->mti_spec);
2017                 if (rc == -ENOENT && lmv_is_layout_changing(lmv)) {
2018                         /*
2019                          * if parent layout is changeing, and lookup child
2020                          * failed on source stripe, lookup again on target
2021                          * stripe, if it exists, it means previous migration
2022                          * was interrupted, and current file was migrated
2023                          * already.
2024                          */
2025                         mdt_object_put(env, stripe);
2026
2027                         rc = lmv_name_to_stripe_index(lmv, lname->ln_name,
2028                                                       lname->ln_namelen);
2029                         if (rc < 0)
2030                                 return rc;
2031
2032                         fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[rc]);
2033
2034                         stripe = mdt_object_find(env, info->mti_mdt, fid);
2035                         if (IS_ERR(stripe))
2036                                 return PTR_ERR(stripe);
2037
2038                         fid_zero(fid);
2039                         rc = mdo_lookup(env, mdt_object_child(stripe), lname,
2040                                         fid, &info->mti_spec);
2041                         mdt_object_put(env, stripe);
2042                         return rc ?: -EALREADY;
2043                 } else if (rc) {
2044                         mdt_object_put(env, stripe);
2045                         return rc;
2046                 }
2047         } else {
2048                 fid_zero(fid);
2049                 rc = mdo_lookup(env, mdt_object_child(pobj), lname, fid,
2050                                 &info->mti_spec);
2051                 if (rc)
2052                         return rc;
2053
2054                 stripe = pobj;
2055                 mdt_object_get(env, stripe);
2056         }
2057
2058         *spobj = stripe;
2059
2060         *sobj = mdt_object_find(env, info->mti_mdt, fid);
2061         if (IS_ERR(*sobj)) {
2062                 mdt_object_put(env, stripe);
2063                 rc = PTR_ERR(*sobj);
2064                 *spobj = NULL;
2065                 *sobj = NULL;
2066         }
2067
2068         return rc;
2069 }
2070
2071 /* end lease and close file for regular file */
2072 static int mdd_migrate_close(struct mdt_thread_info *info,
2073                              struct mdt_object *obj)
2074 {
2075         struct close_data *data;
2076         struct mdt_body *repbody;
2077         struct ldlm_lock *lease;
2078         int rc;
2079         int rc2;
2080
2081         rc = -EPROTO;
2082         if (!req_capsule_field_present(info->mti_pill, &RMF_MDT_EPOCH,
2083                                       RCL_CLIENT) ||
2084             !req_capsule_field_present(info->mti_pill, &RMF_CLOSE_DATA,
2085                                       RCL_CLIENT))
2086                 goto close;
2087
2088         data = req_capsule_client_get(info->mti_pill, &RMF_CLOSE_DATA);
2089         if (!data)
2090                 goto close;
2091
2092         rc = -ESTALE;
2093         lease = ldlm_handle2lock(&data->cd_handle);
2094         if (!lease)
2095                 goto close;
2096
2097         /* check if the lease was already canceled */
2098         lock_res_and_lock(lease);
2099         rc = ldlm_is_cancel(lease);
2100         unlock_res_and_lock(lease);
2101
2102         if (rc) {
2103                 rc = -EAGAIN;
2104                 LDLM_DEBUG(lease, DFID" lease broken",
2105                            PFID(mdt_object_fid(obj)));
2106         }
2107
2108         /*
2109          * cancel server side lease, client side counterpart should have been
2110          * cancelled, it's okay to cancel it now as we've held mot_open_sem.
2111          */
2112         ldlm_lock_cancel(lease);
2113         ldlm_reprocess_all(lease->l_resource, lease);
2114         LDLM_LOCK_PUT(lease);
2115
2116 close:
2117         rc2 = mdt_close_internal(info, mdt_info_req(info), NULL);
2118         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
2119         repbody->mbo_valid |= OBD_MD_CLOSE_INTENT_EXECED;
2120
2121         return rc ?: rc2;
2122 }
2123
2124 /*
2125  * migrate file in below steps:
2126  *  1. lock parent and its stripes
2127  *  2. lookup source by name
2128  *  3. lock parents of source links if source is not directory
2129  *  4. reject if source is in HSM
2130  *  5. take source open_sem and close file if source is regular file
2131  *  6. lock source and its stripes if it's directory
2132  *  7. lock target so subsequent change to it can trigger COS
2133  *  8. migrate file
2134  *  9. unlock above locks
2135  * 10. sync device if source has links
2136  */
2137 int mdt_reint_migrate(struct mdt_thread_info *info,
2138                       struct mdt_lock_handle *unused)
2139 {
2140         const struct lu_env *env = info->mti_env;
2141         struct mdt_device *mdt = info->mti_mdt;
2142         struct ptlrpc_request *req = mdt_info_req(info);
2143         struct mdt_reint_record *rr = &info->mti_rr;
2144         struct lu_ucred *uc = mdt_ucred(info);
2145         struct md_attr *ma = &info->mti_attr;
2146         struct ldlm_enqueue_info *peinfo = &info->mti_einfo[0];
2147         struct ldlm_enqueue_info *seinfo = &info->mti_einfo[1];
2148         struct mdt_object *pobj;
2149         struct mdt_object *spobj = NULL;
2150         struct mdt_object *sobj = NULL;
2151         struct mdt_object *tobj;
2152         struct lustre_handle rename_lh = { 0 };
2153         struct mdt_lock_handle *lhp;
2154         struct mdt_lock_handle *lhs;
2155         struct mdt_lock_handle *lht;
2156         LIST_HEAD(parent_slave_locks);
2157         LIST_HEAD(child_slave_locks);
2158         LIST_HEAD(link_locks);
2159         int lock_retries = 5;
2160         bool open_sem_locked = false;
2161         bool do_sync = false;
2162         int rc;
2163
2164         ENTRY;
2165         CDEBUG(D_INODE, "migrate "DFID"/"DNAME" to "DFID"\n", PFID(rr->rr_fid1),
2166                PNAME(&rr->rr_name), PFID(rr->rr_fid2));
2167
2168         if (info->mti_dlm_req)
2169                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2170
2171         if (!fid_is_md_operative(rr->rr_fid1) ||
2172             !fid_is_md_operative(rr->rr_fid2))
2173                 RETURN(-EPERM);
2174
2175         /* don't allow migrate . or .. */
2176         if (lu_name_is_dot_or_dotdot(&rr->rr_name))
2177                 RETURN(-EBUSY);
2178
2179         if (!mdt->mdt_enable_remote_dir || !mdt->mdt_enable_dir_migration)
2180                 RETURN(-EPERM);
2181
2182         if (uc && !md_capable(uc, CAP_SYS_ADMIN) &&
2183             uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
2184             mdt->mdt_enable_remote_dir_gid != -1)
2185                 RETURN(-EPERM);
2186
2187         /*
2188          * Note: do not enqueue rename lock for replay request, because
2189          * if other MDT holds rename lock, but being blocked to wait for
2190          * this MDT to finish its recovery, and the failover MDT can not
2191          * get rename lock, which will cause deadlock.
2192          *
2193          * req is NULL if this is called by directory auto-split.
2194          */
2195         if (req && !req_is_replay(req)) {
2196                 rc = mdt_rename_lock(info, &rename_lh);
2197                 if (rc != 0) {
2198                         CERROR("%s: can't lock FS for rename: rc = %d\n",
2199                                mdt_obd_name(info->mti_mdt), rc);
2200                         RETURN(rc);
2201                 }
2202         }
2203
2204         /* pobj is master object of parent */
2205         pobj = mdt_object_find(env, mdt, rr->rr_fid1);
2206         if (IS_ERR(pobj))
2207                 GOTO(unlock_rename, rc = PTR_ERR(pobj));
2208
2209         if (req) {
2210                 rc = mdt_version_get_check(info, pobj, 0);
2211                 if (rc)
2212                         GOTO(put_parent, rc);
2213         }
2214
2215         if (!mdt_object_exists(pobj))
2216                 GOTO(put_parent, rc = -ENOENT);
2217
2218         if (!S_ISDIR(lu_object_attr(&pobj->mot_obj)))
2219                 GOTO(put_parent, rc = -ENOTDIR);
2220
2221         rc = mdt_stripe_get(info, pobj, ma, XATTR_NAME_LMV);
2222         if (rc)
2223                 GOTO(put_parent, rc);
2224
2225 lock_parent:
2226         /* lock parent object */
2227         lhp = &info->mti_lh[MDT_LH_PARENT];
2228         mdt_lock_reg_init(lhp, LCK_PW);
2229         rc = mdt_migrate_parent_lock(info, pobj, ma, lhp, peinfo,
2230                                      &parent_slave_locks);
2231         if (rc)
2232                 GOTO(put_parent, rc);
2233
2234         /*
2235          * spobj is the corresponding stripe against name if pobj is striped
2236          * directory, which is the real parent, and no need to lock, because
2237          * we've taken full lock of pobj.
2238          */
2239         rc = mdt_migrate_lookup(info, pobj, ma, &rr->rr_name, &spobj, &sobj);
2240         if (rc)
2241                 GOTO(unlock_parent, rc);
2242
2243         /* lock parents of source links, and revoke LOOKUP lock of links */
2244         rc = mdt_link_parents_lock(info, pobj, ma, sobj, lhp, peinfo,
2245                                    &parent_slave_locks, &link_locks);
2246         if (rc == -EBUSY && lock_retries-- > 0) {
2247                 mdt_object_put(env, sobj);
2248                 mdt_object_put(env, spobj);
2249                 goto lock_parent;
2250         }
2251
2252         if (rc < 0)
2253                 GOTO(put_source, rc);
2254
2255         /*
2256          * RS_MAX_LOCKS is the limit of number of locks that can be saved along
2257          * with one request, if total lock count exceeds this limit, we will
2258          * drop all locks after migration, and synchronous device in the end.
2259          */
2260         do_sync = rc;
2261
2262         /* TODO: DoM migration is not supported, migrate dirent only */
2263         if (S_ISREG(lu_object_attr(&sobj->mot_obj))) {
2264                 rc = mdt_stripe_get(info, sobj, ma, XATTR_NAME_LOV);
2265                 if (rc)
2266                         GOTO(unlock_links, rc);
2267
2268                 if (ma->ma_valid & MA_LOV && mdt_lmm_dom_stripesize(ma->ma_lmm))
2269                         info->mti_spec.sp_migrate_nsonly = 1;
2270         }
2271
2272         /* if migration HSM is allowed */
2273         if (!mdt->mdt_opts.mo_migrate_hsm_allowed) {
2274                 ma->ma_need = MA_HSM;
2275                 ma->ma_valid = 0;
2276                 rc = mdt_attr_get_complex(info, sobj, ma);
2277                 if (rc)
2278                         GOTO(unlock_links, rc);
2279
2280                 if ((ma->ma_valid & MA_HSM) && ma->ma_hsm.mh_flags != 0)
2281                         GOTO(unlock_links, rc = -EOPNOTSUPP);
2282         }
2283
2284         /* end lease and close file for regular file */
2285         if (info->mti_spec.sp_migrate_close) {
2286                 /* try to hold open_sem so that nobody else can open the file */
2287                 if (!down_write_trylock(&sobj->mot_open_sem)) {
2288                         /* close anyway */
2289                         mdd_migrate_close(info, sobj);
2290                         GOTO(unlock_links, rc = -EBUSY);
2291                 } else {
2292                         open_sem_locked = true;
2293                         rc = mdd_migrate_close(info, sobj);
2294                         if (rc)
2295                                 GOTO(unlock_open_sem, rc);
2296                 }
2297         }
2298
2299         /* lock source */
2300         lhs = &info->mti_lh[MDT_LH_OLD];
2301         mdt_lock_reg_init(lhs, LCK_EX);
2302         rc = mdt_migrate_object_lock(info, spobj, sobj, lhs, seinfo,
2303                                      &child_slave_locks);
2304         if (rc)
2305                 GOTO(unlock_open_sem, rc);
2306
2307         /* lock target */
2308         tobj = mdt_object_find(env, mdt, rr->rr_fid2);
2309         if (IS_ERR(tobj))
2310                 GOTO(unlock_source, rc = PTR_ERR(tobj));
2311
2312         lht = &info->mti_lh[MDT_LH_NEW];
2313         mdt_lock_reg_init(lht, LCK_EX);
2314         rc = mdt_reint_object_lock(info, tobj, lht, MDS_INODELOCK_FULL, true);
2315         if (rc)
2316                 GOTO(put_target, rc);
2317
2318         /* Don't do lookup sanity check. We know name doesn't exist. */
2319         info->mti_spec.sp_cr_lookup = 0;
2320         info->mti_spec.sp_feat = &dt_directory_features;
2321
2322         rc = mdo_migrate(env, mdt_object_child(pobj),
2323                          mdt_object_child(sobj), &rr->rr_name,
2324                          mdt_object_child(tobj),
2325                          &info->mti_spec, ma);
2326         if (!rc)
2327                 lprocfs_counter_incr(mdt->mdt_lu_dev.ld_obd->obd_md_stats,
2328                                      LPROC_MDT_MIGRATE + LPROC_MD_LAST_OPC);
2329         EXIT;
2330
2331         mdt_object_unlock(info, tobj, lht, rc);
2332 put_target:
2333         mdt_object_put(env, tobj);
2334 unlock_source:
2335         mdt_migrate_object_unlock(info, sobj, lhs, seinfo,
2336                                   &child_slave_locks, rc);
2337 unlock_open_sem:
2338         if (open_sem_locked)
2339                 up_write(&sobj->mot_open_sem);
2340 unlock_links:
2341         /* if we've got too many locks to save into RPC,
2342          * then just commit before the locks are released
2343          */
2344         if (!rc && do_sync)
2345                 mdt_device_sync(env, mdt);
2346         mdt_unlock_list(info, &link_locks, do_sync ? 1 : rc);
2347 put_source:
2348         mdt_object_put(env, sobj);
2349         mdt_object_put(env, spobj);
2350 unlock_parent:
2351         mdt_migrate_object_unlock(info, pobj, lhp, peinfo,
2352                                   &parent_slave_locks, rc);
2353 put_parent:
2354         mdt_object_put(env, pobj);
2355 unlock_rename:
2356         if (lustre_handle_is_used(&rename_lh))
2357                 mdt_rename_unlock(&rename_lh);
2358
2359         return rc;
2360 }
2361
2362 static int mdt_object_lock_save(struct mdt_thread_info *info,
2363                                 struct mdt_object *dir,
2364                                 struct mdt_lock_handle *lh,
2365                                 int idx, bool cos_incompat)
2366 {
2367         int rc;
2368
2369         /* we lock the target dir if it is local */
2370         rc = mdt_reint_object_lock(info, dir, lh, MDS_INODELOCK_UPDATE,
2371                                    cos_incompat);
2372         if (rc != 0)
2373                 return rc;
2374
2375         /* get and save correct version after locking */
2376         mdt_version_get_save(info, dir, idx);
2377         return 0;
2378 }
2379
2380 /*
2381  * determine lock order of sobj and tobj
2382  *
2383  * there are two situations we need to lock tobj before sobj:
2384  * 1. sobj is child of tobj
2385  * 2. sobj and tobj are stripes of a directory, and stripe index of sobj is
2386  *    larger than that of tobj
2387  *
2388  * \retval      1 lock tobj before sobj
2389  * \retval      0 lock sobj before tobj
2390  * \retval      -ev negative errno upon error
2391  */
2392 static int mdt_rename_determine_lock_order(struct mdt_thread_info *info,
2393                                            struct mdt_object *sobj,
2394                                            struct mdt_object *tobj)
2395 {
2396         struct md_attr *ma = &info->mti_attr;
2397         struct lu_fid *spfid = &info->mti_tmp_fid1;
2398         struct lu_fid *tpfid = &info->mti_tmp_fid2;
2399         struct lmv_mds_md_v1 *lmv;
2400         __u32 sindex;
2401         __u32 tindex;
2402         int rc;
2403
2404         /* sobj and tobj are the same */
2405         if (sobj == tobj)
2406                 return 0;
2407
2408         if (fid_is_root(mdt_object_fid(sobj)))
2409                 return 0;
2410
2411         if (fid_is_root(mdt_object_fid(tobj)))
2412                 return 1;
2413
2414         /* check whether sobj is child of tobj */
2415         rc = mdo_is_subdir(info->mti_env, mdt_object_child(sobj),
2416                            mdt_object_fid(tobj));
2417         if (rc < 0)
2418                 return rc;
2419
2420         if (rc == 1)
2421                 return 1;
2422
2423         /* check whether sobj and tobj are children of the same parent */
2424         rc = mdt_attr_get_pfid(info, sobj, spfid);
2425         if (rc)
2426                 return rc;
2427
2428         rc = mdt_attr_get_pfid(info, tobj, tpfid);
2429         if (rc)
2430                 return rc;
2431
2432         if (!lu_fid_eq(spfid, tpfid))
2433                 return 0;
2434
2435         /* check whether sobj and tobj are sibling stripes */
2436         rc = mdt_stripe_get(info, sobj, ma, XATTR_NAME_LMV);
2437         if (rc)
2438                 return rc;
2439
2440         if (!(ma->ma_valid & MA_LMV))
2441                 return 0;
2442
2443         lmv = &ma->ma_lmv->lmv_md_v1;
2444         if (!(le32_to_cpu(lmv->lmv_magic) & LMV_MAGIC_STRIPE))
2445                 return 0;
2446         sindex = le32_to_cpu(lmv->lmv_master_mdt_index);
2447
2448         ma->ma_valid = 0;
2449         rc = mdt_stripe_get(info, tobj, ma, XATTR_NAME_LMV);
2450         if (rc)
2451                 return rc;
2452
2453         if (!(ma->ma_valid & MA_LMV))
2454                 return -ENODATA;
2455
2456         lmv = &ma->ma_lmv->lmv_md_v1;
2457         if (!(le32_to_cpu(lmv->lmv_magic) & LMV_MAGIC_STRIPE))
2458                 return -EINVAL;
2459         tindex = le32_to_cpu(lmv->lmv_master_mdt_index);
2460
2461         /* check stripe index of sobj and tobj */
2462         if (sindex == tindex)
2463                 return -EINVAL;
2464
2465         return sindex < tindex ? 0 : 1;
2466 }
2467
2468 /*
2469  * lock rename source object.
2470  *
2471  * Both source and source parent may be remote, and source may be a remote
2472  * object on source parent, to avoid overriding lock handle, store remote
2473  * LOOKUP lock separately in @lhr.
2474  *
2475  * \retval      0 on success
2476  * \retval      -ev negative errno upon error
2477  */
2478 static int mdt_rename_source_lock(struct mdt_thread_info *info,
2479                                   struct mdt_object *parent,
2480                                   struct mdt_object *child,
2481                                   struct mdt_lock_handle *lhc,
2482                                   struct mdt_lock_handle *lhr,
2483                                   __u64 ibits,
2484                                   bool cos_incompat)
2485 {
2486         int rc;
2487
2488         rc = mdt_is_remote_object(info, parent, child);
2489         if (rc < 0)
2490                 return rc;
2491
2492         if (rc) {
2493                 /* enqueue remote LOOKUP lock from the parent MDT */
2494                 __u64 rmt_ibits = MDS_INODELOCK_LOOKUP;
2495
2496                 if (mdt_object_remote(parent)) {
2497                         rc = mdt_remote_object_lock(info, parent,
2498                                                     mdt_object_fid(child),
2499                                                     &lhr->mlh_rreg_lh,
2500                                                     lhr->mlh_rreg_mode,
2501                                                     rmt_ibits, false);
2502                         if (rc != ELDLM_OK)
2503                                 return rc;
2504                 } else {
2505                         LASSERT(mdt_object_remote(child));
2506                         rc = mdt_object_local_lock(info, child, lhr,
2507                                                    &rmt_ibits, 0, true);
2508                         if (rc < 0)
2509                                 return rc;
2510                 }
2511
2512                 ibits &= ~MDS_INODELOCK_LOOKUP;
2513         }
2514
2515         if (mdt_object_remote(child)) {
2516                 rc = mdt_remote_object_lock(info, child, mdt_object_fid(child),
2517                                             &lhc->mlh_rreg_lh,
2518                                             lhc->mlh_rreg_mode,
2519                                             ibits, false);
2520                 if (rc == ELDLM_OK)
2521                         rc = 0;
2522         } else {
2523                 rc = mdt_reint_object_lock(info, child, lhc, ibits,
2524                                            cos_incompat);
2525         }
2526
2527         if (!rc)
2528                 mdt_object_unlock(info, child, lhr, rc);
2529
2530         return rc;
2531 }
2532
2533 /*
2534  * VBR: rename versions in reply: 0 - srcdir parent; 1 - tgtdir parent;
2535  * 2 - srcdir child; 3 - tgtdir child.
2536  * Update on disk version of srcdir child.
2537  */
2538 static int mdt_reint_rename(struct mdt_thread_info *info,
2539                             struct mdt_lock_handle *unused)
2540 {
2541         struct mdt_device *mdt = info->mti_mdt;
2542         struct mdt_reint_record *rr = &info->mti_rr;
2543         struct md_attr *ma = &info->mti_attr;
2544         struct ptlrpc_request *req = mdt_info_req(info);
2545         struct mdt_object *msrcdir = NULL;
2546         struct mdt_object *mtgtdir = NULL;
2547         struct mdt_object *mold;
2548         struct mdt_object *mnew = NULL;
2549         struct lustre_handle rename_lh = { 0 };
2550         struct mdt_lock_handle *lh_srcdirp;
2551         struct mdt_lock_handle *lh_tgtdirp;
2552         struct mdt_lock_handle *lh_oldp = NULL;
2553         struct mdt_lock_handle *lh_rmt = NULL;
2554         struct mdt_lock_handle *lh_newp = NULL;
2555         struct lu_fid *old_fid = &info->mti_tmp_fid1;
2556         struct lu_fid *new_fid = &info->mti_tmp_fid2;
2557         __u64 lock_ibits;
2558         bool reverse = false, discard = false;
2559         bool cos_incompat;
2560         ktime_t kstart = ktime_get();
2561         int rc;
2562
2563         ENTRY;
2564         DEBUG_REQ(D_INODE, req, "rename "DFID"/"DNAME" to "DFID"/"DNAME,
2565                   PFID(rr->rr_fid1), PNAME(&rr->rr_name),
2566                   PFID(rr->rr_fid2), PNAME(&rr->rr_tgt_name));
2567
2568         if (info->mti_dlm_req)
2569                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2570
2571         if (!fid_is_md_operative(rr->rr_fid1) ||
2572             !fid_is_md_operative(rr->rr_fid2))
2573                 RETURN(-EPERM);
2574
2575         /* find both parents. */
2576         msrcdir = mdt_parent_find_check(info, rr->rr_fid1, 0);
2577         if (IS_ERR(msrcdir))
2578                 RETURN(PTR_ERR(msrcdir));
2579
2580         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
2581
2582         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2)) {
2583                 mtgtdir = msrcdir;
2584                 mdt_object_get(info->mti_env, mtgtdir);
2585         } else {
2586                 mtgtdir = mdt_parent_find_check(info, rr->rr_fid2, 1);
2587                 if (IS_ERR(mtgtdir))
2588                         GOTO(out_put_srcdir, rc = PTR_ERR(mtgtdir));
2589         }
2590
2591         /*
2592          * Note: do not enqueue rename lock for replay request, because
2593          * if other MDT holds rename lock, but being blocked to wait for
2594          * this MDT to finish its recovery, and the failover MDT can not
2595          * get rename lock, which will cause deadlock.
2596          */
2597         if (!req_is_replay(req)) {
2598                 /*
2599                  * Normally rename RPC is handled on the MDT with the target
2600                  * directory (if target exists, it's on the MDT with the
2601                  * target), if the source directory is remote, it's a hint that
2602                  * source is remote too (this may not be true, but it won't
2603                  * cause any issue), return -EXDEV early to avoid taking
2604                  * rename_lock.
2605                  */
2606                 if (!mdt->mdt_enable_remote_rename &&
2607                     mdt_object_remote(msrcdir))
2608                         GOTO(out_put_tgtdir, rc = -EXDEV);
2609
2610                 /* This might be further relaxed in the future for regular file
2611                  * renames in different source and target parents. Start with
2612                  * only same-directory renames for simplicity and because this
2613                  * is by far the most the common use case.
2614                  */
2615                 if (msrcdir != mtgtdir) {
2616                         rc = mdt_rename_lock(info, &rename_lh);
2617                         if (rc != 0) {
2618                                 CERROR("%s: cannot lock for rename: rc = %d\n",
2619                                        mdt_obd_name(mdt), rc);
2620                                 GOTO(out_put_tgtdir, rc);
2621                         }
2622                 } else {
2623                         CDEBUG(D_INFO, "%s: samedir rename "DFID"/"DNAME"\n",
2624                                mdt_obd_name(mdt), PFID(rr->rr_fid1),
2625                                PNAME(&rr->rr_name));
2626                 }
2627         }
2628
2629         rc = mdt_rename_determine_lock_order(info, msrcdir, mtgtdir);
2630         if (rc < 0)
2631                 GOTO(out_unlock_rename, rc);
2632
2633         reverse = rc;
2634
2635         /* source needs to be looked up after locking source parent, otherwise
2636          * this rename may race with unlink source, and cause rename hang, see
2637          * sanityn.sh 55b, so check parents first, if later we found source is
2638          * remote, relock parents.
2639          */
2640         cos_incompat = (mdt_object_remote(msrcdir) ||
2641                         mdt_object_remote(mtgtdir));
2642
2643         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
2644
2645         /* lock parents in the proper order. */
2646         lh_srcdirp = &info->mti_lh[MDT_LH_PARENT];
2647         lh_tgtdirp = &info->mti_lh[MDT_LH_CHILD];
2648
2649         OBD_RACE(OBD_FAIL_MDS_REINT_OPEN);
2650         OBD_RACE(OBD_FAIL_MDS_REINT_OPEN2);
2651 relock:
2652         mdt_lock_pdo_init(lh_srcdirp, LCK_PW, &rr->rr_name);
2653         mdt_lock_pdo_init(lh_tgtdirp, LCK_PW, &rr->rr_tgt_name);
2654
2655         if (reverse) {
2656                 rc = mdt_object_lock_save(info, mtgtdir, lh_tgtdirp, 1,
2657                                           cos_incompat);
2658                 if (rc)
2659                         GOTO(out_unlock_rename, rc);
2660
2661                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
2662
2663                 rc = mdt_object_lock_save(info, msrcdir, lh_srcdirp, 0,
2664                                           cos_incompat);
2665                 if (rc != 0) {
2666                         mdt_object_unlock(info, mtgtdir, lh_tgtdirp, rc);
2667                         GOTO(out_unlock_rename, rc);
2668                 }
2669         } else {
2670                 rc = mdt_object_lock_save(info, msrcdir, lh_srcdirp, 0,
2671                                           cos_incompat);
2672                 if (rc)
2673                         GOTO(out_unlock_rename, rc);
2674
2675                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
2676
2677                 if (mtgtdir != msrcdir) {
2678                         rc = mdt_object_lock_save(info, mtgtdir, lh_tgtdirp, 1,
2679                                                   cos_incompat);
2680                 } else if (!mdt_object_remote(mtgtdir) &&
2681                            lh_srcdirp->mlh_pdo_hash !=
2682                            lh_tgtdirp->mlh_pdo_hash) {
2683                         rc = mdt_pdir_hash_lock(info, lh_tgtdirp, mtgtdir,
2684                                                 MDS_INODELOCK_UPDATE,
2685                                                 cos_incompat);
2686                         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PDO_LOCK2, 10);
2687                 }
2688                 if (rc != 0) {
2689                         mdt_object_unlock(info, msrcdir, lh_srcdirp, rc);
2690                         GOTO(out_unlock_rename, rc);
2691                 }
2692         }
2693
2694         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
2695         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME2, 5);
2696
2697         /* find mold object. */
2698         fid_zero(old_fid);
2699         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
2700         if (rc != 0)
2701                 GOTO(out_unlock_parents, rc);
2702
2703         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
2704                 GOTO(out_unlock_parents, rc = -EINVAL);
2705
2706         if (!fid_is_md_operative(old_fid))
2707                 GOTO(out_unlock_parents, rc = -EPERM);
2708
2709         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
2710         if (IS_ERR(mold))
2711                 GOTO(out_unlock_parents, rc = PTR_ERR(mold));
2712
2713         if (!mdt_object_exists(mold)) {
2714                 LU_OBJECT_DEBUG(D_INODE, info->mti_env,
2715                                 &mold->mot_obj,
2716                                 "object does not exist");
2717                 GOTO(out_put_old, rc = -ENOENT);
2718         }
2719
2720         if (mdt_object_remote(mold) && !mdt->mdt_enable_remote_rename)
2721                 GOTO(out_put_old, rc = -EXDEV);
2722
2723         /* Check if @mtgtdir is subdir of @mold, before locking child
2724          * to avoid reverse locking.
2725          */
2726         if (mtgtdir != msrcdir) {
2727                 rc = mdo_is_subdir(info->mti_env, mdt_object_child(mtgtdir),
2728                                    old_fid);
2729                 if (rc) {
2730                         if (rc == 1)
2731                                 rc = -EINVAL;
2732                         GOTO(out_put_old, rc);
2733                 }
2734         }
2735
2736         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mold));
2737         /* save version after locking */
2738         mdt_version_get_save(info, mold, 2);
2739
2740         if (!cos_incompat && mdt_object_remote(mold)) {
2741                 cos_incompat = true;
2742                 mdt_object_put(info->mti_env, mold);
2743                 mdt_object_unlock(info, mtgtdir, lh_tgtdirp, -EAGAIN);
2744                 mdt_object_unlock(info, msrcdir, lh_srcdirp, -EAGAIN);
2745                 goto relock;
2746         }
2747
2748         /* find mnew object:
2749          * mnew target object may not exist now
2750          * lookup with version checking
2751          */
2752         fid_zero(new_fid);
2753         rc = mdt_lookup_version_check(info, mtgtdir, &rr->rr_tgt_name, new_fid,
2754                                       3);
2755         if (rc == 0) {
2756                 /* the new_fid should have been filled at this moment */
2757                 if (lu_fid_eq(old_fid, new_fid))
2758                         GOTO(out_put_old, rc);
2759
2760                 if (lu_fid_eq(new_fid, rr->rr_fid1) ||
2761                     lu_fid_eq(new_fid, rr->rr_fid2))
2762                         GOTO(out_put_old, rc = -EINVAL);
2763
2764                 if (!fid_is_md_operative(new_fid))
2765                         GOTO(out_put_old, rc = -EPERM);
2766
2767                 mnew = mdt_object_find(info->mti_env, info->mti_mdt, new_fid);
2768                 if (IS_ERR(mnew))
2769                         GOTO(out_put_old, rc = PTR_ERR(mnew));
2770
2771                 if (!mdt_object_exists(mnew)) {
2772                         LU_OBJECT_DEBUG(D_INODE, info->mti_env,
2773                                         &mnew->mot_obj,
2774                                         "object does not exist");
2775                         GOTO(out_put_new, rc = -ENOENT);
2776                 }
2777
2778                 if (mdt_object_remote(mnew)) {
2779                         struct mdt_body  *repbody;
2780
2781                         /* Always send rename req to the target child MDT */
2782                         repbody = req_capsule_server_get(info->mti_pill,
2783                                                          &RMF_MDT_BODY);
2784                         LASSERT(repbody != NULL);
2785                         repbody->mbo_fid1 = *new_fid;
2786                         repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
2787                         GOTO(out_put_new, rc = -EXDEV);
2788                 }
2789                 /* Before locking the target dir, check we do not replace
2790                  * a dir with a non-dir, otherwise it may deadlock with
2791                  * link op which tries to create a link in this dir
2792                  * back to this non-dir.
2793                  */
2794                 if (S_ISDIR(lu_object_attr(&mnew->mot_obj)) &&
2795                     !S_ISDIR(lu_object_attr(&mold->mot_obj)))
2796                         GOTO(out_put_new, rc = -EISDIR);
2797
2798                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2799                 lh_rmt = &info->mti_lh[MDT_LH_RMT];
2800                 mdt_lock_reg_init(lh_oldp, LCK_EX);
2801                 mdt_lock_reg_init(lh_rmt, LCK_EX);
2802                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2803                 rc = mdt_rename_source_lock(info, msrcdir, mold, lh_oldp,
2804                                             lh_rmt, lock_ibits, cos_incompat);
2805                 if (rc < 0)
2806                         GOTO(out_put_new, rc);
2807
2808                 /* Check if @msrcdir is subdir of @mnew, before locking child
2809                  * to avoid reverse locking.
2810                  */
2811                 if (mtgtdir != msrcdir) {
2812                         rc = mdo_is_subdir(info->mti_env,
2813                                            mdt_object_child(msrcdir), new_fid);
2814                         if (rc) {
2815                                 if (rc == 1)
2816                                         rc = -EINVAL;
2817                                 GOTO(out_unlock_old, rc);
2818                         }
2819                 }
2820
2821                 /* We used to acquire MDS_INODELOCK_FULL here but we
2822                  * can't do this now because a running HSM restore on
2823                  * the rename onto victim will hold the layout
2824                  * lock. See LU-4002.
2825                  */
2826
2827                 lh_newp = &info->mti_lh[MDT_LH_NEW];
2828                 mdt_lock_reg_init(lh_newp, LCK_EX);
2829                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
2830                 if (mdt_object_remote(mtgtdir)) {
2831                         rc = mdt_remote_object_lock(info, mtgtdir,
2832                                                     mdt_object_fid(mnew),
2833                                                     &lh_newp->mlh_rreg_lh,
2834                                                     lh_newp->mlh_rreg_mode,
2835                                                     MDS_INODELOCK_LOOKUP,
2836                                                     false);
2837                         if (rc != ELDLM_OK)
2838                                 GOTO(out_unlock_old, rc);
2839
2840                         lock_ibits &= ~MDS_INODELOCK_LOOKUP;
2841                 }
2842                 rc = mdt_reint_object_lock(info, mnew, lh_newp, lock_ibits,
2843                                            cos_incompat);
2844                 if (rc != 0)
2845                         GOTO(out_unlock_new, rc);
2846
2847                 /* get and save version after locking */
2848                 mdt_version_get_save(info, mnew, 3);
2849         } else if (rc != -ENOENT) {
2850                 GOTO(out_put_old, rc);
2851         } else {
2852                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2853                 lh_rmt = &info->mti_lh[MDT_LH_RMT];
2854                 mdt_lock_reg_init(lh_oldp, LCK_EX);
2855                 mdt_lock_reg_init(lh_rmt, LCK_EX);
2856                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2857                 rc = mdt_rename_source_lock(info, msrcdir, mold, lh_oldp,
2858                                             lh_rmt, lock_ibits, cos_incompat);
2859                 if (rc != 0)
2860                         GOTO(out_put_old, rc);
2861
2862                 mdt_enoent_version_save(info, 3);
2863         }
2864
2865         /* step 5: rename it */
2866         mdt_reint_init_ma(info, ma);
2867
2868         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
2869                        OBD_FAIL_MDS_REINT_RENAME_WRITE);
2870
2871         if (mnew != NULL)
2872                 mutex_lock(&mnew->mot_lov_mutex);
2873
2874         rc = mdo_rename(info->mti_env, mdt_object_child(msrcdir),
2875                         mdt_object_child(mtgtdir), old_fid, &rr->rr_name,
2876                         mnew != NULL ? mdt_object_child(mnew) : NULL,
2877                         &rr->rr_tgt_name, ma);
2878
2879         if (mnew != NULL)
2880                 mutex_unlock(&mnew->mot_lov_mutex);
2881
2882         /* handle last link of tgt object */
2883         if (rc == 0) {
2884                 mdt_counter_incr(req, LPROC_MDT_RENAME,
2885                                  ktime_us_delta(ktime_get(), kstart));
2886                 if (mnew) {
2887                         mdt_handle_last_unlink(info, mnew, ma);
2888                         discard = mdt_dom_check_for_discard(info, mnew);
2889                 }
2890                 mdt_rename_counter_tally(info, info->mti_mdt, req,
2891                                          msrcdir, mtgtdir,
2892                                          ktime_us_delta(ktime_get(), kstart));
2893         }
2894
2895         EXIT;
2896 out_unlock_new:
2897         if (mnew != NULL)
2898                 mdt_object_unlock(info, mnew, lh_newp, rc);
2899 out_unlock_old:
2900         mdt_object_unlock(info, NULL, lh_rmt, rc);
2901         mdt_object_unlock(info, mold, lh_oldp, rc);
2902 out_put_new:
2903         if (mnew && !discard)
2904                 mdt_object_put(info->mti_env, mnew);
2905 out_put_old:
2906         mdt_object_put(info->mti_env, mold);
2907 out_unlock_parents:
2908         mdt_object_unlock(info, mtgtdir, lh_tgtdirp, rc);
2909         mdt_object_unlock(info, msrcdir, lh_srcdirp, rc);
2910 out_unlock_rename:
2911         if (lustre_handle_is_used(&rename_lh))
2912                 mdt_rename_unlock(&rename_lh);
2913 out_put_tgtdir:
2914         mdt_object_put(info->mti_env, mtgtdir);
2915 out_put_srcdir:
2916         mdt_object_put(info->mti_env, msrcdir);
2917
2918         /* The DoM discard can be done right in the place above where it is
2919          * assigned, meanwhile it is done here after rename unlock due to
2920          * compatibility with old clients, for them the discard blocks
2921          * the main thread until completion. Check LU-11359 for details.
2922          */
2923         if (discard) {
2924                 mdt_dom_discard_data(info, mnew);
2925                 mdt_object_put(info->mti_env, mnew);
2926         }
2927         return rc;
2928 }
2929
2930 static int mdt_reint_resync(struct mdt_thread_info *info,
2931                             struct mdt_lock_handle *lhc)
2932 {
2933         struct mdt_reint_record *rr = &info->mti_rr;
2934         struct ptlrpc_request *req = mdt_info_req(info);
2935         struct md_attr *ma = &info->mti_attr;
2936         struct mdt_object *mo;
2937         struct ldlm_lock *lease;
2938         struct mdt_body *repbody;
2939         struct md_layout_change layout = { .mlc_mirror_id = rr->rr_mirror_id };
2940         bool lease_broken;
2941         int rc, rc2;
2942
2943         ENTRY;
2944         DEBUG_REQ(D_INODE, req, DFID", FLR file resync", PFID(rr->rr_fid1));
2945
2946         if (info->mti_dlm_req)
2947                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2948
2949         mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
2950         if (IS_ERR(mo))
2951                 GOTO(out, rc = PTR_ERR(mo));
2952
2953         if (!mdt_object_exists(mo))
2954                 GOTO(out_obj, rc = -ENOENT);
2955
2956         if (!S_ISREG(lu_object_attr(&mo->mot_obj)))
2957                 GOTO(out_obj, rc = -EINVAL);
2958
2959         if (mdt_object_remote(mo))
2960                 GOTO(out_obj, rc = -EREMOTE);
2961
2962         lease = ldlm_handle2lock(rr->rr_lease_handle);
2963         if (lease == NULL)
2964                 GOTO(out_obj, rc = -ESTALE);
2965
2966         /* It's really necessary to grab open_sem and check if the lease lock
2967          * has been lost. There would exist a concurrent writer coming in and
2968          * generating some dirty data in memory cache, the writeback would fail
2969          * after the layout version is increased by MDS_REINT_RESYNC RPC.
2970          */
2971         if (!down_write_trylock(&mo->mot_open_sem))
2972                 GOTO(out_put_lease, rc = -EBUSY);
2973
2974         lock_res_and_lock(lease);
2975         lease_broken = ldlm_is_cancel(lease);
2976         unlock_res_and_lock(lease);
2977         if (lease_broken)
2978                 GOTO(out_unlock, rc = -EBUSY);
2979
2980         /* the file has yet opened by anyone else after we took the lease. */
2981         layout.mlc_opc = MD_LAYOUT_RESYNC;
2982         lhc = &info->mti_lh[MDT_LH_LOCAL];
2983         rc = mdt_layout_change(info, mo, lhc, &layout);
2984         if (rc)
2985                 GOTO(out_unlock, rc);
2986
2987         mdt_object_unlock(info, mo, lhc, 0);
2988
2989         ma->ma_need = MA_INODE;
2990         ma->ma_valid = 0;
2991         rc = mdt_attr_get_complex(info, mo, ma);
2992         if (rc != 0)
2993                 GOTO(out_unlock, rc);
2994
2995         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
2996         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
2997
2998         EXIT;
2999 out_unlock:
3000         up_write(&mo->mot_open_sem);
3001 out_put_lease:
3002         LDLM_LOCK_PUT(lease);
3003 out_obj:
3004         mdt_object_put(info->mti_env, mo);
3005 out:
3006         mdt_client_compatibility(info);
3007         rc2 = mdt_fix_reply(info);
3008         if (rc == 0)
3009                 rc = rc2;
3010         return rc;
3011 }
3012
3013 struct mdt_reinter {
3014         int (*mr_handler)(struct mdt_thread_info *, struct mdt_lock_handle *);
3015         enum lprocfs_extra_opc mr_extra_opc;
3016 };
3017
3018 static const struct mdt_reinter mdt_reinters[] = {
3019         [REINT_SETATTR] = {
3020                 .mr_handler = &mdt_reint_setattr,
3021                 .mr_extra_opc = MDS_REINT_SETATTR,
3022         },
3023         [REINT_CREATE] = {
3024                 .mr_handler = &mdt_reint_create,
3025                 .mr_extra_opc = MDS_REINT_CREATE,
3026         },
3027         [REINT_LINK] = {
3028                 .mr_handler = &mdt_reint_link,
3029                 .mr_extra_opc = MDS_REINT_LINK,
3030         },
3031         [REINT_UNLINK] = {
3032                 .mr_handler = &mdt_reint_unlink,
3033                 .mr_extra_opc = MDS_REINT_UNLINK,
3034         },
3035         [REINT_RENAME] = {
3036                 .mr_handler = &mdt_reint_rename,
3037                 .mr_extra_opc = MDS_REINT_RENAME,
3038         },
3039         [REINT_OPEN] = {
3040                 .mr_handler = &mdt_reint_open,
3041                 .mr_extra_opc = MDS_REINT_OPEN,
3042         },
3043         [REINT_SETXATTR] = {
3044                 .mr_handler = &mdt_reint_setxattr,
3045                 .mr_extra_opc = MDS_REINT_SETXATTR,
3046         },
3047         [REINT_RMENTRY] = {
3048                 .mr_handler = &mdt_reint_unlink,
3049                 .mr_extra_opc = MDS_REINT_UNLINK,
3050         },
3051         [REINT_MIGRATE] = {
3052                 .mr_handler = &mdt_reint_migrate,
3053                 .mr_extra_opc = MDS_REINT_RENAME,
3054         },
3055         [REINT_RESYNC] = {
3056                 .mr_handler = &mdt_reint_resync,
3057                 .mr_extra_opc = MDS_REINT_RESYNC,
3058         },
3059 };
3060
3061 int mdt_reint_rec(struct mdt_thread_info *info,
3062                   struct mdt_lock_handle *lhc)
3063 {
3064         const struct mdt_reinter *mr;
3065         int rc;
3066
3067         ENTRY;
3068         if (!(info->mti_rr.rr_opcode < ARRAY_SIZE(mdt_reinters)))
3069                 RETURN(-EPROTO);
3070
3071         mr = &mdt_reinters[info->mti_rr.rr_opcode];
3072         if (mr->mr_handler == NULL)
3073                 RETURN(-EPROTO);
3074
3075         rc = (*mr->mr_handler)(info, lhc);
3076
3077         lprocfs_counter_incr(ptlrpc_req2svc(mdt_info_req(info))->srv_stats,
3078                              PTLRPC_LAST_CNTR + mr->mr_extra_opc);
3079
3080         RETURN(rc);
3081 }