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