Whamcloud - gitweb
d9d5a814b3ab9d8f13b9dcd3a0e5c0240e351d83
[fs/lustre-release.git] / lustre / target / tgt_handler.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2013, 2017, Intel Corporation.
25  */
26 /*
27  * lustre/target/tgt_handler.c
28  *
29  * Lustre Unified Target request handler code
30  *
31  * Author: Brian Behlendorf <behlendorf1@llnl.gov>
32  * Author: Mikhail Pershin <mike.pershin@intel.com>
33  */
34
35 #define DEBUG_SUBSYSTEM S_CLASS
36
37 #include <linux/user_namespace.h>
38 #ifdef HAVE_UIDGID_HEADER
39 # include <linux/uidgid.h>
40 #endif
41
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <obd_cksum.h>
45 #include <lustre_lfsck.h>
46 #include <lustre_nodemap.h>
47 #include <lustre_acl.h>
48
49 #include "tgt_internal.h"
50
51 char *tgt_name(struct lu_target *tgt)
52 {
53         LASSERT(tgt->lut_obd != NULL);
54         return tgt->lut_obd->obd_name;
55 }
56 EXPORT_SYMBOL(tgt_name);
57
58 /*
59  * Generic code handling requests that have struct mdt_body passed in:
60  *
61  *  - extract mdt_body from request and save it in @tsi, if present;
62  *
63  *  - create lu_object, corresponding to the fid in mdt_body, and save it in
64  *  @tsi;
65  *
66  *  - if HAS_BODY flag is set for this request type check whether object
67  *  actually exists on storage (lu_object_exists()).
68  *
69  */
70 static int tgt_mdt_body_unpack(struct tgt_session_info *tsi, __u32 flags)
71 {
72         const struct mdt_body   *body;
73         struct lu_object        *obj;
74         struct req_capsule      *pill = tsi->tsi_pill;
75         int                      rc;
76
77         ENTRY;
78
79         body = req_capsule_client_get(pill, &RMF_MDT_BODY);
80         if (body == NULL)
81                 RETURN(-EFAULT);
82
83         tsi->tsi_mdt_body = body;
84
85         if (!(body->mbo_valid & OBD_MD_FLID))
86                 RETURN(0);
87
88         /* mdc_pack_body() doesn't check if fid is zero and set OBD_ML_FID
89          * in any case in pre-2.5 clients. Fix that here if needed */
90         if (unlikely(fid_is_zero(&body->mbo_fid1)))
91                 RETURN(0);
92
93         if (!fid_is_sane(&body->mbo_fid1)) {
94                 CERROR("%s: invalid FID: "DFID"\n", tgt_name(tsi->tsi_tgt),
95                        PFID(&body->mbo_fid1));
96                 RETURN(-EINVAL);
97         }
98
99         obj = lu_object_find(tsi->tsi_env,
100                              &tsi->tsi_tgt->lut_bottom->dd_lu_dev,
101                              &body->mbo_fid1, NULL);
102         if (!IS_ERR(obj)) {
103                 if ((flags & HAS_BODY) && !lu_object_exists(obj)) {
104                         lu_object_put(tsi->tsi_env, obj);
105                         rc = -ENOENT;
106                 } else {
107                         tsi->tsi_corpus = obj;
108                         rc = 0;
109                 }
110         } else {
111                 rc = PTR_ERR(obj);
112         }
113
114         tsi->tsi_fid = body->mbo_fid1;
115
116         RETURN(rc);
117 }
118
119 /**
120  * Validate oa from client.
121  * If the request comes from 2.0 clients, currently only RSVD seq and IDIF
122  * req are valid.
123  *    a. objects in Single MDT FS  seq = FID_SEQ_OST_MDT0, oi_id != 0
124  *    b. Echo objects(seq = 2), old echo client still use oi_id/oi_seq to
125  *       pack ost_id. Because non-zero oi_seq will make it diffcult to tell
126  *       whether this is oi_fid or real ostid. So it will check
127  *       OBD_CONNECT_FID, then convert the ostid to FID for old client.
128  *    c. Old FID-disable osc will send IDIF.
129  *    d. new FID-enable osc/osp will send normal FID.
130  *
131  * And also oi_id/f_oid should always start from 1. oi_id/f_oid = 0 will
132  * be used for LAST_ID file, and only being accessed inside OST now.
133  */
134 int tgt_validate_obdo(struct tgt_session_info *tsi, struct obdo *oa)
135 {
136         struct ost_id   *oi     = &oa->o_oi;
137         u64              seq    = ostid_seq(oi);
138         u64              id     = ostid_id(oi);
139         int              rc;
140         ENTRY;
141
142         if (unlikely(!(exp_connect_flags(tsi->tsi_exp) & OBD_CONNECT_FID) &&
143                      fid_seq_is_echo(seq))) {
144                 /* Sigh 2.[123] client still sends echo req with oi_id = 0
145                  * during create, and we will reset this to 1, since this
146                  * oi_id is basically useless in the following create process,
147                  * but oi_id == 0 will make it difficult to tell whether it is
148                  * real FID or ost_id. */
149                 oi->oi_fid.f_seq = FID_SEQ_ECHO;
150                 oi->oi_fid.f_oid = id ?: 1;
151                 oi->oi_fid.f_ver = 0;
152         } else {
153                 struct tgt_thread_info *tti = tgt_th_info(tsi->tsi_env);
154
155                 if (unlikely((oa->o_valid & OBD_MD_FLID) && id == 0))
156                         GOTO(out, rc = -EPROTO);
157
158                 /* Note: this check might be forced in 2.5 or 2.6, i.e.
159                  * all of the requests are required to setup FLGROUP */
160                 if (unlikely(!(oa->o_valid & OBD_MD_FLGROUP))) {
161                         ostid_set_seq_mdt0(oi);
162                         oa->o_valid |= OBD_MD_FLGROUP;
163                         seq = ostid_seq(oi);
164                 }
165
166                 if (unlikely(!(fid_seq_is_idif(seq) || fid_seq_is_mdt0(seq) ||
167                                fid_seq_is_norm(seq) || fid_seq_is_echo(seq))))
168                         GOTO(out, rc = -EPROTO);
169
170                 rc = ostid_to_fid(&tti->tti_fid1, oi,
171                                   tsi->tsi_tgt->lut_lsd.lsd_osd_index);
172                 if (unlikely(rc != 0))
173                         GOTO(out, rc);
174
175                 oi->oi_fid = tti->tti_fid1;
176         }
177
178         RETURN(0);
179
180 out:
181         CERROR("%s: client %s sent bad object "DOSTID": rc = %d\n",
182                tgt_name(tsi->tsi_tgt), obd_export_nid2str(tsi->tsi_exp),
183                seq, id, rc);
184         return rc;
185 }
186 EXPORT_SYMBOL(tgt_validate_obdo);
187
188 static int tgt_io_data_unpack(struct tgt_session_info *tsi, struct ost_id *oi)
189 {
190         unsigned                 max_brw;
191         struct niobuf_remote    *rnb;
192         struct obd_ioobj        *ioo;
193         int                      obj_count;
194
195         ENTRY;
196
197         ioo = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_IOOBJ);
198         if (ioo == NULL)
199                 RETURN(-EPROTO);
200
201         rnb = req_capsule_client_get(tsi->tsi_pill, &RMF_NIOBUF_REMOTE);
202         if (rnb == NULL)
203                 RETURN(-EPROTO);
204
205         max_brw = ioobj_max_brw_get(ioo);
206         if (unlikely((max_brw & (max_brw - 1)) != 0)) {
207                 CERROR("%s: client %s sent bad ioobj max %u for "DOSTID
208                        ": rc = %d\n", tgt_name(tsi->tsi_tgt),
209                        obd_export_nid2str(tsi->tsi_exp), max_brw,
210                        POSTID(oi), -EPROTO);
211                 RETURN(-EPROTO);
212         }
213         ioo->ioo_oid = *oi;
214
215         obj_count = req_capsule_get_size(tsi->tsi_pill, &RMF_OBD_IOOBJ,
216                                         RCL_CLIENT) / sizeof(*ioo);
217         if (obj_count == 0) {
218                 CERROR("%s: short ioobj\n", tgt_name(tsi->tsi_tgt));
219                 RETURN(-EPROTO);
220         } else if (obj_count > 1) {
221                 CERROR("%s: too many ioobjs (%d)\n", tgt_name(tsi->tsi_tgt),
222                        obj_count);
223                 RETURN(-EPROTO);
224         }
225
226         if (ioo->ioo_bufcnt == 0) {
227                 CERROR("%s: ioo has zero bufcnt\n", tgt_name(tsi->tsi_tgt));
228                 RETURN(-EPROTO);
229         }
230
231         if (ioo->ioo_bufcnt > PTLRPC_MAX_BRW_PAGES) {
232                 DEBUG_REQ(D_RPCTRACE, tgt_ses_req(tsi),
233                           "bulk has too many pages (%d)",
234                           ioo->ioo_bufcnt);
235                 RETURN(-EPROTO);
236         }
237
238         RETURN(0);
239 }
240
241 static int tgt_ost_body_unpack(struct tgt_session_info *tsi, __u32 flags)
242 {
243         struct ost_body         *body;
244         struct req_capsule      *pill = tsi->tsi_pill;
245         struct lu_nodemap       *nodemap;
246         int                      rc;
247
248         ENTRY;
249
250         body = req_capsule_client_get(pill, &RMF_OST_BODY);
251         if (body == NULL)
252                 RETURN(-EFAULT);
253
254         rc = tgt_validate_obdo(tsi, &body->oa);
255         if (rc)
256                 RETURN(rc);
257
258         nodemap = nodemap_get_from_exp(tsi->tsi_exp);
259         if (IS_ERR(nodemap))
260                 RETURN(PTR_ERR(nodemap));
261
262         body->oa.o_uid = nodemap_map_id(nodemap, NODEMAP_UID,
263                                         NODEMAP_CLIENT_TO_FS,
264                                         body->oa.o_uid);
265         body->oa.o_gid = nodemap_map_id(nodemap, NODEMAP_GID,
266                                         NODEMAP_CLIENT_TO_FS,
267                                         body->oa.o_gid);
268         nodemap_putref(nodemap);
269
270         tsi->tsi_ost_body = body;
271         tsi->tsi_fid = body->oa.o_oi.oi_fid;
272
273         if (req_capsule_has_field(pill, &RMF_OBD_IOOBJ, RCL_CLIENT)) {
274                 rc = tgt_io_data_unpack(tsi, &body->oa.o_oi);
275                 if (rc < 0)
276                         RETURN(rc);
277         }
278
279         if (!(body->oa.o_valid & OBD_MD_FLID)) {
280                 if (flags & HAS_BODY) {
281                         CERROR("%s: OBD_MD_FLID flag is not set in ost_body but OID/FID is mandatory with HAS_BODY\n",
282                                tgt_name(tsi->tsi_tgt));
283                         RETURN(-EPROTO);
284                 } else {
285                         RETURN(0);
286                 }
287         }
288
289         ost_fid_build_resid(&tsi->tsi_fid, &tsi->tsi_resid);
290
291         /*
292          * OST doesn't get object in advance for further use to prevent
293          * situations with nested object_find which is potential deadlock.
294          */
295         tsi->tsi_corpus = NULL;
296         RETURN(rc);
297 }
298
299 /*
300  * Do necessary preprocessing according to handler ->th_flags.
301  */
302 static int tgt_request_preprocess(struct tgt_session_info *tsi,
303                                   struct tgt_handler *h,
304                                   struct ptlrpc_request *req)
305 {
306         struct req_capsule      *pill = tsi->tsi_pill;
307         __u32                    flags = h->th_flags;
308         int                      rc = 0;
309
310         ENTRY;
311
312         if (tsi->tsi_preprocessed)
313                 RETURN(0);
314
315         LASSERT(h->th_act != NULL);
316         LASSERT(h->th_opc == lustre_msg_get_opc(req->rq_reqmsg));
317         LASSERT(current->journal_info == NULL);
318
319         LASSERT(ergo(flags & (HAS_BODY | HAS_REPLY),
320                      h->th_fmt != NULL));
321         if (h->th_fmt != NULL) {
322                 req_capsule_set(pill, h->th_fmt);
323                 if (req_capsule_has_field(pill, &RMF_MDT_BODY, RCL_CLIENT)) {
324                         rc = tgt_mdt_body_unpack(tsi, flags);
325                         if (rc < 0)
326                                 RETURN(rc);
327                 } else if (req_capsule_has_field(pill, &RMF_OST_BODY,
328                                                  RCL_CLIENT)) {
329                         rc = tgt_ost_body_unpack(tsi, flags);
330                         if (rc < 0)
331                                 RETURN(rc);
332                 }
333         }
334
335         if (flags & IS_MUTABLE && tgt_conn_flags(tsi) & OBD_CONNECT_RDONLY)
336                 RETURN(-EROFS);
337
338         if (flags & HAS_KEY) {
339                 struct ldlm_request *dlm_req;
340
341                 LASSERT(h->th_fmt != NULL);
342
343                 dlm_req = req_capsule_client_get(pill, &RMF_DLM_REQ);
344                 if (dlm_req != NULL) {
345                         union ldlm_wire_policy_data *policy =
346                                         &dlm_req->lock_desc.l_policy_data;
347
348                         if (unlikely(dlm_req->lock_desc.l_resource.lr_type ==
349                                      LDLM_IBITS &&
350                                      (policy->l_inodebits.bits |
351                                       policy->l_inodebits.try_bits) == 0)) {
352                                 /*
353                                  * Lock without inodebits makes no sense and
354                                  * will oops later in ldlm. If client miss to
355                                  * set such bits, do not trigger ASSERTION.
356                                  *
357                                  * For liblustre flock case, it maybe zero.
358                                  */
359                                 rc = -EPROTO;
360                         } else {
361                                 tsi->tsi_dlm_req = dlm_req;
362                         }
363                 } else {
364                         rc = -EFAULT;
365                 }
366         }
367         tsi->tsi_preprocessed = 1;
368         RETURN(rc);
369 }
370
371 /*
372  * Invoke handler for this request opc. Also do necessary preprocessing
373  * (according to handler ->th_flags), and post-processing (setting of
374  * ->last_{xid,committed}).
375  */
376 static int tgt_handle_request0(struct tgt_session_info *tsi,
377                                struct tgt_handler *h,
378                                struct ptlrpc_request *req)
379 {
380         int      serious = 0;
381         int      rc;
382         __u32    opc = lustre_msg_get_opc(req->rq_reqmsg);
383
384         ENTRY;
385
386
387         /* When dealing with sec context requests, no export is associated yet,
388          * because these requests are sent before *_CONNECT requests.
389          * A NULL req->rq_export means the normal *_common_slice handlers will
390          * not be called, because there is no reference to the target.
391          * So deal with them by hand and jump directly to target_send_reply().
392          */
393         switch (opc) {
394         case SEC_CTX_INIT:
395         case SEC_CTX_INIT_CONT:
396         case SEC_CTX_FINI:
397                 CFS_FAIL_TIMEOUT(OBD_FAIL_SEC_CTX_HDL_PAUSE, cfs_fail_val);
398                 GOTO(out, rc = 0);
399         }
400
401         /*
402          * Checking for various OBD_FAIL_$PREF_$OPC_NET codes. _Do_ not try
403          * to put same checks into handlers like mdt_close(), mdt_reint(),
404          * etc., without talking to mdt authors first. Checking same thing
405          * there again is useless and returning 0 error without packing reply
406          * is buggy! Handlers either pack reply or return error.
407          *
408          * We return 0 here and do not send any reply in order to emulate
409          * network failure. Do not send any reply in case any of NET related
410          * fail_id has occured.
411          */
412         if (OBD_FAIL_CHECK_ORSET(h->th_fail_id, OBD_FAIL_ONCE))
413                 RETURN(0);
414         if (unlikely(lustre_msg_get_opc(req->rq_reqmsg) == MDS_REINT &&
415                      OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_MULTI_NET)))
416                 RETURN(0);
417
418         rc = tgt_request_preprocess(tsi, h, req);
419         /* pack reply if reply format is fixed */
420         if (rc == 0 && h->th_flags & HAS_REPLY) {
421                 /* Pack reply */
422                 if (req_capsule_has_field(tsi->tsi_pill, &RMF_MDT_MD,
423                                           RCL_SERVER))
424                         req_capsule_set_size(tsi->tsi_pill, &RMF_MDT_MD,
425                                              RCL_SERVER,
426                                              tsi->tsi_mdt_body->mbo_eadatasize);
427                 if (req_capsule_has_field(tsi->tsi_pill, &RMF_LOGCOOKIES,
428                                           RCL_SERVER))
429                         req_capsule_set_size(tsi->tsi_pill, &RMF_LOGCOOKIES,
430                                              RCL_SERVER, 0);
431                 if (req_capsule_has_field(tsi->tsi_pill, &RMF_ACL, RCL_SERVER))
432                         req_capsule_set_size(tsi->tsi_pill,
433                                              &RMF_ACL, RCL_SERVER,
434                                              LUSTRE_POSIX_ACL_MAX_SIZE_OLD);
435
436                 if (req_capsule_has_field(tsi->tsi_pill, &RMF_SHORT_IO,
437                                           RCL_SERVER)) {
438                         struct niobuf_remote *remote_nb =
439                                 req_capsule_client_get(tsi->tsi_pill,
440                                                        &RMF_NIOBUF_REMOTE);
441                         struct ost_body *body = tsi->tsi_ost_body;
442
443                         req_capsule_set_size(tsi->tsi_pill, &RMF_SHORT_IO,
444                                          RCL_SERVER,
445                                          (body->oa.o_flags & OBD_FL_SHORT_IO) ?
446                                          remote_nb[0].rnb_len : 0);
447                 }
448
449                 rc = req_capsule_server_pack(tsi->tsi_pill);
450         }
451
452         if (likely(rc == 0)) {
453                 /*
454                  * Process request, there can be two types of rc:
455                  * 1) errors with msg unpack/pack, other failures outside the
456                  * operation itself. This is counted as serious errors;
457                  * 2) errors during fs operation, should be placed in rq_status
458                  * only
459                  */
460                 rc = h->th_act(tsi);
461                 if (!is_serious(rc) &&
462                     !req->rq_no_reply && req->rq_reply_state == NULL) {
463                         DEBUG_REQ(D_ERROR, req,
464                                   "%s: %s handler did not pack reply but returned no error",
465                                   tgt_name(tsi->tsi_tgt), h->th_name);
466                         LBUG();
467                 }
468                 serious = is_serious(rc);
469                 rc = clear_serious(rc);
470         } else {
471                 serious = 1;
472         }
473
474         req->rq_status = rc;
475
476         /*
477          * ELDLM_* codes which > 0 should be in rq_status only as well as
478          * all non-serious errors.
479          */
480         if (rc > 0 || !serious)
481                 rc = 0;
482
483         LASSERT(current->journal_info == NULL);
484
485         if (likely(rc == 0 && req->rq_export))
486                 target_committed_to_req(req);
487
488 out:
489         target_send_reply(req, rc, tsi->tsi_reply_fail_id);
490         RETURN(0);
491 }
492
493 static int tgt_filter_recovery_request(struct ptlrpc_request *req,
494                                        struct obd_device *obd, int *process)
495 {
496         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
497         case MDS_DISCONNECT:
498         case OST_DISCONNECT:
499         case OBD_IDX_READ:
500                 *process = 1;
501                 RETURN(0);
502         case MDS_CLOSE:
503         case MDS_SYNC: /* used in unmounting */
504         case OBD_PING:
505         case MDS_REINT:
506         case OUT_UPDATE:
507         case SEQ_QUERY:
508         case FLD_QUERY:
509         case FLD_READ:
510         case LDLM_ENQUEUE:
511         case OST_CREATE:
512         case OST_DESTROY:
513         case OST_PUNCH:
514         case OST_SETATTR:
515         case OST_SYNC:
516         case OST_WRITE:
517         case MDS_HSM_PROGRESS:
518         case MDS_HSM_STATE_SET:
519         case MDS_HSM_REQUEST:
520                 *process = target_queue_recovery_request(req, obd);
521                 RETURN(0);
522
523         default:
524                 DEBUG_REQ(D_ERROR, req, "not permitted during recovery");
525                 *process = -EAGAIN;
526                 RETURN(0);
527         }
528 }
529
530 /*
531  * Handle recovery. Return:
532  *        +1: continue request processing;
533  *       -ve: abort immediately with the given error code;
534  *         0: send reply with error code in req->rq_status;
535  */
536 static int tgt_handle_recovery(struct ptlrpc_request *req, int reply_fail_id)
537 {
538         ENTRY;
539
540         switch (lustre_msg_get_opc(req->rq_reqmsg)) {
541         case MDS_CONNECT:
542         case OST_CONNECT:
543         case MGS_CONNECT:
544         case SEC_CTX_INIT:
545         case SEC_CTX_INIT_CONT:
546         case SEC_CTX_FINI:
547                 RETURN(+1);
548         }
549
550         if (!req->rq_export->exp_obd->obd_replayable)
551                 RETURN(+1);
552
553         /* sanity check: if the xid matches, the request must be marked as a
554          * resent or replayed */
555         if (req_can_reconstruct(req, NULL)) {
556                 if (!(lustre_msg_get_flags(req->rq_reqmsg) &
557                       (MSG_RESENT | MSG_REPLAY))) {
558                         DEBUG_REQ(D_WARNING, req,
559                                   "rq_xid=%llu matches saved XID, expected REPLAY or RESENT flag (%x)",
560                                   req->rq_xid,
561                                   lustre_msg_get_flags(req->rq_reqmsg));
562                         req->rq_status = -ENOTCONN;
563                         RETURN(-ENOTCONN);
564                 }
565         }
566         /* else: note the opposite is not always true; a RESENT req after a
567          * failover will usually not match the last_xid, since it was likely
568          * never committed. A REPLAYed request will almost never match the
569          * last xid, however it could for a committed, but still retained,
570          * open. */
571
572         /* Check for aborted recovery... */
573         if (unlikely(req->rq_export->exp_obd->obd_recovering)) {
574                 int rc;
575                 int should_process;
576
577                 DEBUG_REQ(D_INFO, req, "Got new replay");
578                 rc = tgt_filter_recovery_request(req, req->rq_export->exp_obd,
579                                                  &should_process);
580                 if (rc != 0 || !should_process)
581                         RETURN(rc);
582                 else if (should_process < 0) {
583                         req->rq_status = should_process;
584                         rc = ptlrpc_error(req);
585                         RETURN(rc);
586                 }
587         }
588         RETURN(+1);
589 }
590
591 /* Initial check for request, it is validation mostly */
592 static struct tgt_handler *tgt_handler_find_check(struct ptlrpc_request *req)
593 {
594         struct tgt_handler      *h;
595         struct tgt_opc_slice    *s;
596         struct lu_target        *tgt;
597         __u32                    opc = lustre_msg_get_opc(req->rq_reqmsg);
598
599         ENTRY;
600
601         tgt = class_exp2tgt(req->rq_export);
602         if (unlikely(tgt == NULL)) {
603                 DEBUG_REQ(D_ERROR, req, "%s: no target for connected export",
604                           class_exp2obd(req->rq_export)->obd_name);
605                 RETURN(ERR_PTR(-EINVAL));
606         }
607
608         for (s = tgt->lut_slice; s->tos_hs != NULL; s++)
609                 if (s->tos_opc_start <= opc && opc < s->tos_opc_end)
610                         break;
611
612         /* opcode was not found in slice */
613         if (unlikely(s->tos_hs == NULL)) {
614                 CERROR("%s: no handlers for opcode 0x%x\n", tgt_name(tgt),
615                        opc);
616                 RETURN(ERR_PTR(-ENOTSUPP));
617         }
618
619         LASSERT(opc >= s->tos_opc_start && opc < s->tos_opc_end);
620         h = s->tos_hs + (opc - s->tos_opc_start);
621         if (unlikely(h->th_opc == 0)) {
622                 CERROR("%s: unsupported opcode 0x%x\n", tgt_name(tgt), opc);
623                 RETURN(ERR_PTR(-ENOTSUPP));
624         }
625
626         RETURN(h);
627 }
628
629 static int process_req_last_xid(struct ptlrpc_request *req)
630 {
631         __u64   last_xid;
632         ENTRY;
633
634         /* check request's xid is consistent with export's last_xid */
635         last_xid = lustre_msg_get_last_xid(req->rq_reqmsg);
636         if (last_xid > req->rq_export->exp_last_xid)
637                 req->rq_export->exp_last_xid = last_xid;
638
639         if (req->rq_xid == 0 ||
640             (req->rq_xid <= req->rq_export->exp_last_xid)) {
641                 DEBUG_REQ(D_WARNING, req,
642                           "unexpected rq_xid=%llx != exp_last_xid=%llx",
643                           req->rq_xid, req->rq_export->exp_last_xid);
644                 /* Some request is allowed to be sent during replay,
645                  * such as OUT update requests, FLD requests, so it
646                  * is possible that replay requests has smaller XID
647                  * than the exp_last_xid.
648                  *
649                  * Some non-replay requests may have smaller XID as
650                  * well:
651                  *
652                  * - Client send a no_resend RPC, like statfs;
653                  * - The RPC timedout (or some other error) on client,
654                  *   then it's removed from the unreplied list;
655                  * - Client send some other request to bump the
656                  *   exp_last_xid on server;
657                  * - The former RPC got chance to be processed;
658                  */
659                 if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY))
660                         RETURN(-EPROTO);
661         }
662
663         /* The "last_xid" is the minimum xid among unreplied requests,
664          * if the request is from the previous connection, its xid can
665          * still be larger than "exp_last_xid", then the above check of
666          * xid is not enough to determine whether the request is delayed.
667          *
668          * For example, if some replay request was delayed and caused
669          * timeout at client and the replay is restarted, the delayed
670          * replay request will have the larger xid than "exp_last_xid"
671          */
672         if (req->rq_export->exp_conn_cnt >
673             lustre_msg_get_conn_cnt(req->rq_reqmsg))
674                 RETURN(-ESTALE);
675
676         /* try to release in-memory reply data */
677         if (tgt_is_multimodrpcs_client(req->rq_export)) {
678                 tgt_handle_received_xid(req->rq_export,
679                                 lustre_msg_get_last_xid(req->rq_reqmsg));
680                 if (!(lustre_msg_get_flags(req->rq_reqmsg) &
681                       (MSG_RESENT | MSG_REPLAY)))
682                         tgt_handle_tag(req->rq_export,
683                                        lustre_msg_get_tag(req->rq_reqmsg));
684         }
685         RETURN(0);
686 }
687
688 int tgt_request_handle(struct ptlrpc_request *req)
689 {
690         struct tgt_session_info *tsi = tgt_ses_info(req->rq_svc_thread->t_env);
691
692         struct lustre_msg       *msg = req->rq_reqmsg;
693         struct tgt_handler      *h;
694         struct lu_target        *tgt;
695         int                      request_fail_id = 0;
696         __u32                    opc = lustre_msg_get_opc(msg);
697         struct obd_device       *obd;
698         int                      rc;
699         bool                     is_connect = false;
700         ENTRY;
701
702         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_TGT_RECOVERY_REQ_RACE))) {
703                 if (cfs_fail_val == 0 &&
704                     lustre_msg_get_opc(msg) != OBD_PING &&
705                     lustre_msg_get_flags(msg) & MSG_REQ_REPLAY_DONE) {
706                         struct l_wait_info lwi =  { 0 };
707
708                         cfs_fail_val = 1;
709                         cfs_race_state = 0;
710                         l_wait_event(cfs_race_waitq, (cfs_race_state == 1),
711                                      &lwi);
712                 }
713         }
714
715         /* Refill the context, to make sure all thread keys are allocated */
716         lu_env_refill(req->rq_svc_thread->t_env);
717
718         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
719         tsi->tsi_pill = &req->rq_pill;
720         tsi->tsi_env = req->rq_svc_thread->t_env;
721
722         /* if request has export then get handlers slice from corresponding
723          * target, otherwise that should be connect operation */
724         if (opc == MDS_CONNECT || opc == OST_CONNECT ||
725             opc == MGS_CONNECT) {
726                 is_connect = true;
727                 req_capsule_set(&req->rq_pill, &RQF_CONNECT);
728                 rc = target_handle_connect(req);
729                 if (rc != 0) {
730                         rc = ptlrpc_error(req);
731                         GOTO(out, rc);
732                 }
733                 /* recovery-small test 18c asks to drop connect reply */
734                 if (unlikely(opc == OST_CONNECT &&
735                              OBD_FAIL_CHECK(OBD_FAIL_OST_CONNECT_NET2)))
736                         GOTO(out, rc = 0);
737         }
738
739         if (unlikely(!class_connected_export(req->rq_export))) {
740                 if (opc == SEC_CTX_INIT || opc == SEC_CTX_INIT_CONT ||
741                     opc == SEC_CTX_FINI) {
742                         /* sec context initialization has to be handled
743                          * by hand in tgt_handle_request0() */
744                         tsi->tsi_reply_fail_id = OBD_FAIL_SEC_CTX_INIT_NET;
745                         h = NULL;
746                         GOTO(handle_recov, rc = 0);
747                 }
748                 CDEBUG(D_HA, "operation %d on unconnected OST from %s\n",
749                        opc, libcfs_id2str(req->rq_peer));
750                 req->rq_status = -ENOTCONN;
751                 rc = ptlrpc_error(req);
752                 GOTO(out, rc);
753         }
754
755         tsi->tsi_tgt = tgt = class_exp2tgt(req->rq_export);
756         tsi->tsi_exp = req->rq_export;
757         if (exp_connect_flags(req->rq_export) & OBD_CONNECT_JOBSTATS)
758                 tsi->tsi_jobid = lustre_msg_get_jobid(req->rq_reqmsg);
759         else
760                 tsi->tsi_jobid = NULL;
761
762         if (tgt == NULL) {
763                 DEBUG_REQ(D_ERROR, req, "%s: No target for connected export",
764                           class_exp2obd(req->rq_export)->obd_name);
765                 req->rq_status = -EINVAL;
766                 rc = ptlrpc_error(req);
767                 GOTO(out, rc);
768         }
769
770         /* Skip last_xid processing for the recovery thread, otherwise, the
771          * last_xid on same request could be processed twice: first time when
772          * processing the incoming request, second time when the request is
773          * being processed by recovery thread. */
774         obd = class_exp2obd(req->rq_export);
775         if (is_connect) {
776                 /* reset the exp_last_xid on each connection. */
777                 req->rq_export->exp_last_xid = 0;
778         } else if (obd->obd_recovery_data.trd_processing_task !=
779                    current_pid()) {
780                 rc = process_req_last_xid(req);
781                 if (rc) {
782                         req->rq_status = rc;
783                         rc = ptlrpc_error(req);
784                         GOTO(out, rc);
785                 }
786         }
787
788         request_fail_id = tgt->lut_request_fail_id;
789         tsi->tsi_reply_fail_id = tgt->lut_reply_fail_id;
790
791         h = tgt_handler_find_check(req);
792         if (IS_ERR(h)) {
793                 req->rq_status = PTR_ERR(h);
794                 rc = ptlrpc_error(req);
795                 GOTO(out, rc);
796         }
797
798         LASSERTF(h->th_opc == opc, "opcode mismatch %d != %d\n",
799                  h->th_opc, opc);
800
801         if ((cfs_fail_val == 0 || cfs_fail_val == opc) &&
802              CFS_FAIL_CHECK_ORSET(request_fail_id, CFS_FAIL_ONCE))
803                 GOTO(out, rc = 0);
804
805         rc = lustre_msg_check_version(msg, h->th_version);
806         if (unlikely(rc)) {
807                 DEBUG_REQ(D_ERROR, req,
808                           "%s: drop malformed request version=%08x expect=%08x",
809                           tgt_name(tgt), lustre_msg_get_version(msg),
810                           h->th_version);
811                 req->rq_status = -EINVAL;
812                 rc = ptlrpc_error(req);
813                 GOTO(out, rc);
814         }
815
816 handle_recov:
817         rc = tgt_handle_recovery(req, tsi->tsi_reply_fail_id);
818         if (likely(rc == 1)) {
819                 rc = tgt_handle_request0(tsi, h, req);
820                 if (rc)
821                         GOTO(out, rc);
822         }
823         EXIT;
824 out:
825         req_capsule_fini(tsi->tsi_pill);
826         if (tsi->tsi_corpus != NULL) {
827                 lu_object_put(tsi->tsi_env, tsi->tsi_corpus);
828                 tsi->tsi_corpus = NULL;
829         }
830         return rc;
831 }
832 EXPORT_SYMBOL(tgt_request_handle);
833
834 /** Assign high priority operations to the request if needed. */
835 int tgt_hpreq_handler(struct ptlrpc_request *req)
836 {
837         struct tgt_session_info *tsi = tgt_ses_info(req->rq_svc_thread->t_env);
838         struct tgt_handler      *h;
839         int                      rc;
840
841         ENTRY;
842
843         if (req->rq_export == NULL)
844                 RETURN(0);
845
846         req_capsule_init(&req->rq_pill, req, RCL_SERVER);
847         tsi->tsi_pill = &req->rq_pill;
848         tsi->tsi_env = req->rq_svc_thread->t_env;
849         tsi->tsi_tgt = class_exp2tgt(req->rq_export);
850         tsi->tsi_exp = req->rq_export;
851
852         h = tgt_handler_find_check(req);
853         if (IS_ERR(h)) {
854                 rc = PTR_ERR(h);
855                 RETURN(rc);
856         }
857
858         rc = tgt_request_preprocess(tsi, h, req);
859         if (unlikely(rc != 0))
860                 RETURN(rc);
861
862         if (h->th_hp != NULL)
863                 h->th_hp(tsi);
864         RETURN(0);
865 }
866 EXPORT_SYMBOL(tgt_hpreq_handler);
867
868 void tgt_counter_incr(struct obd_export *exp, int opcode)
869 {
870         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
871         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats != NULL)
872                 lprocfs_counter_incr(exp->exp_nid_stats->nid_stats, opcode);
873 }
874 EXPORT_SYMBOL(tgt_counter_incr);
875
876 /*
877  * Unified target generic handlers.
878  */
879
880 int tgt_connect_check_sptlrpc(struct ptlrpc_request *req, struct obd_export *exp)
881 {
882         struct lu_target        *tgt = class_exp2tgt(exp);
883         struct sptlrpc_flavor    flvr;
884         int                      rc = 0;
885
886         LASSERT(tgt);
887         LASSERT(tgt->lut_obd);
888         LASSERT(tgt->lut_slice);
889
890         /* always allow ECHO client */
891         if (unlikely(strcmp(exp->exp_obd->obd_type->typ_name,
892                             LUSTRE_ECHO_NAME) == 0)) {
893                 exp->exp_flvr.sf_rpc = SPTLRPC_FLVR_ANY;
894                 return 0;
895         }
896
897         if (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_INVALID) {
898                 read_lock(&tgt->lut_sptlrpc_lock);
899                 sptlrpc_target_choose_flavor(&tgt->lut_sptlrpc_rset,
900                                              req->rq_sp_from,
901                                              req->rq_peer.nid,
902                                              &flvr);
903                 read_unlock(&tgt->lut_sptlrpc_lock);
904
905                 spin_lock(&exp->exp_lock);
906                 exp->exp_sp_peer = req->rq_sp_from;
907                 exp->exp_flvr = flvr;
908
909                 /* when on mgs, if no restriction is set, or if client
910                  * is loopback, allow any flavor */
911                 if ((strcmp(exp->exp_obd->obd_type->typ_name,
912                            LUSTRE_MGS_NAME) == 0) &&
913                      (exp->exp_flvr.sf_rpc == SPTLRPC_FLVR_NULL ||
914                       LNET_NETTYP(LNET_NIDNET(exp->exp_connection->c_peer.nid))
915                       == LOLND))
916                         exp->exp_flvr.sf_rpc = SPTLRPC_FLVR_ANY;
917
918                 if (exp->exp_flvr.sf_rpc != SPTLRPC_FLVR_ANY &&
919                     exp->exp_flvr.sf_rpc != req->rq_flvr.sf_rpc) {
920                         CERROR("%s: unauthorized rpc flavor %x from %s, "
921                                "expect %x\n", tgt_name(tgt),
922                                req->rq_flvr.sf_rpc,
923                                libcfs_nid2str(req->rq_peer.nid),
924                                exp->exp_flvr.sf_rpc);
925                         rc = -EACCES;
926                 }
927                 spin_unlock(&exp->exp_lock);
928         } else {
929                 if (exp->exp_sp_peer != req->rq_sp_from) {
930                         CERROR("%s: RPC source %s doesn't match %s\n",
931                                tgt_name(tgt),
932                                sptlrpc_part2name(req->rq_sp_from),
933                                sptlrpc_part2name(exp->exp_sp_peer));
934                         rc = -EACCES;
935                 } else {
936                         rc = sptlrpc_target_export_check(exp, req);
937                 }
938         }
939
940         return rc;
941 }
942
943 int tgt_adapt_sptlrpc_conf(struct lu_target *tgt)
944 {
945         struct sptlrpc_rule_set  tmp_rset;
946         int                      rc;
947
948         if (unlikely(tgt == NULL)) {
949                 CERROR("No target passed");
950                 return -EINVAL;
951         }
952
953         sptlrpc_rule_set_init(&tmp_rset);
954         rc = sptlrpc_conf_target_get_rules(tgt->lut_obd, &tmp_rset);
955         if (rc) {
956                 CERROR("%s: failed get sptlrpc rules: rc = %d\n",
957                        tgt_name(tgt), rc);
958                 return rc;
959         }
960
961         sptlrpc_target_update_exp_flavor(tgt->lut_obd, &tmp_rset);
962
963         write_lock(&tgt->lut_sptlrpc_lock);
964         sptlrpc_rule_set_free(&tgt->lut_sptlrpc_rset);
965         tgt->lut_sptlrpc_rset = tmp_rset;
966         write_unlock(&tgt->lut_sptlrpc_lock);
967
968         return 0;
969 }
970 EXPORT_SYMBOL(tgt_adapt_sptlrpc_conf);
971
972 int tgt_connect(struct tgt_session_info *tsi)
973 {
974         struct ptlrpc_request   *req = tgt_ses_req(tsi);
975         struct obd_connect_data *reply;
976         int                      rc;
977
978         ENTRY;
979
980         /* XXX: better to call this check right after getting new export but
981          * before last_rcvd slot allocation to avoid server load upon insecure
982          * connects. This is to be fixed after unifiyng all targets.
983          */
984         rc = tgt_connect_check_sptlrpc(req, tsi->tsi_exp);
985         if (rc)
986                 GOTO(out, rc);
987
988         /* To avoid exposing partially initialized connection flags, changes up
989          * to this point have been staged in reply->ocd_connect_flags. Now that
990          * connection handling has completed successfully, atomically update
991          * the connect flags in the shared export data structure. LU-1623 */
992         reply = req_capsule_server_get(tsi->tsi_pill, &RMF_CONNECT_DATA);
993         spin_lock(&tsi->tsi_exp->exp_lock);
994         *exp_connect_flags_ptr(tsi->tsi_exp) = reply->ocd_connect_flags;
995         if (reply->ocd_connect_flags & OBD_CONNECT_FLAGS2)
996                 *exp_connect_flags2_ptr(tsi->tsi_exp) =
997                         reply->ocd_connect_flags2;
998         tsi->tsi_exp->exp_connect_data.ocd_brw_size = reply->ocd_brw_size;
999         spin_unlock(&tsi->tsi_exp->exp_lock);
1000
1001         if (strcmp(tsi->tsi_exp->exp_obd->obd_type->typ_name,
1002                    LUSTRE_MDT_NAME) == 0) {
1003                 rc = req_check_sepol(tsi->tsi_pill);
1004                 if (rc)
1005                         GOTO(out, rc);
1006         }
1007
1008         RETURN(0);
1009 out:
1010         obd_disconnect(class_export_get(tsi->tsi_exp));
1011         return rc;
1012 }
1013 EXPORT_SYMBOL(tgt_connect);
1014
1015 int tgt_disconnect(struct tgt_session_info *tsi)
1016 {
1017         int rc;
1018
1019         ENTRY;
1020
1021         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_DISCONNECT_DELAY, cfs_fail_val);
1022
1023         rc = target_handle_disconnect(tgt_ses_req(tsi));
1024         if (rc)
1025                 RETURN(err_serious(rc));
1026
1027         RETURN(rc);
1028 }
1029 EXPORT_SYMBOL(tgt_disconnect);
1030
1031 /*
1032  * Unified target OBD handlers
1033  */
1034 int tgt_obd_ping(struct tgt_session_info *tsi)
1035 {
1036         int rc;
1037
1038         ENTRY;
1039
1040         /* The target-specific part of OBD_PING request handling.
1041          * It controls Filter Modification Data (FMD) expiration each time
1042          * PING is received.
1043          *
1044          * Valid only for replayable targets, e.g. MDT and OFD
1045          */
1046         if (tsi->tsi_exp->exp_obd->obd_replayable)
1047                 tgt_fmd_expire(tsi->tsi_exp);
1048
1049         rc = req_capsule_server_pack(tsi->tsi_pill);
1050         if (rc)
1051                 RETURN(err_serious(rc));
1052
1053         RETURN(rc);
1054 }
1055 EXPORT_SYMBOL(tgt_obd_ping);
1056
1057 int tgt_obd_log_cancel(struct tgt_session_info *tsi)
1058 {
1059         return err_serious(-EOPNOTSUPP);
1060 }
1061
1062 int tgt_send_buffer(struct tgt_session_info *tsi, struct lu_rdbuf *rdbuf)
1063 {
1064         struct ptlrpc_request   *req = tgt_ses_req(tsi);
1065         struct obd_export       *exp = req->rq_export;
1066         struct ptlrpc_bulk_desc *desc;
1067         int                      i;
1068         int                      rc;
1069
1070         ENTRY;
1071
1072         desc = ptlrpc_prep_bulk_exp(req, rdbuf->rb_nbufs, 1,
1073                                   PTLRPC_BULK_PUT_SOURCE | PTLRPC_BULK_BUF_KVEC,
1074                                     MDS_BULK_PORTAL, &ptlrpc_bulk_kvec_ops);
1075         if (desc == NULL)
1076                 RETURN(-ENOMEM);
1077
1078         for (i = 0; i < rdbuf->rb_nbufs; i++)
1079                 desc->bd_frag_ops->add_iov_frag(desc,
1080                                         rdbuf->rb_bufs[i].lb_buf,
1081                                         rdbuf->rb_bufs[i].lb_len);
1082
1083         rc = target_bulk_io(exp, desc);
1084         ptlrpc_free_bulk(desc);
1085         RETURN(rc);
1086 }
1087 EXPORT_SYMBOL(tgt_send_buffer);
1088
1089 int tgt_sendpage(struct tgt_session_info *tsi, struct lu_rdpg *rdpg, int nob)
1090 {
1091         struct ptlrpc_request   *req = tgt_ses_req(tsi);
1092         struct obd_export       *exp = req->rq_export;
1093         struct ptlrpc_bulk_desc *desc;
1094         int                      tmpcount;
1095         int                      tmpsize;
1096         int                      i;
1097         int                      rc;
1098
1099         ENTRY;
1100
1101         desc = ptlrpc_prep_bulk_exp(req, rdpg->rp_npages, 1,
1102                                     PTLRPC_BULK_PUT_SOURCE |
1103                                         PTLRPC_BULK_BUF_KIOV,
1104                                     MDS_BULK_PORTAL,
1105                                     &ptlrpc_bulk_kiov_pin_ops);
1106         if (desc == NULL)
1107                 RETURN(-ENOMEM);
1108
1109         if (!(exp_connect_flags(exp) & OBD_CONNECT_BRW_SIZE))
1110                 /* old client requires reply size in it's PAGE_SIZE,
1111                  * which is rdpg->rp_count */
1112                 nob = rdpg->rp_count;
1113
1114         for (i = 0, tmpcount = nob; i < rdpg->rp_npages && tmpcount > 0;
1115              i++, tmpcount -= tmpsize) {
1116                 tmpsize = min_t(int, tmpcount, PAGE_SIZE);
1117                 desc->bd_frag_ops->add_kiov_frag(desc, rdpg->rp_pages[i], 0,
1118                                                  tmpsize);
1119         }
1120
1121         LASSERT(desc->bd_nob == nob);
1122         rc = target_bulk_io(exp, desc);
1123         ptlrpc_free_bulk(desc);
1124         RETURN(rc);
1125 }
1126 EXPORT_SYMBOL(tgt_sendpage);
1127
1128 /*
1129  * OBD_IDX_READ handler
1130  */
1131 static int tgt_obd_idx_read(struct tgt_session_info *tsi)
1132 {
1133         struct tgt_thread_info  *tti = tgt_th_info(tsi->tsi_env);
1134         struct lu_rdpg          *rdpg = &tti->tti_u.rdpg.tti_rdpg;
1135         struct idx_info         *req_ii, *rep_ii;
1136         int                      rc, i;
1137
1138         ENTRY;
1139
1140         memset(rdpg, 0, sizeof(*rdpg));
1141         req_capsule_set(tsi->tsi_pill, &RQF_OBD_IDX_READ);
1142
1143         /* extract idx_info buffer from request & reply */
1144         req_ii = req_capsule_client_get(tsi->tsi_pill, &RMF_IDX_INFO);
1145         if (req_ii == NULL || req_ii->ii_magic != IDX_INFO_MAGIC)
1146                 RETURN(err_serious(-EPROTO));
1147
1148         rc = req_capsule_server_pack(tsi->tsi_pill);
1149         if (rc)
1150                 RETURN(err_serious(rc));
1151
1152         rep_ii = req_capsule_server_get(tsi->tsi_pill, &RMF_IDX_INFO);
1153         if (rep_ii == NULL)
1154                 RETURN(err_serious(-EFAULT));
1155         rep_ii->ii_magic = IDX_INFO_MAGIC;
1156
1157         /* extract hash to start with */
1158         rdpg->rp_hash = req_ii->ii_hash_start;
1159
1160         /* extract requested attributes */
1161         rdpg->rp_attrs = req_ii->ii_attrs;
1162
1163         /* check that fid packed in request is valid and supported */
1164         if (!fid_is_sane(&req_ii->ii_fid))
1165                 RETURN(-EINVAL);
1166         rep_ii->ii_fid = req_ii->ii_fid;
1167
1168         /* copy flags */
1169         rep_ii->ii_flags = req_ii->ii_flags;
1170
1171         /* compute number of pages to allocate, ii_count is the number of 4KB
1172          * containers */
1173         if (req_ii->ii_count <= 0)
1174                 GOTO(out, rc = -EFAULT);
1175         rdpg->rp_count = min_t(unsigned int, req_ii->ii_count << LU_PAGE_SHIFT,
1176                                exp_max_brw_size(tsi->tsi_exp));
1177         rdpg->rp_npages = (rdpg->rp_count + PAGE_SIZE - 1) >> PAGE_SHIFT;
1178
1179         /* allocate pages to store the containers */
1180         OBD_ALLOC(rdpg->rp_pages, rdpg->rp_npages * sizeof(rdpg->rp_pages[0]));
1181         if (rdpg->rp_pages == NULL)
1182                 GOTO(out, rc = -ENOMEM);
1183         for (i = 0; i < rdpg->rp_npages; i++) {
1184                 rdpg->rp_pages[i] = alloc_page(GFP_NOFS);
1185                 if (rdpg->rp_pages[i] == NULL)
1186                         GOTO(out, rc = -ENOMEM);
1187         }
1188
1189         /* populate pages with key/record pairs */
1190         rc = dt_index_read(tsi->tsi_env, tsi->tsi_tgt->lut_bottom, rep_ii, rdpg);
1191         if (rc < 0)
1192                 GOTO(out, rc);
1193
1194         LASSERTF(rc <= rdpg->rp_count, "dt_index_read() returned more than "
1195                  "asked %d > %d\n", rc, rdpg->rp_count);
1196
1197         /* send pages to client */
1198         rc = tgt_sendpage(tsi, rdpg, rc);
1199         if (rc)
1200                 GOTO(out, rc);
1201         EXIT;
1202 out:
1203         if (rdpg->rp_pages) {
1204                 for (i = 0; i < rdpg->rp_npages; i++)
1205                         if (rdpg->rp_pages[i])
1206                                 __free_page(rdpg->rp_pages[i]);
1207                 OBD_FREE(rdpg->rp_pages,
1208                          rdpg->rp_npages * sizeof(rdpg->rp_pages[0]));
1209         }
1210         return rc;
1211 }
1212
1213 struct tgt_handler tgt_obd_handlers[] = {
1214 TGT_OBD_HDL    (0,      OBD_PING,               tgt_obd_ping),
1215 TGT_OBD_HDL    (0,      OBD_IDX_READ,           tgt_obd_idx_read)
1216 };
1217 EXPORT_SYMBOL(tgt_obd_handlers);
1218
1219 int tgt_sync(const struct lu_env *env, struct lu_target *tgt,
1220              struct dt_object *obj, __u64 start, __u64 end)
1221 {
1222         int rc = 0;
1223
1224         ENTRY;
1225
1226         /* if no objid is specified, it means "sync whole filesystem" */
1227         if (obj == NULL) {
1228                 rc = dt_sync(env, tgt->lut_bottom);
1229         } else if (dt_version_get(env, obj) >
1230                    tgt->lut_obd->obd_last_committed) {
1231                 rc = dt_object_sync(env, obj, start, end);
1232         }
1233         atomic_inc(&tgt->lut_sync_count);
1234
1235         RETURN(rc);
1236 }
1237 EXPORT_SYMBOL(tgt_sync);
1238 /*
1239  * Unified target DLM handlers.
1240  */
1241
1242 /**
1243  * Unified target BAST
1244  *
1245  * Ensure data and metadata are synced to disk when lock is canceled if Sync on
1246  * Cancel (SOC) is enabled. If it's extent lock, normally sync obj is enough,
1247  * but if it's cross-MDT lock, because remote object version is not set, a
1248  * filesystem sync is needed.
1249  *
1250  * \param lock server side lock
1251  * \param desc lock desc
1252  * \param data ldlm_cb_set_arg
1253  * \param flag  indicates whether this cancelling or blocking callback
1254  * \retval      0 on success
1255  * \retval      negative number on error
1256  */
1257 static int tgt_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
1258                             void *data, int flag)
1259 {
1260         struct lu_env            env;
1261         struct lu_target        *tgt;
1262         struct dt_object        *obj = NULL;
1263         struct lu_fid            fid;
1264         int                      rc = 0;
1265
1266         ENTRY;
1267
1268         tgt = class_exp2tgt(lock->l_export);
1269
1270         if (unlikely(tgt == NULL)) {
1271                 CDEBUG(D_ERROR, "%s: No target for connected export\n",
1272                        class_exp2obd(lock->l_export)->obd_name);
1273                 RETURN(-EINVAL);
1274         }
1275
1276         if (flag == LDLM_CB_CANCELING &&
1277             (lock->l_granted_mode & (LCK_EX | LCK_PW | LCK_GROUP)) &&
1278             (tgt->lut_sync_lock_cancel == ALWAYS_SYNC_ON_CANCEL ||
1279              (tgt->lut_sync_lock_cancel == BLOCKING_SYNC_ON_CANCEL &&
1280               ldlm_is_cbpending(lock))) &&
1281             ((exp_connect_flags(lock->l_export) & OBD_CONNECT_MDS_MDS) ||
1282              lock->l_resource->lr_type == LDLM_EXTENT)) {
1283                 __u64 start = 0;
1284                 __u64 end = OBD_OBJECT_EOF;
1285
1286                 rc = lu_env_init(&env, LCT_DT_THREAD);
1287                 if (unlikely(rc != 0))
1288                         GOTO(err, rc);
1289
1290                 ost_fid_from_resid(&fid, &lock->l_resource->lr_name,
1291                                    tgt->lut_lsd.lsd_osd_index);
1292
1293                 if (lock->l_resource->lr_type == LDLM_EXTENT) {
1294                         obj = dt_locate(&env, tgt->lut_bottom, &fid);
1295                         if (IS_ERR(obj))
1296                                 GOTO(err_env, rc = PTR_ERR(obj));
1297
1298                         if (!dt_object_exists(obj))
1299                                 GOTO(err_put, rc = -ENOENT);
1300
1301                         start = lock->l_policy_data.l_extent.start;
1302                         end = lock->l_policy_data.l_extent.end;
1303                 }
1304
1305                 rc = tgt_sync(&env, tgt, obj, start, end);
1306                 if (rc < 0) {
1307                         CERROR("%s: syncing "DFID" (%llu-%llu) on lock "
1308                                "cancel: rc = %d\n",
1309                                tgt_name(tgt), PFID(&fid),
1310                                lock->l_policy_data.l_extent.start,
1311                                lock->l_policy_data.l_extent.end, rc);
1312                 }
1313 err_put:
1314                 if (obj != NULL)
1315                         dt_object_put(&env, obj);
1316 err_env:
1317                 lu_env_fini(&env);
1318         }
1319 err:
1320         rc = ldlm_server_blocking_ast(lock, desc, data, flag);
1321         RETURN(rc);
1322 }
1323
1324 static struct ldlm_callback_suite tgt_dlm_cbs = {
1325         .lcs_completion = ldlm_server_completion_ast,
1326         .lcs_blocking   = tgt_blocking_ast,
1327         .lcs_glimpse    = ldlm_server_glimpse_ast
1328 };
1329
1330 int tgt_enqueue(struct tgt_session_info *tsi)
1331 {
1332         struct ptlrpc_request *req = tgt_ses_req(tsi);
1333         int rc;
1334
1335         ENTRY;
1336         /*
1337          * tsi->tsi_dlm_req was already swapped and (if necessary) converted,
1338          * tsi->tsi_dlm_cbs was set by the *_req_handle() function.
1339          */
1340         LASSERT(tsi->tsi_dlm_req != NULL);
1341         rc = ldlm_handle_enqueue0(tsi->tsi_exp->exp_obd->obd_namespace, req,
1342                                   tsi->tsi_dlm_req, &tgt_dlm_cbs);
1343         if (rc)
1344                 RETURN(err_serious(rc));
1345
1346         switch (LUT_FAIL_CLASS(tsi->tsi_reply_fail_id)) {
1347         case LUT_FAIL_MDT:
1348                 tsi->tsi_reply_fail_id = OBD_FAIL_MDS_LDLM_REPLY_NET;
1349                 break;
1350         case LUT_FAIL_OST:
1351                 tsi->tsi_reply_fail_id = OBD_FAIL_OST_LDLM_REPLY_NET;
1352                 break;
1353         case LUT_FAIL_MGT:
1354                 tsi->tsi_reply_fail_id = OBD_FAIL_MGS_LDLM_REPLY_NET;
1355                 break;
1356         default:
1357                 tsi->tsi_reply_fail_id = OBD_FAIL_LDLM_REPLY;
1358                 break;
1359         }
1360         RETURN(req->rq_status);
1361 }
1362 EXPORT_SYMBOL(tgt_enqueue);
1363
1364 int tgt_convert(struct tgt_session_info *tsi)
1365 {
1366         struct ptlrpc_request *req = tgt_ses_req(tsi);
1367         int rc;
1368
1369         ENTRY;
1370         LASSERT(tsi->tsi_dlm_req);
1371         rc = ldlm_handle_convert0(req, tsi->tsi_dlm_req);
1372         if (rc)
1373                 RETURN(err_serious(rc));
1374
1375         RETURN(req->rq_status);
1376 }
1377
1378 int tgt_bl_callback(struct tgt_session_info *tsi)
1379 {
1380         return err_serious(-EOPNOTSUPP);
1381 }
1382
1383 int tgt_cp_callback(struct tgt_session_info *tsi)
1384 {
1385         return err_serious(-EOPNOTSUPP);
1386 }
1387
1388 /* generic LDLM target handler */
1389 struct tgt_handler tgt_dlm_handlers[] = {
1390 TGT_DLM_HDL(HAS_KEY, LDLM_ENQUEUE, tgt_enqueue),
1391 TGT_DLM_HDL(HAS_KEY, LDLM_CONVERT, tgt_convert),
1392 TGT_DLM_HDL_VAR(0, LDLM_BL_CALLBACK, tgt_bl_callback),
1393 TGT_DLM_HDL_VAR(0, LDLM_CP_CALLBACK, tgt_cp_callback)
1394 };
1395 EXPORT_SYMBOL(tgt_dlm_handlers);
1396
1397 /*
1398  * Unified target LLOG handlers.
1399  */
1400 int tgt_llog_open(struct tgt_session_info *tsi)
1401 {
1402         int rc;
1403
1404         ENTRY;
1405
1406         rc = llog_origin_handle_open(tgt_ses_req(tsi));
1407
1408         RETURN(rc);
1409 }
1410 EXPORT_SYMBOL(tgt_llog_open);
1411
1412 int tgt_llog_read_header(struct tgt_session_info *tsi)
1413 {
1414         int rc;
1415
1416         ENTRY;
1417
1418         rc = llog_origin_handle_read_header(tgt_ses_req(tsi));
1419
1420         RETURN(rc);
1421 }
1422 EXPORT_SYMBOL(tgt_llog_read_header);
1423
1424 int tgt_llog_next_block(struct tgt_session_info *tsi)
1425 {
1426         int rc;
1427
1428         ENTRY;
1429
1430         rc = llog_origin_handle_next_block(tgt_ses_req(tsi));
1431
1432         RETURN(rc);
1433 }
1434 EXPORT_SYMBOL(tgt_llog_next_block);
1435
1436 int tgt_llog_prev_block(struct tgt_session_info *tsi)
1437 {
1438         int rc;
1439
1440         ENTRY;
1441
1442         rc = llog_origin_handle_prev_block(tgt_ses_req(tsi));
1443
1444         RETURN(rc);
1445 }
1446 EXPORT_SYMBOL(tgt_llog_prev_block);
1447
1448 /* generic llog target handler */
1449 struct tgt_handler tgt_llog_handlers[] = {
1450 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_CREATE,      tgt_llog_open),
1451 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_NEXT_BLOCK,  tgt_llog_next_block),
1452 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_READ_HEADER, tgt_llog_read_header),
1453 TGT_LLOG_HDL    (0,     LLOG_ORIGIN_HANDLE_PREV_BLOCK,  tgt_llog_prev_block),
1454 };
1455 EXPORT_SYMBOL(tgt_llog_handlers);
1456
1457 /*
1458  * sec context handlers
1459  */
1460 /* XXX: Implement based on mdt_sec_ctx_handle()? */
1461 static int tgt_sec_ctx_handle(struct tgt_session_info *tsi)
1462 {
1463         return 0;
1464 }
1465
1466 struct tgt_handler tgt_sec_ctx_handlers[] = {
1467 TGT_SEC_HDL_VAR(0,      SEC_CTX_INIT,           tgt_sec_ctx_handle),
1468 TGT_SEC_HDL_VAR(0,      SEC_CTX_INIT_CONT,      tgt_sec_ctx_handle),
1469 TGT_SEC_HDL_VAR(0,      SEC_CTX_FINI,           tgt_sec_ctx_handle),
1470 };
1471 EXPORT_SYMBOL(tgt_sec_ctx_handlers);
1472
1473 int (*tgt_lfsck_in_notify_local)(const struct lu_env *env,
1474                                  struct dt_device *key,
1475                                  struct lfsck_req_local *lrl,
1476                                  struct thandle *th) = NULL;
1477
1478 void tgt_register_lfsck_in_notify_local(int (*notify)(const struct lu_env *,
1479                                                       struct dt_device *,
1480                                                       struct lfsck_req_local *,
1481                                                       struct thandle *))
1482 {
1483         tgt_lfsck_in_notify_local = notify;
1484 }
1485 EXPORT_SYMBOL(tgt_register_lfsck_in_notify_local);
1486
1487 int (*tgt_lfsck_in_notify)(const struct lu_env *env,
1488                            struct dt_device *key,
1489                            struct lfsck_request *lr) = NULL;
1490
1491 void tgt_register_lfsck_in_notify(int (*notify)(const struct lu_env *,
1492                                                 struct dt_device *,
1493                                                 struct lfsck_request *))
1494 {
1495         tgt_lfsck_in_notify = notify;
1496 }
1497 EXPORT_SYMBOL(tgt_register_lfsck_in_notify);
1498
1499 static int (*tgt_lfsck_query)(const struct lu_env *env,
1500                               struct dt_device *key,
1501                               struct lfsck_request *req,
1502                               struct lfsck_reply *rep,
1503                               struct lfsck_query *que) = NULL;
1504
1505 void tgt_register_lfsck_query(int (*query)(const struct lu_env *,
1506                                            struct dt_device *,
1507                                            struct lfsck_request *,
1508                                            struct lfsck_reply *,
1509                                            struct lfsck_query *))
1510 {
1511         tgt_lfsck_query = query;
1512 }
1513 EXPORT_SYMBOL(tgt_register_lfsck_query);
1514
1515 /* LFSCK request handlers */
1516 static int tgt_handle_lfsck_notify(struct tgt_session_info *tsi)
1517 {
1518         const struct lu_env     *env = tsi->tsi_env;
1519         struct dt_device        *key = tsi->tsi_tgt->lut_bottom;
1520         struct lfsck_request    *lr;
1521         int                      rc;
1522         ENTRY;
1523
1524         lr = req_capsule_client_get(tsi->tsi_pill, &RMF_LFSCK_REQUEST);
1525         if (lr == NULL)
1526                 RETURN(-EPROTO);
1527
1528         rc = tgt_lfsck_in_notify(env, key, lr);
1529
1530         RETURN(rc);
1531 }
1532
1533 static int tgt_handle_lfsck_query(struct tgt_session_info *tsi)
1534 {
1535         struct lfsck_request    *request;
1536         struct lfsck_reply      *reply;
1537         int                      rc;
1538         ENTRY;
1539
1540         request = req_capsule_client_get(tsi->tsi_pill, &RMF_LFSCK_REQUEST);
1541         if (request == NULL)
1542                 RETURN(-EPROTO);
1543
1544         reply = req_capsule_server_get(tsi->tsi_pill, &RMF_LFSCK_REPLY);
1545         if (reply == NULL)
1546                 RETURN(-ENOMEM);
1547
1548         rc = tgt_lfsck_query(tsi->tsi_env, tsi->tsi_tgt->lut_bottom,
1549                              request, reply, NULL);
1550
1551         RETURN(rc < 0 ? rc : 0);
1552 }
1553
1554 struct tgt_handler tgt_lfsck_handlers[] = {
1555 TGT_LFSCK_HDL(HAS_REPLY,        LFSCK_NOTIFY,   tgt_handle_lfsck_notify),
1556 TGT_LFSCK_HDL(HAS_REPLY,        LFSCK_QUERY,    tgt_handle_lfsck_query),
1557 };
1558 EXPORT_SYMBOL(tgt_lfsck_handlers);
1559
1560 /*
1561  * initialize per-thread page pool (bug 5137).
1562  */
1563 int tgt_io_thread_init(struct ptlrpc_thread *thread)
1564 {
1565         struct tgt_thread_big_cache *tbc;
1566
1567         ENTRY;
1568
1569         LASSERT(thread != NULL);
1570         LASSERT(thread->t_data == NULL);
1571
1572         OBD_ALLOC_LARGE(tbc, sizeof(*tbc));
1573         if (tbc == NULL)
1574                 RETURN(-ENOMEM);
1575         thread->t_data = tbc;
1576         RETURN(0);
1577 }
1578 EXPORT_SYMBOL(tgt_io_thread_init);
1579
1580 /*
1581  * free per-thread pool created by tgt_thread_init().
1582  */
1583 void tgt_io_thread_done(struct ptlrpc_thread *thread)
1584 {
1585         struct tgt_thread_big_cache *tbc;
1586
1587         ENTRY;
1588
1589         LASSERT(thread != NULL);
1590
1591         /*
1592          * be prepared to handle partially-initialized pools (because this is
1593          * called from ost_io_thread_init() for cleanup.
1594          */
1595         tbc = thread->t_data;
1596         if (tbc != NULL) {
1597                 OBD_FREE_LARGE(tbc, sizeof(*tbc));
1598                 thread->t_data = NULL;
1599         }
1600         EXIT;
1601 }
1602 EXPORT_SYMBOL(tgt_io_thread_done);
1603
1604 /**
1605  * Helper function for getting Data-on-MDT file server DLM lock
1606  * if asked by client.
1607  */
1608 int tgt_mdt_data_lock(struct ldlm_namespace *ns, struct ldlm_res_id *res_id,
1609                       struct lustre_handle *lh, int mode, __u64 *flags)
1610 {
1611         union ldlm_policy_data policy = {
1612                 .l_inodebits.bits = MDS_INODELOCK_DOM,
1613         };
1614         int rc;
1615
1616         ENTRY;
1617
1618         LASSERT(lh != NULL);
1619         LASSERT(ns != NULL);
1620         LASSERT(!lustre_handle_is_used(lh));
1621
1622         rc = ldlm_cli_enqueue_local(NULL, ns, res_id, LDLM_IBITS, &policy, mode,
1623                                     flags, ldlm_blocking_ast,
1624                                     ldlm_completion_ast, ldlm_glimpse_ast,
1625                                     NULL, 0, LVB_T_NONE, NULL, lh);
1626
1627         RETURN(rc == ELDLM_OK ? 0 : -EIO);
1628 }
1629 EXPORT_SYMBOL(tgt_mdt_data_lock);
1630
1631 void tgt_mdt_data_unlock(struct lustre_handle *lh, enum ldlm_mode mode)
1632 {
1633         LASSERT(lustre_handle_is_used(lh));
1634         ldlm_lock_decref(lh, mode);
1635 }
1636 EXPORT_SYMBOL(tgt_mdt_data_unlock);
1637
1638 /**
1639  * Helper function for getting server side [start, start+count] DLM lock
1640  * if asked by client.
1641  */
1642 int tgt_extent_lock(const struct lu_env *env, struct ldlm_namespace *ns,
1643                     struct ldlm_res_id *res_id, __u64 start, __u64 end,
1644                     struct lustre_handle *lh, int mode, __u64 *flags)
1645 {
1646         union ldlm_policy_data policy;
1647         int rc;
1648
1649         ENTRY;
1650
1651         LASSERT(lh != NULL);
1652         LASSERT(ns != NULL);
1653         LASSERT(!lustre_handle_is_used(lh));
1654
1655         policy.l_extent.gid = 0;
1656         policy.l_extent.start = start & PAGE_MASK;
1657
1658         /*
1659          * If ->o_blocks is EOF it means "lock till the end of the file".
1660          * Otherwise, it's size of an extent or hole being punched (in bytes).
1661          */
1662         if (end == OBD_OBJECT_EOF || end < start)
1663                 policy.l_extent.end = OBD_OBJECT_EOF;
1664         else
1665                 policy.l_extent.end = end | ~PAGE_MASK;
1666
1667         rc = ldlm_cli_enqueue_local(env, ns, res_id, LDLM_EXTENT, &policy,
1668                                     mode, flags, ldlm_blocking_ast,
1669                                     ldlm_completion_ast, ldlm_glimpse_ast,
1670                                     NULL, 0, LVB_T_NONE, NULL, lh);
1671         RETURN(rc == ELDLM_OK ? 0 : -EIO);
1672 }
1673 EXPORT_SYMBOL(tgt_extent_lock);
1674
1675 void tgt_extent_unlock(struct lustre_handle *lh, enum ldlm_mode mode)
1676 {
1677         LASSERT(lustre_handle_is_used(lh));
1678         ldlm_lock_decref(lh, mode);
1679 }
1680 EXPORT_SYMBOL(tgt_extent_unlock);
1681
1682 static int tgt_brw_lock(const struct lu_env *env, struct obd_export *exp,
1683                         struct ldlm_res_id *res_id, struct obd_ioobj *obj,
1684                         struct niobuf_remote *nb, struct lustre_handle *lh,
1685                         enum ldlm_mode mode)
1686 {
1687         struct ldlm_namespace   *ns = exp->exp_obd->obd_namespace;
1688         __u64                    flags = 0;
1689         int                      nrbufs = obj->ioo_bufcnt;
1690         int                      i;
1691         int                      rc;
1692
1693         ENTRY;
1694
1695         LASSERT(mode == LCK_PR || mode == LCK_PW);
1696         LASSERT(!lustre_handle_is_used(lh));
1697
1698         if (ns->ns_obd->obd_recovering)
1699                 RETURN(0);
1700
1701         if (nrbufs == 0 || !(nb[0].rnb_flags & OBD_BRW_SRVLOCK))
1702                 RETURN(0);
1703
1704         for (i = 1; i < nrbufs; i++)
1705                 if (!(nb[i].rnb_flags & OBD_BRW_SRVLOCK))
1706                         RETURN(-EFAULT);
1707
1708         /* MDT IO for data-on-mdt */
1709         if (exp->exp_connect_data.ocd_connect_flags & OBD_CONNECT_IBITS)
1710                 rc = tgt_mdt_data_lock(ns, res_id, lh, mode, &flags);
1711         else
1712                 rc = tgt_extent_lock(env, ns, res_id, nb[0].rnb_offset,
1713                                      nb[nrbufs - 1].rnb_offset +
1714                                      nb[nrbufs - 1].rnb_len - 1,
1715                                      lh, mode, &flags);
1716         RETURN(rc);
1717 }
1718
1719 static void tgt_brw_unlock(struct obd_ioobj *obj, struct niobuf_remote *niob,
1720                            struct lustre_handle *lh, enum ldlm_mode mode)
1721 {
1722         ENTRY;
1723
1724         LASSERT(mode == LCK_PR || mode == LCK_PW);
1725         LASSERT((obj->ioo_bufcnt > 0 &&
1726                  (niob[0].rnb_flags & OBD_BRW_SRVLOCK)) ==
1727                 lustre_handle_is_used(lh));
1728
1729         if (lustre_handle_is_used(lh))
1730                 tgt_extent_unlock(lh, mode);
1731         EXIT;
1732 }
1733 static int tgt_checksum_niobuf(struct lu_target *tgt,
1734                                  struct niobuf_local *local_nb, int npages,
1735                                  int opc, enum cksum_types cksum_type,
1736                                  __u32 *cksum)
1737 {
1738         struct ahash_request           *req;
1739         unsigned int                    bufsize;
1740         int                             i, err;
1741         unsigned char                   cfs_alg = cksum_obd2cfs(cksum_type);
1742
1743         req = cfs_crypto_hash_init(cfs_alg, NULL, 0);
1744         if (IS_ERR(req)) {
1745                 CERROR("%s: unable to initialize checksum hash %s\n",
1746                        tgt_name(tgt), cfs_crypto_hash_name(cfs_alg));
1747                 return PTR_ERR(req);
1748         }
1749
1750         CDEBUG(D_INFO, "Checksum for algo %s\n", cfs_crypto_hash_name(cfs_alg));
1751         for (i = 0; i < npages; i++) {
1752                 /* corrupt the data before we compute the checksum, to
1753                  * simulate a client->OST data error */
1754                 if (i == 0 && opc == OST_WRITE &&
1755                     OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_RECEIVE)) {
1756                         int off = local_nb[i].lnb_page_offset & ~PAGE_MASK;
1757                         int len = local_nb[i].lnb_len;
1758                         struct page *np = tgt_page_to_corrupt;
1759
1760                         if (np) {
1761                                 char *ptr = ll_kmap_atomic(local_nb[i].lnb_page,
1762                                                         KM_USER0);
1763                                 char *ptr2 = page_address(np);
1764
1765                                 memcpy(ptr2 + off, ptr + off, len);
1766                                 memcpy(ptr2 + off, "bad3", min(4, len));
1767                                 ll_kunmap_atomic(ptr, KM_USER0);
1768
1769                                 /* LU-8376 to preserve original index for
1770                                  * display in dump_all_bulk_pages() */
1771                                 np->index = i;
1772
1773                                 cfs_crypto_hash_update_page(req, np, off,
1774                                                             len);
1775                                 continue;
1776                         } else {
1777                                 CERROR("%s: can't alloc page for corruption\n",
1778                                        tgt_name(tgt));
1779                         }
1780                 }
1781                 cfs_crypto_hash_update_page(req, local_nb[i].lnb_page,
1782                                   local_nb[i].lnb_page_offset & ~PAGE_MASK,
1783                                   local_nb[i].lnb_len);
1784
1785                  /* corrupt the data after we compute the checksum, to
1786                  * simulate an OST->client data error */
1787                 if (i == 0 && opc == OST_READ &&
1788                     OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_SEND)) {
1789                         int off = local_nb[i].lnb_page_offset & ~PAGE_MASK;
1790                         int len = local_nb[i].lnb_len;
1791                         struct page *np = tgt_page_to_corrupt;
1792
1793                         if (np) {
1794                                 char *ptr = ll_kmap_atomic(local_nb[i].lnb_page,
1795                                                         KM_USER0);
1796                                 char *ptr2 = page_address(np);
1797
1798                                 memcpy(ptr2 + off, ptr + off, len);
1799                                 memcpy(ptr2 + off, "bad4", min(4, len));
1800                                 ll_kunmap_atomic(ptr, KM_USER0);
1801
1802                                 /* LU-8376 to preserve original index for
1803                                  * display in dump_all_bulk_pages() */
1804                                 np->index = i;
1805
1806                                 cfs_crypto_hash_update_page(req, np, off,
1807                                                             len);
1808                                 continue;
1809                         } else {
1810                                 CERROR("%s: can't alloc page for corruption\n",
1811                                        tgt_name(tgt));
1812                         }
1813                 }
1814         }
1815
1816         bufsize = sizeof(*cksum);
1817         err = cfs_crypto_hash_final(req, (unsigned char *)cksum, &bufsize);
1818
1819         return 0;
1820 }
1821
1822 char dbgcksum_file_name[PATH_MAX];
1823
1824 static void dump_all_bulk_pages(struct obdo *oa, int count,
1825                                 struct niobuf_local *local_nb,
1826                                 __u32 server_cksum, __u32 client_cksum)
1827 {
1828         struct file *filp;
1829         int rc, i;
1830         unsigned int len;
1831         char *buf;
1832
1833         /* will only keep dump of pages on first error for the same range in
1834          * file/fid, not during the resends/retries. */
1835         snprintf(dbgcksum_file_name, sizeof(dbgcksum_file_name),
1836                  "%s-checksum_dump-ost-"DFID":[%llu-%llu]-%x-%x",
1837                  (strncmp(libcfs_debug_file_path_arr, "NONE", 4) != 0 ?
1838                   libcfs_debug_file_path_arr :
1839                   LIBCFS_DEBUG_FILE_PATH_DEFAULT),
1840                  oa->o_valid & OBD_MD_FLFID ? oa->o_parent_seq : (__u64)0,
1841                  oa->o_valid & OBD_MD_FLFID ? oa->o_parent_oid : 0,
1842                  oa->o_valid & OBD_MD_FLFID ? oa->o_parent_ver : 0,
1843                  local_nb[0].lnb_file_offset,
1844                  local_nb[count-1].lnb_file_offset +
1845                  local_nb[count-1].lnb_len - 1, client_cksum, server_cksum);
1846         filp = filp_open(dbgcksum_file_name,
1847                          O_CREAT | O_EXCL | O_WRONLY | O_LARGEFILE, 0600);
1848         if (IS_ERR(filp)) {
1849                 rc = PTR_ERR(filp);
1850                 if (rc == -EEXIST)
1851                         CDEBUG(D_INFO, "%s: can't open to dump pages with "
1852                                "checksum error: rc = %d\n", dbgcksum_file_name,
1853                                rc);
1854                 else
1855                         CERROR("%s: can't open to dump pages with checksum "
1856                                "error: rc = %d\n", dbgcksum_file_name, rc);
1857                 return;
1858         }
1859
1860         for (i = 0; i < count; i++) {
1861                 len = local_nb[i].lnb_len;
1862                 buf = kmap(local_nb[i].lnb_page);
1863                 while (len != 0) {
1864                         rc = cfs_kernel_write(filp, buf, len, &filp->f_pos);
1865                         if (rc < 0) {
1866                                 CERROR("%s: wanted to write %u but got %d "
1867                                        "error\n", dbgcksum_file_name, len, rc);
1868                                 break;
1869                         }
1870                         len -= rc;
1871                         buf += rc;
1872                         CDEBUG(D_INFO, "%s: wrote %d bytes\n",
1873                                dbgcksum_file_name, rc);
1874                 }
1875                 kunmap(local_nb[i].lnb_page);
1876         }
1877
1878         rc = vfs_fsync_range(filp, 0, LLONG_MAX, 1);
1879         if (rc)
1880                 CERROR("%s: sync returns %d\n", dbgcksum_file_name, rc);
1881         filp_close(filp, NULL);
1882         return;
1883 }
1884
1885 static int check_read_checksum(struct niobuf_local *local_nb, int npages,
1886                                struct obd_export *exp, struct obdo *oa,
1887                                const struct lnet_process_id *peer,
1888                                __u32 client_cksum, __u32 server_cksum,
1889                                enum cksum_types server_cksum_type)
1890 {
1891         char *msg;
1892         enum cksum_types cksum_type;
1893         loff_t start, end;
1894
1895         /* unlikely to happen and only if resend does not occur due to cksum
1896          * control failure on Client */
1897         if (unlikely(server_cksum == client_cksum)) {
1898                 CDEBUG(D_PAGE, "checksum %x confirmed upon retry\n",
1899                        client_cksum);
1900                 return 0;
1901         }
1902
1903         if (exp->exp_obd->obd_checksum_dump)
1904                 dump_all_bulk_pages(oa, npages, local_nb, server_cksum,
1905                                     client_cksum);
1906
1907         cksum_type = obd_cksum_type_unpack(oa->o_valid & OBD_MD_FLFLAGS ?
1908                                            oa->o_flags : 0);
1909
1910         if (cksum_type != server_cksum_type)
1911                 msg = "the server may have not used the checksum type specified"
1912                       " in the original request - likely a protocol problem";
1913         else
1914                 msg = "should have changed on the client or in transit";
1915
1916         start = local_nb[0].lnb_file_offset;
1917         end = local_nb[npages-1].lnb_file_offset +
1918                                         local_nb[npages-1].lnb_len - 1;
1919
1920         LCONSOLE_ERROR_MSG(0x132, "%s: BAD READ CHECKSUM: %s: from %s inode "
1921                 DFID " object "DOSTID" extent [%llu-%llu], client returned csum"
1922                 " %x (type %x), server csum %x (type %x)\n",
1923                 exp->exp_obd->obd_name,
1924                 msg, libcfs_nid2str(peer->nid),
1925                 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_seq : 0ULL,
1926                 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_oid : 0,
1927                 oa->o_valid & OBD_MD_FLFID ? oa->o_parent_ver : 0,
1928                 POSTID(&oa->o_oi),
1929                 start, end, client_cksum, cksum_type, server_cksum,
1930                 server_cksum_type);
1931
1932         return 1;
1933 }
1934
1935 static int tgt_pages2shortio(struct niobuf_local *local, int npages,
1936                              unsigned char *buf, int size)
1937 {
1938         int     i, off, len, copied = size;
1939         char    *ptr;
1940
1941         for (i = 0; i < npages; i++) {
1942                 off = local[i].lnb_page_offset & ~PAGE_MASK;
1943                 len = local[i].lnb_len;
1944
1945                 CDEBUG(D_PAGE, "index %d offset = %d len = %d left = %d\n",
1946                        i, off, len, size);
1947                 if (len > size)
1948                         return -EINVAL;
1949
1950                 ptr = ll_kmap_atomic(local[i].lnb_page, KM_USER0);
1951                 memcpy(buf + off, ptr, len);
1952                 ll_kunmap_atomic(ptr, KM_USER0);
1953                 buf += len;
1954                 size -= len;
1955         }
1956         return copied - size;
1957 }
1958
1959 static int tgt_checksum_niobuf_t10pi(struct lu_target *tgt,
1960                                      struct niobuf_local *local_nb,
1961                                      int npages, int opc,
1962                                      obd_dif_csum_fn *fn,
1963                                      int sector_size,
1964                                      u32 *check_sum)
1965 {
1966         enum cksum_types t10_cksum_type = tgt->lut_dt_conf.ddp_t10_cksum_type;
1967         unsigned char cfs_alg = cksum_obd2cfs(OBD_CKSUM_T10_TOP);
1968         const char *obd_name = tgt->lut_obd->obd_name;
1969         struct ahash_request *req;
1970         unsigned int bufsize;
1971         unsigned char *buffer;
1972         struct page *__page;
1973         __u16 *guard_start;
1974         int guard_number;
1975         int used_number = 0;
1976         __u32 cksum;
1977         int rc = 0;
1978         int used;
1979         int i;
1980
1981         __page = alloc_page(GFP_KERNEL);
1982         if (__page == NULL)
1983                 return -ENOMEM;
1984
1985         req = cfs_crypto_hash_init(cfs_alg, NULL, 0);
1986         if (IS_ERR(req)) {
1987                 CERROR("%s: unable to initialize checksum hash %s\n",
1988                        tgt_name(tgt), cfs_crypto_hash_name(cfs_alg));
1989                 return PTR_ERR(req);
1990         }
1991
1992         buffer = kmap(__page);
1993         guard_start = (__u16 *)buffer;
1994         guard_number = PAGE_SIZE / sizeof(*guard_start);
1995         for (i = 0; i < npages; i++) {
1996                 /* corrupt the data before we compute the checksum, to
1997                  * simulate a client->OST data error */
1998                 if (i == 0 && opc == OST_WRITE &&
1999                     OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_RECEIVE)) {
2000                         int off = local_nb[i].lnb_page_offset & ~PAGE_MASK;
2001                         int len = local_nb[i].lnb_len;
2002                         struct page *np = tgt_page_to_corrupt;
2003
2004                         if (np) {
2005                                 char *ptr = ll_kmap_atomic(local_nb[i].lnb_page,
2006                                                         KM_USER0);
2007                                 char *ptr2 = page_address(np);
2008
2009                                 memcpy(ptr2 + off, ptr + off, len);
2010                                 memcpy(ptr2 + off, "bad3", min(4, len));
2011                                 ll_kunmap_atomic(ptr, KM_USER0);
2012
2013                                 /* LU-8376 to preserve original index for
2014                                  * display in dump_all_bulk_pages() */
2015                                 np->index = i;
2016
2017                                 cfs_crypto_hash_update_page(req, np, off,
2018                                                             len);
2019                                 continue;
2020                         } else {
2021                                 CERROR("%s: can't alloc page for corruption\n",
2022                                        tgt_name(tgt));
2023                         }
2024                 }
2025
2026                 /*
2027                  * The left guard number should be able to hold checksums of a
2028                  * whole page
2029                  */
2030                 if (t10_cksum_type && opc == OST_READ &&
2031                     local_nb[i].lnb_guard_disk) {
2032                         used = DIV_ROUND_UP(local_nb[i].lnb_len, sector_size);
2033                         if (used > (guard_number - used_number)) {
2034                                 rc = -E2BIG;
2035                                 break;
2036                         }
2037                         memcpy(guard_start + used_number,
2038                                local_nb[i].lnb_guards,
2039                                used * sizeof(*local_nb[i].lnb_guards));
2040                 } else {
2041                         rc = obd_page_dif_generate_buffer(obd_name,
2042                                 local_nb[i].lnb_page,
2043                                 local_nb[i].lnb_page_offset & ~PAGE_MASK,
2044                                 local_nb[i].lnb_len, guard_start + used_number,
2045                                 guard_number - used_number, &used, sector_size,
2046                                 fn);
2047                         if (rc)
2048                                 break;
2049                 }
2050
2051                 LASSERT(used <= MAX_GUARD_NUMBER);
2052                 /*
2053                  * If disk support T10PI checksum, copy guards to local_nb.
2054                  * If the write is partial page, do not use the guards for bio
2055                  * submission since the data might not be full-sector. The bio
2056                  * guards will be generated later based on the full sectors. If
2057                  * the sector size is 512B rather than 4 KB, or the page size
2058                  * is larger than 4KB, this might drop some useful guards for
2059                  * partial page write, but it will only add minimal extra time
2060                  * of checksum calculation.
2061                  */
2062                 if (t10_cksum_type && opc == OST_WRITE &&
2063                     local_nb[i].lnb_len == PAGE_SIZE) {
2064                         local_nb[i].lnb_guard_rpc = 1;
2065                         memcpy(local_nb[i].lnb_guards,
2066                                guard_start + used_number,
2067                                used * sizeof(*local_nb[i].lnb_guards));
2068                 }
2069
2070                 used_number += used;
2071                 if (used_number == guard_number) {
2072                         cfs_crypto_hash_update_page(req, __page, 0,
2073                                 used_number * sizeof(*guard_start));
2074                         used_number = 0;
2075                 }
2076
2077                  /* corrupt the data after we compute the checksum, to
2078                  * simulate an OST->client data error */
2079                 if (unlikely(i == 0 && opc == OST_READ &&
2080                              OBD_FAIL_CHECK(OBD_FAIL_OST_CHECKSUM_SEND))) {
2081                         int off = local_nb[i].lnb_page_offset & ~PAGE_MASK;
2082                         int len = local_nb[i].lnb_len;
2083                         struct page *np = tgt_page_to_corrupt;
2084
2085                         if (np) {
2086                                 char *ptr = ll_kmap_atomic(local_nb[i].lnb_page,
2087                                                         KM_USER0);
2088                                 char *ptr2 = page_address(np);
2089
2090                                 memcpy(ptr2 + off, ptr + off, len);
2091                                 memcpy(ptr2 + off, "bad4", min(4, len));
2092                                 ll_kunmap_atomic(ptr, KM_USER0);
2093
2094                                 /* LU-8376 to preserve original index for
2095                                  * display in dump_all_bulk_pages() */
2096                                 np->index = i;
2097
2098                                 cfs_crypto_hash_update_page(req, np, off,
2099                                                             len);
2100                                 continue;
2101                         } else {
2102                                 CERROR("%s: can't alloc page for corruption\n",
2103                                        tgt_name(tgt));
2104                         }
2105                 }
2106         }
2107         kunmap(__page);
2108         if (rc)
2109                 GOTO(out, rc);
2110
2111         if (used_number != 0)
2112                 cfs_crypto_hash_update_page(req, __page, 0,
2113                         used_number * sizeof(*guard_start));
2114
2115         bufsize = sizeof(cksum);
2116         rc = cfs_crypto_hash_final(req, (unsigned char *)&cksum, &bufsize);
2117
2118         if (rc == 0)
2119                 *check_sum = cksum;
2120 out:
2121         __free_page(__page);
2122         return rc;
2123 }
2124
2125 static int tgt_checksum_niobuf_rw(struct lu_target *tgt,
2126                                   enum cksum_types cksum_type,
2127                                   struct niobuf_local *local_nb,
2128                                   int npages, int opc, u32 *check_sum)
2129 {
2130         obd_dif_csum_fn *fn = NULL;
2131         int sector_size = 0;
2132         int rc;
2133
2134         ENTRY;
2135         obd_t10_cksum2dif(cksum_type, &fn, &sector_size);
2136
2137         if (fn)
2138                 rc = tgt_checksum_niobuf_t10pi(tgt, local_nb, npages,
2139                                                opc, fn, sector_size,
2140                                                check_sum);
2141         else
2142                 rc = tgt_checksum_niobuf(tgt, local_nb, npages, opc,
2143                                          cksum_type, check_sum);
2144         RETURN(rc);
2145 }
2146
2147 int tgt_brw_read(struct tgt_session_info *tsi)
2148 {
2149         struct ptlrpc_request   *req = tgt_ses_req(tsi);
2150         struct ptlrpc_bulk_desc *desc = NULL;
2151         struct obd_export       *exp = tsi->tsi_exp;
2152         struct niobuf_remote    *remote_nb;
2153         struct niobuf_local     *local_nb;
2154         struct obd_ioobj        *ioo;
2155         struct ost_body         *body, *repbody;
2156         struct l_wait_info       lwi;
2157         struct lustre_handle     lockh = { 0 };
2158         int                      npages, nob = 0, rc, i, no_reply = 0,
2159                                  npages_read;
2160         struct tgt_thread_big_cache *tbc = req->rq_svc_thread->t_data;
2161         const char *obd_name = exp->exp_obd->obd_name;
2162
2163         ENTRY;
2164
2165         if (ptlrpc_req2svc(req)->srv_req_portal != OST_IO_PORTAL &&
2166             ptlrpc_req2svc(req)->srv_req_portal != MDS_IO_PORTAL) {
2167                 CERROR("%s: deny read request from %s to portal %u\n",
2168                        tgt_name(tsi->tsi_tgt),
2169                        obd_export_nid2str(req->rq_export),
2170                        ptlrpc_req2svc(req)->srv_req_portal);
2171                 RETURN(-EPROTO);
2172         }
2173
2174         req->rq_bulk_read = 1;
2175
2176         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_READ_BULK))
2177                 RETURN(-EIO);
2178
2179         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK, cfs_fail_val > 0 ?
2180                          cfs_fail_val : (obd_timeout + 1) / 4);
2181
2182         /* Check if there is eviction in progress, and if so, wait for it to
2183          * finish */
2184         if (unlikely(atomic_read(&exp->exp_obd->obd_evict_inprogress))) {
2185                 /* We do not care how long it takes */
2186                 lwi = LWI_INTR(NULL, NULL);
2187                 rc = l_wait_event(exp->exp_obd->obd_evict_inprogress_waitq,
2188                          !atomic_read(&exp->exp_obd->obd_evict_inprogress),
2189                          &lwi);
2190         }
2191
2192         /* There must be big cache in current thread to process this request
2193          * if it is NULL then something went wrong and it wasn't allocated,
2194          * report -ENOMEM in that case */
2195         if (tbc == NULL)
2196                 RETURN(-ENOMEM);
2197
2198         body = tsi->tsi_ost_body;
2199         LASSERT(body != NULL);
2200
2201         ioo = req_capsule_client_get(tsi->tsi_pill, &RMF_OBD_IOOBJ);
2202         LASSERT(ioo != NULL); /* must exists after tgt_ost_body_unpack */
2203
2204         remote_nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
2205         LASSERT(remote_nb != NULL); /* must exists after tgt_ost_body_unpack */
2206
2207         local_nb = tbc->local;
2208
2209         rc = tgt_brw_lock(tsi->tsi_env, exp, &tsi->tsi_resid, ioo, remote_nb,
2210                           &lockh, LCK_PR);
2211         if (rc != 0)
2212                 RETURN(rc);
2213
2214         /*
2215          * If getting the lock took more time than
2216          * client was willing to wait, drop it. b=11330
2217          */
2218         if (ktime_get_real_seconds() > req->rq_deadline ||
2219             OBD_FAIL_CHECK(OBD_FAIL_OST_DROP_REQ)) {
2220                 no_reply = 1;
2221                 CERROR("Dropping timed-out read from %s because locking object " DOSTID " took %lld seconds (limit was %lld).\n",
2222                        libcfs_id2str(req->rq_peer), POSTID(&ioo->ioo_oid),
2223                        ktime_get_real_seconds() - req->rq_arrival_time.tv_sec,
2224                        req->rq_deadline - req->rq_arrival_time.tv_sec);
2225                 GOTO(out_lock, rc = -ETIMEDOUT);
2226         }
2227
2228         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
2229         repbody->oa = body->oa;
2230
2231         npages = PTLRPC_MAX_BRW_PAGES;
2232         rc = obd_preprw(tsi->tsi_env, OBD_BRW_READ, exp, &repbody->oa, 1,
2233                         ioo, remote_nb, &npages, local_nb);
2234         if (rc != 0)
2235                 GOTO(out_lock, rc);
2236
2237         if (body->oa.o_flags & OBD_FL_SHORT_IO) {
2238                 desc = NULL;
2239         } else {
2240                 desc = ptlrpc_prep_bulk_exp(req, npages, ioobj_max_brw_get(ioo),
2241                                             PTLRPC_BULK_PUT_SOURCE |
2242                                                 PTLRPC_BULK_BUF_KIOV,
2243                                             OST_BULK_PORTAL,
2244                                             &ptlrpc_bulk_kiov_nopin_ops);
2245                 if (desc == NULL)
2246                         GOTO(out_commitrw, rc = -ENOMEM);
2247         }
2248
2249         nob = 0;
2250         npages_read = npages;
2251         for (i = 0; i < npages; i++) {
2252                 int page_rc = local_nb[i].lnb_rc;
2253
2254                 if (page_rc < 0) {
2255                         rc = page_rc;
2256                         npages_read = i;
2257                         break;
2258                 }
2259
2260                 nob += page_rc;
2261                 if (page_rc != 0 && desc != NULL) { /* some data! */
2262                         LASSERT(local_nb[i].lnb_page != NULL);
2263                         desc->bd_frag_ops->add_kiov_frag
2264                           (desc, local_nb[i].lnb_page,
2265                            local_nb[i].lnb_page_offset & ~PAGE_MASK,
2266                            page_rc);
2267                 }
2268
2269                 if (page_rc != local_nb[i].lnb_len) { /* short read */
2270                         local_nb[i].lnb_len = page_rc;
2271                         npages_read = i + (page_rc != 0 ? 1 : 0);
2272                         /* All subsequent pages should be 0 */
2273                         while (++i < npages)
2274                                 LASSERT(local_nb[i].lnb_rc == 0);
2275                         break;
2276                 }
2277         }
2278         if (OBD_FAIL_CHECK(OBD_FAIL_OST_READ_SIZE) &&
2279             nob != cfs_fail_val)
2280                 rc = -E2BIG;
2281
2282         if (body->oa.o_valid & OBD_MD_FLCKSUM) {
2283                 u32 flag = body->oa.o_valid & OBD_MD_FLFLAGS ?
2284                            body->oa.o_flags : 0;
2285                 enum cksum_types cksum_type = obd_cksum_type_unpack(flag);
2286
2287                 repbody->oa.o_flags = obd_cksum_type_pack(obd_name,
2288                                                           cksum_type);
2289                 repbody->oa.o_valid = OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
2290
2291                 rc = tgt_checksum_niobuf_rw(tsi->tsi_tgt, cksum_type,
2292                                             local_nb, npages_read, OST_READ,
2293                                             &repbody->oa.o_cksum);
2294                 if (rc < 0)
2295                         GOTO(out_commitrw, rc);
2296                 CDEBUG(D_PAGE, "checksum at read origin: %x\n",
2297                        repbody->oa.o_cksum);
2298
2299                 /* if a resend it could be for a cksum error, so check Server
2300                  * cksum with returned Client cksum (this should even cover
2301                  * zero-cksum case) */
2302                 if ((body->oa.o_valid & OBD_MD_FLFLAGS) &&
2303                     (body->oa.o_flags & OBD_FL_RECOV_RESEND))
2304                         check_read_checksum(local_nb, npages_read, exp,
2305                                             &body->oa, &req->rq_peer,
2306                                             body->oa.o_cksum,
2307                                             repbody->oa.o_cksum, cksum_type);
2308         } else {
2309                 repbody->oa.o_valid = 0;
2310         }
2311         /* We're finishing using body->oa as an input variable */
2312
2313         /* Check if client was evicted while we were doing i/o before touching
2314          * network */
2315         if (rc == 0) {
2316                 if (body->oa.o_flags & OBD_FL_SHORT_IO) {
2317                         unsigned char *short_io_buf;
2318                         int short_io_size;
2319
2320                         short_io_buf = req_capsule_server_get(&req->rq_pill,
2321                                                               &RMF_SHORT_IO);
2322                         short_io_size = req_capsule_get_size(&req->rq_pill,
2323                                                              &RMF_SHORT_IO,
2324                                                              RCL_SERVER);
2325                         rc = tgt_pages2shortio(local_nb, npages_read,
2326                                                short_io_buf, short_io_size);
2327                         if (rc >= 0)
2328                                 req_capsule_shrink(&req->rq_pill,
2329                                                    &RMF_SHORT_IO, rc,
2330                                                    RCL_SERVER);
2331                         rc = rc > 0 ? 0 : rc;
2332                 } else if (!CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2)) {
2333                         rc = target_bulk_io(exp, desc);
2334                 }
2335                 no_reply = rc != 0;
2336         } else {
2337                 if (body->oa.o_flags & OBD_FL_SHORT_IO)
2338                         req_capsule_shrink(&req->rq_pill, &RMF_SHORT_IO, 0,
2339                                            RCL_SERVER);
2340         }
2341
2342 out_commitrw:
2343         /* Must commit after prep above in all cases */
2344         rc = obd_commitrw(tsi->tsi_env, OBD_BRW_READ, exp, &repbody->oa, 1, ioo,
2345                           remote_nb, npages, local_nb, rc);
2346 out_lock:
2347         tgt_brw_unlock(ioo, remote_nb, &lockh, LCK_PR);
2348
2349         if (desc && !CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2))
2350                 ptlrpc_free_bulk(desc);
2351
2352         LASSERT(rc <= 0);
2353         if (rc == 0) {
2354                 rc = nob;
2355                 ptlrpc_lprocfs_brw(req, nob);
2356         } else if (no_reply) {
2357                 req->rq_no_reply = 1;
2358                 /* reply out callback would free */
2359                 ptlrpc_req_drop_rs(req);
2360                 LCONSOLE_WARN("%s: Bulk IO read error with %s (at %s), "
2361                               "client will retry: rc %d\n",
2362                               obd_name,
2363                               obd_uuid2str(&exp->exp_client_uuid),
2364                               obd_export_nid2str(exp), rc);
2365         }
2366         /* send a bulk after reply to simulate a network delay or reordering
2367          * by a router - Note that !desc implies short io, so there is no bulk
2368          * to reorder. */
2369         if (unlikely(CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CLIENT_BULK_CB2)) &&
2370             desc) {
2371                 wait_queue_head_t        waitq;
2372                 struct l_wait_info       lwi1;
2373
2374                 CDEBUG(D_INFO, "reorder BULK\n");
2375                 init_waitqueue_head(&waitq);
2376
2377                 lwi1 = LWI_TIMEOUT_INTR(cfs_time_seconds(3), NULL, NULL, NULL);
2378                 l_wait_event(waitq, 0, &lwi1);
2379                 target_bulk_io(exp, desc);
2380                 ptlrpc_free_bulk(desc);
2381         }
2382
2383         RETURN(rc);
2384 }
2385 EXPORT_SYMBOL(tgt_brw_read);
2386
2387 static int tgt_shortio2pages(struct niobuf_local *local, int npages,
2388                              unsigned char *buf, unsigned int size)
2389 {
2390         int     i, off, len;
2391         char    *ptr;
2392
2393         for (i = 0; i < npages; i++) {
2394                 off = local[i].lnb_page_offset & ~PAGE_MASK;
2395                 len = local[i].lnb_len;
2396
2397                 if (len == 0)
2398                         continue;
2399
2400                 CDEBUG(D_PAGE, "index %d offset = %d len = %d left = %d\n",
2401                        i, off, len, size);
2402                 ptr = ll_kmap_atomic(local[i].lnb_page, KM_USER0);
2403                 if (ptr == NULL)
2404                         return -EINVAL;
2405                 memcpy(ptr + off, buf, len < size ? len : size);
2406                 ll_kunmap_atomic(ptr, KM_USER0);
2407                 buf += len;
2408                 size -= len;
2409         }
2410         return 0;
2411 }
2412
2413 static void tgt_warn_on_cksum(struct ptlrpc_request *req,
2414                               struct ptlrpc_bulk_desc *desc,
2415                               struct niobuf_local *local_nb, int npages,
2416                               u32 client_cksum, u32 server_cksum,
2417                               bool mmap)
2418 {
2419         struct obd_export *exp = req->rq_export;
2420         struct ost_body *body;
2421         char *router = "";
2422         char *via = "";
2423
2424         body = req_capsule_client_get(&req->rq_pill, &RMF_OST_BODY);
2425         LASSERT(body != NULL);
2426
2427         if (desc && req->rq_peer.nid != desc->bd_sender) {
2428                 via = " via ";
2429                 router = libcfs_nid2str(desc->bd_sender);
2430         }
2431
2432         if (exp->exp_obd->obd_checksum_dump)
2433                 dump_all_bulk_pages(&body->oa, npages, local_nb, server_cksum,
2434                                     client_cksum);
2435
2436         if (mmap) {
2437                 CDEBUG_LIMIT(D_INFO, "client csum %x, server csum %x\n",
2438                              client_cksum, server_cksum);
2439                 return;
2440         }
2441
2442         LCONSOLE_ERROR_MSG(0x168, "%s: BAD WRITE CHECKSUM: from %s%s%s inode "
2443                            DFID" object "DOSTID" extent [%llu-%llu"
2444                            "]: client csum %x, server csum %x\n",
2445                            exp->exp_obd->obd_name, libcfs_id2str(req->rq_peer),
2446                            via, router,
2447                            body->oa.o_valid & OBD_MD_FLFID ?
2448                            body->oa.o_parent_seq : (__u64)0,
2449                            body->oa.o_valid & OBD_MD_FLFID ?
2450                            body->oa.o_parent_oid : 0,
2451                            body->oa.o_valid & OBD_MD_FLFID ?
2452                            body->oa.o_parent_ver : 0,
2453                            POSTID(&body->oa.o_oi),
2454                            local_nb[0].lnb_file_offset,
2455                            local_nb[npages-1].lnb_file_offset +
2456                            local_nb[npages - 1].lnb_len - 1,
2457                            client_cksum, server_cksum);
2458 }
2459
2460 int tgt_brw_write(struct tgt_session_info *tsi)
2461 {
2462         struct ptlrpc_request   *req = tgt_ses_req(tsi);
2463         struct ptlrpc_bulk_desc *desc = NULL;
2464         struct obd_export       *exp = req->rq_export;
2465         struct niobuf_remote    *remote_nb;
2466         struct niobuf_local     *local_nb;
2467         struct obd_ioobj        *ioo;
2468         struct ost_body         *body, *repbody;
2469         struct lustre_handle     lockh = {0};
2470         __u32                   *rcs;
2471         int                      objcount, niocount, npages;
2472         int                      rc, i, j;
2473         enum cksum_types cksum_type = OBD_CKSUM_CRC32;
2474         bool                     no_reply = false, mmap;
2475         struct tgt_thread_big_cache *tbc = req->rq_svc_thread->t_data;
2476         bool wait_sync = false;
2477         const char *obd_name = exp->exp_obd->obd_name;
2478
2479         ENTRY;
2480
2481         if (ptlrpc_req2svc(req)->srv_req_portal != OST_IO_PORTAL &&
2482             ptlrpc_req2svc(req)->srv_req_portal != MDS_IO_PORTAL) {
2483                 CERROR("%s: deny write request from %s to portal %u\n",
2484                        tgt_name(tsi->tsi_tgt),
2485                        obd_export_nid2str(req->rq_export),
2486                        ptlrpc_req2svc(req)->srv_req_portal);
2487                 RETURN(err_serious(-EPROTO));
2488         }
2489
2490         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOSPC))
2491                 RETURN(err_serious(-ENOSPC));
2492         if (OBD_FAIL_TIMEOUT(OBD_FAIL_OST_EROFS, 1))
2493                 RETURN(err_serious(-EROFS));
2494
2495         req->rq_bulk_write = 1;
2496
2497         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_WRITE_BULK))
2498                 RETURN(err_serious(-EIO));
2499         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_WRITE_BULK2))
2500                 RETURN(err_serious(-EFAULT));
2501
2502         /* pause before transaction has been started */
2503         CFS_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK, cfs_fail_val > 0 ?
2504                          cfs_fail_val : (obd_timeout + 1) / 4);
2505
2506         /* Delay write commit to show stale size information */
2507         CFS_FAIL_TIMEOUT(OBD_FAIL_OSC_NO_SIZE_DATA, cfs_fail_val);
2508
2509         /* There must be big cache in current thread to process this request
2510          * if it is NULL then something went wrong and it wasn't allocated,
2511          * report -ENOMEM in that case */
2512         if (tbc == NULL)
2513                 RETURN(-ENOMEM);
2514
2515         body = tsi->tsi_ost_body;
2516         LASSERT(body != NULL);
2517
2518         ioo = req_capsule_client_get(&req->rq_pill, &RMF_OBD_IOOBJ);
2519         LASSERT(ioo != NULL); /* must exists after tgt_ost_body_unpack */
2520
2521         objcount = req_capsule_get_size(&req->rq_pill, &RMF_OBD_IOOBJ,
2522                                         RCL_CLIENT) / sizeof(*ioo);
2523
2524         for (niocount = i = 0; i < objcount; i++)
2525                 niocount += ioo[i].ioo_bufcnt;
2526
2527         remote_nb = req_capsule_client_get(&req->rq_pill, &RMF_NIOBUF_REMOTE);
2528         LASSERT(remote_nb != NULL); /* must exists after tgt_ost_body_unpack */
2529         if (niocount != req_capsule_get_size(&req->rq_pill,
2530                                              &RMF_NIOBUF_REMOTE, RCL_CLIENT) /
2531                         sizeof(*remote_nb))
2532                 RETURN(err_serious(-EPROTO));
2533
2534         if ((remote_nb[0].rnb_flags & OBD_BRW_MEMALLOC) &&
2535             ptlrpc_connection_is_local(exp->exp_connection))
2536                 memory_pressure_set();
2537
2538         req_capsule_set_size(&req->rq_pill, &RMF_RCS, RCL_SERVER,
2539                              niocount * sizeof(*rcs));
2540         rc = req_capsule_server_pack(&req->rq_pill);
2541         if (rc != 0)
2542                 GOTO(out, rc = err_serious(rc));
2543
2544         CFS_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_PACK, cfs_fail_val);
2545         rcs = req_capsule_server_get(&req->rq_pill, &RMF_RCS);
2546
2547         local_nb = tbc->local;
2548
2549         rc = tgt_brw_lock(tsi->tsi_env, exp, &tsi->tsi_resid, ioo, remote_nb,
2550                           &lockh, LCK_PW);
2551         if (rc != 0)
2552                 GOTO(out, rc);
2553
2554         /*
2555          * If getting the lock took more time than
2556          * client was willing to wait, drop it. b=11330
2557          */
2558         if (ktime_get_real_seconds() > req->rq_deadline ||
2559             OBD_FAIL_CHECK(OBD_FAIL_OST_DROP_REQ)) {
2560                 no_reply = true;
2561                 CERROR("%s: Dropping timed-out write from %s because locking object " DOSTID " took %lld seconds (limit was %lld).\n",
2562                        tgt_name(tsi->tsi_tgt), libcfs_id2str(req->rq_peer),
2563                        POSTID(&ioo->ioo_oid),
2564                        ktime_get_real_seconds() - req->rq_arrival_time.tv_sec,
2565                        req->rq_deadline - req->rq_arrival_time.tv_sec);
2566                 GOTO(out_lock, rc = -ETIMEDOUT);
2567         }
2568
2569         /* Because we already sync grant info with client when reconnect,
2570          * grant info will be cleared for resent req, then fed_grant and
2571          * total_grant will not be modified in following preprw_write */
2572         if (lustre_msg_get_flags(req->rq_reqmsg) & (MSG_RESENT | MSG_REPLAY)) {
2573                 DEBUG_REQ(D_CACHE, req, "clear resent/replay req grant info");
2574                 body->oa.o_valid &= ~OBD_MD_FLGRANT;
2575         }
2576
2577         repbody = req_capsule_server_get(&req->rq_pill, &RMF_OST_BODY);
2578         if (repbody == NULL)
2579                 GOTO(out_lock, rc = -ENOMEM);
2580         repbody->oa = body->oa;
2581
2582         npages = PTLRPC_MAX_BRW_PAGES;
2583         rc = obd_preprw(tsi->tsi_env, OBD_BRW_WRITE, exp, &repbody->oa,
2584                         objcount, ioo, remote_nb, &npages, local_nb);
2585         if (rc < 0)
2586                 GOTO(out_lock, rc);
2587         if (body->oa.o_flags & OBD_FL_SHORT_IO) {
2588                 unsigned int short_io_size;
2589                 unsigned char *short_io_buf;
2590
2591                 short_io_size = req_capsule_get_size(&req->rq_pill,
2592                                                      &RMF_SHORT_IO,
2593                                                      RCL_CLIENT);
2594                 short_io_buf = req_capsule_client_get(&req->rq_pill,
2595                                                       &RMF_SHORT_IO);
2596                 CDEBUG(D_INFO, "Client use short io for data transfer,"
2597                                " size = %d\n", short_io_size);
2598
2599                 /* Copy short io buf to pages */
2600                 rc = tgt_shortio2pages(local_nb, npages, short_io_buf,
2601                                        short_io_size);
2602                 desc = NULL;
2603         } else {
2604                 desc = ptlrpc_prep_bulk_exp(req, npages, ioobj_max_brw_get(ioo),
2605                                             PTLRPC_BULK_GET_SINK |
2606                                             PTLRPC_BULK_BUF_KIOV,
2607                                             OST_BULK_PORTAL,
2608                                             &ptlrpc_bulk_kiov_nopin_ops);
2609                 if (desc == NULL)
2610                         GOTO(skip_transfer, rc = -ENOMEM);
2611
2612                 /* NB Having prepped, we must commit... */
2613                 for (i = 0; i < npages; i++)
2614                         desc->bd_frag_ops->add_kiov_frag(desc,
2615                                         local_nb[i].lnb_page,
2616                                         local_nb[i].lnb_page_offset & ~PAGE_MASK,
2617                                         local_nb[i].lnb_len);
2618
2619                 rc = sptlrpc_svc_prep_bulk(req, desc);
2620                 if (rc != 0)
2621                         GOTO(skip_transfer, rc);
2622
2623                 rc = target_bulk_io(exp, desc);
2624         }
2625
2626         no_reply = rc != 0;
2627
2628 skip_transfer:
2629         if (body->oa.o_valid & OBD_MD_FLCKSUM && rc == 0) {
2630                 static int cksum_counter;
2631
2632                 if (body->oa.o_valid & OBD_MD_FLFLAGS)
2633                         cksum_type = obd_cksum_type_unpack(body->oa.o_flags);
2634
2635                 repbody->oa.o_valid |= OBD_MD_FLCKSUM | OBD_MD_FLFLAGS;
2636                 repbody->oa.o_flags &= ~OBD_FL_CKSUM_ALL;
2637                 repbody->oa.o_flags |= obd_cksum_type_pack(obd_name,
2638                                                            cksum_type);
2639
2640                 rc = tgt_checksum_niobuf_rw(tsi->tsi_tgt, cksum_type,
2641                                             local_nb, npages, OST_WRITE,
2642                                             &repbody->oa.o_cksum);
2643                 if (rc < 0)
2644                         GOTO(out_commitrw, rc);
2645
2646                 cksum_counter++;
2647
2648                 if (unlikely(body->oa.o_cksum != repbody->oa.o_cksum)) {
2649                         mmap = (body->oa.o_valid & OBD_MD_FLFLAGS &&
2650                                 body->oa.o_flags & OBD_FL_MMAP);
2651
2652                         tgt_warn_on_cksum(req, desc, local_nb, npages,
2653                                           body->oa.o_cksum,
2654                                           repbody->oa.o_cksum, mmap);
2655                         cksum_counter = 0;
2656                 } else if ((cksum_counter & (-cksum_counter)) ==
2657                            cksum_counter) {
2658                         CDEBUG(D_INFO, "Checksum %u from %s OK: %x\n",
2659                                cksum_counter, libcfs_id2str(req->rq_peer),
2660                                repbody->oa.o_cksum);
2661                 }
2662         }
2663
2664 out_commitrw:
2665         /* Must commit after prep above in all cases */
2666         rc = obd_commitrw(tsi->tsi_env, OBD_BRW_WRITE, exp, &repbody->oa,
2667                           objcount, ioo, remote_nb, npages, local_nb, rc);
2668         if (rc == -ENOTCONN)
2669                 /* quota acquire process has been given up because
2670                  * either the client has been evicted or the client
2671                  * has timed out the request already */
2672                 no_reply = true;
2673
2674         for (i = 0; i < niocount; i++) {
2675                 if (!(local_nb[i].lnb_flags & OBD_BRW_ASYNC)) {
2676                         wait_sync = true;
2677                         break;
2678                 }
2679         }
2680         /*
2681          * Disable sending mtime back to the client. If the client locked the
2682          * whole object, then it has already updated the mtime on its side,
2683          * otherwise it will have to glimpse anyway (see bug 21489, comment 32)
2684          */
2685         repbody->oa.o_valid &= ~(OBD_MD_FLMTIME | OBD_MD_FLATIME);
2686
2687         if (rc == 0) {
2688                 int nob = 0;
2689
2690                 /* set per-requested niobuf return codes */
2691                 for (i = j = 0; i < niocount; i++) {
2692                         int len = remote_nb[i].rnb_len;
2693
2694                         nob += len;
2695                         rcs[i] = 0;
2696                         do {
2697                                 LASSERT(j < npages);
2698                                 if (local_nb[j].lnb_rc < 0)
2699                                         rcs[i] = local_nb[j].lnb_rc;
2700                                 len -= local_nb[j].lnb_len;
2701                                 j++;
2702                         } while (len > 0);
2703                         LASSERT(len == 0);
2704                 }
2705                 LASSERT(j == npages);
2706                 ptlrpc_lprocfs_brw(req, nob);
2707         }
2708 out_lock:
2709         tgt_brw_unlock(ioo, remote_nb, &lockh, LCK_PW);
2710         if (desc)
2711                 ptlrpc_free_bulk(desc);
2712 out:
2713         if (unlikely(no_reply || (exp->exp_obd->obd_no_transno && wait_sync))) {
2714                 req->rq_no_reply = 1;
2715                 /* reply out callback would free */
2716                 ptlrpc_req_drop_rs(req);
2717                 if (!exp->exp_obd->obd_no_transno)
2718                         LCONSOLE_WARN("%s: Bulk IO write error with %s (at %s),"
2719                                       " client will retry: rc = %d\n",
2720                                       obd_name,
2721                                       obd_uuid2str(&exp->exp_client_uuid),
2722                                       obd_export_nid2str(exp), rc);
2723         }
2724         memory_pressure_clr();
2725         RETURN(rc);
2726 }
2727 EXPORT_SYMBOL(tgt_brw_write);
2728
2729 /* Check if request can be reconstructed from saved reply data
2730  * A copy of the reply data is returned in @trd if the pointer is not NULL
2731  */
2732 bool req_can_reconstruct(struct ptlrpc_request *req,
2733                          struct tg_reply_data *trd)
2734 {
2735         struct tg_export_data *ted = &req->rq_export->exp_target_data;
2736         struct lsd_client_data *lcd = ted->ted_lcd;
2737         bool found;
2738
2739         if (tgt_is_multimodrpcs_client(req->rq_export))
2740                 return tgt_lookup_reply(req, trd);
2741
2742         mutex_lock(&ted->ted_lcd_lock);
2743         found = req->rq_xid == lcd->lcd_last_xid ||
2744                 req->rq_xid == lcd->lcd_last_close_xid;
2745
2746         if (found && trd != NULL) {
2747                 if (lustre_msg_get_opc(req->rq_reqmsg) == MDS_CLOSE) {
2748                         trd->trd_reply.lrd_xid = lcd->lcd_last_close_xid;
2749                         trd->trd_reply.lrd_transno =
2750                                                 lcd->lcd_last_close_transno;
2751                         trd->trd_reply.lrd_result = lcd->lcd_last_close_result;
2752                 } else {
2753                         trd->trd_reply.lrd_xid = lcd->lcd_last_xid;
2754                         trd->trd_reply.lrd_transno = lcd->lcd_last_transno;
2755                         trd->trd_reply.lrd_result = lcd->lcd_last_result;
2756                         trd->trd_reply.lrd_data = lcd->lcd_last_data;
2757                         trd->trd_pre_versions[0] = lcd->lcd_pre_versions[0];
2758                         trd->trd_pre_versions[1] = lcd->lcd_pre_versions[1];
2759                         trd->trd_pre_versions[2] = lcd->lcd_pre_versions[2];
2760                         trd->trd_pre_versions[3] = lcd->lcd_pre_versions[3];
2761                 }
2762         }
2763         mutex_unlock(&ted->ted_lcd_lock);
2764
2765         return found;
2766 }
2767 EXPORT_SYMBOL(req_can_reconstruct);
2768