blob: 8e3fd9981c2ea190d865d697a008ef54ccc61f38 [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;
Andy Grover5c115592009-02-24 15:30:27 +0000113 struct scatterlist *sg;
114 int ret = 0;
Chris Mason9e29db02010-04-15 16:38:14 -0400115 int gen = 0;
Andy Grover5c115592009-02-24 15:30:27 +0000116 LIST_HEAD(to_be_dropped);
117
Andy Groverfcc54502010-03-29 17:08:49 -0700118restart:
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
Chris Mason9e29db02010-04-15 16:38:14 -0400138 gen = atomic_inc_return(&conn->c_send_generation);
139
Andy Grover5c115592009-02-24 15:30:27 +0000140 /*
141 * spin trying to push headers and data down the connection until
Andy Grover5b2366b2010-02-03 19:36:44 -0800142 * the connection doesn't make forward progress.
Andy Grover5c115592009-02-24 15:30:27 +0000143 */
Andy Groverfcc54502010-03-29 17:08:49 -0700144 while (1) {
Andy Grover5c115592009-02-24 15:30:27 +0000145
Andy Grover5c115592009-02-24 15:30:27 +0000146 rm = conn->c_xmit_rm;
Andy Grover5c115592009-02-24 15:30:27 +0000147
Andy Grover5b2366b2010-02-03 19:36:44 -0800148 /*
149 * If between sending messages, we can send a pending congestion
150 * map update.
Andy Grover5c115592009-02-24 15:30:27 +0000151 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800152 if (!rm && test_and_clear_bit(0, &conn->c_map_queued)) {
Andy Grover77dd5502010-03-22 15:22:04 -0700153 rm = rds_cong_update_alloc(conn);
154 if (IS_ERR(rm)) {
155 ret = PTR_ERR(rm);
156 break;
Andy Grover5b2366b2010-02-03 19:36:44 -0800157 }
Andy Grover77dd5502010-03-22 15:22:04 -0700158 rm->data.op_active = 1;
159
160 conn->c_xmit_rm = rm;
Andy Grover5c115592009-02-24 15:30:27 +0000161 }
162
163 /*
Andy Grover5b2366b2010-02-03 19:36:44 -0800164 * If not already working on one, grab the next message.
Andy Grover5c115592009-02-24 15:30:27 +0000165 *
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 */
Andy Grover8690bfa2010-01-12 11:56:44 -0800170 if (!rm) {
Andy Grover5c115592009-02-24 15:30:27 +0000171 unsigned int len;
172
Andy Grover2ad80992010-03-23 17:48:04 -0700173 spin_lock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000174
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
Andy Grover2ad80992010-03-23 17:48:04 -0700188 spin_unlock(&conn->c_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000189
Andy Groverfcc54502010-03-29 17:08:49 -0700190 if (!rm)
Andy Grover5c115592009-02-24 15:30:27 +0000191 break;
Andy Grover5c115592009-02-24 15:30:27 +0000192
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 Groverfcc54502010-03-29 17:08:49 -0700353 /*
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
Andy Groverce47f522010-04-15 17:19:29 -0700356 * to make sure messages don't just sit on the send queue, if
357 * somebody hasn't already beat us into the loop.
Andy Groverfcc54502010-03-29 17:08:49 -0700358 *
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) {
Chris Mason9e29db02010-04-15 16:38:14 -0400364 smp_mb();
Andy Grover5c115592009-02-24 15:30:27 +0000365 if (!list_empty(&conn->c_send_queue)) {
Andy Grover049ee3f2010-03-23 17:39:07 -0700366 rds_stats_inc(s_send_lock_queue_raced);
Chris Mason9e29db02010-04-15 16:38:14 -0400367 if (gen == atomic_read(&conn->c_send_generation)) {
368 goto restart;
369 }
Andy Grover5c115592009-02-24 15:30:27 +0000370 }
Andy Grover5c115592009-02-24 15:30:27 +0000371 }
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;
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800435 struct rm_rdma_op *ro;
Andy Grover5c115592009-02-24 15:30:27 +0000436 struct rds_notifier *notifier;
Andy Grover9de08642010-03-29 16:50:54 -0700437 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000438
Andy Grover9de08642010-03-29 16:50:54 -0700439 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000440
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800441 ro = &rm->rdma;
Joe Perchesf64f9e72009-11-29 16:55:45 -0800442 if (test_bit(RDS_MSG_ON_SOCK, &rm->m_flags) &&
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800443 ro->op_active && ro->op_notify && ro->op_notifier) {
444 notifier = ro->op_notifier;
Andy Grover5c115592009-02-24 15:30:27 +0000445 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
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800453 ro->op_notifier = NULL;
Andy Grover5c115592009-02-24 15:30:27 +0000454 }
455
Andy Grover9de08642010-03-29 16:50:54 -0700456 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000457
458 if (rs) {
459 rds_wake_sk_sleep(rs);
460 sock_put(rds_rs_to_sk(rs));
461 }
462}
Andy Grover616b7572009-08-21 12:28:32 +0000463EXPORT_SYMBOL_GPL(rds_rdma_send_complete);
Andy Grover5c115592009-02-24 15:30:27 +0000464
465/*
Andy Grover15133f62010-01-12 14:33:38 -0800466 * 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;
Andy Grovercf4b7382010-03-29 16:50:54 -0700473 unsigned long flags;
Andy Grover15133f62010-01-12 14:33:38 -0800474
Andy Grovercf4b7382010-03-29 16:50:54 -0700475 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover15133f62010-01-12 14:33:38 -0800476
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
Andy Grovercf4b7382010-03-29 16:50:54 -0700492 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover15133f62010-01-12 14:33:38 -0800493
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
501/*
Andy Grover5c115592009-02-24 15:30:27 +0000502 * 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
Andy Grover940786e2010-02-19 18:04:58 -0800507__rds_send_complete(struct rds_sock *rs, struct rds_message *rm, int status)
Andy Grover5c115592009-02-24 15:30:27 +0000508{
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800509 struct rm_rdma_op *ro;
Andy Grover940786e2010-02-19 18:04:58 -0800510 struct rm_atomic_op *ao;
Andy Grover5c115592009-02-24 15:30:27 +0000511
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800512 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;
Andy Grover5c115592009-02-24 15:30:27 +0000517 }
518
Andy Grover940786e2010-02-19 18:04:58 -0800519 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
Andy Grover5c115592009-02-24 15:30:27 +0000526 /* 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,
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800535 struct rm_rdma_op *op)
Andy Grover5c115592009-02-24 15:30:27 +0000536{
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) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800543 if (&rm->rdma == op) {
Andy Grover5c115592009-02-24 15:30:27 +0000544 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) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800551 if (&rm->rdma == op) {
Andy Grover5c115592009-02-24 15:30:27 +0000552 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}
Andy Grover616b7572009-08-21 12:28:32 +0000563EXPORT_SYMBOL_GPL(rds_send_get_message);
Andy Grover5c115592009-02-24 15:30:27 +0000564
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{
Andy Grover561c7df2010-03-11 13:50:06 +0000575 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000576 struct rds_sock *rs = NULL;
577 struct rds_message *rm;
578
Andy Grover5c115592009-02-24 15:30:27 +0000579 while (!list_empty(messages)) {
Andy Grover561c7df2010-03-11 13:50:06 +0000580 int was_on_sock = 0;
581
Andy Grover5c115592009-02-24 15:30:27 +0000582 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 */
Andy Grover561c7df2010-03-11 13:50:06 +0000596 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000597 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) {
Andy Grover5c115592009-02-24 15:30:27 +0000602 rds_wake_sk_sleep(rs);
603 sock_put(rds_rs_to_sk(rs));
604 }
605 rs = rm->m_rs;
Andy Grover5c115592009-02-24 15:30:27 +0000606 sock_hold(rds_rs_to_sk(rs));
607 }
Tina Yang048c15e2010-03-11 13:50:00 +0000608 spin_lock(&rs->rs_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000609
610 if (test_and_clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags)) {
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800611 struct rm_rdma_op *ro = &rm->rdma;
Andy Grover5c115592009-02-24 15:30:27 +0000612 struct rds_notifier *notifier;
613
614 list_del_init(&rm->m_sock_item);
615 rds_send_sndbuf_remove(rs, rm);
616
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800617 if (ro->op_active && ro->op_notifier &&
618 (ro->op_notify || (ro->op_recverr && status))) {
619 notifier = ro->op_notifier;
Andy Grover5c115592009-02-24 15:30:27 +0000620 list_add_tail(&notifier->n_list,
621 &rs->rs_notify_queue);
622 if (!notifier->n_status)
623 notifier->n_status = status;
Andy Groverf8b3aaf2010-03-01 14:11:53 -0800624 rm->rdma.op_notifier = NULL;
Andy Grover5c115592009-02-24 15:30:27 +0000625 }
Andy Grover561c7df2010-03-11 13:50:06 +0000626 was_on_sock = 1;
Andy Grover5c115592009-02-24 15:30:27 +0000627 rm->m_rs = NULL;
628 }
Tina Yang048c15e2010-03-11 13:50:00 +0000629 spin_unlock(&rs->rs_lock);
Andy Grover5c115592009-02-24 15:30:27 +0000630
631unlock_and_drop:
Andy Grover561c7df2010-03-11 13:50:06 +0000632 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000633 rds_message_put(rm);
Andy Grover561c7df2010-03-11 13:50:06 +0000634 if (was_on_sock)
635 rds_message_put(rm);
Andy Grover5c115592009-02-24 15:30:27 +0000636 }
637
638 if (rs) {
Andy Grover5c115592009-02-24 15:30:27 +0000639 rds_wake_sk_sleep(rs);
640 sock_put(rds_rs_to_sk(rs));
641 }
Andy Grover5c115592009-02-24 15:30:27 +0000642}
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}
Andy Grover616b7572009-08-21 12:28:32 +0000681EXPORT_SYMBOL_GPL(rds_send_drop_acked);
Andy Grover5c115592009-02-24 15:30:27 +0000682
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;
Andy Grover7c82eaf2010-02-19 18:01:41 -0800687 unsigned long flags;
Andy Grover5c115592009-02-24 15:30:27 +0000688 LIST_HEAD(list);
Andy Grover5c115592009-02-24 15:30:27 +0000689
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
Andy Grover5c115592009-02-24 15:30:27 +0000698 list_move(&rm->m_sock_item, &list);
699 rds_send_sndbuf_remove(rs, rm);
700 clear_bit(RDS_MSG_ON_SOCK, &rm->m_flags);
Andy Grover5c115592009-02-24 15:30:27 +0000701 }
702
703 /* order flag updates with the rs lock */
Andy Grover7c82eaf2010-02-19 18:01:41 -0800704 smp_mb__after_clear_bit();
Andy Grover5c115592009-02-24 15:30:27 +0000705
706 spin_unlock_irqrestore(&rs->rs_lock, flags);
707
Andy Grover7c82eaf2010-02-19 18:01:41 -0800708 if (list_empty(&list))
709 return;
Andy Grover5c115592009-02-24 15:30:27 +0000710
Andy Grover7c82eaf2010-02-19 18:01:41 -0800711 /* Remove the messages from the conn */
Andy Grover5c115592009-02-24 15:30:27 +0000712 list_for_each_entry(rm, &list, m_sock_item) {
Andy Grover7c82eaf2010-02-19 18:01:41 -0800713
714 conn = rm->m_inc.i_conn;
Andy Grover7c82eaf2010-02-19 18:01:41 -0800715
Andy Grover9de08642010-03-29 16:50:54 -0700716 spin_lock_irqsave(&conn->c_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800717 /*
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.
721 */
722 if (!test_and_clear_bit(RDS_MSG_ON_CONN, &rm->m_flags)) {
723 spin_unlock_irqrestore(&conn->c_lock, flags);
724 continue;
725 }
Andy Grover9de08642010-03-29 16:50:54 -0700726 list_del_init(&rm->m_conn_item);
727 spin_unlock_irqrestore(&conn->c_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800728
729 /*
730 * Couldn't grab m_rs_lock in top loop (lock ordering),
731 * but we can now.
732 */
Andy Grover9de08642010-03-29 16:50:54 -0700733 spin_lock_irqsave(&rm->m_rs_lock, flags);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800734
Tina Yang550a8002010-03-11 13:50:03 +0000735 spin_lock(&rs->rs_lock);
Andy Grover940786e2010-02-19 18:04:58 -0800736 __rds_send_complete(rs, rm, RDS_RDMA_CANCELED);
Tina Yang550a8002010-03-11 13:50:03 +0000737 spin_unlock(&rs->rs_lock);
Andy Grover7c82eaf2010-02-19 18:01:41 -0800738
Andy Grover5c115592009-02-24 15:30:27 +0000739 rm->m_rs = NULL;
Andy Grover9de08642010-03-29 16:50:54 -0700740 spin_unlock_irqrestore(&rm->m_rs_lock, flags);
Andy Grover5c115592009-02-24 15:30:27 +0000741
Andy Grover7c82eaf2010-02-19 18:01:41 -0800742 rds_message_put(rm);
Andy Grover5c115592009-02-24 15:30:27 +0000743 }
744
Andy Grover7c82eaf2010-02-19 18:01:41 -0800745 rds_wake_sk_sleep(rs);
Tina Yang550a8002010-03-11 13:50:03 +0000746
Andy Grover5c115592009-02-24 15:30:27 +0000747 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
Andy Groverfc445082010-01-12 12:56:06 -0800825/*
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{
Andy Groverff87e972010-01-12 14:13:15 -0800831 struct cmsghdr *cmsg;
Andy Groverfc445082010-01-12 12:56:06 -0800832 int size = 0;
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700833 int cmsg_groups = 0;
Andy Groverff87e972010-01-12 14:13:15 -0800834 int retval;
Andy Groverfc445082010-01-12 12:56:06 -0800835
Andy Groverff87e972010-01-12 14:13:15 -0800836 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:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700845 cmsg_groups |= 1;
Andy Groverff87e972010-01-12 14:13:15 -0800846 retval = rds_rdma_extra_size(CMSG_DATA(cmsg));
847 if (retval < 0)
848 return retval;
849 size += retval;
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700850
Andy Groverff87e972010-01-12 14:13:15 -0800851 break;
852
853 case RDS_CMSG_RDMA_DEST:
854 case RDS_CMSG_RDMA_MAP:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700855 cmsg_groups |= 2;
Andy Groverff87e972010-01-12 14:13:15 -0800856 /* these are valid but do no add any size */
857 break;
858
Andy Grover15133f62010-01-12 14:33:38 -0800859 case RDS_CMSG_ATOMIC_CSWP:
860 case RDS_CMSG_ATOMIC_FADD:
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700861 cmsg_groups |= 1;
Andy Grover15133f62010-01-12 14:33:38 -0800862 size += sizeof(struct scatterlist);
863 break;
864
Andy Groverff87e972010-01-12 14:13:15 -0800865 default:
866 return -EINVAL;
867 }
868
869 }
870
871 size += ceil(data_len, PAGE_SIZE) * sizeof(struct scatterlist);
Andy Groverfc445082010-01-12 12:56:06 -0800872
Andy Groveraa0a4ef2010-04-13 12:00:35 -0700873 /* Ensure (DEST, MAP) are never used with (ARGS, ATOMIC) */
874 if (cmsg_groups == 3)
875 return -EINVAL;
876
Andy Groverfc445082010-01-12 12:56:06 -0800877 return size;
878}
879
Andy Grover5c115592009-02-24 15:30:27 +0000880static 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
Andy Grover15133f62010-01-12 14:33:38 -0800894 * rm->rdma.m_rdma_cookie and rm->rdma.m_rdma_mr.
Andy Grover5c115592009-02-24 15:30:27 +0000895 */
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;
Andy Grover15133f62010-01-12 14:33:38 -0800910 case RDS_CMSG_ATOMIC_CSWP:
911 case RDS_CMSG_ATOMIC_FADD:
912 ret = rds_cmsg_atomic(rs, rm, cmsg);
913 break;
Andy Grover5c115592009-02-24 15:30:27 +0000914
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;
Andy Grover1123fd72010-03-11 13:49:56 +0000939 long timeo = sock_sndtimeo(sk, nonblock);
Andy Grover5c115592009-02-24 15:30:27 +0000940
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
Andy Groverfc445082010-01-12 12:56:06 -0800971 /* 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;
Andy Grover5c115592009-02-24 15:30:27 +0000979 goto out;
980 }
981
Andy Grover372cd7d2010-02-03 19:40:32 -0800982 /* 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;
Andy Groverfc445082010-01-12 12:56:06 -0800990
Andy Grover5c115592009-02-24 15:30:27 +0000991 rm->m_daddr = daddr;
992
Andy Grover5c115592009-02-24 15:30:27 +0000993 /* 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
Andy Grover49f69692009-04-09 14:09:41 +00001008 /* 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
Andy Grover2c3a5f92010-03-01 16:10:40 -08001013 if (rm->rdma.op_active && !conn->c_trans->xmit_rdma) {
Andy Grover5c115592009-02-24 15:30:27 +00001014 if (printk_ratelimit())
1015 printk(KERN_NOTICE "rdma_op %p conn xmit_rdma %p\n",
Andy Groverf8b3aaf2010-03-01 14:11:53 -08001016 &rm->rdma, conn->c_trans->xmit_rdma);
Andy Grover15133f62010-01-12 14:33:38 -08001017 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);
Andy Grover5c115592009-02-24 15:30:27 +00001025 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 */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001033 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1034 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
Andy Grover5c115592009-02-24 15:30:27 +00001035 queue_delayed_work(rds_wq, &conn->c_conn_w, 0);
1036
1037 ret = rds_cong_wait(conn->c_fcong, dport, nonblock, rs);
Andy Groverb98ba522010-03-11 13:50:04 +00001038 if (ret) {
1039 rs->rs_seen_congestion = 1;
Andy Grover5c115592009-02-24 15:30:27 +00001040 goto out;
Andy Groverb98ba522010-03-11 13:50:04 +00001041 }
Andy Grover5c115592009-02-24 15:30:27 +00001042
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
Eric Dumazetaa395142010-04-20 13:03:51 +00001056 timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
Andy Grover5c115592009-02-24 15:30:27 +00001057 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))
Andy Grovera7d3a282010-03-29 16:20:18 -07001079 rds_send_xmit(conn);
Andy Grover5c115592009-02-24 15:30:27 +00001080
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);
Andy Grover8690bfa2010-01-12 11:56:44 -08001107 if (!rm) {
Andy Grover5c115592009-02-24 15:30:27 +00001108 ret = -ENOMEM;
1109 goto out;
1110 }
1111
1112 rm->m_daddr = conn->c_faddr;
Andy Groveracfcd4d2010-03-31 18:56:25 -07001113 rm->data.op_active = 1;
Andy Grover5c115592009-02-24 15:30:27 +00001114
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 */
Joe Perchesf64f9e72009-11-29 16:55:45 -08001119 if (rds_conn_state(conn) == RDS_CONN_DOWN &&
1120 !test_and_set_bit(RDS_RECONNECT_PENDING, &conn->c_flags))
Andy Grover5c115592009-02-24 15:30:27 +00001121 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
Andy Groveracfcd4d2010-03-31 18:56:25 -07001141 if (!test_bit(RDS_LL_SEND_FULL, &conn->c_flags))
1142 rds_send_xmit(conn);
1143
Andy Grover5c115592009-02-24 15:30:27 +00001144 rds_message_put(rm);
1145 return 0;
1146
1147out:
1148 if (rm)
1149 rds_message_put(rm);
1150 return ret;
1151}