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