devmem.rst 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. .. SPDX-License-Identifier: GPL-2.0
  2. =================
  3. Device Memory TCP
  4. =================
  5. Intro
  6. =====
  7. Device memory TCP (devmem TCP) enables receiving data directly into device
  8. memory (dmabuf). The feature is currently implemented for TCP sockets.
  9. Opportunity
  10. -----------
  11. A large number of data transfers have device memory as the source and/or
  12. destination. Accelerators drastically increased the prevalence of such
  13. transfers. Some examples include:
  14. - Distributed training, where ML accelerators, such as GPUs on different hosts,
  15. exchange data.
  16. - Distributed raw block storage applications transfer large amounts of data with
  17. remote SSDs. Much of this data does not require host processing.
  18. Typically the Device-to-Device data transfers in the network are implemented as
  19. the following low-level operations: Device-to-Host copy, Host-to-Host network
  20. transfer, and Host-to-Device copy.
  21. The flow involving host copies is suboptimal, especially for bulk data transfers,
  22. and can put significant strains on system resources such as host memory
  23. bandwidth and PCIe bandwidth.
  24. Devmem TCP optimizes this use case by implementing socket APIs that enable
  25. the user to receive incoming network packets directly into device memory.
  26. Packet payloads go directly from the NIC to device memory.
  27. Packet headers go to host memory and are processed by the TCP/IP stack
  28. normally. The NIC must support header split to achieve this.
  29. Advantages:
  30. - Alleviate host memory bandwidth pressure, compared to existing
  31. network-transfer + device-copy semantics.
  32. - Alleviate PCIe bandwidth pressure, by limiting data transfer to the lowest
  33. level of the PCIe tree, compared to the traditional path which sends data
  34. through the root complex.
  35. More Info
  36. ---------
  37. slides, video
  38. https://netdevconf.org/0x17/sessions/talk/device-memory-tcp.html
  39. patchset
  40. [PATCH net-next v24 00/13] Device Memory TCP
  41. https://lore.kernel.org/netdev/20240831004313.3713467-1-almasrymina@google.com/
  42. Interface
  43. =========
  44. Example
  45. -------
  46. tools/testing/selftests/net/ncdevmem.c:do_server shows an example of setting up
  47. the RX path of this API.
  48. NIC Setup
  49. ---------
  50. Header split, flow steering, & RSS are required features for devmem TCP.
  51. Header split is used to split incoming packets into a header buffer in host
  52. memory, and a payload buffer in device memory.
  53. Flow steering & RSS are used to ensure that only flows targeting devmem land on
  54. an RX queue bound to devmem.
  55. Enable header split & flow steering::
  56. # enable header split
  57. ethtool -G eth1 tcp-data-split on
  58. # enable flow steering
  59. ethtool -K eth1 ntuple on
  60. Configure RSS to steer all traffic away from the target RX queue (queue 15 in
  61. this example)::
  62. ethtool --set-rxfh-indir eth1 equal 15
  63. The user must bind a dmabuf to any number of RX queues on a given NIC using
  64. the netlink API::
  65. /* Bind dmabuf to NIC RX queue 15 */
  66. struct netdev_queue *queues;
  67. queues = malloc(sizeof(*queues) * 1);
  68. queues[0]._present.type = 1;
  69. queues[0]._present.idx = 1;
  70. queues[0].type = NETDEV_RX_QUEUE_TYPE_RX;
  71. queues[0].idx = 15;
  72. *ys = ynl_sock_create(&ynl_netdev_family, &yerr);
  73. req = netdev_bind_rx_req_alloc();
  74. netdev_bind_rx_req_set_ifindex(req, 1 /* ifindex */);
  75. netdev_bind_rx_req_set_dmabuf_fd(req, dmabuf_fd);
  76. __netdev_bind_rx_req_set_queues(req, queues, n_queue_index);
  77. rsp = netdev_bind_rx(*ys, req);
  78. dmabuf_id = rsp->dmabuf_id;
  79. The netlink API returns a dmabuf_id: a unique ID that refers to this dmabuf
  80. that has been bound.
  81. The user can unbind the dmabuf from the netdevice by closing the netlink socket
  82. that established the binding. We do this so that the binding is automatically
  83. unbound even if the userspace process crashes.
  84. Note that any reasonably well-behaved dmabuf from any exporter should work with
  85. devmem TCP, even if the dmabuf is not actually backed by devmem. An example of
  86. this is udmabuf, which wraps user memory (non-devmem) in a dmabuf.
  87. Socket Setup
  88. ------------
  89. The socket must be flow steered to the dmabuf bound RX queue::
  90. ethtool -N eth1 flow-type tcp4 ... queue 15
  91. Receiving data
  92. --------------
  93. The user application must signal to the kernel that it is capable of receiving
  94. devmem data by passing the MSG_SOCK_DEVMEM flag to recvmsg::
  95. ret = recvmsg(fd, &msg, MSG_SOCK_DEVMEM);
  96. Applications that do not specify the MSG_SOCK_DEVMEM flag will receive an EFAULT
  97. on devmem data.
  98. Devmem data is received directly into the dmabuf bound to the NIC in 'NIC
  99. Setup', and the kernel signals such to the user via the SCM_DEVMEM_* cmsgs::
  100. for (cm = CMSG_FIRSTHDR(&msg); cm; cm = CMSG_NXTHDR(&msg, cm)) {
  101. if (cm->cmsg_level != SOL_SOCKET ||
  102. (cm->cmsg_type != SCM_DEVMEM_DMABUF &&
  103. cm->cmsg_type != SCM_DEVMEM_LINEAR))
  104. continue;
  105. dmabuf_cmsg = (struct dmabuf_cmsg *)CMSG_DATA(cm);
  106. if (cm->cmsg_type == SCM_DEVMEM_DMABUF) {
  107. /* Frag landed in dmabuf.
  108. *
  109. * dmabuf_cmsg->dmabuf_id is the dmabuf the
  110. * frag landed on.
  111. *
  112. * dmabuf_cmsg->frag_offset is the offset into
  113. * the dmabuf where the frag starts.
  114. *
  115. * dmabuf_cmsg->frag_size is the size of the
  116. * frag.
  117. *
  118. * dmabuf_cmsg->frag_token is a token used to
  119. * refer to this frag for later freeing.
  120. */
  121. struct dmabuf_token token;
  122. token.token_start = dmabuf_cmsg->frag_token;
  123. token.token_count = 1;
  124. continue;
  125. }
  126. if (cm->cmsg_type == SCM_DEVMEM_LINEAR)
  127. /* Frag landed in linear buffer.
  128. *
  129. * dmabuf_cmsg->frag_size is the size of the
  130. * frag.
  131. */
  132. continue;
  133. }
  134. Applications may receive 2 cmsgs:
  135. - SCM_DEVMEM_DMABUF: this indicates the fragment landed in the dmabuf indicated
  136. by dmabuf_id.
  137. - SCM_DEVMEM_LINEAR: this indicates the fragment landed in the linear buffer.
  138. This typically happens when the NIC is unable to split the packet at the
  139. header boundary, such that part (or all) of the payload landed in host
  140. memory.
  141. Applications may receive no SO_DEVMEM_* cmsgs. That indicates non-devmem,
  142. regular TCP data that landed on an RX queue not bound to a dmabuf.
  143. Freeing frags
  144. -------------
  145. Frags received via SCM_DEVMEM_DMABUF are pinned by the kernel while the user
  146. processes the frag. The user must return the frag to the kernel via
  147. SO_DEVMEM_DONTNEED::
  148. ret = setsockopt(client_fd, SOL_SOCKET, SO_DEVMEM_DONTNEED, &token,
  149. sizeof(token));
  150. The user must ensure the tokens are returned to the kernel in a timely manner.
  151. Failure to do so will exhaust the limited dmabuf that is bound to the RX queue
  152. and will lead to packet drops.
  153. The user must pass no more than 128 tokens, with no more than 1024 total frags
  154. among the token->token_count across all the tokens. If the user provides more
  155. than 1024 frags, the kernel will free up to 1024 frags and return early.
  156. The kernel returns the number of actual frags freed. The number of frags freed
  157. can be less than the tokens provided by the user in case of:
  158. (a) an internal kernel leak bug.
  159. (b) the user passed more than 1024 frags.
  160. Implementation & Caveats
  161. ========================
  162. Unreadable skbs
  163. ---------------
  164. Devmem payloads are inaccessible to the kernel processing the packets. This
  165. results in a few quirks for payloads of devmem skbs:
  166. - Loopback is not functional. Loopback relies on copying the payload, which is
  167. not possible with devmem skbs.
  168. - Software checksum calculation fails.
  169. - TCP Dump and bpf can't access devmem packet payloads.
  170. Testing
  171. =======
  172. More realistic example code can be found in the kernel source under
  173. ``tools/testing/selftests/net/ncdevmem.c``
  174. ncdevmem is a devmem TCP netcat. It works very similarly to netcat, but
  175. receives data directly into a udmabuf.
  176. To run ncdevmem, you need to run it on a server on the machine under test, and
  177. you need to run netcat on a peer to provide the TX data.
  178. ncdevmem has a validation mode as well that expects a repeating pattern of
  179. incoming data and validates it as such. For example, you can launch
  180. ncdevmem on the server by::
  181. ncdevmem -s <server IP> -c <client IP> -f eth1 -d 3 -n 0000:06:00.0 -l \
  182. -p 5201 -v 7
  183. On client side, use regular netcat to send TX data to ncdevmem process
  184. on the server::
  185. yes $(echo -e \\x01\\x02\\x03\\x04\\x05\\x06) | \
  186. tr \\n \\0 | head -c 5G | nc <server IP> 5201 -p 5201