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