recv.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  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>
  34. #include <linux/slab.h>
  35. #include <net/sock.h>
  36. #include <linux/in.h>
  37. #include <linux/export.h>
  38. #include <linux/time.h>
  39. #include <linux/rds.h>
  40. #include "rds.h"
  41. void rds_inc_init(struct rds_incoming *inc, struct rds_connection *conn,
  42. __be32 saddr)
  43. {
  44. atomic_set(&inc->i_refcount, 1);
  45. INIT_LIST_HEAD(&inc->i_item);
  46. inc->i_conn = conn;
  47. inc->i_saddr = saddr;
  48. inc->i_rdma_cookie = 0;
  49. inc->i_rx_tstamp.tv_sec = 0;
  50. inc->i_rx_tstamp.tv_usec = 0;
  51. }
  52. EXPORT_SYMBOL_GPL(rds_inc_init);
  53. void rds_inc_path_init(struct rds_incoming *inc, struct rds_conn_path *cp,
  54. __be32 saddr)
  55. {
  56. atomic_set(&inc->i_refcount, 1);
  57. INIT_LIST_HEAD(&inc->i_item);
  58. inc->i_conn = cp->cp_conn;
  59. inc->i_conn_path = cp;
  60. inc->i_saddr = saddr;
  61. inc->i_rdma_cookie = 0;
  62. inc->i_rx_tstamp.tv_sec = 0;
  63. inc->i_rx_tstamp.tv_usec = 0;
  64. }
  65. EXPORT_SYMBOL_GPL(rds_inc_path_init);
  66. static void rds_inc_addref(struct rds_incoming *inc)
  67. {
  68. rdsdebug("addref inc %p ref %d\n", inc, atomic_read(&inc->i_refcount));
  69. atomic_inc(&inc->i_refcount);
  70. }
  71. void rds_inc_put(struct rds_incoming *inc)
  72. {
  73. rdsdebug("put inc %p ref %d\n", inc, atomic_read(&inc->i_refcount));
  74. if (atomic_dec_and_test(&inc->i_refcount)) {
  75. BUG_ON(!list_empty(&inc->i_item));
  76. inc->i_conn->c_trans->inc_free(inc);
  77. }
  78. }
  79. EXPORT_SYMBOL_GPL(rds_inc_put);
  80. static void rds_recv_rcvbuf_delta(struct rds_sock *rs, struct sock *sk,
  81. struct rds_cong_map *map,
  82. int delta, __be16 port)
  83. {
  84. int now_congested;
  85. if (delta == 0)
  86. return;
  87. rs->rs_rcv_bytes += delta;
  88. /* loop transport doesn't send/recv congestion updates */
  89. if (rs->rs_transport->t_type == RDS_TRANS_LOOP)
  90. return;
  91. now_congested = rs->rs_rcv_bytes > rds_sk_rcvbuf(rs);
  92. rdsdebug("rs %p (%pI4:%u) recv bytes %d buf %d "
  93. "now_cong %d delta %d\n",
  94. rs, &rs->rs_bound_addr,
  95. ntohs(rs->rs_bound_port), rs->rs_rcv_bytes,
  96. rds_sk_rcvbuf(rs), now_congested, delta);
  97. /* wasn't -> am congested */
  98. if (!rs->rs_congested && now_congested) {
  99. rs->rs_congested = 1;
  100. rds_cong_set_bit(map, port);
  101. rds_cong_queue_updates(map);
  102. }
  103. /* was -> aren't congested */
  104. /* Require more free space before reporting uncongested to prevent
  105. bouncing cong/uncong state too often */
  106. else if (rs->rs_congested && (rs->rs_rcv_bytes < (rds_sk_rcvbuf(rs)/2))) {
  107. rs->rs_congested = 0;
  108. rds_cong_clear_bit(map, port);
  109. rds_cong_queue_updates(map);
  110. }
  111. /* do nothing if no change in cong state */
  112. }
  113. /*
  114. * Process all extension headers that come with this message.
  115. */
  116. static void rds_recv_incoming_exthdrs(struct rds_incoming *inc, struct rds_sock *rs)
  117. {
  118. struct rds_header *hdr = &inc->i_hdr;
  119. unsigned int pos = 0, type, len;
  120. union {
  121. struct rds_ext_header_version version;
  122. struct rds_ext_header_rdma rdma;
  123. struct rds_ext_header_rdma_dest rdma_dest;
  124. } buffer;
  125. while (1) {
  126. len = sizeof(buffer);
  127. type = rds_message_next_extension(hdr, &pos, &buffer, &len);
  128. if (type == RDS_EXTHDR_NONE)
  129. break;
  130. /* Process extension header here */
  131. switch (type) {
  132. case RDS_EXTHDR_RDMA:
  133. rds_rdma_unuse(rs, be32_to_cpu(buffer.rdma.h_rdma_rkey), 0);
  134. break;
  135. case RDS_EXTHDR_RDMA_DEST:
  136. /* We ignore the size for now. We could stash it
  137. * somewhere and use it for error checking. */
  138. inc->i_rdma_cookie = rds_rdma_make_cookie(
  139. be32_to_cpu(buffer.rdma_dest.h_rdma_rkey),
  140. be32_to_cpu(buffer.rdma_dest.h_rdma_offset));
  141. break;
  142. }
  143. }
  144. }
  145. static void rds_recv_hs_exthdrs(struct rds_header *hdr,
  146. struct rds_connection *conn)
  147. {
  148. unsigned int pos = 0, type, len;
  149. union {
  150. struct rds_ext_header_version version;
  151. u16 rds_npaths;
  152. } buffer;
  153. while (1) {
  154. len = sizeof(buffer);
  155. type = rds_message_next_extension(hdr, &pos, &buffer, &len);
  156. if (type == RDS_EXTHDR_NONE)
  157. break;
  158. /* Process extension header here */
  159. switch (type) {
  160. case RDS_EXTHDR_NPATHS:
  161. conn->c_npaths = min_t(int, RDS_MPATH_WORKERS,
  162. buffer.rds_npaths);
  163. break;
  164. default:
  165. pr_warn_ratelimited("ignoring unknown exthdr type "
  166. "0x%x\n", type);
  167. }
  168. }
  169. /* if RDS_EXTHDR_NPATHS was not found, default to a single-path */
  170. conn->c_npaths = max_t(int, conn->c_npaths, 1);
  171. }
  172. /* rds_start_mprds() will synchronously start multiple paths when appropriate.
  173. * The scheme is based on the following rules:
  174. *
  175. * 1. rds_sendmsg on first connect attempt sends the probe ping, with the
  176. * sender's npaths (s_npaths)
  177. * 2. rcvr of probe-ping knows the mprds_paths = min(s_npaths, r_npaths). It
  178. * sends back a probe-pong with r_npaths. After that, if rcvr is the
  179. * smaller ip addr, it starts rds_conn_path_connect_if_down on all
  180. * mprds_paths.
  181. * 3. sender gets woken up, and can move to rds_conn_path_connect_if_down.
  182. * If it is the smaller ipaddr, rds_conn_path_connect_if_down can be
  183. * called after reception of the probe-pong on all mprds_paths.
  184. * Otherwise (sender of probe-ping is not the smaller ip addr): just call
  185. * rds_conn_path_connect_if_down on the hashed path. (see rule 4)
  186. * 4. when cp_index > 0, rds_connect_worker must only trigger
  187. * a connection if laddr < faddr.
  188. * 5. sender may end up queuing the packet on the cp. will get sent out later.
  189. * when connection is completed.
  190. */
  191. static void rds_start_mprds(struct rds_connection *conn)
  192. {
  193. int i;
  194. struct rds_conn_path *cp;
  195. if (conn->c_npaths > 1 && conn->c_laddr < conn->c_faddr) {
  196. for (i = 1; i < conn->c_npaths; i++) {
  197. cp = &conn->c_path[i];
  198. rds_conn_path_connect_if_down(cp);
  199. }
  200. }
  201. }
  202. /*
  203. * The transport must make sure that this is serialized against other
  204. * rx and conn reset on this specific conn.
  205. *
  206. * We currently assert that only one fragmented message will be sent
  207. * down a connection at a time. This lets us reassemble in the conn
  208. * instead of per-flow which means that we don't have to go digging through
  209. * flows to tear down partial reassembly progress on conn failure and
  210. * we save flow lookup and locking for each frag arrival. It does mean
  211. * that small messages will wait behind large ones. Fragmenting at all
  212. * is only to reduce the memory consumption of pre-posted buffers.
  213. *
  214. * The caller passes in saddr and daddr instead of us getting it from the
  215. * conn. This lets loopback, who only has one conn for both directions,
  216. * tell us which roles the addrs in the conn are playing for this message.
  217. */
  218. void rds_recv_incoming(struct rds_connection *conn, __be32 saddr, __be32 daddr,
  219. struct rds_incoming *inc, gfp_t gfp)
  220. {
  221. struct rds_sock *rs = NULL;
  222. struct sock *sk;
  223. unsigned long flags;
  224. struct rds_conn_path *cp;
  225. inc->i_conn = conn;
  226. inc->i_rx_jiffies = jiffies;
  227. if (conn->c_trans->t_mp_capable)
  228. cp = inc->i_conn_path;
  229. else
  230. cp = &conn->c_path[0];
  231. rdsdebug("conn %p next %llu inc %p seq %llu len %u sport %u dport %u "
  232. "flags 0x%x rx_jiffies %lu\n", conn,
  233. (unsigned long long)cp->cp_next_rx_seq,
  234. inc,
  235. (unsigned long long)be64_to_cpu(inc->i_hdr.h_sequence),
  236. be32_to_cpu(inc->i_hdr.h_len),
  237. be16_to_cpu(inc->i_hdr.h_sport),
  238. be16_to_cpu(inc->i_hdr.h_dport),
  239. inc->i_hdr.h_flags,
  240. inc->i_rx_jiffies);
  241. /*
  242. * Sequence numbers should only increase. Messages get their
  243. * sequence number as they're queued in a sending conn. They
  244. * can be dropped, though, if the sending socket is closed before
  245. * they hit the wire. So sequence numbers can skip forward
  246. * under normal operation. They can also drop back in the conn
  247. * failover case as previously sent messages are resent down the
  248. * new instance of a conn. We drop those, otherwise we have
  249. * to assume that the next valid seq does not come after a
  250. * hole in the fragment stream.
  251. *
  252. * The headers don't give us a way to realize if fragments of
  253. * a message have been dropped. We assume that frags that arrive
  254. * to a flow are part of the current message on the flow that is
  255. * being reassembled. This means that senders can't drop messages
  256. * from the sending conn until all their frags are sent.
  257. *
  258. * XXX we could spend more on the wire to get more robust failure
  259. * detection, arguably worth it to avoid data corruption.
  260. */
  261. if (be64_to_cpu(inc->i_hdr.h_sequence) < cp->cp_next_rx_seq &&
  262. (inc->i_hdr.h_flags & RDS_FLAG_RETRANSMITTED)) {
  263. rds_stats_inc(s_recv_drop_old_seq);
  264. goto out;
  265. }
  266. cp->cp_next_rx_seq = be64_to_cpu(inc->i_hdr.h_sequence) + 1;
  267. if (rds_sysctl_ping_enable && inc->i_hdr.h_dport == 0) {
  268. if (inc->i_hdr.h_sport == 0) {
  269. rdsdebug("ignore ping with 0 sport from 0x%x\n", saddr);
  270. goto out;
  271. }
  272. rds_stats_inc(s_recv_ping);
  273. rds_send_pong(cp, inc->i_hdr.h_sport);
  274. /* if this is a handshake ping, start multipath if necessary */
  275. if (RDS_HS_PROBE(inc->i_hdr.h_sport, inc->i_hdr.h_dport)) {
  276. rds_recv_hs_exthdrs(&inc->i_hdr, cp->cp_conn);
  277. rds_start_mprds(cp->cp_conn);
  278. }
  279. goto out;
  280. }
  281. if (inc->i_hdr.h_dport == RDS_FLAG_PROBE_PORT &&
  282. inc->i_hdr.h_sport == 0) {
  283. rds_recv_hs_exthdrs(&inc->i_hdr, cp->cp_conn);
  284. /* if this is a handshake pong, start multipath if necessary */
  285. rds_start_mprds(cp->cp_conn);
  286. wake_up(&cp->cp_conn->c_hs_waitq);
  287. goto out;
  288. }
  289. rs = rds_find_bound(daddr, inc->i_hdr.h_dport);
  290. if (!rs) {
  291. rds_stats_inc(s_recv_drop_no_sock);
  292. goto out;
  293. }
  294. /* Process extension headers */
  295. rds_recv_incoming_exthdrs(inc, rs);
  296. /* We can be racing with rds_release() which marks the socket dead. */
  297. sk = rds_rs_to_sk(rs);
  298. /* serialize with rds_release -> sock_orphan */
  299. write_lock_irqsave(&rs->rs_recv_lock, flags);
  300. if (!sock_flag(sk, SOCK_DEAD)) {
  301. rdsdebug("adding inc %p to rs %p's recv queue\n", inc, rs);
  302. rds_stats_inc(s_recv_queued);
  303. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  304. be32_to_cpu(inc->i_hdr.h_len),
  305. inc->i_hdr.h_dport);
  306. if (sock_flag(sk, SOCK_RCVTSTAMP))
  307. do_gettimeofday(&inc->i_rx_tstamp);
  308. rds_inc_addref(inc);
  309. list_add_tail(&inc->i_item, &rs->rs_recv_queue);
  310. __rds_wake_sk_sleep(sk);
  311. } else {
  312. rds_stats_inc(s_recv_drop_dead_sock);
  313. }
  314. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  315. out:
  316. if (rs)
  317. rds_sock_put(rs);
  318. }
  319. EXPORT_SYMBOL_GPL(rds_recv_incoming);
  320. /*
  321. * be very careful here. This is being called as the condition in
  322. * wait_event_*() needs to cope with being called many times.
  323. */
  324. static int rds_next_incoming(struct rds_sock *rs, struct rds_incoming **inc)
  325. {
  326. unsigned long flags;
  327. if (!*inc) {
  328. read_lock_irqsave(&rs->rs_recv_lock, flags);
  329. if (!list_empty(&rs->rs_recv_queue)) {
  330. *inc = list_entry(rs->rs_recv_queue.next,
  331. struct rds_incoming,
  332. i_item);
  333. rds_inc_addref(*inc);
  334. }
  335. read_unlock_irqrestore(&rs->rs_recv_lock, flags);
  336. }
  337. return *inc != NULL;
  338. }
  339. static int rds_still_queued(struct rds_sock *rs, struct rds_incoming *inc,
  340. int drop)
  341. {
  342. struct sock *sk = rds_rs_to_sk(rs);
  343. int ret = 0;
  344. unsigned long flags;
  345. write_lock_irqsave(&rs->rs_recv_lock, flags);
  346. if (!list_empty(&inc->i_item)) {
  347. ret = 1;
  348. if (drop) {
  349. /* XXX make sure this i_conn is reliable */
  350. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  351. -be32_to_cpu(inc->i_hdr.h_len),
  352. inc->i_hdr.h_dport);
  353. list_del_init(&inc->i_item);
  354. rds_inc_put(inc);
  355. }
  356. }
  357. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  358. rdsdebug("inc %p rs %p still %d dropped %d\n", inc, rs, ret, drop);
  359. return ret;
  360. }
  361. /*
  362. * Pull errors off the error queue.
  363. * If msghdr is NULL, we will just purge the error queue.
  364. */
  365. int rds_notify_queue_get(struct rds_sock *rs, struct msghdr *msghdr)
  366. {
  367. struct rds_notifier *notifier;
  368. struct rds_rdma_notify cmsg = { 0 }; /* fill holes with zero */
  369. unsigned int count = 0, max_messages = ~0U;
  370. unsigned long flags;
  371. LIST_HEAD(copy);
  372. int err = 0;
  373. /* put_cmsg copies to user space and thus may sleep. We can't do this
  374. * with rs_lock held, so first grab as many notifications as we can stuff
  375. * in the user provided cmsg buffer. We don't try to copy more, to avoid
  376. * losing notifications - except when the buffer is so small that it wouldn't
  377. * even hold a single notification. Then we give him as much of this single
  378. * msg as we can squeeze in, and set MSG_CTRUNC.
  379. */
  380. if (msghdr) {
  381. max_messages = msghdr->msg_controllen / CMSG_SPACE(sizeof(cmsg));
  382. if (!max_messages)
  383. max_messages = 1;
  384. }
  385. spin_lock_irqsave(&rs->rs_lock, flags);
  386. while (!list_empty(&rs->rs_notify_queue) && count < max_messages) {
  387. notifier = list_entry(rs->rs_notify_queue.next,
  388. struct rds_notifier, n_list);
  389. list_move(&notifier->n_list, &copy);
  390. count++;
  391. }
  392. spin_unlock_irqrestore(&rs->rs_lock, flags);
  393. if (!count)
  394. return 0;
  395. while (!list_empty(&copy)) {
  396. notifier = list_entry(copy.next, struct rds_notifier, n_list);
  397. if (msghdr) {
  398. cmsg.user_token = notifier->n_user_token;
  399. cmsg.status = notifier->n_status;
  400. err = put_cmsg(msghdr, SOL_RDS, RDS_CMSG_RDMA_STATUS,
  401. sizeof(cmsg), &cmsg);
  402. if (err)
  403. break;
  404. }
  405. list_del_init(&notifier->n_list);
  406. kfree(notifier);
  407. }
  408. /* If we bailed out because of an error in put_cmsg,
  409. * we may be left with one or more notifications that we
  410. * didn't process. Return them to the head of the list. */
  411. if (!list_empty(&copy)) {
  412. spin_lock_irqsave(&rs->rs_lock, flags);
  413. list_splice(&copy, &rs->rs_notify_queue);
  414. spin_unlock_irqrestore(&rs->rs_lock, flags);
  415. }
  416. return err;
  417. }
  418. /*
  419. * Queue a congestion notification
  420. */
  421. static int rds_notify_cong(struct rds_sock *rs, struct msghdr *msghdr)
  422. {
  423. uint64_t notify = rs->rs_cong_notify;
  424. unsigned long flags;
  425. int err;
  426. err = put_cmsg(msghdr, SOL_RDS, RDS_CMSG_CONG_UPDATE,
  427. sizeof(notify), &notify);
  428. if (err)
  429. return err;
  430. spin_lock_irqsave(&rs->rs_lock, flags);
  431. rs->rs_cong_notify &= ~notify;
  432. spin_unlock_irqrestore(&rs->rs_lock, flags);
  433. return 0;
  434. }
  435. /*
  436. * Receive any control messages.
  437. */
  438. static int rds_cmsg_recv(struct rds_incoming *inc, struct msghdr *msg,
  439. struct rds_sock *rs)
  440. {
  441. int ret = 0;
  442. if (inc->i_rdma_cookie) {
  443. ret = put_cmsg(msg, SOL_RDS, RDS_CMSG_RDMA_DEST,
  444. sizeof(inc->i_rdma_cookie), &inc->i_rdma_cookie);
  445. if (ret)
  446. return ret;
  447. }
  448. if ((inc->i_rx_tstamp.tv_sec != 0) &&
  449. sock_flag(rds_rs_to_sk(rs), SOCK_RCVTSTAMP)) {
  450. ret = put_cmsg(msg, SOL_SOCKET, SCM_TIMESTAMP,
  451. sizeof(struct timeval),
  452. &inc->i_rx_tstamp);
  453. if (ret)
  454. return ret;
  455. }
  456. return 0;
  457. }
  458. int rds_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
  459. int msg_flags)
  460. {
  461. struct sock *sk = sock->sk;
  462. struct rds_sock *rs = rds_sk_to_rs(sk);
  463. long timeo;
  464. int ret = 0, nonblock = msg_flags & MSG_DONTWAIT;
  465. DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
  466. struct rds_incoming *inc = NULL;
  467. /* udp_recvmsg()->sock_recvtimeo() gets away without locking too.. */
  468. timeo = sock_rcvtimeo(sk, nonblock);
  469. rdsdebug("size %zu flags 0x%x timeo %ld\n", size, msg_flags, timeo);
  470. if (msg_flags & MSG_OOB)
  471. goto out;
  472. while (1) {
  473. struct iov_iter save;
  474. /* If there are pending notifications, do those - and nothing else */
  475. if (!list_empty(&rs->rs_notify_queue)) {
  476. ret = rds_notify_queue_get(rs, msg);
  477. break;
  478. }
  479. if (rs->rs_cong_notify) {
  480. ret = rds_notify_cong(rs, msg);
  481. break;
  482. }
  483. if (!rds_next_incoming(rs, &inc)) {
  484. if (nonblock) {
  485. ret = -EAGAIN;
  486. break;
  487. }
  488. timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
  489. (!list_empty(&rs->rs_notify_queue) ||
  490. rs->rs_cong_notify ||
  491. rds_next_incoming(rs, &inc)), timeo);
  492. rdsdebug("recvmsg woke inc %p timeo %ld\n", inc,
  493. timeo);
  494. if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT)
  495. continue;
  496. ret = timeo;
  497. if (ret == 0)
  498. ret = -ETIMEDOUT;
  499. break;
  500. }
  501. rdsdebug("copying inc %p from %pI4:%u to user\n", inc,
  502. &inc->i_conn->c_faddr,
  503. ntohs(inc->i_hdr.h_sport));
  504. save = msg->msg_iter;
  505. ret = inc->i_conn->c_trans->inc_copy_to_user(inc, &msg->msg_iter);
  506. if (ret < 0)
  507. break;
  508. /*
  509. * if the message we just copied isn't at the head of the
  510. * recv queue then someone else raced us to return it, try
  511. * to get the next message.
  512. */
  513. if (!rds_still_queued(rs, inc, !(msg_flags & MSG_PEEK))) {
  514. rds_inc_put(inc);
  515. inc = NULL;
  516. rds_stats_inc(s_recv_deliver_raced);
  517. msg->msg_iter = save;
  518. continue;
  519. }
  520. if (ret < be32_to_cpu(inc->i_hdr.h_len)) {
  521. if (msg_flags & MSG_TRUNC)
  522. ret = be32_to_cpu(inc->i_hdr.h_len);
  523. msg->msg_flags |= MSG_TRUNC;
  524. }
  525. if (rds_cmsg_recv(inc, msg, rs)) {
  526. ret = -EFAULT;
  527. goto out;
  528. }
  529. rds_stats_inc(s_recv_delivered);
  530. if (sin) {
  531. sin->sin_family = AF_INET;
  532. sin->sin_port = inc->i_hdr.h_sport;
  533. sin->sin_addr.s_addr = inc->i_saddr;
  534. memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
  535. msg->msg_namelen = sizeof(*sin);
  536. }
  537. break;
  538. }
  539. if (inc)
  540. rds_inc_put(inc);
  541. out:
  542. return ret;
  543. }
  544. /*
  545. * The socket is being shut down and we're asked to drop messages that were
  546. * queued for recvmsg. The caller has unbound the socket so the receive path
  547. * won't queue any more incoming fragments or messages on the socket.
  548. */
  549. void rds_clear_recv_queue(struct rds_sock *rs)
  550. {
  551. struct sock *sk = rds_rs_to_sk(rs);
  552. struct rds_incoming *inc, *tmp;
  553. unsigned long flags;
  554. write_lock_irqsave(&rs->rs_recv_lock, flags);
  555. list_for_each_entry_safe(inc, tmp, &rs->rs_recv_queue, i_item) {
  556. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  557. -be32_to_cpu(inc->i_hdr.h_len),
  558. inc->i_hdr.h_dport);
  559. list_del_init(&inc->i_item);
  560. rds_inc_put(inc);
  561. }
  562. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  563. }
  564. /*
  565. * inc->i_saddr isn't used here because it is only set in the receive
  566. * path.
  567. */
  568. void rds_inc_info_copy(struct rds_incoming *inc,
  569. struct rds_info_iterator *iter,
  570. __be32 saddr, __be32 daddr, int flip)
  571. {
  572. struct rds_info_message minfo;
  573. minfo.seq = be64_to_cpu(inc->i_hdr.h_sequence);
  574. minfo.len = be32_to_cpu(inc->i_hdr.h_len);
  575. if (flip) {
  576. minfo.laddr = daddr;
  577. minfo.faddr = saddr;
  578. minfo.lport = inc->i_hdr.h_dport;
  579. minfo.fport = inc->i_hdr.h_sport;
  580. } else {
  581. minfo.laddr = saddr;
  582. minfo.faddr = daddr;
  583. minfo.lport = inc->i_hdr.h_sport;
  584. minfo.fport = inc->i_hdr.h_dport;
  585. }
  586. minfo.flags = 0;
  587. rds_info_copy(iter, &minfo, sizeof(minfo));
  588. }