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