blob: 5c7e6acf7c60e0d6e77feb727c89a241539a5d1d [file] [log] [blame]
Andy Grover1e23b3e2009-02-24 15:30:34 +00001/*
2 * Copyright (c) 2006 Oracle. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Andy Grover1e23b3e2009-02-24 15:30:34 +000035#include <linux/pci.h>
36#include <linux/dma-mapping.h>
37#include <rdma/rdma_cm.h>
38
39#include "rds.h"
40#include "ib.h"
41
42static struct kmem_cache *rds_ib_incoming_slab;
43static struct kmem_cache *rds_ib_frag_slab;
44static atomic_t rds_ib_allocation = ATOMIC_INIT(0);
45
Andy Grover0b088e02010-05-24 20:12:41 -070046/* Free frag and attached recv buffer f_sg */
Andy Grover1e23b3e2009-02-24 15:30:34 +000047static void rds_ib_frag_free(struct rds_page_frag *frag)
48{
Andy Grover0b088e02010-05-24 20:12:41 -070049 rdsdebug("frag %p page %p\n", frag, sg_page(&frag->f_sg));
50 __free_page(sg_page(&frag->f_sg));
Andy Grover1e23b3e2009-02-24 15:30:34 +000051 kmem_cache_free(rds_ib_frag_slab, frag);
52}
53
54/*
55 * We map a page at a time. Its fragments are posted in order. This
56 * is called in fragment order as the fragments get send completion events.
57 * Only the last frag in the page performs the unmapping.
58 *
59 * It's OK for ring cleanup to call this in whatever order it likes because
60 * DMA is not in flight and so we can unmap while other ring entries still
61 * hold page references in their frags.
62 */
63static void rds_ib_recv_unmap_page(struct rds_ib_connection *ic,
64 struct rds_ib_recv_work *recv)
65{
66 struct rds_page_frag *frag = recv->r_frag;
67
Andy Grover0b088e02010-05-24 20:12:41 -070068 rdsdebug("recv %p frag %p page %p\n", recv, frag, sg_page(&frag->f_sg));
69 ib_dma_unmap_sg(ic->i_cm_id->device, &frag->f_sg, 1, DMA_FROM_DEVICE);
Andy Grover1e23b3e2009-02-24 15:30:34 +000070}
71
72void rds_ib_recv_init_ring(struct rds_ib_connection *ic)
73{
74 struct rds_ib_recv_work *recv;
75 u32 i;
76
77 for (i = 0, recv = ic->i_recvs; i < ic->i_recv_ring.w_nr; i++, recv++) {
78 struct ib_sge *sge;
79
80 recv->r_ibinc = NULL;
81 recv->r_frag = NULL;
82
83 recv->r_wr.next = NULL;
84 recv->r_wr.wr_id = i;
85 recv->r_wr.sg_list = recv->r_sge;
86 recv->r_wr.num_sge = RDS_IB_RECV_SGE;
87
Andy Grover919ced42010-01-13 16:32:24 -080088 sge = &recv->r_sge[0];
Andy Grover1e23b3e2009-02-24 15:30:34 +000089 sge->addr = ic->i_recv_hdrs_dma + (i * sizeof(struct rds_header));
90 sge->length = sizeof(struct rds_header);
91 sge->lkey = ic->i_mr->lkey;
Andy Grover919ced42010-01-13 16:32:24 -080092
93 sge = &recv->r_sge[1];
94 sge->addr = 0;
95 sge->length = RDS_FRAG_SIZE;
96 sge->lkey = ic->i_mr->lkey;
Andy Grover1e23b3e2009-02-24 15:30:34 +000097 }
98}
99
100static void rds_ib_recv_clear_one(struct rds_ib_connection *ic,
101 struct rds_ib_recv_work *recv)
102{
103 if (recv->r_ibinc) {
104 rds_inc_put(&recv->r_ibinc->ii_inc);
105 recv->r_ibinc = NULL;
106 }
107 if (recv->r_frag) {
108 rds_ib_recv_unmap_page(ic, recv);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000109 rds_ib_frag_free(recv->r_frag);
110 recv->r_frag = NULL;
111 }
112}
113
114void rds_ib_recv_clear_ring(struct rds_ib_connection *ic)
115{
116 u32 i;
117
118 for (i = 0; i < ic->i_recv_ring.w_nr; i++)
119 rds_ib_recv_clear_one(ic, &ic->i_recvs[i]);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000120}
121
122static int rds_ib_recv_refill_one(struct rds_connection *conn,
Andy Groverf17a1a52010-03-18 17:19:52 -0700123 struct rds_ib_recv_work *recv)
Andy Grover1e23b3e2009-02-24 15:30:34 +0000124{
125 struct rds_ib_connection *ic = conn->c_transport_data;
Andy Grover1e23b3e2009-02-24 15:30:34 +0000126 struct ib_sge *sge;
127 int ret = -ENOMEM;
128
Andy Grover3427e852010-05-24 20:28:49 -0700129 /*
130 * ibinc was taken from recv if recv contained the start of a message.
131 * recvs that were continuations will still have this allocated.
132 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800133 if (!recv->r_ibinc) {
Andy Grover86357b12009-10-30 08:51:54 +0000134 if (!atomic_add_unless(&rds_ib_allocation, 1, rds_ib_sysctl_max_recv_allocation)) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000135 rds_ib_stats_inc(s_ib_rx_alloc_limit);
136 goto out;
137 }
Andy Groverf17a1a52010-03-18 17:19:52 -0700138 recv->r_ibinc = kmem_cache_alloc(rds_ib_incoming_slab, GFP_NOWAIT);
Andy Grover8690bfa2010-01-12 11:56:44 -0800139 if (!recv->r_ibinc) {
Andy Grover86357b12009-10-30 08:51:54 +0000140 atomic_dec(&rds_ib_allocation);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000141 goto out;
Andy Grover86357b12009-10-30 08:51:54 +0000142 }
Andy Grover1e23b3e2009-02-24 15:30:34 +0000143 INIT_LIST_HEAD(&recv->r_ibinc->ii_frags);
144 rds_inc_init(&recv->r_ibinc->ii_inc, conn, conn->c_faddr);
145 }
146
Andy Grover3427e852010-05-24 20:28:49 -0700147 WARN_ON(recv->r_frag); /* leak! */
148 recv->r_frag = kmem_cache_alloc(rds_ib_frag_slab, GFP_NOWAIT);
149 if (!recv->r_frag)
150 goto out;
151 INIT_LIST_HEAD(&recv->r_frag->f_item);
152 sg_init_table(&recv->r_frag->f_sg, 1);
153 ret = rds_page_remainder_alloc(&recv->r_frag->f_sg,
154 RDS_FRAG_SIZE, GFP_NOWAIT);
155 if (ret) {
156 kmem_cache_free(rds_ib_frag_slab, recv->r_frag);
157 recv->r_frag = NULL;
158 goto out;
Andy Grover1e23b3e2009-02-24 15:30:34 +0000159 }
160
Andy Grover0b088e02010-05-24 20:12:41 -0700161 ret = ib_dma_map_sg(ic->i_cm_id->device, &recv->r_frag->f_sg,
162 1, DMA_FROM_DEVICE);
163 WARN_ON(ret != 1);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000164
Andy Grover919ced42010-01-13 16:32:24 -0800165 sge = &recv->r_sge[0];
Andy Grover1e23b3e2009-02-24 15:30:34 +0000166 sge->addr = ic->i_recv_hdrs_dma + (recv - ic->i_recvs) * sizeof(struct rds_header);
167 sge->length = sizeof(struct rds_header);
168
Andy Grover919ced42010-01-13 16:32:24 -0800169 sge = &recv->r_sge[1];
Andy Grover0b088e02010-05-24 20:12:41 -0700170 sge->addr = sg_dma_address(&recv->r_frag->f_sg);
171 sge->length = sg_dma_len(&recv->r_frag->f_sg);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000172
173 ret = 0;
174out:
175 return ret;
176}
177
178/*
179 * This tries to allocate and post unused work requests after making sure that
180 * they have all the allocations they need to queue received fragments into
181 * sockets. The i_recv_mutex is held here so that ring_alloc and _unalloc
182 * pairs don't go unmatched.
183 *
184 * -1 is returned if posting fails due to temporary resource exhaustion.
185 */
Andy Groverf17a1a52010-03-18 17:19:52 -0700186int rds_ib_recv_refill(struct rds_connection *conn, int prefill)
Andy Grover1e23b3e2009-02-24 15:30:34 +0000187{
188 struct rds_ib_connection *ic = conn->c_transport_data;
189 struct rds_ib_recv_work *recv;
190 struct ib_recv_wr *failed_wr;
191 unsigned int posted = 0;
192 int ret = 0;
193 u32 pos;
194
Joe Perchesf64f9e72009-11-29 16:55:45 -0800195 while ((prefill || rds_conn_up(conn)) &&
196 rds_ib_ring_alloc(&ic->i_recv_ring, 1, &pos)) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000197 if (pos >= ic->i_recv_ring.w_nr) {
198 printk(KERN_NOTICE "Argh - ring alloc returned pos=%u\n",
199 pos);
200 ret = -EINVAL;
201 break;
202 }
203
204 recv = &ic->i_recvs[pos];
Andy Groverf17a1a52010-03-18 17:19:52 -0700205 ret = rds_ib_recv_refill_one(conn, recv);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000206 if (ret) {
207 ret = -1;
208 break;
209 }
210
211 /* XXX when can this fail? */
212 ret = ib_post_recv(ic->i_cm_id->qp, &recv->r_wr, &failed_wr);
213 rdsdebug("recv %p ibinc %p page %p addr %lu ret %d\n", recv,
Andy Grover0b088e02010-05-24 20:12:41 -0700214 recv->r_ibinc, sg_page(&recv->r_frag->f_sg),
215 (long) sg_dma_address(&recv->r_frag->f_sg), ret);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000216 if (ret) {
217 rds_ib_conn_error(conn, "recv post on "
218 "%pI4 returned %d, disconnecting and "
219 "reconnecting\n", &conn->c_faddr,
220 ret);
221 ret = -1;
222 break;
223 }
224
225 posted++;
226 }
227
228 /* We're doing flow control - update the window. */
229 if (ic->i_flowctl && posted)
230 rds_ib_advertise_credits(conn, posted);
231
232 if (ret)
233 rds_ib_ring_unalloc(&ic->i_recv_ring, 1);
234 return ret;
235}
236
Andy Grover809fa142010-01-12 14:41:46 -0800237static void rds_ib_inc_purge(struct rds_incoming *inc)
Andy Grover1e23b3e2009-02-24 15:30:34 +0000238{
239 struct rds_ib_incoming *ibinc;
240 struct rds_page_frag *frag;
241 struct rds_page_frag *pos;
242
243 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc);
244 rdsdebug("purging ibinc %p inc %p\n", ibinc, inc);
245
246 list_for_each_entry_safe(frag, pos, &ibinc->ii_frags, f_item) {
247 list_del_init(&frag->f_item);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000248 rds_ib_frag_free(frag);
249 }
250}
251
252void rds_ib_inc_free(struct rds_incoming *inc)
253{
254 struct rds_ib_incoming *ibinc;
255
256 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc);
257
258 rds_ib_inc_purge(inc);
259 rdsdebug("freeing ibinc %p inc %p\n", ibinc, inc);
260 BUG_ON(!list_empty(&ibinc->ii_frags));
261 kmem_cache_free(rds_ib_incoming_slab, ibinc);
262 atomic_dec(&rds_ib_allocation);
263 BUG_ON(atomic_read(&rds_ib_allocation) < 0);
264}
265
266int rds_ib_inc_copy_to_user(struct rds_incoming *inc, struct iovec *first_iov,
267 size_t size)
268{
269 struct rds_ib_incoming *ibinc;
270 struct rds_page_frag *frag;
271 struct iovec *iov = first_iov;
272 unsigned long to_copy;
273 unsigned long frag_off = 0;
274 unsigned long iov_off = 0;
275 int copied = 0;
276 int ret;
277 u32 len;
278
279 ibinc = container_of(inc, struct rds_ib_incoming, ii_inc);
280 frag = list_entry(ibinc->ii_frags.next, struct rds_page_frag, f_item);
281 len = be32_to_cpu(inc->i_hdr.h_len);
282
283 while (copied < size && copied < len) {
284 if (frag_off == RDS_FRAG_SIZE) {
285 frag = list_entry(frag->f_item.next,
286 struct rds_page_frag, f_item);
287 frag_off = 0;
288 }
289 while (iov_off == iov->iov_len) {
290 iov_off = 0;
291 iov++;
292 }
293
294 to_copy = min(iov->iov_len - iov_off, RDS_FRAG_SIZE - frag_off);
295 to_copy = min_t(size_t, to_copy, size - copied);
296 to_copy = min_t(unsigned long, to_copy, len - copied);
297
298 rdsdebug("%lu bytes to user [%p, %zu] + %lu from frag "
Andy Grover0b088e02010-05-24 20:12:41 -0700299 "[%p, %u] + %lu\n",
Andy Grover1e23b3e2009-02-24 15:30:34 +0000300 to_copy, iov->iov_base, iov->iov_len, iov_off,
Andy Grover0b088e02010-05-24 20:12:41 -0700301 sg_page(&frag->f_sg), frag->f_sg.offset, frag_off);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000302
303 /* XXX needs + offset for multiple recvs per page */
Andy Grover0b088e02010-05-24 20:12:41 -0700304 ret = rds_page_copy_to_user(sg_page(&frag->f_sg),
305 frag->f_sg.offset + frag_off,
Andy Grover1e23b3e2009-02-24 15:30:34 +0000306 iov->iov_base + iov_off,
307 to_copy);
308 if (ret) {
309 copied = ret;
310 break;
311 }
312
313 iov_off += to_copy;
314 frag_off += to_copy;
315 copied += to_copy;
316 }
317
318 return copied;
319}
320
321/* ic starts out kzalloc()ed */
322void rds_ib_recv_init_ack(struct rds_ib_connection *ic)
323{
324 struct ib_send_wr *wr = &ic->i_ack_wr;
325 struct ib_sge *sge = &ic->i_ack_sge;
326
327 sge->addr = ic->i_ack_dma;
328 sge->length = sizeof(struct rds_header);
329 sge->lkey = ic->i_mr->lkey;
330
331 wr->sg_list = sge;
332 wr->num_sge = 1;
333 wr->opcode = IB_WR_SEND;
334 wr->wr_id = RDS_IB_ACK_WR_ID;
335 wr->send_flags = IB_SEND_SIGNALED | IB_SEND_SOLICITED;
336}
337
338/*
339 * You'd think that with reliable IB connections you wouldn't need to ack
340 * messages that have been received. The problem is that IB hardware generates
341 * an ack message before it has DMAed the message into memory. This creates a
342 * potential message loss if the HCA is disabled for any reason between when it
343 * sends the ack and before the message is DMAed and processed. This is only a
344 * potential issue if another HCA is available for fail-over.
345 *
346 * When the remote host receives our ack they'll free the sent message from
347 * their send queue. To decrease the latency of this we always send an ack
348 * immediately after we've received messages.
349 *
350 * For simplicity, we only have one ack in flight at a time. This puts
351 * pressure on senders to have deep enough send queues to absorb the latency of
352 * a single ack frame being in flight. This might not be good enough.
353 *
354 * This is implemented by have a long-lived send_wr and sge which point to a
355 * statically allocated ack frame. This ack wr does not fall under the ring
356 * accounting that the tx and rx wrs do. The QP attribute specifically makes
357 * room for it beyond the ring size. Send completion notices its special
358 * wr_id and avoids working with the ring in that case.
359 */
Andy Grover8cbd9602009-04-01 08:20:20 +0000360#ifndef KERNEL_HAS_ATOMIC64
Andy Grover1e23b3e2009-02-24 15:30:34 +0000361static void rds_ib_set_ack(struct rds_ib_connection *ic, u64 seq,
362 int ack_required)
363{
Andy Grover8cbd9602009-04-01 08:20:20 +0000364 unsigned long flags;
365
366 spin_lock_irqsave(&ic->i_ack_lock, flags);
367 ic->i_ack_next = seq;
368 if (ack_required)
369 set_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
370 spin_unlock_irqrestore(&ic->i_ack_lock, flags);
371}
372
373static u64 rds_ib_get_ack(struct rds_ib_connection *ic)
374{
375 unsigned long flags;
376 u64 seq;
377
378 clear_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
379
380 spin_lock_irqsave(&ic->i_ack_lock, flags);
381 seq = ic->i_ack_next;
382 spin_unlock_irqrestore(&ic->i_ack_lock, flags);
383
384 return seq;
385}
386#else
387static void rds_ib_set_ack(struct rds_ib_connection *ic, u64 seq,
388 int ack_required)
389{
390 atomic64_set(&ic->i_ack_next, seq);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000391 if (ack_required) {
392 smp_mb__before_clear_bit();
393 set_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
394 }
395}
396
397static u64 rds_ib_get_ack(struct rds_ib_connection *ic)
398{
399 clear_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
400 smp_mb__after_clear_bit();
401
Andy Grover8cbd9602009-04-01 08:20:20 +0000402 return atomic64_read(&ic->i_ack_next);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000403}
Andy Grover8cbd9602009-04-01 08:20:20 +0000404#endif
405
Andy Grover1e23b3e2009-02-24 15:30:34 +0000406
407static void rds_ib_send_ack(struct rds_ib_connection *ic, unsigned int adv_credits)
408{
409 struct rds_header *hdr = ic->i_ack;
410 struct ib_send_wr *failed_wr;
411 u64 seq;
412 int ret;
413
414 seq = rds_ib_get_ack(ic);
415
416 rdsdebug("send_ack: ic %p ack %llu\n", ic, (unsigned long long) seq);
417 rds_message_populate_header(hdr, 0, 0, 0);
418 hdr->h_ack = cpu_to_be64(seq);
419 hdr->h_credit = adv_credits;
420 rds_message_make_checksum(hdr);
421 ic->i_ack_queued = jiffies;
422
423 ret = ib_post_send(ic->i_cm_id->qp, &ic->i_ack_wr, &failed_wr);
424 if (unlikely(ret)) {
425 /* Failed to send. Release the WR, and
426 * force another ACK.
427 */
428 clear_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags);
429 set_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
430
431 rds_ib_stats_inc(s_ib_ack_send_failure);
Andy Grover735f61e2010-03-11 13:49:55 +0000432
433 rds_ib_conn_error(ic->conn, "sending ack failed\n");
Andy Grover1e23b3e2009-02-24 15:30:34 +0000434 } else
435 rds_ib_stats_inc(s_ib_ack_sent);
436}
437
438/*
439 * There are 3 ways of getting acknowledgements to the peer:
440 * 1. We call rds_ib_attempt_ack from the recv completion handler
441 * to send an ACK-only frame.
442 * However, there can be only one such frame in the send queue
443 * at any time, so we may have to postpone it.
444 * 2. When another (data) packet is transmitted while there's
445 * an ACK in the queue, we piggyback the ACK sequence number
446 * on the data packet.
447 * 3. If the ACK WR is done sending, we get called from the
448 * send queue completion handler, and check whether there's
449 * another ACK pending (postponed because the WR was on the
450 * queue). If so, we transmit it.
451 *
452 * We maintain 2 variables:
453 * - i_ack_flags, which keeps track of whether the ACK WR
454 * is currently in the send queue or not (IB_ACK_IN_FLIGHT)
455 * - i_ack_next, which is the last sequence number we received
456 *
457 * Potentially, send queue and receive queue handlers can run concurrently.
Andy Grover8cbd9602009-04-01 08:20:20 +0000458 * It would be nice to not have to use a spinlock to synchronize things,
459 * but the one problem that rules this out is that 64bit updates are
460 * not atomic on all platforms. Things would be a lot simpler if
461 * we had atomic64 or maybe cmpxchg64 everywhere.
Andy Grover1e23b3e2009-02-24 15:30:34 +0000462 *
463 * Reconnecting complicates this picture just slightly. When we
464 * reconnect, we may be seeing duplicate packets. The peer
465 * is retransmitting them, because it hasn't seen an ACK for
466 * them. It is important that we ACK these.
467 *
468 * ACK mitigation adds a header flag "ACK_REQUIRED"; any packet with
469 * this flag set *MUST* be acknowledged immediately.
470 */
471
472/*
473 * When we get here, we're called from the recv queue handler.
474 * Check whether we ought to transmit an ACK.
475 */
476void rds_ib_attempt_ack(struct rds_ib_connection *ic)
477{
478 unsigned int adv_credits;
479
480 if (!test_bit(IB_ACK_REQUESTED, &ic->i_ack_flags))
481 return;
482
483 if (test_and_set_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags)) {
484 rds_ib_stats_inc(s_ib_ack_send_delayed);
485 return;
486 }
487
488 /* Can we get a send credit? */
Steve Wise7b70d032009-04-09 14:09:39 +0000489 if (!rds_ib_send_grab_credits(ic, 1, &adv_credits, 0, RDS_MAX_ADV_CREDIT)) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000490 rds_ib_stats_inc(s_ib_tx_throttle);
491 clear_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags);
492 return;
493 }
494
495 clear_bit(IB_ACK_REQUESTED, &ic->i_ack_flags);
496 rds_ib_send_ack(ic, adv_credits);
497}
498
499/*
500 * We get here from the send completion handler, when the
501 * adapter tells us the ACK frame was sent.
502 */
503void rds_ib_ack_send_complete(struct rds_ib_connection *ic)
504{
505 clear_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags);
506 rds_ib_attempt_ack(ic);
507}
508
509/*
510 * This is called by the regular xmit code when it wants to piggyback
511 * an ACK on an outgoing frame.
512 */
513u64 rds_ib_piggyb_ack(struct rds_ib_connection *ic)
514{
515 if (test_and_clear_bit(IB_ACK_REQUESTED, &ic->i_ack_flags))
516 rds_ib_stats_inc(s_ib_ack_send_piggybacked);
517 return rds_ib_get_ack(ic);
518}
519
520/*
521 * It's kind of lame that we're copying from the posted receive pages into
522 * long-lived bitmaps. We could have posted the bitmaps and rdma written into
523 * them. But receiving new congestion bitmaps should be a *rare* event, so
524 * hopefully we won't need to invest that complexity in making it more
525 * efficient. By copying we can share a simpler core with TCP which has to
526 * copy.
527 */
528static void rds_ib_cong_recv(struct rds_connection *conn,
529 struct rds_ib_incoming *ibinc)
530{
531 struct rds_cong_map *map;
532 unsigned int map_off;
533 unsigned int map_page;
534 struct rds_page_frag *frag;
535 unsigned long frag_off;
536 unsigned long to_copy;
537 unsigned long copied;
538 uint64_t uncongested = 0;
539 void *addr;
540
541 /* catch completely corrupt packets */
542 if (be32_to_cpu(ibinc->ii_inc.i_hdr.h_len) != RDS_CONG_MAP_BYTES)
543 return;
544
545 map = conn->c_fcong;
546 map_page = 0;
547 map_off = 0;
548
549 frag = list_entry(ibinc->ii_frags.next, struct rds_page_frag, f_item);
550 frag_off = 0;
551
552 copied = 0;
553
554 while (copied < RDS_CONG_MAP_BYTES) {
555 uint64_t *src, *dst;
556 unsigned int k;
557
558 to_copy = min(RDS_FRAG_SIZE - frag_off, PAGE_SIZE - map_off);
559 BUG_ON(to_copy & 7); /* Must be 64bit aligned. */
560
Andy Grover0b088e02010-05-24 20:12:41 -0700561 addr = kmap_atomic(sg_page(&frag->f_sg), KM_SOFTIRQ0);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000562
563 src = addr + frag_off;
564 dst = (void *)map->m_page_addrs[map_page] + map_off;
565 for (k = 0; k < to_copy; k += 8) {
566 /* Record ports that became uncongested, ie
567 * bits that changed from 0 to 1. */
568 uncongested |= ~(*src) & *dst;
569 *dst++ = *src++;
570 }
571 kunmap_atomic(addr, KM_SOFTIRQ0);
572
573 copied += to_copy;
574
575 map_off += to_copy;
576 if (map_off == PAGE_SIZE) {
577 map_off = 0;
578 map_page++;
579 }
580
581 frag_off += to_copy;
582 if (frag_off == RDS_FRAG_SIZE) {
583 frag = list_entry(frag->f_item.next,
584 struct rds_page_frag, f_item);
585 frag_off = 0;
586 }
587 }
588
589 /* the congestion map is in little endian order */
590 uncongested = le64_to_cpu(uncongested);
591
592 rds_cong_map_updated(map, uncongested);
593}
594
595/*
596 * Rings are posted with all the allocations they'll need to queue the
597 * incoming message to the receiving socket so this can't fail.
598 * All fragments start with a header, so we can make sure we're not receiving
599 * garbage, and we can tell a small 8 byte fragment from an ACK frame.
600 */
601struct rds_ib_ack_state {
602 u64 ack_next;
603 u64 ack_recv;
604 unsigned int ack_required:1;
605 unsigned int ack_next_valid:1;
606 unsigned int ack_recv_valid:1;
607};
608
609static void rds_ib_process_recv(struct rds_connection *conn,
Andy Grover597ddd52009-07-17 13:13:27 +0000610 struct rds_ib_recv_work *recv, u32 data_len,
Andy Grover1e23b3e2009-02-24 15:30:34 +0000611 struct rds_ib_ack_state *state)
612{
613 struct rds_ib_connection *ic = conn->c_transport_data;
614 struct rds_ib_incoming *ibinc = ic->i_ibinc;
615 struct rds_header *ihdr, *hdr;
616
617 /* XXX shut down the connection if port 0,0 are seen? */
618
619 rdsdebug("ic %p ibinc %p recv %p byte len %u\n", ic, ibinc, recv,
Andy Grover597ddd52009-07-17 13:13:27 +0000620 data_len);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000621
Andy Grover597ddd52009-07-17 13:13:27 +0000622 if (data_len < sizeof(struct rds_header)) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000623 rds_ib_conn_error(conn, "incoming message "
624 "from %pI4 didn't inclue a "
625 "header, disconnecting and "
626 "reconnecting\n",
627 &conn->c_faddr);
628 return;
629 }
Andy Grover597ddd52009-07-17 13:13:27 +0000630 data_len -= sizeof(struct rds_header);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000631
Andy Groverf147dd92010-01-13 15:50:09 -0800632 ihdr = &ic->i_recv_hdrs[recv - ic->i_recvs];
Andy Grover1e23b3e2009-02-24 15:30:34 +0000633
634 /* Validate the checksum. */
635 if (!rds_message_verify_checksum(ihdr)) {
636 rds_ib_conn_error(conn, "incoming message "
637 "from %pI4 has corrupted header - "
638 "forcing a reconnect\n",
639 &conn->c_faddr);
640 rds_stats_inc(s_recv_drop_bad_checksum);
641 return;
642 }
643
644 /* Process the ACK sequence which comes with every packet */
645 state->ack_recv = be64_to_cpu(ihdr->h_ack);
646 state->ack_recv_valid = 1;
647
648 /* Process the credits update if there was one */
649 if (ihdr->h_credit)
650 rds_ib_send_add_credits(conn, ihdr->h_credit);
651
Andy Grover597ddd52009-07-17 13:13:27 +0000652 if (ihdr->h_sport == 0 && ihdr->h_dport == 0 && data_len == 0) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000653 /* This is an ACK-only packet. The fact that it gets
654 * special treatment here is that historically, ACKs
655 * were rather special beasts.
656 */
657 rds_ib_stats_inc(s_ib_ack_received);
658
659 /*
660 * Usually the frags make their way on to incs and are then freed as
661 * the inc is freed. We don't go that route, so we have to drop the
662 * page ref ourselves. We can't just leave the page on the recv
663 * because that confuses the dma mapping of pages and each recv's use
Andy Grover0b088e02010-05-24 20:12:41 -0700664 * of a partial page.
Andy Grover1e23b3e2009-02-24 15:30:34 +0000665 *
666 * FIXME: Fold this into the code path below.
667 */
Andy Grover0b088e02010-05-24 20:12:41 -0700668 rds_ib_frag_free(recv->r_frag);
669 recv->r_frag = NULL;
Andy Grover1e23b3e2009-02-24 15:30:34 +0000670 return;
671 }
672
673 /*
674 * If we don't already have an inc on the connection then this
675 * fragment has a header and starts a message.. copy its header
676 * into the inc and save the inc so we can hang upcoming fragments
677 * off its list.
678 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800679 if (!ibinc) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000680 ibinc = recv->r_ibinc;
681 recv->r_ibinc = NULL;
682 ic->i_ibinc = ibinc;
683
684 hdr = &ibinc->ii_inc.i_hdr;
685 memcpy(hdr, ihdr, sizeof(*hdr));
686 ic->i_recv_data_rem = be32_to_cpu(hdr->h_len);
687
688 rdsdebug("ic %p ibinc %p rem %u flag 0x%x\n", ic, ibinc,
689 ic->i_recv_data_rem, hdr->h_flags);
690 } else {
691 hdr = &ibinc->ii_inc.i_hdr;
692 /* We can't just use memcmp here; fragments of a
693 * single message may carry different ACKs */
Joe Perchesf64f9e72009-11-29 16:55:45 -0800694 if (hdr->h_sequence != ihdr->h_sequence ||
695 hdr->h_len != ihdr->h_len ||
696 hdr->h_sport != ihdr->h_sport ||
697 hdr->h_dport != ihdr->h_dport) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000698 rds_ib_conn_error(conn,
699 "fragment header mismatch; forcing reconnect\n");
700 return;
701 }
702 }
703
704 list_add_tail(&recv->r_frag->f_item, &ibinc->ii_frags);
705 recv->r_frag = NULL;
706
707 if (ic->i_recv_data_rem > RDS_FRAG_SIZE)
708 ic->i_recv_data_rem -= RDS_FRAG_SIZE;
709 else {
710 ic->i_recv_data_rem = 0;
711 ic->i_ibinc = NULL;
712
713 if (ibinc->ii_inc.i_hdr.h_flags == RDS_FLAG_CONG_BITMAP)
714 rds_ib_cong_recv(conn, ibinc);
715 else {
716 rds_recv_incoming(conn, conn->c_faddr, conn->c_laddr,
717 &ibinc->ii_inc, GFP_ATOMIC,
718 KM_SOFTIRQ0);
719 state->ack_next = be64_to_cpu(hdr->h_sequence);
720 state->ack_next_valid = 1;
721 }
722
723 /* Evaluate the ACK_REQUIRED flag *after* we received
724 * the complete frame, and after bumping the next_rx
725 * sequence. */
726 if (hdr->h_flags & RDS_FLAG_ACK_REQUIRED) {
727 rds_stats_inc(s_recv_ack_required);
728 state->ack_required = 1;
729 }
730
731 rds_inc_put(&ibinc->ii_inc);
732 }
733}
734
735/*
736 * Plucking the oldest entry from the ring can be done concurrently with
737 * the thread refilling the ring. Each ring operation is protected by
738 * spinlocks and the transient state of refilling doesn't change the
739 * recording of which entry is oldest.
740 *
741 * This relies on IB only calling one cq comp_handler for each cq so that
742 * there will only be one caller of rds_recv_incoming() per RDS connection.
743 */
744void rds_ib_recv_cq_comp_handler(struct ib_cq *cq, void *context)
745{
746 struct rds_connection *conn = context;
747 struct rds_ib_connection *ic = conn->c_transport_data;
Andy Grover1e23b3e2009-02-24 15:30:34 +0000748
749 rdsdebug("conn %p cq %p\n", conn, cq);
750
751 rds_ib_stats_inc(s_ib_rx_cq_call);
752
Andy Groverd521b632009-10-30 08:51:57 +0000753 tasklet_schedule(&ic->i_recv_tasklet);
754}
Andy Grover1e23b3e2009-02-24 15:30:34 +0000755
Andy Groverd521b632009-10-30 08:51:57 +0000756static inline void rds_poll_cq(struct rds_ib_connection *ic,
757 struct rds_ib_ack_state *state)
758{
759 struct rds_connection *conn = ic->conn;
760 struct ib_wc wc;
761 struct rds_ib_recv_work *recv;
762
763 while (ib_poll_cq(ic->i_recv_cq, 1, &wc) > 0) {
Andy Grover1e23b3e2009-02-24 15:30:34 +0000764 rdsdebug("wc wr_id 0x%llx status %u byte_len %u imm_data %u\n",
765 (unsigned long long)wc.wr_id, wc.status, wc.byte_len,
766 be32_to_cpu(wc.ex.imm_data));
767 rds_ib_stats_inc(s_ib_rx_cq_event);
768
769 recv = &ic->i_recvs[rds_ib_ring_oldest(&ic->i_recv_ring)];
770
771 rds_ib_recv_unmap_page(ic, recv);
772
773 /*
774 * Also process recvs in connecting state because it is possible
775 * to get a recv completion _before_ the rdmacm ESTABLISHED
776 * event is processed.
777 */
778 if (rds_conn_up(conn) || rds_conn_connecting(conn)) {
779 /* We expect errors as the qp is drained during shutdown */
780 if (wc.status == IB_WC_SUCCESS) {
Andy Groverd521b632009-10-30 08:51:57 +0000781 rds_ib_process_recv(conn, recv, wc.byte_len, state);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000782 } else {
783 rds_ib_conn_error(conn, "recv completion on "
784 "%pI4 had status %u, disconnecting and "
785 "reconnecting\n", &conn->c_faddr,
786 wc.status);
787 }
788 }
789
790 rds_ib_ring_free(&ic->i_recv_ring, 1);
791 }
Andy Groverd521b632009-10-30 08:51:57 +0000792}
793
794void rds_ib_recv_tasklet_fn(unsigned long data)
795{
796 struct rds_ib_connection *ic = (struct rds_ib_connection *) data;
797 struct rds_connection *conn = ic->conn;
798 struct rds_ib_ack_state state = { 0, };
799
800 rds_poll_cq(ic, &state);
801 ib_req_notify_cq(ic->i_recv_cq, IB_CQ_SOLICITED);
802 rds_poll_cq(ic, &state);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000803
804 if (state.ack_next_valid)
805 rds_ib_set_ack(ic, state.ack_next, state.ack_required);
806 if (state.ack_recv_valid && state.ack_recv > ic->i_ack_recv) {
807 rds_send_drop_acked(conn, state.ack_recv, NULL);
808 ic->i_ack_recv = state.ack_recv;
809 }
810 if (rds_conn_up(conn))
811 rds_ib_attempt_ack(ic);
812
813 /* If we ever end up with a really empty receive ring, we're
814 * in deep trouble, as the sender will definitely see RNR
815 * timeouts. */
816 if (rds_ib_ring_empty(&ic->i_recv_ring))
817 rds_ib_stats_inc(s_ib_rx_ring_empty);
818
Andy Grover1e23b3e2009-02-24 15:30:34 +0000819 if (rds_ib_ring_low(&ic->i_recv_ring))
Andy Groverf17a1a52010-03-18 17:19:52 -0700820 rds_ib_recv_refill(conn, 0);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000821}
822
823int rds_ib_recv(struct rds_connection *conn)
824{
825 struct rds_ib_connection *ic = conn->c_transport_data;
826 int ret = 0;
827
828 rdsdebug("conn %p\n", conn);
Andy Grover1e23b3e2009-02-24 15:30:34 +0000829 if (rds_conn_up(conn))
830 rds_ib_attempt_ack(ic);
831
832 return ret;
833}
834
835int __init rds_ib_recv_init(void)
836{
837 struct sysinfo si;
838 int ret = -ENOMEM;
839
840 /* Default to 30% of all available RAM for recv memory */
841 si_meminfo(&si);
842 rds_ib_sysctl_max_recv_allocation = si.totalram / 3 * PAGE_SIZE / RDS_FRAG_SIZE;
843
844 rds_ib_incoming_slab = kmem_cache_create("rds_ib_incoming",
845 sizeof(struct rds_ib_incoming),
846 0, 0, NULL);
Andy Grover8690bfa2010-01-12 11:56:44 -0800847 if (!rds_ib_incoming_slab)
Andy Grover1e23b3e2009-02-24 15:30:34 +0000848 goto out;
849
850 rds_ib_frag_slab = kmem_cache_create("rds_ib_frag",
851 sizeof(struct rds_page_frag),
852 0, 0, NULL);
Andy Grover8690bfa2010-01-12 11:56:44 -0800853 if (!rds_ib_frag_slab)
Andy Grover1e23b3e2009-02-24 15:30:34 +0000854 kmem_cache_destroy(rds_ib_incoming_slab);
855 else
856 ret = 0;
857out:
858 return ret;
859}
860
861void rds_ib_recv_exit(void)
862{
863 kmem_cache_destroy(rds_ib_incoming_slab);
864 kmem_cache_destroy(rds_ib_frag_slab);
865}