blob: ecda3e6c432c3f7e083b55389dffdae49fc4bc87 [file] [log] [blame]
Andy Grover5c115592009-02-24 15:30:27 +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/gfp.h>
Andy Grover5c115592009-02-24 15:30:27 +000035#include <net/sock.h>
36#include <linux/in.h>
37#include <linux/list.h>
38
39#include "rds.h"
Andy Grover5c115592009-02-24 15:30:27 +000040
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;
Andy Grover15133f62010-01-12 14:33:38 -080075 conn->c_xmit_atomic_sent = 0;
Andy Grover5b2366b2010-02-03 19:36:44 -080076 conn->c_xmit_rdma_sent = 0;
77 conn->c_xmit_data_sent = 0;
Andy Grover5c115592009-02-24 15:30:27 +000078
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;
113 unsigned int send_quota = send_batch_count;
114 struct scatterlist *sg;
115 int ret = 0;
116 int was_empty = 0;
117 LIST_HEAD(to_be_dropped);
118
Andy Grover049ee3f2010-03-23 17:39:07 -0700119 if (!rds_conn_up(conn))
120 goto out;
121
Andy Grover5c115592009-02-24 15:30:27 +0000122 /*
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.
Andy Grover5c115592009-02-24 15:30:27 +0000128 */
Andy Grover049ee3f2010-03-23 17:39:07 -0700129 if (!spin_trylock_irqsave(&conn->c_send_lock, flags)) {
130 rds_stats_inc(s_send_lock_contention);
Andy Grover5c115592009-02-24 15:30:27 +0000131 ret = -ENOMEM;
132 goto out;
133 }
134
135 if (conn->c_trans->xmit_prepare)
136 conn->c_trans->xmit_prepare(conn);
137
138 /*
139 * spin trying to push headers and data down the connection until
Andy Grover5b2366b2010-02-03 19:36:44 -0800140 * the connection doesn't make forward progress.
Andy Grover5c115592009-02-24 15:30:27 +0000141 */
142 while (--send_quota) {
Andy Grover5c115592009-02-24 15:30:27 +0000143
Andy Grover5c115592009-02-24 15:30:27 +0000144 rm = conn->c_xmit_rm;
Andy Grover5c115592009-02-24 15:30:27 +0000145
Andy Grover5b2366b2010-02-03 19:36:44 -0800146 /*
147 * If between sending messages, we can send a pending congestion
148 * map update.
Andy Grover5c115592009-02-24 15:30:27 +0000149 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800150 if (!rm && test_and_clear_bit(0, &conn->c_map_queued)) {
Andy Grover77dd5502010-03-22 15:22:04 -0700151 rm = rds_cong_update_alloc(conn);
152 if (IS_ERR(rm)) {
153 ret = PTR_ERR(rm);
154 break;
Andy Grover5b2366b2010-02-03 19:36:44 -0800155 }
Andy Grover77dd5502010-03-22 15:22:04 -0700156 rm->data.op_active = 1;
157
158 conn->c_xmit_rm = rm;
Andy Grover5c115592009-02-24 15:30:27 +0000159 }
160
161 /*
Andy Grover5b2366b2010-02-03 19:36:44 -0800162 * If not already working on one, grab the next message.
Andy Grover5c115592009-02-24 15:30:27 +0000163 *
164 * c_xmit_rm holds a ref while we're sending this message down
165 * the connction. We can use this ref while holding the
166 * send_sem.. rds_send_reset() is serialized with it.
167 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800168 if (!rm) {
Andy Grover5c115592009-02-24 15:30:27 +0000169 unsigned int len;
170
Andy Grover2ad80992010-03-23 17:48:04 -0700171 spin_lock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000172
173 if (!list_empty(&conn->c_send_queue)) {
174 rm = list_entry(conn->c_send_queue.next,
175 struct rds_message,
176 m_conn_item);
177 rds_message_addref(rm);
178
179 /*
180 * Move the message from the send queue to the retransmit
181 * list right away.
182 */
183 list_move_tail(&rm->m_conn_item, &conn->c_retrans);
184 }
185
Andy Grover2ad80992010-03-23 17:48:04 -0700186 spin_unlock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000187
Andy Grover8690bfa2010-01-12 11:56:44 -0800188 if (!rm) {
Andy Grover5c115592009-02-24 15:30:27 +0000189 was_empty = 1;
190 break;
191 }
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 */
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800200 if (rm->rdma.op_active &&
Joe Perchesf64f9e72009-11-29 16:55:45 -0800201 test_bit(RDS_MSG_RETRANSMITTED, &rm->m_flags)) {
Andy Grover2ad80992010-03-23 17:48:04 -0700202 spin_lock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000203 if (test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags))
204 list_move(&rm->m_conn_item, &to_be_dropped);
Andy Grover2ad80992010-03-23 17:48:04 -0700205 spin_unlock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000206 continue;
207 }
208
209 /* Require an ACK every once in a while */
210 len = ntohl(rm->m_inc.i_hdr.h_len);
Joe Perchesf64f9e72009-11-29 16:55:45 -0800211 if (conn->c_unacked_packets == 0 ||
212 conn->c_unacked_bytes < len) {
Andy Grover5c115592009-02-24 15:30:27 +0000213 __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
Andy Grover2c3a5f92010-03-01 16:10:40 -0800226 /* The transport either sends the whole rdma or none of it */
227 if (rm->rdma.op_active && !conn->c_xmit_rdma_sent) {
Andy Groverff3d7d32010-03-01 14:03:09 -0800228 rm->m_final_op = &rm->rdma;
Andy Grover2c3a5f92010-03-01 16:10:40 -0800229 ret = conn->c_trans->xmit_rdma(conn, &rm->rdma);
230 if (ret)
231 break;
232 conn->c_xmit_rdma_sent = 1;
233
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
Andy Grover15133f62010-01-12 14:33:38 -0800239 if (rm->atomic.op_active && !conn->c_xmit_atomic_sent) {
Andy Groverff3d7d32010-03-01 14:03:09 -0800240 rm->m_final_op = &rm->atomic;
241 ret = conn->c_trans->xmit_atomic(conn, &rm->atomic);
Andy Grover15133f62010-01-12 14:33:38 -0800242 if (ret)
243 break;
244 conn->c_xmit_atomic_sent = 1;
Andy Groverff3d7d32010-03-01 14:03:09 -0800245
Andy Grover15133f62010-01-12 14:33:38 -0800246 /* 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
Andy Grover2c3a5f92010-03-01 16:10:40 -0800251 /*
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;
Andy Grover241eef32010-01-19 21:25:26 -0800261
Andy Grover2c3a5f92010-03-01 16:10:40 -0800262 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;
Andy Grover241eef32010-01-19 21:25:26 -0800267
Andy Grover2c3a5f92010-03-01 16:10:40 -0800268 if (ops_present && all_ops_are_silent
269 && !rm->m_rdma_cookie)
270 rm->data.op_active = 0;
Andy Grover5c115592009-02-24 15:30:27 +0000271 }
272
Andy Grover5b2366b2010-02-03 19:36:44 -0800273 if (rm->data.op_active && !conn->c_xmit_data_sent) {
Andy Groverff3d7d32010-03-01 14:03:09 -0800274 rm->m_final_op = &rm->data;
Andy Grover5c115592009-02-24 15:30:27 +0000275 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
Andy Grover6c7cc6e2010-01-27 18:04:18 -0800290 sg = &rm->data.op_sg[conn->c_xmit_sg];
Andy Grover5c115592009-02-24 15:30:27 +0000291 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 &&
Andy Grover6c7cc6e2010-01-27 18:04:18 -0800301 conn->c_xmit_sg == rm->data.op_nents);
Andy Grover5c115592009-02-24 15:30:27 +0000302 }
303 }
Andy Grover5b2366b2010-02-03 19:36:44 -0800304
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);
Andy Grover5c115592009-02-24 15:30:27 +0000325 }
326 }
327
Andy Grover5c115592009-02-24 15:30:27 +0000328 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 */
Andy Grover049ee3f2010-03-23 17:39:07 -0700343 spin_unlock_irqrestore(&conn->c_send_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000344
Andy Grover2ad80992010-03-23 17:48:04 -0700345 /* 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
Andy Grover5b2366b2010-02-03 19:36:44 -0800353 if (send_quota == 0 && !was_empty) {
Andy Grover5c115592009-02-24 15:30:27 +0000354 /* We exhausted the send quota, but there's work left to
355 * do. Return and (re-)schedule the send worker.
356 */
357 ret = -EAGAIN;
358 }
359
360 if (ret == 0 && was_empty) {
361 /* A simple bit test would be way faster than taking the
362 * spin lock */
363 spin_lock_irqsave(&conn->c_lock, flags);
364 if (!list_empty(&conn->c_send_queue)) {
Andy Grover049ee3f2010-03-23 17:39:07 -0700365 rds_stats_inc(s_send_lock_queue_raced);
Andy Grover5c115592009-02-24 15:30:27 +0000366 ret = -EAGAIN;
367 }
368 spin_unlock_irqrestore(&conn->c_lock, flags);
369 }
370out:
371 return ret;
372}
373
374static void rds_send_sndbuf_remove(struct rds_sock *rs, struct rds_message *rm)
375{
376 u32 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
377
378 assert_spin_locked(&rs->rs_lock);
379
380 BUG_ON(rs->rs_snd_bytes < len);
381 rs->rs_snd_bytes -= len;
382
383 if (rs->rs_snd_bytes == 0)
384 rds_stats_inc(s_send_queue_empty);
385}
386
387static inline int rds_send_is_acked(struct rds_message *rm, u64 ack,
388 is_acked_func is_acked)
389{
390 if (is_acked)
391 return is_acked(rm, ack);
392 return be64_to_cpu(rm->m_inc.i_hdr.h_sequence) <= ack;
393}
394
395/*
396 * Returns true if there are no messages on the send and retransmit queues
397 * which have a sequence number greater than or equal to the given sequence
398 * number.
399 */
400int rds_send_acked_before(struct rds_connection *conn, u64 seq)
401{
402 struct rds_message *rm, *tmp;
403 int ret = 1;
404
405 spin_lock(&conn->c_lock);
406
407 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
408 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
409 ret = 0;
410 break;
411 }
412
413 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
414 if (be64_to_cpu(rm->m_inc.i_hdr.h_sequence) < seq)
415 ret = 0;
416 break;
417 }
418
419 spin_unlock(&conn->c_lock);
420
421 return ret;
422}
423
424/*
425 * This is pretty similar to what happens below in the ACK
426 * handling code - except that we call here as soon as we get
427 * the IB send completion on the RDMA op and the accompanying
428 * message.
429 */
430void rds_rdma_send_complete(struct rds_message *rm, int status)
431{
432 struct rds_sock *rs = NULL;
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800433 struct rm_rdma_op *ro;
Andy Grover5c115592009-02-24 15:30:27 +0000434 struct rds_notifier *notifier;
Andy Grover9de08642010-03-29 16:50:54 -0700435 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000436
Andy Grover9de08642010-03-29 16:50:54 -0700437 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000438
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800439 ro = &rm->rdma;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800440 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) &&
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800441 ro->op_active && ro->op_notify && ro->op_notifier) {
442 notifier = ro->op_notifier;
Andy Grover5c115592009-02-24 15:30:27 +0000443 rs = rm->m_rs;
444 sock_hold(rds_rs_to_sk(rs));
445
446 notifier->n_status = status;
447 spin_lock(&rs->rs_lock);
448 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
449 spin_unlock(&rs->rs_lock);
450
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800451 ro->op_notifier = NULL;
Andy Grover5c115592009-02-24 15:30:27 +0000452 }
453
Andy Grover9de08642010-03-29 16:50:54 -0700454 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000455
456 if (rs) {
457 rds_wake_sk_sleep(rs);
458 sock_put(rds_rs_to_sk(rs));
459 }
460}
Andy Grover616b7572009-08-21 12:28:32 +0000461EXPORT_SYMBOL_GPL(rds_rdma_send_complete);
Andy Grover5c115592009-02-24 15:30:27 +0000462
463/*
Andy Grover15133f62010-01-12 14:33:38 -0800464 * Just like above, except looks at atomic op
465 */
466void rds_atomic_send_complete(struct rds_message *rm, int status)
467{
468 struct rds_sock *rs = NULL;
469 struct rm_atomic_op *ao;
470 struct rds_notifier *notifier;
Andy Grovercf4b7382010-03-29 16:50:54 -0700471 unsigned long flags;
Andy Grover15133f62010-01-12 14:33:38 -0800472
Andy Grovercf4b7382010-03-29 16:50:54 -0700473 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover15133f62010-01-12 14:33:38 -0800474
475 ao = &rm->atomic;
476 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags)
477 && ao->op_active && ao->op_notify && ao->op_notifier) {
478 notifier = ao->op_notifier;
479 rs = rm->m_rs;
480 sock_hold(rds_rs_to_sk(rs));
481
482 notifier->n_status = status;
483 spin_lock(&rs->rs_lock);
484 list_add_tail(&notifier->n_list, &rs->rs_notify_queue);
485 spin_unlock(&rs->rs_lock);
486
487 ao->op_notifier = NULL;
488 }
489
Andy Grovercf4b7382010-03-29 16:50:54 -0700490 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover15133f62010-01-12 14:33:38 -0800491
492 if (rs) {
493 rds_wake_sk_sleep(rs);
494 sock_put(rds_rs_to_sk(rs));
495 }
496}
497EXPORT_SYMBOL_GPL(rds_atomic_send_complete);
498
499/*
Andy Grover5c115592009-02-24 15:30:27 +0000500 * This is the same as rds_rdma_send_complete except we
501 * don't do any locking - we have all the ingredients (message,
502 * socket, socket lock) and can just move the notifier.
503 */
504static inline void
Andy Grover940786e2010-02-19 18:04:58 -0800505__rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status)
Andy Grover5c115592009-02-24 15:30:27 +0000506{
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800507 struct rm_rdma_op *ro;
Andy Grover940786e2010-02-19 18:04:58 -0800508 struct rm_atomic_op *ao;
Andy Grover5c115592009-02-24 15:30:27 +0000509
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800510 ro = &rm->rdma;
511 if (ro->op_active && ro->op_notify && ro->op_notifier) {
512 ro->op_notifier->n_status = status;
513 list_add_tail(&ro->op_notifier->n_list, &rs->rs_notify_queue);
514 ro->op_notifier = NULL;
Andy Grover5c115592009-02-24 15:30:27 +0000515 }
516
Andy Grover940786e2010-02-19 18:04:58 -0800517 ao = &rm->atomic;
518 if (ao->op_active && ao->op_notify && ao->op_notifier) {
519 ao->op_notifier->n_status = status;
520 list_add_tail(&ao->op_notifier->n_list, &rs->rs_notify_queue);
521 ao->op_notifier = NULL;
522 }
523
Andy Grover5c115592009-02-24 15:30:27 +0000524 /* No need to wake the app - caller does this */
525}
526
527/*
528 * This is called from the IB send completion when we detect
529 * a RDMA operation that failed with remote access error.
530 * So speed is not an issue here.
531 */
532struct rds_message *rds_send_get_message(struct rds_connection *conn,
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800533 struct rm_rdma_op *op)
Andy Grover5c115592009-02-24 15:30:27 +0000534{
535 struct rds_message *rm, *tmp, *found = NULL;
536 unsigned long flags;
537
538 spin_lock_irqsave(&conn->c_lock, flags);
539
540 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800541 if (&rm->rdma == op) {
Andy Grover5c115592009-02-24 15:30:27 +0000542 atomic_inc(&rm->m_refcount);
543 found = rm;
544 goto out;
545 }
546 }
547
548 list_for_each_entry_safe(rm, tmp, &conn->c_send_queue, m_conn_item) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800549 if (&rm->rdma == op) {
Andy Grover5c115592009-02-24 15:30:27 +0000550 atomic_inc(&rm->m_refcount);
551 found = rm;
552 break;
553 }
554 }
555
556out:
557 spin_unlock_irqrestore(&conn->c_lock, flags);
558
559 return found;
560}
Andy Grover616b7572009-08-21 12:28:32 +0000561EXPORT_SYMBOL_GPL(rds_send_get_message);
Andy Grover5c115592009-02-24 15:30:27 +0000562
563/*
564 * This removes messages from the socket's list if they're on it. The list
565 * argument must be private to the caller, we must be able to modify it
566 * without locks. The messages must have a reference held for their
567 * position on the list. This function will drop that reference after
568 * removing the messages from the 'messages' list regardless of if it found
569 * the messages on the socket list or not.
570 */
571void rds_send_remove_from_sock(struct list_head *messages, int status)
572{
Andy Grover561c7df2010-03-11 13:50:06 +0000573 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000574 struct rds_sock *rs = NULL;
575 struct rds_message *rm;
576
Andy Grover5c115592009-02-24 15:30:27 +0000577 while (!list_empty(messages)) {
Andy Grover561c7df2010-03-11 13:50:06 +0000578 int was_on_sock = 0;
579
Andy Grover5c115592009-02-24 15:30:27 +0000580 rm = list_entry(messages->next, struct rds_message,
581 m_conn_item);
582 list_del_init(&rm->m_conn_item);
583
584 /*
585 * If we see this flag cleared then we're *sure* that someone
586 * else beat us to removing it from the sock. If we race
587 * with their flag update we'll get the lock and then really
588 * see that the flag has been cleared.
589 *
590 * The message spinlock makes sure nobody clears rm->m_rs
591 * while we're messing with it. It does not prevent the
592 * message from being removed from the socket, though.
593 */
Andy Grover561c7df2010-03-11 13:50:06 +0000594 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000595 if (!test_bit(RDS_MSG_ON_SOCK, &rm->m_flags))
596 goto unlock_and_drop;
597
598 if (rs != rm->m_rs) {
599 if (rs) {
Andy Grover5c115592009-02-24 15:30:27 +0000600 rds_wake_sk_sleep(rs);
601 sock_put(rds_rs_to_sk(rs));
602 }
603 rs = rm->m_rs;
Andy Grover5c115592009-02-24 15:30:27 +0000604 sock_hold(rds_rs_to_sk(rs));
605 }
Tina Yang048c15e2010-03-11 13:50:00 +0000606 spin_lock(&rs->rs_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000607
608 if (test_and_clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800609 struct rm_rdma_op *ro = &rm->rdma;
Andy Grover5c115592009-02-24 15:30:27 +0000610 struct rds_notifier *notifier;
611
612 list_del_init(&rm->m_sock_item);
613 rds_send_sndbuf_remove(rs, rm);
614
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800615 if (ro->op_active && ro->op_notifier &&
616 (ro->op_notify || (ro->op_recverr && status))) {
617 notifier = ro->op_notifier;
Andy Grover5c115592009-02-24 15:30:27 +0000618 list_add_tail(&notifier->n_list,
619 &rs->rs_notify_queue);
620 if (!notifier->n_status)
621 notifier->n_status = status;
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800622 rm->rdma.op_notifier = NULL;
Andy Grover5c115592009-02-24 15:30:27 +0000623 }
Andy Grover561c7df2010-03-11 13:50:06 +0000624 was_on_sock = 1;
Andy Grover5c115592009-02-24 15:30:27 +0000625 rm->m_rs = NULL;
626 }
Tina Yang048c15e2010-03-11 13:50:00 +0000627 spin_unlock(&rs->rs_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000628
629unlock_and_drop:
Andy Grover561c7df2010-03-11 13:50:06 +0000630 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000631 rds_message_put(rm);
Andy Grover561c7df2010-03-11 13:50:06 +0000632 if (was_on_sock)
633 rds_message_put(rm);
Andy Grover5c115592009-02-24 15:30:27 +0000634 }
635
636 if (rs) {
Andy Grover5c115592009-02-24 15:30:27 +0000637 rds_wake_sk_sleep(rs);
638 sock_put(rds_rs_to_sk(rs));
639 }
Andy Grover5c115592009-02-24 15:30:27 +0000640}
641
642/*
643 * Transports call here when they've determined that the receiver queued
644 * messages up to, and including, the given sequence number. Messages are
645 * moved to the retrans queue when rds_send_xmit picks them off the send
646 * queue. This means that in the TCP case, the message may not have been
647 * assigned the m_ack_seq yet - but that's fine as long as tcp_is_acked
648 * checks the RDS_MSG_HAS_ACK_SEQ bit.
649 *
650 * XXX It's not clear to me how this is safely serialized with socket
651 * destruction. Maybe it should bail if it sees SOCK_DEAD.
652 */
653void rds_send_drop_acked(struct rds_connection *conn, u64 ack,
654 is_acked_func is_acked)
655{
656 struct rds_message *rm, *tmp;
657 unsigned long flags;
658 LIST_HEAD(list);
659
660 spin_lock_irqsave(&conn->c_lock, flags);
661
662 list_for_each_entry_safe(rm, tmp, &conn->c_retrans, m_conn_item) {
663 if (!rds_send_is_acked(rm, ack, is_acked))
664 break;
665
666 list_move(&rm->m_conn_item, &list);
667 clear_bit(RDS_MSG_ON_CONN, &rm->m_flags);
668 }
669
670 /* order flag updates with spin locks */
671 if (!list_empty(&list))
672 smp_mb__after_clear_bit();
673
674 spin_unlock_irqrestore(&conn->c_lock, flags);
675
676 /* now remove the messages from the sock list as needed */
677 rds_send_remove_from_sock(&list, RDS_RDMA_SUCCESS);
678}
Andy Grover616b7572009-08-21 12:28:32 +0000679EXPORT_SYMBOL_GPL(rds_send_drop_acked);
Andy Grover5c115592009-02-24 15:30:27 +0000680
681void rds_send_drop_to(struct rds_sock *rs, struct sockaddr_in *dest)
682{
683 struct rds_message *rm, *tmp;
684 struct rds_connection *conn;
Andy Grover7c82eaf2010-02-19 18:01:41 -0800685 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000686 LIST_HEAD(list);
Andy Grover5c115592009-02-24 15:30:27 +0000687
688 /* get all the messages we're dropping under the rs lock */
689 spin_lock_irqsave(&rs->rs_lock, flags);
690
691 list_for_each_entry_safe(rm, tmp, &rs->rs_send_queue, m_sock_item) {
692 if (dest && (dest->sin_addr.s_addr != rm->m_daddr ||
693 dest->sin_port != rm->m_inc.i_hdr.h_dport))
694 continue;
695
Andy Grover5c115592009-02-24 15:30:27 +0000696 list_move(&rm->m_sock_item, &list);
697 rds_send_sndbuf_remove(rs, rm);
698 clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
Andy Grover5c115592009-02-24 15:30:27 +0000699 }
700
701 /* order flag updates with the rs lock */
Andy Grover7c82eaf2010-02-19 18:01:41 -0800702 smp_mb__after_clear_bit();
Andy Grover5c115592009-02-24 15:30:27 +0000703
704 spin_unlock_irqrestore(&rs->rs_lock, flags);
705
Andy Grover7c82eaf2010-02-19 18:01:41 -0800706 if (list_empty(&list))
707 return;
Andy Grover5c115592009-02-24 15:30:27 +0000708
Andy Grover7c82eaf2010-02-19 18:01:41 -0800709 /* Remove the messages from the conn */
Andy Grover5c115592009-02-24 15:30:27 +0000710 list_for_each_entry(rm, &list, m_sock_item) {
Andy Grover7c82eaf2010-02-19 18:01:41 -0800711
712 conn = rm->m_inc.i_conn;
Andy Grover7c82eaf2010-02-19 18:01:41 -0800713
Andy Grover9de08642010-03-29 16:50:54 -0700714 spin_lock_irqsave(&conn->c_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800715 /*
716 * Maybe someone else beat us to removing rm from the conn.
717 * If we race with their flag update we'll get the lock and
718 * then really see that the flag has been cleared.
719 */
720 if (!test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) {
721 spin_unlock_irqrestore(&conn->c_lock, flags);
722 continue;
723 }
Andy Grover9de08642010-03-29 16:50:54 -0700724 list_del_init(&rm->m_conn_item);
725 spin_unlock_irqrestore(&conn->c_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800726
727 /*
728 * Couldn't grab m_rs_lock in top loop (lock ordering),
729 * but we can now.
730 */
Andy Grover9de08642010-03-29 16:50:54 -0700731 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800732
Tina Yang550a8002010-03-11 13:50:03 +0000733 spin_lock(&rs->rs_lock);
Andy Grover940786e2010-02-19 18:04:58 -0800734 __rds_send_complete(rs, rm, RDS_RDMA_CANCELED);
Tina Yang550a8002010-03-11 13:50:03 +0000735 spin_unlock(&rs->rs_lock);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800736
Andy Grover5c115592009-02-24 15:30:27 +0000737 rm->m_rs = NULL;
Andy Grover9de08642010-03-29 16:50:54 -0700738 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000739
Andy Grover7c82eaf2010-02-19 18:01:41 -0800740 rds_message_put(rm);
Andy Grover5c115592009-02-24 15:30:27 +0000741 }
742
Andy Grover7c82eaf2010-02-19 18:01:41 -0800743 rds_wake_sk_sleep(rs);
Tina Yang550a8002010-03-11 13:50:03 +0000744
Andy Grover5c115592009-02-24 15:30:27 +0000745 while (!list_empty(&list)) {
746 rm = list_entry(list.next, struct rds_message, m_sock_item);
747 list_del_init(&rm->m_sock_item);
748
749 rds_message_wait(rm);
750 rds_message_put(rm);
751 }
752}
753
754/*
755 * we only want this to fire once so we use the callers 'queued'. It's
756 * possible that another thread can race with us and remove the
757 * message from the flow with RDS_CANCEL_SENT_TO.
758 */
759static int rds_send_queue_rm(struct rds_sock *rs, struct rds_connection *conn,
760 struct rds_message *rm, __be16 sport,
761 __be16 dport, int *queued)
762{
763 unsigned long flags;
764 u32 len;
765
766 if (*queued)
767 goto out;
768
769 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
770
771 /* this is the only place which holds both the socket's rs_lock
772 * and the connection's c_lock */
773 spin_lock_irqsave(&rs->rs_lock, flags);
774
775 /*
776 * If there is a little space in sndbuf, we don't queue anything,
777 * and userspace gets -EAGAIN. But poll() indicates there's send
778 * room. This can lead to bad behavior (spinning) if snd_bytes isn't
779 * freed up by incoming acks. So we check the *old* value of
780 * rs_snd_bytes here to allow the last msg to exceed the buffer,
781 * and poll() now knows no more data can be sent.
782 */
783 if (rs->rs_snd_bytes < rds_sk_sndbuf(rs)) {
784 rs->rs_snd_bytes += len;
785
786 /* let recv side know we are close to send space exhaustion.
787 * This is probably not the optimal way to do it, as this
788 * means we set the flag on *all* messages as soon as our
789 * throughput hits a certain threshold.
790 */
791 if (rs->rs_snd_bytes >= rds_sk_sndbuf(rs) / 2)
792 __set_bit(RDS_MSG_ACK_REQUIRED, &rm->m_flags);
793
794 list_add_tail(&rm->m_sock_item, &rs->rs_send_queue);
795 set_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
796 rds_message_addref(rm);
797 rm->m_rs = rs;
798
799 /* The code ordering is a little weird, but we're
800 trying to minimize the time we hold c_lock */
801 rds_message_populate_header(&rm->m_inc.i_hdr, sport, dport, 0);
802 rm->m_inc.i_conn = conn;
803 rds_message_addref(rm);
804
805 spin_lock(&conn->c_lock);
806 rm->m_inc.i_hdr.h_sequence = cpu_to_be64(conn->c_next_tx_seq++);
807 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
808 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
809 spin_unlock(&conn->c_lock);
810
811 rdsdebug("queued msg %p len %d, rs %p bytes %d seq %llu\n",
812 rm, len, rs, rs->rs_snd_bytes,
813 (unsigned long long)be64_to_cpu(rm->m_inc.i_hdr.h_sequence));
814
815 *queued = 1;
816 }
817
818 spin_unlock_irqrestore(&rs->rs_lock, flags);
819out:
820 return *queued;
821}
822
Andy Groverfc445082010-01-12 12:56:06 -0800823/*
824 * rds_message is getting to be quite complicated, and we'd like to allocate
825 * it all in one go. This figures out how big it needs to be up front.
826 */
827static int rds_rm_size(struct msghdr *msg, int data_len)
828{
Andy Groverff87e972010-01-12 14:13:15 -0800829 struct cmsghdr *cmsg;
Andy Groverfc445082010-01-12 12:56:06 -0800830 int size = 0;
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700831 int cmsg_groups = 0;
Andy Groverff87e972010-01-12 14:13:15 -0800832 int retval;
Andy Groverfc445082010-01-12 12:56:06 -0800833
Andy Groverff87e972010-01-12 14:13:15 -0800834 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
835 if (!CMSG_OK(msg, cmsg))
836 return -EINVAL;
837
838 if (cmsg->cmsg_level != SOL_RDS)
839 continue;
840
841 switch (cmsg->cmsg_type) {
842 case RDS_CMSG_RDMA_ARGS:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700843 cmsg_groups |= 1;
Andy Groverff87e972010-01-12 14:13:15 -0800844 retval = rds_rdma_extra_size(CMSG_DATA(cmsg));
845 if (retval < 0)
846 return retval;
847 size += retval;
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700848
Andy Groverff87e972010-01-12 14:13:15 -0800849 break;
850
851 case RDS_CMSG_RDMA_DEST:
852 case RDS_CMSG_RDMA_MAP:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700853 cmsg_groups |= 2;
Andy Groverff87e972010-01-12 14:13:15 -0800854 /* these are valid but do no add any size */
855 break;
856
Andy Grover15133f62010-01-12 14:33:38 -0800857 case RDS_CMSG_ATOMIC_CSWP:
858 case RDS_CMSG_ATOMIC_FADD:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700859 cmsg_groups |= 1;
Andy Grover15133f62010-01-12 14:33:38 -0800860 size += sizeof(struct scatterlist);
861 break;
862
Andy Groverff87e972010-01-12 14:13:15 -0800863 default:
864 return -EINVAL;
865 }
866
867 }
868
869 size += ceil(data_len, PAGE_SIZE) * sizeof(struct scatterlist);
Andy Groverfc445082010-01-12 12:56:06 -0800870
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700871 /* Ensure (DEST, MAP) are never used with (ARGS, ATOMIC) */
872 if (cmsg_groups == 3)
873 return -EINVAL;
874
Andy Groverfc445082010-01-12 12:56:06 -0800875 return size;
876}
877
Andy Grover5c115592009-02-24 15:30:27 +0000878static int rds_cmsg_send(struct rds_sock *rs, struct rds_message *rm,
879 struct msghdr *msg, int *allocated_mr)
880{
881 struct cmsghdr *cmsg;
882 int ret = 0;
883
884 for (cmsg = CMSG_FIRSTHDR(msg); cmsg; cmsg = CMSG_NXTHDR(msg, cmsg)) {
885 if (!CMSG_OK(msg, cmsg))
886 return -EINVAL;
887
888 if (cmsg->cmsg_level != SOL_RDS)
889 continue;
890
891 /* As a side effect, RDMA_DEST and RDMA_MAP will set
Andy Grover15133f62010-01-12 14:33:38 -0800892 * rm->rdma.m_rdma_cookie and rm->rdma.m_rdma_mr.
Andy Grover5c115592009-02-24 15:30:27 +0000893 */
894 switch (cmsg->cmsg_type) {
895 case RDS_CMSG_RDMA_ARGS:
896 ret = rds_cmsg_rdma_args(rs, rm, cmsg);
897 break;
898
899 case RDS_CMSG_RDMA_DEST:
900 ret = rds_cmsg_rdma_dest(rs, rm, cmsg);
901 break;
902
903 case RDS_CMSG_RDMA_MAP:
904 ret = rds_cmsg_rdma_map(rs, rm, cmsg);
905 if (!ret)
906 *allocated_mr = 1;
907 break;
Andy Grover15133f62010-01-12 14:33:38 -0800908 case RDS_CMSG_ATOMIC_CSWP:
909 case RDS_CMSG_ATOMIC_FADD:
910 ret = rds_cmsg_atomic(rs, rm, cmsg);
911 break;
Andy Grover5c115592009-02-24 15:30:27 +0000912
913 default:
914 return -EINVAL;
915 }
916
917 if (ret)
918 break;
919 }
920
921 return ret;
922}
923
924int rds_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg,
925 size_t payload_len)
926{
927 struct sock *sk = sock->sk;
928 struct rds_sock *rs = rds_sk_to_rs(sk);
929 struct sockaddr_in *usin = (struct sockaddr_in *)msg->msg_name;
930 __be32 daddr;
931 __be16 dport;
932 struct rds_message *rm = NULL;
933 struct rds_connection *conn;
934 int ret = 0;
935 int queued = 0, allocated_mr = 0;
936 int nonblock = msg->msg_flags & MSG_DONTWAIT;
Andy Grover1123fd72010-03-11 13:49:56 +0000937 long timeo = sock_sndtimeo(sk, nonblock);
Andy Grover5c115592009-02-24 15:30:27 +0000938
939 /* Mirror Linux UDP mirror of BSD error message compatibility */
940 /* XXX: Perhaps MSG_MORE someday */
941 if (msg->msg_flags & ~(MSG_DONTWAIT | MSG_CMSG_COMPAT)) {
942 printk(KERN_INFO "msg_flags 0x%08X\n", msg->msg_flags);
943 ret = -EOPNOTSUPP;
944 goto out;
945 }
946
947 if (msg->msg_namelen) {
948 /* XXX fail non-unicast destination IPs? */
949 if (msg->msg_namelen < sizeof(*usin) || usin->sin_family != AF_INET) {
950 ret = -EINVAL;
951 goto out;
952 }
953 daddr = usin->sin_addr.s_addr;
954 dport = usin->sin_port;
955 } else {
956 /* We only care about consistency with ->connect() */
957 lock_sock(sk);
958 daddr = rs->rs_conn_addr;
959 dport = rs->rs_conn_port;
960 release_sock(sk);
961 }
962
963 /* racing with another thread binding seems ok here */
964 if (daddr == 0 || rs->rs_bound_addr == 0) {
965 ret = -ENOTCONN; /* XXX not a great errno */
966 goto out;
967 }
968
Andy Groverfc445082010-01-12 12:56:06 -0800969 /* size of rm including all sgs */
970 ret = rds_rm_size(msg, payload_len);
971 if (ret < 0)
972 goto out;
973
974 rm = rds_message_alloc(ret, GFP_KERNEL);
975 if (!rm) {
976 ret = -ENOMEM;
Andy Grover5c115592009-02-24 15:30:27 +0000977 goto out;
978 }
979
Andy Grover372cd7d2010-02-03 19:40:32 -0800980 /* Attach data to the rm */
981 if (payload_len) {
982 rm->data.op_sg = rds_message_alloc_sgs(rm, ceil(payload_len, PAGE_SIZE));
983 ret = rds_message_copy_from_user(rm, msg->msg_iov, payload_len);
984 if (ret)
985 goto out;
986 }
987 rm->data.op_active = 1;
Andy Groverfc445082010-01-12 12:56:06 -0800988
Andy Grover5c115592009-02-24 15:30:27 +0000989 rm->m_daddr = daddr;
990
Andy Grover5c115592009-02-24 15:30:27 +0000991 /* rds_conn_create has a spinlock that runs with IRQ off.
992 * Caching the conn in the socket helps a lot. */
993 if (rs->rs_conn && rs->rs_conn->c_faddr == daddr)
994 conn = rs->rs_conn;
995 else {
996 conn = rds_conn_create_outgoing(rs->rs_bound_addr, daddr,
997 rs->rs_transport,
998 sock->sk->sk_allocation);
999 if (IS_ERR(conn)) {
1000 ret = PTR_ERR(conn);
1001 goto out;
1002 }
1003 rs->rs_conn = conn;
1004 }
1005
Andy Grover49f69692009-04-09 14:09:41 +00001006 /* Parse any control messages the user may have included. */
1007 ret = rds_cmsg_send(rs, rm, msg, &allocated_mr);
1008 if (ret)
1009 goto out;
1010
Andy Grover2c3a5f92010-03-01 16:10:40 -08001011 if (rm->rdma.op_active && !conn->c_trans->xmit_rdma) {
Andy Grover5c115592009-02-24 15:30:27 +00001012 if (printk_ratelimit())
1013 printk(KERN_NOTICE "rdma_op %p conn xmit_rdma %p\n",
Andy Groverf8b3aaf2010-03-01 14:11:53 -08001014 &rm->rdma, conn->c_trans->xmit_rdma);
Andy Grover15133f62010-01-12 14:33:38 -08001015 ret = -EOPNOTSUPP;
1016 goto out;
1017 }
1018
1019 if (rm->atomic.op_active && !conn->c_trans->xmit_atomic) {
1020 if (printk_ratelimit())
1021 printk(KERN_NOTICE "atomic_op %p conn xmit_atomic %p\n",
1022 &rm->atomic, conn->c_trans->xmit_atomic);
Andy Grover5c115592009-02-24 15:30:27 +00001023 ret = -EOPNOTSUPP;
1024 goto out;
1025 }
1026
1027 /* If the connection is down, trigger a connect. We may
1028 * have scheduled a delayed reconnect however - in this case
1029 * we should not interfere.
1030 */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001031 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1032 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
Andy Grover5c115592009-02-24 15:30:27 +00001033 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1034
1035 ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs);
Andy Groverb98ba522010-03-11 13:50:04 +00001036 if (ret) {
1037 rs->rs_seen_congestion = 1;
Andy Grover5c115592009-02-24 15:30:27 +00001038 goto out;
Andy Groverb98ba522010-03-11 13:50:04 +00001039 }
Andy Grover5c115592009-02-24 15:30:27 +00001040
1041 while (!rds_send_queue_rm(rs, conn, rm, rs->rs_bound_port,
1042 dport, &queued)) {
1043 rds_stats_inc(s_send_queue_full);
1044 /* XXX make sure this is reasonable */
1045 if (payload_len > rds_sk_sndbuf(rs)) {
1046 ret = -EMSGSIZE;
1047 goto out;
1048 }
1049 if (nonblock) {
1050 ret = -EAGAIN;
1051 goto out;
1052 }
1053
Eric Dumazetaa395142010-04-20 13:03:51 +00001054 timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
Andy Grover5c115592009-02-24 15:30:27 +00001055 rds_send_queue_rm(rs, conn, rm,
1056 rs->rs_bound_port,
1057 dport,
1058 &queued),
1059 timeo);
1060 rdsdebug("sendmsg woke queued %d timeo %ld\n", queued, timeo);
1061 if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT)
1062 continue;
1063
1064 ret = timeo;
1065 if (ret == 0)
1066 ret = -ETIMEDOUT;
1067 goto out;
1068 }
1069
1070 /*
1071 * By now we've committed to the send. We reuse rds_send_worker()
1072 * to retry sends in the rds thread if the transport asks us to.
1073 */
1074 rds_stats_inc(s_send_queued);
1075
1076 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
Andy Grovera7d3a282010-03-29 16:20:18 -07001077 rds_send_xmit(conn);
Andy Grover5c115592009-02-24 15:30:27 +00001078
1079 rds_message_put(rm);
1080 return payload_len;
1081
1082out:
1083 /* If the user included a RDMA_MAP cmsg, we allocated a MR on the fly.
1084 * If the sendmsg goes through, we keep the MR. If it fails with EAGAIN
1085 * or in any other way, we need to destroy the MR again */
1086 if (allocated_mr)
1087 rds_rdma_unuse(rs, rds_rdma_cookie_key(rm->m_rdma_cookie), 1);
1088
1089 if (rm)
1090 rds_message_put(rm);
1091 return ret;
1092}
1093
1094/*
1095 * Reply to a ping packet.
1096 */
1097int
1098rds_send_pong(struct rds_connection *conn, __be16 dport)
1099{
1100 struct rds_message *rm;
1101 unsigned long flags;
1102 int ret = 0;
1103
1104 rm = rds_message_alloc(0, GFP_ATOMIC);
Andy Grover8690bfa2010-01-12 11:56:44 -08001105 if (!rm) {
Andy Grover5c115592009-02-24 15:30:27 +00001106 ret = -ENOMEM;
1107 goto out;
1108 }
1109
1110 rm->m_daddr = conn->c_faddr;
1111
1112 /* If the connection is down, trigger a connect. We may
1113 * have scheduled a delayed reconnect however - in this case
1114 * we should not interfere.
1115 */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001116 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1117 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
Andy Grover5c115592009-02-24 15:30:27 +00001118 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1119
1120 ret = rds_cong_wait(conn->c_fcong, dport, 1, NULL);
1121 if (ret)
1122 goto out;
1123
1124 spin_lock_irqsave(&conn->c_lock, flags);
1125 list_add_tail(&rm->m_conn_item, &conn->c_send_queue);
1126 set_bit(RDS_MSG_ON_CONN, &rm->m_flags);
1127 rds_message_addref(rm);
1128 rm->m_inc.i_conn = conn;
1129
1130 rds_message_populate_header(&rm->m_inc.i_hdr, 0, dport,
1131 conn->c_next_tx_seq);
1132 conn->c_next_tx_seq++;
1133 spin_unlock_irqrestore(&conn->c_lock, flags);
1134
1135 rds_stats_inc(s_send_queued);
1136 rds_stats_inc(s_send_pong);
1137
1138 queue_delayed_work(rds_wq, &conn->c_send_w, 0);
1139 rds_message_put(rm);
1140 return 0;
1141
1142out:
1143 if (rm)
1144 rds_message_put(rm);
1145 return ret;
1146}