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