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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2011, 2017, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
32 #define DEBUG_SUBSYSTEM S_OSC
34 #include <linux/workqueue.h>
35 #include <libcfs/libcfs.h>
36 #include <linux/falloc.h>
37 #include <lprocfs_status.h>
38 #include <lustre_dlm.h>
39 #include <lustre_fid.h>
40 #include <lustre_ha.h>
41 #include <uapi/linux/lustre/lustre_ioctl.h>
42 #include <lustre_net.h>
43 #include <lustre_obdo.h>
45 #include <obd_cksum.h>
46 #include <obd_class.h>
47 #include <lustre_osc.h>
48 #include <linux/falloc.h>
50 #include "osc_internal.h"
51 #include <lnet/lnet_rdma.h>
53 atomic_t osc_pool_req_count;
54 unsigned int osc_reqpool_maxreqcount;
55 struct ptlrpc_request_pool *osc_rq_pool;
57 /* max memory used for request pool, unit is MB */
58 static unsigned int osc_reqpool_mem_max = 5;
59 module_param(osc_reqpool_mem_max, uint, 0444);
61 static int osc_idle_timeout = 20;
62 module_param(osc_idle_timeout, uint, 0644);
64 #define osc_grant_args osc_brw_async_args
66 struct osc_setattr_args {
68 obd_enqueue_update_f sa_upcall;
72 struct osc_fsync_args {
73 struct osc_object *fa_obj;
75 obd_enqueue_update_f fa_upcall;
79 struct osc_ladvise_args {
81 obd_enqueue_update_f la_upcall;
85 static void osc_release_ppga(struct brw_page **ppga, size_t count);
86 static int brw_interpret(const struct lu_env *env, struct ptlrpc_request *req,
89 void osc_pack_req_body(struct ptlrpc_request *req, struct obdo *oa)
91 struct ost_body *body;
93 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
96 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
99 static int osc_getattr(const struct lu_env *env, struct obd_export *exp,
102 struct ptlrpc_request *req;
103 struct ost_body *body;
107 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_GETATTR);
111 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_GETATTR);
113 ptlrpc_request_free(req);
117 osc_pack_req_body(req, oa);
119 ptlrpc_request_set_replen(req);
121 rc = ptlrpc_queue_wait(req);
125 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
127 GOTO(out, rc = -EPROTO);
129 CDEBUG(D_INODE, "mode: %o\n", body->oa.o_mode);
130 lustre_get_wire_obdo(&req->rq_import->imp_connect_data, oa, &body->oa);
132 oa->o_blksize = cli_brw_size(exp->exp_obd);
133 oa->o_valid |= OBD_MD_FLBLKSZ;
137 ptlrpc_req_finished(req);
142 static int osc_setattr(const struct lu_env *env, struct obd_export *exp,
145 struct ptlrpc_request *req;
146 struct ost_body *body;
150 LASSERT(oa->o_valid & OBD_MD_FLGROUP);
152 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_SETATTR);
156 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SETATTR);
158 ptlrpc_request_free(req);
162 osc_pack_req_body(req, oa);
164 ptlrpc_request_set_replen(req);
166 rc = ptlrpc_queue_wait(req);
170 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
172 GOTO(out, rc = -EPROTO);
174 lustre_get_wire_obdo(&req->rq_import->imp_connect_data, oa, &body->oa);
178 ptlrpc_req_finished(req);
183 static int osc_setattr_interpret(const struct lu_env *env,
184 struct ptlrpc_request *req, void *args, int rc)
186 struct osc_setattr_args *sa = args;
187 struct ost_body *body;
194 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
196 GOTO(out, rc = -EPROTO);
198 lustre_get_wire_obdo(&req->rq_import->imp_connect_data, sa->sa_oa,
201 rc = sa->sa_upcall(sa->sa_cookie, rc);
205 int osc_setattr_async(struct obd_export *exp, struct obdo *oa,
206 obd_enqueue_update_f upcall, void *cookie,
207 struct ptlrpc_request_set *rqset)
209 struct ptlrpc_request *req;
210 struct osc_setattr_args *sa;
215 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_SETATTR);
219 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SETATTR);
221 ptlrpc_request_free(req);
225 osc_pack_req_body(req, oa);
227 ptlrpc_request_set_replen(req);
229 /* do mds to ost setattr asynchronously */
231 /* Do not wait for response. */
232 ptlrpcd_add_req(req);
234 req->rq_interpret_reply = osc_setattr_interpret;
236 sa = ptlrpc_req_async_args(sa, req);
238 sa->sa_upcall = upcall;
239 sa->sa_cookie = cookie;
241 ptlrpc_set_add_req(rqset, req);
247 static int osc_ladvise_interpret(const struct lu_env *env,
248 struct ptlrpc_request *req,
251 struct osc_ladvise_args *la = arg;
252 struct ost_body *body;
258 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
260 GOTO(out, rc = -EPROTO);
262 *la->la_oa = body->oa;
264 rc = la->la_upcall(la->la_cookie, rc);
269 * If rqset is NULL, do not wait for response. Upcall and cookie could also
270 * be NULL in this case
272 int osc_ladvise_base(struct obd_export *exp, struct obdo *oa,
273 struct ladvise_hdr *ladvise_hdr,
274 obd_enqueue_update_f upcall, void *cookie,
275 struct ptlrpc_request_set *rqset)
277 struct ptlrpc_request *req;
278 struct ost_body *body;
279 struct osc_ladvise_args *la;
281 struct lu_ladvise *req_ladvise;
282 struct lu_ladvise *ladvise = ladvise_hdr->lah_advise;
283 int num_advise = ladvise_hdr->lah_count;
284 struct ladvise_hdr *req_ladvise_hdr;
287 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_LADVISE);
291 req_capsule_set_size(&req->rq_pill, &RMF_OST_LADVISE, RCL_CLIENT,
292 num_advise * sizeof(*ladvise));
293 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_LADVISE);
295 ptlrpc_request_free(req);
298 req->rq_request_portal = OST_IO_PORTAL;
299 ptlrpc_at_set_req_timeout(req);
301 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
303 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa,
306 req_ladvise_hdr = req_capsule_client_get(&req->rq_pill,
307 &RMF_OST_LADVISE_HDR);
308 memcpy(req_ladvise_hdr, ladvise_hdr, sizeof(*ladvise_hdr));
310 req_ladvise = req_capsule_client_get(&req->rq_pill, &RMF_OST_LADVISE);
311 memcpy(req_ladvise, ladvise, sizeof(*ladvise) * num_advise);
312 ptlrpc_request_set_replen(req);
315 /* Do not wait for response. */
316 ptlrpcd_add_req(req);
320 req->rq_interpret_reply = osc_ladvise_interpret;
321 la = ptlrpc_req_async_args(la, req);
323 la->la_upcall = upcall;
324 la->la_cookie = cookie;
326 ptlrpc_set_add_req(rqset, req);
331 static int osc_create(const struct lu_env *env, struct obd_export *exp,
334 struct ptlrpc_request *req;
335 struct ost_body *body;
340 LASSERT(oa->o_valid & OBD_MD_FLGROUP);
341 LASSERT(fid_seq_is_echo(ostid_seq(&oa->o_oi)));
343 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_CREATE);
345 GOTO(out, rc = -ENOMEM);
347 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_CREATE);
349 ptlrpc_request_free(req);
353 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
356 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
358 ptlrpc_request_set_replen(req);
360 rc = ptlrpc_queue_wait(req);
364 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
366 GOTO(out_req, rc = -EPROTO);
368 CDEBUG(D_INFO, "oa flags %x\n", oa->o_flags);
369 lustre_get_wire_obdo(&req->rq_import->imp_connect_data, oa, &body->oa);
371 oa->o_blksize = cli_brw_size(exp->exp_obd);
372 oa->o_valid |= OBD_MD_FLBLKSZ;
374 CDEBUG(D_HA, "transno: %lld\n",
375 lustre_msg_get_transno(req->rq_repmsg));
377 ptlrpc_req_finished(req);
382 int osc_punch_send(struct obd_export *exp, struct obdo *oa,
383 obd_enqueue_update_f upcall, void *cookie)
385 struct ptlrpc_request *req;
386 struct osc_setattr_args *sa;
387 struct obd_import *imp = class_exp2cliimp(exp);
388 struct ost_body *body;
393 req = ptlrpc_request_alloc(imp, &RQF_OST_PUNCH);
397 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_PUNCH);
399 ptlrpc_request_free(req);
403 osc_set_io_portal(req);
405 ptlrpc_at_set_req_timeout(req);
407 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
409 lustre_set_wire_obdo(&imp->imp_connect_data, &body->oa, oa);
411 ptlrpc_request_set_replen(req);
413 req->rq_interpret_reply = osc_setattr_interpret;
414 sa = ptlrpc_req_async_args(sa, req);
416 sa->sa_upcall = upcall;
417 sa->sa_cookie = cookie;
419 ptlrpcd_add_req(req);
423 EXPORT_SYMBOL(osc_punch_send);
426 * osc_fallocate_base() - Handles fallocate request.
428 * @exp: Export structure
429 * @oa: Attributes passed to OSS from client (obdo structure)
430 * @upcall: Primary & supplementary group information
431 * @cookie: Exclusive identifier
432 * @rqset: Request list.
433 * @mode: Operation done on given range.
435 * osc_fallocate_base() - Handles fallocate requests only. Only block
436 * allocation or standard preallocate operation is supported currently.
437 * Other mode flags is not supported yet. ftruncate(2) or truncate(2)
438 * is supported via SETATTR request.
440 * Return: Non-zero on failure and O on success.
442 int osc_fallocate_base(struct obd_export *exp, struct obdo *oa,
443 obd_enqueue_update_f upcall, void *cookie, int mode)
445 struct ptlrpc_request *req;
446 struct osc_setattr_args *sa;
447 struct ost_body *body;
448 struct obd_import *imp = class_exp2cliimp(exp);
452 oa->o_falloc_mode = mode;
453 req = ptlrpc_request_alloc(class_exp2cliimp(exp),
458 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_FALLOCATE);
460 ptlrpc_request_free(req);
464 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
467 lustre_set_wire_obdo(&imp->imp_connect_data, &body->oa, oa);
469 ptlrpc_request_set_replen(req);
471 req->rq_interpret_reply = osc_setattr_interpret;
472 BUILD_BUG_ON(sizeof(*sa) > sizeof(req->rq_async_args));
473 sa = ptlrpc_req_async_args(sa, req);
475 sa->sa_upcall = upcall;
476 sa->sa_cookie = cookie;
478 ptlrpcd_add_req(req);
482 EXPORT_SYMBOL(osc_fallocate_base);
484 static int osc_sync_interpret(const struct lu_env *env,
485 struct ptlrpc_request *req, void *args, int rc)
487 struct osc_fsync_args *fa = args;
488 struct ost_body *body;
489 struct cl_attr *attr = &osc_env_info(env)->oti_attr;
490 unsigned long valid = 0;
491 struct cl_object *obj;
497 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
499 CERROR("can't unpack ost_body\n");
500 GOTO(out, rc = -EPROTO);
503 *fa->fa_oa = body->oa;
504 obj = osc2cl(fa->fa_obj);
506 /* Update osc object's blocks attribute */
507 cl_object_attr_lock(obj);
508 if (body->oa.o_valid & OBD_MD_FLBLOCKS) {
509 attr->cat_blocks = body->oa.o_blocks;
514 cl_object_attr_update(env, obj, attr, valid);
515 cl_object_attr_unlock(obj);
518 rc = fa->fa_upcall(fa->fa_cookie, rc);
522 int osc_sync_base(struct osc_object *obj, struct obdo *oa,
523 obd_enqueue_update_f upcall, void *cookie,
524 struct ptlrpc_request_set *rqset)
526 struct obd_export *exp = osc_export(obj);
527 struct ptlrpc_request *req;
528 struct ost_body *body;
529 struct osc_fsync_args *fa;
533 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_SYNC);
537 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SYNC);
539 ptlrpc_request_free(req);
543 /* overload the size and blocks fields in the oa with start/end */
544 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
546 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
548 ptlrpc_request_set_replen(req);
549 req->rq_interpret_reply = osc_sync_interpret;
551 fa = ptlrpc_req_async_args(fa, req);
554 fa->fa_upcall = upcall;
555 fa->fa_cookie = cookie;
557 ptlrpc_set_add_req(rqset, req);
562 /* Find and cancel locally locks matched by @mode in the resource found by
563 * @objid. Found locks are added into @cancel list. Returns the amount of
564 * locks added to @cancels list. */
565 static int osc_resource_get_unused(struct obd_export *exp, struct obdo *oa,
566 struct list_head *cancels,
567 enum ldlm_mode mode, __u64 lock_flags)
569 struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
570 struct ldlm_res_id res_id;
571 struct ldlm_resource *res;
575 /* Return, i.e. cancel nothing, only if ELC is supported (flag in
576 * export) but disabled through procfs (flag in NS).
578 * This distinguishes from a case when ELC is not supported originally,
579 * when we still want to cancel locks in advance and just cancel them
580 * locally, without sending any RPC. */
581 if (exp_connect_cancelset(exp) && !ns_connect_cancelset(ns))
584 ostid_build_res_name(&oa->o_oi, &res_id);
585 res = ldlm_resource_get(ns, NULL, &res_id, 0, 0);
589 LDLM_RESOURCE_ADDREF(res);
590 count = ldlm_cancel_resource_local(res, cancels, NULL, mode,
591 lock_flags, 0, NULL);
592 LDLM_RESOURCE_DELREF(res);
593 ldlm_resource_putref(res);
597 static int osc_destroy_interpret(const struct lu_env *env,
598 struct ptlrpc_request *req, void *args, int rc)
600 struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
602 atomic_dec(&cli->cl_destroy_in_flight);
603 wake_up(&cli->cl_destroy_waitq);
608 static int osc_can_send_destroy(struct client_obd *cli)
610 if (atomic_inc_return(&cli->cl_destroy_in_flight) <=
611 cli->cl_max_rpcs_in_flight) {
612 /* The destroy request can be sent */
615 if (atomic_dec_return(&cli->cl_destroy_in_flight) <
616 cli->cl_max_rpcs_in_flight) {
618 * The counter has been modified between the two atomic
621 wake_up(&cli->cl_destroy_waitq);
626 static int osc_destroy(const struct lu_env *env, struct obd_export *exp,
629 struct client_obd *cli = &exp->exp_obd->u.cli;
630 struct ptlrpc_request *req;
631 struct ost_body *body;
637 CDEBUG(D_INFO, "oa NULL\n");
641 count = osc_resource_get_unused(exp, oa, &cancels, LCK_PW,
642 LDLM_FL_DISCARD_DATA);
644 req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_OST_DESTROY);
646 ldlm_lock_list_put(&cancels, l_bl_ast, count);
650 rc = ldlm_prep_elc_req(exp, req, LUSTRE_OST_VERSION, OST_DESTROY,
653 ptlrpc_request_free(req);
657 req->rq_request_portal = OST_IO_PORTAL; /* bug 7198 */
658 ptlrpc_at_set_req_timeout(req);
660 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
662 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
664 ptlrpc_request_set_replen(req);
666 req->rq_interpret_reply = osc_destroy_interpret;
667 if (!osc_can_send_destroy(cli)) {
669 * Wait until the number of on-going destroy RPCs drops
670 * under max_rpc_in_flight
672 rc = l_wait_event_abortable_exclusive(
673 cli->cl_destroy_waitq,
674 osc_can_send_destroy(cli));
676 ptlrpc_req_finished(req);
681 /* Do not wait for response */
682 ptlrpcd_add_req(req);
686 static void osc_announce_cached(struct client_obd *cli, struct obdo *oa,
689 u64 bits = OBD_MD_FLBLOCKS | OBD_MD_FLGRANT;
691 LASSERT(!(oa->o_valid & bits));
694 spin_lock(&cli->cl_loi_list_lock);
695 if (cli->cl_ocd_grant_param)
696 oa->o_dirty = cli->cl_dirty_grant;
698 oa->o_dirty = cli->cl_dirty_pages << PAGE_SHIFT;
699 if (unlikely(cli->cl_dirty_pages > cli->cl_dirty_max_pages)) {
700 CERROR("dirty %lu > dirty_max %lu\n",
702 cli->cl_dirty_max_pages);
704 } else if (unlikely(atomic_long_read(&obd_dirty_pages) >
705 (long)(obd_max_dirty_pages + 1))) {
706 /* The atomic_read() allowing the atomic_inc() are
707 * not covered by a lock thus they may safely race and trip
708 * this CERROR() unless we add in a small fudge factor (+1). */
709 CERROR("%s: dirty %ld > system dirty_max %ld\n",
710 cli_name(cli), atomic_long_read(&obd_dirty_pages),
711 obd_max_dirty_pages);
713 } else if (unlikely(cli->cl_dirty_max_pages - cli->cl_dirty_pages >
715 CERROR("dirty %lu - dirty_max %lu too big???\n",
716 cli->cl_dirty_pages, cli->cl_dirty_max_pages);
719 unsigned long nrpages;
720 unsigned long undirty;
722 nrpages = cli->cl_max_pages_per_rpc;
723 nrpages *= cli->cl_max_rpcs_in_flight + 1;
724 nrpages = max(nrpages, cli->cl_dirty_max_pages);
725 undirty = nrpages << PAGE_SHIFT;
726 if (cli->cl_ocd_grant_param) {
729 /* take extent tax into account when asking for more
731 nrextents = (nrpages + cli->cl_max_extent_pages - 1) /
732 cli->cl_max_extent_pages;
733 undirty += nrextents * cli->cl_grant_extent_tax;
735 /* Do not ask for more than OBD_MAX_GRANT - a margin for server
736 * to add extent tax, etc.
738 oa->o_undirty = min(undirty, OBD_MAX_GRANT &
739 ~(PTLRPC_MAX_BRW_SIZE * 4UL));
741 oa->o_grant = cli->cl_avail_grant + cli->cl_reserved_grant;
742 /* o_dropped AKA o_misc is 32 bits, but cl_lost_grant is 64 bits */
743 if (cli->cl_lost_grant > INT_MAX) {
745 "%s: avoided o_dropped overflow: cl_lost_grant %lu\n",
746 cli_name(cli), cli->cl_lost_grant);
747 oa->o_dropped = INT_MAX;
749 oa->o_dropped = cli->cl_lost_grant;
751 cli->cl_lost_grant -= oa->o_dropped;
752 spin_unlock(&cli->cl_loi_list_lock);
753 CDEBUG(D_CACHE, "%s: dirty: %llu undirty: %u dropped %u grant: %llu"
754 " cl_lost_grant %lu\n", cli_name(cli), oa->o_dirty,
755 oa->o_undirty, oa->o_dropped, oa->o_grant, cli->cl_lost_grant);
758 void osc_update_next_shrink(struct client_obd *cli)
760 cli->cl_next_shrink_grant = ktime_get_seconds() +
761 cli->cl_grant_shrink_interval;
763 CDEBUG(D_CACHE, "next time %lld to shrink grant\n",
764 cli->cl_next_shrink_grant);
767 static void __osc_update_grant(struct client_obd *cli, u64 grant)
769 spin_lock(&cli->cl_loi_list_lock);
770 cli->cl_avail_grant += grant;
771 spin_unlock(&cli->cl_loi_list_lock);
774 static void osc_update_grant(struct client_obd *cli, struct ost_body *body)
776 if (body->oa.o_valid & OBD_MD_FLGRANT) {
777 CDEBUG(D_CACHE, "got %llu extra grant\n", body->oa.o_grant);
778 __osc_update_grant(cli, body->oa.o_grant);
783 * grant thread data for shrinking space.
785 struct grant_thread_data {
786 struct list_head gtd_clients;
787 struct mutex gtd_mutex;
788 unsigned long gtd_stopped:1;
790 static struct grant_thread_data client_gtd;
792 static int osc_shrink_grant_interpret(const struct lu_env *env,
793 struct ptlrpc_request *req,
796 struct osc_grant_args *aa = args;
797 struct client_obd *cli = &req->rq_import->imp_obd->u.cli;
798 struct ost_body *body;
801 __osc_update_grant(cli, aa->aa_oa->o_grant);
805 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
807 osc_update_grant(cli, body);
809 OBD_SLAB_FREE_PTR(aa->aa_oa, osc_obdo_kmem);
815 static void osc_shrink_grant_local(struct client_obd *cli, struct obdo *oa)
817 spin_lock(&cli->cl_loi_list_lock);
818 oa->o_grant = cli->cl_avail_grant / 4;
819 cli->cl_avail_grant -= oa->o_grant;
820 spin_unlock(&cli->cl_loi_list_lock);
821 if (!(oa->o_valid & OBD_MD_FLFLAGS)) {
822 oa->o_valid |= OBD_MD_FLFLAGS;
825 oa->o_flags |= OBD_FL_SHRINK_GRANT;
826 osc_update_next_shrink(cli);
829 /* Shrink the current grant, either from some large amount to enough for a
830 * full set of in-flight RPCs, or if we have already shrunk to that limit
831 * then to enough for a single RPC. This avoids keeping more grant than
832 * needed, and avoids shrinking the grant piecemeal. */
833 static int osc_shrink_grant(struct client_obd *cli)
835 __u64 target_bytes = (cli->cl_max_rpcs_in_flight + 1) *
836 (cli->cl_max_pages_per_rpc << PAGE_SHIFT);
838 spin_lock(&cli->cl_loi_list_lock);
839 if (cli->cl_avail_grant <= target_bytes)
840 target_bytes = cli->cl_max_pages_per_rpc << PAGE_SHIFT;
841 spin_unlock(&cli->cl_loi_list_lock);
843 return osc_shrink_grant_to_target(cli, target_bytes);
846 int osc_shrink_grant_to_target(struct client_obd *cli, __u64 target_bytes)
849 struct ost_body *body;
852 spin_lock(&cli->cl_loi_list_lock);
853 /* Don't shrink if we are already above or below the desired limit
854 * We don't want to shrink below a single RPC, as that will negatively
855 * impact block allocation and long-term performance. */
856 if (target_bytes < cli->cl_max_pages_per_rpc << PAGE_SHIFT)
857 target_bytes = cli->cl_max_pages_per_rpc << PAGE_SHIFT;
859 if (target_bytes >= cli->cl_avail_grant) {
860 spin_unlock(&cli->cl_loi_list_lock);
863 spin_unlock(&cli->cl_loi_list_lock);
869 osc_announce_cached(cli, &body->oa, 0);
871 spin_lock(&cli->cl_loi_list_lock);
872 if (target_bytes >= cli->cl_avail_grant) {
873 /* available grant has changed since target calculation */
874 spin_unlock(&cli->cl_loi_list_lock);
875 GOTO(out_free, rc = 0);
877 body->oa.o_grant = cli->cl_avail_grant - target_bytes;
878 cli->cl_avail_grant = target_bytes;
879 spin_unlock(&cli->cl_loi_list_lock);
880 if (!(body->oa.o_valid & OBD_MD_FLFLAGS)) {
881 body->oa.o_valid |= OBD_MD_FLFLAGS;
882 body->oa.o_flags = 0;
884 body->oa.o_flags |= OBD_FL_SHRINK_GRANT;
885 osc_update_next_shrink(cli);
887 rc = osc_set_info_async(NULL, cli->cl_import->imp_obd->obd_self_export,
888 sizeof(KEY_GRANT_SHRINK), KEY_GRANT_SHRINK,
889 sizeof(*body), body, NULL);
891 __osc_update_grant(cli, body->oa.o_grant);
897 static int osc_should_shrink_grant(struct client_obd *client)
899 time64_t next_shrink = client->cl_next_shrink_grant;
901 if (client->cl_import == NULL)
904 if (!OCD_HAS_FLAG(&client->cl_import->imp_connect_data, GRANT_SHRINK) ||
905 client->cl_import->imp_grant_shrink_disabled) {
906 osc_update_next_shrink(client);
910 if (ktime_get_seconds() >= next_shrink - 5) {
911 /* Get the current RPC size directly, instead of going via:
912 * cli_brw_size(obd->u.cli.cl_import->imp_obd->obd_self_export)
913 * Keep comment here so that it can be found by searching. */
914 int brw_size = client->cl_max_pages_per_rpc << PAGE_SHIFT;
916 if (client->cl_import->imp_state == LUSTRE_IMP_FULL &&
917 client->cl_avail_grant > brw_size)
920 osc_update_next_shrink(client);
925 #define GRANT_SHRINK_RPC_BATCH 100
927 static struct delayed_work work;
929 static void osc_grant_work_handler(struct work_struct *data)
931 struct client_obd *cli;
933 bool init_next_shrink = true;
934 time64_t next_shrink = ktime_get_seconds() + GRANT_SHRINK_INTERVAL;
937 mutex_lock(&client_gtd.gtd_mutex);
938 list_for_each_entry(cli, &client_gtd.gtd_clients,
940 if (rpc_sent < GRANT_SHRINK_RPC_BATCH &&
941 osc_should_shrink_grant(cli)) {
942 osc_shrink_grant(cli);
946 if (!init_next_shrink) {
947 if (cli->cl_next_shrink_grant < next_shrink &&
948 cli->cl_next_shrink_grant > ktime_get_seconds())
949 next_shrink = cli->cl_next_shrink_grant;
951 init_next_shrink = false;
952 next_shrink = cli->cl_next_shrink_grant;
955 mutex_unlock(&client_gtd.gtd_mutex);
957 if (client_gtd.gtd_stopped == 1)
960 if (next_shrink > ktime_get_seconds()) {
961 time64_t delay = next_shrink - ktime_get_seconds();
963 schedule_delayed_work(&work, cfs_time_seconds(delay));
965 schedule_work(&work.work);
969 void osc_schedule_grant_work(void)
971 cancel_delayed_work_sync(&work);
972 schedule_work(&work.work);
976 * Start grant thread for returing grant to server for idle clients.
978 static int osc_start_grant_work(void)
980 client_gtd.gtd_stopped = 0;
981 mutex_init(&client_gtd.gtd_mutex);
982 INIT_LIST_HEAD(&client_gtd.gtd_clients);
984 INIT_DELAYED_WORK(&work, osc_grant_work_handler);
985 schedule_work(&work.work);
990 static void osc_stop_grant_work(void)
992 client_gtd.gtd_stopped = 1;
993 cancel_delayed_work_sync(&work);
996 static void osc_add_grant_list(struct client_obd *client)
998 mutex_lock(&client_gtd.gtd_mutex);
999 list_add(&client->cl_grant_chain, &client_gtd.gtd_clients);
1000 mutex_unlock(&client_gtd.gtd_mutex);
1003 static void osc_del_grant_list(struct client_obd *client)
1005 if (list_empty(&client->cl_grant_chain))
1008 mutex_lock(&client_gtd.gtd_mutex);
1009 list_del_init(&client->cl_grant_chain);
1010 mutex_unlock(&client_gtd.gtd_mutex);
1013 void osc_init_grant(struct client_obd *cli, struct obd_connect_data *ocd)
1016 * ocd_grant is the total grant amount we're expect to hold: if we've
1017 * been evicted, it's the new avail_grant amount, cl_dirty_pages will
1018 * drop to 0 as inflight RPCs fail out; otherwise, it's avail_grant +
1021 * race is tolerable here: if we're evicted, but imp_state already
1022 * left EVICTED state, then cl_dirty_pages must be 0 already.
1024 spin_lock(&cli->cl_loi_list_lock);
1025 cli->cl_avail_grant = ocd->ocd_grant;
1026 if (cli->cl_import->imp_state != LUSTRE_IMP_EVICTED) {
1027 unsigned long consumed = cli->cl_reserved_grant;
1029 if (OCD_HAS_FLAG(ocd, GRANT_PARAM))
1030 consumed += cli->cl_dirty_grant;
1032 consumed += cli->cl_dirty_pages << PAGE_SHIFT;
1033 if (cli->cl_avail_grant < consumed) {
1034 CERROR("%s: granted %ld but already consumed %ld\n",
1035 cli_name(cli), cli->cl_avail_grant, consumed);
1036 cli->cl_avail_grant = 0;
1038 cli->cl_avail_grant -= consumed;
1042 if (OCD_HAS_FLAG(ocd, GRANT_PARAM)) {
1046 /* overhead for each extent insertion */
1047 cli->cl_grant_extent_tax = ocd->ocd_grant_tax_kb << 10;
1048 /* determine the appropriate chunk size used by osc_extent. */
1049 cli->cl_chunkbits = max_t(int, PAGE_SHIFT,
1050 ocd->ocd_grant_blkbits);
1051 /* max_pages_per_rpc must be chunk aligned */
1052 chunk_mask = ~((1 << (cli->cl_chunkbits - PAGE_SHIFT)) - 1);
1053 cli->cl_max_pages_per_rpc = (cli->cl_max_pages_per_rpc +
1054 ~chunk_mask) & chunk_mask;
1055 /* determine maximum extent size, in #pages */
1056 size = (u64)ocd->ocd_grant_max_blks << ocd->ocd_grant_blkbits;
1057 cli->cl_max_extent_pages = (size >> PAGE_SHIFT) ?: 1;
1058 cli->cl_ocd_grant_param = 1;
1060 cli->cl_ocd_grant_param = 0;
1061 cli->cl_grant_extent_tax = 0;
1062 cli->cl_chunkbits = PAGE_SHIFT;
1063 cli->cl_max_extent_pages = DT_MAX_BRW_PAGES;
1065 spin_unlock(&cli->cl_loi_list_lock);
1068 "%s, setting cl_avail_grant: %ld cl_lost_grant: %ld. chunk bits: %d cl_max_extent_pages: %d\n",
1070 cli->cl_avail_grant, cli->cl_lost_grant, cli->cl_chunkbits,
1071 cli->cl_max_extent_pages);
1073 if (OCD_HAS_FLAG(ocd, GRANT_SHRINK) && list_empty(&cli->cl_grant_chain))
1074 osc_add_grant_list(cli);
1076 EXPORT_SYMBOL(osc_init_grant);
1078 /* We assume that the reason this OSC got a short read is because it read
1079 * beyond the end of a stripe file; i.e. lustre is reading a sparse file
1080 * via the LOV, and it _knows_ it's reading inside the file, it's just that
1081 * this stripe never got written at or beyond this stripe offset yet. */
1082 static void handle_short_read(int nob_read, size_t page_count,
1083 struct brw_page **pga)
1088 /* skip bytes read OK */
1089 while (nob_read > 0) {
1090 LASSERT (page_count > 0);
1092 if (pga[i]->count > nob_read) {
1093 /* EOF inside this page */
1094 ptr = kmap(pga[i]->pg) +
1095 (pga[i]->off & ~PAGE_MASK);
1096 memset(ptr + nob_read, 0, pga[i]->count - nob_read);
1103 nob_read -= pga[i]->count;
1108 /* zero remaining pages */
1109 while (page_count-- > 0) {
1110 ptr = kmap(pga[i]->pg) + (pga[i]->off & ~PAGE_MASK);
1111 memset(ptr, 0, pga[i]->count);
1117 static int check_write_rcs(struct ptlrpc_request *req,
1118 int requested_nob, int niocount,
1119 size_t page_count, struct brw_page **pga)
1124 remote_rcs = req_capsule_server_sized_get(&req->rq_pill, &RMF_RCS,
1125 sizeof(*remote_rcs) *
1127 if (remote_rcs == NULL) {
1128 CDEBUG(D_INFO, "Missing/short RC vector on BRW_WRITE reply\n");
1132 /* return error if any niobuf was in error */
1133 for (i = 0; i < niocount; i++) {
1134 if ((int)remote_rcs[i] < 0) {
1135 CDEBUG(D_INFO, "rc[%d]: %d req %p\n",
1136 i, remote_rcs[i], req);
1137 return remote_rcs[i];
1140 if (remote_rcs[i] != 0) {
1141 CDEBUG(D_INFO, "rc[%d] invalid (%d) req %p\n",
1142 i, remote_rcs[i], req);
1146 if (req->rq_bulk != NULL &&
1147 req->rq_bulk->bd_nob_transferred != requested_nob) {
1148 CERROR("Unexpected # bytes transferred: %d (requested %d)\n",
1149 req->rq_bulk->bd_nob_transferred, requested_nob);
1156 static inline int can_merge_pages(struct brw_page *p1, struct brw_page *p2)
1158 if (p1->flag != p2->flag) {
1159 unsigned mask = ~(OBD_BRW_FROM_GRANT | OBD_BRW_NOCACHE |
1160 OBD_BRW_SYNC | OBD_BRW_ASYNC |
1161 OBD_BRW_NOQUOTA | OBD_BRW_SOFT_SYNC);
1163 /* warn if we try to combine flags that we don't know to be
1164 * safe to combine */
1165 if (unlikely((p1->flag & mask) != (p2->flag & mask))) {
1166 CWARN("Saw flags 0x%x and 0x%x in the same brw, please "
1167 "report this at https://jira.whamcloud.com/\n",
1168 p1->flag, p2->flag);
1173 return (p1->off + p1->count == p2->off);
1176 #if IS_ENABLED(CONFIG_CRC_T10DIF)
1177 static int osc_checksum_bulk_t10pi(const char *obd_name, int nob,
1178 size_t pg_count, struct brw_page **pga,
1179 int opc, obd_dif_csum_fn *fn,
1181 u32 *check_sum, bool resend)
1183 struct ahash_request *req;
1184 /* Used Adler as the default checksum type on top of DIF tags */
1185 unsigned char cfs_alg = cksum_obd2cfs(OBD_CKSUM_T10_TOP);
1186 struct page *__page;
1187 unsigned char *buffer;
1189 unsigned int bufsize;
1191 int used_number = 0;
1197 LASSERT(pg_count > 0);
1199 __page = alloc_page(GFP_KERNEL);
1203 req = cfs_crypto_hash_init(cfs_alg, NULL, 0);
1206 CERROR("%s: unable to initialize checksum hash %s: rc = %d\n",
1207 obd_name, cfs_crypto_hash_name(cfs_alg), rc);
1211 buffer = kmap(__page);
1212 guard_start = (__u16 *)buffer;
1213 guard_number = PAGE_SIZE / sizeof(*guard_start);
1214 CDEBUG(D_PAGE | (resend ? D_HA : 0),
1215 "GRD tags per page=%u, resend=%u, bytes=%u, pages=%zu\n",
1216 guard_number, resend, nob, pg_count);
1218 while (nob > 0 && pg_count > 0) {
1219 unsigned int count = pga[i]->count > nob ? nob : pga[i]->count;
1221 /* corrupt the data before we compute the checksum, to
1222 * simulate an OST->client data error */
1223 if (unlikely(i == 0 && opc == OST_READ &&
1224 OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_RECEIVE))) {
1225 unsigned char *ptr = kmap(pga[i]->pg);
1226 int off = pga[i]->off & ~PAGE_MASK;
1228 memcpy(ptr + off, "bad1", min_t(typeof(nob), 4, nob));
1233 * The left guard number should be able to hold checksums of a
1236 rc = obd_page_dif_generate_buffer(obd_name, pga[i]->pg,
1237 pga[i]->off & ~PAGE_MASK,
1239 guard_start + used_number,
1240 guard_number - used_number,
1243 if (unlikely(resend))
1244 CDEBUG(D_PAGE | D_HA,
1245 "pga[%u]: used %u off %llu+%u gen checksum: %*phN\n",
1246 i, used, pga[i]->off & ~PAGE_MASK, count,
1247 (int)(used * sizeof(*guard_start)),
1248 guard_start + used_number);
1252 used_number += used;
1253 if (used_number == guard_number) {
1254 cfs_crypto_hash_update_page(req, __page, 0,
1255 used_number * sizeof(*guard_start));
1259 nob -= pga[i]->count;
1267 if (used_number != 0)
1268 cfs_crypto_hash_update_page(req, __page, 0,
1269 used_number * sizeof(*guard_start));
1271 bufsize = sizeof(cksum);
1272 cfs_crypto_hash_final(req, (unsigned char *)&cksum, &bufsize);
1274 /* For sending we only compute the wrong checksum instead
1275 * of corrupting the data so it is still correct on a redo */
1276 if (opc == OST_WRITE && OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_SEND))
1281 __free_page(__page);
1284 #else /* !CONFIG_CRC_T10DIF */
1285 #define obd_dif_ip_fn NULL
1286 #define obd_dif_crc_fn NULL
1287 #define osc_checksum_bulk_t10pi(name, nob, pgc, pga, opc, fn, ssize, csum, re) \
1289 #endif /* CONFIG_CRC_T10DIF */
1291 static int osc_checksum_bulk(int nob, size_t pg_count,
1292 struct brw_page **pga, int opc,
1293 enum cksum_types cksum_type,
1297 struct ahash_request *req;
1298 unsigned int bufsize;
1299 unsigned char cfs_alg = cksum_obd2cfs(cksum_type);
1301 LASSERT(pg_count > 0);
1303 req = cfs_crypto_hash_init(cfs_alg, NULL, 0);
1305 CERROR("Unable to initialize checksum hash %s\n",
1306 cfs_crypto_hash_name(cfs_alg));
1307 return PTR_ERR(req);
1310 while (nob > 0 && pg_count > 0) {
1311 unsigned int count = pga[i]->count > nob ? nob : pga[i]->count;
1313 /* corrupt the data before we compute the checksum, to
1314 * simulate an OST->client data error */
1315 if (i == 0 && opc == OST_READ &&
1316 OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_RECEIVE)) {
1317 unsigned char *ptr = kmap(pga[i]->pg);
1318 int off = pga[i]->off & ~PAGE_MASK;
1320 memcpy(ptr + off, "bad1", min_t(typeof(nob), 4, nob));
1323 cfs_crypto_hash_update_page(req, pga[i]->pg,
1324 pga[i]->off & ~PAGE_MASK,
1326 LL_CDEBUG_PAGE(D_PAGE, pga[i]->pg, "off %d\n",
1327 (int)(pga[i]->off & ~PAGE_MASK));
1329 nob -= pga[i]->count;
1334 bufsize = sizeof(*cksum);
1335 cfs_crypto_hash_final(req, (unsigned char *)cksum, &bufsize);
1337 /* For sending we only compute the wrong checksum instead
1338 * of corrupting the data so it is still correct on a redo */
1339 if (opc == OST_WRITE && OBD_FAIL_CHECK(OBD_FAIL_OSC_CHECKSUM_SEND))
1345 static int osc_checksum_bulk_rw(const char *obd_name,
1346 enum cksum_types cksum_type,
1347 int nob, size_t pg_count,
1348 struct brw_page **pga, int opc,
1349 u32 *check_sum, bool resend)
1351 obd_dif_csum_fn *fn = NULL;
1352 int sector_size = 0;
1356 obd_t10_cksum2dif(cksum_type, &fn, §or_size);
1359 rc = osc_checksum_bulk_t10pi(obd_name, nob, pg_count, pga,
1360 opc, fn, sector_size, check_sum,
1363 rc = osc_checksum_bulk(nob, pg_count, pga, opc, cksum_type,
1369 static inline void osc_release_bounce_pages(struct brw_page **pga,
1372 #ifdef HAVE_LUSTRE_CRYPTO
1375 for (i = 0; i < page_count; i++) {
1376 /* Bounce pages allocated by a call to
1377 * llcrypt_encrypt_pagecache_blocks() in osc_brw_prep_request()
1378 * are identified thanks to the PageChecked flag.
1380 if (PageChecked(pga[i]->pg))
1381 llcrypt_finalize_bounce_page(&pga[i]->pg);
1382 pga[i]->count -= pga[i]->bp_count_diff;
1383 pga[i]->off += pga[i]->bp_off_diff;
1389 osc_brw_prep_request(int cmd, struct client_obd *cli, struct obdo *oa,
1390 u32 page_count, struct brw_page **pga,
1391 struct ptlrpc_request **reqp, int resend)
1393 struct ptlrpc_request *req;
1394 struct ptlrpc_bulk_desc *desc;
1395 struct ost_body *body;
1396 struct obd_ioobj *ioobj;
1397 struct niobuf_remote *niobuf;
1398 int niocount, i, requested_nob, opc, rc, short_io_size = 0;
1399 struct osc_brw_async_args *aa;
1400 struct req_capsule *pill;
1401 struct brw_page *pg_prev;
1403 const char *obd_name = cli->cl_import->imp_obd->obd_name;
1404 struct inode *inode = NULL;
1405 bool directio = false;
1406 bool enable_checksum = true;
1410 inode = page2inode(pga[0]->pg);
1411 if (inode == NULL) {
1412 /* Try to get reference to inode from cl_page if we are
1413 * dealing with direct IO, as handled pages are not
1414 * actual page cache pages.
1416 struct osc_async_page *oap = brw_page2oap(pga[0]);
1417 struct cl_page *clpage = oap2cl_page(oap);
1419 inode = clpage->cp_inode;
1424 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_BRW_PREP_REQ))
1425 RETURN(-ENOMEM); /* Recoverable */
1426 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_BRW_PREP_REQ2))
1427 RETURN(-EINVAL); /* Fatal */
1429 if ((cmd & OBD_BRW_WRITE) != 0) {
1431 req = ptlrpc_request_alloc_pool(cli->cl_import,
1433 &RQF_OST_BRW_WRITE);
1436 req = ptlrpc_request_alloc(cli->cl_import, &RQF_OST_BRW_READ);
1441 if (opc == OST_WRITE && inode && IS_ENCRYPTED(inode)) {
1442 for (i = 0; i < page_count; i++) {
1443 struct brw_page *pg = pga[i];
1444 struct page *data_page = NULL;
1445 bool retried = false;
1446 bool lockedbymyself;
1447 u32 nunits = (pg->off & ~PAGE_MASK) + pg->count;
1448 struct address_space *map_orig = NULL;
1452 if (nunits & ~LUSTRE_ENCRYPTION_MASK)
1453 nunits = (nunits & LUSTRE_ENCRYPTION_MASK) +
1454 LUSTRE_ENCRYPTION_UNIT_SIZE;
1455 /* The page can already be locked when we arrive here.
1456 * This is possible when cl_page_assume/vvp_page_assume
1457 * is stuck on wait_on_page_writeback with page lock
1458 * held. In this case there is no risk for the lock to
1459 * be released while we are doing our encryption
1460 * processing, because writeback against that page will
1461 * end in vvp_page_completion_write/cl_page_completion,
1462 * which means only once the page is fully processed.
1464 lockedbymyself = trylock_page(pg->pg);
1466 map_orig = pg->pg->mapping;
1467 pg->pg->mapping = inode->i_mapping;
1468 index_orig = pg->pg->index;
1469 pg->pg->index = pg->off >> PAGE_SHIFT;
1472 llcrypt_encrypt_pagecache_blocks(pg->pg,
1476 pg->pg->mapping = map_orig;
1477 pg->pg->index = index_orig;
1480 unlock_page(pg->pg);
1481 if (IS_ERR(data_page)) {
1482 rc = PTR_ERR(data_page);
1483 if (rc == -ENOMEM && !retried) {
1488 ptlrpc_request_free(req);
1491 /* Set PageChecked flag on bounce page for
1492 * disambiguation in osc_release_bounce_pages().
1494 SetPageChecked(data_page);
1496 /* there should be no gap in the middle of page array */
1497 if (i == page_count - 1) {
1498 struct osc_async_page *oap = brw_page2oap(pg);
1500 oa->o_size = oap->oap_count +
1501 oap->oap_obj_off + oap->oap_page_off;
1503 /* len is forced to nunits, and relative offset to 0
1504 * so store the old, clear text info
1506 pg->bp_count_diff = nunits - pg->count;
1508 pg->bp_off_diff = pg->off & ~PAGE_MASK;
1509 pg->off = pg->off & PAGE_MASK;
1511 } else if (opc == OST_READ && inode && IS_ENCRYPTED(inode)) {
1512 for (i = 0; i < page_count; i++) {
1513 struct brw_page *pg = pga[i];
1514 u32 nunits = (pg->off & ~PAGE_MASK) + pg->count;
1516 if (nunits & ~LUSTRE_ENCRYPTION_MASK)
1517 nunits = (nunits & LUSTRE_ENCRYPTION_MASK) +
1518 LUSTRE_ENCRYPTION_UNIT_SIZE;
1519 /* count/off are forced to cover the whole encryption
1520 * unit size so that all encrypted data is stored on the
1521 * OST, so adjust bp_{count,off}_diff for the size of
1524 pg->bp_count_diff = nunits - pg->count;
1526 pg->bp_off_diff = pg->off & ~PAGE_MASK;
1527 pg->off = pg->off & PAGE_MASK;
1531 for (niocount = i = 1; i < page_count; i++) {
1532 if (!can_merge_pages(pga[i - 1], pga[i]))
1536 pill = &req->rq_pill;
1537 req_capsule_set_size(pill, &RMF_OBD_IOOBJ, RCL_CLIENT,
1539 req_capsule_set_size(pill, &RMF_NIOBUF_REMOTE, RCL_CLIENT,
1540 niocount * sizeof(*niobuf));
1542 for (i = 0; i < page_count; i++) {
1543 short_io_size += pga[i]->count;
1544 if (!inode || !IS_ENCRYPTED(inode)) {
1545 pga[i]->bp_count_diff = 0;
1546 pga[i]->bp_off_diff = 0;
1550 if (lnet_is_rdma_only_page(pga[0]->pg)) {
1551 enable_checksum = false;
1555 /* Check if read/write is small enough to be a short io. */
1556 if (short_io_size > cli->cl_max_short_io_bytes || niocount > 1 ||
1557 !imp_connect_shortio(cli->cl_import))
1560 req_capsule_set_size(pill, &RMF_SHORT_IO, RCL_CLIENT,
1561 opc == OST_READ ? 0 : short_io_size);
1562 if (opc == OST_READ)
1563 req_capsule_set_size(pill, &RMF_SHORT_IO, RCL_SERVER,
1566 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, opc);
1568 ptlrpc_request_free(req);
1571 osc_set_io_portal(req);
1573 ptlrpc_at_set_req_timeout(req);
1574 /* ask ptlrpc not to resend on EINPROGRESS since BRWs have their own
1576 req->rq_no_retry_einprogress = 1;
1578 if (short_io_size != 0) {
1580 short_io_buf = NULL;
1584 desc = ptlrpc_prep_bulk_imp(req, page_count,
1585 cli->cl_import->imp_connect_data.ocd_brw_size >> LNET_MTU_BITS,
1586 (opc == OST_WRITE ? PTLRPC_BULK_GET_SOURCE :
1587 PTLRPC_BULK_PUT_SINK),
1589 &ptlrpc_bulk_kiov_pin_ops);
1592 GOTO(out, rc = -ENOMEM);
1593 /* NB request now owns desc and will free it when it gets freed */
1595 body = req_capsule_client_get(pill, &RMF_OST_BODY);
1596 ioobj = req_capsule_client_get(pill, &RMF_OBD_IOOBJ);
1597 niobuf = req_capsule_client_get(pill, &RMF_NIOBUF_REMOTE);
1598 LASSERT(body != NULL && ioobj != NULL && niobuf != NULL);
1600 lustre_set_wire_obdo(&req->rq_import->imp_connect_data, &body->oa, oa);
1602 /* For READ and WRITE, we can't fill o_uid and o_gid using from_kuid()
1603 * and from_kgid(), because they are asynchronous. Fortunately, variable
1604 * oa contains valid o_uid and o_gid in these two operations.
1605 * Besides, filling o_uid and o_gid is enough for nrs-tbf, see LU-9658.
1606 * OBD_MD_FLUID and OBD_MD_FLUID is not set in order to avoid breaking
1607 * other process logic */
1608 body->oa.o_uid = oa->o_uid;
1609 body->oa.o_gid = oa->o_gid;
1611 obdo_to_ioobj(oa, ioobj);
1612 ioobj->ioo_bufcnt = niocount;
1613 /* The high bits of ioo_max_brw tells server _maximum_ number of bulks
1614 * that might be send for this request. The actual number is decided
1615 * when the RPC is finally sent in ptlrpc_register_bulk(). It sends
1616 * "max - 1" for old client compatibility sending "0", and also so the
1617 * the actual maximum is a power-of-two number, not one less. LU-1431 */
1619 ioobj_max_brw_set(ioobj, desc->bd_md_max_brw);
1621 ioobj_max_brw_set(ioobj, 0);
1623 if (short_io_size != 0) {
1624 if ((body->oa.o_valid & OBD_MD_FLFLAGS) == 0) {
1625 body->oa.o_valid |= OBD_MD_FLFLAGS;
1626 body->oa.o_flags = 0;
1628 body->oa.o_flags |= OBD_FL_SHORT_IO;
1629 CDEBUG(D_CACHE, "Using short io for data transfer, size = %d\n",
1631 if (opc == OST_WRITE) {
1632 short_io_buf = req_capsule_client_get(pill,
1634 LASSERT(short_io_buf != NULL);
1638 LASSERT(page_count > 0);
1640 for (requested_nob = i = 0; i < page_count; i++, niobuf++) {
1641 struct brw_page *pg = pga[i];
1642 int poff = pg->off & ~PAGE_MASK;
1644 LASSERT(pg->count > 0);
1645 /* make sure there is no gap in the middle of page array */
1646 LASSERTF(page_count == 1 ||
1647 (ergo(i == 0, poff + pg->count == PAGE_SIZE) &&
1648 ergo(i > 0 && i < page_count - 1,
1649 poff == 0 && pg->count == PAGE_SIZE) &&
1650 ergo(i == page_count - 1, poff == 0)),
1651 "i: %d/%d pg: %p off: %llu, count: %u\n",
1652 i, page_count, pg, pg->off, pg->count);
1653 LASSERTF(i == 0 || pg->off > pg_prev->off,
1654 "i %d p_c %u pg %p [pri %lu ind %lu] off %llu"
1655 " prev_pg %p [pri %lu ind %lu] off %llu\n",
1657 pg->pg, page_private(pg->pg), pg->pg->index, pg->off,
1658 pg_prev->pg, page_private(pg_prev->pg),
1659 pg_prev->pg->index, pg_prev->off);
1660 LASSERT((pga[0]->flag & OBD_BRW_SRVLOCK) ==
1661 (pg->flag & OBD_BRW_SRVLOCK));
1662 if (short_io_size != 0 && opc == OST_WRITE) {
1663 unsigned char *ptr = kmap_atomic(pg->pg);
1665 LASSERT(short_io_size >= requested_nob + pg->count);
1666 memcpy(short_io_buf + requested_nob,
1670 } else if (short_io_size == 0) {
1671 desc->bd_frag_ops->add_kiov_frag(desc, pg->pg, poff,
1674 requested_nob += pg->count;
1676 if (i > 0 && can_merge_pages(pg_prev, pg)) {
1678 niobuf->rnb_len += pg->count;
1680 niobuf->rnb_offset = pg->off;
1681 niobuf->rnb_len = pg->count;
1682 niobuf->rnb_flags = pg->flag;
1687 LASSERTF((void *)(niobuf - niocount) ==
1688 req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE),
1689 "want %p - real %p\n", req_capsule_client_get(&req->rq_pill,
1690 &RMF_NIOBUF_REMOTE), (void *)(niobuf - niocount));
1692 osc_announce_cached(cli, &body->oa, opc == OST_WRITE ? requested_nob:0);
1694 if ((body->oa.o_valid & OBD_MD_FLFLAGS) == 0) {
1695 body->oa.o_valid |= OBD_MD_FLFLAGS;
1696 body->oa.o_flags = 0;
1698 body->oa.o_flags |= OBD_FL_RECOV_RESEND;
1701 if (osc_should_shrink_grant(cli))
1702 osc_shrink_grant_local(cli, &body->oa);
1704 if (!cli->cl_checksum || sptlrpc_flavor_has_bulk(&req->rq_flvr))
1705 enable_checksum = false;
1707 /* size[REQ_REC_OFF] still sizeof (*body) */
1708 if (opc == OST_WRITE) {
1709 if (enable_checksum) {
1710 /* store cl_cksum_type in a local variable since
1711 * it can be changed via lprocfs */
1712 enum cksum_types cksum_type = cli->cl_cksum_type;
1714 if ((body->oa.o_valid & OBD_MD_FLFLAGS) == 0)
1715 body->oa.o_flags = 0;
1717 body->oa.o_flags |= obd_cksum_type_pack(obd_name,
1719 body->oa.o_valid |= OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
1721 rc = osc_checksum_bulk_rw(obd_name, cksum_type,
1722 requested_nob, page_count,
1724 &body->oa.o_cksum, resend);
1726 CDEBUG(D_PAGE, "failed to checksum: rc = %d\n",
1730 CDEBUG(D_PAGE | (resend ? D_HA : 0),
1731 "checksum at write origin: %x (%x)\n",
1732 body->oa.o_cksum, cksum_type);
1734 /* save this in 'oa', too, for later checking */
1735 oa->o_valid |= OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
1736 oa->o_flags |= obd_cksum_type_pack(obd_name,
1739 /* clear out the checksum flag, in case this is a
1740 * resend but cl_checksum is no longer set. b=11238 */
1741 oa->o_valid &= ~OBD_MD_FLCKSUM;
1743 oa->o_cksum = body->oa.o_cksum;
1744 /* 1 RC per niobuf */
1745 req_capsule_set_size(pill, &RMF_RCS, RCL_SERVER,
1746 sizeof(__u32) * niocount);
1748 if (enable_checksum) {
1749 if ((body->oa.o_valid & OBD_MD_FLFLAGS) == 0)
1750 body->oa.o_flags = 0;
1751 body->oa.o_flags |= obd_cksum_type_pack(obd_name,
1752 cli->cl_cksum_type);
1753 body->oa.o_valid |= OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
1756 /* Client cksum has been already copied to wire obdo in previous
1757 * lustre_set_wire_obdo(), and in the case a bulk-read is being
1758 * resent due to cksum error, this will allow Server to
1759 * check+dump pages on its side */
1761 ptlrpc_request_set_replen(req);
1763 aa = ptlrpc_req_async_args(aa, req);
1765 aa->aa_requested_nob = requested_nob;
1766 aa->aa_nio_count = niocount;
1767 aa->aa_page_count = page_count;
1771 INIT_LIST_HEAD(&aa->aa_oaps);
1774 niobuf = req_capsule_client_get(pill, &RMF_NIOBUF_REMOTE);
1775 CDEBUG(D_RPCTRACE, "brw rpc %p - object "DOSTID" offset %lld<>%lld\n",
1776 req, POSTID(&oa->o_oi), niobuf[0].rnb_offset,
1777 niobuf[niocount - 1].rnb_offset + niobuf[niocount - 1].rnb_len);
1781 ptlrpc_req_finished(req);
1785 char dbgcksum_file_name[PATH_MAX];
1787 static void dump_all_bulk_pages(struct obdo *oa, __u32 page_count,
1788 struct brw_page **pga, __u32 server_cksum,
1796 /* will only keep dump of pages on first error for the same range in
1797 * file/fid, not during the resends/retries. */
1798 snprintf(dbgcksum_file_name, sizeof(dbgcksum_file_name),
1799 "%s-checksum_dump-osc-"DFID":[%llu-%llu]-%x-%x",
1800 (strncmp(libcfs_debug_file_path, "NONE", 4) != 0 ?
1801 libcfs_debug_file_path : LIBCFS_DEBUG_FILE_PATH_DEFAULT),
1802 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_seq : 0ULL,
1803 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_oid : 0,
1804 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_ver : 0,
1806 pga[page_count-1]->off + pga[page_count-1]->count - 1,
1807 client_cksum, server_cksum);
1808 CWARN("dumping checksum data to %s\n", dbgcksum_file_name);
1809 filp = filp_open(dbgcksum_file_name,
1810 O_CREAT | O_EXCL | O_WRONLY | O_LARGEFILE, 0600);
1814 CDEBUG(D_INFO, "%s: can't open to dump pages with "
1815 "checksum error: rc = %d\n", dbgcksum_file_name,
1818 CERROR("%s: can't open to dump pages with checksum "
1819 "error: rc = %d\n", dbgcksum_file_name, rc);
1823 for (i = 0; i < page_count; i++) {
1824 len = pga[i]->count;
1825 buf = kmap(pga[i]->pg);
1827 rc = cfs_kernel_write(filp, buf, len, &filp->f_pos);
1829 CERROR("%s: wanted to write %u but got %d "
1830 "error\n", dbgcksum_file_name, len, rc);
1839 rc = vfs_fsync_range(filp, 0, LLONG_MAX, 1);
1841 CERROR("%s: sync returns %d\n", dbgcksum_file_name, rc);
1842 filp_close(filp, NULL);
1844 libcfs_debug_dumplog();
1848 check_write_checksum(struct obdo *oa, const struct lnet_process_id *peer,
1849 __u32 client_cksum, __u32 server_cksum,
1850 struct osc_brw_async_args *aa)
1852 const char *obd_name = aa->aa_cli->cl_import->imp_obd->obd_name;
1853 enum cksum_types cksum_type;
1854 obd_dif_csum_fn *fn = NULL;
1855 int sector_size = 0;
1860 if (server_cksum == client_cksum) {
1861 CDEBUG(D_PAGE, "checksum %x confirmed\n", client_cksum);
1865 if (aa->aa_cli->cl_checksum_dump)
1866 dump_all_bulk_pages(oa, aa->aa_page_count, aa->aa_ppga,
1867 server_cksum, client_cksum);
1869 cksum_type = obd_cksum_type_unpack(oa->o_valid & OBD_MD_FLFLAGS ?
1872 switch (cksum_type) {
1873 case OBD_CKSUM_T10IP512:
1877 case OBD_CKSUM_T10IP4K:
1881 case OBD_CKSUM_T10CRC512:
1882 fn = obd_dif_crc_fn;
1885 case OBD_CKSUM_T10CRC4K:
1886 fn = obd_dif_crc_fn;
1894 rc = osc_checksum_bulk_t10pi(obd_name, aa->aa_requested_nob,
1895 aa->aa_page_count, aa->aa_ppga,
1896 OST_WRITE, fn, sector_size,
1899 rc = osc_checksum_bulk(aa->aa_requested_nob, aa->aa_page_count,
1900 aa->aa_ppga, OST_WRITE, cksum_type,
1904 msg = "failed to calculate the client write checksum";
1905 else if (cksum_type != obd_cksum_type_unpack(aa->aa_oa->o_flags))
1906 msg = "the server did not use the checksum type specified in "
1907 "the original request - likely a protocol problem";
1908 else if (new_cksum == server_cksum)
1909 msg = "changed on the client after we checksummed it - "
1910 "likely false positive due to mmap IO (bug 11742)";
1911 else if (new_cksum == client_cksum)
1912 msg = "changed in transit before arrival at OST";
1914 msg = "changed in transit AND doesn't match the original - "
1915 "likely false positive due to mmap IO (bug 11742)";
1917 LCONSOLE_ERROR_MSG(0x132, "%s: BAD WRITE CHECKSUM: %s: from %s inode "
1918 DFID " object "DOSTID" extent [%llu-%llu], original "
1919 "client csum %x (type %x), server csum %x (type %x),"
1920 " client csum now %x\n",
1921 obd_name, msg, libcfs_nid2str(peer->nid),
1922 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_seq : (__u64)0,
1923 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_oid : 0,
1924 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_ver : 0,
1925 POSTID(&oa->o_oi), aa->aa_ppga[0]->off,
1926 aa->aa_ppga[aa->aa_page_count - 1]->off +
1927 aa->aa_ppga[aa->aa_page_count-1]->count - 1,
1929 obd_cksum_type_unpack(aa->aa_oa->o_flags),
1930 server_cksum, cksum_type, new_cksum);
1934 /* Note rc enters this function as number of bytes transferred */
1935 static int osc_brw_fini_request(struct ptlrpc_request *req, int rc)
1937 struct osc_brw_async_args *aa = (void *)&req->rq_async_args;
1938 struct client_obd *cli = aa->aa_cli;
1939 const char *obd_name = cli->cl_import->imp_obd->obd_name;
1940 const struct lnet_process_id *peer =
1941 &req->rq_import->imp_connection->c_peer;
1942 struct ost_body *body;
1943 u32 client_cksum = 0;
1944 struct inode *inode;
1945 unsigned int blockbits = 0, blocksize = 0;
1949 if (rc < 0 && rc != -EDQUOT) {
1950 DEBUG_REQ(D_INFO, req, "Failed request: rc = %d", rc);
1954 LASSERTF(req->rq_repmsg != NULL, "rc = %d\n", rc);
1955 body = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
1957 DEBUG_REQ(D_INFO, req, "cannot unpack body");
1961 /* set/clear over quota flag for a uid/gid/projid */
1962 if (lustre_msg_get_opc(req->rq_reqmsg) == OST_WRITE &&
1963 body->oa.o_valid & (OBD_MD_FLALLQUOTA)) {
1964 unsigned qid[LL_MAXQUOTAS] = {
1965 body->oa.o_uid, body->oa.o_gid,
1966 body->oa.o_projid };
1968 "setdq for [%u %u %u] with valid %#llx, flags %x\n",
1969 body->oa.o_uid, body->oa.o_gid, body->oa.o_projid,
1970 body->oa.o_valid, body->oa.o_flags);
1971 osc_quota_setdq(cli, req->rq_xid, qid, body->oa.o_valid,
1975 osc_update_grant(cli, body);
1980 if (aa->aa_oa->o_valid & OBD_MD_FLCKSUM)
1981 client_cksum = aa->aa_oa->o_cksum; /* save for later */
1983 if (lustre_msg_get_opc(req->rq_reqmsg) == OST_WRITE) {
1985 CERROR("%s: unexpected positive size %d\n",
1990 if (req->rq_bulk != NULL &&
1991 sptlrpc_cli_unwrap_bulk_write(req, req->rq_bulk))
1994 if ((aa->aa_oa->o_valid & OBD_MD_FLCKSUM) && client_cksum &&
1995 check_write_checksum(&body->oa, peer, client_cksum,
1996 body->oa.o_cksum, aa))
1999 rc = check_write_rcs(req, aa->aa_requested_nob,
2000 aa->aa_nio_count, aa->aa_page_count,
2005 /* The rest of this function executes only for OST_READs */
2007 if (req->rq_bulk == NULL) {
2008 rc = req_capsule_get_size(&req->rq_pill, &RMF_SHORT_IO,
2010 LASSERT(rc == req->rq_status);
2012 /* if unwrap_bulk failed, return -EAGAIN to retry */
2013 rc = sptlrpc_cli_unwrap_bulk_read(req, req->rq_bulk, rc);
2016 GOTO(out, rc = -EAGAIN);
2018 if (rc > aa->aa_requested_nob) {
2019 CERROR("%s: unexpected size %d, requested %d\n", obd_name,
2020 rc, aa->aa_requested_nob);
2024 if (req->rq_bulk != NULL && rc != req->rq_bulk->bd_nob_transferred) {
2025 CERROR("%s: unexpected size %d, transferred %d\n", obd_name,
2026 rc, req->rq_bulk->bd_nob_transferred);
2030 if (req->rq_bulk == NULL) {
2032 int nob, pg_count, i = 0;
2035 CDEBUG(D_CACHE, "Using short io read, size %d\n", rc);
2036 pg_count = aa->aa_page_count;
2037 buf = req_capsule_server_sized_get(&req->rq_pill, &RMF_SHORT_IO,
2040 while (nob > 0 && pg_count > 0) {
2042 int count = aa->aa_ppga[i]->count > nob ?
2043 nob : aa->aa_ppga[i]->count;
2045 CDEBUG(D_CACHE, "page %p count %d\n",
2046 aa->aa_ppga[i]->pg, count);
2047 ptr = kmap_atomic(aa->aa_ppga[i]->pg);
2048 memcpy(ptr + (aa->aa_ppga[i]->off & ~PAGE_MASK), buf,
2050 kunmap_atomic((void *) ptr);
2059 if (rc < aa->aa_requested_nob)
2060 handle_short_read(rc, aa->aa_page_count, aa->aa_ppga);
2062 if (body->oa.o_valid & OBD_MD_FLCKSUM) {
2063 static int cksum_counter;
2064 u32 server_cksum = body->oa.o_cksum;
2068 enum cksum_types cksum_type;
2069 u32 o_flags = body->oa.o_valid & OBD_MD_FLFLAGS ?
2070 body->oa.o_flags : 0;
2072 cksum_type = obd_cksum_type_unpack(o_flags);
2073 rc = osc_checksum_bulk_rw(obd_name, cksum_type, nob,
2074 aa->aa_page_count, aa->aa_ppga,
2075 OST_READ, &client_cksum, false);
2079 if (req->rq_bulk != NULL &&
2080 peer->nid != req->rq_bulk->bd_sender) {
2082 router = libcfs_nid2str(req->rq_bulk->bd_sender);
2085 if (server_cksum != client_cksum) {
2086 struct ost_body *clbody;
2087 __u32 client_cksum2;
2088 u32 page_count = aa->aa_page_count;
2090 osc_checksum_bulk_rw(obd_name, cksum_type, nob,
2091 page_count, aa->aa_ppga,
2092 OST_READ, &client_cksum2, true);
2093 clbody = req_capsule_client_get(&req->rq_pill,
2095 if (cli->cl_checksum_dump)
2096 dump_all_bulk_pages(&clbody->oa, page_count,
2097 aa->aa_ppga, server_cksum,
2100 LCONSOLE_ERROR_MSG(0x133, "%s: BAD READ CHECKSUM: from "
2101 "%s%s%s inode "DFID" object "DOSTID
2102 " extent [%llu-%llu], client %x/%x, "
2103 "server %x, cksum_type %x\n",
2105 libcfs_nid2str(peer->nid),
2107 clbody->oa.o_valid & OBD_MD_FLFID ?
2108 clbody->oa.o_parent_seq : 0ULL,
2109 clbody->oa.o_valid & OBD_MD_FLFID ?
2110 clbody->oa.o_parent_oid : 0,
2111 clbody->oa.o_valid & OBD_MD_FLFID ?
2112 clbody->oa.o_parent_ver : 0,
2113 POSTID(&body->oa.o_oi),
2114 aa->aa_ppga[0]->off,
2115 aa->aa_ppga[page_count-1]->off +
2116 aa->aa_ppga[page_count-1]->count - 1,
2117 client_cksum, client_cksum2,
2118 server_cksum, cksum_type);
2120 aa->aa_oa->o_cksum = client_cksum;
2124 CDEBUG(D_PAGE, "checksum %x confirmed\n", client_cksum);
2127 } else if (unlikely(client_cksum)) {
2128 static int cksum_missed;
2131 if ((cksum_missed & (-cksum_missed)) == cksum_missed)
2132 CERROR("%s: checksum %u requested from %s but not sent\n",
2133 obd_name, cksum_missed,
2134 libcfs_nid2str(peer->nid));
2139 inode = page2inode(aa->aa_ppga[0]->pg);
2140 if (inode == NULL) {
2141 /* Try to get reference to inode from cl_page if we are
2142 * dealing with direct IO, as handled pages are not
2143 * actual page cache pages.
2145 struct osc_async_page *oap = brw_page2oap(aa->aa_ppga[0]);
2147 inode = oap2cl_page(oap)->cp_inode;
2149 blockbits = inode->i_blkbits;
2150 blocksize = 1 << blockbits;
2153 if (inode && IS_ENCRYPTED(inode)) {
2156 if (!llcrypt_has_encryption_key(inode)) {
2157 CDEBUG(D_SEC, "no enc key for ino %lu\n", inode->i_ino);
2160 for (idx = 0; idx < aa->aa_page_count; idx++) {
2161 struct brw_page *pg = aa->aa_ppga[idx];
2162 unsigned int offs = 0;
2164 while (offs < PAGE_SIZE) {
2165 /* do not decrypt if page is all 0s */
2166 if (memchr_inv(page_address(pg->pg) + offs, 0,
2167 LUSTRE_ENCRYPTION_UNIT_SIZE) == NULL) {
2168 /* if page is empty forward info to
2169 * upper layers (ll_io_zero_page) by
2170 * clearing PagePrivate2
2173 ClearPagePrivate2(pg->pg);
2178 /* This is direct IO case. Directly call
2179 * decrypt function that takes inode as
2180 * input parameter. Page does not need
2184 ((u64)(pg->off >> PAGE_SHIFT) <<
2185 (PAGE_SHIFT - blockbits)) +
2186 (offs >> blockbits);
2191 LUSTRE_ENCRYPTION_UNIT_SIZE;
2192 i += blocksize, lblk_num++) {
2194 llcrypt_decrypt_block_inplace(
2202 rc = llcrypt_decrypt_pagecache_blocks(
2204 LUSTRE_ENCRYPTION_UNIT_SIZE,
2210 offs += LUSTRE_ENCRYPTION_UNIT_SIZE;
2217 lustre_get_wire_obdo(&req->rq_import->imp_connect_data,
2218 aa->aa_oa, &body->oa);
2223 static int osc_brw_redo_request(struct ptlrpc_request *request,
2224 struct osc_brw_async_args *aa, int rc)
2226 struct ptlrpc_request *new_req;
2227 struct osc_brw_async_args *new_aa;
2228 struct osc_async_page *oap;
2231 /* The below message is checked in replay-ost-single.sh test_8ae*/
2232 DEBUG_REQ(rc == -EINPROGRESS ? D_RPCTRACE : D_ERROR, request,
2233 "redo for recoverable error %d", rc);
2235 rc = osc_brw_prep_request(lustre_msg_get_opc(request->rq_reqmsg) ==
2236 OST_WRITE ? OBD_BRW_WRITE : OBD_BRW_READ,
2237 aa->aa_cli, aa->aa_oa, aa->aa_page_count,
2238 aa->aa_ppga, &new_req, 1);
2242 list_for_each_entry(oap, &aa->aa_oaps, oap_rpc_item) {
2243 if (oap->oap_request != NULL) {
2244 LASSERTF(request == oap->oap_request,
2245 "request %p != oap_request %p\n",
2246 request, oap->oap_request);
2250 * New request takes over pga and oaps from old request.
2251 * Note that copying a list_head doesn't work, need to move it...
2254 new_req->rq_interpret_reply = request->rq_interpret_reply;
2255 new_req->rq_async_args = request->rq_async_args;
2256 new_req->rq_commit_cb = request->rq_commit_cb;
2257 /* cap resend delay to the current request timeout, this is similar to
2258 * what ptlrpc does (see after_reply()) */
2259 if (aa->aa_resends > new_req->rq_timeout)
2260 new_req->rq_sent = ktime_get_real_seconds() + new_req->rq_timeout;
2262 new_req->rq_sent = ktime_get_real_seconds() + aa->aa_resends;
2263 new_req->rq_generation_set = 1;
2264 new_req->rq_import_generation = request->rq_import_generation;
2266 new_aa = ptlrpc_req_async_args(new_aa, new_req);
2268 INIT_LIST_HEAD(&new_aa->aa_oaps);
2269 list_splice_init(&aa->aa_oaps, &new_aa->aa_oaps);
2270 INIT_LIST_HEAD(&new_aa->aa_exts);
2271 list_splice_init(&aa->aa_exts, &new_aa->aa_exts);
2272 new_aa->aa_resends = aa->aa_resends;
2274 list_for_each_entry(oap, &new_aa->aa_oaps, oap_rpc_item) {
2275 if (oap->oap_request) {
2276 ptlrpc_req_finished(oap->oap_request);
2277 oap->oap_request = ptlrpc_request_addref(new_req);
2281 /* XXX: This code will run into problem if we're going to support
2282 * to add a series of BRW RPCs into a self-defined ptlrpc_request_set
2283 * and wait for all of them to be finished. We should inherit request
2284 * set from old request. */
2285 ptlrpcd_add_req(new_req);
2287 DEBUG_REQ(D_INFO, new_req, "new request");
2292 * ugh, we want disk allocation on the target to happen in offset order. we'll
2293 * follow sedgewicks advice and stick to the dead simple shellsort -- it'll do
2294 * fine for our small page arrays and doesn't require allocation. its an
2295 * insertion sort that swaps elements that are strides apart, shrinking the
2296 * stride down until its '1' and the array is sorted.
2298 static void sort_brw_pages(struct brw_page **array, int num)
2301 struct brw_page *tmp;
2305 for (stride = 1; stride < num ; stride = (stride * 3) + 1)
2310 for (i = stride ; i < num ; i++) {
2313 while (j >= stride && array[j - stride]->off > tmp->off) {
2314 array[j] = array[j - stride];
2319 } while (stride > 1);
2322 static void osc_release_ppga(struct brw_page **ppga, size_t count)
2324 LASSERT(ppga != NULL);
2325 OBD_FREE_PTR_ARRAY_LARGE(ppga, count);
2328 static int brw_interpret(const struct lu_env *env,
2329 struct ptlrpc_request *req, void *args, int rc)
2331 struct osc_brw_async_args *aa = args;
2332 struct osc_extent *ext;
2333 struct osc_extent *tmp;
2334 struct client_obd *cli = aa->aa_cli;
2335 unsigned long transferred = 0;
2339 rc = osc_brw_fini_request(req, rc);
2340 CDEBUG(D_INODE, "request %p aa %p rc %d\n", req, aa, rc);
2342 /* restore clear text pages */
2343 osc_release_bounce_pages(aa->aa_ppga, aa->aa_page_count);
2346 * When server returns -EINPROGRESS, client should always retry
2347 * regardless of the number of times the bulk was resent already.
2349 if (osc_recoverable_error(rc) && !req->rq_no_delay) {
2350 if (req->rq_import_generation !=
2351 req->rq_import->imp_generation) {
2352 CDEBUG(D_HA, "%s: resend cross eviction for object: "
2353 ""DOSTID", rc = %d.\n",
2354 req->rq_import->imp_obd->obd_name,
2355 POSTID(&aa->aa_oa->o_oi), rc);
2356 } else if (rc == -EINPROGRESS ||
2357 client_should_resend(aa->aa_resends, aa->aa_cli)) {
2358 rc = osc_brw_redo_request(req, aa, rc);
2360 CERROR("%s: too many resent retries for object: "
2361 "%llu:%llu, rc = %d.\n",
2362 req->rq_import->imp_obd->obd_name,
2363 POSTID(&aa->aa_oa->o_oi), rc);
2368 else if (rc == -EAGAIN || rc == -EINPROGRESS)
2373 struct obdo *oa = aa->aa_oa;
2374 struct cl_attr *attr = &osc_env_info(env)->oti_attr;
2375 unsigned long valid = 0;
2376 struct cl_object *obj;
2377 struct osc_async_page *last;
2379 last = brw_page2oap(aa->aa_ppga[aa->aa_page_count - 1]);
2380 obj = osc2cl(last->oap_obj);
2382 cl_object_attr_lock(obj);
2383 if (oa->o_valid & OBD_MD_FLBLOCKS) {
2384 attr->cat_blocks = oa->o_blocks;
2385 valid |= CAT_BLOCKS;
2387 if (oa->o_valid & OBD_MD_FLMTIME) {
2388 attr->cat_mtime = oa->o_mtime;
2391 if (oa->o_valid & OBD_MD_FLATIME) {
2392 attr->cat_atime = oa->o_atime;
2395 if (oa->o_valid & OBD_MD_FLCTIME) {
2396 attr->cat_ctime = oa->o_ctime;
2400 if (lustre_msg_get_opc(req->rq_reqmsg) == OST_WRITE) {
2401 struct lov_oinfo *loi = cl2osc(obj)->oo_oinfo;
2402 loff_t last_off = last->oap_count + last->oap_obj_off +
2405 /* Change file size if this is an out of quota or
2406 * direct IO write and it extends the file size */
2407 if (loi->loi_lvb.lvb_size < last_off) {
2408 attr->cat_size = last_off;
2411 /* Extend KMS if it's not a lockless write */
2412 if (loi->loi_kms < last_off &&
2413 oap2osc_page(last)->ops_srvlock == 0) {
2414 attr->cat_kms = last_off;
2420 cl_object_attr_update(env, obj, attr, valid);
2421 cl_object_attr_unlock(obj);
2423 OBD_SLAB_FREE_PTR(aa->aa_oa, osc_obdo_kmem);
2426 if (lustre_msg_get_opc(req->rq_reqmsg) == OST_WRITE && rc == 0)
2427 osc_inc_unstable_pages(req);
2429 list_for_each_entry_safe(ext, tmp, &aa->aa_exts, oe_link) {
2430 list_del_init(&ext->oe_link);
2431 osc_extent_finish(env, ext, 1,
2432 rc && req->rq_no_delay ? -EAGAIN : rc);
2434 LASSERT(list_empty(&aa->aa_exts));
2435 LASSERT(list_empty(&aa->aa_oaps));
2437 transferred = (req->rq_bulk == NULL ? /* short io */
2438 aa->aa_requested_nob :
2439 req->rq_bulk->bd_nob_transferred);
2441 osc_release_ppga(aa->aa_ppga, aa->aa_page_count);
2442 ptlrpc_lprocfs_brw(req, transferred);
2444 spin_lock(&cli->cl_loi_list_lock);
2445 /* We need to decrement before osc_ap_completion->osc_wake_cache_waiters
2446 * is called so we know whether to go to sync BRWs or wait for more
2447 * RPCs to complete */
2448 if (lustre_msg_get_opc(req->rq_reqmsg) == OST_WRITE)
2449 cli->cl_w_in_flight--;
2451 cli->cl_r_in_flight--;
2452 osc_wake_cache_waiters(cli);
2453 spin_unlock(&cli->cl_loi_list_lock);
2455 osc_io_unplug(env, cli, NULL);
2459 static void brw_commit(struct ptlrpc_request *req)
2461 /* If osc_inc_unstable_pages (via osc_extent_finish) races with
2462 * this called via the rq_commit_cb, I need to ensure
2463 * osc_dec_unstable_pages is still called. Otherwise unstable
2464 * pages may be leaked. */
2465 spin_lock(&req->rq_lock);
2466 if (likely(req->rq_unstable)) {
2467 req->rq_unstable = 0;
2468 spin_unlock(&req->rq_lock);
2470 osc_dec_unstable_pages(req);
2472 req->rq_committed = 1;
2473 spin_unlock(&req->rq_lock);
2478 * Build an RPC by the list of extent @ext_list. The caller must ensure
2479 * that the total pages in this list are NOT over max pages per RPC.
2480 * Extents in the list must be in OES_RPC state.
2482 int osc_build_rpc(const struct lu_env *env, struct client_obd *cli,
2483 struct list_head *ext_list, int cmd)
2485 struct ptlrpc_request *req = NULL;
2486 struct osc_extent *ext;
2487 struct brw_page **pga = NULL;
2488 struct osc_brw_async_args *aa = NULL;
2489 struct obdo *oa = NULL;
2490 struct osc_async_page *oap;
2491 struct osc_object *obj = NULL;
2492 struct cl_req_attr *crattr = NULL;
2493 loff_t starting_offset = OBD_OBJECT_EOF;
2494 loff_t ending_offset = 0;
2495 /* '1' for consistency with code that checks !mpflag to restore */
2499 bool soft_sync = false;
2500 bool ndelay = false;
2504 __u32 layout_version = 0;
2505 LIST_HEAD(rpc_list);
2506 struct ost_body *body;
2508 LASSERT(!list_empty(ext_list));
2510 /* add pages into rpc_list to build BRW rpc */
2511 list_for_each_entry(ext, ext_list, oe_link) {
2512 LASSERT(ext->oe_state == OES_RPC);
2513 mem_tight |= ext->oe_memalloc;
2514 grant += ext->oe_grants;
2515 page_count += ext->oe_nr_pages;
2516 layout_version = max(layout_version, ext->oe_layout_version);
2521 soft_sync = osc_over_unstable_soft_limit(cli);
2523 mpflag = memalloc_noreclaim_save();
2525 OBD_ALLOC_PTR_ARRAY_LARGE(pga, page_count);
2527 GOTO(out, rc = -ENOMEM);
2529 OBD_SLAB_ALLOC_PTR_GFP(oa, osc_obdo_kmem, GFP_NOFS);
2531 GOTO(out, rc = -ENOMEM);
2534 list_for_each_entry(ext, ext_list, oe_link) {
2535 list_for_each_entry(oap, &ext->oe_pages, oap_pending_item) {
2537 oap->oap_brw_flags |= OBD_BRW_MEMALLOC;
2539 oap->oap_brw_flags |= OBD_BRW_SOFT_SYNC;
2540 pga[i] = &oap->oap_brw_page;
2541 pga[i]->off = oap->oap_obj_off + oap->oap_page_off;
2544 list_add_tail(&oap->oap_rpc_item, &rpc_list);
2545 if (starting_offset == OBD_OBJECT_EOF ||
2546 starting_offset > oap->oap_obj_off)
2547 starting_offset = oap->oap_obj_off;
2549 LASSERT(oap->oap_page_off == 0);
2550 if (ending_offset < oap->oap_obj_off + oap->oap_count)
2551 ending_offset = oap->oap_obj_off +
2554 LASSERT(oap->oap_page_off + oap->oap_count ==
2561 /* first page in the list */
2562 oap = list_first_entry(&rpc_list, typeof(*oap), oap_rpc_item);
2564 crattr = &osc_env_info(env)->oti_req_attr;
2565 memset(crattr, 0, sizeof(*crattr));
2566 crattr->cra_type = (cmd & OBD_BRW_WRITE) ? CRT_WRITE : CRT_READ;
2567 crattr->cra_flags = ~0ULL;
2568 crattr->cra_page = oap2cl_page(oap);
2569 crattr->cra_oa = oa;
2570 cl_req_attr_set(env, osc2cl(obj), crattr);
2572 if (cmd == OBD_BRW_WRITE) {
2573 oa->o_grant_used = grant;
2574 if (layout_version > 0) {
2575 CDEBUG(D_LAYOUT, DFID": write with layout version %u\n",
2576 PFID(&oa->o_oi.oi_fid), layout_version);
2578 oa->o_layout_version = layout_version;
2579 oa->o_valid |= OBD_MD_LAYOUT_VERSION;
2583 sort_brw_pages(pga, page_count);
2584 rc = osc_brw_prep_request(cmd, cli, oa, page_count, pga, &req, 0);
2586 CERROR("prep_req failed: %d\n", rc);
2590 req->rq_commit_cb = brw_commit;
2591 req->rq_interpret_reply = brw_interpret;
2592 req->rq_memalloc = mem_tight != 0;
2593 oap->oap_request = ptlrpc_request_addref(req);
2595 req->rq_no_resend = req->rq_no_delay = 1;
2596 /* probably set a shorter timeout value.
2597 * to handle ETIMEDOUT in brw_interpret() correctly. */
2598 /* lustre_msg_set_timeout(req, req->rq_timeout / 2); */
2601 /* Need to update the timestamps after the request is built in case
2602 * we race with setattr (locally or in queue at OST). If OST gets
2603 * later setattr before earlier BRW (as determined by the request xid),
2604 * the OST will not use BRW timestamps. Sadly, there is no obvious
2605 * way to do this in a single call. bug 10150 */
2606 body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
2607 crattr->cra_oa = &body->oa;
2608 crattr->cra_flags = OBD_MD_FLMTIME | OBD_MD_FLCTIME | OBD_MD_FLATIME;
2609 cl_req_attr_set(env, osc2cl(obj), crattr);
2610 lustre_msg_set_jobid(req->rq_reqmsg, crattr->cra_jobid);
2612 aa = ptlrpc_req_async_args(aa, req);
2613 INIT_LIST_HEAD(&aa->aa_oaps);
2614 list_splice_init(&rpc_list, &aa->aa_oaps);
2615 INIT_LIST_HEAD(&aa->aa_exts);
2616 list_splice_init(ext_list, &aa->aa_exts);
2618 spin_lock(&cli->cl_loi_list_lock);
2619 starting_offset >>= PAGE_SHIFT;
2620 if (cmd == OBD_BRW_READ) {
2621 cli->cl_r_in_flight++;
2622 lprocfs_oh_tally_log2(&cli->cl_read_page_hist, page_count);
2623 lprocfs_oh_tally(&cli->cl_read_rpc_hist, cli->cl_r_in_flight);
2624 lprocfs_oh_tally_log2(&cli->cl_read_offset_hist,
2625 starting_offset + 1);
2627 cli->cl_w_in_flight++;
2628 lprocfs_oh_tally_log2(&cli->cl_write_page_hist, page_count);
2629 lprocfs_oh_tally(&cli->cl_write_rpc_hist, cli->cl_w_in_flight);
2630 lprocfs_oh_tally_log2(&cli->cl_write_offset_hist,
2631 starting_offset + 1);
2633 spin_unlock(&cli->cl_loi_list_lock);
2635 DEBUG_REQ(D_INODE, req, "%d pages, aa %p, now %ur/%uw in flight",
2636 page_count, aa, cli->cl_r_in_flight,
2637 cli->cl_w_in_flight);
2638 OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_DELAY_IO, cfs_fail_val);
2640 ptlrpcd_add_req(req);
2646 memalloc_noreclaim_restore(mpflag);
2649 LASSERT(req == NULL);
2652 OBD_SLAB_FREE_PTR(oa, osc_obdo_kmem);
2654 osc_release_bounce_pages(pga, page_count);
2655 osc_release_ppga(pga, page_count);
2657 /* this should happen rarely and is pretty bad, it makes the
2658 * pending list not follow the dirty order
2660 while ((ext = list_first_entry_or_null(ext_list,
2662 oe_link)) != NULL) {
2663 list_del_init(&ext->oe_link);
2664 osc_extent_finish(env, ext, 0, rc);
2670 /* This is to refresh our lock in face of no RPCs. */
2671 void osc_send_empty_rpc(struct osc_object *osc, pgoff_t start)
2673 struct ptlrpc_request *req;
2675 struct brw_page bpg = { .off = start, .count = 1};
2676 struct brw_page *pga = &bpg;
2679 memset(&oa, 0, sizeof(oa));
2680 oa.o_oi = osc->oo_oinfo->loi_oi;
2681 oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLFLAGS;
2682 /* For updated servers - don't do a read */
2683 oa.o_flags = OBD_FL_NORPC;
2685 rc = osc_brw_prep_request(OBD_BRW_READ, osc_cli(osc), &oa, 1, &pga,
2688 /* If we succeeded we ship it off, if not there's no point in doing
2689 * anything. Also no resends.
2690 * No interpret callback, no commit callback.
2693 req->rq_no_resend = 1;
2694 ptlrpcd_add_req(req);
2698 static int osc_set_lock_data(struct ldlm_lock *lock, void *data)
2702 LASSERT(lock != NULL);
2704 lock_res_and_lock(lock);
2706 if (lock->l_ast_data == NULL)
2707 lock->l_ast_data = data;
2708 if (lock->l_ast_data == data)
2711 unlock_res_and_lock(lock);
2716 int osc_enqueue_fini(struct ptlrpc_request *req, osc_enqueue_upcall_f upcall,
2717 void *cookie, struct lustre_handle *lockh,
2718 enum ldlm_mode mode, __u64 *flags, bool speculative,
2721 bool intent = *flags & LDLM_FL_HAS_INTENT;
2725 /* The request was created before ldlm_cli_enqueue call. */
2726 if (intent && errcode == ELDLM_LOCK_ABORTED) {
2727 struct ldlm_reply *rep;
2729 rep = req_capsule_server_get(&req->rq_pill, &RMF_DLM_REP);
2730 LASSERT(rep != NULL);
2732 rep->lock_policy_res1 =
2733 ptlrpc_status_ntoh(rep->lock_policy_res1);
2734 if (rep->lock_policy_res1)
2735 errcode = rep->lock_policy_res1;
2737 *flags |= LDLM_FL_LVB_READY;
2738 } else if (errcode == ELDLM_OK) {
2739 *flags |= LDLM_FL_LVB_READY;
2742 /* Call the update callback. */
2743 rc = (*upcall)(cookie, lockh, errcode);
2745 /* release the reference taken in ldlm_cli_enqueue() */
2746 if (errcode == ELDLM_LOCK_MATCHED)
2748 if (errcode == ELDLM_OK && lustre_handle_is_used(lockh))
2749 ldlm_lock_decref(lockh, mode);
2754 int osc_enqueue_interpret(const struct lu_env *env, struct ptlrpc_request *req,
2757 struct osc_enqueue_args *aa = args;
2758 struct ldlm_lock *lock;
2759 struct lustre_handle *lockh = &aa->oa_lockh;
2760 enum ldlm_mode mode = aa->oa_mode;
2761 struct ost_lvb *lvb = aa->oa_lvb;
2762 __u32 lvb_len = sizeof(*lvb);
2764 struct ldlm_enqueue_info einfo = {
2765 .ei_type = aa->oa_type,
2771 /* ldlm_cli_enqueue is holding a reference on the lock, so it must
2773 lock = ldlm_handle2lock(lockh);
2774 LASSERTF(lock != NULL,
2775 "lockh %#llx, req %p, aa %p - client evicted?\n",
2776 lockh->cookie, req, aa);
2778 /* Take an additional reference so that a blocking AST that
2779 * ldlm_cli_enqueue_fini() might post for a failed lock, is guaranteed
2780 * to arrive after an upcall has been executed by
2781 * osc_enqueue_fini(). */
2782 ldlm_lock_addref(lockh, mode);
2784 /* Let cl_lock_state_wait fail with -ERESTARTSYS to unuse sublocks. */
2785 OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_ENQUEUE_HANG, 2);
2787 /* Let CP AST to grant the lock first. */
2788 OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_ENQ_RACE, 1);
2790 if (aa->oa_speculative) {
2791 LASSERT(aa->oa_lvb == NULL);
2792 LASSERT(aa->oa_flags == NULL);
2793 aa->oa_flags = &flags;
2796 /* Complete obtaining the lock procedure. */
2797 rc = ldlm_cli_enqueue_fini(aa->oa_exp, req, &einfo, 1, aa->oa_flags,
2798 lvb, lvb_len, lockh, rc);
2799 /* Complete osc stuff. */
2800 rc = osc_enqueue_fini(req, aa->oa_upcall, aa->oa_cookie, lockh, mode,
2801 aa->oa_flags, aa->oa_speculative, rc);
2803 OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_CP_CANCEL_RACE, 10);
2805 ldlm_lock_decref(lockh, mode);
2806 LDLM_LOCK_PUT(lock);
2810 /* When enqueuing asynchronously, locks are not ordered, we can obtain a lock
2811 * from the 2nd OSC before a lock from the 1st one. This does not deadlock with
2812 * other synchronous requests, however keeping some locks and trying to obtain
2813 * others may take a considerable amount of time in a case of ost failure; and
2814 * when other sync requests do not get released lock from a client, the client
2815 * is evicted from the cluster -- such scenarious make the life difficult, so
2816 * release locks just after they are obtained. */
2817 int osc_enqueue_base(struct obd_export *exp, struct ldlm_res_id *res_id,
2818 __u64 *flags, union ldlm_policy_data *policy,
2819 struct ost_lvb *lvb, osc_enqueue_upcall_f upcall,
2820 void *cookie, struct ldlm_enqueue_info *einfo,
2821 struct ptlrpc_request_set *rqset, int async,
2824 struct obd_device *obd = exp->exp_obd;
2825 struct lustre_handle lockh = { 0 };
2826 struct ptlrpc_request *req = NULL;
2827 int intent = *flags & LDLM_FL_HAS_INTENT;
2828 __u64 match_flags = *flags;
2829 enum ldlm_mode mode;
2833 /* Filesystem lock extents are extended to page boundaries so that
2834 * dealing with the page cache is a little smoother. */
2835 policy->l_extent.start -= policy->l_extent.start & ~PAGE_MASK;
2836 policy->l_extent.end |= ~PAGE_MASK;
2838 /* Next, search for already existing extent locks that will cover us */
2839 /* If we're trying to read, we also search for an existing PW lock. The
2840 * VFS and page cache already protect us locally, so lots of readers/
2841 * writers can share a single PW lock.
2843 * There are problems with conversion deadlocks, so instead of
2844 * converting a read lock to a write lock, we'll just enqueue a new
2847 * At some point we should cancel the read lock instead of making them
2848 * send us a blocking callback, but there are problems with canceling
2849 * locks out from other users right now, too. */
2850 mode = einfo->ei_mode;
2851 if (einfo->ei_mode == LCK_PR)
2853 /* Normal lock requests must wait for the LVB to be ready before
2854 * matching a lock; speculative lock requests do not need to,
2855 * because they will not actually use the lock. */
2857 match_flags |= LDLM_FL_LVB_READY;
2859 match_flags |= LDLM_FL_BLOCK_GRANTED;
2860 mode = ldlm_lock_match(obd->obd_namespace, match_flags, res_id,
2861 einfo->ei_type, policy, mode, &lockh);
2863 struct ldlm_lock *matched;
2865 if (*flags & LDLM_FL_TEST_LOCK)
2868 matched = ldlm_handle2lock(&lockh);
2870 /* This DLM lock request is speculative, and does not
2871 * have an associated IO request. Therefore if there
2872 * is already a DLM lock, it wll just inform the
2873 * caller to cancel the request for this stripe.*/
2874 lock_res_and_lock(matched);
2875 if (ldlm_extent_equal(&policy->l_extent,
2876 &matched->l_policy_data.l_extent))
2880 unlock_res_and_lock(matched);
2882 ldlm_lock_decref(&lockh, mode);
2883 LDLM_LOCK_PUT(matched);
2885 } else if (osc_set_lock_data(matched, einfo->ei_cbdata)) {
2886 *flags |= LDLM_FL_LVB_READY;
2888 /* We already have a lock, and it's referenced. */
2889 (*upcall)(cookie, &lockh, ELDLM_LOCK_MATCHED);
2891 ldlm_lock_decref(&lockh, mode);
2892 LDLM_LOCK_PUT(matched);
2895 ldlm_lock_decref(&lockh, mode);
2896 LDLM_LOCK_PUT(matched);
2900 if (*flags & (LDLM_FL_TEST_LOCK | LDLM_FL_MATCH_LOCK))
2903 /* users of osc_enqueue() can pass this flag for ldlm_lock_match() */
2904 *flags &= ~LDLM_FL_BLOCK_GRANTED;
2906 rc = ldlm_cli_enqueue(exp, &req, einfo, res_id, policy, flags, lvb,
2907 sizeof(*lvb), LVB_T_OST, &lockh, async);
2910 struct osc_enqueue_args *aa;
2911 aa = ptlrpc_req_async_args(aa, req);
2913 aa->oa_mode = einfo->ei_mode;
2914 aa->oa_type = einfo->ei_type;
2915 lustre_handle_copy(&aa->oa_lockh, &lockh);
2916 aa->oa_upcall = upcall;
2917 aa->oa_cookie = cookie;
2918 aa->oa_speculative = speculative;
2920 aa->oa_flags = flags;
2923 /* speculative locks are essentially to enqueue
2924 * a DLM lock in advance, so we don't care
2925 * about the result of the enqueue. */
2927 aa->oa_flags = NULL;
2930 req->rq_interpret_reply = osc_enqueue_interpret;
2931 ptlrpc_set_add_req(rqset, req);
2936 rc = osc_enqueue_fini(req, upcall, cookie, &lockh, einfo->ei_mode,
2937 flags, speculative, rc);
2942 int osc_match_base(const struct lu_env *env, struct obd_export *exp,
2943 struct ldlm_res_id *res_id, enum ldlm_type type,
2944 union ldlm_policy_data *policy, enum ldlm_mode mode,
2945 __u64 *flags, struct osc_object *obj,
2946 struct lustre_handle *lockh, enum ldlm_match_flags match_flags)
2948 struct obd_device *obd = exp->exp_obd;
2949 __u64 lflags = *flags;
2953 if (OBD_FAIL_CHECK(OBD_FAIL_OSC_MATCH))
2956 /* Filesystem lock extents are extended to page boundaries so that
2957 * dealing with the page cache is a little smoother */
2958 policy->l_extent.start -= policy->l_extent.start & ~PAGE_MASK;
2959 policy->l_extent.end |= ~PAGE_MASK;
2961 /* Next, search for already existing extent locks that will cover us */
2962 rc = ldlm_lock_match_with_skip(obd->obd_namespace, lflags, 0,
2963 res_id, type, policy, mode, lockh,
2965 if (rc == 0 || lflags & LDLM_FL_TEST_LOCK)
2969 struct ldlm_lock *lock = ldlm_handle2lock(lockh);
2971 LASSERT(lock != NULL);
2972 if (osc_set_lock_data(lock, obj)) {
2973 lock_res_and_lock(lock);
2974 if (!ldlm_is_lvb_cached(lock)) {
2975 LASSERT(lock->l_ast_data == obj);
2976 osc_lock_lvb_update(env, obj, lock, NULL);
2977 ldlm_set_lvb_cached(lock);
2979 unlock_res_and_lock(lock);
2981 ldlm_lock_decref(lockh, rc);
2984 LDLM_LOCK_PUT(lock);
2989 static int osc_statfs_interpret(const struct lu_env *env,
2990 struct ptlrpc_request *req, void *args, int rc)
2992 struct osc_async_args *aa = args;
2993 struct obd_statfs *msfs;
2998 * The request has in fact never been sent due to issues at
2999 * a higher level (LOV). Exit immediately since the caller
3000 * is aware of the problem and takes care of the clean up.
3004 if ((rc == -ENOTCONN || rc == -EAGAIN) &&
3005 (aa->aa_oi->oi_flags & OBD_STATFS_NODELAY))
3011 msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
3013 GOTO(out, rc = -EPROTO);
3015 *aa->aa_oi->oi_osfs = *msfs;
3017 rc = aa->aa_oi->oi_cb_up(aa->aa_oi, rc);
3022 static int osc_statfs_async(struct obd_export *exp,
3023 struct obd_info *oinfo, time64_t max_age,
3024 struct ptlrpc_request_set *rqset)
3026 struct obd_device *obd = class_exp2obd(exp);
3027 struct ptlrpc_request *req;
3028 struct osc_async_args *aa;
3032 if (obd->obd_osfs_age >= max_age) {
3034 "%s: use %p cache blocks %llu/%llu objects %llu/%llu\n",
3035 obd->obd_name, &obd->obd_osfs,
3036 obd->obd_osfs.os_bavail, obd->obd_osfs.os_blocks,
3037 obd->obd_osfs.os_ffree, obd->obd_osfs.os_files);
3038 spin_lock(&obd->obd_osfs_lock);
3039 memcpy(oinfo->oi_osfs, &obd->obd_osfs, sizeof(*oinfo->oi_osfs));
3040 spin_unlock(&obd->obd_osfs_lock);
3041 oinfo->oi_flags |= OBD_STATFS_FROM_CACHE;
3042 if (oinfo->oi_cb_up)
3043 oinfo->oi_cb_up(oinfo, 0);
3048 /* We could possibly pass max_age in the request (as an absolute
3049 * timestamp or a "seconds.usec ago") so the target can avoid doing
3050 * extra calls into the filesystem if that isn't necessary (e.g.
3051 * during mount that would help a bit). Having relative timestamps
3052 * is not so great if request processing is slow, while absolute
3053 * timestamps are not ideal because they need time synchronization. */
3054 req = ptlrpc_request_alloc(obd->u.cli.cl_import, &RQF_OST_STATFS);
3058 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
3060 ptlrpc_request_free(req);
3063 ptlrpc_request_set_replen(req);
3064 req->rq_request_portal = OST_CREATE_PORTAL;
3065 ptlrpc_at_set_req_timeout(req);
3067 if (oinfo->oi_flags & OBD_STATFS_NODELAY) {
3068 /* procfs requests not want stat in wait for avoid deadlock */
3069 req->rq_no_resend = 1;
3070 req->rq_no_delay = 1;
3073 req->rq_interpret_reply = osc_statfs_interpret;
3074 aa = ptlrpc_req_async_args(aa, req);
3077 ptlrpc_set_add_req(rqset, req);
3081 static int osc_statfs(const struct lu_env *env, struct obd_export *exp,
3082 struct obd_statfs *osfs, time64_t max_age, __u32 flags)
3084 struct obd_device *obd = class_exp2obd(exp);
3085 struct obd_statfs *msfs;
3086 struct ptlrpc_request *req;
3087 struct obd_import *imp, *imp0;
3091 /*Since the request might also come from lprocfs, so we need
3092 *sync this with client_disconnect_export Bug15684
3094 with_imp_locked(obd, imp0, rc)
3095 imp = class_import_get(imp0);
3099 /* We could possibly pass max_age in the request (as an absolute
3100 * timestamp or a "seconds.usec ago") so the target can avoid doing
3101 * extra calls into the filesystem if that isn't necessary (e.g.
3102 * during mount that would help a bit). Having relative timestamps
3103 * is not so great if request processing is slow, while absolute
3104 * timestamps are not ideal because they need time synchronization. */
3105 req = ptlrpc_request_alloc(imp, &RQF_OST_STATFS);
3107 class_import_put(imp);
3112 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_STATFS);
3114 ptlrpc_request_free(req);
3117 ptlrpc_request_set_replen(req);
3118 req->rq_request_portal = OST_CREATE_PORTAL;
3119 ptlrpc_at_set_req_timeout(req);
3121 if (flags & OBD_STATFS_NODELAY) {
3122 /* procfs requests not want stat in wait for avoid deadlock */
3123 req->rq_no_resend = 1;
3124 req->rq_no_delay = 1;
3127 rc = ptlrpc_queue_wait(req);
3131 msfs = req_capsule_server_get(&req->rq_pill, &RMF_OBD_STATFS);
3133 GOTO(out, rc = -EPROTO);
3139 ptlrpc_req_finished(req);
3143 static int osc_iocontrol(unsigned int cmd, struct obd_export *exp, int len,
3144 void *karg, void __user *uarg)
3146 struct obd_device *obd = exp->exp_obd;
3147 struct obd_ioctl_data *data = karg;
3151 if (!try_module_get(THIS_MODULE)) {
3152 CERROR("%s: cannot get module '%s'\n", obd->obd_name,
3153 module_name(THIS_MODULE));
3157 case OBD_IOC_CLIENT_RECOVER:
3158 rc = ptlrpc_recover_import(obd->u.cli.cl_import,
3159 data->ioc_inlbuf1, 0);
3163 case IOC_OSC_SET_ACTIVE:
3164 rc = ptlrpc_set_import_active(obd->u.cli.cl_import,
3169 CDEBUG(D_INODE, "%s: unrecognised ioctl %#x by %s: rc = %d\n",
3170 obd->obd_name, cmd, current->comm, rc);
3174 module_put(THIS_MODULE);
3178 int osc_set_info_async(const struct lu_env *env, struct obd_export *exp,
3179 u32 keylen, void *key, u32 vallen, void *val,
3180 struct ptlrpc_request_set *set)
3182 struct ptlrpc_request *req;
3183 struct obd_device *obd = exp->exp_obd;
3184 struct obd_import *imp = class_exp2cliimp(exp);
3189 OBD_FAIL_TIMEOUT(OBD_FAIL_OSC_SHUTDOWN, 10);
3191 if (KEY_IS(KEY_CHECKSUM)) {
3192 if (vallen != sizeof(int))
3194 exp->exp_obd->u.cli.cl_checksum = (*(int *)val) ? 1 : 0;
3198 if (KEY_IS(KEY_SPTLRPC_CONF)) {
3199 sptlrpc_conf_client_adapt(obd);
3203 if (KEY_IS(KEY_FLUSH_CTX)) {
3204 sptlrpc_import_flush_my_ctx(imp);
3208 if (KEY_IS(KEY_CACHE_LRU_SHRINK)) {
3209 struct client_obd *cli = &obd->u.cli;
3210 long nr = atomic_long_read(&cli->cl_lru_in_list) >> 1;
3211 long target = *(long *)val;
3213 nr = osc_lru_shrink(env, cli, min(nr, target), true);
3218 if (!set && !KEY_IS(KEY_GRANT_SHRINK))
3221 /* We pass all other commands directly to OST. Since nobody calls osc
3222 methods directly and everybody is supposed to go through LOV, we
3223 assume lov checked invalid values for us.
3224 The only recognised values so far are evict_by_nid and mds_conn.
3225 Even if something bad goes through, we'd get a -EINVAL from OST
3228 req = ptlrpc_request_alloc(imp, KEY_IS(KEY_GRANT_SHRINK) ?
3229 &RQF_OST_SET_GRANT_INFO :
3234 req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_KEY,
3235 RCL_CLIENT, keylen);
3236 if (!KEY_IS(KEY_GRANT_SHRINK))
3237 req_capsule_set_size(&req->rq_pill, &RMF_SETINFO_VAL,
3238 RCL_CLIENT, vallen);
3239 rc = ptlrpc_request_pack(req, LUSTRE_OST_VERSION, OST_SET_INFO);
3241 ptlrpc_request_free(req);
3245 tmp = req_capsule_client_get(&req->rq_pill, &RMF_SETINFO_KEY);
3246 memcpy(tmp, key, keylen);
3247 tmp = req_capsule_client_get(&req->rq_pill, KEY_IS(KEY_GRANT_SHRINK) ?
3250 memcpy(tmp, val, vallen);
3252 if (KEY_IS(KEY_GRANT_SHRINK)) {
3253 struct osc_grant_args *aa;
3256 aa = ptlrpc_req_async_args(aa, req);
3257 OBD_SLAB_ALLOC_PTR_GFP(oa, osc_obdo_kmem, GFP_NOFS);
3259 ptlrpc_req_finished(req);
3262 *oa = ((struct ost_body *)val)->oa;
3264 req->rq_interpret_reply = osc_shrink_grant_interpret;
3267 ptlrpc_request_set_replen(req);
3268 if (!KEY_IS(KEY_GRANT_SHRINK)) {
3269 LASSERT(set != NULL);
3270 ptlrpc_set_add_req(set, req);
3271 ptlrpc_check_set(NULL, set);
3273 ptlrpcd_add_req(req);
3278 EXPORT_SYMBOL(osc_set_info_async);
3280 int osc_reconnect(const struct lu_env *env, struct obd_export *exp,
3281 struct obd_device *obd, struct obd_uuid *cluuid,
3282 struct obd_connect_data *data, void *localdata)
3284 struct client_obd *cli = &obd->u.cli;
3286 if (data != NULL && (data->ocd_connect_flags & OBD_CONNECT_GRANT)) {
3290 spin_lock(&cli->cl_loi_list_lock);
3291 grant = cli->cl_avail_grant + cli->cl_reserved_grant;
3292 if (data->ocd_connect_flags & OBD_CONNECT_GRANT_PARAM) {
3293 /* restore ocd_grant_blkbits as client page bits */
3294 data->ocd_grant_blkbits = PAGE_SHIFT;
3295 grant += cli->cl_dirty_grant;
3297 grant += cli->cl_dirty_pages << PAGE_SHIFT;
3299 data->ocd_grant = grant ? : 2 * cli_brw_size(obd);
3300 lost_grant = cli->cl_lost_grant;
3301 cli->cl_lost_grant = 0;
3302 spin_unlock(&cli->cl_loi_list_lock);
3304 CDEBUG(D_RPCTRACE, "ocd_connect_flags: %#llx ocd_version: %d"
3305 " ocd_grant: %d, lost: %ld.\n", data->ocd_connect_flags,
3306 data->ocd_version, data->ocd_grant, lost_grant);
3311 EXPORT_SYMBOL(osc_reconnect);
3313 int osc_disconnect(struct obd_export *exp)
3315 struct obd_device *obd = class_exp2obd(exp);
3318 rc = client_disconnect_export(exp);
3320 * Initially we put del_shrink_grant before disconnect_export, but it
3321 * causes the following problem if setup (connect) and cleanup
3322 * (disconnect) are tangled together.
3323 * connect p1 disconnect p2
3324 * ptlrpc_connect_import
3325 * ............... class_manual_cleanup
3328 * ptlrpc_connect_interrupt
3330 * add this client to shrink list
3332 * Bang! grant shrink thread trigger the shrink. BUG18662
3334 osc_del_grant_list(&obd->u.cli);
3337 EXPORT_SYMBOL(osc_disconnect);
3339 int osc_ldlm_resource_invalidate(struct cfs_hash *hs, struct cfs_hash_bd *bd,
3340 struct hlist_node *hnode, void *arg)
3342 struct lu_env *env = arg;
3343 struct ldlm_resource *res = cfs_hash_object(hs, hnode);
3344 struct ldlm_lock *lock;
3345 struct osc_object *osc = NULL;
3349 list_for_each_entry(lock, &res->lr_granted, l_res_link) {
3350 if (lock->l_ast_data != NULL && osc == NULL) {
3351 osc = lock->l_ast_data;
3352 cl_object_get(osc2cl(osc));
3355 /* clear LDLM_FL_CLEANED flag to make sure it will be canceled
3356 * by the 2nd round of ldlm_namespace_clean() call in
3357 * osc_import_event(). */
3358 ldlm_clear_cleaned(lock);
3363 osc_object_invalidate(env, osc);
3364 cl_object_put(env, osc2cl(osc));
3369 EXPORT_SYMBOL(osc_ldlm_resource_invalidate);
3371 static int osc_import_event(struct obd_device *obd,
3372 struct obd_import *imp,
3373 enum obd_import_event event)
3375 struct client_obd *cli;
3379 LASSERT(imp->imp_obd == obd);
3382 case IMP_EVENT_DISCON: {
3384 spin_lock(&cli->cl_loi_list_lock);
3385 cli->cl_avail_grant = 0;
3386 cli->cl_lost_grant = 0;
3387 spin_unlock(&cli->cl_loi_list_lock);
3390 case IMP_EVENT_INACTIVE: {
3391 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_INACTIVE);
3394 case IMP_EVENT_INVALIDATE: {
3395 struct ldlm_namespace *ns = obd->obd_namespace;
3399 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
3401 env = cl_env_get(&refcheck);
3403 osc_io_unplug(env, &obd->u.cli, NULL);
3405 cfs_hash_for_each_nolock(ns->ns_rs_hash,
3406 osc_ldlm_resource_invalidate,
3408 cl_env_put(env, &refcheck);
3410 ldlm_namespace_cleanup(ns, LDLM_FL_LOCAL_ONLY);
3415 case IMP_EVENT_ACTIVE: {
3416 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVE);
3419 case IMP_EVENT_OCD: {
3420 struct obd_connect_data *ocd = &imp->imp_connect_data;
3422 if (ocd->ocd_connect_flags & OBD_CONNECT_GRANT)
3423 osc_init_grant(&obd->u.cli, ocd);
3426 if (ocd->ocd_connect_flags & OBD_CONNECT_REQPORTAL)
3427 imp->imp_client->cli_request_portal =OST_REQUEST_PORTAL;
3429 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_OCD);
3432 case IMP_EVENT_DEACTIVATE: {
3433 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_DEACTIVATE);
3436 case IMP_EVENT_ACTIVATE: {
3437 rc = obd_notify_observer(obd, obd, OBD_NOTIFY_ACTIVATE);
3441 CERROR("Unknown import event %d\n", event);
3448 * Determine whether the lock can be canceled before replaying the lock
3449 * during recovery, see bug16774 for detailed information.
3451 * \retval zero the lock can't be canceled
3452 * \retval other ok to cancel
3454 static int osc_cancel_weight(struct ldlm_lock *lock)
3457 * Cancel all unused and granted extent lock.
3459 if (lock->l_resource->lr_type == LDLM_EXTENT &&
3460 ldlm_is_granted(lock) &&
3461 osc_ldlm_weigh_ast(lock) == 0)
3467 static int brw_queue_work(const struct lu_env *env, void *data)
3469 struct client_obd *cli = data;
3471 CDEBUG(D_CACHE, "Run writeback work for client obd %p.\n", cli);
3473 osc_io_unplug(env, cli, NULL);
3477 int osc_setup_common(struct obd_device *obd, struct lustre_cfg *lcfg)
3479 struct client_obd *cli = &obd->u.cli;
3485 rc = ptlrpcd_addref();
3489 rc = client_obd_setup(obd, lcfg);
3491 GOTO(out_ptlrpcd, rc);
3494 handler = ptlrpcd_alloc_work(cli->cl_import, brw_queue_work, cli);
3495 if (IS_ERR(handler))
3496 GOTO(out_ptlrpcd_work, rc = PTR_ERR(handler));
3497 cli->cl_writeback_work = handler;
3499 handler = ptlrpcd_alloc_work(cli->cl_import, lru_queue_work, cli);
3500 if (IS_ERR(handler))
3501 GOTO(out_ptlrpcd_work, rc = PTR_ERR(handler));
3502 cli->cl_lru_work = handler;
3504 rc = osc_quota_setup(obd);
3506 GOTO(out_ptlrpcd_work, rc);
3508 cli->cl_grant_shrink_interval = GRANT_SHRINK_INTERVAL;
3509 osc_update_next_shrink(cli);
3514 if (cli->cl_writeback_work != NULL) {
3515 ptlrpcd_destroy_work(cli->cl_writeback_work);
3516 cli->cl_writeback_work = NULL;
3518 if (cli->cl_lru_work != NULL) {
3519 ptlrpcd_destroy_work(cli->cl_lru_work);
3520 cli->cl_lru_work = NULL;
3522 client_obd_cleanup(obd);
3527 EXPORT_SYMBOL(osc_setup_common);
3529 int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
3531 struct client_obd *cli = &obd->u.cli;
3539 rc = osc_setup_common(obd, lcfg);
3543 rc = osc_tunables_init(obd);
3548 * We try to control the total number of requests with a upper limit
3549 * osc_reqpool_maxreqcount. There might be some race which will cause
3550 * over-limit allocation, but it is fine.
3552 req_count = atomic_read(&osc_pool_req_count);
3553 if (req_count < osc_reqpool_maxreqcount) {
3554 adding = cli->cl_max_rpcs_in_flight + 2;
3555 if (req_count + adding > osc_reqpool_maxreqcount)
3556 adding = osc_reqpool_maxreqcount - req_count;
3558 added = ptlrpc_add_rqs_to_pool(osc_rq_pool, adding);
3559 atomic_add(added, &osc_pool_req_count);
3562 ns_register_cancel(obd->obd_namespace, osc_cancel_weight);
3564 spin_lock(&osc_shrink_lock);
3565 list_add_tail(&cli->cl_shrink_list, &osc_shrink_list);
3566 spin_unlock(&osc_shrink_lock);
3567 cli->cl_import->imp_idle_timeout = osc_idle_timeout;
3568 cli->cl_import->imp_idle_debug = D_HA;
3573 int osc_precleanup_common(struct obd_device *obd)
3575 struct client_obd *cli = &obd->u.cli;
3579 * for echo client, export may be on zombie list, wait for
3580 * zombie thread to cull it, because cli.cl_import will be
3581 * cleared in client_disconnect_export():
3582 * class_export_destroy() -> obd_cleanup() ->
3583 * echo_device_free() -> echo_client_cleanup() ->
3584 * obd_disconnect() -> osc_disconnect() ->
3585 * client_disconnect_export()
3587 obd_zombie_barrier();
3588 if (cli->cl_writeback_work) {
3589 ptlrpcd_destroy_work(cli->cl_writeback_work);
3590 cli->cl_writeback_work = NULL;
3593 if (cli->cl_lru_work) {
3594 ptlrpcd_destroy_work(cli->cl_lru_work);
3595 cli->cl_lru_work = NULL;
3598 obd_cleanup_client_import(obd);
3601 EXPORT_SYMBOL(osc_precleanup_common);
3603 static int osc_precleanup(struct obd_device *obd)
3607 osc_precleanup_common(obd);
3609 ptlrpc_lprocfs_unregister_obd(obd);
3613 int osc_cleanup_common(struct obd_device *obd)
3615 struct client_obd *cli = &obd->u.cli;