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) 2017, Intel Corporation.
28 * Author: Mikhail Pershin <mike.pershin@intel.com>
31 #define DEBUG_SUBSYSTEM S_FILTER
33 #include <dt_object.h>
34 #include "mdt_internal.h"
36 /* functions below are stubs for now, they will be implemented with
37 * grant support on MDT */
38 static inline void mdt_io_counter_incr(struct obd_export *exp, int opcode,
39 char *jobid, long amount)
44 static inline void mdt_dom_read_lock(struct mdt_object *mo)
46 down_read(&mo->mot_dom_sem);
49 static inline void mdt_dom_read_unlock(struct mdt_object *mo)
51 up_read(&mo->mot_dom_sem);
54 static inline void mdt_dom_write_lock(struct mdt_object *mo)
56 down_write(&mo->mot_dom_sem);
59 static inline void mdt_dom_write_unlock(struct mdt_object *mo)
61 up_write(&mo->mot_dom_sem);
64 static void mdt_dom_resource_prolong(struct ldlm_prolong_args *arg)
66 struct ldlm_resource *res;
67 struct ldlm_lock *lock;
71 res = ldlm_resource_get(arg->lpa_export->exp_obd->obd_namespace, NULL,
72 &arg->lpa_resid, LDLM_EXTENT, 0);
75 "Failed to get resource for resid %llu/%llu\n",
76 arg->lpa_resid.name[0], arg->lpa_resid.name[1]);
81 list_for_each_entry(lock, &res->lr_granted, l_res_link) {
82 if (ldlm_has_dom(lock)) {
83 LDLM_DEBUG(lock, "DOM lock to prolong ");
84 ldlm_lock_prolong_one(lock, arg);
89 ldlm_resource_putref(res);
94 static void mdt_prolong_dom_lock(struct tgt_session_info *tsi,
95 struct ldlm_prolong_args *data)
97 struct obdo *oa = &tsi->tsi_ost_body->oa;
98 struct ldlm_lock *lock;
102 data->lpa_timeout = prolong_timeout(tgt_ses_req(tsi));
103 data->lpa_export = tsi->tsi_exp;
104 data->lpa_resid = tsi->tsi_resid;
106 CDEBUG(D_RPCTRACE, "Prolong DOM lock for req %p with x%llu\n",
107 tgt_ses_req(tsi), tgt_ses_req(tsi)->rq_xid);
109 if (oa->o_valid & OBD_MD_FLHANDLE) {
110 /* mostly a request should be covered by only one lock, try
112 lock = ldlm_handle2lock(&oa->o_handle);
114 LASSERT(lock->l_export == data->lpa_export);
115 ldlm_lock_prolong_one(lock, data);
116 lock->l_last_used = ktime_get();
118 if (data->lpa_locks_cnt > 0)
122 mdt_dom_resource_prolong(data);
126 static int mdt_rw_hpreq_lock_match(struct ptlrpc_request *req,
127 struct ldlm_lock *lock)
129 struct obd_ioobj *ioo;
131 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
135 if (!(lock->l_policy_data.l_inodebits.bits & MDS_INODELOCK_DOM))
138 ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
139 LASSERT(ioo != NULL);
141 LASSERT(lock->l_resource != NULL);
142 if (!fid_res_name_eq(&ioo->ioo_oid.oi_fid, &lock->l_resource->lr_name))
145 /* a bulk write can only hold a reference on a PW extent lock. */
148 /* whereas a bulk read can be protected by either a PR or PW
152 if (!(lock->l_granted_mode & mode))
158 static int mdt_rw_hpreq_check(struct ptlrpc_request *req)
160 struct tgt_session_info *tsi;
161 struct obd_ioobj *ioo;
162 struct niobuf_remote *rnb;
164 struct ldlm_prolong_args pa = { 0 };
168 /* Don't use tgt_ses_info() to get session info, because lock_match()
169 * can be called while request has no processing thread yet. */
170 tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
173 * Use LASSERT below because malformed RPCs should have
174 * been filtered out in tgt_hpreq_handler().
176 opc = lustre_msg_get_opc(req->rq_reqmsg);
177 LASSERT(opc == OST_READ || opc == OST_WRITE);
179 ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
180 LASSERT(ioo != NULL);
182 rnb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
183 LASSERT(rnb != NULL);
184 LASSERT(!(rnb->rnb_flags & OBD_BRW_SRVLOCK));
186 pa.lpa_mode = LCK_PW;
188 pa.lpa_mode |= LCK_PR;
190 DEBUG_REQ(D_RPCTRACE, req, "%s %s: refresh rw locks for " DFID,
191 tgt_name(tsi->tsi_tgt), current->comm, PFID(&tsi->tsi_fid));
193 mdt_prolong_dom_lock(tsi, &pa);
195 if (pa.lpa_blocks_cnt > 0) {
197 "%s: refreshed %u locks timeout for req %p\n",
198 tgt_name(tsi->tsi_tgt), pa.lpa_blocks_cnt, req);
202 RETURN(pa.lpa_locks_cnt > 0 ? 0 : -ESTALE);
205 static void mdt_rw_hpreq_fini(struct ptlrpc_request *req)
207 mdt_rw_hpreq_check(req);
210 static struct ptlrpc_hpreq_ops mdt_hpreq_rw = {
211 .hpreq_lock_match = mdt_rw_hpreq_lock_match,
212 .hpreq_check = mdt_rw_hpreq_check,
213 .hpreq_fini = mdt_rw_hpreq_fini
217 * Assign high priority operations to an IO request.
219 * Check if the incoming request is a candidate for
220 * high-priority processing. If it is, assign it a high
221 * priority operations table.
223 * \param[in] tsi target session environment for this request
225 void mdt_hp_brw(struct tgt_session_info *tsi)
227 struct niobuf_remote *rnb;
228 struct obd_ioobj *ioo;
232 ioo = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_IOOBJ);
233 LASSERT(ioo != NULL); /* must exist after request preprocessing */
234 if (ioo->ioo_bufcnt > 0) {
235 rnb = req_capsule_client_get(tsi->tsi_pill, &RMF_NIOBUF_REMOTE);
236 LASSERT(rnb != NULL); /* must exist after preprocessing */
238 /* no high priority if server lock is needed */
239 if (rnb->rnb_flags & OBD_BRW_SRVLOCK ||
240 (lustre_msg_get_flags(tgt_ses_req(tsi)->rq_reqmsg) &
244 tgt_ses_req(tsi)->rq_ops = &mdt_hpreq_rw;
247 static int mdt_punch_hpreq_lock_match(struct ptlrpc_request *req,
248 struct ldlm_lock *lock)
250 struct tgt_session_info *tsi;
255 /* Don't use tgt_ses_info() to get session info, because lock_match()
256 * can be called while request has no processing thread yet. */
257 tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
260 * Use LASSERT below because malformed RPCs should have
261 * been filtered out in tgt_hpreq_handler().
263 LASSERT(tsi->tsi_ost_body != NULL);
264 if (tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLHANDLE &&
265 tsi->tsi_ost_body->oa.o_handle.cookie == lock->l_handle.h_cookie)
268 oa = &tsi->tsi_ost_body->oa;
270 LASSERT(lock->l_resource != NULL);
271 if (!fid_res_name_eq(&oa->o_oi.oi_fid, &lock->l_resource->lr_name))
274 if (!(lock->l_granted_mode & LCK_PW))
281 * Implementation of ptlrpc_hpreq_ops::hpreq_lock_check for OST_PUNCH request.
283 * High-priority queue request check for whether the given punch request
284 * (\a req) is blocking an LDLM lock cancel. Also checks whether the request is
285 * covered by an LDLM lock.
289 * \param[in] req the incoming request
291 * \retval 1 if \a req is blocking an LDLM lock cancel
292 * \retval 0 if it is not
293 * \retval -ESTALE if lock is not found
295 static int mdt_punch_hpreq_check(struct ptlrpc_request *req)
297 struct tgt_session_info *tsi;
299 struct ldlm_prolong_args pa = { 0 };
303 /* Don't use tgt_ses_info() to get session info, because lock_match()
304 * can be called while request has no processing thread yet. */
305 tsi = lu_context_key_get(&req->rq_session, &tgt_session_key);
306 LASSERT(tsi != NULL);
307 oa = &tsi->tsi_ost_body->oa;
309 LASSERT(!(oa->o_valid & OBD_MD_FLFLAGS &&
310 oa->o_flags & OBD_FL_SRVLOCK));
312 pa.lpa_mode = LCK_PW;
314 CDEBUG(D_DLMTRACE, "%s: refresh DOM lock for "DFID"\n",
315 tgt_name(tsi->tsi_tgt), PFID(&tsi->tsi_fid));
317 mdt_prolong_dom_lock(tsi, &pa);
320 if (pa.lpa_blocks_cnt > 0) {
322 "%s: refreshed %u locks timeout for req %p.\n",
323 tgt_name(tsi->tsi_tgt), pa.lpa_blocks_cnt, req);
327 RETURN(pa.lpa_locks_cnt > 0 ? 0 : -ESTALE);
331 * Implementation of ptlrpc_hpreq_ops::hpreq_lock_fini for OST_PUNCH request.
333 * Called after the request has been handled. It refreshes lock timeout again
334 * so that client has more time to send lock cancel RPC.
336 * \param[in] req request which is being processed.
338 static void mdt_punch_hpreq_fini(struct ptlrpc_request *req)
340 mdt_punch_hpreq_check(req);
343 static struct ptlrpc_hpreq_ops mdt_hpreq_punch = {
344 .hpreq_lock_match = mdt_punch_hpreq_lock_match,
345 .hpreq_check = mdt_punch_hpreq_check,
346 .hpreq_fini = mdt_punch_hpreq_fini
349 void mdt_hp_punch(struct tgt_session_info *tsi)
351 LASSERT(tsi->tsi_ost_body != NULL); /* must exists if we are here */
352 /* no high-priority if server lock is needed */
353 if ((tsi->tsi_ost_body->oa.o_valid & OBD_MD_FLFLAGS &&
354 tsi->tsi_ost_body->oa.o_flags & OBD_FL_SRVLOCK) ||
355 tgt_conn_flags(tsi) & OBD_CONNECT_MDS ||
356 lustre_msg_get_flags(tgt_ses_req(tsi)->rq_reqmsg) & MSG_REPLAY)
358 tgt_ses_req(tsi)->rq_ops = &mdt_hpreq_punch;
361 static int mdt_preprw_read(const struct lu_env *env, struct obd_export *exp,
362 struct mdt_device *mdt, struct mdt_object *mo,
363 struct lu_attr *la, int niocount,
364 struct niobuf_remote *rnb, int *nr_local,
365 struct niobuf_local *lnb, char *jobid)
367 struct dt_object *dob;
368 int i, j, rc, tot_bytes = 0;
369 int maxlnb = *nr_local;
374 mdt_dom_read_lock(mo);
376 /* the only valid case when READ can find object is missing or stale
377 * when export is just evicted and open files are closed forcefully
378 * on server while client's READ can be in progress.
379 * This should not happen on healthy export, object can't be missing
380 * or dying because both states means it was finally destroyed.
382 level = exp->exp_failed ? D_INFO : D_ERROR;
383 if (!mdt_object_exists(mo)) {
385 "%s: READ IO to missing obj "DFID": rc = %d\n",
386 exp->exp_obd->obd_name, PFID(mdt_object_fid(mo)),
388 /* return 0 and continue with empty commit to skip such READ
389 * without more BRW errors.
393 if (lu_object_is_dying(&mo->mot_header)) {
395 "%s: READ IO to stale obj "DFID": rc = %d\n",
396 exp->exp_obd->obd_name, PFID(mdt_object_fid(mo)),
398 /* return 0 and continue with empty commit to skip such READ
399 * without more BRW errors.
404 dob = mdt_obj2dt(mo);
405 /* parse remote buffers to local buffers and prepare the latter */
406 for (i = 0, j = 0; i < niocount; i++) {
407 rc = dt_bufs_get(env, dob, rnb + i, lnb + j, maxlnb, 0);
408 if (unlikely(rc < 0))
410 /* correct index for local buffers to continue with */
414 tot_bytes += rnb[i].rnb_len;
417 rc = dt_attr_get(env, dob, la);
421 rc = dt_read_prep(env, dob, lnb, *nr_local);
425 mdt_io_counter_incr(exp, LPROC_MDT_IO_READ, jobid, tot_bytes);
428 dt_bufs_put(env, dob, lnb, *nr_local);
429 mdt_dom_read_unlock(mo);
433 static int mdt_preprw_write(const struct lu_env *env, struct obd_export *exp,
434 struct mdt_device *mdt, struct mdt_object *mo,
435 struct lu_attr *la, struct obdo *oa,
436 int objcount, struct obd_ioobj *obj,
437 struct niobuf_remote *rnb, int *nr_local,
438 struct niobuf_local *lnb, char *jobid)
440 struct dt_object *dob;
441 int i, j, k, rc = 0, tot_bytes = 0;
442 int maxlnb = *nr_local;
446 /* Process incoming grant info, set OBD_BRW_GRANTED flag and grant some
447 * space back if possible */
448 tgt_grant_prepare_write(env, exp, oa, rnb, obj->ioo_bufcnt);
450 mdt_dom_read_lock(mo);
452 /* don't report error in cases with failed export */
453 if (!mdt_object_exists(mo)) {
454 int level = exp->exp_failed ? D_INFO : D_ERROR;
458 "%s: WRITE IO to missing obj "DFID": rc = %d\n",
459 exp->exp_obd->obd_name, PFID(mdt_object_fid(mo)),
461 /* exit with no data written, note nr_local = 0 above */
464 if (lu_object_is_dying(&mo->mot_header)) {
465 /* This is possible race between object destroy followed by
466 * discard BL AST and client cache flushing. Object is
467 * referenced until discard finish.
469 CDEBUG(D_INODE, "WRITE IO to stale object "DFID"\n",
470 PFID(mdt_object_fid(mo)));
471 /* Note: continue with no error here to don't cause BRW errors
472 * but skip transaction in commitrw silently so no data is
477 dob = mdt_obj2dt(mo);
478 /* parse remote buffers to local buffers and prepare the latter */
479 for (i = 0, j = 0; i < obj->ioo_bufcnt; i++) {
480 rc = dt_bufs_get(env, dob, rnb + i, lnb + j, maxlnb, 1);
481 if (unlikely(rc < 0))
483 /* correct index for local buffers to continue with */
484 for (k = 0; k < rc; k++) {
485 lnb[j + k].lnb_flags = rnb[i].rnb_flags;
486 if (!(rnb[i].rnb_flags & OBD_BRW_GRANTED))
487 lnb[j + k].lnb_rc = -ENOSPC;
492 tot_bytes += rnb[i].rnb_len;
495 rc = dt_write_prep(env, dob, lnb, *nr_local);
499 mdt_io_counter_incr(exp, LPROC_MDT_IO_WRITE, jobid, tot_bytes);
502 dt_bufs_put(env, dob, lnb, *nr_local);
504 mdt_dom_read_unlock(mo);
505 /* tgt_grant_prepare_write() was called, so we must commit */
506 tgt_grant_commit(exp, oa->o_grant_used, rc);
507 /* let's still process incoming grant information packed in the oa,
508 * but without enforcing grant since we won't proceed with the write.
509 * Just like a read request actually. */
510 tgt_grant_prepare_read(env, exp, oa);
514 int mdt_obd_preprw(const struct lu_env *env, int cmd, struct obd_export *exp,
515 struct obdo *oa, int objcount, struct obd_ioobj *obj,
516 struct niobuf_remote *rnb, int *nr_local,
517 struct niobuf_local *lnb)
519 struct tgt_session_info *tsi = tgt_ses_info(env);
520 struct mdt_thread_info *info = tsi2mdt_info(tsi);
521 struct lu_attr *la = &info->mti_attr.ma_attr;
522 struct mdt_device *mdt = mdt_dev(exp->exp_obd->obd_lu_dev);
523 struct mdt_object *mo;
527 /* The default value PTLRPC_MAX_BRW_PAGES is set in tgt_brw_write()
528 * but for MDT it is different, correct it here. */
529 if (*nr_local > MD_MAX_BRW_PAGES)
530 *nr_local = MD_MAX_BRW_PAGES;
532 jobid = tsi->tsi_jobid;
534 if (!oa || objcount != 1 || obj->ioo_bufcnt == 0) {
535 CERROR("%s: bad parameters %p/%i/%i\n",
536 exp->exp_obd->obd_name, oa, objcount, obj->ioo_bufcnt);
540 mo = mdt_object_find(env, mdt, &tsi->tsi_fid);
542 GOTO(out, rc = PTR_ERR(mo));
544 LASSERT(info->mti_object == NULL);
545 info->mti_object = mo;
547 if (cmd == OBD_BRW_WRITE) {
548 la_from_obdo(la, oa, OBD_MD_FLGETATTR);
549 rc = mdt_preprw_write(env, exp, mdt, mo, la, oa,
550 objcount, obj, rnb, nr_local, lnb,
552 } else if (cmd == OBD_BRW_READ) {
553 tgt_grant_prepare_read(env, exp, oa);
554 rc = mdt_preprw_read(env, exp, mdt, mo, la,
555 obj->ioo_bufcnt, rnb, nr_local, lnb,
557 obdo_from_la(oa, la, LA_ATIME);
559 CERROR("%s: wrong cmd %d received!\n",
560 exp->exp_obd->obd_name, cmd);
564 lu_object_put(env, &mo->mot_obj);
565 info->mti_object = NULL;
571 static int mdt_commitrw_read(const struct lu_env *env, struct mdt_device *mdt,
572 struct mdt_object *mo, int objcount, int niocount,
573 struct niobuf_local *lnb)
575 struct dt_object *dob;
580 dob = mdt_obj2dt(mo);
583 dt_bufs_put(env, dob, lnb, niocount);
585 mdt_dom_read_unlock(mo);
589 static int mdt_commitrw_write(const struct lu_env *env, struct obd_export *exp,
590 struct mdt_device *mdt, struct mdt_object *mo,
591 struct lu_attr *la, int objcount, int niocount,
592 struct niobuf_local *lnb, unsigned long granted,
595 struct dt_device *dt = mdt->mdt_bottom;
596 struct dt_object *dob;
604 dob = mdt_obj2dt(mo);
607 GOTO(out, rc = old_rc);
609 la->la_valid &= LA_ATIME | LA_MTIME | LA_CTIME;
611 if (!dt_object_exists(dob))
612 GOTO(out, rc = -ENOENT);
613 if (lu_object_is_dying(&mo->mot_header)) {
614 /* Commit to stale object can be just skipped silently. */
615 CDEBUG(D_INODE, "skip commit to stale object "DFID"\n",
616 PFID(mdt_object_fid(mo)));
622 DEBUG_REQ(D_WARNING, tgt_ses_req(tgt_ses_info(env)),
623 "%s: commit with no pages for "DFID": rc = %d\n",
624 exp->exp_obd->obd_name, PFID(mdt_object_fid(mo)), rc);
628 th = dt_trans_create(env, dt);
630 GOTO(out, rc = PTR_ERR(th));
632 for (i = 0; i < niocount; i++) {
633 if (!(lnb[i].lnb_flags & OBD_BRW_ASYNC)) {
639 if (OBD_FAIL_CHECK(OBD_FAIL_OST_DQACQ_NET))
640 GOTO(out_stop, rc = -EINPROGRESS);
642 rc = dt_declare_write_commit(env, dob, lnb, niocount, th);
647 /* update [mac]time if needed */
648 rc = dt_declare_attr_set(env, dob, la, th);
653 tgt_vbr_obj_set(env, dob);
654 rc = dt_trans_start(env, dt, th);
658 dt_write_lock(env, dob, 0);
659 rc = dt_write_commit(env, dob, lnb, niocount, th);
664 rc = dt_attr_set(env, dob, la, th);
668 /* get attr to return */
669 rc = dt_attr_get(env, dob, la);
671 dt_write_unlock(env, dob);
674 /* Force commit to make the just-deleted blocks
675 * reusable. LU-456 */
680 if (rc == 0 && granted > 0) {
681 if (tgt_grant_commit_cb_add(th, exp, granted) == 0)
686 dt_trans_stop(env, dt, th);
687 if (rc == -ENOSPC && retries++ < 3) {
688 CDEBUG(D_INODE, "retry after force commit, retries:%d\n",
694 dt_bufs_put(env, dob, lnb, niocount);
695 mdt_dom_read_unlock(mo);
697 tgt_grant_commit(exp, granted, old_rc);
701 void mdt_dom_obj_lvb_update(const struct lu_env *env, struct mdt_object *mo,
704 struct mdt_device *mdt = mdt_dev(mo->mot_obj.lo_dev);
705 struct ldlm_res_id resid;
706 struct ldlm_resource *res;
708 fid_build_reg_res_name(mdt_object_fid(mo), &resid);
709 res = ldlm_resource_get(mdt->mdt_namespace, NULL, &resid,
714 /* Update lvbo data if exists. */
715 if (mdt_dom_lvb_is_valid(res))
716 mdt_dom_disk_lvbo_update(env, mo, res, increase_only);
717 ldlm_resource_putref(res);
720 int mdt_obd_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
721 struct obdo *oa, int objcount, struct obd_ioobj *obj,
722 struct niobuf_remote *rnb, int npages,
723 struct niobuf_local *lnb, int old_rc)
725 struct mdt_thread_info *info = mdt_th_info(env);
726 struct mdt_device *mdt = mdt_dev(exp->exp_obd->obd_lu_dev);
727 struct mdt_object *mo = info->mti_object;
728 struct lu_attr *la = &info->mti_attr.ma_attr;
734 if (cmd == OBD_BRW_WRITE) {
735 /* Don't update timestamps if this write is older than a
736 * setattr which modifies the timestamps. b=10150 */
738 /* XXX when we start having persistent reservations this needs
739 * to be changed to ofd_fmd_get() to create the fmd if it
740 * doesn't already exist so we can store the reservation handle
742 valid = OBD_MD_FLUID | OBD_MD_FLGID;
743 if (tgt_fmd_check(exp, mdt_object_fid(mo),
744 mdt_info_req(info)->rq_xid))
745 valid |= OBD_MD_FLATIME | OBD_MD_FLMTIME |
748 la_from_obdo(la, oa, valid);
750 rc = mdt_commitrw_write(env, exp, mdt, mo, la, objcount,
751 npages, lnb, oa->o_grant_used, old_rc);
753 obdo_from_la(oa, la, VALID_FLAGS | LA_GID | LA_UID);
755 obdo_from_la(oa, la, LA_GID | LA_UID);
757 mdt_dom_obj_lvb_update(env, mo, false);
758 /* don't report overquota flag if we failed before reaching
760 if (old_rc == 0 && (rc == 0 || rc == -EDQUOT)) {
761 /* return the overquota flags to client */
762 if (lnb[0].lnb_flags & OBD_BRW_OVER_USRQUOTA) {
763 if (oa->o_valid & OBD_MD_FLFLAGS)
764 oa->o_flags |= OBD_FL_NO_USRQUOTA;
766 oa->o_flags = OBD_FL_NO_USRQUOTA;
769 if (lnb[0].lnb_flags & OBD_BRW_OVER_GRPQUOTA) {
770 if (oa->o_valid & OBD_MD_FLFLAGS)
771 oa->o_flags |= OBD_FL_NO_GRPQUOTA;
773 oa->o_flags = OBD_FL_NO_GRPQUOTA;
776 if (lnb[0].lnb_flags & OBD_BRW_OVER_PRJQUOTA) {
777 if (oa->o_valid & OBD_MD_FLFLAGS)
778 oa->o_flags |= OBD_FL_NO_PRJQUOTA;
780 oa->o_flags = OBD_FL_NO_PRJQUOTA;
783 oa->o_valid |= OBD_MD_FLFLAGS | OBD_MD_FLUSRQUOTA |
784 OBD_MD_FLGRPQUOTA | OBD_MD_FLPRJQUOTA;
786 } else if (cmd == OBD_BRW_READ) {
787 /* If oa != NULL then mdt_preprw_read updated the inode
788 * atime and we should update the lvb so that other glimpses
789 * will also get the updated value. bug 5972 */
791 mdt_dom_obj_lvb_update(env, mo, true);
792 rc = mdt_commitrw_read(env, mdt, mo, objcount, npages, lnb);
798 mdt_thread_info_fini(info);
802 int mdt_object_punch(const struct lu_env *env, struct dt_device *dt,
803 struct dt_object *dob, __u64 start, __u64 end,
811 /* we support truncate, not punch yet */
812 LASSERT(end == OBD_OBJECT_EOF);
814 if (!dt_object_exists(dob))
817 th = dt_trans_create(env, dt);
821 rc = dt_declare_attr_set(env, dob, la, th);
825 rc = dt_declare_punch(env, dob, start, OBD_OBJECT_EOF, th);
829 tgt_vbr_obj_set(env, dob);
830 rc = dt_trans_start(env, dt, th);
834 dt_write_lock(env, dob, 0);
835 rc = dt_punch(env, dob, start, OBD_OBJECT_EOF, th);
838 rc = dt_attr_set(env, dob, la, th);
842 dt_write_unlock(env, dob);
845 dt_trans_stop(env, dt, th);
849 int mdt_punch_hdl(struct tgt_session_info *tsi)
851 const struct obdo *oa = &tsi->tsi_ost_body->oa;
852 struct ost_body *repbody;
853 struct mdt_thread_info *info;
855 struct ldlm_namespace *ns = tsi->tsi_tgt->lut_obd->obd_namespace;
856 struct obd_export *exp = tsi->tsi_exp;
857 struct mdt_device *mdt = mdt_dev(exp->exp_obd->obd_lu_dev);
858 struct mdt_object *mo;
859 struct dt_object *dob;
861 struct lustre_handle lh = { 0, };
868 /* check that we do support OBD_CONNECT_TRUNCLOCK. */
869 BUILD_BUG_ON(!(OST_CONNECT_SUPPORTED & OBD_CONNECT_TRUNCLOCK));
871 if ((oa->o_valid & (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS)) !=
872 (OBD_MD_FLSIZE | OBD_MD_FLBLOCKS))
873 RETURN(err_serious(-EPROTO));
875 repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_OST_BODY);
877 RETURN(err_serious(-ENOMEM));
879 /* punch start,end are passed in o_size,o_blocks throught wire */
883 if (end != OBD_OBJECT_EOF) /* Only truncate is supported */
886 info = tsi2mdt_info(tsi);
887 la = &info->mti_attr.ma_attr;
888 /* standard truncate optimization: if file body is completely
889 * destroyed, don't send data back to the server. */
891 flags |= LDLM_FL_AST_DISCARD_DATA;
893 repbody->oa.o_oi = oa->o_oi;
894 repbody->oa.o_valid = OBD_MD_FLID;
896 srvlock = (exp_connect_flags(exp) & OBD_CONNECT_SRVLOCK) &&
897 oa->o_valid & OBD_MD_FLFLAGS &&
898 oa->o_flags & OBD_FL_SRVLOCK;
901 rc = tgt_mdt_data_lock(ns, &tsi->tsi_resid, &lh, LCK_PW,
907 CDEBUG(D_INODE, "calling punch for object "DFID", valid = %#llx"
908 ", start = %lld, end = %lld\n", PFID(&tsi->tsi_fid),
909 oa->o_valid, start, end);
911 mo = mdt_object_find(tsi->tsi_env, mdt, &tsi->tsi_fid);
913 GOTO(out_unlock, rc = PTR_ERR(mo));
915 if (!mdt_object_exists(mo))
916 GOTO(out_put, rc = -ENOENT);
918 /* Shouldn't happen on dirs */
919 if (S_ISDIR(lu_object_attr(&mo->mot_obj))) {
921 CERROR("%s: Truncate on dir "DFID": rc = %d\n",
922 exp->exp_obd->obd_name, PFID(&tsi->tsi_fid), rc);
926 mdt_dom_write_lock(mo);
927 dob = mdt_obj2dt(mo);
929 la_from_obdo(la, oa, OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME);
931 la->la_valid |= LA_SIZE;
933 /* MDT supports FMD for Data-on-MDT needs */
934 if (la->la_valid & (LA_ATIME | LA_MTIME | LA_CTIME))
935 tgt_fmd_update(tsi->tsi_exp, &tsi->tsi_fid,
936 tgt_ses_req(tsi)->rq_xid);
938 rc = mdt_object_punch(tsi->tsi_env, mdt->mdt_bottom, dob,
940 mdt_dom_write_unlock(mo);
944 mdt_dom_obj_lvb_update(tsi->tsi_env, mo, false);
945 mdt_io_counter_incr(tsi->tsi_exp, LPROC_MDT_IO_PUNCH,
949 lu_object_put(tsi->tsi_env, &mo->mot_obj);
952 tgt_extent_unlock(&lh, LCK_PW);
954 mdt_thread_info_fini(info);
959 * MDT glimpse for Data-on-MDT
961 * If there is write lock on client then function issues glimpse_ast to get
962 * an actual size from that client.
965 int mdt_do_glimpse(const struct lu_env *env, struct ldlm_namespace *ns,
966 struct ldlm_resource *res)
968 union ldlm_policy_data policy;
969 struct lustre_handle lockh;
971 struct ldlm_lock *lock;
972 struct ldlm_glimpse_work *gl_work;
978 /* There can be only one write lock covering data, try to match it. */
979 policy.l_inodebits.bits = MDS_INODELOCK_DOM;
980 mode = ldlm_lock_match(ns, LDLM_FL_TEST_LOCK,
981 &res->lr_name, LDLM_IBITS, &policy,
984 /* There is no PW lock on this object; finished. */
988 lock = ldlm_handle2lock(&lockh);
993 * This check is for lock taken in mdt_reint_unlink() that does
994 * not have l_glimpse_ast set. So the logic is: if there is a lock
995 * with no l_glimpse_ast set, this object is being destroyed already.
996 * Hence, if you are grabbing DLM locks on the server, always set
997 * non-NULL glimpse_ast (e.g., ldlm_request.c::ldlm_glimpse_ast()).
999 if (lock->l_glimpse_ast == NULL) {
1000 LDLM_DEBUG(lock, "no l_glimpse_ast");
1001 GOTO(out, rc = -ENOENT);
1004 OBD_SLAB_ALLOC_PTR_GFP(gl_work, ldlm_glimpse_work_kmem, GFP_ATOMIC);
1006 GOTO(out, rc = -ENOMEM);
1008 /* Populate the gl_work structure.
1009 * Grab additional reference on the lock which will be released in
1010 * ldlm_work_gl_ast_lock() */
1011 gl_work->gl_lock = LDLM_LOCK_GET(lock);
1012 /* The glimpse callback is sent to one single IO lock. As a result,
1013 * the gl_work list is just composed of one element */
1014 list_add_tail(&gl_work->gl_list, &gl_list);
1015 /* There is actually no need for a glimpse descriptor when glimpsing
1017 gl_work->gl_desc = NULL;
1018 /* the ldlm_glimpse_work structure is allocated on the stack */
1019 gl_work->gl_flags = LDLM_GL_WORK_SLAB_ALLOCATED;
1021 ldlm_glimpse_locks(res, &gl_list); /* this will update the LVB */
1023 /* If the list is not empty, we failed to glimpse a lock and
1024 * must clean it up. Usually due to a race with unlink.*/
1025 if (!list_empty(&gl_list)) {
1026 LDLM_LOCK_RELEASE(lock);
1027 OBD_SLAB_FREE_PTR(gl_work, ldlm_glimpse_work_kmem);
1032 LDLM_LOCK_PUT(lock);
1036 static void mdt_lvb2body(struct ldlm_resource *res, struct mdt_body *mb)
1038 struct ost_lvb *res_lvb;
1041 res_lvb = res->lr_lvb_data;
1042 mb->mbo_dom_size = res_lvb->lvb_size;
1043 mb->mbo_dom_blocks = res_lvb->lvb_blocks;
1044 mb->mbo_mtime = res_lvb->lvb_mtime;
1045 mb->mbo_ctime = res_lvb->lvb_ctime;
1046 mb->mbo_atime = res_lvb->lvb_atime;
1048 CDEBUG(D_DLMTRACE, "size %llu\n", res_lvb->lvb_size);
1050 mb->mbo_valid |= OBD_MD_FLATIME | OBD_MD_FLCTIME | OBD_MD_FLMTIME |
1056 * MDT glimpse for Data-on-MDT
1058 * This function is called when MDT get attributes for the DoM object.
1059 * If there is write lock on client then function issues glimpse_ast to get
1060 * an actual size from that client.
1062 int mdt_dom_object_size(const struct lu_env *env, struct mdt_device *mdt,
1063 const struct lu_fid *fid, struct mdt_body *mb,
1066 struct ldlm_res_id resid;
1067 struct ldlm_resource *res;
1072 fid_build_reg_res_name(fid, &resid);
1073 res = ldlm_resource_get(mdt->mdt_namespace, NULL, &resid,
1078 /* Update lvbo data if DoM lock returned or if LVB is not yet valid. */
1079 if (dom_lock || !mdt_dom_lvb_is_valid(res))
1080 mdt_dom_lvbo_update(res, NULL, NULL, false);
1082 mdt_lvb2body(res, mb);
1083 ldlm_resource_putref(res);
1088 * MDT DoM lock intent policy (glimpse)
1090 * Intent policy is called when lock has an intent, for DoM file that
1091 * means glimpse lock and policy fills Lock Value Block (LVB).
1093 * If already granted lock is found it will be placed in \a lockp and
1094 * returned back to caller function.
1096 * \param[in] tsi session info
1097 * \param[in,out] lockp pointer to the lock
1098 * \param[in] flags LDLM flags
1100 * \retval ELDLM_LOCK_REPLACED if already granted lock was found
1101 * and placed in \a lockp
1102 * \retval ELDLM_LOCK_ABORTED in other cases except error
1103 * \retval negative value on error
1105 int mdt_glimpse_enqueue(struct mdt_thread_info *mti, struct ldlm_namespace *ns,
1106 struct ldlm_lock **lockp, __u64 flags)
1108 struct ldlm_lock *lock = *lockp;
1109 struct ldlm_resource *res = lock->l_resource;
1110 ldlm_processing_policy policy;
1111 struct ldlm_reply *rep;
1112 struct mdt_body *mbo;
1117 policy = ldlm_get_processing_policy(res);
1118 LASSERT(policy != NULL);
1120 req_capsule_set_size(mti->mti_pill, &RMF_MDT_MD, RCL_SERVER, 0);
1121 req_capsule_set_size(mti->mti_pill, &RMF_ACL, RCL_SERVER, 0);
1122 rc = req_capsule_server_pack(mti->mti_pill);
1124 RETURN(err_serious(rc));
1126 rep = req_capsule_server_get(mti->mti_pill, &RMF_DLM_REP);
1130 mbo = req_capsule_server_get(mti->mti_pill, &RMF_MDT_BODY);
1135 /* Check if this is a resend case (MSG_RESENT is set on RPC) and a
1136 * lock was found by ldlm_handle_enqueue(); if so no need to grant
1138 if (flags & LDLM_FL_RESENT) {
1139 rc = LDLM_ITER_CONTINUE;
1141 __u64 tmpflags = LDLM_FL_BLOCK_NOWAIT;
1142 enum ldlm_error err;
1144 rc = policy(lock, &tmpflags, LDLM_PROCESS_RESCAN, &err, NULL);
1145 check_res_locked(res);
1149 /* The lock met with no resistance; we're finished. */
1150 if (rc == LDLM_ITER_CONTINUE) {
1151 GOTO(fill_mbo, rc = ELDLM_LOCK_REPLACED);
1152 } else if (flags & LDLM_FL_BLOCK_NOWAIT) {
1153 /* LDLM_FL_BLOCK_NOWAIT means it is for AGL. Do not send glimpse
1154 * callback for glimpse size. The real size user will trigger
1155 * the glimpse callback when necessary. */
1156 GOTO(fill_mbo, rc = ELDLM_LOCK_ABORTED);
1159 rc = mdt_do_glimpse(mti->mti_env, ns, res);
1160 if (rc == -ENOENT) {
1161 /* We are racing with unlink(); just return -ENOENT */
1162 rep->lock_policy_res2 = ptlrpc_status_hton(-ENOENT);
1164 } else if (rc == -EINVAL) {
1165 /* this is possible is client lock has been cancelled but
1166 * still exists on server. If that lock was found on server
1167 * as only conflicting lock then the client has already
1168 * size authority and glimpse is not needed. */
1169 CDEBUG(D_DLMTRACE, "Glimpse from the client owning lock\n");
1171 } else if (rc < 0) {
1174 rc = ELDLM_LOCK_ABORTED;
1176 /* LVB can be without valid data in case of DOM */
1177 if (!mdt_dom_lvb_is_valid(res))
1178 mdt_dom_lvbo_update(res, lock, NULL, false);
1179 mdt_lvb2body(res, mbo);
1183 int mdt_brw_enqueue(struct mdt_thread_info *mti, struct ldlm_namespace *ns,
1184 struct ldlm_lock **lockp, __u64 flags)
1186 struct tgt_session_info *tsi = tgt_ses_info(mti->mti_env);
1187 struct lu_fid *fid = &tsi->tsi_fid;
1188 struct ldlm_lock *lock = *lockp;
1189 struct ldlm_resource *res = lock->l_resource;
1190 struct ldlm_reply *rep;
1191 struct mdt_body *mbo;
1192 struct mdt_lock_handle *lhc = &mti->mti_lh[MDT_LH_RMT];
1193 struct mdt_object *mo;
1198 /* Get lock from request for possible resent case. */
1199 mdt_intent_fixup_resent(mti, *lockp, lhc, flags);
1200 req_capsule_set_size(mti->mti_pill, &RMF_MDT_MD, RCL_SERVER, 0);
1201 req_capsule_set_size(mti->mti_pill, &RMF_ACL, RCL_SERVER, 0);
1202 rc = req_capsule_server_pack(mti->mti_pill);
1204 RETURN(err_serious(rc));
1206 rep = req_capsule_server_get(mti->mti_pill, &RMF_DLM_REP);
1210 mbo = req_capsule_server_get(mti->mti_pill, &RMF_MDT_BODY);
1214 fid_extract_from_res_name(fid, &res->lr_name);
1215 mo = mdt_object_find(mti->mti_env, mti->mti_mdt, fid);
1216 if (unlikely(IS_ERR(mo)))
1217 RETURN(PTR_ERR(mo));
1219 if (!mdt_object_exists(mo))
1220 GOTO(out, rc = -ENOENT);
1222 if (mdt_object_remote(mo))
1223 GOTO(out, rc = -EPROTO);
1226 if (!lustre_handle_is_used(&lhc->mlh_reg_lh)) {
1227 mdt_lock_handle_init(lhc);
1228 mdt_lock_reg_init(lhc, (*lockp)->l_req_mode);
1229 /* This will block MDT thread but it should be fine until
1230 * client caches small amount of data for DoM, which should be
1231 * smaller than one BRW RPC and should be able to be
1232 * piggybacked by lock cancel RPC.
1233 * If the client could hold the lock too long, this code can be
1234 * revised to call mdt_object_lock_try(). And if fails, it will
1235 * return ELDLM_OK here and fall back into normal lock enqueue
1238 rc = mdt_object_lock(mti, mo, lhc, MDS_INODELOCK_DOM);
1243 if (!mdt_dom_lvb_is_valid(res)) {
1244 rc = mdt_dom_lvb_alloc(res);
1247 mdt_dom_disk_lvbo_update(mti->mti_env, mo, res, false);
1249 mdt_lvb2body(res, mbo);
1251 rep->lock_policy_res2 = clear_serious(rc);
1252 if (rep->lock_policy_res2) {
1253 lhc->mlh_reg_lh.cookie = 0ull;
1254 GOTO(out, rc = ELDLM_LOCK_ABORTED);
1257 rc = mdt_intent_lock_replace(mti, lockp, lhc, flags, rc);
1259 mdt_object_put(mti->mti_env, mo);
1263 /* check if client has already DoM lock for given resource */
1264 bool mdt_dom_client_has_lock(struct mdt_thread_info *info,
1265 const struct lu_fid *fid)
1267 struct mdt_device *mdt = info->mti_mdt;
1268 union ldlm_policy_data *policy = &info->mti_policy;
1269 struct ldlm_res_id *res_id = &info->mti_res_id;
1270 struct lustre_handle lockh;
1271 enum ldlm_mode mode;
1272 struct ldlm_lock *lock;
1275 policy->l_inodebits.bits = MDS_INODELOCK_DOM;
1276 fid_build_reg_res_name(fid, res_id);
1278 mode = ldlm_lock_match(mdt->mdt_namespace, LDLM_FL_BLOCK_GRANTED |
1279 LDLM_FL_TEST_LOCK, res_id, LDLM_IBITS, policy,
1282 /* There is no other PW lock on this object; finished. */
1286 lock = ldlm_handle2lock(&lockh);
1290 /* check if lock from the same client */
1291 rc = (lock->l_export->exp_handle.h_cookie ==
1292 info->mti_exp->exp_handle.h_cookie);
1293 LDLM_LOCK_PUT(lock);
1298 * MDT request handler for OST_GETATTR RPC.
1300 * This is data-specific request to get object and layout versions under
1301 * IO lock. It is reliable only for Data-on-MDT files.
1303 * \param[in] tsi target session environment for this request
1305 * \retval 0 if successful
1306 * \retval negative value on error
1308 int mdt_data_version_get(struct tgt_session_info *tsi)
1310 struct mdt_thread_info *mti = mdt_th_info(tsi->tsi_env);
1311 struct mdt_device *mdt = mti->mti_mdt;
1312 struct mdt_body *repbody;
1313 struct mdt_object *mo = mti->mti_object;
1314 struct lov_comp_md_v1 *comp;
1315 struct lustre_handle lh = { 0 };
1318 enum ldlm_mode lock_mode = LCK_PR;
1324 req_capsule_set_size(tsi->tsi_pill, &RMF_MDT_MD, RCL_SERVER, 0);
1325 req_capsule_set_size(tsi->tsi_pill, &RMF_ACL, RCL_SERVER, 0);
1326 rc = req_capsule_server_pack(tsi->tsi_pill);
1327 if (unlikely(rc != 0))
1328 RETURN(err_serious(rc));
1330 repbody = req_capsule_server_get(tsi->tsi_pill, &RMF_MDT_BODY);
1331 if (repbody == NULL)
1334 srvlock = tsi->tsi_mdt_body->mbo_valid & OBD_MD_FLFLAGS &&
1335 tsi->tsi_mdt_body->mbo_flags & OBD_FL_SRVLOCK;
1338 if (unlikely(tsi->tsi_mdt_body->mbo_flags & OBD_FL_FLUSH))
1341 fid_build_reg_res_name(&tsi->tsi_fid, &tsi->tsi_resid);
1342 rc = tgt_mdt_data_lock(mdt->mdt_namespace, &tsi->tsi_resid,
1343 &lh, lock_mode, &flags);
1348 if (!mdt_object_exists(mo))
1349 GOTO(out, rc = -ENOENT);
1350 if (mdt_object_remote(mo))
1351 GOTO(out, rc = -EREMOTE);
1352 if (!S_ISREG(lu_object_attr(&mo->mot_obj)))
1353 GOTO(out, rc = -EBADF);
1355 /* Get version first */
1356 version = dt_version_get(tsi->tsi_env, mdt_obj2dt(mo));
1357 if (version && version != -EOPNOTSUPP) {
1358 repbody->mbo_valid |= OBD_MD_FLDATAVERSION;
1359 /* re-use mbo_ioepoch to transfer version */
1360 repbody->mbo_version = version;
1363 /* Read layout to get its version */
1364 rc = mdt_big_xattr_get(mti, mo, XATTR_NAME_LOV);
1365 if (rc == -ENODATA) /* File has no layout yet */
1370 comp = mti->mti_buf.lb_buf;
1371 if (le32_to_cpu(comp->lcm_magic) != LOV_MAGIC_COMP_V1) {
1372 CDEBUG(D_INFO, DFID" has no composite layout",
1373 PFID(&tsi->tsi_fid));
1374 GOTO(out, rc = -ESTALE);
1377 CDEBUG(D_INODE, DFID": layout version: %u\n",
1378 PFID(&tsi->tsi_fid), le32_to_cpu(comp->lcm_layout_gen));
1380 repbody->mbo_valid |= OBD_MD_LAYOUT_VERSION;
1381 /* re-use mbo_rdev for that */
1382 repbody->mbo_layout_gen = le32_to_cpu(comp->lcm_layout_gen);
1386 tgt_mdt_data_unlock(&lh, lock_mode);
1388 repbody->mbo_valid |= OBD_MD_FLFLAGS;
1389 repbody->mbo_flags = OBD_FL_FLUSH;
1393 /* read file data to the buffer */
1394 int mdt_dom_read_on_open(struct mdt_thread_info *mti, struct mdt_device *mdt,
1395 struct lustre_handle *lh)
1397 const struct lu_env *env = mti->mti_env;
1398 struct tgt_session_info *tsi = tgt_ses_info(env);
1399 struct req_capsule *pill = tsi->tsi_pill;
1400 const struct lu_fid *fid;
1401 struct ptlrpc_request *req = tgt_ses_req(tsi);
1402 struct mdt_body *mbo;
1403 struct dt_device *dt = mdt->mdt_bottom;
1404 struct dt_object *mo;
1406 struct niobuf_remote *rnb = NULL;
1407 struct niobuf_local *lnb;
1410 unsigned int len, copied = 0;
1411 int lnbs, nr_local, i;
1412 bool dom_lock = false;
1416 if (!req_capsule_field_present(pill, &RMF_NIOBUF_INLINE, RCL_SERVER)) {
1417 /* There is no reply buffers for this field, this means that
1418 * client has no support for data in reply.
1423 mbo = req_capsule_server_get(pill, &RMF_MDT_BODY);
1425 if (lustre_handle_is_used(lh)) {
1426 struct ldlm_lock *lock;
1428 lock = ldlm_handle2lock(lh);
1430 dom_lock = ldlm_has_dom(lock) && ldlm_has_layout(lock);
1431 LDLM_LOCK_PUT(lock);
1435 /* return data along with open only along with DoM lock */
1436 if (!dom_lock || !mdt->mdt_opts.mo_dom_read_open)
1439 if (!(mbo->mbo_valid & OBD_MD_DOM_SIZE))
1442 if (mbo->mbo_dom_size == 0)
1445 CDEBUG(D_INFO, "File size %llu, reply sizes %d/%d\n",
1446 mbo->mbo_dom_size, req->rq_reqmsg->lm_repsize, req->rq_replen);
1447 len = req->rq_reqmsg->lm_repsize - req->rq_replen;
1449 /* NB: at this moment we have the following sizes:
1450 * - req->rq_replen: used data in reply
1451 * - req->rq_reqmsg->lm_repsize: total allocated reply buffer at client
1453 * Ideal case when file size fits in allocated reply buffer,
1454 * that mean we can return whole data in reply. We can also fit more
1455 * data up to max_reply_size in total reply size, but this will cause
1456 * re-allocation on client and resend with larger buffer. This is still
1457 * faster than separate READ IO.
1458 * Third case if file is too big to fit even in maximum size, in that
1459 * case we return just tail to optimize possible append.
1461 * At the moment the following strategy is used:
1462 * 1) try to fit into the buffer we have
1463 * 2) return just file tail otherwise.
1465 if (mbo->mbo_dom_size <= len) {
1466 /* can fit whole data */
1467 len = mbo->mbo_dom_size;
1472 /* File tail offset must be aligned with larger page size
1473 * between client and server, so the maximum page size is
1474 * used here to align offset.
1476 * NB: DOM feature was introduced when server supports pagebits
1477 * already, so it should be always non-zero value. Report error
1478 * if it is not for some reason.
1480 if (!req->rq_export->exp_target_data.ted_pagebits) {
1481 CERROR("%s: client page bits are not saved on server\n",
1485 pgbits = max_t(int, PAGE_SHIFT,
1486 req->rq_export->exp_target_data.ted_pagebits);
1487 tail = mbo->mbo_dom_size % (1 << pgbits);
1489 /* no partial tail or tail can't fit in reply */
1490 if (tail == 0 || len < tail)
1494 offset = mbo->mbo_dom_size - len;
1496 LASSERT((offset & ~PAGE_MASK) == 0);
1497 rc = req_capsule_server_grow(pill, &RMF_NIOBUF_INLINE,
1498 sizeof(*rnb) + len);
1500 /* failed to grow data buffer, just exit */
1501 GOTO(out, rc = -E2BIG);
1504 /* re-take MDT_BODY and NIOBUF_INLINE buffers after the buffer grow */
1505 mbo = req_capsule_server_get(pill, &RMF_MDT_BODY);
1506 fid = &mbo->mbo_fid1;
1507 if (!fid_is_sane(fid))
1508 GOTO(out, rc = -EINVAL);
1510 rnb = req_capsule_server_get(tsi->tsi_pill, &RMF_NIOBUF_INLINE);
1512 GOTO(out, rc = -EPROTO);
1514 buf = (char *)rnb + sizeof(*rnb);
1516 rnb->rnb_offset = offset;
1518 mo = dt_locate(env, dt, fid);
1520 GOTO(out_rnb, rc = PTR_ERR(mo));
1521 LASSERT(mo != NULL);
1523 dt_read_lock(env, mo, 0);
1524 if (!dt_object_exists(mo))
1525 GOTO(unlock, rc = -ENOENT);
1527 /* parse remote buffers to local buffers and prepare the latter */
1528 lnbs = (len >> PAGE_SHIFT) + 1;
1529 OBD_ALLOC(lnb, sizeof(*lnb) * lnbs);
1531 GOTO(unlock, rc = -ENOMEM);
1533 rc = dt_bufs_get(env, mo, rnb, lnb, lnbs, 0);
1534 if (unlikely(rc < 0))
1536 LASSERT(rc <= lnbs);
1538 rc = dt_read_prep(env, mo, lnb, nr_local);
1541 /* copy data to the buffer finally */
1542 for (i = 0; i < nr_local; i++) {
1543 char *p = kmap(lnb[i].lnb_page);
1546 LASSERT(lnb[i].lnb_page_offset == 0);
1547 off = lnb[i].lnb_len & ~PAGE_MASK;
1549 memset(p + off, 0, PAGE_SIZE - off);
1551 memcpy(buf + (i << PAGE_SHIFT), p, lnb[i].lnb_len);
1552 kunmap(lnb[i].lnb_page);
1553 copied += lnb[i].lnb_len;
1556 CDEBUG(D_INFO, "Read %i (wanted %u) bytes from %llu\n", copied,
1559 CWARN("%s: read %i bytes for "DFID
1560 " but wanted %u, is size wrong?\n",
1561 tsi->tsi_exp->exp_obd->obd_name, copied,
1562 PFID(&tsi->tsi_fid), len);
1563 /* Ignore partially copied data */
1568 dt_bufs_put(env, mo, lnb, nr_local);
1570 OBD_FREE(lnb, sizeof(*lnb) * lnbs);
1572 dt_read_unlock(env, mo);
1573 lu_object_put(env, &mo->do_lu);
1575 rnb->rnb_len = copied;
1577 /* Don't fail OPEN request if read-on-open is failed, but drop
1578 * a message in log about the error.
1581 CDEBUG(D_INFO, "Read-on-open is failed, rc = %d", rc);
1587 * Completion AST for DOM discard locks:
1589 * CP AST an DOM discard lock is called always right after enqueue or from
1590 * reprocess if lock was blocked, in the latest case l_ast_data is set to
1591 * the mdt_object which is kept while there are pending locks on it.
1593 int ldlm_dom_discard_cp_ast(struct ldlm_lock *lock, __u64 flags, void *data)
1595 struct mdt_object *mo;
1596 struct lustre_handle dom_lh;
1601 /* l_ast_data is set when lock was not granted immediately
1602 * in mdt_dom_discard_data() below but put into waiting list,
1603 * so this CP callback means we are finished and corresponding
1604 * MDT object should be released finally as well as lock itself.
1606 lock_res_and_lock(lock);
1607 if (!lock->l_ast_data) {
1608 unlock_res_and_lock(lock);
1612 mo = lock->l_ast_data;
1613 lock->l_ast_data = NULL;
1614 unlock_res_and_lock(lock);
1616 ldlm_lock2handle(lock, &dom_lh);
1617 ldlm_lock_decref(&dom_lh, LCK_PW);
1619 env = lu_env_find();
1621 mdt_object_put(env, mo);
1626 void mdt_dom_discard_data(struct mdt_thread_info *info,
1627 struct mdt_object *mo)
1629 struct ptlrpc_request *req = mdt_info_req(info);
1630 struct mdt_device *mdt = mdt_dev(mo->mot_obj.lo_dev);
1631 union ldlm_policy_data policy;
1632 struct ldlm_res_id res_id;
1633 struct lustre_handle dom_lh;
1634 struct ldlm_lock *lock;
1635 __u64 flags = LDLM_FL_AST_DISCARD_DATA;
1641 if (req && req_is_replay(req))
1644 policy.l_inodebits.bits = MDS_INODELOCK_DOM;
1645 policy.l_inodebits.try_bits = 0;
1646 fid_build_reg_res_name(mdt_object_fid(mo), &res_id);
1648 /* Keep blocking version of discard for an old client to avoid
1649 * crashes on non-patched clients. LU-11359.
1651 old_client = req && !(exp_connect_flags2(req->rq_export) &
1652 OBD_CONNECT2_ASYNC_DISCARD);
1654 /* Tell the clients that the object is gone now and that they should
1655 * throw away any cached pages. */
1656 rc = ldlm_cli_enqueue_local(info->mti_env, mdt->mdt_namespace, &res_id,
1657 LDLM_IBITS, &policy, LCK_PW, &flags,
1658 ldlm_blocking_ast, old_client ?
1659 ldlm_completion_ast :
1660 ldlm_dom_discard_cp_ast,
1661 NULL, NULL, 0, LVB_T_NONE, NULL, &dom_lh);
1662 if (rc != ELDLM_OK) {
1664 "Failed to issue discard lock, rc = %d\n", rc);
1668 lock = ldlm_handle2lock(&dom_lh);
1669 lock_res_and_lock(lock);
1670 /* if lock is not granted then there are BL ASTs in progress and
1671 * lock will be granted in result of reprocessing with CP callback
1672 * notifying about that. The mdt object has to be kept until that and
1673 * it is saved in l_ast_data of the lock. Lock reference is kept too
1674 * until that to prevent it from canceling.
1676 if (!is_granted_or_cancelled_nolock(lock)) {
1677 mdt_object_get(info->mti_env, mo);
1678 lock->l_ast_data = mo;
1679 unlock_res_and_lock(lock);
1681 unlock_res_and_lock(lock);
1682 ldlm_lock_decref_and_cancel(&dom_lh, LCK_PW);
1684 LDLM_LOCK_PUT(lock);