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