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