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