tcp_lro.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*-
  2. * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  3. *
  4. * Copyright (c) 2006, Myricom Inc.
  5. * Copyright (c) 2008, Intel Corporation.
  6. * Copyright (c) 2016 Mellanox Technologies.
  7. * All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. * 2. Redistributions in binary form must reproduce the above copyright
  15. * notice, this list of conditions and the following disclaimer in the
  16. * documentation and/or other materials provided with the distribution.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  19. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  22. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. * SUCH DAMAGE.
  29. *
  30. * $FreeBSD$
  31. */
  32. #ifndef _TCP_LRO_H_
  33. #define _TCP_LRO_H_
  34. #include <sys/time.h>
  35. #ifndef TCP_LRO_ENTRIES
  36. /* Define default number of LRO entries per RX queue */
  37. #define TCP_LRO_ENTRIES 8
  38. #endif
  39. struct lro_entry {
  40. LIST_ENTRY(lro_entry) next;
  41. LIST_ENTRY(lro_entry) hash_next;
  42. struct mbuf *m_head;
  43. struct mbuf *m_tail;
  44. struct mbuf *m_last_mbuf;
  45. struct mbuf *m_prev_last;
  46. union {
  47. struct ip *ip4;
  48. struct ip6_hdr *ip6;
  49. } leip;
  50. union {
  51. in_addr_t s_ip4;
  52. struct in6_addr s_ip6;
  53. } lesource;
  54. union {
  55. in_addr_t d_ip4;
  56. struct in6_addr d_ip6;
  57. } ledest;
  58. uint16_t source_port;
  59. uint16_t dest_port;
  60. uint16_t eh_type; /* EthernetHeader type. */
  61. uint16_t append_cnt;
  62. uint32_t p_len; /* IP header payload length. */
  63. uint32_t ulp_csum; /* TCP, etc. checksum. */
  64. uint32_t next_seq; /* tcp_seq */
  65. uint32_t ack_seq; /* tcp_seq */
  66. uint32_t tsval;
  67. uint32_t tsecr;
  68. uint32_t tcp_tot_p_len; /* TCP payload length of chain */
  69. uint16_t window;
  70. uint16_t timestamp; /* flag, not a TCP hdr field. */
  71. uint16_t need_wakeup;
  72. uint16_t mbuf_cnt; /* Count of mbufs collected see note */
  73. uint16_t mbuf_appended;
  74. struct timeval mtime;
  75. };
  76. /*
  77. * Note: The mbuf_cnt field tracks our number of mbufs added to the m_next
  78. * list. Each mbuf counted can have data and of course it will
  79. * have an ack as well (by defintion any inbound tcp segment will
  80. * have an ack value. We use this count to tell us how many ACK's
  81. * are present for our ack-count threshold. If we exceed that or
  82. * the data threshold we will wake up the endpoint.
  83. */
  84. LIST_HEAD(lro_head, lro_entry);
  85. #define le_ip4 leip.ip4
  86. #define le_ip6 leip.ip6
  87. #define source_ip4 lesource.s_ip4
  88. #define dest_ip4 ledest.d_ip4
  89. #define source_ip6 lesource.s_ip6
  90. #define dest_ip6 ledest.d_ip6
  91. struct lro_mbuf_sort {
  92. uint64_t seq;
  93. struct mbuf *mb;
  94. };
  95. /* NB: This is part of driver structs. */
  96. struct lro_ctrl {
  97. struct ifnet *ifp;
  98. struct lro_mbuf_sort *lro_mbuf_data;
  99. uint64_t lro_queued;
  100. uint64_t lro_flushed;
  101. uint64_t lro_bad_csum;
  102. unsigned lro_cnt;
  103. unsigned lro_mbuf_count;
  104. unsigned lro_mbuf_max;
  105. unsigned short lro_ackcnt_lim; /* max # of aggregated ACKs */
  106. unsigned lro_length_lim; /* max len of aggregated data */
  107. u_long lro_hashsz;
  108. struct lro_head *lro_hash;
  109. struct lro_head lro_active;
  110. struct lro_head lro_free;
  111. };
  112. #define TCP_LRO_LENGTH_MAX 65535
  113. #define TCP_LRO_ACKCNT_MAX 65535 /* unlimited */
  114. int tcp_lro_init(struct lro_ctrl *);
  115. int tcp_lro_init_args(struct lro_ctrl *, struct ifnet *, unsigned, unsigned);
  116. void tcp_lro_free(struct lro_ctrl *);
  117. void tcp_lro_flush_inactive(struct lro_ctrl *, const struct timeval *);
  118. void tcp_lro_flush(struct lro_ctrl *, struct lro_entry *);
  119. void tcp_lro_flush_all(struct lro_ctrl *);
  120. int tcp_lro_rx(struct lro_ctrl *, struct mbuf *, uint32_t);
  121. void tcp_lro_queue_mbuf(struct lro_ctrl *, struct mbuf *);
  122. void tcp_lro_reg_mbufq(void);
  123. void tcp_lro_dereg_mbufq(void);
  124. #define TCP_LRO_NO_ENTRIES -2
  125. #define TCP_LRO_CANNOT -1
  126. #define TCP_LRO_NOT_SUPPORTED 1
  127. #endif /* _TCP_LRO_H_ */