recv.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874
  1. /*
  2. * Copyright (c) 2006, 2019 Oracle and/or its affiliates. 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/sched/clock.h>
  39. #include <linux/time.h>
  40. #include <linux/rds.h>
  41. #include "rds.h"
  42. void rds_inc_init(struct rds_incoming *inc, struct rds_connection *conn,
  43. struct in6_addr *saddr)
  44. {
  45. refcount_set(&inc->i_refcount, 1);
  46. INIT_LIST_HEAD(&inc->i_item);
  47. inc->i_conn = conn;
  48. inc->i_saddr = *saddr;
  49. inc->i_usercopy.rdma_cookie = 0;
  50. inc->i_usercopy.rx_tstamp = ktime_set(0, 0);
  51. memset(inc->i_rx_lat_trace, 0, sizeof(inc->i_rx_lat_trace));
  52. }
  53. EXPORT_SYMBOL_GPL(rds_inc_init);
  54. void rds_inc_path_init(struct rds_incoming *inc, struct rds_conn_path *cp,
  55. struct in6_addr *saddr)
  56. {
  57. refcount_set(&inc->i_refcount, 1);
  58. INIT_LIST_HEAD(&inc->i_item);
  59. inc->i_conn = cp->cp_conn;
  60. inc->i_conn_path = cp;
  61. inc->i_saddr = *saddr;
  62. inc->i_usercopy.rdma_cookie = 0;
  63. inc->i_usercopy.rx_tstamp = ktime_set(0, 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, refcount_read(&inc->i_refcount));
  69. refcount_inc(&inc->i_refcount);
  70. }
  71. void rds_inc_put(struct rds_incoming *inc)
  72. {
  73. rdsdebug("put inc %p ref %d\n", inc, refcount_read(&inc->i_refcount));
  74. if (refcount_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. if (delta > 0)
  89. rds_stats_add(s_recv_bytes_added_to_socket, delta);
  90. else
  91. rds_stats_add(s_recv_bytes_removed_from_socket, -delta);
  92. /* loop transport doesn't send/recv congestion updates */
  93. if (rs->rs_transport->t_type == RDS_TRANS_LOOP)
  94. return;
  95. now_congested = rs->rs_rcv_bytes > rds_sk_rcvbuf(rs);
  96. rdsdebug("rs %p (%pI6c:%u) recv bytes %d buf %d "
  97. "now_cong %d delta %d\n",
  98. rs, &rs->rs_bound_addr,
  99. ntohs(rs->rs_bound_port), rs->rs_rcv_bytes,
  100. rds_sk_rcvbuf(rs), now_congested, delta);
  101. /* wasn't -> am congested */
  102. if (!rs->rs_congested && now_congested) {
  103. rs->rs_congested = 1;
  104. rds_cong_set_bit(map, port);
  105. rds_cong_queue_updates(map);
  106. }
  107. /* was -> aren't congested */
  108. /* Require more free space before reporting uncongested to prevent
  109. bouncing cong/uncong state too often */
  110. else if (rs->rs_congested && (rs->rs_rcv_bytes < (rds_sk_rcvbuf(rs)/2))) {
  111. rs->rs_congested = 0;
  112. rds_cong_clear_bit(map, port);
  113. rds_cong_queue_updates(map);
  114. }
  115. /* do nothing if no change in cong state */
  116. }
  117. static void rds_conn_peer_gen_update(struct rds_connection *conn,
  118. u32 peer_gen_num)
  119. {
  120. int i;
  121. struct rds_message *rm, *tmp;
  122. unsigned long flags;
  123. WARN_ON(conn->c_trans->t_type != RDS_TRANS_TCP);
  124. if (peer_gen_num != 0) {
  125. if (conn->c_peer_gen_num != 0 &&
  126. peer_gen_num != conn->c_peer_gen_num) {
  127. for (i = 0; i < RDS_MPATH_WORKERS; i++) {
  128. struct rds_conn_path *cp;
  129. cp = &conn->c_path[i];
  130. spin_lock_irqsave(&cp->cp_lock, flags);
  131. cp->cp_next_tx_seq = 1;
  132. cp->cp_next_rx_seq = 0;
  133. list_for_each_entry_safe(rm, tmp,
  134. &cp->cp_retrans,
  135. m_conn_item) {
  136. set_bit(RDS_MSG_FLUSH, &rm->m_flags);
  137. }
  138. spin_unlock_irqrestore(&cp->cp_lock, flags);
  139. }
  140. }
  141. conn->c_peer_gen_num = peer_gen_num;
  142. }
  143. }
  144. /*
  145. * Process all extension headers that come with this message.
  146. */
  147. static void rds_recv_incoming_exthdrs(struct rds_incoming *inc, struct rds_sock *rs)
  148. {
  149. struct rds_header *hdr = &inc->i_hdr;
  150. unsigned int pos = 0, type, len;
  151. union {
  152. struct rds_ext_header_version version;
  153. struct rds_ext_header_rdma rdma;
  154. struct rds_ext_header_rdma_dest rdma_dest;
  155. } buffer;
  156. while (1) {
  157. len = sizeof(buffer);
  158. type = rds_message_next_extension(hdr, &pos, &buffer, &len);
  159. if (type == RDS_EXTHDR_NONE)
  160. break;
  161. /* Process extension header here */
  162. switch (type) {
  163. case RDS_EXTHDR_RDMA:
  164. rds_rdma_unuse(rs, be32_to_cpu(buffer.rdma.h_rdma_rkey), 0);
  165. break;
  166. case RDS_EXTHDR_RDMA_DEST:
  167. /* We ignore the size for now. We could stash it
  168. * somewhere and use it for error checking. */
  169. inc->i_usercopy.rdma_cookie = rds_rdma_make_cookie(
  170. be32_to_cpu(buffer.rdma_dest.h_rdma_rkey),
  171. be32_to_cpu(buffer.rdma_dest.h_rdma_offset));
  172. break;
  173. }
  174. }
  175. }
  176. static void rds_recv_hs_exthdrs(struct rds_header *hdr,
  177. struct rds_connection *conn)
  178. {
  179. unsigned int pos = 0, type, len;
  180. union {
  181. struct rds_ext_header_version version;
  182. __be16 rds_npaths;
  183. __be32 rds_gen_num;
  184. u8 dummy;
  185. } buffer;
  186. bool new_with_sport_idx = false;
  187. u32 new_peer_gen_num = 0;
  188. int new_npaths;
  189. bool fan_out;
  190. new_npaths = conn->c_npaths;
  191. while (1) {
  192. len = sizeof(buffer);
  193. type = rds_message_next_extension(hdr, &pos, &buffer, &len);
  194. if (type == RDS_EXTHDR_NONE)
  195. break;
  196. /* Process extension header here */
  197. switch (type) {
  198. case RDS_EXTHDR_NPATHS:
  199. new_npaths = min_t(int, RDS_MPATH_WORKERS,
  200. be16_to_cpu(buffer.rds_npaths));
  201. break;
  202. case RDS_EXTHDR_GEN_NUM:
  203. new_peer_gen_num = be32_to_cpu(buffer.rds_gen_num);
  204. break;
  205. case RDS_EXTHDR_SPORT_IDX:
  206. new_with_sport_idx = true;
  207. break;
  208. default:
  209. pr_warn_ratelimited("ignoring unknown exthdr type "
  210. "0x%x\n", type);
  211. }
  212. }
  213. conn->c_with_sport_idx = new_with_sport_idx;
  214. if (new_npaths > 1 && new_npaths != conn->c_npaths) {
  215. /* We're about to fan-out.
  216. * Make sure that messages from cp_index#0
  217. * are sent prior to handling other lanes.
  218. */
  219. struct rds_conn_path *cp0 = conn->c_path;
  220. unsigned long flags;
  221. spin_lock_irqsave(&cp0->cp_lock, flags);
  222. conn->c_cp0_mprds_catchup_tx_seq = cp0->cp_next_tx_seq;
  223. spin_unlock_irqrestore(&cp0->cp_lock, flags);
  224. fan_out = true;
  225. } else {
  226. fan_out = false;
  227. }
  228. /* if RDS_EXTHDR_NPATHS was not found, default to a single-path */
  229. conn->c_npaths = max_t(int, new_npaths, 1);
  230. conn->c_ping_triggered = 0;
  231. rds_conn_peer_gen_update(conn, new_peer_gen_num);
  232. if (conn->c_npaths > 1 &&
  233. conn->c_trans->conn_slots_available)
  234. conn->c_trans->conn_slots_available(conn, fan_out);
  235. }
  236. /* rds_start_mprds() will synchronously start multiple paths when appropriate.
  237. * The scheme is based on the following rules:
  238. *
  239. * 1. rds_sendmsg on first connect attempt sends the probe ping, with the
  240. * sender's npaths (s_npaths)
  241. * 2. rcvr of probe-ping knows the mprds_paths = min(s_npaths, r_npaths). It
  242. * sends back a probe-pong with r_npaths. After that, if rcvr is the
  243. * smaller ip addr, it starts rds_conn_path_connect_if_down on all
  244. * mprds_paths.
  245. * 3. sender gets woken up, and can move to rds_conn_path_connect_if_down.
  246. * If it is the smaller ipaddr, rds_conn_path_connect_if_down can be
  247. * called after reception of the probe-pong on all mprds_paths.
  248. * Otherwise (sender of probe-ping is not the smaller ip addr): just call
  249. * rds_conn_path_connect_if_down on the hashed path. (see rule 4)
  250. * 4. rds_connect_worker must only trigger a connection if laddr < faddr.
  251. * 5. sender may end up queuing the packet on the cp. will get sent out later.
  252. * when connection is completed.
  253. */
  254. static void rds_start_mprds(struct rds_connection *conn)
  255. {
  256. int i;
  257. struct rds_conn_path *cp;
  258. if (conn->c_npaths > 1 &&
  259. rds_addr_cmp(&conn->c_laddr, &conn->c_faddr) < 0) {
  260. for (i = 0; i < conn->c_npaths; i++) {
  261. cp = &conn->c_path[i];
  262. rds_conn_path_connect_if_down(cp);
  263. }
  264. }
  265. }
  266. /*
  267. * The transport must make sure that this is serialized against other
  268. * rx and conn reset on this specific conn.
  269. *
  270. * We currently assert that only one fragmented message will be sent
  271. * down a connection at a time. This lets us reassemble in the conn
  272. * instead of per-flow which means that we don't have to go digging through
  273. * flows to tear down partial reassembly progress on conn failure and
  274. * we save flow lookup and locking for each frag arrival. It does mean
  275. * that small messages will wait behind large ones. Fragmenting at all
  276. * is only to reduce the memory consumption of pre-posted buffers.
  277. *
  278. * The caller passes in saddr and daddr instead of us getting it from the
  279. * conn. This lets loopback, who only has one conn for both directions,
  280. * tell us which roles the addrs in the conn are playing for this message.
  281. */
  282. void rds_recv_incoming(struct rds_connection *conn, struct in6_addr *saddr,
  283. struct in6_addr *daddr,
  284. struct rds_incoming *inc, gfp_t gfp)
  285. {
  286. struct rds_sock *rs = NULL;
  287. struct sock *sk;
  288. unsigned long flags;
  289. struct rds_conn_path *cp;
  290. inc->i_conn = conn;
  291. inc->i_rx_jiffies = jiffies;
  292. if (conn->c_trans->t_mp_capable)
  293. cp = inc->i_conn_path;
  294. else
  295. cp = &conn->c_path[0];
  296. rdsdebug("conn %p next %llu inc %p seq %llu len %u sport %u dport %u "
  297. "flags 0x%x rx_jiffies %lu\n", conn,
  298. (unsigned long long)cp->cp_next_rx_seq,
  299. inc,
  300. (unsigned long long)be64_to_cpu(inc->i_hdr.h_sequence),
  301. be32_to_cpu(inc->i_hdr.h_len),
  302. be16_to_cpu(inc->i_hdr.h_sport),
  303. be16_to_cpu(inc->i_hdr.h_dport),
  304. inc->i_hdr.h_flags,
  305. inc->i_rx_jiffies);
  306. /*
  307. * Sequence numbers should only increase. Messages get their
  308. * sequence number as they're queued in a sending conn. They
  309. * can be dropped, though, if the sending socket is closed before
  310. * they hit the wire. So sequence numbers can skip forward
  311. * under normal operation. They can also drop back in the conn
  312. * failover case as previously sent messages are resent down the
  313. * new instance of a conn. We drop those, otherwise we have
  314. * to assume that the next valid seq does not come after a
  315. * hole in the fragment stream.
  316. *
  317. * The headers don't give us a way to realize if fragments of
  318. * a message have been dropped. We assume that frags that arrive
  319. * to a flow are part of the current message on the flow that is
  320. * being reassembled. This means that senders can't drop messages
  321. * from the sending conn until all their frags are sent.
  322. *
  323. * XXX we could spend more on the wire to get more robust failure
  324. * detection, arguably worth it to avoid data corruption.
  325. */
  326. if (be64_to_cpu(inc->i_hdr.h_sequence) < cp->cp_next_rx_seq &&
  327. (inc->i_hdr.h_flags & RDS_FLAG_RETRANSMITTED)) {
  328. rds_stats_inc(s_recv_drop_old_seq);
  329. goto out;
  330. }
  331. cp->cp_next_rx_seq = be64_to_cpu(inc->i_hdr.h_sequence) + 1;
  332. if (rds_sysctl_ping_enable && inc->i_hdr.h_dport == 0) {
  333. if (inc->i_hdr.h_sport == 0) {
  334. rdsdebug("ignore ping with 0 sport from %pI6c\n",
  335. saddr);
  336. goto out;
  337. }
  338. rds_stats_inc(s_recv_ping);
  339. rds_send_pong(cp, inc->i_hdr.h_sport);
  340. /* if this is a handshake ping, start multipath if necessary */
  341. if (RDS_HS_PROBE(be16_to_cpu(inc->i_hdr.h_sport),
  342. be16_to_cpu(inc->i_hdr.h_dport))) {
  343. rds_recv_hs_exthdrs(&inc->i_hdr, cp->cp_conn);
  344. rds_start_mprds(cp->cp_conn);
  345. }
  346. goto out;
  347. }
  348. if (be16_to_cpu(inc->i_hdr.h_dport) == RDS_FLAG_PROBE_PORT &&
  349. inc->i_hdr.h_sport == 0) {
  350. rds_recv_hs_exthdrs(&inc->i_hdr, cp->cp_conn);
  351. /* if this is a handshake pong, start multipath if necessary */
  352. rds_start_mprds(cp->cp_conn);
  353. wake_up(&cp->cp_conn->c_hs_waitq);
  354. goto out;
  355. }
  356. rs = rds_find_bound(daddr, inc->i_hdr.h_dport, conn->c_bound_if);
  357. if (!rs) {
  358. rds_stats_inc(s_recv_drop_no_sock);
  359. goto out;
  360. }
  361. /* Process extension headers */
  362. rds_recv_incoming_exthdrs(inc, rs);
  363. /* We can be racing with rds_release() which marks the socket dead. */
  364. sk = rds_rs_to_sk(rs);
  365. /* serialize with rds_release -> sock_orphan */
  366. write_lock_irqsave(&rs->rs_recv_lock, flags);
  367. if (!sock_flag(sk, SOCK_DEAD)) {
  368. rdsdebug("adding inc %p to rs %p's recv queue\n", inc, rs);
  369. rds_stats_inc(s_recv_queued);
  370. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  371. be32_to_cpu(inc->i_hdr.h_len),
  372. inc->i_hdr.h_dport);
  373. if (sock_flag(sk, SOCK_RCVTSTAMP))
  374. inc->i_usercopy.rx_tstamp = ktime_get_real();
  375. rds_inc_addref(inc);
  376. inc->i_rx_lat_trace[RDS_MSG_RX_END] = local_clock();
  377. list_add_tail(&inc->i_item, &rs->rs_recv_queue);
  378. __rds_wake_sk_sleep(sk);
  379. } else {
  380. rds_stats_inc(s_recv_drop_dead_sock);
  381. }
  382. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  383. out:
  384. if (rs)
  385. rds_sock_put(rs);
  386. }
  387. EXPORT_SYMBOL_GPL(rds_recv_incoming);
  388. /*
  389. * be very careful here. This is being called as the condition in
  390. * wait_event_*() needs to cope with being called many times.
  391. */
  392. static int rds_next_incoming(struct rds_sock *rs, struct rds_incoming **inc)
  393. {
  394. unsigned long flags;
  395. if (!*inc) {
  396. read_lock_irqsave(&rs->rs_recv_lock, flags);
  397. if (!list_empty(&rs->rs_recv_queue)) {
  398. *inc = list_entry(rs->rs_recv_queue.next,
  399. struct rds_incoming,
  400. i_item);
  401. rds_inc_addref(*inc);
  402. }
  403. read_unlock_irqrestore(&rs->rs_recv_lock, flags);
  404. }
  405. return *inc != NULL;
  406. }
  407. static int rds_still_queued(struct rds_sock *rs, struct rds_incoming *inc,
  408. int drop)
  409. {
  410. struct sock *sk = rds_rs_to_sk(rs);
  411. int ret = 0;
  412. unsigned long flags;
  413. struct rds_incoming *to_drop = NULL;
  414. write_lock_irqsave(&rs->rs_recv_lock, flags);
  415. if (!list_empty(&inc->i_item)) {
  416. ret = 1;
  417. if (drop) {
  418. /* XXX make sure this i_conn is reliable */
  419. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  420. -be32_to_cpu(inc->i_hdr.h_len),
  421. inc->i_hdr.h_dport);
  422. list_del_init(&inc->i_item);
  423. to_drop = inc;
  424. }
  425. }
  426. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  427. if (to_drop)
  428. rds_inc_put(to_drop);
  429. rdsdebug("inc %p rs %p still %d dropped %d\n", inc, rs, ret, drop);
  430. return ret;
  431. }
  432. /*
  433. * Pull errors off the error queue.
  434. * If msghdr is NULL, we will just purge the error queue.
  435. */
  436. int rds_notify_queue_get(struct rds_sock *rs, struct msghdr *msghdr)
  437. {
  438. struct rds_notifier *notifier;
  439. struct rds_rdma_notify cmsg;
  440. unsigned int count = 0, max_messages = ~0U;
  441. unsigned long flags;
  442. LIST_HEAD(copy);
  443. int err = 0;
  444. memset(&cmsg, 0, sizeof(cmsg)); /* fill holes with zero */
  445. /* put_cmsg copies to user space and thus may sleep. We can't do this
  446. * with rs_lock held, so first grab as many notifications as we can stuff
  447. * in the user provided cmsg buffer. We don't try to copy more, to avoid
  448. * losing notifications - except when the buffer is so small that it wouldn't
  449. * even hold a single notification. Then we give him as much of this single
  450. * msg as we can squeeze in, and set MSG_CTRUNC.
  451. */
  452. if (msghdr) {
  453. max_messages = msghdr->msg_controllen / CMSG_SPACE(sizeof(cmsg));
  454. if (!max_messages)
  455. max_messages = 1;
  456. }
  457. spin_lock_irqsave(&rs->rs_lock, flags);
  458. while (!list_empty(&rs->rs_notify_queue) && count < max_messages) {
  459. notifier = list_entry(rs->rs_notify_queue.next,
  460. struct rds_notifier, n_list);
  461. list_move(&notifier->n_list, &copy);
  462. count++;
  463. }
  464. spin_unlock_irqrestore(&rs->rs_lock, flags);
  465. if (!count)
  466. return 0;
  467. while (!list_empty(&copy)) {
  468. notifier = list_entry(copy.next, struct rds_notifier, n_list);
  469. if (msghdr) {
  470. cmsg.user_token = notifier->n_user_token;
  471. cmsg.status = notifier->n_status;
  472. err = put_cmsg(msghdr, SOL_RDS, RDS_CMSG_RDMA_STATUS,
  473. sizeof(cmsg), &cmsg);
  474. if (err)
  475. break;
  476. }
  477. list_del_init(&notifier->n_list);
  478. kfree(notifier);
  479. }
  480. /* If we bailed out because of an error in put_cmsg,
  481. * we may be left with one or more notifications that we
  482. * didn't process. Return them to the head of the list. */
  483. if (!list_empty(&copy)) {
  484. spin_lock_irqsave(&rs->rs_lock, flags);
  485. list_splice(&copy, &rs->rs_notify_queue);
  486. spin_unlock_irqrestore(&rs->rs_lock, flags);
  487. }
  488. return err;
  489. }
  490. /*
  491. * Queue a congestion notification
  492. */
  493. static int rds_notify_cong(struct rds_sock *rs, struct msghdr *msghdr)
  494. {
  495. uint64_t notify = rs->rs_cong_notify;
  496. unsigned long flags;
  497. int err;
  498. err = put_cmsg(msghdr, SOL_RDS, RDS_CMSG_CONG_UPDATE,
  499. sizeof(notify), &notify);
  500. if (err)
  501. return err;
  502. spin_lock_irqsave(&rs->rs_lock, flags);
  503. rs->rs_cong_notify &= ~notify;
  504. spin_unlock_irqrestore(&rs->rs_lock, flags);
  505. return 0;
  506. }
  507. /*
  508. * Receive any control messages.
  509. */
  510. static int rds_cmsg_recv(struct rds_incoming *inc, struct msghdr *msg,
  511. struct rds_sock *rs)
  512. {
  513. int ret = 0;
  514. if (inc->i_usercopy.rdma_cookie) {
  515. ret = put_cmsg(msg, SOL_RDS, RDS_CMSG_RDMA_DEST,
  516. sizeof(inc->i_usercopy.rdma_cookie),
  517. &inc->i_usercopy.rdma_cookie);
  518. if (ret)
  519. goto out;
  520. }
  521. if ((inc->i_usercopy.rx_tstamp != 0) &&
  522. sock_flag(rds_rs_to_sk(rs), SOCK_RCVTSTAMP)) {
  523. struct __kernel_old_timeval tv =
  524. ns_to_kernel_old_timeval(inc->i_usercopy.rx_tstamp);
  525. if (!sock_flag(rds_rs_to_sk(rs), SOCK_TSTAMP_NEW)) {
  526. ret = put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_OLD,
  527. sizeof(tv), &tv);
  528. } else {
  529. struct __kernel_sock_timeval sk_tv;
  530. sk_tv.tv_sec = tv.tv_sec;
  531. sk_tv.tv_usec = tv.tv_usec;
  532. ret = put_cmsg(msg, SOL_SOCKET, SO_TIMESTAMP_NEW,
  533. sizeof(sk_tv), &sk_tv);
  534. }
  535. if (ret)
  536. goto out;
  537. }
  538. if (rs->rs_rx_traces) {
  539. struct rds_cmsg_rx_trace t;
  540. int i, j;
  541. memset(&t, 0, sizeof(t));
  542. inc->i_rx_lat_trace[RDS_MSG_RX_CMSG] = local_clock();
  543. t.rx_traces = rs->rs_rx_traces;
  544. for (i = 0; i < rs->rs_rx_traces; i++) {
  545. j = rs->rs_rx_trace[i];
  546. t.rx_trace_pos[i] = j;
  547. t.rx_trace[i] = inc->i_rx_lat_trace[j + 1] -
  548. inc->i_rx_lat_trace[j];
  549. }
  550. ret = put_cmsg(msg, SOL_RDS, RDS_CMSG_RXPATH_LATENCY,
  551. sizeof(t), &t);
  552. if (ret)
  553. goto out;
  554. }
  555. out:
  556. return ret;
  557. }
  558. static bool rds_recvmsg_zcookie(struct rds_sock *rs, struct msghdr *msg)
  559. {
  560. struct rds_msg_zcopy_queue *q = &rs->rs_zcookie_queue;
  561. struct rds_msg_zcopy_info *info = NULL;
  562. struct rds_zcopy_cookies *done;
  563. unsigned long flags;
  564. if (!msg->msg_control)
  565. return false;
  566. if (!sock_flag(rds_rs_to_sk(rs), SOCK_ZEROCOPY) ||
  567. msg->msg_controllen < CMSG_SPACE(sizeof(*done)))
  568. return false;
  569. spin_lock_irqsave(&q->lock, flags);
  570. if (!list_empty(&q->zcookie_head)) {
  571. info = list_entry(q->zcookie_head.next,
  572. struct rds_msg_zcopy_info, rs_zcookie_next);
  573. list_del(&info->rs_zcookie_next);
  574. }
  575. spin_unlock_irqrestore(&q->lock, flags);
  576. if (!info)
  577. return false;
  578. done = &info->zcookies;
  579. if (put_cmsg(msg, SOL_RDS, RDS_CMSG_ZCOPY_COMPLETION, sizeof(*done),
  580. done)) {
  581. spin_lock_irqsave(&q->lock, flags);
  582. list_add(&info->rs_zcookie_next, &q->zcookie_head);
  583. spin_unlock_irqrestore(&q->lock, flags);
  584. return false;
  585. }
  586. kfree(info);
  587. return true;
  588. }
  589. int rds_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
  590. int msg_flags)
  591. {
  592. struct sock *sk = sock->sk;
  593. struct rds_sock *rs = rds_sk_to_rs(sk);
  594. long timeo;
  595. int ret = 0, nonblock = msg_flags & MSG_DONTWAIT;
  596. DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
  597. DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
  598. struct rds_incoming *inc = NULL;
  599. /* udp_recvmsg()->sock_recvtimeo() gets away without locking too.. */
  600. timeo = sock_rcvtimeo(sk, nonblock);
  601. rdsdebug("size %zu flags 0x%x timeo %ld\n", size, msg_flags, timeo);
  602. if (msg_flags & MSG_OOB)
  603. goto out;
  604. if (msg_flags & MSG_ERRQUEUE)
  605. return sock_recv_errqueue(sk, msg, size, SOL_IP, IP_RECVERR);
  606. while (1) {
  607. /* If there are pending notifications, do those - and nothing else */
  608. if (!list_empty(&rs->rs_notify_queue)) {
  609. ret = rds_notify_queue_get(rs, msg);
  610. break;
  611. }
  612. if (rs->rs_cong_notify) {
  613. ret = rds_notify_cong(rs, msg);
  614. break;
  615. }
  616. if (!rds_next_incoming(rs, &inc)) {
  617. if (nonblock) {
  618. bool reaped = rds_recvmsg_zcookie(rs, msg);
  619. ret = reaped ? 0 : -EAGAIN;
  620. break;
  621. }
  622. timeo = wait_event_interruptible_timeout(*sk_sleep(sk),
  623. (!list_empty(&rs->rs_notify_queue) ||
  624. rs->rs_cong_notify ||
  625. rds_next_incoming(rs, &inc)), timeo);
  626. rdsdebug("recvmsg woke inc %p timeo %ld\n", inc,
  627. timeo);
  628. if (timeo > 0 || timeo == MAX_SCHEDULE_TIMEOUT)
  629. continue;
  630. ret = timeo;
  631. if (ret == 0)
  632. ret = -ETIMEDOUT;
  633. break;
  634. }
  635. rdsdebug("copying inc %p from %pI6c:%u to user\n", inc,
  636. &inc->i_conn->c_faddr,
  637. ntohs(inc->i_hdr.h_sport));
  638. ret = inc->i_conn->c_trans->inc_copy_to_user(inc, &msg->msg_iter);
  639. if (ret < 0)
  640. break;
  641. /*
  642. * if the message we just copied isn't at the head of the
  643. * recv queue then someone else raced us to return it, try
  644. * to get the next message.
  645. */
  646. if (!rds_still_queued(rs, inc, !(msg_flags & MSG_PEEK))) {
  647. rds_inc_put(inc);
  648. inc = NULL;
  649. rds_stats_inc(s_recv_deliver_raced);
  650. iov_iter_revert(&msg->msg_iter, ret);
  651. continue;
  652. }
  653. if (ret < be32_to_cpu(inc->i_hdr.h_len)) {
  654. if (msg_flags & MSG_TRUNC)
  655. ret = be32_to_cpu(inc->i_hdr.h_len);
  656. msg->msg_flags |= MSG_TRUNC;
  657. }
  658. if (rds_cmsg_recv(inc, msg, rs)) {
  659. ret = -EFAULT;
  660. break;
  661. }
  662. rds_recvmsg_zcookie(rs, msg);
  663. rds_stats_inc(s_recv_delivered);
  664. if (msg->msg_name) {
  665. if (ipv6_addr_v4mapped(&inc->i_saddr)) {
  666. sin->sin_family = AF_INET;
  667. sin->sin_port = inc->i_hdr.h_sport;
  668. sin->sin_addr.s_addr =
  669. inc->i_saddr.s6_addr32[3];
  670. memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
  671. msg->msg_namelen = sizeof(*sin);
  672. } else {
  673. sin6->sin6_family = AF_INET6;
  674. sin6->sin6_port = inc->i_hdr.h_sport;
  675. sin6->sin6_addr = inc->i_saddr;
  676. sin6->sin6_flowinfo = 0;
  677. sin6->sin6_scope_id = rs->rs_bound_scope_id;
  678. msg->msg_namelen = sizeof(*sin6);
  679. }
  680. }
  681. break;
  682. }
  683. if (inc)
  684. rds_inc_put(inc);
  685. out:
  686. return ret;
  687. }
  688. /*
  689. * The socket is being shut down and we're asked to drop messages that were
  690. * queued for recvmsg. The caller has unbound the socket so the receive path
  691. * won't queue any more incoming fragments or messages on the socket.
  692. */
  693. void rds_clear_recv_queue(struct rds_sock *rs)
  694. {
  695. struct sock *sk = rds_rs_to_sk(rs);
  696. struct rds_incoming *inc, *tmp;
  697. unsigned long flags;
  698. LIST_HEAD(to_drop);
  699. write_lock_irqsave(&rs->rs_recv_lock, flags);
  700. list_for_each_entry_safe(inc, tmp, &rs->rs_recv_queue, i_item) {
  701. rds_recv_rcvbuf_delta(rs, sk, inc->i_conn->c_lcong,
  702. -be32_to_cpu(inc->i_hdr.h_len),
  703. inc->i_hdr.h_dport);
  704. list_move(&inc->i_item, &to_drop);
  705. }
  706. write_unlock_irqrestore(&rs->rs_recv_lock, flags);
  707. list_for_each_entry_safe(inc, tmp, &to_drop, i_item) {
  708. list_del_init(&inc->i_item);
  709. rds_inc_put(inc);
  710. }
  711. }
  712. /*
  713. * inc->i_saddr isn't used here because it is only set in the receive
  714. * path.
  715. */
  716. void rds_inc_info_copy(struct rds_incoming *inc,
  717. struct rds_info_iterator *iter,
  718. __be32 saddr, __be32 daddr, int flip)
  719. {
  720. struct rds_info_message minfo;
  721. minfo.seq = be64_to_cpu(inc->i_hdr.h_sequence);
  722. minfo.len = be32_to_cpu(inc->i_hdr.h_len);
  723. minfo.tos = inc->i_conn->c_tos;
  724. if (flip) {
  725. minfo.laddr = daddr;
  726. minfo.faddr = saddr;
  727. minfo.lport = inc->i_hdr.h_dport;
  728. minfo.fport = inc->i_hdr.h_sport;
  729. } else {
  730. minfo.laddr = saddr;
  731. minfo.faddr = daddr;
  732. minfo.lport = inc->i_hdr.h_sport;
  733. minfo.fport = inc->i_hdr.h_dport;
  734. }
  735. minfo.flags = 0;
  736. rds_info_copy(iter, &minfo, sizeof(minfo));
  737. }
  738. #if IS_ENABLED(CONFIG_IPV6)
  739. void rds6_inc_info_copy(struct rds_incoming *inc,
  740. struct rds_info_iterator *iter,
  741. struct in6_addr *saddr, struct in6_addr *daddr,
  742. int flip)
  743. {
  744. struct rds6_info_message minfo6;
  745. minfo6.seq = be64_to_cpu(inc->i_hdr.h_sequence);
  746. minfo6.len = be32_to_cpu(inc->i_hdr.h_len);
  747. minfo6.tos = inc->i_conn->c_tos;
  748. if (flip) {
  749. minfo6.laddr = *daddr;
  750. minfo6.faddr = *saddr;
  751. minfo6.lport = inc->i_hdr.h_dport;
  752. minfo6.fport = inc->i_hdr.h_sport;
  753. } else {
  754. minfo6.laddr = *saddr;
  755. minfo6.faddr = *daddr;
  756. minfo6.lport = inc->i_hdr.h_sport;
  757. minfo6.fport = inc->i_hdr.h_dport;
  758. }
  759. minfo6.flags = 0;
  760. rds_info_copy(iter, &minfo6, sizeof(minfo6));
  761. }
  762. #endif