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