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