rds: Use RCU for the bind lookup searches
[deliverable/linux.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
ce47f52f
AG
356 * to make sure messages don't just sit on the send queue, if
357 * somebody hasn't already beat us into the loop.
fcc5450c
AG
358 *
359 * If the transport cannot continue (i.e ret != 0), then it must
360 * call us when more room is available, such as from the tx
361 * completion handler.
362 */
363 if (ret == 0) {
9e29db0e 364 smp_mb();
5c115590 365 if (!list_empty(&conn->c_send_queue)) {
049ee3f5 366 rds_stats_inc(s_send_lock_queue_raced);
9e29db0e
CM
367 if (gen == atomic_read(&conn->c_send_generation)) {
368 goto restart;
369 }
5c115590 370 }
5c115590
AG
371 }
372out:
373 return ret;
374}
375
376static void rds_send_sndbuf_remove(struct rds_sock *rs, struct rds_message *rm)
377{
378 u32 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
379
380 assert_spin_locked(&rs->rs_lock);
381
382 BUG_ON(rs->rs_snd_bytes < len);
383 rs->rs_snd_bytes -= len;
384
385 if (rs->rs_snd_bytes == 0)
386 rds_stats_inc(s_send_queue_empty);
387}
388
389static inline int rds_send_is_acked(struct rds_message *rm, u64 ack,
390 is_acked_func is_acked)
391{
392 if (is_acked)
393 return is_acked(rm, ack);
394 return be64_to_cpu(rm->m_inc.i_hdr.h_sequence) <= ack;
395}
396
397/*
398 * Returns true if there are no messages on the send and retransmit queues
399 * which have a sequence number greater than or equal to the given sequence
400 * number.
401 */
402int rds_send_acked_before(struct rds_connection *conn, u64 seq)
403{
404 struct rds_message *rm, *tmp;
405 int ret = 1;
406
407 spin_lock(&conn->c_lock);
408
409 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
410 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
411 ret = 0;
412 break;
413 }
414
415 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
416 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
417 ret = 0;
418 break;
419 }
420
421 spin_unlock(&conn->c_lock);
422
423 return ret;
424}
425
426/*
427 * This is pretty similar to what happens below in the ACK
428 * handling code - except that we call here as soon as we get
429 * the IB send completion on the RDMA op and the accompanying
430 * message.
431 */
432void rds_rdma_send_complete(struct rds_message *rm, int status)
433{
434 struct rds_sock *rs = NULL;
f8b3aaf2 435 struct rm_rdma_op *ro;
5c115590 436 struct rds_notifier *notifier;
9de0864c 437 unsigned long flags;
5c115590 438
9de0864c 439 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590 440
f8b3aaf2 441 ro = &rm->rdma;
f64f9e71 442 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) &&
f8b3aaf2
AG
443 ro->op_active && ro->op_notify && ro->op_notifier) {
444 notifier = ro->op_notifier;
5c115590
AG
445 rs = rm->m_rs;
446 sock_hold(rds_rs_to_sk(rs));
447
448 notifier->n_status = status;
449 spin_lock(&rs->rs_lock);
450 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
451 spin_unlock(&rs->rs_lock);
452
f8b3aaf2 453 ro->op_notifier = NULL;
5c115590
AG
454 }
455
9de0864c 456 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
5c115590
AG
457
458 if (rs) {
459 rds_wake_sk_sleep(rs);
460 sock_put(rds_rs_to_sk(rs));
461 }
462}
616b757a 463EXPORT_SYMBOL_GPL(rds_rdma_send_complete);
5c115590 464
15133f6e
AG
465/*
466 * Just like above, except looks at atomic op
467 */
468void rds_atomic_send_complete(struct rds_message *rm, int status)
469{
470 struct rds_sock *rs = NULL;
471 struct rm_atomic_op *ao;
472 struct rds_notifier *notifier;
cf4b7389 473 unsigned long flags;
15133f6e 474
cf4b7389 475 spin_lock_irqsave(&rm->m_rs_lock, flags);
15133f6e
AG
476
477 ao = &rm->atomic;
478 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags)
479 && ao->op_active && ao->op_notify && ao->op_notifier) {
480 notifier = ao->op_notifier;
481 rs = rm->m_rs;
482 sock_hold(rds_rs_to_sk(rs));
483
484 notifier->n_status = status;
485 spin_lock(&rs->rs_lock);
486 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
487 spin_unlock(&rs->rs_lock);
488
489 ao->op_notifier = NULL;
490 }
491
cf4b7389 492 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
15133f6e
AG
493
494 if (rs) {
495 rds_wake_sk_sleep(rs);
496 sock_put(rds_rs_to_sk(rs));
497 }
498}
499EXPORT_SYMBOL_GPL(rds_atomic_send_complete);
500
5c115590
AG
501/*
502 * This is the same as rds_rdma_send_complete except we
503 * don't do any locking - we have all the ingredients (message,
504 * socket, socket lock) and can just move the notifier.
505 */
506static inline void
940786eb 507__rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status)
5c115590 508{
f8b3aaf2 509 struct rm_rdma_op *ro;
940786eb 510 struct rm_atomic_op *ao;
5c115590 511
f8b3aaf2
AG
512 ro = &rm->rdma;
513 if (ro->op_active && ro->op_notify && ro->op_notifier) {
514 ro->op_notifier->n_status = status;
515 list_add_tail(&ro->op_notifier->n_list, &rs->rs_notify_queue);
516 ro->op_notifier = NULL;
5c115590
AG
517 }
518
940786eb
AG
519 ao = &rm->atomic;
520 if (ao->op_active && ao->op_notify && ao->op_notifier) {
521 ao->op_notifier->n_status = status;
522 list_add_tail(&ao->op_notifier->n_list, &rs->rs_notify_queue);
523 ao->op_notifier = NULL;
524 }
525
5c115590
AG
526 /* No need to wake the app - caller does this */
527}
528
529/*
530 * This is called from the IB send completion when we detect
531 * a RDMA operation that failed with remote access error.
532 * So speed is not an issue here.
533 */
534struct rds_message *rds_send_get_message(struct rds_connection *conn,
f8b3aaf2 535 struct rm_rdma_op *op)
5c115590
AG
536{
537 struct rds_message *rm, *tmp, *found = NULL;
538 unsigned long flags;
539
540 spin_lock_irqsave(&conn->c_lock, flags);
541
542 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
f8b3aaf2 543 if (&rm->rdma == op) {
5c115590
AG
544 atomic_inc(&rm->m_refcount);
545 found = rm;
546 goto out;
547 }
548 }
549
550 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
f8b3aaf2 551 if (&rm->rdma == op) {
5c115590
AG
552 atomic_inc(&rm->m_refcount);
553 found = rm;
554 break;
555 }
556 }
557
558out:
559 spin_unlock_irqrestore(&conn->c_lock, flags);
560
561 return found;
562}
616b757a 563EXPORT_SYMBOL_GPL(rds_send_get_message);
5c115590
AG
564
565/*
566 * This removes messages from the socket's list if they're on it. The list
567 * argument must be private to the caller, we must be able to modify it
568 * without locks. The messages must have a reference held for their
569 * position on the list. This function will drop that reference after
570 * removing the messages from the 'messages' list regardless of if it found
571 * the messages on the socket list or not.
572 */
573void rds_send_remove_from_sock(struct list_head *messages, int status)
574{
561c7df6 575 unsigned long flags;
5c115590
AG
576 struct rds_sock *rs = NULL;
577 struct rds_message *rm;
578
5c115590 579 while (!list_empty(messages)) {
561c7df6
AG
580 int was_on_sock = 0;
581
5c115590
AG
582 rm = list_entry(messages->next, struct rds_message,
583 m_conn_item);
584 list_del_init(&rm->m_conn_item);
585
586 /*
587 * If we see this flag cleared then we're *sure* that someone
588 * else beat us to removing it from the sock. If we race
589 * with their flag update we'll get the lock and then really
590 * see that the flag has been cleared.
591 *
592 * The message spinlock makes sure nobody clears rm->m_rs
593 * while we're messing with it. It does not prevent the
594 * message from being removed from the socket, though.
595 */
561c7df6 596 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590
AG
597 if (!test_bit(RDS_MSG_ON_SOCK, &rm->m_flags))
598 goto unlock_and_drop;
599
600 if (rs != rm->m_rs) {
601 if (rs) {
5c115590
AG
602 rds_wake_sk_sleep(rs);
603 sock_put(rds_rs_to_sk(rs));
604 }
605 rs = rm->m_rs;
5c115590
AG
606 sock_hold(rds_rs_to_sk(rs));
607 }
048c15e6 608 spin_lock(&rs->rs_lock);
5c115590
AG
609
610 if (test_and_clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) {
f8b3aaf2 611 struct rm_rdma_op *ro = &rm->rdma;
5c115590
AG
612 struct rds_notifier *notifier;
613
614 list_del_init(&rm->m_sock_item);
615 rds_send_sndbuf_remove(rs, rm);
616
f8b3aaf2
AG
617 if (ro->op_active && ro->op_notifier &&
618 (ro->op_notify || (ro->op_recverr && status))) {
619 notifier = ro->op_notifier;
5c115590
AG
620 list_add_tail(&notifier->n_list,
621 &rs->rs_notify_queue);
622 if (!notifier->n_status)
623 notifier->n_status = status;
f8b3aaf2 624 rm->rdma.op_notifier = NULL;
5c115590 625 }
561c7df6 626 was_on_sock = 1;
5c115590
AG
627 rm->m_rs = NULL;
628 }
048c15e6 629 spin_unlock(&rs->rs_lock);
5c115590
AG
630
631unlock_and_drop:
561c7df6 632 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
5c115590 633 rds_message_put(rm);
561c7df6
AG
634 if (was_on_sock)
635 rds_message_put(rm);
5c115590
AG
636 }
637
638 if (rs) {
5c115590
AG
639 rds_wake_sk_sleep(rs);
640 sock_put(rds_rs_to_sk(rs));
641 }
5c115590
AG
642}
643
644/*
645 * Transports call here when they've determined that the receiver queued
646 * messages up to, and including, the given sequence number. Messages are
647 * moved to the retrans queue when rds_send_xmit picks them off the send
648 * queue. This means that in the TCP case, the message may not have been
649 * assigned the m_ack_seq yet - but that's fine as long as tcp_is_acked
650 * checks the RDS_MSG_HAS_ACK_SEQ bit.
651 *
652 * XXX It's not clear to me how this is safely serialized with socket
653 * destruction. Maybe it should bail if it sees SOCK_DEAD.
654 */
655void rds_send_drop_acked(struct rds_connection *conn, u64 ack,
656 is_acked_func is_acked)
657{
658 struct rds_message *rm, *tmp;
659 unsigned long flags;
660 LIST_HEAD(list);
661
662 spin_lock_irqsave(&conn->c_lock, flags);
663
664 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
665 if (!rds_send_is_acked(rm, ack, is_acked))
666 break;
667
668 list_move(&rm->m_conn_item, &list);
669 clear_bit(RDS_MSG_ON_CONN, &rm->m_flags);
670 }
671
672 /* order flag updates with spin locks */
673 if (!list_empty(&list))
674 smp_mb__after_clear_bit();
675
676 spin_unlock_irqrestore(&conn->c_lock, flags);
677
678 /* now remove the messages from the sock list as needed */
679 rds_send_remove_from_sock(&list, RDS_RDMA_SUCCESS);
680}
616b757a 681EXPORT_SYMBOL_GPL(rds_send_drop_acked);
5c115590
AG
682
683void rds_send_drop_to(struct rds_sock *rs, struct sockaddr_in *dest)
684{
685 struct rds_message *rm, *tmp;
686 struct rds_connection *conn;
7c82eaf0 687 unsigned long flags;
5c115590 688 LIST_HEAD(list);
5c115590
AG
689
690 /* get all the messages we're dropping under the rs lock */
691 spin_lock_irqsave(&rs->rs_lock, flags);
692
693 list_for_each_entry_safe(rm, tmp, &rs->rs_send_queue, m_sock_item) {
694 if (dest && (dest->sin_addr.s_addr != rm->m_daddr ||
695 dest->sin_port != rm->m_inc.i_hdr.h_dport))
696 continue;
697
5c115590
AG
698 list_move(&rm->m_sock_item, &list);
699 rds_send_sndbuf_remove(rs, rm);
700 clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
5c115590
AG
701 }
702
703 /* order flag updates with the rs lock */
7c82eaf0 704 smp_mb__after_clear_bit();
5c115590
AG
705
706 spin_unlock_irqrestore(&rs->rs_lock, flags);
707
7c82eaf0
AG
708 if (list_empty(&list))
709 return;
5c115590 710
7c82eaf0 711 /* Remove the messages from the conn */
5c115590 712 list_for_each_entry(rm, &list, m_sock_item) {
7c82eaf0
AG
713
714 conn = rm->m_inc.i_conn;
5c115590 715
9de0864c 716 spin_lock_irqsave(&conn->c_lock, flags);
5c115590 717 /*
7c82eaf0
AG
718 * Maybe someone else beat us to removing rm from the conn.
719 * If we race with their flag update we'll get the lock and
720 * then really see that the flag has been cleared.
5c115590 721 */
7c82eaf0
AG
722 if (!test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) {
723 spin_unlock_irqrestore(&conn->c_lock, flags);
5c115590 724 continue;
5c115590 725 }
9de0864c
AG
726 list_del_init(&rm->m_conn_item);
727 spin_unlock_irqrestore(&conn->c_lock, flags);
5c115590 728
7c82eaf0
AG
729 /*
730 * Couldn't grab m_rs_lock in top loop (lock ordering),
731 * but we can now.
732 */
9de0864c 733 spin_lock_irqsave(&rm->m_rs_lock, flags);
5c115590 734
7c82eaf0 735 spin_lock(&rs->rs_lock);
940786eb 736 __rds_send_complete(rs, rm, RDS_RDMA_CANCELED);
7c82eaf0
AG
737 spin_unlock(&rs->rs_lock);
738
739 rm->m_rs = NULL;
9de0864c 740 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
7c82eaf0 741
7c82eaf0 742 rds_message_put(rm);
7c82eaf0 743 }
5c115590 744
7c82eaf0 745 rds_wake_sk_sleep(rs);
550a8002 746
5c115590
AG
747 while (!list_empty(&list)) {
748 rm = list_entry(list.next, struct rds_message, m_sock_item);
749 list_del_init(&rm->m_sock_item);
750
751 rds_message_wait(rm);
752 rds_message_put(rm);
753 }
754}
755
756/*
757 * we only want this to fire once so we use the callers 'queued'. It's
758 * possible that another thread can race with us and remove the
759 * message from the flow with RDS_CANCEL_SENT_TO.
760 */
761static int rds_send_queue_rm(struct rds_sock *rs, struct rds_connection *conn,
762 struct rds_message *rm, __be16 sport,
763 __be16 dport, int *queued)
764{
765 unsigned long flags;
766 u32 len;
767
768 if (*queued)
769 goto out;
770
771 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
772
773 /* this is the only place which holds both the socket's rs_lock
774 * and the connection's c_lock */
775 spin_lock_irqsave(&rs->rs_lock, flags);
776
777 /*
778 * If there is a little space in sndbuf, we don't queue anything,
779 * and userspace gets -EAGAIN. But poll() indicates there's send
780 * room. This can lead to bad behavior (spinning) if snd_bytes isn't
781 * freed up by incoming acks. So we check the *old* value of
782 * rs_snd_bytes here to allow the last msg to exceed the buffer,
783 * and poll() now knows no more data can be sent.
784 */
785 if (rs->rs_snd_bytes < rds_sk_sndbuf(rs)) {
786 rs->rs_snd_bytes += len;
787
788 /* let recv side know we are close to send space exhaustion.
789 * This is probably not the optimal way to do it, as this
790 * means we set the flag on *all* messages as soon as our
791 * throughput hits a certain threshold.
792 */
793 if (rs->rs_snd_bytes >= rds_sk_sndbuf(rs) / 2)
794 __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags);
795
796 list_add_tail(&rm->m_sock_item, &rs->rs_send_queue);
797 set_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
798 rds_message_addref(rm);
799 rm->m_rs = rs;
800
801 /* The code ordering is a little weird, but we're
802 trying to minimize the time we hold c_lock */
803 rds_message_populate_header(&rm->m_inc.i_hdr, sport, dport, 0);
804 rm->m_inc.i_conn = conn;
805 rds_message_addref(rm);
806
807 spin_lock(&conn->c_lock);
808 rm->m_inc.i_hdr.h_sequence = cpu_to_be64(conn->c_next_tx_seq++);
809 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
810 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
811 spin_unlock(&conn->c_lock);
812
813 rdsdebug("queued msg %p len %d, rs %p bytes %d seq %llu\n",
814 rm, len, rs, rs->rs_snd_bytes,
815 (unsigned long long)be64_to_cpu(rm->m_inc.i_hdr.h_sequence));
816
817 *queued = 1;
818 }
819
820 spin_unlock_irqrestore(&rs->rs_lock, flags);
821out:
822 return *queued;
823}
824
fc445084
AG
825/*
826 * rds_message is getting to be quite complicated, and we'd like to allocate
827 * it all in one go. This figures out how big it needs to be up front.
828 */
829static int rds_rm_size(struct msghdr *msg, int data_len)
830{
ff87e97a 831 struct cmsghdr *cmsg;
fc445084 832 int size = 0;
aa0a4ef4 833 int cmsg_groups = 0;
ff87e97a
AG
834 int retval;
835
836 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
837 if (!CMSG_OK(msg, cmsg))
838 return -EINVAL;
839
840 if (cmsg->cmsg_level != SOL_RDS)
841 continue;
842
843 switch (cmsg->cmsg_type) {
844 case RDS_CMSG_RDMA_ARGS:
aa0a4ef4 845 cmsg_groups |= 1;
ff87e97a
AG
846 retval = rds_rdma_extra_size(CMSG_DATA(cmsg));
847 if (retval < 0)
848 return retval;
849 size += retval;
aa0a4ef4 850
ff87e97a
AG
851 break;
852
853 case RDS_CMSG_RDMA_DEST:
854 case RDS_CMSG_RDMA_MAP:
aa0a4ef4 855 cmsg_groups |= 2;
ff87e97a
AG
856 /* these are valid but do no add any size */
857 break;
858
15133f6e
AG
859 case RDS_CMSG_ATOMIC_CSWP:
860 case RDS_CMSG_ATOMIC_FADD:
aa0a4ef4 861 cmsg_groups |= 1;
15133f6e
AG
862 size += sizeof(struct scatterlist);
863 break;
864
ff87e97a
AG
865 default:
866 return -EINVAL;
867 }
868
869 }
fc445084 870
ff87e97a 871 size += ceil(data_len, PAGE_SIZE) * sizeof(struct scatterlist);
fc445084 872
aa0a4ef4
AG
873 /* Ensure (DEST, MAP) are never used with (ARGS, ATOMIC) */
874 if (cmsg_groups == 3)
875 return -EINVAL;
876
fc445084
AG
877 return size;
878}
879
5c115590
AG
880static int rds_cmsg_send(struct rds_sock *rs, struct rds_message *rm,
881 struct msghdr *msg, int *allocated_mr)
882{
883 struct cmsghdr *cmsg;
884 int ret = 0;
885
886 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
887 if (!CMSG_OK(msg, cmsg))
888 return -EINVAL;
889
890 if (cmsg->cmsg_level != SOL_RDS)
891 continue;
892
893 /* As a side effect, RDMA_DEST and RDMA_MAP will set
15133f6e 894 * rm->rdma.m_rdma_cookie and rm->rdma.m_rdma_mr.
5c115590
AG
895 */
896 switch (cmsg->cmsg_type) {
897 case RDS_CMSG_RDMA_ARGS:
898 ret = rds_cmsg_rdma_args(rs, rm, cmsg);
899 break;
900
901 case RDS_CMSG_RDMA_DEST:
902 ret = rds_cmsg_rdma_dest(rs, rm, cmsg);
903 break;
904
905 case RDS_CMSG_RDMA_MAP:
906 ret = rds_cmsg_rdma_map(rs, rm, cmsg);
907 if (!ret)
908 *allocated_mr = 1;
909 break;
15133f6e
AG
910 case RDS_CMSG_ATOMIC_CSWP:
911 case RDS_CMSG_ATOMIC_FADD:
912 ret = rds_cmsg_atomic(rs, rm, cmsg);
913 break;
5c115590
AG
914
915 default:
916 return -EINVAL;
917 }
918
919 if (ret)
920 break;
921 }
922
923 return ret;
924}
925
926int rds_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
927 size_t payload_len)
928{
929 struct sock *sk = sock->sk;
930 struct rds_sock *rs = rds_sk_to_rs(sk);
931 struct sockaddr_in *usin = (struct sockaddr_in *)msg->msg_name;
932 __be32 daddr;
933 __be16 dport;
934 struct rds_message *rm = NULL;
935 struct rds_connection *conn;
936 int ret = 0;
937 int queued = 0, allocated_mr = 0;
938 int nonblock = msg->msg_flags & MSG_DONTWAIT;
1123fd73 939 long timeo = sock_sndtimeo(sk, nonblock);
5c115590
AG
940
941 /* Mirror Linux UDP mirror of BSD error message compatibility */
942 /* XXX: Perhaps MSG_MORE someday */
943 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) {
944 printk(KERN_INFO "msg_flags 0x%08X\n", msg->msg_flags);
945 ret = -EOPNOTSUPP;
946 goto out;
947 }
948
949 if (msg->msg_namelen) {
950 /* XXX fail non-unicast destination IPs? */
951 if (msg->msg_namelen < sizeof(*usin) || usin->sin_family != AF_INET) {
952 ret = -EINVAL;
953 goto out;
954 }
955 daddr = usin->sin_addr.s_addr;
956 dport = usin->sin_port;
957 } else {
958 /* We only care about consistency with ->connect() */
959 lock_sock(sk);
960 daddr = rs->rs_conn_addr;
961 dport = rs->rs_conn_port;
962 release_sock(sk);
963 }
964
965 /* racing with another thread binding seems ok here */
966 if (daddr == 0 || rs->rs_bound_addr == 0) {
967 ret = -ENOTCONN; /* XXX not a great errno */
968 goto out;
969 }
970
fc445084
AG
971 /* size of rm including all sgs */
972 ret = rds_rm_size(msg, payload_len);
973 if (ret < 0)
974 goto out;
975
976 rm = rds_message_alloc(ret, GFP_KERNEL);
977 if (!rm) {
978 ret = -ENOMEM;
5c115590
AG
979 goto out;
980 }
981
372cd7de
AG
982 /* Attach data to the rm */
983 if (payload_len) {
984 rm->data.op_sg = rds_message_alloc_sgs(rm, ceil(payload_len, PAGE_SIZE));
985 ret = rds_message_copy_from_user(rm, msg->msg_iov, payload_len);
986 if (ret)
987 goto out;
988 }
989 rm->data.op_active = 1;
fc445084 990
5c115590
AG
991 rm->m_daddr = daddr;
992
5c115590
AG
993 /* rds_conn_create has a spinlock that runs with IRQ off.
994 * Caching the conn in the socket helps a lot. */
995 if (rs->rs_conn && rs->rs_conn->c_faddr == daddr)
996 conn = rs->rs_conn;
997 else {
998 conn = rds_conn_create_outgoing(rs->rs_bound_addr, daddr,
999 rs->rs_transport,
1000 sock->sk->sk_allocation);
1001 if (IS_ERR(conn)) {
1002 ret = PTR_ERR(conn);
1003 goto out;
1004 }
1005 rs->rs_conn = conn;
1006 }
1007
49f69691
AG
1008 /* Parse any control messages the user may have included. */
1009 ret = rds_cmsg_send(rs, rm, msg, &allocated_mr);
1010 if (ret)
1011 goto out;
1012
2c3a5f9a 1013 if (rm->rdma.op_active && !conn->c_trans->xmit_rdma) {
5c115590
AG
1014 if (printk_ratelimit())
1015 printk(KERN_NOTICE "rdma_op %p conn xmit_rdma %p\n",
f8b3aaf2 1016 &rm->rdma, conn->c_trans->xmit_rdma);
15133f6e
AG
1017 ret = -EOPNOTSUPP;
1018 goto out;
1019 }
1020
1021 if (rm->atomic.op_active && !conn->c_trans->xmit_atomic) {
1022 if (printk_ratelimit())
1023 printk(KERN_NOTICE "atomic_op %p conn xmit_atomic %p\n",
1024 &rm->atomic, conn->c_trans->xmit_atomic);
5c115590
AG
1025 ret = -EOPNOTSUPP;
1026 goto out;
1027 }
1028
1029 /* If the connection is down, trigger a connect. We may
1030 * have scheduled a delayed reconnect however - in this case
1031 * we should not interfere.
1032 */
f64f9e71
JP
1033 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1034 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
5c115590
AG
1035 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1036
1037 ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs);
b98ba52f
AG
1038 if (ret) {
1039 rs->rs_seen_congestion = 1;
5c115590 1040 goto out;
b98ba52f 1041 }
5c115590
AG
1042
1043 while (!rds_send_queue_rm(rs, conn, rm, rs->rs_bound_port,
1044 dport, &queued)) {
1045 rds_stats_inc(s_send_queue_full);
1046 /* XXX make sure this is reasonable */
1047 if (payload_len > rds_sk_sndbuf(rs)) {
1048 ret = -EMSGSIZE;
1049 goto out;
1050 }
1051 if (nonblock) {
1052 ret = -EAGAIN;
1053 goto out;
1054 }
1055
aa395145 1056 timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
5c115590
AG
1057 rds_send_queue_rm(rs, conn, rm,
1058 rs->rs_bound_port,
1059 dport,
1060 &queued),
1061 timeo);
1062 rdsdebug("sendmsg woke queued %d timeo %ld\n", queued, timeo);
1063 if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT)
1064 continue;
1065
1066 ret = timeo;
1067 if (ret == 0)
1068 ret = -ETIMEDOUT;
1069 goto out;
1070 }
1071
1072 /*
1073 * By now we've committed to the send. We reuse rds_send_worker()
1074 * to retry sends in the rds thread if the transport asks us to.
1075 */
1076 rds_stats_inc(s_send_queued);
1077
1078 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
a7d3a281 1079 rds_send_xmit(conn);
5c115590
AG
1080
1081 rds_message_put(rm);
1082 return payload_len;
1083
1084out:
1085 /* If the user included a RDMA_MAP cmsg, we allocated a MR on the fly.
1086 * If the sendmsg goes through, we keep the MR. If it fails with EAGAIN
1087 * or in any other way, we need to destroy the MR again */
1088 if (allocated_mr)
1089 rds_rdma_unuse(rs, rds_rdma_cookie_key(rm->m_rdma_cookie), 1);
1090
1091 if (rm)
1092 rds_message_put(rm);
1093 return ret;
1094}
1095
1096/*
1097 * Reply to a ping packet.
1098 */
1099int
1100rds_send_pong(struct rds_connection *conn, __be16 dport)
1101{
1102 struct rds_message *rm;
1103 unsigned long flags;
1104 int ret = 0;
1105
1106 rm = rds_message_alloc(0, GFP_ATOMIC);
8690bfa1 1107 if (!rm) {
5c115590
AG
1108 ret = -ENOMEM;
1109 goto out;
1110 }
1111
1112 rm->m_daddr = conn->c_faddr;
acfcd4d4 1113 rm->data.op_active = 1;
5c115590
AG
1114
1115 /* If the connection is down, trigger a connect. We may
1116 * have scheduled a delayed reconnect however - in this case
1117 * we should not interfere.
1118 */
f64f9e71
JP
1119 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1120 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
5c115590
AG
1121 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1122
1123 ret = rds_cong_wait(conn->c_fcong, dport, 1, NULL);
1124 if (ret)
1125 goto out;
1126
1127 spin_lock_irqsave(&conn->c_lock, flags);
1128 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
1129 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
1130 rds_message_addref(rm);
1131 rm->m_inc.i_conn = conn;
1132
1133 rds_message_populate_header(&rm->m_inc.i_hdr, 0, dport,
1134 conn->c_next_tx_seq);
1135 conn->c_next_tx_seq++;
1136 spin_unlock_irqrestore(&conn->c_lock, flags);
1137
1138 rds_stats_inc(s_send_queued);
1139 rds_stats_inc(s_send_pong);
1140
acfcd4d4
AG
1141 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
1142 rds_send_xmit(conn);
1143
5c115590
AG
1144 rds_message_put(rm);
1145 return 0;
1146
1147out:
1148 if (rm)
1149 rds_message_put(rm);
1150 return ret;
1151}
This page took 0.223179 seconds and 5 git commands to generate.