Whamcloud - gitweb
LU-7383 mdt: retry for busy lock during migration
[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 /*
296  * VBR: we save three versions in reply:
297  * 0 - parent. Check that parent version is the same during replay.
298  * 1 - name. Version of 'name' if file exists with the same name or
299  * ENOENT_VERSION, it is needed because file may appear due to missed replays.
300  * 2 - child. Version of child by FID. Must be ENOENT. It is mostly sanity
301  * check.
302  */
303 static int mdt_md_create(struct mdt_thread_info *info)
304 {
305         struct mdt_device       *mdt = info->mti_mdt;
306         struct mdt_object       *parent;
307         struct mdt_object       *child;
308         struct mdt_lock_handle  *lh;
309         struct mdt_body         *repbody;
310         struct md_attr          *ma = &info->mti_attr;
311         struct mdt_reint_record *rr = &info->mti_rr;
312         int rc;
313         ENTRY;
314
315         DEBUG_REQ(D_INODE, mdt_info_req(info), "Create  ("DNAME"->"DFID") "
316                   "in "DFID,
317                   PNAME(&rr->rr_name), PFID(rr->rr_fid2), PFID(rr->rr_fid1));
318
319         if (!fid_is_md_operative(rr->rr_fid1))
320                 RETURN(-EPERM);
321
322         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
323
324         parent = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
325         if (IS_ERR(parent))
326                 RETURN(PTR_ERR(parent));
327
328         if (!mdt_object_exists(parent))
329                 GOTO(put_parent, rc = -ENOENT);
330
331         lh = &info->mti_lh[MDT_LH_PARENT];
332         mdt_lock_pdo_init(lh, LCK_PW, &rr->rr_name);
333         rc = mdt_object_lock(info, parent, lh, MDS_INODELOCK_UPDATE);
334         if (rc)
335                 GOTO(put_parent, rc);
336
337         if (!mdt_object_remote(parent)) {
338                 rc = mdt_version_get_check_save(info, parent, 0);
339                 if (rc)
340                         GOTO(unlock_parent, rc);
341         }
342
343         /*
344          * Check child name version during replay.
345          * During create replay a file may exist with same name.
346          */
347         rc = mdt_lookup_version_check(info, parent, &rr->rr_name,
348                                       &info->mti_tmp_fid1, 1);
349         if (rc == 0)
350                 GOTO(unlock_parent, rc = -EEXIST);
351
352         /* -ENOENT is expected here */
353         if (rc != -ENOENT)
354                 GOTO(unlock_parent, rc);
355
356         /* save version of file name for replay, it must be ENOENT here */
357         mdt_enoent_version_save(info, 1);
358
359         child = mdt_object_new(info->mti_env, mdt, rr->rr_fid2);
360         if (likely(!IS_ERR(child))) {
361                 struct md_object *next = mdt_object_child(parent);
362
363                 rc = mdt_remote_permission(info);
364                 if (rc != 0)
365                         GOTO(out_put_child, rc);
366
367                 ma->ma_need = MA_INODE;
368                 ma->ma_valid = 0;
369
370                 mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
371                                OBD_FAIL_MDS_REINT_CREATE_WRITE);
372
373                 /* Version of child will be updated on disk. */
374                 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(child));
375                 rc = mdt_version_get_check_save(info, child, 2);
376                 if (rc)
377                         GOTO(out_put_child, rc);
378
379                 /* Let lower layer know current lock mode. */
380                 info->mti_spec.sp_cr_mode =
381                         mdt_dlm_mode2mdl_mode(lh->mlh_pdo_mode);
382
383                 /*
384                  * Do not perform lookup sanity check. We know that name does
385                  * not exist.
386                  */
387                 info->mti_spec.sp_cr_lookup = 0;
388                 info->mti_spec.sp_feat = &dt_directory_features;
389
390                 rc = mdo_create(info->mti_env, next, &rr->rr_name,
391                                 mdt_object_child(child), &info->mti_spec, ma);
392                 if (rc == 0)
393                         rc = mdt_attr_get_complex(info, child, ma);
394
395                 if (rc == 0) {
396                         /* Return fid & attr to client. */
397                         if (ma->ma_valid & MA_INODE)
398                                 mdt_pack_attr2body(info, repbody, &ma->ma_attr,
399                                                    mdt_object_fid(child));
400                 }
401 out_put_child:
402                 mdt_object_put(info->mti_env, child);
403         } else {
404                 rc = PTR_ERR(child);
405         }
406 unlock_parent:
407         mdt_object_unlock(info, parent, lh, rc);
408 put_parent:
409         mdt_object_put(info->mti_env, parent);
410         RETURN(rc);
411 }
412
413 static int mdt_unlock_slaves(struct mdt_thread_info *mti,
414                              struct mdt_object *obj, __u64 ibits,
415                              struct mdt_lock_handle *s0_lh,
416                              struct mdt_object *s0_obj,
417                              struct ldlm_enqueue_info *einfo)
418 {
419         union ldlm_policy_data *policy = &mti->mti_policy;
420         int rc;
421         ENTRY;
422
423         if (!S_ISDIR(obj->mot_header.loh_attr))
424                 RETURN(0);
425
426         /* Unlock stripe 0 */
427         if (s0_lh != NULL && lustre_handle_is_used(&s0_lh->mlh_reg_lh)) {
428                 LASSERT(s0_obj != NULL);
429                 mdt_object_unlock_put(mti, s0_obj, s0_lh, 1);
430         }
431
432         memset(policy, 0, sizeof(*policy));
433         policy->l_inodebits.bits = ibits;
434
435         rc = mo_object_unlock(mti->mti_env, mdt_object_child(obj), einfo,
436                               policy);
437         RETURN(rc);
438 }
439
440 /**
441  * Lock slave stripes if necessary, the lock handles of slave stripes
442  * will be stored in einfo->ei_cbdata.
443  **/
444 static int mdt_lock_slaves(struct mdt_thread_info *mti, struct mdt_object *obj,
445                            enum ldlm_mode mode, __u64 ibits,
446                            struct mdt_lock_handle *s0_lh,
447                            struct mdt_object **s0_objp,
448                            struct ldlm_enqueue_info *einfo)
449 {
450         union ldlm_policy_data *policy = &mti->mti_policy;
451         struct lu_buf *buf = &mti->mti_buf;
452         struct lmv_mds_md_v1 *lmv;
453         struct lu_fid *fid = &mti->mti_tmp_fid1;
454         int rc;
455         ENTRY;
456
457         if (!S_ISDIR(obj->mot_header.loh_attr))
458                 RETURN(0);
459
460         buf->lb_buf = mti->mti_xattr_buf;
461         buf->lb_len = sizeof(mti->mti_xattr_buf);
462         rc = mo_xattr_get(mti->mti_env, mdt_object_child(obj), buf,
463                           XATTR_NAME_LMV);
464         if (rc == -ERANGE) {
465                 rc = mdt_big_xattr_get(mti, obj, XATTR_NAME_LMV);
466                 if (rc > 0) {
467                         buf->lb_buf = mti->mti_big_lmm;
468                         buf->lb_len = mti->mti_big_lmmsize;
469                 }
470         }
471
472         if (rc == -ENODATA || rc == -ENOENT)
473                 RETURN(0);
474
475         if (rc <= 0)
476                 RETURN(rc);
477
478         lmv = buf->lb_buf;
479         if (le32_to_cpu(lmv->lmv_magic) != LMV_MAGIC_V1)
480                 RETURN(-EINVAL);
481
482         fid_le_to_cpu(fid, &lmv->lmv_stripe_fids[0]);
483         if (!lu_fid_eq(fid, mdt_object_fid(obj))) {
484                 /* Except migrating object, whose 0_stripe and master
485                  * object are the same object, 0_stripe and master
486                  * object are different, though they are in the same
487                  * MDT, to avoid adding osd_object_lock here, so we
488                  * will enqueue the stripe0 lock in MDT0 for now */
489                 *s0_objp = mdt_object_find_lock(mti, fid, s0_lh, ibits);
490                 if (IS_ERR(*s0_objp))
491                         RETURN(PTR_ERR(*s0_objp));
492         }
493
494         memset(einfo, 0, sizeof(*einfo));
495         einfo->ei_type = LDLM_IBITS;
496         einfo->ei_mode = mode;
497         einfo->ei_cb_bl = mdt_remote_blocking_ast;
498         einfo->ei_cb_local_bl = mdt_blocking_ast;
499         einfo->ei_cb_cp = ldlm_completion_ast;
500         einfo->ei_enq_slave = 1;
501         einfo->ei_namespace = mti->mti_mdt->mdt_namespace;
502         memset(policy, 0, sizeof(*policy));
503         policy->l_inodebits.bits = ibits;
504
505         rc = mo_object_lock(mti->mti_env, mdt_object_child(obj), NULL, einfo,
506                             policy);
507         RETURN(rc);
508 }
509
510 static int mdt_attr_set(struct mdt_thread_info *info, struct mdt_object *mo,
511                         struct md_attr *ma)
512 {
513         struct mdt_lock_handle  *lh;
514         int do_vbr = ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID|LA_FLAGS);
515         __u64 lockpart = MDS_INODELOCK_UPDATE;
516         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
517         struct mdt_lock_handle  *s0_lh;
518         struct mdt_object       *s0_obj = NULL;
519         int rc;
520         ENTRY;
521
522         lh = &info->mti_lh[MDT_LH_PARENT];
523         mdt_lock_reg_init(lh, LCK_PW);
524
525         /* Even though the new MDT will grant PERM lock to the old
526          * client, but the old client will almost ignore that during
527          * So it needs to revoke both LOOKUP and PERM lock here, so
528          * both new and old client can cancel the dcache */
529         if (ma->ma_attr.la_valid & (LA_MODE|LA_UID|LA_GID))
530                 lockpart |= MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
531
532         rc = mdt_object_lock(info, mo, lh, lockpart);
533         if (rc != 0)
534                 RETURN(rc);
535
536         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
537         mdt_lock_reg_init(s0_lh, LCK_PW);
538         rc = mdt_lock_slaves(info, mo, LCK_PW, lockpart, s0_lh, &s0_obj, einfo);
539         if (rc != 0)
540                 GOTO(out_unlock, rc);
541
542         /* all attrs are packed into mti_attr in unpack_setattr */
543         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
544                        OBD_FAIL_MDS_REINT_SETATTR_WRITE);
545
546         /* This is only for set ctime when rename's source is on remote MDS. */
547         if (unlikely(ma->ma_attr.la_valid == LA_CTIME))
548                 ma->ma_attr_flags |= MDS_VTX_BYPASS;
549
550         /* VBR: update version if attr changed are important for recovery */
551         if (do_vbr) {
552                 /* update on-disk version of changed object */
553                 tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mo));
554                 rc = mdt_version_get_check_save(info, mo, 0);
555                 if (rc)
556                         GOTO(out_unlock, rc);
557         }
558
559         /* Ensure constant striping during chown(). See LU-2789. */
560         if (ma->ma_attr.la_valid & (LA_UID|LA_GID))
561                 mutex_lock(&mo->mot_lov_mutex);
562
563         /* all attrs are packed into mti_attr in unpack_setattr */
564         rc = mo_attr_set(info->mti_env, mdt_object_child(mo), ma);
565
566         if (ma->ma_attr.la_valid & (LA_UID|LA_GID))
567                 mutex_unlock(&mo->mot_lov_mutex);
568
569         if (rc != 0)
570                 GOTO(out_unlock, rc);
571
572         EXIT;
573 out_unlock:
574         mdt_unlock_slaves(info, mo, lockpart, s0_lh, s0_obj, einfo);
575         mdt_object_unlock(info, mo, lh, rc);
576         return rc;
577 }
578
579 /**
580  * Check HSM flags and add HS_DIRTY flag if relevant.
581  *
582  * A file could be set dirty only if it has a copy in the backend (HS_EXISTS)
583  * and is not RELEASED.
584  */
585 int mdt_add_dirty_flag(struct mdt_thread_info *info, struct mdt_object *mo,
586                         struct md_attr *ma)
587 {
588         int rc;
589         ENTRY;
590
591         /* If the file was modified, add the dirty flag */
592         ma->ma_need = MA_HSM;
593         rc = mdt_attr_get_complex(info, mo, ma);
594         if (rc) {
595                 CERROR("file attribute read error for "DFID": %d.\n",
596                         PFID(mdt_object_fid(mo)), rc);
597                 RETURN(rc);
598         }
599
600         /* If an up2date copy exists in the backend, add dirty flag */
601         if ((ma->ma_valid & MA_HSM) && (ma->ma_hsm.mh_flags & HS_EXISTS)
602             && !(ma->ma_hsm.mh_flags & (HS_DIRTY|HS_RELEASED))) {
603                 struct mdt_lock_handle  *lh = &info->mti_lh[MDT_LH_CHILD];
604
605                 ma->ma_hsm.mh_flags |= HS_DIRTY;
606
607                 mdt_lock_reg_init(lh, LCK_PW);
608                 rc = mdt_object_lock(info, mo, lh, MDS_INODELOCK_XATTR);
609                 if (rc != 0)
610                         RETURN(rc);
611
612                 rc = mdt_hsm_attr_set(info, mo, &ma->ma_hsm);
613                 if (rc)
614                         CERROR("file attribute change error for "DFID": %d\n",
615                                 PFID(mdt_object_fid(mo)), rc);
616                 mdt_object_unlock(info, mo, lh, rc);
617         }
618
619         RETURN(rc);
620 }
621
622 static int mdt_reint_setattr(struct mdt_thread_info *info,
623                              struct mdt_lock_handle *lhc)
624 {
625         struct md_attr          *ma = &info->mti_attr;
626         struct mdt_reint_record *rr = &info->mti_rr;
627         struct ptlrpc_request   *req = mdt_info_req(info);
628         struct mdt_object       *mo;
629         struct mdt_body         *repbody;
630         int                      rc, rc2;
631         ENTRY;
632
633         DEBUG_REQ(D_INODE, req, "setattr "DFID" %x", PFID(rr->rr_fid1),
634                   (unsigned int)ma->ma_attr.la_valid);
635
636         if (info->mti_dlm_req)
637                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
638
639         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
640         mo = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
641         if (IS_ERR(mo))
642                 GOTO(out, rc = PTR_ERR(mo));
643
644         if (!mdt_object_exists(mo))
645                 GOTO(out_put, rc = -ENOENT);
646
647         if (mdt_object_remote(mo))
648                 GOTO(out_put, rc = -EREMOTE);
649
650         if ((ma->ma_attr.la_valid & LA_SIZE) ||
651             (rr->rr_flags & MRF_OPEN_TRUNC)) {
652                 /* Check write access for the O_TRUNC case */
653                 if (mdt_write_read(mo) < 0)
654                         GOTO(out_put, rc = -ETXTBSY);
655         }
656
657         if ((ma->ma_valid & MA_INODE) && ma->ma_attr.la_valid) {
658                 if (ma->ma_valid & MA_LOV)
659                         GOTO(out_put, rc = -EPROTO);
660
661                 rc = mdt_attr_set(info, mo, ma);
662                 if (rc)
663                         GOTO(out_put, rc);
664         } else if ((ma->ma_valid & MA_LOV) && (ma->ma_valid & MA_INODE)) {
665                 struct lu_buf *buf  = &info->mti_buf;
666
667                 if (ma->ma_attr.la_valid != 0)
668                         GOTO(out_put, rc = -EPROTO);
669
670                 buf->lb_buf = ma->ma_lmm;
671                 buf->lb_len = ma->ma_lmm_size;
672                 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo),
673                                   buf, XATTR_NAME_LOV, 0);
674                 if (rc)
675                         GOTO(out_put, rc);
676         } else if ((ma->ma_valid & MA_LMV) && (ma->ma_valid & MA_INODE)) {
677                 struct lu_buf *buf  = &info->mti_buf;
678                 struct mdt_lock_handle  *lh;
679
680                 rc = mdt_remote_permission(info);
681                 if (rc < 0)
682                         GOTO(out_put, rc);
683
684                 if (ma->ma_attr.la_valid != 0)
685                         GOTO(out_put, rc = -EPROTO);
686
687                 lh = &info->mti_lh[MDT_LH_PARENT];
688                 mdt_lock_reg_init(lh, LCK_PW);
689
690                 rc = mdt_object_lock(info, mo, lh,
691                                      MDS_INODELOCK_XATTR);
692                 if (rc != 0)
693                         GOTO(out_put, rc);
694
695                 buf->lb_buf = ma->ma_lmv;
696                 buf->lb_len = ma->ma_lmv_size;
697                 rc = mo_xattr_set(info->mti_env, mdt_object_child(mo),
698                                   buf, XATTR_NAME_DEFAULT_LMV, 0);
699
700                 mdt_object_unlock(info, mo, lh, rc);
701                 if (rc)
702                         GOTO(out_put, rc);
703         } else {
704                 GOTO(out_put, rc = -EPROTO);
705         }
706
707         /* If file data is modified, add the dirty flag */
708         if (ma->ma_attr_flags & MDS_DATA_MODIFIED)
709                 rc = mdt_add_dirty_flag(info, mo, ma);
710
711         ma->ma_need = MA_INODE;
712         ma->ma_valid = 0;
713         rc = mdt_attr_get_complex(info, mo, ma);
714         if (rc != 0)
715                 GOTO(out_put, rc);
716
717         mdt_pack_attr2body(info, repbody, &ma->ma_attr, mdt_object_fid(mo));
718
719         EXIT;
720 out_put:
721         mdt_object_put(info->mti_env, mo);
722 out:
723         if (rc == 0)
724                 mdt_counter_incr(req, LPROC_MDT_SETATTR);
725
726         mdt_client_compatibility(info);
727         rc2 = mdt_fix_reply(info);
728         if (rc == 0)
729                 rc = rc2;
730         return rc;
731 }
732
733 static int mdt_reint_create(struct mdt_thread_info *info,
734                             struct mdt_lock_handle *lhc)
735 {
736         struct ptlrpc_request   *req = mdt_info_req(info);
737         int                     rc;
738         ENTRY;
739
740         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_CREATE))
741                 RETURN(err_serious(-ESTALE));
742
743         if (info->mti_dlm_req)
744                 ldlm_request_cancel(mdt_info_req(info),
745                                     info->mti_dlm_req, 0, LATF_SKIP);
746
747         if (!lu_name_is_valid(&info->mti_rr.rr_name))
748                 RETURN(-EPROTO);
749
750         switch (info->mti_attr.ma_attr.la_mode & S_IFMT) {
751         case S_IFDIR:
752                 mdt_counter_incr(req, LPROC_MDT_MKDIR);
753                 break;
754         case S_IFREG:
755         case S_IFLNK:
756         case S_IFCHR:
757         case S_IFBLK:
758         case S_IFIFO:
759         case S_IFSOCK:
760                 /* Special file should stay on the same node as parent. */
761                 mdt_counter_incr(req, LPROC_MDT_MKNOD);
762                 break;
763         default:
764                 CERROR("%s: Unsupported mode %o\n",
765                        mdt_obd_name(info->mti_mdt),
766                        info->mti_attr.ma_attr.la_mode);
767                 RETURN(err_serious(-EOPNOTSUPP));
768         }
769
770         rc = mdt_md_create(info);
771         RETURN(rc);
772 }
773
774 /*
775  * VBR: save parent version in reply and child version getting by its name.
776  * Version of child is getting and checking during its lookup. If
777  */
778 static int mdt_reint_unlink(struct mdt_thread_info *info,
779                             struct mdt_lock_handle *lhc)
780 {
781         struct mdt_reint_record *rr = &info->mti_rr;
782         struct ptlrpc_request   *req = mdt_info_req(info);
783         struct md_attr          *ma = &info->mti_attr;
784         struct lu_fid           *child_fid = &info->mti_tmp_fid1;
785         struct mdt_object       *mp;
786         struct mdt_object       *mc;
787         struct mdt_lock_handle  *parent_lh;
788         struct mdt_lock_handle  *child_lh;
789         struct ldlm_enqueue_info *einfo = &info->mti_einfo;
790         struct mdt_lock_handle  *s0_lh = NULL;
791         struct mdt_object       *s0_obj = NULL;
792         __u64                   lock_ibits;
793         int                     rc;
794         int                     no_name = 0;
795         ENTRY;
796
797         DEBUG_REQ(D_INODE, req, "unlink "DFID"/"DNAME"", PFID(rr->rr_fid1),
798                   PNAME(&rr->rr_name));
799
800         if (info->mti_dlm_req)
801                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
802
803         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_UNLINK))
804                 RETURN(err_serious(-ENOENT));
805
806         if (!fid_is_md_operative(rr->rr_fid1))
807                 RETURN(-EPERM);
808
809         /*
810          * step 1: Found the parent.
811          */
812         mp = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
813         if (IS_ERR(mp)) {
814                 rc = PTR_ERR(mp);
815                 GOTO(out, rc);
816         }
817
818         parent_lh = &info->mti_lh[MDT_LH_PARENT];
819         mdt_lock_pdo_init(parent_lh, LCK_PW, &rr->rr_name);
820         rc = mdt_object_lock(info, mp, parent_lh, MDS_INODELOCK_UPDATE);
821         if (rc != 0)
822                 GOTO(put_parent, rc);
823
824         if (!mdt_object_remote(mp)) {
825                 rc = mdt_version_get_check_save(info, mp, 0);
826                 if (rc)
827                         GOTO(unlock_parent, rc);
828         }
829
830         /* step 2: find & lock the child */
831         /* lookup child object along with version checking */
832         fid_zero(child_fid);
833         rc = mdt_lookup_version_check(info, mp, &rr->rr_name, child_fid, 1);
834         if (rc != 0) {
835                 /* Name might not be able to find during resend of
836                  * remote unlink, considering following case.
837                  * dir_A is a remote directory, the name entry of
838                  * dir_A is on MDT0, the directory is on MDT1,
839                  *
840                  * 1. client sends unlink req to MDT1.
841                  * 2. MDT1 sends name delete update to MDT0.
842                  * 3. name entry is being deleted in MDT0 synchronously.
843                  * 4. MDT1 is restarted.
844                  * 5. client resends unlink req to MDT1. So it can not
845                  *    find the name entry on MDT0 anymore.
846                  * In this case, MDT1 only needs to destory the local
847                  * directory.
848                  * */
849                 if (mdt_object_remote(mp) && rc == -ENOENT &&
850                     !fid_is_zero(rr->rr_fid2) &&
851                     lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) {
852                         no_name = 1;
853                         *child_fid = *rr->rr_fid2;
854                  } else {
855                         GOTO(unlock_parent, rc);
856                  }
857         }
858
859         if (!fid_is_md_operative(child_fid))
860                 GOTO(unlock_parent, rc = -EPERM);
861
862         /* We will lock the child regardless it is local or remote. No harm. */
863         mc = mdt_object_find(info->mti_env, info->mti_mdt, child_fid);
864         if (IS_ERR(mc))
865                 GOTO(unlock_parent, rc = PTR_ERR(mc));
866
867         child_lh = &info->mti_lh[MDT_LH_CHILD];
868         mdt_lock_reg_init(child_lh, LCK_EX);
869         if (info->mti_spec.sp_rm_entry) {
870                 struct lu_ucred *uc  = mdt_ucred(info);
871
872                 if (!mdt_is_dne_client(req->rq_export))
873                         /* Return -ENOTSUPP for old client */
874                         GOTO(put_child, rc = -ENOTSUPP);
875
876                 if (!md_capable(uc, CFS_CAP_SYS_ADMIN))
877                         GOTO(put_child, rc = -EPERM);
878
879                 ma->ma_need = MA_INODE;
880                 ma->ma_valid = 0;
881                 rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
882                                 NULL, &rr->rr_name, ma, no_name);
883                 GOTO(put_child, rc);
884         }
885
886         if (mdt_object_remote(mc)) {
887                 struct mdt_body  *repbody;
888
889                 if (!fid_is_zero(rr->rr_fid2)) {
890                         CDEBUG(D_INFO, "%s: name "DNAME" cannot find "DFID"\n",
891                                mdt_obd_name(info->mti_mdt),
892                                PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
893                         GOTO(put_child, rc = -ENOENT);
894                 }
895                 CDEBUG(D_INFO, "%s: name "DNAME": "DFID" is on another MDT\n",
896                        mdt_obd_name(info->mti_mdt),
897                        PNAME(&rr->rr_name), PFID(mdt_object_fid(mc)));
898
899                 if (!mdt_is_dne_client(req->rq_export))
900                         /* Return -ENOTSUPP for old client */
901                         GOTO(put_child, rc = -ENOTSUPP);
902
903                 /* Revoke the LOOKUP lock of the remote object granted by
904                  * this MDT. Since the unlink will happen on another MDT,
905                  * it will release the LOOKUP lock right away. Then What
906                  * would happen if another client try to grab the LOOKUP
907                  * lock at the same time with unlink XXX */
908                 mdt_object_lock(info, mc, child_lh, MDS_INODELOCK_LOOKUP);
909                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
910                 LASSERT(repbody != NULL);
911                 repbody->mbo_fid1 = *mdt_object_fid(mc);
912                 repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
913                 GOTO(unlock_child, rc = -EREMOTE);
914         }
915         /* We used to acquire MDS_INODELOCK_FULL here but we can't do
916          * this now because a running HSM restore on the child (unlink
917          * victim) will hold the layout lock. See LU-4002. */
918         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE;
919         if (mdt_object_remote(mp)) {
920                 /* Enqueue lookup lock from parent MDT */
921                 rc = mdt_remote_object_lock(info, mp, mdt_object_fid(mc),
922                                             &child_lh->mlh_rreg_lh,
923                                             child_lh->mlh_rreg_mode,
924                                             MDS_INODELOCK_LOOKUP, false);
925                 if (rc != ELDLM_OK)
926                         GOTO(put_child, rc);
927
928                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
929         }
930
931         rc = mdt_object_lock(info, mc, child_lh, lock_ibits);
932         if (rc != 0)
933                 GOTO(put_child, rc);
934         /*
935          * Now we can only make sure we need MA_INODE, in mdd layer, will check
936          * whether need MA_LOV and MA_COOKIE.
937          */
938         ma->ma_need = MA_INODE;
939         ma->ma_valid = 0;
940
941         s0_lh = &info->mti_lh[MDT_LH_LOCAL];
942         mdt_lock_reg_init(s0_lh, LCK_EX);
943         rc = mdt_lock_slaves(info, mc, LCK_EX, MDS_INODELOCK_UPDATE, s0_lh,
944                              &s0_obj, einfo);
945         if (rc != 0)
946                 GOTO(unlock_child, rc);
947
948         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
949                        OBD_FAIL_MDS_REINT_UNLINK_WRITE);
950         /* save version when object is locked */
951         mdt_version_get_save(info, mc, 1);
952
953         mutex_lock(&mc->mot_lov_mutex);
954
955         rc = mdo_unlink(info->mti_env, mdt_object_child(mp),
956                         mdt_object_child(mc), &rr->rr_name, ma, no_name);
957
958         mutex_unlock(&mc->mot_lov_mutex);
959
960         if (rc == 0 && !lu_object_is_dying(&mc->mot_header))
961                 rc = mdt_attr_get_complex(info, mc, ma);
962         if (rc == 0)
963                 mdt_handle_last_unlink(info, mc, ma);
964
965         if (ma->ma_valid & MA_INODE) {
966                 switch (ma->ma_attr.la_mode & S_IFMT) {
967                 case S_IFDIR:
968                         mdt_counter_incr(req, LPROC_MDT_RMDIR);
969                         break;
970                 case S_IFREG:
971                 case S_IFLNK:
972                 case S_IFCHR:
973                 case S_IFBLK:
974                 case S_IFIFO:
975                 case S_IFSOCK:
976                         mdt_counter_incr(req, LPROC_MDT_UNLINK);
977                         break;
978                 default:
979                         LASSERTF(0, "bad file type %o unlinking\n",
980                                  ma->ma_attr.la_mode);
981                 }
982         }
983
984         EXIT;
985
986 unlock_child:
987         mdt_unlock_slaves(info, mc, MDS_INODELOCK_UPDATE, s0_lh, s0_obj, einfo);
988         mdt_object_unlock(info, mc, child_lh, rc);
989 put_child:
990         mdt_object_put(info->mti_env, mc);
991 unlock_parent:
992         mdt_object_unlock(info, mp, parent_lh, rc);
993 put_parent:
994         mdt_object_put(info->mti_env, mp);
995 out:
996         return rc;
997 }
998
999 /*
1000  * VBR: save versions in reply: 0 - parent; 1 - child by fid; 2 - target by
1001  * name.
1002  */
1003 static int mdt_reint_link(struct mdt_thread_info *info,
1004                           struct mdt_lock_handle *lhc)
1005 {
1006         struct mdt_reint_record *rr = &info->mti_rr;
1007         struct ptlrpc_request   *req = mdt_info_req(info);
1008         struct md_attr          *ma = &info->mti_attr;
1009         struct mdt_object       *ms;
1010         struct mdt_object       *mp;
1011         struct mdt_lock_handle  *lhs;
1012         struct mdt_lock_handle  *lhp;
1013         int rc;
1014         ENTRY;
1015
1016         DEBUG_REQ(D_INODE, req, "link "DFID" to "DFID"/"DNAME,
1017                   PFID(rr->rr_fid1), PFID(rr->rr_fid2), PNAME(&rr->rr_name));
1018
1019         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_LINK))
1020                 RETURN(err_serious(-ENOENT));
1021
1022         if (info->mti_dlm_req)
1023                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1024
1025         /* Invalid case so return error immediately instead of
1026          * processing it */
1027         if (lu_fid_eq(rr->rr_fid1, rr->rr_fid2))
1028                 RETURN(-EPERM);
1029
1030         if (!fid_is_md_operative(rr->rr_fid1) ||
1031             !fid_is_md_operative(rr->rr_fid2))
1032                 RETURN(-EPERM);
1033
1034         /* step 1: find & lock the target parent dir */
1035         lhp = &info->mti_lh[MDT_LH_PARENT];
1036         mdt_lock_pdo_init(lhp, LCK_PW, &rr->rr_name);
1037         mp = mdt_object_find_lock(info, rr->rr_fid2, lhp,
1038                                   MDS_INODELOCK_UPDATE);
1039         if (IS_ERR(mp))
1040                 RETURN(PTR_ERR(mp));
1041
1042         rc = mdt_version_get_check_save(info, mp, 0);
1043         if (rc)
1044                 GOTO(out_unlock_parent, rc);
1045
1046         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1047
1048         /* step 2: find & lock the source */
1049         lhs = &info->mti_lh[MDT_LH_CHILD];
1050         mdt_lock_reg_init(lhs, LCK_EX);
1051
1052         ms = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1053         if (IS_ERR(ms))
1054                 GOTO(out_unlock_parent, rc = PTR_ERR(ms));
1055
1056         if (!mdt_object_exists(ms)) {
1057                 mdt_object_put(info->mti_env, ms);
1058                 CDEBUG(D_INFO, "%s: "DFID" does not exist.\n",
1059                        mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1));
1060                 GOTO(out_unlock_parent, rc = -ENOENT);
1061         }
1062
1063         rc = mdt_object_lock(info, ms, lhs, MDS_INODELOCK_UPDATE |
1064                              MDS_INODELOCK_XATTR);
1065         if (rc != 0) {
1066                 mdt_object_put(info->mti_env, ms);
1067                 GOTO(out_unlock_parent, rc);
1068         }
1069
1070         /* step 3: link it */
1071         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1072                        OBD_FAIL_MDS_REINT_LINK_WRITE);
1073
1074         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(ms));
1075         rc = mdt_version_get_check_save(info, ms, 1);
1076         if (rc)
1077                 GOTO(out_unlock_child, rc);
1078
1079         /** check target version by name during replay */
1080         rc = mdt_lookup_version_check(info, mp, &rr->rr_name,
1081                                       &info->mti_tmp_fid1, 2);
1082         if (rc != 0 && rc != -ENOENT)
1083                 GOTO(out_unlock_child, rc);
1084         /* save version of file name for replay, it must be ENOENT here */
1085         if (!req_is_replay(mdt_info_req(info))) {
1086                 if (rc != -ENOENT) {
1087                         CDEBUG(D_INFO, "link target "DNAME" existed!\n",
1088                                PNAME(&rr->rr_name));
1089                         GOTO(out_unlock_child, rc = -EEXIST);
1090                 }
1091                 info->mti_ver[2] = ENOENT_VERSION;
1092                 mdt_version_save(mdt_info_req(info), info->mti_ver[2], 2);
1093         }
1094
1095         rc = mdo_link(info->mti_env, mdt_object_child(mp),
1096               mdt_object_child(ms), &rr->rr_name, ma);
1097
1098         if (rc == 0)
1099                 mdt_counter_incr(req, LPROC_MDT_LINK);
1100
1101         EXIT;
1102 out_unlock_child:
1103         mdt_object_unlock_put(info, ms, lhs, rc);
1104 out_unlock_parent:
1105         mdt_object_unlock_put(info, mp, lhp, rc);
1106         return rc;
1107 }
1108 /**
1109  * lock the part of the directory according to the hash of the name
1110  * (lh->mlh_pdo_hash) in parallel directory lock.
1111  */
1112 static int mdt_pdir_hash_lock(struct mdt_thread_info *info,
1113                               struct mdt_lock_handle *lh,
1114                               struct mdt_object *obj, __u64 ibits)
1115 {
1116         struct ldlm_res_id *res = &info->mti_res_id;
1117         struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1118         union ldlm_policy_data *policy = &info->mti_policy;
1119         int rc;
1120
1121         /*
1122          * Finish res_id initializing by name hash marking part of
1123          * directory which is taking modification.
1124          */
1125         LASSERT(lh->mlh_pdo_hash != 0);
1126         fid_build_pdo_res_name(mdt_object_fid(obj), lh->mlh_pdo_hash, res);
1127         memset(policy, 0, sizeof(*policy));
1128         policy->l_inodebits.bits = ibits;
1129         /*
1130          * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
1131          * going to be sent to client. If it is - mdt_intent_policy() path will
1132          * fix it up and turn FL_LOCAL flag off.
1133          */
1134         rc = mdt_fid_lock(ns, &lh->mlh_reg_lh, lh->mlh_reg_mode, policy,
1135                           res, LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB,
1136                           &info->mti_exp->exp_handle.h_cookie);
1137         return rc;
1138 }
1139
1140 /**
1141  * Get BFL lock for rename or migrate process.
1142  **/
1143 static int mdt_rename_lock(struct mdt_thread_info *info,
1144                            struct lustre_handle *lh)
1145 {
1146         int     rc;
1147         ENTRY;
1148
1149         if (mdt_seq_site(info->mti_mdt)->ss_node_id != 0) {
1150                 struct lu_fid *fid = &info->mti_tmp_fid1;
1151                 struct mdt_object *obj;
1152
1153                 /* XXX, right now, it has to use object API to
1154                  * enqueue lock cross MDT, so it will enqueue
1155                  * rename lock(with LUSTRE_BFL_FID) by root object */
1156                 lu_root_fid(fid);
1157                 obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1158                 if (IS_ERR(obj))
1159                         RETURN(PTR_ERR(obj));
1160
1161                 rc = mdt_remote_object_lock(info, obj,
1162                                             &LUSTRE_BFL_FID, lh,
1163                                             LCK_EX,
1164                                             MDS_INODELOCK_UPDATE, false);
1165                 mdt_object_put(info->mti_env, obj);
1166         } else {
1167                 struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
1168                 union ldlm_policy_data *policy = &info->mti_policy;
1169                 struct ldlm_res_id *res_id = &info->mti_res_id;
1170                 __u64 flags = 0;
1171
1172                 fid_build_reg_res_name(&LUSTRE_BFL_FID, res_id);
1173                 memset(policy, 0, sizeof *policy);
1174                 policy->l_inodebits.bits = MDS_INODELOCK_UPDATE;
1175                 flags = LDLM_FL_LOCAL_ONLY | LDLM_FL_ATOMIC_CB;
1176                 rc = ldlm_cli_enqueue_local(ns, res_id, LDLM_IBITS, policy,
1177                                            LCK_EX, &flags, ldlm_blocking_ast,
1178                                            ldlm_completion_ast, NULL, NULL, 0,
1179                                            LVB_T_NONE,
1180                                            &info->mti_exp->exp_handle.h_cookie,
1181                                            lh);
1182                 RETURN(rc);
1183         }
1184         RETURN(rc);
1185 }
1186
1187 static void mdt_rename_unlock(struct lustre_handle *lh)
1188 {
1189         ENTRY;
1190         LASSERT(lustre_handle_is_used(lh));
1191         /* Cancel the single rename lock right away */
1192         ldlm_lock_decref_and_cancel(lh, LCK_EX);
1193         EXIT;
1194 }
1195
1196 /*
1197  * This is is_subdir() variant, it is CMD if cmm forwards it to correct
1198  * target. Source should not be ancestor of target dir. May be other rename
1199  * checks can be moved here later.
1200  */
1201 static int mdt_is_subdir(struct mdt_thread_info *info,
1202                          struct mdt_object *dir,
1203                          const struct lu_fid *fid)
1204 {
1205         struct lu_fid dir_fid = dir->mot_header.loh_fid;
1206         int rc = 0;
1207         ENTRY;
1208
1209         /* If the source and target are in the same directory, they can not
1210          * be parent/child relationship, so subdir check is not needed */
1211         if (lu_fid_eq(&dir_fid, fid))
1212                 return 0;
1213
1214         if (!mdt_object_exists(dir))
1215                 RETURN(-ENOENT);
1216
1217         rc = mdo_is_subdir(info->mti_env, mdt_object_child(dir),
1218                            fid, &dir_fid);
1219         if (rc < 0) {
1220                 CERROR("%s: failed subdir check in "DFID" for "DFID
1221                        ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1222                        PFID(&dir_fid), PFID(fid), rc);
1223                 /* Return EINVAL only if a parent is the @fid */
1224                 if (rc == -EINVAL)
1225                         rc = -EIO;
1226         } else {
1227                 /* check the found fid */
1228                 if (lu_fid_eq(&dir_fid, fid))
1229                         rc = -EINVAL;
1230         }
1231
1232         RETURN(rc);
1233 }
1234
1235 /* Update object linkEA */
1236 struct mdt_lock_list {
1237         struct mdt_object       *mll_obj;
1238         struct mdt_lock_handle  mll_lh;
1239         struct list_head        mll_list;
1240 };
1241
1242 static void mdt_unlock_list(struct mdt_thread_info *info,
1243                             struct list_head *list, int rc)
1244 {
1245         struct mdt_lock_list *mll;
1246         struct mdt_lock_list *mll2;
1247
1248         list_for_each_entry_safe(mll, mll2, list, mll_list) {
1249                 mdt_object_unlock_put(info, mll->mll_obj, &mll->mll_lh, rc);
1250                 list_del(&mll->mll_list);
1251                 OBD_FREE_PTR(mll);
1252         }
1253 }
1254
1255 static int mdt_lock_objects_in_linkea(struct mdt_thread_info *info,
1256                                       struct mdt_object *obj,
1257                                       struct mdt_object *pobj,
1258                                       struct list_head *lock_list)
1259 {
1260         struct lu_buf           *buf = &info->mti_big_buf;
1261         struct linkea_data      ldata = { NULL };
1262         int                     count;
1263         int                     retry_count;
1264         int                     rc;
1265         ENTRY;
1266
1267         if (S_ISDIR(lu_object_attr(&obj->mot_obj)))
1268                 RETURN(0);
1269
1270         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
1271         if (buf->lb_buf == NULL)
1272                 RETURN(-ENOMEM);
1273
1274         ldata.ld_buf = buf;
1275         rc = mdt_links_read(info, obj, &ldata);
1276         if (rc != 0) {
1277                 if (rc == -ENOENT || rc == -ENODATA)
1278                         rc = 0;
1279                 RETURN(rc);
1280         }
1281
1282         /* ignore the migrating parent(@pobj) */
1283         retry_count = ldata.ld_leh->leh_reccount - 1;
1284
1285 again:
1286         LASSERT(ldata.ld_leh != NULL);
1287         ldata.ld_lee = (struct link_ea_entry *)(ldata.ld_leh + 1);
1288         for (count = 0; count < ldata.ld_leh->leh_reccount; count++) {
1289                 struct mdt_device *mdt = info->mti_mdt;
1290                 struct mdt_object *mdt_pobj;
1291                 struct mdt_lock_list *mll;
1292                 struct lu_name name;
1293                 struct lu_fid  fid;
1294
1295                 linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen,
1296                                     &name, &fid);
1297                 mdt_pobj = mdt_object_find(info->mti_env, mdt, &fid);
1298                 if (IS_ERR(mdt_pobj)) {
1299                         CWARN("%s: cannot find obj "DFID": rc = %ld\n",
1300                               mdt_obd_name(mdt), PFID(&fid), PTR_ERR(mdt_pobj));
1301                         goto next;
1302                 }
1303
1304                 if (!mdt_object_exists(mdt_pobj)) {
1305                         CDEBUG(D_INFO, "%s: obj "DFID" does not exist\n",
1306                               mdt_obd_name(mdt), PFID(&fid));
1307                         mdt_object_put(info->mti_env, mdt_pobj);
1308                         goto next;
1309                 }
1310
1311                 /* Check if the object already exists in the list */
1312                 list_for_each_entry(mll, lock_list, mll_list) {
1313                         if (mll->mll_obj == mdt_pobj) {
1314                                 mdt_object_put(info->mti_env, mdt_pobj);
1315                                 goto next;
1316                         }
1317                 }
1318
1319                 if (mdt_pobj == pobj) {
1320                         CDEBUG(D_INFO, "%s: skipping parent obj "DFID"\n",
1321                                mdt_obd_name(mdt), PFID(&fid));
1322                         mdt_object_put(info->mti_env, mdt_pobj);
1323                         goto next;
1324                 }
1325
1326                 OBD_ALLOC_PTR(mll);
1327                 if (mll == NULL) {
1328                         mdt_object_put(info->mti_env, mdt_pobj);
1329                         GOTO(out, rc = -ENOMEM);
1330                 }
1331
1332                 /* Since this needs to lock all of objects in linkea, to avoid
1333                  * deadlocks, because it does not follow parent-child order as
1334                  * other MDT operation, let's use try_lock here and if the lock
1335                  * cannot be gotten because of conflicting locks, then drop all
1336                  * current locks, send an AST to the client, and start again. */
1337                 mdt_lock_pdo_init(&mll->mll_lh, LCK_PW, &name);
1338                 rc = mdt_object_lock_try(info, mdt_pobj, &mll->mll_lh,
1339                                          MDS_INODELOCK_UPDATE);
1340                 if (rc == 0) {
1341                         mdt_unlock_list(info, lock_list, rc);
1342
1343                         CDEBUG(D_INFO, "%s: busy lock on "DFID".\n",
1344                                mdt_obd_name(mdt), PFID(&fid));
1345
1346                         if (retry_count == 0) {
1347                                 mdt_object_put(info->mti_env, mdt_pobj);
1348                                 OBD_FREE_PTR(mll);
1349                                 GOTO(out, rc = -EBUSY);
1350                         }
1351
1352                         rc = mdt_object_lock(info, mdt_pobj, &mll->mll_lh,
1353                                              MDS_INODELOCK_UPDATE);
1354                         if (rc != 0) {
1355                                 mdt_object_put(info->mti_env, mdt_pobj);
1356                                 OBD_FREE_PTR(mll);
1357                                 GOTO(out, rc);
1358                         }
1359
1360                         if (mdt_object_remote(mdt_pobj)) {
1361                                 struct ldlm_lock *lock;
1362
1363                                 /* For remote object, Set lock to cb_atomic,
1364                                  * so lock can be released in blocking_ast()
1365                                  * immediately, then the next try_lock will
1366                                  * have better chance to succeds */
1367                                 lock =
1368                                 ldlm_handle2lock(&mll->mll_lh.mlh_rreg_lh);
1369                                 LASSERT(lock != NULL);
1370                                 lock_res_and_lock(lock);
1371                                 ldlm_set_atomic_cb(lock);
1372                                 unlock_res_and_lock(lock);
1373                                 LDLM_LOCK_PUT(lock);
1374                         }
1375                         mdt_object_unlock_put(info, mdt_pobj, &mll->mll_lh, rc);
1376                         OBD_FREE_PTR(mll);
1377                         retry_count--;
1378                         goto again;
1379                 }
1380                 rc = 0;
1381                 INIT_LIST_HEAD(&mll->mll_list);
1382                 mll->mll_obj = mdt_pobj;
1383                 list_add_tail(&mll->mll_list, lock_list);
1384 next:
1385                 ldata.ld_lee = (struct link_ea_entry *)((char *)ldata.ld_lee +
1386                                                          ldata.ld_reclen);
1387         }
1388 out:
1389         if (rc != 0)
1390                 mdt_unlock_list(info, lock_list, rc);
1391         RETURN(rc);
1392 }
1393
1394 /* migrate files from one MDT to another MDT */
1395 static int mdt_reint_migrate_internal(struct mdt_thread_info *info,
1396                                       struct mdt_lock_handle *lhc)
1397 {
1398         struct mdt_reint_record *rr = &info->mti_rr;
1399         struct md_attr          *ma = &info->mti_attr;
1400         struct mdt_object       *msrcdir;
1401         struct mdt_object       *mold;
1402         struct mdt_object       *mnew = NULL;
1403         struct mdt_lock_handle  *lh_dirp;
1404         struct mdt_lock_handle  *lh_childp;
1405         struct mdt_lock_handle  *lh_tgtp = NULL;
1406         struct lu_fid           *old_fid = &info->mti_tmp_fid1;
1407         struct list_head        lock_list;
1408         __u64                   lock_ibits;
1409         struct ldlm_lock        *lease = NULL;
1410         bool                    lock_open_sem = false;
1411         int                     rc;
1412         ENTRY;
1413
1414         CDEBUG(D_INODE, "migrate "DFID"/"DNAME" to "DFID"\n", PFID(rr->rr_fid1),
1415                PNAME(&rr->rr_name), PFID(rr->rr_fid2));
1416
1417         /* 1: lock the source dir. */
1418         msrcdir = mdt_object_find(info->mti_env, info->mti_mdt, rr->rr_fid1);
1419         if (IS_ERR(msrcdir)) {
1420                 CERROR("%s: cannot find source dir "DFID" : rc = %d\n",
1421                         mdt_obd_name(info->mti_mdt), PFID(rr->rr_fid1),
1422                         (int)PTR_ERR(msrcdir));
1423                 RETURN(PTR_ERR(msrcdir));
1424         }
1425
1426         lh_dirp = &info->mti_lh[MDT_LH_PARENT];
1427         mdt_lock_pdo_init(lh_dirp, LCK_PW, &rr->rr_name);
1428         rc = mdt_object_lock(info, msrcdir, lh_dirp,
1429                              MDS_INODELOCK_UPDATE);
1430         if (rc)
1431                 GOTO(out_put_parent, rc);
1432
1433         if (!mdt_object_remote(msrcdir)) {
1434                 rc = mdt_version_get_check_save(info, msrcdir, 0);
1435                 if (rc)
1436                         GOTO(out_unlock_parent, rc);
1437         }
1438
1439         /* 2: sanity check and find the object to be migrated. */
1440         fid_zero(old_fid);
1441         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
1442         if (rc != 0)
1443                 GOTO(out_unlock_parent, rc);
1444
1445         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
1446                 GOTO(out_unlock_parent, rc = -EINVAL);
1447
1448         if (!fid_is_md_operative(old_fid))
1449                 GOTO(out_unlock_parent, rc = -EPERM);
1450
1451         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
1452         if (IS_ERR(mold))
1453                 GOTO(out_unlock_parent, rc = PTR_ERR(mold));
1454
1455         if (mdt_object_remote(mold)) {
1456                 CERROR("%s: source "DFID" is on the remote MDT\n",
1457                        mdt_obd_name(info->mti_mdt), PFID(old_fid));
1458                 GOTO(out_put_child, rc = -EREMOTE);
1459         }
1460
1461         if (S_ISREG(lu_object_attr(&mold->mot_obj)) &&
1462             !mdt_object_remote(msrcdir)) {
1463                 CERROR("%s: parent "DFID" is still on the same"
1464                        " MDT, which should be migrated first:"
1465                        " rc = %d\n", mdt_obd_name(info->mti_mdt),
1466                        PFID(mdt_object_fid(msrcdir)), -EPERM);
1467                 GOTO(out_put_child, rc = -EPERM);
1468         }
1469
1470         rc = mdt_remote_permission(info);
1471         if (rc != 0)
1472                 GOTO(out_put_child, rc);
1473
1474         /* 3: iterate the linkea of the object and lock all of the objects */
1475         INIT_LIST_HEAD(&lock_list);
1476         rc = mdt_lock_objects_in_linkea(info, mold, msrcdir, &lock_list);
1477         if (rc != 0)
1478                 GOTO(out_put_child, rc);
1479
1480         if (info->mti_spec.sp_migrate_close) {
1481                 struct close_data *data;
1482                 struct mdt_body  *repbody;
1483                 bool lease_broken = false;
1484
1485                 if (!req_capsule_field_present(info->mti_pill, &RMF_MDT_EPOCH,
1486                                       RCL_CLIENT) ||
1487                     !req_capsule_field_present(info->mti_pill, &RMF_CLOSE_DATA,
1488                                       RCL_CLIENT))
1489                         GOTO(out_lease, rc = -EPROTO);
1490
1491                 data = req_capsule_client_get(info->mti_pill, &RMF_CLOSE_DATA);
1492                 if (data == NULL)
1493                         GOTO(out_lease, rc = -EPROTO);
1494
1495                 lease = ldlm_handle2lock(&data->cd_handle);
1496                 if (lease == NULL)
1497                         GOTO(out_lease, rc = -ESTALE);
1498
1499                 /* try to hold open_sem so that nobody else can open the file */
1500                 if (!down_write_trylock(&mold->mot_open_sem)) {
1501                         ldlm_lock_cancel(lease);
1502                         GOTO(out_lease, rc = -EBUSY);
1503                 }
1504
1505                 lock_open_sem = true;
1506                 /* Check if the lease open lease has already canceled */
1507                 lock_res_and_lock(lease);
1508                 lease_broken = ldlm_is_cancel(lease);
1509                 unlock_res_and_lock(lease);
1510
1511                 LDLM_DEBUG(lease, DFID " lease broken? %d\n",
1512                            PFID(mdt_object_fid(mold)), lease_broken);
1513
1514                 /* Cancel server side lease. Client side counterpart should
1515                  * have been cancelled. It's okay to cancel it now as we've
1516                  * held mot_open_sem. */
1517                 ldlm_lock_cancel(lease);
1518
1519                 if (lease_broken)
1520                         GOTO(out_lease, rc = -EAGAIN);
1521 out_lease:
1522                 rc = mdt_close_internal(info, mdt_info_req(info), NULL);
1523                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1524                 repbody->mbo_valid |= OBD_MD_CLOSE_INTENT_EXECED;
1525                 if (rc != 0)
1526                         GOTO(out_unlock_list, rc);
1527         }
1528
1529         /* 4: lock of the object migrated object */
1530         lh_childp = &info->mti_lh[MDT_LH_OLD];
1531         mdt_lock_reg_init(lh_childp, LCK_EX);
1532         lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
1533                      MDS_INODELOCK_LAYOUT;
1534         if (mdt_object_remote(msrcdir)) {
1535                 /* Enqueue lookup lock from the parent MDT */
1536                 rc = mdt_remote_object_lock(info, msrcdir, mdt_object_fid(mold),
1537                                             &lh_childp->mlh_rreg_lh,
1538                                             lh_childp->mlh_rreg_mode,
1539                                             MDS_INODELOCK_LOOKUP, false);
1540                 if (rc != ELDLM_OK)
1541                         GOTO(out_unlock_list, rc);
1542
1543                 lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1544         }
1545
1546         rc = mdt_object_lock(info, mold, lh_childp, lock_ibits);
1547         if (rc != 0)
1548                 GOTO(out_unlock_child, rc);
1549
1550         ma->ma_need = MA_LMV;
1551         ma->ma_valid = 0;
1552         ma->ma_lmv = (union lmv_mds_md *)info->mti_xattr_buf;
1553         ma->ma_lmv_size = sizeof(info->mti_xattr_buf);
1554         rc = mdt_stripe_get(info, mold, ma, XATTR_NAME_LMV);
1555         if (rc != 0)
1556                 GOTO(out_unlock_child, rc);
1557
1558         if ((ma->ma_valid & MA_LMV)) {
1559                 struct lmv_mds_md_v1 *lmm1;
1560
1561                 lmv_le_to_cpu(ma->ma_lmv, ma->ma_lmv);
1562                 lmm1 = &ma->ma_lmv->lmv_md_v1;
1563                 if (!(lmm1->lmv_hash_type & LMV_HASH_FLAG_MIGRATION)) {
1564                         CERROR("%s: can not migrate striped dir "DFID
1565                                ": rc = %d\n", mdt_obd_name(info->mti_mdt),
1566                                PFID(mdt_object_fid(mold)), -EPERM);
1567                         GOTO(out_unlock_child, rc = -EPERM);
1568                 }
1569
1570                 if (!fid_is_sane(&lmm1->lmv_stripe_fids[1]))
1571                         GOTO(out_unlock_child, rc = -EINVAL);
1572
1573                 mnew = mdt_object_find(info->mti_env, info->mti_mdt,
1574                                        &lmm1->lmv_stripe_fids[1]);
1575                 if (IS_ERR(mnew))
1576                         GOTO(out_unlock_child, rc = PTR_ERR(mnew));
1577
1578                 if (!mdt_object_remote(mnew)) {
1579                         CERROR("%s: "DFID" being migrated is on this MDT:"
1580                                " rc  = %d\n", mdt_obd_name(info->mti_mdt),
1581                                PFID(rr->rr_fid2), -EPERM);
1582                         GOTO(out_put_new, rc = -EPERM);
1583                 }
1584
1585                 lh_tgtp = &info->mti_lh[MDT_LH_CHILD];
1586                 mdt_lock_reg_init(lh_tgtp, LCK_EX);
1587                 rc = mdt_remote_object_lock(info, mnew,
1588                                             mdt_object_fid(mnew),
1589                                             &lh_tgtp->mlh_rreg_lh,
1590                                             lh_tgtp->mlh_rreg_mode,
1591                                             MDS_INODELOCK_UPDATE, false);
1592                 if (rc != 0) {
1593                         lh_tgtp = NULL;
1594                         GOTO(out_put_new, rc);
1595                 }
1596         } else {
1597                 mnew = mdt_object_find(info->mti_env, info->mti_mdt,
1598                                        rr->rr_fid2);
1599                 if (IS_ERR(mnew))
1600                         GOTO(out_unlock_child, rc = PTR_ERR(mnew));
1601                 if (!mdt_object_remote(mnew)) {
1602                         CERROR("%s: Migration "DFID" is on this MDT:"
1603                                " rc = %d\n", mdt_obd_name(info->mti_mdt),
1604                                PFID(rr->rr_fid2), -EXDEV);
1605                         GOTO(out_put_new, rc = -EXDEV);
1606                 }
1607         }
1608
1609         /* 5: migrate it */
1610         mdt_reint_init_ma(info, ma);
1611
1612         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1613                        OBD_FAIL_MDS_REINT_RENAME_WRITE);
1614
1615         rc = mdo_migrate(info->mti_env, mdt_object_child(msrcdir),
1616                          mdt_object_child(mold), &rr->rr_name,
1617                          mdt_object_child(mnew), ma);
1618         if (rc != 0)
1619                 GOTO(out_unlock_new, rc);
1620
1621 out_unlock_new:
1622         if (lh_tgtp != NULL)
1623                 mdt_object_unlock(info, mnew, lh_tgtp, rc);
1624 out_put_new:
1625         if (mnew)
1626                 mdt_object_put(info->mti_env, mnew);
1627 out_unlock_child:
1628         mdt_object_unlock(info, mold, lh_childp, rc);
1629 out_unlock_list:
1630         mdt_unlock_list(info, &lock_list, rc);
1631         if (lease != NULL) {
1632                 ldlm_reprocess_all(lease->l_resource);
1633                 LDLM_LOCK_PUT(lease);
1634         }
1635
1636         if (lock_open_sem)
1637                 up_write(&mold->mot_open_sem);
1638 out_put_child:
1639         mdt_object_put(info->mti_env, mold);
1640 out_unlock_parent:
1641         mdt_object_unlock(info, msrcdir, lh_dirp, rc);
1642 out_put_parent:
1643         mdt_object_put(info->mti_env, msrcdir);
1644
1645         RETURN(rc);
1646 }
1647
1648 static struct mdt_object *mdt_object_find_check(struct mdt_thread_info *info,
1649                                                 const struct lu_fid *fid,
1650                                                 int idx)
1651 {
1652         struct mdt_object *dir;
1653         int rc;
1654         ENTRY;
1655
1656         dir = mdt_object_find(info->mti_env, info->mti_mdt, fid);
1657         if (IS_ERR(dir))
1658                 RETURN(dir);
1659
1660         /* check early, the real version will be saved after locking */
1661         rc = mdt_version_get_check(info, dir, idx);
1662         if (rc)
1663                 GOTO(out_put, rc);
1664
1665         RETURN(dir);
1666 out_put:
1667         mdt_object_put(info->mti_env, dir);
1668         return ERR_PTR(rc);
1669 }
1670
1671 static int mdt_object_lock_save(struct mdt_thread_info *info,
1672                                 struct mdt_object *dir,
1673                                 struct mdt_lock_handle *lh,
1674                                 int idx)
1675 {
1676         int rc;
1677
1678         /* we lock the target dir if it is local */
1679         rc = mdt_object_lock(info, dir, lh, MDS_INODELOCK_UPDATE);
1680         if (rc != 0)
1681                 return rc;
1682
1683         /* get and save correct version after locking */
1684         mdt_version_get_save(info, dir, idx);
1685         return 0;
1686 }
1687
1688
1689 static int mdt_rename_parents_lock(struct mdt_thread_info *info,
1690                                    struct mdt_object **srcp,
1691                                    struct mdt_object **tgtp)
1692 {
1693         struct mdt_reint_record *rr = &info->mti_rr;
1694         const struct lu_fid     *fid_src = rr->rr_fid1;
1695         const struct lu_fid     *fid_tgt = rr->rr_fid2;
1696         struct mdt_lock_handle  *lh_src = &info->mti_lh[MDT_LH_PARENT];
1697         struct mdt_lock_handle  *lh_tgt = &info->mti_lh[MDT_LH_CHILD];
1698         struct mdt_object       *src;
1699         struct mdt_object       *tgt;
1700         int                      reverse = 0;
1701         int                      rc;
1702         ENTRY;
1703
1704         /* find both parents. */
1705         src = mdt_object_find_check(info, fid_src, 0);
1706         if (IS_ERR(src))
1707                 RETURN(PTR_ERR(src));
1708
1709         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME3, 5);
1710
1711         if (lu_fid_eq(fid_src, fid_tgt)) {
1712                 tgt = src;
1713                 mdt_object_get(info->mti_env, tgt);
1714         } else {
1715                 /* Check if the @src is not a child of the @tgt, otherwise a
1716                  * reverse locking must take place. */
1717                 rc = mdt_is_subdir(info, src, fid_tgt);
1718                 if (rc == -EINVAL)
1719                         reverse = 1;
1720                 else if (rc)
1721                         GOTO(err_src_put, rc);
1722
1723                 tgt = mdt_object_find_check(info, fid_tgt, 1);
1724                 if (IS_ERR(tgt))
1725                         GOTO(err_src_put, rc = PTR_ERR(tgt));
1726         }
1727
1728         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
1729
1730         /* lock parents in the proper order. */
1731         if (reverse) {
1732                 rc = mdt_object_lock_save(info, tgt, lh_tgt, 1);
1733                 if (rc)
1734                         GOTO(err_tgt_put, rc);
1735
1736                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
1737
1738                 rc = mdt_object_lock_save(info, src, lh_src, 0);
1739         } else {
1740                 rc = mdt_object_lock_save(info, src, lh_src, 0);
1741                 if (rc)
1742                         GOTO(err_tgt_put, rc);
1743
1744                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME, 5);
1745
1746                 if (tgt != src)
1747                         rc = mdt_object_lock_save(info, tgt, lh_tgt, 1);
1748                 else if (lh_src->mlh_pdo_hash != lh_tgt->mlh_pdo_hash) {
1749                         rc = mdt_pdir_hash_lock(info, lh_tgt, tgt,
1750                                                 MDS_INODELOCK_UPDATE);
1751                         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PDO_LOCK2, 10);
1752                 }
1753         }
1754         if (rc)
1755                 GOTO(err_unlock, rc);
1756
1757         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME4, 5);
1758
1759         *srcp = src;
1760         *tgtp = tgt;
1761         RETURN(0);
1762
1763 err_unlock:
1764         /* The order does not matter as the handle is checked inside,
1765          * as well as not used handle. */
1766         mdt_object_unlock(info, src, lh_src, rc);
1767         mdt_object_unlock(info, tgt, lh_tgt, rc);
1768 err_tgt_put:
1769         mdt_object_put(info->mti_env, tgt);
1770 err_src_put:
1771         mdt_object_put(info->mti_env, src);
1772         RETURN(rc);
1773 }
1774
1775 /*
1776  * VBR: rename versions in reply: 0 - src parent; 1 - tgt parent;
1777  * 2 - src child; 3 - tgt child.
1778  * Update on disk version of src child.
1779  */
1780 /**
1781  * For DNE phase I, only these renames are allowed
1782  *      mv src_p/src_c tgt_p/tgt_c
1783  * 1. src_p/src_c/tgt_p/tgt_c are in the same MDT.
1784  * 2. src_p and tgt_p are same directory, and tgt_c does not
1785  *    exists. In this case, all of modification will happen
1786  *    in the MDT where ithesource parent is, only one remote
1787  *    update is needed, i.e. set c_time/m_time on the child.
1788  *    And tgt_c will be still in the same MDT as the original
1789  *    src_c.
1790  */
1791 static int mdt_reint_rename_internal(struct mdt_thread_info *info,
1792                                      struct mdt_lock_handle *lhc)
1793 {
1794         struct mdt_reint_record *rr = &info->mti_rr;
1795         struct md_attr          *ma = &info->mti_attr;
1796         struct ptlrpc_request   *req = mdt_info_req(info);
1797         struct mdt_object       *msrcdir = NULL;
1798         struct mdt_object       *mtgtdir = NULL;
1799         struct mdt_object       *mold;
1800         struct mdt_object       *mnew = NULL;
1801         struct mdt_lock_handle  *lh_srcdirp;
1802         struct mdt_lock_handle  *lh_tgtdirp;
1803         struct mdt_lock_handle  *lh_oldp = NULL;
1804         struct mdt_lock_handle  *lh_newp = NULL;
1805         struct lu_fid           *old_fid = &info->mti_tmp_fid1;
1806         struct lu_fid           *new_fid = &info->mti_tmp_fid2;
1807         __u64                   lock_ibits;
1808         int                      rc;
1809         ENTRY;
1810
1811         DEBUG_REQ(D_INODE, req, "rename "DFID"/"DNAME" to "DFID"/"DNAME,
1812                   PFID(rr->rr_fid1), PNAME(&rr->rr_name),
1813                   PFID(rr->rr_fid2), PNAME(&rr->rr_tgt_name));
1814
1815         lh_srcdirp = &info->mti_lh[MDT_LH_PARENT];
1816         mdt_lock_pdo_init(lh_srcdirp, LCK_PW, &rr->rr_name);
1817         lh_tgtdirp = &info->mti_lh[MDT_LH_CHILD];
1818         mdt_lock_pdo_init(lh_tgtdirp, LCK_PW, &rr->rr_tgt_name);
1819
1820         /* step 1&2: lock the source and target dirs. */
1821         rc = mdt_rename_parents_lock(info, &msrcdir, &mtgtdir);
1822         if (rc)
1823                 RETURN(rc);
1824
1825         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RENAME2, 5);
1826
1827         /* step 3: find & lock the old object. */
1828         fid_zero(old_fid);
1829         rc = mdt_lookup_version_check(info, msrcdir, &rr->rr_name, old_fid, 2);
1830         if (rc != 0)
1831                 GOTO(out_unlock_parents, rc);
1832
1833         if (lu_fid_eq(old_fid, rr->rr_fid1) || lu_fid_eq(old_fid, rr->rr_fid2))
1834                 GOTO(out_unlock_parents, rc = -EINVAL);
1835
1836         if (!fid_is_md_operative(old_fid))
1837                 GOTO(out_unlock_parents, rc = -EPERM);
1838
1839         mold = mdt_object_find(info->mti_env, info->mti_mdt, old_fid);
1840         if (IS_ERR(mold))
1841                 GOTO(out_unlock_parents, rc = PTR_ERR(mold));
1842
1843         /* Check if @mtgtdir is subdir of @mold, before locking child
1844          * to avoid reverse locking. */
1845         rc = mdt_is_subdir(info, mtgtdir, old_fid);
1846         if (rc)
1847                 GOTO(out_put_old, rc);
1848
1849         tgt_vbr_obj_set(info->mti_env, mdt_obj2dt(mold));
1850         /* save version after locking */
1851         mdt_version_get_save(info, mold, 2);
1852
1853         /* step 4: find & lock the new object. */
1854         /* new target object may not exist now */
1855         /* lookup with version checking */
1856         fid_zero(new_fid);
1857         rc = mdt_lookup_version_check(info, mtgtdir, &rr->rr_tgt_name, new_fid,
1858                                       3);
1859         if (rc == 0) {
1860                 /* the new_fid should have been filled at this moment */
1861                 if (lu_fid_eq(old_fid, new_fid))
1862                         GOTO(out_put_old, rc);
1863
1864                 if (lu_fid_eq(new_fid, rr->rr_fid1) ||
1865                     lu_fid_eq(new_fid, rr->rr_fid2))
1866                         GOTO(out_put_old, rc = -EINVAL);
1867
1868                 if (!fid_is_md_operative(new_fid))
1869                         GOTO(out_put_old, rc = -EPERM);
1870
1871                 mnew = mdt_object_find(info->mti_env, info->mti_mdt, new_fid);
1872                 if (IS_ERR(mnew))
1873                         GOTO(out_put_old, rc = PTR_ERR(mnew));
1874
1875                 if (mdt_object_remote(mnew)) {
1876                         struct mdt_body  *repbody;
1877
1878                         /* Always send rename req to the target child MDT */
1879                         repbody = req_capsule_server_get(info->mti_pill,
1880                                                          &RMF_MDT_BODY);
1881                         LASSERT(repbody != NULL);
1882                         repbody->mbo_fid1 = *new_fid;
1883                         repbody->mbo_valid |= (OBD_MD_FLID | OBD_MD_MDS);
1884                         GOTO(out_put_new, rc = -EXDEV);
1885                 }
1886                 /* Before locking the target dir, check we do not replace
1887                  * a dir with a non-dir, otherwise it may deadlock with
1888                  * link op which tries to create a link in this dir
1889                  * back to this non-dir. */
1890                 if (S_ISDIR(lu_object_attr(&mnew->mot_obj)) &&
1891                     !S_ISDIR(lu_object_attr(&mold->mot_obj)))
1892                         GOTO(out_put_new, rc = -EISDIR);
1893
1894                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
1895                 mdt_lock_reg_init(lh_oldp, LCK_EX);
1896
1897                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
1898                 if (mdt_object_remote(msrcdir)) {
1899                         /* Enqueue lookup lock from the parent MDT */
1900                         rc = mdt_remote_object_lock(info, msrcdir,
1901                                                     mdt_object_fid(mold),
1902                                                     &lh_oldp->mlh_rreg_lh,
1903                                                     lh_oldp->mlh_rreg_mode,
1904                                                     MDS_INODELOCK_LOOKUP,
1905                                                     false);
1906                         if (rc != ELDLM_OK)
1907                                 GOTO(out_put_new, rc);
1908
1909                         lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1910                 }
1911
1912                 rc = mdt_object_lock(info, mold, lh_oldp, lock_ibits);
1913                 if (rc != 0)
1914                         GOTO(out_unlock_old, rc);
1915
1916                 /* Check if @msrcdir is subdir of @mnew, before locking child
1917                  * to avoid reverse locking. */
1918                 rc = mdt_is_subdir(info, msrcdir, new_fid);
1919                 if (rc)
1920                         GOTO(out_unlock_old, rc);
1921
1922                 /* We used to acquire MDS_INODELOCK_FULL here but we
1923                  * can't do this now because a running HSM restore on
1924                  * the rename onto victim will hold the layout
1925                  * lock. See LU-4002. */
1926
1927                 lh_newp = &info->mti_lh[MDT_LH_NEW];
1928                 mdt_lock_reg_init(lh_newp, LCK_EX);
1929                 rc = mdt_object_lock(info, mnew, lh_newp,
1930                                      MDS_INODELOCK_LOOKUP |
1931                                      MDS_INODELOCK_UPDATE);
1932                 if (rc != 0)
1933                         GOTO(out_unlock_old, rc);
1934
1935                 /* get and save version after locking */
1936                 mdt_version_get_save(info, mnew, 3);
1937         } else if (rc != -EREMOTE && rc != -ENOENT) {
1938                 GOTO(out_put_old, rc);
1939         } else {
1940                 lh_oldp = &info->mti_lh[MDT_LH_OLD];
1941                 mdt_lock_reg_init(lh_oldp, LCK_EX);
1942
1943                 lock_ibits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_XATTR;
1944                 if (mdt_object_remote(msrcdir)) {
1945                         /* Enqueue lookup lock from the parent MDT */
1946                         rc = mdt_remote_object_lock(info, msrcdir,
1947                                                     mdt_object_fid(mold),
1948                                                     &lh_oldp->mlh_rreg_lh,
1949                                                     lh_oldp->mlh_rreg_mode,
1950                                                     MDS_INODELOCK_LOOKUP,
1951                                                     false);
1952                         if (rc != ELDLM_OK)
1953                                 GOTO(out_put_new, rc);
1954
1955                         lock_ibits &= ~MDS_INODELOCK_LOOKUP;
1956                 }
1957
1958                 rc = mdt_object_lock(info, mold, lh_oldp, lock_ibits);
1959                 if (rc != 0)
1960                         GOTO(out_put_old, rc);
1961
1962                 mdt_enoent_version_save(info, 3);
1963         }
1964
1965         /* step 5: rename it */
1966         mdt_reint_init_ma(info, ma);
1967
1968         mdt_fail_write(info->mti_env, info->mti_mdt->mdt_bottom,
1969                        OBD_FAIL_MDS_REINT_RENAME_WRITE);
1970
1971         if (mnew != NULL)
1972                 mutex_lock(&mnew->mot_lov_mutex);
1973
1974         rc = mdo_rename(info->mti_env, mdt_object_child(msrcdir),
1975                         mdt_object_child(mtgtdir), old_fid, &rr->rr_name,
1976                         mnew != NULL ? mdt_object_child(mnew) : NULL,
1977                         &rr->rr_tgt_name, ma);
1978
1979         if (mnew != NULL)
1980                 mutex_unlock(&mnew->mot_lov_mutex);
1981
1982         /* handle last link of tgt object */
1983         if (rc == 0) {
1984                 mdt_counter_incr(req, LPROC_MDT_RENAME);
1985                 if (mnew)
1986                         mdt_handle_last_unlink(info, mnew, ma);
1987
1988                 mdt_rename_counter_tally(info, info->mti_mdt, req,
1989                                          msrcdir, mtgtdir);
1990         }
1991
1992         EXIT;
1993         if (mnew != NULL)
1994                 mdt_object_unlock(info, mnew, lh_newp, rc);
1995 out_unlock_old:
1996         mdt_object_unlock(info, mold, lh_oldp, rc);
1997 out_put_new:
1998         if (mnew != NULL)
1999                 mdt_object_put(info->mti_env, mnew);
2000 out_put_old:
2001         mdt_object_put(info->mti_env, mold);
2002 out_unlock_parents:
2003         mdt_object_unlock_put(info, mtgtdir, lh_tgtdirp, rc);
2004         mdt_object_unlock_put(info, msrcdir, lh_srcdirp, rc);
2005         return rc;
2006 }
2007
2008 static int mdt_reint_rename_or_migrate(struct mdt_thread_info *info,
2009                                        struct mdt_lock_handle *lhc, bool rename)
2010 {
2011         struct mdt_reint_record *rr = &info->mti_rr;
2012         struct ptlrpc_request   *req = mdt_info_req(info);
2013         struct lustre_handle    rename_lh = { 0 };
2014         int                     rc;
2015         ENTRY;
2016
2017         if (info->mti_dlm_req)
2018                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
2019
2020         if (!fid_is_md_operative(rr->rr_fid1) ||
2021             !fid_is_md_operative(rr->rr_fid2))
2022                 RETURN(-EPERM);
2023
2024         /* Note: do not enqueue rename lock for replay request, because
2025          * if other MDT holds rename lock, but being blocked to wait for
2026          * this MDT to finish its recovery, and the failover MDT can not
2027          * get rename lock, which will cause deadlock. */
2028         if (!req_is_replay(req)) {
2029                 rc = mdt_rename_lock(info, &rename_lh);
2030                 if (rc != 0) {
2031                         CERROR("%s: can't lock FS for rename: rc  = %d\n",
2032                                mdt_obd_name(info->mti_mdt), rc);
2033                         RETURN(rc);
2034                 }
2035         }
2036
2037         if (rename)
2038                 rc = mdt_reint_rename_internal(info, lhc);
2039         else
2040                 rc = mdt_reint_migrate_internal(info, lhc);
2041
2042         if (lustre_handle_is_used(&rename_lh))
2043                 mdt_rename_unlock(&rename_lh);
2044
2045         RETURN(rc);
2046 }
2047
2048 static int mdt_reint_rename(struct mdt_thread_info *info,
2049                             struct mdt_lock_handle *lhc)
2050 {
2051         return mdt_reint_rename_or_migrate(info, lhc, true);
2052 }
2053
2054 static int mdt_reint_migrate(struct mdt_thread_info *info,
2055                             struct mdt_lock_handle *lhc)
2056 {
2057         return mdt_reint_rename_or_migrate(info, lhc, false);
2058 }
2059
2060 struct mdt_reinter {
2061         int (*mr_handler)(struct mdt_thread_info *, struct mdt_lock_handle *);
2062         enum lprocfs_extra_opc mr_extra_opc;
2063 };
2064
2065 static const struct mdt_reinter mdt_reinters[] = {
2066         [REINT_SETATTR] = {
2067                 .mr_handler = &mdt_reint_setattr,
2068                 .mr_extra_opc = MDS_REINT_SETATTR,
2069         },
2070         [REINT_CREATE] = {
2071                 .mr_handler = &mdt_reint_create,
2072                 .mr_extra_opc = MDS_REINT_CREATE,
2073         },
2074         [REINT_LINK] = {
2075                 .mr_handler = &mdt_reint_link,
2076                 .mr_extra_opc = MDS_REINT_LINK,
2077         },
2078         [REINT_UNLINK] = {
2079                 .mr_handler = &mdt_reint_unlink,
2080                 .mr_extra_opc = MDS_REINT_UNLINK,
2081         },
2082         [REINT_RENAME] = {
2083                 .mr_handler = &mdt_reint_rename,
2084                 .mr_extra_opc = MDS_REINT_RENAME,
2085         },
2086         [REINT_OPEN] = {
2087                 .mr_handler = &mdt_reint_open,
2088                 .mr_extra_opc = MDS_REINT_OPEN,
2089         },
2090         [REINT_SETXATTR] = {
2091                 .mr_handler = &mdt_reint_setxattr,
2092                 .mr_extra_opc = MDS_REINT_SETXATTR,
2093         },
2094         [REINT_RMENTRY] = {
2095                 .mr_handler = &mdt_reint_unlink,
2096                 .mr_extra_opc = MDS_REINT_UNLINK,
2097         },
2098         [REINT_MIGRATE] = {
2099                 .mr_handler = &mdt_reint_migrate,
2100                 .mr_extra_opc = MDS_REINT_RENAME,
2101         },
2102 };
2103
2104 int mdt_reint_rec(struct mdt_thread_info *info,
2105                   struct mdt_lock_handle *lhc)
2106 {
2107         const struct mdt_reinter *mr;
2108         int rc;
2109         ENTRY;
2110
2111         if (!(info->mti_rr.rr_opcode < ARRAY_SIZE(mdt_reinters)))
2112                 RETURN(-EPROTO);
2113
2114         mr = &mdt_reinters[info->mti_rr.rr_opcode];
2115         if (mr->mr_handler == NULL)
2116                 RETURN(-EPROTO);
2117
2118         rc = (*mr->mr_handler)(info, lhc);
2119
2120         lprocfs_counter_incr(ptlrpc_req2svc(mdt_info_req(info))->srv_stats,
2121                              PTLRPC_LAST_CNTR + mr->mr_extra_opc);
2122
2123         RETURN(rc);
2124 }