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