tcp_recv.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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/tcp.h>
  36. #include "rds.h"
  37. #include "tcp.h"
  38. static struct kmem_cache *rds_tcp_incoming_slab;
  39. void rds_tcp_inc_purge(struct rds_incoming *inc)
  40. {
  41. struct rds_tcp_incoming *tinc;
  42. tinc = container_of(inc, struct rds_tcp_incoming, ti_inc);
  43. rdsdebug("purging tinc %p inc %p\n", tinc, inc);
  44. skb_queue_purge(&tinc->ti_skb_list);
  45. }
  46. void rds_tcp_inc_free(struct rds_incoming *inc)
  47. {
  48. struct rds_tcp_incoming *tinc;
  49. tinc = container_of(inc, struct rds_tcp_incoming, ti_inc);
  50. rds_tcp_inc_purge(inc);
  51. rdsdebug("freeing tinc %p inc %p\n", tinc, inc);
  52. kmem_cache_free(rds_tcp_incoming_slab, tinc);
  53. }
  54. /*
  55. * this is pretty lame, but, whatever.
  56. */
  57. int rds_tcp_inc_copy_to_user(struct rds_incoming *inc, struct iovec *first_iov,
  58. size_t size)
  59. {
  60. struct rds_tcp_incoming *tinc;
  61. struct iovec *iov, tmp;
  62. struct sk_buff *skb;
  63. unsigned long to_copy, skb_off;
  64. int ret = 0;
  65. if (size == 0)
  66. goto out;
  67. tinc = container_of(inc, struct rds_tcp_incoming, ti_inc);
  68. iov = first_iov;
  69. tmp = *iov;
  70. skb_queue_walk(&tinc->ti_skb_list, skb) {
  71. skb_off = 0;
  72. while (skb_off < skb->len) {
  73. while (tmp.iov_len == 0) {
  74. iov++;
  75. tmp = *iov;
  76. }
  77. to_copy = min(tmp.iov_len, size);
  78. to_copy = min(to_copy, skb->len - skb_off);
  79. rdsdebug("ret %d size %zu skb %p skb_off %lu "
  80. "skblen %d iov_base %p iov_len %zu cpy %lu\n",
  81. ret, size, skb, skb_off, skb->len,
  82. tmp.iov_base, tmp.iov_len, to_copy);
  83. /* modifies tmp as it copies */
  84. if (skb_copy_datagram_iovec(skb, skb_off, &tmp,
  85. to_copy)) {
  86. ret = -EFAULT;
  87. goto out;
  88. }
  89. size -= to_copy;
  90. ret += to_copy;
  91. skb_off += to_copy;
  92. if (size == 0)
  93. goto out;
  94. }
  95. }
  96. out:
  97. return ret;
  98. }
  99. /*
  100. * We have a series of skbs that have fragmented pieces of the congestion
  101. * bitmap. They must add up to the exact size of the congestion bitmap. We
  102. * use the skb helpers to copy those into the pages that make up the in-memory
  103. * congestion bitmap for the remote address of this connection. We then tell
  104. * the congestion core that the bitmap has been changed so that it can wake up
  105. * sleepers.
  106. *
  107. * This is racing with sending paths which are using test_bit to see if the
  108. * bitmap indicates that their recipient is congested.
  109. */
  110. static void rds_tcp_cong_recv(struct rds_connection *conn,
  111. struct rds_tcp_incoming *tinc)
  112. {
  113. struct sk_buff *skb;
  114. unsigned int to_copy, skb_off;
  115. unsigned int map_off;
  116. unsigned int map_page;
  117. struct rds_cong_map *map;
  118. int ret;
  119. /* catch completely corrupt packets */
  120. if (be32_to_cpu(tinc->ti_inc.i_hdr.h_len) != RDS_CONG_MAP_BYTES)
  121. return;
  122. map_page = 0;
  123. map_off = 0;
  124. map = conn->c_fcong;
  125. skb_queue_walk(&tinc->ti_skb_list, skb) {
  126. skb_off = 0;
  127. while (skb_off < skb->len) {
  128. to_copy = min_t(unsigned int, PAGE_SIZE - map_off,
  129. skb->len - skb_off);
  130. BUG_ON(map_page >= RDS_CONG_MAP_PAGES);
  131. /* only returns 0 or -error */
  132. ret = skb_copy_bits(skb, skb_off,
  133. (void *)map->m_page_addrs[map_page] + map_off,
  134. to_copy);
  135. BUG_ON(ret != 0);
  136. skb_off += to_copy;
  137. map_off += to_copy;
  138. if (map_off == PAGE_SIZE) {
  139. map_off = 0;
  140. map_page++;
  141. }
  142. }
  143. }
  144. rds_cong_map_updated(map, ~(u64) 0);
  145. }
  146. struct rds_tcp_desc_arg {
  147. struct rds_connection *conn;
  148. gfp_t gfp;
  149. enum km_type km;
  150. };
  151. static int rds_tcp_data_recv(read_descriptor_t *desc, struct sk_buff *skb,
  152. unsigned int offset, size_t len)
  153. {
  154. struct rds_tcp_desc_arg *arg = desc->arg.data;
  155. struct rds_connection *conn = arg->conn;
  156. struct rds_tcp_connection *tc = conn->c_transport_data;
  157. struct rds_tcp_incoming *tinc = tc->t_tinc;
  158. struct sk_buff *clone;
  159. size_t left = len, to_copy;
  160. rdsdebug("tcp data tc %p skb %p offset %u len %zu\n", tc, skb, offset,
  161. len);
  162. /*
  163. * tcp_read_sock() interprets partial progress as an indication to stop
  164. * processing.
  165. */
  166. while (left) {
  167. if (tinc == NULL) {
  168. tinc = kmem_cache_alloc(rds_tcp_incoming_slab,
  169. arg->gfp);
  170. if (tinc == NULL) {
  171. desc->error = -ENOMEM;
  172. goto out;
  173. }
  174. tc->t_tinc = tinc;
  175. rdsdebug("alloced tinc %p\n", tinc);
  176. rds_inc_init(&tinc->ti_inc, conn, conn->c_faddr);
  177. /*
  178. * XXX * we might be able to use the __ variants when
  179. * we've already serialized at a higher level.
  180. */
  181. skb_queue_head_init(&tinc->ti_skb_list);
  182. }
  183. if (left && tc->t_tinc_hdr_rem) {
  184. to_copy = min(tc->t_tinc_hdr_rem, left);
  185. rdsdebug("copying %zu header from skb %p\n", to_copy,
  186. skb);
  187. skb_copy_bits(skb, offset,
  188. (char *)&tinc->ti_inc.i_hdr +
  189. sizeof(struct rds_header) -
  190. tc->t_tinc_hdr_rem,
  191. to_copy);
  192. tc->t_tinc_hdr_rem -= to_copy;
  193. left -= to_copy;
  194. offset += to_copy;
  195. if (tc->t_tinc_hdr_rem == 0) {
  196. /* could be 0 for a 0 len message */
  197. tc->t_tinc_data_rem =
  198. be32_to_cpu(tinc->ti_inc.i_hdr.h_len);
  199. }
  200. }
  201. if (left && tc->t_tinc_data_rem) {
  202. clone = skb_clone(skb, arg->gfp);
  203. if (clone == NULL) {
  204. desc->error = -ENOMEM;
  205. goto out;
  206. }
  207. to_copy = min(tc->t_tinc_data_rem, left);
  208. pskb_pull(clone, offset);
  209. pskb_trim(clone, to_copy);
  210. skb_queue_tail(&tinc->ti_skb_list, clone);
  211. rdsdebug("skb %p data %p len %d off %u to_copy %zu -> "
  212. "clone %p data %p len %d\n",
  213. skb, skb->data, skb->len, offset, to_copy,
  214. clone, clone->data, clone->len);
  215. tc->t_tinc_data_rem -= to_copy;
  216. left -= to_copy;
  217. offset += to_copy;
  218. }
  219. if (tc->t_tinc_hdr_rem == 0 && tc->t_tinc_data_rem == 0) {
  220. if (tinc->ti_inc.i_hdr.h_flags == RDS_FLAG_CONG_BITMAP)
  221. rds_tcp_cong_recv(conn, tinc);
  222. else
  223. rds_recv_incoming(conn, conn->c_faddr,
  224. conn->c_laddr, &tinc->ti_inc,
  225. arg->gfp, arg->km);
  226. tc->t_tinc_hdr_rem = sizeof(struct rds_header);
  227. tc->t_tinc_data_rem = 0;
  228. tc->t_tinc = NULL;
  229. rds_inc_put(&tinc->ti_inc);
  230. tinc = NULL;
  231. }
  232. }
  233. out:
  234. rdsdebug("returning len %zu left %zu skb len %d rx queue depth %d\n",
  235. len, left, skb->len,
  236. skb_queue_len(&tc->t_sock->sk->sk_receive_queue));
  237. return len - left;
  238. }
  239. /* the caller has to hold the sock lock */
  240. int rds_tcp_read_sock(struct rds_connection *conn, gfp_t gfp, enum km_type km)
  241. {
  242. struct rds_tcp_connection *tc = conn->c_transport_data;
  243. struct socket *sock = tc->t_sock;
  244. read_descriptor_t desc;
  245. struct rds_tcp_desc_arg arg;
  246. /* It's like glib in the kernel! */
  247. arg.conn = conn;
  248. arg.gfp = gfp;
  249. arg.km = km;
  250. desc.arg.data = &arg;
  251. desc.error = 0;
  252. desc.count = 1; /* give more than one skb per call */
  253. tcp_read_sock(sock->sk, &desc, rds_tcp_data_recv);
  254. rdsdebug("tcp_read_sock for tc %p gfp 0x%x returned %d\n", tc, gfp,
  255. desc.error);
  256. return desc.error;
  257. }
  258. /*
  259. * We hold the sock lock to serialize our rds_tcp_recv->tcp_read_sock from
  260. * data_ready.
  261. *
  262. * if we fail to allocate we're in trouble.. blindly wait some time before
  263. * trying again to see if the VM can free up something for us.
  264. */
  265. int rds_tcp_recv(struct rds_connection *conn)
  266. {
  267. struct rds_tcp_connection *tc = conn->c_transport_data;
  268. struct socket *sock = tc->t_sock;
  269. int ret = 0;
  270. rdsdebug("recv worker conn %p tc %p sock %p\n", conn, tc, sock);
  271. lock_sock(sock->sk);
  272. ret = rds_tcp_read_sock(conn, GFP_KERNEL, KM_USER0);
  273. release_sock(sock->sk);
  274. return ret;
  275. }
  276. void rds_tcp_data_ready(struct sock *sk, int bytes)
  277. {
  278. void (*ready)(struct sock *sk, int bytes);
  279. struct rds_connection *conn;
  280. struct rds_tcp_connection *tc;
  281. rdsdebug("data ready sk %p bytes %d\n", sk, bytes);
  282. read_lock(&sk->sk_callback_lock);
  283. conn = sk->sk_user_data;
  284. if (conn == NULL) { /* check for teardown race */
  285. ready = sk->sk_data_ready;
  286. goto out;
  287. }
  288. tc = conn->c_transport_data;
  289. ready = tc->t_orig_data_ready;
  290. rds_tcp_stats_inc(s_tcp_data_ready_calls);
  291. if (rds_tcp_read_sock(conn, GFP_ATOMIC, KM_SOFTIRQ0) == -ENOMEM)
  292. queue_delayed_work(rds_wq, &conn->c_recv_w, 0);
  293. out:
  294. read_unlock(&sk->sk_callback_lock);
  295. ready(sk, bytes);
  296. }
  297. int __init rds_tcp_recv_init(void)
  298. {
  299. rds_tcp_incoming_slab = kmem_cache_create("rds_tcp_incoming",
  300. sizeof(struct rds_tcp_incoming),
  301. 0, 0, NULL);
  302. if (rds_tcp_incoming_slab == NULL)
  303. return -ENOMEM;
  304. return 0;
  305. }
  306. void rds_tcp_recv_exit(void)
  307. {
  308. kmem_cache_destroy(rds_tcp_incoming_slab);
  309. }