Whamcloud - gitweb
LU-4017 quota: cleanup to improve quota codes
[fs/lustre-release.git] / lustre / mdt / mdt_reint.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/mdt/mdt_reint.c
33  *
34  * Lustre Metadata Target (mdt) reintegration routines
35  *
36  * Author: Peter Braam <braam@clusterfs.com>
37  * Author: Andreas Dilger <adilger@clusterfs.com>
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Huang Hua <huanghua@clusterfs.com>
40  * Author: Yury Umanets <umka@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <lprocfs_status.h>
46 #include "mdt_internal.h"
47 #include <lustre_lmv.h>
48
49 static inline void mdt_reint_init_ma(struct mdt_thread_info *info,
50                                      struct md_attr *ma)
51 {
52         ma->ma_need = MA_INODE;
53         ma->ma_valid = 0;
54 }
55
56 /**
57  * Get version of object by fid.
58  *
59  * Return real version or ENOENT_VERSION if object doesn't exist
60  */
61 static void mdt_obj_version_get(struct mdt_thread_info *info,
62                                 struct mdt_object *o, __u64 *version)
63 {
64         LASSERT(o);
65
66         if (mdt_object_exists(o) && !mdt_object_remote(o) &&
67             !fid_is_obf(mdt_object_fid(o)))
68                 *version = dt_version_get(info->mti_env, mdt_obj2dt(o));
69         else
70                 *version = ENOENT_VERSION;
71         CDEBUG(D_INODE, "FID "DFID" version is %#llx\n",
72                PFID(mdt_object_fid(o)), *version);
73 }
74
75 /**
76  * Check version is correct.
77  *
78  * Should be called only during replay.
79  */
80 static int mdt_version_check(struct ptlrpc_request *req,
81                              __u64 version, int idx)
82 {
83         __u64 *pre_ver = lustre_msg_get_versions(req->rq_reqmsg);
84         ENTRY;
85
86         if (!exp_connect_vbr(req->rq_export))
87                 RETURN(0);
88
89         LASSERT(req_is_replay(req));
90         /** VBR: version is checked always because costs nothing */
91         LASSERT(idx < PTLRPC_NUM_VERSIONS);
92         /** Sanity check for malformed buffers */
93         if (pre_ver == NULL) {
94                 CERROR("No versions in request buffer\n");
95                 spin_lock(&req->rq_export->exp_lock);
96                 req->rq_export->exp_vbr_failed = 1;
97                 spin_unlock(&req->rq_export->exp_lock);
98                 RETURN(-EOVERFLOW);
99         } else if (pre_ver[idx] != version) {
100                 CDEBUG(D_INODE, "Version mismatch %#llx != %#llx\n",
101                        pre_ver[idx], version);
102                 spin_lock(&req->rq_export->exp_lock);
103                 req->rq_export->exp_vbr_failed = 1;
104                 spin_unlock(&req->rq_export->exp_lock);
105                 RETURN(-EOVERFLOW);
106         }
107         RETURN(0);
108 }
109
110 /**
111  * Save pre-versions in reply.
112  */
113 static void mdt_version_save(struct ptlrpc_request *req, __u64 version,
114                              int idx)
115 {
116         __u64 *reply_ver;
117
118         if (!exp_connect_vbr(req->rq_export))
119                 return;
120
121         LASSERT(!req_is_replay(req));
122         LASSERT(req->rq_repmsg != NULL);
123         reply_ver = lustre_msg_get_versions(req->rq_repmsg);
124         if (reply_ver)
125                 reply_ver[idx] = version;
126 }
127
128 /**
129  * Save enoent version, it is needed when it is obvious that object doesn't
130  * exist, e.g. child during create.
131  */
132 static void mdt_enoent_version_save(struct mdt_thread_info *info, int idx)
133 {
134         /* save version of file name for replay, it must be ENOENT here */
135         if (!req_is_replay(mdt_info_req(info))) {
136                 info->mti_ver[idx] = ENOENT_VERSION;
137                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
138         }
139 }
140
141 /**
142  * Get version from disk and save in reply buffer.
143  *
144  * Versions are saved in reply only during normal operations not replays.
145  */
146 void mdt_version_get_save(struct mdt_thread_info *info,
147                           struct mdt_object *mto, int idx)
148 {
149         /* don't save versions during replay */
150         if (!req_is_replay(mdt_info_req(info))) {
151                 mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
152                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
153         }
154 }
155
156 /**
157  * Get version from disk and check it, no save in reply.
158  */
159 int mdt_version_get_check(struct mdt_thread_info *info,
160                           struct mdt_object *mto, int idx)
161 {
162         /* only check versions during replay */
163         if (!req_is_replay(mdt_info_req(info)))
164                 return 0;
165
166         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
167         return mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
168 }
169
170 /**
171  * Get version from disk and check if recovery or just save.
172  */
173 int mdt_version_get_check_save(struct mdt_thread_info *info,
174                                struct mdt_object *mto, int idx)
175 {
176         int rc = 0;
177
178         mdt_obj_version_get(info, mto, &info->mti_ver[idx]);
179         if (req_is_replay(mdt_info_req(info)))
180                 rc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx],
181                                        idx);
182         else
183                 mdt_version_save(mdt_info_req(info), info->mti_ver[idx], idx);
184         return rc;
185 }
186
187 /**
188  * Lookup with version checking.
189  *
190  * This checks version of 'name'. Many reint functions uses 'name' for child not
191  * FID, therefore we need to get object by name and check its version.
192  */
193 static int mdt_lookup_version_check(struct mdt_thread_info *info,
194                                     struct mdt_object *p,
195                                     const struct lu_name *lname,
196                                     struct lu_fid *fid, int idx)
197 {
198         int rc, vbrc;
199
200         rc = mdo_lookup(info->mti_env, mdt_object_child(p), lname, fid,
201                         &info->mti_spec);
202         /* Check version only during replay */
203         if (!req_is_replay(mdt_info_req(info)))
204                 return rc;
205
206         info->mti_ver[idx] = ENOENT_VERSION;
207         if (rc == 0) {
208                 struct mdt_object *child;
209                 child = mdt_object_find(info->mti_env, info->mti_mdt, fid);
210                 if (likely(!IS_ERR(child))) {
211                         mdt_obj_version_get(info, child, &info->mti_ver[idx]);
212                         mdt_object_put(info->mti_env, child);
213                 }
214         }
215         vbrc = mdt_version_check(mdt_info_req(info), info->mti_ver[idx], idx);
216         return vbrc ? vbrc : rc;
217
218 }
219
220 static inline int mdt_remote_permission_check(struct mdt_thread_info *info)
221 {
222         struct lu_ucred *uc  = mdt_ucred(info);
223         struct mdt_device *mdt = info->mti_mdt;
224
225         if (!md_capable(uc, CFS_CAP_SYS_ADMIN)) {
226                 if (uc->uc_gid != mdt->mdt_enable_remote_dir_gid &&
227                     mdt->mdt_enable_remote_dir_gid != -1)
228                         return -EPERM;
229         }
230
231         return 0;
232 }
233
234 /**
235  * mdt_remote_permission: Check whether the remote operation is permitted,
236  *
237  * Only sysadmin can create remote directory / striped directory,
238  * migrate directory and set default stripedEA on directory, unless
239  *
240  * lctl set_param mdt.*.enable_remote_dir_gid=allow_gid.
241  *
242  * param[in] info: mdt_thread_info.
243  *
244  * retval       = 0 remote operation is allowed.
245  *              < 0 remote operation is denied.
246  */
247 static int mdt_remote_permission(struct mdt_thread_info *info)
248 {
249         struct md_op_spec *spec = &info->mti_spec;
250         struct lu_attr *attr = &info->mti_attr.ma_attr;
251         struct obd_export *exp = mdt_info_req(info)->rq_export;
252         int rc;
253
254         if (info->mti_rr.rr_opcode == REINT_MIGRATE) {
255                 rc = mdt_remote_permission_check(info);
256                 if (rc != 0)
257                         return rc;
258         }
259
260         if (info->mti_rr.rr_opcode == REINT_CREATE &&
261             (S_ISDIR(attr->la_mode) && spec->u.sp_ea.eadata != NULL &&
262              spec->u.sp_ea.eadatalen != 0)) {
263                 const struct lmv_user_md *lum = spec->u.sp_ea.eadata;
264
265                 /* Only new clients can create remote dir( >= 2.4) and
266                  * striped dir(>= 2.6), old client will return -ENOTSUPP */
267                 if (!mdt_is_dne_client(exp))
268                         return -ENOTSUPP;
269
270                 if (le32_to_cpu(lum->lum_stripe_count) > 1 &&
271                     !mdt_is_striped_client(exp))
272                         return -ENOTSUPP;
273
274                 rc = mdt_remote_permission_check(info);
275                 if (rc != 0)
276                         return rc;
277         }
278
279         if (info->mti_rr.rr_opcode == REINT_SETATTR) {
280                 struct md_attr *ma = &info->mti_attr;
281
282                 if ((ma->ma_valid & MA_LMV)) {
283                         rc = mdt_remote_permission_check(info);
284                         if (rc != 0)
285                                 return rc;
286                 }
287         }
288
289         return 0;
290 }
291
292 static int mdt_unlock_slaves(struct mdt_thread_info *mti,
293                              struct mdt_object *obj, __u64 ibits,
294                              struct mdt_lock_handle *s0_lh,
295                              struct mdt_object *s0_obj,
296                              struct ldlm_enqueue_info *einfo,
297                              int decref)
298 {
299         union ldlm_policy_data *policy = &mti->mti_policy;
300         struct lustre_handle_array *slave_locks = einfo->ei_cbdata;
301         int i;
302         int rc;
303         ENTRY;
304
305         if (!S_ISDIR(obj->mot_header.loh_attr))
306                 RETURN(0);
307
308         /* Unlock stripe 0 */
309         if (s0_lh != NULL && lustre_handle_is_used(&s0_lh->mlh_reg_lh)) {
310                 LASSERT(s0_obj != NULL);
311                 mdt_object_unlock_put(mti, s0_obj, s0_lh, decref);
312         }
313
314         memset(policy, 0, sizeof(*policy));
315         policy->l_inodebits.bits = ibits;
316
317         if (slave_locks != NULL) {
318                 LASSERT(s0_lh != NULL);
319                 for (i = 1; i < slave_locks->count; i++) {
320                         /* borrow s0_lh temporarily to do mdt unlock */
321                         mdt_lock_reg_init(s0_lh, einfo->ei_mode);
322                         s0_lh->mlh_rreg_lh = slave_locks->handles[i];
323                         mdt_object_unlock(mti, NULL, s0_lh, decref);
324                         slave_locks->handles[i].cookie = 0ull;
325                 }
326         }
327
328         rc = mo_object_unlock(mti->mti_env, mdt_object_child(obj), einfo,
329                               policy);
330         RETURN(rc);
331 }
332
333 static int mdt_init_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
334                            struct lu_fid *fid)
335 {
336         struct lu_buf *buf = &mti->mti_buf;
337         struct lmv_mds_md_v1 *lmv;
338         int rc;
339         ENTRY;
340
341         if (!S_ISDIR(obj->mot_header.loh_attr))
342                 RETURN(0);
343
344         buf->lb_buf = mti->mti_xattr_buf;
345         buf->lb_len = sizeof(mti->mti_xattr_buf);
346         rc = mo_xattr_get(mti->mti_env, mdt_object_child(obj), buf,
347                           XATTR_NAME_LMV);
348         if (rc == -ERANGE) {
349                 rc = mdt_big_xattr_get(mti, obj, XATTR_NAME_LMV);
350                 if (rc > 0) {
351                         buf->lb_buf = mti->mti_big_lmm;
352                         buf->lb_len = mti->mti_big_lmmsize;
353                 }
354         }
355
356         if (rc == -ENODATA || rc == -ENOENT)
357                 RETURN(0);
358
359         if (rc <= 0)
360                 RETURN(rc);
361
362         lmv = buf->lb_buf;
363         if (le32_to_cpu(lmv->lmv_magic) != LMV_MAGIC_V1)
364                 RETURN(-EINVAL);
365
366         fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[0]);
367
368         RETURN(rc);
369 }
370
371 /**
372  * Lock slave stripes if necessary, the lock handles of slave stripes
373  * will be stored in einfo->ei_cbdata.
374  **/
375 static int mdt_lock_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
376                            enum ldlm_mode mode, __u64 ibits,
377                            struct lu_fid *s0_fid,
378                            struct mdt_lock_handle *s0_lh,
379                            struct mdt_object **s0_objp,
380                            struct ldlm_enqueue_info *einfo)
381 {
382         union ldlm_policy_data *policy = &mti->mti_policy;
383         int rc;
384         ENTRY;
385
386         memset(einfo, 0, sizeof(*einfo));
387
388         rc = mdt_init_slaves(mti, obj, s0_fid);
389         if (rc <= 0)
390                 RETURN(rc);
391
392         LASSERT(S_ISDIR(obj->mot_header.loh_attr));
393
394         if (!lu_fid_eq(s0_fid, mdt_object_fid(obj))) {
395                 /* Except migrating object, whose 0_stripe and master
396                  * object are the same object, 0_stripe and master
397                  * object are different, though they are in the same
398                  * MDT, to avoid adding osd_object_lock here, so we
399                  * will enqueue the stripe0 lock in MDT0 for now */
400                 *s0_objp = mdt_object_find(mti->mti_env, mti->mti_mdt, s0_fid);
401                 if (IS_ERR(*s0_objp))
402                         RETURN(PTR_ERR(*s0_objp));
403
404                 rc = mdt_reint_object_lock(mti, *s0_objp, s0_lh, ibits, true);
405                 if (rc < 0) {
406                         mdt_object_put(mti->mti_env, *s0_objp);
407                         RETURN(rc);
408                 }
409         }
410
411         einfo->ei_type = LDLM_IBITS;
412         einfo->ei_mode = mode;
413         einfo->ei_cb_bl = mdt_remote_blocking_ast;
414         einfo->ei_cb_local_bl = mdt_blocking_ast;
415         einfo->ei_cb_cp = ldlm_completion_ast;
416         einfo->ei_enq_slave = 1;
417         einfo->ei_namespace = mti->mti_mdt->mdt_namespace;
418         memset(policy, 0, sizeof(*policy));
419         policy->l_inodebits.bits = ibits;
420
421         rc = mo_object_lock(mti->mti_env, mdt_object_child(obj), NULL, einfo,
422                             policy);
423         RETURN(rc);
424 }
425
426 /*
427  * VBR: we save three versions in reply:
428  * 0 - parent. Check that parent version is the same during replay.
429  * 1 - name. Version of 'name' if file exists with the same name or
430  * ENOENT_VERSION, it is needed because file may appear due to missed replays.
431  * 2 - child. Version of child by FID. Must be ENOENT. It is mostly sanity
432  * check.
433  */
434 static int mdt_md_create(struct mdt_thread_info *info)
435 {
436         struct mdt_device       *mdt = info->mti_mdt;
437         struct mdt_object       *parent;
438         struct mdt_object       *child;
439         struct mdt_lock_handle  *lh;
440         struct mdt_body         *repbody;
441         struct md_attr          *ma = &info->mti_attr;
442         struct mdt_reint_record *rr = &info->mti_rr;
443         int rc;
444         ENTRY;
445
446         DEBUG_REQ(D_INODE, mdt_info_req(info), "Create  ("DNAME"->"DFID") "
447                   "in "DFID,
448                   PNAME(&rr->rr_name), PFID(rr->rr_fid2), PFID(rr->rr_fid1));
449
450         if (!fid_is_md_operative(rr->rr_fid1))
451                 RETURN(-EPERM);
452
453         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
454
455         parent = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
456         if (IS_ERR(parent))
457                 RETURN(PTR_ERR(parent));
458
459         if (!mdt_object_exists(parent))
460                 GOTO(put_parent, rc = -ENOENT);
461
462         lh = &info->mti_lh[MDT_LH_PARENT];
463         mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
464         rc = mdt_object_lock(info, parent, lh, MDS_INODELOCK_UPDATE);
465         if (rc)
466                 GOTO(put_parent, rc);
467
468         if (!mdt_object_remote(parent)) {
469                 rc = mdt_version_get_check_save(info, parent, 0);
470                 if (rc)
471                         GOTO(unlock_parent, rc);
472         }
473
474         /*
475          * Check child name version during replay.
476          * During create replay a file may exist with same name.
477          */
478         rc = mdt_lookup_version_check(info, parent, &rr->rr_name,
479                                       &info->mti_tmp_fid1, 1);
480         if (rc == 0)
481                 GOTO(unlock_parent, rc = -EEXIST);
482
483         /* -ENOENT is expected here */
484         if (rc != -ENOENT)
485                 GOTO(unlock_parent, rc);
486
487         /* save version of file name for replay, it must be ENOENT here */
488         mdt_enoent_version_save(info, 1);
489
490         child = mdt_object_new(info->mti_env, mdt, rr->rr_fid2);
491         if (unlikely(IS_ERR(child)))
492                 GOTO(unlock_parent, rc = PTR_ERR(child));
493
494         rc = mdt_remote_permission(info);
495         if (rc != 0)
496                 GOTO(put_child, rc);
497
498         ma->ma_need = MA_INODE;
499         ma->ma_valid = 0;
500
501         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
502                         OBD_FAIL_MDS_REINT_CREATE_WRITE);
503
504         /* Version of child will be updated on disk. */
505         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
506         rc = mdt_version_get_check_save(info, child, 2);
507         if (rc)
508                 GOTO(put_child, rc);
509
510         /* Let lower layer know current lock mode. */
511         info->mti_spec.sp_cr_mode = mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
512
513         /*
514          * Do not perform lookup sanity check. We know that name does
515          * not exist.
516          */
517         info->mti_spec.sp_cr_lookup = 0;
518         info->mti_spec.sp_feat = &dt_directory_features;
519
520         rc = mdo_create(info->mti_env, mdt_object_child(parent), &rr->rr_name,
521                         mdt_object_child(child), &info->mti_spec, ma);
522         if (rc == 0)
523                 rc = mdt_attr_get_complex(info, child, ma);
524
525         if (rc < 0)
526                 GOTO(put_child, rc);
527
528         /*
529          * On DNE, we need to eliminate dependey between 'mkdir a' and
530          * 'mkdir a/b' if b is a striped directory, to achieve this, two
531          * things are done below:
532          * 1. save child and slaves lock.
533          * 2. if the child is a striped directory, relock parent so to
534          *    compare against with COS locks to ensure parent was
535          *    committed to disk.
536          */
537         if (mdt_slc_is_enabled(mdt) && S_ISDIR(ma->ma_attr.la_mode)) {
538                 struct mdt_lock_handle *lhc;
539                 struct mdt_lock_handle *s0_lh;
540                 struct mdt_object *s0_obj = NULL;
541                 struct ldlm_enqueue_info *einfo;
542                 struct lu_fid *s0_fid = &info->mti_tmp_fid1;
543                 bool cos_incompat = false;
544
545                 rc = mdt_init_slaves(info, child, s0_fid);
546                 if (rc > 0) {
547                         cos_incompat = true;
548                         if (!mdt_object_remote(parent)) {
549                                 mdt_object_unlock(info, parent, lh, 1);
550                                 mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
551                                 rc = mdt_reint_object_lock(info, parent, lh,
552                                                            MDS_INODELOCK_UPDATE,
553                                                            true);
554                                 if (rc)
555                                         GOTO(put_child, rc);
556                         }
557                 }
558
559                 einfo = &info->mti_einfo;
560                 lhc = &info->mti_lh[MDT_LH_CHILD];
561                 mdt_lock_handle_init(lhc);
562                 mdt_lock_reg_init(lhc, LCK_PW);
563                 rc = mdt_reint_object_lock(info, child, lhc,
564                                            MDS_INODELOCK_UPDATE,
565                                            cos_incompat);
566                 if (rc)
567                         GOTO(put_child, rc);
568                 mdt_object_unlock(info, child, lhc, rc);
569
570                 s0_lh = &info->mti_lh[MDT_LH_LOCAL];
571                 mdt_lock_handle_init(s0_lh);
572                 mdt_lock_reg_init(s0_lh, LCK_PW);
573                 rc = mdt_lock_slaves(info, child, LCK_PW, MDS_INODELOCK_UPDATE,
574                                      s0_fid, s0_lh, &s0_obj, einfo);
575                 mdt_unlock_slaves(info, child, MDS_INODELOCK_UPDATE, s0_lh,
576                                   s0_obj, einfo, rc);
577                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_BAD_SLAVE_NAME) && rc == -EIO)
578                         rc = 0;
579         }
580
581         /* Return fid & attr to client. */
582         if (ma->ma_valid & MA_INODE)
583                 mdt_pack_attr2body(info, repbody, &ma->ma_attr,
584                                    mdt_object_fid(child));
585 put_child:
586         mdt_object_put(info->mti_env, child);
587 unlock_parent:
588         mdt_object_unlock(info, parent, lh, rc);
589 put_parent:
590         mdt_object_put(info->mti_env, parent);
591         RETURN(rc);
592 }
593
594 static int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
595                         struct md_attr *ma)
596 {
597         struct mdt_lock_handle  *lh;
598         int do_vbr = ma->ma_attr.la_valid &
599                         (LA_MODE | LA_UID | LA_GID | LA_PROJID | LA_FLAGS);
600         __u64 lockpart = MDS_INODELOCK_UPDATE;
601         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
602         struct lu_fid *s0_fid = &info->mti_tmp_fid1;
603         struct mdt_lock_handle *s0_lh = NULL;
604         struct mdt_object *s0_obj = NULL;
605         bool cos_incompat = false;
606         int rc;
607         ENTRY;
608
609         rc = mdt_init_slaves(info, mo, s0_fid);
610         if (rc > 0)
611                 cos_incompat = true;
612
613         lh = &info->mti_lh[MDT_LH_PARENT];
614         mdt_lock_reg_init(lh, LCK_PW);
615
616         /* Even though the new MDT will grant PERM lock to the old
617          * client, but the old client will almost ignore that during
618          * So it needs to revoke both LOOKUP and PERM lock here, so
619          * both new and old client can cancel the dcache */
620         if (ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID))
621                 lockpart |= MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
622
623         rc = mdt_reint_object_lock(info, mo, lh, lockpart, cos_incompat);
624         if (rc != 0)
625                 RETURN(rc);
626
627         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
628         mdt_lock_reg_init(s0_lh, LCK_PW);
629         rc = mdt_lock_slaves(info, mo, LCK_PW, lockpart, s0_fid, s0_lh, &s0_obj,
630                              einfo);
631         if (rc != 0)
632                 GOTO(out_unlock, rc);
633
634         /* all attrs are packed into mti_attr in unpack_setattr */
635         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
636                        OBD_FAIL_MDS_REINT_SETATTR_WRITE);
637
638         /* This is only for set ctime when rename's source is on remote MDS. */
639         if (unlikely(ma->ma_attr.la_valid == LA_CTIME))
640                 ma->ma_attr_flags |= MDS_VTX_BYPASS;
641
642         /* VBR: update version if attr changed are important for recovery */
643         if (do_vbr) {
644                 /* update on-disk version of changed object */
645                 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mo));
646                 rc = mdt_version_get_check_save(info, mo, 0);
647                 if (rc)
648                         GOTO(out_unlock, rc);
649         }
650
651         /* Ensure constant striping during chown(). See LU-2789. */
652         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
653                 mutex_lock(&mo->mot_lov_mutex);
654
655         /* all attrs are packed into mti_attr in unpack_setattr */
656         rc = mo_attr_set(info->mti_env, mdt_object_child(mo), ma);
657
658         if (ma->ma_attr.la_valid & (LA_UID|LA_GID|LA_PROJID))
659                 mutex_unlock(&mo->mot_lov_mutex);
660
661         if (rc != 0)
662                 GOTO(out_unlock, rc);
663
664         EXIT;
665 out_unlock:
666         mdt_unlock_slaves(info, mo, lockpart, s0_lh, s0_obj, einfo, rc);
667         mdt_object_unlock(info, mo, lh, rc);
668         return rc;
669 }
670
671 /**
672  * Check HSM flags and add HS_DIRTY flag if relevant.
673  *
674  * A file could be set dirty only if it has a copy in the backend (HS_EXISTS)
675  * and is not RELEASED.
676  */
677 int mdt_add_dirty_flag(struct mdt_thread_info *info, struct mdt_object *mo,
678                         struct md_attr *ma)
679 {
680         int rc;
681         ENTRY;
682
683         /* If the file was modified, add the dirty flag */
684         ma->ma_need = MA_HSM;
685         rc = mdt_attr_get_complex(info, mo, ma);
686         if (rc) {
687                 CERROR("file attribute read error for "DFID": %d.\n",
688                         PFID(mdt_object_fid(mo)), rc);
689                 RETURN(rc);
690         }
691
692         /* If an up2date copy exists in the backend, add dirty flag */
693         if ((ma->ma_valid & MA_HSM) && (ma->ma_hsm.mh_flags & HS_EXISTS)
694             && !(ma->ma_hsm.mh_flags & (HS_DIRTY|HS_RELEASED))) {
695                 struct mdt_lock_handle  *lh = &info->mti_lh[MDT_LH_CHILD];
696
697                 ma->ma_hsm.mh_flags |= HS_DIRTY;
698
699                 mdt_lock_reg_init(lh, LCK_PW);
700                 rc = mdt_object_lock(info, mo, lh, MDS_INODELOCK_XATTR);
701                 if (rc != 0)
702                         RETURN(rc);
703
704                 rc = mdt_hsm_attr_set(info, mo, &ma->ma_hsm);
705                 if (rc)
706                         CERROR("file attribute change error for "DFID": %d\n",
707                                 PFID(mdt_object_fid(mo)), rc);
708                 mdt_object_unlock(info, mo, lh, rc);
709         }
710
711         RETURN(rc);
712 }
713
714 static int mdt_reint_setattr(struct mdt_thread_info *info,
715                              struct mdt_lock_handle *lhc)
716 {
717         struct md_attr          *ma = &info->mti_attr;
718         struct mdt_reint_record *rr = &info->mti_rr;
719         struct ptlrpc_request   *req = mdt_info_req(info);
720         struct mdt_object       *mo;
721         struct mdt_body         *repbody;
722         int                      rc, rc2;
723         ENTRY;
724
725         DEBUG_REQ(D_INODE, req, "setattr "DFID" %x", PFID(rr->rr_fid1),
726                   (unsigned int)ma->ma_attr.la_valid);
727
728         if (info->mti_dlm_req)
729                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
730
731         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
732         mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
733         if (IS_ERR(mo))
734                 GOTO(out, rc = PTR_ERR(mo));
735
736         if (!mdt_object_exists(mo))
737                 GOTO(out_put, rc = -ENOENT);
738
739         if (mdt_object_remote(mo))
740                 GOTO(out_put, rc = -EREMOTE);
741
742         if ((ma->ma_attr.la_valid & LA_SIZE) ||
743             (rr->rr_flags & MRF_OPEN_TRUNC)) {
744                 /* Check write access for the O_TRUNC case */
745                 if (mdt_write_read(mo) < 0)
746                         GOTO(out_put, rc = -ETXTBSY);
747         }
748
749         if ((ma->ma_valid & MA_INODE) && ma->ma_attr.la_valid) {
750                 if (ma->ma_valid & MA_LOV)
751                         GOTO(out_put, rc = -EPROTO);
752
753                 rc = mdt_attr_set(info, mo, ma);
754                 if (rc)
755                         GOTO(out_put, rc);
756         } else if ((ma->ma_valid & (MA_LOV | MA_LMV)) &&
757                    (ma->ma_valid & MA_INODE)) {
758                 struct lu_buf *buf  = &info->mti_buf;
759                 struct mdt_lock_handle  *lh;
760
761                 rc = mdt_remote_permission(info);
762                 if (rc < 0)
763                         GOTO(out_put, rc);
764
765                 if (ma->ma_attr.la_valid != 0)
766                         GOTO(out_put, rc = -EPROTO);
767
768                 lh = &info->mti_lh[MDT_LH_PARENT];
769                 mdt_lock_reg_init(lh, LCK_PW);
770
771                 rc = mdt_object_lock(info, mo, lh, MDS_INODELOCK_XATTR);
772                 if (rc != 0)
773                         GOTO(out_put, rc);
774
775                 if (ma->ma_valid & MA_LOV) {
776                         buf->lb_buf = ma->ma_lmm;
777                         buf->lb_len = ma->ma_lmm_size;
778                 } else {
779                         buf->lb_buf = ma->ma_lmv;
780                         buf->lb_len = ma->ma_lmv_size;
781                 }
782                 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo), buf,
783                                   (ma->ma_valid & MA_LOV) ?
784                                         XATTR_NAME_LOV : XATTR_NAME_DEFAULT_LMV,
785                                   0);
786
787                 mdt_object_unlock(info, mo, lh, rc);
788                 if (rc)
789                         GOTO(out_put, rc);
790         } else {
791                 GOTO(out_put, rc = -EPROTO);
792         }
793
794         /* If file data is modified, add the dirty flag */
795         if (ma->ma_attr_flags & MDS_DATA_MODIFIED)
796                 rc = mdt_add_dirty_flag(info, mo, ma);
797
798         ma->ma_need = MA_INODE;
799         ma->ma_valid = 0;
800         rc = mdt_attr_get_complex(info, mo, ma);
801         if (rc != 0)
802                 GOTO(out_put, rc);
803
804         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
805
806         EXIT;
807 out_put:
808         mdt_object_put(info->mti_env, mo);
809 out:
810         if (rc == 0)
811                 mdt_counter_incr(req, LPROC_MDT_SETATTR);
812
813         mdt_client_compatibility(info);
814         rc2 = mdt_fix_reply(info);
815         if (rc == 0)
816                 rc = rc2;
817         return rc;
818 }
819
820 static int mdt_reint_create(struct mdt_thread_info *info,
821                             struct mdt_lock_handle *lhc)
822 {
823         struct ptlrpc_request   *req = mdt_info_req(info);
824         int                     rc;
825         ENTRY;
826
827         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_CREATE))
828                 RETURN(err_serious(-ESTALE));
829
830         if (info->mti_dlm_req)
831                 ldlm_request_cancel(mdt_info_req(info),
832                                     info->mti_dlm_req, 0, LATF_SKIP);
833
834         if (!lu_name_is_valid(&info->mti_rr.rr_name))
835                 RETURN(-EPROTO);
836
837         switch (info->mti_attr.ma_attr.la_mode & S_IFMT) {
838         case S_IFDIR:
839                 mdt_counter_incr(req, LPROC_MDT_MKDIR);
840                 break;
841         case S_IFREG:
842         case S_IFLNK:
843         case S_IFCHR:
844         case S_IFBLK:
845         case S_IFIFO:
846         case S_IFSOCK:
847                 /* Special file should stay on the same node as parent. */
848                 mdt_counter_incr(req, LPROC_MDT_MKNOD);
849                 break;
850         default:
851                 CERROR("%s: Unsupported mode %o\n",
852                        mdt_obd_name(info->mti_mdt),
853                        info->mti_attr.ma_attr.la_mode);
854                 RETURN(err_serious(-EOPNOTSUPP));
855         }
856
857         rc = mdt_md_create(info);
858         RETURN(rc);
859 }
860
861 /*
862  * VBR: save parent version in reply and child version getting by its name.
863  * Version of child is getting and checking during its lookup. If
864  */
865 static int mdt_reint_unlink(struct mdt_thread_info *info,
866                             struct mdt_lock_handle *lhc)
867 {
868         struct mdt_reint_record *rr = &info->mti_rr;
869         struct ptlrpc_request *req = mdt_info_req(info);
870         struct md_attr *ma = &info->mti_attr;
871         struct lu_fid *child_fid = &info->mti_tmp_fid1;
872         struct mdt_object *mp;
873         struct mdt_object *mc;
874         struct mdt_lock_handle *parent_lh;
875         struct mdt_lock_handle *child_lh;
876         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
877         struct lu_fid *s0_fid = &info->mti_tmp_fid2;
878         struct mdt_lock_handle *s0_lh = NULL;
879         struct mdt_object *s0_obj = NULL;
880         __u64 lock_ibits;
881         bool cos_incompat = false;
882         int no_name = 0;
883         int rc;
884         ENTRY;
885
886         DEBUG_REQ(D_INODE, req, "unlink "DFID"/"DNAME"", PFID(rr->rr_fid1),
887                   PNAME(&rr->rr_name));
888
889         if (info->mti_dlm_req)
890                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
891
892         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNLINK))
893                 RETURN(err_serious(-ENOENT));
894
895         if (!fid_is_md_operative(rr->rr_fid1))
896                 RETURN(-EPERM);
897
898         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
899         if (IS_ERR(mp))
900                 RETURN(PTR_ERR(mp));
901
902         if (mdt_object_remote(mp)) {
903                 cos_incompat = true;
904         } else {
905                 rc = mdt_version_get_check_save(info, mp, 0);
906                 if (rc)
907                         GOTO(put_parent, rc);
908         }
909
910 relock:
911         parent_lh = &info->mti_lh[MDT_LH_PARENT];
912         mdt_lock_pdo_init(parent_lh, LCK_PW, &rr->rr_name);
913         rc = mdt_reint_object_lock(info, mp, parent_lh, MDS_INODELOCK_UPDATE,
914                                    cos_incompat);
915         if (rc != 0)
916                 GOTO(put_parent, rc);
917
918         /* lookup child object along with version checking */
919         fid_zero(child_fid);
920         rc = mdt_lookup_version_check(info, mp, &rr->rr_name, child_fid, 1);
921         if (rc != 0) {
922                 /* Name might not be able to find during resend of
923                  * remote unlink, considering following case.
924                  * dir_A is a remote directory, the name entry of
925                  * dir_A is on MDT0, the directory is on MDT1,
926                  *
927                  * 1. client sends unlink req to MDT1.
928                  * 2. MDT1 sends name delete update to MDT0.
929                  * 3. name entry is being deleted in MDT0 synchronously.
930                  * 4. MDT1 is restarted.
931                  * 5. client resends unlink req to MDT1. So it can not
932                  *    find the name entry on MDT0 anymore.
933                  * In this case, MDT1 only needs to destory the local
934                  * directory.
935                  * */
936                 if (mdt_object_remote(mp) && rc == -ENOENT &&
937                     !fid_is_zero(rr->rr_fid2) &&
938                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
939                         no_name = 1;
940                         *child_fid = *rr->rr_fid2;
941                  } else {
942                         GOTO(unlock_parent, rc);
943                  }
944         }
945
946         if (!fid_is_md_operative(child_fid))
947                 GOTO(unlock_parent, rc = -EPERM);
948
949         /* We will lock the child regardless it is local or remote. No harm. */
950         mc = mdt_object_find(info->mti_env, info->mti_mdt, child_fid);
951         if (IS_ERR(mc))
952                 GOTO(unlock_parent, rc = PTR_ERR(mc));
953
954         if (!cos_incompat && mdt_init_slaves(info, mc, s0_fid) > 0) {
955                 cos_incompat = true;
956                 mdt_object_put(info->mti_env, mc);
957                 mdt_object_unlock(info, mp, parent_lh, -EAGAIN);
958                 goto relock;
959         }
960
961         child_lh = &info->mti_lh[MDT_LH_CHILD];
962         mdt_lock_reg_init(child_lh, LCK_EX);
963         if (info->mti_spec.sp_rm_entry) {
964                 struct lu_ucred *uc  = mdt_ucred(info);
965
966                 if (!mdt_is_dne_client(req->rq_export))
967                         /* Return -ENOTSUPP for old client */
968                         GOTO(put_child, rc = -ENOTSUPP);
969
970                 if (!md_capable(uc, CFS_CAP_SYS_ADMIN))
971                         GOTO(put_child, rc = -EPERM);
972
973                 ma->ma_need = MA_INODE;
974                 ma->ma_valid = 0;
975                 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
976                                 NULL, &rr->rr_name, ma, no_name);
977                 GOTO(put_child, rc);
978         }
979
980         if (mdt_object_remote(mc)) {
981                 struct mdt_body  *repbody;
982
983                 if (!fid_is_zero(rr->rr_fid2)) {
984                         CDEBUG(D_INFO, "%s: name "DNAME" cannot find "DFID"\n",
985                                mdt_obd_name(info->mti_mdt),
986                                PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
987                         GOTO(put_child, rc = -ENOENT);
988                 }
989                 CDEBUG(D_INFO, "%s: name "DNAME": "DFID" is on another MDT\n",
990                        mdt_obd_name(info->mti_mdt),
991                        PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
992
993                 if (!mdt_is_dne_client(req->rq_export))
994                         /* Return -ENOTSUPP for old client */
995                         GOTO(put_child, rc = -ENOTSUPP);
996
997                 /* Revoke the LOOKUP lock of the remote object granted by
998                  * this MDT. Since the unlink will happen on another MDT,
999                  * it will release the LOOKUP lock right away. Then What
1000                  * would happen if another client try to grab the LOOKUP
1001                  * lock at the same time with unlink XXX */
1002                 mdt_object_lock(info, mc, child_lh, MDS_INODELOCK_LOOKUP);
1003                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1004                 LASSERT(repbody != NULL);
1005                 repbody->mbo_fid1 = *mdt_object_fid(mc);
1006                 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
1007                 GOTO(unlock_child, rc = -EREMOTE);
1008         }
1009         /* We used to acquire MDS_INODELOCK_FULL here but we can't do
1010          * this now because a running HSM restore on the child (unlink
1011          * victim) will hold the layout lock. See LU-4002. */
1012         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
1013         if (mdt_object_remote(mp)) {
1014                 /* Enqueue lookup lock from parent MDT */
1015                 rc = mdt_remote_object_lock(info, mp, mdt_object_fid(mc),
1016                                             &child_lh->mlh_rreg_lh,
1017                                             child_lh->mlh_rreg_mode,
1018                                             MDS_INODELOCK_LOOKUP, false, false);
1019                 if (rc != ELDLM_OK)
1020                         GOTO(put_child, rc);
1021
1022                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1023         }
1024
1025         rc = mdt_reint_object_lock(info, mc, child_lh, lock_ibits,
1026                                    cos_incompat);
1027         if (rc != 0)
1028                 GOTO(unlock_child, rc);
1029
1030         /*
1031          * Now we can only make sure we need MA_INODE, in mdd layer, will check
1032          * whether need MA_LOV and MA_COOKIE.
1033          */
1034         ma->ma_need = MA_INODE;
1035         ma->ma_valid = 0;
1036
1037         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
1038         mdt_lock_reg_init(s0_lh, LCK_EX);
1039         rc = mdt_lock_slaves(info, mc, LCK_EX, MDS_INODELOCK_UPDATE, s0_fid,
1040                              s0_lh, &s0_obj, einfo);
1041         if (rc != 0)
1042                 GOTO(unlock_child, rc);
1043
1044         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1045                        OBD_FAIL_MDS_REINT_UNLINK_WRITE);
1046         /* save version when object is locked */
1047         mdt_version_get_save(info, mc, 1);
1048
1049         mutex_lock(&mc->mot_lov_mutex);
1050
1051         rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
1052                         mdt_object_child(mc), &rr->rr_name, ma, no_name);
1053
1054         mutex_unlock(&mc->mot_lov_mutex);
1055
1056         if (rc == 0 && !lu_object_is_dying(&mc->mot_header))
1057                 rc = mdt_attr_get_complex(info, mc, ma);
1058         if (rc == 0)
1059                 mdt_handle_last_unlink(info, mc, ma);
1060
1061         if (ma->ma_valid & MA_INODE) {
1062                 switch (ma->ma_attr.la_mode & S_IFMT) {
1063                 case S_IFDIR:
1064                         mdt_counter_incr(req, LPROC_MDT_RMDIR);
1065                         break;
1066                 case S_IFREG:
1067                 case S_IFLNK:
1068                 case S_IFCHR:
1069                 case S_IFBLK:
1070                 case S_IFIFO:
1071                 case S_IFSOCK:
1072                         mdt_counter_incr(req, LPROC_MDT_UNLINK);
1073                         break;
1074                 default:
1075                         LASSERTF(0, "bad file type %o unlinking\n",
1076                                  ma->ma_attr.la_mode);
1077                 }
1078         }
1079
1080         EXIT;
1081
1082 unlock_child:
1083         mdt_unlock_slaves(info, mc, MDS_INODELOCK_UPDATE, s0_lh, s0_obj, einfo,
1084                           rc);
1085         mdt_object_unlock(info, mc, child_lh, rc);
1086 put_child:
1087         mdt_object_put(info->mti_env, mc);
1088 unlock_parent:
1089         mdt_object_unlock(info, mp, parent_lh, rc);
1090 put_parent:
1091         mdt_object_put(info->mti_env, mp);
1092         return rc;
1093 }
1094
1095 /*
1096  * VBR: save versions in reply: 0 - parent; 1 - child by fid; 2 - target by
1097  * name.
1098  */
1099 static int mdt_reint_link(struct mdt_thread_info *info,
1100                           struct mdt_lock_handle *lhc)
1101 {
1102         struct mdt_reint_record *rr = &info->mti_rr;
1103         struct ptlrpc_request   *req = mdt_info_req(info);
1104         struct md_attr          *ma = &info->mti_attr;
1105         struct mdt_object       *ms;
1106         struct mdt_object       *mp;
1107         struct mdt_lock_handle  *lhs;
1108         struct mdt_lock_handle  *lhp;
1109         bool cos_incompat;
1110         int rc;
1111         ENTRY;
1112
1113         DEBUG_REQ(D_INODE, req, "link "DFID" to "DFID"/"DNAME,
1114                   PFID(rr->rr_fid1), PFID(rr->rr_fid2), PNAME(&rr->rr_name));
1115
1116         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_LINK))
1117                 RETURN(err_serious(-ENOENT));
1118
1119         if (info->mti_dlm_req)
1120                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1121
1122         /* Invalid case so return error immediately instead of
1123          * processing it */
1124         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2))
1125                 RETURN(-EPERM);
1126
1127         if (!fid_is_md_operative(rr->rr_fid1) ||
1128             !fid_is_md_operative(rr->rr_fid2))
1129                 RETURN(-EPERM);
1130
1131         /* step 1: find target parent dir */
1132         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid2);
1133         if (IS_ERR(mp))
1134                 RETURN(PTR_ERR(mp));
1135
1136         rc = mdt_version_get_check_save(info, mp, 0);
1137         if (rc)
1138                 GOTO(put_parent, rc);
1139
1140         /* step 2: find source */
1141         ms = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1142         if (IS_ERR(ms))
1143                 GOTO(put_parent, rc = PTR_ERR(ms));
1144
1145         if (!mdt_object_exists(ms)) {
1146                 CDEBUG(D_INFO, "%s: "DFID" does not exist.\n",
1147                        mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1));
1148                 GOTO(put_source, rc = -ENOENT);
1149         }
1150
1151         cos_incompat = (mdt_object_remote(mp) || mdt_object_remote(ms));
1152
1153         lhp = &info->mti_lh[MDT_LH_PARENT];
1154         mdt_lock_pdo_init(lhp, LCK_PW, &rr->rr_name);
1155         rc = mdt_reint_object_lock(info, mp, lhp, MDS_INODELOCK_UPDATE,
1156                                    cos_incompat);
1157         if (rc != 0)
1158                 GOTO(put_source, rc);
1159
1160         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1161
1162         lhs = &info->mti_lh[MDT_LH_CHILD];
1163         mdt_lock_reg_init(lhs, LCK_EX);
1164         rc = mdt_reint_object_lock(info, ms, lhs,
1165                                    MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
1166                                    cos_incompat);
1167         if (rc != 0)
1168                 GOTO(unlock_parent, rc);
1169
1170         /* step 3: link it */
1171         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1172                         OBD_FAIL_MDS_REINT_LINK_WRITE);
1173
1174         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(ms));
1175         rc = mdt_version_get_check_save(info, ms, 1);
1176         if (rc)
1177                 GOTO(unlock_source, rc);
1178
1179         /** check target version by name during replay */
1180         rc = mdt_lookup_version_check(info, mp, &rr->rr_name,
1181                                       &info->mti_tmp_fid1, 2);
1182         if (rc != 0 && rc != -ENOENT)
1183                 GOTO(unlock_source, rc);
1184         /* save version of file name for replay, it must be ENOENT here */
1185         if (!req_is_replay(mdt_info_req(info))) {
1186                 if (rc != -ENOENT) {
1187                         CDEBUG(D_INFO, "link target "DNAME" existed!\n",
1188                                PNAME(&rr->rr_name));
1189                         GOTO(unlock_source, rc = -EEXIST);
1190                 }
1191                 info->mti_ver[2] = ENOENT_VERSION;
1192                 mdt_version_save(mdt_info_req(info), info->mti_ver[2], 2);
1193         }
1194
1195         rc = mdo_link(info->mti_env, mdt_object_child(mp),
1196                       mdt_object_child(ms), &rr->rr_name, ma);
1197
1198         if (rc == 0)
1199                 mdt_counter_incr(req, LPROC_MDT_LINK);
1200
1201         EXIT;
1202 unlock_source:
1203         mdt_object_unlock(info, ms, lhs, rc);
1204 unlock_parent:
1205         mdt_object_unlock(info, mp, lhp, rc);
1206 put_source:
1207         mdt_object_put(info->mti_env, ms);
1208 put_parent:
1209         mdt_object_put(info->mti_env, mp);
1210         return rc;
1211 }
1212 /**
1213  * lock the part of the directory according to the hash of the name
1214  * (lh->mlh_pdo_hash) in parallel directory lock.
1215  */
1216 static int mdt_pdir_hash_lock(struct mdt_thread_info *info,
1217                               struct mdt_lock_handle *lh,
1218                               struct mdt_object *obj, __u64 ibits,
1219                               bool cos_incompat)
1220 {
1221         struct ldlm_res_id *res = &info->mti_res_id;
1222         struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1223         union ldlm_policy_data *policy = &info->mti_policy;
1224         __u64 dlmflags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1225         int rc;
1226
1227         /*
1228          * Finish res_id initializing by name hash marking part of
1229          * directory which is taking modification.
1230          */
1231         LASSERT(lh->mlh_pdo_hash != 0);
1232         fid_build_pdo_res_name(mdt_object_fid(obj), lh->mlh_pdo_hash, res);
1233         memset(policy, 0, sizeof(*policy));
1234         policy->l_inodebits.bits = ibits;
1235         if (cos_incompat &&
1236             (lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX))
1237                 dlmflags |= LDLM_FL_COS_INCOMPAT;
1238         /*
1239          * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
1240          * going to be sent to client. If it is - mdt_intent_policy() path will
1241          * fix it up and turn FL_LOCAL flag off.
1242          */
1243         rc = mdt_fid_lock(ns, &lh->mlh_reg_lh, lh->mlh_reg_mode, policy,
1244                           res, dlmflags, &info->mti_exp->exp_handle.h_cookie);
1245         return rc;
1246 }
1247
1248 /**
1249  * Get BFL lock for rename or migrate process.
1250  **/
1251 static int mdt_rename_lock(struct mdt_thread_info *info,
1252                            struct lustre_handle *lh)
1253 {
1254         int     rc;
1255         ENTRY;
1256
1257         if (mdt_seq_site(info->mti_mdt)->ss_node_id != 0) {
1258                 struct lu_fid *fid = &info->mti_tmp_fid1;
1259                 struct mdt_object *obj;
1260
1261                 /* XXX, right now, it has to use object API to
1262                  * enqueue lock cross MDT, so it will enqueue
1263                  * rename lock(with LUSTRE_BFL_FID) by root object */
1264                 lu_root_fid(fid);
1265                 obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1266                 if (IS_ERR(obj))
1267                         RETURN(PTR_ERR(obj));
1268
1269                 rc = mdt_remote_object_lock(info, obj,
1270                                             &LUSTRE_BFL_FID, lh,
1271                                             LCK_EX,
1272                                             MDS_INODELOCK_UPDATE, false, false);
1273                 mdt_object_put(info->mti_env, obj);
1274         } else {
1275                 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1276                 union ldlm_policy_data *policy = &info->mti_policy;
1277                 struct ldlm_res_id *res_id = &info->mti_res_id;
1278                 __u64 flags = 0;
1279
1280                 fid_build_reg_res_name(&LUSTRE_BFL_FID, res_id);
1281                 memset(policy, 0, sizeof *policy);
1282                 policy->l_inodebits.bits = MDS_INODELOCK_UPDATE;
1283                 flags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1284                 rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS, policy,
1285                                            LCK_EX, &flags, ldlm_blocking_ast,
1286                                            ldlm_completion_ast, NULL, NULL, 0,
1287                                            LVB_T_NONE,
1288                                            &info->mti_exp->exp_handle.h_cookie,
1289                                            lh);
1290                 RETURN(rc);
1291         }
1292         RETURN(rc);
1293 }
1294
1295 static void mdt_rename_unlock(struct lustre_handle *lh)
1296 {
1297         ENTRY;
1298         LASSERT(lustre_handle_is_used(lh));
1299         /* Cancel the single rename lock right away */
1300         ldlm_lock_decref_and_cancel(lh, LCK_EX);
1301         EXIT;
1302 }
1303
1304 /*
1305  * This is is_subdir() variant, it is CMD if cmm forwards it to correct
1306  * target. Source should not be ancestor of target dir. May be other rename
1307  * checks can be moved here later.
1308  */
1309 static int mdt_is_subdir(struct mdt_thread_info *info,
1310                          struct mdt_object *dir,
1311                          const struct lu_fid *fid)
1312 {
1313         struct lu_fid dir_fid = dir->mot_header.loh_fid;
1314         int rc = 0;
1315         ENTRY;
1316
1317         /* If the source and target are in the same directory, they can not
1318          * be parent/child relationship, so subdir check is not needed */
1319         if (lu_fid_eq(&dir_fid, fid))
1320                 return 0;
1321
1322         if (!mdt_object_exists(dir))
1323                 RETURN(-ENOENT);
1324
1325         rc = mdo_is_subdir(info->mti_env, mdt_object_child(dir),
1326                            fid, &dir_fid);
1327         if (rc < 0) {
1328                 CERROR("%s: failed subdir check in "DFID" for "DFID
1329                        ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1330                        PFID(&dir_fid), PFID(fid), rc);
1331                 /* Return EINVAL only if a parent is the @fid */
1332                 if (rc == -EINVAL)
1333                         rc = -EIO;
1334         } else {
1335                 /* check the found fid */
1336                 if (lu_fid_eq(&dir_fid, fid))
1337                         rc = -EINVAL;
1338         }
1339
1340         RETURN(rc);
1341 }
1342
1343 /* Update object linkEA */
1344 struct mdt_lock_list {
1345         struct mdt_object       *mll_obj;
1346         struct mdt_lock_handle  mll_lh;
1347         struct list_head        mll_list;
1348 };
1349
1350 static void mdt_unlock_list(struct mdt_thread_info *info,
1351                             struct list_head *list, int rc)
1352 {
1353         struct mdt_lock_list *mll;
1354         struct mdt_lock_list *mll2;
1355
1356         list_for_each_entry_safe(mll, mll2, list, mll_list) {
1357                 mdt_object_unlock_put(info, mll->mll_obj, &mll->mll_lh, rc);
1358                 list_del(&mll->mll_list);
1359                 OBD_FREE_PTR(mll);
1360         }
1361 }
1362
1363 static int mdt_lock_objects_in_linkea(struct mdt_thread_info *info,
1364                                       struct mdt_object *obj,
1365                                       struct mdt_object *pobj,
1366                                       struct list_head *lock_list)
1367 {
1368         struct lu_buf           *buf = &info->mti_big_buf;
1369         struct linkea_data      ldata = { NULL };
1370         int                     count;
1371         int                     retry_count;
1372         int                     rc;
1373         ENTRY;
1374
1375         if (S_ISDIR(lu_object_attr(&obj->mot_obj)))
1376                 RETURN(0);
1377
1378         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
1379         if (buf->lb_buf == NULL)
1380                 RETURN(-ENOMEM);
1381
1382         ldata.ld_buf = buf;
1383         rc = mdt_links_read(info, obj, &ldata);
1384         if (rc != 0) {
1385                 if (rc == -ENOENT || rc == -ENODATA)
1386                         rc = 0;
1387                 RETURN(rc);
1388         }
1389
1390         /* ignore the migrating parent(@pobj) */
1391         retry_count = ldata.ld_leh->leh_reccount - 1;
1392
1393 again:
1394         LASSERT(ldata.ld_leh != NULL);
1395         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
1396         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
1397                 struct mdt_device *mdt = info->mti_mdt;
1398                 struct mdt_object *mdt_pobj;
1399                 struct mdt_lock_list *mll;
1400                 struct lu_name name;
1401                 struct lu_fid  fid;
1402
1403                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
1404                                     &name, &fid);
1405                 mdt_pobj = mdt_object_find(info->mti_env, mdt, &fid);
1406                 if (IS_ERR(mdt_pobj)) {
1407                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
1408                               mdt_obd_name(mdt), PFID(&fid), PTR_ERR(mdt_pobj));
1409                         goto next;
1410                 }
1411
1412                 if (!mdt_object_exists(mdt_pobj)) {
1413                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
1414                               mdt_obd_name(mdt), PFID(&fid));
1415                         mdt_object_put(info->mti_env, mdt_pobj);
1416                         goto next;
1417                 }
1418
1419                 /* Check if the object already exists in the list */
1420                 list_for_each_entry(mll, lock_list, mll_list) {
1421                         if (mll->mll_obj == mdt_pobj) {
1422                                 mdt_object_put(info->mti_env, mdt_pobj);
1423                                 goto next;
1424                         }
1425                 }
1426
1427                 if (mdt_pobj == pobj) {
1428                         CDEBUG(D_INFO, "%s: skipping parent obj "DFID"\n",
1429                                mdt_obd_name(mdt), PFID(&fid));
1430                         mdt_object_put(info->mti_env, mdt_pobj);
1431                         goto next;
1432                 }
1433
1434                 OBD_ALLOC_PTR(mll);
1435                 if (mll == NULL) {
1436                         mdt_object_put(info->mti_env, mdt_pobj);
1437                         GOTO(out, rc = -ENOMEM);
1438                 }
1439
1440                 /* Since this needs to lock all of objects in linkea, to avoid
1441                  * deadlocks, because it does not follow parent-child order as
1442                  * other MDT operation, let's use try_lock here and if the lock
1443                  * cannot be gotten because of conflicting locks, then drop all
1444                  * current locks, send an AST to the client, and start again. */
1445                 mdt_lock_pdo_init(&mll->mll_lh, LCK_PW, &name);
1446                 rc = mdt_reint_object_lock_try(info, mdt_pobj, &mll->mll_lh,
1447                                                 MDS_INODELOCK_UPDATE, true);
1448                 if (rc == 0) {
1449                         mdt_unlock_list(info, lock_list, rc);
1450
1451                         CDEBUG(D_INFO, "%s: busy lock on "DFID" %s retry %d\n",
1452                                mdt_obd_name(mdt), PFID(&fid), name.ln_name,
1453                                retry_count);
1454
1455                         if (retry_count == 0) {
1456                                 mdt_object_put(info->mti_env, mdt_pobj);
1457                                 OBD_FREE_PTR(mll);
1458                                 GOTO(out, rc = -EBUSY);
1459                         }
1460
1461                         rc = mdt_object_lock(info, mdt_pobj, &mll->mll_lh,
1462                                              MDS_INODELOCK_UPDATE);
1463                         if (rc != 0) {
1464                                 mdt_object_put(info->mti_env, mdt_pobj);
1465                                 OBD_FREE_PTR(mll);
1466                                 GOTO(out, rc);
1467                         }
1468
1469                         if (mdt_object_remote(mdt_pobj)) {
1470                                 struct ldlm_lock *lock;
1471
1472                                 /* For remote object, Set lock to cb_atomic,
1473                                  * so lock can be released in blocking_ast()
1474                                  * immediately, then the next try_lock will
1475                                  * have better chance to succeds */
1476                                 lock =
1477                                 ldlm_handle2lock(&mll->mll_lh.mlh_rreg_lh);
1478                                 LASSERT(lock != NULL);
1479                                 lock_res_and_lock(lock);
1480                                 ldlm_set_atomic_cb(lock);
1481                                 unlock_res_and_lock(lock);
1482                                 LDLM_LOCK_PUT(lock);
1483                         }
1484                         mdt_object_unlock_put(info, mdt_pobj, &mll->mll_lh, rc);
1485                         OBD_FREE_PTR(mll);
1486                         retry_count--;
1487                         goto again;
1488                 }
1489                 rc = 0;
1490                 INIT_LIST_HEAD(&mll->mll_list);
1491                 mll->mll_obj = mdt_pobj;
1492                 list_add_tail(&mll->mll_list, lock_list);
1493 next:
1494                 ldata.ld_lee = (struct link_ea_entry *)((char *)ldata.ld_lee +
1495                                                          ldata.ld_reclen);
1496         }
1497 out:
1498         if (rc != 0)
1499                 mdt_unlock_list(info, lock_list, rc);
1500         RETURN(rc);
1501 }
1502
1503 /* migrate files from one MDT to another MDT */
1504 static int mdt_reint_migrate_internal(struct mdt_thread_info *info,
1505                                       struct mdt_lock_handle *lhc)
1506 {
1507         struct mdt_reint_record *rr = &info->mti_rr;
1508         struct md_attr          *ma = &info->mti_attr;
1509         struct mdt_object       *msrcdir;
1510         struct mdt_object       *mold;
1511         struct mdt_object       *mnew = NULL;
1512         struct mdt_lock_handle  *lh_dirp;
1513         struct mdt_lock_handle  *lh_childp;
1514         struct mdt_lock_handle  *lh_tgtp = NULL;
1515         struct lu_fid           *old_fid = &info->mti_tmp_fid1;
1516         struct list_head        lock_list;
1517         __u64                   lock_ibits;
1518         struct ldlm_lock        *lease = NULL;
1519         bool                    lock_open_sem = false;
1520         int                     rc;
1521         ENTRY;
1522
1523         CDEBUG(D_INODE, "migrate "DFID"/"DNAME" to "DFID"\n", PFID(rr->rr_fid1),
1524                PNAME(&rr->rr_name), PFID(rr->rr_fid2));
1525
1526         /* 1: lock the source dir. */
1527         msrcdir = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1528         if (IS_ERR(msrcdir)) {
1529                 CDEBUG(D_OTHER, "%s: cannot find source dir "DFID" : rc = %d\n",
1530                         mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
1531                         (int)PTR_ERR(msrcdir));
1532                 RETURN(PTR_ERR(msrcdir));
1533         }
1534
1535         lh_dirp = &info->mti_lh[MDT_LH_PARENT];
1536         mdt_lock_pdo_init(lh_dirp, LCK_PW, &rr->rr_name);
1537         rc = mdt_reint_object_lock(info, msrcdir, lh_dirp, MDS_INODELOCK_UPDATE,
1538                                    true);
1539         if (rc)
1540                 GOTO(out_put_parent, rc);
1541
1542         if (!mdt_object_remote(msrcdir)) {
1543                 rc = mdt_version_get_check_save(info, msrcdir, 0);
1544                 if (rc)
1545                         GOTO(out_unlock_parent, rc);
1546         }
1547
1548         /* 2: sanity check and find the object to be migrated. */
1549         fid_zero(old_fid);
1550         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
1551         if (rc != 0)
1552                 GOTO(out_unlock_parent, rc);
1553
1554         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
1555                 GOTO(out_unlock_parent, rc = -EINVAL);
1556
1557         if (!fid_is_md_operative(old_fid))
1558                 GOTO(out_unlock_parent, rc = -EPERM);
1559
1560         if (lu_fid_eq(old_fid, &info->mti_mdt->mdt_md_root_fid))
1561                 GOTO(out_unlock_parent, rc = -EPERM);
1562
1563         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
1564         if (IS_ERR(mold))
1565                 GOTO(out_unlock_parent, rc = PTR_ERR(mold));
1566
1567         if (mdt_object_remote(mold)) {
1568                 CDEBUG(D_OTHER, "%s: source "DFID" is on the remote MDT\n",
1569                        mdt_obd_name(info->mti_mdt), PFID(old_fid));
1570                 GOTO(out_put_child, rc = -EREMOTE);
1571         }
1572
1573         if (S_ISREG(lu_object_attr(&mold->mot_obj)) &&
1574             !mdt_object_remote(msrcdir)) {
1575                 CDEBUG(D_OTHER, "%s: parent "DFID" is still on the same"
1576                        " MDT, which should be migrated first:"
1577                        " rc = %d\n", mdt_obd_name(info->mti_mdt),
1578                        PFID(mdt_object_fid(msrcdir)), -EPERM);
1579                 GOTO(out_put_child, rc = -EPERM);
1580         }
1581
1582         rc = mdt_remote_permission(info);
1583         if (rc != 0)
1584                 GOTO(out_put_child, rc);
1585
1586         /* 3: iterate the linkea of the object and lock all of the objects */
1587         INIT_LIST_HEAD(&lock_list);
1588         rc = mdt_lock_objects_in_linkea(info, mold, msrcdir, &lock_list);
1589         if (rc != 0)
1590                 GOTO(out_put_child, rc);
1591
1592         if (info->mti_spec.sp_migrate_close) {
1593                 struct close_data *data;
1594                 struct mdt_body  *repbody;
1595                 bool lease_broken = false;
1596
1597                 if (!req_capsule_field_present(info->mti_pill, &RMF_MDT_EPOCH,
1598                                       RCL_CLIENT) ||
1599                     !req_capsule_field_present(info->mti_pill, &RMF_CLOSE_DATA,
1600                                       RCL_CLIENT))
1601                         GOTO(out_lease, rc = -EPROTO);
1602
1603                 data = req_capsule_client_get(info->mti_pill, &RMF_CLOSE_DATA);
1604                 if (data == NULL)
1605                         GOTO(out_lease, rc = -EPROTO);
1606
1607                 lease = ldlm_handle2lock(&data->cd_handle);
1608                 if (lease == NULL)
1609                         GOTO(out_lease, rc = -ESTALE);
1610
1611                 /* try to hold open_sem so that nobody else can open the file */
1612                 if (!down_write_trylock(&mold->mot_open_sem)) {
1613                         ldlm_lock_cancel(lease);
1614                         GOTO(out_lease, rc = -EBUSY);
1615                 }
1616
1617                 lock_open_sem = true;
1618                 /* Check if the lease open lease has already canceled */
1619                 lock_res_and_lock(lease);
1620                 lease_broken = ldlm_is_cancel(lease);
1621                 unlock_res_and_lock(lease);
1622
1623                 LDLM_DEBUG(lease, DFID " lease broken? %d",
1624                            PFID(mdt_object_fid(mold)), lease_broken);
1625
1626                 /* Cancel server side lease. Client side counterpart should
1627                  * have been cancelled. It's okay to cancel it now as we've
1628                  * held mot_open_sem. */
1629                 ldlm_lock_cancel(lease);
1630
1631                 if (lease_broken)
1632                         GOTO(out_lease, rc = -EAGAIN);
1633 out_lease:
1634                 rc = mdt_close_internal(info, mdt_info_req(info), NULL);
1635                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1636                 repbody->mbo_valid |= OBD_MD_CLOSE_INTENT_EXECED;
1637                 if (rc != 0)
1638                         GOTO(out_unlock_list, rc);
1639         }
1640
1641         /* 4: lock of the object migrated object */
1642         lh_childp = &info->mti_lh[MDT_LH_OLD];
1643         mdt_lock_reg_init(lh_childp, LCK_EX);
1644         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
1645                      MDS_INODELOCK_LAYOUT;
1646         if (mdt_object_remote(msrcdir)) {
1647                 /* Enqueue lookup lock from the parent MDT */
1648                 rc = mdt_remote_object_lock(info, msrcdir, mdt_object_fid(mold),
1649                                             &lh_childp->mlh_rreg_lh,
1650                                             lh_childp->mlh_rreg_mode,
1651                                             MDS_INODELOCK_LOOKUP, false, false);
1652                 if (rc != ELDLM_OK)
1653                         GOTO(out_unlock_list, rc);
1654
1655                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1656         }
1657
1658         rc = mdt_reint_object_lock(info, mold, lh_childp, lock_ibits, true);
1659         if (rc != 0)
1660                 GOTO(out_unlock_child, rc);
1661
1662         /* Migration is incompatible with HSM. */
1663         ma->ma_need = MA_HSM;
1664         ma->ma_valid = 0;
1665         rc = mdt_attr_get_complex(info, mold, ma);
1666         if (rc != 0)
1667                 GOTO(out_unlock_child, rc);
1668
1669         if ((ma->ma_valid & MA_HSM) && ma->ma_hsm.mh_flags != 0) {
1670                 rc = -ENOSYS;
1671                 CDEBUG(D_OTHER,
1672                        "%s: cannot migrate HSM archived file "DFID": rc = %d\n",
1673                        mdt_obd_name(info->mti_mdt), PFID(old_fid), rc);
1674                 GOTO(out_unlock_child, rc);
1675         }
1676
1677         ma->ma_need = MA_LMV;
1678         ma->ma_valid = 0;
1679         ma->ma_lmv = (union lmv_mds_md *)info->mti_xattr_buf;
1680         ma->ma_lmv_size = sizeof(info->mti_xattr_buf);
1681         rc = mdt_stripe_get(info, mold, ma, XATTR_NAME_LMV);
1682         if (rc != 0)
1683                 GOTO(out_unlock_child, rc);
1684
1685         if ((ma->ma_valid & MA_LMV)) {
1686                 struct lmv_mds_md_v1 *lmm1;
1687
1688                 lmv_le_to_cpu(ma->ma_lmv, ma->ma_lmv);
1689                 lmm1 = &ma->ma_lmv->lmv_md_v1;
1690                 if (!(lmm1->lmv_hash_type & LMV_HASH_FLAG_MIGRATION)) {
1691                         CDEBUG(D_OTHER, "%s: can not migrate striped dir "DFID
1692                                ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1693                                PFID(mdt_object_fid(mold)), -EPERM);
1694                         GOTO(out_unlock_child, rc = -EPERM);
1695                 }
1696
1697                 if (!fid_is_sane(&lmm1->lmv_stripe_fids[1]))
1698                         GOTO(out_unlock_child, rc = -EINVAL);
1699
1700                 mnew = mdt_object_find(info->mti_env, info->mti_mdt,
1701                                        &lmm1->lmv_stripe_fids[1]);
1702                 if (IS_ERR(mnew))
1703                         GOTO(out_unlock_child, rc = PTR_ERR(mnew));
1704
1705                 if (!mdt_object_remote(mnew)) {
1706                         CDEBUG(D_OTHER,
1707                                "%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                         CDEBUG(D_OTHER, "%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 }