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