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