blob: 9c937398a0856acbad13b4813e7cc05423aeaa3f [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin6a5b99a2016-06-14 23:33:40 -040018 * http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * 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 *
Andreas Dilger1dc563a2015-11-08 18:09:37 -050026 * Copyright (c) 2011, 2015, Intel Corporation.
Peng Taod7e09d02013-05-02 16:46:55 +080027 */
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
Greg Kroah-Hartmane27db142014-07-11 22:29:36 -070034#include "../include/obd_support.h"
35#include "../include/lustre_net.h"
36#include "../include/lustre_lib.h"
37#include "../include/obd.h"
38#include "../include/obd_class.h"
Peng Taod7e09d02013-05-02 16:46:55 +080039#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 */
Kristina Martsenko3949015e2013-11-11 21:34:58 +020046static int ptl_send_buf(lnet_handle_md_t *mdh, void *base, int len,
47 lnet_ack_req_t ack, struct ptlrpc_cb_id *cbid,
48 struct ptlrpc_connection *conn, int portal, __u64 xid,
49 unsigned int offset)
Peng Taod7e09d02013-05-02 16:46:55 +080050{
Chris Hannad0bfef32015-06-03 10:28:26 -040051 int rc;
52 lnet_md_t md;
Peng Taod7e09d02013-05-02 16:46:55 +080053
Kristina Martsenko3949015e2013-11-11 21:34:58 +020054 LASSERT(portal != 0);
Kristina Martsenko3949015e2013-11-11 21:34:58 +020055 CDEBUG(D_INFO, "conn=%p id %s\n", conn, libcfs_id2str(conn->c_peer));
Chris Hannad0bfef32015-06-03 10:28:26 -040056 md.start = base;
57 md.length = len;
Peng Taod7e09d02013-05-02 16:46:55 +080058 md.threshold = (ack == LNET_ACK_REQ) ? 2 : 1;
Chris Hannad0bfef32015-06-03 10:28:26 -040059 md.options = PTLRPC_MD_OPTIONS;
60 md.user_ptr = cbid;
Peng Taod7e09d02013-05-02 16:46:55 +080061 md.eq_handle = ptlrpc_eq_h;
62
63 if (unlikely(ack == LNET_ACK_REQ &&
Kristina Martsenkocb68dd22013-11-11 21:34:59 +020064 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_ACK,
65 OBD_FAIL_ONCE))) {
Peng Taod7e09d02013-05-02 16:46:55 +080066 /* don't ask for the ack to simulate failing client */
67 ack = LNET_NOACK_REQ;
68 }
69
Kristina Martsenko3949015e2013-11-11 21:34:58 +020070 rc = LNetMDBind(md, LNET_UNLINK, mdh);
Peng Taod7e09d02013-05-02 16:46:55 +080071 if (unlikely(rc != 0)) {
Kristina Martsenko3949015e2013-11-11 21:34:58 +020072 CERROR("LNetMDBind failed: %d\n", rc);
73 LASSERT(rc == -ENOMEM);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080074 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +080075 }
76
Greg Kroah-Hartmanf537dd22014-07-12 18:41:09 -070077 CDEBUG(D_NET, "Sending %d bytes to portal %d, xid %lld, offset %u\n",
Peng Taod7e09d02013-05-02 16:46:55 +080078 len, portal, xid, offset);
79
Kristina Martsenko3949015e2013-11-11 21:34:58 +020080 rc = LNetPut(conn->c_self, *mdh, ack,
81 conn->c_peer, portal, xid, offset, 0);
Peng Taod7e09d02013-05-02 16:46:55 +080082 if (unlikely(rc != 0)) {
83 int rc2;
84 /* We're going to get an UNLINK event when I unlink below,
85 * which will complete just like any other failed send, so
Oleg Drokindadfcda2016-02-24 22:00:38 -050086 * I fall through and return success here!
87 */
Greg Kroah-Hartmanf537dd22014-07-12 18:41:09 -070088 CERROR("LNetPut(%s, %d, %lld) failed: %d\n",
Peng Taod7e09d02013-05-02 16:46:55 +080089 libcfs_id2str(conn->c_peer), portal, xid, rc);
90 rc2 = LNetMDUnlink(*mdh);
91 LASSERTF(rc2 == 0, "rc2 = %d\n", rc2);
92 }
93
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080094 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +080095}
96
97static void mdunlink_iterate_helper(lnet_handle_md_t *bd_mds, int count)
98{
99 int i;
100
101 for (i = 0; i < count; i++)
102 LNetMDUnlink(bd_mds[i]);
103}
104
Peng Taod7e09d02013-05-02 16:46:55 +0800105/**
106 * Register bulk at the sender for later transfer.
107 * Returns 0 on success or error code.
108 */
Shraddha Barke12d0be62015-10-04 13:00:13 +0530109static int ptlrpc_register_bulk(struct ptlrpc_request *req)
Peng Taod7e09d02013-05-02 16:46:55 +0800110{
111 struct ptlrpc_bulk_desc *desc = req->rq_bulk;
112 lnet_process_id_t peer;
113 int rc = 0;
114 int rc2;
115 int posted_md;
116 int total_md;
117 __u64 xid;
Chris Hannad0bfef32015-06-03 10:28:26 -0400118 lnet_handle_me_t me_h;
119 lnet_md_t md;
Peng Taod7e09d02013-05-02 16:46:55 +0800120
121 if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_BULK_GET_NET))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800122 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800123
124 /* NB no locking required until desc is on the network */
125 LASSERT(desc->bd_nob > 0);
126 LASSERT(desc->bd_md_count == 0);
127 LASSERT(desc->bd_md_max_brw <= PTLRPC_BULK_OPS_COUNT);
128 LASSERT(desc->bd_iov_count <= PTLRPC_MAX_BRW_PAGES);
Oleg Drokin8b382082016-02-16 00:46:58 -0500129 LASSERT(desc->bd_req);
Peng Taod7e09d02013-05-02 16:46:55 +0800130 LASSERT(desc->bd_type == BULK_PUT_SINK ||
131 desc->bd_type == BULK_GET_SOURCE);
132
133 /* cleanup the state of the bulk for it will be reused */
134 if (req->rq_resend || req->rq_send_state == LUSTRE_IMP_REPLAY)
135 desc->bd_nob_transferred = 0;
136 else
137 LASSERT(desc->bd_nob_transferred == 0);
138
139 desc->bd_failure = 0;
140
141 peer = desc->bd_import->imp_connection->c_peer;
142
143 LASSERT(desc->bd_cbid.cbid_fn == client_bulk_callback);
144 LASSERT(desc->bd_cbid.cbid_arg == desc);
145
146 /* An XID is only used for a single request from the client.
147 * For retried bulk transfers, a new XID will be allocated in
148 * in ptlrpc_check_set() if it needs to be resent, so it is not
149 * using the same RDMA match bits after an error.
150 *
151 * For multi-bulk RPCs, rq_xid is the last XID needed for bulks. The
Oleg Drokindadfcda2016-02-24 22:00:38 -0500152 * first bulk XID is power-of-two aligned before rq_xid. LU-1431
153 */
Peng Taod7e09d02013-05-02 16:46:55 +0800154 xid = req->rq_xid & ~((__u64)desc->bd_md_max_brw - 1);
155 LASSERTF(!(desc->bd_registered &&
156 req->rq_send_state != LUSTRE_IMP_REPLAY) ||
157 xid != desc->bd_last_xid,
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700158 "registered: %d rq_xid: %llu bd_last_xid: %llu\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800159 desc->bd_registered, xid, desc->bd_last_xid);
160
161 total_md = (desc->bd_iov_count + LNET_MAX_IOV - 1) / LNET_MAX_IOV;
162 desc->bd_registered = 1;
163 desc->bd_last_xid = xid;
164 desc->bd_md_count = total_md;
165 md.user_ptr = &desc->bd_cbid;
166 md.eq_handle = ptlrpc_eq_h;
167 md.threshold = 1; /* PUT or GET */
168
169 for (posted_md = 0; posted_md < total_md; posted_md++, xid++) {
170 md.options = PTLRPC_MD_OPTIONS |
171 ((desc->bd_type == BULK_GET_SOURCE) ?
172 LNET_MD_OP_GET : LNET_MD_OP_PUT);
173 ptlrpc_fill_bulk_md(&md, desc, posted_md);
174
175 rc = LNetMEAttach(desc->bd_portal, peer, xid, 0,
176 LNET_UNLINK, LNET_INS_AFTER, &me_h);
177 if (rc != 0) {
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700178 CERROR("%s: LNetMEAttach failed x%llu/%d: rc = %d\n",
Amir Shehata3c92a0b2013-12-03 21:58:47 +0800179 desc->bd_import->imp_obd->obd_name, xid,
Peng Taod7e09d02013-05-02 16:46:55 +0800180 posted_md, rc);
181 break;
182 }
183
184 /* About to let the network at it... */
185 rc = LNetMDAttach(me_h, md, LNET_UNLINK,
186 &desc->bd_mds[posted_md]);
187 if (rc != 0) {
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700188 CERROR("%s: LNetMDAttach failed x%llu/%d: rc = %d\n",
Amir Shehata3c92a0b2013-12-03 21:58:47 +0800189 desc->bd_import->imp_obd->obd_name, xid,
Peng Taod7e09d02013-05-02 16:46:55 +0800190 posted_md, rc);
191 rc2 = LNetMEUnlink(me_h);
192 LASSERT(rc2 == 0);
193 break;
194 }
195 }
196
197 if (rc != 0) {
198 LASSERT(rc == -ENOMEM);
199 spin_lock(&desc->bd_lock);
200 desc->bd_md_count -= total_md - posted_md;
201 spin_unlock(&desc->bd_lock);
202 LASSERT(desc->bd_md_count >= 0);
203 mdunlink_iterate_helper(desc->bd_mds, desc->bd_md_max_brw);
204 req->rq_status = -ENOMEM;
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800205 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800206 }
207
208 /* Set rq_xid to matchbits of the final bulk so that server can
Oleg Drokindadfcda2016-02-24 22:00:38 -0500209 * infer the number of bulks that were prepared
210 */
Peng Taod7e09d02013-05-02 16:46:55 +0800211 req->rq_xid = --xid;
212 LASSERTF(desc->bd_last_xid == (req->rq_xid & PTLRPC_BULK_OPS_MASK),
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700213 "bd_last_xid = x%llu, rq_xid = x%llu\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800214 desc->bd_last_xid, req->rq_xid);
215
216 spin_lock(&desc->bd_lock);
217 /* Holler if peer manages to touch buffers before he knows the xid */
218 if (desc->bd_md_count != total_md)
219 CWARN("%s: Peer %s touched %d buffers while I registered\n",
Amir Shehata3c92a0b2013-12-03 21:58:47 +0800220 desc->bd_import->imp_obd->obd_name, libcfs_id2str(peer),
Peng Taod7e09d02013-05-02 16:46:55 +0800221 total_md - desc->bd_md_count);
222 spin_unlock(&desc->bd_lock);
223
Joe Perches2d00bd12014-11-23 11:28:50 -0800224 CDEBUG(D_NET, "Setup %u bulk %s buffers: %u pages %u bytes, xid x%#llx-%#llx, portal %u\n",
225 desc->bd_md_count,
Peng Taod7e09d02013-05-02 16:46:55 +0800226 desc->bd_type == BULK_GET_SOURCE ? "get-source" : "put-sink",
227 desc->bd_iov_count, desc->bd_nob,
228 desc->bd_last_xid, req->rq_xid, desc->bd_portal);
229
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800230 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800231}
Peng Taod7e09d02013-05-02 16:46:55 +0800232
233/**
234 * Disconnect a bulk desc from the network. Idempotent. Not
235 * thread-safe (i.e. only interlocks with completion callback).
236 * Returns 1 on success or 0 if network unregistration failed for whatever
237 * reason.
238 */
239int ptlrpc_unregister_bulk(struct ptlrpc_request *req, int async)
240{
241 struct ptlrpc_bulk_desc *desc = req->rq_bulk;
Chris Hannad0bfef32015-06-03 10:28:26 -0400242 wait_queue_head_t *wq;
243 struct l_wait_info lwi;
244 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800245
246 LASSERT(!in_interrupt()); /* might sleep */
247
248 /* Let's setup deadline for reply unlink. */
249 if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK) &&
Vitaly Fertman81ea39e2016-06-20 16:55:34 -0400250 async && req->rq_bulk_deadline == 0 && cfs_fail_val == 0)
Arnd Bergmann219e6de2015-09-27 16:45:30 -0400251 req->rq_bulk_deadline = ktime_get_real_seconds() + LONG_UNLINK;
Peng Taod7e09d02013-05-02 16:46:55 +0800252
253 if (ptlrpc_client_bulk_active(req) == 0) /* completed or */
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800254 return 1; /* never registered */
Peng Taod7e09d02013-05-02 16:46:55 +0800255
256 LASSERT(desc->bd_req == req); /* bd_req NULL until registered */
257
258 /* the unlink ensures the callback happens ASAP and is the last
259 * one. If it fails, it must be because completion just happened,
260 * but we must still l_wait_event() in this case to give liblustre
Oleg Drokindadfcda2016-02-24 22:00:38 -0500261 * a chance to run client_bulk_callback()
262 */
Peng Taod7e09d02013-05-02 16:46:55 +0800263 mdunlink_iterate_helper(desc->bd_mds, desc->bd_md_max_brw);
264
265 if (ptlrpc_client_bulk_active(req) == 0) /* completed or */
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800266 return 1; /* never registered */
Peng Taod7e09d02013-05-02 16:46:55 +0800267
268 /* Move to "Unregistering" phase as bulk was not unlinked yet. */
Vitaly Fertman81ea39e2016-06-20 16:55:34 -0400269 ptlrpc_rqphase_move(req, RQ_PHASE_UNREG_BULK);
Peng Taod7e09d02013-05-02 16:46:55 +0800270
271 /* Do not wait for unlink to finish. */
272 if (async)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800273 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800274
Oleg Drokin8b382082016-02-16 00:46:58 -0500275 if (req->rq_set)
Peng Taod7e09d02013-05-02 16:46:55 +0800276 wq = &req->rq_set->set_waitq;
277 else
278 wq = &req->rq_reply_waitq;
279
280 for (;;) {
281 /* Network access will complete in finite time but the HUGE
Oleg Drokindadfcda2016-02-24 22:00:38 -0500282 * timeout lets us CWARN for visibility of sluggish LNDs
283 */
Peng Taod7e09d02013-05-02 16:46:55 +0800284 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
285 cfs_time_seconds(1), NULL, NULL);
286 rc = l_wait_event(*wq, !ptlrpc_client_bulk_active(req), &lwi);
287 if (rc == 0) {
288 ptlrpc_rqphase_move(req, req->rq_next_phase);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800289 return 1;
Peng Taod7e09d02013-05-02 16:46:55 +0800290 }
291
292 LASSERT(rc == -ETIMEDOUT);
293 DEBUG_REQ(D_WARNING, req, "Unexpectedly long timeout: desc %p",
294 desc);
295 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800296 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800297}
Peng Taod7e09d02013-05-02 16:46:55 +0800298
299static void ptlrpc_at_set_reply(struct ptlrpc_request *req, int flags)
300{
Chris Hannad0bfef32015-06-03 10:28:26 -0400301 struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
302 struct ptlrpc_service *svc = svcpt->scp_service;
Arnd Bergmann219e6de2015-09-27 16:45:30 -0400303 int service_time = max_t(int, ktime_get_real_seconds() -
Peng Taod7e09d02013-05-02 16:46:55 +0800304 req->rq_arrival_time.tv_sec, 1);
305
306 if (!(flags & PTLRPC_REPLY_EARLY) &&
Oleg Drokin8b382082016-02-16 00:46:58 -0500307 (req->rq_type != PTL_RPC_MSG_ERR) && req->rq_reqmsg &&
Peng Taod7e09d02013-05-02 16:46:55 +0800308 !(lustre_msg_get_flags(req->rq_reqmsg) &
309 (MSG_RESENT | MSG_REPLAY |
310 MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE))) {
311 /* early replies, errors and recovery requests don't count
Oleg Drokindadfcda2016-02-24 22:00:38 -0500312 * toward our service time estimate
313 */
Peng Taod7e09d02013-05-02 16:46:55 +0800314 int oldse = at_measured(&svcpt->scp_at_estimate, service_time);
315
316 if (oldse != 0) {
317 DEBUG_REQ(D_ADAPTTO, req,
318 "svc %s changed estimate from %d to %d",
319 svc->srv_name, oldse,
320 at_get(&svcpt->scp_at_estimate));
321 }
322 }
323 /* Report actual service time for client latency calc */
324 lustre_msg_set_service_time(req->rq_repmsg, service_time);
325 /* Report service time estimate for future client reqs, but report 0
326 * (to be ignored by client) if it's a error reply during recovery.
Oleg Drokindadfcda2016-02-24 22:00:38 -0500327 * (bz15815)
328 */
Oleg Drokinaf3ec532015-09-28 23:44:09 -0400329 if (req->rq_type == PTL_RPC_MSG_ERR && !req->rq_export)
Peng Taod7e09d02013-05-02 16:46:55 +0800330 lustre_msg_set_timeout(req->rq_repmsg, 0);
331 else
332 lustre_msg_set_timeout(req->rq_repmsg,
333 at_get(&svcpt->scp_at_estimate));
334
335 if (req->rq_reqmsg &&
336 !(lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT)) {
Andreas Dilger2e4fe2b2015-09-14 18:41:21 -0400337 CDEBUG(D_ADAPTTO, "No early reply support: flags=%#x req_flags=%#x magic=%x/%x len=%d\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800338 flags, lustre_msg_get_flags(req->rq_reqmsg),
Peng Taod7e09d02013-05-02 16:46:55 +0800339 lustre_msg_get_magic(req->rq_reqmsg),
340 lustre_msg_get_magic(req->rq_repmsg), req->rq_replen);
341 }
342}
343
344/**
345 * Send request reply from request \a req reply buffer.
346 * \a flags defines reply types
Masanari Iidab6da17f2014-02-08 00:30:40 +0900347 * Returns 0 on success or error code
Peng Taod7e09d02013-05-02 16:46:55 +0800348 */
349int ptlrpc_send_reply(struct ptlrpc_request *req, int flags)
350{
351 struct ptlrpc_reply_state *rs = req->rq_reply_state;
Chris Hannad0bfef32015-06-03 10:28:26 -0400352 struct ptlrpc_connection *conn;
353 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800354
355 /* We must already have a reply buffer (only ptlrpc_error() may be
356 * called without one). The reply generated by sptlrpc layer (e.g.
357 * error notify, etc.) might have NULL rq->reqmsg; Otherwise we must
358 * have a request buffer which is either the actual (swabbed) incoming
359 * request, or a saved copy if this is a req saved in
360 * target_queue_final_reply().
361 */
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200362 LASSERT(req->rq_no_reply == 0);
Oleg Drokin8b382082016-02-16 00:46:58 -0500363 LASSERT(req->rq_reqbuf);
364 LASSERT(rs);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200365 LASSERT((flags & PTLRPC_REPLY_MAYBE_DIFFICULT) || !rs->rs_difficult);
Oleg Drokin8b382082016-02-16 00:46:58 -0500366 LASSERT(req->rq_repmsg);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200367 LASSERT(req->rq_repmsg == rs->rs_msg);
368 LASSERT(rs->rs_cb_id.cbid_fn == reply_out_callback);
369 LASSERT(rs->rs_cb_id.cbid_arg == rs);
Peng Taod7e09d02013-05-02 16:46:55 +0800370
371 /* There may be no rq_export during failover */
372
373 if (unlikely(req->rq_export && req->rq_export->exp_obd &&
374 req->rq_export->exp_obd->obd_fail)) {
375 /* Failed obd's only send ENODEV */
376 req->rq_type = PTL_RPC_MSG_ERR;
377 req->rq_status = -ENODEV;
378 CDEBUG(D_HA, "sending ENODEV from failed obd %d\n",
379 req->rq_export->exp_obd->obd_minor);
380 }
381
Haneen Mohammeddfc16972015-03-16 20:14:56 +0300382 /* In order to keep interoperability with the client (< 2.3) which
Peng Taod7e09d02013-05-02 16:46:55 +0800383 * doesn't have pb_jobid in ptlrpc_body, We have to shrink the
384 * ptlrpc_body in reply buffer to ptlrpc_body_v2, otherwise, the
385 * reply buffer on client will be overflow.
386 *
Jonathan Sid-Otmane71474cc2015-03-18 22:12:47 +0100387 * XXX Remove this whenever we drop the interoperability with
388 * such client.
Peng Taod7e09d02013-05-02 16:46:55 +0800389 */
390 req->rq_replen = lustre_shrink_msg(req->rq_repmsg, 0,
391 sizeof(struct ptlrpc_body_v2), 1);
392
393 if (req->rq_type != PTL_RPC_MSG_ERR)
394 req->rq_type = PTL_RPC_MSG_REPLY;
395
396 lustre_msg_set_type(req->rq_repmsg, req->rq_type);
Li Wei2d58de72013-07-23 00:06:32 +0800397 lustre_msg_set_status(req->rq_repmsg,
398 ptlrpc_status_hton(req->rq_status));
Peng Taod7e09d02013-05-02 16:46:55 +0800399 lustre_msg_set_opc(req->rq_repmsg,
Oleg Drokin24c198e2016-08-21 18:04:35 -0400400 req->rq_reqmsg ?
401 lustre_msg_get_opc(req->rq_reqmsg) : 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800402
403 target_pack_pool_reply(req);
404
405 ptlrpc_at_set_reply(req, flags);
406
Oleg Drokin8b382082016-02-16 00:46:58 -0500407 if (!req->rq_export || !req->rq_export->exp_connection)
Peng Taod7e09d02013-05-02 16:46:55 +0800408 conn = ptlrpc_connection_get(req->rq_peer, req->rq_self, NULL);
409 else
410 conn = ptlrpc_connection_addref(req->rq_export->exp_connection);
411
Oleg Drokin8b382082016-02-16 00:46:58 -0500412 if (unlikely(!conn)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800413 CERROR("not replying on NULL connection\n"); /* bug 9635 */
414 return -ENOTCONN;
415 }
416 ptlrpc_rs_addref(rs); /* +1 ref for the network */
417
418 rc = sptlrpc_svc_wrap_reply(req);
419 if (unlikely(rc))
420 goto out;
421
Arnd Bergmann219e6de2015-09-27 16:45:30 -0400422 req->rq_sent = ktime_get_real_seconds();
Peng Taod7e09d02013-05-02 16:46:55 +0800423
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200424 rc = ptl_send_buf(&rs->rs_md_h, rs->rs_repbuf, rs->rs_repdata_len,
425 (rs->rs_difficult && !rs->rs_no_ack) ?
426 LNET_ACK_REQ : LNET_NOACK_REQ,
427 &rs->rs_cb_id, conn,
428 ptlrpc_req2svc(req)->srv_rep_portal,
429 req->rq_xid, req->rq_reply_off);
Peng Taod7e09d02013-05-02 16:46:55 +0800430out:
431 if (unlikely(rc != 0))
432 ptlrpc_req_drop_rs(req);
433 ptlrpc_connection_put(conn);
434 return rc;
435}
Peng Taod7e09d02013-05-02 16:46:55 +0800436
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200437int ptlrpc_reply(struct ptlrpc_request *req)
Peng Taod7e09d02013-05-02 16:46:55 +0800438{
439 if (req->rq_no_reply)
440 return 0;
Vaishali Thakkar5ce91a92014-09-23 19:22:41 +0530441 return ptlrpc_send_reply(req, 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800442}
Peng Taod7e09d02013-05-02 16:46:55 +0800443
444/**
445 * For request \a req send an error reply back. Create empty
446 * reply buffers if necessary.
447 */
448int ptlrpc_send_error(struct ptlrpc_request *req, int may_be_difficult)
449{
450 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800451
452 if (req->rq_no_reply)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800453 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800454
455 if (!req->rq_repmsg) {
456 rc = lustre_pack_reply(req, 1, NULL, NULL);
457 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800458 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800459 }
460
461 if (req->rq_status != -ENOSPC && req->rq_status != -EACCES &&
462 req->rq_status != -EPERM && req->rq_status != -ENOENT &&
463 req->rq_status != -EINPROGRESS && req->rq_status != -EDQUOT)
464 req->rq_type = PTL_RPC_MSG_ERR;
465
466 rc = ptlrpc_send_reply(req, may_be_difficult);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800467 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800468}
Peng Taod7e09d02013-05-02 16:46:55 +0800469
470int ptlrpc_error(struct ptlrpc_request *req)
471{
472 return ptlrpc_send_error(req, 0);
473}
Peng Taod7e09d02013-05-02 16:46:55 +0800474
475/**
476 * Send request \a request.
477 * if \a noreply is set, don't expect any reply back and don't set up
478 * reply buffers.
479 * Returns 0 on success or error code.
480 */
481int ptl_send_rpc(struct ptlrpc_request *request, int noreply)
482{
483 int rc;
484 int rc2;
485 int mpflag = 0;
486 struct ptlrpc_connection *connection;
Chris Hannad0bfef32015-06-03 10:28:26 -0400487 lnet_handle_me_t reply_me_h;
488 lnet_md_t reply_md;
Alexander Boykod09cfb02016-09-18 16:38:34 -0400489 struct obd_import *imp = request->rq_import;
490 struct obd_device *obd = imp->imp_obd;
Peng Taod7e09d02013-05-02 16:46:55 +0800491
492 if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_RPC))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800493 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800494
495 LASSERT(request->rq_type == PTL_RPC_MSG_REQUEST);
496 LASSERT(request->rq_wait_ctx == 0);
497
498 /* If this is a re-transmit, we're required to have disengaged
Oleg Drokindadfcda2016-02-24 22:00:38 -0500499 * cleanly from the previous attempt
500 */
Peng Taod7e09d02013-05-02 16:46:55 +0800501 LASSERT(!request->rq_receiving_reply);
Alexander.Boyko5c689e62014-06-22 21:32:12 -0400502 LASSERT(!((lustre_msg_get_flags(request->rq_reqmsg) & MSG_REPLAY) &&
Alexander Boykod09cfb02016-09-18 16:38:34 -0400503 (imp->imp_state == LUSTRE_IMP_FULL)));
Peng Taod7e09d02013-05-02 16:46:55 +0800504
Oleg Drokin8b382082016-02-16 00:46:58 -0500505 if (unlikely(obd && obd->obd_fail)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800506 CDEBUG(D_HA, "muting rpc for failed imp obd %s\n",
Oleg Drokin30c0aa32016-02-26 01:50:02 -0500507 obd->obd_name);
Peng Taod7e09d02013-05-02 16:46:55 +0800508 /* this prevents us from waiting in ptlrpc_queue_wait */
Sebastien Buisson15c50cc2014-02-28 21:16:42 -0500509 spin_lock(&request->rq_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800510 request->rq_err = 1;
Sebastien Buisson15c50cc2014-02-28 21:16:42 -0500511 spin_unlock(&request->rq_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800512 request->rq_status = -ENODEV;
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800513 return -ENODEV;
Peng Taod7e09d02013-05-02 16:46:55 +0800514 }
515
Alexander Boykod09cfb02016-09-18 16:38:34 -0400516 connection = imp->imp_connection;
Peng Taod7e09d02013-05-02 16:46:55 +0800517
518 lustre_msg_set_handle(request->rq_reqmsg,
Alexander Boykod09cfb02016-09-18 16:38:34 -0400519 &imp->imp_remote_handle);
Peng Taod7e09d02013-05-02 16:46:55 +0800520 lustre_msg_set_type(request->rq_reqmsg, PTL_RPC_MSG_REQUEST);
Alexander Boykod09cfb02016-09-18 16:38:34 -0400521 lustre_msg_set_conn_cnt(request->rq_reqmsg, imp->imp_conn_cnt);
522 lustre_msghdr_set_flags(request->rq_reqmsg, imp->imp_msghdr_flags);
523
524 /**
525 * For enabled AT all request should have AT_SUPPORT in the
526 * FULL import state when OBD_CONNECT_AT is set
527 */
528 LASSERT(AT_OFF || imp->imp_state != LUSTRE_IMP_FULL ||
529 (imp->imp_msghdr_flags & MSGHDR_AT_SUPPORT) ||
530 !(imp->imp_connect_data.ocd_connect_flags &
531 OBD_CONNECT_AT));
Peng Taod7e09d02013-05-02 16:46:55 +0800532
533 if (request->rq_resend)
534 lustre_msg_add_flags(request->rq_reqmsg, MSG_RESENT);
535
536 if (request->rq_memalloc)
537 mpflag = cfs_memory_pressure_get_and_set();
538
539 rc = sptlrpc_cli_wrap_request(request);
540 if (rc)
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200541 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800542
543 /* bulk register should be done after wrap_request() */
Oleg Drokin8b382082016-02-16 00:46:58 -0500544 if (request->rq_bulk) {
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200545 rc = ptlrpc_register_bulk(request);
Peng Taod7e09d02013-05-02 16:46:55 +0800546 if (rc != 0)
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200547 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800548 }
549
550 if (!noreply) {
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200551 LASSERT(request->rq_replen != 0);
Oleg Drokin8b382082016-02-16 00:46:58 -0500552 if (!request->rq_repbuf) {
553 LASSERT(!request->rq_repdata);
554 LASSERT(!request->rq_repmsg);
Peng Taod7e09d02013-05-02 16:46:55 +0800555 rc = sptlrpc_cli_alloc_repbuf(request,
556 request->rq_replen);
557 if (rc) {
558 /* this prevents us from looping in
Oleg Drokindadfcda2016-02-24 22:00:38 -0500559 * ptlrpc_queue_wait
560 */
Sebastien Buisson15c50cc2014-02-28 21:16:42 -0500561 spin_lock(&request->rq_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800562 request->rq_err = 1;
Sebastien Buisson15c50cc2014-02-28 21:16:42 -0500563 spin_unlock(&request->rq_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800564 request->rq_status = rc;
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200565 goto cleanup_bulk;
Peng Taod7e09d02013-05-02 16:46:55 +0800566 }
567 } else {
568 request->rq_repdata = NULL;
569 request->rq_repmsg = NULL;
570 }
571
572 rc = LNetMEAttach(request->rq_reply_portal,/*XXX FIXME bug 249*/
573 connection->c_peer, request->rq_xid, 0,
574 LNET_UNLINK, LNET_INS_AFTER, &reply_me_h);
575 if (rc != 0) {
576 CERROR("LNetMEAttach failed: %d\n", rc);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200577 LASSERT(rc == -ENOMEM);
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200578 rc = -ENOMEM;
579 goto cleanup_bulk;
Peng Taod7e09d02013-05-02 16:46:55 +0800580 }
581 }
582
583 spin_lock(&request->rq_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800584 /* We are responsible for unlinking the reply buffer */
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400585 request->rq_reply_unlinked = noreply;
586 request->rq_receiving_reply = !noreply;
Peng Taod7e09d02013-05-02 16:46:55 +0800587 /* Clear any flags that may be present from previous sends. */
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400588 request->rq_req_unlinked = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800589 request->rq_replied = 0;
590 request->rq_err = 0;
591 request->rq_timedout = 0;
592 request->rq_net_err = 0;
593 request->rq_resend = 0;
594 request->rq_restart = 0;
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400595 request->rq_reply_truncated = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800596 spin_unlock(&request->rq_lock);
597
598 if (!noreply) {
Chris Hannad0bfef32015-06-03 10:28:26 -0400599 reply_md.start = request->rq_repbuf;
600 reply_md.length = request->rq_repbuf_len;
Peng Taod7e09d02013-05-02 16:46:55 +0800601 /* Allow multiple early replies */
602 reply_md.threshold = LNET_MD_THRESH_INF;
603 /* Manage remote for early replies */
Chris Hannad0bfef32015-06-03 10:28:26 -0400604 reply_md.options = PTLRPC_MD_OPTIONS | LNET_MD_OP_PUT |
Peng Taod7e09d02013-05-02 16:46:55 +0800605 LNET_MD_MANAGE_REMOTE |
Jayavant Kenjalkar7fb70272015-09-27 11:15:21 +0530606 LNET_MD_TRUNCATE; /* allow to make EOVERFLOW error */
Chris Hannad0bfef32015-06-03 10:28:26 -0400607 reply_md.user_ptr = &request->rq_reply_cbid;
Peng Taod7e09d02013-05-02 16:46:55 +0800608 reply_md.eq_handle = ptlrpc_eq_h;
609
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400610 /* We must see the unlink callback to set rq_reply_unlinked,
Oleg Drokindadfcda2016-02-24 22:00:38 -0500611 * so we can't auto-unlink
612 */
Peng Taod7e09d02013-05-02 16:46:55 +0800613 rc = LNetMDAttach(reply_me_h, reply_md, LNET_RETAIN,
614 &request->rq_reply_md_h);
615 if (rc != 0) {
616 CERROR("LNetMDAttach failed: %d\n", rc);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200617 LASSERT(rc == -ENOMEM);
Peng Taod7e09d02013-05-02 16:46:55 +0800618 spin_lock(&request->rq_lock);
619 /* ...but the MD attach didn't succeed... */
620 request->rq_receiving_reply = 0;
621 spin_unlock(&request->rq_lock);
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200622 rc = -ENOMEM;
623 goto cleanup_me;
Peng Taod7e09d02013-05-02 16:46:55 +0800624 }
625
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700626 CDEBUG(D_NET, "Setup reply buffer: %u bytes, xid %llu, portal %u\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800627 request->rq_repbuf_len, request->rq_xid,
628 request->rq_reply_portal);
629 }
630
631 /* add references on request for request_out_callback */
632 ptlrpc_request_addref(request);
Oleg Drokin8b382082016-02-16 00:46:58 -0500633 if (obd && obd->obd_svc_stats)
Peng Taod7e09d02013-05-02 16:46:55 +0800634 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQACTIVE_CNTR,
Alexander Boykod09cfb02016-09-18 16:38:34 -0400635 atomic_read(&imp->imp_inflight));
Peng Taod7e09d02013-05-02 16:46:55 +0800636
637 OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_DELAY_SEND, request->rq_timeout + 5);
638
Liang Zhen32c87282016-06-20 16:55:30 -0400639 ktime_get_real_ts64(&request->rq_sent_tv);
Arnd Bergmann219e6de2015-09-27 16:45:30 -0400640 request->rq_sent = ktime_get_real_seconds();
Peng Taod7e09d02013-05-02 16:46:55 +0800641 /* We give the server rq_timeout secs to process the req, and
Oleg Drokindadfcda2016-02-24 22:00:38 -0500642 * add the network latency for our local timeout.
643 */
Peng Taod7e09d02013-05-02 16:46:55 +0800644 request->rq_deadline = request->rq_sent + request->rq_timeout +
645 ptlrpc_at_get_net_latency(request);
646
Alexander Boykod09cfb02016-09-18 16:38:34 -0400647 ptlrpc_pinger_sending_on_import(imp);
Peng Taod7e09d02013-05-02 16:46:55 +0800648
649 DEBUG_REQ(D_INFO, request, "send flg=%x",
650 lustre_msg_get_flags(request->rq_reqmsg));
651 rc = ptl_send_buf(&request->rq_req_md_h,
652 request->rq_reqbuf, request->rq_reqdata_len,
653 LNET_NOACK_REQ, &request->rq_req_cbid,
654 connection,
655 request->rq_request_portal,
656 request->rq_xid, 0);
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400657 if (likely(rc == 0))
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200658 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800659
Liang Zhen9faa2ad2016-06-20 16:55:31 -0400660 request->rq_req_unlinked = 1;
Peng Taod7e09d02013-05-02 16:46:55 +0800661 ptlrpc_req_finished(request);
662 if (noreply)
Julia Lawalla9b3e8f2014-09-07 18:18:29 +0200663 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800664
665 cleanup_me:
666 /* MEUnlink is safe; the PUT didn't even get off the ground, and
667 * nobody apart from the PUT's target has the right nid+XID to
Oleg Drokindadfcda2016-02-24 22:00:38 -0500668 * access the reply buffer.
669 */
Peng Taod7e09d02013-05-02 16:46:55 +0800670 rc2 = LNetMEUnlink(reply_me_h);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200671 LASSERT(rc2 == 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800672 /* UNLINKED callback called synchronously */
673 LASSERT(!request->rq_receiving_reply);
674
675 cleanup_bulk:
676 /* We do sync unlink here as there was no real transfer here so
Oleg Drokindadfcda2016-02-24 22:00:38 -0500677 * the chance to have long unlink to sluggish net is smaller here.
678 */
Peng Taod7e09d02013-05-02 16:46:55 +0800679 ptlrpc_unregister_bulk(request, 0);
680 out:
681 if (request->rq_memalloc)
682 cfs_memory_pressure_restore(mpflag);
683 return rc;
684}
685EXPORT_SYMBOL(ptl_send_rpc);
686
687/**
688 * Register request buffer descriptor for request receiving.
689 */
690int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd)
691{
Chris Hannad0bfef32015-06-03 10:28:26 -0400692 struct ptlrpc_service *service = rqbd->rqbd_svcpt->scp_service;
693 static lnet_process_id_t match_id = {LNET_NID_ANY, LNET_PID_ANY};
694 int rc;
695 lnet_md_t md;
696 lnet_handle_me_t me_h;
Peng Taod7e09d02013-05-02 16:46:55 +0800697
698 CDEBUG(D_NET, "LNetMEAttach: portal %d\n",
699 service->srv_req_portal);
700
701 if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_RQBD))
Julia Lawallfbe7c6c2014-08-26 22:00:33 +0200702 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800703
704 /* NB: CPT affinity service should use new LNet flag LNET_INS_LOCAL,
705 * which means buffer can only be attached on local CPT, and LND
Oleg Drokindadfcda2016-02-24 22:00:38 -0500706 * threads can find it by grabbing a local lock
707 */
Peng Taod7e09d02013-05-02 16:46:55 +0800708 rc = LNetMEAttach(service->srv_req_portal,
709 match_id, 0, ~0, LNET_UNLINK,
710 rqbd->rqbd_svcpt->scp_cpt >= 0 ?
711 LNET_INS_LOCAL : LNET_INS_AFTER, &me_h);
712 if (rc != 0) {
713 CERROR("LNetMEAttach failed: %d\n", rc);
Julia Lawallfbe7c6c2014-08-26 22:00:33 +0200714 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800715 }
716
717 LASSERT(rqbd->rqbd_refcount == 0);
718 rqbd->rqbd_refcount = 1;
719
Chris Hannad0bfef32015-06-03 10:28:26 -0400720 md.start = rqbd->rqbd_buffer;
721 md.length = service->srv_buf_size;
722 md.max_size = service->srv_max_req_size;
Peng Taod7e09d02013-05-02 16:46:55 +0800723 md.threshold = LNET_MD_THRESH_INF;
Chris Hannad0bfef32015-06-03 10:28:26 -0400724 md.options = PTLRPC_MD_OPTIONS | LNET_MD_OP_PUT | LNET_MD_MAX_SIZE;
725 md.user_ptr = &rqbd->rqbd_cbid;
Peng Taod7e09d02013-05-02 16:46:55 +0800726 md.eq_handle = ptlrpc_eq_h;
727
728 rc = LNetMDAttach(me_h, md, LNET_UNLINK, &rqbd->rqbd_md_h);
729 if (rc == 0)
Julia Lawallfbe7c6c2014-08-26 22:00:33 +0200730 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800731
Kristina Martsenko998d2762013-11-11 21:35:02 +0200732 CERROR("LNetMDAttach failed: %d;\n", rc);
Kristina Martsenko3949015e2013-11-11 21:34:58 +0200733 LASSERT(rc == -ENOMEM);
734 rc = LNetMEUnlink(me_h);
735 LASSERT(rc == 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800736 rqbd->rqbd_refcount = 0;
737
Julia Lawallfbe7c6c2014-08-26 22:00:33 +0200738 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800739}