Whamcloud - gitweb
1152829e3f3d9a68f7f81b2c57eb12d3c60784f4
[fs/lustre-release.git] / lustre / mdc / mdc_request.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_MDC
34
35 #include <linux/init.h>
36 #include <linux/kthread.h>
37 #include <linux/module.h>
38 #include <linux/pagemap.h>
39 #include <linux/user_namespace.h>
40 #include <linux/utsname.h>
41 #ifdef HAVE_UIDGID_HEADER
42 # include <linux/uidgid.h>
43 #endif
44
45 #include <lustre/lustre_errno.h>
46
47 #include <cl_object.h>
48 #include <llog_swab.h>
49 #include <lprocfs_status.h>
50 #include <lustre_acl.h>
51 #include <lustre_fid.h>
52 #include <uapi/linux/lustre_ioctl.h>
53 #include <lustre_kernelcomm.h>
54 #include <lustre_lmv.h>
55 #include <lustre_log.h>
56 #include <uapi/linux/lustre_param.h>
57 #include <lustre_swab.h>
58 #include <obd_class.h>
59
60 #include "mdc_internal.h"
61
62 #define REQUEST_MINOR 244
63
64 static int mdc_cleanup(struct obd_device *obd);
65
66 static inline int mdc_queue_wait(struct ptlrpc_request *req)
67 {
68         struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
69         int rc;
70
71         /* obd_get_request_slot() ensures that this client has no more
72          * than cl_max_rpcs_in_flight RPCs simultaneously inf light
73          * against an MDT. */
74         rc = obd_get_request_slot(cli);
75         if (rc != 0)
76                 return rc;
77
78         rc = ptlrpc_queue_wait(req);
79         obd_put_request_slot(cli);
80
81         return rc;
82 }
83
84 /*
85  * Send MDS_GET_ROOT RPC to fetch root FID.
86  *
87  * If \a fileset is not NULL it should contain a subdirectory off
88  * the ROOT/ directory to be mounted on the client. Return the FID
89  * of the subdirectory to the client to mount onto its mountpoint.
90  *
91  * \param[in]   imp     MDC import
92  * \param[in]   fileset fileset name, which could be NULL
93  * \param[out]  rootfid root FID of this mountpoint
94  * \param[out]  pc      root capa will be unpacked and saved in this pointer
95  *
96  * \retval      0 on success, negative errno on failure
97  */
98 static int mdc_get_root(struct obd_export *exp, const char *fileset,
99                          struct lu_fid *rootfid)
100 {
101         struct ptlrpc_request   *req;
102         struct mdt_body         *body;
103         int                      rc;
104
105         ENTRY;
106
107         if (fileset && !(exp_connect_flags(exp) & OBD_CONNECT_SUBTREE))
108                 RETURN(-ENOTSUPP);
109
110         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
111                                 &RQF_MDS_GET_ROOT);
112         if (req == NULL)
113                 RETURN(-ENOMEM);
114
115         if (fileset != NULL)
116                 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
117                                      strlen(fileset) + 1);
118         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GET_ROOT);
119         if (rc) {
120                 ptlrpc_request_free(req);
121                 RETURN(rc);
122         }
123         mdc_pack_body(req, NULL, 0, 0, -1, 0);
124         if (fileset != NULL) {
125                 char *name = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
126
127                 memcpy(name, fileset, strlen(fileset));
128         }
129         lustre_msg_add_flags(req->rq_reqmsg, LUSTRE_IMP_FULL);
130         req->rq_send_state = LUSTRE_IMP_FULL;
131
132         ptlrpc_request_set_replen(req);
133
134         rc = ptlrpc_queue_wait(req);
135         if (rc)
136                 GOTO(out, rc);
137
138         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
139         if (body == NULL)
140                 GOTO(out, rc = -EPROTO);
141
142         *rootfid = body->mbo_fid1;
143         CDEBUG(D_NET, "root fid="DFID", last_committed=%llu\n",
144                PFID(rootfid), lustre_msg_get_last_committed(req->rq_repmsg));
145         EXIT;
146 out:
147         ptlrpc_req_finished(req);
148
149         return rc;
150 }
151
152 /*
153  * This function now is known to always saying that it will receive 4 buffers
154  * from server. Even for cases when acl_size and md_size is zero, RPC header
155  * will contain 4 fields and RPC itself will contain zero size fields. This is
156  * because mdt_getattr*() _always_ returns 4 fields, but if acl is not needed
157  * and thus zero, it shrinks it, making zero size. The same story about
158  * md_size. And this is course of problem when client waits for smaller number
159  * of fields. This issue will be fixed later when client gets aware of RPC
160  * layouts.  --umka
161  */
162 static int mdc_getattr_common(struct obd_export *exp,
163                               struct ptlrpc_request *req)
164 {
165         struct req_capsule *pill = &req->rq_pill;
166         struct mdt_body    *body;
167         void               *eadata;
168         int                 rc;
169         ENTRY;
170
171         /* Request message already built. */
172         rc = ptlrpc_queue_wait(req);
173         if (rc != 0)
174                 RETURN(rc);
175
176         /* sanity check for the reply */
177         body = req_capsule_server_get(pill, &RMF_MDT_BODY);
178         if (body == NULL)
179                 RETURN(-EPROTO);
180
181         CDEBUG(D_NET, "mode: %o\n", body->mbo_mode);
182
183         mdc_update_max_ea_from_body(exp, body);
184         if (body->mbo_eadatasize != 0) {
185                 eadata = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
186                                                       body->mbo_eadatasize);
187                 if (eadata == NULL)
188                         RETURN(-EPROTO);
189         }
190
191         RETURN(0);
192 }
193
194 static int mdc_getattr(struct obd_export *exp, struct md_op_data *op_data,
195                        struct ptlrpc_request **request)
196 {
197         struct ptlrpc_request *req;
198         int                    rc;
199         ENTRY;
200
201         /* Single MDS without an LMV case */
202         if (op_data->op_flags & MF_GET_MDT_IDX) {
203                 op_data->op_mds = 0;
204                 RETURN(0);
205         }
206         *request = NULL;
207         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
208         if (req == NULL)
209                 RETURN(-ENOMEM);
210
211         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
212         if (rc) {
213                 ptlrpc_request_free(req);
214                 RETURN(rc);
215         }
216
217         mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
218                       op_data->op_mode, -1, 0);
219
220         req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
221                              req->rq_import->imp_connect_data.ocd_max_easize);
222         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
223                              op_data->op_mode);
224         ptlrpc_request_set_replen(req);
225
226         rc = mdc_getattr_common(exp, req);
227         if (rc)
228                 ptlrpc_req_finished(req);
229         else
230                 *request = req;
231         RETURN(rc);
232 }
233
234 static int mdc_getattr_name(struct obd_export *exp, struct md_op_data *op_data,
235                             struct ptlrpc_request **request)
236 {
237         struct ptlrpc_request *req;
238         int                    rc;
239         ENTRY;
240
241         *request = NULL;
242         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
243                                    &RQF_MDS_GETATTR_NAME);
244         if (req == NULL)
245                 RETURN(-ENOMEM);
246
247         req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
248                              op_data->op_namelen + 1);
249
250         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR_NAME);
251         if (rc) {
252                 ptlrpc_request_free(req);
253                 RETURN(rc);
254         }
255
256         mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
257                       op_data->op_mode, op_data->op_suppgids[0], 0);
258
259         if (op_data->op_name) {
260                 char *name = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
261                 LASSERT(strnlen(op_data->op_name, op_data->op_namelen) ==
262                                 op_data->op_namelen);
263                 memcpy(name, op_data->op_name, op_data->op_namelen);
264         }
265
266         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
267                              op_data->op_mode);
268         req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
269                              req->rq_import->imp_connect_data.ocd_max_easize);
270         ptlrpc_request_set_replen(req);
271
272         rc = mdc_getattr_common(exp, req);
273         if (rc)
274                 ptlrpc_req_finished(req);
275         else
276                 *request = req;
277         RETURN(rc);
278 }
279
280 static int mdc_xattr_common(struct obd_export *exp,const struct req_format *fmt,
281                             const struct lu_fid *fid, int opcode, u64 valid,
282                             const char *xattr_name, const char *input,
283                             int input_size, int output_size, int flags,
284                             __u32 suppgid, struct ptlrpc_request **request)
285 {
286         struct ptlrpc_request *req;
287         int   xattr_namelen = 0;
288         char *tmp;
289         int   rc;
290         ENTRY;
291
292         *request = NULL;
293         req = ptlrpc_request_alloc(class_exp2cliimp(exp), fmt);
294         if (req == NULL)
295                 RETURN(-ENOMEM);
296
297         if (xattr_name) {
298                 xattr_namelen = strlen(xattr_name) + 1;
299                 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
300                                      xattr_namelen);
301         }
302         if (input_size) {
303                 LASSERT(input);
304                 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
305                                      input_size);
306         }
307
308         /* Flush local XATTR locks to get rid of a possible cancel RPC */
309         if (opcode == MDS_REINT && fid_is_sane(fid) &&
310             exp->exp_connect_data.ocd_ibits_known & MDS_INODELOCK_XATTR) {
311                 struct list_head cancels = LIST_HEAD_INIT(cancels);
312                 int count;
313
314                 /* Without that packing would fail */
315                 if (input_size == 0)
316                         req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
317                                              RCL_CLIENT, 0);
318
319                 count = mdc_resource_get_unused(exp, fid,
320                                                 &cancels, LCK_EX,
321                                                 MDS_INODELOCK_XATTR);
322
323                 rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
324                 if (rc) {
325                         ptlrpc_request_free(req);
326                         RETURN(rc);
327                 }
328         } else {
329                 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, opcode);
330                 if (rc) {
331                         ptlrpc_request_free(req);
332                         RETURN(rc);
333                 }
334         }
335
336         if (opcode == MDS_REINT) {
337                 struct mdt_rec_setxattr *rec;
338
339                 CLASSERT(sizeof(struct mdt_rec_setxattr) ==
340                          sizeof(struct mdt_rec_reint));
341                 rec = req_capsule_client_get(&req->rq_pill, &RMF_REC_REINT);
342                 rec->sx_opcode = REINT_SETXATTR;
343                 rec->sx_fsuid  = from_kuid(&init_user_ns, current_fsuid());
344                 rec->sx_fsgid  = from_kgid(&init_user_ns, current_fsgid());
345                 rec->sx_cap    = cfs_curproc_cap_pack();
346                 rec->sx_suppgid1 = suppgid;
347                 rec->sx_suppgid2 = -1;
348                 rec->sx_fid    = *fid;
349                 rec->sx_valid  = valid | OBD_MD_FLCTIME;
350                 rec->sx_time   = ktime_get_real_seconds();
351                 rec->sx_size   = output_size;
352                 rec->sx_flags  = flags;
353         } else {
354                 mdc_pack_body(req, fid, valid, output_size, suppgid, flags);
355         }
356
357         if (xattr_name) {
358                 tmp = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
359                 memcpy(tmp, xattr_name, xattr_namelen);
360         }
361         if (input_size) {
362                 tmp = req_capsule_client_get(&req->rq_pill, &RMF_EADATA);
363                 memcpy(tmp, input, input_size);
364         }
365
366         if (req_capsule_has_field(&req->rq_pill, &RMF_EADATA, RCL_SERVER))
367                 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
368                                      RCL_SERVER, output_size);
369         ptlrpc_request_set_replen(req);
370
371         /* make rpc */
372         if (opcode == MDS_REINT)
373                 mdc_get_mod_rpc_slot(req, NULL);
374
375         rc = ptlrpc_queue_wait(req);
376
377         if (opcode == MDS_REINT)
378                 mdc_put_mod_rpc_slot(req, NULL);
379
380         if (rc)
381                 ptlrpc_req_finished(req);
382         else
383                 *request = req;
384         RETURN(rc);
385 }
386
387 static int mdc_setxattr(struct obd_export *exp, const struct lu_fid *fid,
388                         u64 valid, const char *xattr_name,
389                         const char *input, int input_size, int output_size,
390                         int flags, __u32 suppgid,
391                         struct ptlrpc_request **request)
392 {
393         return mdc_xattr_common(exp, &RQF_MDS_REINT_SETXATTR,
394                                 fid, MDS_REINT, valid, xattr_name,
395                                 input, input_size, output_size, flags,
396                                 suppgid, request);
397 }
398
399 static int mdc_getxattr(struct obd_export *exp, const struct lu_fid *fid,
400                         u64 valid, const char *xattr_name,
401                         const char *input, int input_size, int output_size,
402                         int flags, struct ptlrpc_request **request)
403 {
404         return mdc_xattr_common(exp, &RQF_MDS_GETXATTR,
405                                 fid, MDS_GETXATTR, valid, xattr_name,
406                                 input, input_size, output_size, flags,
407                                 -1, request);
408 }
409
410 #ifdef CONFIG_FS_POSIX_ACL
411 static int mdc_unpack_acl(struct ptlrpc_request *req, struct lustre_md *md)
412 {
413         struct req_capsule     *pill = &req->rq_pill;
414         struct mdt_body        *body = md->body;
415         struct posix_acl       *acl;
416         void                   *buf;
417         int                     rc;
418         ENTRY;
419
420         if (!body->mbo_aclsize)
421                 RETURN(0);
422
423         buf = req_capsule_server_sized_get(pill, &RMF_ACL, body->mbo_aclsize);
424
425         if (!buf)
426                 RETURN(-EPROTO);
427
428         acl = posix_acl_from_xattr(&init_user_ns, buf, body->mbo_aclsize);
429         if (acl == NULL)
430                 RETURN(0);
431         if (IS_ERR(acl)) {
432                 rc = PTR_ERR(acl);
433                 CERROR("convert xattr to acl: %d\n", rc);
434                 RETURN(rc);
435         }
436
437         rc = posix_acl_valid(&init_user_ns, acl);
438         if (rc) {
439                 CERROR("validate acl: %d\n", rc);
440                 posix_acl_release(acl);
441                 RETURN(rc);
442         }
443
444         md->posix_acl = acl;
445         RETURN(0);
446 }
447 #else
448 #define mdc_unpack_acl(req, md) 0
449 #endif
450
451 int mdc_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req,
452                       struct obd_export *dt_exp, struct obd_export *md_exp,
453                       struct lustre_md *md)
454 {
455         struct req_capsule *pill = &req->rq_pill;
456         int rc;
457         ENTRY;
458
459         LASSERT(md);
460         memset(md, 0, sizeof(*md));
461
462         md->body = req_capsule_server_get(pill, &RMF_MDT_BODY);
463         LASSERT(md->body != NULL);
464
465         if (md->body->mbo_valid & OBD_MD_FLEASIZE) {
466                 if (!S_ISREG(md->body->mbo_mode)) {
467                         CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, should be a "
468                                "regular file, but is not\n");
469                         GOTO(out, rc = -EPROTO);
470                 }
471
472                 if (md->body->mbo_eadatasize == 0) {
473                         CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, "
474                                "but eadatasize 0\n");
475                         GOTO(out, rc = -EPROTO);
476                 }
477
478                 md->layout.lb_len = md->body->mbo_eadatasize;
479                 md->layout.lb_buf = req_capsule_server_sized_get(pill,
480                                                         &RMF_MDT_MD,
481                                                         md->layout.lb_len);
482                 if (md->layout.lb_buf == NULL)
483                         GOTO(out, rc = -EPROTO);
484         } else if (md->body->mbo_valid & OBD_MD_FLDIREA) {
485                 const union lmv_mds_md *lmv;
486                 size_t lmv_size;
487
488                 if (!S_ISDIR(md->body->mbo_mode)) {
489                         CDEBUG(D_INFO, "OBD_MD_FLDIREA set, should be a "
490                                "directory, but is not\n");
491                         GOTO(out, rc = -EPROTO);
492                 }
493
494                 lmv_size = md->body->mbo_eadatasize;
495                 if (lmv_size == 0) {
496                         CDEBUG(D_INFO, "OBD_MD_FLDIREA is set, "
497                                "but eadatasize 0\n");
498                         RETURN(-EPROTO);
499                 }
500
501                 if (md->body->mbo_valid & OBD_MD_MEA) {
502                         lmv = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
503                                                            lmv_size);
504                         if (lmv == NULL)
505                                 GOTO(out, rc = -EPROTO);
506
507                         rc = md_unpackmd(md_exp, &md->lmv, lmv, lmv_size);
508                         if (rc < 0)
509                                 GOTO(out, rc);
510
511                         if (rc < (typeof(rc))sizeof(*md->lmv)) {
512                                 CDEBUG(D_INFO, "size too small:  "
513                                        "rc < sizeof(*md->lmv) (%d < %d)\n",
514                                         rc, (int)sizeof(*md->lmv));
515                                 GOTO(out, rc = -EPROTO);
516                         }
517                 }
518         }
519         rc = 0;
520
521         if (md->body->mbo_valid & OBD_MD_FLACL) {
522                 /* for ACL, it's possible that FLACL is set but aclsize is zero.
523                  * only when aclsize != 0 there's an actual segment for ACL
524                  * in reply buffer.
525                  */
526                 if (md->body->mbo_aclsize) {
527                         rc = mdc_unpack_acl(req, md);
528                         if (rc)
529                                 GOTO(out, rc);
530 #ifdef CONFIG_FS_POSIX_ACL
531                 } else {
532                         md->posix_acl = NULL;
533 #endif
534                 }
535         }
536
537         EXIT;
538 out:
539         if (rc) {
540 #ifdef CONFIG_FS_POSIX_ACL
541                 posix_acl_release(md->posix_acl);
542 #endif
543         }
544         return rc;
545 }
546
547 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
548 {
549         ENTRY;
550         RETURN(0);
551 }
552
553 void mdc_replay_open(struct ptlrpc_request *req)
554 {
555         struct md_open_data *mod = req->rq_cb_data;
556         struct ptlrpc_request *close_req;
557         struct obd_client_handle *och;
558         struct lustre_handle old;
559         struct mdt_body *body;
560         ENTRY;
561
562         if (mod == NULL) {
563                 DEBUG_REQ(D_ERROR, req,
564                           "Can't properly replay without open data.");
565                 EXIT;
566                 return;
567         }
568
569         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
570         LASSERT(body != NULL);
571
572         spin_lock(&req->rq_lock);
573         och = mod->mod_och;
574         if (och && och->och_fh.cookie)
575                 req->rq_early_free_repbuf = 1;
576         else
577                 req->rq_early_free_repbuf = 0;
578         spin_unlock(&req->rq_lock);
579
580         if (req->rq_early_free_repbuf) {
581                 struct lustre_handle *file_fh;
582
583                 LASSERT(och->och_magic == OBD_CLIENT_HANDLE_MAGIC);
584
585                 file_fh = &och->och_fh;
586                 CDEBUG(D_HA, "updating handle from %#llx to %#llx\n",
587                        file_fh->cookie, body->mbo_handle.cookie);
588                 old = *file_fh;
589                 *file_fh = body->mbo_handle;
590         }
591
592         close_req = mod->mod_close_req;
593         if (close_req) {
594                 __u32 opc = lustre_msg_get_opc(close_req->rq_reqmsg);
595                 struct mdt_ioepoch *epoch;
596
597                 LASSERT(opc == MDS_CLOSE);
598                 epoch = req_capsule_client_get(&close_req->rq_pill,
599                                                &RMF_MDT_EPOCH);
600                 LASSERT(epoch);
601
602                 if (req->rq_early_free_repbuf)
603                         LASSERT(!memcmp(&old, &epoch->mio_handle, sizeof(old)));
604
605                 DEBUG_REQ(D_HA, close_req, "updating close body with new fh");
606                 epoch->mio_handle = body->mbo_handle;
607         }
608         EXIT;
609 }
610
611 void mdc_commit_open(struct ptlrpc_request *req)
612 {
613         struct md_open_data *mod = req->rq_cb_data;
614         if (mod == NULL)
615                 return;
616
617         /**
618          * No need to touch md_open_data::mod_och, it holds a reference on
619          * \var mod and will zero references to each other, \var mod will be
620          * freed after that when md_open_data::mod_och will put the reference.
621          */
622
623         /**
624          * Do not let open request to disappear as it still may be needed
625          * for close rpc to happen (it may happen on evict only, otherwise
626          * ptlrpc_request::rq_replay does not let mdc_commit_open() to be
627          * called), just mark this rpc as committed to distinguish these 2
628          * cases, see mdc_close() for details. The open request reference will
629          * be put along with freeing \var mod.
630          */
631         ptlrpc_request_addref(req);
632         spin_lock(&req->rq_lock);
633         req->rq_committed = 1;
634         spin_unlock(&req->rq_lock);
635         req->rq_cb_data = NULL;
636         obd_mod_put(mod);
637 }
638
639 int mdc_set_open_replay_data(struct obd_export *exp,
640                              struct obd_client_handle *och,
641                              struct lookup_intent *it)
642 {
643         struct md_open_data     *mod;
644         struct mdt_rec_create   *rec;
645         struct mdt_body         *body;
646         struct ptlrpc_request   *open_req = it->it_request;
647         struct obd_import       *imp = open_req->rq_import;
648         ENTRY;
649
650         if (!open_req->rq_replay)
651                 RETURN(0);
652
653         rec = req_capsule_client_get(&open_req->rq_pill, &RMF_REC_REINT);
654         body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
655         LASSERT(rec != NULL);
656         /* Incoming message in my byte order (it's been swabbed). */
657         /* Outgoing messages always in my byte order. */
658         LASSERT(body != NULL);
659
660         /* Only if the import is replayable, we set replay_open data */
661         if (och && imp->imp_replayable) {
662                 mod = obd_mod_alloc();
663                 if (mod == NULL) {
664                         DEBUG_REQ(D_ERROR, open_req,
665                                   "Can't allocate md_open_data");
666                         RETURN(0);
667                 }
668
669                 /**
670                  * Take a reference on \var mod, to be freed on mdc_close().
671                  * It protects \var mod from being freed on eviction (commit
672                  * callback is called despite rq_replay flag).
673                  * Another reference for \var och.
674                  */
675                 obd_mod_get(mod);
676                 obd_mod_get(mod);
677
678                 spin_lock(&open_req->rq_lock);
679                 och->och_mod = mod;
680                 mod->mod_och = och;
681                 mod->mod_is_create = it_disposition(it, DISP_OPEN_CREATE) ||
682                                      it_disposition(it, DISP_OPEN_STRIPE);
683                 mod->mod_open_req = open_req;
684                 open_req->rq_cb_data = mod;
685                 open_req->rq_commit_cb = mdc_commit_open;
686                 open_req->rq_early_free_repbuf = 1;
687                 spin_unlock(&open_req->rq_lock);
688         }
689
690         rec->cr_fid2 = body->mbo_fid1;
691         rec->cr_ioepoch = body->mbo_ioepoch;
692         rec->cr_old_handle.cookie = body->mbo_handle.cookie;
693         open_req->rq_replay_cb = mdc_replay_open;
694         if (!fid_is_sane(&body->mbo_fid1)) {
695                 DEBUG_REQ(D_ERROR, open_req, "Saving replay request with "
696                           "insane fid");
697                 LBUG();
698         }
699
700         DEBUG_REQ(D_RPCTRACE, open_req, "Set up open replay data");
701         RETURN(0);
702 }
703
704 static void mdc_free_open(struct md_open_data *mod)
705 {
706         int committed = 0;
707
708         if (mod->mod_is_create == 0 &&
709             imp_connect_disp_stripe(mod->mod_open_req->rq_import))
710                 committed = 1;
711
712         /**
713          * No reason to asssert here if the open request has
714          * rq_replay == 1. It means that mdc_close failed, and
715          * close request wasn`t sent. It is not fatal to client.
716          * The worst thing is eviction if the client gets open lock
717          **/
718
719         DEBUG_REQ(D_RPCTRACE, mod->mod_open_req, "free open request rq_replay"
720                   "= %d\n", mod->mod_open_req->rq_replay);
721
722         ptlrpc_request_committed(mod->mod_open_req, committed);
723         if (mod->mod_close_req)
724                 ptlrpc_request_committed(mod->mod_close_req, committed);
725 }
726
727 int mdc_clear_open_replay_data(struct obd_export *exp,
728                                struct obd_client_handle *och)
729 {
730         struct md_open_data *mod = och->och_mod;
731         ENTRY;
732
733         /**
734          * It is possible to not have \var mod in a case of eviction between
735          * lookup and ll_file_open().
736          **/
737         if (mod == NULL)
738                 RETURN(0);
739
740         LASSERT(mod != LP_POISON);
741         LASSERT(mod->mod_open_req != NULL);
742
743         spin_lock(&mod->mod_open_req->rq_lock);
744         if (mod->mod_och)
745                 mod->mod_och->och_fh.cookie = 0;
746         mod->mod_open_req->rq_early_free_repbuf = 0;
747         spin_unlock(&mod->mod_open_req->rq_lock);
748         mdc_free_open(mod);
749
750         mod->mod_och = NULL;
751         och->och_mod = NULL;
752         obd_mod_put(mod);
753
754         RETURN(0);
755 }
756
757 static int mdc_close(struct obd_export *exp, struct md_op_data *op_data,
758                      struct md_open_data *mod, struct ptlrpc_request **request)
759 {
760         struct obd_device     *obd = class_exp2obd(exp);
761         struct ptlrpc_request *req;
762         struct req_format     *req_fmt;
763         int                    rc;
764         int                    saved_rc = 0;
765         ENTRY;
766
767         if (op_data->op_bias & MDS_HSM_RELEASE) {
768                 req_fmt = &RQF_MDS_INTENT_CLOSE;
769
770                 /* allocate a FID for volatile file */
771                 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
772                 if (rc < 0) {
773                         CERROR("%s: "DFID" failed to allocate FID: %d\n",
774                                obd->obd_name, PFID(&op_data->op_fid1), rc);
775                         /* save the errcode and proceed to close */
776                         saved_rc = rc;
777                 }
778         } else if (op_data->op_bias & MDS_CLOSE_LAYOUT_SWAP) {
779                 req_fmt = &RQF_MDS_INTENT_CLOSE;
780         } else {
781                 req_fmt = &RQF_MDS_CLOSE;
782         }
783
784         *request = NULL;
785         if (OBD_FAIL_CHECK(OBD_FAIL_MDC_CLOSE))
786                 req = NULL;
787         else
788                 req = ptlrpc_request_alloc(class_exp2cliimp(exp), req_fmt);
789
790         /* Ensure that this close's handle is fixed up during replay. */
791         if (likely(mod != NULL)) {
792                 LASSERTF(mod->mod_open_req != NULL &&
793                          mod->mod_open_req->rq_type != LI_POISON,
794                          "POISONED open %p!\n", mod->mod_open_req);
795
796                 mod->mod_close_req = req;
797
798                 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
799                 /* We no longer want to preserve this open for replay even
800                  * though the open was committed. b=3632, b=3633 */
801                 spin_lock(&mod->mod_open_req->rq_lock);
802                 mod->mod_open_req->rq_replay = 0;
803                 spin_unlock(&mod->mod_open_req->rq_lock);
804         } else {
805                 CDEBUG(D_HA, "couldn't find open req; expecting close error\n");
806         }
807         if (req == NULL) {
808                 /**
809                  * TODO: repeat close after errors
810                  */
811                 CWARN("%s: close of FID "DFID" failed, file reference will be "
812                       "dropped when this client unmounts or is evicted\n",
813                       obd->obd_name, PFID(&op_data->op_fid1));
814                 GOTO(out, rc = -ENOMEM);
815         }
816
817         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_CLOSE);
818         if (rc) {
819                 ptlrpc_request_free(req);
820                 req = NULL;
821                 GOTO(out, rc);
822         }
823
824         /* To avoid a livelock (bug 7034), we need to send CLOSE RPCs to a
825          * portal whose threads are not taking any DLM locks and are therefore
826          * always progressing */
827         req->rq_request_portal = MDS_READPAGE_PORTAL;
828         ptlrpc_at_set_req_timeout(req);
829
830
831         mdc_close_pack(req, op_data);
832
833         req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
834                              obd->u.cli.cl_default_mds_easize);
835
836         ptlrpc_request_set_replen(req);
837
838         mdc_get_mod_rpc_slot(req, NULL);
839         rc = ptlrpc_queue_wait(req);
840         mdc_put_mod_rpc_slot(req, NULL);
841
842         if (req->rq_repmsg == NULL) {
843                 CDEBUG(D_RPCTRACE, "request failed to send: %p, %d\n", req,
844                        req->rq_status);
845                 if (rc == 0)
846                         rc = req->rq_status ?: -EIO;
847         } else if (rc == 0 || rc == -EAGAIN) {
848                 struct mdt_body *body;
849
850                 rc = lustre_msg_get_status(req->rq_repmsg);
851                 if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
852                         DEBUG_REQ(D_ERROR, req, "type == PTL_RPC_MSG_ERR, err "
853                                   "= %d", rc);
854                         if (rc > 0)
855                                 rc = -rc;
856                 }
857                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
858                 if (body == NULL)
859                         rc = -EPROTO;
860         } else if (rc == -ESTALE) {
861                 /**
862                  * it can be allowed error after 3633 if open was committed and
863                  * server failed before close was sent. Let's check if mod
864                  * exists and return no error in that case
865                  */
866                 if (mod) {
867                         DEBUG_REQ(D_HA, req, "Reset ESTALE = %d", rc);
868                         LASSERT(mod->mod_open_req != NULL);
869                         if (mod->mod_open_req->rq_committed)
870                                 rc = 0;
871                 }
872         }
873
874 out:
875         if (mod) {
876                 if (rc != 0)
877                         mod->mod_close_req = NULL;
878                 /* Since now, mod is accessed through open_req only,
879                  * thus close req does not keep a reference on mod anymore. */
880                 obd_mod_put(mod);
881         }
882         *request = req;
883
884         RETURN(rc < 0 ? rc : saved_rc);
885 }
886
887 static int mdc_getpage(struct obd_export *exp, const struct lu_fid *fid,
888                        u64 offset, struct page **pages, int npages,
889                        struct ptlrpc_request **request)
890 {
891         struct ptlrpc_request   *req;
892         struct ptlrpc_bulk_desc *desc;
893         int                      i;
894         wait_queue_head_t        waitq;
895         int                      resends = 0;
896         struct l_wait_info       lwi;
897         int                      rc;
898         ENTRY;
899
900         *request = NULL;
901         init_waitqueue_head(&waitq);
902
903 restart_bulk:
904         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_READPAGE);
905         if (req == NULL)
906                 RETURN(-ENOMEM);
907
908         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_READPAGE);
909         if (rc) {
910                 ptlrpc_request_free(req);
911                 RETURN(rc);
912         }
913
914         req->rq_request_portal = MDS_READPAGE_PORTAL;
915         ptlrpc_at_set_req_timeout(req);
916
917         desc = ptlrpc_prep_bulk_imp(req, npages, 1,
918                                     PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KIOV,
919                                     MDS_BULK_PORTAL,
920                                     &ptlrpc_bulk_kiov_pin_ops);
921         if (desc == NULL) {
922                 ptlrpc_req_finished(req);
923                 RETURN(-ENOMEM);
924         }
925
926         /* NB req now owns desc and will free it when it gets freed */
927         for (i = 0; i < npages; i++)
928                 desc->bd_frag_ops->add_kiov_frag(desc, pages[i], 0,
929                                                  PAGE_SIZE);
930
931         mdc_readdir_pack(req, offset, PAGE_SIZE * npages, fid);
932
933         ptlrpc_request_set_replen(req);
934         rc = ptlrpc_queue_wait(req);
935         if (rc) {
936                 ptlrpc_req_finished(req);
937                 if (rc != -ETIMEDOUT)
938                         RETURN(rc);
939
940                 resends++;
941                 if (!client_should_resend(resends, &exp->exp_obd->u.cli)) {
942                         CERROR("%s: too many resend retries: rc = %d\n",
943                                exp->exp_obd->obd_name, -EIO);
944                         RETURN(-EIO);
945                 }
946                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(resends), NULL, NULL,
947                                        NULL);
948                 l_wait_event(waitq, 0, &lwi);
949
950                 goto restart_bulk;
951         }
952
953         rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
954                                           req->rq_bulk->bd_nob_transferred);
955         if (rc < 0) {
956                 ptlrpc_req_finished(req);
957                 RETURN(rc);
958         }
959
960         if (req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK) {
961                 CERROR("%s: unexpected bytes transferred: %d (%ld expected)\n",
962                        exp->exp_obd->obd_name, req->rq_bulk->bd_nob_transferred,
963                        PAGE_SIZE * npages);
964                 ptlrpc_req_finished(req);
965                 RETURN(-EPROTO);
966         }
967
968         *request = req;
969         RETURN(0);
970 }
971
972 static void mdc_release_page(struct page *page, int remove)
973 {
974         if (remove) {
975                 lock_page(page);
976                 if (likely(page->mapping != NULL))
977                         truncate_complete_page(page->mapping, page);
978                 unlock_page(page);
979         }
980         put_page(page);
981 }
982
983 static struct page *mdc_page_locate(struct address_space *mapping, __u64 *hash,
984                                     __u64 *start, __u64 *end, int hash64)
985 {
986         /*
987          * Complement of hash is used as an index so that
988          * radix_tree_gang_lookup() can be used to find a page with starting
989          * hash _smaller_ than one we are looking for.
990          */
991         unsigned long offset = hash_x_index(*hash, hash64);
992         struct page *page;
993         int found;
994
995         spin_lock_irq(&mapping->tree_lock);
996         found = radix_tree_gang_lookup(&mapping->page_tree,
997                                        (void **)&page, offset, 1);
998         if (found > 0 && !radix_tree_exceptional_entry(page)) {
999                 struct lu_dirpage *dp;
1000
1001                 get_page(page);
1002                 spin_unlock_irq(&mapping->tree_lock);
1003                 /*
1004                  * In contrast to find_lock_page() we are sure that directory
1005                  * page cannot be truncated (while DLM lock is held) and,
1006                  * hence, can avoid restart.
1007                  *
1008                  * In fact, page cannot be locked here at all, because
1009                  * mdc_read_page_remote does synchronous io.
1010                  */
1011                 wait_on_page_locked(page);
1012                 if (PageUptodate(page)) {
1013                         dp = kmap(page);
1014                         if (BITS_PER_LONG == 32 && hash64) {
1015                                 *start = le64_to_cpu(dp->ldp_hash_start) >> 32;
1016                                 *end   = le64_to_cpu(dp->ldp_hash_end) >> 32;
1017                                 *hash  = *hash >> 32;
1018                         } else {
1019                                 *start = le64_to_cpu(dp->ldp_hash_start);
1020                                 *end   = le64_to_cpu(dp->ldp_hash_end);
1021                         }
1022                         if (unlikely(*start == 1 && *hash == 0))
1023                                 *hash = *start;
1024                         else
1025                                 LASSERTF(*start <= *hash, "start = %#llx"
1026                                          ",end = %#llx,hash = %#llx\n",
1027                                          *start, *end, *hash);
1028                         CDEBUG(D_VFSTRACE, "offset %lx [%#llx %#llx],"
1029                               " hash %#llx\n", offset, *start, *end, *hash);
1030                         if (*hash > *end) {
1031                                 kunmap(page);
1032                                 mdc_release_page(page, 0);
1033                                 page = NULL;
1034                         } else if (*end != *start && *hash == *end) {
1035                                 /*
1036                                  * upon hash collision, remove this page,
1037                                  * otherwise put page reference, and
1038                                  * mdc_read_page_remote() will issue RPC to
1039                                  * fetch the page we want.
1040                                  */
1041                                 kunmap(page);
1042                                 mdc_release_page(page,
1043                                     le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
1044                                 page = NULL;
1045                         }
1046                 } else {
1047                         put_page(page);
1048                         page = ERR_PTR(-EIO);
1049                 }
1050         } else {
1051                 spin_unlock_irq(&mapping->tree_lock);
1052                 page = NULL;
1053         }
1054         return page;
1055 }
1056
1057 /*
1058  * Adjust a set of pages, each page containing an array of lu_dirpages,
1059  * so that each page can be used as a single logical lu_dirpage.
1060  *
1061  * A lu_dirpage is laid out as follows, where s = ldp_hash_start,
1062  * e = ldp_hash_end, f = ldp_flags, p = padding, and each "ent" is a
1063  * struct lu_dirent.  It has size up to LU_PAGE_SIZE. The ldp_hash_end
1064  * value is used as a cookie to request the next lu_dirpage in a
1065  * directory listing that spans multiple pages (two in this example):
1066  *   ________
1067  *  |        |
1068  * .|--------v-------   -----.
1069  * |s|e|f|p|ent|ent| ... |ent|
1070  * '--|--------------   -----'   Each PAGE contains a single
1071  *    '------.                   lu_dirpage.
1072  * .---------v-------   -----.
1073  * |s|e|f|p|ent| 0 | ... | 0 |
1074  * '-----------------   -----'
1075  *
1076  * However, on hosts where the native VM page size (PAGE_SIZE) is
1077  * larger than LU_PAGE_SIZE, a single host page may contain multiple
1078  * lu_dirpages. After reading the lu_dirpages from the MDS, the
1079  * ldp_hash_end of the first lu_dirpage refers to the one immediately
1080  * after it in the same PAGE (arrows simplified for brevity, but
1081  * in general e0==s1, e1==s2, etc.):
1082  *
1083  * .--------------------   -----.
1084  * |s0|e0|f0|p|ent|ent| ... |ent|
1085  * |---v----------------   -----|
1086  * |s1|e1|f1|p|ent|ent| ... |ent|
1087  * |---v----------------   -----|  Here, each PAGE contains
1088  *             ...                 multiple lu_dirpages.
1089  * |---v----------------   -----|
1090  * |s'|e'|f'|p|ent|ent| ... |ent|
1091  * '---|----------------   -----'
1092  *     v
1093  * .----------------------------.
1094  * |        next PAGE           |
1095  *
1096  * This structure is transformed into a single logical lu_dirpage as follows:
1097  *
1098  * - Replace e0 with e' so the request for the next lu_dirpage gets the page
1099  *   labeled 'next PAGE'.
1100  *
1101  * - Copy the LDF_COLLIDE flag from f' to f0 to correctly reflect whether
1102  *   a hash collision with the next page exists.
1103  *
1104  * - Adjust the lde_reclen of the ending entry of each lu_dirpage to span
1105  *   to the first entry of the next lu_dirpage.
1106  */
1107 #if PAGE_SIZE > LU_PAGE_SIZE
1108 static void mdc_adjust_dirpages(struct page **pages, int cfs_pgs, int lu_pgs)
1109 {
1110         int i;
1111
1112         for (i = 0; i < cfs_pgs; i++) {
1113                 struct lu_dirpage       *dp = kmap(pages[i]);
1114                 struct lu_dirpage       *first = dp;
1115                 struct lu_dirent        *end_dirent = NULL;
1116                 struct lu_dirent        *ent;
1117                 __u64           hash_end = le64_to_cpu(dp->ldp_hash_end);
1118                 __u32           flags = le32_to_cpu(dp->ldp_flags);
1119
1120                 while (--lu_pgs > 0) {
1121                         ent = lu_dirent_start(dp);
1122                         for (end_dirent = ent; ent != NULL;
1123                              end_dirent = ent, ent = lu_dirent_next(ent));
1124
1125                         /* Advance dp to next lu_dirpage. */
1126                         dp = (struct lu_dirpage *)((char *)dp + LU_PAGE_SIZE);
1127
1128                         /* Check if we've reached the end of the PAGE. */
1129                         if (!((unsigned long)dp & ~PAGE_MASK))
1130                                 break;
1131
1132                         /* Save the hash and flags of this lu_dirpage. */
1133                         hash_end = le64_to_cpu(dp->ldp_hash_end);
1134                         flags = le32_to_cpu(dp->ldp_flags);
1135
1136                         /* Check if lu_dirpage contains no entries. */
1137                         if (end_dirent == NULL)
1138                                 break;
1139
1140                         /* Enlarge the end entry lde_reclen from 0 to
1141                          * first entry of next lu_dirpage. */
1142                         LASSERT(le16_to_cpu(end_dirent->lde_reclen) == 0);
1143                         end_dirent->lde_reclen =
1144                                 cpu_to_le16((char *)(dp->ldp_entries) -
1145                                             (char *)end_dirent);
1146                 }
1147
1148                 first->ldp_hash_end = hash_end;
1149                 first->ldp_flags &= ~cpu_to_le32(LDF_COLLIDE);
1150                 first->ldp_flags |= flags & cpu_to_le32(LDF_COLLIDE);
1151
1152                 kunmap(pages[i]);
1153         }
1154         LASSERTF(lu_pgs == 0, "left = %d\n", lu_pgs);
1155 }
1156 #else
1157 #define mdc_adjust_dirpages(pages, cfs_pgs, lu_pgs) do {} while (0)
1158 #endif  /* PAGE_SIZE > LU_PAGE_SIZE */
1159
1160 /* parameters for readdir page */
1161 struct readpage_param {
1162         struct md_op_data       *rp_mod;
1163         __u64                   rp_off;
1164         int                     rp_hash64;
1165         struct obd_export       *rp_exp;
1166         struct md_callback      *rp_cb;
1167 };
1168
1169 #ifndef HAVE_DELETE_FROM_PAGE_CACHE
1170 static inline void delete_from_page_cache(struct page *page)
1171 {
1172         remove_from_page_cache(page);
1173         put_page(page);
1174 }
1175 #endif
1176
1177 /**
1178  * Read pages from server.
1179  *
1180  * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
1181  * a header lu_dirpage which describes the start/end hash, and whether this
1182  * page is empty (contains no dir entry) or hash collide with next page.
1183  * After client receives reply, several pages will be integrated into dir page
1184  * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
1185  * lu_dirpage for this integrated page will be adjusted.
1186  **/
1187 static int mdc_read_page_remote(void *data, struct page *page0)
1188 {
1189         struct readpage_param *rp = data;
1190         struct page **page_pool;
1191         struct page *page;
1192         struct lu_dirpage *dp;
1193         struct md_op_data *op_data = rp->rp_mod;
1194         struct ptlrpc_request *req;
1195         int max_pages;
1196         struct inode *inode;
1197         struct lu_fid *fid;
1198         int rd_pgs = 0; /* number of pages actually read */
1199         int npages;
1200         int i;
1201         int rc;
1202         ENTRY;
1203
1204         max_pages = rp->rp_exp->exp_obd->u.cli.cl_max_pages_per_rpc;
1205         inode = op_data->op_data;
1206         fid = &op_data->op_fid1;
1207         LASSERT(inode != NULL);
1208
1209         OBD_ALLOC(page_pool, sizeof(page_pool[0]) * max_pages);
1210         if (page_pool != NULL) {
1211                 page_pool[0] = page0;
1212         } else {
1213                 page_pool = &page0;
1214                 max_pages = 1;
1215         }
1216
1217         for (npages = 1; npages < max_pages; npages++) {
1218                 page = __page_cache_alloc(mapping_gfp_mask(inode->i_mapping)
1219                                           | __GFP_COLD);
1220                 if (page == NULL)
1221                         break;
1222                 page_pool[npages] = page;
1223         }
1224
1225         rc = mdc_getpage(rp->rp_exp, fid, rp->rp_off, page_pool, npages, &req);
1226         if (rc < 0) {
1227                 /* page0 is special, which was added into page cache early */
1228                 delete_from_page_cache(page0);
1229         } else {
1230                 int lu_pgs;
1231
1232                 rd_pgs = (req->rq_bulk->bd_nob_transferred + PAGE_SIZE - 1) >>
1233                         PAGE_SHIFT;
1234                 lu_pgs = req->rq_bulk->bd_nob_transferred >> LU_PAGE_SHIFT;
1235                 LASSERT(!(req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK));
1236
1237                 CDEBUG(D_INODE, "read %d(%d) pages\n", rd_pgs, lu_pgs);
1238
1239                 mdc_adjust_dirpages(page_pool, rd_pgs, lu_pgs);
1240
1241                 SetPageUptodate(page0);
1242         }
1243         unlock_page(page0);
1244
1245         ptlrpc_req_finished(req);
1246         CDEBUG(D_CACHE, "read %d/%d pages\n", rd_pgs, npages);
1247         for (i = 1; i < npages; i++) {
1248                 unsigned long   offset;
1249                 __u64           hash;
1250                 int ret;
1251
1252                 page = page_pool[i];
1253
1254                 if (rc < 0 || i >= rd_pgs) {
1255                         put_page(page);
1256                         continue;
1257                 }
1258
1259                 SetPageUptodate(page);
1260
1261                 dp = kmap(page);
1262                 hash = le64_to_cpu(dp->ldp_hash_start);
1263                 kunmap(page);
1264
1265                 offset = hash_x_index(hash, rp->rp_hash64);
1266
1267                 prefetchw(&page->flags);
1268                 ret = add_to_page_cache_lru(page, inode->i_mapping, offset,
1269                                             GFP_KERNEL);
1270                 if (ret == 0)
1271                         unlock_page(page);
1272                 else
1273                         CDEBUG(D_VFSTRACE, "page %lu add to page cache failed:"
1274                                " rc = %d\n", offset, ret);
1275                 put_page(page);
1276         }
1277
1278         if (page_pool != &page0)
1279                 OBD_FREE(page_pool, sizeof(page_pool[0]) * max_pages);
1280
1281         RETURN(rc);
1282 }
1283
1284 /**
1285  * Read dir page from cache first, if it can not find it, read it from
1286  * server and add into the cache.
1287  *
1288  * \param[in] exp       MDC export
1289  * \param[in] op_data   client MD stack parameters, transfering parameters
1290  *                      between different layers on client MD stack.
1291  * \param[in] cb_op     callback required for ldlm lock enqueue during
1292  *                      read page
1293  * \param[in] hash_offset the hash offset of the page to be read
1294  * \param[in] ppage     the page to be read
1295  *
1296  * retval               = 0 get the page successfully
1297  *                      errno(<0) get the page failed
1298  */
1299 static int mdc_read_page(struct obd_export *exp, struct md_op_data *op_data,
1300                          struct md_callback *cb_op, __u64 hash_offset,
1301                          struct page **ppage)
1302 {
1303         struct lookup_intent    it = { .it_op = IT_READDIR };
1304         struct page             *page;
1305         struct inode            *dir = op_data->op_data;
1306         struct address_space    *mapping;
1307         struct lu_dirpage       *dp;
1308         __u64                   start = 0;
1309         __u64                   end = 0;
1310         struct lustre_handle    lockh;
1311         struct ptlrpc_request   *enq_req = NULL;
1312         struct readpage_param   rp_param;
1313         int rc;
1314
1315         ENTRY;
1316
1317         *ppage = NULL;
1318
1319         LASSERT(dir != NULL);
1320         mapping = dir->i_mapping;
1321
1322         rc = mdc_intent_lock(exp, op_data, &it, &enq_req,
1323                              cb_op->md_blocking_ast, 0);
1324         if (enq_req != NULL)
1325                 ptlrpc_req_finished(enq_req);
1326
1327         if (rc < 0) {
1328                 CERROR("%s: "DFID" lock enqueue fails: rc = %d\n",
1329                        exp->exp_obd->obd_name, PFID(&op_data->op_fid1), rc);
1330                 RETURN(rc);
1331         }
1332
1333         rc = 0;
1334         lockh.cookie = it.it_lock_handle;
1335         mdc_set_lock_data(exp, &lockh, dir, NULL);
1336
1337         rp_param.rp_off = hash_offset;
1338         rp_param.rp_hash64 = op_data->op_cli_flags & CLI_HASH64;
1339         page = mdc_page_locate(mapping, &rp_param.rp_off, &start, &end,
1340                                rp_param.rp_hash64);
1341         if (IS_ERR(page)) {
1342                 CERROR("%s: dir page locate: "DFID" at %llu: rc %ld\n",
1343                        exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1344                        rp_param.rp_off, PTR_ERR(page));
1345                 GOTO(out_unlock, rc = PTR_ERR(page));
1346         } else if (page != NULL) {
1347                 /*
1348                  * XXX nikita: not entirely correct handling of a corner case:
1349                  * suppose hash chain of entries with hash value HASH crosses
1350                  * border between pages P0 and P1. First both P0 and P1 are
1351                  * cached, seekdir() is called for some entry from the P0 part
1352                  * of the chain. Later P0 goes out of cache. telldir(HASH)
1353                  * happens and finds P1, as it starts with matching hash
1354                  * value. Remaining entries from P0 part of the chain are
1355                  * skipped. (Is that really a bug?)
1356                  *
1357                  * Possible solutions: 0. don't cache P1 is such case, handle
1358                  * it as an "overflow" page. 1. invalidate all pages at
1359                  * once. 2. use HASH|1 as an index for P1.
1360                  */
1361                 GOTO(hash_collision, page);
1362         }
1363
1364         rp_param.rp_exp = exp;
1365         rp_param.rp_mod = op_data;
1366         page = read_cache_page(mapping,
1367                                hash_x_index(rp_param.rp_off,
1368                                             rp_param.rp_hash64),
1369                                mdc_read_page_remote, &rp_param);
1370         if (IS_ERR(page)) {
1371                 CDEBUG(D_INFO, "%s: read cache page: "DFID" at %llu: %ld\n",
1372                        exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1373                        rp_param.rp_off, PTR_ERR(page));
1374                 GOTO(out_unlock, rc = PTR_ERR(page));
1375         }
1376
1377         wait_on_page_locked(page);
1378         (void)kmap(page);
1379         if (!PageUptodate(page)) {
1380                 CERROR("%s: page not updated: "DFID" at %llu: rc %d\n",
1381                        exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1382                        rp_param.rp_off, -5);
1383                 goto fail;
1384         }
1385         if (!PageChecked(page))
1386                 SetPageChecked(page);
1387         if (PageError(page)) {
1388                 CERROR("%s: page error: "DFID" at %llu: rc %d\n",
1389                        exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1390                        rp_param.rp_off, -5);
1391                 goto fail;
1392         }
1393
1394 hash_collision:
1395         dp = page_address(page);
1396         if (BITS_PER_LONG == 32 && rp_param.rp_hash64) {
1397                 start = le64_to_cpu(dp->ldp_hash_start) >> 32;
1398                 end   = le64_to_cpu(dp->ldp_hash_end) >> 32;
1399                 rp_param.rp_off = hash_offset >> 32;
1400         } else {
1401                 start = le64_to_cpu(dp->ldp_hash_start);
1402                 end   = le64_to_cpu(dp->ldp_hash_end);
1403                 rp_param.rp_off = hash_offset;
1404         }
1405         if (end == start) {
1406                 LASSERT(start == rp_param.rp_off);
1407                 CWARN("Page-wide hash collision: %#lx\n", (unsigned long)end);
1408 #if BITS_PER_LONG == 32
1409                 CWARN("Real page-wide hash collision at [%llu %llu] with "
1410                       "hash %llu\n", le64_to_cpu(dp->ldp_hash_start),
1411                       le64_to_cpu(dp->ldp_hash_end), hash_offset);
1412 #endif
1413
1414                 /*
1415                  * Fetch whole overflow chain...
1416                  *
1417                  * XXX not yet.
1418                  */
1419                 goto fail;
1420         }
1421         *ppage = page;
1422 out_unlock:
1423         ldlm_lock_decref(&lockh, it.it_lock_mode);
1424         return rc;
1425 fail:
1426         kunmap(page);
1427         mdc_release_page(page, 1);
1428         rc = -EIO;
1429         goto out_unlock;
1430 }
1431
1432
1433 static int mdc_statfs(const struct lu_env *env,
1434                       struct obd_export *exp, struct obd_statfs *osfs,
1435                       __u64 max_age, __u32 flags)
1436 {
1437         struct obd_device     *obd = class_exp2obd(exp);
1438         struct ptlrpc_request *req;
1439         struct obd_statfs     *msfs;
1440         struct obd_import     *imp = NULL;
1441         int                    rc;
1442         ENTRY;
1443
1444         /*
1445          * Since the request might also come from lprocfs, so we need
1446          * sync this with client_disconnect_export Bug15684
1447          */
1448         down_read(&obd->u.cli.cl_sem);
1449         if (obd->u.cli.cl_import)
1450                 imp = class_import_get(obd->u.cli.cl_import);
1451         up_read(&obd->u.cli.cl_sem);
1452         if (!imp)
1453                 RETURN(-ENODEV);
1454
1455         req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_STATFS,
1456                                         LUSTRE_MDS_VERSION, MDS_STATFS);
1457         if (req == NULL)
1458                 GOTO(output, rc = -ENOMEM);
1459
1460         ptlrpc_request_set_replen(req);
1461
1462         if (flags & OBD_STATFS_NODELAY) {
1463                 /* procfs requests not want stay in wait for avoid deadlock */
1464                 req->rq_no_resend = 1;
1465                 req->rq_no_delay = 1;
1466         }
1467
1468         rc = ptlrpc_queue_wait(req);
1469         if (rc) {
1470                 /* check connection error first */
1471                 if (imp->imp_connect_error)
1472                         rc = imp->imp_connect_error;
1473                 GOTO(out, rc);
1474         }
1475
1476         msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1477         if (msfs == NULL)
1478                 GOTO(out, rc = -EPROTO);
1479
1480         *osfs = *msfs;
1481         EXIT;
1482 out:
1483         ptlrpc_req_finished(req);
1484 output:
1485         class_import_put(imp);
1486         return rc;
1487 }
1488
1489 static int mdc_ioc_fid2path(struct obd_export *exp, struct getinfo_fid2path *gf)
1490 {
1491         __u32 keylen, vallen;
1492         void *key;
1493         int rc;
1494
1495         if (gf->gf_pathlen > PATH_MAX)
1496                 RETURN(-ENAMETOOLONG);
1497         if (gf->gf_pathlen < 2)
1498                 RETURN(-EOVERFLOW);
1499
1500         /* Key is KEY_FID2PATH + getinfo_fid2path description */
1501         keylen = cfs_size_round(sizeof(KEY_FID2PATH) + sizeof(*gf) +
1502                                 sizeof(struct lu_fid));
1503         OBD_ALLOC(key, keylen);
1504         if (key == NULL)
1505                 RETURN(-ENOMEM);
1506         memcpy(key, KEY_FID2PATH, sizeof(KEY_FID2PATH));
1507         memcpy(key + cfs_size_round(sizeof(KEY_FID2PATH)), gf, sizeof(*gf));
1508         memcpy(key + cfs_size_round(sizeof(KEY_FID2PATH)) + sizeof(*gf),
1509                gf->gf_u.gf_root_fid, sizeof(struct lu_fid));
1510         CDEBUG(D_IOCTL, "path get "DFID" from %llu #%d\n",
1511                PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno);
1512
1513         if (!fid_is_sane(&gf->gf_fid))
1514                 GOTO(out, rc = -EINVAL);
1515
1516         /* Val is struct getinfo_fid2path result plus path */
1517         vallen = sizeof(*gf) + gf->gf_pathlen;
1518
1519         rc = obd_get_info(NULL, exp, keylen, key, &vallen, gf);
1520         if (rc != 0 && rc != -EREMOTE)
1521                 GOTO(out, rc);
1522
1523         if (vallen <= sizeof(*gf))
1524                 GOTO(out, rc = -EPROTO);
1525         if (vallen > sizeof(*gf) + gf->gf_pathlen)
1526                 GOTO(out, rc = -EOVERFLOW);
1527
1528         CDEBUG(D_IOCTL, "path got "DFID" from %llu #%d: %s\n",
1529                PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno,
1530                gf->gf_pathlen < 512 ? gf->gf_u.gf_path :
1531                /* only log the last 512 characters of the path */
1532                gf->gf_u.gf_path + gf->gf_pathlen - 512);
1533
1534 out:
1535         OBD_FREE(key, keylen);
1536         return rc;
1537 }
1538
1539 static int mdc_ioc_hsm_progress(struct obd_export *exp,
1540                                 struct hsm_progress_kernel *hpk)
1541 {
1542         struct obd_import               *imp = class_exp2cliimp(exp);
1543         struct hsm_progress_kernel      *req_hpk;
1544         struct ptlrpc_request           *req;
1545         int                              rc;
1546         ENTRY;
1547
1548         req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_PROGRESS,
1549                                         LUSTRE_MDS_VERSION, MDS_HSM_PROGRESS);
1550         if (req == NULL)
1551                 GOTO(out, rc = -ENOMEM);
1552
1553         mdc_pack_body(req, NULL, 0, 0, -1, 0);
1554
1555         /* Copy hsm_progress struct */
1556         req_hpk = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_PROGRESS);
1557         if (req_hpk == NULL)
1558                 GOTO(out, rc = -EPROTO);
1559
1560         *req_hpk = *hpk;
1561         req_hpk->hpk_errval = lustre_errno_hton(hpk->hpk_errval);
1562
1563         ptlrpc_request_set_replen(req);
1564
1565         mdc_get_mod_rpc_slot(req, NULL);
1566         rc = ptlrpc_queue_wait(req);
1567         mdc_put_mod_rpc_slot(req, NULL);
1568
1569         GOTO(out, rc);
1570 out:
1571         ptlrpc_req_finished(req);
1572         return rc;
1573 }
1574
1575 static int mdc_ioc_hsm_ct_register(struct obd_import *imp, __u32 archives)
1576 {
1577         __u32                   *archive_mask;
1578         struct ptlrpc_request   *req;
1579         int                      rc;
1580         ENTRY;
1581
1582         req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_REGISTER,
1583                                         LUSTRE_MDS_VERSION,
1584                                         MDS_HSM_CT_REGISTER);
1585         if (req == NULL)
1586                 GOTO(out, rc = -ENOMEM);
1587
1588         mdc_pack_body(req, NULL, 0, 0, -1, 0);
1589
1590         /* Copy hsm_progress struct */
1591         archive_mask = req_capsule_client_get(&req->rq_pill,
1592                                               &RMF_MDS_HSM_ARCHIVE);
1593         if (archive_mask == NULL)
1594                 GOTO(out, rc = -EPROTO);
1595
1596         *archive_mask = archives;
1597
1598         ptlrpc_request_set_replen(req);
1599
1600         rc = mdc_queue_wait(req);
1601         GOTO(out, rc);
1602 out:
1603         ptlrpc_req_finished(req);
1604         return rc;
1605 }
1606
1607 static int mdc_ioc_hsm_current_action(struct obd_export *exp,
1608                                       struct md_op_data *op_data)
1609 {
1610         struct hsm_current_action       *hca = op_data->op_data;
1611         struct hsm_current_action       *req_hca;
1612         struct ptlrpc_request           *req;
1613         int                              rc;
1614         ENTRY;
1615
1616         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1617                                    &RQF_MDS_HSM_ACTION);
1618         if (req == NULL)
1619                 RETURN(-ENOMEM);
1620
1621         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_ACTION);
1622         if (rc) {
1623                 ptlrpc_request_free(req);
1624                 RETURN(rc);
1625         }
1626
1627         mdc_pack_body(req, &op_data->op_fid1, 0, 0,
1628                       op_data->op_suppgids[0], 0);
1629
1630         ptlrpc_request_set_replen(req);
1631
1632         rc = mdc_queue_wait(req);
1633         if (rc)
1634                 GOTO(out, rc);
1635
1636         req_hca = req_capsule_server_get(&req->rq_pill,
1637                                          &RMF_MDS_HSM_CURRENT_ACTION);
1638         if (req_hca == NULL)
1639                 GOTO(out, rc = -EPROTO);
1640
1641         *hca = *req_hca;
1642
1643         EXIT;
1644 out:
1645         ptlrpc_req_finished(req);
1646         return rc;
1647 }
1648
1649 static int mdc_ioc_hsm_ct_unregister(struct obd_import *imp)
1650 {
1651         struct ptlrpc_request   *req;
1652         int                      rc;
1653         ENTRY;
1654
1655         req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_UNREGISTER,
1656                                         LUSTRE_MDS_VERSION,
1657                                         MDS_HSM_CT_UNREGISTER);
1658         if (req == NULL)
1659                 GOTO(out, rc = -ENOMEM);
1660
1661         mdc_pack_body(req, NULL, 0, 0, -1, 0);
1662
1663         ptlrpc_request_set_replen(req);
1664
1665         rc = mdc_queue_wait(req);
1666         GOTO(out, rc);
1667 out:
1668         ptlrpc_req_finished(req);
1669         return rc;
1670 }
1671
1672 static int mdc_ioc_hsm_state_get(struct obd_export *exp,
1673                                  struct md_op_data *op_data)
1674 {
1675         struct hsm_user_state   *hus = op_data->op_data;
1676         struct hsm_user_state   *req_hus;
1677         struct ptlrpc_request   *req;
1678         int                      rc;
1679         ENTRY;
1680
1681         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1682                                    &RQF_MDS_HSM_STATE_GET);
1683         if (req == NULL)
1684                 RETURN(-ENOMEM);
1685
1686         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_GET);
1687         if (rc != 0) {
1688                 ptlrpc_request_free(req);
1689                 RETURN(rc);
1690         }
1691
1692         mdc_pack_body(req, &op_data->op_fid1, 0, 0,
1693                       op_data->op_suppgids[0], 0);
1694
1695         ptlrpc_request_set_replen(req);
1696
1697         rc = mdc_queue_wait(req);
1698         if (rc)
1699                 GOTO(out, rc);
1700
1701         req_hus = req_capsule_server_get(&req->rq_pill, &RMF_HSM_USER_STATE);
1702         if (req_hus == NULL)
1703                 GOTO(out, rc = -EPROTO);
1704
1705         *hus = *req_hus;
1706
1707         EXIT;
1708 out:
1709         ptlrpc_req_finished(req);
1710         return rc;
1711 }
1712
1713 static int mdc_ioc_hsm_state_set(struct obd_export *exp,
1714                                  struct md_op_data *op_data)
1715 {
1716         struct hsm_state_set    *hss = op_data->op_data;
1717         struct hsm_state_set    *req_hss;
1718         struct ptlrpc_request   *req;
1719         int                      rc;
1720         ENTRY;
1721
1722         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1723                                    &RQF_MDS_HSM_STATE_SET);
1724         if (req == NULL)
1725                 RETURN(-ENOMEM);
1726
1727         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_SET);
1728         if (rc) {
1729                 ptlrpc_request_free(req);
1730                 RETURN(rc);
1731         }
1732
1733         mdc_pack_body(req, &op_data->op_fid1, 0, 0,
1734                       op_data->op_suppgids[0], 0);
1735
1736         /* Copy states */
1737         req_hss = req_capsule_client_get(&req->rq_pill, &RMF_HSM_STATE_SET);
1738         if (req_hss == NULL)
1739                 GOTO(out, rc = -EPROTO);
1740         *req_hss = *hss;
1741
1742         ptlrpc_request_set_replen(req);
1743
1744         mdc_get_mod_rpc_slot(req, NULL);
1745         rc = ptlrpc_queue_wait(req);
1746         mdc_put_mod_rpc_slot(req, NULL);
1747
1748         GOTO(out, rc);
1749 out:
1750         ptlrpc_req_finished(req);
1751         return rc;
1752 }
1753
1754 static int mdc_ioc_hsm_request(struct obd_export *exp,
1755                                struct hsm_user_request *hur)
1756 {
1757         struct obd_import       *imp = class_exp2cliimp(exp);
1758         struct ptlrpc_request   *req;
1759         struct hsm_request      *req_hr;
1760         struct hsm_user_item    *req_hui;
1761         char                    *req_opaque;
1762         int                      rc;
1763         ENTRY;
1764
1765         req = ptlrpc_request_alloc(imp, &RQF_MDS_HSM_REQUEST);
1766         if (req == NULL)
1767                 GOTO(out, rc = -ENOMEM);
1768
1769         req_capsule_set_size(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM, RCL_CLIENT,
1770                              hur->hur_request.hr_itemcount
1771                              * sizeof(struct hsm_user_item));
1772         req_capsule_set_size(&req->rq_pill, &RMF_GENERIC_DATA, RCL_CLIENT,
1773                              hur->hur_request.hr_data_len);
1774
1775         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_REQUEST);
1776         if (rc) {
1777                 ptlrpc_request_free(req);
1778                 RETURN(rc);
1779         }
1780
1781         mdc_pack_body(req, NULL, 0, 0, -1, 0);
1782
1783         /* Copy hsm_request struct */
1784         req_hr = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_REQUEST);
1785         if (req_hr == NULL)
1786                 GOTO(out, rc = -EPROTO);
1787         *req_hr = hur->hur_request;
1788
1789         /* Copy hsm_user_item structs */
1790         req_hui = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM);
1791         if (req_hui == NULL)
1792                 GOTO(out, rc = -EPROTO);
1793         memcpy(req_hui, hur->hur_user_item,
1794                hur->hur_request.hr_itemcount * sizeof(struct hsm_user_item));
1795
1796         /* Copy opaque field */
1797         req_opaque = req_capsule_client_get(&req->rq_pill, &RMF_GENERIC_DATA);
1798         if (req_opaque == NULL)
1799                 GOTO(out, rc = -EPROTO);
1800         memcpy(req_opaque, hur_data(hur), hur->hur_request.hr_data_len);
1801
1802         ptlrpc_request_set_replen(req);
1803
1804         mdc_get_mod_rpc_slot(req, NULL);
1805         rc = ptlrpc_queue_wait(req);
1806         mdc_put_mod_rpc_slot(req, NULL);
1807
1808         GOTO(out, rc);
1809
1810 out:
1811         ptlrpc_req_finished(req);
1812         return rc;
1813 }
1814
1815 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
1816                                 struct lustre_kernelcomm *lk);
1817
1818 static int mdc_quotactl(struct obd_device *unused, struct obd_export *exp,
1819                         struct obd_quotactl *oqctl)
1820 {
1821         struct ptlrpc_request   *req;
1822         struct obd_quotactl     *oqc;
1823         int                      rc;
1824         ENTRY;
1825
1826         req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1827                                         &RQF_MDS_QUOTACTL, LUSTRE_MDS_VERSION,
1828                                         MDS_QUOTACTL);
1829         if (req == NULL)
1830                 RETURN(-ENOMEM);
1831
1832         oqc = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1833         *oqc = *oqctl;
1834
1835         ptlrpc_request_set_replen(req);
1836         ptlrpc_at_set_req_timeout(req);
1837         req->rq_no_resend = 1;
1838
1839         rc = ptlrpc_queue_wait(req);
1840         if (rc)
1841                 CERROR("ptlrpc_queue_wait failed, rc: %d\n", rc);
1842
1843         if (req->rq_repmsg &&
1844             (oqc = req_capsule_server_get(&req->rq_pill, &RMF_OBD_QUOTACTL))) {
1845                 *oqctl = *oqc;
1846         } else if (!rc) {
1847                 CERROR ("Can't unpack obd_quotactl\n");
1848                 rc = -EPROTO;
1849         }
1850         ptlrpc_req_finished(req);
1851
1852         RETURN(rc);
1853 }
1854
1855 static int mdc_ioc_swap_layouts(struct obd_export *exp,
1856                                 struct md_op_data *op_data)
1857 {
1858         struct list_head cancels = LIST_HEAD_INIT(cancels);
1859         struct ptlrpc_request   *req;
1860         int                      rc, count;
1861         struct mdc_swap_layouts *msl, *payload;
1862         ENTRY;
1863
1864         msl = op_data->op_data;
1865
1866         /* When the MDT will get the MDS_SWAP_LAYOUTS RPC the
1867          * first thing it will do is to cancel the 2 layout
1868          * locks held by this client.
1869          * So the client must cancel its layout locks on the 2 fids
1870          * with the request RPC to avoid extra RPC round trips.
1871          */
1872         count = mdc_resource_get_unused(exp, &op_data->op_fid1, &cancels,
1873                                         LCK_EX, MDS_INODELOCK_LAYOUT |
1874                                         MDS_INODELOCK_XATTR);
1875         count += mdc_resource_get_unused(exp, &op_data->op_fid2, &cancels,
1876                                          LCK_EX, MDS_INODELOCK_LAYOUT |
1877                                          MDS_INODELOCK_XATTR);
1878
1879         req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1880                                    &RQF_MDS_SWAP_LAYOUTS);
1881         if (req == NULL) {
1882                 ldlm_lock_list_put(&cancels, l_bl_ast, count);
1883                 RETURN(-ENOMEM);
1884         }
1885
1886         rc = mdc_prep_elc_req(exp, req, MDS_SWAP_LAYOUTS, &cancels, count);
1887         if (rc) {
1888                 ptlrpc_request_free(req);
1889                 RETURN(rc);
1890         }
1891
1892         mdc_swap_layouts_pack(req, op_data);
1893
1894         payload = req_capsule_client_get(&req->rq_pill, &RMF_SWAP_LAYOUTS);
1895         LASSERT(payload);
1896
1897         *payload = *msl;
1898
1899         ptlrpc_request_set_replen(req);
1900
1901         rc = ptlrpc_queue_wait(req);
1902         if (rc)
1903                 GOTO(out, rc);
1904         EXIT;
1905
1906 out:
1907         ptlrpc_req_finished(req);
1908         return rc;
1909 }
1910
1911 static int mdc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
1912                          void *karg, void __user *uarg)
1913 {
1914         struct obd_device *obd = exp->exp_obd;
1915         struct obd_ioctl_data *data = karg;
1916         struct obd_import *imp = obd->u.cli.cl_import;
1917         int rc;
1918         ENTRY;
1919
1920         if (!try_module_get(THIS_MODULE)) {
1921                 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
1922                        module_name(THIS_MODULE));
1923                 return -EINVAL;
1924         }
1925         switch (cmd) {
1926         case OBD_IOC_FID2PATH:
1927                 rc = mdc_ioc_fid2path(exp, karg);
1928                 GOTO(out, rc);
1929         case LL_IOC_HSM_CT_START:
1930                 rc = mdc_ioc_hsm_ct_start(exp, karg);
1931                 /* ignore if it was already registered on this MDS. */
1932                 if (rc == -EEXIST)
1933                         rc = 0;
1934                 GOTO(out, rc);
1935         case LL_IOC_HSM_PROGRESS:
1936                 rc = mdc_ioc_hsm_progress(exp, karg);
1937                 GOTO(out, rc);
1938         case LL_IOC_HSM_STATE_GET:
1939                 rc = mdc_ioc_hsm_state_get(exp, karg);
1940                 GOTO(out, rc);
1941         case LL_IOC_HSM_STATE_SET:
1942                 rc = mdc_ioc_hsm_state_set(exp, karg);
1943                 GOTO(out, rc);
1944         case LL_IOC_HSM_ACTION:
1945                 rc = mdc_ioc_hsm_current_action(exp, karg);
1946                 GOTO(out, rc);
1947         case LL_IOC_HSM_REQUEST:
1948                 rc = mdc_ioc_hsm_request(exp, karg);
1949                 GOTO(out, rc);
1950         case OBD_IOC_CLIENT_RECOVER:
1951                 rc = ptlrpc_recover_import(imp, data->ioc_inlbuf1, 0);
1952                 if (rc < 0)
1953                         GOTO(out, rc);
1954                 GOTO(out, rc = 0);
1955         case IOC_OSC_SET_ACTIVE:
1956                 rc = ptlrpc_set_import_active(imp, data->ioc_offset);
1957                 GOTO(out, rc);
1958         case OBD_IOC_PING_TARGET:
1959                 rc = ptlrpc_obd_ping(obd);
1960                 GOTO(out, rc);
1961         /*
1962          * Normally IOC_OBD_STATFS, OBD_IOC_QUOTACTL iocontrol are handled by
1963          * LMV instead of MDC. But when the cluster is upgraded from 1.8,
1964          * there'd be no LMV layer thus we might be called here. Eventually
1965          * this code should be removed.
1966          * bz20731, LU-592.
1967          */
1968         case IOC_OBD_STATFS: {
1969                 struct obd_statfs stat_buf = {0};
1970
1971                 if (*((__u32 *) data->ioc_inlbuf2) != 0)
1972                         GOTO(out, rc = -ENODEV);
1973
1974                 /* copy UUID */
1975                 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(obd),
1976                                  min((int)data->ioc_plen2,
1977                                      (int)sizeof(struct obd_uuid))))
1978                         GOTO(out, rc = -EFAULT);
1979
1980                 rc = mdc_statfs(NULL, obd->obd_self_export, &stat_buf,
1981                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
1982                                 0);
1983                 if (rc != 0)
1984                         GOTO(out, rc);
1985
1986                 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
1987                                      min((int) data->ioc_plen1,
1988                                          (int) sizeof(stat_buf))))
1989                         GOTO(out, rc = -EFAULT);
1990
1991                 GOTO(out, rc = 0);
1992         }
1993         case OBD_IOC_QUOTACTL: {
1994                 struct if_quotactl *qctl = karg;
1995                 struct obd_quotactl *oqctl;
1996
1997                 OBD_ALLOC_PTR(oqctl);
1998                 if (oqctl == NULL)
1999                         GOTO(out, rc = -ENOMEM);
2000
2001                 QCTL_COPY(oqctl, qctl);
2002                 rc = obd_quotactl(exp, oqctl);
2003                 if (rc == 0) {
2004                         QCTL_COPY(qctl, oqctl);
2005                         qctl->qc_valid = QC_MDTIDX;
2006                         qctl->obd_uuid = obd->u.cli.cl_target_uuid;
2007                 }
2008
2009                 OBD_FREE_PTR(oqctl);
2010                 GOTO(out, rc);
2011         }
2012         case LL_IOC_GET_CONNECT_FLAGS:
2013                 if (copy_to_user(uarg, exp_connect_flags_ptr(exp),
2014                                  sizeof(*exp_connect_flags_ptr(exp))))
2015                         GOTO(out, rc = -EFAULT);
2016
2017                 GOTO(out, rc = 0);
2018         case LL_IOC_LOV_SWAP_LAYOUTS:
2019                 rc = mdc_ioc_swap_layouts(exp, karg);
2020                 GOTO(out, rc);
2021         default:
2022                 CERROR("unrecognised ioctl: cmd = %#x\n", cmd);
2023                 GOTO(out, rc = -ENOTTY);
2024         }
2025 out:
2026         module_put(THIS_MODULE);
2027
2028         return rc;
2029 }
2030
2031 static int mdc_get_info_rpc(struct obd_export *exp,
2032                             u32 keylen, void *key,
2033                             u32 vallen, void *val)
2034 {
2035         struct obd_import      *imp = class_exp2cliimp(exp);
2036         struct ptlrpc_request  *req;
2037         char                   *tmp;
2038         int                     rc = -EINVAL;
2039         ENTRY;
2040
2041         req = ptlrpc_request_alloc(imp, &RQF_MDS_GET_INFO);
2042         if (req == NULL)
2043                 RETURN(-ENOMEM);
2044
2045         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY,
2046                              RCL_CLIENT, keylen);
2047         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VALLEN,
2048                              RCL_CLIENT, sizeof(vallen));
2049
2050         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GET_INFO);
2051         if (rc) {
2052                 ptlrpc_request_free(req);
2053                 RETURN(rc);
2054         }
2055
2056         tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
2057         memcpy(tmp, key, keylen);
2058         tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_VALLEN);
2059         memcpy(tmp, &vallen, sizeof(vallen));
2060
2061         req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VAL,
2062                              RCL_SERVER, vallen);
2063         ptlrpc_request_set_replen(req);
2064
2065         rc = ptlrpc_queue_wait(req);
2066         /* -EREMOTE means the get_info result is partial, and it needs to
2067          * continue on another MDT, see fid2path part in lmv_iocontrol */
2068         if (rc == 0 || rc == -EREMOTE) {
2069                 tmp = req_capsule_server_get(&req->rq_pill, &RMF_GETINFO_VAL);
2070                 memcpy(val, tmp, vallen);
2071                 if (ptlrpc_rep_need_swab(req)) {
2072                         if (KEY_IS(KEY_FID2PATH))
2073                                 lustre_swab_fid2path(val);
2074                 }
2075         }
2076         ptlrpc_req_finished(req);
2077
2078         RETURN(rc);
2079 }
2080
2081 static void lustre_swab_hai(struct hsm_action_item *h)
2082 {
2083         __swab32s(&h->hai_len);
2084         __swab32s(&h->hai_action);
2085         lustre_swab_lu_fid(&h->hai_fid);
2086         lustre_swab_lu_fid(&h->hai_dfid);
2087         __swab64s(&h->hai_cookie);
2088         __swab64s(&h->hai_extent.offset);
2089         __swab64s(&h->hai_extent.length);
2090         __swab64s(&h->hai_gid);
2091 }
2092
2093 static void lustre_swab_hal(struct hsm_action_list *h)
2094 {
2095         struct hsm_action_item  *hai;
2096         __u32                    i;
2097
2098         __swab32s(&h->hal_version);
2099         __swab32s(&h->hal_count);
2100         __swab32s(&h->hal_archive_id);
2101         __swab64s(&h->hal_flags);
2102         hai = hai_first(h);
2103         for (i = 0; i < h->hal_count; i++, hai = hai_next(hai))
2104                 lustre_swab_hai(hai);
2105 }
2106
2107 static void lustre_swab_kuch(struct kuc_hdr *l)
2108 {
2109         __swab16s(&l->kuc_magic);
2110         /* __u8 l->kuc_transport */
2111         __swab16s(&l->kuc_msgtype);
2112         __swab16s(&l->kuc_msglen);
2113 }
2114
2115 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
2116                                 struct lustre_kernelcomm *lk)
2117 {
2118         struct obd_import  *imp = class_exp2cliimp(exp);
2119         __u32               archive = lk->lk_data;
2120         int                 rc = 0;
2121
2122         if (lk->lk_group != KUC_GRP_HSM) {
2123                 CERROR("Bad copytool group %d\n", lk->lk_group);
2124                 return -EINVAL;
2125         }
2126
2127         CDEBUG(D_HSM, "CT start r%d w%d u%d g%d f%#x\n", lk->lk_rfd, lk->lk_wfd,
2128                lk->lk_uid, lk->lk_group, lk->lk_flags);
2129
2130         if (lk->lk_flags & LK_FLG_STOP) {
2131                 /* Unregister with the coordinator */
2132                 rc = mdc_ioc_hsm_ct_unregister(imp);
2133         } else {
2134                 rc = mdc_ioc_hsm_ct_register(imp, archive);
2135         }
2136
2137         return rc;
2138 }
2139
2140 /**
2141  * Send a message to any listening copytools
2142  * @param val KUC message (kuc_hdr + hsm_action_list)
2143  * @param len total length of message
2144  */
2145 static int mdc_hsm_copytool_send(const struct obd_uuid *uuid,
2146                                  size_t len, void *val)
2147 {
2148         struct kuc_hdr          *lh = (struct kuc_hdr *)val;
2149         struct hsm_action_list  *hal = (struct hsm_action_list *)(lh + 1);
2150         int                      rc;
2151         ENTRY;
2152
2153         if (len < sizeof(*lh) + sizeof(*hal)) {
2154                 CERROR("Short HSM message %zu < %zu\n", len,
2155                        sizeof(*lh) + sizeof(*hal));
2156                 RETURN(-EPROTO);
2157         }
2158         if (lh->kuc_magic == __swab16(KUC_MAGIC)) {
2159                 lustre_swab_kuch(lh);
2160                 lustre_swab_hal(hal);
2161         } else if (lh->kuc_magic != KUC_MAGIC) {
2162                 CERROR("Bad magic %x!=%x\n", lh->kuc_magic, KUC_MAGIC);
2163                 RETURN(-EPROTO);
2164         }
2165
2166         CDEBUG(D_HSM, " Received message mg=%x t=%d m=%d l=%d actions=%d "
2167                "on %s\n",
2168                lh->kuc_magic, lh->kuc_transport, lh->kuc_msgtype,
2169                lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
2170
2171         /* Broadcast to HSM listeners */
2172         rc = libcfs_kkuc_group_put(uuid, KUC_GRP_HSM, lh);
2173
2174         RETURN(rc);
2175 }
2176
2177 /**
2178  * callback function passed to kuc for re-registering each HSM copytool
2179  * running on MDC, after MDT shutdown/recovery.
2180  * @param data copytool registration data
2181  * @param cb_arg callback argument (obd_import)
2182  */
2183 static int mdc_hsm_ct_reregister(void *data, void *cb_arg)
2184 {
2185         struct kkuc_ct_data     *kcd = data;
2186         struct obd_import       *imp = (struct obd_import *)cb_arg;
2187         int                      rc;
2188
2189         if (kcd == NULL || kcd->kcd_magic != KKUC_CT_DATA_MAGIC)
2190                 return -EPROTO;
2191
2192         CDEBUG(D_HA, "%s: recover copytool registration to MDT (archive=%#x)\n",
2193                imp->imp_obd->obd_name, kcd->kcd_archive);
2194         rc = mdc_ioc_hsm_ct_register(imp, kcd->kcd_archive);
2195
2196         /* ignore error if the copytool is already registered */
2197         return (rc == -EEXIST) ? 0 : rc;
2198 }
2199
2200 /**
2201  * Re-establish all kuc contexts with MDT
2202  * after MDT shutdown/recovery.
2203  */
2204 static int mdc_kuc_reregister(struct obd_import *imp)
2205 {
2206         /* re-register HSM agents */
2207         return libcfs_kkuc_group_foreach(&imp->imp_obd->obd_uuid, KUC_GRP_HSM,
2208                                          mdc_hsm_ct_reregister, imp);
2209 }
2210
2211 static int mdc_set_info_async(const struct lu_env *env,
2212                               struct obd_export *exp,
2213                               u32 keylen, void *key,
2214                               u32 vallen, void *val,
2215                               struct ptlrpc_request_set *set)
2216 {
2217         struct obd_import       *imp = class_exp2cliimp(exp);
2218         int                      rc;
2219         ENTRY;
2220
2221         if (KEY_IS(KEY_READ_ONLY)) {
2222                 if (vallen != sizeof(int))
2223                         RETURN(-EINVAL);
2224
2225                 spin_lock(&imp->imp_lock);
2226                 if (*((int *)val)) {
2227                         imp->imp_connect_flags_orig |= OBD_CONNECT_RDONLY;
2228                         imp->imp_connect_data.ocd_connect_flags |=
2229                                                         OBD_CONNECT_RDONLY;
2230                 } else {
2231                         imp->imp_connect_flags_orig &= ~OBD_CONNECT_RDONLY;
2232                         imp->imp_connect_data.ocd_connect_flags &=
2233                                                         ~OBD_CONNECT_RDONLY;
2234                 }
2235                 spin_unlock(&imp->imp_lock);
2236
2237                 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2238                                        keylen, key, vallen, val, set);
2239                 RETURN(rc);
2240         }
2241         if (KEY_IS(KEY_SPTLRPC_CONF)) {
2242                 sptlrpc_conf_client_adapt(exp->exp_obd);
2243                 RETURN(0);
2244         }
2245         if (KEY_IS(KEY_FLUSH_CTX)) {
2246                 sptlrpc_import_flush_my_ctx(imp);
2247                 RETURN(0);
2248         }
2249         if (KEY_IS(KEY_CHANGELOG_CLEAR)) {
2250                 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2251                                        keylen, key, vallen, val, set);
2252                 RETURN(rc);
2253         }
2254         if (KEY_IS(KEY_HSM_COPYTOOL_SEND)) {
2255                 rc = mdc_hsm_copytool_send(&imp->imp_obd->obd_uuid, vallen,
2256                                            val);
2257                 RETURN(rc);
2258         }
2259
2260         if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2261                 __u32 *default_easize = val;
2262
2263                 exp->exp_obd->u.cli.cl_default_mds_easize = *default_easize;
2264                 RETURN(0);
2265         }
2266
2267         CERROR("Unknown key %s\n", (char *)key);
2268         RETURN(-EINVAL);
2269 }
2270
2271 static int mdc_get_info(const struct lu_env *env, struct obd_export *exp,
2272                         __u32 keylen, void *key, __u32 *vallen, void *val)
2273 {
2274         int rc = -EINVAL;
2275
2276         if (KEY_IS(KEY_MAX_EASIZE)) {
2277                 __u32 mdsize, *max_easize;
2278
2279                 if (*vallen != sizeof(int))
2280                         RETURN(-EINVAL);
2281                 mdsize = *(__u32 *)val;
2282                 if (mdsize > exp->exp_obd->u.cli.cl_max_mds_easize)
2283                         exp->exp_obd->u.cli.cl_max_mds_easize = mdsize;
2284                 max_easize = val;
2285                 *max_easize = exp->exp_obd->u.cli.cl_max_mds_easize;
2286                 RETURN(0);
2287         } else if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2288                 __u32 *default_easize;
2289
2290                 if (*vallen != sizeof(int))
2291                         RETURN(-EINVAL);
2292                 default_easize = val;
2293                 *default_easize = exp->exp_obd->u.cli.cl_default_mds_easize;
2294                 RETURN(0);
2295         } else if (KEY_IS(KEY_CONN_DATA)) {
2296                 struct obd_import *imp = class_exp2cliimp(exp);
2297                 struct obd_connect_data *data = val;
2298
2299                 if (*vallen != sizeof(*data))
2300                         RETURN(-EINVAL);
2301
2302                 *data = imp->imp_connect_data;
2303                 RETURN(0);
2304         } else if (KEY_IS(KEY_TGT_COUNT)) {
2305                 *((__u32 *)val) = 1;
2306                 RETURN(0);
2307         }
2308
2309         rc = mdc_get_info_rpc(exp, keylen, key, *vallen, val);
2310
2311         RETURN(rc);
2312 }
2313
2314 static int mdc_fsync(struct obd_export *exp, const struct lu_fid *fid,
2315                      struct ptlrpc_request **request)
2316 {
2317         struct ptlrpc_request *req;
2318         int                    rc;
2319         ENTRY;
2320
2321         *request = NULL;
2322         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_SYNC);
2323         if (req == NULL)
2324                 RETURN(-ENOMEM);
2325
2326         rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SYNC);
2327         if (rc) {
2328                 ptlrpc_request_free(req);
2329                 RETURN(rc);
2330         }
2331
2332         mdc_pack_body(req, fid, 0, 0, -1, 0);
2333
2334         ptlrpc_request_set_replen(req);
2335
2336         rc = ptlrpc_queue_wait(req);
2337         if (rc)
2338                 ptlrpc_req_finished(req);
2339         else
2340                 *request = req;
2341         RETURN(rc);
2342 }
2343
2344 static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
2345                             enum obd_import_event event)
2346 {
2347         int rc = 0;
2348
2349         LASSERT(imp->imp_obd == obd);
2350
2351         switch (event) {
2352
2353         case IMP_EVENT_INACTIVE: {
2354                 struct client_obd *cli = &obd->u.cli;
2355                 /*
2356                  * Flush current sequence to make client obtain new one
2357                  * from server in case of disconnect/reconnect.
2358                  */
2359                 down_read(&cli->cl_seq_rwsem);
2360                 if (cli->cl_seq)
2361                         seq_client_flush(cli->cl_seq);
2362                 up_read(&cli->cl_seq_rwsem);
2363
2364                 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_INACTIVE);
2365                 break;
2366         }
2367         case IMP_EVENT_INVALIDATE: {
2368                 struct ldlm_namespace *ns = obd->obd_namespace;
2369
2370                 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
2371
2372                 break;
2373         }
2374         case IMP_EVENT_ACTIVE:
2375                 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVE);
2376                 /* redo the kuc registration after reconnecting */
2377                 if (rc == 0)
2378                         rc = mdc_kuc_reregister(imp);
2379                 break;
2380         case IMP_EVENT_OCD:
2381                 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_OCD);
2382                 break;
2383         case IMP_EVENT_DISCON:
2384         case IMP_EVENT_DEACTIVATE:
2385         case IMP_EVENT_ACTIVATE:
2386                 break;
2387         default:
2388                 CERROR("Unknown import event %x\n", event);
2389                 LBUG();
2390         }
2391         RETURN(rc);
2392 }
2393
2394 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
2395                   struct lu_fid *fid, struct md_op_data *op_data)
2396 {
2397         struct client_obd *cli = &exp->exp_obd->u.cli;
2398         int rc = -EIO;
2399
2400         ENTRY;
2401
2402         down_read(&cli->cl_seq_rwsem);
2403         if (cli->cl_seq)
2404                 rc = seq_client_alloc_fid(env, cli->cl_seq, fid);
2405         up_read(&cli->cl_seq_rwsem);
2406
2407         RETURN(rc);
2408 }
2409
2410 static struct obd_uuid *mdc_get_uuid(struct obd_export *exp)
2411 {
2412         struct client_obd *cli = &exp->exp_obd->u.cli;
2413         return &cli->cl_target_uuid;
2414 }
2415
2416 /**
2417  * Determine whether the lock can be canceled before replaying it during
2418  * recovery, non zero value will be return if the lock can be canceled,
2419  * or zero returned for not
2420  */
2421 static int mdc_cancel_weight(struct ldlm_lock *lock)
2422 {
2423         if (lock->l_resource->lr_type != LDLM_IBITS)
2424                 RETURN(0);
2425
2426         /* FIXME: if we ever get into a situation where there are too many
2427          * opened files with open locks on a single node, then we really
2428          * should replay these open locks to reget it */
2429         if (lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_OPEN)
2430                 RETURN(0);
2431
2432         RETURN(1);
2433 }
2434
2435 static int mdc_resource_inode_free(struct ldlm_resource *res)
2436 {
2437         if (res->lr_lvb_inode)
2438                 res->lr_lvb_inode = NULL;
2439
2440         return 0;
2441 }
2442
2443 static struct ldlm_valblock_ops inode_lvbo = {
2444         .lvbo_free = mdc_resource_inode_free
2445 };
2446
2447 static int mdc_llog_init(struct obd_device *obd)
2448 {
2449         struct obd_llog_group   *olg = &obd->obd_olg;
2450         struct llog_ctxt        *ctxt;
2451         int                      rc;
2452
2453         ENTRY;
2454
2455         rc = llog_setup(NULL, obd, olg, LLOG_CHANGELOG_REPL_CTXT, obd,
2456                         &llog_client_ops);
2457         if (rc < 0)
2458                 RETURN(rc);
2459
2460         ctxt = llog_group_get_ctxt(olg, LLOG_CHANGELOG_REPL_CTXT);
2461         llog_initiator_connect(ctxt);
2462         llog_ctxt_put(ctxt);
2463
2464         RETURN(0);
2465 }
2466
2467 static void mdc_llog_finish(struct obd_device *obd)
2468 {
2469         struct llog_ctxt *ctxt;
2470
2471         ENTRY;
2472
2473         ctxt = llog_get_context(obd, LLOG_CHANGELOG_REPL_CTXT);
2474         if (ctxt != NULL)
2475                 llog_cleanup(NULL, ctxt);
2476
2477         EXIT;
2478 }
2479
2480 static int mdc_setup(struct obd_device *obd, struct lustre_cfg *cfg)
2481 {
2482         int                             rc;
2483         ENTRY;
2484
2485         rc = ptlrpcd_addref();
2486         if (rc < 0)
2487                 RETURN(rc);
2488
2489         rc = client_obd_setup(obd, cfg);
2490         if (rc)
2491                 GOTO(err_ptlrpcd_decref, rc);
2492 #ifdef CONFIG_PROC_FS
2493         obd->obd_vars = lprocfs_mdc_obd_vars;
2494         lprocfs_obd_setup(obd);
2495         lprocfs_alloc_md_stats(obd, 0);
2496 #endif
2497         sptlrpc_lprocfs_cliobd_attach(obd);
2498         ptlrpc_lprocfs_register_obd(obd);
2499
2500         ns_register_cancel(obd->obd_namespace, mdc_cancel_weight);
2501
2502         obd->obd_namespace->ns_lvbo = &inode_lvbo;
2503
2504         rc = mdc_llog_init(obd);
2505         if (rc) {
2506                 CERROR("%s: failed to setup llogging subsystems: rc = %d\n",
2507                        obd->obd_name, rc);
2508                 GOTO(err_mdc_cleanup, rc);
2509         }
2510
2511         rc = mdc_changelog_cdev_init(obd);
2512         if (rc) {
2513                 CERROR("%s: failed to setup changelog char device: rc = %d\n",
2514                        obd->obd_name, rc);
2515                 GOTO(err_mdc_cleanup, rc);
2516         }
2517
2518         EXIT;
2519 err_mdc_cleanup:
2520         if (rc)
2521                 client_obd_cleanup(obd);
2522
2523 err_ptlrpcd_decref:
2524         if (rc)
2525                 ptlrpcd_decref();
2526         return rc;
2527 }
2528
2529 /* Initialize the default and maximum LOV EA sizes.  This allows
2530  * us to make MDS RPCs with large enough reply buffers to hold a default
2531  * sized EA without having to calculate this (via a call into the
2532  * LOV + OSCs) each time we make an RPC.  The maximum size is also tracked
2533  * but not used to avoid wastefully vmalloc()'ing large reply buffers when
2534  * a large number of stripes is possible.  If a larger reply buffer is
2535  * required it will be reallocated in the ptlrpc layer due to overflow.
2536  */
2537 static int mdc_init_ea_size(struct obd_export *exp, __u32 easize,
2538                             __u32 def_easize)
2539 {
2540         struct obd_device *obd = exp->exp_obd;
2541         struct client_obd *cli = &obd->u.cli;
2542         ENTRY;
2543
2544         if (cli->cl_max_mds_easize < easize)
2545                 cli->cl_max_mds_easize = easize;
2546
2547         if (cli->cl_default_mds_easize < def_easize)
2548                 cli->cl_default_mds_easize = def_easize;
2549
2550         RETURN(0);
2551 }
2552
2553 static int mdc_precleanup(struct obd_device *obd)
2554 {
2555         ENTRY;
2556
2557         mdc_changelog_cdev_finish(obd);
2558
2559         obd_cleanup_client_import(obd);
2560         ptlrpc_lprocfs_unregister_obd(obd);
2561         lprocfs_free_md_stats(obd);
2562         mdc_llog_finish(obd);
2563         RETURN(0);
2564 }
2565
2566 static int mdc_cleanup(struct obd_device *obd)
2567 {
2568         ptlrpcd_decref();
2569
2570         return client_obd_cleanup(obd);
2571 }
2572
2573 static int mdc_process_config(struct obd_device *obd, size_t len, void *buf)
2574 {
2575         struct lustre_cfg *lcfg = buf;
2576         int rc = class_process_proc_param(PARAM_MDC, obd->obd_vars, lcfg, obd);
2577         return (rc > 0 ? 0: rc);
2578 }
2579
2580 static struct obd_ops mdc_obd_ops = {
2581         .o_owner            = THIS_MODULE,
2582         .o_setup            = mdc_setup,
2583         .o_precleanup       = mdc_precleanup,
2584         .o_cleanup          = mdc_cleanup,
2585         .o_add_conn         = client_import_add_conn,
2586         .o_del_conn         = client_import_del_conn,
2587         .o_connect          = client_connect_import,
2588         .o_disconnect       = client_disconnect_export,
2589         .o_iocontrol        = mdc_iocontrol,
2590         .o_set_info_async   = mdc_set_info_async,
2591         .o_statfs           = mdc_statfs,
2592         .o_fid_init         = client_fid_init,
2593         .o_fid_fini         = client_fid_fini,
2594         .o_fid_alloc        = mdc_fid_alloc,
2595         .o_import_event     = mdc_import_event,
2596         .o_get_info         = mdc_get_info,
2597         .o_process_config   = mdc_process_config,
2598         .o_get_uuid         = mdc_get_uuid,
2599         .o_quotactl         = mdc_quotactl,
2600 };
2601
2602 static struct md_ops mdc_md_ops = {
2603         .m_get_root         = mdc_get_root,
2604         .m_null_inode       = mdc_null_inode,
2605         .m_close            = mdc_close,
2606         .m_create           = mdc_create,
2607         .m_enqueue          = mdc_enqueue,
2608         .m_getattr          = mdc_getattr,
2609         .m_getattr_name     = mdc_getattr_name,
2610         .m_intent_lock      = mdc_intent_lock,
2611         .m_link             = mdc_link,
2612         .m_rename           = mdc_rename,
2613         .m_setattr          = mdc_setattr,
2614         .m_setxattr         = mdc_setxattr,
2615         .m_getxattr         = mdc_getxattr,
2616         .m_fsync                = mdc_fsync,
2617         .m_read_page            = mdc_read_page,
2618         .m_unlink           = mdc_unlink,
2619         .m_cancel_unused    = mdc_cancel_unused,
2620         .m_init_ea_size     = mdc_init_ea_size,
2621         .m_set_lock_data    = mdc_set_lock_data,
2622         .m_lock_match       = mdc_lock_match,
2623         .m_get_lustre_md    = mdc_get_lustre_md,
2624         .m_free_lustre_md   = mdc_free_lustre_md,
2625         .m_set_open_replay_data = mdc_set_open_replay_data,
2626         .m_clear_open_replay_data = mdc_clear_open_replay_data,
2627         .m_intent_getattr_async = mdc_intent_getattr_async,
2628         .m_revalidate_lock      = mdc_revalidate_lock
2629 };
2630
2631 static int __init mdc_init(void)
2632 {
2633         return class_register_type(&mdc_obd_ops, &mdc_md_ops, true, NULL,
2634                                    LUSTRE_MDC_NAME, NULL);
2635 }
2636
2637 static void __exit mdc_exit(void)
2638 {
2639         class_unregister_type(LUSTRE_MDC_NAME);
2640 }
2641
2642 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2643 MODULE_DESCRIPTION("Lustre Metadata Client");
2644 MODULE_VERSION(LUSTRE_VERSION_STRING);
2645 MODULE_LICENSE("GPL");
2646
2647 module_init(mdc_init);
2648 module_exit(mdc_exit);