Whamcloud - gitweb
LU-13597 ofd: add more information to job_stats
[fs/lustre-release.git] / lustre / mdt / mdt_handler.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) 2010, 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_handler.c
33  *
34  * Lustre Metadata Target (mdt) request handler
35  *
36  * Author: Peter Braam <braam@clusterfs.com>
37  * Author: Andreas Dilger <adilger@clusterfs.com>
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Mike Shaver <shaver@clusterfs.com>
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  * Author: Huang Hua <huanghua@clusterfs.com>
42  * Author: Yury Umanets <umka@clusterfs.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_MDS
46
47 #include <linux/module.h>
48 #include <linux/pagemap.h>
49
50 #include <dt_object.h>
51 #include <lustre_acl.h>
52 #include <lustre_export.h>
53 #include <uapi/linux/lustre/lustre_ioctl.h>
54 #include <lustre_lfsck.h>
55 #include <lustre_log.h>
56 #include <lustre_nodemap.h>
57 #include <lustre_mds.h>
58 #include <uapi/linux/lustre/lustre_param.h>
59 #include <lustre_quota.h>
60 #include <lustre_swab.h>
61 #include <lustre_lmv.h>
62 #include <obd.h>
63 #include <obd_support.h>
64 #include <lustre_barrier.h>
65 #include <obd_cksum.h>
66 #include <llog_swab.h>
67
68 #include "mdt_internal.h"
69
70 static unsigned int max_mod_rpcs_per_client = 8;
71 module_param(max_mod_rpcs_per_client, uint, 0644);
72 MODULE_PARM_DESC(max_mod_rpcs_per_client, "maximum number of modify RPCs in flight allowed per client");
73
74 mdl_mode_t mdt_mdl_lock_modes[] = {
75         [LCK_MINMODE] = MDL_MINMODE,
76         [LCK_EX]      = MDL_EX,
77         [LCK_PW]      = MDL_PW,
78         [LCK_PR]      = MDL_PR,
79         [LCK_CW]      = MDL_CW,
80         [LCK_CR]      = MDL_CR,
81         [LCK_NL]      = MDL_NL,
82         [LCK_GROUP]   = MDL_GROUP
83 };
84
85 enum ldlm_mode mdt_dlm_lock_modes[] = {
86         [MDL_MINMODE]   = LCK_MINMODE,
87         [MDL_EX]        = LCK_EX,
88         [MDL_PW]        = LCK_PW,
89         [MDL_PR]        = LCK_PR,
90         [MDL_CW]        = LCK_CW,
91         [MDL_CR]        = LCK_CR,
92         [MDL_NL]        = LCK_NL,
93         [MDL_GROUP]     = LCK_GROUP
94 };
95
96 static struct mdt_device *mdt_dev(struct lu_device *d);
97
98 static const struct lu_object_operations mdt_obj_ops;
99
100 /* Slab for MDT object allocation */
101 static struct kmem_cache *mdt_object_kmem;
102
103 /* For HSM restore handles */
104 struct kmem_cache *mdt_hsm_cdt_kmem;
105
106 /* For HSM request handles */
107 struct kmem_cache *mdt_hsm_car_kmem;
108
109 static struct lu_kmem_descr mdt_caches[] = {
110         {
111                 .ckd_cache = &mdt_object_kmem,
112                 .ckd_name  = "mdt_obj",
113                 .ckd_size  = sizeof(struct mdt_object)
114         },
115         {
116                 .ckd_cache      = &mdt_hsm_cdt_kmem,
117                 .ckd_name       = "mdt_cdt_restore_handle",
118                 .ckd_size       = sizeof(struct cdt_restore_handle)
119         },
120         {
121                 .ckd_cache      = &mdt_hsm_car_kmem,
122                 .ckd_name       = "mdt_cdt_agent_req",
123                 .ckd_size       = sizeof(struct cdt_agent_req)
124         },
125         {
126                 .ckd_cache = NULL
127         }
128 };
129
130 __u64 mdt_get_disposition(struct ldlm_reply *rep, __u64 op_flag)
131 {
132         if (!rep)
133                 return 0;
134         return rep->lock_policy_res1 & op_flag;
135 }
136
137 void mdt_clear_disposition(struct mdt_thread_info *info,
138                            struct ldlm_reply *rep, __u64 op_flag)
139 {
140         if (info) {
141                 info->mti_opdata &= ~op_flag;
142                 tgt_opdata_clear(info->mti_env, op_flag);
143         }
144         if (rep)
145                 rep->lock_policy_res1 &= ~op_flag;
146 }
147
148 void mdt_set_disposition(struct mdt_thread_info *info,
149                          struct ldlm_reply *rep, __u64 op_flag)
150 {
151         if (info) {
152                 info->mti_opdata |= op_flag;
153                 tgt_opdata_set(info->mti_env, op_flag);
154         }
155         if (rep)
156                 rep->lock_policy_res1 |= op_flag;
157 }
158
159 void mdt_lock_reg_init(struct mdt_lock_handle *lh, enum ldlm_mode lm)
160 {
161         lh->mlh_pdo_hash = 0;
162         lh->mlh_reg_mode = lm;
163         lh->mlh_rreg_mode = lm;
164         lh->mlh_type = MDT_REG_LOCK;
165 }
166
167 void mdt_lock_pdo_init(struct mdt_lock_handle *lh, enum ldlm_mode lock_mode,
168                        const struct lu_name *lname)
169 {
170         lh->mlh_reg_mode = lock_mode;
171         lh->mlh_pdo_mode = LCK_MINMODE;
172         lh->mlh_rreg_mode = lock_mode;
173         lh->mlh_type = MDT_PDO_LOCK;
174
175         if (lu_name_is_valid(lname)) {
176                 lh->mlh_pdo_hash = ll_full_name_hash(NULL, lname->ln_name,
177                                                      lname->ln_namelen);
178                 /* XXX Workaround for LU-2856
179                  *
180                  * Zero is a valid return value of full_name_hash, but
181                  * several users of mlh_pdo_hash assume a non-zero
182                  * hash value. We therefore map zero onto an
183                  * arbitrary, but consistent value (1) to avoid
184                  * problems further down the road. */
185                 if (unlikely(lh->mlh_pdo_hash == 0))
186                         lh->mlh_pdo_hash = 1;
187         } else {
188                 lh->mlh_pdo_hash = 0;
189         }
190 }
191
192 static void mdt_lock_pdo_mode(struct mdt_thread_info *info, struct mdt_object *o,
193                               struct mdt_lock_handle *lh)
194 {
195         mdl_mode_t mode;
196         ENTRY;
197
198         /*
199          * Any dir access needs couple of locks:
200          *
201          * 1) on part of dir we gonna take lookup/modify;
202          *
203          * 2) on whole dir to protect it from concurrent splitting and/or to
204          * flush client's cache for readdir().
205          *
206          * so, for a given mode and object this routine decides what lock mode
207          * to use for lock #2:
208          *
209          * 1) if caller's gonna lookup in dir then we need to protect dir from
210          * being splitted only - LCK_CR
211          *
212          * 2) if caller's gonna modify dir then we need to protect dir from
213          * being splitted and to flush cache - LCK_CW
214          *
215          * 3) if caller's gonna modify dir and that dir seems ready for
216          * splitting then we need to protect it from any type of access
217          * (lookup/modify/split) - LCK_EX --bzzz
218          */
219
220         LASSERT(lh->mlh_reg_mode != LCK_MINMODE);
221         LASSERT(lh->mlh_pdo_mode == LCK_MINMODE);
222
223         /*
224          * Ask underlaying level its opinion about preferable PDO lock mode
225          * having access type passed as regular lock mode:
226          *
227          * - MDL_MINMODE means that lower layer does not want to specify lock
228          * mode;
229          *
230          * - MDL_NL means that no PDO lock should be taken. This is used in some
231          * cases. Say, for non-splittable directories no need to use PDO locks
232          * at all.
233          */
234         mode = mdo_lock_mode(info->mti_env, mdt_object_child(o),
235                              mdt_dlm_mode2mdl_mode(lh->mlh_reg_mode));
236
237         if (mode != MDL_MINMODE) {
238                 lh->mlh_pdo_mode = mdt_mdl_mode2dlm_mode(mode);
239         } else {
240                 /*
241                  * Lower layer does not want to specify locking mode. We do it
242                  * our selves. No special protection is needed, just flush
243                  * client's cache on modification and allow concurrent
244                  * mondification.
245                  */
246                 switch (lh->mlh_reg_mode) {
247                 case LCK_EX:
248                         lh->mlh_pdo_mode = LCK_EX;
249                         break;
250                 case LCK_PR:
251                         lh->mlh_pdo_mode = LCK_CR;
252                         break;
253                 case LCK_PW:
254                         lh->mlh_pdo_mode = LCK_CW;
255                         break;
256                 default:
257                         CERROR("Not expected lock type (0x%x)\n",
258                                (int)lh->mlh_reg_mode);
259                         LBUG();
260                 }
261         }
262
263         LASSERT(lh->mlh_pdo_mode != LCK_MINMODE);
264         EXIT;
265 }
266
267 static int mdt_lookup_fileset(struct mdt_thread_info *info, const char *fileset,
268                               struct lu_fid *fid)
269 {
270         struct mdt_device *mdt = info->mti_mdt;
271         struct lu_name *lname = &info->mti_name;
272         char *filename = info->mti_filename;
273         struct mdt_object *parent;
274         u32 mode;
275         int rc = 0;
276
277         LASSERT(!info->mti_cross_ref);
278
279         /*
280          * We may want to allow this to mount a completely separate
281          * fileset from the MDT in the future, but keeping it to
282          * ROOT/ only for now avoid potential security issues.
283          */
284         *fid = mdt->mdt_md_root_fid;
285
286         while (rc == 0 && fileset != NULL && *fileset != '\0') {
287                 const char *s1 = fileset;
288                 const char *s2;
289
290                 while (*++s1 == '/')
291                         ;
292                 s2 = s1;
293                 while (*s2 != '/' && *s2 != '\0')
294                         s2++;
295
296                 if (s2 == s1)
297                         break;
298
299                 fileset = s2;
300
301                 lname->ln_namelen = s2 - s1;
302                 if (lname->ln_namelen > NAME_MAX) {
303                         rc = -EINVAL;
304                         break;
305                 }
306
307                 /* reject .. as a path component */
308                 if (lname->ln_namelen == 2 &&
309                     strncmp(s1, "..", 2) == 0) {
310                         rc = -EINVAL;
311                         break;
312                 }
313
314                 strncpy(filename, s1, lname->ln_namelen);
315                 filename[lname->ln_namelen] = '\0';
316                 lname->ln_name = filename;
317
318                 parent = mdt_object_find(info->mti_env, mdt, fid);
319                 if (IS_ERR(parent)) {
320                         rc = PTR_ERR(parent);
321                         break;
322                 }
323                 /* Only got the fid of this obj by name */
324                 fid_zero(fid);
325                 rc = mdo_lookup(info->mti_env, mdt_object_child(parent), lname,
326                                 fid, &info->mti_spec);
327                 mdt_object_put(info->mti_env, parent);
328         }
329         if (!rc) {
330                 parent = mdt_object_find(info->mti_env, mdt, fid);
331                 if (IS_ERR(parent))
332                         rc = PTR_ERR(parent);
333                 else {
334                         mode = lu_object_attr(&parent->mot_obj);
335                         mdt_object_put(info->mti_env, parent);
336                         if (!S_ISDIR(mode))
337                                 rc = -ENOTDIR;
338                 }
339         }
340
341         return rc;
342 }
343
344 static int mdt_get_root(struct tgt_session_info *tsi)
345 {
346         struct mdt_thread_info  *info = tsi2mdt_info(tsi);
347         struct mdt_device       *mdt = info->mti_mdt;
348         struct mdt_body         *repbody;
349         char                    *fileset = NULL, *buffer = NULL;
350         int                      rc;
351         struct obd_export       *exp = info->mti_exp;
352         char                    *nodemap_fileset;
353
354         ENTRY;
355
356         rc = mdt_check_ucred(info);
357         if (rc)
358                 GOTO(out, rc = err_serious(rc));
359
360         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GET_ROOT_PACK))
361                 GOTO(out, rc = err_serious(-ENOMEM));
362
363         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
364         if (req_capsule_get_size(info->mti_pill, &RMF_NAME, RCL_CLIENT) > 0) {
365                 fileset = req_capsule_client_get(info->mti_pill, &RMF_NAME);
366                 if (fileset == NULL)
367                         GOTO(out, rc = err_serious(-EFAULT));
368         }
369
370         nodemap_fileset = nodemap_get_fileset(exp->exp_target_data.ted_nodemap);
371         if (nodemap_fileset && nodemap_fileset[0]) {
372                 CDEBUG(D_INFO, "nodemap fileset is %s\n", nodemap_fileset);
373                 if (fileset) {
374                         /* consider fileset from client as a sub-fileset
375                          * of the nodemap one */
376                         OBD_ALLOC(buffer, PATH_MAX + 1);
377                         if (buffer == NULL)
378                                 GOTO(out, rc = err_serious(-ENOMEM));
379                         if (snprintf(buffer, PATH_MAX + 1, "%s/%s",
380                                      nodemap_fileset, fileset) >= PATH_MAX + 1)
381                                 GOTO(out, rc = err_serious(-EINVAL));
382                         fileset = buffer;
383                 } else {
384                         /* enforce fileset as specified in the nodemap */
385                         fileset = nodemap_fileset;
386                 }
387         }
388
389         if (fileset) {
390                 CDEBUG(D_INFO, "Getting fileset %s\n", fileset);
391                 rc = mdt_lookup_fileset(info, fileset, &repbody->mbo_fid1);
392                 if (rc < 0)
393                         GOTO(out, rc = err_serious(rc));
394         } else {
395                 repbody->mbo_fid1 = mdt->mdt_md_root_fid;
396         }
397         repbody->mbo_valid |= OBD_MD_FLID;
398
399         EXIT;
400 out:
401         mdt_thread_info_fini(info);
402         if (buffer)
403                 OBD_FREE(buffer, PATH_MAX+1);
404         return rc;
405 }
406
407 static int mdt_statfs(struct tgt_session_info *tsi)
408 {
409         struct ptlrpc_request *req = tgt_ses_req(tsi);
410         struct mdt_thread_info *info = tsi2mdt_info(tsi);
411         struct mdt_device *mdt = info->mti_mdt;
412         struct tg_grants_data *tgd = &mdt->mdt_lut.lut_tgd;
413         struct md_device *next = mdt->mdt_child;
414         struct ptlrpc_service_part *svcpt;
415         struct obd_statfs *osfs;
416         struct mdt_body *reqbody = NULL;
417         struct mdt_statfs_cache *msf;
418         ktime_t kstart = ktime_get();
419         int rc;
420
421         ENTRY;
422
423         svcpt = req->rq_rqbd->rqbd_svcpt;
424
425         /* This will trigger a watchdog timeout */
426         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_STATFS_LCW_SLEEP,
427                          (MDT_SERVICE_WATCHDOG_FACTOR *
428                           at_get(&svcpt->scp_at_estimate)) + 1);
429
430         rc = mdt_check_ucred(info);
431         if (rc)
432                 GOTO(out, rc = err_serious(rc));
433
434         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_STATFS_PACK))
435                 GOTO(out, rc = err_serious(-ENOMEM));
436
437         osfs = req_capsule_server_get(info->mti_pill, &RMF_OBD_STATFS);
438         if (!osfs)
439                 GOTO(out, rc = -EPROTO);
440
441         if (mdt_is_sum_statfs_client(req->rq_export) &&
442                 lustre_packed_msg_size(req->rq_reqmsg) ==
443                 req_capsule_fmt_size(req->rq_reqmsg->lm_magic,
444                                      &RQF_MDS_STATFS_NEW, RCL_CLIENT)) {
445                 req_capsule_extend(info->mti_pill, &RQF_MDS_STATFS_NEW);
446                 reqbody = req_capsule_client_get(info->mti_pill, &RMF_MDT_BODY);
447         }
448
449         if (reqbody && reqbody->mbo_valid & OBD_MD_FLAGSTATFS)
450                 msf = &mdt->mdt_sum_osfs;
451         else
452                 msf = &mdt->mdt_osfs;
453
454         if (msf->msf_age + OBD_STATFS_CACHE_SECONDS <= ktime_get_seconds()) {
455                         /** statfs data is too old, get up-to-date one */
456                         if (reqbody && reqbody->mbo_valid & OBD_MD_FLAGSTATFS)
457                                 rc = next->md_ops->mdo_statfs(info->mti_env,
458                                                               next, osfs);
459                         else
460                                 rc = dt_statfs(info->mti_env, mdt->mdt_bottom,
461                                                osfs);
462                         if (rc)
463                                 GOTO(out, rc);
464                         spin_lock(&mdt->mdt_lock);
465                         msf->msf_osfs = *osfs;
466                         msf->msf_age = ktime_get_seconds();
467                         spin_unlock(&mdt->mdt_lock);
468         } else {
469                         /** use cached statfs data */
470                         spin_lock(&mdt->mdt_lock);
471                         *osfs = msf->msf_osfs;
472                         spin_unlock(&mdt->mdt_lock);
473         }
474
475         /* at least try to account for cached pages.  its still racy and
476          * might be under-reporting if clients haven't announced their
477          * caches with brw recently */
478         CDEBUG(D_SUPER | D_CACHE, "blocks cached %llu granted %llu"
479                " pending %llu free %llu avail %llu\n",
480                tgd->tgd_tot_dirty, tgd->tgd_tot_granted,
481                tgd->tgd_tot_pending,
482                osfs->os_bfree << tgd->tgd_blockbits,
483                osfs->os_bavail << tgd->tgd_blockbits);
484
485         osfs->os_bavail -= min_t(u64, osfs->os_bavail,
486                                  ((tgd->tgd_tot_dirty + tgd->tgd_tot_pending +
487                                    osfs->os_bsize - 1) >> tgd->tgd_blockbits));
488
489         tgt_grant_sanity_check(mdt->mdt_lu_dev.ld_obd, __func__);
490         CDEBUG(D_CACHE, "%llu blocks: %llu free, %llu avail; "
491                "%llu objects: %llu free; state %x\n",
492                osfs->os_blocks, osfs->os_bfree, osfs->os_bavail,
493                osfs->os_files, osfs->os_ffree, osfs->os_state);
494
495         if (!exp_grant_param_supp(tsi->tsi_exp) &&
496             tgd->tgd_blockbits > COMPAT_BSIZE_SHIFT) {
497                 /* clients which don't support OBD_CONNECT_GRANT_PARAM
498                  * should not see a block size > page size, otherwise
499                  * cl_lost_grant goes mad. Therefore, we emulate a 4KB (=2^12)
500                  * block size which is the biggest block size known to work
501                  * with all client's page size. */
502                 osfs->os_blocks <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
503                 osfs->os_bfree  <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
504                 osfs->os_bavail <<= tgd->tgd_blockbits - COMPAT_BSIZE_SHIFT;
505                 osfs->os_bsize = 1 << COMPAT_BSIZE_SHIFT;
506         }
507         if (rc == 0)
508                 mdt_counter_incr(req, LPROC_MDT_STATFS,
509                                  ktime_us_delta(ktime_get(), kstart));
510 out:
511         mdt_thread_info_fini(info);
512         RETURN(rc);
513 }
514
515 __u32 mdt_lmm_dom_entry_check(struct lov_mds_md *lmm, int *is_dom_only)
516 {
517         struct lov_comp_md_v1 *comp_v1;
518         struct lov_mds_md *v1;
519         __u32 off;
520         __u32 dom_stripesize = 0;
521         int i;
522         bool has_ost_stripes = false;
523
524         ENTRY;
525
526         if (is_dom_only)
527                 *is_dom_only = 0;
528
529         if (le32_to_cpu(lmm->lmm_magic) != LOV_MAGIC_COMP_V1)
530                 RETURN(0);
531
532         comp_v1 = (struct lov_comp_md_v1 *)lmm;
533         off = le32_to_cpu(comp_v1->lcm_entries[0].lcme_offset);
534         v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
535
536         /* Fast check for DoM entry with no mirroring, should be the first */
537         if (le16_to_cpu(comp_v1->lcm_mirror_count) == 0 &&
538             lov_pattern(le32_to_cpu(v1->lmm_pattern)) != LOV_PATTERN_MDT)
539                 RETURN(0);
540
541         /* check all entries otherwise */
542         for (i = 0; i < le16_to_cpu(comp_v1->lcm_entry_count); i++) {
543                 struct lov_comp_md_entry_v1 *lcme;
544
545                 lcme = &comp_v1->lcm_entries[i];
546                 if (!(le32_to_cpu(lcme->lcme_flags) & LCME_FL_INIT))
547                         continue;
548
549                 off = le32_to_cpu(lcme->lcme_offset);
550                 v1 = (struct lov_mds_md *)((char *)comp_v1 + off);
551
552                 if (lov_pattern(le32_to_cpu(v1->lmm_pattern)) ==
553                     LOV_PATTERN_MDT)
554                         dom_stripesize = le32_to_cpu(v1->lmm_stripe_size);
555                 else
556                         has_ost_stripes = true;
557
558                 if (dom_stripesize && has_ost_stripes)
559                         RETURN(dom_stripesize);
560         }
561         /* DoM-only case exits here */
562         if (is_dom_only && dom_stripesize)
563                 *is_dom_only = 1;
564         RETURN(dom_stripesize);
565 }
566
567 /**
568  * Pack size attributes into the reply.
569  */
570 int mdt_pack_size2body(struct mdt_thread_info *info,
571                         const struct lu_fid *fid, struct lustre_handle *lh)
572 {
573         struct mdt_body *b;
574         struct md_attr *ma = &info->mti_attr;
575         __u32 dom_stripe;
576         bool dom_lock = false;
577
578         ENTRY;
579
580         LASSERT(ma->ma_attr.la_valid & LA_MODE);
581
582         if (!S_ISREG(ma->ma_attr.la_mode) ||
583             !(ma->ma_valid & MA_LOV && ma->ma_lmm != NULL))
584                 RETURN(-ENODATA);
585
586         dom_stripe = mdt_lmm_dom_stripesize(ma->ma_lmm);
587         /* no DoM stripe, no size in reply */
588         if (!dom_stripe)
589                 RETURN(-ENOENT);
590
591         if (lustre_handle_is_used(lh)) {
592                 struct ldlm_lock *lock;
593
594                 lock = ldlm_handle2lock(lh);
595                 if (lock != NULL) {
596                         dom_lock = ldlm_has_dom(lock);
597                         LDLM_LOCK_PUT(lock);
598                 }
599         }
600
601         /* no DoM lock, no size in reply */
602         if (!dom_lock)
603                 RETURN(0);
604
605         /* Either DoM lock exists or LMM has only DoM stripe then
606          * return size on body. */
607         b = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
608
609         mdt_dom_object_size(info->mti_env, info->mti_mdt, fid, b, dom_lock);
610         RETURN(0);
611 }
612
613 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
614 /*
615  * Pack ACL data into the reply. UIDs/GIDs are mapped and filtered by nodemap.
616  *
617  * \param       info    thread info object
618  * \param       repbody reply to pack ACLs into
619  * \param       o       mdt object of file to examine
620  * \param       nodemap nodemap of client to reply to
621  * \retval      0       success
622  * \retval      -errno  error getting or parsing ACL from disk
623  */
624 int mdt_pack_acl2body(struct mdt_thread_info *info, struct mdt_body *repbody,
625                       struct mdt_object *o, struct lu_nodemap *nodemap)
626 {
627         const struct lu_env     *env = info->mti_env;
628         struct md_object        *next = mdt_object_child(o);
629         struct lu_buf           *buf = &info->mti_buf;
630         struct mdt_device       *mdt = info->mti_mdt;
631         struct req_capsule *pill = info->mti_pill;
632         int rc;
633
634         ENTRY;
635
636         buf->lb_buf = req_capsule_server_get(pill, &RMF_ACL);
637         buf->lb_len = req_capsule_get_size(pill, &RMF_ACL, RCL_SERVER);
638         if (buf->lb_len == 0)
639                 RETURN(0);
640
641 again:
642         rc = mo_xattr_get(env, next, buf, XATTR_NAME_ACL_ACCESS);
643         if (rc < 0) {
644                 if (rc == -ENODATA) {
645                         repbody->mbo_aclsize = 0;
646                         repbody->mbo_valid |= OBD_MD_FLACL;
647                         rc = 0;
648                 } else if (rc == -EOPNOTSUPP) {
649                         rc = 0;
650                 } else {
651                         if (rc == -ERANGE &&
652                             exp_connect_large_acl(info->mti_exp) &&
653                             buf->lb_buf != info->mti_big_acl) {
654                                 if (info->mti_big_acl == NULL) {
655                                         info->mti_big_aclsize =
656                                                         min_t(unsigned int,
657                                                               mdt->mdt_max_ea_size,
658                                                               XATTR_SIZE_MAX);
659                                         OBD_ALLOC_LARGE(info->mti_big_acl,
660                                                         info->mti_big_aclsize);
661                                         if (info->mti_big_acl == NULL) {
662                                                 info->mti_big_aclsize = 0;
663                                                 CERROR("%s: unable to grow "
664                                                        DFID" ACL buffer\n",
665                                                        mdt_obd_name(mdt),
666                                                        PFID(mdt_object_fid(o)));
667                                                 RETURN(-ENOMEM);
668                                         }
669                                 }
670
671                                 CDEBUG(D_INODE, "%s: grow the "DFID
672                                        " ACL buffer to size %d\n",
673                                        mdt_obd_name(mdt),
674                                        PFID(mdt_object_fid(o)),
675                                        info->mti_big_aclsize);
676
677                                 buf->lb_buf = info->mti_big_acl;
678                                 buf->lb_len = info->mti_big_aclsize;
679
680                                 goto again;
681                         }
682
683                         CERROR("%s: unable to read "DFID" ACL: rc = %d\n",
684                                mdt_obd_name(mdt), PFID(mdt_object_fid(o)), rc);
685                 }
686         } else {
687                 int client;
688                 int server;
689                 int acl_buflen;
690                 int lmm_buflen = 0;
691                 int lmmsize = 0;
692
693                 acl_buflen = req_capsule_get_size(pill, &RMF_ACL, RCL_SERVER);
694                 if (acl_buflen >= rc)
695                         goto map;
696
697                 /* If LOV/LMA EA is small, we can reuse part of their buffer */
698                 client = ptlrpc_req_get_repsize(pill->rc_req);
699                 server = lustre_packed_msg_size(pill->rc_req->rq_repmsg);
700                 if (req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER)) {
701                         lmm_buflen = req_capsule_get_size(pill, &RMF_MDT_MD,
702                                                           RCL_SERVER);
703                         lmmsize = repbody->mbo_eadatasize;
704                 }
705
706                 if (client < server - acl_buflen - lmm_buflen + rc + lmmsize) {
707                         CDEBUG(D_INODE, "%s: client prepared buffer size %d "
708                                "is not big enough with the ACL size %d (%d)\n",
709                                mdt_obd_name(mdt), client, rc,
710                                server - acl_buflen - lmm_buflen + rc + lmmsize);
711                         repbody->mbo_aclsize = 0;
712                         repbody->mbo_valid &= ~OBD_MD_FLACL;
713                         RETURN(-ERANGE);
714                 }
715
716 map:
717                 if (buf->lb_buf == info->mti_big_acl)
718                         info->mti_big_acl_used = 1;
719
720                 rc = nodemap_map_acl(nodemap, buf->lb_buf,
721                                      rc, NODEMAP_FS_TO_CLIENT);
722                 /* if all ACLs mapped out, rc is still >= 0 */
723                 if (rc < 0) {
724                         CERROR("%s: nodemap_map_acl unable to parse "DFID
725                                " ACL: rc = %d\n", mdt_obd_name(mdt),
726                                PFID(mdt_object_fid(o)), rc);
727                         repbody->mbo_aclsize = 0;
728                         repbody->mbo_valid &= ~OBD_MD_FLACL;
729                 } else {
730                         repbody->mbo_aclsize = rc;
731                         repbody->mbo_valid |= OBD_MD_FLACL;
732                         rc = 0;
733                 }
734         }
735
736         RETURN(rc);
737 }
738 #endif
739
740 /* XXX Look into layout in MDT layer. */
741 static inline bool mdt_hsm_is_released(struct lov_mds_md *lmm)
742 {
743         struct lov_comp_md_v1   *comp_v1;
744         struct lov_mds_md       *v1;
745         int                      i;
746
747         if (lmm->lmm_magic == LOV_MAGIC_COMP_V1) {
748                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
749
750                 for (i = 0; i < comp_v1->lcm_entry_count; i++) {
751                         v1 = (struct lov_mds_md *)((char *)comp_v1 +
752                                 comp_v1->lcm_entries[i].lcme_offset);
753                         /* We don't support partial release for now */
754                         if (!(v1->lmm_pattern & LOV_PATTERN_F_RELEASED))
755                                 return false;
756                 }
757                 return true;
758         } else {
759                 return (lmm->lmm_pattern & LOV_PATTERN_F_RELEASED) ?
760                         true : false;
761         }
762 }
763
764 void mdt_pack_attr2body(struct mdt_thread_info *info, struct mdt_body *b,
765                         const struct lu_attr *attr, const struct lu_fid *fid)
766 {
767         struct md_attr *ma = &info->mti_attr;
768         struct obd_export *exp = info->mti_exp;
769         struct lu_nodemap *nodemap = NULL;
770
771         LASSERT(ma->ma_valid & MA_INODE);
772
773         if (attr->la_valid & LA_ATIME) {
774                 b->mbo_atime = attr->la_atime;
775                 b->mbo_valid |= OBD_MD_FLATIME;
776         }
777         if (attr->la_valid & LA_MTIME) {
778                 b->mbo_mtime = attr->la_mtime;
779                 b->mbo_valid |= OBD_MD_FLMTIME;
780         }
781         if (attr->la_valid & LA_CTIME) {
782                 b->mbo_ctime = attr->la_ctime;
783                 b->mbo_valid |= OBD_MD_FLCTIME;
784         }
785         if (attr->la_valid & LA_BTIME) {
786                 b->mbo_btime = attr->la_btime;
787                 b->mbo_valid |= OBD_MD_FLBTIME;
788         }
789         if (attr->la_valid & LA_FLAGS) {
790                 b->mbo_flags = attr->la_flags;
791                 b->mbo_valid |= OBD_MD_FLFLAGS;
792         }
793         if (attr->la_valid & LA_NLINK) {
794                 b->mbo_nlink = attr->la_nlink;
795                 b->mbo_valid |= OBD_MD_FLNLINK;
796         }
797         if (attr->la_valid & (LA_UID|LA_GID)) {
798                 nodemap = nodemap_get_from_exp(exp);
799                 if (IS_ERR(nodemap))
800                         goto out;
801         }
802         if (attr->la_valid & LA_UID) {
803                 b->mbo_uid = nodemap_map_id(nodemap, NODEMAP_UID,
804                                             NODEMAP_FS_TO_CLIENT,
805                                             attr->la_uid);
806                 b->mbo_valid |= OBD_MD_FLUID;
807         }
808         if (attr->la_valid & LA_GID) {
809                 b->mbo_gid = nodemap_map_id(nodemap, NODEMAP_GID,
810                                             NODEMAP_FS_TO_CLIENT,
811                                             attr->la_gid);
812                 b->mbo_valid |= OBD_MD_FLGID;
813         }
814
815         if (attr->la_valid & LA_PROJID) {
816                 /* TODO, nodemap for project id */
817                 b->mbo_projid = attr->la_projid;
818                 b->mbo_valid |= OBD_MD_FLPROJID;
819         }
820
821         b->mbo_mode = attr->la_mode;
822         if (attr->la_valid & LA_MODE)
823                 b->mbo_valid |= OBD_MD_FLMODE;
824         if (attr->la_valid & LA_TYPE)
825                 b->mbo_valid |= OBD_MD_FLTYPE;
826
827         if (fid != NULL) {
828                 b->mbo_fid1 = *fid;
829                 b->mbo_valid |= OBD_MD_FLID;
830                 CDEBUG(D_INODE, DFID": nlink=%d, mode=%o, valid=%#llx\n",
831                        PFID(fid), b->mbo_nlink, b->mbo_mode, b->mbo_valid);
832         }
833
834         if (!(attr->la_valid & LA_TYPE))
835                 return;
836
837         b->mbo_rdev   = attr->la_rdev;
838         b->mbo_size   = attr->la_size;
839         b->mbo_blocks = attr->la_blocks;
840
841         if (!S_ISREG(attr->la_mode)) {
842                 b->mbo_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS | OBD_MD_FLRDEV;
843         } else if (ma->ma_need & MA_LOV && !(ma->ma_valid & MA_LOV)) {
844                 /* means no objects are allocated on osts. */
845                 LASSERT(!(ma->ma_valid & MA_LOV));
846                 /* just ignore blocks occupied by extend attributes on MDS */
847                 b->mbo_blocks = 0;
848                 /* if no object is allocated on osts, the size on mds is valid.
849                  * b=22272 */
850                 b->mbo_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
851         } else if ((ma->ma_valid & MA_LOV) && ma->ma_lmm != NULL) {
852                 if (mdt_hsm_is_released(ma->ma_lmm)) {
853                         /* A released file stores its size on MDS. */
854                         /* But return 1 block for released file, unless tools
855                          * like tar will consider it fully sparse. (LU-3864)
856                          */
857                         if (unlikely(b->mbo_size == 0))
858                                 b->mbo_blocks = 0;
859                         else
860                                 b->mbo_blocks = 1;
861                         b->mbo_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
862                 } else if (info->mti_som_valid) { /* som is valid */
863                         b->mbo_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
864                 } else if (ma->ma_valid & MA_SOM) { /* lsom is valid */
865                         b->mbo_valid |= OBD_MD_FLLAZYSIZE | OBD_MD_FLLAZYBLOCKS;
866                         b->mbo_size = ma->ma_som.ms_size;
867                         b->mbo_blocks = ma->ma_som.ms_blocks;
868                 }
869         }
870
871         if (fid != NULL && (b->mbo_valid & OBD_MD_FLSIZE ||
872                             b->mbo_valid & OBD_MD_FLLAZYSIZE))
873                 CDEBUG(D_VFSTRACE, DFID": returning size %llu\n",
874                        PFID(fid), (unsigned long long)b->mbo_size);
875
876 out:
877         if (!IS_ERR_OR_NULL(nodemap))
878                 nodemap_putref(nodemap);
879 }
880
881 static inline int mdt_body_has_lov(const struct lu_attr *la,
882                                    const struct mdt_body *body)
883 {
884         return (S_ISREG(la->la_mode) && (body->mbo_valid & OBD_MD_FLEASIZE)) ||
885                (S_ISDIR(la->la_mode) && (body->mbo_valid & OBD_MD_FLDIREA));
886 }
887
888 void mdt_client_compatibility(struct mdt_thread_info *info)
889 {
890         struct mdt_body       *body;
891         struct ptlrpc_request *req = mdt_info_req(info);
892         struct obd_export     *exp = req->rq_export;
893         struct md_attr        *ma = &info->mti_attr;
894         struct lu_attr        *la = &ma->ma_attr;
895         ENTRY;
896
897         if (exp_connect_layout(exp))
898                 /* the client can deal with 16-bit lmm_stripe_count */
899                 RETURN_EXIT;
900
901         body = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
902
903         if (!mdt_body_has_lov(la, body))
904                 RETURN_EXIT;
905
906         /* now we have a reply with a lov for a client not compatible with the
907          * layout lock so we have to clean the layout generation number */
908         if (S_ISREG(la->la_mode))
909                 ma->ma_lmm->lmm_layout_gen = 0;
910         EXIT;
911 }
912
913 static int mdt_attr_get_eabuf_size(struct mdt_thread_info *info,
914                                    struct mdt_object *o)
915 {
916         const struct lu_env *env = info->mti_env;
917         int rc, rc2;
918
919         rc = mo_xattr_get(env, mdt_object_child(o), &LU_BUF_NULL,
920                           XATTR_NAME_LOV);
921
922         if (rc == -ENODATA)
923                 rc = 0;
924
925         if (rc < 0)
926                 goto out;
927
928         /* Is it a directory? Let's check for the LMV as well */
929         if (S_ISDIR(lu_object_attr(&mdt_object_child(o)->mo_lu))) {
930                 rc2 = mo_xattr_get(env, mdt_object_child(o), &LU_BUF_NULL,
931                                    XATTR_NAME_LMV);
932
933                 if (rc2 == -ENODATA)
934                         rc2 = mo_xattr_get(env, mdt_object_child(o),
935                                            &LU_BUF_NULL,
936                                            XATTR_NAME_DEFAULT_LMV);
937
938                 if ((rc2 < 0 && rc2 != -ENODATA) || (rc2 > rc))
939                         rc = rc2;
940         }
941
942 out:
943         return rc;
944 }
945
946 int mdt_big_xattr_get(struct mdt_thread_info *info, struct mdt_object *o,
947                       const char *name)
948 {
949         const struct lu_env *env = info->mti_env;
950         int rc;
951         ENTRY;
952
953         LASSERT(info->mti_big_lmm_used == 0);
954         rc = mo_xattr_get(env, mdt_object_child(o), &LU_BUF_NULL, name);
955         if (rc < 0)
956                 RETURN(rc);
957
958         /* big_lmm may need to be grown */
959         if (info->mti_big_lmmsize < rc) {
960                 int size = size_roundup_power2(rc);
961
962                 if (info->mti_big_lmmsize > 0) {
963                         /* free old buffer */
964                         LASSERT(info->mti_big_lmm);
965                         OBD_FREE_LARGE(info->mti_big_lmm,
966                                        info->mti_big_lmmsize);
967                         info->mti_big_lmm = NULL;
968                         info->mti_big_lmmsize = 0;
969                 }
970
971                 OBD_ALLOC_LARGE(info->mti_big_lmm, size);
972                 if (info->mti_big_lmm == NULL)
973                         RETURN(-ENOMEM);
974                 info->mti_big_lmmsize = size;
975         }
976         LASSERT(info->mti_big_lmmsize >= rc);
977
978         info->mti_buf.lb_buf = info->mti_big_lmm;
979         info->mti_buf.lb_len = info->mti_big_lmmsize;
980         rc = mo_xattr_get(env, mdt_object_child(o), &info->mti_buf, name);
981
982         RETURN(rc);
983 }
984
985 int __mdt_stripe_get(struct mdt_thread_info *info, struct mdt_object *o,
986                      struct md_attr *ma, const char *name)
987 {
988         struct md_object *next = mdt_object_child(o);
989         struct lu_buf    *buf = &info->mti_buf;
990         int rc;
991
992         if (strcmp(name, XATTR_NAME_LOV) == 0) {
993                 buf->lb_buf = ma->ma_lmm;
994                 buf->lb_len = ma->ma_lmm_size;
995                 LASSERT(!(ma->ma_valid & MA_LOV));
996         } else if (strcmp(name, XATTR_NAME_LMV) == 0) {
997                 buf->lb_buf = ma->ma_lmv;
998                 buf->lb_len = ma->ma_lmv_size;
999                 LASSERT(!(ma->ma_valid & MA_LMV));
1000         } else if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
1001                 buf->lb_buf = ma->ma_default_lmv;
1002                 buf->lb_len = ma->ma_default_lmv_size;
1003                 LASSERT(!(ma->ma_valid & MA_LMV_DEF));
1004         } else {
1005                 return -EINVAL;
1006         }
1007
1008         LASSERT(buf->lb_buf);
1009
1010         rc = mo_xattr_get(info->mti_env, next, buf, name);
1011         if (rc > 0) {
1012
1013 got:
1014                 if (strcmp(name, XATTR_NAME_LOV) == 0) {
1015                         if (info->mti_big_lmm_used)
1016                                 ma->ma_lmm = info->mti_big_lmm;
1017
1018                         /* NOT return LOV EA with hole to old client. */
1019                         if (unlikely(le32_to_cpu(ma->ma_lmm->lmm_pattern) &
1020                                      LOV_PATTERN_F_HOLE) &&
1021                             !(exp_connect_flags(info->mti_exp) &
1022                               OBD_CONNECT_LFSCK)) {
1023                                 return -EIO;
1024                         } else {
1025                                 ma->ma_lmm_size = rc;
1026                                 ma->ma_valid |= MA_LOV;
1027                         }
1028                 } else if (strcmp(name, XATTR_NAME_LMV) == 0) {
1029                         if (info->mti_big_lmm_used)
1030                                 ma->ma_lmv = info->mti_big_lmm;
1031
1032                         ma->ma_lmv_size = rc;
1033                         ma->ma_valid |= MA_LMV;
1034                 } else if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0) {
1035                         ma->ma_default_lmv_size = rc;
1036                         ma->ma_valid |= MA_LMV_DEF;
1037                 }
1038
1039                 /* Update mdt_max_mdsize so all clients will be aware that */
1040                 if (info->mti_mdt->mdt_max_mdsize < rc)
1041                         info->mti_mdt->mdt_max_mdsize = rc;
1042
1043                 rc = 0;
1044         } else if (rc == -ENODATA) {
1045                 /* no LOV EA */
1046                 rc = 0;
1047         } else if (rc == -ERANGE) {
1048                 /* Default LMV has fixed size, so it must be able to fit
1049                  * in the original buffer */
1050                 if (strcmp(name, XATTR_NAME_DEFAULT_LMV) == 0)
1051                         return rc;
1052                 rc = mdt_big_xattr_get(info, o, name);
1053                 if (rc > 0) {
1054                         info->mti_big_lmm_used = 1;
1055                         goto got;
1056                 }
1057         }
1058
1059         return rc;
1060 }
1061
1062 int mdt_stripe_get(struct mdt_thread_info *info, struct mdt_object *o,
1063                    struct md_attr *ma, const char *name)
1064 {
1065         int rc;
1066
1067         if (!info->mti_big_lmm) {
1068                 OBD_ALLOC(info->mti_big_lmm, PAGE_SIZE);
1069                 if (!info->mti_big_lmm)
1070                         return -ENOMEM;
1071                 info->mti_big_lmmsize = PAGE_SIZE;
1072         }
1073
1074         if (strcmp(name, XATTR_NAME_LOV) == 0) {
1075                 ma->ma_lmm = info->mti_big_lmm;
1076                 ma->ma_lmm_size = info->mti_big_lmmsize;
1077                 ma->ma_valid &= ~MA_LOV;
1078         } else if (strcmp(name, XATTR_NAME_LMV) == 0) {
1079                 ma->ma_lmv = info->mti_big_lmm;
1080                 ma->ma_lmv_size = info->mti_big_lmmsize;
1081                 ma->ma_valid &= ~MA_LMV;
1082         } else {
1083                 LBUG();
1084         }
1085
1086         LASSERT(!info->mti_big_lmm_used);
1087         rc = __mdt_stripe_get(info, o, ma, name);
1088         /* since big_lmm is always used here, clear 'used' flag to avoid
1089          * assertion in mdt_big_xattr_get().
1090          */
1091         info->mti_big_lmm_used = 0;
1092
1093         return rc;
1094 }
1095
1096 int mdt_attr_get_pfid(struct mdt_thread_info *info, struct mdt_object *o,
1097                       struct lu_fid *pfid)
1098 {
1099         struct lu_buf           *buf = &info->mti_buf;
1100         struct link_ea_header   *leh;
1101         struct link_ea_entry    *lee;
1102         int                      rc;
1103         ENTRY;
1104
1105         buf->lb_buf = info->mti_big_lmm;
1106         buf->lb_len = info->mti_big_lmmsize;
1107         rc = mo_xattr_get(info->mti_env, mdt_object_child(o),
1108                           buf, XATTR_NAME_LINK);
1109         /* ignore errors, MA_PFID won't be set and it is
1110          * up to the caller to treat this as an error */
1111         if (rc == -ERANGE || buf->lb_len == 0) {
1112                 rc = mdt_big_xattr_get(info, o, XATTR_NAME_LINK);
1113                 buf->lb_buf = info->mti_big_lmm;
1114                 buf->lb_len = info->mti_big_lmmsize;
1115         }
1116
1117         if (rc < 0)
1118                 RETURN(rc);
1119         if (rc < sizeof(*leh)) {
1120                 CERROR("short LinkEA on "DFID": rc = %d\n",
1121                        PFID(mdt_object_fid(o)), rc);
1122                 RETURN(-ENODATA);
1123         }
1124
1125         leh = (struct link_ea_header *) buf->lb_buf;
1126         lee = (struct link_ea_entry *)(leh + 1);
1127         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
1128                 leh->leh_magic = LINK_EA_MAGIC;
1129                 leh->leh_reccount = __swab32(leh->leh_reccount);
1130                 leh->leh_len = __swab64(leh->leh_len);
1131         }
1132         if (leh->leh_magic != LINK_EA_MAGIC)
1133                 RETURN(-EINVAL);
1134         if (leh->leh_reccount == 0)
1135                 RETURN(-ENODATA);
1136
1137         memcpy(pfid, &lee->lee_parent_fid, sizeof(*pfid));
1138         fid_be_to_cpu(pfid, pfid);
1139
1140         RETURN(0);
1141 }
1142
1143 int mdt_attr_get_pfid_name(struct mdt_thread_info *info, struct mdt_object *o,
1144                            struct lu_fid *pfid, struct lu_name *lname)
1145 {
1146         struct lu_buf *buf = &info->mti_buf;
1147         struct link_ea_header *leh;
1148         struct link_ea_entry *lee;
1149         int reclen;
1150         int rc;
1151
1152         buf->lb_buf = info->mti_xattr_buf;
1153         buf->lb_len = sizeof(info->mti_xattr_buf);
1154         rc = mo_xattr_get(info->mti_env, mdt_object_child(o), buf,
1155                           XATTR_NAME_LINK);
1156         if (rc == -ERANGE) {
1157                 rc = mdt_big_xattr_get(info, o, XATTR_NAME_LINK);
1158                 buf->lb_buf = info->mti_big_lmm;
1159                 buf->lb_len = info->mti_big_lmmsize;
1160         }
1161         if (rc < 0)
1162                 return rc;
1163
1164         if (rc < sizeof(*leh)) {
1165                 CERROR("short LinkEA on "DFID": rc = %d\n",
1166                        PFID(mdt_object_fid(o)), rc);
1167                 return -ENODATA;
1168         }
1169
1170         leh = (struct link_ea_header *)buf->lb_buf;
1171         lee = (struct link_ea_entry *)(leh + 1);
1172         if (leh->leh_magic == __swab32(LINK_EA_MAGIC)) {
1173                 leh->leh_magic = LINK_EA_MAGIC;
1174                 leh->leh_reccount = __swab32(leh->leh_reccount);
1175                 leh->leh_len = __swab64(leh->leh_len);
1176         }
1177         if (leh->leh_magic != LINK_EA_MAGIC)
1178                 return -EINVAL;
1179
1180         if (leh->leh_reccount == 0)
1181                 return -ENODATA;
1182
1183         linkea_entry_unpack(lee, &reclen, lname, pfid);
1184
1185         return 0;
1186 }
1187
1188 int mdt_attr_get_complex(struct mdt_thread_info *info,
1189                          struct mdt_object *o, struct md_attr *ma)
1190 {
1191         const struct lu_env *env = info->mti_env;
1192         struct md_object    *next = mdt_object_child(o);
1193         struct lu_buf       *buf = &info->mti_buf;
1194         int                  need = ma->ma_need;
1195         int                  rc = 0, rc2;
1196         u32                  mode;
1197         ENTRY;
1198
1199         ma->ma_valid = 0;
1200
1201         if (mdt_object_exists(o) == 0)
1202                 GOTO(out, rc = -ENOENT);
1203         mode = lu_object_attr(&next->mo_lu);
1204
1205         if (need & MA_INODE) {
1206                 ma->ma_need = MA_INODE;
1207                 rc = mo_attr_get(env, next, ma);
1208                 if (rc)
1209                         GOTO(out, rc);
1210
1211                 if (S_ISREG(mode))
1212                         (void) mdt_get_som(info, o, ma);
1213                 ma->ma_valid |= MA_INODE;
1214         }
1215
1216         if (need & MA_PFID) {
1217                 rc = mdt_attr_get_pfid(info, o, &ma->ma_pfid);
1218                 if (rc == 0)
1219                         ma->ma_valid |= MA_PFID;
1220                 /* ignore this error, parent fid is not mandatory */
1221                 rc = 0;
1222         }
1223
1224         if (need & MA_LOV && (S_ISREG(mode) || S_ISDIR(mode))) {
1225                 rc = __mdt_stripe_get(info, o, ma, XATTR_NAME_LOV);
1226                 if (rc)
1227                         GOTO(out, rc);
1228         }
1229
1230         if (need & MA_LMV && S_ISDIR(mode)) {
1231                 rc = __mdt_stripe_get(info, o, ma, XATTR_NAME_LMV);
1232                 if (rc != 0)
1233                         GOTO(out, rc);
1234         }
1235
1236         if (need & MA_LMV_DEF && S_ISDIR(mode)) {
1237                 rc = __mdt_stripe_get(info, o, ma, XATTR_NAME_DEFAULT_LMV);
1238                 if (rc != 0)
1239                         GOTO(out, rc);
1240         }
1241
1242         /*
1243          * In the handle of MA_INODE, we may already get the SOM attr.
1244          */
1245         if (need & MA_SOM && S_ISREG(mode) && !(ma->ma_valid & MA_SOM)) {
1246                 rc = mdt_get_som(info, o, ma);
1247                 if (rc != 0)
1248                         GOTO(out, rc);
1249         }
1250
1251         if (need & MA_HSM && S_ISREG(mode)) {
1252                 buf->lb_buf = info->mti_xattr_buf;
1253                 buf->lb_len = sizeof(info->mti_xattr_buf);
1254                 BUILD_BUG_ON(sizeof(struct hsm_attrs) >
1255                              sizeof(info->mti_xattr_buf));
1256                 rc2 = mo_xattr_get(info->mti_env, next, buf, XATTR_NAME_HSM);
1257                 rc2 = lustre_buf2hsm(info->mti_xattr_buf, rc2, &ma->ma_hsm);
1258                 if (rc2 == 0)
1259                         ma->ma_valid |= MA_HSM;
1260                 else if (rc2 < 0 && rc2 != -ENODATA)
1261                         GOTO(out, rc = rc2);
1262         }
1263
1264 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
1265         if (need & MA_ACL_DEF && S_ISDIR(mode)) {
1266                 buf->lb_buf = ma->ma_acl;
1267                 buf->lb_len = ma->ma_acl_size;
1268                 rc2 = mo_xattr_get(env, next, buf, XATTR_NAME_ACL_DEFAULT);
1269                 if (rc2 > 0) {
1270                         ma->ma_acl_size = rc2;
1271                         ma->ma_valid |= MA_ACL_DEF;
1272                 } else if (rc2 == -ENODATA) {
1273                         /* no ACLs */
1274                         ma->ma_acl_size = 0;
1275                 } else
1276                         GOTO(out, rc = rc2);
1277         }
1278 #endif
1279 out:
1280         ma->ma_need = need;
1281         CDEBUG(D_INODE, "after getattr rc = %d, ma_valid = %#llx ma_lmm=%p\n",
1282                rc, ma->ma_valid, ma->ma_lmm);
1283         RETURN(rc);
1284 }
1285
1286 static int mdt_getattr_internal(struct mdt_thread_info *info,
1287                                 struct mdt_object *o, int ma_need)
1288 {
1289         struct mdt_device *mdt = info->mti_mdt;
1290         struct md_object *next = mdt_object_child(o);
1291         const struct mdt_body *reqbody = info->mti_body;
1292         struct ptlrpc_request *req = mdt_info_req(info);
1293         struct md_attr *ma = &info->mti_attr;
1294         struct lu_attr *la = &ma->ma_attr;
1295         struct req_capsule *pill = info->mti_pill;
1296         const struct lu_env *env = info->mti_env;
1297         struct mdt_body *repbody;
1298         struct lu_buf *buffer = &info->mti_buf;
1299         struct obd_export *exp = info->mti_exp;
1300         ktime_t kstart = ktime_get();
1301         int rc;
1302
1303         ENTRY;
1304
1305         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_GETATTR_PACK))
1306                 RETURN(err_serious(-ENOMEM));
1307
1308         repbody = req_capsule_server_get(pill, &RMF_MDT_BODY);
1309
1310         ma->ma_valid = 0;
1311
1312         if (mdt_object_remote(o)) {
1313                 /* This object is located on remote node.*/
1314                 /* Return -ENOTSUPP for old client */
1315                 if (!mdt_is_dne_client(req->rq_export))
1316                         GOTO(out, rc = -ENOTSUPP);
1317
1318                 repbody->mbo_fid1 = *mdt_object_fid(o);
1319                 repbody->mbo_valid = OBD_MD_FLID | OBD_MD_MDS;
1320                 GOTO(out, rc = 0);
1321         }
1322
1323         if (reqbody->mbo_eadatasize > 0) {
1324                 buffer->lb_buf = req_capsule_server_get(pill, &RMF_MDT_MD);
1325                 if (buffer->lb_buf == NULL)
1326                         GOTO(out, rc = -EPROTO);
1327                 buffer->lb_len = req_capsule_get_size(pill, &RMF_MDT_MD,
1328                                                       RCL_SERVER);
1329         } else {
1330                 buffer->lb_buf = NULL;
1331                 buffer->lb_len = 0;
1332                 ma_need &= ~(MA_LOV | MA_LMV);
1333                 CDEBUG(D_INFO, "%s: RPC from %s: does not need LOVEA.\n",
1334                        mdt_obd_name(info->mti_mdt),
1335                        req->rq_export->exp_client_uuid.uuid);
1336         }
1337
1338         /* from 2.12.58 intent_getattr pack default LMV in reply */
1339         if (S_ISDIR(lu_object_attr(&next->mo_lu)) &&
1340             ((reqbody->mbo_valid & (OBD_MD_MEA | OBD_MD_DEFAULT_MEA)) ==
1341                     (OBD_MD_MEA | OBD_MD_DEFAULT_MEA)) &&
1342             req_capsule_has_field(&req->rq_pill, &RMF_DEFAULT_MDT_MD,
1343                                   RCL_SERVER)) {
1344                 ma->ma_lmv = buffer->lb_buf;
1345                 ma->ma_lmv_size = buffer->lb_len;
1346                 ma->ma_default_lmv = req_capsule_server_get(pill,
1347                                                 &RMF_DEFAULT_MDT_MD);
1348                 ma->ma_default_lmv_size = req_capsule_get_size(pill,
1349                                                 &RMF_DEFAULT_MDT_MD,
1350                                                 RCL_SERVER);
1351                 ma->ma_need = MA_INODE;
1352                 if (ma->ma_lmv_size > 0)
1353                         ma->ma_need |= MA_LMV;
1354                 if (ma->ma_default_lmv_size > 0)
1355                         ma->ma_need |= MA_LMV_DEF;
1356         } else if (S_ISDIR(lu_object_attr(&next->mo_lu)) &&
1357                    (reqbody->mbo_valid & (OBD_MD_MEA | OBD_MD_DEFAULT_MEA))) {
1358                 /* If it is dir and client require MEA, then we got MEA */
1359                 /* Assumption: MDT_MD size is enough for lmv size. */
1360                 ma->ma_lmv = buffer->lb_buf;
1361                 ma->ma_lmv_size = buffer->lb_len;
1362                 ma->ma_need = MA_INODE;
1363                 if (ma->ma_lmv_size > 0) {
1364                         if (reqbody->mbo_valid & OBD_MD_MEA) {
1365                                 ma->ma_need |= MA_LMV;
1366                         } else if (reqbody->mbo_valid & OBD_MD_DEFAULT_MEA) {
1367                                 ma->ma_need |= MA_LMV_DEF;
1368                                 ma->ma_default_lmv = buffer->lb_buf;
1369                                 ma->ma_lmv = NULL;
1370                                 ma->ma_default_lmv_size = buffer->lb_len;
1371                                 ma->ma_lmv_size = 0;
1372                         }
1373                 }
1374         } else {
1375                 ma->ma_lmm = buffer->lb_buf;
1376                 ma->ma_lmm_size = buffer->lb_len;
1377                 ma->ma_need = MA_INODE | MA_HSM;
1378                 if (ma->ma_lmm_size > 0) {
1379                         ma->ma_need |= MA_LOV;
1380                         /* Older clients may crash if they getattr overstriped
1381                          * files
1382                          */
1383                         if (!exp_connect_overstriping(exp) &&
1384                             mdt_lmm_is_overstriping(ma->ma_lmm))
1385                                 RETURN(-EOPNOTSUPP);
1386                 }
1387         }
1388
1389         if (S_ISDIR(lu_object_attr(&next->mo_lu)) &&
1390             reqbody->mbo_valid & OBD_MD_FLDIREA  &&
1391             lustre_msg_get_opc(req->rq_reqmsg) == MDS_GETATTR) {
1392                 /* get default stripe info for this dir. */
1393                 ma->ma_need |= MA_LOV_DEF;
1394         }
1395         ma->ma_need |= ma_need;
1396
1397         rc = mdt_attr_get_complex(info, o, ma);
1398         if (unlikely(rc)) {
1399                 CDEBUG(rc == -ENOENT ? D_OTHER : D_ERROR,
1400                        "%s: getattr error for "DFID": rc = %d\n",
1401                        mdt_obd_name(info->mti_mdt),
1402                        PFID(mdt_object_fid(o)), rc);
1403                 RETURN(rc);
1404         }
1405
1406         /* if file is released, check if a restore is running */
1407         if (ma->ma_valid & MA_HSM) {
1408                 repbody->mbo_valid |= OBD_MD_TSTATE;
1409                 if ((ma->ma_hsm.mh_flags & HS_RELEASED) &&
1410                     mdt_hsm_restore_is_running(info, mdt_object_fid(o)))
1411                         repbody->mbo_t_state = MS_RESTORE;
1412         }
1413
1414         if (unlikely(!(ma->ma_valid & MA_INODE)))
1415                 RETURN(-EFAULT);
1416
1417         mdt_pack_attr2body(info, repbody, la, mdt_object_fid(o));
1418
1419         if (mdt_body_has_lov(la, reqbody)) {
1420                 u32 stripe_count = 1;
1421
1422                 if (ma->ma_valid & MA_LOV) {
1423                         LASSERT(ma->ma_lmm_size);
1424                         repbody->mbo_eadatasize = ma->ma_lmm_size;
1425                         if (S_ISDIR(la->la_mode))
1426                                 repbody->mbo_valid |= OBD_MD_FLDIREA;
1427                         else
1428                                 repbody->mbo_valid |= OBD_MD_FLEASIZE;
1429                         mdt_dump_lmm(D_INFO, ma->ma_lmm, repbody->mbo_valid);
1430                 }
1431                 if (ma->ma_valid & MA_LMV) {
1432                         struct lmv_mds_md_v1 *lmv = &ma->ma_lmv->lmv_md_v1;
1433                         u32 magic = le32_to_cpu(lmv->lmv_magic);
1434
1435                         /* Return -ENOTSUPP for old client */
1436                         if (!mdt_is_striped_client(req->rq_export))
1437                                 RETURN(-ENOTSUPP);
1438
1439                         LASSERT(S_ISDIR(la->la_mode));
1440                         mdt_dump_lmv(D_INFO, ma->ma_lmv);
1441                         repbody->mbo_eadatasize = ma->ma_lmv_size;
1442                         repbody->mbo_valid |= (OBD_MD_FLDIREA|OBD_MD_MEA);
1443
1444                         stripe_count = le32_to_cpu(lmv->lmv_stripe_count);
1445                         if (magic == LMV_MAGIC_STRIPE && lmv_is_restriping(lmv))
1446                                 mdt_restripe_migrate_add(info, o);
1447                         else if (magic == LMV_MAGIC_V1 &&
1448                                  lmv_is_restriping(lmv))
1449                                 mdt_restripe_update_add(info, o);
1450                 }
1451                 if (ma->ma_valid & MA_LMV_DEF) {
1452                         /* Return -ENOTSUPP for old client */
1453                         if (!mdt_is_striped_client(req->rq_export))
1454                                 RETURN(-ENOTSUPP);
1455                         LASSERT(S_ISDIR(la->la_mode));
1456                         /*
1457                          * when ll_dir_getstripe() gets default LMV, it
1458                          * checks mbo_eadatasize.
1459                          */
1460                         if (!(ma->ma_valid & MA_LMV))
1461                                 repbody->mbo_eadatasize =
1462                                         ma->ma_default_lmv_size;
1463                         repbody->mbo_valid |= (OBD_MD_FLDIREA |
1464                                                OBD_MD_DEFAULT_MEA);
1465                 }
1466                 CDEBUG(D_VFSTRACE,
1467                        "dirent count %llu stripe count %u MDT count %d\n",
1468                        ma->ma_attr.la_dirent_count, stripe_count,
1469                        atomic_read(&mdt->mdt_mds_mds_conns) + 1);
1470                 if (ma->ma_attr.la_dirent_count != LU_DIRENT_COUNT_UNSET &&
1471                     ma->ma_attr.la_dirent_count >
1472                         mdt->mdt_restriper.mdr_dir_split_count &&
1473                     !fid_is_root(mdt_object_fid(o)) &&
1474                     mdt->mdt_enable_dir_auto_split &&
1475                     !o->mot_restriping &&
1476                     stripe_count < atomic_read(&mdt->mdt_mds_mds_conns) + 1)
1477                         mdt_auto_split_add(info, o);
1478         } else if (S_ISLNK(la->la_mode) &&
1479                    reqbody->mbo_valid & OBD_MD_LINKNAME) {
1480                 buffer->lb_buf = ma->ma_lmm;
1481                 /* eadatasize from client includes NULL-terminator, so
1482                  * there is no need to read it */
1483                 buffer->lb_len = reqbody->mbo_eadatasize - 1;
1484                 rc = mo_readlink(env, next, buffer);
1485                 if (unlikely(rc <= 0)) {
1486                         CERROR("%s: readlink failed for "DFID": rc = %d\n",
1487                                mdt_obd_name(info->mti_mdt),
1488                                PFID(mdt_object_fid(o)), rc);
1489                         rc = -EFAULT;
1490                 } else {
1491                         int print_limit = min_t(int, PAGE_SIZE - 128, rc);
1492
1493                         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_READLINK_EPROTO))
1494                                 rc -= 2;
1495                         repbody->mbo_valid |= OBD_MD_LINKNAME;
1496                         /* we need to report back size with NULL-terminator
1497                          * because client expects that */
1498                         repbody->mbo_eadatasize = rc + 1;
1499                         if (repbody->mbo_eadatasize != reqbody->mbo_eadatasize)
1500                                 CDEBUG(D_INODE, "%s: Read shorter symlink %d "
1501                                        "on "DFID ", expected %d\n",
1502                                        mdt_obd_name(info->mti_mdt),
1503                                        rc, PFID(mdt_object_fid(o)),
1504                                        reqbody->mbo_eadatasize - 1);
1505                         /* NULL terminate */
1506                         ((char *)ma->ma_lmm)[rc] = 0;
1507
1508                         /* If the total CDEBUG() size is larger than a page, it
1509                          * will print a warning to the console, avoid this by
1510                          * printing just the last part of the symlink. */
1511                         CDEBUG(D_INODE, "symlink dest %s%.*s, len = %d\n",
1512                                print_limit < rc ? "..." : "", print_limit,
1513                                (char *)ma->ma_lmm + rc - print_limit, rc);
1514                         rc = 0;
1515                 }
1516         }
1517
1518         if (reqbody->mbo_valid & OBD_MD_FLMODEASIZE) {
1519                 repbody->mbo_max_mdsize = info->mti_mdt->mdt_max_mdsize;
1520                 repbody->mbo_valid |= OBD_MD_FLMODEASIZE;
1521                 CDEBUG(D_INODE, "changing the max MD size to %u\n",
1522                        repbody->mbo_max_mdsize);
1523         }
1524
1525 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
1526         if ((exp_connect_flags(req->rq_export) & OBD_CONNECT_ACL) &&
1527                  (reqbody->mbo_valid & OBD_MD_FLACL)) {
1528                 struct lu_nodemap *nodemap = nodemap_get_from_exp(exp);
1529                 if (IS_ERR(nodemap))
1530                         RETURN(PTR_ERR(nodemap));
1531
1532                 rc = mdt_pack_acl2body(info, repbody, o, nodemap);
1533                 nodemap_putref(nodemap);
1534         }
1535 #endif
1536
1537 out:
1538         if (rc == 0)
1539                 mdt_counter_incr(req, LPROC_MDT_GETATTR,
1540                                  ktime_us_delta(ktime_get(), kstart));
1541
1542         RETURN(rc);
1543 }
1544
1545 static int mdt_getattr(struct tgt_session_info *tsi)
1546 {
1547         struct mdt_thread_info  *info = tsi2mdt_info(tsi);
1548         struct mdt_object       *obj = info->mti_object;
1549         struct req_capsule      *pill = info->mti_pill;
1550         struct mdt_body         *reqbody;
1551         struct mdt_body         *repbody;
1552         int rc, rc2;
1553         ENTRY;
1554
1555         if (unlikely(info->mti_object == NULL))
1556                 RETURN(-EPROTO);
1557
1558         reqbody = req_capsule_client_get(pill, &RMF_MDT_BODY);
1559         LASSERT(reqbody);
1560         LASSERT(lu_object_assert_exists(&obj->mot_obj));
1561
1562         /* Special case for Data-on-MDT files to get data version */
1563         if (unlikely(reqbody->mbo_valid & OBD_MD_FLDATAVERSION)) {
1564                 rc = mdt_data_version_get(tsi);
1565                 GOTO(out, rc);
1566         }
1567
1568         /* Unlike intent case where we need to pre-fill out buffers early on
1569          * in intent policy for ldlm reasons, here we can have a much better
1570          * guess at EA size by just reading it from disk.
1571          * Exceptions are readdir and (missing) directory striping */
1572         /* Readlink */
1573         if (reqbody->mbo_valid & OBD_MD_LINKNAME) {
1574                 /* No easy way to know how long is the symlink, but it cannot
1575                  * be more than PATH_MAX, so we allocate +1 */
1576                 rc = PATH_MAX + 1;
1577         /* A special case for fs ROOT: getattr there might fetch
1578          * default EA for entire fs, not just for this dir!
1579          */
1580         } else if (lu_fid_eq(mdt_object_fid(obj),
1581                              &info->mti_mdt->mdt_md_root_fid) &&
1582                    (reqbody->mbo_valid & OBD_MD_FLDIREA) &&
1583                    (lustre_msg_get_opc(mdt_info_req(info)->rq_reqmsg) ==
1584                                                                  MDS_GETATTR)) {
1585                 /* Should the default strping be bigger, mdt_fix_reply
1586                  * will reallocate */
1587                 rc = DEF_REP_MD_SIZE;
1588         } else {
1589                 /* Read the actual EA size from disk */
1590                 rc = mdt_attr_get_eabuf_size(info, obj);
1591         }
1592
1593         if (rc < 0)
1594                 GOTO(out, rc = err_serious(rc));
1595
1596         req_capsule_set_size(pill, &RMF_MDT_MD, RCL_SERVER, rc);
1597
1598         /* Set ACL reply buffer size as LUSTRE_POSIX_ACL_MAX_SIZE_OLD
1599          * by default. If the target object has more ACL entries, then
1600          * enlarge the buffer when necessary. */
1601         req_capsule_set_size(pill, &RMF_ACL, RCL_SERVER,
1602                              LUSTRE_POSIX_ACL_MAX_SIZE_OLD);
1603
1604         rc = req_capsule_server_pack(pill);
1605         if (unlikely(rc != 0))
1606                 GOTO(out, rc = err_serious(rc));
1607
1608         repbody = req_capsule_server_get(pill, &RMF_MDT_BODY);
1609         LASSERT(repbody != NULL);
1610         repbody->mbo_eadatasize = 0;
1611         repbody->mbo_aclsize = 0;
1612
1613         rc = mdt_check_ucred(info);
1614         if (unlikely(rc))
1615                 GOTO(out_shrink, rc);
1616
1617         info->mti_cross_ref = !!(reqbody->mbo_valid & OBD_MD_FLCROSSREF);
1618
1619         rc = mdt_getattr_internal(info, obj, 0);
1620         EXIT;
1621 out_shrink:
1622         mdt_client_compatibility(info);
1623         rc2 = mdt_fix_reply(info);
1624         if (rc == 0)
1625                 rc = rc2;
1626 out:
1627         mdt_thread_info_fini(info);
1628         return rc;
1629 }
1630
1631 /**
1632  * Handler of layout intent RPC requiring the layout modification
1633  *
1634  * \param[in]  info     thread environment
1635  * \param[in]  obj      object
1636  * \param[out] lhc      object ldlm lock handle
1637  * \param[in]  layout   layout change descriptor
1638  *
1639  * \retval 0    on success
1640  * \retval < 0  error code
1641  */
1642 int mdt_layout_change(struct mdt_thread_info *info, struct mdt_object *obj,
1643                       struct mdt_lock_handle *lhc,
1644                       struct md_layout_change *layout)
1645 {
1646         int rc;
1647
1648         ENTRY;
1649
1650         if (!mdt_object_exists(obj))
1651                 RETURN(-ENOENT);
1652
1653         if (!S_ISREG(lu_object_attr(&obj->mot_obj)))
1654                 RETURN(-EINVAL);
1655
1656         rc = mo_permission(info->mti_env, NULL, mdt_object_child(obj), NULL,
1657                            MAY_WRITE);
1658         if (rc)
1659                 RETURN(rc);
1660
1661         rc = mdt_check_resent_lock(info, obj, lhc);
1662         if (rc < 0)
1663                 RETURN(rc);
1664
1665         if (rc > 0) {
1666                 /* not resent */
1667                 __u64 lockpart = MDS_INODELOCK_LAYOUT;
1668
1669                 /* take layout lock to prepare layout change */
1670                 if (layout->mlc_opc == MD_LAYOUT_WRITE)
1671                         lockpart |= MDS_INODELOCK_UPDATE;
1672
1673                 mdt_lock_handle_init(lhc);
1674                 mdt_lock_reg_init(lhc, LCK_EX);
1675                 rc = mdt_reint_object_lock(info, obj, lhc, lockpart, false);
1676                 if (rc)
1677                         RETURN(rc);
1678         }
1679
1680         mutex_lock(&obj->mot_som_mutex);
1681         rc = mo_layout_change(info->mti_env, mdt_object_child(obj), layout);
1682         mutex_unlock(&obj->mot_som_mutex);
1683
1684         if (rc)
1685                 mdt_object_unlock(info, obj, lhc, 1);
1686
1687         RETURN(rc);
1688 }
1689
1690 /**
1691  * Exchange MOF_LOV_CREATED flags between two objects after a
1692  * layout swap. No assumption is made on whether o1 or o2 have
1693  * created objects or not.
1694  *
1695  * \param[in,out] o1    First swap layout object
1696  * \param[in,out] o2    Second swap layout object
1697  */
1698 static void mdt_swap_lov_flag(struct mdt_object *o1, struct mdt_object *o2)
1699 {
1700         unsigned int o1_lov_created = o1->mot_lov_created;
1701
1702         mutex_lock(&o1->mot_lov_mutex);
1703         mutex_lock(&o2->mot_lov_mutex);
1704
1705         o1->mot_lov_created = o2->mot_lov_created;
1706         o2->mot_lov_created = o1_lov_created;
1707
1708         mutex_unlock(&o2->mot_lov_mutex);
1709         mutex_unlock(&o1->mot_lov_mutex);
1710 }
1711
1712 static int mdt_swap_layouts(struct tgt_session_info *tsi)
1713 {
1714         struct mdt_thread_info  *info;
1715         struct ptlrpc_request   *req = tgt_ses_req(tsi);
1716         struct obd_export       *exp = req->rq_export;
1717         struct mdt_object       *o1, *o2, *o;
1718         struct mdt_lock_handle  *lh1, *lh2;
1719         struct mdc_swap_layouts *msl;
1720         int                      rc;
1721         ENTRY;
1722
1723         /* client does not support layout lock, so layout swaping
1724          * is disabled.
1725          * FIXME: there is a problem for old clients which don't support
1726          * layout lock yet. If those clients have already opened the file
1727          * they won't be notified at all so that old layout may still be
1728          * used to do IO. This can be fixed after file release is landed by
1729          * doing exclusive open and taking full EX ibits lock. - Jinshan */
1730         if (!exp_connect_layout(exp))
1731                 RETURN(-EOPNOTSUPP);
1732
1733         info = tsi2mdt_info(tsi);
1734         if (unlikely(info->mti_object == NULL))
1735                 RETURN(-EPROTO);
1736
1737         if (info->mti_dlm_req != NULL)
1738                 ldlm_request_cancel(req, info->mti_dlm_req, 0, LATF_SKIP);
1739
1740         o1 = info->mti_object;
1741         o = o2 = mdt_object_find(info->mti_env, info->mti_mdt,
1742                                 &info->mti_body->mbo_fid2);
1743         if (IS_ERR(o))
1744                 GOTO(out, rc = PTR_ERR(o));
1745
1746         if (mdt_object_remote(o) || !mdt_object_exists(o)) /* remote object */
1747                 GOTO(put, rc = -ENOENT);
1748
1749         rc = lu_fid_cmp(&info->mti_body->mbo_fid1, &info->mti_body->mbo_fid2);
1750         if (unlikely(rc == 0)) /* same file, you kidding me? no-op. */
1751                 GOTO(put, rc);
1752
1753         if (rc < 0)
1754                 swap(o1, o2);
1755
1756         /* permission check. Make sure the calling process having permission
1757          * to write both files. */
1758         rc = mo_permission(info->mti_env, NULL, mdt_object_child(o1), NULL,
1759                            MAY_WRITE);
1760         if (rc < 0)
1761                 GOTO(put, rc);
1762
1763         rc = mo_permission(info->mti_env, NULL, mdt_object_child(o2), NULL,
1764                            MAY_WRITE);
1765         if (rc < 0)
1766                 GOTO(put, rc);
1767
1768         msl = req_capsule_client_get(info->mti_pill, &RMF_SWAP_LAYOUTS);
1769         if (msl == NULL)
1770                 GOTO(put, rc = -EPROTO);
1771
1772         lh1 = &info->mti_lh[MDT_LH_NEW];
1773         mdt_lock_reg_init(lh1, LCK_EX);
1774         lh2 = &info->mti_lh[MDT_LH_OLD];
1775         mdt_lock_reg_init(lh2, LCK_EX);
1776
1777         rc = mdt_object_lock(info, o1, lh1, MDS_INODELOCK_LAYOUT |
1778                              MDS_INODELOCK_XATTR);
1779         if (rc < 0)
1780                 GOTO(put, rc);
1781
1782         rc = mdt_object_lock(info, o2, lh2, MDS_INODELOCK_LAYOUT |
1783                              MDS_INODELOCK_XATTR);
1784         if (rc < 0)
1785                 GOTO(unlock1, rc);
1786
1787         rc = mo_swap_layouts(info->mti_env, mdt_object_child(o1),
1788                              mdt_object_child(o2), msl->msl_flags);
1789         if (rc < 0)
1790                 GOTO(unlock2, rc);
1791
1792         mdt_swap_lov_flag(o1, o2);
1793
1794 unlock2:
1795         mdt_object_unlock(info, o2, lh2, rc);
1796 unlock1:
1797         mdt_object_unlock(info, o1, lh1, rc);
1798 put:
1799         mdt_object_put(info->mti_env, o);
1800 out:
1801         mdt_thread_info_fini(info);
1802         RETURN(rc);
1803 }
1804
1805 static int mdt_raw_lookup(struct mdt_thread_info *info,
1806                           struct mdt_object *parent,
1807                           const struct lu_name *lname,
1808                           struct ldlm_reply *ldlm_rep)
1809 {
1810         struct lu_fid   *child_fid = &info->mti_tmp_fid1;
1811         int              rc;
1812         ENTRY;
1813
1814         LASSERT(!info->mti_cross_ref);
1815
1816         /* Only got the fid of this obj by name */
1817         fid_zero(child_fid);
1818         rc = mdo_lookup(info->mti_env, mdt_object_child(info->mti_object),
1819                         lname, child_fid, &info->mti_spec);
1820         if (rc == 0) {
1821                 struct mdt_body *repbody;
1822
1823                 repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
1824                 repbody->mbo_fid1 = *child_fid;
1825                 repbody->mbo_valid = OBD_MD_FLID;
1826                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
1827         } else if (rc == -ENOENT) {
1828                 mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_NEG);
1829         }
1830
1831         RETURN(rc);
1832 }
1833
1834 /*
1835  * UPDATE lock should be taken against parent, and be released before exit;
1836  * child_bits lock should be taken against child, and be returned back:
1837  *            (1)normal request should release the child lock;
1838  *            (2)intent request will grant the lock to client.
1839  */
1840 static int mdt_getattr_name_lock(struct mdt_thread_info *info,
1841                                  struct mdt_lock_handle *lhc,
1842                                  __u64 child_bits,
1843                                  struct ldlm_reply *ldlm_rep)
1844 {
1845         struct ptlrpc_request *req = mdt_info_req(info);
1846         struct mdt_body *reqbody = NULL;
1847         struct mdt_object *parent = info->mti_object;
1848         struct mdt_object *child = NULL;
1849         struct lu_fid *child_fid = &info->mti_tmp_fid1;
1850         struct lu_name *lname = NULL;
1851         struct mdt_lock_handle *lhp = NULL;
1852         struct ldlm_lock *lock;
1853         struct req_capsule *pill = info->mti_pill;
1854         __u64 try_bits = 0;
1855         bool is_resent;
1856         int ma_need = 0;
1857         int rc;
1858
1859         ENTRY;
1860
1861         is_resent = lustre_handle_is_used(&lhc->mlh_reg_lh);
1862         LASSERT(ergo(is_resent,
1863                      lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT));
1864
1865         if (parent == NULL)
1866                 RETURN(-ENOENT);
1867
1868         if (info->mti_cross_ref) {
1869                 /* Only getattr on the child. Parent is on another node. */
1870                 mdt_set_disposition(info, ldlm_rep,
1871                                     DISP_LOOKUP_EXECD | DISP_LOOKUP_POS);
1872                 child = parent;
1873                 CDEBUG(D_INODE, "partial getattr_name child_fid = "DFID", "
1874                        "ldlm_rep = %p\n",
1875                        PFID(mdt_object_fid(child)), ldlm_rep);
1876
1877                 rc = mdt_check_resent_lock(info, child, lhc);
1878                 if (rc < 0) {
1879                         RETURN(rc);
1880                 } else if (rc > 0) {
1881                         mdt_lock_handle_init(lhc);
1882                         mdt_lock_reg_init(lhc, LCK_PR);
1883
1884                         /*
1885                          * Object's name entry is on another MDS, it will
1886                          * request PERM lock only because LOOKUP lock is owned
1887                          * by the MDS where name entry resides.
1888                          *
1889                          * TODO: it should try layout lock too. - Jinshan
1890                          */
1891                         child_bits &= ~(MDS_INODELOCK_LOOKUP |
1892                                         MDS_INODELOCK_LAYOUT);
1893                         child_bits |= MDS_INODELOCK_PERM;
1894
1895                         rc = mdt_object_lock(info, child, lhc, child_bits);
1896                         if (rc < 0)
1897                                 RETURN(rc);
1898                 }
1899
1900                 /* Finally, we can get attr for child. */
1901                 if (!mdt_object_exists(child)) {
1902                         LU_OBJECT_DEBUG(D_INFO, info->mti_env,
1903                                         &child->mot_obj,
1904                                         "remote object doesn't exist.");
1905                         mdt_object_unlock(info, child, lhc, 1);
1906                         RETURN(-ENOENT);
1907                 }
1908
1909                 rc = mdt_getattr_internal(info, child, 0);
1910                 if (unlikely(rc != 0)) {
1911                         mdt_object_unlock(info, child, lhc, 1);
1912                         RETURN(rc);
1913                 }
1914
1915                 rc = mdt_pack_secctx_in_reply(info, child);
1916                 if (unlikely(rc))
1917                         mdt_object_unlock(info, child, lhc, 1);
1918                 RETURN(rc);
1919         }
1920
1921         lname = &info->mti_name;
1922         mdt_name_unpack(pill, &RMF_NAME, lname, MNF_FIX_ANON);
1923
1924         if (lu_name_is_valid(lname)) {
1925                 if (mdt_object_remote(parent)) {
1926                         CERROR("%s: parent "DFID" is on remote target\n",
1927                                mdt_obd_name(info->mti_mdt),
1928                                PFID(mdt_object_fid(parent)));
1929                         RETURN(-EPROTO);
1930                 }
1931
1932                 CDEBUG(D_INODE, "getattr with lock for "DFID"/"DNAME", "
1933                        "ldlm_rep = %p\n", PFID(mdt_object_fid(parent)),
1934                        PNAME(lname), ldlm_rep);
1935         } else {
1936                 reqbody = req_capsule_client_get(pill, &RMF_MDT_BODY);
1937                 if (unlikely(reqbody == NULL))
1938                         RETURN(err_serious(-EPROTO));
1939
1940                 *child_fid = reqbody->mbo_fid2;
1941                 if (unlikely(!fid_is_sane(child_fid)))
1942                         RETURN(err_serious(-EINVAL));
1943
1944                 if (lu_fid_eq(mdt_object_fid(parent), child_fid)) {
1945                         mdt_object_get(info->mti_env, parent);
1946                         child = parent;
1947                 } else {
1948                         child = mdt_object_find(info->mti_env, info->mti_mdt,
1949                                                 child_fid);
1950                         if (IS_ERR(child))
1951                                 RETURN(PTR_ERR(child));
1952                 }
1953
1954                 if (mdt_object_remote(child)) {
1955                         CERROR("%s: child "DFID" is on remote target\n",
1956                                mdt_obd_name(info->mti_mdt),
1957                                PFID(mdt_object_fid(child)));
1958                         GOTO(out_child, rc = -EPROTO);
1959                 }
1960
1961                 /* don't fetch LOOKUP lock if it's remote object */
1962                 rc = mdt_is_remote_object(info, parent, child);
1963                 if (rc < 0)
1964                         GOTO(out_child, rc);
1965                 if (rc)
1966                         child_bits &= ~MDS_INODELOCK_LOOKUP;
1967
1968                 CDEBUG(D_INODE, "getattr with lock for "DFID"/"DFID", "
1969                        "ldlm_rep = %p\n",
1970                        PFID(mdt_object_fid(parent)),
1971                        PFID(&reqbody->mbo_fid2), ldlm_rep);
1972         }
1973
1974         mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_EXECD);
1975
1976         if (unlikely(!mdt_object_exists(parent)) && lu_name_is_valid(lname)) {
1977                 LU_OBJECT_DEBUG(D_INODE, info->mti_env,
1978                                 &parent->mot_obj,
1979                                 "Parent doesn't exist!");
1980                 GOTO(out_child, rc = -ESTALE);
1981         }
1982
1983         if (lu_name_is_valid(lname)) {
1984                 /* Always allow to lookup ".." */
1985                 if (unlikely(lname->ln_namelen == 2 &&
1986                              lname->ln_name[0] == '.' &&
1987                              lname->ln_name[1] == '.'))
1988                         info->mti_spec.sp_permitted = 1;
1989
1990                 if (info->mti_body->mbo_valid == OBD_MD_FLID) {
1991                         rc = mdt_raw_lookup(info, parent, lname, ldlm_rep);
1992
1993                         RETURN(rc);
1994                 }
1995
1996                 /* step 1: lock parent only if parent is a directory */
1997                 if (S_ISDIR(lu_object_attr(&parent->mot_obj))) {
1998                         lhp = &info->mti_lh[MDT_LH_PARENT];
1999                         mdt_lock_pdo_init(lhp, LCK_PR, lname);
2000                         rc = mdt_object_lock(info, parent, lhp,
2001                                              MDS_INODELOCK_UPDATE);
2002                         if (unlikely(rc != 0))
2003                                 RETURN(rc);
2004                 }
2005
2006                 /* step 2: lookup child's fid by name */
2007                 fid_zero(child_fid);
2008                 rc = mdo_lookup(info->mti_env, mdt_object_child(parent), lname,
2009                                 child_fid, &info->mti_spec);
2010                 if (rc == -ENOENT)
2011                         mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_NEG);
2012
2013                 if (rc != 0)
2014                         GOTO(unlock_parent, rc);
2015
2016                 child = mdt_object_find(info->mti_env, info->mti_mdt,
2017                                         child_fid);
2018                 if (unlikely(IS_ERR(child)))
2019                         GOTO(unlock_parent, rc = PTR_ERR(child));
2020         }
2021
2022         mdt_set_disposition(info, ldlm_rep, DISP_LOOKUP_POS);
2023
2024         /* step 3: lock child regardless if it is local or remote. */
2025         LASSERT(child);
2026
2027         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_RESEND, obd_timeout * 2);
2028         if (!mdt_object_exists(child)) {
2029                 LU_OBJECT_DEBUG(D_INODE, info->mti_env,
2030                                 &child->mot_obj,
2031                                 "Object doesn't exist!");
2032                 GOTO(out_child, rc = -ENOENT);
2033         }
2034
2035         rc = mdt_check_resent_lock(info, child, lhc);
2036         if (rc < 0) {
2037                 GOTO(out_child, rc);
2038         } else if (rc > 0) {
2039                 mdt_lock_handle_init(lhc);
2040                 mdt_lock_reg_init(lhc, LCK_PR);
2041
2042                 if (!(child_bits & MDS_INODELOCK_UPDATE) &&
2043                     !mdt_object_remote(child)) {
2044                         struct md_attr *ma = &info->mti_attr;
2045
2046                         ma->ma_valid = 0;
2047                         ma->ma_need = MA_INODE;
2048                         rc = mdt_attr_get_complex(info, child, ma);
2049                         if (unlikely(rc != 0))
2050                                 GOTO(out_child, rc);
2051
2052                         /* If the file has not been changed for some time, we
2053                          * return not only a LOOKUP lock, but also an UPDATE
2054                          * lock and this might save us RPC on later STAT. For
2055                          * directories, it also let negative dentry cache start
2056                          * working for this dir. */
2057                         if (ma->ma_valid & MA_INODE &&
2058                             ma->ma_attr.la_valid & LA_CTIME &&
2059                             info->mti_mdt->mdt_namespace->ns_ctime_age_limit +
2060                             ma->ma_attr.la_ctime < ktime_get_real_seconds())
2061                                 child_bits |= MDS_INODELOCK_UPDATE;
2062                 }
2063
2064                 /* layout lock must be granted in a best-effort way
2065                  * for IT operations */
2066                 LASSERT(!(child_bits & MDS_INODELOCK_LAYOUT));
2067                 if (S_ISREG(lu_object_attr(&child->mot_obj)) &&
2068                     !mdt_object_remote(child) && ldlm_rep != NULL) {
2069                         if (!OBD_FAIL_CHECK(OBD_FAIL_MDS_NO_LL_GETATTR) &&
2070                             exp_connect_layout(info->mti_exp)) {
2071                                 /* try to grant layout lock for regular file. */
2072                                 try_bits = MDS_INODELOCK_LAYOUT;
2073                         }
2074                         /* Acquire DOM lock in advance for data-on-mdt file */
2075                         if (child != parent)
2076                                 try_bits |= MDS_INODELOCK_DOM;
2077                 }
2078
2079                 if (try_bits != 0) {
2080                         /* try layout lock, it may fail to be granted due to
2081                          * contention at LOOKUP or UPDATE */
2082                         rc = mdt_object_lock_try(info, child, lhc, &child_bits,
2083                                                  try_bits, false);
2084                         if (child_bits & MDS_INODELOCK_LAYOUT)
2085                                 ma_need |= MA_LOV;
2086                 } else {
2087                         /* Do not enqueue the UPDATE lock from MDT(cross-MDT),
2088                          * client will enqueue the lock to the remote MDT */
2089                         if (mdt_object_remote(child))
2090                                 child_bits &= ~MDS_INODELOCK_UPDATE;
2091                         rc = mdt_object_lock(info, child, lhc, child_bits);
2092                 }
2093                 if (unlikely(rc != 0))
2094                         GOTO(out_child, rc);
2095         }
2096
2097         /* finally, we can get attr for child. */
2098         rc = mdt_getattr_internal(info, child, ma_need);
2099         if (unlikely(rc != 0)) {
2100                 mdt_object_unlock(info, child, lhc, 1);
2101                 GOTO(out_child, rc);
2102         }
2103
2104         rc = mdt_pack_secctx_in_reply(info, child);
2105         if (unlikely(rc)) {
2106                 mdt_object_unlock(info, child, lhc, 1);
2107                 GOTO(out_child, rc);
2108         }
2109
2110         lock = ldlm_handle2lock(&lhc->mlh_reg_lh);
2111         if (lock) {
2112                 /* Debugging code. */
2113                 LDLM_DEBUG(lock, "Returning lock to client");
2114                 LASSERTF(fid_res_name_eq(mdt_object_fid(child),
2115                                          &lock->l_resource->lr_name),
2116                          "Lock res_id: "DLDLMRES", fid: "DFID"\n",
2117                          PLDLMRES(lock->l_resource),
2118                          PFID(mdt_object_fid(child)));
2119
2120                 if (S_ISREG(lu_object_attr(&child->mot_obj)) &&
2121                     !mdt_object_remote(child) && child != parent) {
2122                         mdt_object_put(info->mti_env, child);
2123                         rc = mdt_pack_size2body(info, child_fid,
2124                                                 &lhc->mlh_reg_lh);
2125                         if (rc != 0 && child_bits & MDS_INODELOCK_DOM) {
2126                                 /* DOM lock was taken in advance but this is
2127                                  * not DoM file. Drop the lock.
2128                                  */
2129                                 lock_res_and_lock(lock);
2130                                 ldlm_inodebits_drop(lock, MDS_INODELOCK_DOM);
2131                                 unlock_res_and_lock(lock);
2132                         }
2133                         LDLM_LOCK_PUT(lock);
2134                         GOTO(unlock_parent, rc = 0);
2135                 }
2136                 LDLM_LOCK_PUT(lock);
2137         }
2138
2139         EXIT;
2140 out_child:
2141         if (child)
2142                 mdt_object_put(info->mti_env, child);
2143 unlock_parent:
2144         if (lhp)
2145                 mdt_object_unlock(info, parent, lhp, 1);
2146         return rc;
2147 }
2148
2149 /* normal handler: should release the child lock */
2150 static int mdt_getattr_name(struct tgt_session_info *tsi)
2151 {
2152         struct mdt_thread_info  *info = tsi2mdt_info(tsi);
2153         struct mdt_lock_handle *lhc = &info->mti_lh[MDT_LH_CHILD];
2154         struct mdt_body        *reqbody;
2155         struct mdt_body        *repbody;
2156         int rc, rc2;
2157         ENTRY;
2158
2159         reqbody = req_capsule_client_get(info->mti_pill, &RMF_MDT_BODY);
2160         LASSERT(reqbody != NULL);
2161         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
2162         LASSERT(repbody != NULL);
2163
2164         info->mti_cross_ref = !!(reqbody->mbo_valid & OBD_MD_FLCROSSREF);
2165         repbody->mbo_eadatasize = 0;
2166         repbody->mbo_aclsize = 0;
2167
2168         rc = mdt_init_ucred_intent_getattr(info, reqbody);
2169         if (unlikely(rc))
2170                 GOTO(out_shrink, rc);
2171
2172         rc = mdt_getattr_name_lock(info, lhc, MDS_INODELOCK_UPDATE, NULL);
2173         if (lustre_handle_is_used(&lhc->mlh_reg_lh)) {
2174                 ldlm_lock_decref(&lhc->mlh_reg_lh, lhc->mlh_reg_mode);
2175                 lhc->mlh_reg_lh.cookie = 0;
2176         }
2177         mdt_exit_ucred(info);
2178         EXIT;
2179 out_shrink:
2180         mdt_client_compatibility(info);
2181         rc2 = mdt_fix_reply(info);
2182         if (rc == 0)
2183                 rc = rc2;
2184         mdt_thread_info_fini(info);
2185         return rc;
2186 }
2187
2188 static int mdt_rmfid_unlink(struct mdt_thread_info *info,
2189                             const struct lu_fid *pfid,
2190                             const struct lu_name *name,
2191                             struct mdt_object *obj, s64 ctime)
2192 {
2193         struct lu_fid *child_fid = &info->mti_tmp_fid1;
2194         struct ldlm_enqueue_info *einfo = &info->mti_einfo[0];
2195         struct mdt_device *mdt = info->mti_mdt;
2196         struct md_attr *ma = &info->mti_attr;
2197         struct mdt_lock_handle *parent_lh;
2198         struct mdt_lock_handle *child_lh;
2199         struct mdt_object *pobj;
2200         bool cos_incompat = false;
2201         int rc;
2202         ENTRY;
2203
2204         pobj = mdt_object_find(info->mti_env, mdt, pfid);
2205         if (IS_ERR(pobj))
2206                 GOTO(out, rc = PTR_ERR(pobj));
2207
2208         parent_lh = &info->mti_lh[MDT_LH_PARENT];
2209         mdt_lock_pdo_init(parent_lh, LCK_PW, name);
2210         rc = mdt_object_lock(info, pobj, parent_lh, MDS_INODELOCK_UPDATE);
2211         if (rc != 0)
2212                 GOTO(put_parent, rc);
2213
2214         if (mdt_object_remote(pobj))
2215                 cos_incompat = true;
2216
2217         rc = mdo_lookup(info->mti_env, mdt_object_child(pobj),
2218                         name, child_fid, &info->mti_spec);
2219         if (rc != 0)
2220                 GOTO(unlock_parent, rc);
2221
2222         if (!lu_fid_eq(child_fid, mdt_object_fid(obj)))
2223                 GOTO(unlock_parent, rc = -EREMCHG);
2224
2225         child_lh = &info->mti_lh[MDT_LH_CHILD];
2226         mdt_lock_reg_init(child_lh, LCK_EX);
2227         rc = mdt_reint_striped_lock(info, obj, child_lh,
2228                                     MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE,
2229                                     einfo, cos_incompat);
2230         if (rc != 0)
2231                 GOTO(unlock_parent, rc);
2232
2233         if (atomic_read(&obj->mot_open_count)) {
2234                 CDEBUG(D_OTHER, "object "DFID" open, skip\n",
2235                        PFID(mdt_object_fid(obj)));
2236                 GOTO(unlock_child, rc = -EBUSY);
2237         }
2238
2239         ma->ma_need = 0;
2240         ma->ma_valid = MA_INODE;
2241         ma->ma_attr.la_valid = LA_CTIME;
2242         ma->ma_attr.la_ctime = ctime;
2243
2244         mutex_lock(&obj->mot_lov_mutex);
2245
2246         rc = mdo_unlink(info->mti_env, mdt_object_child(pobj),
2247                         mdt_object_child(obj), name, ma, 0);
2248
2249         mutex_unlock(&obj->mot_lov_mutex);
2250
2251 unlock_child:
2252         mdt_reint_striped_unlock(info, obj, child_lh, einfo, 1);
2253 unlock_parent:
2254         mdt_object_unlock(info, pobj, parent_lh, 1);
2255 put_parent:
2256         mdt_object_put(info->mti_env, pobj);
2257 out:
2258         RETURN(rc);
2259 }
2260
2261 static int mdt_rmfid_check_permission(struct mdt_thread_info *info,
2262                                         struct mdt_object *obj)
2263 {
2264         struct lu_ucred *uc = lu_ucred(info->mti_env);
2265         struct md_attr *ma = &info->mti_attr;
2266         struct lu_attr *la = &ma->ma_attr;
2267         int rc = 0;
2268         ENTRY;
2269
2270         ma->ma_need = MA_INODE;
2271         rc = mo_attr_get(info->mti_env, mdt_object_child(obj), ma);
2272         if (rc)
2273                 GOTO(out, rc);
2274
2275         if (la->la_flags & LUSTRE_IMMUTABLE_FL)
2276                         rc = -EACCES;
2277
2278         if (md_capable(uc, CFS_CAP_DAC_OVERRIDE))
2279                 RETURN(0);
2280         if (uc->uc_fsuid == la->la_uid) {
2281                 if ((la->la_mode & S_IWUSR) == 0)
2282                         rc = -EACCES;
2283         } else if (uc->uc_fsgid == la->la_gid) {
2284                 if ((la->la_mode & S_IWGRP) == 0)
2285                         rc = -EACCES;
2286         } else if ((la->la_mode & S_IWOTH) == 0) {
2287                         rc = -EACCES;
2288         }
2289
2290 out:
2291         RETURN(rc);
2292 }
2293
2294 static int mdt_rmfid_one(struct mdt_thread_info *info, struct lu_fid *fid,
2295                          s64 ctime)
2296 {
2297         struct mdt_device *mdt = info->mti_mdt;
2298         struct mdt_object *obj = NULL;
2299         struct linkea_data ldata = { NULL };
2300         struct lu_buf *buf = &info->mti_big_buf;
2301         struct lu_name *name = &info->mti_name;
2302         struct lu_fid *pfid = &info->mti_tmp_fid1;
2303         struct link_ea_header *leh;
2304         struct link_ea_entry *lee;
2305         int reclen, count, rc = 0;
2306         ENTRY;
2307
2308         if (!fid_is_sane(fid))
2309                 GOTO(out, rc = -EINVAL);
2310
2311         if (!fid_is_namespace_visible(fid))
2312                 GOTO(out, rc = -EINVAL);
2313
2314         obj = mdt_object_find(info->mti_env, mdt, fid);
2315         if (IS_ERR(obj))
2316                 GOTO(out, rc = PTR_ERR(obj));
2317
2318         if (mdt_object_remote(obj))
2319                 GOTO(out, rc = -EREMOTE);
2320         if (!mdt_object_exists(obj) || lu_object_is_dying(&obj->mot_header))
2321                 GOTO(out, rc = -ENOENT);
2322
2323         rc = mdt_rmfid_check_permission(info, obj);
2324         if (rc)
2325                 GOTO(out, rc);
2326
2327         /* take LinkEA */
2328         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
2329         if (!buf->lb_buf)
2330                 GOTO(out, rc = -ENOMEM);
2331
2332         ldata.ld_buf = buf;
2333         rc = mdt_links_read(info, obj, &ldata);
2334         if (rc)
2335                 GOTO(out, rc);
2336
2337         leh = buf->lb_buf;
2338         lee = (struct link_ea_entry *)(leh + 1);
2339         for (count = 0; count < leh->leh_reccount; count++) {
2340                 /* remove every hardlink */
2341                 linkea_entry_unpack(lee, &reclen, name, pfid);
2342                 lee = (struct link_ea_entry *) ((char *)lee + reclen);
2343                 rc = mdt_rmfid_unlink(info, pfid, name, obj, ctime);
2344                 if (rc)
2345                         break;
2346         }
2347
2348 out:
2349         if (obj && !IS_ERR(obj))
2350                 mdt_object_put(info->mti_env, obj);
2351         if (info->mti_big_buf.lb_buf)
2352                 lu_buf_free(&info->mti_big_buf);
2353
2354         RETURN(rc);
2355 }
2356
2357 static int mdt_rmfid(struct tgt_session_info *tsi)
2358 {
2359         struct mdt_thread_info *mti = tsi2mdt_info(tsi);
2360         struct mdt_body *reqbody;
2361         struct lu_fid *fids, *rfids;
2362         int bufsize, rc;
2363         __u32 *rcs;
2364         int i, nr;
2365         ENTRY;
2366
2367         reqbody = req_capsule_client_get(tsi->tsi_pill, &RMF_MDT_BODY);
2368         if (reqbody == NULL)
2369                 RETURN(-EPROTO);
2370         bufsize = req_capsule_get_size(tsi->tsi_pill, &RMF_FID_ARRAY,
2371                                        RCL_CLIENT);
2372         nr = bufsize / sizeof(struct lu_fid);
2373         if (nr * sizeof(struct lu_fid) != bufsize)
2374                 RETURN(-EINVAL);
2375         req_capsule_set_size(tsi->tsi_pill, &RMF_RCS,
2376                              RCL_SERVER, nr * sizeof(__u32));
2377         req_capsule_set_size(tsi->tsi_pill, &RMF_FID_ARRAY,
2378                              RCL_SERVER, nr * sizeof(struct lu_fid));
2379         rc = req_capsule_server_pack(tsi->tsi_pill);
2380         if (rc)
2381                 GOTO(out, rc = err_serious(rc));
2382         fids = req_capsule_client_get(tsi->tsi_pill, &RMF_FID_ARRAY);
2383         if (fids == NULL)
2384                 RETURN(-EPROTO);
2385         rcs = req_capsule_server_get(tsi->tsi_pill, &RMF_RCS);
2386         LASSERT(rcs);
2387         rfids = req_capsule_server_get(tsi->tsi_pill, &RMF_FID_ARRAY);
2388         LASSERT(rfids);
2389
2390         mdt_init_ucred(mti, reqbody);
2391         for (i = 0; i < nr; i++) {
2392                 rfids[i] = fids[i];
2393                 rcs[i] = mdt_rmfid_one(mti, fids + i, reqbody->mbo_ctime);
2394         }
2395         mdt_exit_ucred(mti);
2396
2397 out:
2398         RETURN(rc);
2399 }
2400
2401 static int mdt_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
2402                          void *karg, void __user *uarg);
2403
2404 static int mdt_set_info(struct tgt_session_info *tsi)
2405 {
2406         struct ptlrpc_request   *req = tgt_ses_req(tsi);
2407         char                    *key;
2408         void                    *val;
2409         int                      keylen, vallen, rc = 0;
2410
2411         ENTRY;
2412
2413         key = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_KEY);
2414         if (key == NULL) {
2415                 DEBUG_REQ(D_HA, req, "no set_info key");
2416                 RETURN(err_serious(-EFAULT));
2417         }
2418
2419         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_KEY,
2420                                       RCL_CLIENT);
2421
2422         val = req_capsule_client_get(tsi->tsi_pill, &RMF_SETINFO_VAL);
2423         if (val == NULL) {
2424                 DEBUG_REQ(D_HA, req, "no set_info val");
2425                 RETURN(err_serious(-EFAULT));
2426         }
2427
2428         vallen = req_capsule_get_size(tsi->tsi_pill, &RMF_SETINFO_VAL,
2429                                       RCL_CLIENT);
2430
2431         /* Swab any part of val you need to here */
2432         if (KEY_IS(KEY_READ_ONLY)) {
2433                 spin_lock(&req->rq_export->exp_lock);
2434                 if (*(__u32 *)val)
2435                         *exp_connect_flags_ptr(req->rq_export) |=
2436                                 OBD_CONNECT_RDONLY;
2437                 else
2438                         *exp_connect_flags_ptr(req->rq_export) &=
2439                                 ~OBD_CONNECT_RDONLY;
2440                 spin_unlock(&req->rq_export->exp_lock);
2441         } else if (KEY_IS(KEY_CHANGELOG_CLEAR)) {
2442                 struct changelog_setinfo *cs = val;
2443
2444                 if (vallen != sizeof(*cs)) {
2445                         CERROR("%s: bad changelog_clear setinfo size %d\n",
2446                                tgt_name(tsi->tsi_tgt), vallen);
2447                         RETURN(-EINVAL);
2448                 }
2449                 if (ptlrpc_req_need_swab(req)) {
2450                         __swab64s(&cs->cs_recno);
2451                         __swab32s(&cs->cs_id);
2452                 }
2453
2454                 if (!mdt_is_rootadmin(tsi2mdt_info(tsi)))
2455                         RETURN(-EACCES);
2456                 rc = mdt_iocontrol(OBD_IOC_CHANGELOG_CLEAR, req->rq_export,
2457                                    vallen, val, NULL);
2458         } else if (KEY_IS(KEY_EVICT_BY_NID)) {
2459                 if (vallen > 0)
2460                         obd_export_evict_by_nid(req->rq_export->exp_obd, val);
2461         } else {
2462                 RETURN(-EINVAL);
2463         }
2464         RETURN(rc);
2465 }
2466
2467 static int mdt_readpage(struct tgt_session_info *tsi)
2468 {
2469         struct mdt_thread_info  *info = mdt_th_info(tsi->tsi_env);
2470         struct mdt_object       *object = mdt_obj(tsi->tsi_corpus);
2471         struct lu_rdpg          *rdpg = &info->mti_u.rdpg.mti_rdpg;
2472         const struct mdt_body   *reqbody = tsi->tsi_mdt_body;
2473         struct mdt_body         *repbody;
2474         int                      rc;
2475         int                      i;
2476
2477         ENTRY;
2478
2479         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_READPAGE_PACK))
2480                 RETURN(err_serious(-ENOMEM));
2481
2482         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_MDT_BODY);
2483         if (repbody == NULL || reqbody == NULL)
2484                 RETURN(err_serious(-EFAULT));
2485
2486         /*
2487          * prepare @rdpg before calling lower layers and transfer itself. Here
2488          * reqbody->size contains offset of where to start to read and
2489          * reqbody->nlink contains number bytes to read.
2490          */
2491         rdpg->rp_hash = reqbody->mbo_size;
2492         if (rdpg->rp_hash != reqbody->mbo_size) {
2493                 CERROR("Invalid hash: %#llx != %#llx\n",
2494                        rdpg->rp_hash, reqbody->mbo_size);
2495                 RETURN(-EFAULT);
2496         }
2497
2498         rdpg->rp_attrs = reqbody->mbo_mode;
2499         if (exp_connect_flags(tsi->tsi_exp) & OBD_CONNECT_64BITHASH)
2500                 rdpg->rp_attrs |= LUDA_64BITHASH;
2501         rdpg->rp_count  = min_t(unsigned int, reqbody->mbo_nlink,
2502                                 exp_max_brw_size(tsi->tsi_exp));
2503         rdpg->rp_npages = (rdpg->rp_count + PAGE_SIZE - 1) >>
2504                           PAGE_SHIFT;
2505         OBD_ALLOC_PTR_ARRAY(rdpg->rp_pages, rdpg->rp_npages);
2506         if (rdpg->rp_pages == NULL)
2507                 RETURN(-ENOMEM);
2508
2509         for (i = 0; i < rdpg->rp_npages; ++i) {
2510                 rdpg->rp_pages[i] = alloc_page(GFP_NOFS);
2511                 if (rdpg->rp_pages[i] == NULL)
2512                         GOTO(free_rdpg, rc = -ENOMEM);
2513         }
2514
2515         /* call lower layers to fill allocated pages with directory data */
2516         rc = mo_readpage(tsi->tsi_env, mdt_object_child(object), rdpg);
2517         if (rc < 0)
2518                 GOTO(free_rdpg, rc);
2519
2520         /* send pages to client */
2521         rc = tgt_sendpage(tsi, rdpg, rc);
2522
2523         EXIT;
2524 free_rdpg:
2525
2526         for (i = 0; i < rdpg->rp_npages; i++)
2527                 if (rdpg->rp_pages[i] != NULL)
2528                         __free_page(rdpg->rp_pages[i]);
2529         OBD_FREE_PTR_ARRAY(rdpg->rp_pages, rdpg->rp_npages);
2530
2531         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE))
2532                 RETURN(0);
2533
2534         return rc;
2535 }
2536
2537 static int mdt_fix_attr_ucred(struct mdt_thread_info *info, __u32 op)
2538 {
2539         struct lu_ucred *uc = mdt_ucred_check(info);
2540         struct lu_attr *attr = &info->mti_attr.ma_attr;
2541
2542         if (uc == NULL)
2543                 return -EINVAL;
2544
2545         if (op != REINT_SETATTR) {
2546                 if ((attr->la_valid & LA_UID) && (attr->la_uid != -1))
2547                         attr->la_uid = uc->uc_fsuid;
2548                 /* for S_ISGID, inherit gid from his parent, such work will be
2549                  * done in cmm/mdd layer, here set all cases as uc->uc_fsgid. */
2550                 if ((attr->la_valid & LA_GID) && (attr->la_gid != -1))
2551                         attr->la_gid = uc->uc_fsgid;
2552         }
2553
2554         return 0;
2555 }
2556
2557 static inline bool mdt_is_readonly_open(struct mdt_thread_info *info, __u32 op)
2558 {
2559         return op == REINT_OPEN &&
2560              !(info->mti_spec.sp_cr_flags & (MDS_FMODE_WRITE | MDS_OPEN_CREAT));
2561 }
2562
2563 static void mdt_preset_secctx_size(struct mdt_thread_info *info)
2564 {
2565         struct req_capsule *pill = info->mti_pill;
2566
2567         if (req_capsule_has_field(pill, &RMF_FILE_SECCTX,
2568                                   RCL_SERVER) &&
2569             req_capsule_has_field(pill, &RMF_FILE_SECCTX_NAME,
2570                                   RCL_CLIENT)) {
2571                 if (req_capsule_get_size(pill, &RMF_FILE_SECCTX_NAME,
2572                                          RCL_CLIENT) != 0) {
2573                         /* pre-set size in server part with max size */
2574                         req_capsule_set_size(pill, &RMF_FILE_SECCTX,
2575                                              RCL_SERVER,
2576                                              info->mti_mdt->mdt_max_ea_size);
2577                 } else {
2578                         req_capsule_set_size(pill, &RMF_FILE_SECCTX,
2579                                              RCL_SERVER, 0);
2580                 }
2581         }
2582
2583 }
2584
2585 static int mdt_reint_internal(struct mdt_thread_info *info,
2586                               struct mdt_lock_handle *lhc,
2587                               __u32 op)
2588 {
2589         struct req_capsule      *pill = info->mti_pill;
2590         struct mdt_body         *repbody;
2591         int                      rc = 0, rc2;
2592
2593         ENTRY;
2594
2595         rc = mdt_reint_unpack(info, op);
2596         if (rc != 0) {
2597                 CERROR("Can't unpack reint, rc %d\n", rc);
2598                 RETURN(err_serious(rc));
2599         }
2600
2601
2602         /* check if the file system is set to readonly. O_RDONLY open
2603          * is still allowed even the file system is set to readonly mode */
2604         if (mdt_rdonly(info->mti_exp) && !mdt_is_readonly_open(info, op))
2605                 RETURN(err_serious(-EROFS));
2606
2607         /* for replay (no_create) lmm is not needed, client has it already */
2608         if (req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER))
2609                 req_capsule_set_size(pill, &RMF_MDT_MD, RCL_SERVER,
2610                                      DEF_REP_MD_SIZE);
2611
2612         /* llog cookies are always 0, the field is kept for compatibility */
2613         if (req_capsule_has_field(pill, &RMF_LOGCOOKIES, RCL_SERVER))
2614                 req_capsule_set_size(pill, &RMF_LOGCOOKIES, RCL_SERVER, 0);
2615
2616         /* Set ACL reply buffer size as LUSTRE_POSIX_ACL_MAX_SIZE_OLD
2617          * by default. If the target object has more ACL entries, then
2618          * enlarge the buffer when necessary. */
2619         if (req_capsule_has_field(pill, &RMF_ACL, RCL_SERVER))
2620                 req_capsule_set_size(pill, &RMF_ACL, RCL_SERVER,
2621                                      LUSTRE_POSIX_ACL_MAX_SIZE_OLD);
2622
2623         mdt_preset_secctx_size(info);
2624
2625         rc = req_capsule_server_pack(pill);
2626         if (rc != 0) {
2627                 CERROR("Can't pack response, rc %d\n", rc);
2628                 RETURN(err_serious(rc));
2629         }
2630
2631         if (req_capsule_has_field(pill, &RMF_MDT_BODY, RCL_SERVER)) {
2632                 repbody = req_capsule_server_get(pill, &RMF_MDT_BODY);
2633                 LASSERT(repbody);
2634                 repbody->mbo_eadatasize = 0;
2635                 repbody->mbo_aclsize = 0;
2636         }
2637
2638         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_REINT_DELAY, 10);
2639
2640         /* for replay no cookkie / lmm need, because client have this already */
2641         if (info->mti_spec.no_create)
2642                 if (req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER))
2643                         req_capsule_set_size(pill, &RMF_MDT_MD, RCL_SERVER, 0);
2644
2645         rc = mdt_init_ucred_reint(info);
2646         if (rc)
2647                 GOTO(out_shrink, rc);
2648
2649         rc = mdt_fix_attr_ucred(info, op);
2650         if (rc != 0)
2651                 GOTO(out_ucred, rc = err_serious(rc));
2652
2653         rc = mdt_check_resent(info, mdt_reconstruct, lhc);
2654         if (rc < 0) {
2655                 GOTO(out_ucred, rc);
2656         } else if (rc == 1) {
2657                 DEBUG_REQ(D_INODE, mdt_info_req(info), "resent opt");
2658                 rc = lustre_msg_get_status(mdt_info_req(info)->rq_repmsg);
2659                 GOTO(out_ucred, rc);
2660         }
2661         rc = mdt_reint_rec(info, lhc);
2662         EXIT;
2663 out_ucred:
2664         mdt_exit_ucred(info);
2665 out_shrink:
2666         mdt_client_compatibility(info);
2667
2668         rc2 = mdt_fix_reply(info);
2669         if (rc == 0)
2670                 rc = rc2;
2671
2672         /*
2673          * Data-on-MDT optimization - read data along with OPEN and return it
2674          * in reply when possible.
2675          */
2676         if (rc == 0 && op == REINT_OPEN && !req_is_replay(pill->rc_req))
2677                 rc = mdt_dom_read_on_open(info, info->mti_mdt,
2678                                           &lhc->mlh_reg_lh);
2679
2680         return rc;
2681 }
2682
2683 static long mdt_reint_opcode(struct ptlrpc_request *req,
2684                              const struct req_format **fmt)
2685 {
2686         struct mdt_device       *mdt;
2687         struct mdt_rec_reint    *rec;
2688         long                     opc;
2689
2690         rec = req_capsule_client_get(&req->rq_pill, &RMF_REC_REINT);
2691         if (rec != NULL) {
2692                 opc = rec->rr_opcode;
2693                 DEBUG_REQ(D_INODE, req, "reint opt = %ld", opc);
2694                 if (opc < REINT_MAX && fmt[opc] != NULL)
2695                         req_capsule_extend(&req->rq_pill, fmt[opc]);
2696                 else {
2697                         mdt = mdt_exp2dev(req->rq_export);
2698                         CERROR("%s: Unsupported opcode '%ld' from client '%s':"
2699                                " rc = %d\n", req->rq_export->exp_obd->obd_name,
2700                                opc, mdt->mdt_ldlm_client->cli_name, -EFAULT);
2701                         opc = err_serious(-EFAULT);
2702                 }
2703         } else {
2704                 opc = err_serious(-EFAULT);
2705         }
2706         return opc;
2707 }
2708
2709 static int mdt_reint(struct tgt_session_info *tsi)
2710 {
2711         long opc;
2712         int  rc;
2713         static const struct req_format *reint_fmts[REINT_MAX] = {
2714                 [REINT_SETATTR]  = &RQF_MDS_REINT_SETATTR,
2715                 [REINT_CREATE]   = &RQF_MDS_REINT_CREATE,
2716                 [REINT_LINK]     = &RQF_MDS_REINT_LINK,
2717                 [REINT_UNLINK]   = &RQF_MDS_REINT_UNLINK,
2718                 [REINT_RENAME]   = &RQF_MDS_REINT_RENAME,
2719                 [REINT_OPEN]     = &RQF_MDS_REINT_OPEN,
2720                 [REINT_SETXATTR] = &RQF_MDS_REINT_SETXATTR,
2721                 [REINT_RMENTRY]  = &RQF_MDS_REINT_UNLINK,
2722                 [REINT_MIGRATE]  = &RQF_MDS_REINT_MIGRATE,
2723                 [REINT_RESYNC]   = &RQF_MDS_REINT_RESYNC,
2724         };
2725
2726         ENTRY;
2727
2728         opc = mdt_reint_opcode(tgt_ses_req(tsi), reint_fmts);
2729         if (opc >= 0) {
2730                 struct mdt_thread_info *info = tsi2mdt_info(tsi);
2731                 /*
2732                  * No lock possible here from client to pass it to reint code
2733                  * path.
2734                  */
2735                 rc = mdt_reint_internal(info, NULL, opc);
2736                 mdt_thread_info_fini(info);
2737         } else {
2738                 rc = opc;
2739         }
2740
2741         tsi->tsi_reply_fail_id = OBD_FAIL_MDS_REINT_NET_REP;
2742         RETURN(rc);
2743 }
2744
2745 /* this should sync the whole device */
2746 int mdt_device_sync(const struct lu_env *env, struct mdt_device *mdt)
2747 {
2748         struct dt_device *dt = mdt->mdt_bottom;
2749         int rc;
2750         ENTRY;
2751
2752         rc = dt->dd_ops->dt_sync(env, dt);
2753         RETURN(rc);
2754 }
2755
2756 /* this should sync this object */
2757 static int mdt_object_sync(const struct lu_env *env, struct obd_export *exp,
2758                            struct mdt_object *mo)
2759 {
2760         int rc = 0;
2761
2762         ENTRY;
2763
2764         if (!mdt_object_exists(mo)) {
2765                 CWARN("%s: non existing object "DFID": rc = %d\n",
2766                       exp->exp_obd->obd_name, PFID(mdt_object_fid(mo)),
2767                       -ESTALE);
2768                 RETURN(-ESTALE);
2769         }
2770
2771         if (S_ISREG(lu_object_attr(&mo->mot_obj))) {
2772                 struct lu_target *tgt = tgt_ses_info(env)->tsi_tgt;
2773                 dt_obj_version_t version;
2774
2775                 version = dt_version_get(env, mdt_obj2dt(mo));
2776                 if (version > tgt->lut_obd->obd_last_committed)
2777                         rc = mo_object_sync(env, mdt_object_child(mo));
2778         } else {
2779                 rc = mo_object_sync(env, mdt_object_child(mo));
2780         }
2781
2782         RETURN(rc);
2783 }
2784
2785 static int mdt_sync(struct tgt_session_info *tsi)
2786 {
2787         struct ptlrpc_request   *req = tgt_ses_req(tsi);
2788         struct req_capsule      *pill = tsi->tsi_pill;
2789         struct mdt_body         *body;
2790         ktime_t                  kstart = ktime_get();
2791         int                      rc;
2792
2793         ENTRY;
2794
2795         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SYNC_PACK))
2796                 RETURN(err_serious(-ENOMEM));
2797
2798         if (fid_seq(&tsi->tsi_mdt_body->mbo_fid1) == 0) {
2799                 rc = mdt_device_sync(tsi->tsi_env, mdt_exp2dev(tsi->tsi_exp));
2800         } else {
2801                 struct mdt_thread_info *info = tsi2mdt_info(tsi);
2802
2803                 if (unlikely(info->mti_object == NULL))
2804                         RETURN(-EPROTO);
2805
2806                 /* sync an object */
2807                 rc = mdt_object_sync(tsi->tsi_env, tsi->tsi_exp,
2808                                      info->mti_object);
2809                 if (rc == 0) {
2810                         const struct lu_fid *fid;
2811                         struct lu_attr *la = &info->mti_attr.ma_attr;
2812
2813                         info->mti_attr.ma_need = MA_INODE;
2814                         info->mti_attr.ma_valid = 0;
2815                         rc = mdt_attr_get_complex(info, info->mti_object,
2816                                                   &info->mti_attr);
2817                         if (rc == 0) {
2818                                 body = req_capsule_server_get(pill,
2819                                                               &RMF_MDT_BODY);
2820                                 fid = mdt_object_fid(info->mti_object);
2821                                 mdt_pack_attr2body(info, body, la, fid);
2822                         }
2823                 }
2824                 mdt_thread_info_fini(info);
2825         }
2826         if (rc == 0)
2827                 mdt_counter_incr(req, LPROC_MDT_SYNC,
2828                                  ktime_us_delta(ktime_get(), kstart));
2829
2830         RETURN(rc);
2831 }
2832
2833 static int mdt_data_sync(struct tgt_session_info *tsi)
2834 {
2835         struct mdt_thread_info *info;
2836         struct mdt_device *mdt = mdt_exp2dev(tsi->tsi_exp);
2837         struct ost_body *body = tsi->tsi_ost_body;
2838         struct ost_body *repbody;
2839         struct mdt_object *mo = NULL;
2840         struct md_attr *ma;
2841         int rc = 0;
2842
2843         ENTRY;
2844
2845         repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
2846
2847         /* if no fid is specified then do nothing,
2848          * device sync is done via MDS_SYNC */
2849         if (fid_is_zero(&tsi->tsi_fid))
2850                 RETURN(0);
2851
2852         mo = mdt_object_find(tsi->tsi_env, mdt, &tsi->tsi_fid);
2853         if (IS_ERR(mo))
2854                 RETURN(PTR_ERR(mo));
2855
2856         rc = mdt_object_sync(tsi->tsi_env, tsi->tsi_exp, mo);
2857         if (rc)
2858                 GOTO(put, rc);
2859
2860         repbody->oa.o_oi = body->oa.o_oi;
2861         repbody->oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
2862
2863         info = tsi2mdt_info(tsi);
2864         ma = &info->mti_attr;
2865         ma->ma_need = MA_INODE;
2866         ma->ma_valid = 0;
2867         rc = mdt_attr_get_complex(info, mo, ma);
2868         if (rc == 0)
2869                 obdo_from_la(&repbody->oa, &ma->ma_attr, VALID_FLAGS);
2870         else
2871                 rc = 0;
2872         mdt_thread_info_fini(info);
2873
2874         EXIT;
2875 put:
2876         if (mo != NULL)
2877                 mdt_object_put(tsi->tsi_env, mo);
2878         return rc;
2879 }
2880
2881 /*
2882  * Handle quota control requests to consult current usage/limit, but also
2883  * to configure quota enforcement
2884  */
2885 static int mdt_quotactl(struct tgt_session_info *tsi)
2886 {
2887         struct obd_export *exp  = tsi->tsi_exp;
2888         struct req_capsule *pill = tsi->tsi_pill;
2889         struct obd_quotactl *oqctl, *repoqc;
2890         int id, rc;
2891         struct mdt_device *mdt = mdt_exp2dev(exp);
2892         struct lu_device *qmt = mdt->mdt_qmt_dev;
2893         struct lu_nodemap *nodemap;
2894         ENTRY;
2895
2896         oqctl = req_capsule_client_get(pill, &RMF_OBD_QUOTACTL);
2897         if (!oqctl)
2898                 RETURN(err_serious(-EPROTO));
2899
2900         rc = req_capsule_server_pack(pill);
2901         if (rc)
2902                 RETURN(err_serious(rc));
2903
2904         nodemap = nodemap_get_from_exp(exp);
2905         if (IS_ERR(nodemap))
2906                 RETURN(PTR_ERR(nodemap));
2907
2908         switch (oqctl->qc_cmd) {
2909                 /* master quotactl */
2910         case Q_SETINFO:
2911         case Q_SETQUOTA:
2912         case LUSTRE_Q_SETDEFAULT:
2913         case LUSTRE_Q_SETQUOTAPOOL:
2914         case LUSTRE_Q_SETINFOPOOL:
2915                 if (!nodemap_can_setquota(nodemap))
2916                         GOTO(out_nodemap, rc = -EPERM);
2917                 /* fallthrough */
2918         case Q_GETINFO:
2919         case Q_GETQUOTA:
2920         case LUSTRE_Q_GETDEFAULT:
2921         case LUSTRE_Q_GETQUOTAPOOL:
2922         case LUSTRE_Q_GETINFOPOOL:
2923                 if (qmt == NULL)
2924                         GOTO(out_nodemap, rc = -EOPNOTSUPP);
2925                 /* slave quotactl */
2926                 /* fallthrough */
2927         case Q_GETOINFO:
2928         case Q_GETOQUOTA:
2929                 break;
2930         default:
2931                 rc = -EFAULT;
2932                 CERROR("%s: unsupported quotactl command %d: rc = %d\n",
2933                        mdt_obd_name(mdt), oqctl->qc_cmd, rc);
2934                 GOTO(out_nodemap, rc);
2935         }
2936
2937         id = oqctl->qc_id;
2938         switch (oqctl->qc_type) {
2939         case USRQUOTA:
2940                 id = nodemap_map_id(nodemap, NODEMAP_UID,
2941                                     NODEMAP_CLIENT_TO_FS, id);
2942                 break;
2943         case GRPQUOTA:
2944                 id = nodemap_map_id(nodemap, NODEMAP_GID,
2945                                     NODEMAP_CLIENT_TO_FS, id);
2946                 break;
2947         case PRJQUOTA:
2948                 /* todo: check/map project id */
2949                 id = oqctl->qc_id;
2950                 break;
2951         default:
2952                 GOTO(out_nodemap, rc = -EOPNOTSUPP);
2953         }
2954         repoqc = req_capsule_server_get(pill, &RMF_OBD_QUOTACTL);
2955         if (repoqc == NULL)
2956                 GOTO(out_nodemap, rc = err_serious(-EFAULT));
2957
2958         if (oqctl->qc_cmd == Q_SETINFO || oqctl->qc_cmd == Q_SETQUOTA)
2959                 barrier_exit(tsi->tsi_tgt->lut_bottom);
2960
2961         if (oqctl->qc_id != id)
2962                 swap(oqctl->qc_id, id);
2963
2964         if (oqctl->qc_cmd == Q_SETINFO || oqctl->qc_cmd == Q_SETQUOTA) {
2965                 if (unlikely(!barrier_entry(tsi->tsi_tgt->lut_bottom)))
2966                         RETURN(-EINPROGRESS);
2967         }
2968
2969         switch (oqctl->qc_cmd) {
2970
2971         case Q_GETINFO:
2972         case Q_SETINFO:
2973         case Q_SETQUOTA:
2974         case Q_GETQUOTA:
2975         case LUSTRE_Q_SETDEFAULT:
2976         case LUSTRE_Q_GETDEFAULT:
2977         case LUSTRE_Q_SETQUOTAPOOL:
2978         case LUSTRE_Q_GETQUOTAPOOL:
2979         case LUSTRE_Q_SETINFOPOOL:
2980         case LUSTRE_Q_GETINFOPOOL:
2981                 /* forward quotactl request to QMT */
2982                 rc = qmt_hdls.qmth_quotactl(tsi->tsi_env, qmt, oqctl);
2983                 break;
2984
2985         case Q_GETOINFO:
2986         case Q_GETOQUOTA:
2987                 /* slave quotactl */
2988                 rc = lquotactl_slv(tsi->tsi_env, tsi->tsi_tgt->lut_bottom,
2989                                    oqctl);
2990                 break;
2991
2992         default:
2993                 CERROR("Unsupported quotactl command: %d\n", oqctl->qc_cmd);
2994                 GOTO(out_nodemap, rc = -EFAULT);
2995         }
2996
2997         if (oqctl->qc_id != id)
2998                 swap(oqctl->qc_id, id);
2999
3000         QCTL_COPY(repoqc, oqctl);
3001         EXIT;
3002
3003 out_nodemap:
3004         nodemap_putref(nodemap);
3005
3006         return rc;
3007 }
3008
3009 /** clone llog ctxt from child (mdd)
3010  * This allows remote llog (replicator) access.
3011  * We can either pass all llog RPCs (eg mdt_llog_create) on to child where the
3012  * context was originally set up, or we can handle them directly.
3013  * I choose the latter, but that means I need any llog
3014  * contexts set up by child to be accessable by the mdt.  So we clone the
3015  * context into our context list here.
3016  */
3017 static int mdt_llog_ctxt_clone(const struct lu_env *env, struct mdt_device *mdt,
3018                                int idx)
3019 {
3020         struct md_device  *next = mdt->mdt_child;
3021         struct llog_ctxt *ctxt;
3022         int rc;
3023
3024         if (!llog_ctxt_null(mdt2obd_dev(mdt), idx))
3025                 return 0;
3026
3027         rc = next->md_ops->mdo_llog_ctxt_get(env, next, idx, (void **)&ctxt);
3028         if (rc || ctxt == NULL) {
3029                 return 0;
3030         }
3031
3032         rc = llog_group_set_ctxt(&mdt2obd_dev(mdt)->obd_olg, ctxt, idx);
3033         if (rc)
3034                 CERROR("Can't set mdt ctxt %d\n", rc);
3035
3036         return rc;
3037 }
3038
3039 static int mdt_llog_ctxt_unclone(const struct lu_env *env,
3040                                  struct mdt_device *mdt, int idx)
3041 {
3042         struct llog_ctxt *ctxt;
3043
3044         ctxt = llog_get_context(mdt2obd_dev(mdt), idx);
3045         if (ctxt == NULL)
3046                 return 0;
3047         /* Put once for the get we just did, and once for the clone */
3048         llog_ctxt_put(ctxt);
3049         llog_ctxt_put(ctxt);
3050         return 0;
3051 }
3052
3053 /*
3054  * sec context handlers
3055  */
3056 static int mdt_sec_ctx_handle(struct tgt_session_info *tsi)
3057 {
3058         CFS_FAIL_TIMEOUT(OBD_FAIL_SEC_CTX_HDL_PAUSE, cfs_fail_val);
3059
3060         return 0;
3061 }
3062
3063 /*
3064  * quota request handlers
3065  */
3066 static int mdt_quota_dqacq(struct tgt_session_info *tsi)
3067 {
3068         struct mdt_device       *mdt = mdt_exp2dev(tsi->tsi_exp);
3069         struct lu_device        *qmt = mdt->mdt_qmt_dev;
3070         int                      rc;
3071         ENTRY;
3072
3073         if (qmt == NULL)
3074                 RETURN(err_serious(-EOPNOTSUPP));
3075
3076         rc = qmt_hdls.qmth_dqacq(tsi->tsi_env, qmt, tgt_ses_req(tsi));
3077         RETURN(rc);
3078 }
3079
3080 struct mdt_object *mdt_object_new(const struct lu_env *env,
3081                                   struct mdt_device *d,
3082                                   const struct lu_fid *f)
3083 {
3084         struct lu_object_conf conf = { .loc_flags = LOC_F_NEW };
3085         struct lu_object *o;
3086         struct mdt_object *m;
3087         ENTRY;
3088
3089         CDEBUG(D_INFO, "Allocate object for "DFID"\n", PFID(f));
3090         o = lu_object_find(env, &d->mdt_lu_dev, f, &conf);
3091         if (unlikely(IS_ERR(o)))
3092                 m = (struct mdt_object *)o;
3093         else
3094                 m = mdt_obj(o);
3095         RETURN(m);
3096 }
3097
3098 struct mdt_object *mdt_object_find(const struct lu_env *env,
3099                                    struct mdt_device *d,
3100                                    const struct lu_fid *f)
3101 {
3102         struct lu_object *o;
3103         struct mdt_object *m;
3104         ENTRY;
3105
3106         CDEBUG(D_INFO, "Find object for "DFID"\n", PFID(f));
3107         o = lu_object_find(env, &d->mdt_lu_dev, f, NULL);
3108         if (unlikely(IS_ERR(o)))
3109                 m = (struct mdt_object *)o;
3110         else
3111                 m = mdt_obj(o);
3112
3113         RETURN(m);
3114 }
3115
3116 /**
3117  * Asyncronous commit for mdt device.
3118  *
3119  * Pass asynchonous commit call down the MDS stack.
3120  *
3121  * \param env environment
3122  * \param mdt the mdt device
3123  */
3124 static void mdt_device_commit_async(const struct lu_env *env,
3125                                     struct mdt_device *mdt)
3126 {
3127         struct dt_device *dt = mdt->mdt_bottom;
3128         int rc;
3129         ENTRY;
3130
3131         rc = dt->dd_ops->dt_commit_async(env, dt);
3132         if (unlikely(rc != 0))
3133                 CWARN("%s: async commit start failed: rc = %d\n",
3134                       mdt_obd_name(mdt), rc);
3135         atomic_inc(&mdt->mdt_async_commit_count);
3136         EXIT;
3137 }
3138
3139 /**
3140  * Mark the lock as "synchonous".
3141  *
3142  * Mark the lock to deffer transaction commit to the unlock time.
3143  *
3144  * \param lock the lock to mark as "synchonous"
3145  *
3146  * \see mdt_is_lock_sync
3147  * \see mdt_save_lock
3148  */
3149 static inline void mdt_set_lock_sync(struct ldlm_lock *lock)
3150 {
3151         lock->l_ast_data = (void*)1;
3152 }
3153
3154 /**
3155  * Check whehter the lock "synchonous" or not.
3156  *
3157  * \param lock the lock to check
3158  * \retval 1 the lock is "synchonous"
3159  * \retval 0 the lock isn't "synchronous"
3160  *
3161  * \see mdt_set_lock_sync
3162  * \see mdt_save_lock
3163  */
3164 static inline int mdt_is_lock_sync(struct ldlm_lock *lock)
3165 {
3166         return lock->l_ast_data != NULL;
3167 }
3168
3169 /**
3170  * Blocking AST for mdt locks.
3171  *
3172  * Starts transaction commit if in case of COS lock conflict or
3173  * deffers such a commit to the mdt_save_lock.
3174  *
3175  * \param lock the lock which blocks a request or cancelling lock
3176  * \param desc unused
3177  * \param data unused
3178  * \param flag indicates whether this cancelling or blocking callback
3179  * \retval 0
3180  * \see ldlm_blocking_ast_nocheck
3181  */
3182 int mdt_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
3183                      void *data, int flag)
3184 {
3185         struct obd_device *obd = ldlm_lock_to_ns(lock)->ns_obd;
3186         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
3187         struct ldlm_cb_set_arg *arg = data;
3188         bool commit_async = false;
3189         int rc;
3190         ENTRY;
3191
3192         if (flag == LDLM_CB_CANCELING)
3193                 RETURN(0);
3194
3195         lock_res_and_lock(lock);
3196         if (lock->l_blocking_ast != mdt_blocking_ast) {
3197                 unlock_res_and_lock(lock);
3198                 RETURN(0);
3199         }
3200
3201         /* A blocking ast may be sent from ldlm_lock_decref_internal
3202          * when the last reference to a local lock was released and
3203          * during blocking event from ldlm_work_bl_ast_lock().
3204          * The 'data' parameter is l_ast_data in the first case and
3205          * callback arguments in the second one. Distinguish them by that.
3206          */
3207         if (!data || data == lock->l_ast_data || !arg->bl_desc)
3208                 goto skip_cos_checks;
3209
3210         if (lock->l_req_mode & (LCK_PW | LCK_EX)) {
3211                 if (mdt_cos_is_enabled(mdt)) {
3212                         if (!arg->bl_desc->bl_same_client)
3213                                 mdt_set_lock_sync(lock);
3214                 } else if (mdt_slc_is_enabled(mdt) &&
3215                            arg->bl_desc->bl_cos_incompat) {
3216                         mdt_set_lock_sync(lock);
3217                         /*
3218                          * we may do extra commit here, but there is a small
3219                          * window to miss a commit: lock was unlocked (saved),
3220                          * then a conflict lock queued and we come here, but
3221                          * REP-ACK not received, so lock was not converted to
3222                          * COS mode yet.
3223                          * Fortunately this window is quite small, so the
3224                          * extra commit should be rare (not to say distributed
3225                          * operation is rare too).
3226                          */
3227                         commit_async = true;
3228                 }
3229         } else if (lock->l_req_mode == LCK_COS) {
3230                 commit_async = true;
3231         }
3232
3233 skip_cos_checks:
3234         rc = ldlm_blocking_ast_nocheck(lock);
3235
3236         if (commit_async) {
3237                 struct lu_env env;
3238
3239                 rc = lu_env_init(&env, LCT_LOCAL);
3240                 if (unlikely(rc != 0))
3241                         CWARN("%s: lu_env initialization failed, cannot "
3242                               "start asynchronous commit: rc = %d\n",
3243                               obd->obd_name, rc);
3244                 else
3245                         mdt_device_commit_async(&env, mdt);
3246                 lu_env_fini(&env);
3247         }
3248         RETURN(rc);
3249 }
3250
3251 /*
3252  * Blocking AST for cross-MDT lock
3253  *
3254  * Discard lock from uncommitted_slc_locks and cancel it.
3255  *
3256  * \param lock  the lock which blocks a request or cancelling lock
3257  * \param desc  unused
3258  * \param data  unused
3259  * \param flag  indicates whether this cancelling or blocking callback
3260  * \retval      0 on success
3261  * \retval      negative number on error
3262  */
3263 int mdt_remote_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
3264                             void *data, int flag)
3265 {
3266         int rc = 0;
3267         ENTRY;
3268
3269         switch (flag) {
3270         case LDLM_CB_BLOCKING: {
3271                 struct lustre_handle lockh;
3272
3273                 ldlm_lock2handle(lock, &lockh);
3274                 rc = ldlm_cli_cancel(&lockh,
3275                         ldlm_is_atomic_cb(lock) ? 0 : LCF_ASYNC);
3276                 if (rc < 0) {
3277                         CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
3278                         RETURN(rc);
3279                 }
3280                 break;
3281         }
3282         case LDLM_CB_CANCELING: {
3283                 struct obd_device *obd = ldlm_lock_to_ns(lock)->ns_obd;
3284                 struct mdt_device *mdt =
3285                                 mdt_dev(obd->obd_lu_dev->ld_site->ls_top_dev);
3286
3287                 LDLM_DEBUG(lock, "Revoke remote lock\n");
3288
3289                 /* discard slc lock here so that it can be cleaned anytime,
3290                  * especially for cleanup_resource() */
3291                 tgt_discard_slc_lock(&mdt->mdt_lut, lock);
3292
3293                 /* once we cache lock, l_ast_data is set to mdt_object */
3294                 if (lock->l_ast_data != NULL) {
3295                         struct mdt_object *mo = lock->l_ast_data;
3296                         struct lu_env env;
3297
3298                         rc = lu_env_init(&env, LCT_MD_THREAD);
3299                         if (unlikely(rc != 0)) {
3300                                 CWARN("%s: lu_env initialization failed, object %p "DFID" is leaked!: rc = %d\n",
3301                                       obd->obd_name, mo,
3302                                       PFID(mdt_object_fid(mo)), rc);
3303                                 RETURN(rc);
3304                         }
3305
3306                         if (lock->l_policy_data.l_inodebits.bits &
3307                             (MDS_INODELOCK_XATTR | MDS_INODELOCK_UPDATE)) {
3308                                 rc = mo_invalidate(&env, mdt_object_child(mo));
3309                                 mo->mot_cache_attr = 0;
3310                         }
3311                         mdt_object_put(&env, mo);
3312                         lu_env_fini(&env);
3313                 }
3314                 break;
3315         }
3316         default:
3317                 LBUG();
3318         }
3319
3320         RETURN(rc);
3321 }
3322
3323 int mdt_check_resent_lock(struct mdt_thread_info *info,
3324                           struct mdt_object *mo,
3325                           struct mdt_lock_handle *lhc)
3326 {
3327         /* the lock might already be gotten in ldlm_handle_enqueue() */
3328         if (unlikely(lustre_handle_is_used(&lhc->mlh_reg_lh))) {
3329                 struct ptlrpc_request *req = mdt_info_req(info);
3330                 struct ldlm_lock      *lock;
3331
3332                 lock = ldlm_handle2lock(&lhc->mlh_reg_lh);
3333                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT);
3334                 if (lock == NULL) {
3335                         /* Lock is pinned by ldlm_handle_enqueue0() as it is
3336                          * a resend case, however, it could be already destroyed
3337                          * due to client eviction or a raced cancel RPC. */
3338                         LDLM_DEBUG_NOLOCK("Invalid lock handle %#llx",
3339                                           lhc->mlh_reg_lh.cookie);
3340                         RETURN(-ESTALE);
3341                 }
3342
3343                 if (!fid_res_name_eq(mdt_object_fid(mo),
3344                                      &lock->l_resource->lr_name)) {
3345                         CWARN("%s: Although resent, but still not "
3346                               "get child lock:"DFID"\n",
3347                               info->mti_exp->exp_obd->obd_name,
3348                               PFID(mdt_object_fid(mo)));
3349                         LDLM_LOCK_PUT(lock);
3350                         RETURN(-EPROTO);
3351                 }
3352                 LDLM_LOCK_PUT(lock);
3353                 return 0;
3354         }
3355         return 1;
3356 }
3357
3358 static void mdt_remote_object_lock_created_cb(struct ldlm_lock *lock)
3359 {
3360         mdt_object_get(NULL, lock->l_ast_data);
3361 }
3362
3363 int mdt_remote_object_lock_try(struct mdt_thread_info *mti,
3364                                struct mdt_object *o, const struct lu_fid *fid,
3365                                struct lustre_handle *lh, enum ldlm_mode mode,
3366                                __u64 *ibits, __u64 trybits, bool cache)
3367 {
3368         struct ldlm_enqueue_info *einfo = &mti->mti_remote_einfo;
3369         union ldlm_policy_data *policy = &mti->mti_policy;
3370         struct ldlm_res_id *res_id = &mti->mti_res_id;
3371         int rc = 0;
3372         ENTRY;
3373
3374         LASSERT(mdt_object_remote(o));
3375
3376         fid_build_reg_res_name(fid, res_id);
3377
3378         memset(einfo, 0, sizeof(*einfo));
3379         einfo->ei_type = LDLM_IBITS;
3380         einfo->ei_mode = mode;
3381         einfo->ei_cb_bl = mdt_remote_blocking_ast;
3382         einfo->ei_cb_cp = ldlm_completion_ast;
3383         einfo->ei_enq_slave = 0;
3384         einfo->ei_res_id = res_id;
3385
3386         if (cache) {
3387                 /*
3388                  * if we cache lock, couple lock with mdt_object, so that object
3389                  * can be easily found in lock ASTs.
3390                  */
3391                 einfo->ei_cbdata = o;
3392                 einfo->ei_cb_created = mdt_remote_object_lock_created_cb;
3393         }
3394
3395         memset(policy, 0, sizeof(*policy));
3396         policy->l_inodebits.bits = *ibits;
3397         policy->l_inodebits.try_bits = trybits;
3398
3399         rc = mo_object_lock(mti->mti_env, mdt_object_child(o), lh, einfo,
3400                             policy);
3401
3402         /* Return successfully acquired bits to a caller */
3403         if (rc == 0) {
3404                 struct ldlm_lock *lock = ldlm_handle2lock(lh);
3405
3406                 LASSERT(lock);
3407                 *ibits = lock->l_policy_data.l_inodebits.bits;
3408                 LDLM_LOCK_PUT(lock);
3409         }
3410         RETURN(rc);
3411 }
3412
3413 int mdt_remote_object_lock(struct mdt_thread_info *mti, struct mdt_object *o,
3414                            const struct lu_fid *fid, struct lustre_handle *lh,
3415                            enum ldlm_mode mode, __u64 ibits, bool cache)
3416 {
3417         return mdt_remote_object_lock_try(mti, o, fid, lh, mode, &ibits, 0,
3418                                           cache);
3419 }
3420
3421 static int mdt_object_local_lock(struct mdt_thread_info *info,
3422                                  struct mdt_object *o,
3423                                  struct mdt_lock_handle *lh, __u64 *ibits,
3424                                  __u64 trybits, bool cos_incompat)
3425 {
3426         struct ldlm_namespace *ns = info->mti_mdt->mdt_namespace;
3427         union ldlm_policy_data *policy = &info->mti_policy;
3428         struct ldlm_res_id *res_id = &info->mti_res_id;
3429         __u64 dlmflags = 0, *cookie = NULL;
3430         int rc;
3431         ENTRY;
3432
3433         LASSERT(!lustre_handle_is_used(&lh->mlh_reg_lh));
3434         LASSERT(!lustre_handle_is_used(&lh->mlh_pdo_lh));
3435         LASSERT(lh->mlh_reg_mode != LCK_MINMODE);
3436         LASSERT(lh->mlh_type != MDT_NUL_LOCK);
3437
3438         if (cos_incompat) {
3439                 LASSERT(lh->mlh_reg_mode == LCK_PW ||
3440                         lh->mlh_reg_mode == LCK_EX);
3441                 dlmflags |= LDLM_FL_COS_INCOMPAT;
3442         } else if (mdt_cos_is_enabled(info->mti_mdt)) {
3443                 dlmflags |= LDLM_FL_COS_ENABLED;
3444         }
3445
3446         /* Only enqueue LOOKUP lock for remote object */
3447         LASSERT(ergo(mdt_object_remote(o), *ibits == MDS_INODELOCK_LOOKUP));
3448
3449         /* Lease lock are granted with LDLM_FL_CANCEL_ON_BLOCK */
3450         if (lh->mlh_type == MDT_REG_LOCK && lh->mlh_reg_mode == LCK_EX &&
3451             *ibits == MDS_INODELOCK_OPEN)
3452                 dlmflags |= LDLM_FL_CANCEL_ON_BLOCK;
3453
3454         if (lh->mlh_type == MDT_PDO_LOCK) {
3455                 /* check for exists after object is locked */
3456                 if (mdt_object_exists(o) == 0) {
3457                         /* Non-existent object shouldn't have PDO lock */
3458                         RETURN(-ESTALE);
3459                 } else {
3460                         /* Non-dir object shouldn't have PDO lock */
3461                         if (!S_ISDIR(lu_object_attr(&o->mot_obj)))
3462                                 RETURN(-ENOTDIR);
3463                 }
3464         }
3465
3466         fid_build_reg_res_name(mdt_object_fid(o), res_id);
3467         dlmflags |= LDLM_FL_ATOMIC_CB;
3468
3469         if (info->mti_exp)
3470                 cookie = &info->mti_exp->exp_handle.h_cookie;
3471
3472         /*
3473          * Take PDO lock on whole directory and build correct @res_id for lock
3474          * on part of directory.
3475          */
3476         if (lh->mlh_pdo_hash != 0) {
3477                 LASSERT(lh->mlh_type == MDT_PDO_LOCK);
3478                 mdt_lock_pdo_mode(info, o, lh);
3479                 if (lh->mlh_pdo_mode != LCK_NL) {
3480                         /*
3481                          * Do not use LDLM_FL_LOCAL_ONLY for parallel lock, it
3482                          * is never going to be sent to client and we do not
3483                          * want it slowed down due to possible cancels.
3484                          */
3485                         policy->l_inodebits.bits =
3486                                 *ibits & MDS_INODELOCK_UPDATE;
3487                         policy->l_inodebits.try_bits =
3488                                 trybits & MDS_INODELOCK_UPDATE;
3489                         /* at least one of them should be set */
3490                         LASSERT(policy->l_inodebits.bits |
3491                                 policy->l_inodebits.try_bits);
3492                         rc = mdt_fid_lock(info->mti_env, ns, &lh->mlh_pdo_lh,
3493                                           lh->mlh_pdo_mode, policy, res_id,
3494                                           dlmflags, cookie);
3495                         if (unlikely(rc != 0))
3496                                 GOTO(out_unlock, rc);
3497                 }
3498
3499                 /*
3500                  * Finish res_id initializing by name hash marking part of
3501                  * directory which is taking modification.
3502                  */
3503                 res_id->name[LUSTRE_RES_ID_HSH_OFF] = lh->mlh_pdo_hash;
3504         }
3505
3506         policy->l_inodebits.bits = *ibits;
3507         policy->l_inodebits.try_bits = trybits;
3508
3509         /*
3510          * Use LDLM_FL_LOCAL_ONLY for this lock. We do not know yet if it is
3511          * going to be sent to client. If it is - mdt_intent_policy() path will
3512          * fix it up and turn FL_LOCAL flag off.
3513          */
3514         rc = mdt_fid_lock(info->mti_env, ns, &lh->mlh_reg_lh, lh->mlh_reg_mode,
3515                           policy, res_id, LDLM_FL_LOCAL_ONLY | dlmflags,
3516                           cookie);
3517 out_unlock:
3518         if (rc != 0)
3519                 mdt_object_unlock(info, o, lh, 1);
3520         else if (unlikely(OBD_FAIL_PRECHECK(OBD_FAIL_MDS_PDO_LOCK)) &&
3521                    lh->mlh_pdo_hash != 0 &&
3522                    (lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX))
3523                 OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_PDO_LOCK, 15);
3524
3525         /* Return successfully acquired bits to a caller */
3526         if (rc == 0) {
3527                 struct ldlm_lock *lock = ldlm_handle2lock(&lh->mlh_reg_lh);
3528
3529                 LASSERT(lock);
3530                 *ibits = lock->l_policy_data.l_inodebits.bits;
3531                 LDLM_LOCK_PUT(lock);
3532         }
3533         RETURN(rc);
3534 }
3535
3536 static int
3537 mdt_object_lock_internal(struct mdt_thread_info *info, struct mdt_object *o,
3538                          struct mdt_lock_handle *lh, __u64 *ibits,
3539                          __u64 trybits, bool cos_incompat)
3540 {
3541         struct mdt_lock_handle *local_lh = NULL;
3542         int rc;
3543         ENTRY;
3544
3545         if (!mdt_object_remote(o)) {
3546                 rc = mdt_object_local_lock(info, o, lh, ibits, trybits,
3547                                            cos_incompat);
3548                 RETURN(rc);
3549         }
3550
3551         /* XXX do not support PERM/LAYOUT/XATTR lock for remote object yet */
3552         *ibits &= ~(MDS_INODELOCK_PERM | MDS_INODELOCK_LAYOUT |
3553                     MDS_INODELOCK_XATTR);
3554
3555         /* Only enqueue LOOKUP lock for remote object */
3556         if (*ibits & MDS_INODELOCK_LOOKUP) {
3557                 __u64 local = MDS_INODELOCK_LOOKUP;
3558
3559                 rc = mdt_object_local_lock(info, o, lh, &local, 0,
3560                                            cos_incompat);
3561                 if (rc != ELDLM_OK)
3562                         RETURN(rc);
3563
3564                 local_lh = lh;
3565         }
3566
3567         if ((*ibits | trybits) & MDS_INODELOCK_UPDATE) {
3568                 /* Sigh, PDO needs to enqueue 2 locks right now, but
3569                  * enqueue RPC can only request 1 lock, to avoid extra
3570                  * RPC, so it will instead enqueue EX lock for remote
3571                  * object anyway XXX*/
3572                 if (lh->mlh_type == MDT_PDO_LOCK &&
3573                     lh->mlh_pdo_hash != 0) {
3574                         CDEBUG(D_INFO,
3575                                "%s: "DFID" convert PDO lock to EX lock.\n",
3576                                mdt_obd_name(info->mti_mdt),
3577                                PFID(mdt_object_fid(o)));
3578                         lh->mlh_pdo_hash = 0;
3579                         lh->mlh_rreg_mode = LCK_EX;
3580                         lh->mlh_type = MDT_REG_LOCK;
3581                 }
3582
3583                 rc = mdt_remote_object_lock_try(info, o, mdt_object_fid(o),
3584                                                 &lh->mlh_rreg_lh,
3585                                                 lh->mlh_rreg_mode,
3586                                                 ibits, trybits, false);
3587                 if (rc != ELDLM_OK) {
3588                         if (local_lh != NULL)
3589                                 mdt_object_unlock(info, o, local_lh, rc);
3590                         RETURN(rc);
3591                 }
3592         }
3593
3594         /* other components like LFSCK can use lockless access
3595          * and populate cache, so we better invalidate it */
3596         mo_invalidate(info->mti_env, mdt_object_child(o));
3597
3598         RETURN(0);
3599 }
3600
3601 int mdt_object_lock(struct mdt_thread_info *info, struct mdt_object *o,
3602                     struct mdt_lock_handle *lh, __u64 ibits)
3603 {
3604         return mdt_object_lock_internal(info, o, lh, &ibits, 0, false);
3605 }
3606
3607 int mdt_reint_object_lock(struct mdt_thread_info *info, struct mdt_object *o,
3608                           struct mdt_lock_handle *lh, __u64 ibits,
3609                           bool cos_incompat)
3610 {
3611         LASSERT(lh->mlh_reg_mode == LCK_PW || lh->mlh_reg_mode == LCK_EX);
3612         return mdt_object_lock_internal(info, o, lh, &ibits, 0,
3613                                         cos_incompat);
3614 }
3615
3616 int mdt_object_lock_try(struct mdt_thread_info *info, struct mdt_object *o,
3617                         struct mdt_lock_handle *lh, __u64 *ibits,
3618                         __u64 trybits, bool cos_incompat)
3619 {
3620         bool trylock_only = *ibits == 0;
3621         int rc;
3622
3623         LASSERT(!(*ibits & trybits));
3624         rc = mdt_object_lock_internal(info, o, lh, ibits, trybits,
3625                                       cos_incompat);
3626         if (rc && trylock_only) { /* clear error for try ibits lock only */
3627                 LASSERT(*ibits == 0);
3628                 rc = 0;
3629         }
3630         return rc;
3631 }
3632
3633 /**
3634  * Save a lock within request object.
3635  *
3636  * Keep the lock referenced until whether client ACK or transaction
3637  * commit happens or release the lock immediately depending on input
3638  * parameters. If COS is ON, a write lock is converted to COS lock
3639  * before saving.
3640  *
3641  * \param info thead info object
3642  * \param h lock handle
3643  * \param mode lock mode
3644  * \param decref force immediate lock releasing
3645  */
3646 void mdt_save_lock(struct mdt_thread_info *info, struct lustre_handle *h,
3647                    enum ldlm_mode mode, int decref)
3648 {
3649         ENTRY;
3650
3651         if (lustre_handle_is_used(h)) {
3652                 if (decref || !info->mti_has_trans ||
3653                     !(mode & (LCK_PW | LCK_EX))) {
3654                         mdt_fid_unlock(h, mode);
3655                 } else {
3656                         struct mdt_device *mdt = info->mti_mdt;
3657                         struct ldlm_lock *lock = ldlm_handle2lock(h);
3658                         struct ptlrpc_request *req = mdt_info_req(info);
3659                         bool cos = mdt_cos_is_enabled(mdt);
3660                         bool convert_lock = !cos && mdt_slc_is_enabled(mdt);
3661
3662                         LASSERTF(lock != NULL, "no lock for cookie %#llx\n",
3663                                  h->cookie);
3664
3665                         /* there is no request if mdt_object_unlock() is called
3666                          * from mdt_export_cleanup()->mdt_add_dirty_flag() */
3667                         if (likely(req != NULL)) {
3668                                 LDLM_DEBUG(lock, "save lock request %p reply "
3669                                         "state %p transno %lld\n", req,
3670                                         req->rq_reply_state, req->rq_transno);
3671                                 if (cos) {
3672                                         ldlm_lock_mode_downgrade(lock, LCK_COS);
3673                                         mode = LCK_COS;
3674                                 }
3675                                 if (req->rq_export->exp_disconnected)
3676                                         mdt_fid_unlock(h, mode);
3677                                 else
3678                                         ptlrpc_save_lock(req, h, mode, cos,
3679                                                          convert_lock);
3680                         } else {
3681                                 mdt_fid_unlock(h, mode);
3682                         }
3683                         if (mdt_is_lock_sync(lock)) {
3684                                 CDEBUG(D_HA, "found sync-lock,"
3685                                        " async commit started\n");
3686                                 mdt_device_commit_async(info->mti_env,
3687                                                         mdt);
3688                         }
3689                         LDLM_LOCK_PUT(lock);
3690                 }
3691                 h->cookie = 0ull;
3692         }
3693
3694         EXIT;
3695 }
3696
3697 /**
3698  * Save cross-MDT lock in uncommitted_slc_locks
3699  *
3700  * Keep the lock referenced until transaction commit happens or release the lock
3701  * immediately depending on input parameters.
3702  *
3703  * \param info thead info object
3704  * \param h lock handle
3705  * \param mode lock mode
3706  * \param decref force immediate lock releasing
3707  */
3708 static void mdt_save_remote_lock(struct mdt_thread_info *info,
3709                                  struct mdt_object *o, struct lustre_handle *h,
3710                                  enum ldlm_mode mode, int decref)
3711 {
3712         ENTRY;
3713
3714         if (lustre_handle_is_used(h)) {
3715                 struct ldlm_lock *lock = ldlm_handle2lock(h);
3716                 struct ptlrpc_request *req = mdt_info_req(info);
3717
3718                 if (o != NULL &&
3719                     (lock->l_policy_data.l_inodebits.bits &
3720                      (MDS_INODELOCK_XATTR | MDS_INODELOCK_UPDATE)))
3721                         mo_invalidate(info->mti_env, mdt_object_child(o));
3722
3723                 if (decref || !info->mti_has_trans || !req ||
3724                     !(mode & (LCK_PW | LCK_EX))) {
3725                         ldlm_lock_decref_and_cancel(h, mode);
3726                         LDLM_LOCK_PUT(lock);
3727                 } else {
3728                         tgt_save_slc_lock(&info->mti_mdt->mdt_lut, lock,
3729                                           req->rq_transno);
3730                         ldlm_lock_decref(h, mode);
3731                 }
3732                 h->cookie = 0ull;
3733         }
3734
3735         EXIT;
3736 }
3737
3738 /**
3739  * Unlock mdt object.
3740  *
3741  * Immeditely release the regular lock and the PDO lock or save the
3742  * lock in request and keep them referenced until client ACK or
3743  * transaction commit.
3744  *
3745  * \param info thread info object
3746  * \param o mdt object
3747  * \param lh mdt lock handle referencing regular and PDO locks
3748  * \param decref force immediate lock releasing
3749  *
3750  * XXX o is not used and may be NULL, see hsm_cdt_request_completed().
3751  */
3752 void mdt_object_unlock(struct mdt_thread_info *info, struct mdt_object *o,
3753                        struct mdt_lock_handle *lh, int decref)
3754 {
3755         ENTRY;
3756
3757         mdt_save_lock(info, &lh->mlh_pdo_lh, lh->mlh_pdo_mode, decref);
3758         mdt_save_lock(info, &lh->mlh_reg_lh, lh->mlh_reg_mode, decref);
3759         mdt_save_remote_lock(info, o, &lh->mlh_rreg_lh, lh->mlh_rreg_mode,
3760                              decref);
3761
3762         EXIT;
3763 }
3764
3765 struct mdt_object *mdt_object_find_lock(struct mdt_thread_info *info,
3766                                         const struct lu_fid *f,
3767                                         struct mdt_lock_handle *lh,
3768                                         __u64 ibits)
3769 {
3770         struct mdt_object *o;
3771
3772         o = mdt_object_find(info->mti_env, info->mti_mdt, f);
3773         if (!IS_ERR(o)) {
3774                 int rc;
3775
3776                 rc = mdt_object_lock(info, o, lh, ibits);
3777                 if (rc != 0) {
3778                         mdt_object_put(info->mti_env, o);
3779                         o = ERR_PTR(rc);
3780                 }
3781         }
3782         return o;
3783 }
3784
3785 void mdt_object_unlock_put(struct mdt_thread_info * info,
3786                            struct mdt_object * o,
3787                            struct mdt_lock_handle *lh,
3788                            int decref)
3789 {
3790         mdt_object_unlock(info, o, lh, decref);
3791         mdt_object_put(info->mti_env, o);
3792 }
3793
3794 /*
3795  * Generic code handling requests that have struct mdt_body passed in:
3796  *
3797  *  - extract mdt_body from request and save it in @info, if present;
3798  *
3799  *  - create lu_object, corresponding to the fid in mdt_body, and save it in
3800  *  @info;
3801  *
3802  *  - if HAS_BODY flag is set for this request type check whether object
3803  *  actually exists on storage (lu_object_exists()).
3804  *
3805  */
3806 static int mdt_body_unpack(struct mdt_thread_info *info,
3807                            enum tgt_handler_flags flags)
3808 {
3809         const struct mdt_body    *body;
3810         struct mdt_object        *obj;
3811         const struct lu_env      *env;
3812         struct req_capsule       *pill;
3813         int                       rc;
3814         ENTRY;
3815
3816         env = info->mti_env;
3817         pill = info->mti_pill;
3818
3819         body = info->mti_body = req_capsule_client_get(pill, &RMF_MDT_BODY);
3820         if (body == NULL)
3821                 RETURN(-EFAULT);
3822
3823         if (!(body->mbo_valid & OBD_MD_FLID))
3824                 RETURN(0);
3825
3826         if (!fid_is_sane(&body->mbo_fid1)) {
3827                 CERROR("Invalid fid: "DFID"\n", PFID(&body->mbo_fid1));
3828                 RETURN(-EINVAL);
3829         }
3830
3831         obj = mdt_object_find(env, info->mti_mdt, &body->mbo_fid1);
3832         if (!IS_ERR(obj)) {
3833                 if ((flags & HAS_BODY) && !mdt_object_exists(obj)) {
3834                         mdt_object_put(env, obj);
3835                         rc = -ENOENT;
3836                 } else {
3837                         info->mti_object = obj;
3838                         rc = 0;
3839                 }
3840         } else
3841                 rc = PTR_ERR(obj);
3842
3843         RETURN(rc);
3844 }
3845
3846 static int mdt_unpack_req_pack_rep(struct mdt_thread_info *info,
3847                                    enum tgt_handler_flags flags)
3848 {
3849         struct req_capsule *pill = info->mti_pill;
3850         int rc;
3851
3852         ENTRY;
3853
3854         if (req_capsule_has_field(pill, &RMF_MDT_BODY, RCL_CLIENT))
3855                 rc = mdt_body_unpack(info, flags);
3856         else
3857                 rc = 0;
3858
3859         if (rc == 0 && (flags & HAS_REPLY)) {
3860                 /* Pack reply. */
3861                 if (req_capsule_has_field(pill, &RMF_MDT_MD, RCL_SERVER))
3862                         req_capsule_set_size(pill, &RMF_MDT_MD, RCL_SERVER,
3863                                              DEF_REP_MD_SIZE);
3864                 if (req_capsule_has_field(pill, &RMF_LOGCOOKIES, RCL_SERVER))
3865                         req_capsule_set_size(pill, &RMF_LOGCOOKIES,
3866                                              RCL_SERVER, 0);
3867
3868                 /* Set ACL reply buffer size as LUSTRE_POSIX_ACL_MAX_SIZE_OLD
3869                  * by default. If the target object has more ACL entries, then
3870                  * enlarge the buffer when necessary. */
3871                 if (req_capsule_has_field(pill, &RMF_ACL, RCL_SERVER))
3872                         req_capsule_set_size(pill, &RMF_ACL, RCL_SERVER,
3873                                              LUSTRE_POSIX_ACL_MAX_SIZE_OLD);
3874
3875                 mdt_preset_secctx_size(info);
3876
3877                 rc = req_capsule_server_pack(pill);
3878                 if (rc)
3879                         CWARN("%s: cannot pack response: rc = %d\n",
3880                                       mdt_obd_name(info->mti_mdt), rc);
3881         }
3882         RETURN(rc);
3883 }
3884
3885 void mdt_lock_handle_init(struct mdt_lock_handle *lh)
3886 {
3887         lh->mlh_type = MDT_NUL_LOCK;
3888         lh->mlh_reg_lh.cookie = 0ull;
3889         lh->mlh_reg_mode = LCK_MINMODE;
3890         lh->mlh_pdo_lh.cookie = 0ull;
3891         lh->mlh_pdo_mode = LCK_MINMODE;
3892         lh->mlh_rreg_lh.cookie = 0ull;
3893         lh->mlh_rreg_mode = LCK_MINMODE;
3894 }
3895
3896 void mdt_lock_handle_fini(struct mdt_lock_handle *lh)
3897 {
3898         LASSERT(!lustre_handle_is_used(&lh->mlh_reg_lh));
3899         LASSERT(!lustre_handle_is_used(&lh->mlh_pdo_lh));
3900 }
3901
3902 /*
3903  * Initialize fields of struct mdt_thread_info. Other fields are left in
3904  * uninitialized state, because it's too expensive to zero out whole
3905  * mdt_thread_info (> 1K) on each request arrival.
3906  */
3907 void mdt_thread_info_init(struct ptlrpc_request *req,
3908                           struct mdt_thread_info *info)
3909 {
3910         int i;
3911
3912         info->mti_pill = &req->rq_pill;
3913
3914         /* lock handle */
3915         for (i = 0; i < ARRAY_SIZE(info->mti_lh); i++)
3916                 mdt_lock_handle_init(&info->mti_lh[i]);
3917
3918         /* mdt device: it can be NULL while CONNECT */
3919         if (req->rq_export) {
3920                 info->mti_mdt = mdt_dev(req->rq_export->exp_obd->obd_lu_dev);
3921                 info->mti_exp = req->rq_export;
3922         } else
3923                 info->mti_mdt = NULL;
3924         info->mti_env = req->rq_svc_thread->t_env;
3925         info->mti_transno = lustre_msg_get_transno(req->rq_reqmsg);
3926
3927         memset(&info->mti_attr, 0, sizeof(info->mti_attr));
3928         info->mti_big_buf = LU_BUF_NULL;
3929         info->mti_body = NULL;
3930         info->mti_object = NULL;
3931         info->mti_dlm_req = NULL;
3932         info->mti_has_trans = 0;
3933         info->mti_cross_ref = 0;
3934         info->mti_opdata = 0;
3935         info->mti_big_lmm_used = 0;
3936         info->mti_big_acl_used = 0;
3937         info->mti_som_valid = 0;
3938
3939         info->mti_spec.no_create = 0;
3940         info->mti_spec.sp_rm_entry = 0;
3941         info->mti_spec.sp_permitted = 0;
3942
3943         info->mti_spec.u.sp_ea.eadata = NULL;
3944         info->mti_spec.u.sp_ea.eadatalen = 0;
3945 }
3946
3947 void mdt_thread_info_fini(struct mdt_thread_info *info)
3948 {
3949         int i;
3950
3951         if (info->mti_object != NULL) {
3952                 mdt_object_put(info->mti_env, info->mti_object);
3953                 info->mti_object = NULL;
3954         }
3955
3956         for (i = 0; i < ARRAY_SIZE(info->mti_lh); i++)
3957                 mdt_lock_handle_fini(&info->mti_lh[i]);
3958         info->mti_env = NULL;
3959         info->mti_pill = NULL;
3960         info->mti_exp = NULL;
3961         info->mti_mdt = NULL;
3962
3963         if (unlikely(info->mti_big_buf.lb_buf != NULL))
3964                 lu_buf_free(&info->mti_big_buf);
3965 }
3966
3967 struct mdt_thread_info *tsi2mdt_info(struct tgt_session_info *tsi)
3968 {
3969         struct mdt_thread_info  *mti;
3970
3971         mti = mdt_th_info(tsi->tsi_env);
3972         LASSERT(mti != NULL);
3973
3974         mdt_thread_info_init(tgt_ses_req(tsi), mti);
3975         if (tsi->tsi_corpus != NULL) {
3976                 mti->mti_object = mdt_obj(tsi->tsi_corpus);
3977                 lu_object_get(tsi->tsi_corpus);
3978         }
3979         mti->mti_body = tsi->tsi_mdt_body;
3980         mti->mti_dlm_req = tsi->tsi_dlm_req;
3981
3982         return mti;
3983 }
3984
3985 static int mdt_tgt_connect(struct tgt_session_info *tsi)
3986 {
3987         if (OBD_FAIL_CHECK(OBD_FAIL_TGT_DELAY_CONDITIONAL) &&
3988             cfs_fail_val ==
3989             tsi2mdt_info(tsi)->mti_mdt->mdt_seq_site.ss_node_id)
3990                 schedule_timeout_uninterruptible(cfs_time_seconds(3));
3991
3992         return tgt_connect(tsi);
3993 }
3994
3995 static int mdt_intent_glimpse(enum ldlm_intent_flags it_opc,
3996                               struct mdt_thread_info *info,
3997                               struct ldlm_lock **lockp, __u64 flags)
3998 {
3999         return mdt_glimpse_enqueue(info, info->mti_mdt->mdt_namespace,
4000                                    lockp, flags);
4001 }
4002 static int mdt_intent_brw(enum ldlm_intent_flags it_opc,
4003                           struct mdt_thread_info *info,
4004                           struct ldlm_lock **lockp, __u64 flags)
4005 {
4006         return mdt_brw_enqueue(info, info->mti_mdt->mdt_namespace,
4007                                lockp, flags);
4008 }
4009
4010 int mdt_intent_lock_replace(struct mdt_thread_info *info,
4011                             struct ldlm_lock **lockp,
4012                             struct mdt_lock_handle *lh,
4013                             __u64 flags, int result)
4014 {
4015         struct ptlrpc_request  *req = mdt_info_req(info);
4016         struct ldlm_lock       *lock = *lockp;
4017         struct ldlm_lock       *new_lock;
4018
4019         /* If possible resent found a lock, @lh is set to its handle */
4020         new_lock = ldlm_handle2lock_long(&lh->mlh_reg_lh, 0);
4021
4022         if (new_lock == NULL && (flags & LDLM_FL_INTENT_ONLY)) {
4023                 lh->mlh_reg_lh.cookie = 0;
4024                 RETURN(0);
4025         }
4026
4027         if (new_lock == NULL && (flags & LDLM_FL_RESENT)) {
4028                 /* Lock is pinned by ldlm_handle_enqueue0() as it is
4029                  * a resend case, however, it could be already destroyed
4030                  * due to client eviction or a raced cancel RPC. */
4031                 LDLM_DEBUG_NOLOCK("Invalid lock handle %#llx\n",
4032                                   lh->mlh_reg_lh.cookie);
4033                 lh->mlh_reg_lh.cookie = 0;
4034                 RETURN(-ESTALE);
4035         }
4036
4037         LASSERTF(new_lock != NULL,
4038                  "lockh %#llx flags %#llx : rc = %d\n",
4039                  lh->mlh_reg_lh.cookie, flags, result);
4040
4041         /*
4042          * If we've already given this lock to a client once, then we should
4043          * have no readers or writers.  Otherwise, we should have one reader
4044          * _or_ writer ref (which will be zeroed below) before returning the
4045          * lock to a client.
4046          */
4047         if (new_lock->l_export == req->rq_export) {
4048                 LASSERT(new_lock->l_readers + new_lock->l_writers == 0);
4049         } else {
4050                 LASSERT(new_lock->l_export == NULL);
4051                 LASSERT(new_lock->l_readers + new_lock->l_writers == 1);
4052         }
4053
4054         *lockp = new_lock;
4055
4056         if (new_lock->l_export == req->rq_export) {
4057                 /*
4058                  * Already gave this to the client, which means that we
4059                  * reconstructed a reply.
4060                  */
4061                 LASSERT(lustre_msg_get_flags(req->rq_reqmsg) &
4062                         MSG_RESENT);
4063
4064                 LDLM_LOCK_RELEASE(new_lock);
4065                 lh->mlh_reg_lh.cookie = 0;
4066                 RETURN(ELDLM_LOCK_REPLACED);
4067         }
4068
4069         /*
4070          * Fixup the lock to be given to the client.
4071          */
4072         lock_res_and_lock(new_lock);
4073         /* Zero new_lock->l_readers and new_lock->l_writers without triggering
4074          * possible blocking AST. */
4075         while (new_lock->l_readers > 0) {
4076                 lu_ref_del(&new_lock->l_reference, "reader", new_lock);
4077                 lu_ref_del(&new_lock->l_reference, "user", new_lock);
4078                 new_lock->l_readers--;
4079         }
4080         while (new_lock->l_writers > 0) {
4081                 lu_ref_del(&new_lock->l_reference, "writer", new_lock);
4082                 lu_ref_del(&new_lock->l_reference, "user", new_lock);
4083                 new_lock->l_writers--;
4084         }
4085
4086         new_lock->l_export = class_export_lock_get(req->rq_export, new_lock);
4087         new_lock->l_blocking_ast = lock->l_blocking_ast;
4088         new_lock->l_completion_ast = lock->l_completion_ast;
4089         if (ldlm_has_dom(new_lock))
4090                 new_lock->l_glimpse_ast = ldlm_server_glimpse_ast;
4091         new_lock->l_remote_handle = lock->l_remote_handle;
4092         new_lock->l_flags &= ~LDLM_FL_LOCAL;
4093
4094         unlock_res_and_lock(new_lock);
4095
4096         cfs_hash_add(new_lock->l_export->exp_lock_hash,
4097                      &new_lock->l_remote_handle,
4098                      &new_lock->l_exp_hash);
4099
4100         LDLM_LOCK_RELEASE(new_lock);
4101         lh->mlh_reg_lh.cookie = 0;
4102
4103         RETURN(ELDLM_LOCK_REPLACED);
4104 }
4105
4106 void mdt_intent_fixup_resent(struct mdt_thread_info *info,
4107                              struct ldlm_lock *new_lock,
4108                              struct mdt_lock_handle *lh, __u64 flags)
4109 {
4110         struct ptlrpc_request  *req = mdt_info_req(info);
4111         struct ldlm_request    *dlmreq;
4112
4113         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT))
4114                 return;
4115
4116         dlmreq = req_capsule_client_get(info->mti_pill, &RMF_DLM_REQ);
4117
4118         /* Check if this is a resend case (MSG_RESENT is set on RPC) and a
4119          * lock was found by ldlm_handle_enqueue(); if so @lh must be
4120          * initialized. */
4121         if (flags & LDLM_FL_RESENT) {
4122                 lh->mlh_reg_lh.cookie = new_lock->l_handle.h_cookie;
4123                 lh->mlh_reg_mode = new_lock->l_granted_mode;
4124
4125                 LDLM_DEBUG(new_lock, "Restoring lock cookie");
4126                 DEBUG_REQ(D_DLMTRACE, req, "restoring lock cookie %#llx",
4127                           lh->mlh_reg_lh.cookie);
4128                 return;
4129         }
4130
4131         /*
4132          * If the xid matches, then we know this is a resent request, and allow
4133          * it. (It's probably an OPEN, for which we don't send a lock.
4134          */
4135         if (req_can_reconstruct(req, NULL) != 0)
4136                 return;
4137
4138         /*
4139          * This remote handle isn't enqueued, so we never received or processed
4140          * this request.  Clear MSG_RESENT, because it can be handled like any
4141          * normal request now.
4142          */
4143         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
4144
4145         DEBUG_REQ(D_DLMTRACE, req, "no existing lock with rhandle %#llx",
4146                   dlmreq->lock_handle[0].cookie);
4147 }
4148
4149 static int mdt_intent_getxattr(enum ldlm_intent_flags it_opc,
4150                                struct mdt_thread_info *info,
4151                                struct ldlm_lock **lockp,
4152                                __u64 flags)
4153 {
4154         struct mdt_lock_handle *lhc = &info->mti_lh[MDT_LH_RMT];
4155         struct ldlm_reply      *ldlm_rep = NULL;
4156         int rc;
4157         ENTRY;
4158
4159         /*
4160          * Initialize lhc->mlh_reg_lh either from a previously granted lock
4161          * (for the resend case) or a new lock. Below we will use it to
4162          * replace the original lock.
4163          */
4164         mdt_intent_fixup_resent(info, *lockp, lhc, flags);
4165         if (!lustre_handle_is_used(&lhc->mlh_reg_lh)) {
4166                 mdt_lock_reg_init(lhc, (*lockp)->l_req_mode);
4167                 rc = mdt_object_lock(info, info->mti_object, lhc,
4168                                      MDS_INODELOCK_XATTR);
4169                 if (rc)
4170                         return rc;
4171         }
4172
4173         rc = mdt_getxattr(info);
4174
4175         if (mdt_info_req(info)->rq_repmsg != NULL)
4176                 ldlm_rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
4177
4178         if (ldlm_rep == NULL ||
4179             OBD_FAIL_CHECK(OBD_FAIL_MDS_XATTR_REP)) {
4180                 mdt_object_unlock(info,  info->mti_object, lhc, 1);
4181                 if (is_serious(rc))
4182                         RETURN(rc);
4183                 else
4184                         RETURN(err_serious(-EFAULT));
4185         }
4186
4187         ldlm_rep->lock_policy_res2 = clear_serious(rc);
4188
4189         /* This is left for interop instead of adding a new interop flag.
4190          * LU-7433 */
4191 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(3, 0, 0, 0)
4192         if (ldlm_rep->lock_policy_res2) {
4193                 mdt_object_unlock(info, info->mti_object, lhc, 1);
4194                 RETURN(ELDLM_LOCK_ABORTED);
4195         }
4196 #endif
4197
4198         rc = mdt_intent_lock_replace(info, lockp, lhc, flags, rc);
4199         RETURN(rc);
4200 }
4201
4202 static int mdt_intent_getattr(enum ldlm_intent_flags it_opc,
4203                               struct mdt_thread_info *info,
4204                               struct ldlm_lock **lockp,
4205                               __u64 flags)
4206 {
4207         struct mdt_lock_handle *lhc = &info->mti_lh[MDT_LH_RMT];
4208         __u64                   child_bits;
4209         struct ldlm_reply      *ldlm_rep;
4210         struct mdt_body        *reqbody;
4211         struct mdt_body        *repbody;
4212         int                     rc, rc2;
4213         ENTRY;
4214
4215         reqbody = req_capsule_client_get(info->mti_pill, &RMF_MDT_BODY);
4216         LASSERT(reqbody);
4217
4218         repbody = req_capsule_server_get(info->mti_pill, &RMF_MDT_BODY);
4219         LASSERT(repbody);
4220
4221         info->mti_cross_ref = !!(reqbody->mbo_valid & OBD_MD_FLCROSSREF);
4222         repbody->mbo_eadatasize = 0;
4223         repbody->mbo_aclsize = 0;
4224
4225         switch (it_opc) {
4226         case IT_LOOKUP:
4227                 child_bits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
4228                 break;
4229         case IT_GETATTR:
4230                 child_bits = MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
4231                              MDS_INODELOCK_PERM;
4232                 break;
4233         default:
4234                 CERROR("%s: unsupported intent %#x\n",
4235                        mdt_obd_name(info->mti_mdt), (unsigned int)it_opc);
4236                 GOTO(out_shrink, rc = -EINVAL);
4237         }
4238
4239         rc = mdt_init_ucred_intent_getattr(info, reqbody);
4240         if (rc)
4241                 GOTO(out_shrink, rc);
4242
4243         ldlm_rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
4244         mdt_set_disposition(info, ldlm_rep, DISP_IT_EXECD);
4245
4246         /* Get lock from request for possible resent case. */
4247         mdt_intent_fixup_resent(info, *lockp, lhc, flags);
4248
4249         rc = mdt_getattr_name_lock(info, lhc, child_bits, ldlm_rep);
4250         ldlm_rep->lock_policy_res2 = clear_serious(rc);
4251
4252         if (mdt_get_disposition(ldlm_rep, DISP_LOOKUP_NEG))
4253                 ldlm_rep->lock_policy_res2 = 0;
4254         if (!mdt_get_disposition(ldlm_rep, DISP_LOOKUP_POS) ||
4255             ldlm_rep->lock_policy_res2) {
4256                 lhc->mlh_reg_lh.cookie = 0ull;
4257                 GOTO(out_ucred, rc = ELDLM_LOCK_ABORTED);
4258         }
4259
4260         rc = mdt_intent_lock_replace(info, lockp, lhc, flags, rc);
4261         EXIT;
4262 out_ucred:
4263         mdt_exit_ucred(info);
4264 out_shrink:
4265         mdt_client_compatibility(info);
4266         rc2 = mdt_fix_reply(info);
4267         if (rc == 0)
4268                 rc = rc2;
4269         return rc;
4270 }
4271
4272 static int mdt_intent_layout(enum ldlm_intent_flags it_opc,
4273                              struct mdt_thread_info *info,
4274                              struct ldlm_lock **lockp,
4275                              __u64 flags)
4276 {
4277         struct mdt_lock_handle *lhc = &info->mti_lh[MDT_LH_RMT];
4278         struct md_layout_change layout = { .mlc_opc = MD_LAYOUT_NOP };
4279         struct layout_intent *intent;
4280         struct ldlm_reply *ldlm_rep;
4281         struct lu_fid *fid = &info->mti_tmp_fid2;
4282         struct mdt_object *obj = NULL;
4283         int layout_size = 0;
4284         struct lu_buf *buf = &layout.mlc_buf;
4285         int rc = 0;
4286
4287         ENTRY;
4288
4289         fid_extract_from_res_name(fid, &(*lockp)->l_resource->lr_name);
4290
4291         intent = req_capsule_client_get(info->mti_pill, &RMF_LAYOUT_INTENT);
4292         if (intent == NULL)
4293                 RETURN(-EPROTO);
4294
4295         CDEBUG(D_INFO, DFID "got layout change request from client: "
4296                "opc:%u flags:%#x extent "DEXT"\n",
4297                PFID(fid), intent->li_opc, intent->li_flags,
4298                PEXT(&intent->li_extent));
4299
4300         switch (intent->li_opc) {
4301         case LAYOUT_INTENT_TRUNC:
4302         case LAYOUT_INTENT_WRITE:
4303                 layout.mlc_opc = MD_LAYOUT_WRITE;
4304                 layout.mlc_intent = intent;
4305                 break;
4306         case LAYOUT_INTENT_ACCESS:
4307                 break;
4308         case LAYOUT_INTENT_READ:
4309         case LAYOUT_INTENT_GLIMPSE:
4310         case LAYOUT_INTENT_RELEASE:
4311         case LAYOUT_INTENT_RESTORE:
4312                 CERROR("%s: Unsupported layout intent opc %d\n",
4313                        mdt_obd_name(info->mti_mdt), intent->li_opc);
4314                 RETURN(-ENOTSUPP);
4315         default:
4316                 CERROR("%s: Unknown layout intent opc %d\n",
4317                        mdt_obd_name(info->mti_mdt), intent->li_opc);
4318                 RETURN(-EINVAL);
4319         }
4320
4321         obj = mdt_object_find(info->mti_env, info->mti_mdt, fid);
4322         if (IS_ERR(obj))
4323                 RETURN(PTR_ERR(obj));
4324
4325         if (mdt_object_exists(obj) && !mdt_object_remote(obj)) {
4326                 /* if layout is going to be changed don't use the current EA
4327                  * size but the maximum one. That buffer will be shrinked
4328                  * to the actual size in req_capsule_shrink() before reply.
4329                  */
4330                 if (layout.mlc_opc == MD_LAYOUT_WRITE) {
4331                         layout_size = info->mti_mdt->mdt_max_mdsize;
4332                 } else {
4333                         layout_size = mdt_attr_get_eabuf_size(info, obj);
4334                         if (layout_size < 0)
4335                                 GOTO(out, rc = layout_size);
4336
4337                         if (layout_size > info->mti_mdt->mdt_max_mdsize)
4338                                 info->mti_mdt->mdt_max_mdsize = layout_size;
4339                 }
4340                 CDEBUG(D_INFO, "%s: layout_size %d\n",
4341                        mdt_obd_name(info->mti_mdt), layout_size);
4342         }
4343
4344         /*
4345          * set reply buffer size, so that ldlm_handle_enqueue0()->
4346          * ldlm_lvbo_fill() will fill the reply buffer with lovea.
4347          */
4348         req_capsule_set_size(info->mti_pill, &RMF_DLM_LVB, RCL_SERVER,
4349                              layout_size);
4350         rc = req_capsule_server_pack(info->mti_pill);
4351         if (rc)
4352                 GOTO(out, rc);
4353
4354         ldlm_rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
4355         if (!ldlm_rep)
4356                 GOTO(out, rc = -EPROTO);
4357
4358         mdt_set_disposition(info, ldlm_rep, DISP_IT_EXECD);
4359
4360         /* take lock in ldlm_lock_enqueue() for LAYOUT_INTENT_ACCESS */
4361         if (layout.mlc_opc == MD_LAYOUT_NOP)
4362                 GOTO(out, rc = 0);
4363
4364         rc = mdt_check_resent(info, mdt_reconstruct_generic, lhc);
4365         if (rc < 0)
4366                 GOTO(out, rc);
4367         if (rc == 1) {
4368                 DEBUG_REQ(D_INODE, mdt_info_req(info), "resent opt.");
4369                 rc = lustre_msg_get_status(mdt_info_req(info)->rq_repmsg);
4370                 GOTO(out, rc);
4371         }
4372
4373         buf->lb_buf = NULL;
4374         buf->lb_len = 0;
4375         if (unlikely(req_is_replay(mdt_info_req(info)))) {
4376                 buf->lb_buf = req_capsule_client_get(info->mti_pill,
4377                                                      &RMF_EADATA);
4378                 buf->lb_len = req_capsule_get_size(info->mti_pill,
4379                                                      &RMF_EADATA, RCL_CLIENT);
4380                 /*
4381                  * If it's a replay of layout write intent RPC, the client has
4382                  * saved the extended lovea when it get reply then.
4383                  */
4384                 if (buf->lb_len > 0)
4385                         mdt_fix_lov_magic(info, buf->lb_buf);
4386         }
4387
4388         /* Get lock from request for possible resent case. */
4389         mdt_intent_fixup_resent(info, *lockp, lhc, flags);
4390         (*lockp)->l_lvb_type = LVB_T_LAYOUT;
4391
4392         /*
4393          * Instantiate some layout components, if @buf contains lovea, then it's
4394          * a replay of the layout intent write RPC.
4395          */
4396         rc = mdt_layout_change(info, obj, lhc, &layout);
4397         ldlm_rep->lock_policy_res2 = clear_serious(rc);
4398
4399         if (lustre_handle_is_used(&lhc->mlh_reg_lh)) {
4400                 rc = mdt_intent_lock_replace(info, lockp, lhc, flags, rc);
4401                 if (rc == ELDLM_LOCK_REPLACED &&
4402                     (*lockp)->l_granted_mode == LCK_EX)
4403                         ldlm_lock_mode_downgrade(*lockp, LCK_CR);
4404         }
4405
4406         EXIT;
4407 out:
4408         mdt_object_put(info->mti_env, obj);
4409         return rc;
4410 }
4411
4412 static int mdt_intent_open(enum ldlm_intent_flags it_opc,
4413                            struct mdt_thread_info *info,
4414                            struct ldlm_lock **lockp,
4415                            __u64 flags)
4416 {
4417         struct mdt_lock_handle *lhc = &info->mti_lh[MDT_LH_RMT];
4418         struct ldlm_reply      *rep = NULL;
4419         long                    opc;
4420         int                     rc;
4421
4422         static const struct req_format *intent_fmts[REINT_MAX] = {
4423                 [REINT_CREATE]  = &RQF_LDLM_INTENT_CREATE,
4424                 [REINT_OPEN]    = &RQF_LDLM_INTENT_OPEN
4425         };
4426
4427         ENTRY;
4428
4429         opc = mdt_reint_opcode(mdt_info_req(info), intent_fmts);
4430         if (opc < 0)
4431                 RETURN(opc);
4432
4433         /* Get lock from request for possible resent case. */
4434         mdt_intent_fixup_resent(info, *lockp, lhc, flags);
4435
4436         rc = mdt_reint_internal(info, lhc, opc);
4437
4438         /* Check whether the reply has been packed successfully. */
4439         if (mdt_info_req(info)->rq_repmsg != NULL)
4440                 rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
4441         if (rep == NULL) {
4442                 if (is_serious(rc))
4443                         RETURN(rc);
4444                 else
4445                         RETURN(err_serious(-EFAULT));
4446         }
4447
4448         /* MDC expects this in any case */
4449         if (rc != 0)
4450                 mdt_set_disposition(info, rep, DISP_LOOKUP_EXECD);
4451
4452         /* the open lock or the lock for cross-ref object should be
4453          * returned to the client */
4454         if (lustre_handle_is_used(&lhc->mlh_reg_lh) &&
4455             (rc == 0 || rc == -MDT_EREMOTE_OPEN)) {
4456                 rep->lock_policy_res2 = 0;
4457                 rc = mdt_intent_lock_replace(info, lockp, lhc, flags, rc);
4458                 RETURN(rc);
4459         }
4460
4461         rep->lock_policy_res2 = clear_serious(rc);
4462
4463         if (rep->lock_policy_res2 == -ENOENT &&
4464             mdt_get_disposition(rep, DISP_LOOKUP_NEG) &&
4465             !mdt_get_disposition(rep, DISP_OPEN_CREATE))
4466                 rep->lock_policy_res2 = 0;
4467
4468         lhc->mlh_reg_lh.cookie = 0ull;
4469         if (rc == -ENOTCONN || rc == -ENODEV ||
4470             rc == -EOVERFLOW) { /**< if VBR failure then return error */
4471                 /*
4472                  * If it is the disconnect error (ENODEV & ENOCONN), the error
4473                  * will be returned by rq_status, and client at ptlrpc layer
4474                  * will detect this, then disconnect, reconnect the import
4475                  * immediately, instead of impacting the following the rpc.
4476                  */
4477                 RETURN(rc);
4478         }
4479         /*
4480          * For other cases, the error will be returned by intent, and client
4481          * will retrieve the result from intent.
4482          */
4483         RETURN(ELDLM_LOCK_ABORTED);
4484 }
4485
4486 static int mdt_intent_opc(enum ldlm_intent_flags it_opc,
4487                           struct mdt_thread_info *info,
4488                           struct ldlm_lock **lockp,
4489                           u64 flags /* LDLM_FL_* */)
4490 {
4491         struct req_capsule *pill = info->mti_pill;
4492         struct ptlrpc_request *req = mdt_info_req(info);
4493         const struct req_format *it_format;
4494         int (*it_handler)(enum ldlm_intent_flags,
4495                           struct mdt_thread_info *,
4496                           struct ldlm_lock **,
4497                           u64);
4498         enum tgt_handler_flags it_handler_flags = 0;
4499         struct ldlm_reply *rep;
4500         bool check_mdt_object = false;
4501         int rc;
4502         ENTRY;
4503
4504         switch (it_opc) {
4505         case IT_OPEN:
4506         case IT_OPEN|IT_CREAT:
4507                 /*
4508                  * OCREAT is not a IS_MUTABLE request since the file may
4509                  * already exist. We do the extra check of
4510                  * OBD_CONNECT_RDONLY in mdt_reint_open() when we
4511                  * really need to create the object.
4512                  */
4513                 it_format = &RQF_LDLM_INTENT;
4514                 it_handler = &mdt_intent_open;
4515                 break;
4516         case IT_GETATTR:
4517                 check_mdt_object = true;
4518                 /* fallthrough */
4519         case IT_LOOKUP:
4520                 it_format = &RQF_LDLM_INTENT_GETATTR;
4521                 it_handler = &mdt_intent_getattr;
4522                 it_handler_flags = HAS_REPLY;
4523                 break;
4524         case IT_GETXATTR:
4525                 check_mdt_object = true;
4526                 it_format = &RQF_LDLM_INTENT_GETXATTR;
4527                 it_handler = &mdt_intent_getxattr;
4528                 it_handler_flags = HAS_BODY;
4529                 break;
4530         case IT_LAYOUT:
4531                 it_format = &RQF_LDLM_INTENT_LAYOUT;
4532                 it_handler = &mdt_intent_layout;
4533                 break;
4534         case IT_GLIMPSE:
4535                 it_format = &RQF_LDLM_INTENT;
4536                 it_handler = &mdt_intent_glimpse;
4537                 break;
4538         case IT_BRW:
4539                 it_format = &RQF_LDLM_INTENT;
4540                 it_handler = &mdt_intent_brw;
4541                 break;
4542         case IT_QUOTA_DQACQ:
4543         case IT_QUOTA_CONN: {
4544                 struct lu_device *qmt = info->mti_mdt->mdt_qmt_dev;
4545
4546                 if (qmt == NULL)
4547                         RETURN(-EOPNOTSUPP);
4548
4549                 if (mdt_rdonly(req->rq_export))
4550                         RETURN(-EROFS);
4551
4552                 (*lockp)->l_lvb_type = LVB_T_LQUOTA;
4553                 /* pass the request to quota master */
4554                 rc = qmt_hdls.qmth_intent_policy(info->mti_env, qmt,
4555                                                  mdt_info_req(info), lockp,
4556                                                  flags);
4557                 RETURN(rc);
4558         }
4559         default:
4560                 CERROR("%s: unknown intent code %#x\n",
4561                        mdt_obd_name(info->mti_mdt), it_opc);
4562                 RETURN(-EPROTO);
4563         }
4564
4565         req_capsule_extend(pill, it_format);
4566
4567         rc = mdt_unpack_req_pack_rep(info, it_handler_flags);
4568         if (rc < 0)
4569                 RETURN(rc);
4570
4571         if (unlikely(info->mti_object == NULL && check_mdt_object))
4572                 RETURN(-EPROTO);
4573
4574         if (it_handler_flags & IS_MUTABLE && mdt_rdonly(req->rq_export))
4575                 RETURN(-EROFS);
4576
4577         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_INTENT_DELAY, 10);
4578
4579         /* execute policy */
4580         rc = (*it_handler)(it_opc, info, lockp, flags);
4581
4582         /* Check whether the reply has been packed successfully. */
4583         if (req->rq_repmsg != NULL) {
4584                 rep = req_capsule_server_get(info->mti_pill, &RMF_DLM_REP);
4585                 rep->lock_policy_res2 =
4586                         ptlrpc_status_hton(rep->lock_policy_res2);
4587         }
4588
4589         RETURN(rc);
4590 }
4591
4592 static void mdt_ptlrpc_stats_update(struct ptlrpc_request *req,
4593                                     enum ldlm_intent_flags it_opc)
4594 {
4595         struct lprocfs_stats *srv_stats = ptlrpc_req2svc(req)->srv_stats;
4596
4597         /* update stats when IT code is known */
4598         if (srv_stats != NULL)
4599                 lprocfs_counter_incr(srv_stats,
4600                                 PTLRPC_LAST_CNTR + (it_opc == IT_GLIMPSE ?
4601                                 LDLM_GLIMPSE_ENQUEUE : LDLM_IBITS_ENQUEUE));
4602 }
4603
4604 static int mdt_intent_policy(const struct lu_env *env,
4605                              struct ldlm_namespace *ns,
4606                              struct ldlm_lock **lockp,
4607                              void *req_cookie,
4608                              enum ldlm_mode mode,
4609                              __u64 flags, void *data)
4610 {
4611         struct tgt_session_info *tsi;
4612         struct mdt_thread_info  *info;
4613         struct ptlrpc_request   *req  =  req_cookie;
4614         struct ldlm_intent      *it;
4615         struct req_capsule      *pill;
4616         const struct ldlm_lock_desc *ldesc;
4617         int rc;
4618
4619         ENTRY;
4620
4621         LASSERT(req != NULL);
4622
4623         tsi = tgt_ses_info(env);
4624
4625         info = tsi2mdt_info(tsi);
4626         LASSERT(info != NULL);
4627         pill = info->mti_pill;
4628         LASSERT(pill->rc_req == req);
4629         ldesc = &info->mti_dlm_req->lock_desc;
4630
4631         if (req->rq_reqmsg->lm_bufcount > DLM_INTENT_IT_OFF) {
4632                 req_capsule_extend(pill, &RQF_LDLM_INTENT_BASIC);
4633                 it = req_capsule_client_get(pill, &RMF_LDLM_INTENT);
4634                 if (it != NULL) {
4635                         mdt_ptlrpc_stats_update(req, it->opc);
4636                         rc = mdt_intent_opc(it->opc, info, lockp, flags);
4637                         if (rc == 0)
4638                                 rc = ELDLM_OK;
4639
4640                         /* Lock without inodebits makes no sense and will oops
4641                          * later in ldlm. Let's check it now to see if we have
4642                          * ibits corrupted somewhere in mdt_intent_opc().
4643                          * The case for client miss to set ibits has been
4644                          * processed by others. */
4645                         LASSERT(ergo(ldesc->l_resource.lr_type == LDLM_IBITS,
4646                                 ldesc->l_policy_data.l_inodebits.bits != 0));
4647                 } else {
4648                         rc = err_serious(-EFAULT);
4649                 }
4650         } else {
4651                 /* No intent was provided */
4652                 req_capsule_set_size(pill, &RMF_DLM_LVB, RCL_SERVER, 0);
4653                 rc = req_capsule_server_pack(pill);
4654                 if (rc)
4655                         rc = err_serious(rc);
4656         }
4657         mdt_thread_info_fini(info);
4658         RETURN(rc);
4659 }
4660
4661 static void mdt_deregister_seq_exp(struct mdt_device *mdt)
4662 {
4663         struct seq_server_site  *ss = mdt_seq_site(mdt);
4664
4665         if (ss->ss_node_id == 0)
4666                 return;
4667
4668         if (ss->ss_client_seq != NULL) {
4669                 lustre_deregister_lwp_item(&ss->ss_client_seq->lcs_exp);
4670                 ss->ss_client_seq->lcs_exp = NULL;
4671         }
4672
4673         if (ss->ss_server_fld != NULL) {
4674                 lustre_deregister_lwp_item(&ss->ss_server_fld->lsf_control_exp);
4675                 ss->ss_server_fld->lsf_control_exp = NULL;
4676         }
4677 }
4678
4679 static void mdt_seq_fini_cli(struct mdt_device *mdt)
4680 {
4681         struct seq_server_site *ss = mdt_seq_site(mdt);
4682
4683         if (ss == NULL)
4684                 return;
4685
4686         if (ss->ss_server_seq != NULL)
4687                 seq_server_set_cli(NULL, ss->ss_server_seq, NULL);
4688 }
4689
4690 static int mdt_seq_fini(const struct lu_env *env, struct mdt_device *mdt)
4691 {
4692         mdt_seq_fini_cli(mdt);
4693         mdt_deregister_seq_exp(mdt);
4694
4695         return seq_site_fini(env, mdt_seq_site(mdt));
4696 }
4697
4698 /**
4699  * It will retrieve its FLDB entries from MDT0, and it only happens
4700  * when upgrading existent FS to 2.6 or when local FLDB is corrupted,
4701  * and it needs to refresh FLDB from the MDT0.
4702  **/
4703 static int mdt_register_lwp_callback(void *data)
4704 {
4705         struct lu_env           env;
4706         struct mdt_device       *mdt = data;
4707         struct lu_server_fld    *fld = mdt_seq_site(mdt)->ss_server_fld;
4708         int                     rc;
4709         ENTRY;
4710
4711         LASSERT(mdt_seq_site(mdt)->ss_node_id != 0);
4712
4713         rc = lu_env_init(&env, LCT_MD_THREAD);
4714         if (rc < 0) {
4715                 CERROR("%s: cannot init env: rc = %d\n", mdt_obd_name(mdt), rc);
4716                 RETURN(rc);
4717         }
4718
4719         /* Allocate new sequence now to avoid creating local transaction
4720          * in the normal transaction process */
4721         rc = seq_server_check_and_alloc_super(&env,
4722                                               mdt_seq_site(mdt)->ss_server_seq);
4723         if (rc < 0)
4724                 GOTO(out, rc);
4725
4726         if (fld->lsf_new) {
4727                 rc = fld_update_from_controller(&env, fld);
4728                 if (rc != 0) {
4729                         CERROR("%s: cannot update controller: rc = %d\n",
4730                                mdt_obd_name(mdt), rc);
4731                         GOTO(out, rc);
4732                 }
4733         }
4734 out:
4735         lu_env_fini(&env);
4736         RETURN(rc);
4737 }
4738
4739 static int mdt_register_seq_exp(struct mdt_device *mdt)
4740 {
4741         struct seq_server_site  *ss = mdt_seq_site(mdt);
4742         char                    *lwp_name = NULL;
4743         int                     rc;
4744
4745         if (ss->ss_node_id == 0)
4746                 return 0;
4747
4748         OBD_ALLOC(lwp_name, MAX_OBD_NAME);
4749         if (lwp_name == NULL)
4750                 GOTO(out_free, rc = -ENOMEM);
4751
4752         rc = tgt_name2lwp_name(mdt_obd_name(mdt), lwp_name, MAX_OBD_NAME, 0);
4753         if (rc != 0)
4754                 GOTO(out_free, rc);
4755
4756         rc = lustre_register_lwp_item(lwp_name, &ss->ss_client_seq->lcs_exp,
4757                                       NULL, NULL);
4758         if (rc != 0)
4759                 GOTO(out_free, rc);
4760
4761         rc = lustre_register_lwp_item(lwp_name,
4762                                       &ss->ss_server_fld->lsf_control_exp,
4763                                       mdt_register_lwp_callback, mdt);
4764         if (rc != 0) {
4765                 lustre_deregister_lwp_item(&ss->ss_client_seq->lcs_exp);
4766                 ss->ss_client_seq->lcs_exp = NULL;
4767                 GOTO(out_free, rc);
4768         }
4769 out_free:
4770         if (lwp_name != NULL)
4771                 OBD_FREE(lwp_name, MAX_OBD_NAME);
4772
4773         return rc;
4774 }
4775
4776 /*
4777  * Init client sequence manager which is used by local MDS to talk to sequence
4778  * controller on remote node.
4779  */
4780 static int mdt_seq_init_cli(const struct lu_env *env, struct mdt_device *mdt)
4781 {
4782         struct seq_server_site *ss = mdt_seq_site(mdt);
4783         char *prefix;
4784         ENTRY;
4785
4786         /* check if this is adding the first MDC and controller is not yet
4787          * initialized. */
4788         OBD_ALLOC_PTR(ss->ss_client_seq);
4789         if (ss->ss_client_seq == NULL)
4790                 RETURN(-ENOMEM);
4791
4792         OBD_ALLOC(prefix, MAX_OBD_NAME + 5);
4793         if (prefix == NULL) {
4794                 OBD_FREE_PTR(ss->ss_client_seq);
4795                 ss->ss_client_seq = NULL;
4796                 RETURN(-ENOMEM);
4797         }
4798
4799         /* Note: seq_client_fini will be called in seq_site_fini */
4800         snprintf(prefix, MAX_OBD_NAME + 5, "ctl-%s", mdt_obd_name(mdt));
4801         seq_client_init(ss->ss_client_seq, NULL, LUSTRE_SEQ_METADATA,
4802                         prefix, ss->ss_node_id == 0 ?  ss->ss_control_seq :
4803                                                             NULL);
4804         OBD_FREE(prefix, MAX_OBD_NAME + 5);
4805
4806         RETURN(seq_server_set_cli(env, ss->ss_server_seq, ss->ss_client_seq));
4807 }
4808
4809 static int mdt_seq_init(const struct lu_env *env, struct mdt_device *mdt)
4810 {
4811         struct seq_server_site  *ss;
4812         int                     rc;
4813         ENTRY;
4814
4815         ss = mdt_seq_site(mdt);
4816         /* init sequence controller server(MDT0) */
4817         if (ss->ss_node_id == 0) {
4818                 OBD_ALLOC_PTR(ss->ss_control_seq);
4819                 if (ss->ss_control_seq == NULL)
4820                         RETURN(-ENOMEM);
4821
4822                 rc = seq_server_init(env, ss->ss_control_seq, mdt->mdt_bottom,
4823                                      mdt_obd_name(mdt), LUSTRE_SEQ_CONTROLLER,
4824                                      ss);
4825                 if (rc)
4826                         GOTO(out_seq_fini, rc);
4827         }
4828
4829         /* Init normal sequence server */
4830         OBD_ALLOC_PTR(ss->ss_server_seq);
4831         if (ss->ss_server_seq == NULL)
4832                 GOTO(out_seq_fini, rc = -ENOMEM);
4833
4834         rc = seq_server_init(env, ss->ss_server_seq, mdt->mdt_bottom,
4835                              mdt_obd_name(mdt), LUSTRE_SEQ_SERVER, ss);
4836         if (rc)
4837                 GOTO(out_seq_fini, rc);
4838
4839         /* init seq client for seq server to talk to seq controller(MDT0) */
4840         rc = mdt_seq_init_cli(env, mdt);
4841         if (rc != 0)
4842                 GOTO(out_seq_fini, rc);
4843
4844         if (ss->ss_node_id != 0)
4845                 /* register controller export through lwp */
4846                 rc = mdt_register_seq_exp(mdt);
4847
4848         EXIT;
4849 out_seq_fini:
4850         if (rc)
4851                 mdt_seq_fini(env, mdt);
4852
4853         return rc;
4854 }
4855
4856 /*
4857  * FLD wrappers
4858  */
4859 static int mdt_fld_fini(const struct lu_env *env,
4860                         struct mdt_device *m)
4861 {
4862         struct seq_server_site *ss = mdt_seq_site(m);
4863         ENTRY;
4864
4865         if (ss && ss->ss_server_fld) {
4866                 fld_server_fini(env, ss->ss_server_fld);
4867                 OBD_FREE_PTR(ss->ss_server_fld);
4868                 ss->ss_server_fld = NULL;
4869         }
4870
4871         RETURN(0);
4872 }
4873
4874 static int mdt_fld_init(const struct lu_env *env,
4875                         const char *uuid,
4876                         struct mdt_device *m)
4877 {
4878         struct seq_server_site *ss;
4879         int rc;
4880         ENTRY;
4881
4882         ss = mdt_seq_site(m);
4883
4884         OBD_ALLOC_PTR(ss->ss_server_fld);
4885         if (ss->ss_server_fld == NULL)
4886                 RETURN(rc = -ENOMEM);
4887
4888         rc = fld_server_init(env, ss->ss_server_fld, m->mdt_bottom, uuid,
4889                              LU_SEQ_RANGE_MDT);
4890         if (rc) {
4891                 OBD_FREE_PTR(ss->ss_server_fld);
4892                 ss->ss_server_fld = NULL;
4893                 RETURN(rc);
4894         }
4895
4896         RETURN(0);
4897 }
4898
4899 static void mdt_stack_pre_fini(const struct lu_env *env,
4900                            struct mdt_device *m, struct lu_device *top)
4901 {
4902         struct lustre_cfg_bufs  *bufs;
4903         struct lustre_cfg       *lcfg;
4904         struct mdt_thread_info  *info;
4905         ENTRY;
4906
4907         LASSERT(top);
4908
4909         info = lu_context_key_get(&env->le_ctx, &mdt_thread_key);
4910         LASSERT(info != NULL);
4911
4912         bufs = &info->mti_u.bufs;
4913
4914         LASSERT(m->mdt_child_exp);
4915         LASSERT(m->mdt_child_exp->exp_obd);
4916
4917         /* process cleanup, pass mdt obd name to get obd umount flags */
4918         /* XXX: this is needed because all layers are referenced by
4919          * objects (some of them are pinned by osd, for example *
4920          * the proper solution should be a model where object used
4921          * by osd only doesn't have mdt/mdd slices -bzzz */
4922         lustre_cfg_bufs_reset(bufs, mdt_obd_name(m));
4923         lustre_cfg_bufs_set_string(bufs, 1, NULL);
4924         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
4925         if (!lcfg)
4926                 RETURN_EXIT;
4927         lustre_cfg_init(lcfg, LCFG_PRE_CLEANUP, bufs);
4928
4929         top->ld_ops->ldo_process_config(env, top, lcfg);
4930         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
4931         EXIT;
4932 }
4933
4934 static void mdt_stack_fini(const struct lu_env *env,
4935                            struct mdt_device *m, struct lu_device *top)
4936 {
4937         struct obd_device       *obd = mdt2obd_dev(m);
4938         struct lustre_cfg_bufs  *bufs;
4939         struct lustre_cfg       *lcfg;
4940         struct mdt_thread_info  *info;
4941         char                     flags[3] = "";
4942         ENTRY;
4943
4944         info = lu_context_key_get(&env->le_ctx, &mdt_thread_key);
4945         LASSERT(info != NULL);
4946
4947         lu_dev_del_linkage(top->ld_site, top);
4948
4949         lu_site_purge(env, top->ld_site, -1);
4950
4951         bufs = &info->mti_u.bufs;
4952         /* process cleanup, pass mdt obd name to get obd umount flags */
4953         /* another purpose is to let all layers to release their objects */
4954         lustre_cfg_bufs_reset(bufs, mdt_obd_name(m));
4955         if (obd->obd_force)
4956                 strcat(flags, "F");
4957         if (obd->obd_fail)
4958                 strcat(flags, "A");
4959         lustre_cfg_bufs_set_string(bufs, 1, flags);
4960         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
4961         if (!lcfg)
4962                 RETURN_EXIT;
4963         lustre_cfg_init(lcfg, LCFG_CLEANUP, bufs);
4964
4965         LASSERT(top);
4966         top->ld_ops->ldo_process_config(env, top, lcfg);
4967         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
4968
4969         lu_site_purge(env, top->ld_site, -1);
4970
4971         m->mdt_child = NULL;
4972         m->mdt_bottom = NULL;
4973
4974         obd_disconnect(m->mdt_child_exp);
4975         m->mdt_child_exp = NULL;
4976
4977         obd_disconnect(m->mdt_bottom_exp);
4978         m->mdt_child_exp = NULL;
4979 }
4980
4981 static int mdt_connect_to_next(const struct lu_env *env, struct mdt_device *m,
4982                                const char *next, struct obd_export **exp)
4983 {
4984         struct obd_connect_data *data = NULL;
4985         struct obd_device       *obd;
4986         int                      rc;
4987         ENTRY;
4988
4989         OBD_ALLOC_PTR(data);
4990         if (data == NULL)
4991                 GOTO(out, rc = -ENOMEM);
4992
4993         obd = class_name2obd(next);
4994         if (obd == NULL) {
4995                 CERROR("%s: can't locate next device: %s\n",
4996                        mdt_obd_name(m), next);
4997                 GOTO(out, rc = -ENOTCONN);
4998         }
4999
5000         data->ocd_connect_flags = OBD_CONNECT_VERSION;
5001         data->ocd_version = LUSTRE_VERSION_CODE;
5002
5003         rc = obd_connect(NULL, exp, obd, &obd->obd_uuid, data, NULL);
5004         if (rc) {
5005                 CERROR("%s: cannot connect to next dev %s (%d)\n",
5006                        mdt_obd_name(m), next, rc);
5007                 GOTO(out, rc);
5008         }
5009
5010 out:
5011         if (data)
5012                 OBD_FREE_PTR(data);
5013         RETURN(rc);
5014 }
5015
5016 static int mdt_stack_init(const struct lu_env *env, struct mdt_device *mdt,
5017                           struct lustre_cfg *cfg)
5018 {
5019         char                   *dev = lustre_cfg_string(cfg, 0);
5020         int                     rc, name_size, uuid_size;
5021         char                   *name, *uuid, *p;
5022         struct lustre_cfg_bufs *bufs;
5023         struct lustre_cfg      *lcfg;
5024         struct obd_device      *obd;
5025         struct lustre_profile  *lprof;
5026         struct lu_site         *site;
5027         ENTRY;
5028
5029         /* in 1.8 we had the only device in the stack - MDS.
5030          * 2.0 introduces MDT, MDD, OSD; MDT starts others internally.
5031          * in 2.3 OSD is instantiated by obd_mount.c, so we need
5032          * to generate names and setup MDT, MDD. MDT will be using
5033          * generated name to connect to MDD. for MDD the next device
5034          * will be LOD with name taken from so called "profile" which
5035          * is generated by mount_option line
5036          *
5037          * 1.8 MGS generates config. commands like this:
5038          *   #06 (104)mount_option 0:  1:lustre-MDT0000  2:lustre-mdtlov
5039          *   #08 (120)setup   0:lustre-MDT0000  1:dev 2:type 3:lustre-MDT0000
5040          * 2.0 MGS generates config. commands like this:
5041          *   #07 (112)mount_option 0:  1:lustre-MDT0000  2:lustre-MDT0000-mdtlov
5042          *   #08 (160)setup   0:lustre-MDT0000  1:lustre-MDT0000_UUID  2:0
5043          *                    3:lustre-MDT0000-mdtlov  4:f
5044          *
5045          * we generate MDD name from MDT one, just replacing T with D
5046          *
5047          * after all the preparations, the logical equivalent will be
5048          *   #01 (160)setup   0:lustre-MDD0000  1:lustre-MDD0000_UUID  2:0
5049          *                    3:lustre-MDT0000-mdtlov  4:f
5050          *   #02 (160)setup   0:lustre-MDT0000  1:lustre-MDT0000_UUID  2:0
5051          *                    3:lustre-MDD0000  4:f
5052          *
5053          *  notice we build the stack from down to top: MDD first, then MDT */
5054
5055         name_size = MAX_OBD_NAME;
5056         uuid_size = MAX_OBD_NAME;
5057
5058         OBD_ALLOC(name, name_size);
5059         OBD_ALLOC(uuid, uuid_size);
5060         if (name == NULL || uuid == NULL)
5061                 GOTO(cleanup_mem, rc = -ENOMEM);
5062
5063         OBD_ALLOC_PTR(bufs);
5064         if (!bufs)
5065                 GOTO(cleanup_mem, rc = -ENOMEM);
5066
5067         strcpy(name, dev);
5068         p = strstr(name, "-MDT");
5069         if (p == NULL)
5070                 GOTO(free_bufs, rc = -ENOMEM);
5071         p[3] = 'D';
5072
5073         snprintf(uuid, MAX_OBD_NAME, "%s_UUID", name);
5074
5075         lprof = class_get_profile(lustre_cfg_string(cfg, 0));
5076         if (lprof == NULL || lprof->lp_dt == NULL) {
5077                 CERROR("can't find the profile: %s\n",
5078                        lustre_cfg_string(cfg, 0));
5079                 GOTO(free_bufs, rc = -EINVAL);
5080         }
5081
5082         lustre_cfg_bufs_reset(bufs, name);
5083         lustre_cfg_bufs_set_string(bufs, 1, LUSTRE_MDD_NAME);
5084         lustre_cfg_bufs_set_string(bufs, 2, uuid);
5085         lustre_cfg_bufs_set_string(bufs, 3, lprof->lp_dt);
5086
5087         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
5088         if (!lcfg)
5089                 GOTO(put_profile, rc = -ENOMEM);
5090         lustre_cfg_init(lcfg, LCFG_ATTACH, bufs);
5091
5092         rc = class_attach(lcfg);
5093         if (rc)
5094                 GOTO(lcfg_cleanup, rc);
5095
5096         obd = class_name2obd(name);
5097         if (!obd) {
5098                 CERROR("Can not find obd %s (%s in config)\n",
5099                        MDD_OBD_NAME, lustre_cfg_string(cfg, 0));
5100                 GOTO(lcfg_cleanup, rc = -EINVAL);
5101         }
5102
5103         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
5104
5105         lustre_cfg_bufs_reset(bufs, name);
5106         lustre_cfg_bufs_set_string(bufs, 1, uuid);
5107         lustre_cfg_bufs_set_string(bufs, 2, dev);
5108         lustre_cfg_bufs_set_string(bufs, 3, lprof->lp_dt);
5109
5110         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
5111         if (!lcfg)
5112                 GOTO(class_detach, rc = -ENOMEM);
5113         lustre_cfg_init(lcfg, LCFG_SETUP, bufs);
5114
5115         rc = class_setup(obd, lcfg);
5116         if (rc)
5117                 GOTO(class_detach, rc);
5118
5119         /* connect to MDD we just setup */
5120         rc = mdt_connect_to_next(env, mdt, name, &mdt->mdt_child_exp);
5121         if (rc)
5122                 GOTO(class_detach, rc);
5123
5124         site = mdt->mdt_child_exp->exp_obd->obd_lu_dev->ld_site;
5125         LASSERT(site);
5126         LASSERT(mdt_lu_site(mdt) == NULL);
5127         mdt->mdt_lu_dev.ld_site = site;
5128         site->ls_top_dev = &mdt->mdt_lu_dev;
5129         mdt->mdt_child = lu2md_dev(mdt->mdt_child_exp->exp_obd->obd_lu_dev);
5130
5131         /* now connect to bottom OSD */
5132         snprintf(name, MAX_OBD_NAME, "%s-osd", dev);
5133         rc = mdt_connect_to_next(env, mdt, name, &mdt->mdt_bottom_exp);
5134         if (rc)
5135                 GOTO(class_detach, rc);
5136         mdt->mdt_bottom =
5137                 lu2dt_dev(mdt->mdt_bottom_exp->exp_obd->obd_lu_dev);
5138
5139         rc = lu_env_refill((struct lu_env *)env);
5140         if (rc != 0)
5141                 CERROR("Failure to refill session: '%d'\n", rc);
5142
5143         lu_dev_add_linkage(site, &mdt->mdt_lu_dev);
5144
5145         EXIT;
5146 class_detach:
5147         if (rc)
5148                 class_detach(obd, lcfg);
5149 lcfg_cleanup:
5150         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
5151 put_profile:
5152         class_put_profile(lprof);
5153 free_bufs:
5154         OBD_FREE_PTR(bufs);
5155 cleanup_mem:
5156         if (name)
5157                 OBD_FREE(name, name_size);
5158         if (uuid)
5159                 OBD_FREE(uuid, uuid_size);
5160         RETURN(rc);
5161 }
5162
5163 /* setup quota master target on MDT0 */
5164 static int mdt_quota_init(const struct lu_env *env, struct mdt_device *mdt,
5165                           struct lustre_cfg *cfg)
5166 {
5167         struct obd_device       *obd;
5168         char                    *dev = lustre_cfg_string(cfg, 0);
5169         char                    *qmtname, *uuid, *p;
5170         struct lustre_cfg_bufs  *bufs;
5171         struct lustre_cfg       *lcfg;
5172         struct lustre_profile   *lprof;
5173         struct obd_connect_data *data;
5174         int                      rc;
5175         ENTRY;
5176
5177         LASSERT(mdt->mdt_qmt_exp == NULL);
5178         LASSERT(mdt->mdt_qmt_dev == NULL);
5179
5180         /* quota master is on MDT0 only for now */
5181         if (mdt->mdt_seq_site.ss_node_id != 0)
5182                 RETURN(0);
5183
5184         /* MGS generates config commands which look as follows:
5185          *   #01 (160)setup   0:lustre-MDT0000  1:lustre-MDT0000_UUID  2:0
5186          *                    3:lustre-MDT0000-mdtlov  4:f
5187          *
5188          * We generate the QMT name from the MDT one, just replacing MD with QM
5189          * after all the preparations, the logical equivalent will be:
5190          *   #01 (160)setup   0:lustre-QMT0000  1:lustre-QMT0000_UUID  2:0
5191          *                    3:lustre-MDT0000-osd  4:f */
5192         OBD_ALLOC(qmtname, MAX_OBD_NAME);
5193         OBD_ALLOC(uuid, UUID_MAX);
5194         OBD_ALLOC_PTR(bufs);
5195         OBD_ALLOC_PTR(data);
5196         if (qmtname == NULL || uuid == NULL || bufs == NULL || data == NULL)
5197                 GOTO(cleanup_mem, rc = -ENOMEM);
5198
5199         strcpy(qmtname, dev);
5200         p = strstr(qmtname, "-MDT");
5201         if (p == NULL)
5202                 GOTO(cleanup_mem, rc = -ENOMEM);
5203         /* replace MD with QM */
5204         p[1] = 'Q';
5205         p[2] = 'M';
5206
5207         snprintf(uuid, UUID_MAX, "%s_UUID", qmtname);
5208
5209         lprof = class_get_profile(lustre_cfg_string(cfg, 0));
5210         if (lprof == NULL || lprof->lp_dt == NULL) {
5211                 CERROR("can't find profile for %s\n",
5212                        lustre_cfg_string(cfg, 0));
5213                 GOTO(cleanup_mem, rc = -EINVAL);
5214         }
5215
5216         lustre_cfg_bufs_reset(bufs, qmtname);
5217         lustre_cfg_bufs_set_string(bufs, 1, LUSTRE_QMT_NAME);
5218         lustre_cfg_bufs_set_string(bufs, 2, uuid);
5219         lustre_cfg_bufs_set_string(bufs, 3, lprof->lp_dt);
5220
5221         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
5222         if (!lcfg)
5223                 GOTO(put_profile, rc = -ENOMEM);
5224         lustre_cfg_init(lcfg, LCFG_ATTACH, bufs);
5225
5226         rc = class_attach(lcfg);
5227         if (rc)
5228                 GOTO(lcfg_cleanup, rc);
5229
5230         obd = class_name2obd(qmtname);
5231         if (!obd) {
5232                 CERROR("Can not find obd %s (%s in config)\n", qmtname,
5233                        lustre_cfg_string(cfg, 0));
5234                 GOTO(lcfg_cleanup, rc = -EINVAL);
5235         }
5236
5237         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
5238
5239         lustre_cfg_bufs_reset(bufs, qmtname);
5240         lustre_cfg_bufs_set_string(bufs, 1, uuid);
5241         lustre_cfg_bufs_set_string(bufs, 2, dev);
5242
5243         /* for quota, the next device should be the OSD device */
5244         lustre_cfg_bufs_set_string(bufs, 3,
5245                                    mdt->mdt_bottom->dd_lu_dev.ld_obd->obd_name);
5246
5247         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
5248         if (!lcfg)
5249                 GOTO(class_detach, rc = -ENOMEM);
5250         lustre_cfg_init(lcfg, LCFG_SETUP, bufs);
5251
5252         rc = class_setup(obd, lcfg);
5253         if (rc)
5254                 GOTO(class_detach, rc);
5255
5256         mdt->mdt_qmt_dev = obd->obd_lu_dev;
5257
5258         /* configure local quota objects */
5259         if (OBD_FAIL_CHECK(OBD_FAIL_QUOTA_INIT))
5260                 rc = -EBADF;
5261         else
5262                 rc = mdt->mdt_qmt_dev->ld_ops->ldo_prepare(env,
5263                                                            &mdt->mdt_lu_dev,
5264                                                            mdt->mdt_qmt_dev);
5265         if (rc)
5266                 GOTO(class_cleanup, rc);
5267
5268         /* connect to quota master target */
5269         data->ocd_connect_flags = OBD_CONNECT_VERSION;
5270         data->ocd_version = LUSTRE_VERSION_CODE;
5271         rc = obd_connect(NULL, &mdt->mdt_qmt_exp, obd, &obd->obd_uuid,
5272                          data, NULL);
5273         if (rc) {
5274                 CERROR("cannot connect to quota master device %s (%d)\n",
5275                        qmtname, rc);
5276                 GOTO(class_cleanup, rc);
5277         }
5278
5279         EXIT;
5280 class_cleanup:
5281         if (rc) {
5282                 class_manual_cleanup(obd);
5283                 mdt->mdt_qmt_dev = NULL;
5284                 GOTO(lcfg_cleanup, rc);
5285         }
5286 class_detach:
5287         if (rc)
5288                 class_detach(obd, lcfg);
5289 lcfg_cleanup:
5290         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
5291 put_profile:
5292         class_put_profile(lprof);
5293 cleanup_mem:
5294         if (bufs)
5295                 OBD_FREE_PTR(bufs);
5296         if (qmtname)
5297                 OBD_FREE(qmtname, MAX_OBD_NAME);
5298         if (uuid)
5299                 OBD_FREE(uuid, UUID_MAX);
5300         if (data)
5301                 OBD_FREE_PTR(data);
5302         return rc;
5303 }
5304
5305 /* Shutdown quota master target associated with mdt */
5306 static void mdt_quota_fini(const struct lu_env *env, struct mdt_device *mdt)
5307 {
5308         ENTRY;
5309
5310         if (mdt->mdt_qmt_exp == NULL)
5311                 RETURN_EXIT;
5312         LASSERT(mdt->mdt_qmt_dev != NULL);
5313
5314         /* the qmt automatically shuts down when the mdt disconnects */
5315         obd_disconnect(mdt->mdt_qmt_exp);
5316         mdt->mdt_qmt_exp = NULL;
5317         mdt->mdt_qmt_dev = NULL;
5318         EXIT;
5319 }
5320
5321 /* mdt_getxattr() is used from mdt_intent_getxattr(), use this wrapper
5322  * for now. This will be removed along with converting rest of MDT code
5323  * to use tgt_session_info */
5324 static int mdt_tgt_getxattr(struct tgt_session_info *tsi)
5325 {
5326         struct mdt_thread_info  *info = tsi2mdt_info(tsi);
5327         int                      rc;
5328
5329         if (unlikely(info->mti_object == NULL))
5330                 return -EPROTO;
5331
5332         rc = mdt_getxattr(info);
5333
5334         mdt_thread_info_fini(info);
5335         return rc;
5336 }
5337
5338 static int mdt_llog_open(struct tgt_session_info *tsi)
5339 {
5340         ENTRY;
5341
5342         if (!mdt_is_rootadmin(tsi2mdt_info(tsi)))
5343                 RETURN(err_serious(-EACCES));
5344
5345         RETURN(tgt_llog_open(tsi));
5346 }
5347
5348 #define OBD_FAIL_OST_READ_NET   OBD_FAIL_OST_BRW_NET
5349 #define OBD_FAIL_OST_WRITE_NET  OBD_FAIL_OST_BRW_NET
5350 #define OST_BRW_READ    OST_READ
5351 #define OST_BRW_WRITE   OST_WRITE
5352
5353 static struct tgt_handler mdt_tgt_handlers[] = {
5354 TGT_RPC_HANDLER(MDS_FIRST_OPC,
5355                 0,                      MDS_CONNECT,    mdt_tgt_connect,
5356                 &RQF_CONNECT, LUSTRE_OBD_VERSION),
5357 TGT_RPC_HANDLER(MDS_FIRST_OPC,
5358                 0,                      MDS_DISCONNECT, tgt_disconnect,
5359                 &RQF_MDS_DISCONNECT, LUSTRE_OBD_VERSION),
5360 TGT_RPC_HANDLER(MDS_FIRST_OPC,
5361                 HAS_REPLY,              MDS_SET_INFO,   mdt_set_info,
5362                 &RQF_MDT_SET_INFO, LUSTRE_MDS_VERSION),
5363 TGT_MDT_HDL(0,                          MDS_GET_INFO,   mdt_get_info),
5364 TGT_MDT_HDL(HAS_REPLY,          MDS_GET_ROOT,   mdt_get_root),
5365 TGT_MDT_HDL(HAS_BODY,           MDS_GETATTR,    mdt_getattr),
5366 TGT_MDT_HDL(HAS_BODY | HAS_REPLY,       MDS_GETATTR_NAME,
5367                                                         mdt_getattr_name),
5368 TGT_MDT_HDL(HAS_BODY,           MDS_GETXATTR,   mdt_tgt_getxattr),
5369 TGT_MDT_HDL(HAS_REPLY,          MDS_STATFS,     mdt_statfs),
5370 TGT_MDT_HDL(IS_MUTABLE,         MDS_REINT,      mdt_reint),
5371 TGT_MDT_HDL(HAS_BODY,           MDS_CLOSE,      mdt_close),
5372 TGT_MDT_HDL(HAS_BODY | HAS_REPLY,       MDS_READPAGE,   mdt_readpage),
5373 TGT_MDT_HDL(HAS_BODY | HAS_REPLY,       MDS_SYNC,       mdt_sync),
5374 TGT_MDT_HDL(0,                          MDS_QUOTACTL,   mdt_quotactl),
5375 TGT_MDT_HDL(HAS_BODY | HAS_REPLY | IS_MUTABLE, MDS_HSM_PROGRESS,
5376                                                         mdt_hsm_progress),
5377 TGT_MDT_HDL(HAS_BODY | HAS_REPLY | IS_MUTABLE, MDS_HSM_CT_REGISTER,
5378                                                         mdt_hsm_ct_register),
5379 TGT_MDT_HDL(HAS_BODY | HAS_REPLY | IS_MUTABLE, MDS_HSM_CT_UNREGISTER,
5380                                                         mdt_hsm_ct_unregister),
5381 TGT_MDT_HDL(HAS_BODY | HAS_REPLY, MDS_HSM_STATE_GET,
5382                                                         mdt_hsm_state_get),
5383 TGT_MDT_HDL(HAS_BODY | HAS_REPLY | IS_MUTABLE, MDS_HSM_STATE_SET,
5384                                                         mdt_hsm_state_set),
5385 TGT_MDT_HDL(HAS_BODY | HAS_REPLY, MDS_HSM_ACTION,       mdt_hsm_action),
5386 TGT_MDT_HDL(HAS_BODY | HAS_REPLY, MDS_HSM_REQUEST,
5387                                                         mdt_hsm_request),
5388 TGT_MDT_HDL(HAS_KEY | HAS_BODY | HAS_REPLY | IS_MUTABLE,
5389             MDS_SWAP_LAYOUTS,
5390             mdt_swap_layouts),
5391 TGT_MDT_HDL(IS_MUTABLE,         MDS_RMFID,      mdt_rmfid),
5392 };
5393
5394 static struct tgt_handler mdt_io_ops[] = {
5395 TGT_OST_HDL_HP(HAS_BODY | HAS_REPLY, OST_BRW_READ, tgt_brw_read,
5396                                                         mdt_hp_brw),
5397 TGT_OST_HDL_HP(HAS_BODY | IS_MUTABLE,    OST_BRW_WRITE, tgt_brw_write,
5398                                                         mdt_hp_brw),
5399 TGT_OST_HDL_HP(HAS_BODY | HAS_REPLY | IS_MUTABLE,
5400                                          OST_PUNCH,     mdt_punch_hdl,
5401                                                         mdt_hp_punch),
5402 TGT_OST_HDL(HAS_BODY | HAS_REPLY, OST_SYNC,     mdt_data_sync),
5403 };
5404
5405 static struct tgt_handler mdt_sec_ctx_ops[] = {
5406 TGT_SEC_HDL_VAR(0,                      SEC_CTX_INIT,     mdt_sec_ctx_handle),
5407 TGT_SEC_HDL_VAR(0,                      SEC_CTX_INIT_CONT,mdt_sec_ctx_handle),
5408 TGT_SEC_HDL_VAR(0,                      SEC_CTX_FINI,     mdt_sec_ctx_handle)
5409 };
5410
5411 static struct tgt_handler mdt_quota_ops[] = {
5412 TGT_QUOTA_HDL(HAS_REPLY,                QUOTA_DQACQ,      mdt_quota_dqacq),
5413 };
5414
5415 static struct tgt_handler mdt_llog_handlers[] = {
5416         TGT_LLOG_HDL(0, LLOG_ORIGIN_HANDLE_CREATE,      mdt_llog_open),
5417         TGT_LLOG_HDL(0, LLOG_ORIGIN_HANDLE_NEXT_BLOCK,  tgt_llog_next_block),
5418         TGT_LLOG_HDL(0, LLOG_ORIGIN_HANDLE_READ_HEADER, tgt_llog_read_header),
5419         TGT_LLOG_HDL(0, LLOG_ORIGIN_HANDLE_PREV_BLOCK,  tgt_llog_prev_block),
5420 };
5421
5422 static struct tgt_opc_slice mdt_common_slice[] = {
5423         {
5424                 .tos_opc_start  = MDS_FIRST_OPC,
5425                 .tos_opc_end    = MDS_LAST_OPC,
5426                 .tos_hs         = mdt_tgt_handlers
5427         },
5428         {
5429                 .tos_opc_start  = OBD_FIRST_OPC,
5430                 .tos_opc_end    = OBD_LAST_OPC,
5431                 .tos_hs         = tgt_obd_handlers
5432         },
5433         {
5434                 .tos_opc_start  = LDLM_FIRST_OPC,
5435                 .tos_opc_end    = LDLM_LAST_OPC,
5436                 .tos_hs         = tgt_dlm_handlers
5437         },
5438         {
5439                 .tos_opc_start  = SEC_FIRST_OPC,
5440                 .tos_opc_end    = SEC_LAST_OPC,
5441                 .tos_hs         = mdt_sec_ctx_ops
5442         },
5443         {
5444                 .tos_opc_start  = OUT_UPDATE_FIRST_OPC,
5445                 .tos_opc_end    = OUT_UPDATE_LAST_OPC,
5446                 .tos_hs         = tgt_out_handlers
5447         },
5448         {
5449                 .tos_opc_start  = FLD_FIRST_OPC,
5450                 .tos_opc_end    = FLD_LAST_OPC,
5451                 .tos_hs         = fld_handlers
5452         },
5453         {
5454                 .tos_opc_start  = SEQ_FIRST_OPC,
5455                 .tos_opc_end    = SEQ_LAST_OPC,
5456                 .tos_hs         = seq_handlers
5457         },
5458         {
5459                 .tos_opc_start  = QUOTA_DQACQ,
5460                 .tos_opc_end    = QUOTA_LAST_OPC,
5461                 .tos_hs         = mdt_quota_ops
5462         },
5463         {
5464                 .tos_opc_start  = LLOG_FIRST_OPC,
5465                 .tos_opc_end    = LLOG_LAST_OPC,
5466                 .tos_hs         = mdt_llog_handlers
5467         },
5468         {
5469                 .tos_opc_start  = LFSCK_FIRST_OPC,
5470                 .tos_opc_end    = LFSCK_LAST_OPC,
5471                 .tos_hs         = tgt_lfsck_handlers
5472         },
5473         {
5474                 .tos_opc_start  = OST_FIRST_OPC,
5475                 .tos_opc_end    = OST_LAST_OPC,
5476                 .tos_hs         = mdt_io_ops
5477         },
5478         {
5479                 .tos_hs         = NULL
5480         }
5481 };
5482
5483 static void mdt_fini(const struct lu_env *env, struct mdt_device *m)
5484 {
5485         struct md_device *next = m->mdt_child;
5486         struct lu_device *d = &m->mdt_lu_dev;
5487         struct obd_device *obd = mdt2obd_dev(m);
5488         struct lfsck_stop stop;
5489
5490         ENTRY;
5491         stop.ls_status = LS_PAUSED;
5492         stop.ls_flags = 0;
5493         next->md_ops->mdo_iocontrol(env, next, OBD_IOC_STOP_LFSCK, 0, &stop);
5494
5495         mdt_stack_pre_fini(env, m, md2lu_dev(m->mdt_child));
5496
5497         mdt_restriper_stop(m);
5498         ping_evictor_stop();
5499
5500         /* Remove the HSM /proc entry so the coordinator cannot be
5501          * restarted by a user while it's shutting down.
5502          */
5503         mdt_hsm_cdt_stop(m);
5504
5505         mdt_llog_ctxt_unclone(env, m, LLOG_AGENT_ORIG_CTXT);
5506         mdt_llog_ctxt_unclone(env, m, LLOG_CHANGELOG_ORIG_CTXT);
5507
5508         if (m->mdt_namespace != NULL)
5509                 ldlm_namespace_free_prior(m->mdt_namespace, NULL,
5510                                           d->ld_obd->obd_force);
5511
5512         obd_exports_barrier(obd);
5513         obd_zombie_barrier();
5514
5515         mdt_quota_fini(env, m);
5516
5517         cfs_free_nidlist(&m->mdt_squash.rsi_nosquash_nids);
5518
5519         /* Calling the cleanup functions in the same order as in the mdt_init0
5520          * error path
5521          */
5522         mdt_tunables_fini(m);
5523
5524         target_recovery_fini(obd);
5525         upcall_cache_cleanup(m->mdt_identity_cache);
5526         m->mdt_identity_cache = NULL;
5527
5528         mdt_fs_cleanup(env, m);
5529
5530         tgt_fini(env, &m->mdt_lut);
5531
5532         mdt_hsm_cdt_fini(m);
5533
5534         if (m->mdt_los != NULL) {
5535                 local_oid_storage_fini(env, m->mdt_los);
5536                 m->mdt_los = NULL;
5537         }
5538
5539         if (m->mdt_namespace != NULL) {
5540                 ldlm_namespace_free_post(m->mdt_namespace);
5541                 d->ld_obd->obd_namespace = m->mdt_namespace = NULL;
5542         }
5543
5544         if (m->mdt_md_root != NULL) {
5545                 mdt_object_put(env, m->mdt_md_root);
5546                 m->mdt_md_root = NULL;
5547         }
5548
5549         mdt_seq_fini(env, m);
5550
5551         mdt_fld_fini(env, m);
5552
5553         /*
5554          * Finish the stack
5555          */
5556         mdt_stack_fini(env, m, md2lu_dev(m->mdt_child));
5557
5558         LASSERT(atomic_read(&d->ld_ref) == 0);
5559
5560         server_put_mount(mdt_obd_name(m), true);
5561
5562         EXIT;
5563 }
5564
5565 static int mdt_postrecov(const struct lu_env *, struct mdt_device *);
5566
5567 static int mdt_init0(const struct lu_env *env, struct mdt_device *m,
5568                      struct lu_device_type *ldt, struct lustre_cfg *cfg)
5569 {
5570         const struct dt_device_param *dt_conf;
5571         struct mdt_thread_info *info;
5572         struct obd_device *obd;
5573         const char *dev = lustre_cfg_string(cfg, 0);
5574         const char *num = lustre_cfg_string(cfg, 2);
5575         struct tg_grants_data *tgd = &m->mdt_lut.lut_tgd;
5576         struct lustre_mount_info *lmi = NULL;
5577         struct lustre_sb_info *lsi;
5578         struct lu_site *s;
5579         struct seq_server_site *ss_site;
5580         const char *identity_upcall = "NONE";
5581         struct md_device *next;
5582         struct lu_fid fid;
5583         int rc;
5584         long node_id;
5585         mntopt_t mntopts;
5586         ENTRY;
5587
5588         lu_device_init(&m->mdt_lu_dev, ldt);
5589         /*
5590          * Environment (env) might be missing mdt_thread_key values at that
5591          * point, if device is allocated when mdt_thread_key is in QUIESCENT
5592          * mode.
5593          *
5594          * Usually device allocation path doesn't use module key values, but
5595          * mdt has to do a lot of work here, so allocate key value.
5596          */
5597         rc = lu_env_refill((struct lu_env *)env);
5598         if (rc != 0)
5599                 RETURN(rc);
5600
5601         info = lu_context_key_get(&env->le_ctx, &mdt_thread_key);
5602         LASSERT(info != NULL);
5603
5604         obd = class_name2obd(dev);
5605         LASSERT(obd != NULL);
5606
5607         m->mdt_max_mdsize = MAX_MD_SIZE_OLD;
5608         m->mdt_opts.mo_evict_tgt_nids = 1;
5609         m->mdt_opts.mo_cos = MDT_COS_DEFAULT;
5610
5611         lmi = server_get_mount(dev);
5612         if (lmi == NULL) {
5613                 CERROR("Cannot get mount info for %s!\n", dev);
5614                 RETURN(-EFAULT);
5615         } else {
5616                 lsi = s2lsi(lmi->lmi_sb);
5617                 LASSERT(lsi->lsi_lmd);
5618                 /* CMD is supported only in IAM mode */
5619                 LASSERT(num);
5620                 rc = kstrtol(num, 10, &node_id);
5621                 if (rc)
5622                         RETURN(rc);
5623
5624                 obd->u.obt.obt_magic = OBT_MAGIC;
5625                 if (lsi->lsi_lmd->lmd_flags & LMD_FLG_SKIP_LFSCK)
5626                         m->mdt_skip_lfsck = 1;
5627         }
5628
5629         /* DoM files get IO lock at open optionally by default */
5630         m->mdt_opts.mo_dom_lock = ALWAYS_DOM_LOCK_ON_OPEN;
5631         /* DoM files are read at open and data is packed in the reply */
5632         m->mdt_opts.mo_dom_read_open = 1;
5633
5634         m->mdt_squash.rsi_uid = 0;
5635         m->mdt_squash.rsi_gid = 0;
5636         INIT_LIST_HEAD(&m->mdt_squash.rsi_nosquash_nids);
5637         spin_lock_init(&m->mdt_squash.rsi_lock);
5638         spin_lock_init(&m->mdt_lock);
5639         m->mdt_enable_remote_dir = 1;
5640         m->mdt_enable_striped_dir = 1;
5641         m->mdt_enable_dir_migration = 1;
5642         m->mdt_enable_dir_restripe = 0;
5643         m->mdt_enable_dir_auto_split = 0;
5644         m->mdt_enable_remote_dir_gid = 0;
5645         m->mdt_enable_chprojid_gid = 0;
5646         m->mdt_enable_remote_rename = 1;
5647         m->mdt_dir_restripe_nsonly = 1;
5648
5649         atomic_set(&m->mdt_mds_mds_conns, 0);
5650         atomic_set(&m->mdt_async_commit_count, 0);
5651
5652         m->mdt_lu_dev.ld_ops = &mdt_lu_ops;
5653         m->mdt_lu_dev.ld_obd = obd;
5654         /* Set this lu_device to obd for error handling purposes. */
5655         obd->obd_lu_dev = &m->mdt_lu_dev;
5656
5657         /* init the stack */
5658         rc = mdt_stack_init((struct lu_env *)env, m, cfg);
5659         if (rc) {
5660                 CERROR("%s: Can't init device stack, rc %d\n",
5661                        mdt_obd_name(m), rc);
5662                 GOTO(err_lmi, rc);
5663         }
5664
5665         s = mdt_lu_site(m);
5666         ss_site = mdt_seq_site(m);
5667         s->ld_seq_site = ss_site;
5668         ss_site->ss_lu = s;
5669
5670         /* set server index */
5671         ss_site->ss_node_id = node_id;
5672
5673         /* failover is the default
5674          * FIXME: we do not failout mds0/mgs, which may cause some problems.
5675          * assumed whose ss_node_id == 0 XXX
5676          * */
5677         obd->obd_replayable = 1;
5678         /* No connection accepted until configurations will finish */
5679         obd->obd_no_conn = 1;
5680
5681         if (cfg->lcfg_bufcount > 4 && LUSTRE_CFG_BUFLEN(cfg, 4) > 0) {
5682                 char *str = lustre_cfg_string(cfg, 4);
5683                 if (strchr(str, 'n')) {
5684                         CWARN("%s: recovery disabled\n", mdt_obd_name(m));
5685                         obd->obd_replayable = 0;
5686                 }
5687         }
5688
5689         rc = mdt_fld_init(env, mdt_obd_name(m), m);
5690         if (rc)
5691                 GOTO(err_fini_stack, rc);
5692
5693         rc = mdt_seq_init(env, m);
5694         if (rc)
5695                 GOTO(err_fini_fld, rc);
5696
5697         snprintf(info->mti_u.ns_name, sizeof(info->mti_u.ns_name), "%s-%s",
5698                  LUSTRE_MDT_NAME, obd->obd_uuid.uuid);
5699         m->mdt_namespace = ldlm_namespace_new(obd, info->mti_u.ns_name,
5700                                               LDLM_NAMESPACE_SERVER,
5701                                               LDLM_NAMESPACE_GREEDY,
5702                                               LDLM_NS_TYPE_MDT);
5703         if (m->mdt_namespace == NULL)
5704                 GOTO(err_fini_seq, rc = -ENOMEM);
5705
5706         m->mdt_namespace->ns_lvbp = m;
5707         m->mdt_namespace->ns_lvbo = &mdt_lvbo;
5708
5709         ldlm_register_intent(m->mdt_namespace, mdt_intent_policy);
5710         /* set obd_namespace for compatibility with old code */
5711         obd->obd_namespace = m->mdt_namespace;
5712
5713         rc = tgt_init(env, &m->mdt_lut, obd, m->mdt_bottom, mdt_common_slice,
5714                       OBD_FAIL_MDS_ALL_REQUEST_NET,
5715                       OBD_FAIL_MDS_ALL_REPLY_NET);
5716         if (rc)
5717                 GOTO(err_free_ns, rc);
5718
5719         /* Amount of available space excluded from granting and reserved
5720          * for metadata. It is a percentage of the total MDT size. */
5721         tgd->tgd_reserved_pcnt = 10;
5722
5723         if (ONE_MB_BRW_SIZE < (1U << tgd->tgd_blockbits))
5724                 m->mdt_brw_size = 1U << tgd->tgd_blockbits;
5725         else
5726                 m->mdt_brw_size = ONE_MB_BRW_SIZE;
5727
5728         rc = mdt_fs_setup(env, m, obd, lsi);
5729         if (rc)
5730                 GOTO(err_tgt, rc);
5731
5732         fid.f_seq = FID_SEQ_LOCAL_NAME;
5733         fid.f_oid = 1;
5734         fid.f_ver = 0;
5735         rc = local_oid_storage_init(env, m->mdt_bottom, &fid, &m->mdt_los);
5736         if (rc != 0)
5737                 GOTO(err_fs_cleanup, rc);
5738
5739         rc = mdt_hsm_cdt_init(m);
5740         if (rc != 0) {
5741                 CERROR("%s: error initializing coordinator, rc %d\n",
5742                        mdt_obd_name(m), rc);
5743                 GOTO(err_los_fini, rc);
5744         }
5745
5746         tgt_adapt_sptlrpc_conf(&m->mdt_lut);
5747
5748         next = m->mdt_child;
5749         dt_conf = next->md_ops->mdo_dtconf_get(env, next);
5750
5751         mntopts = dt_conf->ddp_mntopts;
5752
5753         if (mntopts & MNTOPT_USERXATTR)
5754                 m->mdt_opts.mo_user_xattr = 1;
5755         else
5756                 m->mdt_opts.mo_user_xattr = 0;
5757
5758         m->mdt_max_ea_size = dt_conf->ddp_max_ea_size;
5759
5760         if (mntopts & MNTOPT_ACL)
5761                 m->mdt_opts.mo_acl = 1;
5762         else
5763                 m->mdt_opts.mo_acl = 0;
5764
5765         /* XXX: to support suppgid for ACL, we enable identity_upcall
5766          * by default, otherwise, maybe got unexpected -EACCESS. */
5767         if (m->mdt_opts.mo_acl)
5768                 identity_upcall = MDT_IDENTITY_UPCALL_PATH;
5769
5770         m->mdt_identity_cache = upcall_cache_init(mdt_obd_name(m),
5771                                                 identity_upcall,
5772                                                 &mdt_identity_upcall_cache_ops);
5773         if (IS_ERR(m->mdt_identity_cache)) {
5774                 rc = PTR_ERR(m->mdt_identity_cache);
5775                 m->mdt_identity_cache = NULL;
5776                 GOTO(err_free_hsm, rc);
5777         }
5778
5779         rc = mdt_tunables_init(m, dev);
5780         if (rc) {
5781                 CERROR("Can't init MDT lprocfs, rc %d\n", rc);
5782                 GOTO(err_recovery, rc);
5783         }
5784
5785         rc = mdt_quota_init(env, m, cfg);
5786         if (rc)
5787                 GOTO(err_procfs, rc);
5788
5789         m->mdt_ldlm_client = &mdt2obd_dev(m)->obd_ldlm_client;
5790         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
5791                            "mdt_ldlm_client", m->mdt_ldlm_client);
5792
5793         ping_evictor_start();
5794
5795         /* recovery will be started upon mdt_prepare()
5796          * when the whole stack is complete and ready
5797          * to serve the requests */
5798
5799         /* Reduce the initial timeout on an MDS because it doesn't need such
5800          * a long timeout as an OST does. Adaptive timeouts will adjust this
5801          * value appropriately. */
5802         if (ldlm_timeout == LDLM_TIMEOUT_DEFAULT)
5803                 ldlm_timeout = MDS_LDLM_TIMEOUT_DEFAULT;
5804
5805         if ((lsi->lsi_lmd->lmd_flags & LMD_FLG_LOCAL_RECOV))
5806                 m->mdt_lut.lut_local_recovery = 1;
5807
5808         rc = mdt_restriper_start(m);
5809         if (rc)
5810                 GOTO(err_ping_evictor, rc);
5811
5812         RETURN(0);
5813
5814 err_ping_evictor:
5815         ping_evictor_stop();
5816 err_procfs:
5817         mdt_tunables_fini(m);
5818 err_recovery:
5819         upcall_cache_cleanup(m->mdt_identity_cache);
5820         m->mdt_identity_cache = NULL;
5821 err_free_hsm:
5822         mdt_hsm_cdt_fini(m);
5823 err_los_fini:
5824         local_oid_storage_fini(env, m->mdt_los);
5825         m->mdt_los = NULL;
5826 err_fs_cleanup:
5827         mdt_fs_cleanup(env, m);
5828 err_tgt:
5829         /* keep recoverable clients */
5830         obd->obd_fail = 1;
5831         target_recovery_fini(obd);
5832         obd_exports_barrier(obd);
5833         obd_zombie_barrier();
5834         tgt_fini(env, &m->mdt_lut);
5835 err_free_ns:
5836         ldlm_namespace_free(m->mdt_namespace, NULL, 0);
5837         obd->obd_namespace = m->mdt_namespace = NULL;
5838 err_fini_seq:
5839         mdt_seq_fini(env, m);
5840 err_fini_fld:
5841         mdt_fld_fini(env, m);
5842 err_fini_stack:
5843         mdt_stack_fini(env, m, md2lu_dev(m->mdt_child));
5844 err_lmi:
5845         if (lmi)
5846                 server_put_mount(dev, true);
5847         return(rc);
5848 }
5849
5850 /* For interoperability, the left element is old parameter, the right one
5851  * is the new version of the parameter, if some parameter is deprecated,
5852  * the new version should be set as NULL. */
5853 static struct cfg_interop_param mdt_interop_param[] = {
5854         { "mdt.group_upcall",   NULL },
5855         { "mdt.quota_type",     NULL },
5856         { "mdd.quota_type",     NULL },
5857         { "mdt.som",            NULL },
5858         { "mdt.rootsquash",     "mdt.root_squash" },
5859         { "mdt.nosquash_nid",   "mdt.nosquash_nids" },
5860         { NULL }
5861 };
5862
5863 /* used by MGS to process specific configurations */
5864 static int mdt_process_config(const struct lu_env *env,
5865                               struct lu_device *d, struct lustre_cfg *cfg)
5866 {
5867         struct mdt_device *m = mdt_dev(d);
5868         struct md_device *md_next = m->mdt_child;
5869         struct lu_device *next = md2lu_dev(md_next);
5870         int rc;
5871         ENTRY;
5872
5873         switch (cfg->lcfg_command) {
5874         case LCFG_PARAM: {
5875                 struct obd_device *obd = d->ld_obd;
5876                 /* For interoperability */
5877                 struct cfg_interop_param *ptr = NULL;
5878                 struct lustre_cfg *old_cfg = NULL;
5879                 char *param = NULL;
5880                 ssize_t count;
5881
5882                 param = lustre_cfg_string(cfg, 1);
5883                 if (param == NULL) {
5884                         CERROR("param is empty\n");
5885                         rc = -EINVAL;
5886                         break;
5887                 }
5888
5889                 ptr = class_find_old_param(param, mdt_interop_param);
5890                 if (ptr != NULL) {
5891                         if (ptr->new_param == NULL) {
5892                                 rc = 0;
5893                                 CWARN("For interoperability, skip this %s."
5894                                       " It is obsolete.\n", ptr->old_param);
5895                                 break;
5896                         }
5897
5898                         CWARN("Found old param %s, changed it to %s.\n",
5899                               ptr->old_param, ptr->new_param);
5900
5901                         old_cfg = cfg;
5902                         cfg = lustre_cfg_rename(old_cfg, ptr->new_param);
5903                         if (IS_ERR(cfg)) {
5904                                 rc = PTR_ERR(cfg);
5905                                 break;
5906                         }
5907                 }
5908
5909                 count = class_modify_config(cfg, PARAM_MDT,
5910                                             &obd->obd_kset.kobj);
5911                 if (count < 0) {
5912                         struct coordinator *cdt = &m->mdt_coordinator;
5913
5914                         /* is it an HSM var ? */
5915                         count = class_modify_config(cfg, PARAM_HSM,
5916                                                     &cdt->cdt_hsm_kobj);
5917                         if (count < 0)
5918                                 /* we don't understand; pass it on */
5919                                 rc = next->ld_ops->ldo_process_config(env, next,
5920                                                                       cfg);
5921                         else
5922                                 rc = count > 0 ? 0 : count;
5923                 } else {
5924                         rc = count > 0 ? 0 : count;
5925                 }
5926
5927                 if (old_cfg)
5928                         OBD_FREE(cfg, lustre_cfg_len(cfg->lcfg_bufcount,
5929                                                      cfg->lcfg_buflens));
5930                 break;
5931         }
5932         default:
5933                 /* others are passed further */
5934                 rc = next->ld_ops->ldo_process_config(env, next, cfg);
5935                 break;
5936         }
5937         RETURN(rc);
5938 }
5939
5940 static struct lu_object *mdt_object_alloc(const struct lu_env *env,
5941                                           const struct lu_object_header *hdr,
5942                                           struct lu_device *d)
5943 {
5944         struct mdt_object *mo;
5945
5946         ENTRY;
5947
5948         OBD_SLAB_ALLOC_PTR_GFP(mo, mdt_object_kmem, GFP_NOFS);
5949         if (mo != NULL) {
5950                 struct lu_object *o;
5951                 struct lu_object_header *h;
5952
5953                 o = &mo->mot_obj;
5954                 h = &mo->mot_header;
5955                 lu_object_header_init(h);
5956                 lu_object_init(o, h, d);
5957                 lu_object_add_top(h, o);
5958                 o->lo_ops = &mdt_obj_ops;
5959                 spin_lock_init(&mo->mot_write_lock);
5960                 mutex_init(&mo->mot_som_mutex);
5961                 mutex_init(&mo->mot_lov_mutex);
5962                 init_rwsem(&mo->mot_dom_sem);
5963                 init_rwsem(&mo->mot_open_sem);
5964                 atomic_set(&mo->mot_open_count, 0);
5965                 mo->mot_restripe_offset = 0;
5966                 INIT_LIST_HEAD(&mo->mot_restripe_linkage);
5967                 RETURN(o);
5968         }
5969         RETURN(NULL);
5970 }
5971
5972 static int mdt_object_init(const struct lu_env *env, struct lu_object *o,
5973                            const struct lu_object_conf *unused)
5974 {
5975         struct mdt_device *d = mdt_dev(o->lo_dev);
5976         struct lu_device  *under;
5977         struct lu_object  *below;
5978         int                rc = 0;
5979         ENTRY;
5980
5981         CDEBUG(D_INFO, "object init, fid = "DFID"\n",
5982                PFID(lu_object_fid(o)));
5983
5984         under = &d->mdt_child->md_lu_dev;
5985         below = under->ld_ops->ldo_object_alloc(env, o->lo_header, under);
5986         if (below != NULL) {
5987                 lu_object_add(o, below);
5988         } else
5989                 rc = -ENOMEM;
5990
5991         RETURN(rc);
5992 }
5993
5994 static void mdt_object_free_rcu(struct rcu_head *head)
5995 {
5996         struct mdt_object *mo = container_of(head, struct mdt_object,
5997                                              mot_header.loh_rcu);
5998
5999         kmem_cache_free(mdt_object_kmem, mo);
6000 }
6001
6002 static void mdt_object_free(const struct lu_env *env, struct lu_object *o)
6003 {
6004         struct mdt_object *mo = mdt_obj(o);
6005         struct lu_object_header *h;
6006         ENTRY;
6007
6008         h = o->lo_header;
6009         CDEBUG(D_INFO, "object free, fid = "DFID"\n",
6010                PFID(lu_object_fid(o)));
6011
6012         LASSERT(atomic_read(&mo->mot_open_count) == 0);
6013         LASSERT(atomic_read(&mo->mot_lease_count) == 0);
6014
6015         lu_object_fini(o);
6016         lu_object_header_fini(h);
6017         OBD_FREE_PRE(mo, sizeof(*mo), "slab-freed");
6018         call_rcu(&mo->mot_header.loh_rcu, mdt_object_free_rcu);
6019
6020         EXIT;
6021 }
6022
6023 static int mdt_object_print(const struct lu_env *env, void *cookie,
6024                             lu_printer_t p, const struct lu_object *o)
6025 {
6026         struct mdt_object *mdto = mdt_obj((struct lu_object *)o);
6027
6028         return (*p)(env, cookie,
6029                     LUSTRE_MDT_NAME"-object@%p(%s %s, writecount=%d)",
6030                     mdto, mdto->mot_lov_created ? "lov_created" : "",
6031                     mdto->mot_cache_attr ? "cache_attr" : "",
6032                     mdto->mot_write_count);
6033 }
6034
6035 static int mdt_prepare(const struct lu_env *env,
6036                 struct lu_device *pdev,
6037                 struct lu_device *cdev)
6038 {
6039         struct mdt_device *mdt = mdt_dev(cdev);
6040         struct lu_device *next = &mdt->mdt_child->md_lu_dev;
6041         struct obd_device *obd = cdev->ld_obd;
6042         int rc;
6043
6044         ENTRY;
6045
6046         LASSERT(obd);
6047
6048         rc = next->ld_ops->ldo_prepare(env, cdev, next);
6049         if (rc)
6050                 RETURN(rc);
6051
6052         rc = mdt_llog_ctxt_clone(env, mdt, LLOG_CHANGELOG_ORIG_CTXT);
6053         if (rc)
6054                 RETURN(rc);
6055
6056         rc = mdt_llog_ctxt_clone(env, mdt, LLOG_AGENT_ORIG_CTXT);
6057         if (rc)
6058                 RETURN(rc);
6059
6060         rc = lfsck_register_namespace(env, mdt->mdt_bottom, mdt->mdt_namespace);
6061         /* The LFSCK instance is registered just now, so it must be there when
6062          * register the namespace to such instance. */
6063         LASSERTF(rc == 0, "register namespace failed: rc = %d\n", rc);
6064
6065         if (mdt->mdt_seq_site.ss_node_id == 0) {
6066                 rc = mdt->mdt_child->md_ops->mdo_root_get(env, mdt->mdt_child,
6067                                                          &mdt->mdt_md_root_fid);
6068                 if (rc)
6069                         RETURN(rc);
6070         }
6071
6072         LASSERT(!test_bit(MDT_FL_CFGLOG, &mdt->mdt_state));
6073
6074         target_recovery_init(&mdt->mdt_lut, tgt_request_handle);
6075         set_bit(MDT_FL_CFGLOG, &mdt->mdt_state);
6076         LASSERT(obd->obd_no_conn);
6077         spin_lock(&obd->obd_dev_lock);
6078         obd->obd_no_conn = 0;
6079         spin_unlock(&obd->obd_dev_lock);
6080
6081         if (obd->obd_recovering == 0)
6082                 mdt_postrecov(env, mdt);
6083
6084         RETURN(rc);
6085 }
6086
6087 const struct lu_device_operations mdt_lu_ops = {
6088         .ldo_object_alloc   = mdt_object_alloc,
6089         .ldo_process_config = mdt_process_config,
6090         .ldo_prepare        = mdt_prepare,
6091 };
6092
6093 static const struct lu_object_operations mdt_obj_ops = {
6094         .loo_object_init    = mdt_object_init,
6095         .loo_object_free    = mdt_object_free,
6096         .loo_object_print   = mdt_object_print
6097 };
6098
6099 static int mdt_obd_set_info_async(const struct lu_env *env,
6100                                   struct obd_export *exp,
6101                                   __u32 keylen, void *key,
6102                                   __u32 vallen, void *val,
6103                                   struct ptlrpc_request_set *set)
6104 {
6105         int rc;
6106
6107         ENTRY;
6108
6109         if (KEY_IS(KEY_SPTLRPC_CONF)) {
6110                 rc = tgt_adapt_sptlrpc_conf(class_exp2tgt(exp));
6111                 RETURN(rc);
6112         }
6113
6114         RETURN(0);
6115 }
6116
6117 static inline void mdt_enable_slc(struct mdt_device *mdt)
6118 {
6119         if (mdt->mdt_lut.lut_sync_lock_cancel == SYNC_LOCK_CANCEL_NEVER)
6120                 mdt->mdt_lut.lut_sync_lock_cancel = SYNC_LOCK_CANCEL_BLOCKING;
6121 }
6122
6123 static inline void mdt_disable_slc(struct mdt_device *mdt)
6124 {
6125         if (mdt->mdt_lut.lut_sync_lock_cancel == SYNC_LOCK_CANCEL_BLOCKING)
6126                 mdt->mdt_lut.lut_sync_lock_cancel = SYNC_LOCK_CANCEL_NEVER;
6127 }
6128
6129 /**
6130  * Match client and server connection feature flags.
6131  *
6132  * Compute the compatibility flags for a connection request based on
6133  * features mutually supported by client and server.
6134  *
6135  * The obd_export::exp_connect_data.ocd_connect_flags field in \a exp
6136  * must not be updated here, otherwise a partially initialized value may
6137  * be exposed. After the connection request is successfully processed,
6138  * the top-level MDT connect request handler atomically updates the export
6139  * connect flags from the obd_connect_data::ocd_connect_flags field of the
6140  * reply. \see mdt_connect().
6141  *
6142  * Before 2.7.50 clients will send a struct obd_connect_data_v1 rather than a
6143  * full struct obd_connect_data. So care must be taken when accessing fields
6144  * that are not present in struct obd_connect_data_v1. See LU-16.
6145  *
6146  * \param exp   the obd_export associated with this client/target pair
6147  * \param mdt   the target device for the connection
6148  * \param data  stores data for this connect request
6149  *
6150  * \retval 0       success
6151  * \retval -EPROTO \a data unexpectedly has zero obd_connect_data::ocd_brw_size
6152  * \retval -EBADE  client and server feature requirements are incompatible
6153  */
6154 static int mdt_connect_internal(const struct lu_env *env,
6155                                 struct obd_export *exp,
6156                                 struct mdt_device *mdt,
6157                                 struct obd_connect_data *data, bool reconnect)
6158 {
6159         const char *obd_name = mdt_obd_name(mdt);
6160         LASSERT(data != NULL);
6161
6162         data->ocd_connect_flags &= MDT_CONNECT_SUPPORTED;
6163
6164         if (mdt->mdt_bottom->dd_rdonly &&
6165             !(data->ocd_connect_flags & OBD_CONNECT_MDS_MDS) &&
6166             !(data->ocd_connect_flags & OBD_CONNECT_RDONLY))
6167                 RETURN(-EACCES);
6168
6169         if (data->ocd_connect_flags & OBD_CONNECT_FLAGS2)
6170                 data->ocd_connect_flags2 &= MDT_CONNECT_SUPPORTED2;
6171
6172         data->ocd_ibits_known &= MDS_INODELOCK_FULL;
6173
6174         if (!mdt->mdt_opts.mo_acl)
6175                 data->ocd_connect_flags &= ~OBD_CONNECT_ACL;
6176
6177         if (!mdt->mdt_opts.mo_user_xattr)
6178                 data->ocd_connect_flags &= ~OBD_CONNECT_XATTR;
6179
6180         if (OCD_HAS_FLAG(data, BRW_SIZE)) {
6181                 data->ocd_brw_size = min(data->ocd_brw_size,
6182                                          mdt->mdt_brw_size);
6183                 if (data->ocd_brw_size == 0) {
6184                         CERROR("%s: cli %s/%p ocd_connect_flags: %#llx "
6185                                "ocd_version: %x ocd_grant: %d ocd_index: %u "
6186                                "ocd_brw_size unexpectedly zero, network data "
6187                                "corruption? Refusing to connect this client\n",
6188                                obd_name, exp->exp_client_uuid.uuid,
6189                                exp, data->ocd_connect_flags, data->ocd_version,
6190                                data->ocd_grant, data->ocd_index);
6191                         return -EPROTO;
6192                 }
6193         }
6194
6195         if (OCD_HAS_FLAG(data, GRANT_PARAM)) {
6196                 struct dt_device_param *ddp = &mdt->mdt_lut.lut_dt_conf;
6197
6198                 /* client is reporting its page size, for future use */
6199                 exp->exp_target_data.ted_pagebits = data->ocd_grant_blkbits;
6200                 data->ocd_grant_blkbits  = mdt->mdt_lut.lut_tgd.tgd_blockbits;
6201                 /* ddp_inodespace may not be power-of-two value, eg. for ldiskfs
6202                  * it's LDISKFS_DIR_REC_LEN(20) = 28. */
6203                 data->ocd_grant_inobits = fls(ddp->ddp_inodespace - 1);
6204                 /* ocd_grant_tax_kb is in 1K byte blocks */
6205                 data->ocd_grant_tax_kb = ddp->ddp_extent_tax >> 10;
6206                 data->ocd_grant_max_blks = ddp->ddp_max_extent_blks;
6207         }
6208
6209         /* Save connect_data we have so far because tgt_grant_connect()
6210          * uses it to calculate grant, and we want to save the client
6211          * version before it is overwritten by LUSTRE_VERSION_CODE. */
6212         exp->exp_connect_data = *data;
6213         if (OCD_HAS_FLAG(data, GRANT))
6214                 tgt_grant_connect(env, exp, data, !reconnect);
6215
6216         if (OCD_HAS_FLAG(data, MAXBYTES))
6217                 data->ocd_maxbytes = mdt->mdt_lut.lut_dt_conf.ddp_maxbytes;
6218
6219         /* NB: Disregard the rule against updating
6220          * exp_connect_data.ocd_connect_flags in this case, since
6221          * tgt_client_new() needs to know if this is a lightweight
6222          * connection, and it is safe to expose this flag before
6223          * connection processing completes. */
6224         if (data->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT) {
6225                 spin_lock(&exp->exp_lock);
6226                 *exp_connect_flags_ptr(exp) |= OBD_CONNECT_LIGHTWEIGHT;
6227                 spin_unlock(&exp->exp_lock);
6228         }
6229
6230         data->ocd_version = LUSTRE_VERSION_CODE;
6231
6232         if ((data->ocd_connect_flags & OBD_CONNECT_FID) == 0) {
6233                 CWARN("%s: MDS requires FID support, but client not\n",
6234                       obd_name);
6235                 return -EBADE;
6236         }
6237
6238         if (OCD_HAS_FLAG(data, PINGLESS)) {
6239                 if (ptlrpc_pinger_suppress_pings()) {
6240                         spin_lock(&exp->exp_obd->obd_dev_lock);
6241                         list_del_init(&exp->exp_obd_chain_timed);
6242                         spin_unlock(&exp->exp_obd->obd_dev_lock);
6243                 } else {
6244                         data->ocd_connect_flags &= ~OBD_CONNECT_PINGLESS;
6245                 }
6246         }
6247
6248         data->ocd_max_easize = mdt->mdt_max_ea_size;
6249
6250         /* NB: Disregard the rule against updating
6251          * exp_connect_data.ocd_connect_flags in this case, since
6252          * tgt_client_new() needs to know if this is client supports
6253          * multiple modify RPCs, and it is safe to expose this flag before
6254          * connection processing completes. */
6255         if (data->ocd_connect_flags & OBD_CONNECT_MULTIMODRPCS) {
6256                 data->ocd_maxmodrpcs = max_mod_rpcs_per_client;
6257                 spin_lock(&exp->exp_lock);
6258                 *exp_connect_flags_ptr(exp) |= OBD_CONNECT_MULTIMODRPCS;
6259                 spin_unlock(&exp->exp_lock);
6260         }
6261
6262         if (OCD_HAS_FLAG(data, CKSUM)) {
6263                 __u32 cksum_types = data->ocd_cksum_types;
6264
6265                 /* The client set in ocd_cksum_types the checksum types it
6266                  * supports. We have to mask off the algorithms that we don't
6267                  * support */
6268                 data->ocd_cksum_types &=
6269                         obd_cksum_types_supported_server(obd_name);
6270
6271                 if (unlikely(data->ocd_cksum_types == 0)) {
6272                         CERROR("%s: Connect with checksum support but no "
6273                                "ocd_cksum_types is set\n",
6274                                exp->exp_obd->obd_name);
6275                         RETURN(-EPROTO);
6276                 }
6277
6278                 CDEBUG(D_RPCTRACE, "%s: cli %s supports cksum type %x, return "
6279                        "%x\n", exp->exp_obd->obd_name, obd_export_nid2str(exp),
6280                        cksum_types, data->ocd_cksum_types);
6281         } else {
6282                 /* This client does not support OBD_CONNECT_CKSUM
6283                  * fall back to CRC32 */
6284                 CDEBUG(D_RPCTRACE, "%s: cli %s does not support "
6285                        "OBD_CONNECT_CKSUM, CRC32 will be used\n",
6286                        exp->exp_obd->obd_name, obd_export_nid2str(exp));
6287         }
6288
6289         if ((data->ocd_connect_flags & OBD_CONNECT_MDS_MDS) &&
6290             !(data->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT)) {
6291                 atomic_inc(&mdt->mdt_mds_mds_conns);
6292                 mdt_enable_slc(mdt);
6293         }
6294
6295         return 0;
6296 }
6297
6298 static int mdt_ctxt_add_dirty_flag(struct lu_env *env,
6299                                    struct mdt_thread_info *info,
6300                                    struct mdt_file_data *mfd)
6301 {
6302         struct lu_context ses;
6303         int rc;
6304         ENTRY;
6305
6306         rc = lu_context_init(&ses, LCT_SERVER_SESSION);
6307         if (rc)
6308                 RETURN(rc);
6309
6310         env->le_ses = &ses;
6311         lu_context_enter(&ses);
6312
6313         mdt_ucred(info)->uc_valid = UCRED_OLD;
6314         rc = mdt_add_dirty_flag(info, mfd->mfd_object, &info->mti_attr);
6315
6316         lu_context_exit(&ses);
6317         lu_context_fini(&ses);
6318         env->le_ses = NULL;
6319
6320         RETURN(rc);
6321 }
6322
6323 static int mdt_export_cleanup(struct obd_export *exp)
6324 {
6325         LIST_HEAD(closing_list);
6326         struct mdt_export_data  *med = &exp->exp_mdt_data;
6327         struct obd_device       *obd = exp->exp_obd;
6328         struct mdt_device       *mdt;
6329         struct mdt_thread_info  *info;
6330         struct lu_env            env;
6331         struct mdt_file_data    *mfd, *n;
6332         int rc = 0;
6333         ENTRY;
6334
6335         spin_lock(&med->med_open_lock);
6336         while (!list_empty(&med->med_open_head)) {
6337                 struct list_head *tmp = med->med_open_head.next;
6338                 mfd = list_entry(tmp, struct mdt_file_data, mfd_list);
6339
6340                 /* Remove mfd handle so it can't be found again.
6341                  * We are consuming the mfd_list reference here. */
6342                 class_handle_unhash(&mfd->mfd_open_handle);
6343                 list_move_tail(&mfd->mfd_list, &closing_list);
6344         }
6345         spin_unlock(&med->med_open_lock);
6346         mdt = mdt_dev(obd->obd_lu_dev);
6347         LASSERT(mdt != NULL);
6348
6349         rc = lu_env_init(&env, LCT_MD_THREAD);
6350         if (rc)
6351                 RETURN(rc);
6352
6353         info = lu_context_key_get(&env.le_ctx, &mdt_thread_key);
6354         LASSERT(info != NULL);
6355         memset(info, 0, sizeof *info);
6356         info->mti_env = &env;
6357         info->mti_mdt = mdt;
6358         info->mti_exp = exp;
6359
6360         if (!list_empty(&closing_list)) {
6361                 struct md_attr *ma = &info->mti_attr;
6362
6363                 /* Close any open files (which may also cause orphan
6364                  * unlinking). */
6365                 list_for_each_entry_safe(mfd, n, &closing_list, mfd_list) {
6366                         list_del_init(&mfd->mfd_list);
6367                         ma->ma_need = ma->ma_valid = 0;
6368
6369                         /* This file is being closed due to an eviction, it
6370                          * could have been modified and now dirty regarding to
6371                          * HSM archive, check this!
6372                          * The logic here is to mark a file dirty if there's a
6373                          * chance it was dirtied before the client was evicted,
6374                          * so that we don't have to wait for a release attempt
6375                          * before finding out the file was actually dirty and
6376                          * fail the release. Aggressively marking it dirty here
6377                          * will cause the policy engine to attempt to
6378                          * re-archive it; when rearchiving, we can compare the
6379                          * current version to the HSM data_version and make the
6380                          * archive request into a noop if it's not actually
6381                          * dirty.
6382                          */
6383                         if (mfd->mfd_open_flags & MDS_FMODE_WRITE)
6384                                 rc = mdt_ctxt_add_dirty_flag(&env, info, mfd);
6385
6386                         /* Don't unlink orphan on failover umount, LU-184 */
6387                         if (exp->exp_flags & OBD_OPT_FAILOVER) {
6388                                 ma->ma_valid = MA_FLAGS;
6389                                 ma->ma_attr_flags |= MDS_KEEP_ORPHAN;
6390                         }
6391                         ma->ma_valid |= MA_FORCE_LOG;
6392                         mdt_mfd_close(info, mfd);
6393                 }
6394         }
6395         info->mti_mdt = NULL;
6396         /* cleanup client slot early */
6397         /* Do not erase record for recoverable client. */
6398         if (!(exp->exp_flags & OBD_OPT_FAILOVER) || exp->exp_failed)
6399                 tgt_client_del(&env, exp);
6400         lu_env_fini(&env);
6401
6402         RETURN(rc);
6403 }
6404
6405 static int mdt_obd_disconnect(struct obd_export *exp)
6406 {
6407         int rc;
6408
6409         ENTRY;
6410
6411         LASSERT(exp);
6412         class_export_get(exp);
6413
6414         if (!(exp->exp_flags & OBD_OPT_FORCE))
6415                 tgt_grant_sanity_check(exp->exp_obd, __func__);
6416
6417         if ((exp_connect_flags(exp) & OBD_CONNECT_MDS_MDS) &&
6418             !(exp_connect_flags(exp) & OBD_CONNECT_LIGHTWEIGHT)) {
6419                 struct mdt_device *mdt = mdt_dev(exp->exp_obd->obd_lu_dev);
6420
6421                 if (atomic_dec_and_test(&mdt->mdt_mds_mds_conns))
6422                         mdt_disable_slc(mdt);
6423         }
6424
6425         rc = server_disconnect_export(exp);
6426         if (rc != 0)
6427                 CDEBUG(D_IOCTL, "server disconnect error: rc = %d\n", rc);
6428
6429         tgt_grant_discard(exp);
6430
6431         rc = mdt_export_cleanup(exp);
6432         nodemap_del_member(exp);
6433         class_export_put(exp);
6434         RETURN(rc);
6435 }
6436
6437 /* mds_connect copy */
6438 static int mdt_obd_connect(const struct lu_env *env,
6439                            struct obd_export **exp, struct obd_device *obd,
6440                            struct obd_uuid *cluuid,
6441                            struct obd_connect_data *data,
6442                            void *localdata)
6443 {
6444         struct obd_export       *lexp;
6445         struct lustre_handle    conn = { 0 };
6446         struct mdt_device       *mdt;
6447         int                      rc;
6448         lnet_nid_t              *client_nid = localdata;
6449         ENTRY;
6450
6451         LASSERT(env != NULL);
6452         LASSERT(data != NULL);
6453
6454         if (!exp || !obd || !cluuid)
6455                 RETURN(-EINVAL);
6456
6457         mdt = mdt_dev(obd->obd_lu_dev);
6458
6459         /*
6460          * first, check whether the stack is ready to handle requests
6461          * XXX: probably not very appropriate method is used now
6462          *      at some point we should find a better one
6463          */
6464         if (!test_bit(MDT_FL_SYNCED, &mdt->mdt_state) &&
6465             !(data->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT) &&
6466             !(data->ocd_connect_flags & OBD_CONNECT_MDS_MDS)) {
6467                 rc = obd_get_info(env, mdt->mdt_child_exp,
6468                                   sizeof(KEY_OSP_CONNECTED),
6469                                   KEY_OSP_CONNECTED, NULL, NULL);
6470                 if (rc)
6471                         RETURN(-EAGAIN);
6472                 set_bit(MDT_FL_SYNCED, &mdt->mdt_state);
6473         }
6474
6475         rc = class_connect(&conn, obd, cluuid);
6476         if (rc)
6477                 RETURN(rc);
6478
6479         lexp = class_conn2export(&conn);
6480         LASSERT(lexp != NULL);
6481
6482         rc = nodemap_add_member(*client_nid, lexp);
6483         if (rc != 0 && rc != -EEXIST)
6484                 GOTO(out, rc);
6485
6486         rc = mdt_connect_internal(env, lexp, mdt, data, false);
6487         if (rc == 0) {
6488                 struct lsd_client_data *lcd = lexp->exp_target_data.ted_lcd;
6489
6490                 LASSERT(lcd);
6491                 memcpy(lcd->lcd_uuid, cluuid, sizeof lcd->lcd_uuid);
6492                 rc = tgt_client_new(env, lexp);
6493                 if (rc == 0)
6494                         mdt_export_stats_init(obd, lexp, localdata);
6495         }
6496 out:
6497         if (rc != 0) {
6498                 class_disconnect(lexp);
6499                 nodemap_del_member(lexp);
6500                 *exp = NULL;
6501         } else {
6502                 *exp = lexp;
6503                 /* Because we do not want this export to be evicted by pinger,
6504                  * let's not add this export to the timed chain list. */
6505                 if (data->ocd_connect_flags & OBD_CONNECT_MDS_MDS) {
6506                         spin_lock(&lexp->exp_obd->obd_dev_lock);
6507                         list_del_init(&lexp->exp_obd_chain_timed);
6508                         spin_unlock(&lexp->exp_obd->obd_dev_lock);
6509                 }
6510         }
6511
6512         RETURN(rc);
6513 }
6514
6515 static int mdt_obd_reconnect(const struct lu_env *env,
6516                              struct obd_export *exp, struct obd_device *obd,
6517                              struct obd_uuid *cluuid,
6518                              struct obd_connect_data *data,
6519                              void *localdata)
6520 {
6521         lnet_nid_t             *client_nid = localdata;
6522         int                     rc;
6523         ENTRY;
6524
6525         if (exp == NULL || obd == NULL || cluuid == NULL)
6526                 RETURN(-EINVAL);
6527
6528         rc = nodemap_add_member(*client_nid, exp);
6529         if (rc != 0 && rc != -EEXIST)
6530                 RETURN(rc);
6531
6532         rc = mdt_connect_internal(env, exp, mdt_dev(obd->obd_lu_dev), data,
6533                                   true);
6534         if (rc == 0)
6535                 mdt_export_stats_init(obd, exp, localdata);
6536         else
6537                 nodemap_del_member(exp);
6538
6539         RETURN(rc);
6540 }
6541
6542 /* FIXME: Can we avoid using these two interfaces? */
6543 static int mdt_init_export(struct obd_export *exp)
6544 {
6545         struct mdt_export_data *med = &exp->exp_mdt_data;
6546         int                     rc;
6547         ENTRY;
6548
6549         INIT_LIST_HEAD(&med->med_open_head);
6550         spin_lock_init(&med->med_open_lock);
6551         spin_lock(&exp->exp_lock);
6552         exp->exp_connecting = 1;
6553         spin_unlock(&exp->exp_lock);
6554
6555         OBD_ALLOC(exp->exp_used_slots,
6556                   BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
6557         if (exp->exp_used_slots == NULL)
6558                 RETURN(-ENOMEM);
6559
6560         /* self-export doesn't need client data and ldlm initialization */
6561         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
6562                                      &exp->exp_client_uuid)))
6563                 RETURN(0);
6564
6565         rc = tgt_client_alloc(exp);
6566         if (rc)
6567                 GOTO(err, rc);
6568
6569         rc = ldlm_init_export(exp);
6570         if (rc)
6571                 GOTO(err_free, rc);
6572
6573         RETURN(rc);
6574
6575 err_free:
6576         tgt_client_free(exp);
6577 err:
6578         OBD_FREE(exp->exp_used_slots,
6579                  BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
6580         exp->exp_used_slots = NULL;
6581
6582         CERROR("%s: Failed to initialize export: rc = %d\n",
6583                exp->exp_obd->obd_name, rc);
6584         return rc;
6585 }
6586
6587 static int mdt_destroy_export(struct obd_export *exp)
6588 {
6589         ENTRY;
6590
6591         target_destroy_export(exp);
6592         if (exp->exp_used_slots)
6593                 OBD_FREE(exp->exp_used_slots,
6594                          BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
6595
6596         /* destroy can be called from failed obd_setup, so
6597          * checking uuid is safer than obd_self_export */
6598         if (unlikely(obd_uuid_equals(&exp->exp_obd->obd_uuid,
6599                                      &exp->exp_client_uuid)))
6600                 RETURN(0);
6601
6602         ldlm_destroy_export(exp);
6603         tgt_client_free(exp);
6604
6605         LASSERT(list_empty(&exp->exp_outstanding_replies));
6606         LASSERT(list_empty(&exp->exp_mdt_data.med_open_head));
6607
6608         /*
6609          * discard grants once we're sure no more
6610          * interaction with the client is possible
6611          */
6612         tgt_grant_discard(exp);
6613         if (exp_connect_flags(exp) & OBD_CONNECT_GRANT)
6614                 exp->exp_obd->u.obt.obt_lut->lut_tgd.tgd_tot_granted_clients--;
6615
6616         if (!(exp->exp_flags & OBD_OPT_FORCE))
6617                 tgt_grant_sanity_check(exp->exp_obd, __func__);
6618
6619         RETURN(0);
6620 }
6621
6622 int mdt_links_read(struct mdt_thread_info *info, struct mdt_object *mdt_obj,
6623                    struct linkea_data *ldata)
6624 {
6625         int rc;
6626
6627         LASSERT(ldata->ld_buf->lb_buf != NULL);
6628
6629         if (!mdt_object_exists(mdt_obj))
6630                 return -ENODATA;
6631
6632         rc = mo_xattr_get(info->mti_env, mdt_object_child(mdt_obj),
6633                           ldata->ld_buf, XATTR_NAME_LINK);
6634         if (rc == -ERANGE) {
6635                 /* Buf was too small, figure out what we need. */
6636                 lu_buf_free(ldata->ld_buf);
6637                 rc = mo_xattr_get(info->mti_env, mdt_object_child(mdt_obj),
6638                                   ldata->ld_buf, XATTR_NAME_LINK);
6639                 if (rc < 0)
6640                         return rc;
6641                 ldata->ld_buf = lu_buf_check_and_alloc(ldata->ld_buf, rc);
6642                 if (ldata->ld_buf->lb_buf == NULL)
6643                         return -ENOMEM;
6644                 rc = mo_xattr_get(info->mti_env, mdt_object_child(mdt_obj),
6645                                   ldata->ld_buf, XATTR_NAME_LINK);
6646         }
6647         if (rc < 0)
6648                 return rc;
6649
6650         return linkea_init_with_rec(ldata);
6651 }
6652
6653 /**
6654  * Given an MDT object, try to look up the full path to the object.
6655  * Part of the MDT layer implementation of lfs fid2path.
6656  *
6657  * \param[in]     info  Per-thread common data shared by MDT level handlers.
6658  * \param[in]     obj   Object to do path lookup of
6659  * \param[in,out] fp    User-provided struct to store path information
6660  * \param[in]     root_fid Root FID of current path should reach
6661  *
6662  * \retval 0 Lookup successful, path information stored in fp
6663  * \retval -EAGAIN Lookup failed, usually because object is being moved
6664  * \retval negative errno if there was a problem
6665  */
6666 static int mdt_path_current(struct mdt_thread_info *info,
6667                             struct mdt_object *obj,
6668                             struct getinfo_fid2path *fp,
6669                             struct lu_fid *root_fid)
6670 {
6671         struct mdt_device       *mdt = info->mti_mdt;
6672         struct mdt_object       *mdt_obj;
6673         struct link_ea_header   *leh;
6674         struct link_ea_entry    *lee;
6675         struct lu_name          *tmpname = &info->mti_name;
6676         struct lu_fid           *tmpfid = &info->mti_tmp_fid1;
6677         struct lu_buf           *buf = &info->mti_big_buf;
6678         char                    *ptr;
6679         int                     reclen;
6680         struct linkea_data      ldata = { NULL };
6681         int                     rc = 0;
6682         bool                    first = true;
6683         ENTRY;
6684
6685         /* temp buffer for path element, the buffer will be finally freed
6686          * in mdt_thread_info_fini */
6687         buf = lu_buf_check_and_alloc(buf, PATH_MAX);
6688         if (buf->lb_buf == NULL)
6689                 RETURN(-ENOMEM);
6690
6691         ldata.ld_buf = buf;
6692         ptr = fp->gf_u.gf_path + fp->gf_pathlen - 1;
6693         *ptr = 0;
6694         --ptr;
6695         *tmpfid = fp->gf_fid = *mdt_object_fid(obj);
6696
6697         while (!lu_fid_eq(root_fid, &fp->gf_fid)) {
6698                 struct lu_buf           lmv_buf;
6699
6700                 if (!lu_fid_eq(root_fid, &mdt->mdt_md_root_fid) &&
6701                     lu_fid_eq(&mdt->mdt_md_root_fid, &fp->gf_fid))
6702                         GOTO(out, rc = -ENOENT);
6703
6704                 if (lu_fid_eq(mdt_object_fid(obj), tmpfid)) {
6705                         mdt_obj = obj;
6706                         mdt_object_get(info->mti_env, mdt_obj);
6707                 } else {
6708                         mdt_obj = mdt_object_find(info->mti_env, mdt, tmpfid);
6709                         if (IS_ERR(mdt_obj))
6710                                 GOTO(out, rc = PTR_ERR(mdt_obj));
6711                 }
6712
6713                 if (!mdt_object_exists(mdt_obj)) {
6714                         mdt_object_put(info->mti_env, mdt_obj);
6715                         GOTO(out, rc = -ENOENT);
6716                 }
6717
6718                 if (mdt_object_remote(mdt_obj)) {
6719                         mdt_object_put(info->mti_env, mdt_obj);
6720                         GOTO(remote_out, rc = -EREMOTE);
6721                 }
6722
6723                 rc = mdt_links_read(info, mdt_obj, &ldata);
6724                 if (rc != 0) {
6725                         mdt_object_put(info->mti_env, mdt_obj);
6726                         GOTO(out, rc);
6727                 }
6728
6729                 leh = buf->lb_buf;
6730                 lee = (struct link_ea_entry *)(leh + 1); /* link #0 */
6731                 linkea_entry_unpack(lee, &reclen, tmpname, tmpfid);
6732                 /* If set, use link #linkno for path lookup, otherwise use
6733                    link #0.  Only do this for the final path element. */
6734                 if (first && fp->gf_linkno < leh->leh_reccount) {
6735                         int count;
6736                         for (count = 0; count < fp->gf_linkno; count++) {
6737                                 lee = (struct link_ea_entry *)
6738                                      ((char *)lee + reclen);
6739                                 linkea_entry_unpack(lee, &reclen, tmpname,
6740                                                     tmpfid);
6741                         }
6742                         if (fp->gf_linkno < leh->leh_reccount - 1)
6743                                 /* indicate to user there are more links */
6744                                 fp->gf_linkno++;
6745                 }
6746
6747                 lmv_buf.lb_buf = info->mti_xattr_buf;
6748                 lmv_buf.lb_len = sizeof(info->mti_xattr_buf);
6749                 /* Check if it is slave stripes */
6750                 rc = mo_xattr_get(info->mti_env, mdt_object_child(mdt_obj),
6751                                   &lmv_buf, XATTR_NAME_LMV);
6752                 mdt_object_put(info->mti_env, mdt_obj);
6753                 if (rc > 0) {
6754                         union lmv_mds_md *lmm = lmv_buf.lb_buf;
6755
6756                         /* For slave stripes, get its master */
6757                         if (le32_to_cpu(lmm->lmv_magic) == LMV_MAGIC_STRIPE) {
6758                                 fp->gf_fid = *tmpfid;
6759                                 continue;
6760                         }
6761                 } else if (rc < 0 && rc != -ENODATA) {
6762                         GOTO(out, rc);
6763                 }
6764
6765                 rc = 0;
6766
6767                 /* Pack the name in the end of the buffer */
6768                 ptr -= tmpname->ln_namelen;
6769                 if (ptr - 1 <= fp->gf_u.gf_path)
6770                         GOTO(out, rc = -EOVERFLOW);
6771                 strncpy(ptr, tmpname->ln_name, tmpname->ln_namelen);
6772                 *(--ptr) = '/';
6773
6774                 /* keep the last resolved fid to the client, so the
6775                  * client will build the left path on another MDT for
6776                  * remote object */
6777                 fp->gf_fid = *tmpfid;
6778
6779                 first = false;
6780         }
6781
6782 remote_out:
6783         ptr++; /* skip leading / */
6784         memmove(fp->gf_u.gf_path, ptr,
6785                 fp->gf_u.gf_path + fp->gf_pathlen - ptr);
6786
6787 out:
6788         RETURN(rc);
6789 }
6790
6791 /**
6792  * Given an MDT object, use mdt_path_current to get the path.
6793  * Essentially a wrapper to retry mdt_path_current a set number of times
6794  * if -EAGAIN is returned (usually because an object is being moved).
6795  *
6796  * Part of the MDT layer implementation of lfs fid2path.
6797  *
6798  * \param[in]     info  Per-thread common data shared by mdt level handlers.
6799  * \param[in]     obj   Object to do path lookup of
6800  * \param[in,out] fp    User-provided struct for arguments and to store path
6801  *                      information
6802  *
6803  * \retval 0 Lookup successful, path information stored in fp
6804  * \retval negative errno if there was a problem
6805  */
6806 static int mdt_path(struct mdt_thread_info *info, struct mdt_object *obj,
6807                     struct getinfo_fid2path *fp, struct lu_fid *root_fid)
6808 {
6809         struct mdt_device       *mdt = info->mti_mdt;
6810         int                     tries = 3;
6811         int                     rc = -EAGAIN;
6812         ENTRY;
6813
6814         if (fp->gf_pathlen < 3)
6815                 RETURN(-EOVERFLOW);
6816
6817         if (root_fid == NULL)
6818                 root_fid = &mdt->mdt_md_root_fid;
6819
6820         if (lu_fid_eq(root_fid, mdt_object_fid(obj))) {
6821                 fp->gf_u.gf_path[0] = '\0';
6822                 RETURN(0);
6823         }
6824
6825         /* Retry multiple times in case file is being moved */
6826         while (tries-- && rc == -EAGAIN)
6827                 rc = mdt_path_current(info, obj, fp, root_fid);
6828
6829         RETURN(rc);
6830 }
6831
6832 /**
6833  * Get the full path of the provided FID, as of changelog record recno.
6834  *
6835  * This checks sanity and looks up object for user provided FID
6836  * before calling the actual path lookup code.
6837  *
6838  * Part of the MDT layer implementation of lfs fid2path.
6839  *
6840  * \param[in]     info  Per-thread common data shared by mdt level handlers.
6841  * \param[in,out] fp    User-provided struct for arguments and to store path
6842  *                      information
6843  *
6844  * \retval 0 Lookup successful, path information and recno stored in fp
6845  * \retval -ENOENT, object does not exist
6846  * \retval negative errno if there was a problem
6847  */
6848 static int mdt_fid2path(struct mdt_thread_info *info,
6849                         struct lu_fid *root_fid,
6850                         struct getinfo_fid2path *fp)
6851 {
6852         struct mdt_device *mdt = info->mti_mdt;
6853         struct mdt_object *obj;
6854         int    rc;
6855         ENTRY;
6856
6857         CDEBUG(D_IOCTL, "path get "DFID" from %llu #%d\n",
6858                 PFID(&fp->gf_fid), fp->gf_recno, fp->gf_linkno);
6859
6860         if (!fid_is_sane(&fp->gf_fid))
6861                 RETURN(-EINVAL);
6862
6863         if (!fid_is_namespace_visible(&fp->gf_fid)) {
6864                 CDEBUG(D_INFO, "%s: "DFID" is invalid, f_seq should be >= %#llx"
6865                        ", or f_oid != 0, or f_ver == 0\n", mdt_obd_name(mdt),
6866                        PFID(&fp->gf_fid), (__u64)FID_SEQ_NORMAL);
6867                 RETURN(-EINVAL);
6868         }
6869
6870         obj = mdt_object_find(info->mti_env, mdt, &fp->gf_fid);
6871         if (IS_ERR(obj)) {
6872                 rc = PTR_ERR(obj);
6873                 CDEBUG(D_IOCTL, "cannot find "DFID": rc = %d\n",
6874                        PFID(&fp->gf_fid), rc);
6875                 RETURN(rc);
6876         }
6877
6878         if (mdt_object_remote(obj))
6879                 rc = -EREMOTE;
6880         else if (!mdt_object_exists(obj))
6881                 rc = -ENOENT;
6882         else
6883                 rc = 0;
6884
6885         if (rc < 0) {
6886                 mdt_object_put(info->mti_env, obj);
6887                 CDEBUG(D_IOCTL, "nonlocal object "DFID": rc = %d\n",
6888                        PFID(&fp->gf_fid), rc);
6889                 RETURN(rc);
6890         }
6891
6892         rc = mdt_path(info, obj, fp, root_fid);
6893
6894         CDEBUG(D_INFO, "fid "DFID", path %s recno %#llx linkno %u\n",
6895                PFID(&fp->gf_fid), fp->gf_u.gf_path,
6896                fp->gf_recno, fp->gf_linkno);
6897
6898         mdt_object_put(info->mti_env, obj);
6899
6900         RETURN(rc);
6901 }
6902
6903 static int mdt_rpc_fid2path(struct mdt_thread_info *info, void *key, int keylen,
6904                             void *val, int vallen)
6905 {
6906         struct getinfo_fid2path *fpout, *fpin;
6907         struct lu_fid *root_fid = NULL;
6908         int rc = 0;
6909
6910         fpin = key + cfs_size_round(sizeof(KEY_FID2PATH));
6911         fpout = val;
6912
6913         if (ptlrpc_req_need_swab(info->mti_pill->rc_req))
6914                 lustre_swab_fid2path(fpin);
6915
6916         memcpy(fpout, fpin, sizeof(*fpin));
6917         if (fpout->gf_pathlen != vallen - sizeof(*fpin))
6918                 RETURN(-EINVAL);
6919
6920         if (keylen >= cfs_size_round(sizeof(KEY_FID2PATH)) + sizeof(*fpin) +
6921                       sizeof(struct lu_fid)) {
6922                 /* client sent its root FID, which is normally fileset FID */
6923                 root_fid = fpin->gf_u.gf_root_fid;
6924                 if (ptlrpc_req_need_swab(info->mti_pill->rc_req))
6925                         lustre_swab_lu_fid(root_fid);
6926
6927                 if (root_fid != NULL && !fid_is_sane(root_fid))
6928                         RETURN(-EINVAL);
6929         }
6930
6931         rc = mdt_fid2path(info, root_fid, fpout);
6932         RETURN(rc);
6933 }
6934
6935 int mdt_get_info(struct tgt_session_info *tsi)
6936 {
6937         char    *key;
6938         int      keylen;
6939         __u32   *vallen;
6940         void    *valout;
6941         int      rc;
6942
6943         ENTRY;
6944
6945         key = req_capsule_client_get(tsi->tsi_pill, &RMF_GETINFO_KEY);
6946         if (key == NULL) {
6947                 CDEBUG(D_IOCTL, "No GETINFO key\n");
6948                 RETURN(err_serious(-EFAULT));
6949         }
6950         keylen = req_capsule_get_size(tsi->tsi_pill, &RMF_GETINFO_KEY,
6951                                       RCL_CLIENT);
6952
6953         vallen = req_capsule_client_get(tsi->tsi_pill, &RMF_GETINFO_VALLEN);
6954         if (vallen == NULL) {
6955                 CDEBUG(D_IOCTL, "%s: cannot get RMF_GETINFO_VALLEN buffer\n",
6956                                 tgt_name(tsi->tsi_tgt));
6957                 RETURN(err_serious(-EFAULT));
6958         }
6959
6960         req_capsule_set_size(tsi->tsi_pill, &RMF_GETINFO_VAL, RCL_SERVER,
6961                              *vallen);
6962         rc = req_capsule_server_pack(tsi->tsi_pill);
6963         if (rc)
6964                 RETURN(err_serious(rc));
6965
6966         valout = req_capsule_server_get(tsi->tsi_pill, &RMF_GETINFO_VAL);
6967         if (valout == NULL) {
6968                 CDEBUG(D_IOCTL, "%s: cannot get get-info RPC out buffer\n",
6969                                 tgt_name(tsi->tsi_tgt));
6970                 RETURN(err_serious(-EFAULT));
6971         }
6972
6973         if (KEY_IS(KEY_FID2PATH)) {
6974                 struct mdt_thread_info  *info = tsi2mdt_info(tsi);
6975
6976                 rc = mdt_rpc_fid2path(info, key, keylen, valout, *vallen);
6977                 mdt_thread_info_fini(info);
6978         } else {
6979                 rc = -EINVAL;
6980         }
6981         RETURN(rc);
6982 }
6983
6984 static int mdt_ioc_version_get(struct mdt_thread_info *mti, void *karg)
6985 {
6986         struct obd_ioctl_data *data = karg;
6987         struct lu_fid *fid;
6988         __u64 version;
6989         struct mdt_object *obj;
6990         struct mdt_lock_handle  *lh;
6991         int rc;
6992         ENTRY;
6993
6994         if (data->ioc_inlbuf1 == NULL || data->ioc_inllen1 != sizeof(*fid) ||
6995             data->ioc_inlbuf2 == NULL || data->ioc_inllen2 != sizeof(version))
6996                 RETURN(-EINVAL);
6997
6998         fid = (struct lu_fid *)data->ioc_inlbuf1;
6999
7000         if (!fid_is_sane(fid))
7001                 RETURN(-EINVAL);
7002
7003         CDEBUG(D_IOCTL, "getting version for "DFID"\n", PFID(fid));
7004
7005         lh = &mti->mti_lh[MDT_LH_PARENT];
7006         mdt_lock_reg_init(lh, LCK_CR);
7007
7008         obj = mdt_object_find_lock(mti, fid, lh, MDS_INODELOCK_UPDATE);
7009         if (IS_ERR(obj))
7010                 RETURN(PTR_ERR(obj));
7011
7012         if (mdt_object_remote(obj)) {
7013                 rc = -EREMOTE;
7014                 /**
7015                  * before calling version get the correct MDS should be
7016                  * fid, this is error to find remote object here
7017                  */
7018                 CERROR("nonlocal object "DFID"\n", PFID(fid));
7019         } else if (!mdt_object_exists(obj)) {
7020                 *(__u64 *)data->ioc_inlbuf2 = ENOENT_VERSION;
7021                 rc = -ENOENT;
7022         } else {
7023                 version = dt_version_get(mti->mti_env, mdt_obj2dt(obj));
7024                *(__u64 *)data->ioc_inlbuf2 = version;
7025                 rc = 0;
7026         }
7027         mdt_object_unlock_put(mti, obj, lh, 1);
7028         RETURN(rc);
7029 }
7030
7031 /* ioctls on obd dev */
7032 static int mdt_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
7033                          void *karg, void __user *uarg)
7034 {
7035         struct lu_env      env;
7036         struct obd_device *obd = exp->exp_obd;
7037         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
7038         struct dt_device  *dt = mdt->mdt_bottom;
7039         int rc;
7040
7041         ENTRY;
7042         CDEBUG(D_IOCTL, "handling ioctl cmd %#x\n", cmd);
7043         rc = lu_env_init(&env, LCT_MD_THREAD);
7044         if (rc)
7045                 RETURN(rc);
7046
7047         switch (cmd) {
7048         case OBD_IOC_SYNC:
7049                 rc = mdt_device_sync(&env, mdt);
7050                 break;
7051         case OBD_IOC_SET_READONLY:
7052                 rc = dt_sync(&env, dt);
7053                 if (rc == 0)
7054                         rc = dt_ro(&env, dt);
7055                 break;
7056         case OBD_IOC_ABORT_RECOVERY:
7057                 CERROR("%s: Aborting recovery for device\n", mdt_obd_name(mdt));
7058                 obd->obd_abort_recovery = 1;
7059                 target_stop_recovery_thread(obd);
7060                 rc = 0;
7061                 break;
7062         case OBD_IOC_CHANGELOG_REG:
7063         case OBD_IOC_CHANGELOG_DEREG:
7064         case OBD_IOC_CHANGELOG_CLEAR:
7065                 rc = mdt->mdt_child->md_ops->mdo_iocontrol(&env,
7066                                                            mdt->mdt_child,
7067                                                            cmd, len, karg);
7068                 break;
7069         case OBD_IOC_START_LFSCK: {
7070                 struct md_device *next = mdt->mdt_child;
7071                 struct obd_ioctl_data *data = karg;
7072                 struct lfsck_start_param lsp;
7073
7074                 if (unlikely(data == NULL)) {
7075                         rc = -EINVAL;
7076                         break;
7077                 }
7078
7079                 lsp.lsp_start = (struct lfsck_start *)(data->ioc_inlbuf1);
7080                 lsp.lsp_index_valid = 0;
7081                 rc = next->md_ops->mdo_iocontrol(&env, next, cmd, 0, &lsp);
7082                 break;
7083         }
7084         case OBD_IOC_STOP_LFSCK: {
7085                 struct md_device        *next = mdt->mdt_child;
7086                 struct obd_ioctl_data   *data = karg;
7087                 struct lfsck_stop        stop;
7088
7089                 stop.ls_status = LS_STOPPED;
7090                 /* Old lfsck utils may pass NULL @stop. */
7091                 if (data->ioc_inlbuf1 == NULL)
7092                         stop.ls_flags = 0;
7093                 else
7094                         stop.ls_flags =
7095                         ((struct lfsck_stop *)(data->ioc_inlbuf1))->ls_flags;
7096
7097                 rc = next->md_ops->mdo_iocontrol(&env, next, cmd, 0, &stop);
7098                 break;
7099         }
7100         case OBD_IOC_QUERY_LFSCK: {
7101                 struct md_device        *next = mdt->mdt_child;
7102                 struct obd_ioctl_data   *data = karg;
7103
7104                 rc = next->md_ops->mdo_iocontrol(&env, next, cmd, 0,
7105                                                  data->ioc_inlbuf1);
7106                 break;
7107         }
7108         case OBD_IOC_GET_OBJ_VERSION: {
7109                 struct mdt_thread_info *mti;
7110                 mti = lu_context_key_get(&env.le_ctx, &mdt_thread_key);
7111                 memset(mti, 0, sizeof *mti);
7112                 mti->mti_env = &env;
7113                 mti->mti_mdt = mdt;
7114                 mti->mti_exp = exp;
7115
7116                 rc = mdt_ioc_version_get(mti, karg);
7117                 break;
7118         }
7119         case OBD_IOC_CATLOGLIST: {
7120                 struct mdt_thread_info *mti;
7121
7122                 mti = lu_context_key_get(&env.le_ctx, &mdt_thread_key);
7123                 lu_local_obj_fid(&mti->mti_tmp_fid1, LLOG_CATALOGS_OID);
7124                 rc = llog_catalog_list(&env, mdt->mdt_bottom, 0, karg,
7125                                        &mti->mti_tmp_fid1);
7126                 break;
7127          }
7128         default:
7129                 rc = -EOPNOTSUPP;
7130                 CERROR("%s: Not supported cmd = %d, rc = %d\n",
7131                         mdt_obd_name(mdt), cmd, rc);
7132         }
7133
7134         lu_env_fini(&env);
7135         RETURN(rc);
7136 }
7137
7138 static int mdt_postrecov(const struct lu_env *env, struct mdt_device *mdt)
7139 {
7140         struct lu_device *ld = md2lu_dev(mdt->mdt_child);
7141         int rc;
7142         ENTRY;
7143
7144         if (!mdt->mdt_skip_lfsck && !mdt->mdt_bottom->dd_rdonly) {
7145                 struct lfsck_start_param lsp;
7146
7147                 lsp.lsp_start = NULL;
7148                 lsp.lsp_index_valid = 0;
7149                 rc = mdt->mdt_child->md_ops->mdo_iocontrol(env, mdt->mdt_child,
7150                                                            OBD_IOC_START_LFSCK,
7151                                                            0, &lsp);
7152                 if (rc != 0 && rc != -EALREADY)
7153                         CWARN("%s: auto trigger paused LFSCK failed: rc = %d\n",
7154                               mdt_obd_name(mdt), rc);
7155         }
7156
7157         rc = ld->ld_ops->ldo_recovery_complete(env, ld);
7158         RETURN(rc);
7159 }
7160
7161 static int mdt_obd_postrecov(struct obd_device *obd)
7162 {
7163         struct lu_env env;
7164         int rc;
7165
7166         rc = lu_env_init(&env, LCT_MD_THREAD);
7167         if (rc)
7168                 RETURN(rc);
7169         rc = mdt_postrecov(&env, mdt_dev(obd->obd_lu_dev));
7170         lu_env_fini(&env);
7171         return rc;
7172 }
7173
7174 static const struct obd_ops mdt_obd_device_ops = {
7175         .o_owner          = THIS_MODULE,
7176         .o_set_info_async = mdt_obd_set_info_async,
7177         .o_connect        = mdt_obd_connect,
7178         .o_reconnect      = mdt_obd_reconnect,
7179         .o_disconnect     = mdt_obd_disconnect,
7180         .o_init_export    = mdt_init_export,
7181         .o_destroy_export = mdt_destroy_export,
7182         .o_iocontrol      = mdt_iocontrol,
7183         .o_postrecov      = mdt_obd_postrecov,
7184         /* Data-on-MDT IO methods */
7185         .o_preprw         = mdt_obd_preprw,
7186         .o_commitrw       = mdt_obd_commitrw,
7187 };
7188
7189 static struct lu_device* mdt_device_fini(const struct lu_env *env,
7190                                          struct lu_device *d)
7191 {
7192         struct mdt_device *m = mdt_dev(d);
7193         ENTRY;
7194
7195         mdt_fini(env, m);
7196         RETURN(NULL);
7197 }
7198
7199 static struct lu_device *mdt_device_free(const struct lu_env *env,
7200                                          struct lu_device *d)
7201 {
7202         struct mdt_device *m = mdt_dev(d);
7203         ENTRY;
7204
7205         lu_device_fini(&m->mdt_lu_dev);
7206         OBD_FREE_PTR(m);
7207
7208         RETURN(NULL);
7209 }
7210
7211 static struct lu_device *mdt_device_alloc(const struct lu_env *env,
7212                                           struct lu_device_type *t,
7213                                           struct lustre_cfg *cfg)
7214 {
7215         struct lu_device  *l;
7216         struct mdt_device *m;
7217
7218         OBD_ALLOC_PTR(m);
7219         if (m != NULL) {
7220                 int rc;
7221
7222                 l = &m->mdt_lu_dev;
7223                 rc = mdt_init0(env, m, t, cfg);
7224                 if (rc != 0) {
7225                         mdt_device_free(env, l);
7226                         l = ERR_PTR(rc);
7227                         return l;
7228                 }
7229         } else
7230                 l = ERR_PTR(-ENOMEM);
7231         return l;
7232 }
7233
7234 /* context key constructor/destructor: mdt_key_init, mdt_key_fini */
7235 LU_KEY_INIT(mdt, struct mdt_thread_info);
7236
7237 static void mdt_key_fini(const struct lu_context *ctx,
7238                          struct lu_context_key *key, void* data)
7239 {
7240         struct mdt_thread_info *info = data;
7241
7242         if (info->mti_big_lmm) {
7243                 OBD_FREE_LARGE(info->mti_big_lmm, info->mti_big_lmmsize);
7244                 info->mti_big_lmm = NULL;
7245                 info->mti_big_lmmsize = 0;
7246         }
7247
7248         if (info->mti_big_acl) {
7249                 OBD_FREE_LARGE(info->mti_big_acl, info->mti_big_aclsize);
7250                 info->mti_big_acl = NULL;
7251                 info->mti_big_aclsize = 0;
7252         }
7253
7254         OBD_FREE_PTR(info);
7255 }
7256
7257 /* context key: mdt_thread_key */
7258 LU_CONTEXT_KEY_DEFINE(mdt, LCT_MD_THREAD);
7259
7260 struct lu_ucred *mdt_ucred(const struct mdt_thread_info *info)
7261 {
7262         return lu_ucred(info->mti_env);
7263 }
7264
7265 struct lu_ucred *mdt_ucred_check(const struct mdt_thread_info *info)
7266 {
7267         return lu_ucred_check(info->mti_env);
7268 }
7269
7270 /**
7271  * Enable/disable COS (Commit On Sharing).
7272  *
7273  * Set/Clear the COS flag in mdt options.
7274  *
7275  * \param mdt mdt device
7276  * \param val 0 disables COS, other values enable COS
7277  */
7278 void mdt_enable_cos(struct mdt_device *mdt, bool val)
7279 {
7280         struct lu_env env;
7281         int rc;
7282
7283         mdt->mdt_opts.mo_cos = val;
7284         rc = lu_env_init(&env, LCT_LOCAL);
7285         if (unlikely(rc != 0)) {
7286                 CWARN("%s: lu_env initialization failed, cannot "
7287                       "sync: rc = %d\n", mdt_obd_name(mdt), rc);
7288                 return;
7289         }
7290         mdt_device_sync(&env, mdt);
7291         lu_env_fini(&env);
7292 }
7293
7294 /**
7295  * Check COS (Commit On Sharing) status.
7296  *
7297  * Return COS flag status.
7298  *
7299  * \param mdt mdt device
7300  */
7301 int mdt_cos_is_enabled(struct mdt_device *mdt)
7302 {
7303         return mdt->mdt_opts.mo_cos != 0;
7304 }
7305
7306 static struct lu_device_type_operations mdt_device_type_ops = {
7307         .ldto_device_alloc = mdt_device_alloc,
7308         .ldto_device_free  = mdt_device_free,
7309         .ldto_device_fini  = mdt_device_fini
7310 };
7311
7312 static struct lu_device_type mdt_device_type = {
7313         .ldt_tags     = LU_DEVICE_MD,
7314         .ldt_name     = LUSTRE_MDT_NAME,
7315         .ldt_ops      = &mdt_device_type_ops,
7316         .ldt_ctx_tags = LCT_MD_THREAD
7317 };
7318
7319 static int __init mdt_init(void)
7320 {
7321         int rc;
7322
7323         BUILD_BUG_ON(sizeof("0x0123456789ABCDEF:0x01234567:0x01234567") !=
7324                      FID_NOBRACE_LEN + 1);
7325         BUILD_BUG_ON(sizeof("[0x0123456789ABCDEF:0x01234567:0x01234567]") !=
7326                      FID_LEN + 1);
7327         rc = lu_kmem_init(mdt_caches);
7328         if (rc)
7329                 return rc;
7330
7331         rc = mds_mod_init();
7332         if (rc)
7333                 GOTO(lu_fini, rc);
7334
7335         rc = class_register_type(&mdt_obd_device_ops, NULL, true, NULL,
7336                                  LUSTRE_MDT_NAME, &mdt_device_type);
7337         if (rc)
7338                 GOTO(mds_fini, rc);
7339 lu_fini:
7340         if (rc)
7341                 lu_kmem_fini(mdt_caches);
7342 mds_fini:
7343         if (rc)
7344                 mds_mod_exit();
7345         return rc;
7346 }
7347
7348 static void __exit mdt_exit(void)
7349 {
7350         class_unregister_type(LUSTRE_MDT_NAME);
7351         mds_mod_exit();
7352         lu_kmem_fini(mdt_caches);
7353 }
7354
7355 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
7356 MODULE_DESCRIPTION("Lustre Metadata Target ("LUSTRE_MDT_NAME")");
7357 MODULE_VERSION(LUSTRE_VERSION_STRING);
7358 MODULE_LICENSE("GPL");
7359
7360 module_init(mdt_init);
7361 module_exit(mdt_exit);