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