Whamcloud - gitweb
LU-9019 obd: use 64-bit time for obd_recovery_* fields
[fs/lustre-release.git] / lustre / ptlrpc / niobuf.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, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_RPC
34 #include <obd_support.h>
35 #include <lustre_net.h>
36 #include <lustre_lib.h>
37 #include <obd.h>
38 #include <obd_class.h>
39 #include "ptlrpc_internal.h"
40
41 /**
42  * Helper function. Sends \a len bytes from \a base at offset \a offset
43  * over \a conn connection to portal \a portal.
44  * Returns 0 on success or error code.
45  */
46 static int ptl_send_buf(struct lnet_handle_md *mdh, void *base, int len,
47                         enum lnet_ack_req ack, struct ptlrpc_cb_id *cbid,
48                         lnet_nid_t self, struct lnet_process_id peer_id,
49                         int portal, __u64 xid, unsigned int offset,
50                         struct lnet_handle_md *bulk_cookie)
51 {
52         int              rc;
53         struct lnet_md         md;
54         ENTRY;
55
56         LASSERT (portal != 0);
57         CDEBUG (D_INFO, "peer_id %s\n", libcfs_id2str(peer_id));
58         md.start     = base;
59         md.length    = len;
60         md.threshold = (ack == LNET_ACK_REQ) ? 2 : 1;
61         md.options   = PTLRPC_MD_OPTIONS;
62         md.user_ptr  = cbid;
63         md.eq_handle = ptlrpc_eq_h;
64         LNetInvalidateMDHandle(&md.bulk_handle);
65
66         if (bulk_cookie) {
67                 md.bulk_handle = *bulk_cookie;
68                 md.options |= LNET_MD_BULK_HANDLE;
69         }
70
71         if (unlikely(ack == LNET_ACK_REQ &&
72                      OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_ACK, OBD_FAIL_ONCE))){
73                 /* don't ask for the ack to simulate failing client */
74                 ack = LNET_NOACK_REQ;
75         }
76
77         rc = LNetMDBind (md, LNET_UNLINK, mdh);
78         if (unlikely(rc != 0)) {
79                 CERROR ("LNetMDBind failed: %d\n", rc);
80                 LASSERT (rc == -ENOMEM);
81                 RETURN (-ENOMEM);
82         }
83
84         CDEBUG(D_NET, "Sending %d bytes to portal %d, xid %lld, offset %u\n",
85                len, portal, xid, offset);
86
87         rc = LNetPut(self, *mdh, ack,
88                      peer_id, portal, xid, offset, 0);
89         if (unlikely(rc != 0)) {
90                 int rc2;
91                 /* We're going to get an UNLINK event when I unlink below,
92                  * which will complete just like any other failed send, so
93                  * I fall through and return success here! */
94                 CERROR("LNetPut(%s, %d, %lld) failed: %d\n",
95                        libcfs_id2str(peer_id), portal, xid, rc);
96                 rc2 = LNetMDUnlink(*mdh);
97                 LASSERTF(rc2 == 0, "rc2 = %d\n", rc2);
98         }
99
100         RETURN (0);
101 }
102
103 static void mdunlink_iterate_helper(struct lnet_handle_md *bd_mds, int count)
104 {
105         int i;
106
107         for (i = 0; i < count; i++)
108                 LNetMDUnlink(bd_mds[i]);
109 }
110
111 #ifdef HAVE_SERVER_SUPPORT
112 /**
113  * Prepare bulk descriptor for specified incoming request \a req that
114  * can fit \a nfrags * pages. \a type is bulk type. \a portal is where
115  * the bulk to be sent. Used on server-side after request was already
116  * received.
117  * Returns pointer to newly allocatrd initialized bulk descriptor or NULL on
118  * error.
119  */
120 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
121                                               unsigned nfrags, unsigned max_brw,
122                                               unsigned int type,
123                                               unsigned portal,
124                                               const struct ptlrpc_bulk_frag_ops
125                                                 *ops)
126 {
127         struct obd_export *exp = req->rq_export;
128         struct ptlrpc_bulk_desc *desc;
129
130         ENTRY;
131         LASSERT(ptlrpc_is_bulk_op_active(type));
132
133         desc = ptlrpc_new_bulk(nfrags, max_brw, type, portal, ops);
134         if (desc == NULL)
135                 RETURN(NULL);
136
137         desc->bd_export = class_export_get(exp);
138         desc->bd_req = req;
139
140         desc->bd_cbid.cbid_fn  = server_bulk_callback;
141         desc->bd_cbid.cbid_arg = desc;
142
143         /* NB we don't assign rq_bulk here; server-side requests are
144          * re-used, and the handler frees the bulk desc explicitly. */
145
146         return desc;
147 }
148 EXPORT_SYMBOL(ptlrpc_prep_bulk_exp);
149
150 /**
151  * Starts bulk transfer for descriptor \a desc on the server.
152  * Returns 0 on success or error code.
153  */
154 int ptlrpc_start_bulk_transfer(struct ptlrpc_bulk_desc *desc)
155 {
156         struct obd_export        *exp = desc->bd_export;
157         lnet_nid_t                self_nid;
158         struct lnet_process_id    peer_id;
159         int                       rc = 0;
160         __u64                     mbits;
161         int                       posted_md;
162         int                       total_md;
163         struct lnet_md                 md;
164         ENTRY;
165
166         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_BULK_PUT_NET))
167                 RETURN(0);
168
169         /* NB no locking required until desc is on the network */
170         LASSERT(desc->bd_md_count == 0);
171         LASSERT(ptlrpc_is_bulk_op_active(desc->bd_type));
172
173         LASSERT(desc->bd_cbid.cbid_fn == server_bulk_callback);
174         LASSERT(desc->bd_cbid.cbid_arg == desc);
175
176         /*
177          * Multi-Rail: get the preferred self and peer NIDs from the
178          * request, so they are based on the route taken by the
179          * message.
180          */
181         self_nid = desc->bd_req->rq_self;
182         peer_id = desc->bd_req->rq_source;
183
184         /* NB total length may be 0 for a read past EOF, so we send 0
185          * length bulks, since the client expects bulk events.
186          *
187          * The client may not need all of the bulk mbits for the RPC. The RPC
188          * used the mbits of the highest bulk mbits needed, and the server masks
189          * off high bits to get bulk count for this RPC. LU-1431 */
190         mbits = desc->bd_req->rq_mbits & ~((__u64)desc->bd_md_max_brw - 1);
191         total_md = desc->bd_req->rq_mbits - mbits + 1;
192
193         desc->bd_md_count = total_md;
194         desc->bd_failure = 0;
195
196         md.user_ptr = &desc->bd_cbid;
197         md.eq_handle = ptlrpc_eq_h;
198         md.threshold = 2; /* SENT and ACK/REPLY */
199
200         for (posted_md = 0; posted_md < total_md; mbits++) {
201                 md.options = PTLRPC_MD_OPTIONS;
202
203                 /* NB it's assumed that source and sink buffer frags are
204                  * page-aligned. Otherwise we'd have to send client bulk
205                  * sizes over and split server buffer accordingly */
206                 ptlrpc_fill_bulk_md(&md, desc, posted_md);
207                 rc = LNetMDBind(md, LNET_UNLINK, &desc->bd_mds[posted_md]);
208                 if (rc != 0) {
209                         CERROR("%s: LNetMDBind failed for MD %u: rc = %d\n",
210                                exp->exp_obd->obd_name, posted_md, rc);
211                         LASSERT(rc == -ENOMEM);
212                         if (posted_md == 0) {
213                                 desc->bd_md_count = 0;
214                                 RETURN(-ENOMEM);
215                         }
216                         break;
217                 }
218
219                 /* LU-6441: last md is not sent and desc->bd_md_count == 1 */
220                 if (OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_CLIENT_BULK_CB3,
221                                          CFS_FAIL_ONCE) &&
222                     total_md > 1 && posted_md == total_md - 1) {
223                         posted_md++;
224                         continue;
225                 }
226
227                 /* Network is about to get at the memory */
228                 if (ptlrpc_is_bulk_put_source(desc->bd_type))
229                         rc = LNetPut(self_nid, desc->bd_mds[posted_md],
230                                      LNET_ACK_REQ, peer_id,
231                                      desc->bd_portal, mbits, 0, 0);
232                 else
233                         rc = LNetGet(self_nid, desc->bd_mds[posted_md],
234                                      peer_id, desc->bd_portal, mbits, 0);
235
236                 posted_md++;
237                 if (rc != 0) {
238                         CERROR("%s: failed bulk transfer with %s:%u x%llu: "
239                                "rc = %d\n", exp->exp_obd->obd_name,
240                                libcfs_id2str(peer_id), desc->bd_portal,
241                                mbits, rc);
242                         break;
243                 }
244         }
245
246         if (rc != 0) {
247                 /* Can't send, so we unlink the MD bound above.  The UNLINK
248                  * event this creates will signal completion with failure,
249                  * so we return SUCCESS here! */
250                 spin_lock(&desc->bd_lock);
251                 desc->bd_md_count -= total_md - posted_md;
252                 spin_unlock(&desc->bd_lock);
253                 LASSERT(desc->bd_md_count >= 0);
254
255                 mdunlink_iterate_helper(desc->bd_mds, posted_md);
256                 RETURN(0);
257         }
258
259         CDEBUG(D_NET, "Transferring %u pages %u bytes via portal %d "
260                "id %s mbits %#llx-%#llx\n", desc->bd_iov_count,
261                desc->bd_nob, desc->bd_portal, libcfs_id2str(peer_id),
262                mbits - posted_md, mbits - 1);
263
264         RETURN(0);
265 }
266
267 /**
268  * Server side bulk abort. Idempotent. Not thread-safe (i.e. only
269  * serialises with completion callback)
270  */
271 void ptlrpc_abort_bulk(struct ptlrpc_bulk_desc *desc)
272 {
273         struct l_wait_info       lwi;
274         int                      rc;
275
276         LASSERT(!in_interrupt());           /* might sleep */
277
278         if (!ptlrpc_server_bulk_active(desc))   /* completed or */
279                 return;                         /* never started */
280
281         /* We used to poison the pages with 0xab here because we did not want to
282          * send any meaningful data over the wire for evicted clients (bug 9297)
283          * However, this is no longer safe now that we use the page cache on the
284          * OSS (bug 20560) */
285
286         /* The unlink ensures the callback happens ASAP and is the last
287          * one.  If it fails, it must be because completion just happened,
288          * but we must still l_wait_event() in this case, to give liblustre
289          * a chance to run server_bulk_callback()*/
290         mdunlink_iterate_helper(desc->bd_mds, desc->bd_md_max_brw);
291
292         for (;;) {
293                 /* Network access will complete in finite time but the HUGE
294                  * timeout lets us CWARN for visibility of sluggish NALs */
295                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
296                                            cfs_time_seconds(1), NULL, NULL);
297                 rc = l_wait_event(desc->bd_waitq,
298                                   !ptlrpc_server_bulk_active(desc), &lwi);
299                 if (rc == 0)
300                         return;
301
302                 LASSERT(rc == -ETIMEDOUT);
303                 CWARN("Unexpectedly long timeout: desc %p\n", desc);
304         }
305 }
306 #endif /* HAVE_SERVER_SUPPORT */
307
308 /**
309  * Register bulk at the sender for later transfer.
310  * Returns 0 on success or error code.
311  */
312 int ptlrpc_register_bulk(struct ptlrpc_request *req)
313 {
314         struct ptlrpc_bulk_desc *desc = req->rq_bulk;
315         struct lnet_process_id peer;
316         int rc = 0;
317         int rc2;
318         int posted_md;
319         int total_md;
320         __u64 mbits;
321         struct lnet_handle_me me_h;
322         struct lnet_md md;
323         ENTRY;
324
325         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_BULK_GET_NET))
326                 RETURN(0);
327
328         /* NB no locking required until desc is on the network */
329         LASSERT(desc->bd_nob > 0);
330         LASSERT(desc->bd_md_count == 0);
331         LASSERT(desc->bd_md_max_brw <= PTLRPC_BULK_OPS_COUNT);
332         LASSERT(desc->bd_iov_count <= PTLRPC_MAX_BRW_PAGES);
333         LASSERT(desc->bd_req != NULL);
334         LASSERT(ptlrpc_is_bulk_op_passive(desc->bd_type));
335
336         /* cleanup the state of the bulk for it will be reused */
337         if (req->rq_resend || req->rq_send_state == LUSTRE_IMP_REPLAY)
338                 desc->bd_nob_transferred = 0;
339         else
340                 LASSERT(desc->bd_nob_transferred == 0);
341
342         desc->bd_failure = 0;
343
344         peer = desc->bd_import->imp_connection->c_peer;
345
346         LASSERT(desc->bd_cbid.cbid_fn == client_bulk_callback);
347         LASSERT(desc->bd_cbid.cbid_arg == desc);
348
349         total_md = (desc->bd_iov_count + LNET_MAX_IOV - 1) / LNET_MAX_IOV;
350         /* rq_mbits is matchbits of the final bulk */
351         mbits = req->rq_mbits - total_md + 1;
352
353         LASSERTF(mbits == (req->rq_mbits & PTLRPC_BULK_OPS_MASK),
354                  "first mbits = x%llu, last mbits = x%llu\n",
355                  mbits, req->rq_mbits);
356         LASSERTF(!(desc->bd_registered &&
357                    req->rq_send_state != LUSTRE_IMP_REPLAY) ||
358                  mbits != desc->bd_last_mbits,
359                  "registered: %d  rq_mbits: %llu bd_last_mbits: %llu\n",
360                  desc->bd_registered, mbits, desc->bd_last_mbits);
361
362         desc->bd_registered = 1;
363         desc->bd_last_mbits = mbits;
364         desc->bd_md_count = total_md;
365         md.user_ptr = &desc->bd_cbid;
366         md.eq_handle = ptlrpc_eq_h;
367         md.threshold = 1;                       /* PUT or GET */
368
369         for (posted_md = 0; posted_md < total_md; posted_md++, mbits++) {
370                 md.options = PTLRPC_MD_OPTIONS |
371                              (ptlrpc_is_bulk_op_get(desc->bd_type) ?
372                               LNET_MD_OP_GET : LNET_MD_OP_PUT);
373                 ptlrpc_fill_bulk_md(&md, desc, posted_md);
374
375                 rc = LNetMEAttach(desc->bd_portal, peer, mbits, 0,
376                                   LNET_UNLINK, LNET_INS_AFTER, &me_h);
377                 if (rc != 0) {
378                         CERROR("%s: LNetMEAttach failed x%llu/%d: rc = %d\n",
379                                desc->bd_import->imp_obd->obd_name, mbits,
380                                posted_md, rc);
381                         break;
382                 }
383
384                 /* About to let the network at it... */
385                 rc = LNetMDAttach(me_h, md, LNET_UNLINK,
386                                   &desc->bd_mds[posted_md]);
387                 if (rc != 0) {
388                         CERROR("%s: LNetMDAttach failed x%llu/%d: rc = %d\n",
389                                desc->bd_import->imp_obd->obd_name, mbits,
390                                posted_md, rc);
391                         rc2 = LNetMEUnlink(me_h);
392                         LASSERT(rc2 == 0);
393                         break;
394                 }
395         }
396
397         if (rc != 0) {
398                 LASSERT(rc == -ENOMEM);
399                 spin_lock(&desc->bd_lock);
400                 desc->bd_md_count -= total_md - posted_md;
401                 spin_unlock(&desc->bd_lock);
402                 LASSERT(desc->bd_md_count >= 0);
403                 mdunlink_iterate_helper(desc->bd_mds, desc->bd_md_max_brw);
404                 req->rq_status = -ENOMEM;
405                 RETURN(-ENOMEM);
406         }
407
408         spin_lock(&desc->bd_lock);
409         /* Holler if peer manages to touch buffers before he knows the mbits */
410         if (desc->bd_md_count != total_md)
411                 CWARN("%s: Peer %s touched %d buffers while I registered\n",
412                       desc->bd_import->imp_obd->obd_name, libcfs_id2str(peer),
413                       total_md - desc->bd_md_count);
414         spin_unlock(&desc->bd_lock);
415
416         CDEBUG(D_NET, "Setup %u bulk %s buffers: %u pages %u bytes, "
417                "mbits x%#llx-%#llx, portal %u\n", desc->bd_md_count,
418                ptlrpc_is_bulk_op_get(desc->bd_type) ? "get-source" : "put-sink",
419                desc->bd_iov_count, desc->bd_nob,
420                desc->bd_last_mbits, req->rq_mbits, desc->bd_portal);
421
422         RETURN(0);
423 }
424
425 /**
426  * Disconnect a bulk desc from the network. Idempotent. Not
427  * thread-safe (i.e. only interlocks with completion callback).
428  * Returns 1 on success or 0 if network unregistration failed for whatever
429  * reason.
430  */
431 int ptlrpc_unregister_bulk(struct ptlrpc_request *req, int async)
432 {
433         struct ptlrpc_bulk_desc *desc = req->rq_bulk;
434         struct l_wait_info       lwi;
435         int                      rc;
436         ENTRY;
437
438         LASSERT(!in_interrupt());     /* might sleep */
439
440         /* Let's setup deadline for reply unlink. */
441         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK) &&
442             async && req->rq_bulk_deadline == 0 && cfs_fail_val == 0)
443                 req->rq_bulk_deadline = cfs_time_current_sec() + LONG_UNLINK;
444
445         if (ptlrpc_client_bulk_active(req) == 0)        /* completed or */
446                 RETURN(1);                              /* never registered */
447
448         LASSERT(desc->bd_req == req);  /* bd_req NULL until registered */
449
450         /* the unlink ensures the callback happens ASAP and is the last
451          * one.  If it fails, it must be because completion just happened,
452          * but we must still l_wait_event() in this case to give liblustre
453          * a chance to run client_bulk_callback() */
454         mdunlink_iterate_helper(desc->bd_mds, desc->bd_md_max_brw);
455
456         if (ptlrpc_client_bulk_active(req) == 0)        /* completed or */
457                 RETURN(1);                              /* never registered */
458
459         /* Move to "Unregistering" phase as bulk was not unlinked yet. */
460         ptlrpc_rqphase_move(req, RQ_PHASE_UNREG_BULK);
461
462         /* Do not wait for unlink to finish. */
463         if (async)
464                 RETURN(0);
465
466         for (;;) {
467                 /* The wq argument is ignored by user-space wait_event macros */
468                 wait_queue_head_t *wq = (req->rq_set != NULL) ?
469                                         &req->rq_set->set_waitq :
470                                         &req->rq_reply_waitq;
471                 /* Network access will complete in finite time but the HUGE
472                  * timeout lets us CWARN for visibility of sluggish NALs */
473                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
474                                            cfs_time_seconds(1), NULL, NULL);
475                 rc = l_wait_event(*wq, !ptlrpc_client_bulk_active(req), &lwi);
476                 if (rc == 0) {
477                         ptlrpc_rqphase_move(req, req->rq_next_phase);
478                         RETURN(1);
479                 }
480
481                 LASSERT(rc == -ETIMEDOUT);
482                 DEBUG_REQ(D_WARNING, req, "Unexpectedly long timeout: desc %p",
483                           desc);
484         }
485         RETURN(0);
486 }
487
488 static void ptlrpc_at_set_reply(struct ptlrpc_request *req, int flags)
489 {
490         struct ptlrpc_service_part      *svcpt = req->rq_rqbd->rqbd_svcpt;
491         struct ptlrpc_service           *svc = svcpt->scp_service;
492         int service_time = max_t(int, cfs_time_current_sec() -
493                                  req->rq_arrival_time.tv_sec, 1);
494
495         if (!(flags & PTLRPC_REPLY_EARLY) &&
496             (req->rq_type != PTL_RPC_MSG_ERR) &&
497             (req->rq_reqmsg != NULL) &&
498             !(lustre_msg_get_flags(req->rq_reqmsg) &
499               (MSG_RESENT | MSG_REPLAY |
500                MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE))) {
501                 /* early replies, errors and recovery requests don't count
502                  * toward our service time estimate */
503                 int oldse = at_measured(&svcpt->scp_at_estimate, service_time);
504
505                 if (oldse != 0) {
506                         DEBUG_REQ(D_ADAPTTO, req,
507                                   "svc %s changed estimate from %d to %d",
508                                   svc->srv_name, oldse,
509                                   at_get(&svcpt->scp_at_estimate));
510                 }
511         }
512         /* Report actual service time for client latency calc */
513         lustre_msg_set_service_time(req->rq_repmsg, service_time);
514         /* Report service time estimate for future client reqs, but report 0
515          * (to be ignored by client) if it's an error reply during recovery.
516          * b=15815
517          */
518         if (req->rq_type == PTL_RPC_MSG_ERR &&
519             (req->rq_export == NULL ||
520              req->rq_export->exp_obd->obd_recovering)) {
521                 lustre_msg_set_timeout(req->rq_repmsg, 0);
522         } else {
523                 time64_t timeout;
524
525                 if (req->rq_export && req->rq_reqmsg != NULL &&
526                     (flags & PTLRPC_REPLY_EARLY) &&
527                     lustre_msg_get_flags(req->rq_reqmsg) &
528                     (MSG_REPLAY | MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE)) {
529                         struct obd_device *exp_obd = req->rq_export->exp_obd;
530
531                         timeout = ktime_get_real_seconds() -
532                                   req->rq_arrival_time.tv_sec +
533                                   min_t(time64_t, at_extra,
534                                         exp_obd->obd_recovery_timeout / 4);
535                 } else {
536                         timeout = at_get(&svcpt->scp_at_estimate);
537                 }
538                 lustre_msg_set_timeout(req->rq_repmsg, timeout);
539         }
540
541         if (req->rq_reqmsg &&
542             !(lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT)) {
543                 CDEBUG(D_ADAPTTO, "No early reply support: flags=%#x "
544                        "req_flags=%#x magic=%x/%x len=%d\n",
545                        flags, lustre_msg_get_flags(req->rq_reqmsg),
546                        lustre_msg_get_magic(req->rq_reqmsg),
547                        lustre_msg_get_magic(req->rq_repmsg), req->rq_replen);
548         }
549 }
550
551 /**
552  * Send request reply from request \a req reply buffer.
553  * \a flags defines reply types
554  * Returns 0 on success or error code
555  */
556 int ptlrpc_send_reply(struct ptlrpc_request *req, int flags)
557 {
558         struct ptlrpc_reply_state *rs = req->rq_reply_state;
559         struct ptlrpc_connection  *conn;
560         int                        rc;
561
562         /* We must already have a reply buffer (only ptlrpc_error() may be
563          * called without one). The reply generated by sptlrpc layer (e.g.
564          * error notify, etc.) might have NULL rq->reqmsg; Otherwise we must
565          * have a request buffer which is either the actual (swabbed) incoming
566          * request, or a saved copy if this is a req saved in
567          * target_queue_final_reply().
568          */
569         LASSERT (req->rq_no_reply == 0);
570         LASSERT (req->rq_reqbuf != NULL);
571         LASSERT (rs != NULL);
572         LASSERT ((flags & PTLRPC_REPLY_MAYBE_DIFFICULT) || !rs->rs_difficult);
573         LASSERT (req->rq_repmsg != NULL);
574         LASSERT (req->rq_repmsg == rs->rs_msg);
575         LASSERT (rs->rs_cb_id.cbid_fn == reply_out_callback);
576         LASSERT (rs->rs_cb_id.cbid_arg == rs);
577
578         /* There may be no rq_export during failover */
579
580         if (unlikely(req->rq_export && req->rq_export->exp_obd &&
581                      req->rq_export->exp_obd->obd_fail)) {
582                 /* Failed obd's only send ENODEV */
583                 req->rq_type = PTL_RPC_MSG_ERR;
584                 req->rq_status = -ENODEV;
585                 CDEBUG(D_HA, "sending ENODEV from failed obd %d\n",
586                        req->rq_export->exp_obd->obd_minor);
587         }
588
589         /* In order to keep interoprability with the client (< 2.3) which
590          * doesn't have pb_jobid in ptlrpc_body, We have to shrink the
591          * ptlrpc_body in reply buffer to ptlrpc_body_v2, otherwise, the
592          * reply buffer on client will be overflow.
593          *
594          * XXX Remove this whenver we drop the interoprability with such client.
595          */
596         req->rq_replen = lustre_shrink_msg(req->rq_repmsg, 0,
597                                            sizeof(struct ptlrpc_body_v2), 1);
598
599         if (req->rq_type != PTL_RPC_MSG_ERR)
600                 req->rq_type = PTL_RPC_MSG_REPLY;
601
602         lustre_msg_set_type(req->rq_repmsg, req->rq_type);
603         lustre_msg_set_status(req->rq_repmsg,
604                               ptlrpc_status_hton(req->rq_status));
605         lustre_msg_set_opc(req->rq_repmsg,
606                 req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : 0);
607
608         target_pack_pool_reply(req);
609
610         ptlrpc_at_set_reply(req, flags);
611
612         if (req->rq_export == NULL || req->rq_export->exp_connection == NULL)
613                 conn = ptlrpc_connection_get(req->rq_peer, req->rq_self, NULL);
614         else
615                 conn = ptlrpc_connection_addref(req->rq_export->exp_connection);
616
617         if (unlikely(conn == NULL)) {
618                 CERROR("not replying on NULL connection\n"); /* bug 9635 */
619                 return -ENOTCONN;
620         }
621         ptlrpc_rs_addref(rs);                   /* +1 ref for the network */
622
623         rc = sptlrpc_svc_wrap_reply(req);
624         if (unlikely(rc))
625                 goto out;
626
627         req->rq_sent = cfs_time_current_sec();
628
629         rc = ptl_send_buf(&rs->rs_md_h, rs->rs_repbuf, rs->rs_repdata_len,
630                           (rs->rs_difficult && !rs->rs_no_ack) ?
631                           LNET_ACK_REQ : LNET_NOACK_REQ,
632                           &rs->rs_cb_id, req->rq_self, req->rq_source,
633                           ptlrpc_req2svc(req)->srv_rep_portal,
634                           req->rq_xid, req->rq_reply_off, NULL);
635 out:
636         if (unlikely(rc != 0))
637                 ptlrpc_req_drop_rs(req);
638         ptlrpc_connection_put(conn);
639         return rc;
640 }
641
642 int ptlrpc_reply (struct ptlrpc_request *req)
643 {
644         if (req->rq_no_reply)
645                 return 0;
646         else
647                 return (ptlrpc_send_reply(req, 0));
648 }
649
650 /**
651  * For request \a req send an error reply back. Create empty
652  * reply buffers if necessary.
653  */
654 int ptlrpc_send_error(struct ptlrpc_request *req, int may_be_difficult)
655 {
656         int rc;
657         ENTRY;
658
659         if (req->rq_no_reply)
660                 RETURN(0);
661
662         if (!req->rq_repmsg) {
663                 rc = lustre_pack_reply(req, 1, NULL, NULL);
664                 if (rc)
665                         RETURN(rc);
666         }
667
668         if (req->rq_status != -ENOSPC && req->rq_status != -EACCES &&
669             req->rq_status != -EPERM && req->rq_status != -ENOENT &&
670             req->rq_status != -EINPROGRESS && req->rq_status != -EDQUOT)
671                 req->rq_type = PTL_RPC_MSG_ERR;
672
673         rc = ptlrpc_send_reply(req, may_be_difficult);
674         RETURN(rc);
675 }
676
677 int ptlrpc_error(struct ptlrpc_request *req)
678 {
679         return ptlrpc_send_error(req, 0);
680 }
681
682 /**
683  * Send request \a request.
684  * if \a noreply is set, don't expect any reply back and don't set up
685  * reply buffers.
686  * Returns 0 on success or error code.
687  */
688 int ptl_send_rpc(struct ptlrpc_request *request, int noreply)
689 {
690         int rc;
691         int rc2;
692         int mpflag = 0;
693         struct lnet_handle_md bulk_cookie;
694         struct ptlrpc_connection *connection;
695         struct lnet_handle_me reply_me_h;
696         struct lnet_md reply_md;
697         struct obd_import *imp = request->rq_import;
698         struct obd_device *obd = imp->imp_obd;
699         ENTRY;
700
701         LNetInvalidateMDHandle(&bulk_cookie);
702
703         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_RPC))
704                 RETURN(0);
705
706         LASSERT(request->rq_type == PTL_RPC_MSG_REQUEST);
707         LASSERT(request->rq_wait_ctx == 0);
708
709         /* If this is a re-transmit, we're required to have disengaged
710          * cleanly from the previous attempt */
711         LASSERT(!request->rq_receiving_reply);
712         LASSERT(!((lustre_msg_get_flags(request->rq_reqmsg) & MSG_REPLAY) &&
713                 (imp->imp_state == LUSTRE_IMP_FULL)));
714
715         if (unlikely(obd != NULL && obd->obd_fail)) {
716                 CDEBUG(D_HA, "muting rpc for failed imp obd %s\n",
717                         obd->obd_name);
718                 /* this prevents us from waiting in ptlrpc_queue_wait */
719                 spin_lock(&request->rq_lock);
720                 request->rq_err = 1;
721                 spin_unlock(&request->rq_lock);
722                 request->rq_status = -ENODEV;
723                 RETURN(-ENODEV);
724         }
725
726         connection = imp->imp_connection;
727
728         lustre_msg_set_handle(request->rq_reqmsg,
729                               &imp->imp_remote_handle);
730         lustre_msg_set_type(request->rq_reqmsg, PTL_RPC_MSG_REQUEST);
731         lustre_msg_set_conn_cnt(request->rq_reqmsg,
732                                 imp->imp_conn_cnt);
733         lustre_msghdr_set_flags(request->rq_reqmsg,
734                                 imp->imp_msghdr_flags);
735
736         /* If it's the first time to resend the request for EINPROGRESS,
737          * we need to allocate a new XID (see after_reply()), it's different
738          * from the resend for reply timeout. */
739         if (request->rq_nr_resend != 0 &&
740             list_empty(&request->rq_unreplied_list)) {
741                 __u64 min_xid = 0;
742                 /* resend for EINPROGRESS, allocate new xid to avoid reply
743                  * reconstruction */
744                 spin_lock(&imp->imp_lock);
745                 ptlrpc_assign_next_xid_nolock(request);
746                 min_xid = ptlrpc_known_replied_xid(imp);
747                 spin_unlock(&imp->imp_lock);
748
749                 lustre_msg_set_last_xid(request->rq_reqmsg, min_xid);
750                 DEBUG_REQ(D_RPCTRACE, request, "Allocating new xid for "
751                           "resend on EINPROGRESS");
752         }
753
754         if (request->rq_bulk != NULL) {
755                 ptlrpc_set_bulk_mbits(request);
756                 lustre_msg_set_mbits(request->rq_reqmsg, request->rq_mbits);
757         }
758
759         if (list_empty(&request->rq_unreplied_list) ||
760             request->rq_xid <= imp->imp_known_replied_xid) {
761                 DEBUG_REQ(D_ERROR, request, "xid: %llu, replied: %llu, "
762                           "list_empty:%d\n", request->rq_xid,
763                           imp->imp_known_replied_xid,
764                           list_empty(&request->rq_unreplied_list));
765                 LBUG();
766         }
767
768         /** For enabled AT all request should have AT_SUPPORT in the
769          * FULL import state when OBD_CONNECT_AT is set */
770         LASSERT(AT_OFF || imp->imp_state != LUSTRE_IMP_FULL ||
771                 (imp->imp_msghdr_flags & MSGHDR_AT_SUPPORT) ||
772                 !(imp->imp_connect_data.ocd_connect_flags &
773                 OBD_CONNECT_AT));
774
775         if (request->rq_resend) {
776                 lustre_msg_add_flags(request->rq_reqmsg, MSG_RESENT);
777                 if (request->rq_resend_cb != NULL)
778                         request->rq_resend_cb(request, &request->rq_async_args);
779         }
780         if (request->rq_memalloc)
781                 mpflag = cfs_memory_pressure_get_and_set();
782
783         rc = sptlrpc_cli_wrap_request(request);
784         if (rc == -ENOMEM)
785                 /* set rq_sent so that this request is treated
786                  * as a delayed send in the upper layers */
787                 request->rq_sent = cfs_time_current_sec();
788         if (rc)
789                 GOTO(out, rc);
790
791         /* bulk register should be done after wrap_request() */
792         if (request->rq_bulk != NULL) {
793                 rc = ptlrpc_register_bulk (request);
794                 if (rc != 0)
795                         GOTO(out, rc);
796                 /*
797                  * All the mds in the request will have the same cpt
798                  * encoded in the cookie. So we can just get the first
799                  * one.
800                  */
801                 bulk_cookie = request->rq_bulk->bd_mds[0];
802         }
803
804         if (!noreply) {
805                 LASSERT (request->rq_replen != 0);
806                 if (request->rq_repbuf == NULL) {
807                         LASSERT(request->rq_repdata == NULL);
808                         LASSERT(request->rq_repmsg == NULL);
809                         rc = sptlrpc_cli_alloc_repbuf(request,
810                                                       request->rq_replen);
811                         if (rc) {
812                                 /* this prevents us from looping in
813                                  * ptlrpc_queue_wait */
814                                 spin_lock(&request->rq_lock);
815                                 request->rq_err = 1;
816                                 spin_unlock(&request->rq_lock);
817                                 request->rq_status = rc;
818                                 GOTO(cleanup_bulk, rc);
819                         }
820                 } else {
821                         request->rq_repdata = NULL;
822                         request->rq_repmsg = NULL;
823                 }
824
825                 rc = LNetMEAttach(request->rq_reply_portal,/*XXX FIXME bug 249*/
826                                   connection->c_peer, request->rq_xid, 0,
827                                   LNET_UNLINK, LNET_INS_AFTER, &reply_me_h);
828                 if (rc != 0) {
829                         CERROR("LNetMEAttach failed: %d\n", rc);
830                         LASSERT (rc == -ENOMEM);
831                         GOTO(cleanup_bulk, rc = -ENOMEM);
832                 }
833         }
834
835         spin_lock(&request->rq_lock);
836         /* We are responsible for unlinking the reply buffer */
837         request->rq_reply_unlinked = noreply;
838         request->rq_receiving_reply = !noreply;
839         /* Clear any flags that may be present from previous sends. */
840         request->rq_req_unlinked = 0;
841         request->rq_replied = 0;
842         request->rq_err = 0;
843         request->rq_timedout = 0;
844         request->rq_net_err = 0;
845         request->rq_resend = 0;
846         request->rq_restart = 0;
847         request->rq_reply_truncated = 0;
848         spin_unlock(&request->rq_lock);
849
850         if (!noreply) {
851                 reply_md.start     = request->rq_repbuf;
852                 reply_md.length    = request->rq_repbuf_len;
853                 /* Allow multiple early replies */
854                 reply_md.threshold = LNET_MD_THRESH_INF;
855                 /* Manage remote for early replies */
856                 reply_md.options   = PTLRPC_MD_OPTIONS | LNET_MD_OP_PUT |
857                         LNET_MD_MANAGE_REMOTE |
858                         LNET_MD_TRUNCATE; /* allow to make EOVERFLOW error */;
859                 reply_md.user_ptr  = &request->rq_reply_cbid;
860                 reply_md.eq_handle = ptlrpc_eq_h;
861
862                 /* We must see the unlink callback to set rq_reply_unlinked,
863                  * so we can't auto-unlink */
864                 rc = LNetMDAttach(reply_me_h, reply_md, LNET_RETAIN,
865                                   &request->rq_reply_md_h);
866                 if (rc != 0) {
867                         CERROR("LNetMDAttach failed: %d\n", rc);
868                         LASSERT (rc == -ENOMEM);
869                         spin_lock(&request->rq_lock);
870                         /* ...but the MD attach didn't succeed... */
871                         request->rq_receiving_reply = 0;
872                         spin_unlock(&request->rq_lock);
873                         GOTO(cleanup_me, rc = -ENOMEM);
874                 }
875
876                 CDEBUG(D_NET, "Setup reply buffer: %u bytes, xid %llu"
877                        ", portal %u\n",
878                        request->rq_repbuf_len, request->rq_xid,
879                        request->rq_reply_portal);
880         }
881
882         /* add references on request for request_out_callback */
883         ptlrpc_request_addref(request);
884         if (obd != NULL && obd->obd_svc_stats != NULL)
885                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQACTIVE_CNTR,
886                         atomic_read(&imp->imp_inflight));
887
888         OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_DELAY_SEND, request->rq_timeout + 5);
889
890         do_gettimeofday(&request->rq_sent_tv);
891         request->rq_sent = cfs_time_current_sec();
892         /* We give the server rq_timeout secs to process the req, and
893            add the network latency for our local timeout. */
894         request->rq_deadline = request->rq_sent + request->rq_timeout +
895                 ptlrpc_at_get_net_latency(request);
896
897         ptlrpc_pinger_sending_on_import(imp);
898
899         DEBUG_REQ(D_INFO, request, "send flg=%x",
900                   lustre_msg_get_flags(request->rq_reqmsg));
901         rc = ptl_send_buf(&request->rq_req_md_h,
902                           request->rq_reqbuf, request->rq_reqdata_len,
903                           LNET_NOACK_REQ, &request->rq_req_cbid,
904                           LNET_NID_ANY, connection->c_peer,
905                           request->rq_request_portal,
906                           request->rq_xid, 0, &bulk_cookie);
907         if (likely(rc == 0))
908                 GOTO(out, rc);
909
910         request->rq_req_unlinked = 1;
911         ptlrpc_req_finished(request);
912         if (noreply)
913                 GOTO(out, rc);
914
915  cleanup_me:
916         /* MEUnlink is safe; the PUT didn't even get off the ground, and
917          * nobody apart from the PUT's target has the right nid+XID to
918          * access the reply buffer. */
919         rc2 = LNetMEUnlink(reply_me_h);
920         LASSERT (rc2 == 0);
921         /* UNLINKED callback called synchronously */
922         LASSERT(!request->rq_receiving_reply);
923
924  cleanup_bulk:
925         /* We do sync unlink here as there was no real transfer here so
926          * the chance to have long unlink to sluggish net is smaller here. */
927         ptlrpc_unregister_bulk(request, 0);
928  out:
929         if (request->rq_memalloc)
930                 cfs_memory_pressure_restore(mpflag);
931         return rc;
932 }
933 EXPORT_SYMBOL(ptl_send_rpc);
934
935 /**
936  * Register request buffer descriptor for request receiving.
937  */
938 int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd)
939 {
940         struct ptlrpc_service *service = rqbd->rqbd_svcpt->scp_service;
941         static struct lnet_process_id match_id = {LNET_NID_ANY, LNET_PID_ANY};
942         int rc;
943         struct lnet_md md;
944         struct lnet_handle_me me_h;
945
946         CDEBUG(D_NET, "LNetMEAttach: portal %d\n",
947                service->srv_req_portal);
948
949         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_RQBD))
950                 return (-ENOMEM);
951
952         /* NB: CPT affinity service should use new LNet flag LNET_INS_LOCAL,
953          * which means buffer can only be attached on local CPT, and LND
954          * threads can find it by grabbing a local lock */
955         rc = LNetMEAttach(service->srv_req_portal,
956                           match_id, 0, ~0, LNET_UNLINK,
957                           rqbd->rqbd_svcpt->scp_cpt >= 0 ?
958                           LNET_INS_LOCAL : LNET_INS_AFTER, &me_h);
959         if (rc != 0) {
960                 CERROR("LNetMEAttach failed: %d\n", rc);
961                 return (-ENOMEM);
962         }
963
964         LASSERT(rqbd->rqbd_refcount == 0);
965         rqbd->rqbd_refcount = 1;
966
967         md.start     = rqbd->rqbd_buffer;
968         md.length    = service->srv_buf_size;
969         md.max_size  = service->srv_max_req_size;
970         md.threshold = LNET_MD_THRESH_INF;
971         md.options   = PTLRPC_MD_OPTIONS | LNET_MD_OP_PUT | LNET_MD_MAX_SIZE;
972         md.user_ptr  = &rqbd->rqbd_cbid;
973         md.eq_handle = ptlrpc_eq_h;
974
975         rc = LNetMDAttach(me_h, md, LNET_UNLINK, &rqbd->rqbd_md_h);
976         if (rc == 0)
977                 return (0);
978
979         CERROR("LNetMDAttach failed: %d; \n", rc);
980         LASSERT (rc == -ENOMEM);
981         rc = LNetMEUnlink (me_h);
982         LASSERT (rc == 0);
983         rqbd->rqbd_refcount = 0;
984
985         return (-ENOMEM);
986 }