loop.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 <linux/in.h>
  36. #include "rds.h"
  37. #include "loop.h"
  38. static DEFINE_SPINLOCK(loop_conns_lock);
  39. static LIST_HEAD(loop_conns);
  40. /*
  41. * This 'loopback' transport is a special case for flows that originate
  42. * and terminate on the same machine.
  43. *
  44. * Connection build-up notices if the destination address is thought of
  45. * as a local address by a transport. At that time it decides to use the
  46. * loopback transport instead of the bound transport of the sending socket.
  47. *
  48. * The loopback transport's sending path just hands the sent rds_message
  49. * straight to the receiving path via an embedded rds_incoming.
  50. */
  51. /*
  52. * Usually a message transits both the sender and receiver's conns as it
  53. * flows to the receiver. In the loopback case, though, the receive path
  54. * is handed the sending conn so the sense of the addresses is reversed.
  55. */
  56. static int rds_loop_xmit(struct rds_connection *conn, struct rds_message *rm,
  57. unsigned int hdr_off, unsigned int sg,
  58. unsigned int off)
  59. {
  60. BUG_ON(hdr_off || sg || off);
  61. rds_inc_init(&rm->m_inc, conn, conn->c_laddr);
  62. rds_message_addref(rm); /* for the inc */
  63. rds_recv_incoming(conn, conn->c_laddr, conn->c_faddr, &rm->m_inc,
  64. GFP_KERNEL, KM_USER0);
  65. rds_send_drop_acked(conn, be64_to_cpu(rm->m_inc.i_hdr.h_sequence),
  66. NULL);
  67. rds_inc_put(&rm->m_inc);
  68. return sizeof(struct rds_header) + be32_to_cpu(rm->m_inc.i_hdr.h_len);
  69. }
  70. static int rds_loop_xmit_cong_map(struct rds_connection *conn,
  71. struct rds_cong_map *map,
  72. unsigned long offset)
  73. {
  74. unsigned long i;
  75. BUG_ON(offset);
  76. BUG_ON(map != conn->c_lcong);
  77. for (i = 0; i < RDS_CONG_MAP_PAGES; i++) {
  78. memcpy((void *)conn->c_fcong->m_page_addrs[i],
  79. (void *)map->m_page_addrs[i], PAGE_SIZE);
  80. }
  81. rds_cong_map_updated(conn->c_fcong, ~(u64) 0);
  82. return sizeof(struct rds_header) + RDS_CONG_MAP_BYTES;
  83. }
  84. /* we need to at least give the thread something to succeed */
  85. static int rds_loop_recv(struct rds_connection *conn)
  86. {
  87. return 0;
  88. }
  89. struct rds_loop_connection {
  90. struct list_head loop_node;
  91. struct rds_connection *conn;
  92. };
  93. /*
  94. * Even the loopback transport needs to keep track of its connections,
  95. * so it can call rds_conn_destroy() on them on exit. N.B. there are
  96. * 1+ loopback addresses (127.*.*.*) so it's not a bug to have
  97. * multiple loopback conns allocated, although rather useless.
  98. */
  99. static int rds_loop_conn_alloc(struct rds_connection *conn, gfp_t gfp)
  100. {
  101. struct rds_loop_connection *lc;
  102. unsigned long flags;
  103. lc = kzalloc(sizeof(struct rds_loop_connection), GFP_KERNEL);
  104. if (lc == NULL)
  105. return -ENOMEM;
  106. INIT_LIST_HEAD(&lc->loop_node);
  107. lc->conn = conn;
  108. conn->c_transport_data = lc;
  109. spin_lock_irqsave(&loop_conns_lock, flags);
  110. list_add_tail(&lc->loop_node, &loop_conns);
  111. spin_unlock_irqrestore(&loop_conns_lock, flags);
  112. return 0;
  113. }
  114. static void rds_loop_conn_free(void *arg)
  115. {
  116. struct rds_loop_connection *lc = arg;
  117. rdsdebug("lc %p\n", lc);
  118. list_del(&lc->loop_node);
  119. kfree(lc);
  120. }
  121. static int rds_loop_conn_connect(struct rds_connection *conn)
  122. {
  123. rds_connect_complete(conn);
  124. return 0;
  125. }
  126. static void rds_loop_conn_shutdown(struct rds_connection *conn)
  127. {
  128. }
  129. void rds_loop_exit(void)
  130. {
  131. struct rds_loop_connection *lc, *_lc;
  132. LIST_HEAD(tmp_list);
  133. /* avoid calling conn_destroy with irqs off */
  134. spin_lock_irq(&loop_conns_lock);
  135. list_splice(&loop_conns, &tmp_list);
  136. INIT_LIST_HEAD(&loop_conns);
  137. spin_unlock_irq(&loop_conns_lock);
  138. list_for_each_entry_safe(lc, _lc, &tmp_list, loop_node) {
  139. WARN_ON(lc->conn->c_passive);
  140. rds_conn_destroy(lc->conn);
  141. }
  142. }
  143. /*
  144. * This is missing .xmit_* because loop doesn't go through generic
  145. * rds_send_xmit() and doesn't call rds_recv_incoming(). .listen_stop and
  146. * .laddr_check are missing because transport.c doesn't iterate over
  147. * rds_loop_transport.
  148. */
  149. struct rds_transport rds_loop_transport = {
  150. .xmit = rds_loop_xmit,
  151. .xmit_cong_map = rds_loop_xmit_cong_map,
  152. .recv = rds_loop_recv,
  153. .conn_alloc = rds_loop_conn_alloc,
  154. .conn_free = rds_loop_conn_free,
  155. .conn_connect = rds_loop_conn_connect,
  156. .conn_shutdown = rds_loop_conn_shutdown,
  157. .inc_copy_to_user = rds_message_inc_copy_to_user,
  158. .inc_purge = rds_message_inc_purge,
  159. .inc_free = rds_message_inc_free,
  160. .t_name = "loopback",
  161. };