]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/rds/send.c
RDS: Use a generation counter to avoid rds_send_xmit loop
[net-next-2.6.git] / net / rds / send.c
CommitLineData
5c115590
AG
1/*
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>
5a0e3ad6 34#include <linux/gfp.h>
5c115590
AG
35#include <net/sock.h>
36#include <linux/in.h>
37#include <linux/list.h>
38
39#include "rds.h"
5c115590
AG
40
41/* When transmitting messages in rds_send_xmit, we need to emerge from
42 * time to time and briefly release the CPU. Otherwise the softlock watchdog
43 * will kick our shin.
44 * Also, it seems fairer to not let one busy connection stall all the
45 * others.
46 *
47 * send_batch_count is the number of times we'll loop in send_xmit. Setting
48 * it to 0 will restore the old behavior (where we looped until we had
49 * drained the queue).
50 */
51static int send_batch_count = 64;
52module_param(send_batch_count, int, 0444);
53MODULE_PARM_DESC(send_batch_count, " batch factor when working the send queue");
54
55/*
56 * Reset the send state. Caller must hold c_send_lock when calling here.
57 */
58void rds_send_reset(struct rds_connection *conn)
59{
60 struct rds_message *rm, *tmp;
61 unsigned long flags;
62
63 if (conn->c_xmit_rm) {
64 /* Tell the user the RDMA op is no longer mapped by the
65 * transport. This isn't entirely true (it's flushed out
66 * independently) but as the connection is down, there's
67 * no ongoing RDMA to/from that memory */
68 rds_message_unmapped(conn->c_xmit_rm);
69 rds_message_put(conn->c_xmit_rm);
70 conn->c_xmit_rm = NULL;
71 }
72 conn->c_xmit_sg = 0;
73 conn->c_xmit_hdr_off = 0;
74 conn->c_xmit_data_off = 0;
15133f6e 75 conn->c_xmit_atomic_sent = 0;
5b2366bd
AG
76 conn->c_xmit_rdma_sent = 0;
77 conn->c_xmit_data_sent = 0;
5c115590
AG
78
79 conn->c_map_queued = 0;
80
81 conn->c_unacked_packets = rds_sysctl_max_unacked_packets;
82 conn->c_unacked_bytes = rds_sysctl_max_unacked_bytes;
83
84 /* Mark messages as retransmissions, and move them to the send q */
85 spin_lock_irqsave(&conn->c_lock, flags);
86 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
87 set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags);
88 set_bit(RDS_MSG_RETRANSMITTED, &rm->m_flags);
89 }
90 list_splice_init(&conn->c_retrans, &conn->c_send_queue);
91 spin_unlock_irqrestore(&conn->c_lock, flags);
92}
93
94/*
95 * We're making the concious trade-off here to only send one message
96 * down the connection at a time.
97 * Pro:
98 * - tx queueing is a simple fifo list
99 * - reassembly is optional and easily done by transports per conn
100 * - no per flow rx lookup at all, straight to the socket
101 * - less per-frag memory and wire overhead
102 * Con:
103 * - queued acks can be delayed behind large messages
104 * Depends:
105 * - small message latency is higher behind queued large messages
106 * - large message latency isn't starved by intervening small sends
107 */
108int rds_send_xmit(struct rds_connection *conn)
109{
110 struct rds_message *rm;
111 unsigned long flags;
112 unsigned int tmp;
5c115590
AG
113 struct scatterlist *sg;
114 int ret = 0;
9e29db0e 115 int gen = 0;
5c115590
AG
116 LIST_HEAD(to_be_dropped);
117
fcc5450c 118restart:
049ee3f5
AG
119 if (!rds_conn_up(conn))
120 goto out;
121
5c115590
AG
122 /*
123 * sendmsg calls here after having queued its message on the send
124 * queue. We only have one task feeding the connection at a time. If
125 * another thread is already feeding the queue then we back off. This
126 * avoids blocking the caller and trading per-connection data between
127 * caches per message.
5c115590 128 */
049ee3f5
AG
129 if (!spin_trylock_irqsave(&conn->c_send_lock, flags)) {
130 rds_stats_inc(s_send_lock_contention);
5c115590
AG
131 ret = -ENOMEM;
132 goto out;
133 }
134
135 if (conn->c_trans->xmit_prepare)
136 conn->c_trans->xmit_prepare(conn);
137
9e29db0e
CM
138 gen = atomic_inc_return(&conn->c_send_generation);
139
5c115590
AG
140 /*
141 * spin trying to push headers and data down the connection until
5b2366bd 142 * the connection doesn't make forward progress.
5c115590 143 */
fcc5450c 144 while (1) {
5c115590 145
5c115590 146 rm = conn->c_xmit_rm;
5c115590 147
5b2366bd
AG
148 /*
149 * If between sending messages, we can send a pending congestion
150 * map update.
5c115590 151 */
8690bfa1 152 if (!rm && test_and_clear_bit(0, &conn->c_map_queued)) {
77dd550e
AG
153 rm = rds_cong_update_alloc(conn);
154 if (IS_ERR(rm)) {
155 ret = PTR_ERR(rm);
156 break;
5b2366bd 157 }
77dd550e
AG
158 rm->data.op_active = 1;
159
160 conn->c_xmit_rm = rm;
5c115590
AG
161 }
162
163 /*
5b2366bd 164 * If not already working on one, grab the next message.
5c115590
AG
165 *
166 * c_xmit_rm holds a ref while we're sending this message down
167 * the connction. We can use this ref while holding the
168 * send_sem.. rds_send_reset() is serialized with it.
169 */
8690bfa1 170 if (!rm) {
5c115590
AG
171 unsigned int len;
172
2ad8099b 173 spin_lock(&conn->c_lock);
5c115590
AG
174
175 if (!list_empty(&conn->c_send_queue)) {
176 rm = list_entry(conn->c_send_queue.next,
177 struct rds_message,
178 m_conn_item);
179 rds_message_addref(rm);
180
181 /*
182 * Move the message from the send queue to the retransmit
183 * list right away.
184 */
185 list_move_tail(&rm->m_conn_item, &conn->c_retrans);
186 }
187
2ad8099b 188 spin_unlock(&conn->c_lock);
5c115590 189
fcc5450c 190 if (!rm)
5c115590 191 break;
5c115590
AG
192
193 /* Unfortunately, the way Infiniband deals with
194 * RDMA to a bad MR key is by moving the entire
195 * queue pair to error state. We cold possibly
196 * recover from that, but right now we drop the
197 * connection.
198 * Therefore, we never retransmit messages with RDMA ops.
199 */
f8b3aaf2 200 if (rm->rdma.op_active &&
f64f9e71 201 test_bit(RDS_MSG_RETRANSMITTED, &rm->m_flags)) {
2ad8099b 202 spin_lock(&conn->c_lock);
5c115590
AG
203 if (test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags))
204 list_move(&rm->m_conn_item, &to_be_dropped);
2ad8099b 205 spin_unlock(&conn->c_lock);
5c115590
AG
206 continue;
207 }
208
209 /* Require an ACK every once in a while */
210 len = ntohl(rm->m_inc.i_hdr.h_len);
f64f9e71
JP
211 if (conn->c_unacked_packets == 0 ||
212 conn->c_unacked_bytes < len) {
5c115590
AG
213 __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags);
214
215 conn->c_unacked_packets = rds_sysctl_max_unacked_packets;
216 conn->c_unacked_bytes = rds_sysctl_max_unacked_bytes;
217 rds_stats_inc(s_send_ack_required);
218 } else {
219 conn->c_unacked_bytes -= len;
220 conn->c_unacked_packets--;
221 }
222
223 conn->c_xmit_rm = rm;
224 }
225
2c3a5f9a
AG
226 /* The transport either sends the whole rdma or none of it */
227 if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) {
ff3d7d36 228 rm->m_final_op = &rm->rdma;
2c3a5f9a 229 ret = conn->c_trans->xmit_rdma(conn, &rm->rdma);
15133f6e
AG
230 if (ret)
231 break;
2c3a5f9a
AG
232 conn->c_xmit_rdma_sent = 1;
233
15133f6e
AG
234 /* The transport owns the mapped memory for now.
235 * You can't unmap it while it's on the send queue */
236 set_bit(RDS_MSG_MAPPED, &rm->m_flags);
237 }
238
2c3a5f9a 239 if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) {
ff3d7d36
AG
240 rm->m_final_op = &rm->atomic;
241 ret = conn->c_trans->xmit_atomic(conn, &rm->atomic);
5c115590
AG
242 if (ret)
243 break;
2c3a5f9a 244 conn->c_xmit_atomic_sent = 1;
ff3d7d36 245
5c115590
AG
246 /* The transport owns the mapped memory for now.
247 * You can't unmap it while it's on the send queue */
248 set_bit(RDS_MSG_MAPPED, &rm->m_flags);
249 }
250
2c3a5f9a
AG
251 /*
252 * A number of cases require an RDS header to be sent
253 * even if there is no data.
254 * We permit 0-byte sends; rds-ping depends on this.
255 * However, if there are exclusively attached silent ops,
256 * we skip the hdr/data send, to enable silent operation.
257 */
258 if (rm->data.op_nents == 0) {
259 int ops_present;
260 int all_ops_are_silent = 1;
261
262 ops_present = (rm->atomic.op_active || rm->rdma.op_active);
263 if (rm->atomic.op_active && !rm->atomic.op_silent)
264 all_ops_are_silent = 0;
265 if (rm->rdma.op_active && !rm->rdma.op_silent)
266 all_ops_are_silent = 0;
267
268 if (ops_present && all_ops_are_silent
269 && !rm->m_rdma_cookie)
270 rm->data.op_active = 0;
271 }
272
5b2366bd 273 if (rm->data.op_active && !conn->c_xmit_data_sent) {
ff3d7d36 274 rm->m_final_op = &rm->data;
5c115590
AG
275 ret = conn->c_trans->xmit(conn, rm,
276 conn->c_xmit_hdr_off,
277 conn->c_xmit_sg,
278 conn->c_xmit_data_off);
279 if (ret <= 0)
280 break;
281
282 if (conn->c_xmit_hdr_off < sizeof(struct rds_header)) {
283 tmp = min_t(int, ret,
284 sizeof(struct rds_header) -
285 conn->c_xmit_hdr_off);
286 conn->c_xmit_hdr_off += tmp;
287 ret -= tmp;
288 }
289
6c7cc6e4 290 sg = &rm->data.op_sg[conn->c_xmit_sg];
5c115590
AG
291 while (ret) {
292 tmp = min_t(int, ret, sg->length -
293 conn->c_xmit_data_off);
294 conn->c_xmit_data_off += tmp;
295 ret -= tmp;
296 if (conn->c_xmit_data_off == sg->length) {
297 conn->c_xmit_data_off = 0;
298 sg++;
299 conn->c_xmit_sg++;
300 BUG_ON(ret != 0 &&
6c7cc6e4 301 conn->c_xmit_sg == rm->data.op_nents);
5c115590
AG
302 }
303 }
5b2366bd
AG
304
305 if (conn->c_xmit_hdr_off == sizeof(struct rds_header) &&
306 (conn->c_xmit_sg == rm->data.op_nents))
307 conn->c_xmit_data_sent = 1;
308 }
309
310 /*
311 * A rm will only take multiple times through this loop
312 * if there is a data op. Thus, if the data is sent (or there was
313 * none), then we're done with the rm.
314 */
315 if (!rm->data.op_active || conn->c_xmit_data_sent) {
316 conn->c_xmit_rm = NULL;
317 conn->c_xmit_sg = 0;
318 conn->c_xmit_hdr_off = 0;
319 conn->c_xmit_data_off = 0;
320 conn->c_xmit_rdma_sent = 0;
321 conn->c_xmit_atomic_sent = 0;
322 conn->c_xmit_data_sent = 0;
323
324 rds_message_put(rm);
5c115590
AG
325 }
326 }
327
5c115590
AG
328 if (conn->c_trans->xmit_complete)
329 conn->c_trans->xmit_complete(conn);
330
331 /*
332 * We might be racing with another sender who queued a message but
333 * backed off on noticing that we held the c_send_lock. If we check
334 * for queued messages after dropping the sem then either we'll
335 * see the queued message or the queuer will get the sem. If we
336 * notice the queued message then we trigger an immediate retry.
337 *
338 * We need to be careful only to do this when we stopped processing
339 * the send queue because it was empty. It's the only way we
340 * stop processing the loop when the transport hasn't taken
341 * responsibility for forward progress.
342 */
049ee3f5 343 spin_unlock_irqrestore(&conn->c_send_lock, flags);
5c115590 344
2ad8099b
AG
345 /* Nuke any messages we decided not to retransmit. */
346 if (!list_empty(&to_be_dropped)) {
347 /* irqs on here, so we can put(), unlike above */
348 list_for_each_entry(rm, &to_be_dropped, m_conn_item)
349 rds_message_put(rm);
350 rds_send_remove_from_sock(&to_be_dropped, RDS_RDMA_DROPPED);
351 }
352
fcc5450c
AG
353 /*
354 * Other senders will see we have c_send_lock and exit. We
355 * need to recheck the send queue and race again for c_send_lock
356 * to make sure messages don't just sit on the send queue.
357 *
358 * If the transport cannot continue (i.e ret != 0), then it must
359 * call us when more room is available, such as from the tx
360 * completion handler.
361 */
362 if (ret == 0) {
5c115590
AG
363 /* A simple bit test would be way faster than taking the
364 * spin lock */
9e29db0e 365 smp_mb();
5c115590 366 if (!list_empty(&conn->c_send_queue)) {
049ee3f5 367 rds_stats_inc(s_send_lock_queue_raced);
9e29db0e
CM
368 if (gen == atomic_read(&conn->c_send_generation)) {
369 goto restart;
370 }
5c115590 371 }
5c115590
AG
372 }
373out:
374 return ret;
375}
376
377static void rds_send_sndbuf_remove(struct rds_sock *rs, struct rds_message *rm)
378{
379 u32 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
380
381 assert_spin_locked(&rs->rs_lock);
382
383 BUG_ON(rs->rs_snd_bytes < len);
384 rs->rs_snd_bytes -= len;
385
386 if (rs->rs_snd_bytes == 0)
387 rds_stats_inc(s_send_queue_empty);
388}
389
390static inline int rds_send_is_acked(struct rds_message *rm, u64 ack,
391 is_acked_func is_acked)
392{
393 if (is_acked)
394 return is_acked(rm, ack);
395 return be64_to_cpu(rm->m_inc.i_hdr.h_sequence) <= ack;
396}
397
398/*
399 * Returns true if there are no messages on the send and retransmit queues
400 * which have a sequence number greater than or equal to the given sequence
401 * number.
402 */
403int rds_send_acked_before(struct rds_connection *conn, u64 seq)
404{
405 struct rds_message *rm, *tmp;
406 int ret = 1;
407
408 spin_lock(&conn->c_lock);
409
410 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
411 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
412 ret = 0;
413 break;
414 }
415
416 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
417 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
418 ret = 0;
419 break;
420 }
421
422 spin_unlock(&conn->c_lock);
423
424 return ret;
425}
426
427/*
428 * This is pretty similar to what happens below in the ACK
429 * handling code - except that we call here as soon as we get
430 * the IB send completion on the RDMA op and the accompanying
431 * message.
432 */
433void rds_rdma_send_complete(struct rds_message *rm, int status)
434{
435 struct rds_sock *rs = NULL;
f8b3aaf2 436 struct rm_rdma_op *ro;
5c115590 437 struct rds_notifier *notifier;
9de0864c 438 unsigned long flags;
5c115590 439
9de0864c 440 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590 441
f8b3aaf2 442 ro = &rm->rdma;
f64f9e71 443 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) &&
f8b3aaf2
AG
444 ro->op_active && ro->op_notify && ro->op_notifier) {
445 notifier = ro->op_notifier;
5c115590
AG
446 rs = rm->m_rs;
447 sock_hold(rds_rs_to_sk(rs));
448
449 notifier->n_status = status;
450 spin_lock(&rs->rs_lock);
451 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
452 spin_unlock(&rs->rs_lock);
453
f8b3aaf2 454 ro->op_notifier = NULL;
5c115590
AG
455 }
456
9de0864c 457 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
5c115590
AG
458
459 if (rs) {
460 rds_wake_sk_sleep(rs);
461 sock_put(rds_rs_to_sk(rs));
462 }
463}
616b757a 464EXPORT_SYMBOL_GPL(rds_rdma_send_complete);
5c115590 465
15133f6e
AG
466/*
467 * Just like above, except looks at atomic op
468 */
469void rds_atomic_send_complete(struct rds_message *rm, int status)
470{
471 struct rds_sock *rs = NULL;
472 struct rm_atomic_op *ao;
473 struct rds_notifier *notifier;
cf4b7389 474 unsigned long flags;
15133f6e 475
cf4b7389 476 spin_lock_irqsave(&rm->m_rs_lock, flags);
15133f6e
AG
477
478 ao = &rm->atomic;
479 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags)
480 && ao->op_active && ao->op_notify && ao->op_notifier) {
481 notifier = ao->op_notifier;
482 rs = rm->m_rs;
483 sock_hold(rds_rs_to_sk(rs));
484
485 notifier->n_status = status;
486 spin_lock(&rs->rs_lock);
487 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
488 spin_unlock(&rs->rs_lock);
489
490 ao->op_notifier = NULL;
491 }
492
cf4b7389 493 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
15133f6e
AG
494
495 if (rs) {
496 rds_wake_sk_sleep(rs);
497 sock_put(rds_rs_to_sk(rs));
498 }
499}
500EXPORT_SYMBOL_GPL(rds_atomic_send_complete);
501
5c115590
AG
502/*
503 * This is the same as rds_rdma_send_complete except we
504 * don't do any locking - we have all the ingredients (message,
505 * socket, socket lock) and can just move the notifier.
506 */
507static inline void
940786eb 508__rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status)
5c115590 509{
f8b3aaf2 510 struct rm_rdma_op *ro;
940786eb 511 struct rm_atomic_op *ao;
5c115590 512
f8b3aaf2
AG
513 ro = &rm->rdma;
514 if (ro->op_active && ro->op_notify && ro->op_notifier) {
515 ro->op_notifier->n_status = status;
516 list_add_tail(&ro->op_notifier->n_list, &rs->rs_notify_queue);
517 ro->op_notifier = NULL;
5c115590
AG
518 }
519
940786eb
AG
520 ao = &rm->atomic;
521 if (ao->op_active && ao->op_notify && ao->op_notifier) {
522 ao->op_notifier->n_status = status;
523 list_add_tail(&ao->op_notifier->n_list, &rs->rs_notify_queue);
524 ao->op_notifier = NULL;
525 }
526
5c115590
AG
527 /* No need to wake the app - caller does this */
528}
529
530/*
531 * This is called from the IB send completion when we detect
532 * a RDMA operation that failed with remote access error.
533 * So speed is not an issue here.
534 */
535struct rds_message *rds_send_get_message(struct rds_connection *conn,
f8b3aaf2 536 struct rm_rdma_op *op)
5c115590
AG
537{
538 struct rds_message *rm, *tmp, *found = NULL;
539 unsigned long flags;
540
541 spin_lock_irqsave(&conn->c_lock, flags);
542
543 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
f8b3aaf2 544 if (&rm->rdma == op) {
5c115590
AG
545 atomic_inc(&rm->m_refcount);
546 found = rm;
547 goto out;
548 }
549 }
550
551 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
f8b3aaf2 552 if (&rm->rdma == op) {
5c115590
AG
553 atomic_inc(&rm->m_refcount);
554 found = rm;
555 break;
556 }
557 }
558
559out:
560 spin_unlock_irqrestore(&conn->c_lock, flags);
561
562 return found;
563}
616b757a 564EXPORT_SYMBOL_GPL(rds_send_get_message);
5c115590
AG
565
566/*
567 * This removes messages from the socket's list if they're on it. The list
568 * argument must be private to the caller, we must be able to modify it
569 * without locks. The messages must have a reference held for their
570 * position on the list. This function will drop that reference after
571 * removing the messages from the 'messages' list regardless of if it found
572 * the messages on the socket list or not.
573 */
574void rds_send_remove_from_sock(struct list_head *messages, int status)
575{
561c7df6 576 unsigned long flags;
5c115590
AG
577 struct rds_sock *rs = NULL;
578 struct rds_message *rm;
579
5c115590 580 while (!list_empty(messages)) {
561c7df6
AG
581 int was_on_sock = 0;
582
5c115590
AG
583 rm = list_entry(messages->next, struct rds_message,
584 m_conn_item);
585 list_del_init(&rm->m_conn_item);
586
587 /*
588 * If we see this flag cleared then we're *sure* that someone
589 * else beat us to removing it from the sock. If we race
590 * with their flag update we'll get the lock and then really
591 * see that the flag has been cleared.
592 *
593 * The message spinlock makes sure nobody clears rm->m_rs
594 * while we're messing with it. It does not prevent the
595 * message from being removed from the socket, though.
596 */
561c7df6 597 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590
AG
598 if (!test_bit(RDS_MSG_ON_SOCK, &rm->m_flags))
599 goto unlock_and_drop;
600
601 if (rs != rm->m_rs) {
602 if (rs) {
5c115590
AG
603 rds_wake_sk_sleep(rs);
604 sock_put(rds_rs_to_sk(rs));
605 }
606 rs = rm->m_rs;
5c115590
AG
607 sock_hold(rds_rs_to_sk(rs));
608 }
048c15e6 609 spin_lock(&rs->rs_lock);
5c115590
AG
610
611 if (test_and_clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) {
f8b3aaf2 612 struct rm_rdma_op *ro = &rm->rdma;
5c115590
AG
613 struct rds_notifier *notifier;
614
615 list_del_init(&rm->m_sock_item);
616 rds_send_sndbuf_remove(rs, rm);
617
f8b3aaf2
AG
618 if (ro->op_active && ro->op_notifier &&
619 (ro->op_notify || (ro->op_recverr && status))) {
620 notifier = ro->op_notifier;
5c115590
AG
621 list_add_tail(&notifier->n_list,
622 &rs->rs_notify_queue);
623 if (!notifier->n_status)
624 notifier->n_status = status;
f8b3aaf2 625 rm->rdma.op_notifier = NULL;
5c115590 626 }
561c7df6 627 was_on_sock = 1;
5c115590
AG
628 rm->m_rs = NULL;
629 }
048c15e6 630 spin_unlock(&rs->rs_lock);
5c115590
AG
631
632unlock_and_drop:
561c7df6 633 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
5c115590 634 rds_message_put(rm);
561c7df6
AG
635 if (was_on_sock)
636 rds_message_put(rm);
5c115590
AG
637 }
638
639 if (rs) {
5c115590
AG
640 rds_wake_sk_sleep(rs);
641 sock_put(rds_rs_to_sk(rs));
642 }
5c115590
AG
643}
644
645/*
646 * Transports call here when they've determined that the receiver queued
647 * messages up to, and including, the given sequence number. Messages are
648 * moved to the retrans queue when rds_send_xmit picks them off the send
649 * queue. This means that in the TCP case, the message may not have been
650 * assigned the m_ack_seq yet - but that's fine as long as tcp_is_acked
651 * checks the RDS_MSG_HAS_ACK_SEQ bit.
652 *
653 * XXX It's not clear to me how this is safely serialized with socket
654 * destruction. Maybe it should bail if it sees SOCK_DEAD.
655 */
656void rds_send_drop_acked(struct rds_connection *conn, u64 ack,
657 is_acked_func is_acked)
658{
659 struct rds_message *rm, *tmp;
660 unsigned long flags;
661 LIST_HEAD(list);
662
663 spin_lock_irqsave(&conn->c_lock, flags);
664
665 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
666 if (!rds_send_is_acked(rm, ack, is_acked))
667 break;
668
669 list_move(&rm->m_conn_item, &list);
670 clear_bit(RDS_MSG_ON_CONN, &rm->m_flags);
671 }
672
673 /* order flag updates with spin locks */
674 if (!list_empty(&list))
675 smp_mb__after_clear_bit();
676
677 spin_unlock_irqrestore(&conn->c_lock, flags);
678
679 /* now remove the messages from the sock list as needed */
680 rds_send_remove_from_sock(&list, RDS_RDMA_SUCCESS);
681}
616b757a 682EXPORT_SYMBOL_GPL(rds_send_drop_acked);
5c115590
AG
683
684void rds_send_drop_to(struct rds_sock *rs, struct sockaddr_in *dest)
685{
686 struct rds_message *rm, *tmp;
687 struct rds_connection *conn;
7c82eaf0 688 unsigned long flags;
5c115590 689 LIST_HEAD(list);
5c115590
AG
690
691 /* get all the messages we're dropping under the rs lock */
692 spin_lock_irqsave(&rs->rs_lock, flags);
693
694 list_for_each_entry_safe(rm, tmp, &rs->rs_send_queue, m_sock_item) {
695 if (dest && (dest->sin_addr.s_addr != rm->m_daddr ||
696 dest->sin_port != rm->m_inc.i_hdr.h_dport))
697 continue;
698
5c115590
AG
699 list_move(&rm->m_sock_item, &list);
700 rds_send_sndbuf_remove(rs, rm);
701 clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
5c115590
AG
702 }
703
704 /* order flag updates with the rs lock */
7c82eaf0 705 smp_mb__after_clear_bit();
5c115590
AG
706
707 spin_unlock_irqrestore(&rs->rs_lock, flags);
708
7c82eaf0
AG
709 if (list_empty(&list))
710 return;
5c115590 711
7c82eaf0 712 /* Remove the messages from the conn */
5c115590 713 list_for_each_entry(rm, &list, m_sock_item) {
7c82eaf0
AG
714
715 conn = rm->m_inc.i_conn;
5c115590 716
9de0864c 717 spin_lock_irqsave(&conn->c_lock, flags);
5c115590 718 /*
7c82eaf0
AG
719 * Maybe someone else beat us to removing rm from the conn.
720 * If we race with their flag update we'll get the lock and
721 * then really see that the flag has been cleared.
5c115590 722 */
7c82eaf0
AG
723 if (!test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) {
724 spin_unlock_irqrestore(&conn->c_lock, flags);
5c115590 725 continue;
5c115590 726 }
9de0864c
AG
727 list_del_init(&rm->m_conn_item);
728 spin_unlock_irqrestore(&conn->c_lock, flags);
5c115590 729
7c82eaf0
AG
730 /*
731 * Couldn't grab m_rs_lock in top loop (lock ordering),
732 * but we can now.
733 */
9de0864c 734 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590 735
7c82eaf0 736 spin_lock(&rs->rs_lock);
940786eb 737 __rds_send_complete(rs, rm, RDS_RDMA_CANCELED);
7c82eaf0
AG
738 spin_unlock(&rs->rs_lock);
739
740 rm->m_rs = NULL;
9de0864c 741 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
7c82eaf0 742
7c82eaf0 743 rds_message_put(rm);
7c82eaf0 744 }
5c115590 745
7c82eaf0 746 rds_wake_sk_sleep(rs);
550a8002 747
5c115590
AG
748 while (!list_empty(&list)) {
749 rm = list_entry(list.next, struct rds_message, m_sock_item);
750 list_del_init(&rm->m_sock_item);
751
752 rds_message_wait(rm);
753 rds_message_put(rm);
754 }
755}
756
757/*
758 * we only want this to fire once so we use the callers 'queued'. It's
759 * possible that another thread can race with us and remove the
760 * message from the flow with RDS_CANCEL_SENT_TO.
761 */
762static int rds_send_queue_rm(struct rds_sock *rs, struct rds_connection *conn,
763 struct rds_message *rm, __be16 sport,
764 __be16 dport, int *queued)
765{
766 unsigned long flags;
767 u32 len;
768
769 if (*queued)
770 goto out;
771
772 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
773
774 /* this is the only place which holds both the socket's rs_lock
775 * and the connection's c_lock */
776 spin_lock_irqsave(&rs->rs_lock, flags);
777
778 /*
779 * If there is a little space in sndbuf, we don't queue anything,
780 * and userspace gets -EAGAIN. But poll() indicates there's send
781 * room. This can lead to bad behavior (spinning) if snd_bytes isn't
782 * freed up by incoming acks. So we check the *old* value of
783 * rs_snd_bytes here to allow the last msg to exceed the buffer,
784 * and poll() now knows no more data can be sent.
785 */
786 if (rs->rs_snd_bytes < rds_sk_sndbuf(rs)) {
787 rs->rs_snd_bytes += len;
788
789 /* let recv side know we are close to send space exhaustion.
790 * This is probably not the optimal way to do it, as this
791 * means we set the flag on *all* messages as soon as our
792 * throughput hits a certain threshold.
793 */
794 if (rs->rs_snd_bytes >= rds_sk_sndbuf(rs) / 2)
795 __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags);
796
797 list_add_tail(&rm->m_sock_item, &rs->rs_send_queue);
798 set_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
799 rds_message_addref(rm);
800 rm->m_rs = rs;
801
802 /* The code ordering is a little weird, but we're
803 trying to minimize the time we hold c_lock */
804 rds_message_populate_header(&rm->m_inc.i_hdr, sport, dport, 0);
805 rm->m_inc.i_conn = conn;
806 rds_message_addref(rm);
807
808 spin_lock(&conn->c_lock);
809 rm->m_inc.i_hdr.h_sequence = cpu_to_be64(conn->c_next_tx_seq++);
810 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
811 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
812 spin_unlock(&conn->c_lock);
813
814 rdsdebug("queued msg %p len %d, rs %p bytes %d seq %llu\n",
815 rm, len, rs, rs->rs_snd_bytes,
816 (unsigned long long)be64_to_cpu(rm->m_inc.i_hdr.h_sequence));
817
818 *queued = 1;
819 }
820
821 spin_unlock_irqrestore(&rs->rs_lock, flags);
822out:
823 return *queued;
824}
825
fc445084
AG
826/*
827 * rds_message is getting to be quite complicated, and we'd like to allocate
828 * it all in one go. This figures out how big it needs to be up front.
829 */
830static int rds_rm_size(struct msghdr *msg, int data_len)
831{
ff87e97a 832 struct cmsghdr *cmsg;
fc445084 833 int size = 0;
aa0a4ef4 834 int cmsg_groups = 0;
ff87e97a
AG
835 int retval;
836
837 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
838 if (!CMSG_OK(msg, cmsg))
839 return -EINVAL;
840
841 if (cmsg->cmsg_level != SOL_RDS)
842 continue;
843
844 switch (cmsg->cmsg_type) {
845 case RDS_CMSG_RDMA_ARGS:
aa0a4ef4 846 cmsg_groups |= 1;
ff87e97a
AG
847 retval = rds_rdma_extra_size(CMSG_DATA(cmsg));
848 if (retval < 0)
849 return retval;
850 size += retval;
aa0a4ef4 851
ff87e97a
AG
852 break;
853
854 case RDS_CMSG_RDMA_DEST:
855 case RDS_CMSG_RDMA_MAP:
aa0a4ef4 856 cmsg_groups |= 2;
ff87e97a
AG
857 /* these are valid but do no add any size */
858 break;
859
15133f6e
AG
860 case RDS_CMSG_ATOMIC_CSWP:
861 case RDS_CMSG_ATOMIC_FADD:
aa0a4ef4 862 cmsg_groups |= 1;
15133f6e
AG
863 size += sizeof(struct scatterlist);
864 break;
865
ff87e97a
AG
866 default:
867 return -EINVAL;
868 }
869
870 }
fc445084 871
ff87e97a 872 size += ceil(data_len, PAGE_SIZE) * sizeof(struct scatterlist);
fc445084 873
aa0a4ef4
AG
874 /* Ensure (DEST, MAP) are never used with (ARGS, ATOMIC) */
875 if (cmsg_groups == 3)
876 return -EINVAL;
877
fc445084
AG
878 return size;
879}
880
5c115590
AG
881static int rds_cmsg_send(struct rds_sock *rs, struct rds_message *rm,
882 struct msghdr *msg, int *allocated_mr)
883{
884 struct cmsghdr *cmsg;
885 int ret = 0;
886
887 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
888 if (!CMSG_OK(msg, cmsg))
889 return -EINVAL;
890
891 if (cmsg->cmsg_level != SOL_RDS)
892 continue;
893
894 /* As a side effect, RDMA_DEST and RDMA_MAP will set
15133f6e 895 * rm->rdma.m_rdma_cookie and rm->rdma.m_rdma_mr.
5c115590
AG
896 */
897 switch (cmsg->cmsg_type) {
898 case RDS_CMSG_RDMA_ARGS:
899 ret = rds_cmsg_rdma_args(rs, rm, cmsg);
900 break;
901
902 case RDS_CMSG_RDMA_DEST:
903 ret = rds_cmsg_rdma_dest(rs, rm, cmsg);
904 break;
905
906 case RDS_CMSG_RDMA_MAP:
907 ret = rds_cmsg_rdma_map(rs, rm, cmsg);
908 if (!ret)
909 *allocated_mr = 1;
910 break;
15133f6e
AG
911 case RDS_CMSG_ATOMIC_CSWP:
912 case RDS_CMSG_ATOMIC_FADD:
913 ret = rds_cmsg_atomic(rs, rm, cmsg);
914 break;
5c115590
AG
915
916 default:
917 return -EINVAL;
918 }
919
920 if (ret)
921 break;
922 }
923
924 return ret;
925}
926
927int rds_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
928 size_t payload_len)
929{
930 struct sock *sk = sock->sk;
931 struct rds_sock *rs = rds_sk_to_rs(sk);
932 struct sockaddr_in *usin = (struct sockaddr_in *)msg->msg_name;
933 __be32 daddr;
934 __be16 dport;
935 struct rds_message *rm = NULL;
936 struct rds_connection *conn;
937 int ret = 0;
938 int queued = 0, allocated_mr = 0;
939 int nonblock = msg->msg_flags & MSG_DONTWAIT;
1123fd73 940 long timeo = sock_sndtimeo(sk, nonblock);
5c115590
AG
941
942 /* Mirror Linux UDP mirror of BSD error message compatibility */
943 /* XXX: Perhaps MSG_MORE someday */
944 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) {
945 printk(KERN_INFO "msg_flags 0x%08X\n", msg->msg_flags);
946 ret = -EOPNOTSUPP;
947 goto out;
948 }
949
950 if (msg->msg_namelen) {
951 /* XXX fail non-unicast destination IPs? */
952 if (msg->msg_namelen < sizeof(*usin) || usin->sin_family != AF_INET) {
953 ret = -EINVAL;
954 goto out;
955 }
956 daddr = usin->sin_addr.s_addr;
957 dport = usin->sin_port;
958 } else {
959 /* We only care about consistency with ->connect() */
960 lock_sock(sk);
961 daddr = rs->rs_conn_addr;
962 dport = rs->rs_conn_port;
963 release_sock(sk);
964 }
965
966 /* racing with another thread binding seems ok here */
967 if (daddr == 0 || rs->rs_bound_addr == 0) {
968 ret = -ENOTCONN; /* XXX not a great errno */
969 goto out;
970 }
971
fc445084
AG
972 /* size of rm including all sgs */
973 ret = rds_rm_size(msg, payload_len);
974 if (ret < 0)
975 goto out;
976
977 rm = rds_message_alloc(ret, GFP_KERNEL);
978 if (!rm) {
979 ret = -ENOMEM;
5c115590
AG
980 goto out;
981 }
982
372cd7de
AG
983 /* Attach data to the rm */
984 if (payload_len) {
985 rm->data.op_sg = rds_message_alloc_sgs(rm, ceil(payload_len, PAGE_SIZE));
986 ret = rds_message_copy_from_user(rm, msg->msg_iov, payload_len);
987 if (ret)
988 goto out;
989 }
990 rm->data.op_active = 1;
fc445084 991
5c115590
AG
992 rm->m_daddr = daddr;
993
5c115590
AG
994 /* rds_conn_create has a spinlock that runs with IRQ off.
995 * Caching the conn in the socket helps a lot. */
996 if (rs->rs_conn && rs->rs_conn->c_faddr == daddr)
997 conn = rs->rs_conn;
998 else {
999 conn = rds_conn_create_outgoing(rs->rs_bound_addr, daddr,
1000 rs->rs_transport,
1001 sock->sk->sk_allocation);
1002 if (IS_ERR(conn)) {
1003 ret = PTR_ERR(conn);
1004 goto out;
1005 }
1006 rs->rs_conn = conn;
1007 }
1008
49f69691
AG
1009 /* Parse any control messages the user may have included. */
1010 ret = rds_cmsg_send(rs, rm, msg, &allocated_mr);
1011 if (ret)
1012 goto out;
1013
2c3a5f9a 1014 if (rm->rdma.op_active && !conn->c_trans->xmit_rdma) {
5c115590
AG
1015 if (printk_ratelimit())
1016 printk(KERN_NOTICE "rdma_op %p conn xmit_rdma %p\n",
f8b3aaf2 1017 &rm->rdma, conn->c_trans->xmit_rdma);
15133f6e
AG
1018 ret = -EOPNOTSUPP;
1019 goto out;
1020 }
1021
1022 if (rm->atomic.op_active && !conn->c_trans->xmit_atomic) {
1023 if (printk_ratelimit())
1024 printk(KERN_NOTICE "atomic_op %p conn xmit_atomic %p\n",
1025 &rm->atomic, conn->c_trans->xmit_atomic);
5c115590
AG
1026 ret = -EOPNOTSUPP;
1027 goto out;
1028 }
1029
1030 /* If the connection is down, trigger a connect. We may
1031 * have scheduled a delayed reconnect however - in this case
1032 * we should not interfere.
1033 */
f64f9e71
JP
1034 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1035 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
5c115590
AG
1036 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1037
1038 ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs);
b98ba52f
AG
1039 if (ret) {
1040 rs->rs_seen_congestion = 1;
5c115590 1041 goto out;
b98ba52f 1042 }
5c115590
AG
1043
1044 while (!rds_send_queue_rm(rs, conn, rm, rs->rs_bound_port,
1045 dport, &queued)) {
1046 rds_stats_inc(s_send_queue_full);
1047 /* XXX make sure this is reasonable */
1048 if (payload_len > rds_sk_sndbuf(rs)) {
1049 ret = -EMSGSIZE;
1050 goto out;
1051 }
1052 if (nonblock) {
1053 ret = -EAGAIN;
1054 goto out;
1055 }
1056
aa395145 1057 timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
5c115590
AG
1058 rds_send_queue_rm(rs, conn, rm,
1059 rs->rs_bound_port,
1060 dport,
1061 &queued),
1062 timeo);
1063 rdsdebug("sendmsg woke queued %d timeo %ld\n", queued, timeo);
1064 if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT)
1065 continue;
1066
1067 ret = timeo;
1068 if (ret == 0)
1069 ret = -ETIMEDOUT;
1070 goto out;
1071 }
1072
1073 /*
1074 * By now we've committed to the send. We reuse rds_send_worker()
1075 * to retry sends in the rds thread if the transport asks us to.
1076 */
1077 rds_stats_inc(s_send_queued);
1078
1079 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
a7d3a281 1080 rds_send_xmit(conn);
5c115590
AG
1081
1082 rds_message_put(rm);
1083 return payload_len;
1084
1085out:
1086 /* If the user included a RDMA_MAP cmsg, we allocated a MR on the fly.
1087 * If the sendmsg goes through, we keep the MR. If it fails with EAGAIN
1088 * or in any other way, we need to destroy the MR again */
1089 if (allocated_mr)
1090 rds_rdma_unuse(rs, rds_rdma_cookie_key(rm->m_rdma_cookie), 1);
1091
1092 if (rm)
1093 rds_message_put(rm);
1094 return ret;
1095}
1096
1097/*
1098 * Reply to a ping packet.
1099 */
1100int
1101rds_send_pong(struct rds_connection *conn, __be16 dport)
1102{
1103 struct rds_message *rm;
1104 unsigned long flags;
1105 int ret = 0;
1106
1107 rm = rds_message_alloc(0, GFP_ATOMIC);
8690bfa1 1108 if (!rm) {
5c115590
AG
1109 ret = -ENOMEM;
1110 goto out;
1111 }
1112
1113 rm->m_daddr = conn->c_faddr;
acfcd4d4 1114 rm->data.op_active = 1;
5c115590
AG
1115
1116 /* If the connection is down, trigger a connect. We may
1117 * have scheduled a delayed reconnect however - in this case
1118 * we should not interfere.
1119 */
f64f9e71
JP
1120 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1121 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
5c115590
AG
1122 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1123
1124 ret = rds_cong_wait(conn->c_fcong, dport, 1, NULL);
1125 if (ret)
1126 goto out;
1127
1128 spin_lock_irqsave(&conn->c_lock, flags);
1129 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
1130 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
1131 rds_message_addref(rm);
1132 rm->m_inc.i_conn = conn;
1133
1134 rds_message_populate_header(&rm->m_inc.i_hdr, 0, dport,
1135 conn->c_next_tx_seq);
1136 conn->c_next_tx_seq++;
1137 spin_unlock_irqrestore(&conn->c_lock, flags);
1138
1139 rds_stats_inc(s_send_queued);
1140 rds_stats_inc(s_send_pong);
1141
acfcd4d4
AG
1142 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
1143 rds_send_xmit(conn);
1144
5c115590
AG
1145 rds_message_put(rm);
1146 return 0;
1147
1148out:
1149 if (rm)
1150 rds_message_put(rm);
1151 return ret;
1152}