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/init.h>
40 #include <linux/kthread.h>
41 #include <linux/miscdevice.h>
42 #include <linux/module.h>
43 #include <linux/pagemap.h>
44 #include <linux/user_namespace.h>
45 #include <linux/utsname.h>
46 #ifdef HAVE_UIDGID_HEADER
47 # include <linux/uidgid.h>
50 #include <cl_object.h>
51 #include <llog_swab.h>
52 #include <lprocfs_status.h>
53 #include <lustre_acl.h>
54 #include <lustre_fid.h>
55 #include <lustre_ioctl.h>
56 #include <lustre_kernelcomm.h>
57 #include <lustre_lmv.h>
58 #include <lustre_log.h>
59 #include <lustre_param.h>
60 #include <lustre_swab.h>
61 #include <obd_class.h>
63 #include "mdc_internal.h"
65 #define REQUEST_MINOR 244
67 static int mdc_cleanup(struct obd_device *obd);
69 static inline int mdc_queue_wait(struct ptlrpc_request *req)
71 struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
74 /* obd_get_request_slot() ensures that this client has no more
75 * than cl_max_rpcs_in_flight RPCs simultaneously inf light
77 rc = obd_get_request_slot(cli);
81 rc = ptlrpc_queue_wait(req);
82 obd_put_request_slot(cli);
87 static int mdc_getstatus(struct obd_export *exp, struct lu_fid *rootfid)
89 struct ptlrpc_request *req;
90 struct mdt_body *body;
95 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
97 LUSTRE_MDS_VERSION, MDS_GETSTATUS);
101 mdc_pack_body(req, NULL, 0, 0, -1, 0);
102 req->rq_send_state = LUSTRE_IMP_FULL;
104 ptlrpc_request_set_replen(req);
106 rc = ptlrpc_queue_wait(req);
110 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
112 GOTO(out, rc = -EPROTO);
114 *rootfid = body->mbo_fid1;
115 CDEBUG(D_NET, "root fid="DFID", last_committed="LPU64"\n",
116 PFID(rootfid), lustre_msg_get_last_committed(req->rq_repmsg));
119 ptlrpc_req_finished(req);
125 * This function now is known to always saying that it will receive 4 buffers
126 * from server. Even for cases when acl_size and md_size is zero, RPC header
127 * will contain 4 fields and RPC itself will contain zero size fields. This is
128 * because mdt_getattr*() _always_ returns 4 fields, but if acl is not needed
129 * and thus zero, it shrinks it, making zero size. The same story about
130 * md_size. And this is course of problem when client waits for smaller number
131 * of fields. This issue will be fixed later when client gets aware of RPC
134 static int mdc_getattr_common(struct obd_export *exp,
135 struct ptlrpc_request *req)
137 struct req_capsule *pill = &req->rq_pill;
138 struct mdt_body *body;
143 /* Request message already built. */
144 rc = ptlrpc_queue_wait(req);
148 /* sanity check for the reply */
149 body = req_capsule_server_get(pill, &RMF_MDT_BODY);
153 CDEBUG(D_NET, "mode: %o\n", body->mbo_mode);
155 mdc_update_max_ea_from_body(exp, body);
156 if (body->mbo_eadatasize != 0) {
157 eadata = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
158 body->mbo_eadatasize);
163 if (body->mbo_valid & OBD_MD_FLRMTPERM) {
164 struct mdt_remote_perm *perm;
166 LASSERT(client_is_remote(exp));
167 perm = req_capsule_server_swab_get(pill, &RMF_ACL,
168 lustre_swab_mdt_remote_perm);
176 static int mdc_getattr(struct obd_export *exp, struct md_op_data *op_data,
177 struct ptlrpc_request **request)
179 struct ptlrpc_request *req;
183 /* Single MDS without an LMV case */
184 if (op_data->op_flags & MF_GET_MDT_IDX) {
189 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
193 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
195 ptlrpc_request_free(req);
199 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
200 op_data->op_mode, -1, 0);
202 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
204 if (op_data->op_valid & OBD_MD_FLRMTPERM) {
205 LASSERT(client_is_remote(exp));
206 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
207 sizeof(struct mdt_remote_perm));
209 ptlrpc_request_set_replen(req);
211 rc = mdc_getattr_common(exp, req);
213 ptlrpc_req_finished(req);
219 static int mdc_getattr_name(struct obd_export *exp, struct md_op_data *op_data,
220 struct ptlrpc_request **request)
222 struct ptlrpc_request *req;
227 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
228 &RQF_MDS_GETATTR_NAME);
232 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
233 op_data->op_namelen + 1);
235 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR_NAME);
237 ptlrpc_request_free(req);
241 mdc_pack_body(req, &op_data->op_fid1, op_data->op_valid,
242 op_data->op_mode, op_data->op_suppgids[0], 0);
244 if (op_data->op_name) {
245 char *name = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
246 LASSERT(strnlen(op_data->op_name, op_data->op_namelen) ==
247 op_data->op_namelen);
248 memcpy(name, op_data->op_name, op_data->op_namelen);
251 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
253 ptlrpc_request_set_replen(req);
255 rc = mdc_getattr_common(exp, req);
257 ptlrpc_req_finished(req);
263 static int mdc_xattr_common(struct obd_export *exp,const struct req_format *fmt,
264 const struct lu_fid *fid, int opcode, u64 valid,
265 const char *xattr_name, const char *input,
266 int input_size, int output_size, int flags,
267 __u32 suppgid, struct ptlrpc_request **request)
269 struct ptlrpc_request *req;
270 int xattr_namelen = 0;
276 req = ptlrpc_request_alloc(class_exp2cliimp(exp), fmt);
281 xattr_namelen = strlen(xattr_name) + 1;
282 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
287 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_CLIENT,
291 /* Flush local XATTR locks to get rid of a possible cancel RPC */
292 if (opcode == MDS_REINT && fid_is_sane(fid) &&
293 exp->exp_connect_data.ocd_ibits_known & MDS_INODELOCK_XATTR) {
294 struct list_head cancels = LIST_HEAD_INIT(cancels);
297 /* Without that packing would fail */
299 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
302 count = mdc_resource_get_unused(exp, fid,
304 MDS_INODELOCK_XATTR);
306 rc = mdc_prep_elc_req(exp, req, MDS_REINT, &cancels, count);
308 ptlrpc_request_free(req);
312 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, opcode);
314 ptlrpc_request_free(req);
319 if (opcode == MDS_REINT) {
320 struct mdt_rec_setxattr *rec;
322 CLASSERT(sizeof(struct mdt_rec_setxattr) ==
323 sizeof(struct mdt_rec_reint));
324 rec = req_capsule_client_get(&req->rq_pill, &RMF_REC_REINT);
325 rec->sx_opcode = REINT_SETXATTR;
326 rec->sx_fsuid = from_kuid(&init_user_ns, current_fsuid());
327 rec->sx_fsgid = from_kgid(&init_user_ns, current_fsgid());
328 rec->sx_cap = cfs_curproc_cap_pack();
329 rec->sx_suppgid1 = suppgid;
330 rec->sx_suppgid2 = -1;
332 rec->sx_valid = valid | OBD_MD_FLCTIME;
333 rec->sx_time = cfs_time_current_sec();
334 rec->sx_size = output_size;
335 rec->sx_flags = flags;
337 mdc_pack_body(req, fid, valid, output_size, suppgid, flags);
341 tmp = req_capsule_client_get(&req->rq_pill, &RMF_NAME);
342 memcpy(tmp, xattr_name, xattr_namelen);
345 tmp = req_capsule_client_get(&req->rq_pill, &RMF_EADATA);
346 memcpy(tmp, input, input_size);
349 if (req_capsule_has_field(&req->rq_pill, &RMF_EADATA, RCL_SERVER))
350 req_capsule_set_size(&req->rq_pill, &RMF_EADATA,
351 RCL_SERVER, output_size);
352 ptlrpc_request_set_replen(req);
355 if (opcode == MDS_REINT)
356 mdc_get_mod_rpc_slot(req, NULL);
358 rc = ptlrpc_queue_wait(req);
360 if (opcode == MDS_REINT)
361 mdc_put_mod_rpc_slot(req, NULL);
364 ptlrpc_req_finished(req);
370 static int mdc_setxattr(struct obd_export *exp, const struct lu_fid *fid,
371 u64 valid, const char *xattr_name,
372 const char *input, int input_size, int output_size,
373 int flags, __u32 suppgid,
374 struct ptlrpc_request **request)
376 return mdc_xattr_common(exp, &RQF_MDS_REINT_SETXATTR,
377 fid, MDS_REINT, valid, xattr_name,
378 input, input_size, output_size, flags,
382 static int mdc_getxattr(struct obd_export *exp, const struct lu_fid *fid,
383 u64 valid, const char *xattr_name,
384 const char *input, int input_size, int output_size,
385 int flags, struct ptlrpc_request **request)
387 return mdc_xattr_common(exp, &RQF_MDS_GETXATTR,
388 fid, MDS_GETXATTR, valid, xattr_name,
389 input, input_size, output_size, flags,
393 #ifdef CONFIG_FS_POSIX_ACL
394 static int mdc_unpack_acl(struct ptlrpc_request *req, struct lustre_md *md)
396 struct req_capsule *pill = &req->rq_pill;
397 struct mdt_body *body = md->body;
398 struct posix_acl *acl;
403 if (!body->mbo_aclsize)
406 buf = req_capsule_server_sized_get(pill, &RMF_ACL, body->mbo_aclsize);
411 acl = posix_acl_from_xattr(&init_user_ns, buf, body->mbo_aclsize);
416 CERROR("convert xattr to acl: %d\n", rc);
420 rc = posix_acl_valid(acl);
422 CERROR("validate acl: %d\n", rc);
423 posix_acl_release(acl);
431 #define mdc_unpack_acl(req, md) 0
434 int mdc_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req,
435 struct obd_export *dt_exp, struct obd_export *md_exp,
436 struct lustre_md *md)
438 struct req_capsule *pill = &req->rq_pill;
443 memset(md, 0, sizeof(*md));
445 md->body = req_capsule_server_get(pill, &RMF_MDT_BODY);
446 LASSERT(md->body != NULL);
448 if (md->body->mbo_valid & OBD_MD_FLEASIZE) {
449 if (!S_ISREG(md->body->mbo_mode)) {
450 CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, should be a "
451 "regular file, but is not\n");
452 GOTO(out, rc = -EPROTO);
455 if (md->body->mbo_eadatasize == 0) {
456 CDEBUG(D_INFO, "OBD_MD_FLEASIZE set, "
457 "but eadatasize 0\n");
458 GOTO(out, rc = -EPROTO);
461 md->layout.lb_len = md->body->mbo_eadatasize;
462 md->layout.lb_buf = req_capsule_server_sized_get(pill,
465 if (md->layout.lb_buf == NULL)
466 GOTO(out, rc = -EPROTO);
467 } else if (md->body->mbo_valid & OBD_MD_FLDIREA) {
468 const union lmv_mds_md *lmv;
471 if (!S_ISDIR(md->body->mbo_mode)) {
472 CDEBUG(D_INFO, "OBD_MD_FLDIREA set, should be a "
473 "directory, but is not\n");
474 GOTO(out, rc = -EPROTO);
477 lmv_size = md->body->mbo_eadatasize;
479 CDEBUG(D_INFO, "OBD_MD_FLDIREA is set, "
480 "but eadatasize 0\n");
484 if (md->body->mbo_valid & OBD_MD_MEA) {
485 lmv = req_capsule_server_sized_get(pill, &RMF_MDT_MD,
488 GOTO(out, rc = -EPROTO);
490 rc = md_unpackmd(md_exp, &md->lmv, lmv, lmv_size);
494 if (rc < (typeof(rc))sizeof(*md->lmv)) {
495 CDEBUG(D_INFO, "size too small: "
496 "rc < sizeof(*md->lmv) (%d < %d)\n",
497 rc, (int)sizeof(*md->lmv));
498 GOTO(out, rc = -EPROTO);
504 if (md->body->mbo_valid & OBD_MD_FLRMTPERM) {
505 /* remote permission */
506 LASSERT(client_is_remote(exp));
507 md->remote_perm = req_capsule_server_swab_get(pill, &RMF_ACL,
508 lustre_swab_mdt_remote_perm);
509 if (!md->remote_perm)
510 GOTO(out, rc = -EPROTO);
511 } else if (md->body->mbo_valid & OBD_MD_FLACL) {
512 /* for ACL, it's possible that FLACL is set but aclsize is zero.
513 * only when aclsize != 0 there's an actual segment for ACL
516 if (md->body->mbo_aclsize) {
517 rc = mdc_unpack_acl(req, md);
520 #ifdef CONFIG_FS_POSIX_ACL
522 md->posix_acl = NULL;
530 #ifdef CONFIG_FS_POSIX_ACL
531 posix_acl_release(md->posix_acl);
537 int mdc_free_lustre_md(struct obd_export *exp, struct lustre_md *md)
543 void mdc_replay_open(struct ptlrpc_request *req)
545 struct md_open_data *mod = req->rq_cb_data;
546 struct ptlrpc_request *close_req;
547 struct obd_client_handle *och;
548 struct lustre_handle old;
549 struct mdt_body *body;
553 DEBUG_REQ(D_ERROR, req,
554 "Can't properly replay without open data.");
559 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
560 LASSERT(body != NULL);
564 struct lustre_handle *file_fh;
566 LASSERT(och->och_magic == OBD_CLIENT_HANDLE_MAGIC);
568 file_fh = &och->och_fh;
569 CDEBUG(D_HA, "updating handle from "LPX64" to "LPX64"\n",
570 file_fh->cookie, body->mbo_handle.cookie);
572 *file_fh = body->mbo_handle;
574 close_req = mod->mod_close_req;
575 if (close_req != NULL) {
576 __u32 opc = lustre_msg_get_opc(close_req->rq_reqmsg);
577 struct mdt_ioepoch *epoch;
579 LASSERT(opc == MDS_CLOSE);
580 epoch = req_capsule_client_get(&close_req->rq_pill,
585 LASSERT(!memcmp(&old, &epoch->mio_handle, sizeof(old)));
587 DEBUG_REQ(D_HA, close_req, "updating close body with new fh");
588 epoch->mio_handle = body->mbo_handle;
593 void mdc_commit_open(struct ptlrpc_request *req)
595 struct md_open_data *mod = req->rq_cb_data;
600 * No need to touch md_open_data::mod_och, it holds a reference on
601 * \var mod and will zero references to each other, \var mod will be
602 * freed after that when md_open_data::mod_och will put the reference.
606 * Do not let open request to disappear as it still may be needed
607 * for close rpc to happen (it may happen on evict only, otherwise
608 * ptlrpc_request::rq_replay does not let mdc_commit_open() to be
609 * called), just mark this rpc as committed to distinguish these 2
610 * cases, see mdc_close() for details. The open request reference will
611 * be put along with freeing \var mod.
613 ptlrpc_request_addref(req);
614 spin_lock(&req->rq_lock);
615 req->rq_committed = 1;
616 spin_unlock(&req->rq_lock);
617 req->rq_cb_data = NULL;
621 int mdc_set_open_replay_data(struct obd_export *exp,
622 struct obd_client_handle *och,
623 struct lookup_intent *it)
625 struct md_open_data *mod;
626 struct mdt_rec_create *rec;
627 struct mdt_body *body;
628 struct ptlrpc_request *open_req = it->d.lustre.it_data;
629 struct obd_import *imp = open_req->rq_import;
632 if (!open_req->rq_replay)
635 rec = req_capsule_client_get(&open_req->rq_pill, &RMF_REC_REINT);
636 body = req_capsule_server_get(&open_req->rq_pill, &RMF_MDT_BODY);
637 LASSERT(rec != NULL);
638 /* Incoming message in my byte order (it's been swabbed). */
639 /* Outgoing messages always in my byte order. */
640 LASSERT(body != NULL);
642 /* Only if the import is replayable, we set replay_open data */
643 if (och && imp->imp_replayable) {
644 mod = obd_mod_alloc();
646 DEBUG_REQ(D_ERROR, open_req,
647 "Can't allocate md_open_data");
652 * Take a reference on \var mod, to be freed on mdc_close().
653 * It protects \var mod from being freed on eviction (commit
654 * callback is called despite rq_replay flag).
655 * Another reference for \var och.
660 spin_lock(&open_req->rq_lock);
663 mod->mod_is_create = it_disposition(it, DISP_OPEN_CREATE) ||
664 it_disposition(it, DISP_OPEN_STRIPE);
665 mod->mod_open_req = open_req;
666 open_req->rq_cb_data = mod;
667 open_req->rq_commit_cb = mdc_commit_open;
668 spin_unlock(&open_req->rq_lock);
671 rec->cr_fid2 = body->mbo_fid1;
672 rec->cr_ioepoch = body->mbo_ioepoch;
673 rec->cr_old_handle.cookie = body->mbo_handle.cookie;
674 open_req->rq_replay_cb = mdc_replay_open;
675 if (!fid_is_sane(&body->mbo_fid1)) {
676 DEBUG_REQ(D_ERROR, open_req, "Saving replay request with "
681 DEBUG_REQ(D_RPCTRACE, open_req, "Set up open replay data");
685 static void mdc_free_open(struct md_open_data *mod)
689 if (mod->mod_is_create == 0 &&
690 imp_connect_disp_stripe(mod->mod_open_req->rq_import))
693 LASSERT(mod->mod_open_req->rq_replay == 0);
695 DEBUG_REQ(D_RPCTRACE, mod->mod_open_req, "free open request\n");
697 ptlrpc_request_committed(mod->mod_open_req, committed);
698 if (mod->mod_close_req)
699 ptlrpc_request_committed(mod->mod_close_req, committed);
702 int mdc_clear_open_replay_data(struct obd_export *exp,
703 struct obd_client_handle *och)
705 struct md_open_data *mod = och->och_mod;
709 * It is possible to not have \var mod in a case of eviction between
710 * lookup and ll_file_open().
715 LASSERT(mod != LP_POISON);
716 LASSERT(mod->mod_open_req != NULL);
726 static int mdc_close(struct obd_export *exp, struct md_op_data *op_data,
727 struct md_open_data *mod, struct ptlrpc_request **request)
729 struct obd_device *obd = class_exp2obd(exp);
730 struct ptlrpc_request *req;
731 struct req_format *req_fmt;
736 if (op_data->op_bias & MDS_HSM_RELEASE) {
737 req_fmt = &RQF_MDS_INTENT_CLOSE;
739 /* allocate a FID for volatile file */
740 rc = mdc_fid_alloc(NULL, exp, &op_data->op_fid2, op_data);
742 CERROR("%s: "DFID" failed to allocate FID: %d\n",
743 obd->obd_name, PFID(&op_data->op_fid1), rc);
744 /* save the errcode and proceed to close */
747 } else if (op_data->op_bias & MDS_CLOSE_LAYOUT_SWAP) {
748 req_fmt = &RQF_MDS_INTENT_CLOSE;
750 req_fmt = &RQF_MDS_CLOSE;
754 req = ptlrpc_request_alloc(class_exp2cliimp(exp), req_fmt);
758 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_CLOSE);
760 ptlrpc_request_free(req);
764 /* To avoid a livelock (bug 7034), we need to send CLOSE RPCs to a
765 * portal whose threads are not taking any DLM locks and are therefore
766 * always progressing */
767 req->rq_request_portal = MDS_READPAGE_PORTAL;
768 ptlrpc_at_set_req_timeout(req);
770 /* Ensure that this close's handle is fixed up during replay. */
771 if (likely(mod != NULL)) {
772 LASSERTF(mod->mod_open_req != NULL &&
773 mod->mod_open_req->rq_type != LI_POISON,
774 "POISONED open %p!\n", mod->mod_open_req);
776 mod->mod_close_req = req;
778 DEBUG_REQ(D_HA, mod->mod_open_req, "matched open");
779 /* We no longer want to preserve this open for replay even
780 * though the open was committed. b=3632, b=3633 */
781 spin_lock(&mod->mod_open_req->rq_lock);
782 mod->mod_open_req->rq_replay = 0;
783 spin_unlock(&mod->mod_open_req->rq_lock);
785 CDEBUG(D_HA, "couldn't find open req; expecting close error\n");
788 mdc_close_pack(req, op_data);
790 req_capsule_set_size(&req->rq_pill, &RMF_MDT_MD, RCL_SERVER,
791 obd->u.cli.cl_default_mds_easize);
793 ptlrpc_request_set_replen(req);
795 mdc_get_mod_rpc_slot(req, NULL);
796 rc = ptlrpc_queue_wait(req);
797 mdc_put_mod_rpc_slot(req, NULL);
799 if (req->rq_repmsg == NULL) {
800 CDEBUG(D_RPCTRACE, "request failed to send: %p, %d\n", req,
803 rc = req->rq_status ?: -EIO;
804 } else if (rc == 0 || rc == -EAGAIN) {
805 struct mdt_body *body;
807 rc = lustre_msg_get_status(req->rq_repmsg);
808 if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
809 DEBUG_REQ(D_ERROR, req, "type == PTL_RPC_MSG_ERR, err "
814 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
817 } else if (rc == -ESTALE) {
819 * it can be allowed error after 3633 if open was committed and
820 * server failed before close was sent. Let's check if mod
821 * exists and return no error in that case
824 DEBUG_REQ(D_HA, req, "Reset ESTALE = %d", rc);
825 LASSERT(mod->mod_open_req != NULL);
826 if (mod->mod_open_req->rq_committed)
833 mod->mod_close_req = NULL;
834 /* Since now, mod is accessed through open_req only,
835 * thus close req does not keep a reference on mod anymore. */
840 RETURN(rc < 0 ? rc : saved_rc);
843 static int mdc_getpage(struct obd_export *exp, const struct lu_fid *fid,
844 u64 offset, struct page **pages, int npages,
845 struct ptlrpc_request **request)
847 struct ptlrpc_request *req;
848 struct ptlrpc_bulk_desc *desc;
850 wait_queue_head_t waitq;
852 struct l_wait_info lwi;
857 init_waitqueue_head(&waitq);
860 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_READPAGE);
864 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_READPAGE);
866 ptlrpc_request_free(req);
870 req->rq_request_portal = MDS_READPAGE_PORTAL;
871 ptlrpc_at_set_req_timeout(req);
873 desc = ptlrpc_prep_bulk_imp(req, npages, 1,
874 PTLRPC_BULK_PUT_SINK | PTLRPC_BULK_BUF_KIOV,
876 &ptlrpc_bulk_kiov_pin_ops);
878 ptlrpc_request_free(req);
882 /* NB req now owns desc and will free it when it gets freed */
883 for (i = 0; i < npages; i++)
884 desc->bd_frag_ops->add_kiov_frag(desc, pages[i], 0,
887 mdc_readdir_pack(req, offset, PAGE_CACHE_SIZE * npages, fid);
889 ptlrpc_request_set_replen(req);
890 rc = ptlrpc_queue_wait(req);
892 ptlrpc_req_finished(req);
893 if (rc != -ETIMEDOUT)
897 if (!client_should_resend(resends, &exp->exp_obd->u.cli)) {
898 CERROR("%s: too many resend retries: rc = %d\n",
899 exp->exp_obd->obd_name, -EIO);
902 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(resends), NULL, NULL,
904 l_wait_event(waitq, 0, &lwi);
909 rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk,
910 req->rq_bulk->bd_nob_transferred);
912 ptlrpc_req_finished(req);
916 if (req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK) {
917 CERROR("%s: unexpected bytes transferred: %d (%ld expected)\n",
918 exp->exp_obd->obd_name, req->rq_bulk->bd_nob_transferred,
919 PAGE_CACHE_SIZE * npages);
920 ptlrpc_req_finished(req);
928 static void mdc_release_page(struct page *page, int remove)
932 if (likely(page->mapping != NULL))
933 truncate_complete_page(page->mapping, page);
936 page_cache_release(page);
939 static struct page *mdc_page_locate(struct address_space *mapping, __u64 *hash,
940 __u64 *start, __u64 *end, int hash64)
943 * Complement of hash is used as an index so that
944 * radix_tree_gang_lookup() can be used to find a page with starting
945 * hash _smaller_ than one we are looking for.
947 unsigned long offset = hash_x_index(*hash, hash64);
951 spin_lock_irq(&mapping->tree_lock);
952 found = radix_tree_gang_lookup(&mapping->page_tree,
953 (void **)&page, offset, 1);
954 if (found > 0 && !radix_tree_exceptional_entry(page)) {
955 struct lu_dirpage *dp;
957 page_cache_get(page);
958 spin_unlock_irq(&mapping->tree_lock);
960 * In contrast to find_lock_page() we are sure that directory
961 * page cannot be truncated (while DLM lock is held) and,
962 * hence, can avoid restart.
964 * In fact, page cannot be locked here at all, because
965 * mdc_read_page_remote does synchronous io.
967 wait_on_page_locked(page);
968 if (PageUptodate(page)) {
970 if (BITS_PER_LONG == 32 && hash64) {
971 *start = le64_to_cpu(dp->ldp_hash_start) >> 32;
972 *end = le64_to_cpu(dp->ldp_hash_end) >> 32;
975 *start = le64_to_cpu(dp->ldp_hash_start);
976 *end = le64_to_cpu(dp->ldp_hash_end);
978 if (unlikely(*start == 1 && *hash == 0))
981 LASSERTF(*start <= *hash, "start = "LPX64
982 ",end = "LPX64",hash = "LPX64"\n",
983 *start, *end, *hash);
984 CDEBUG(D_VFSTRACE, "offset %lx ["LPX64" "LPX64"],"
985 " hash "LPX64"\n", offset, *start, *end, *hash);
988 mdc_release_page(page, 0);
990 } else if (*end != *start && *hash == *end) {
992 * upon hash collision, remove this page,
993 * otherwise put page reference, and
994 * mdc_read_page_remote() will issue RPC to
995 * fetch the page we want.
998 mdc_release_page(page,
999 le32_to_cpu(dp->ldp_flags) & LDF_COLLIDE);
1003 page_cache_release(page);
1004 page = ERR_PTR(-EIO);
1007 spin_unlock_irq(&mapping->tree_lock);
1014 * Adjust a set of pages, each page containing an array of lu_dirpages,
1015 * so that each page can be used as a single logical lu_dirpage.
1017 * A lu_dirpage is laid out as follows, where s = ldp_hash_start,
1018 * e = ldp_hash_end, f = ldp_flags, p = padding, and each "ent" is a
1019 * struct lu_dirent. It has size up to LU_PAGE_SIZE. The ldp_hash_end
1020 * value is used as a cookie to request the next lu_dirpage in a
1021 * directory listing that spans multiple pages (two in this example):
1024 * .|--------v------- -----.
1025 * |s|e|f|p|ent|ent| ... |ent|
1026 * '--|-------------- -----' Each PAGE contains a single
1027 * '------. lu_dirpage.
1028 * .---------v------- -----.
1029 * |s|e|f|p|ent| 0 | ... | 0 |
1030 * '----------------- -----'
1032 * However, on hosts where the native VM page size (PAGE_CACHE_SIZE) is
1033 * larger than LU_PAGE_SIZE, a single host page may contain multiple
1034 * lu_dirpages. After reading the lu_dirpages from the MDS, the
1035 * ldp_hash_end of the first lu_dirpage refers to the one immediately
1036 * after it in the same PAGE (arrows simplified for brevity, but
1037 * in general e0==s1, e1==s2, etc.):
1039 * .-------------------- -----.
1040 * |s0|e0|f0|p|ent|ent| ... |ent|
1041 * |---v---------------- -----|
1042 * |s1|e1|f1|p|ent|ent| ... |ent|
1043 * |---v---------------- -----| Here, each PAGE contains
1044 * ... multiple lu_dirpages.
1045 * |---v---------------- -----|
1046 * |s'|e'|f'|p|ent|ent| ... |ent|
1047 * '---|---------------- -----'
1049 * .----------------------------.
1052 * This structure is transformed into a single logical lu_dirpage as follows:
1054 * - Replace e0 with e' so the request for the next lu_dirpage gets the page
1055 * labeled 'next PAGE'.
1057 * - Copy the LDF_COLLIDE flag from f' to f0 to correctly reflect whether
1058 * a hash collision with the next page exists.
1060 * - Adjust the lde_reclen of the ending entry of each lu_dirpage to span
1061 * to the first entry of the next lu_dirpage.
1063 #if PAGE_CACHE_SIZE > LU_PAGE_SIZE
1064 static void mdc_adjust_dirpages(struct page **pages, int cfs_pgs, int lu_pgs)
1068 for (i = 0; i < cfs_pgs; i++) {
1069 struct lu_dirpage *dp = kmap(pages[i]);
1070 struct lu_dirpage *first = dp;
1071 struct lu_dirent *end_dirent = NULL;
1072 struct lu_dirent *ent;
1073 __u64 hash_end = le64_to_cpu(dp->ldp_hash_end);
1074 __u32 flags = le32_to_cpu(dp->ldp_flags);
1076 while (--lu_pgs > 0) {
1077 ent = lu_dirent_start(dp);
1078 for (end_dirent = ent; ent != NULL;
1079 end_dirent = ent, ent = lu_dirent_next(ent));
1081 /* Advance dp to next lu_dirpage. */
1082 dp = (struct lu_dirpage *)((char *)dp + LU_PAGE_SIZE);
1084 /* Check if we've reached the end of the PAGE. */
1085 if (!((unsigned long)dp & ~PAGE_MASK))
1088 /* Save the hash and flags of this lu_dirpage. */
1089 hash_end = le64_to_cpu(dp->ldp_hash_end);
1090 flags = le32_to_cpu(dp->ldp_flags);
1092 /* Check if lu_dirpage contains no entries. */
1093 if (end_dirent == NULL)
1096 /* Enlarge the end entry lde_reclen from 0 to
1097 * first entry of next lu_dirpage. */
1098 LASSERT(le16_to_cpu(end_dirent->lde_reclen) == 0);
1099 end_dirent->lde_reclen =
1100 cpu_to_le16((char *)(dp->ldp_entries) -
1101 (char *)end_dirent);
1104 first->ldp_hash_end = hash_end;
1105 first->ldp_flags &= ~cpu_to_le32(LDF_COLLIDE);
1106 first->ldp_flags |= flags & cpu_to_le32(LDF_COLLIDE);
1110 LASSERTF(lu_pgs == 0, "left = %d\n", lu_pgs);
1113 #define mdc_adjust_dirpages(pages, cfs_pgs, lu_pgs) do {} while (0)
1114 #endif /* PAGE_CACHE_SIZE > LU_PAGE_SIZE */
1116 /* parameters for readdir page */
1117 struct readpage_param {
1118 struct md_op_data *rp_mod;
1121 struct obd_export *rp_exp;
1122 struct md_callback *rp_cb;
1125 #ifndef HAVE_DELETE_FROM_PAGE_CACHE
1126 static inline void delete_from_page_cache(struct page *page)
1128 remove_from_page_cache(page);
1129 page_cache_release(page);
1134 * Read pages from server.
1136 * Page in MDS_READPAGE RPC is packed in LU_PAGE_SIZE, and each page contains
1137 * a header lu_dirpage which describes the start/end hash, and whether this
1138 * page is empty (contains no dir entry) or hash collide with next page.
1139 * After client receives reply, several pages will be integrated into dir page
1140 * in PAGE_SIZE (if PAGE_SIZE greater than LU_PAGE_SIZE), and the
1141 * lu_dirpage for this integrated page will be adjusted.
1143 static int mdc_read_page_remote(void *data, struct page *page0)
1145 struct readpage_param *rp = data;
1146 struct page **page_pool;
1148 struct lu_dirpage *dp;
1149 int rd_pgs = 0; /* number of pages read actually */
1151 struct md_op_data *op_data = rp->rp_mod;
1152 struct ptlrpc_request *req;
1153 int max_pages = op_data->op_max_pages;
1154 struct inode *inode;
1160 LASSERT(max_pages > 0 && max_pages <= PTLRPC_MAX_BRW_PAGES);
1161 inode = op_data->op_data;
1162 fid = &op_data->op_fid1;
1163 LASSERT(inode != NULL);
1165 OBD_ALLOC(page_pool, sizeof(page_pool[0]) * max_pages);
1166 if (page_pool != NULL) {
1167 page_pool[0] = page0;
1173 for (npages = 1; npages < max_pages; npages++) {
1174 page = page_cache_alloc_cold(inode->i_mapping);
1177 page_pool[npages] = page;
1180 rc = mdc_getpage(rp->rp_exp, fid, rp->rp_off, page_pool, npages, &req);
1182 /* page0 is special, which was added into page cache early */
1183 delete_from_page_cache(page0);
1187 rd_pgs = (req->rq_bulk->bd_nob_transferred +
1188 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1189 lu_pgs = req->rq_bulk->bd_nob_transferred >>
1191 LASSERT(!(req->rq_bulk->bd_nob_transferred & ~LU_PAGE_MASK));
1193 CDEBUG(D_INODE, "read %d(%d) pages\n", rd_pgs, lu_pgs);
1195 mdc_adjust_dirpages(page_pool, rd_pgs, lu_pgs);
1197 SetPageUptodate(page0);
1201 ptlrpc_req_finished(req);
1202 CDEBUG(D_CACHE, "read %d/%d pages\n", rd_pgs, npages);
1203 for (i = 1; i < npages; i++) {
1204 unsigned long offset;
1208 page = page_pool[i];
1210 if (rc < 0 || i >= rd_pgs) {
1211 page_cache_release(page);
1215 SetPageUptodate(page);
1218 hash = le64_to_cpu(dp->ldp_hash_start);
1221 offset = hash_x_index(hash, rp->rp_hash64);
1223 prefetchw(&page->flags);
1224 ret = add_to_page_cache_lru(page, inode->i_mapping, offset,
1229 CDEBUG(D_VFSTRACE, "page %lu add to page cache failed:"
1230 " rc = %d\n", offset, ret);
1231 page_cache_release(page);
1234 if (page_pool != &page0)
1235 OBD_FREE(page_pool, sizeof(page_pool[0]) * max_pages);
1241 * Read dir page from cache first, if it can not find it, read it from
1242 * server and add into the cache.
1244 * \param[in] exp MDC export
1245 * \param[in] op_data client MD stack parameters, transfering parameters
1246 * between different layers on client MD stack.
1247 * \param[in] cb_op callback required for ldlm lock enqueue during
1249 * \param[in] hash_offset the hash offset of the page to be read
1250 * \param[in] ppage the page to be read
1252 * retval = 0 get the page successfully
1253 * errno(<0) get the page failed
1255 static int mdc_read_page(struct obd_export *exp, struct md_op_data *op_data,
1256 struct md_callback *cb_op, __u64 hash_offset,
1257 struct page **ppage)
1259 struct lookup_intent it = { .it_op = IT_READDIR };
1261 struct inode *dir = op_data->op_data;
1262 struct address_space *mapping;
1263 struct lu_dirpage *dp;
1266 struct lustre_handle lockh;
1267 struct ptlrpc_request *enq_req = NULL;
1268 struct readpage_param rp_param;
1275 LASSERT(dir != NULL);
1276 mapping = dir->i_mapping;
1278 rc = mdc_intent_lock(exp, op_data, &it, &enq_req,
1279 cb_op->md_blocking_ast, 0);
1280 if (enq_req != NULL)
1281 ptlrpc_req_finished(enq_req);
1284 CERROR("%s: "DFID" lock enqueue fails: rc = %d\n",
1285 exp->exp_obd->obd_name, PFID(&op_data->op_fid1), rc);
1290 mdc_set_lock_data(exp, &it.d.lustre.it_lock_handle, dir, NULL);
1292 rp_param.rp_off = hash_offset;
1293 rp_param.rp_hash64 = op_data->op_cli_flags & CLI_HASH64;
1294 page = mdc_page_locate(mapping, &rp_param.rp_off, &start, &end,
1295 rp_param.rp_hash64);
1297 CERROR("%s: dir page locate: "DFID" at "LPU64": rc %ld\n",
1298 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1299 rp_param.rp_off, PTR_ERR(page));
1300 GOTO(out_unlock, rc = PTR_ERR(page));
1301 } else if (page != NULL) {
1303 * XXX nikita: not entirely correct handling of a corner case:
1304 * suppose hash chain of entries with hash value HASH crosses
1305 * border between pages P0 and P1. First both P0 and P1 are
1306 * cached, seekdir() is called for some entry from the P0 part
1307 * of the chain. Later P0 goes out of cache. telldir(HASH)
1308 * happens and finds P1, as it starts with matching hash
1309 * value. Remaining entries from P0 part of the chain are
1310 * skipped. (Is that really a bug?)
1312 * Possible solutions: 0. don't cache P1 is such case, handle
1313 * it as an "overflow" page. 1. invalidate all pages at
1314 * once. 2. use HASH|1 as an index for P1.
1316 GOTO(hash_collision, page);
1319 rp_param.rp_exp = exp;
1320 rp_param.rp_mod = op_data;
1321 page = read_cache_page(mapping,
1322 hash_x_index(rp_param.rp_off,
1323 rp_param.rp_hash64),
1324 mdc_read_page_remote, &rp_param);
1326 CDEBUG(D_INFO, "%s: read cache page: "DFID" at "LPU64": %ld\n",
1327 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1328 rp_param.rp_off, PTR_ERR(page));
1329 GOTO(out_unlock, rc = PTR_ERR(page));
1332 wait_on_page_locked(page);
1334 if (!PageUptodate(page)) {
1335 CERROR("%s: page not updated: "DFID" at "LPU64": rc %d\n",
1336 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1337 rp_param.rp_off, -5);
1340 if (!PageChecked(page))
1341 SetPageChecked(page);
1342 if (PageError(page)) {
1343 CERROR("%s: page error: "DFID" at "LPU64": rc %d\n",
1344 exp->exp_obd->obd_name, PFID(&op_data->op_fid1),
1345 rp_param.rp_off, -5);
1350 dp = page_address(page);
1351 if (BITS_PER_LONG == 32 && rp_param.rp_hash64) {
1352 start = le64_to_cpu(dp->ldp_hash_start) >> 32;
1353 end = le64_to_cpu(dp->ldp_hash_end) >> 32;
1354 rp_param.rp_off = hash_offset >> 32;
1356 start = le64_to_cpu(dp->ldp_hash_start);
1357 end = le64_to_cpu(dp->ldp_hash_end);
1358 rp_param.rp_off = hash_offset;
1361 LASSERT(start == rp_param.rp_off);
1362 CWARN("Page-wide hash collision: %#lx\n", (unsigned long)end);
1363 #if BITS_PER_LONG == 32
1364 CWARN("Real page-wide hash collision at ["LPU64" "LPU64"] with "
1365 "hash "LPU64"\n", le64_to_cpu(dp->ldp_hash_start),
1366 le64_to_cpu(dp->ldp_hash_end), hash_offset);
1370 * Fetch whole overflow chain...
1378 lockh.cookie = it.d.lustre.it_lock_handle;
1379 ldlm_lock_decref(&lockh, it.d.lustre.it_lock_mode);
1380 it.d.lustre.it_lock_handle = 0;
1384 mdc_release_page(page, 1);
1390 static int mdc_statfs(const struct lu_env *env,
1391 struct obd_export *exp, struct obd_statfs *osfs,
1392 __u64 max_age, __u32 flags)
1394 struct obd_device *obd = class_exp2obd(exp);
1395 struct ptlrpc_request *req;
1396 struct obd_statfs *msfs;
1397 struct obd_import *imp = NULL;
1402 * Since the request might also come from lprocfs, so we need
1403 * sync this with client_disconnect_export Bug15684
1405 down_read(&obd->u.cli.cl_sem);
1406 if (obd->u.cli.cl_import)
1407 imp = class_import_get(obd->u.cli.cl_import);
1408 up_read(&obd->u.cli.cl_sem);
1412 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_STATFS,
1413 LUSTRE_MDS_VERSION, MDS_STATFS);
1415 GOTO(output, rc = -ENOMEM);
1417 ptlrpc_request_set_replen(req);
1419 if (flags & OBD_STATFS_NODELAY) {
1420 /* procfs requests not want stay in wait for avoid deadlock */
1421 req->rq_no_resend = 1;
1422 req->rq_no_delay = 1;
1425 rc = ptlrpc_queue_wait(req);
1427 /* check connection error first */
1428 if (imp->imp_connect_error)
1429 rc = imp->imp_connect_error;
1433 msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
1435 GOTO(out, rc = -EPROTO);
1440 ptlrpc_req_finished(req);
1442 class_import_put(imp);
1446 static int mdc_ioc_fid2path(struct obd_export *exp, struct getinfo_fid2path *gf)
1448 __u32 keylen, vallen;
1452 if (gf->gf_pathlen > PATH_MAX)
1453 RETURN(-ENAMETOOLONG);
1454 if (gf->gf_pathlen < 2)
1457 /* Key is KEY_FID2PATH + getinfo_fid2path description */
1458 keylen = cfs_size_round(sizeof(KEY_FID2PATH)) + sizeof(*gf);
1459 OBD_ALLOC(key, keylen);
1462 memcpy(key, KEY_FID2PATH, sizeof(KEY_FID2PATH));
1463 memcpy(key + cfs_size_round(sizeof(KEY_FID2PATH)), gf, sizeof(*gf));
1465 CDEBUG(D_IOCTL, "path get "DFID" from "LPU64" #%d\n",
1466 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno);
1468 if (!fid_is_sane(&gf->gf_fid))
1469 GOTO(out, rc = -EINVAL);
1471 /* Val is struct getinfo_fid2path result plus path */
1472 vallen = sizeof(*gf) + gf->gf_pathlen;
1474 rc = obd_get_info(NULL, exp, keylen, key, &vallen, gf);
1475 if (rc != 0 && rc != -EREMOTE)
1478 if (vallen <= sizeof(*gf))
1479 GOTO(out, rc = -EPROTO);
1480 if (vallen > sizeof(*gf) + gf->gf_pathlen)
1481 GOTO(out, rc = -EOVERFLOW);
1483 CDEBUG(D_IOCTL, "path got "DFID" from "LPU64" #%d: %s\n",
1484 PFID(&gf->gf_fid), gf->gf_recno, gf->gf_linkno,
1485 gf->gf_pathlen < 512 ? gf->gf_path :
1486 /* only log the last 512 characters of the path */
1487 gf->gf_path + gf->gf_pathlen - 512);
1490 OBD_FREE(key, keylen);
1494 static int mdc_ioc_hsm_progress(struct obd_export *exp,
1495 struct hsm_progress_kernel *hpk)
1497 struct obd_import *imp = class_exp2cliimp(exp);
1498 struct hsm_progress_kernel *req_hpk;
1499 struct ptlrpc_request *req;
1503 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_PROGRESS,
1504 LUSTRE_MDS_VERSION, MDS_HSM_PROGRESS);
1506 GOTO(out, rc = -ENOMEM);
1508 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1510 /* Copy hsm_progress struct */
1511 req_hpk = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_PROGRESS);
1512 if (req_hpk == NULL)
1513 GOTO(out, rc = -EPROTO);
1516 req_hpk->hpk_errval = lustre_errno_hton(hpk->hpk_errval);
1518 ptlrpc_request_set_replen(req);
1520 mdc_get_mod_rpc_slot(req, NULL);
1521 rc = ptlrpc_queue_wait(req);
1522 mdc_put_mod_rpc_slot(req, NULL);
1526 ptlrpc_req_finished(req);
1530 static int mdc_ioc_hsm_ct_register(struct obd_import *imp, __u32 archives)
1532 __u32 *archive_mask;
1533 struct ptlrpc_request *req;
1537 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_REGISTER,
1539 MDS_HSM_CT_REGISTER);
1541 GOTO(out, rc = -ENOMEM);
1543 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1545 /* Copy hsm_progress struct */
1546 archive_mask = req_capsule_client_get(&req->rq_pill,
1547 &RMF_MDS_HSM_ARCHIVE);
1548 if (archive_mask == NULL)
1549 GOTO(out, rc = -EPROTO);
1551 *archive_mask = archives;
1553 ptlrpc_request_set_replen(req);
1555 rc = mdc_queue_wait(req);
1558 ptlrpc_req_finished(req);
1562 static int mdc_ioc_hsm_current_action(struct obd_export *exp,
1563 struct md_op_data *op_data)
1565 struct hsm_current_action *hca = op_data->op_data;
1566 struct hsm_current_action *req_hca;
1567 struct ptlrpc_request *req;
1571 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1572 &RQF_MDS_HSM_ACTION);
1576 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_ACTION);
1578 ptlrpc_request_free(req);
1582 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1583 op_data->op_suppgids[0], 0);
1585 ptlrpc_request_set_replen(req);
1587 rc = mdc_queue_wait(req);
1591 req_hca = req_capsule_server_get(&req->rq_pill,
1592 &RMF_MDS_HSM_CURRENT_ACTION);
1593 if (req_hca == NULL)
1594 GOTO(out, rc = -EPROTO);
1600 ptlrpc_req_finished(req);
1604 static int mdc_ioc_hsm_ct_unregister(struct obd_import *imp)
1606 struct ptlrpc_request *req;
1610 req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_HSM_CT_UNREGISTER,
1612 MDS_HSM_CT_UNREGISTER);
1614 GOTO(out, rc = -ENOMEM);
1616 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1618 ptlrpc_request_set_replen(req);
1620 rc = mdc_queue_wait(req);
1623 ptlrpc_req_finished(req);
1627 static int mdc_ioc_hsm_state_get(struct obd_export *exp,
1628 struct md_op_data *op_data)
1630 struct hsm_user_state *hus = op_data->op_data;
1631 struct hsm_user_state *req_hus;
1632 struct ptlrpc_request *req;
1636 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1637 &RQF_MDS_HSM_STATE_GET);
1641 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_GET);
1643 ptlrpc_request_free(req);
1647 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1648 op_data->op_suppgids[0], 0);
1650 ptlrpc_request_set_replen(req);
1652 rc = mdc_queue_wait(req);
1656 req_hus = req_capsule_server_get(&req->rq_pill, &RMF_HSM_USER_STATE);
1657 if (req_hus == NULL)
1658 GOTO(out, rc = -EPROTO);
1664 ptlrpc_req_finished(req);
1668 static int mdc_ioc_hsm_state_set(struct obd_export *exp,
1669 struct md_op_data *op_data)
1671 struct hsm_state_set *hss = op_data->op_data;
1672 struct hsm_state_set *req_hss;
1673 struct ptlrpc_request *req;
1677 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
1678 &RQF_MDS_HSM_STATE_SET);
1682 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_STATE_SET);
1684 ptlrpc_request_free(req);
1688 mdc_pack_body(req, &op_data->op_fid1, OBD_MD_FLRMTPERM, 0,
1689 op_data->op_suppgids[0], 0);
1692 req_hss = req_capsule_client_get(&req->rq_pill, &RMF_HSM_STATE_SET);
1693 if (req_hss == NULL)
1694 GOTO(out, rc = -EPROTO);
1697 ptlrpc_request_set_replen(req);
1699 mdc_get_mod_rpc_slot(req, NULL);
1700 rc = ptlrpc_queue_wait(req);
1701 mdc_put_mod_rpc_slot(req, NULL);
1705 ptlrpc_req_finished(req);
1709 static int mdc_ioc_hsm_request(struct obd_export *exp,
1710 struct hsm_user_request *hur)
1712 struct obd_import *imp = class_exp2cliimp(exp);
1713 struct ptlrpc_request *req;
1714 struct hsm_request *req_hr;
1715 struct hsm_user_item *req_hui;
1720 req = ptlrpc_request_alloc(imp, &RQF_MDS_HSM_REQUEST);
1722 GOTO(out, rc = -ENOMEM);
1724 req_capsule_set_size(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM, RCL_CLIENT,
1725 hur->hur_request.hr_itemcount
1726 * sizeof(struct hsm_user_item));
1727 req_capsule_set_size(&req->rq_pill, &RMF_GENERIC_DATA, RCL_CLIENT,
1728 hur->hur_request.hr_data_len);
1730 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_HSM_REQUEST);
1732 ptlrpc_request_free(req);
1736 mdc_pack_body(req, NULL, OBD_MD_FLRMTPERM, 0, -1, 0);
1738 /* Copy hsm_request struct */
1739 req_hr = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_REQUEST);
1741 GOTO(out, rc = -EPROTO);
1742 *req_hr = hur->hur_request;
1744 /* Copy hsm_user_item structs */
1745 req_hui = req_capsule_client_get(&req->rq_pill, &RMF_MDS_HSM_USER_ITEM);
1746 if (req_hui == NULL)
1747 GOTO(out, rc = -EPROTO);
1748 memcpy(req_hui, hur->hur_user_item,
1749 hur->hur_request.hr_itemcount * sizeof(struct hsm_user_item));
1751 /* Copy opaque field */
1752 req_opaque = req_capsule_client_get(&req->rq_pill, &RMF_GENERIC_DATA);
1753 if (req_opaque == NULL)
1754 GOTO(out, rc = -EPROTO);
1755 memcpy(req_opaque, hur_data(hur), hur->hur_request.hr_data_len);
1757 ptlrpc_request_set_replen(req);
1759 mdc_get_mod_rpc_slot(req, NULL);
1760 rc = ptlrpc_queue_wait(req);
1761 mdc_put_mod_rpc_slot(req, NULL);
1766 ptlrpc_req_finished(req);
1770 static struct kuc_hdr *changelog_kuc_hdr(char *buf, size_t len, __u32 flags)
1772 struct kuc_hdr *lh = (struct kuc_hdr *)buf;
1774 LASSERT(len <= KUC_CHANGELOG_MSG_MAXSIZE);
1776 lh->kuc_magic = KUC_MAGIC;
1777 lh->kuc_transport = KUC_TRANSPORT_CHANGELOG;
1778 lh->kuc_flags = flags;
1779 lh->kuc_msgtype = CL_RECORD;
1780 lh->kuc_msglen = len;
1784 struct changelog_show {
1786 enum changelog_send_flag cs_flags;
1789 struct obd_device *cs_obd;
1792 static inline char *cs_obd_name(struct changelog_show *cs)
1794 return cs->cs_obd->obd_name;
1797 static int changelog_kkuc_cb(const struct lu_env *env, struct llog_handle *llh,
1798 struct llog_rec_hdr *hdr, void *data)
1800 struct changelog_show *cs = data;
1801 struct llog_changelog_rec *rec = (struct llog_changelog_rec *)hdr;
1807 if (rec->cr_hdr.lrh_type != CHANGELOG_REC) {
1809 CERROR("%s: not a changelog rec %x/%d: rc = %d\n",
1810 cs_obd_name(cs), rec->cr_hdr.lrh_type,
1811 rec->cr.cr_type, rc);
1815 if (rec->cr.cr_index < cs->cs_startrec) {
1816 /* Skip entries earlier than what we are interested in */
1817 CDEBUG(D_HSM, "rec="LPU64" start="LPU64"\n",
1818 rec->cr.cr_index, cs->cs_startrec);
1822 CDEBUG(D_HSM, LPU64" %02d%-5s "LPU64" 0x%x t="DFID" p="DFID" %.*s\n",
1823 rec->cr.cr_index, rec->cr.cr_type,
1824 changelog_type2str(rec->cr.cr_type), rec->cr.cr_time,
1825 rec->cr.cr_flags & CLF_FLAGMASK,
1826 PFID(&rec->cr.cr_tfid), PFID(&rec->cr.cr_pfid),
1827 rec->cr.cr_namelen, changelog_rec_name(&rec->cr));
1829 len = sizeof(*lh) + changelog_rec_size(&rec->cr) + rec->cr.cr_namelen;
1831 /* Set up the message */
1832 lh = changelog_kuc_hdr(cs->cs_buf, len, cs->cs_flags);
1833 memcpy(lh + 1, &rec->cr, len - sizeof(*lh));
1835 rc = libcfs_kkuc_msg_put(cs->cs_fp, lh);
1836 CDEBUG(D_HSM, "kucmsg fp %p len %zu rc %d\n", cs->cs_fp, len, rc);
1841 static int mdc_changelog_send_thread(void *csdata)
1843 struct changelog_show *cs = csdata;
1844 struct llog_ctxt *ctxt = NULL;
1845 struct llog_handle *llh = NULL;
1846 struct kuc_hdr *kuch;
1847 enum llog_flag flags = LLOG_F_IS_CAT;
1850 CDEBUG(D_HSM, "changelog to fp=%p start "LPU64"\n",
1851 cs->cs_fp, cs->cs_startrec);
1853 OBD_ALLOC(cs->cs_buf, KUC_CHANGELOG_MSG_MAXSIZE);
1854 if (cs->cs_buf == NULL)
1855 GOTO(out, rc = -ENOMEM);
1857 /* Set up the remote catalog handle */
1858 ctxt = llog_get_context(cs->cs_obd, LLOG_CHANGELOG_REPL_CTXT);
1860 GOTO(out, rc = -ENOENT);
1861 rc = llog_open(NULL, ctxt, &llh, NULL, CHANGELOG_CATALOG,
1864 CERROR("%s: fail to open changelog catalog: rc = %d\n",
1865 cs_obd_name(cs), rc);
1869 if (cs->cs_flags & CHANGELOG_FLAG_JOBID)
1870 flags |= LLOG_F_EXT_JOBID;
1872 rc = llog_init_handle(NULL, llh, flags, NULL);
1874 CERROR("llog_init_handle failed %d\n", rc);
1878 rc = llog_cat_process(NULL, llh, changelog_kkuc_cb, cs, 0, 0);
1880 /* Send EOF no matter what our result */
1881 kuch = changelog_kuc_hdr(cs->cs_buf, sizeof(*kuch), cs->cs_flags);
1882 kuch->kuc_msgtype = CL_EOF;
1883 libcfs_kkuc_msg_put(cs->cs_fp, kuch);
1888 llog_cat_close(NULL, llh);
1890 llog_ctxt_put(ctxt);
1892 OBD_FREE(cs->cs_buf, KUC_CHANGELOG_MSG_MAXSIZE);
1897 static int mdc_ioc_changelog_send(struct obd_device *obd,
1898 struct ioc_changelog *icc)
1900 struct changelog_show *cs;
1901 struct task_struct *task;
1904 /* Freed in mdc_changelog_send_thread */
1910 cs->cs_startrec = icc->icc_recno;
1911 /* matching fput in mdc_changelog_send_thread */
1912 cs->cs_fp = fget(icc->icc_id);
1913 cs->cs_flags = icc->icc_flags;
1916 * New thread because we should return to user app before
1917 * writing into our pipe
1919 task = kthread_run(mdc_changelog_send_thread, cs,
1920 "mdc_clg_send_thread");
1923 CERROR("%s: cannot start changelog thread: rc = %d\n",
1924 cs_obd_name(cs), rc);
1928 CDEBUG(D_HSM, "%s: started changelog thread\n",
1935 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
1936 struct lustre_kernelcomm *lk);
1938 static int mdc_quotactl(struct obd_device *unused, struct obd_export *exp,
1939 struct obd_quotactl *oqctl)
1941 struct ptlrpc_request *req;
1942 struct obd_quotactl *oqc;
1946 req = ptlrpc_request_alloc_pack(class_exp2cliimp(exp),
1947 &RQF_MDS_QUOTACTL, LUSTRE_MDS_VERSION,
1952 oqc = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
1955 ptlrpc_request_set_replen(req);
1956 ptlrpc_at_set_req_timeout(req);
1957 req->rq_no_resend = 1;
1959 rc = ptlrpc_queue_wait(req);
1961 CERROR("ptlrpc_queue_wait failed, rc: %d\n", rc);
1963 if (req->rq_repmsg &&
1964 (oqc = req_capsule_server_get(&req->rq_pill, &RMF_OBD_QUOTACTL))) {
1967 CERROR ("Can't unpack obd_quotactl\n");
1970 ptlrpc_req_finished(req);
1975 static int mdc_ioc_swap_layouts(struct obd_export *exp,
1976 struct md_op_data *op_data)
1978 struct list_head cancels = LIST_HEAD_INIT(cancels);
1979 struct ptlrpc_request *req;
1981 struct mdc_swap_layouts *msl, *payload;
1984 msl = op_data->op_data;
1986 /* When the MDT will get the MDS_SWAP_LAYOUTS RPC the
1987 * first thing it will do is to cancel the 2 layout
1988 * locks held by this client.
1989 * So the client must cancel its layout locks on the 2 fids
1990 * with the request RPC to avoid extra RPC round trips.
1992 count = mdc_resource_get_unused(exp, &op_data->op_fid1, &cancels,
1993 LCK_EX, MDS_INODELOCK_LAYOUT |
1994 MDS_INODELOCK_XATTR);
1995 count += mdc_resource_get_unused(exp, &op_data->op_fid2, &cancels,
1996 LCK_EX, MDS_INODELOCK_LAYOUT |
1997 MDS_INODELOCK_XATTR);
1999 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
2000 &RQF_MDS_SWAP_LAYOUTS);
2002 ldlm_lock_list_put(&cancels, l_bl_ast, count);
2006 rc = mdc_prep_elc_req(exp, req, MDS_SWAP_LAYOUTS, &cancels, count);
2008 ptlrpc_request_free(req);
2012 mdc_swap_layouts_pack(req, op_data);
2014 payload = req_capsule_client_get(&req->rq_pill, &RMF_SWAP_LAYOUTS);
2019 ptlrpc_request_set_replen(req);
2021 rc = ptlrpc_queue_wait(req);
2027 ptlrpc_req_finished(req);
2031 static int mdc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
2032 void *karg, void __user *uarg)
2034 struct obd_device *obd = exp->exp_obd;
2035 struct obd_ioctl_data *data = karg;
2036 struct obd_import *imp = obd->u.cli.cl_import;
2040 if (!try_module_get(THIS_MODULE)) {
2041 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
2042 module_name(THIS_MODULE));
2046 case OBD_IOC_CHANGELOG_SEND:
2047 rc = mdc_ioc_changelog_send(obd, karg);
2049 case OBD_IOC_CHANGELOG_CLEAR: {
2050 struct ioc_changelog *icc = karg;
2051 struct changelog_setinfo cs =
2052 {.cs_recno = icc->icc_recno, .cs_id = icc->icc_id};
2053 rc = obd_set_info_async(NULL, exp, strlen(KEY_CHANGELOG_CLEAR),
2054 KEY_CHANGELOG_CLEAR, sizeof(cs), &cs,
2058 case OBD_IOC_FID2PATH:
2059 rc = mdc_ioc_fid2path(exp, karg);
2061 case LL_IOC_HSM_CT_START:
2062 rc = mdc_ioc_hsm_ct_start(exp, karg);
2063 /* ignore if it was already registered on this MDS. */
2067 case LL_IOC_HSM_PROGRESS:
2068 rc = mdc_ioc_hsm_progress(exp, karg);
2070 case LL_IOC_HSM_STATE_GET:
2071 rc = mdc_ioc_hsm_state_get(exp, karg);
2073 case LL_IOC_HSM_STATE_SET:
2074 rc = mdc_ioc_hsm_state_set(exp, karg);
2076 case LL_IOC_HSM_ACTION:
2077 rc = mdc_ioc_hsm_current_action(exp, karg);
2079 case LL_IOC_HSM_REQUEST:
2080 rc = mdc_ioc_hsm_request(exp, karg);
2082 case OBD_IOC_CLIENT_RECOVER:
2083 rc = ptlrpc_recover_import(imp, data->ioc_inlbuf1, 0);
2087 case IOC_OSC_SET_ACTIVE:
2088 rc = ptlrpc_set_import_active(imp, data->ioc_offset);
2090 case OBD_IOC_PING_TARGET:
2091 rc = ptlrpc_obd_ping(obd);
2094 * Normally IOC_OBD_STATFS, OBD_IOC_QUOTACTL iocontrol are handled by
2095 * LMV instead of MDC. But when the cluster is upgraded from 1.8,
2096 * there'd be no LMV layer thus we might be called here. Eventually
2097 * this code should be removed.
2100 case IOC_OBD_STATFS: {
2101 struct obd_statfs stat_buf = {0};
2103 if (*((__u32 *) data->ioc_inlbuf2) != 0)
2104 GOTO(out, rc = -ENODEV);
2107 if (copy_to_user(data->ioc_pbuf2, obd2cli_tgt(obd),
2108 min((int)data->ioc_plen2,
2109 (int)sizeof(struct obd_uuid))))
2110 GOTO(out, rc = -EFAULT);
2112 rc = mdc_statfs(NULL, obd->obd_self_export, &stat_buf,
2113 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
2118 if (copy_to_user(data->ioc_pbuf1, &stat_buf,
2119 min((int) data->ioc_plen1,
2120 (int) sizeof(stat_buf))))
2121 GOTO(out, rc = -EFAULT);
2125 case OBD_IOC_QUOTACTL: {
2126 struct if_quotactl *qctl = karg;
2127 struct obd_quotactl *oqctl;
2129 OBD_ALLOC_PTR(oqctl);
2131 GOTO(out, rc = -ENOMEM);
2133 QCTL_COPY(oqctl, qctl);
2134 rc = obd_quotactl(exp, oqctl);
2136 QCTL_COPY(qctl, oqctl);
2137 qctl->qc_valid = QC_MDTIDX;
2138 qctl->obd_uuid = obd->u.cli.cl_target_uuid;
2141 OBD_FREE_PTR(oqctl);
2144 case LL_IOC_GET_CONNECT_FLAGS:
2145 if (copy_to_user(uarg, exp_connect_flags_ptr(exp),
2146 sizeof(*exp_connect_flags_ptr(exp))))
2147 GOTO(out, rc = -EFAULT);
2150 case LL_IOC_LOV_SWAP_LAYOUTS:
2151 rc = mdc_ioc_swap_layouts(exp, karg);
2154 CERROR("unrecognised ioctl: cmd = %#x\n", cmd);
2155 GOTO(out, rc = -ENOTTY);
2158 module_put(THIS_MODULE);
2163 static int mdc_get_info_rpc(struct obd_export *exp,
2164 u32 keylen, void *key,
2165 u32 vallen, void *val)
2167 struct obd_import *imp = class_exp2cliimp(exp);
2168 struct ptlrpc_request *req;
2173 req = ptlrpc_request_alloc(imp, &RQF_MDS_GET_INFO);
2177 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_KEY,
2178 RCL_CLIENT, keylen);
2179 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VALLEN,
2180 RCL_CLIENT, sizeof(vallen));
2182 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GET_INFO);
2184 ptlrpc_request_free(req);
2188 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_KEY);
2189 memcpy(tmp, key, keylen);
2190 tmp = req_capsule_client_get(&req->rq_pill, &RMF_GETINFO_VALLEN);
2191 memcpy(tmp, &vallen, sizeof(vallen));
2193 req_capsule_set_size(&req->rq_pill, &RMF_GETINFO_VAL,
2194 RCL_SERVER, vallen);
2195 ptlrpc_request_set_replen(req);
2197 rc = ptlrpc_queue_wait(req);
2198 /* -EREMOTE means the get_info result is partial, and it needs to
2199 * continue on another MDT, see fid2path part in lmv_iocontrol */
2200 if (rc == 0 || rc == -EREMOTE) {
2201 tmp = req_capsule_server_get(&req->rq_pill, &RMF_GETINFO_VAL);
2202 memcpy(val, tmp, vallen);
2203 if (ptlrpc_rep_need_swab(req)) {
2204 if (KEY_IS(KEY_FID2PATH))
2205 lustre_swab_fid2path(val);
2208 ptlrpc_req_finished(req);
2213 static void lustre_swab_hai(struct hsm_action_item *h)
2215 __swab32s(&h->hai_len);
2216 __swab32s(&h->hai_action);
2217 lustre_swab_lu_fid(&h->hai_fid);
2218 lustre_swab_lu_fid(&h->hai_dfid);
2219 __swab64s(&h->hai_cookie);
2220 __swab64s(&h->hai_extent.offset);
2221 __swab64s(&h->hai_extent.length);
2222 __swab64s(&h->hai_gid);
2225 static void lustre_swab_hal(struct hsm_action_list *h)
2227 struct hsm_action_item *hai;
2230 __swab32s(&h->hal_version);
2231 __swab32s(&h->hal_count);
2232 __swab32s(&h->hal_archive_id);
2233 __swab64s(&h->hal_flags);
2235 for (i = 0; i < h->hal_count; i++, hai = hai_next(hai))
2236 lustre_swab_hai(hai);
2239 static void lustre_swab_kuch(struct kuc_hdr *l)
2241 __swab16s(&l->kuc_magic);
2242 /* __u8 l->kuc_transport */
2243 __swab16s(&l->kuc_msgtype);
2244 __swab16s(&l->kuc_msglen);
2247 static int mdc_ioc_hsm_ct_start(struct obd_export *exp,
2248 struct lustre_kernelcomm *lk)
2250 struct obd_import *imp = class_exp2cliimp(exp);
2251 __u32 archive = lk->lk_data;
2254 if (lk->lk_group != KUC_GRP_HSM) {
2255 CERROR("Bad copytool group %d\n", lk->lk_group);
2259 CDEBUG(D_HSM, "CT start r%d w%d u%d g%d f%#x\n", lk->lk_rfd, lk->lk_wfd,
2260 lk->lk_uid, lk->lk_group, lk->lk_flags);
2262 if (lk->lk_flags & LK_FLG_STOP) {
2263 /* Unregister with the coordinator */
2264 rc = mdc_ioc_hsm_ct_unregister(imp);
2266 rc = mdc_ioc_hsm_ct_register(imp, archive);
2273 * Send a message to any listening copytools
2274 * @param val KUC message (kuc_hdr + hsm_action_list)
2275 * @param len total length of message
2277 static int mdc_hsm_copytool_send(size_t len, void *val)
2279 struct kuc_hdr *lh = (struct kuc_hdr *)val;
2280 struct hsm_action_list *hal = (struct hsm_action_list *)(lh + 1);
2284 if (len < sizeof(*lh) + sizeof(*hal)) {
2285 CERROR("Short HSM message %zu < %zu\n", len,
2286 sizeof(*lh) + sizeof(*hal));
2289 if (lh->kuc_magic == __swab16(KUC_MAGIC)) {
2290 lustre_swab_kuch(lh);
2291 lustre_swab_hal(hal);
2292 } else if (lh->kuc_magic != KUC_MAGIC) {
2293 CERROR("Bad magic %x!=%x\n", lh->kuc_magic, KUC_MAGIC);
2297 CDEBUG(D_HSM, " Received message mg=%x t=%d m=%d l=%d actions=%d "
2299 lh->kuc_magic, lh->kuc_transport, lh->kuc_msgtype,
2300 lh->kuc_msglen, hal->hal_count, hal->hal_fsname);
2302 /* Broadcast to HSM listeners */
2303 rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
2309 * callback function passed to kuc for re-registering each HSM copytool
2310 * running on MDC, after MDT shutdown/recovery.
2311 * @param data copytool registration data
2312 * @param cb_arg callback argument (obd_import)
2314 static int mdc_hsm_ct_reregister(void *data, void *cb_arg)
2316 struct kkuc_ct_data *kcd = data;
2317 struct obd_import *imp = (struct obd_import *)cb_arg;
2320 if (kcd == NULL || kcd->kcd_magic != KKUC_CT_DATA_MAGIC)
2323 if (!obd_uuid_equals(&kcd->kcd_uuid, &imp->imp_obd->obd_uuid))
2326 CDEBUG(D_HA, "%s: recover copytool registration to MDT (archive=%#x)\n",
2327 imp->imp_obd->obd_name, kcd->kcd_archive);
2328 rc = mdc_ioc_hsm_ct_register(imp, kcd->kcd_archive);
2330 /* ignore error if the copytool is already registered */
2331 return (rc == -EEXIST) ? 0 : rc;
2335 * Re-establish all kuc contexts with MDT
2336 * after MDT shutdown/recovery.
2338 static int mdc_kuc_reregister(struct obd_import *imp)
2340 /* re-register HSM agents */
2341 return libcfs_kkuc_group_foreach(KUC_GRP_HSM, mdc_hsm_ct_reregister,
2345 static int mdc_set_info_async(const struct lu_env *env,
2346 struct obd_export *exp,
2347 u32 keylen, void *key,
2348 u32 vallen, void *val,
2349 struct ptlrpc_request_set *set)
2351 struct obd_import *imp = class_exp2cliimp(exp);
2355 if (KEY_IS(KEY_READ_ONLY)) {
2356 if (vallen != sizeof(int))
2359 spin_lock(&imp->imp_lock);
2360 if (*((int *)val)) {
2361 imp->imp_connect_flags_orig |= OBD_CONNECT_RDONLY;
2362 imp->imp_connect_data.ocd_connect_flags |=
2365 imp->imp_connect_flags_orig &= ~OBD_CONNECT_RDONLY;
2366 imp->imp_connect_data.ocd_connect_flags &=
2367 ~OBD_CONNECT_RDONLY;
2369 spin_unlock(&imp->imp_lock);
2371 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2372 keylen, key, vallen, val, set);
2375 if (KEY_IS(KEY_SPTLRPC_CONF)) {
2376 sptlrpc_conf_client_adapt(exp->exp_obd);
2379 if (KEY_IS(KEY_FLUSH_CTX)) {
2380 sptlrpc_import_flush_my_ctx(imp);
2383 if (KEY_IS(KEY_CHANGELOG_CLEAR)) {
2384 rc = do_set_info_async(imp, MDS_SET_INFO, LUSTRE_MDS_VERSION,
2385 keylen, key, vallen, val, set);
2388 if (KEY_IS(KEY_HSM_COPYTOOL_SEND)) {
2389 rc = mdc_hsm_copytool_send(vallen, val);
2393 if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2394 __u32 *default_easize = val;
2396 exp->exp_obd->u.cli.cl_default_mds_easize = *default_easize;
2400 CERROR("Unknown key %s\n", (char *)key);
2404 static int mdc_get_info(const struct lu_env *env, struct obd_export *exp,
2405 __u32 keylen, void *key, __u32 *vallen, void *val)
2409 if (KEY_IS(KEY_MAX_EASIZE)) {
2410 __u32 mdsize, *max_easize;
2412 if (*vallen != sizeof(int))
2414 mdsize = *(__u32 *)val;
2415 if (mdsize > exp->exp_obd->u.cli.cl_max_mds_easize)
2416 exp->exp_obd->u.cli.cl_max_mds_easize = mdsize;
2418 *max_easize = exp->exp_obd->u.cli.cl_max_mds_easize;
2420 } else if (KEY_IS(KEY_DEFAULT_EASIZE)) {
2421 __u32 *default_easize;
2423 if (*vallen != sizeof(int))
2425 default_easize = val;
2426 *default_easize = exp->exp_obd->u.cli.cl_default_mds_easize;
2428 } else if (KEY_IS(KEY_CONN_DATA)) {
2429 struct obd_import *imp = class_exp2cliimp(exp);
2430 struct obd_connect_data *data = val;
2432 if (*vallen != sizeof(*data))
2435 *data = imp->imp_connect_data;
2437 } else if (KEY_IS(KEY_TGT_COUNT)) {
2438 *((__u32 *)val) = 1;
2442 rc = mdc_get_info_rpc(exp, keylen, key, *vallen, val);
2447 static int mdc_fsync(struct obd_export *exp, const struct lu_fid *fid,
2448 struct ptlrpc_request **request)
2450 struct ptlrpc_request *req;
2455 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_SYNC);
2459 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_SYNC);
2461 ptlrpc_request_free(req);
2465 mdc_pack_body(req, fid, 0, 0, -1, 0);
2467 ptlrpc_request_set_replen(req);
2469 rc = ptlrpc_queue_wait(req);
2471 ptlrpc_req_finished(req);
2477 static int mdc_import_event(struct obd_device *obd, struct obd_import *imp,
2478 enum obd_import_event event)
2482 LASSERT(imp->imp_obd == obd);
2485 case IMP_EVENT_DISCON: {
2487 /* XXX Pass event up to OBDs stack. used only for FLD now */
2488 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_DISCON, NULL);
2492 case IMP_EVENT_INACTIVE: {
2493 struct client_obd *cli = &obd->u.cli;
2495 * Flush current sequence to make client obtain new one
2496 * from server in case of disconnect/reconnect.
2498 if (cli->cl_seq != NULL)
2499 seq_client_flush(cli->cl_seq);
2501 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_INACTIVE, NULL);
2504 case IMP_EVENT_INVALIDATE: {
2505 struct ldlm_namespace *ns = obd->obd_namespace;
2507 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
2511 case IMP_EVENT_ACTIVE:
2512 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVE, NULL);
2513 /* redo the kuc registration after reconnecting */
2515 rc = mdc_kuc_reregister(imp);
2518 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_OCD, NULL);
2520 case IMP_EVENT_DEACTIVATE:
2521 case IMP_EVENT_ACTIVATE:
2524 CERROR("Unknown import event %x\n", event);
2530 int mdc_fid_alloc(const struct lu_env *env, struct obd_export *exp,
2531 struct lu_fid *fid, struct md_op_data *op_data)
2533 struct client_obd *cli = &exp->exp_obd->u.cli;
2534 struct lu_client_seq *seq = cli->cl_seq;
2536 RETURN(seq_client_alloc_fid(env, seq, fid));
2539 static struct obd_uuid *mdc_get_uuid(struct obd_export *exp)
2541 struct client_obd *cli = &exp->exp_obd->u.cli;
2542 return &cli->cl_target_uuid;
2546 * Determine whether the lock can be canceled before replaying it during
2547 * recovery, non zero value will be return if the lock can be canceled,
2548 * or zero returned for not
2550 static int mdc_cancel_weight(struct ldlm_lock *lock)
2552 if (lock->l_resource->lr_type != LDLM_IBITS)
2555 /* FIXME: if we ever get into a situation where there are too many
2556 * opened files with open locks on a single node, then we really
2557 * should replay these open locks to reget it */
2558 if (lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_OPEN)
2564 static int mdc_resource_inode_free(struct ldlm_resource *res)
2566 if (res->lr_lvb_inode)
2567 res->lr_lvb_inode = NULL;
2572 static struct ldlm_valblock_ops inode_lvbo = {
2573 .lvbo_free = mdc_resource_inode_free
2576 static int mdc_llog_init(struct obd_device *obd)
2578 struct obd_llog_group *olg = &obd->obd_olg;
2579 struct llog_ctxt *ctxt;
2584 rc = llog_setup(NULL, obd, olg, LLOG_CHANGELOG_REPL_CTXT, obd,
2589 ctxt = llog_group_get_ctxt(olg, LLOG_CHANGELOG_REPL_CTXT);
2590 llog_initiator_connect(ctxt);
2591 llog_ctxt_put(ctxt);
2596 static void mdc_llog_finish(struct obd_device *obd)
2598 struct llog_ctxt *ctxt;
2602 ctxt = llog_get_context(obd, LLOG_CHANGELOG_REPL_CTXT);
2604 llog_cleanup(NULL, ctxt);
2609 static int mdc_setup(struct obd_device *obd, struct lustre_cfg *cfg)
2614 rc = ptlrpcd_addref();
2618 rc = client_obd_setup(obd, cfg);
2620 GOTO(err_ptlrpcd_decref, rc);
2621 #ifdef CONFIG_PROC_FS
2622 obd->obd_vars = lprocfs_mdc_obd_vars;
2623 lprocfs_obd_setup(obd);
2624 lprocfs_alloc_md_stats(obd, 0);
2626 sptlrpc_lprocfs_cliobd_attach(obd);
2627 ptlrpc_lprocfs_register_obd(obd);
2629 ns_register_cancel(obd->obd_namespace, mdc_cancel_weight);
2631 obd->obd_namespace->ns_lvbo = &inode_lvbo;
2633 rc = mdc_llog_init(obd);
2636 CERROR("failed to setup llogging subsystems\n");
2647 /* Initialize the default and maximum LOV EA sizes. This allows
2648 * us to make MDS RPCs with large enough reply buffers to hold a default
2649 * sized EA without having to calculate this (via a call into the
2650 * LOV + OSCs) each time we make an RPC. The maximum size is also tracked
2651 * but not used to avoid wastefully vmalloc()'ing large reply buffers when
2652 * a large number of stripes is possible. If a larger reply buffer is
2653 * required it will be reallocated in the ptlrpc layer due to overflow.
2655 static int mdc_init_ea_size(struct obd_export *exp, __u32 easize,
2658 struct obd_device *obd = exp->exp_obd;
2659 struct client_obd *cli = &obd->u.cli;
2662 if (cli->cl_max_mds_easize < easize)
2663 cli->cl_max_mds_easize = easize;
2665 if (cli->cl_default_mds_easize < def_easize)
2666 cli->cl_default_mds_easize = def_easize;
2671 static int mdc_precleanup(struct obd_device *obd)
2675 /* Failsafe, ok if racy */
2676 if (obd->obd_type->typ_refcnt <= 1)
2677 libcfs_kkuc_group_rem(0, KUC_GRP_HSM);
2679 obd_cleanup_client_import(obd);
2680 ptlrpc_lprocfs_unregister_obd(obd);
2681 lprocfs_obd_cleanup(obd);
2682 lprocfs_free_md_stats(obd);
2683 mdc_llog_finish(obd);
2687 static int mdc_cleanup(struct obd_device *obd)
2691 return client_obd_cleanup(obd);
2694 static int mdc_process_config(struct obd_device *obd, size_t len, void *buf)
2696 struct lustre_cfg *lcfg = buf;
2697 int rc = class_process_proc_param(PARAM_MDC, obd->obd_vars, lcfg, obd);
2698 return (rc > 0 ? 0: rc);
2702 /* get remote permission for current user on fid */
2703 static int mdc_get_remote_perm(struct obd_export *exp, const struct lu_fid *fid,
2704 u32 suppgid, struct ptlrpc_request **request)
2706 struct ptlrpc_request *req;
2710 LASSERT(client_is_remote(exp));
2713 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_MDS_GETATTR);
2717 rc = ptlrpc_request_pack(req, LUSTRE_MDS_VERSION, MDS_GETATTR);
2719 ptlrpc_request_free(req);
2723 mdc_pack_body(req, fid, OBD_MD_FLRMTPERM, 0, suppgid, 0);
2725 req_capsule_set_size(&req->rq_pill, &RMF_ACL, RCL_SERVER,
2726 sizeof(struct mdt_remote_perm));
2728 ptlrpc_request_set_replen(req);
2730 rc = ptlrpc_queue_wait(req);
2732 ptlrpc_req_finished(req);
2738 static struct obd_ops mdc_obd_ops = {
2739 .o_owner = THIS_MODULE,
2740 .o_setup = mdc_setup,
2741 .o_precleanup = mdc_precleanup,
2742 .o_cleanup = mdc_cleanup,
2743 .o_add_conn = client_import_add_conn,
2744 .o_del_conn = client_import_del_conn,
2745 .o_connect = client_connect_import,
2746 .o_disconnect = client_disconnect_export,
2747 .o_iocontrol = mdc_iocontrol,
2748 .o_set_info_async = mdc_set_info_async,
2749 .o_statfs = mdc_statfs,
2750 .o_fid_init = client_fid_init,
2751 .o_fid_fini = client_fid_fini,
2752 .o_fid_alloc = mdc_fid_alloc,
2753 .o_import_event = mdc_import_event,
2754 .o_get_info = mdc_get_info,
2755 .o_process_config = mdc_process_config,
2756 .o_get_uuid = mdc_get_uuid,
2757 .o_quotactl = mdc_quotactl,
2760 static struct md_ops mdc_md_ops = {
2761 .m_getstatus = mdc_getstatus,
2762 .m_null_inode = mdc_null_inode,
2763 .m_find_cbdata = mdc_find_cbdata,
2764 .m_close = mdc_close,
2765 .m_create = mdc_create,
2766 .m_enqueue = mdc_enqueue,
2767 .m_getattr = mdc_getattr,
2768 .m_getattr_name = mdc_getattr_name,
2769 .m_intent_lock = mdc_intent_lock,
2771 .m_rename = mdc_rename,
2772 .m_setattr = mdc_setattr,
2773 .m_setxattr = mdc_setxattr,
2774 .m_getxattr = mdc_getxattr,
2775 .m_fsync = mdc_fsync,
2776 .m_read_page = mdc_read_page,
2777 .m_unlink = mdc_unlink,
2778 .m_cancel_unused = mdc_cancel_unused,
2779 .m_init_ea_size = mdc_init_ea_size,
2780 .m_set_lock_data = mdc_set_lock_data,
2781 .m_lock_match = mdc_lock_match,
2782 .m_get_lustre_md = mdc_get_lustre_md,
2783 .m_free_lustre_md = mdc_free_lustre_md,
2784 .m_set_open_replay_data = mdc_set_open_replay_data,
2785 .m_clear_open_replay_data = mdc_clear_open_replay_data,
2786 .m_get_remote_perm = mdc_get_remote_perm,
2787 .m_intent_getattr_async = mdc_intent_getattr_async,
2788 .m_revalidate_lock = mdc_revalidate_lock
2791 static int __init mdc_init(void)
2793 return class_register_type(&mdc_obd_ops, &mdc_md_ops, true, NULL,
2794 LUSTRE_MDC_NAME, NULL);
2797 static void __exit mdc_exit(void)
2799 class_unregister_type(LUSTRE_MDC_NAME);
2802 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
2803 MODULE_DESCRIPTION("Lustre Metadata Client");
2804 MODULE_VERSION(LUSTRE_VERSION_STRING);
2805 MODULE_LICENSE("GPL");
2807 module_init(mdc_init);
2808 module_exit(mdc_exit);