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