Whamcloud - gitweb
LU-10286 mdt: deny 2.10 clients to open mirrored files
[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  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdt/mdt_reint.c
33  *
34  * Lustre Metadata Target (mdt) reintegration routines
35  *
36  * Author: Peter Braam <braam@clusterfs.com>
37  * Author: Andreas Dilger <adilger@clusterfs.com>
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Huang Hua <huanghua@clusterfs.com>
40  * Author: Yury Umanets <umka@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <lprocfs_status.h>
46 #include "mdt_internal.h"
47 #include <lustre_lmv.h>
48
49 static inline void mdt_reint_init_ma(struct mdt_thread_info *info,
50                                      struct md_attr *ma)
51 {
52         ma->ma_need = MA_INODE;
53         ma->ma_valid = 0;
54 }
55
56 /**
57  * Get version of object by fid.
58  *
59  * Return real version or ENOENT_VERSION if object doesn't exist
60  */
61 static void mdt_obj_version_get(struct mdt_thread_info *info,
62                                 struct mdt_object *o, __u64 *version)
63 {
64         LASSERT(o);
65
66         if (mdt_object_exists(o) && !mdt_object_remote(o) &&
67             !fid_is_obf(mdt_object_fid(o)))
68                 *version = dt_version_get(info->mti_env, mdt_obj2dt(o));
69         else
70                 *version = ENOENT_VERSION;
71         CDEBUG(D_INODE, "FID "DFID" version is %#llx\n",
72                PFID(mdt_object_fid(o)), *version);
73 }
74
75 /**
76  * Check version is correct.
77  *
78  * Should be called only during replay.
79  */
80 static int mdt_version_check(struct ptlrpc_request *req,
81                              __u64 version, int idx)
82 {
83         __u64 *pre_ver = lustre_msg_get_versions(req->rq_reqmsg);
84         ENTRY;
85
86         if (!exp_connect_vbr(req->rq_export))
87                 RETURN(0);
88
89         LASSERT(req_is_replay(req));
90         /** VBR: version is checked always because costs nothing */
91         LASSERT(idx < PTLRPC_NUM_VERSIONS);
92         /** Sanity check for malformed buffers */
93         if (pre_ver == NULL) {
94                 CERROR("No versions in request buffer\n");
95                 spin_lock(&req->rq_export->exp_lock);
96                 req->rq_export->exp_vbr_failed = 1;
97                 spin_unlock(&req->rq_export->exp_lock);
98                 RETURN(-EOVERFLOW);
99         } else if (pre_ver[idx] != version) {
100                 CDEBUG(D_INODE, "Version mismatch %#llx != %#llx\n",
101                        pre_ver[idx], version);
102                 spin_lock(&req->rq_export->exp_lock);
103                 req->rq_export->exp_vbr_failed = 1;
104                 spin_unlock(&req->rq_export->exp_lock);
105                 RETURN(-EOVERFLOW);
106         }
107         RETURN(0);
108 }
109
110 /**
111  * Save pre-versions in reply.
112  */
113 static void mdt_version_save(struct ptlrpc_request *req, __u64 version,
114                              int idx)
115 {
116         __u64 *reply_ver;
117
118         if (!exp_connect_vbr(req->rq_export))
119                 return;
120
121         LASSERT(!req_is_replay(req));
122         LASSERT(req->rq_repmsg != NULL);
123         reply_ver = lustre_msg_get_versions(req->rq_repmsg);
124         if (reply_ver)
125                 reply_ver[idx] = version;
126 }
127
128 /**
129  * Save enoent version, it is needed when it is obvious that object doesn't
130  * exist, e.g. child during create.
131  */
132 static void mdt_enoent_version_save(struct mdt_thread_info *info, int idx)
133 {
134         /* save version of file name for replay, it must be ENOENT here */
135         if (!req_is_replay(mdt_info_req(info))) {
136                 info->mti_ver[idx] = ENOENT_VERSION;
137                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
138         }
139 }
140
141 /**
142  * Get version from disk and save in reply buffer.
143  *
144  * Versions are saved in reply only during normal operations not replays.
145  */
146 void mdt_version_get_save(struct mdt_thread_info *info,
147                           struct mdt_object *mto, int idx)
148 {
149         /* don't save versions during replay */
150         if (!req_is_replay(mdt_info_req(info))) {
151                 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
152                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
153         }
154 }
155
156 /**
157  * Get version from disk and check it, no save in reply.
158  */
159 int mdt_version_get_check(struct mdt_thread_info *info,
160                           struct mdt_object *mto, int idx)
161 {
162         /* only check versions during replay */
163         if (!req_is_replay(mdt_info_req(info)))
164                 return 0;
165
166         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
167         return mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
168 }
169
170 /**
171  * Get version from disk and check if recovery or just save.
172  */
173 int mdt_version_get_check_save(struct mdt_thread_info *info,
174                                struct mdt_object *mto, int idx)
175 {
176         int rc = 0;
177
178         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
179         if (req_is_replay(mdt_info_req(info)))
180                 rc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx],
181                                        idx);
182         else
183                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
184         return rc;
185 }
186
187 /**
188  * Lookup with version checking.
189  *
190  * This checks version of 'name'. Many reint functions uses 'name' for child not
191  * FID, therefore we need to get object by name and check its version.
192  */
193 static int mdt_lookup_version_check(struct mdt_thread_info *info,
194                                     struct mdt_object *p,
195                                     const struct lu_name *lname,
196                                     struct lu_fid *fid, int idx)
197 {
198         int rc, vbrc;
199
200         rc = mdo_lookup(info->mti_env, mdt_object_child(p), lname, fid,
201                         &info->mti_spec);
202         /* Check version only during replay */
203         if (!req_is_replay(mdt_info_req(info)))
204                 return rc;
205
206         info->mti_ver[idx] = ENOENT_VERSION;
207         if (rc == 0) {
208                 struct mdt_object *child;
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 inline int mdt_remote_permission_check(struct mdt_thread_info *info)
221 {
222         struct lu_ucred *uc  = mdt_ucred(info);
223         struct mdt_device *mdt = info->mti_mdt;
224
225         if (!md_capable(uc, CFS_CAP_SYS_ADMIN)) {
226                 if (uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
227                     mdt->mdt_enable_remote_dir_gid != -1)
228                         return -EPERM;
229         }
230
231         return 0;
232 }
233
234 /**
235  * mdt_remote_permission: Check whether the remote operation is permitted,
236  *
237  * Only sysadmin can create remote directory / striped directory,
238  * migrate directory and set default stripedEA on directory, unless
239  *
240  * lctl set_param mdt.*.enable_remote_dir_gid=allow_gid.
241  *
242  * param[in] info: mdt_thread_info.
243  *
244  * retval       = 0 remote operation is allowed.
245  *              < 0 remote operation is denied.
246  */
247 static int mdt_remote_permission(struct mdt_thread_info *info)
248 {
249         struct md_op_spec *spec = &info->mti_spec;
250         struct lu_attr *attr = &info->mti_attr.ma_attr;
251         struct obd_export *exp = mdt_info_req(info)->rq_export;
252         int rc;
253
254         if (info->mti_rr.rr_opcode == REINT_MIGRATE) {
255                 rc = mdt_remote_permission_check(info);
256                 if (rc != 0)
257                         return rc;
258         }
259
260         if (info->mti_rr.rr_opcode == REINT_CREATE &&
261             (S_ISDIR(attr->la_mode) && spec->u.sp_ea.eadata != NULL &&
262              spec->u.sp_ea.eadatalen != 0)) {
263                 const struct lmv_user_md *lum = spec->u.sp_ea.eadata;
264
265                 /* Only new clients can create remote dir( >= 2.4) and
266                  * striped dir(>= 2.6), old client will return -ENOTSUPP */
267                 if (!mdt_is_dne_client(exp))
268                         return -ENOTSUPP;
269
270                 if (le32_to_cpu(lum->lum_stripe_count) > 1 &&
271                     !mdt_is_striped_client(exp))
272                         return -ENOTSUPP;
273
274                 rc = mdt_remote_permission_check(info);
275                 if (rc != 0)
276                         return rc;
277         }
278
279         if (info->mti_rr.rr_opcode == REINT_SETATTR) {
280                 struct md_attr *ma = &info->mti_attr;
281
282                 if ((ma->ma_valid & MA_LMV)) {
283                         rc = mdt_remote_permission_check(info);
284                         if (rc != 0)
285                                 return rc;
286                 }
287         }
288
289         return 0;
290 }
291
292 static int mdt_unlock_slaves(struct mdt_thread_info *mti,
293                              struct mdt_object *obj, __u64 ibits,
294                              struct mdt_lock_handle *s0_lh,
295                              struct mdt_object *s0_obj,
296                              struct ldlm_enqueue_info *einfo,
297                              int decref)
298 {
299         union ldlm_policy_data *policy = &mti->mti_policy;
300         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
301         int i;
302         int rc;
303         ENTRY;
304
305         if (!S_ISDIR(obj->mot_header.loh_attr))
306                 RETURN(0);
307
308         /* Unlock stripe 0 */
309         if (s0_lh != NULL && lustre_handle_is_used(&s0_lh->mlh_reg_lh)) {
310                 LASSERT(s0_obj != NULL);
311                 mdt_object_unlock_put(mti, s0_obj, s0_lh, decref);
312         }
313
314         memset(policy, 0, sizeof(*policy));
315         policy->l_inodebits.bits = ibits;
316
317         if (slave_locks != NULL) {
318                 LASSERT(s0_lh != NULL);
319                 for (i = 1; i < slave_locks->count; i++) {
320                         /* borrow s0_lh temporarily to do mdt unlock */
321                         mdt_lock_reg_init(s0_lh, einfo->ei_mode);
322                         s0_lh->mlh_rreg_lh = slave_locks->handles[i];
323                         mdt_object_unlock(mti, NULL, s0_lh, decref);
324                         slave_locks->handles[i].cookie = 0ull;
325                 }
326         }
327
328         rc = mo_object_unlock(mti->mti_env, mdt_object_child(obj), einfo,
329                               policy);
330         RETURN(rc);
331 }
332
333 static int mdt_init_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
334                            struct lu_fid *fid)
335 {
336         struct lu_buf *buf = &mti->mti_buf;
337         struct lmv_mds_md_v1 *lmv;
338         int rc;
339         ENTRY;
340
341         if (!S_ISDIR(obj->mot_header.loh_attr))
342                 RETURN(0);
343
344         buf->lb_buf = mti->mti_xattr_buf;
345         buf->lb_len = sizeof(mti->mti_xattr_buf);
346         rc = mo_xattr_get(mti->mti_env, mdt_object_child(obj), buf,
347                           XATTR_NAME_LMV);
348         if (rc == -ERANGE) {
349                 rc = mdt_big_xattr_get(mti, obj, XATTR_NAME_LMV);
350                 if (rc > 0) {
351                         buf->lb_buf = mti->mti_big_lmm;
352                         buf->lb_len = mti->mti_big_lmmsize;
353                 }
354         }
355
356         if (rc == -ENODATA || rc == -ENOENT)
357                 RETURN(0);
358
359         if (rc <= 0)
360                 RETURN(rc);
361
362         lmv = buf->lb_buf;
363         if (le32_to_cpu(lmv->lmv_magic) != LMV_MAGIC_V1)
364                 RETURN(-EINVAL);
365
366         fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[0]);
367
368         RETURN(rc);
369 }
370
371 /**
372  * Lock slave stripes if necessary, the lock handles of slave stripes
373  * will be stored in einfo->ei_cbdata.
374  **/
375 static int mdt_lock_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
376                            enum ldlm_mode mode, __u64 ibits,
377                            struct lu_fid *s0_fid,
378                            struct mdt_lock_handle *s0_lh,
379                            struct mdt_object **s0_objp,
380                            struct ldlm_enqueue_info *einfo)
381 {
382         union ldlm_policy_data *policy = &mti->mti_policy;
383         int rc;
384         ENTRY;
385
386         memset(einfo, 0, sizeof(*einfo));
387
388         rc = mdt_init_slaves(mti, obj, s0_fid);
389         if (rc <= 0)
390                 RETURN(rc);
391
392         LASSERT(S_ISDIR(obj->mot_header.loh_attr));
393
394         if (!lu_fid_eq(s0_fid, mdt_object_fid(obj))) {
395                 /* Except migrating object, whose 0_stripe and master
396                  * object are the same object, 0_stripe and master
397                  * object are different, though they are in the same
398                  * MDT, to avoid adding osd_object_lock here, so we
399                  * will enqueue the stripe0 lock in MDT0 for now */
400                 *s0_objp = mdt_object_find(mti->mti_env, mti->mti_mdt, s0_fid);
401                 if (IS_ERR(*s0_objp))
402                         RETURN(PTR_ERR(*s0_objp));
403
404                 rc = mdt_reint_object_lock(mti, *s0_objp, s0_lh, ibits, true);
405                 if (rc < 0) {
406                         mdt_object_put(mti->mti_env, *s0_objp);
407                         RETURN(rc);
408                 }
409         }
410
411         einfo->ei_type = LDLM_IBITS;
412         einfo->ei_mode = mode;
413         einfo->ei_cb_bl = mdt_remote_blocking_ast;
414         einfo->ei_cb_local_bl = mdt_blocking_ast;
415         einfo->ei_cb_cp = ldlm_completion_ast;
416         einfo->ei_enq_slave = 1;
417         einfo->ei_namespace = mti->mti_mdt->mdt_namespace;
418         memset(policy, 0, sizeof(*policy));
419         policy->l_inodebits.bits = ibits;
420
421         rc = mo_object_lock(mti->mti_env, mdt_object_child(obj), NULL, einfo,
422                             policy);
423         RETURN(rc);
424 }
425
426 /*
427  * VBR: we save three versions in reply:
428  * 0 - parent. Check that parent version is the same during replay.
429  * 1 - name. Version of 'name' if file exists with the same name or
430  * ENOENT_VERSION, it is needed because file may appear due to missed replays.
431  * 2 - child. Version of child by FID. Must be ENOENT. It is mostly sanity
432  * check.
433  */
434 static int mdt_create(struct mdt_thread_info *info)
435 {
436         struct mdt_device       *mdt = info->mti_mdt;
437         struct mdt_object       *parent;
438         struct mdt_object       *child;
439         struct mdt_lock_handle  *lh;
440         struct mdt_body         *repbody;
441         struct md_attr          *ma = &info->mti_attr;
442         struct mdt_reint_record *rr = &info->mti_rr;
443         int rc;
444         ENTRY;
445
446         DEBUG_REQ(D_INODE, mdt_info_req(info), "Create  ("DNAME"->"DFID") "
447                   "in "DFID,
448                   PNAME(&rr->rr_name), PFID(rr->rr_fid2), PFID(rr->rr_fid1));
449
450         if (!fid_is_md_operative(rr->rr_fid1))
451                 RETURN(-EPERM);
452
453         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
454
455         parent = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
456         if (IS_ERR(parent))
457                 RETURN(PTR_ERR(parent));
458
459         if (!mdt_object_exists(parent))
460                 GOTO(put_parent, rc = -ENOENT);
461
462         lh = &info->mti_lh[MDT_LH_PARENT];
463         mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
464         rc = mdt_object_lock(info, parent, lh, MDS_INODELOCK_UPDATE);
465         if (rc)
466                 GOTO(put_parent, rc);
467
468         if (!mdt_object_remote(parent)) {
469                 rc = mdt_version_get_check_save(info, parent, 0);
470                 if (rc)
471                         GOTO(unlock_parent, rc);
472         }
473
474         /*
475          * Check child name version during replay.
476          * During create replay a file may exist with same name.
477          */
478         rc = mdt_lookup_version_check(info, parent, &rr->rr_name,
479                                       &info->mti_tmp_fid1, 1);
480         if (rc == 0)
481                 GOTO(unlock_parent, rc = -EEXIST);
482
483         /* -ENOENT is expected here */
484         if (rc != -ENOENT)
485                 GOTO(unlock_parent, rc);
486
487         /* save version of file name for replay, it must be ENOENT here */
488         mdt_enoent_version_save(info, 1);
489
490         child = mdt_object_new(info->mti_env, mdt, rr->rr_fid2);
491         if (unlikely(IS_ERR(child)))
492                 GOTO(unlock_parent, rc = PTR_ERR(child));
493
494         rc = mdt_remote_permission(info);
495         if (rc != 0)
496                 GOTO(put_child, rc);
497
498         ma->ma_need = MA_INODE;
499         ma->ma_valid = 0;
500
501         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
502                         OBD_FAIL_MDS_REINT_CREATE_WRITE);
503
504         /* Version of child will be updated on disk. */
505         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
506         rc = mdt_version_get_check_save(info, child, 2);
507         if (rc)
508                 GOTO(put_child, rc);
509
510         /* Let lower layer know current lock mode. */
511         info->mti_spec.sp_cr_mode = mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
512
513         /*
514          * Do not perform lookup sanity check. We know that name does
515          * not exist.
516          */
517         info->mti_spec.sp_cr_lookup = 0;
518         info->mti_spec.sp_feat = &dt_directory_features;
519
520         rc = mdo_create(info->mti_env, mdt_object_child(parent), &rr->rr_name,
521                         mdt_object_child(child), &info->mti_spec, ma);
522         if (rc == 0)
523                 rc = mdt_attr_get_complex(info, child, ma);
524
525         if (rc < 0)
526                 GOTO(put_child, rc);
527
528         /*
529          * On DNE, we need to eliminate dependey between 'mkdir a' and
530          * 'mkdir a/b' if b is a striped directory, to achieve this, two
531          * things are done below:
532          * 1. save child and slaves lock.
533          * 2. if the child is a striped directory, relock parent so to
534          *    compare against with COS locks to ensure parent was
535          *    committed to disk.
536          */
537         if (mdt_slc_is_enabled(mdt) && S_ISDIR(ma->ma_attr.la_mode)) {
538                 struct mdt_lock_handle *lhc;
539                 struct mdt_lock_handle *s0_lh;
540                 struct mdt_object *s0_obj = NULL;
541                 struct ldlm_enqueue_info *einfo;
542                 struct lu_fid *s0_fid = &info->mti_tmp_fid1;
543                 bool cos_incompat = false;
544
545                 rc = mdt_init_slaves(info, child, s0_fid);
546                 if (rc > 0) {
547                         cos_incompat = true;
548                         if (!mdt_object_remote(parent)) {
549                                 mdt_object_unlock(info, parent, lh, 1);
550                                 mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
551                                 rc = mdt_reint_object_lock(info, parent, lh,
552                                                            MDS_INODELOCK_UPDATE,
553                                                            true);
554                                 if (rc)
555                                         GOTO(put_child, rc);
556                         }
557                 }
558
559                 einfo = &info->mti_einfo;
560                 lhc = &info->mti_lh[MDT_LH_CHILD];
561                 mdt_lock_handle_init(lhc);
562                 mdt_lock_reg_init(lhc, LCK_PW);
563                 rc = mdt_reint_object_lock(info, child, lhc,
564                                            MDS_INODELOCK_UPDATE,
565                                            cos_incompat);
566                 if (rc)
567                         GOTO(put_child, rc);
568                 mdt_object_unlock(info, child, lhc, rc);
569
570                 s0_lh = &info->mti_lh[MDT_LH_LOCAL];
571                 mdt_lock_handle_init(s0_lh);
572                 mdt_lock_reg_init(s0_lh, LCK_PW);
573                 rc = mdt_lock_slaves(info, child, LCK_PW, MDS_INODELOCK_UPDATE,
574                                      s0_fid, s0_lh, &s0_obj, einfo);
575                 mdt_unlock_slaves(info, child, MDS_INODELOCK_UPDATE, s0_lh,
576                                   s0_obj, einfo, rc);
577                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) && rc == -EIO)
578                         rc = 0;
579         }
580
581         /* Return fid & attr to client. */
582         if (ma->ma_valid & MA_INODE)
583                 mdt_pack_attr2body(info, repbody, &ma->ma_attr,
584                                    mdt_object_fid(child));
585 put_child:
586         mdt_object_put(info->mti_env, child);
587 unlock_parent:
588         mdt_object_unlock(info, parent, lh, rc);
589 put_parent:
590         mdt_object_put(info->mti_env, parent);
591         RETURN(rc);
592 }
593
594 static int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
595                         struct md_attr *ma)
596 {
597         struct mdt_lock_handle  *lh;
598         int do_vbr = ma->ma_attr.la_valid &
599                         (LA_MODE | LA_UID | LA_GID | LA_PROJID | LA_FLAGS);
600         __u64 lockpart = MDS_INODELOCK_UPDATE;
601         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
602         struct lu_fid *s0_fid = &info->mti_tmp_fid1;
603         struct mdt_lock_handle *s0_lh = NULL;
604         struct mdt_object *s0_obj = NULL;
605         bool cos_incompat = false;
606         int rc;
607         ENTRY;
608
609         rc = mdt_init_slaves(info, mo, s0_fid);
610         if (rc > 0)
611                 cos_incompat = true;
612
613         lh = &info->mti_lh[MDT_LH_PARENT];
614         mdt_lock_reg_init(lh, LCK_PW);
615
616         /* Even though the new MDT will grant PERM lock to the old
617          * client, but the old client will almost ignore that during
618          * So it needs to revoke both LOOKUP and PERM lock here, so
619          * both new and old client can cancel the dcache */
620         if (ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID))
621                 lockpart |= MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
622
623         rc = mdt_reint_object_lock(info, mo, lh, lockpart, cos_incompat);
624         if (rc != 0)
625                 RETURN(rc);
626
627         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
628         mdt_lock_reg_init(s0_lh, LCK_PW);
629         rc = mdt_lock_slaves(info, mo, LCK_PW, lockpart, s0_fid, s0_lh, &s0_obj,
630                              einfo);
631         if (rc != 0)
632                 GOTO(out_unlock, rc);
633
634         /* all attrs are packed into mti_attr in unpack_setattr */
635         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
636                        OBD_FAIL_MDS_REINT_SETATTR_WRITE);
637
638         /* This is only for set ctime when rename's source is on remote MDS. */
639         if (unlikely(ma->ma_attr.la_valid == LA_CTIME))
640                 ma->ma_attr_flags |= MDS_VTX_BYPASS;
641
642         /* VBR: update version if attr changed are important for recovery */
643         if (do_vbr) {
644                 /* update on-disk version of changed object */
645                 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mo));
646                 rc = mdt_version_get_check_save(info, mo, 0);
647                 if (rc)
648                         GOTO(out_unlock, rc);
649         }
650
651         /* Ensure constant striping during chown(). See LU-2789. */
652         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
653                 mutex_lock(&mo->mot_lov_mutex);
654
655         /* all attrs are packed into mti_attr in unpack_setattr */
656         rc = mo_attr_set(info->mti_env, mdt_object_child(mo), ma);
657
658         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
659                 mutex_unlock(&mo->mot_lov_mutex);
660
661         if (rc != 0)
662                 GOTO(out_unlock, rc);
663         mdt_dom_obj_lvb_update(info->mti_env, mo, false);
664         EXIT;
665 out_unlock:
666         mdt_unlock_slaves(info, mo, lockpart, s0_lh, s0_obj, einfo, rc);
667         mdt_object_unlock(info, mo, lh, rc);
668         return rc;
669 }
670
671 /**
672  * Check HSM flags and add HS_DIRTY flag if relevant.
673  *
674  * A file could be set dirty only if it has a copy in the backend (HS_EXISTS)
675  * and is not RELEASED.
676  */
677 int mdt_add_dirty_flag(struct mdt_thread_info *info, struct mdt_object *mo,
678                         struct md_attr *ma)
679 {
680         int rc;
681         ENTRY;
682
683         /* If the file was modified, add the dirty flag */
684         ma->ma_need = MA_HSM;
685         rc = mdt_attr_get_complex(info, mo, ma);
686         if (rc) {
687                 CERROR("file attribute read error for "DFID": %d.\n",
688                         PFID(mdt_object_fid(mo)), rc);
689                 RETURN(rc);
690         }
691
692         /* If an up2date copy exists in the backend, add dirty flag */
693         if ((ma->ma_valid & MA_HSM) && (ma->ma_hsm.mh_flags & HS_EXISTS)
694             && !(ma->ma_hsm.mh_flags & (HS_DIRTY|HS_RELEASED))) {
695                 ma->ma_hsm.mh_flags |= HS_DIRTY;
696
697                 rc = mdt_hsm_attr_set(info, mo, &ma->ma_hsm);
698                 if (rc)
699                         CERROR("file attribute change error for "DFID": %d\n",
700                                 PFID(mdt_object_fid(mo)), rc);
701         }
702
703         RETURN(rc);
704 }
705
706 static int mdt_reint_setattr(struct mdt_thread_info *info,
707                              struct mdt_lock_handle *lhc)
708 {
709         struct md_attr          *ma = &info->mti_attr;
710         struct mdt_reint_record *rr = &info->mti_rr;
711         struct ptlrpc_request   *req = mdt_info_req(info);
712         struct mdt_object       *mo;
713         struct mdt_body         *repbody;
714         int                      rc, rc2;
715         ENTRY;
716
717         DEBUG_REQ(D_INODE, req, "setattr "DFID" %x", PFID(rr->rr_fid1),
718                   (unsigned int)ma->ma_attr.la_valid);
719
720         if (info->mti_dlm_req)
721                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
722
723         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
724         mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
725         if (IS_ERR(mo))
726                 GOTO(out, rc = PTR_ERR(mo));
727
728         if (!mdt_object_exists(mo))
729                 GOTO(out_put, rc = -ENOENT);
730
731         if (mdt_object_remote(mo))
732                 GOTO(out_put, rc = -EREMOTE);
733
734         if (ma->ma_attr.la_valid & LA_SIZE || rr->rr_flags & MRF_OPEN_TRUNC) {
735                 /* Check write access for the O_TRUNC case */
736                 if (mdt_write_read(mo) < 0)
737                         GOTO(out_put, rc = -ETXTBSY);
738
739                 /* LU-10286: compatibility check for FLR.
740                  * Please check the comment in mdt_finish_open() for details */
741                 if (!exp_connect_flr(info->mti_exp)) {
742                         rc = mdt_big_xattr_get(info, mo, XATTR_NAME_LOV);
743                         if (rc < 0 && rc != -ENODATA)
744                                 GOTO(out_put, rc);
745
746                         if (rc > 0 && mdt_lmm_is_flr(info->mti_big_lmm))
747                                 GOTO(out_put, rc = -EOPNOTSUPP);
748                 }
749         }
750
751         if ((ma->ma_valid & MA_INODE) && ma->ma_attr.la_valid) {
752                 if (ma->ma_valid & MA_LOV)
753                         GOTO(out_put, rc = -EPROTO);
754
755                 rc = mdt_attr_set(info, mo, ma);
756                 if (rc)
757                         GOTO(out_put, rc);
758         } else if ((ma->ma_valid & (MA_LOV | MA_LMV)) &&
759                    (ma->ma_valid & MA_INODE)) {
760                 struct lu_buf *buf  = &info->mti_buf;
761                 struct mdt_lock_handle  *lh;
762
763                 rc = mdt_remote_permission(info);
764                 if (rc < 0)
765                         GOTO(out_put, rc);
766
767                 if (ma->ma_attr.la_valid != 0)
768                         GOTO(out_put, rc = -EPROTO);
769
770                 lh = &info->mti_lh[MDT_LH_PARENT];
771                 mdt_lock_reg_init(lh, LCK_PW);
772
773                 rc = mdt_object_lock(info, mo, lh, MDS_INODELOCK_XATTR);
774                 if (rc != 0)
775                         GOTO(out_put, rc);
776
777                 if (ma->ma_valid & MA_LOV) {
778                         buf->lb_buf = ma->ma_lmm;
779                         buf->lb_len = ma->ma_lmm_size;
780                 } else {
781                         buf->lb_buf = ma->ma_lmv;
782                         buf->lb_len = ma->ma_lmv_size;
783                 }
784                 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo), buf,
785                                   (ma->ma_valid & MA_LOV) ?
786                                         XATTR_NAME_LOV : XATTR_NAME_DEFAULT_LMV,
787                                   0);
788
789                 mdt_object_unlock(info, mo, lh, rc);
790                 if (rc)
791                         GOTO(out_put, rc);
792         } else {
793                 GOTO(out_put, rc = -EPROTO);
794         }
795
796         /* If file data is modified, add the dirty flag */
797         if (ma->ma_attr_flags & MDS_DATA_MODIFIED)
798                 rc = mdt_add_dirty_flag(info, mo, ma);
799
800         ma->ma_need = MA_INODE;
801         ma->ma_valid = 0;
802         rc = mdt_attr_get_complex(info, mo, ma);
803         if (rc != 0)
804                 GOTO(out_put, rc);
805
806         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
807
808         EXIT;
809 out_put:
810         mdt_object_put(info->mti_env, mo);
811 out:
812         if (rc == 0)
813                 mdt_counter_incr(req, LPROC_MDT_SETATTR);
814
815         mdt_client_compatibility(info);
816         rc2 = mdt_fix_reply(info);
817         if (rc == 0)
818                 rc = rc2;
819         return rc;
820 }
821
822 static int mdt_reint_create(struct mdt_thread_info *info,
823                             struct mdt_lock_handle *lhc)
824 {
825         struct ptlrpc_request   *req = mdt_info_req(info);
826         int                     rc;
827         ENTRY;
828
829         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_CREATE))
830                 RETURN(err_serious(-ESTALE));
831
832         if (info->mti_dlm_req)
833                 ldlm_request_cancel(mdt_info_req(info),
834                                     info->mti_dlm_req, 0, LATF_SKIP);
835
836         if (!lu_name_is_valid(&info->mti_rr.rr_name))
837                 RETURN(-EPROTO);
838
839         switch (info->mti_attr.ma_attr.la_mode & S_IFMT) {
840         case S_IFDIR:
841                 mdt_counter_incr(req, LPROC_MDT_MKDIR);
842                 break;
843         case S_IFREG:
844         case S_IFLNK:
845         case S_IFCHR:
846         case S_IFBLK:
847         case S_IFIFO:
848         case S_IFSOCK:
849                 /* Special file should stay on the same node as parent. */
850                 mdt_counter_incr(req, LPROC_MDT_MKNOD);
851                 break;
852         default:
853                 CERROR("%s: Unsupported mode %o\n",
854                        mdt_obd_name(info->mti_mdt),
855                        info->mti_attr.ma_attr.la_mode);
856                 RETURN(err_serious(-EOPNOTSUPP));
857         }
858
859         rc = mdt_create(info);
860         RETURN(rc);
861 }
862
863 /*
864  * VBR: save parent version in reply and child version getting by its name.
865  * Version of child is getting and checking during its lookup. If
866  */
867 static int mdt_reint_unlink(struct mdt_thread_info *info,
868                             struct mdt_lock_handle *lhc)
869 {
870         struct mdt_reint_record *rr = &info->mti_rr;
871         struct ptlrpc_request *req = mdt_info_req(info);
872         struct md_attr *ma = &info->mti_attr;
873         struct lu_fid *child_fid = &info->mti_tmp_fid1;
874         struct mdt_object *mp;
875         struct mdt_object *mc;
876         struct mdt_lock_handle *parent_lh;
877         struct mdt_lock_handle *child_lh;
878         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
879         struct lu_fid *s0_fid = &info->mti_tmp_fid2;
880         struct mdt_lock_handle *s0_lh = NULL;
881         struct mdt_object *s0_obj = NULL;
882         __u64 lock_ibits;
883         bool cos_incompat = false;
884         int no_name = 0;
885         int rc;
886
887         ENTRY;
888
889         DEBUG_REQ(D_INODE, req, "unlink "DFID"/"DNAME"", PFID(rr->rr_fid1),
890                   PNAME(&rr->rr_name));
891
892         if (info->mti_dlm_req)
893                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
894
895         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNLINK))
896                 RETURN(err_serious(-ENOENT));
897
898         if (!fid_is_md_operative(rr->rr_fid1))
899                 RETURN(-EPERM);
900
901         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
902         if (IS_ERR(mp))
903                 RETURN(PTR_ERR(mp));
904
905         if (mdt_object_remote(mp)) {
906                 cos_incompat = true;
907         } else {
908                 rc = mdt_version_get_check_save(info, mp, 0);
909                 if (rc)
910                         GOTO(put_parent, rc);
911         }
912
913 relock:
914         parent_lh = &info->mti_lh[MDT_LH_PARENT];
915         mdt_lock_pdo_init(parent_lh, LCK_PW, &rr->rr_name);
916         rc = mdt_reint_object_lock(info, mp, parent_lh, MDS_INODELOCK_UPDATE,
917                                    cos_incompat);
918         if (rc != 0)
919                 GOTO(put_parent, rc);
920
921         /* lookup child object along with version checking */
922         fid_zero(child_fid);
923         rc = mdt_lookup_version_check(info, mp, &rr->rr_name, child_fid, 1);
924         if (rc != 0) {
925                 /* Name might not be able to find during resend of
926                  * remote unlink, considering following case.
927                  * dir_A is a remote directory, the name entry of
928                  * dir_A is on MDT0, the directory is on MDT1,
929                  *
930                  * 1. client sends unlink req to MDT1.
931                  * 2. MDT1 sends name delete update to MDT0.
932                  * 3. name entry is being deleted in MDT0 synchronously.
933                  * 4. MDT1 is restarted.
934                  * 5. client resends unlink req to MDT1. So it can not
935                  *    find the name entry on MDT0 anymore.
936                  * In this case, MDT1 only needs to destory the local
937                  * directory.
938                  * */
939                 if (mdt_object_remote(mp) && rc == -ENOENT &&
940                     !fid_is_zero(rr->rr_fid2) &&
941                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
942                         no_name = 1;
943                         *child_fid = *rr->rr_fid2;
944                  } else {
945                         GOTO(unlock_parent, rc);
946                  }
947         }
948
949         if (!fid_is_md_operative(child_fid))
950                 GOTO(unlock_parent, rc = -EPERM);
951
952         /* We will lock the child regardless it is local or remote. No harm. */
953         mc = mdt_object_find(info->mti_env, info->mti_mdt, child_fid);
954         if (IS_ERR(mc))
955                 GOTO(unlock_parent, rc = PTR_ERR(mc));
956
957         if (!cos_incompat && mdt_init_slaves(info, mc, s0_fid) > 0) {
958                 cos_incompat = true;
959                 mdt_object_put(info->mti_env, mc);
960                 mdt_object_unlock(info, mp, parent_lh, -EAGAIN);
961                 goto relock;
962         }
963
964         child_lh = &info->mti_lh[MDT_LH_CHILD];
965         mdt_lock_reg_init(child_lh, LCK_EX);
966         if (info->mti_spec.sp_rm_entry) {
967                 struct lu_ucred *uc  = mdt_ucred(info);
968
969                 if (!mdt_is_dne_client(req->rq_export))
970                         /* Return -ENOTSUPP for old client */
971                         GOTO(put_child, rc = -ENOTSUPP);
972
973                 if (!md_capable(uc, CFS_CAP_SYS_ADMIN))
974                         GOTO(put_child, rc = -EPERM);
975
976                 ma->ma_need = MA_INODE;
977                 ma->ma_valid = 0;
978                 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
979                                 NULL, &rr->rr_name, ma, no_name);
980                 GOTO(put_child, rc);
981         }
982
983         if (mdt_object_remote(mc)) {
984                 struct mdt_body  *repbody;
985
986                 if (!fid_is_zero(rr->rr_fid2)) {
987                         CDEBUG(D_INFO, "%s: name "DNAME" cannot find "DFID"\n",
988                                mdt_obd_name(info->mti_mdt),
989                                PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
990                         GOTO(put_child, rc = -ENOENT);
991                 }
992                 CDEBUG(D_INFO, "%s: name "DNAME": "DFID" is on another MDT\n",
993                        mdt_obd_name(info->mti_mdt),
994                        PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
995
996                 if (!mdt_is_dne_client(req->rq_export))
997                         /* Return -ENOTSUPP for old client */
998                         GOTO(put_child, rc = -ENOTSUPP);
999
1000                 /* Revoke the LOOKUP lock of the remote object granted by
1001                  * this MDT. Since the unlink will happen on another MDT,
1002                  * it will release the LOOKUP lock right away. Then What
1003                  * would happen if another client try to grab the LOOKUP
1004                  * lock at the same time with unlink XXX */
1005                 mdt_object_lock(info, mc, child_lh, MDS_INODELOCK_LOOKUP);
1006                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1007                 LASSERT(repbody != NULL);
1008                 repbody->mbo_fid1 = *mdt_object_fid(mc);
1009                 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
1010                 GOTO(unlock_child, rc = -EREMOTE);
1011         }
1012         /* We used to acquire MDS_INODELOCK_FULL here but we can't do
1013          * this now because a running HSM restore on the child (unlink
1014          * victim) will hold the layout lock. See LU-4002. */
1015         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
1016         if (mdt_object_remote(mp)) {
1017                 /* Enqueue lookup lock from parent MDT */
1018                 rc = mdt_remote_object_lock(info, mp, mdt_object_fid(mc),
1019                                             &child_lh->mlh_rreg_lh,
1020                                             child_lh->mlh_rreg_mode,
1021                                             MDS_INODELOCK_LOOKUP, false);
1022                 if (rc != ELDLM_OK)
1023                         GOTO(put_child, rc);
1024
1025                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1026         }
1027
1028         rc = mdt_reint_object_lock(info, mc, child_lh, lock_ibits,
1029                                    cos_incompat);
1030         if (rc != 0)
1031                 GOTO(unlock_child, rc);
1032
1033         /*
1034          * Now we can only make sure we need MA_INODE, in mdd layer, will check
1035          * whether need MA_LOV and MA_COOKIE.
1036          */
1037         ma->ma_need = MA_INODE;
1038         ma->ma_valid = 0;
1039
1040         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
1041         mdt_lock_reg_init(s0_lh, LCK_EX);
1042         rc = mdt_lock_slaves(info, mc, LCK_EX, MDS_INODELOCK_UPDATE, s0_fid,
1043                              s0_lh, &s0_obj, einfo);
1044         if (rc != 0)
1045                 GOTO(unlock_child, rc);
1046
1047         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1048                        OBD_FAIL_MDS_REINT_UNLINK_WRITE);
1049         /* save version when object is locked */
1050         mdt_version_get_save(info, mc, 1);
1051
1052         mutex_lock(&mc->mot_lov_mutex);
1053
1054         rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1055                         mdt_object_child(mc), &rr->rr_name, ma, no_name);
1056
1057         mutex_unlock(&mc->mot_lov_mutex);
1058         if (rc != 0)
1059                 GOTO(unlock_child, rc);
1060
1061         if (!lu_object_is_dying(&mc->mot_header)) {
1062                 rc = mdt_attr_get_complex(info, mc, ma);
1063                 if (rc)
1064                         GOTO(out_stat, rc);
1065         } else {
1066                 mdt_dom_check_and_discard(info, mc);
1067         }
1068         mdt_handle_last_unlink(info, mc, ma);
1069
1070 out_stat:
1071         if (ma->ma_valid & MA_INODE) {
1072                 switch (ma->ma_attr.la_mode & S_IFMT) {
1073                 case S_IFDIR:
1074                         mdt_counter_incr(req, LPROC_MDT_RMDIR);
1075                         break;
1076                 case S_IFREG:
1077                 case S_IFLNK:
1078                 case S_IFCHR:
1079                 case S_IFBLK:
1080                 case S_IFIFO:
1081                 case S_IFSOCK:
1082                         mdt_counter_incr(req, LPROC_MDT_UNLINK);
1083                         break;
1084                 default:
1085                         LASSERTF(0, "bad file type %o unlinking\n",
1086                                 ma->ma_attr.la_mode);
1087                 }
1088         }
1089
1090         EXIT;
1091
1092 unlock_child:
1093         mdt_unlock_slaves(info, mc, MDS_INODELOCK_UPDATE, s0_lh, s0_obj, einfo,
1094                           rc);
1095         mdt_object_unlock(info, mc, child_lh, rc);
1096 put_child:
1097         mdt_object_put(info->mti_env, mc);
1098 unlock_parent:
1099         mdt_object_unlock(info, mp, parent_lh, rc);
1100 put_parent:
1101         mdt_object_put(info->mti_env, mp);
1102         return rc;
1103 }
1104
1105 /*
1106  * VBR: save versions in reply: 0 - parent; 1 - child by fid; 2 - target by
1107  * name.
1108  */
1109 static int mdt_reint_link(struct mdt_thread_info *info,
1110                           struct mdt_lock_handle *lhc)
1111 {
1112         struct mdt_reint_record *rr = &info->mti_rr;
1113         struct ptlrpc_request   *req = mdt_info_req(info);
1114         struct md_attr          *ma = &info->mti_attr;
1115         struct mdt_object       *ms;
1116         struct mdt_object       *mp;
1117         struct mdt_lock_handle  *lhs;
1118         struct mdt_lock_handle  *lhp;
1119         bool cos_incompat;
1120         int rc;
1121         ENTRY;
1122
1123         DEBUG_REQ(D_INODE, req, "link "DFID" to "DFID"/"DNAME,
1124                   PFID(rr->rr_fid1), PFID(rr->rr_fid2), PNAME(&rr->rr_name));
1125
1126         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_LINK))
1127                 RETURN(err_serious(-ENOENT));
1128
1129         if (info->mti_dlm_req)
1130                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1131
1132         /* Invalid case so return error immediately instead of
1133          * processing it */
1134         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2))
1135                 RETURN(-EPERM);
1136
1137         if (!fid_is_md_operative(rr->rr_fid1) ||
1138             !fid_is_md_operative(rr->rr_fid2))
1139                 RETURN(-EPERM);
1140
1141         /* step 1: find target parent dir */
1142         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
1143         if (IS_ERR(mp))
1144                 RETURN(PTR_ERR(mp));
1145
1146         rc = mdt_version_get_check_save(info, mp, 0);
1147         if (rc)
1148                 GOTO(put_parent, rc);
1149
1150         /* step 2: find source */
1151         ms = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1152         if (IS_ERR(ms))
1153                 GOTO(put_parent, rc = PTR_ERR(ms));
1154
1155         if (!mdt_object_exists(ms)) {
1156                 CDEBUG(D_INFO, "%s: "DFID" does not exist.\n",
1157                        mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1));
1158                 GOTO(put_source, rc = -ENOENT);
1159         }
1160
1161         cos_incompat = (mdt_object_remote(mp) || mdt_object_remote(ms));
1162
1163         lhp = &info->mti_lh[MDT_LH_PARENT];
1164         mdt_lock_pdo_init(lhp, LCK_PW, &rr->rr_name);
1165         rc = mdt_reint_object_lock(info, mp, lhp, MDS_INODELOCK_UPDATE,
1166                                    cos_incompat);
1167         if (rc != 0)
1168                 GOTO(put_source, rc);
1169
1170         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1171
1172         lhs = &info->mti_lh[MDT_LH_CHILD];
1173         mdt_lock_reg_init(lhs, LCK_EX);
1174         rc = mdt_reint_object_lock(info, ms, lhs,
1175                                    MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
1176                                    cos_incompat);
1177         if (rc != 0)
1178                 GOTO(unlock_parent, rc);
1179
1180         /* step 3: link it */
1181         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1182                         OBD_FAIL_MDS_REINT_LINK_WRITE);
1183
1184         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(ms));
1185         rc = mdt_version_get_check_save(info, ms, 1);
1186         if (rc)
1187                 GOTO(unlock_source, rc);
1188
1189         /** check target version by name during replay */
1190         rc = mdt_lookup_version_check(info, mp, &rr->rr_name,
1191                                       &info->mti_tmp_fid1, 2);
1192         if (rc != 0 && rc != -ENOENT)
1193                 GOTO(unlock_source, rc);
1194         /* save version of file name for replay, it must be ENOENT here */
1195         if (!req_is_replay(mdt_info_req(info))) {
1196                 if (rc != -ENOENT) {
1197                         CDEBUG(D_INFO, "link target "DNAME" existed!\n",
1198                                PNAME(&rr->rr_name));
1199                         GOTO(unlock_source, rc = -EEXIST);
1200                 }
1201                 info->mti_ver[2] = ENOENT_VERSION;
1202                 mdt_version_save(mdt_info_req(info), info->mti_ver[2], 2);
1203         }
1204
1205         rc = mdo_link(info->mti_env, mdt_object_child(mp),
1206                       mdt_object_child(ms), &rr->rr_name, ma);
1207
1208         if (rc == 0)
1209                 mdt_counter_incr(req, LPROC_MDT_LINK);
1210
1211         EXIT;
1212 unlock_source:
1213         mdt_object_unlock(info, ms, lhs, rc);
1214 unlock_parent:
1215         mdt_object_unlock(info, mp, lhp, rc);
1216 put_source:
1217         mdt_object_put(info->mti_env, ms);
1218 put_parent:
1219         mdt_object_put(info->mti_env, mp);
1220         return rc;
1221 }
1222 /**
1223  * lock the part of the directory according to the hash of the name
1224  * (lh->mlh_pdo_hash) in parallel directory lock.
1225  */
1226 static int mdt_pdir_hash_lock(struct mdt_thread_info *info,
1227                               struct mdt_lock_handle *lh,
1228                               struct mdt_object *obj, __u64 ibits,
1229                               bool cos_incompat)
1230 {
1231         struct ldlm_res_id *res = &info->mti_res_id;
1232         struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1233         union ldlm_policy_data *policy = &info->mti_policy;
1234         __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1235         int rc;
1236
1237         /*
1238          * Finish res_id initializing by name hash marking part of
1239          * directory which is taking modification.
1240          */
1241         LASSERT(lh->mlh_pdo_hash != 0);
1242         fid_build_pdo_res_name(mdt_object_fid(obj), lh->mlh_pdo_hash, res);
1243         memset(policy, 0, sizeof(*policy));
1244         policy->l_inodebits.bits = ibits;
1245         if (cos_incompat &&
1246             (lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX))
1247                 dlmflags |= LDLM_FL_COS_INCOMPAT;
1248         /*
1249          * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
1250          * going to be sent to client. If it is - mdt_intent_policy() path will
1251          * fix it up and turn FL_LOCAL flag off.
1252          */
1253         rc = mdt_fid_lock(ns, &lh->mlh_reg_lh, lh->mlh_reg_mode, policy,
1254                           res, dlmflags, &info->mti_exp->exp_handle.h_cookie);
1255         return rc;
1256 }
1257
1258 /**
1259  * Get BFL lock for rename or migrate process.
1260  **/
1261 static int mdt_rename_lock(struct mdt_thread_info *info,
1262                            struct lustre_handle *lh)
1263 {
1264         int     rc;
1265         ENTRY;
1266
1267         if (mdt_seq_site(info->mti_mdt)->ss_node_id != 0) {
1268                 struct lu_fid *fid = &info->mti_tmp_fid1;
1269                 struct mdt_object *obj;
1270
1271                 /* XXX, right now, it has to use object API to
1272                  * enqueue lock cross MDT, so it will enqueue
1273                  * rename lock(with LUSTRE_BFL_FID) by root object */
1274                 lu_root_fid(fid);
1275                 obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1276                 if (IS_ERR(obj))
1277                         RETURN(PTR_ERR(obj));
1278
1279                 rc = mdt_remote_object_lock(info, obj,
1280                                             &LUSTRE_BFL_FID, lh,
1281                                             LCK_EX,
1282                                             MDS_INODELOCK_UPDATE, false);
1283                 mdt_object_put(info->mti_env, obj);
1284         } else {
1285                 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1286                 union ldlm_policy_data *policy = &info->mti_policy;
1287                 struct ldlm_res_id *res_id = &info->mti_res_id;
1288                 __u64 flags = 0;
1289
1290                 fid_build_reg_res_name(&LUSTRE_BFL_FID, res_id);
1291                 memset(policy, 0, sizeof *policy);
1292                 policy->l_inodebits.bits = MDS_INODELOCK_UPDATE;
1293                 flags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1294                 rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS, policy,
1295                                            LCK_EX, &flags, ldlm_blocking_ast,
1296                                            ldlm_completion_ast, NULL, NULL, 0,
1297                                            LVB_T_NONE,
1298                                            &info->mti_exp->exp_handle.h_cookie,
1299                                            lh);
1300                 RETURN(rc);
1301         }
1302         RETURN(rc);
1303 }
1304
1305 static void mdt_rename_unlock(struct lustre_handle *lh)
1306 {
1307         ENTRY;
1308         LASSERT(lustre_handle_is_used(lh));
1309         /* Cancel the single rename lock right away */
1310         ldlm_lock_decref_and_cancel(lh, LCK_EX);
1311         EXIT;
1312 }
1313
1314 /*
1315  * This is is_subdir() variant, it is CMD if cmm forwards it to correct
1316  * target. Source should not be ancestor of target dir. May be other rename
1317  * checks can be moved here later.
1318  */
1319 static int mdt_is_subdir(struct mdt_thread_info *info,
1320                          struct mdt_object *dir,
1321                          const struct lu_fid *fid)
1322 {
1323         struct lu_fid dir_fid = dir->mot_header.loh_fid;
1324         int rc = 0;
1325         ENTRY;
1326
1327         /* If the source and target are in the same directory, they can not
1328          * be parent/child relationship, so subdir check is not needed */
1329         if (lu_fid_eq(&dir_fid, fid))
1330                 return 0;
1331
1332         if (!mdt_object_exists(dir))
1333                 RETURN(-ENOENT);
1334
1335         rc = mdo_is_subdir(info->mti_env, mdt_object_child(dir),
1336                            fid, &dir_fid);
1337         if (rc < 0) {
1338                 CERROR("%s: failed subdir check in "DFID" for "DFID
1339                        ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1340                        PFID(&dir_fid), PFID(fid), rc);
1341                 /* Return EINVAL only if a parent is the @fid */
1342                 if (rc == -EINVAL)
1343                         rc = -EIO;
1344         } else {
1345                 /* check the found fid */
1346                 if (lu_fid_eq(&dir_fid, fid))
1347                         rc = -EINVAL;
1348         }
1349
1350         RETURN(rc);
1351 }
1352
1353 /* Update object linkEA */
1354 struct mdt_lock_list {
1355         struct mdt_object       *mll_obj;
1356         struct mdt_lock_handle  mll_lh;
1357         struct list_head        mll_list;
1358 };
1359
1360 static void mdt_unlock_list(struct mdt_thread_info *info,
1361                             struct list_head *list, int rc)
1362 {
1363         struct mdt_lock_list *mll;
1364         struct mdt_lock_list *mll2;
1365
1366         list_for_each_entry_safe(mll, mll2, list, mll_list) {
1367                 mdt_object_unlock_put(info, mll->mll_obj, &mll->mll_lh, rc);
1368                 list_del(&mll->mll_list);
1369                 OBD_FREE_PTR(mll);
1370         }
1371 }
1372
1373 static int mdt_lock_objects_in_linkea(struct mdt_thread_info *info,
1374                                       struct mdt_object *obj,
1375                                       struct mdt_object *pobj,
1376                                       struct list_head *lock_list)
1377 {
1378         struct lu_buf           *buf = &info->mti_big_buf;
1379         struct linkea_data      ldata = { NULL };
1380         int                     count;
1381         int                     retry_count;
1382         int                     rc;
1383         ENTRY;
1384
1385         if (S_ISDIR(lu_object_attr(&obj->mot_obj)))
1386                 RETURN(0);
1387
1388         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
1389         if (buf->lb_buf == NULL)
1390                 RETURN(-ENOMEM);
1391
1392         ldata.ld_buf = buf;
1393         rc = mdt_links_read(info, obj, &ldata);
1394         if (rc != 0) {
1395                 if (rc == -ENOENT || rc == -ENODATA)
1396                         rc = 0;
1397                 RETURN(rc);
1398         }
1399
1400         /* ignore the migrating parent(@pobj) */
1401         retry_count = ldata.ld_leh->leh_reccount - 1;
1402
1403 again:
1404         LASSERT(ldata.ld_leh != NULL);
1405         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
1406         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
1407                 struct mdt_device *mdt = info->mti_mdt;
1408                 struct mdt_object *mdt_pobj;
1409                 struct mdt_lock_list *mll;
1410                 struct lu_name name;
1411                 struct lu_fid  fid;
1412                 __u64 ibits;
1413
1414                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
1415                                     &name, &fid);
1416                 mdt_pobj = mdt_object_find(info->mti_env, mdt, &fid);
1417                 if (IS_ERR(mdt_pobj)) {
1418                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
1419                               mdt_obd_name(mdt), PFID(&fid), PTR_ERR(mdt_pobj));
1420                         goto next;
1421                 }
1422
1423                 if (!mdt_object_exists(mdt_pobj)) {
1424                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
1425                               mdt_obd_name(mdt), PFID(&fid));
1426                         mdt_object_put(info->mti_env, mdt_pobj);
1427                         goto next;
1428                 }
1429
1430                 /* Check if the object already exists in the list */
1431                 list_for_each_entry(mll, lock_list, mll_list) {
1432                         if (mll->mll_obj == mdt_pobj) {
1433                                 mdt_object_put(info->mti_env, mdt_pobj);
1434                                 goto next;
1435                         }
1436                 }
1437
1438                 if (mdt_pobj == pobj) {
1439                         CDEBUG(D_INFO, "%s: skipping parent obj "DFID"\n",
1440                                mdt_obd_name(mdt), PFID(&fid));
1441                         mdt_object_put(info->mti_env, mdt_pobj);
1442                         goto next;
1443                 }
1444
1445                 OBD_ALLOC_PTR(mll);
1446                 if (mll == NULL) {
1447                         mdt_object_put(info->mti_env, mdt_pobj);
1448                         GOTO(out, rc = -ENOMEM);
1449                 }
1450
1451                 /* Since this needs to lock all of objects in linkea, to avoid
1452                  * deadlocks, because it does not follow parent-child order as
1453                  * other MDT operation, let's use try_lock here and if the lock
1454                  * cannot be gotten because of conflicting locks, then drop all
1455                  * current locks, send an AST to the client, and start again. */
1456                 mdt_lock_pdo_init(&mll->mll_lh, LCK_PW, &name);
1457                 ibits = 0;
1458                 rc = mdt_object_lock_try(info, mdt_pobj, &mll->mll_lh, &ibits,
1459                                          MDS_INODELOCK_UPDATE, true);
1460                 if (!(ibits & MDS_INODELOCK_UPDATE)) {
1461                         mdt_unlock_list(info, lock_list, 0);
1462
1463                         CDEBUG(D_INFO, "%s: busy lock on "DFID" %s retry %d\n",
1464                                mdt_obd_name(mdt), PFID(&fid), name.ln_name,
1465                                retry_count);
1466
1467                         if (retry_count == 0) {
1468                                 mdt_object_put(info->mti_env, mdt_pobj);
1469                                 OBD_FREE_PTR(mll);
1470                                 GOTO(out, rc = -EBUSY);
1471                         }
1472
1473                         mdt_lock_pdo_init(&mll->mll_lh, LCK_PW, &name);
1474                         rc = mdt_object_lock(info, mdt_pobj, &mll->mll_lh,
1475                                              MDS_INODELOCK_UPDATE);
1476                         if (rc != 0) {
1477                                 mdt_object_put(info->mti_env, mdt_pobj);
1478                                 OBD_FREE_PTR(mll);
1479                                 GOTO(out, rc);
1480                         }
1481
1482                         if (mdt_object_remote(mdt_pobj)) {
1483                                 struct ldlm_lock *lock;
1484
1485                                 /* For remote object, Set lock to cb_atomic,
1486                                  * so lock can be released in blocking_ast()
1487                                  * immediately, then the next try_lock will
1488                                  * have better chance to succeds */
1489                                 lock =
1490                                 ldlm_handle2lock(&mll->mll_lh.mlh_rreg_lh);
1491                                 LASSERT(lock != NULL);
1492                                 lock_res_and_lock(lock);
1493                                 ldlm_set_atomic_cb(lock);
1494                                 unlock_res_and_lock(lock);
1495                                 LDLM_LOCK_PUT(lock);
1496                         }
1497                         mdt_object_unlock_put(info, mdt_pobj, &mll->mll_lh, rc);
1498                         OBD_FREE_PTR(mll);
1499                         retry_count--;
1500                         goto again;
1501                 }
1502                 rc = 0;
1503                 INIT_LIST_HEAD(&mll->mll_list);
1504                 mll->mll_obj = mdt_pobj;
1505                 list_add_tail(&mll->mll_list, lock_list);
1506 next:
1507                 ldata.ld_lee = (struct link_ea_entry *)((char *)ldata.ld_lee +
1508                                                          ldata.ld_reclen);
1509         }
1510 out:
1511         if (rc != 0)
1512                 mdt_unlock_list(info, lock_list, rc);
1513         RETURN(rc);
1514 }
1515
1516 /* migrate files from one MDT to another MDT */
1517 static int mdt_reint_migrate_internal(struct mdt_thread_info *info,
1518                                       struct mdt_lock_handle *lhc)
1519 {
1520         struct mdt_reint_record *rr = &info->mti_rr;
1521         struct md_attr          *ma = &info->mti_attr;
1522         struct mdt_object       *msrcdir;
1523         struct mdt_object       *mold;
1524         struct mdt_object       *mnew = NULL;
1525         struct mdt_lock_handle  *lh_dirp;
1526         struct mdt_lock_handle  *lh_childp;
1527         struct mdt_lock_handle  *lh_tgtp = NULL;
1528         struct lu_fid           *old_fid = &info->mti_tmp_fid1;
1529         struct list_head        lock_list;
1530         __u64                   lock_ibits;
1531         struct ldlm_lock        *lease = NULL;
1532         bool                    lock_open_sem = false;
1533         int                     rc;
1534         ENTRY;
1535
1536         CDEBUG(D_INODE, "migrate "DFID"/"DNAME" to "DFID"\n", PFID(rr->rr_fid1),
1537                PNAME(&rr->rr_name), PFID(rr->rr_fid2));
1538
1539         /* 1: lock the source dir. */
1540         msrcdir = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1541         if (IS_ERR(msrcdir)) {
1542                 CDEBUG(D_OTHER, "%s: cannot find source dir "DFID" : rc = %d\n",
1543                         mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
1544                         (int)PTR_ERR(msrcdir));
1545                 RETURN(PTR_ERR(msrcdir));
1546         }
1547
1548         lh_dirp = &info->mti_lh[MDT_LH_PARENT];
1549         mdt_lock_pdo_init(lh_dirp, LCK_PW, &rr->rr_name);
1550         rc = mdt_reint_object_lock(info, msrcdir, lh_dirp, MDS_INODELOCK_UPDATE,
1551                                    true);
1552         if (rc)
1553                 GOTO(out_put_parent, rc);
1554
1555         if (!mdt_object_remote(msrcdir)) {
1556                 rc = mdt_version_get_check_save(info, msrcdir, 0);
1557                 if (rc)
1558                         GOTO(out_unlock_parent, rc);
1559         }
1560
1561         /* 2: sanity check and find the object to be migrated. */
1562         fid_zero(old_fid);
1563         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
1564         if (rc != 0)
1565                 GOTO(out_unlock_parent, rc);
1566
1567         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
1568                 GOTO(out_unlock_parent, rc = -EINVAL);
1569
1570         if (!fid_is_md_operative(old_fid))
1571                 GOTO(out_unlock_parent, rc = -EPERM);
1572
1573         if (lu_fid_eq(old_fid, &info->mti_mdt->mdt_md_root_fid))
1574                 GOTO(out_unlock_parent, rc = -EPERM);
1575
1576         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
1577         if (IS_ERR(mold))
1578                 GOTO(out_unlock_parent, rc = PTR_ERR(mold));
1579
1580         if (mdt_object_remote(mold)) {
1581                 CDEBUG(D_OTHER, "%s: source "DFID" is on the remote MDT\n",
1582                        mdt_obd_name(info->mti_mdt), PFID(old_fid));
1583                 GOTO(out_put_child, rc = -EREMOTE);
1584         }
1585
1586         if (S_ISREG(lu_object_attr(&mold->mot_obj)) &&
1587             !mdt_object_remote(msrcdir)) {
1588                 CDEBUG(D_OTHER, "%s: parent "DFID" is still on the same"
1589                        " MDT, which should be migrated first:"
1590                        " rc = %d\n", mdt_obd_name(info->mti_mdt),
1591                        PFID(mdt_object_fid(msrcdir)), -EPERM);
1592                 GOTO(out_put_child, rc = -EPERM);
1593         }
1594
1595         rc = mdt_remote_permission(info);
1596         if (rc != 0)
1597                 GOTO(out_put_child, rc);
1598
1599         /* 3: iterate the linkea of the object and lock all of the objects */
1600         INIT_LIST_HEAD(&lock_list);
1601         rc = mdt_lock_objects_in_linkea(info, mold, msrcdir, &lock_list);
1602         if (rc != 0)
1603                 GOTO(out_put_child, rc);
1604
1605         if (info->mti_spec.sp_migrate_close) {
1606                 struct close_data *data;
1607                 struct mdt_body  *repbody;
1608                 bool lease_broken = false;
1609
1610                 if (!req_capsule_field_present(info->mti_pill, &RMF_MDT_EPOCH,
1611                                       RCL_CLIENT) ||
1612                     !req_capsule_field_present(info->mti_pill, &RMF_CLOSE_DATA,
1613                                       RCL_CLIENT))
1614                         GOTO(out_lease, rc = -EPROTO);
1615
1616                 data = req_capsule_client_get(info->mti_pill, &RMF_CLOSE_DATA);
1617                 if (data == NULL)
1618                         GOTO(out_lease, rc = -EPROTO);
1619
1620                 lease = ldlm_handle2lock(&data->cd_handle);
1621                 if (lease == NULL)
1622                         GOTO(out_lease, rc = -ESTALE);
1623
1624                 /* try to hold open_sem so that nobody else can open the file */
1625                 if (!down_write_trylock(&mold->mot_open_sem)) {
1626                         ldlm_lock_cancel(lease);
1627                         GOTO(out_lease, rc = -EBUSY);
1628                 }
1629
1630                 lock_open_sem = true;
1631                 /* Check if the lease open lease has already canceled */
1632                 lock_res_and_lock(lease);
1633                 lease_broken = ldlm_is_cancel(lease);
1634                 unlock_res_and_lock(lease);
1635
1636                 LDLM_DEBUG(lease, DFID " lease broken? %d",
1637                            PFID(mdt_object_fid(mold)), lease_broken);
1638
1639                 /* Cancel server side lease. Client side counterpart should
1640                  * have been cancelled. It's okay to cancel it now as we've
1641                  * held mot_open_sem. */
1642                 ldlm_lock_cancel(lease);
1643
1644                 if (lease_broken)
1645                         GOTO(out_lease, rc = -EAGAIN);
1646 out_lease:
1647                 rc = mdt_close_internal(info, mdt_info_req(info), NULL);
1648                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1649                 repbody->mbo_valid |= OBD_MD_CLOSE_INTENT_EXECED;
1650                 if (rc != 0)
1651                         GOTO(out_unlock_list, rc);
1652         }
1653
1654         /* 4: lock of the object migrated object */
1655         lh_childp = &info->mti_lh[MDT_LH_OLD];
1656         mdt_lock_reg_init(lh_childp, LCK_EX);
1657         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
1658                      MDS_INODELOCK_LAYOUT;
1659         if (mdt_object_remote(msrcdir)) {
1660                 /* Enqueue lookup lock from the parent MDT */
1661                 rc = mdt_remote_object_lock(info, msrcdir, mdt_object_fid(mold),
1662                                             &lh_childp->mlh_rreg_lh,
1663                                             lh_childp->mlh_rreg_mode,
1664                                             MDS_INODELOCK_LOOKUP, false);
1665                 if (rc != ELDLM_OK)
1666                         GOTO(out_unlock_list, rc);
1667
1668                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1669         }
1670
1671         rc = mdt_reint_object_lock(info, mold, lh_childp, lock_ibits, true);
1672         if (rc != 0)
1673                 GOTO(out_unlock_child, rc);
1674
1675         /* Migration is incompatible with HSM. */
1676         ma->ma_need = MA_HSM;
1677         ma->ma_valid = 0;
1678         rc = mdt_attr_get_complex(info, mold, ma);
1679         if (rc != 0)
1680                 GOTO(out_unlock_child, rc);
1681
1682         if ((ma->ma_valid & MA_HSM) && ma->ma_hsm.mh_flags != 0) {
1683                 rc = -ENOSYS;
1684                 CDEBUG(D_OTHER,
1685                        "%s: cannot migrate HSM archived file "DFID": rc = %d\n",
1686                        mdt_obd_name(info->mti_mdt), PFID(old_fid), rc);
1687                 GOTO(out_unlock_child, rc);
1688         }
1689
1690         ma->ma_need = MA_LMV;
1691         ma->ma_valid = 0;
1692         ma->ma_lmv = (union lmv_mds_md *)info->mti_xattr_buf;
1693         ma->ma_lmv_size = sizeof(info->mti_xattr_buf);
1694         rc = mdt_stripe_get(info, mold, ma, XATTR_NAME_LMV);
1695         if (rc != 0)
1696                 GOTO(out_unlock_child, rc);
1697
1698         if ((ma->ma_valid & MA_LMV)) {
1699                 struct lmv_mds_md_v1 *lmm1;
1700
1701                 lmv_le_to_cpu(ma->ma_lmv, ma->ma_lmv);
1702                 lmm1 = &ma->ma_lmv->lmv_md_v1;
1703                 if (!(lmm1->lmv_hash_type & LMV_HASH_FLAG_MIGRATION)) {
1704                         CDEBUG(D_OTHER, "%s: can not migrate striped dir "DFID
1705                                ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1706                                PFID(mdt_object_fid(mold)), -EPERM);
1707                         GOTO(out_unlock_child, rc = -EPERM);
1708                 }
1709
1710                 if (!fid_is_sane(&lmm1->lmv_stripe_fids[1]))
1711                         GOTO(out_unlock_child, rc = -EINVAL);
1712
1713                 mnew = mdt_object_find(info->mti_env, info->mti_mdt,
1714                                        &lmm1->lmv_stripe_fids[1]);
1715                 if (IS_ERR(mnew))
1716                         GOTO(out_unlock_child, rc = PTR_ERR(mnew));
1717
1718                 if (!mdt_object_remote(mnew)) {
1719                         CDEBUG(D_OTHER,
1720                                "%s: "DFID" being migrated is on this MDT:"
1721                                " rc  = %d\n", mdt_obd_name(info->mti_mdt),
1722                                PFID(rr->rr_fid2), -EPERM);
1723                         GOTO(out_put_new, rc = -EPERM);
1724                 }
1725
1726                 lh_tgtp = &info->mti_lh[MDT_LH_CHILD];
1727                 mdt_lock_reg_init(lh_tgtp, LCK_EX);
1728                 rc = mdt_remote_object_lock(info, mnew,
1729                                             mdt_object_fid(mnew),
1730                                             &lh_tgtp->mlh_rreg_lh,
1731                                             lh_tgtp->mlh_rreg_mode,
1732                                             MDS_INODELOCK_UPDATE, false);
1733                 if (rc != 0) {
1734                         lh_tgtp = NULL;
1735                         GOTO(out_put_new, rc);
1736                 }
1737         } else {
1738                 mnew = mdt_object_find(info->mti_env, info->mti_mdt,
1739                                        rr->rr_fid2);
1740                 if (IS_ERR(mnew))
1741                         GOTO(out_unlock_child, rc = PTR_ERR(mnew));
1742                 if (!mdt_object_remote(mnew)) {
1743                         CDEBUG(D_OTHER, "%s: Migration "DFID" is on this MDT:"
1744                                " rc = %d\n", mdt_obd_name(info->mti_mdt),
1745                                PFID(rr->rr_fid2), -EXDEV);
1746                         GOTO(out_put_new, rc = -EXDEV);
1747                 }
1748         }
1749
1750         /* 5: migrate it */
1751         mdt_reint_init_ma(info, ma);
1752
1753         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1754                        OBD_FAIL_MDS_REINT_RENAME_WRITE);
1755
1756         rc = mdo_migrate(info->mti_env, mdt_object_child(msrcdir),
1757                          mdt_object_child(mold), &rr->rr_name,
1758                          mdt_object_child(mnew), ma);
1759         if (rc != 0)
1760                 GOTO(out_unlock_new, rc);
1761
1762 out_unlock_new:
1763         if (lh_tgtp != NULL)
1764                 mdt_object_unlock(info, mnew, lh_tgtp, rc);
1765 out_put_new:
1766         if (mnew)
1767                 mdt_object_put(info->mti_env, mnew);
1768 out_unlock_child:
1769         mdt_object_unlock(info, mold, lh_childp, rc);
1770 out_unlock_list:
1771         /* we don't really modify linkea objects, so we can safely decref these
1772          * locks, and this can avoid saving them as COS locks, which may prevent
1773          * subsequent migrate. */
1774         mdt_unlock_list(info, &lock_list, 1);
1775         if (lease != NULL) {
1776                 ldlm_reprocess_all(lease->l_resource);
1777                 LDLM_LOCK_PUT(lease);
1778         }
1779
1780         if (lock_open_sem)
1781                 up_write(&mold->mot_open_sem);
1782 out_put_child:
1783         mdt_object_put(info->mti_env, mold);
1784 out_unlock_parent:
1785         mdt_object_unlock(info, msrcdir, lh_dirp, rc);
1786 out_put_parent:
1787         mdt_object_put(info->mti_env, msrcdir);
1788
1789         RETURN(rc);
1790 }
1791
1792 static struct mdt_object *mdt_object_find_check(struct mdt_thread_info *info,
1793                                                 const struct lu_fid *fid,
1794                                                 int idx)
1795 {
1796         struct mdt_object *dir;
1797         int rc;
1798         ENTRY;
1799
1800         dir = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1801         if (IS_ERR(dir))
1802                 RETURN(dir);
1803
1804         /* check early, the real version will be saved after locking */
1805         rc = mdt_version_get_check(info, dir, idx);
1806         if (rc)
1807                 GOTO(out_put, rc);
1808
1809         RETURN(dir);
1810 out_put:
1811         mdt_object_put(info->mti_env, dir);
1812         return ERR_PTR(rc);
1813 }
1814
1815 static int mdt_object_lock_save(struct mdt_thread_info *info,
1816                                 struct mdt_object *dir,
1817                                 struct mdt_lock_handle *lh,
1818                                 int idx, bool cos_incompat)
1819 {
1820         int rc;
1821
1822         /* we lock the target dir if it is local */
1823         rc = mdt_reint_object_lock(info, dir, lh, MDS_INODELOCK_UPDATE,
1824                                    cos_incompat);
1825         if (rc != 0)
1826                 return rc;
1827
1828         /* get and save correct version after locking */
1829         mdt_version_get_save(info, dir, idx);
1830         return 0;
1831 }
1832
1833 /*
1834  * VBR: rename versions in reply: 0 - srcdir parent; 1 - tgtdir parent;
1835  * 2 - srcdir child; 3 - tgtdir child.
1836  * Update on disk version of srcdir child.
1837  */
1838 /**
1839  * For DNE phase I, only these renames are allowed
1840  *      mv src_p/src_c tgt_p/tgt_c
1841  * 1. src_p/src_c/tgt_p/tgt_c are in the same MDT.
1842  * 2. src_p and tgt_p are same directory, and tgt_c does not
1843  *    exists. In this case, all of modification will happen
1844  *    in the MDT where ithesource parent is, only one remote
1845  *    update is needed, i.e. set c_time/m_time on the child.
1846  *    And tgt_c will be still in the same MDT as the original
1847  *    src_c.
1848  */
1849 static int mdt_reint_rename_internal(struct mdt_thread_info *info,
1850                                      struct mdt_lock_handle *lhc)
1851 {
1852         struct mdt_reint_record *rr = &info->mti_rr;
1853         struct md_attr *ma = &info->mti_attr;
1854         struct ptlrpc_request *req = mdt_info_req(info);
1855         struct mdt_object *msrcdir = NULL;
1856         struct mdt_object *mtgtdir = NULL;
1857         struct mdt_object *mold;
1858         struct mdt_object *mnew = NULL;
1859         struct mdt_lock_handle *lh_srcdirp;
1860         struct mdt_lock_handle *lh_tgtdirp;
1861         struct mdt_lock_handle *lh_oldp = NULL;
1862         struct mdt_lock_handle *lh_newp = NULL;
1863         struct lu_fid *old_fid = &info->mti_tmp_fid1;
1864         struct lu_fid *new_fid = &info->mti_tmp_fid2;
1865         __u64 lock_ibits;
1866         bool reverse = false;
1867         bool cos_incompat;
1868         int rc;
1869         ENTRY;
1870
1871         DEBUG_REQ(D_INODE, req, "rename "DFID"/"DNAME" to "DFID"/"DNAME,
1872                   PFID(rr->rr_fid1), PNAME(&rr->rr_name),
1873                   PFID(rr->rr_fid2), PNAME(&rr->rr_tgt_name));
1874
1875         /* find both parents. */
1876         msrcdir = mdt_object_find_check(info, rr->rr_fid1, 0);
1877         if (IS_ERR(msrcdir))
1878                 RETURN(PTR_ERR(msrcdir));
1879
1880         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1881
1882         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2)) {
1883                 mtgtdir = msrcdir;
1884                 mdt_object_get(info->mti_env, mtgtdir);
1885         } else {
1886                 /* Check if the @msrcdir is not a child of the @mtgtdir,
1887                  * otherwise a reverse locking must take place. */
1888                 rc = mdt_is_subdir(info, msrcdir, rr->rr_fid2);
1889                 if (rc == -EINVAL)
1890                         reverse = true;
1891                 else if (rc)
1892                         GOTO(out_put_srcdir, rc);
1893
1894                 mtgtdir = mdt_object_find_check(info, rr->rr_fid2, 1);
1895                 if (IS_ERR(mtgtdir))
1896                         GOTO(out_put_srcdir, rc = PTR_ERR(mtgtdir));
1897         }
1898
1899         /* source needs to be looked up after locking source parent, otherwise
1900          * this rename may race with unlink source, and cause rename hang, see
1901          * sanityn.sh 55b, so check parents first, if later we found source is
1902          * remote, relock parents. */
1903         cos_incompat = (mdt_object_remote(msrcdir) ||
1904                         mdt_object_remote(mtgtdir));
1905
1906         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
1907
1908         /* lock parents in the proper order. */
1909         lh_srcdirp = &info->mti_lh[MDT_LH_PARENT];
1910         lh_tgtdirp = &info->mti_lh[MDT_LH_CHILD];
1911
1912 relock:
1913         mdt_lock_pdo_init(lh_srcdirp, LCK_PW, &rr->rr_name);
1914         mdt_lock_pdo_init(lh_tgtdirp, LCK_PW, &rr->rr_tgt_name);
1915
1916         if (reverse) {
1917                 rc = mdt_object_lock_save(info, mtgtdir, lh_tgtdirp, 1,
1918                                           cos_incompat);
1919                 if (rc)
1920                         GOTO(out_put_tgtdir, rc);
1921
1922                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
1923
1924                 rc = mdt_object_lock_save(info, msrcdir, lh_srcdirp, 0,
1925                                           cos_incompat);
1926                 if (rc != 0) {
1927                         mdt_object_unlock(info, mtgtdir, lh_tgtdirp, rc);
1928                         GOTO(out_put_tgtdir, rc);
1929                 }
1930         } else {
1931                 rc = mdt_object_lock_save(info, msrcdir, lh_srcdirp, 0,
1932                                           cos_incompat);
1933                 if (rc)
1934                         GOTO(out_put_tgtdir, rc);
1935
1936                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
1937
1938                 if (mtgtdir != msrcdir) {
1939                         rc = mdt_object_lock_save(info, mtgtdir, lh_tgtdirp, 1,
1940                                                   cos_incompat);
1941                 } else if (lh_srcdirp->mlh_pdo_hash !=
1942                            lh_tgtdirp->mlh_pdo_hash) {
1943                         rc = mdt_pdir_hash_lock(info, lh_tgtdirp, mtgtdir,
1944                                                 MDS_INODELOCK_UPDATE,
1945                                                 cos_incompat);
1946                         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PDO_LOCK2, 10);
1947                 }
1948                 if (rc != 0) {
1949                         mdt_object_unlock(info, msrcdir, lh_srcdirp, rc);
1950                         GOTO(out_put_tgtdir, rc);
1951                 }
1952         }
1953
1954         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
1955         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME2, 5);
1956
1957         /* find mold object. */
1958         fid_zero(old_fid);
1959         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
1960         if (rc != 0)
1961                 GOTO(out_unlock_parents, rc);
1962
1963         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
1964                 GOTO(out_unlock_parents, rc = -EINVAL);
1965
1966         if (!fid_is_md_operative(old_fid))
1967                 GOTO(out_unlock_parents, rc = -EPERM);
1968
1969         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
1970         if (IS_ERR(mold))
1971                 GOTO(out_unlock_parents, rc = PTR_ERR(mold));
1972
1973         /* Check if @mtgtdir is subdir of @mold, before locking child
1974          * to avoid reverse locking. */
1975         if (mtgtdir != msrcdir) {
1976                 rc = mdt_is_subdir(info, mtgtdir, old_fid);
1977                 if (rc)
1978                         GOTO(out_put_old, rc);
1979         }
1980
1981         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mold));
1982         /* save version after locking */
1983         mdt_version_get_save(info, mold, 2);
1984
1985         if (!cos_incompat && mdt_object_remote(mold)) {
1986                 cos_incompat = true;
1987                 mdt_object_put(info->mti_env, mold);
1988                 mdt_object_unlock(info, mtgtdir, lh_tgtdirp, -EAGAIN);
1989                 mdt_object_unlock(info, msrcdir, lh_srcdirp, -EAGAIN);
1990                 goto relock;
1991         }
1992
1993         /* find mnew object:
1994          * mnew target object may not exist now
1995          * lookup with version checking */
1996         fid_zero(new_fid);
1997         rc = mdt_lookup_version_check(info, mtgtdir, &rr->rr_tgt_name, new_fid,
1998                                       3);
1999         if (rc == 0) {
2000                 /* the new_fid should have been filled at this moment */
2001                 if (lu_fid_eq(old_fid, new_fid))
2002                         GOTO(out_put_old, rc);
2003
2004                 if (lu_fid_eq(new_fid, rr->rr_fid1) ||
2005                     lu_fid_eq(new_fid, rr->rr_fid2))
2006                         GOTO(out_put_old, rc = -EINVAL);
2007
2008                 if (!fid_is_md_operative(new_fid))
2009                         GOTO(out_put_old, rc = -EPERM);
2010
2011                 mnew = mdt_object_find(info->mti_env, info->mti_mdt, new_fid);
2012                 if (IS_ERR(mnew))
2013                         GOTO(out_put_old, rc = PTR_ERR(mnew));
2014
2015                 if (mdt_object_remote(mnew)) {
2016                         struct mdt_body  *repbody;
2017
2018                         /* Always send rename req to the target child MDT */
2019                         repbody = req_capsule_server_get(info->mti_pill,
2020                                                          &RMF_MDT_BODY);
2021                         LASSERT(repbody != NULL);
2022                         repbody->mbo_fid1 = *new_fid;
2023                         repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
2024                         GOTO(out_put_new, rc = -EXDEV);
2025                 }
2026                 /* Before locking the target dir, check we do not replace
2027                  * a dir with a non-dir, otherwise it may deadlock with
2028                  * link op which tries to create a link in this dir
2029                  * back to this non-dir. */
2030                 if (S_ISDIR(lu_object_attr(&mnew->mot_obj)) &&
2031                     !S_ISDIR(lu_object_attr(&mold->mot_obj)))
2032                         GOTO(out_put_new, rc = -EISDIR);
2033
2034                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2035                 mdt_lock_reg_init(lh_oldp, LCK_EX);
2036                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2037                 if (mdt_object_remote(msrcdir)) {
2038                         /* Enqueue lookup lock from the parent MDT */
2039                         rc = mdt_remote_object_lock(info, msrcdir,
2040                                                     mdt_object_fid(mold),
2041                                                     &lh_oldp->mlh_rreg_lh,
2042                                                     lh_oldp->mlh_rreg_mode,
2043                                                     MDS_INODELOCK_LOOKUP,
2044                                                     false);
2045                         if (rc != ELDLM_OK)
2046                                 GOTO(out_put_new, rc);
2047
2048                         lock_ibits &= ~MDS_INODELOCK_LOOKUP;
2049                 }
2050
2051                 rc = mdt_reint_object_lock(info, mold, lh_oldp, lock_ibits,
2052                                            cos_incompat);
2053                 if (rc != 0)
2054                         GOTO(out_unlock_old, rc);
2055
2056                 /* Check if @msrcdir is subdir of @mnew, before locking child
2057                  * to avoid reverse locking. */
2058                 if (mtgtdir != msrcdir) {
2059                         rc = mdt_is_subdir(info, msrcdir, new_fid);
2060                         if (rc)
2061                                 GOTO(out_unlock_old, rc);
2062                 }
2063
2064                 /* We used to acquire MDS_INODELOCK_FULL here but we
2065                  * can't do this now because a running HSM restore on
2066                  * the rename onto victim will hold the layout
2067                  * lock. See LU-4002. */
2068
2069                 lh_newp = &info->mti_lh[MDT_LH_NEW];
2070                 mdt_lock_reg_init(lh_newp, LCK_EX);
2071                 rc = mdt_reint_object_lock(info, mnew, lh_newp,
2072                                            MDS_INODELOCK_LOOKUP |
2073                                            MDS_INODELOCK_UPDATE,
2074                                            cos_incompat);
2075                 if (rc != 0)
2076                         GOTO(out_unlock_old, rc);
2077
2078                 /* get and save version after locking */
2079                 mdt_version_get_save(info, mnew, 3);
2080         } else if (rc != -EREMOTE && rc != -ENOENT) {
2081                 GOTO(out_put_old, rc);
2082         } else {
2083                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
2084                 mdt_lock_reg_init(lh_oldp, LCK_EX);
2085                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
2086                 if (mdt_object_remote(msrcdir)) {
2087                         /* Enqueue lookup lock from the parent MDT */
2088                         rc = mdt_remote_object_lock(info, msrcdir,
2089                                                     mdt_object_fid(mold),
2090                                                     &lh_oldp->mlh_rreg_lh,
2091                                                     lh_oldp->mlh_rreg_mode,
2092                                                     MDS_INODELOCK_LOOKUP,
2093                                                     false);
2094                         if (rc != ELDLM_OK)
2095                                 GOTO(out_put_old, rc);
2096
2097                         lock_ibits &= ~MDS_INODELOCK_LOOKUP;
2098                 }
2099
2100                 rc = mdt_reint_object_lock(info, mold, lh_oldp, lock_ibits,
2101                                            cos_incompat);
2102                 if (rc != 0)
2103                         GOTO(out_unlock_old, rc);
2104
2105                 mdt_enoent_version_save(info, 3);
2106         }
2107
2108         /* step 5: rename it */
2109         mdt_reint_init_ma(info, ma);
2110
2111         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
2112                        OBD_FAIL_MDS_REINT_RENAME_WRITE);
2113
2114         if (mnew != NULL)
2115                 mutex_lock(&mnew->mot_lov_mutex);
2116
2117         rc = mdo_rename(info->mti_env, mdt_object_child(msrcdir),
2118                         mdt_object_child(mtgtdir), old_fid, &rr->rr_name,
2119                         mnew != NULL ? mdt_object_child(mnew) : NULL,
2120                         &rr->rr_tgt_name, ma);
2121
2122         if (mnew != NULL)
2123                 mutex_unlock(&mnew->mot_lov_mutex);
2124
2125         /* handle last link of tgt object */
2126         if (rc == 0) {
2127                 mdt_counter_incr(req, LPROC_MDT_RENAME);
2128                 if (mnew) {
2129                         mdt_handle_last_unlink(info, mnew, ma);
2130                         mdt_dom_check_and_discard(info, mnew);
2131                 }
2132
2133                 mdt_rename_counter_tally(info, info->mti_mdt, req,
2134                                          msrcdir, mtgtdir);
2135         }
2136
2137         EXIT;
2138         if (mnew != NULL)
2139                 mdt_object_unlock(info, mnew, lh_newp, rc);
2140 out_unlock_old:
2141         mdt_object_unlock(info, mold, lh_oldp, rc);
2142 out_put_new:
2143         if (mnew != NULL)
2144                 mdt_object_put(info->mti_env, mnew);
2145 out_put_old:
2146         mdt_object_put(info->mti_env, mold);
2147 out_unlock_parents:
2148         mdt_object_unlock(info, mtgtdir, lh_tgtdirp, rc);
2149         mdt_object_unlock(info, msrcdir, lh_srcdirp, rc);
2150 out_put_tgtdir:
2151         mdt_object_put(info->mti_env, mtgtdir);
2152 out_put_srcdir:
2153         mdt_object_put(info->mti_env, msrcdir);
2154         return rc;
2155 }
2156
2157 static int mdt_reint_rename_or_migrate(struct mdt_thread_info *info,
2158                                        struct mdt_lock_handle *lhc, bool rename)
2159 {
2160         struct mdt_reint_record *rr = &info->mti_rr;
2161         struct ptlrpc_request   *req = mdt_info_req(info);
2162         struct lustre_handle    rename_lh = { 0 };
2163         int                     rc;
2164         ENTRY;
2165
2166         if (info->mti_dlm_req)
2167                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2168
2169         if (!fid_is_md_operative(rr->rr_fid1) ||
2170             !fid_is_md_operative(rr->rr_fid2))
2171                 RETURN(-EPERM);
2172
2173         /* Note: do not enqueue rename lock for replay request, because
2174          * if other MDT holds rename lock, but being blocked to wait for
2175          * this MDT to finish its recovery, and the failover MDT can not
2176          * get rename lock, which will cause deadlock. */
2177         if (!req_is_replay(req)) {
2178                 rc = mdt_rename_lock(info, &rename_lh);
2179                 if (rc != 0) {
2180                         CERROR("%s: can't lock FS for rename: rc  = %d\n",
2181                                mdt_obd_name(info->mti_mdt), rc);
2182                         RETURN(rc);
2183                 }
2184         }
2185
2186         if (rename)
2187                 rc = mdt_reint_rename_internal(info, lhc);
2188         else
2189                 rc = mdt_reint_migrate_internal(info, lhc);
2190
2191         if (lustre_handle_is_used(&rename_lh))
2192                 mdt_rename_unlock(&rename_lh);
2193
2194         RETURN(rc);
2195 }
2196
2197 static int mdt_reint_rename(struct mdt_thread_info *info,
2198                             struct mdt_lock_handle *lhc)
2199 {
2200         return mdt_reint_rename_or_migrate(info, lhc, true);
2201 }
2202
2203 static int mdt_reint_migrate(struct mdt_thread_info *info,
2204                             struct mdt_lock_handle *lhc)
2205 {
2206         return mdt_reint_rename_or_migrate(info, lhc, false);
2207 }
2208
2209 static int mdt_reint_resync(struct mdt_thread_info *info,
2210                             struct mdt_lock_handle *lhc)
2211 {
2212         struct mdt_reint_record *rr = &info->mti_rr;
2213         struct ptlrpc_request   *req = mdt_info_req(info);
2214         struct md_attr          *ma = &info->mti_attr;
2215         struct mdt_object       *mo;
2216         struct ldlm_lock        *lease;
2217         struct mdt_body         *repbody;
2218         struct md_layout_change  layout = { 0 };
2219         bool                     lease_broken;
2220         int                      rc, rc2;
2221         ENTRY;
2222
2223         DEBUG_REQ(D_INODE, req, DFID": FLR file resync\n", PFID(rr->rr_fid1));
2224
2225         if (info->mti_dlm_req)
2226                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2227
2228         mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
2229         if (IS_ERR(mo))
2230                 GOTO(out, rc = PTR_ERR(mo));
2231
2232         if (!mdt_object_exists(mo))
2233                 GOTO(out_obj, rc = -ENOENT);
2234
2235         if (!S_ISREG(lu_object_attr(&mo->mot_obj)))
2236                 GOTO(out_obj, rc = -EINVAL);
2237
2238         if (mdt_object_remote(mo))
2239                 GOTO(out_obj, rc = -EREMOTE);
2240
2241         lease = ldlm_handle2lock(rr->rr_handle);
2242         if (lease == NULL)
2243                 GOTO(out_obj, rc = -ESTALE);
2244
2245         /* It's really necessary to grab open_sem and check if the lease lock
2246          * has been lost. There would exist a concurrent writer coming in and
2247          * generating some dirty data in memory cache, the writeback would fail
2248          * after the layout version is increased by MDS_REINT_RESYNC RPC. */
2249         if (!down_write_trylock(&mo->mot_open_sem))
2250                 GOTO(out_put_lease, rc = -EBUSY);
2251
2252         lock_res_and_lock(lease);
2253         lease_broken = ldlm_is_cancel(lease);
2254         unlock_res_and_lock(lease);
2255         if (lease_broken)
2256                 GOTO(out_unlock, rc = -EBUSY);
2257
2258         /* the file has yet opened by anyone else after we took the lease. */
2259         layout.mlc_opc = MD_LAYOUT_RESYNC;
2260         rc = mdt_layout_change(info, mo, &layout);
2261         if (rc)
2262                 GOTO(out_unlock, rc = -EBUSY);
2263
2264         ma->ma_need = MA_INODE;
2265         ma->ma_valid = 0;
2266         rc = mdt_attr_get_complex(info, mo, ma);
2267         if (rc != 0)
2268                 GOTO(out_unlock, rc);
2269
2270         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
2271         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
2272
2273         EXIT;
2274 out_unlock:
2275         up_write(&mo->mot_open_sem);
2276 out_put_lease:
2277         LDLM_LOCK_PUT(lease);
2278 out_obj:
2279         mdt_object_put(info->mti_env, mo);
2280 out:
2281         mdt_client_compatibility(info);
2282         rc2 = mdt_fix_reply(info);
2283         if (rc == 0)
2284                 rc = rc2;
2285         return rc;
2286 }
2287
2288 struct mdt_reinter {
2289         int (*mr_handler)(struct mdt_thread_info *, struct mdt_lock_handle *);
2290         enum lprocfs_extra_opc mr_extra_opc;
2291 };
2292
2293 static const struct mdt_reinter mdt_reinters[] = {
2294         [REINT_SETATTR] = {
2295                 .mr_handler = &mdt_reint_setattr,
2296                 .mr_extra_opc = MDS_REINT_SETATTR,
2297         },
2298         [REINT_CREATE] = {
2299                 .mr_handler = &mdt_reint_create,
2300                 .mr_extra_opc = MDS_REINT_CREATE,
2301         },
2302         [REINT_LINK] = {
2303                 .mr_handler = &mdt_reint_link,
2304                 .mr_extra_opc = MDS_REINT_LINK,
2305         },
2306         [REINT_UNLINK] = {
2307                 .mr_handler = &mdt_reint_unlink,
2308                 .mr_extra_opc = MDS_REINT_UNLINK,
2309         },
2310         [REINT_RENAME] = {
2311                 .mr_handler = &mdt_reint_rename,
2312                 .mr_extra_opc = MDS_REINT_RENAME,
2313         },
2314         [REINT_OPEN] = {
2315                 .mr_handler = &mdt_reint_open,
2316                 .mr_extra_opc = MDS_REINT_OPEN,
2317         },
2318         [REINT_SETXATTR] = {
2319                 .mr_handler = &mdt_reint_setxattr,
2320                 .mr_extra_opc = MDS_REINT_SETXATTR,
2321         },
2322         [REINT_RMENTRY] = {
2323                 .mr_handler = &mdt_reint_unlink,
2324                 .mr_extra_opc = MDS_REINT_UNLINK,
2325         },
2326         [REINT_MIGRATE] = {
2327                 .mr_handler = &mdt_reint_migrate,
2328                 .mr_extra_opc = MDS_REINT_RENAME,
2329         },
2330         [REINT_RESYNC] = {
2331                 .mr_handler = &mdt_reint_resync,
2332                 .mr_extra_opc = MDS_REINT_RESYNC,
2333         },
2334 };
2335
2336 int mdt_reint_rec(struct mdt_thread_info *info,
2337                   struct mdt_lock_handle *lhc)
2338 {
2339         const struct mdt_reinter *mr;
2340         int rc;
2341         ENTRY;
2342
2343         if (!(info->mti_rr.rr_opcode < ARRAY_SIZE(mdt_reinters)))
2344                 RETURN(-EPROTO);
2345
2346         mr = &mdt_reinters[info->mti_rr.rr_opcode];
2347         if (mr->mr_handler == NULL)
2348                 RETURN(-EPROTO);
2349
2350         rc = (*mr->mr_handler)(info, lhc);
2351
2352         lprocfs_counter_incr(ptlrpc_req2svc(mdt_info_req(info))->srv_stats,
2353                              PTLRPC_LAST_CNTR + mr->mr_extra_opc);
2354
2355         RETURN(rc);
2356 }