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