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