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