4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see
18 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2015, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #define DEBUG_SUBSYSTEM S_MDC
39 #include <linux/module.h>
40 #include <linux/pagemap.h>
41 #include <linux/miscdevice.h>
42 #include <linux/init.h>
43 #include <linux/utsname.h>
44 #include <linux/kthread.h>
45 #include <linux/user_namespace.h>
46 #ifdef HAVE_UIDGID_HEADER
47 # include <linux/uidgid.h>
50 #include <lustre_acl.h>
51 #include <lustre_ioctl.h>
52 #include <obd_class.h>
53 #include <lustre_lmv.h>
54 #include <lustre_fid.h>
55 #include <lprocfs_status.h>
56 #include <lustre_param.h>
57 #include <lustre_log.h>
58 #include <lustre_kernelcomm.h>
59 #include <cl_object.h>
61 #include "mdc_internal.h"
63 #define REQUEST_MINOR 244
65 static int mdc_cleanup(struct obd_device *obd);
67 static inline int mdc_queue_wait(struct ptlrpc_request *req)
69 struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
72 /* obd_get_request_slot() ensures that this client has no more
73 * than cl_max_rpcs_in_flight RPCs simultaneously inf light
75 rc = obd_get_request_slot(cli);
79 rc = ptlrpc_queue_wait(req);
80 obd_put_request_slot(cli);
85 static int mdc_getstatus(struct obd_export *exp, struct lu_fid *rootfid)
87 struct ptlrpc_request *req;
88 struct mdt_body *body;
93 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
95 LUSTRE_MDS_VERSION, MDS_GETSTATUS);
99 mdc_pack_body(req, NULL, 0, 0, -1, 0);
100 req->rq_send_state = LUSTRE_IMP_FULL;
102 ptlrpc_request_set_replen(req);
104 rc = ptlrpc_queue_wait(req);
108 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
110 GOTO(out, rc = -EPROTO);
112 *rootfid = body->mbo_fid1;
113 CDEBUG(D_NET, "root fid="DFID", last_committed="LPU64"\n",
114 PFID(rootfid), lustre_msg_get_last_committed(req->rq_repmsg));
117 ptlrpc_req_finished(req);
123 * This function now is known to always saying that it will receive 4 buffers
124 * from server. Even for cases when acl_size and md_size is zero, RPC header
125 * will contain 4 fields and RPC itself will contain zero size fields. This is
126 * because mdt_getattr*() _always_ returns 4 fields, but if acl is not needed
127 * and thus zero, it shrinks it, making zero size. The same story about
128 * md_size. And this is course of problem when client waits for smaller number
129 * of fields. This issue will be fixed later when client gets aware of RPC
132 static int mdc_getattr_common(struct obd_export *exp,
133 struct ptlrpc_request *req)
135 struct req_capsule *pill = &req->rq_pill;
136 struct mdt_body *body;
141 /* Request message already built. */
142 rc = ptlrpc_queue_wait(req);
146 /* sanity check for the reply */
147 body = req_capsule_server_get(pill, &RMF_MDT_BODY);
151 CDEBUG(D_NET, "mode: %o\n", body->mbo_mode);
153 mdc_update_max_ea_from_body(exp, body);
154 if (body->mbo_eadatasize != 0) {
155 eadata = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
156 body->mbo_eadatasize);
161 if (body->mbo_valid & OBD_MD_FLRMTPERM) {
162 struct mdt_remote_perm *perm;
164 LASSERT(client_is_remote(exp));
165 perm = req_capsule_server_swab_get(pill, &RMF_ACL,
166 lustre_swab_mdt_remote_perm);
174 static int mdc_getattr(struct obd_export *exp, struct md_op_data *op_data,
175 struct ptlrpc_request **request)
177 struct ptlrpc_request *req;
181 /* Single MDS without an LMV case */
182 if (op_data->op_flags & MF_GET_MDT_IDX) {
187 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
191 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
193 ptlrpc_request_free(req);
197 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
198 op_data->op_mode, -1, 0);
200 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
202 if (op_data->op_valid & OBD_MD_FLRMTPERM) {
203 LASSERT(client_is_remote(exp));
204 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
205 sizeof(struct mdt_remote_perm));
207 ptlrpc_request_set_replen(req);
209 rc = mdc_getattr_common(exp, req);
211 ptlrpc_req_finished(req);
217 static int mdc_getattr_name(struct obd_export *exp, struct md_op_data *op_data,
218 struct ptlrpc_request **request)
220 struct ptlrpc_request *req;
225 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
226 &RQF_MDS_GETATTR_NAME);
230 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
231 op_data->op_namelen + 1);
233 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR_NAME);
235 ptlrpc_request_free(req);
239 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
240 op_data->op_mode, op_data->op_suppgids[0], 0);
242 if (op_data->op_name) {
243 char *name = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
244 LASSERT(strnlen(op_data->op_name, op_data->op_namelen) ==
245 op_data->op_namelen);
246 memcpy(name, op_data->op_name, op_data->op_namelen);
249 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
251 ptlrpc_request_set_replen(req);
253 rc = mdc_getattr_common(exp, req);
255 ptlrpc_req_finished(req);
261 static int mdc_xattr_common(struct obd_export *exp,const struct req_format *fmt,
262 const struct lu_fid *fid, int opcode, u64 valid,
263 const char *xattr_name, const char *input,
264 int input_size, int output_size, int flags,
265 __u32 suppgid, struct ptlrpc_request **request)
267 struct ptlrpc_request *req;
268 int xattr_namelen = 0;
274 req = ptlrpc_request_alloc(class_exp2cliimp(exp), fmt);
279 xattr_namelen = strlen(xattr_name) + 1;
280 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
285 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
289 /* Flush local XATTR locks to get rid of a possible cancel RPC */
290 if (opcode == MDS_REINT && fid_is_sane(fid) &&
291 exp->exp_connect_data.ocd_ibits_known & MDS_INODELOCK_XATTR) {
292 struct list_head cancels = LIST_HEAD_INIT(cancels);
295 /* Without that packing would fail */
297 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
300 count = mdc_resource_get_unused(exp, fid,
302 MDS_INODELOCK_XATTR);
304 rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
306 ptlrpc_request_free(req);
310 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, opcode);
312 ptlrpc_request_free(req);
317 if (opcode == MDS_REINT) {
318 struct mdt_rec_setxattr *rec;
320 CLASSERT(sizeof(struct mdt_rec_setxattr) ==
321 sizeof(struct mdt_rec_reint));
322 rec = req_capsule_client_get(&req->rq_pill, &RMF_REC_REINT);
323 rec->sx_opcode = REINT_SETXATTR;
324 rec->sx_fsuid = from_kuid(&init_user_ns, current_fsuid());
325 rec->sx_fsgid = from_kgid(&init_user_ns, current_fsgid());
326 rec->sx_cap = cfs_curproc_cap_pack();
327 rec->sx_suppgid1 = suppgid;
328 rec->sx_suppgid2 = -1;
330 rec->sx_valid = valid | OBD_MD_FLCTIME;
331 rec->sx_time = cfs_time_current_sec();
332 rec->sx_size = output_size;
333 rec->sx_flags = flags;
335 mdc_pack_body(req, fid, valid, output_size, suppgid, flags);
339 tmp = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
340 memcpy(tmp, xattr_name, xattr_namelen);
343 tmp = req_capsule_client_get(&req->rq_pill, &RMF_EADATA);
344 memcpy(tmp, input, input_size);
347 if (req_capsule_has_field(&req->rq_pill, &RMF_EADATA, RCL_SERVER))
348 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
349 RCL_SERVER, output_size);
350 ptlrpc_request_set_replen(req);
353 if (opcode == MDS_REINT)
354 mdc_get_mod_rpc_slot(req, NULL);
356 rc = ptlrpc_queue_wait(req);
358 if (opcode == MDS_REINT)
359 mdc_put_mod_rpc_slot(req, NULL);
362 ptlrpc_req_finished(req);
368 static int mdc_setxattr(struct obd_export *exp, const struct lu_fid *fid,
369 u64 valid, const char *xattr_name,
370 const char *input, int input_size, int output_size,
371 int flags, __u32 suppgid,
372 struct ptlrpc_request **request)
374 return mdc_xattr_common(exp, &RQF_MDS_REINT_SETXATTR,
375 fid, MDS_REINT, valid, xattr_name,
376 input, input_size, output_size, flags,
380 static int mdc_getxattr(struct obd_export *exp, const struct lu_fid *fid,
381 u64 valid, const char *xattr_name,
382 const char *input, int input_size, int output_size,
383 int flags, struct ptlrpc_request **request)
385 return mdc_xattr_common(exp, &RQF_MDS_GETXATTR,
386 fid, MDS_GETXATTR, valid, xattr_name,
387 input, input_size, output_size, flags,
391 #ifdef CONFIG_FS_POSIX_ACL
392 static int mdc_unpack_acl(struct ptlrpc_request *req, struct lustre_md *md)
394 struct req_capsule *pill = &req->rq_pill;
395 struct mdt_body *body = md->body;
396 struct posix_acl *acl;
401 if (!body->mbo_aclsize)
404 buf = req_capsule_server_sized_get(pill, &RMF_ACL, body->mbo_aclsize);
409 acl = posix_acl_from_xattr(&init_user_ns, buf, body->mbo_aclsize);
414 CERROR("convert xattr to acl: %d\n", rc);
418 rc = posix_acl_valid(acl);
420 CERROR("validate acl: %d\n", rc);
421 posix_acl_release(acl);
429 #define mdc_unpack_acl(req, md) 0
432 int mdc_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req,
433 struct obd_export *dt_exp, struct obd_export *md_exp,
434 struct lustre_md *md)
436 struct req_capsule *pill = &req->rq_pill;
441 memset(md, 0, sizeof(*md));
443 md->body = req_capsule_server_get(pill, &RMF_MDT_BODY);
444 LASSERT(md->body != NULL);
446 if (md->body->mbo_valid & OBD_MD_FLEASIZE) {
447 if (!S_ISREG(md->body->mbo_mode)) {
448 CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, should be a "
449 "regular file, but is not\n");
450 GOTO(out, rc = -EPROTO);
453 if (md->body->mbo_eadatasize == 0) {
454 CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, "
455 "but eadatasize 0\n");
456 GOTO(out, rc = -EPROTO);
459 md->layout.lb_len = md->body->mbo_eadatasize;
460 md->layout.lb_buf = req_capsule_server_sized_get(pill,
463 if (md->layout.lb_buf == NULL)
464 GOTO(out, rc = -EPROTO);
465 } else if (md->body->mbo_valid & OBD_MD_FLDIREA) {
466 const union lmv_mds_md *lmv;
469 if (!S_ISDIR(md->body->mbo_mode)) {
470 CDEBUG(D_INFO, "OBD_MD_FLDIREA set, should be a "
471 "directory, but is not\n");
472 GOTO(out, rc = -EPROTO);
475 lmv_size = md->body->mbo_eadatasize;
477 CDEBUG(D_INFO, "OBD_MD_FLDIREA is set, "
478 "but eadatasize 0\n");
482 if (md->body->mbo_valid & OBD_MD_MEA) {
483 lmv = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
486 GOTO(out, rc = -EPROTO);
488 rc = md_unpackmd(md_exp, &md->lmv, lmv, lmv_size);
492 if (rc < (typeof(rc))sizeof(*md->lmv)) {
493 CDEBUG(D_INFO, "size too small: "
494 "rc < sizeof(*md->lmv) (%d < %d)\n",
495 rc, (int)sizeof(*md->lmv));
496 GOTO(out, rc = -EPROTO);
502 if (md->body->mbo_valid & OBD_MD_FLRMTPERM) {
503 /* remote permission */
504 LASSERT(client_is_remote(exp));
505 md->remote_perm = req_capsule_server_swab_get(pill, &RMF_ACL,
506 lustre_swab_mdt_remote_perm);
507 if (!md->remote_perm)
508 GOTO(out, rc = -EPROTO);
509 } else if (md->body->mbo_valid & OBD_MD_FLACL) {
510 /* for ACL, it's possible that FLACL is set but aclsize is zero.
511 * only when aclsize != 0 there's an actual segment for ACL
514 if (md->body->mbo_aclsize) {
515 rc = mdc_unpack_acl(req, md);
518 #ifdef CONFIG_FS_POSIX_ACL
520 md->posix_acl = NULL;
528 #ifdef CONFIG_FS_POSIX_ACL
529 posix_acl_release(md->posix_acl);
535 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
541 void mdc_replay_open(struct ptlrpc_request *req)
543 struct md_open_data *mod = req->rq_cb_data;
544 struct ptlrpc_request *close_req;
545 struct obd_client_handle *och;
546 struct lustre_handle old;
547 struct mdt_body *body;
551 DEBUG_REQ(D_ERROR, req,
552 "Can't properly replay without open data.");
557 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
558 LASSERT(body != NULL);
562 struct lustre_handle *file_fh;
564 LASSERT(och->och_magic == OBD_CLIENT_HANDLE_MAGIC);
566 file_fh = &och->och_fh;
567 CDEBUG(D_HA, "updating handle from "LPX64" to "LPX64"\n",
568 file_fh->cookie, body->mbo_handle.cookie);
570 *file_fh = body->mbo_handle;
572 close_req = mod->mod_close_req;
573 if (close_req != NULL) {
574 __u32 opc = lustre_msg_get_opc(close_req->rq_reqmsg);
575 struct mdt_ioepoch *epoch;
577 LASSERT(opc == MDS_CLOSE);
578 epoch = req_capsule_client_get(&close_req->rq_pill,
583 LASSERT(!memcmp(&old, &epoch->mio_handle, sizeof(old)));
585 DEBUG_REQ(D_HA, close_req, "updating close body with new fh");
586 epoch->mio_handle = body->mbo_handle;
591 void mdc_commit_open(struct ptlrpc_request *req)
593 struct md_open_data *mod = req->rq_cb_data;
598 * No need to touch md_open_data::mod_och, it holds a reference on
599 * \var mod and will zero references to each other, \var mod will be
600 * freed after that when md_open_data::mod_och will put the reference.
604 * Do not let open request to disappear as it still may be needed
605 * for close rpc to happen (it may happen on evict only, otherwise
606 * ptlrpc_request::rq_replay does not let mdc_commit_open() to be
607 * called), just mark this rpc as committed to distinguish these 2
608 * cases, see mdc_close() for details. The open request reference will
609 * be put along with freeing \var mod.
611 ptlrpc_request_addref(req);
612 spin_lock(&req->rq_lock);
613 req->rq_committed = 1;
614 spin_unlock(&req->rq_lock);
615 req->rq_cb_data = NULL;
619 int mdc_set_open_replay_data(struct obd_export *exp,
620 struct obd_client_handle *och,
621 struct lookup_intent *it)
623 struct md_open_data *mod;
624 struct mdt_rec_create *rec;
625 struct mdt_body *body;
626 struct ptlrpc_request *open_req = it->d.lustre.it_data;
627 struct obd_import *imp = open_req->rq_import;
630 if (!open_req->rq_replay)
633 rec = req_capsule_client_get(&open_req->rq_pill, &RMF_REC_REINT);
634 body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
635 LASSERT(rec != NULL);
636 /* Incoming message in my byte order (it's been swabbed). */
637 /* Outgoing messages always in my byte order. */
638 LASSERT(body != NULL);
640 /* Only if the import is replayable, we set replay_open data */
641 if (och && imp->imp_replayable) {
642 mod = obd_mod_alloc();
644 DEBUG_REQ(D_ERROR, open_req,
645 "Can't allocate md_open_data");
650 * Take a reference on \var mod, to be freed on mdc_close().
651 * It protects \var mod from being freed on eviction (commit
652 * callback is called despite rq_replay flag).
653 * Another reference for \var och.
658 spin_lock(&open_req->rq_lock);
661 mod->mod_is_create = it_disposition(it, DISP_OPEN_CREATE) ||
662 it_disposition(it, DISP_OPEN_STRIPE);
663 mod->mod_open_req = open_req;
664 open_req->rq_cb_data = mod;
665 open_req->rq_commit_cb = mdc_commit_open;
666 spin_unlock(&open_req->rq_lock);
669 rec->cr_fid2 = body->mbo_fid1;
670 rec->cr_ioepoch = body->mbo_ioepoch;
671 rec->cr_old_handle.cookie = body->mbo_handle.cookie;
672 open_req->rq_replay_cb = mdc_replay_open;
673 if (!fid_is_sane(&body->mbo_fid1)) {
674 DEBUG_REQ(D_ERROR, open_req, "Saving replay request with "
679 DEBUG_REQ(D_RPCTRACE, open_req, "Set up open replay data");
683 static void mdc_free_open(struct md_open_data *mod)
687 if (mod->mod_is_create == 0 &&
688 imp_connect_disp_stripe(mod->mod_open_req->rq_import))
691 LASSERT(mod->mod_open_req->rq_replay == 0);
693 DEBUG_REQ(D_RPCTRACE, mod->mod_open_req, "free open request\n");
695 ptlrpc_request_committed(mod->mod_open_req, committed);
696 if (mod->mod_close_req)
697 ptlrpc_request_committed(mod->mod_close_req, committed);
700 int mdc_clear_open_replay_data(struct obd_export *exp,
701 struct obd_client_handle *och)
703 struct md_open_data *mod = och->och_mod;
707 * It is possible to not have \var mod in a case of eviction between
708 * lookup and ll_file_open().
713 LASSERT(mod != LP_POISON);
714 LASSERT(mod->mod_open_req != NULL);
724 static int mdc_close(struct obd_export *exp, struct md_op_data *op_data,
725 struct md_open_data *mod, struct ptlrpc_request **request)
727 struct obd_device *obd = class_exp2obd(exp);
728 struct ptlrpc_request *req;
729 struct req_format *req_fmt;
734 if (op_data->op_bias & MDS_HSM_RELEASE) {
735 req_fmt = &RQF_MDS_INTENT_CLOSE;
737 /* allocate a FID for volatile file */
738 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
740 CERROR("%s: "DFID" failed to allocate FID: %d\n",
741 obd->obd_name, PFID(&op_data->op_fid1), rc);
742 /* save the errcode and proceed to close */
745 } else if (op_data->op_bias & MDS_CLOSE_LAYOUT_SWAP) {
746 req_fmt = &RQF_MDS_INTENT_CLOSE;
748 req_fmt = &RQF_MDS_CLOSE;
752 req = ptlrpc_request_alloc(class_exp2cliimp(exp), req_fmt);
756 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_CLOSE);
758 ptlrpc_request_free(req);
762 /* To avoid a livelock (bug 7034), we need to send CLOSE RPCs to a
763 * portal whose threads are not taking any DLM locks and are therefore
764 * always progressing */
765 req->rq_request_portal = MDS_READPAGE_PORTAL;
766 ptlrpc_at_set_req_timeout(req);
768 /* Ensure that this close's handle is fixed up during replay. */
769 if (likely(mod != NULL)) {
770 LASSERTF(mod->mod_open_req != NULL &&
771 mod->mod_open_req->rq_type != LI_POISON,
772 "POISONED open %p!\n", mod->mod_open_req);
774 mod->mod_close_req = req;
776 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
777 /* We no longer want to preserve this open for replay even
778 * though the open was committed. b=3632, b=3633 */
779 spin_lock(&mod->mod_open_req->rq_lock);
780 mod->mod_open_req->rq_replay = 0;
781 spin_unlock(&mod->mod_open_req->rq_lock);
783 CDEBUG(D_HA, "couldn't find open req; expecting close error\n");
786 mdc_close_pack(req, op_data);
788 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
789 obd->u.cli.cl_default_mds_easize);
791 ptlrpc_request_set_replen(req);
793 mdc_get_mod_rpc_slot(req, NULL);
794 rc = ptlrpc_queue_wait(req);
795 mdc_put_mod_rpc_slot(req, NULL);
797 if (req->rq_repmsg == NULL) {
798 CDEBUG(D_RPCTRACE, "request failed to send: %p, %d\n", req,
801 rc = req->rq_status ?: -EIO;
802 } else if (rc == 0 || rc == -EAGAIN) {
803 struct mdt_body *body;
805 rc = lustre_msg_get_status(req->rq_repmsg);
806 if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
807 DEBUG_REQ(D_ERROR, req, "type == PTL_RPC_MSG_ERR, err "
812 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
815 } else if (rc == -ESTALE) {
817 * it can be allowed error after 3633 if open was committed and
818 * server failed before close was sent. Let's check if mod
819 * exists and return no error in that case
822 DEBUG_REQ(D_HA, req, "Reset ESTALE = %d", rc);
823 LASSERT(mod->mod_open_req != NULL);
824 if (mod->mod_open_req->rq_committed)
831 mod->mod_close_req = NULL;
832 /* Since now, mod is accessed through open_req only,
833 * thus close req does not keep a reference on mod anymore. */
838 RETURN(rc < 0 ? rc : saved_rc);
841 static int mdc_getpage(struct obd_export *exp, const struct lu_fid *fid,
842 u64 offset, struct page **pages, int npages,
843 struct ptlrpc_request **request)
845 struct ptlrpc_request *req;
846 struct ptlrpc_bulk_desc *desc;
848 wait_queue_head_t waitq;
850 struct l_wait_info lwi;
855 init_waitqueue_head(&waitq);
858 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_READPAGE);
862 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_READPAGE);
864 ptlrpc_request_free(req);
868 req->rq_request_portal = MDS_READPAGE_PORTAL;
869 ptlrpc_at_set_req_timeout(req);
871 desc = ptlrpc_prep_bulk_imp(req, npages, 1,
872 PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KIOV,
874 &ptlrpc_bulk_kiov_pin_ops);
876 ptlrpc_request_free(req);
880 /* NB req now owns desc and will free it when it gets freed */
881 for (i = 0; i < npages; i++)
882 desc->bd_frag_ops->add_kiov_frag(desc, pages[i], 0,
885 mdc_readdir_pack(req, offset, PAGE_CACHE_SIZE * npages, fid);
887 ptlrpc_request_set_replen(req);
888 rc = ptlrpc_queue_wait(req);
890 ptlrpc_req_finished(req);
891 if (rc != -ETIMEDOUT)
895 if (!client_should_resend(resends, &exp->exp_obd->u.cli)) {
896 CERROR("%s: too many resend retries: rc = %d\n",
897 exp->exp_obd->obd_name, -EIO);
900 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(resends), NULL, NULL,
902 l_wait_event(waitq, 0, &lwi);
907 rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
908 req->rq_bulk->bd_nob_transferred);
910 ptlrpc_req_finished(req);
914 if (req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK) {
915 CERROR("%s: unexpected bytes transferred: %d (%ld expected)\n",
916 exp->exp_obd->obd_name, req->rq_bulk->bd_nob_transferred,
917 PAGE_CACHE_SIZE * npages);
918 ptlrpc_req_finished(req);
926 static void mdc_release_page(struct page *page, int remove)
930 if (likely(page->mapping != NULL))
931 truncate_complete_page(page->mapping, page);
934 page_cache_release(page);
937 static struct page *mdc_page_locate(struct address_space *mapping, __u64 *hash,
938 __u64 *start, __u64 *end, int hash64)
941 * Complement of hash is used as an index so that
942 * radix_tree_gang_lookup() can be used to find a page with starting
943 * hash _smaller_ than one we are looking for.
945 unsigned long offset = hash_x_index(*hash, hash64);
949 spin_lock_irq(&mapping->tree_lock);
950 found = radix_tree_gang_lookup(&mapping->page_tree,
951 (void **)&page, offset, 1);
952 if (found > 0 && !radix_tree_exceptional_entry(page)) {
953 struct lu_dirpage *dp;
955 page_cache_get(page);
956 spin_unlock_irq(&mapping->tree_lock);
958 * In contrast to find_lock_page() we are sure that directory
959 * page cannot be truncated (while DLM lock is held) and,
960 * hence, can avoid restart.
962 * In fact, page cannot be locked here at all, because
963 * mdc_read_page_remote does synchronous io.
965 wait_on_page_locked(page);
966 if (PageUptodate(page)) {
968 if (BITS_PER_LONG == 32 && hash64) {
969 *start = le64_to_cpu(dp->ldp_hash_start) >> 32;
970 *end = le64_to_cpu(dp->ldp_hash_end) >> 32;
973 *start = le64_to_cpu(dp->ldp_hash_start);
974 *end = le64_to_cpu(dp->ldp_hash_end);
976 if (unlikely(*start == 1 && *hash == 0))
979 LASSERTF(*start <= *hash, "start = "LPX64
980 ",end = "LPX64",hash = "LPX64"\n",
981 *start, *end, *hash);
982 CDEBUG(D_VFSTRACE, "offset %lx ["LPX64" "LPX64"],"
983 " hash "LPX64"\n", offset, *start, *end, *hash);
986 mdc_release_page(page, 0);
988 } else if (*end != *start && *hash == *end) {
990 * upon hash collision, remove this page,
991 * otherwise put page reference, and
992 * mdc_read_page_remote() will issue RPC to
993 * fetch the page we want.
996 mdc_release_page(page,
997 le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
1001 page_cache_release(page);
1002 page = ERR_PTR(-EIO);
1005 spin_unlock_irq(&mapping->tree_lock);
1012 * Adjust a set of pages, each page containing an array of lu_dirpages,
1013 * so that each page can be used as a single logical lu_dirpage.
1015 * A lu_dirpage is laid out as follows, where s = ldp_hash_start,
1016 * e = ldp_hash_end, f = ldp_flags, p = padding, and each "ent" is a
1017 * struct lu_dirent. It has size up to LU_PAGE_SIZE. The ldp_hash_end
1018 * value is used as a cookie to request the next lu_dirpage in a
1019 * directory listing that spans multiple pages (two in this example):
1022 * .|--------v------- -----.
1023 * |s|e|f|p|ent|ent| ... |ent|
1024 * '--|-------------- -----' Each PAGE contains a single
1025 * '------. lu_dirpage.
1026 * .---------v------- -----.
1027 * |s|e|f|p|ent| 0 | ... | 0 |
1028 * '----------------- -----'
1030 * However, on hosts where the native VM page size (PAGE_CACHE_SIZE) is
1031 * larger than LU_PAGE_SIZE, a single host page may contain multiple
1032 * lu_dirpages. After reading the lu_dirpages from the MDS, the
1033 * ldp_hash_end of the first lu_dirpage refers to the one immediately
1034 * after it in the same PAGE (arrows simplified for brevity, but
1035 * in general e0==s1, e1==s2, etc.):
1037 * .-------------------- -----.
1038 * |s0|e0|f0|p|ent|ent| ... |ent|
1039 * |---v---------------- -----|
1040 * |s1|e1|f1|p|ent|ent| ... |ent|
1041 * |---v---------------- -----| Here, each PAGE contains
1042 * ... multiple lu_dirpages.
1043 * |---v---------------- -----|
1044 * |s'|e'|f'|p|ent|ent| ... |ent|
1045 * '---|---------------- -----'
1047 * .----------------------------.
1050 * This structure is transformed into a single logical lu_dirpage as follows:
1052 * - Replace e0 with e' so the request for the next lu_dirpage gets the page
1053 * labeled 'next PAGE'.
1055 * - Copy the LDF_COLLIDE flag from f' to f0 to correctly reflect whether
1056 * a hash collision with the next page exists.
1058 * - Adjust the lde_reclen of the ending entry of each lu_dirpage to span
1059 * to the first entry of the next lu_dirpage.
1061 #if PAGE_CACHE_SIZE > LU_PAGE_SIZE
1062 static void mdc_adjust_dirpages(struct page **pages, int cfs_pgs, int lu_pgs)
1066 for (i = 0; i < cfs_pgs; i++) {
1067 struct lu_dirpage *dp = kmap(pages[i]);
1068 struct lu_dirpage *first = dp;
1069 struct lu_dirent *end_dirent = NULL;
1070 struct lu_dirent *ent;
1071 __u64 hash_end = le64_to_cpu(dp->ldp_hash_end);
1072 __u32 flags = le32_to_cpu(dp->ldp_flags);
1074 while (--lu_pgs > 0) {
1075 ent = lu_dirent_start(dp);
1076 for (end_dirent = ent; ent != NULL;
1077 end_dirent = ent, ent = lu_dirent_next(ent));
1079 /* Advance dp to next lu_dirpage. */
1080 dp = (struct lu_dirpage *)((char *)dp + LU_PAGE_SIZE);
1082 /* Check if we've reached the end of the PAGE. */
1083 if (!((unsigned long)dp & ~PAGE_MASK))
1086 /* Save the hash and flags of this lu_dirpage. */
1087 hash_end = le64_to_cpu(dp->ldp_hash_end);
1088 flags = le32_to_cpu(dp->ldp_flags);
1090 /* Check if lu_dirpage contains no entries. */
1091 if (end_dirent == NULL)
1094 /* Enlarge the end entry lde_reclen from 0 to
1095 * first entry of next lu_dirpage. */
1096 LASSERT(le16_to_cpu(end_dirent->lde_reclen) == 0);
1097 end_dirent->lde_reclen =
1098 cpu_to_le16((char *)(dp->ldp_entries) -
1099 (char *)end_dirent);
1102 first->ldp_hash_end = hash_end;
1103 first->ldp_flags &= ~cpu_to_le32(LDF_COLLIDE);
1104 first->ldp_flags |= flags & cpu_to_le32(LDF_COLLIDE);
1108 LASSERTF(lu_pgs == 0, "left = %d\n", lu_pgs);
1111 #define mdc_adjust_dirpages(pages, cfs_pgs, lu_pgs) do {} while (0)
1112 #endif /* PAGE_CACHE_SIZE > LU_PAGE_SIZE */
1114 /* parameters for readdir page */
1115 struct readpage_param {
1116 struct md_op_data *rp_mod;
1119 struct obd_export *rp_exp;
1120 struct md_callback *rp_cb;
1123 #ifndef HAVE_DELETE_FROM_PAGE_CACHE
1124 static inline void delete_from_page_cache(struct page *page)
1126 remove_from_page_cache(page);
1127 page_cache_release(page);
1132 * Read pages from server.
1134 * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
1135 * a header lu_dirpage which describes the start/end hash, and whether this
1136 * page is empty (contains no dir entry) or hash collide with next page.
1137 * After client receives reply, several pages will be integrated into dir page
1138 * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
1139 * lu_dirpage for this integrated page will be adjusted.
1141 static int mdc_read_page_remote(void *data, struct page *page0)
1143 struct readpage_param *rp = data;
1144 struct page **page_pool;
1146 struct lu_dirpage *dp;
1147 int rd_pgs = 0; /* number of pages read actually */
1149 struct md_op_data *op_data = rp->rp_mod;
1150 struct ptlrpc_request *req;
1151 int max_pages = op_data->op_max_pages;
1152 struct inode *inode;
1158 LASSERT(max_pages > 0 && max_pages <= PTLRPC_MAX_BRW_PAGES);
1159 inode = op_data->op_data;
1160 fid = &op_data->op_fid1;
1161 LASSERT(inode != NULL);
1163 OBD_ALLOC(page_pool, sizeof(page_pool[0]) * max_pages);
1164 if (page_pool != NULL) {
1165 page_pool[0] = page0;
1171 for (npages = 1; npages < max_pages; npages++) {
1172 page = page_cache_alloc_cold(inode->i_mapping);
1175 page_pool[npages] = page;
1178 rc = mdc_getpage(rp->rp_exp, fid, rp->rp_off, page_pool, npages, &req);
1180 /* page0 is special, which was added into page cache early */
1181 delete_from_page_cache(page0);
1185 rd_pgs = (req->rq_bulk->bd_nob_transferred +
1186 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1187 lu_pgs = req->rq_bulk->bd_nob_transferred >>
1189 LASSERT(!(req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK));
1191 CDEBUG(D_INODE, "read %d(%d) pages\n", rd_pgs, lu_pgs);
1193 mdc_adjust_dirpages(page_pool, rd_pgs, lu_pgs);
1195 SetPageUptodate(page0);
1199 ptlrpc_req_finished(req);
1200 CDEBUG(D_CACHE, "read %d/%d pages\n", rd_pgs, npages);
1201 for (i = 1; i < npages; i++) {
1202 unsigned long offset;
1206 page = page_pool[i];
1208 if (rc < 0 || i >= rd_pgs) {
1209 page_cache_release(page);
1213 SetPageUptodate(page);
1216 hash = le64_to_cpu(dp->ldp_hash_start);
1219 offset = hash_x_index(hash, rp->rp_hash64);
1221 prefetchw(&page->flags);
1222 ret = add_to_page_cache_lru(page, inode->i_mapping, offset,
1227 CDEBUG(D_VFSTRACE, "page %lu add to page cache failed:"
1228 " rc = %d\n", offset, ret);
1229 page_cache_release(page);
1232 if (page_pool != &page0)
1233 OBD_FREE(page_pool, sizeof(page_pool[0]) * max_pages);
1239 * Read dir page from cache first, if it can not find it, read it from
1240 * server and add into the cache.
1242 * \param[in] exp MDC export
1243 * \param[in] op_data client MD stack parameters, transfering parameters
1244 * between different layers on client MD stack.
1245 * \param[in] cb_op callback required for ldlm lock enqueue during
1247 * \param[in] hash_offset the hash offset of the page to be read
1248 * \param[in] ppage the page to be read
1250 * retval = 0 get the page successfully
1251 * errno(<0) get the page failed
1253 static int mdc_read_page(struct obd_export *exp, struct md_op_data *op_data,
1254 struct md_callback *cb_op, __u64 hash_offset,
1255 struct page **ppage)
1257 struct lookup_intent it = { .it_op = IT_READDIR };
1259 struct inode *dir = op_data->op_data;
1260 struct address_space *mapping;
1261 struct lu_dirpage *dp;
1264 struct lustre_handle lockh;
1265 struct ptlrpc_request *enq_req = NULL;
1266 struct readpage_param rp_param;
1273 LASSERT(dir != NULL);
1274 mapping = dir->i_mapping;
1276 rc = mdc_intent_lock(exp, op_data, &it, &enq_req,
1277 cb_op->md_blocking_ast, 0);
1278 if (enq_req != NULL)
1279 ptlrpc_req_finished(enq_req);
1282 CERROR("%s: "DFID" lock enqueue fails: rc = %d\n",
1283 exp->exp_obd->obd_name, PFID(&op_data->op_fid1), rc);
1288 mdc_set_lock_data(exp, &it.d.lustre.it_lock_handle, dir, NULL);
1290 rp_param.rp_off = hash_offset;
1291 rp_param.rp_hash64 = op_data->op_cli_flags & CLI_HASH64;
1292 page = mdc_page_locate(mapping, &rp_param.rp_off, &start, &end,
1293 rp_param.rp_hash64);
1295 CERROR("%s: dir page locate: "DFID" at "LPU64": rc %ld\n",
1296 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1297 rp_param.rp_off, PTR_ERR(page));
1298 GOTO(out_unlock, rc = PTR_ERR(page));
1299 } else if (page != NULL) {
1301 * XXX nikita: not entirely correct handling of a corner case:
1302 * suppose hash chain of entries with hash value HASH crosses
1303 * border between pages P0 and P1. First both P0 and P1 are
1304 * cached, seekdir() is called for some entry from the P0 part
1305 * of the chain. Later P0 goes out of cache. telldir(HASH)
1306 * happens and finds P1, as it starts with matching hash
1307 * value. Remaining entries from P0 part of the chain are
1308 * skipped. (Is that really a bug?)
1310 * Possible solutions: 0. don't cache P1 is such case, handle
1311 * it as an "overflow" page. 1. invalidate all pages at
1312 * once. 2. use HASH|1 as an index for P1.
1314 GOTO(hash_collision, page);
1317 rp_param.rp_exp = exp;
1318 rp_param.rp_mod = op_data;
1319 page = read_cache_page(mapping,
1320 hash_x_index(rp_param.rp_off,
1321 rp_param.rp_hash64),
1322 mdc_read_page_remote, &rp_param);
1324 CDEBUG(D_INFO, "%s: read cache page: "DFID" at "LPU64": %ld\n",
1325 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1326 rp_param.rp_off, PTR_ERR(page));
1327 GOTO(out_unlock, rc = PTR_ERR(page));
1330 wait_on_page_locked(page);
1332 if (!PageUptodate(page)) {
1333 CERROR("%s: page not updated: "DFID" at "LPU64": rc %d\n",
1334 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1335 rp_param.rp_off, -5);
1338 if (!PageChecked(page))
1339 SetPageChecked(page);
1340 if (PageError(page)) {
1341 CERROR("%s: page error: "DFID" at "LPU64": rc %d\n",
1342 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1343 rp_param.rp_off, -5);
1348 dp = page_address(page);
1349 if (BITS_PER_LONG == 32 && rp_param.rp_hash64) {
1350 start = le64_to_cpu(dp->ldp_hash_start) >> 32;
1351 end = le64_to_cpu(dp->ldp_hash_end) >> 32;
1352 rp_param.rp_off = hash_offset >> 32;
1354 start = le64_to_cpu(dp->ldp_hash_start);
1355 end = le64_to_cpu(dp->ldp_hash_end);
1356 rp_param.rp_off = hash_offset;
1359 LASSERT(start == rp_param.rp_off);
1360 CWARN("Page-wide hash collision: %#lx\n", (unsigned long)end);
1361 #if BITS_PER_LONG == 32
1362 CWARN("Real page-wide hash collision at ["LPU64" "LPU64"] with "
1363 "hash "LPU64"\n", le64_to_cpu(dp->ldp_hash_start),
1364 le64_to_cpu(dp->ldp_hash_end), hash_offset);
1368 * Fetch whole overflow chain...
1376 lockh.cookie = it.d.lustre.it_lock_handle;
1377 ldlm_lock_decref(&lockh, it.d.lustre.it_lock_mode);
1378 it.d.lustre.it_lock_handle = 0;
1382 mdc_release_page(page, 1);
1388 static int mdc_statfs(const struct lu_env *env,
1389 struct obd_export *exp, struct obd_statfs *osfs,
1390 __u64 max_age, __u32 flags)
1392 struct obd_device *obd = class_exp2obd(exp);
1393 struct ptlrpc_request *req;
1394 struct obd_statfs *msfs;
1395 struct obd_import *imp = NULL;
1400 * Since the request might also come from lprocfs, so we need
1401 * sync this with client_disconnect_export Bug15684
1403 down_read(&obd->u.cli.cl_sem);
1404 if (obd->u.cli.cl_import)
1405 imp = class_import_get(obd->u.cli.cl_import);
1406 up_read(&obd->u.cli.cl_sem);
1410 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_STATFS,
1411 LUSTRE_MDS_VERSION, MDS_STATFS);
1413 GOTO(output, rc = -ENOMEM);
1415 ptlrpc_request_set_replen(req);
1417 if (flags & OBD_STATFS_NODELAY) {
1418 /* procfs requests not want stay in wait for avoid deadlock */
1419 req->rq_no_resend = 1;
1420 req->rq_no_delay = 1;
1423 rc = ptlrpc_queue_wait(req);
1425 /* check connection error first */
1426 if (imp->imp_connect_error)
1427 rc = imp->imp_connect_error;
1431 msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1433 GOTO(out, rc = -EPROTO);
1438 ptlrpc_req_finished(req);
1440 class_import_put(imp);
1444 static int mdc_ioc_fid2path(struct obd_export *exp, struct getinfo_fid2path *gf)
1446 __u32 keylen, vallen;
1450 if (gf->gf_pathlen > PATH_MAX)
1451 RETURN(-ENAMETOOLONG);
1452 if (gf->gf_pathlen < 2)
1455 /* Key is KEY_FID2PATH + getinfo_fid2path description */
1456 keylen = cfs_size_round(sizeof(KEY_FID2PATH)) + sizeof(*gf);
1457 OBD_ALLOC(key, keylen);
1460 memcpy(key, KEY_FID2PATH, sizeof(KEY_FID2PATH));
1461 memcpy(key + cfs_size_round(sizeof(KEY_FID2PATH)), gf, sizeof(*gf));
1463 CDEBUG(D_IOCTL, "path get "DFID" from "LPU64" #%d\n",
1464 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno);
1466 if (!fid_is_sane(&gf->gf_fid))
1467 GOTO(out, rc = -EINVAL);
1469 /* Val is struct getinfo_fid2path result plus path */
1470 vallen = sizeof(*gf) + gf->gf_pathlen;
1472 rc = obd_get_info(NULL, exp, keylen, key, &vallen, gf);
1473 if (rc != 0 && rc != -EREMOTE)
1476 if (vallen <= sizeof(*gf))
1477 GOTO(out, rc = -EPROTO);
1478 else if (vallen > sizeof(*gf) + gf->gf_pathlen)
1479 GOTO(out, rc = -EOVERFLOW);
1481 CDEBUG(D_IOCTL, "path get "DFID" from "LPU64" #%d\n%s\n",
1482 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno, gf->gf_path);
1485 OBD_FREE(key, keylen);
1489 static int mdc_ioc_hsm_progress(struct obd_export *exp,
1490 struct hsm_progress_kernel *hpk)
1492 struct obd_import *imp = class_exp2cliimp(exp);
1493 struct hsm_progress_kernel *req_hpk;
1494 struct ptlrpc_request *req;
1498 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_PROGRESS,
1499 LUSTRE_MDS_VERSION, MDS_HSM_PROGRESS);
1501 GOTO(out, rc = -ENOMEM);
1503 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1505 /* Copy hsm_progress struct */
1506 req_hpk = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_PROGRESS);
1507 if (req_hpk == NULL)
1508 GOTO(out, rc = -EPROTO);
1511 req_hpk->hpk_errval = lustre_errno_hton(hpk->hpk_errval);
1513 ptlrpc_request_set_replen(req);
1515 mdc_get_mod_rpc_slot(req, NULL);
1516 rc = ptlrpc_queue_wait(req);
1517 mdc_put_mod_rpc_slot(req, NULL);
1521 ptlrpc_req_finished(req);
1525 static int mdc_ioc_hsm_ct_register(struct obd_import *imp, __u32 archives)
1527 __u32 *archive_mask;
1528 struct ptlrpc_request *req;
1532 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_REGISTER,
1534 MDS_HSM_CT_REGISTER);
1536 GOTO(out, rc = -ENOMEM);
1538 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1540 /* Copy hsm_progress struct */
1541 archive_mask = req_capsule_client_get(&req->rq_pill,
1542 &RMF_MDS_HSM_ARCHIVE);
1543 if (archive_mask == NULL)
1544 GOTO(out, rc = -EPROTO);
1546 *archive_mask = archives;
1548 ptlrpc_request_set_replen(req);
1550 rc = mdc_queue_wait(req);
1553 ptlrpc_req_finished(req);
1557 static int mdc_ioc_hsm_current_action(struct obd_export *exp,
1558 struct md_op_data *op_data)
1560 struct hsm_current_action *hca = op_data->op_data;
1561 struct hsm_current_action *req_hca;
1562 struct ptlrpc_request *req;
1566 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1567 &RQF_MDS_HSM_ACTION);
1571 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_ACTION);
1573 ptlrpc_request_free(req);
1577 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1578 op_data->op_suppgids[0], 0);
1580 ptlrpc_request_set_replen(req);
1582 rc = mdc_queue_wait(req);
1586 req_hca = req_capsule_server_get(&req->rq_pill,
1587 &RMF_MDS_HSM_CURRENT_ACTION);
1588 if (req_hca == NULL)
1589 GOTO(out, rc = -EPROTO);
1595 ptlrpc_req_finished(req);
1599 static int mdc_ioc_hsm_ct_unregister(struct obd_import *imp)
1601 struct ptlrpc_request *req;
1605 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_UNREGISTER,
1607 MDS_HSM_CT_UNREGISTER);
1609 GOTO(out, rc = -ENOMEM);
1611 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1613 ptlrpc_request_set_replen(req);
1615 rc = mdc_queue_wait(req);
1618 ptlrpc_req_finished(req);
1622 static int mdc_ioc_hsm_state_get(struct obd_export *exp,
1623 struct md_op_data *op_data)
1625 struct hsm_user_state *hus = op_data->op_data;
1626 struct hsm_user_state *req_hus;
1627 struct ptlrpc_request *req;
1631 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1632 &RQF_MDS_HSM_STATE_GET);
1636 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_GET);
1638 ptlrpc_request_free(req);
1642 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1643 op_data->op_suppgids[0], 0);
1645 ptlrpc_request_set_replen(req);
1647 rc = mdc_queue_wait(req);
1651 req_hus = req_capsule_server_get(&req->rq_pill, &RMF_HSM_USER_STATE);
1652 if (req_hus == NULL)
1653 GOTO(out, rc = -EPROTO);
1659 ptlrpc_req_finished(req);
1663 static int mdc_ioc_hsm_state_set(struct obd_export *exp,
1664 struct md_op_data *op_data)
1666 struct hsm_state_set *hss = op_data->op_data;
1667 struct hsm_state_set *req_hss;
1668 struct ptlrpc_request *req;
1672 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1673 &RQF_MDS_HSM_STATE_SET);
1677 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_SET);
1679 ptlrpc_request_free(req);
1683 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1684 op_data->op_suppgids[0], 0);
1687 req_hss = req_capsule_client_get(&req->rq_pill, &RMF_HSM_STATE_SET);
1688 if (req_hss == NULL)
1689 GOTO(out, rc = -EPROTO);
1692 ptlrpc_request_set_replen(req);
1694 mdc_get_mod_rpc_slot(req, NULL);
1695 rc = ptlrpc_queue_wait(req);
1696 mdc_put_mod_rpc_slot(req, NULL);
1700 ptlrpc_req_finished(req);
1704 static int mdc_ioc_hsm_request(struct obd_export *exp,
1705 struct hsm_user_request *hur)
1707 struct obd_import *imp = class_exp2cliimp(exp);
1708 struct ptlrpc_request *req;
1709 struct hsm_request *req_hr;
1710 struct hsm_user_item *req_hui;
1715 req = ptlrpc_request_alloc(imp, &RQF_MDS_HSM_REQUEST);
1717 GOTO(out, rc = -ENOMEM);
1719 req_capsule_set_size(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM, RCL_CLIENT,
1720 hur->hur_request.hr_itemcount
1721 * sizeof(struct hsm_user_item));
1722 req_capsule_set_size(&req->rq_pill, &RMF_GENERIC_DATA, RCL_CLIENT,
1723 hur->hur_request.hr_data_len);
1725 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_REQUEST);
1727 ptlrpc_request_free(req);
1731 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1733 /* Copy hsm_request struct */
1734 req_hr = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_REQUEST);
1736 GOTO(out, rc = -EPROTO);
1737 *req_hr = hur->hur_request;
1739 /* Copy hsm_user_item structs */
1740 req_hui = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM);
1741 if (req_hui == NULL)
1742 GOTO(out, rc = -EPROTO);
1743 memcpy(req_hui, hur->hur_user_item,
1744 hur->hur_request.hr_itemcount * sizeof(struct hsm_user_item));
1746 /* Copy opaque field */
1747 req_opaque = req_capsule_client_get(&req->rq_pill, &RMF_GENERIC_DATA);
1748 if (req_opaque == NULL)
1749 GOTO(out, rc = -EPROTO);
1750 memcpy(req_opaque, hur_data(hur), hur->hur_request.hr_data_len);
1752 ptlrpc_request_set_replen(req);
1754 mdc_get_mod_rpc_slot(req, NULL);
1755 rc = ptlrpc_queue_wait(req);
1756 mdc_put_mod_rpc_slot(req, NULL);
1761 ptlrpc_req_finished(req);
1765 static struct kuc_hdr *changelog_kuc_hdr(char *buf, size_t len, __u32 flags)
1767 struct kuc_hdr *lh = (struct kuc_hdr *)buf;
1769 LASSERT(len <= KUC_CHANGELOG_MSG_MAXSIZE);
1771 lh->kuc_magic = KUC_MAGIC;
1772 lh->kuc_transport = KUC_TRANSPORT_CHANGELOG;
1773 lh->kuc_flags = flags;
1774 lh->kuc_msgtype = CL_RECORD;
1775 lh->kuc_msglen = len;
1779 struct changelog_show {
1781 enum changelog_send_flag cs_flags;
1784 struct obd_device *cs_obd;
1787 static inline char *cs_obd_name(struct changelog_show *cs)
1789 return cs->cs_obd->obd_name;
1792 static int changelog_kkuc_cb(const struct lu_env *env, struct llog_handle *llh,
1793 struct llog_rec_hdr *hdr, void *data)
1795 struct changelog_show *cs = data;
1796 struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
1802 if (rec->cr_hdr.lrh_type != CHANGELOG_REC) {
1804 CERROR("%s: not a changelog rec %x/%d: rc = %d\n",
1805 cs_obd_name(cs), rec->cr_hdr.lrh_type,
1806 rec->cr.cr_type, rc);
1810 if (rec->cr.cr_index < cs->cs_startrec) {
1811 /* Skip entries earlier than what we are interested in */
1812 CDEBUG(D_HSM, "rec="LPU64" start="LPU64"\n",
1813 rec->cr.cr_index, cs->cs_startrec);
1817 CDEBUG(D_HSM, LPU64" %02d%-5s "LPU64" 0x%x t="DFID" p="DFID" %.*s\n",
1818 rec->cr.cr_index, rec->cr.cr_type,
1819 changelog_type2str(rec->cr.cr_type), rec->cr.cr_time,
1820 rec->cr.cr_flags & CLF_FLAGMASK,
1821 PFID(&rec->cr.cr_tfid), PFID(&rec->cr.cr_pfid),
1822 rec->cr.cr_namelen, changelog_rec_name(&rec->cr));
1824 len = sizeof(*lh) + changelog_rec_size(&rec->cr) + rec->cr.cr_namelen;
1826 /* Set up the message */
1827 lh = changelog_kuc_hdr(cs->cs_buf, len, cs->cs_flags);
1828 memcpy(lh + 1, &rec->cr, len - sizeof(*lh));
1830 rc = libcfs_kkuc_msg_put(cs->cs_fp, lh);
1831 CDEBUG(D_HSM, "kucmsg fp %p len %zu rc %d\n", cs->cs_fp, len, rc);
1836 static int mdc_changelog_send_thread(void *csdata)
1838 struct changelog_show *cs = csdata;
1839 struct llog_ctxt *ctxt = NULL;
1840 struct llog_handle *llh = NULL;
1841 struct kuc_hdr *kuch;
1842 enum llog_flag flags = LLOG_F_IS_CAT;
1845 CDEBUG(D_HSM, "changelog to fp=%p start "LPU64"\n",
1846 cs->cs_fp, cs->cs_startrec);
1848 OBD_ALLOC(cs->cs_buf, KUC_CHANGELOG_MSG_MAXSIZE);
1849 if (cs->cs_buf == NULL)
1850 GOTO(out, rc = -ENOMEM);
1852 /* Set up the remote catalog handle */
1853 ctxt = llog_get_context(cs->cs_obd, LLOG_CHANGELOG_REPL_CTXT);
1855 GOTO(out, rc = -ENOENT);
1856 rc = llog_open(NULL, ctxt, &llh, NULL, CHANGELOG_CATALOG,
1859 CERROR("%s: fail to open changelog catalog: rc = %d\n",
1860 cs_obd_name(cs), rc);
1864 if (cs->cs_flags & CHANGELOG_FLAG_JOBID)
1865 flags |= LLOG_F_EXT_JOBID;
1867 rc = llog_init_handle(NULL, llh, flags, NULL);
1869 CERROR("llog_init_handle failed %d\n", rc);
1873 rc = llog_cat_process(NULL, llh, changelog_kkuc_cb, cs, 0, 0);
1875 /* Send EOF no matter what our result */
1876 kuch = changelog_kuc_hdr(cs->cs_buf, sizeof(*kuch), cs->cs_flags);
1877 kuch->kuc_msgtype = CL_EOF;
1878 libcfs_kkuc_msg_put(cs->cs_fp, kuch);
1883 llog_cat_close(NULL, llh);
1885 llog_ctxt_put(ctxt);
1887 OBD_FREE(cs->cs_buf, KUC_CHANGELOG_MSG_MAXSIZE);
1892 static int mdc_ioc_changelog_send(struct obd_device *obd,
1893 struct ioc_changelog *icc)
1895 struct changelog_show *cs;
1896 struct task_struct *task;
1899 /* Freed in mdc_changelog_send_thread */
1905 cs->cs_startrec = icc->icc_recno;
1906 /* matching fput in mdc_changelog_send_thread */
1907 cs->cs_fp = fget(icc->icc_id);
1908 cs->cs_flags = icc->icc_flags;
1911 * New thread because we should return to user app before
1912 * writing into our pipe
1914 task = kthread_run(mdc_changelog_send_thread, cs,
1915 "mdc_clg_send_thread");
1918 CERROR("%s: cannot start changelog thread: rc = %d\n",
1919 cs_obd_name(cs), rc);
1923 CDEBUG(D_HSM, "%s: started changelog thread\n",
1930 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
1931 struct lustre_kernelcomm *lk);
1933 static int mdc_quotactl(struct obd_device *unused, struct obd_export *exp,
1934 struct obd_quotactl *oqctl)
1936 struct ptlrpc_request *req;
1937 struct obd_quotactl *oqc;
1941 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1942 &RQF_MDS_QUOTACTL, LUSTRE_MDS_VERSION,
1947 oqc = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1950 ptlrpc_request_set_replen(req);
1951 ptlrpc_at_set_req_timeout(req);
1952 req->rq_no_resend = 1;
1954 rc = ptlrpc_queue_wait(req);
1956 CERROR("ptlrpc_queue_wait failed, rc: %d\n", rc);
1958 if (req->rq_repmsg &&
1959 (oqc = req_capsule_server_get(&req->rq_pill, &RMF_OBD_QUOTACTL))) {
1962 CERROR ("Can't unpack obd_quotactl\n");
1965 ptlrpc_req_finished(req);
1970 static int mdc_ioc_swap_layouts(struct obd_export *exp,
1971 struct md_op_data *op_data)
1973 struct list_head cancels = LIST_HEAD_INIT(cancels);
1974 struct ptlrpc_request *req;
1976 struct mdc_swap_layouts *msl, *payload;
1979 msl = op_data->op_data;
1981 /* When the MDT will get the MDS_SWAP_LAYOUTS RPC the
1982 * first thing it will do is to cancel the 2 layout
1983 * locks held by this client.
1984 * So the client must cancel its layout locks on the 2 fids
1985 * with the request RPC to avoid extra RPC round trips.
1987 count = mdc_resource_get_unused(exp, &op_data->op_fid1, &cancels,
1988 LCK_EX, MDS_INODELOCK_LAYOUT |
1989 MDS_INODELOCK_XATTR);
1990 count += mdc_resource_get_unused(exp, &op_data->op_fid2, &cancels,
1991 LCK_EX, MDS_INODELOCK_LAYOUT |
1992 MDS_INODELOCK_XATTR);
1994 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1995 &RQF_MDS_SWAP_LAYOUTS);
1997 ldlm_lock_list_put(&cancels, l_bl_ast, count);
2001 rc = mdc_prep_elc_req(exp, req, MDS_SWAP_LAYOUTS, &cancels, count);
2003 ptlrpc_request_free(req);
2007 mdc_swap_layouts_pack(req, op_data);
2009 payload = req_capsule_client_get(&req->rq_pill, &RMF_SWAP_LAYOUTS);
2014 ptlrpc_request_set_replen(req);
2016 rc = ptlrpc_queue_wait(req);
2022 ptlrpc_req_finished(req);
2026 static int mdc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
2027 void *karg, void __user *uarg)
2029 struct obd_device *obd = exp->exp_obd;
2030 struct obd_ioctl_data *data = karg;
2031 struct obd_import *imp = obd->u.cli.cl_import;
2035 if (!try_module_get(THIS_MODULE)) {
2036 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
2037 module_name(THIS_MODULE));
2041 case OBD_IOC_CHANGELOG_SEND:
2042 rc = mdc_ioc_changelog_send(obd, karg);
2044 case OBD_IOC_CHANGELOG_CLEAR: {
2045 struct ioc_changelog *icc = karg;
2046 struct changelog_setinfo cs =
2047 {.cs_recno = icc->icc_recno, .cs_id = icc->icc_id};
2048 rc = obd_set_info_async(NULL, exp, strlen(KEY_CHANGELOG_CLEAR),
2049 KEY_CHANGELOG_CLEAR, sizeof(cs), &cs,
2053 case OBD_IOC_FID2PATH:
2054 rc = mdc_ioc_fid2path(exp, karg);
2056 case LL_IOC_HSM_CT_START:
2057 rc = mdc_ioc_hsm_ct_start(exp, karg);
2058 /* ignore if it was already registered on this MDS. */
2062 case LL_IOC_HSM_PROGRESS:
2063 rc = mdc_ioc_hsm_progress(exp, karg);
2065 case LL_IOC_HSM_STATE_GET:
2066 rc = mdc_ioc_hsm_state_get(exp, karg);
2068 case LL_IOC_HSM_STATE_SET:
2069 rc = mdc_ioc_hsm_state_set(exp, karg);
2071 case LL_IOC_HSM_ACTION:
2072 rc = mdc_ioc_hsm_current_action(exp, karg);
2074 case LL_IOC_HSM_REQUEST:
2075 rc = mdc_ioc_hsm_request(exp, karg);
2077 case OBD_IOC_CLIENT_RECOVER:
2078 rc = ptlrpc_recover_import(imp, data->ioc_inlbuf1, 0);
2082 case IOC_OSC_SET_ACTIVE:
2083 rc = ptlrpc_set_import_active(imp, data->ioc_offset);
2085 case OBD_IOC_PING_TARGET:
2086 rc = ptlrpc_obd_ping(obd);
2089 * Normally IOC_OBD_STATFS, OBD_IOC_QUOTACTL iocontrol are handled by
2090 * LMV instead of MDC. But when the cluster is upgraded from 1.8,
2091 * there'd be no LMV layer thus we might be called here. Eventually
2092 * this code should be removed.
2095 case IOC_OBD_STATFS: {
2096 struct obd_statfs stat_buf = {0};
2098 if (*((__u32 *) data->ioc_inlbuf2) != 0)
2099 GOTO(out, rc = -ENODEV);
2102 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(obd),
2103 min((int)data->ioc_plen2,
2104 (int)sizeof(struct obd_uuid))))
2105 GOTO(out, rc = -EFAULT);
2107 rc = mdc_statfs(NULL, obd->obd_self_export, &stat_buf,
2108 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
2113 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
2114 min((int) data->ioc_plen1,
2115 (int) sizeof(stat_buf))))
2116 GOTO(out, rc = -EFAULT);
2120 case OBD_IOC_QUOTACTL: {
2121 struct if_quotactl *qctl = karg;
2122 struct obd_quotactl *oqctl;
2124 OBD_ALLOC_PTR(oqctl);
2126 GOTO(out, rc = -ENOMEM);
2128 QCTL_COPY(oqctl, qctl);
2129 rc = obd_quotactl(exp, oqctl);
2131 QCTL_COPY(qctl, oqctl);
2132 qctl->qc_valid = QC_MDTIDX;
2133 qctl->obd_uuid = obd->u.cli.cl_target_uuid;
2136 OBD_FREE_PTR(oqctl);
2139 case LL_IOC_GET_CONNECT_FLAGS:
2140 if (copy_to_user(uarg, exp_connect_flags_ptr(exp),
2141 sizeof(*exp_connect_flags_ptr(exp))))
2142 GOTO(out, rc = -EFAULT);
2145 case LL_IOC_LOV_SWAP_LAYOUTS:
2146 rc = mdc_ioc_swap_layouts(exp, karg);
2149 CERROR("unrecognised ioctl: cmd = %#x\n", cmd);
2150 GOTO(out, rc = -ENOTTY);
2153 module_put(THIS_MODULE);
2158 static int mdc_get_info_rpc(struct obd_export *exp,
2159 u32 keylen, void *key,
2160 u32 vallen, void *val)
2162 struct obd_import *imp = class_exp2cliimp(exp);
2163 struct ptlrpc_request *req;
2168 req = ptlrpc_request_alloc(imp, &RQF_MDS_GET_INFO);
2172 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY,
2173 RCL_CLIENT, keylen);
2174 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VALLEN,
2175 RCL_CLIENT, sizeof(vallen));
2177 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GET_INFO);
2179 ptlrpc_request_free(req);
2183 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
2184 memcpy(tmp, key, keylen);
2185 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_VALLEN);
2186 memcpy(tmp, &vallen, sizeof(vallen));
2188 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VAL,
2189 RCL_SERVER, vallen);
2190 ptlrpc_request_set_replen(req);
2192 rc = ptlrpc_queue_wait(req);
2193 /* -EREMOTE means the get_info result is partial, and it needs to
2194 * continue on another MDT, see fid2path part in lmv_iocontrol */
2195 if (rc == 0 || rc == -EREMOTE) {
2196 tmp = req_capsule_server_get(&req->rq_pill, &RMF_GETINFO_VAL);
2197 memcpy(val, tmp, vallen);
2198 if (ptlrpc_rep_need_swab(req)) {
2199 if (KEY_IS(KEY_FID2PATH))
2200 lustre_swab_fid2path(val);
2203 ptlrpc_req_finished(req);
2208 static void lustre_swab_hai(struct hsm_action_item *h)
2210 __swab32s(&h->hai_len);
2211 __swab32s(&h->hai_action);
2212 lustre_swab_lu_fid(&h->hai_fid);
2213 lustre_swab_lu_fid(&h->hai_dfid);
2214 __swab64s(&h->hai_cookie);
2215 __swab64s(&h->hai_extent.offset);
2216 __swab64s(&h->hai_extent.length);
2217 __swab64s(&h->hai_gid);
2220 static void lustre_swab_hal(struct hsm_action_list *h)
2222 struct hsm_action_item *hai;
2225 __swab32s(&h->hal_version);
2226 __swab32s(&h->hal_count);
2227 __swab32s(&h->hal_archive_id);
2228 __swab64s(&h->hal_flags);
2230 for (i = 0; i < h->hal_count; i++, hai = hai_next(hai))
2231 lustre_swab_hai(hai);
2234 static void lustre_swab_kuch(struct kuc_hdr *l)
2236 __swab16s(&l->kuc_magic);
2237 /* __u8 l->kuc_transport */
2238 __swab16s(&l->kuc_msgtype);
2239 __swab16s(&l->kuc_msglen);
2242 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
2243 struct lustre_kernelcomm *lk)
2245 struct obd_import *imp = class_exp2cliimp(exp);
2246 __u32 archive = lk->lk_data;
2249 if (lk->lk_group != KUC_GRP_HSM) {
2250 CERROR("Bad copytool group %d\n", lk->lk_group);
2254 CDEBUG(D_HSM, "CT start r%d w%d u%d g%d f%#x\n", lk->lk_rfd, lk->lk_wfd,
2255 lk->lk_uid, lk->lk_group, lk->lk_flags);
2257 if (lk->lk_flags & LK_FLG_STOP) {
2258 /* Unregister with the coordinator */
2259 rc = mdc_ioc_hsm_ct_unregister(imp);
2261 rc = mdc_ioc_hsm_ct_register(imp, archive);
2268 * Send a message to any listening copytools
2269 * @param val KUC message (kuc_hdr + hsm_action_list)
2270 * @param len total length of message
2272 static int mdc_hsm_copytool_send(size_t len, void *val)
2274 struct kuc_hdr *lh = (struct kuc_hdr *)val;
2275 struct hsm_action_list *hal = (struct hsm_action_list *)(lh + 1);
2279 if (len < sizeof(*lh) + sizeof(*hal)) {
2280 CERROR("Short HSM message %zu < %zu\n", len,
2281 sizeof(*lh) + sizeof(*hal));
2284 if (lh->kuc_magic == __swab16(KUC_MAGIC)) {
2285 lustre_swab_kuch(lh);
2286 lustre_swab_hal(hal);
2287 } else if (lh->kuc_magic != KUC_MAGIC) {
2288 CERROR("Bad magic %x!=%x\n", lh->kuc_magic, KUC_MAGIC);
2292 CDEBUG(D_HSM, " Received message mg=%x t=%d m=%d l=%d actions=%d "
2294 lh->kuc_magic, lh->kuc_transport, lh->kuc_msgtype,
2295 lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
2297 /* Broadcast to HSM listeners */
2298 rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
2304 * callback function passed to kuc for re-registering each HSM copytool
2305 * running on MDC, after MDT shutdown/recovery.
2306 * @param data copytool registration data
2307 * @param cb_arg callback argument (obd_import)
2309 static int mdc_hsm_ct_reregister(void *data, void *cb_arg)
2311 struct kkuc_ct_data *kcd = data;
2312 struct obd_import *imp = (struct obd_import *)cb_arg;
2315 if (kcd == NULL || kcd->kcd_magic != KKUC_CT_DATA_MAGIC)
2318 if (!obd_uuid_equals(&kcd->kcd_uuid, &imp->imp_obd->obd_uuid))
2321 CDEBUG(D_HA, "%s: recover copytool registration to MDT (archive=%#x)\n",
2322 imp->imp_obd->obd_name, kcd->kcd_archive);
2323 rc = mdc_ioc_hsm_ct_register(imp, kcd->kcd_archive);
2325 /* ignore error if the copytool is already registered */
2326 return (rc == -EEXIST) ? 0 : rc;
2330 * Re-establish all kuc contexts with MDT
2331 * after MDT shutdown/recovery.
2333 static int mdc_kuc_reregister(struct obd_import *imp)
2335 /* re-register HSM agents */
2336 return libcfs_kkuc_group_foreach(KUC_GRP_HSM, mdc_hsm_ct_reregister,
2340 static int mdc_set_info_async(const struct lu_env *env,
2341 struct obd_export *exp,
2342 u32 keylen, void *key,
2343 u32 vallen, void *val,
2344 struct ptlrpc_request_set *set)
2346 struct obd_import *imp = class_exp2cliimp(exp);
2350 if (KEY_IS(KEY_READ_ONLY)) {
2351 if (vallen != sizeof(int))
2354 spin_lock(&imp->imp_lock);
2355 if (*((int *)val)) {
2356 imp->imp_connect_flags_orig |= OBD_CONNECT_RDONLY;
2357 imp->imp_connect_data.ocd_connect_flags |=
2360 imp->imp_connect_flags_orig &= ~OBD_CONNECT_RDONLY;
2361 imp->imp_connect_data.ocd_connect_flags &=
2362 ~OBD_CONNECT_RDONLY;
2364 spin_unlock(&imp->imp_lock);
2366 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2367 keylen, key, vallen, val, set);
2370 if (KEY_IS(KEY_SPTLRPC_CONF)) {
2371 sptlrpc_conf_client_adapt(exp->exp_obd);
2374 if (KEY_IS(KEY_FLUSH_CTX)) {
2375 sptlrpc_import_flush_my_ctx(imp);
2378 if (KEY_IS(KEY_CHANGELOG_CLEAR)) {
2379 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2380 keylen, key, vallen, val, set);
2383 if (KEY_IS(KEY_HSM_COPYTOOL_SEND)) {
2384 rc = mdc_hsm_copytool_send(vallen, val);
2388 if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2389 __u32 *default_easize = val;
2391 exp->exp_obd->u.cli.cl_default_mds_easize = *default_easize;
2395 CERROR("Unknown key %s\n", (char *)key);
2399 static int mdc_get_info(const struct lu_env *env, struct obd_export *exp,
2400 __u32 keylen, void *key, __u32 *vallen, void *val)
2404 if (KEY_IS(KEY_MAX_EASIZE)) {
2405 __u32 mdsize, *max_easize;
2407 if (*vallen != sizeof(int))
2409 mdsize = *(__u32 *)val;
2410 if (mdsize > exp->exp_obd->u.cli.cl_max_mds_easize)
2411 exp->exp_obd->u.cli.cl_max_mds_easize = mdsize;
2413 *max_easize = exp->exp_obd->u.cli.cl_max_mds_easize;
2415 } else if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2416 __u32 *default_easize;
2418 if (*vallen != sizeof(int))
2420 default_easize = val;
2421 *default_easize = exp->exp_obd->u.cli.cl_default_mds_easize;
2423 } else if (KEY_IS(KEY_CONN_DATA)) {
2424 struct obd_import *imp = class_exp2cliimp(exp);
2425 struct obd_connect_data *data = val;
2427 if (*vallen != sizeof(*data))
2430 *data = imp->imp_connect_data;
2432 } else if (KEY_IS(KEY_TGT_COUNT)) {
2433 *((__u32 *)val) = 1;
2437 rc = mdc_get_info_rpc(exp, keylen, key, *vallen, val);
2442 static int mdc_fsync(struct obd_export *exp, const struct lu_fid *fid,
2443 struct ptlrpc_request **request)
2445 struct ptlrpc_request *req;
2450 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_SYNC);
2454 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SYNC);
2456 ptlrpc_request_free(req);
2460 mdc_pack_body(req, fid, 0, 0, -1, 0);
2462 ptlrpc_request_set_replen(req);
2464 rc = ptlrpc_queue_wait(req);
2466 ptlrpc_req_finished(req);
2472 static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
2473 enum obd_import_event event)
2477 LASSERT(imp->imp_obd == obd);
2480 case IMP_EVENT_DISCON: {
2482 /* XXX Pass event up to OBDs stack. used only for FLD now */
2483 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_DISCON, NULL);
2487 case IMP_EVENT_INACTIVE: {
2488 struct client_obd *cli = &obd->u.cli;
2490 * Flush current sequence to make client obtain new one
2491 * from server in case of disconnect/reconnect.
2493 if (cli->cl_seq != NULL)
2494 seq_client_flush(cli->cl_seq);
2496 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_INACTIVE, NULL);
2499 case IMP_EVENT_INVALIDATE: {
2500 struct ldlm_namespace *ns = obd->obd_namespace;
2502 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
2506 case IMP_EVENT_ACTIVE:
2507 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVE, NULL);
2508 /* redo the kuc registration after reconnecting */
2510 rc = mdc_kuc_reregister(imp);
2513 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_OCD, NULL);
2515 case IMP_EVENT_DEACTIVATE:
2516 case IMP_EVENT_ACTIVATE:
2519 CERROR("Unknown import event %x\n", event);
2525 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
2526 struct lu_fid *fid, struct md_op_data *op_data)
2528 struct client_obd *cli = &exp->exp_obd->u.cli;
2529 struct lu_client_seq *seq = cli->cl_seq;
2531 RETURN(seq_client_alloc_fid(env, seq, fid));
2534 static struct obd_uuid *mdc_get_uuid(struct obd_export *exp)
2536 struct client_obd *cli = &exp->exp_obd->u.cli;
2537 return &cli->cl_target_uuid;
2541 * Determine whether the lock can be canceled before replaying it during
2542 * recovery, non zero value will be return if the lock can be canceled,
2543 * or zero returned for not
2545 static int mdc_cancel_weight(struct ldlm_lock *lock)
2547 if (lock->l_resource->lr_type != LDLM_IBITS)
2550 /* FIXME: if we ever get into a situation where there are too many
2551 * opened files with open locks on a single node, then we really
2552 * should replay these open locks to reget it */
2553 if (lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_OPEN)
2559 static int mdc_resource_inode_free(struct ldlm_resource *res)
2561 if (res->lr_lvb_inode)
2562 res->lr_lvb_inode = NULL;
2567 static struct ldlm_valblock_ops inode_lvbo = {
2568 .lvbo_free = mdc_resource_inode_free
2571 static int mdc_llog_init(struct obd_device *obd)
2573 struct obd_llog_group *olg = &obd->obd_olg;
2574 struct llog_ctxt *ctxt;
2579 rc = llog_setup(NULL, obd, olg, LLOG_CHANGELOG_REPL_CTXT, obd,
2584 ctxt = llog_group_get_ctxt(olg, LLOG_CHANGELOG_REPL_CTXT);
2585 llog_initiator_connect(ctxt);
2586 llog_ctxt_put(ctxt);
2591 static void mdc_llog_finish(struct obd_device *obd)
2593 struct llog_ctxt *ctxt;
2597 ctxt = llog_get_context(obd, LLOG_CHANGELOG_REPL_CTXT);
2599 llog_cleanup(NULL, ctxt);
2604 static int mdc_setup(struct obd_device *obd, struct lustre_cfg *cfg)
2609 rc = ptlrpcd_addref();
2613 rc = client_obd_setup(obd, cfg);
2615 GOTO(err_ptlrpcd_decref, rc);
2616 #ifdef CONFIG_PROC_FS
2617 obd->obd_vars = lprocfs_mdc_obd_vars;
2618 lprocfs_obd_setup(obd);
2619 lprocfs_alloc_md_stats(obd, 0);
2621 sptlrpc_lprocfs_cliobd_attach(obd);
2622 ptlrpc_lprocfs_register_obd(obd);
2624 ns_register_cancel(obd->obd_namespace, mdc_cancel_weight);
2626 obd->obd_namespace->ns_lvbo = &inode_lvbo;
2628 rc = mdc_llog_init(obd);
2631 CERROR("failed to setup llogging subsystems\n");
2642 /* Initialize the default and maximum LOV EA sizes. This allows
2643 * us to make MDS RPCs with large enough reply buffers to hold a default
2644 * sized EA without having to calculate this (via a call into the
2645 * LOV + OSCs) each time we make an RPC. The maximum size is also tracked
2646 * but not used to avoid wastefully vmalloc()'ing large reply buffers when
2647 * a large number of stripes is possible. If a larger reply buffer is
2648 * required it will be reallocated in the ptlrpc layer due to overflow.
2650 static int mdc_init_ea_size(struct obd_export *exp, __u32 easize,
2653 struct obd_device *obd = exp->exp_obd;
2654 struct client_obd *cli = &obd->u.cli;
2657 if (cli->cl_max_mds_easize < easize)
2658 cli->cl_max_mds_easize = easize;
2660 if (cli->cl_default_mds_easize < def_easize)
2661 cli->cl_default_mds_easize = def_easize;
2666 static int mdc_precleanup(struct obd_device *obd)
2670 /* Failsafe, ok if racy */
2671 if (obd->obd_type->typ_refcnt <= 1)
2672 libcfs_kkuc_group_rem(0, KUC_GRP_HSM);
2674 obd_cleanup_client_import(obd);
2675 ptlrpc_lprocfs_unregister_obd(obd);
2676 lprocfs_obd_cleanup(obd);
2677 lprocfs_free_md_stats(obd);
2678 mdc_llog_finish(obd);
2682 static int mdc_cleanup(struct obd_device *obd)
2686 return client_obd_cleanup(obd);
2689 static int mdc_process_config(struct obd_device *obd, size_t len, void *buf)
2691 struct lustre_cfg *lcfg = buf;
2692 int rc = class_process_proc_param(PARAM_MDC, obd->obd_vars, lcfg, obd);
2693 return (rc > 0 ? 0: rc);
2697 /* get remote permission for current user on fid */
2698 static int mdc_get_remote_perm(struct obd_export *exp, const struct lu_fid *fid,
2699 u32 suppgid, struct ptlrpc_request **request)
2701 struct ptlrpc_request *req;
2705 LASSERT(client_is_remote(exp));
2708 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
2712 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
2714 ptlrpc_request_free(req);
2718 mdc_pack_body(req, fid, OBD_MD_FLRMTPERM, 0, suppgid, 0);
2720 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
2721 sizeof(struct mdt_remote_perm));
2723 ptlrpc_request_set_replen(req);
2725 rc = ptlrpc_queue_wait(req);
2727 ptlrpc_req_finished(req);
2733 static struct obd_ops mdc_obd_ops = {
2734 .o_owner = THIS_MODULE,
2735 .o_setup = mdc_setup,
2736 .o_precleanup = mdc_precleanup,
2737 .o_cleanup = mdc_cleanup,
2738 .o_add_conn = client_import_add_conn,
2739 .o_del_conn = client_import_del_conn,
2740 .o_connect = client_connect_import,
2741 .o_disconnect = client_disconnect_export,
2742 .o_iocontrol = mdc_iocontrol,
2743 .o_set_info_async = mdc_set_info_async,
2744 .o_statfs = mdc_statfs,
2745 .o_fid_init = client_fid_init,
2746 .o_fid_fini = client_fid_fini,
2747 .o_fid_alloc = mdc_fid_alloc,
2748 .o_import_event = mdc_import_event,
2749 .o_get_info = mdc_get_info,
2750 .o_process_config = mdc_process_config,
2751 .o_get_uuid = mdc_get_uuid,
2752 .o_quotactl = mdc_quotactl,
2755 static struct md_ops mdc_md_ops = {
2756 .m_getstatus = mdc_getstatus,
2757 .m_null_inode = mdc_null_inode,
2758 .m_find_cbdata = mdc_find_cbdata,
2759 .m_close = mdc_close,
2760 .m_create = mdc_create,
2761 .m_enqueue = mdc_enqueue,
2762 .m_getattr = mdc_getattr,
2763 .m_getattr_name = mdc_getattr_name,
2764 .m_intent_lock = mdc_intent_lock,
2766 .m_rename = mdc_rename,
2767 .m_setattr = mdc_setattr,
2768 .m_setxattr = mdc_setxattr,
2769 .m_getxattr = mdc_getxattr,
2770 .m_fsync = mdc_fsync,
2771 .m_read_page = mdc_read_page,
2772 .m_unlink = mdc_unlink,
2773 .m_cancel_unused = mdc_cancel_unused,
2774 .m_init_ea_size = mdc_init_ea_size,
2775 .m_set_lock_data = mdc_set_lock_data,
2776 .m_lock_match = mdc_lock_match,
2777 .m_get_lustre_md = mdc_get_lustre_md,
2778 .m_free_lustre_md = mdc_free_lustre_md,
2779 .m_set_open_replay_data = mdc_set_open_replay_data,
2780 .m_clear_open_replay_data = mdc_clear_open_replay_data,
2781 .m_get_remote_perm = mdc_get_remote_perm,
2782 .m_intent_getattr_async = mdc_intent_getattr_async,
2783 .m_revalidate_lock = mdc_revalidate_lock
2786 static int __init mdc_init(void)
2788 return class_register_type(&mdc_obd_ops, &mdc_md_ops, true, NULL,
2789 LUSTRE_MDC_NAME, NULL);
2792 static void /*__exit*/ mdc_exit(void)
2794 class_unregister_type(LUSTRE_MDC_NAME);
2797 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2798 MODULE_DESCRIPTION("Lustre Metadata Client");
2799 MODULE_VERSION(LUSTRE_VERSION_STRING);
2800 MODULE_LICENSE("GPL");
2802 module_init(mdc_init);
2803 module_exit(mdc_exit);