tcp.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555
  1. /*
  2. * Copyright (c) 1982, 1986, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 4. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. *
  29. * @(#)tcp.h 8.1 (Berkeley) 6/10/93
  30. */
  31. #ifndef _NETINET_TCP_H
  32. #define _NETINET_TCP_H 1
  33. #include <features.h>
  34. /*
  35. * User-settable options (used with setsockopt).
  36. */
  37. #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  38. #define TCP_MAXSEG 2 /* Set maximum segment size */
  39. #define TCP_CORK 3 /* Control sending of partial frames */
  40. #define TCP_KEEPIDLE 4 /* Start keeplives after this period */
  41. #define TCP_KEEPINTVL 5 /* Interval between keepalives */
  42. #define TCP_KEEPCNT 6 /* Number of keepalives before death */
  43. #define TCP_SYNCNT 7 /* Number of SYN retransmits */
  44. #define TCP_LINGER2 8 /* Life time of orphaned FIN-WAIT-2 state */
  45. #define TCP_DEFER_ACCEPT 9 /* Wake up listener only when data arrive */
  46. #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */
  47. #define TCP_INFO 11 /* Information about this connection. */
  48. #define TCP_QUICKACK 12 /* Bock/re-enable quick ACKs. */
  49. #define TCP_CONGESTION 13 /* Congestion control algorithm. */
  50. #define TCP_MD5SIG 14 /* TCP MD5 Signature (RFC2385) */
  51. #define TCP_COOKIE_TRANSACTIONS 15 /* TCP Cookie Transactions */
  52. #define TCP_THIN_LINEAR_TIMEOUTS 16 /* Use linear timeouts for thin streams*/
  53. #define TCP_THIN_DUPACK 17 /* Fast retrans. after 1 dupack */
  54. #define TCP_USER_TIMEOUT 18 /* How long for loss retry before timeout */
  55. #define TCP_REPAIR 19 /* TCP sock is under repair right now */
  56. #define TCP_REPAIR_QUEUE 20 /* Set TCP queue to repair */
  57. #define TCP_QUEUE_SEQ 21 /* Set sequence number of repaired queue. */
  58. #define TCP_REPAIR_OPTIONS 22 /* Repair TCP connection options */
  59. #define TCP_FASTOPEN 23 /* Enable FastOpen on listeners */
  60. #define TCP_TIMESTAMP 24 /* TCP time stamp */
  61. #define TCP_NOTSENT_LOWAT 25 /* Limit number of unsent bytes in
  62. write queue. */
  63. #define TCP_CC_INFO 26 /* Get Congestion Control
  64. (optional) info. */
  65. #define TCP_SAVE_SYN 27 /* Record SYN headers for new
  66. connections. */
  67. #define TCP_SAVED_SYN 28 /* Get SYN headers recorded for
  68. connection. */
  69. #define TCP_REPAIR_WINDOW 29 /* Get/set window parameters. */
  70. #define TCP_FASTOPEN_CONNECT 30 /* Attempt FastOpen with connect. */
  71. #define TCP_ULP 31 /* Attach a ULP to a TCP connection. */
  72. #define TCP_MD5SIG_EXT 32 /* TCP MD5 Signature with extensions. */
  73. #define TCP_FASTOPEN_KEY 33 /* Set the key for Fast Open (cookie). */
  74. #define TCP_FASTOPEN_NO_COOKIE 34 /* Enable TFO without a TFO cookie. */
  75. #define TCP_ZEROCOPY_RECEIVE 35
  76. #define TCP_INQ 36 /* Notify bytes available to read
  77. as a cmsg on read. */
  78. #define TCP_CM_INQ TCP_INQ
  79. #define TCP_TX_DELAY 37 /* Delay outgoing packets by XX usec. */
  80. #define TCP_REPAIR_ON 1
  81. #define TCP_REPAIR_OFF 0
  82. #define TCP_REPAIR_OFF_NO_WP -1
  83. #ifdef __USE_MISC
  84. # include <sys/types.h>
  85. # include <sys/socket.h>
  86. # include <stdint.h>
  87. typedef uint32_t tcp_seq;
  88. /*
  89. * TCP header.
  90. * Per RFC 793, September, 1981.
  91. */
  92. struct tcphdr
  93. {
  94. __extension__ union
  95. {
  96. struct
  97. {
  98. uint16_t th_sport; /* source port */
  99. uint16_t th_dport; /* destination port */
  100. tcp_seq th_seq; /* sequence number */
  101. tcp_seq th_ack; /* acknowledgement number */
  102. # if __BYTE_ORDER == __LITTLE_ENDIAN
  103. uint8_t th_x2:4; /* (unused) */
  104. uint8_t th_off:4; /* data offset */
  105. # endif
  106. # if __BYTE_ORDER == __BIG_ENDIAN
  107. uint8_t th_off:4; /* data offset */
  108. uint8_t th_x2:4; /* (unused) */
  109. # endif
  110. uint8_t th_flags;
  111. # define TH_FIN 0x01
  112. # define TH_SYN 0x02
  113. # define TH_RST 0x04
  114. # define TH_PUSH 0x08
  115. # define TH_ACK 0x10
  116. # define TH_URG 0x20
  117. uint16_t th_win; /* window */
  118. uint16_t th_sum; /* checksum */
  119. uint16_t th_urp; /* urgent pointer */
  120. };
  121. struct
  122. {
  123. uint16_t source;
  124. uint16_t dest;
  125. uint32_t seq;
  126. uint32_t ack_seq;
  127. # if __BYTE_ORDER == __LITTLE_ENDIAN
  128. uint16_t res1:4;
  129. uint16_t doff:4;
  130. uint16_t fin:1;
  131. uint16_t syn:1;
  132. uint16_t rst:1;
  133. uint16_t psh:1;
  134. uint16_t ack:1;
  135. uint16_t urg:1;
  136. uint16_t res2:2;
  137. # elif __BYTE_ORDER == __BIG_ENDIAN
  138. uint16_t doff:4;
  139. uint16_t res1:4;
  140. uint16_t res2:2;
  141. uint16_t urg:1;
  142. uint16_t ack:1;
  143. uint16_t psh:1;
  144. uint16_t rst:1;
  145. uint16_t syn:1;
  146. uint16_t fin:1;
  147. # else
  148. # error "Adjust your <bits/endian.h> defines"
  149. # endif
  150. uint16_t window;
  151. uint16_t check;
  152. uint16_t urg_ptr;
  153. };
  154. };
  155. };
  156. enum
  157. {
  158. TCP_ESTABLISHED = 1,
  159. TCP_SYN_SENT,
  160. TCP_SYN_RECV,
  161. TCP_FIN_WAIT1,
  162. TCP_FIN_WAIT2,
  163. TCP_TIME_WAIT,
  164. TCP_CLOSE,
  165. TCP_CLOSE_WAIT,
  166. TCP_LAST_ACK,
  167. TCP_LISTEN,
  168. TCP_CLOSING /* now a valid state */
  169. };
  170. # define TCPOPT_EOL 0
  171. # define TCPOPT_NOP 1
  172. # define TCPOPT_MAXSEG 2
  173. # define TCPOLEN_MAXSEG 4
  174. # define TCPOPT_WINDOW 3
  175. # define TCPOLEN_WINDOW 3
  176. # define TCPOPT_SACK_PERMITTED 4 /* Experimental */
  177. # define TCPOLEN_SACK_PERMITTED 2
  178. # define TCPOPT_SACK 5 /* Experimental */
  179. # define TCPOPT_TIMESTAMP 8
  180. # define TCPOLEN_TIMESTAMP 10
  181. # define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */
  182. # define TCPOPT_TSTAMP_HDR \
  183. (TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP)
  184. /*
  185. * Default maximum segment size for TCP.
  186. * With an IP MSS of 576, this is 536,
  187. * but 512 is probably more convenient.
  188. * This should be defined as MIN(512, IP_MSS - sizeof (struct tcpiphdr)).
  189. */
  190. # define TCP_MSS 512
  191. # define TCP_MAXWIN 65535 /* largest value for (unscaled) window */
  192. # define TCP_MAX_WINSHIFT 14 /* maximum window shift */
  193. # define SOL_TCP 6 /* TCP level */
  194. # define TCPI_OPT_TIMESTAMPS 1
  195. # define TCPI_OPT_SACK 2
  196. # define TCPI_OPT_WSCALE 4
  197. # define TCPI_OPT_ECN 8 /* ECN was negotiated at TCP session init */
  198. # define TCPI_OPT_ECN_SEEN 16 /* we received at least one packet with ECT */
  199. # define TCPI_OPT_SYN_DATA 32 /* SYN-ACK acked data in SYN sent or rcvd */
  200. # define TCPI_OPT_USEC_TS 64 /* usec timestamps */
  201. # define TCPI_OPT_TFO_CHILD 128 /* child from a Fast Open option on SYN */
  202. /* Values for tcpi_state. */
  203. enum tcp_ca_state
  204. {
  205. TCP_CA_Open = 0,
  206. TCP_CA_Disorder = 1,
  207. TCP_CA_CWR = 2,
  208. TCP_CA_Recovery = 3,
  209. TCP_CA_Loss = 4
  210. };
  211. struct tcp_info
  212. {
  213. uint8_t tcpi_state;
  214. uint8_t tcpi_ca_state;
  215. uint8_t tcpi_retransmits;
  216. uint8_t tcpi_probes;
  217. uint8_t tcpi_backoff;
  218. uint8_t tcpi_options;
  219. uint8_t tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;
  220. uint32_t tcpi_rto;
  221. uint32_t tcpi_ato;
  222. uint32_t tcpi_snd_mss;
  223. uint32_t tcpi_rcv_mss;
  224. uint32_t tcpi_unacked;
  225. uint32_t tcpi_sacked;
  226. uint32_t tcpi_lost;
  227. uint32_t tcpi_retrans;
  228. uint32_t tcpi_fackets;
  229. /* Times. */
  230. uint32_t tcpi_last_data_sent;
  231. uint32_t tcpi_last_ack_sent; /* Not remembered, sorry. */
  232. uint32_t tcpi_last_data_recv;
  233. uint32_t tcpi_last_ack_recv;
  234. /* Metrics. */
  235. uint32_t tcpi_pmtu;
  236. uint32_t tcpi_rcv_ssthresh;
  237. uint32_t tcpi_rtt;
  238. uint32_t tcpi_rttvar;
  239. uint32_t tcpi_snd_ssthresh;
  240. uint32_t tcpi_snd_cwnd;
  241. uint32_t tcpi_advmss;
  242. uint32_t tcpi_reordering;
  243. uint32_t tcpi_rcv_rtt;
  244. uint32_t tcpi_rcv_space;
  245. uint32_t tcpi_total_retrans;
  246. uint64_t tcpi_pacing_rate;
  247. uint64_t tcpi_max_pacing_rate;
  248. uint64_t tcpi_bytes_acked; /* RFC4898 tcpEStatsAppHCThruOctetsAcked */
  249. uint64_t tcpi_bytes_received; /* RFC4898 tcpEStatsAppHCThruOctetsReceived */
  250. uint32_t tcpi_segs_out; /* RFC4898 tcpEStatsPerfSegsOut */
  251. uint32_t tcpi_segs_in; /* RFC4898 tcpEStatsPerfSegsIn */
  252. uint32_t tcpi_notsent_bytes;
  253. uint32_t tcpi_min_rtt;
  254. uint32_t tcpi_data_segs_in; /* RFC4898 tcpEStatsDataSegsIn */
  255. uint32_t tcpi_data_segs_out; /* RFC4898 tcpEStatsDataSegsOut */
  256. uint64_t tcpi_delivery_rate;
  257. uint64_t tcpi_busy_time; /* Time (usec) busy sending data */
  258. uint64_t tcpi_rwnd_limited; /* Time (usec) limited by receive window */
  259. uint64_t tcpi_sndbuf_limited; /* Time (usec) limited by send buffer */
  260. uint32_t tcpi_delivered;
  261. uint32_t tcpi_delivered_ce;
  262. uint64_t tcpi_bytes_sent; /* RFC4898 tcpEStatsPerfHCDataOctetsOut */
  263. uint64_t tcpi_bytes_retrans; /* RFC4898 tcpEStatsPerfOctetsRetrans */
  264. uint32_t tcpi_dsack_dups; /* RFC4898 tcpEStatsStackDSACKDups */
  265. uint32_t tcpi_reord_seen; /* reordering events seen */
  266. uint32_t tcpi_rcv_ooopack; /* Out-of-order packets received */
  267. /* Peer's advertised receive window after scaling (bytes) */
  268. uint32_t tcpi_snd_wnd;
  269. /* Local advertised receive window after scaling (bytes) */
  270. uint32_t tcpi_rcv_wnd;
  271. uint32_t tcpi_rehash; /* PLB or timeout triggered rehash attempts */
  272. /* Total number of RTO timeouts, including
  273. * SYN/SYN-ACK and recurring timeouts
  274. */
  275. uint16_t tcpi_total_rto;
  276. /* Total number of RTO recoveries, including any unfinished recovery. */
  277. uint16_t tcpi_total_rto_recoveries;
  278. /* Total time spent in RTO recoveries in milliseconds, including any
  279. * unfinished recovery.
  280. */
  281. uint32_t tcpi_total_rto_time;
  282. uint32_t tcpi_received_ce; /* # of CE marks received */
  283. uint32_t tcpi_delivered_e1_bytes; /* Accurate ECN byte counters */
  284. uint32_t tcpi_delivered_e0_bytes;
  285. uint32_t tcpi_delivered_ce_bytes;
  286. uint32_t tcpi_received_e1_bytes;
  287. uint32_t tcpi_received_e0_bytes;
  288. uint32_t tcpi_received_ce_bytes;
  289. uint16_t tcpi_accecn_fail_mode;
  290. uint16_t tcpi_accecn_opt_seen;
  291. };
  292. /* Netlink attributes types for SCM_TIMESTAMPING_OPT_STATS */
  293. enum {
  294. TCP_NLA_PAD,
  295. TCP_NLA_BUSY, /* Time (usec) busy sending data */
  296. TCP_NLA_RWND_LIMITED, /* Time (usec) limited by receive window */
  297. TCP_NLA_SNDBUF_LIMITED, /* Time (usec) limited by send buffer */
  298. TCP_NLA_DATA_SEGS_OUT, /* Data pkts sent including retransmission */
  299. TCP_NLA_TOTAL_RETRANS, /* Data pkts retransmitted */
  300. TCP_NLA_PACING_RATE, /* Pacing rate in bytes per second */
  301. TCP_NLA_DELIVERY_RATE, /* Delivery rate in bytes per second */
  302. TCP_NLA_SND_CWND, /* Sending congestion window */
  303. TCP_NLA_REORDERING, /* Reordering metric */
  304. TCP_NLA_MIN_RTT, /* minimum RTT */
  305. TCP_NLA_RECUR_RETRANS, /* Recurring retransmits for the current pkt */
  306. TCP_NLA_DELIVERY_RATE_APP_LMT, /* delivery rate application limited ? */
  307. TCP_NLA_SNDQ_SIZE, /* Data (bytes) pending in send queue */
  308. TCP_NLA_CA_STATE, /* ca_state of socket */
  309. TCP_NLA_SND_SSTHRESH, /* Slow start size threshold */
  310. TCP_NLA_DELIVERED, /* Data pkts delivered incl. out-of-order */
  311. TCP_NLA_DELIVERED_CE, /* Like above but only ones w/ CE marks */
  312. TCP_NLA_BYTES_SENT, /* Data bytes sent including retransmission */
  313. TCP_NLA_BYTES_RETRANS, /* Data bytes retransmitted */
  314. TCP_NLA_DSACK_DUPS, /* DSACK blocks received */
  315. TCP_NLA_REORD_SEEN, /* reordering events seen */
  316. TCP_NLA_SRTT, /* smoothed RTT in usecs */
  317. TCP_NLA_TIMEOUT_REHASH, /* Timeout-triggered rehash attempts */
  318. TCP_NLA_BYTES_NOTSENT, /* Bytes in write queue not yet sent */
  319. TCP_NLA_EDT, /* Earliest departure time (CLOCK_MONOTONIC) */
  320. TCP_NLA_TTL, /* TTL or hop limit of a packet received */
  321. TCP_NLA_REHASH, /* PLB and timeout triggered rehash attempts */
  322. };
  323. /* For TCP_MD5SIG socket option. */
  324. #define TCP_MD5SIG_MAXKEYLEN 80
  325. /* tcp_md5sig extension flags for TCP_MD5SIG_EXT. */
  326. #define TCP_MD5SIG_FLAG_PREFIX 1 /* Address prefix length. */
  327. #define TCP_MD5SIG_FLAG_IFINDEX 2 /* Ifindex set. */
  328. struct tcp_md5sig
  329. {
  330. struct sockaddr_storage tcpm_addr; /* Address associated. */
  331. uint8_t tcpm_flags; /* Extension flags. */
  332. uint8_t tcpm_prefixlen; /* Address prefix. */
  333. uint16_t tcpm_keylen; /* Key length. */
  334. int tcpm_ifindex; /* Device index for scope. */
  335. uint8_t tcpm_key[TCP_MD5SIG_MAXKEYLEN]; /* Key (binary). */
  336. };
  337. /* INET_DIAG_MD5SIG */
  338. struct tcp_diag_md5sig {
  339. uint8_t tcpm_family;
  340. uint8_t tcpm_prefixlen;
  341. uint16_t tcpm_keylen;
  342. uint32_t tcpm_addr[4];
  343. uint8_t tcpm_key[TCP_MD5SIG_MAXKEYLEN];
  344. };
  345. #define TCP_AO_MAXKEYLEN 80
  346. #define TCP_AO_KEYF_IFINDEX (1 << 0) /* L3 ifindex for VRF */
  347. #define TCP_AO_KEYF_EXCLUDE_OPT (1 << 1) /* Indicates whether TCP options
  348. * other than TCP-AO are included
  349. * in the MAC calculation
  350. */
  351. struct tcp_ao_add { /* setsockopt(TCP_AO_ADD_KEY) */
  352. struct sockaddr_storage addr; /* Peer's address for the key */
  353. int8_t alg_name[64]; /* Crypto hash algorithm to use */
  354. int32_t ifindex; /* L3 dev index for VRF */
  355. uint32_t set_current :1, /* Set key as Current_key at once */
  356. set_rnext :1, /* Request it from peer with RNext_key */
  357. reserved :30; /* Must be 0 */
  358. uint16_t reserved2; /* Padding, must be 0 */
  359. uint8_t prefix; /* Peer's address prefix */
  360. uint8_t sndid; /* SendID for outgoing segments */
  361. uint8_t rcvid; /* RecvID to match for incoming seg */
  362. uint8_t maclen; /* length of authentication code (hash) */
  363. uint8_t keyflags; /* See TCP_AO_KEYF_ */
  364. uint8_t keylen; /* Length of ::key */
  365. uint8_t key[TCP_AO_MAXKEYLEN];
  366. } __attribute__((aligned(8)));
  367. struct tcp_ao_del { /* setsockopt(TCP_AO_DEL_KEY) */
  368. struct sockaddr_storage addr; /* Peer's address for the key */
  369. int32_t ifindex; /* L3 dev index for VRF */
  370. uint32_t set_current :1, /* Corresponding ::current_key */
  371. set_rnext :1, /* Corresponding ::rnext */
  372. del_async :1, /* Only valid for listen sockets */
  373. reserved :29; /* Must be 0 */
  374. uint16_t reserved2; /* Padding, must be 0 */
  375. uint8_t prefix; /* Peer's address prefix */
  376. uint8_t sndid; /* SendID for outgoing segments */
  377. uint8_t rcvid; /* RecvID to match for incoming seg */
  378. uint8_t current_key; /* KeyID to set as Current_key */
  379. uint8_t rnext; /* KeyID to set as Rnext_key */
  380. uint8_t keyflags; /* See TCP_AO_KEYF_ */
  381. } __attribute__((aligned(8)));
  382. struct tcp_ao_info_opt { /* setsockopt(TCP_AO_INFO), getsockopt(TCP_AO_INFO)
  383. */
  384. /* Here 'in' is for setsockopt(), 'out' is for getsockopt() */
  385. uint32_t set_current :1, /* In/out: corresponding ::current_key */
  386. set_rnext :1, /* In/out: corresponding ::rnext */
  387. ao_required :1, /* In/out: don't accept non-AO connects */
  388. set_counters :1, /* In: set/clear ::pkt_* counters */
  389. accept_icmps :1, /* In/out: accept incoming ICMPs */
  390. reserved :27; /* must be 0 */
  391. uint16_t reserved2; /* Padding, must be 0 */
  392. uint8_t current_key; /* In/out: KeyID of Current_key */
  393. uint8_t rnext; /* In/out: keyid of RNext_key */
  394. uint64_t pkt_good; /* In/out: verified segments */
  395. uint64_t pkt_bad; /* In/out: failed verification */
  396. uint64_t pkt_key_not_found; /* In/out: could not find a key to verify */
  397. uint64_t pkt_ao_required; /* In/out: segments missing TCP-AO sign */
  398. uint64_t pkt_dropped_icmp; /* In/out: ICMPs that were ignored */
  399. } __attribute__((aligned(8)));
  400. struct tcp_ao_getsockopt { /* getsockopt(TCP_AO_GET_KEYS) */
  401. struct sockaddr_storage addr; /* In/out: dump keys for peer
  402. * with this address/prefix
  403. */
  404. uint8_t alg_name[64]; /* out: crypto hash algorithm */
  405. uint8_t key[TCP_AO_MAXKEYLEN];
  406. uint32_t nkeys; /* In: size of the userspace buffer
  407. * @optval, measured in @optlen - the
  408. * sizeof(struct tcp_ao_getsockopt)
  409. * Out: number of keys that matched
  410. */
  411. uint16_t is_current :1, /* In: match and dump Current_key,
  412. * Out: the dumped key is Current_key
  413. */
  414. is_rnext :1, /* In: match and dump RNext_key,
  415. * Out: the dumped key is RNext_key
  416. */
  417. get_all :1, /* In: dump all keys */
  418. reserved :13; /* Padding, must be 0 */
  419. uint8_t sndid; /* In/out: dump keys with SendID */
  420. uint8_t rcvid; /* In/out: dump keys with RecvID */
  421. uint8_t prefix; /* In/out: dump keys with address/prefix */
  422. uint8_t maclen; /* Out: key's length of authentication
  423. * code (hash)
  424. */
  425. uint8_t keyflags; /* In/out: see TCP_AO_KEYF_ */
  426. uint8_t keylen; /* Out: length of ::key */
  427. int32_t ifindex; /* In/out: L3 dev index for VRF */
  428. uint64_t pkt_good; /* Out: verified segments */
  429. uint64_t pkt_bad; /* Out: segments that failed verification */
  430. } __attribute__((aligned(8)));
  431. struct tcp_ao_repair { /* {s,g}etsockopt(TCP_AO_REPAIR) */
  432. uint32_t snt_isn;
  433. uint32_t rcv_isn;
  434. uint32_t snd_sne;
  435. uint32_t rcv_sne;
  436. } __attribute__((aligned(8)));
  437. /* For socket repair options. */
  438. struct tcp_repair_opt
  439. {
  440. uint32_t opt_code;
  441. uint32_t opt_val;
  442. };
  443. /* Queue to repair, for TCP_REPAIR_QUEUE. */
  444. enum
  445. {
  446. TCP_NO_QUEUE,
  447. TCP_RECV_QUEUE,
  448. TCP_SEND_QUEUE,
  449. TCP_QUEUES_NR,
  450. };
  451. /* For cookie transactions socket options. */
  452. #define TCP_COOKIE_MIN 8 /* 64-bits */
  453. #define TCP_COOKIE_MAX 16 /* 128-bits */
  454. #define TCP_COOKIE_PAIR_SIZE (2*TCP_COOKIE_MAX)
  455. /* Flags for both getsockopt and setsockopt */
  456. #define TCP_COOKIE_IN_ALWAYS (1 << 0) /* Discard SYN without cookie */
  457. #define TCP_COOKIE_OUT_NEVER (1 << 1) /* Prohibit outgoing cookies,
  458. * supersedes everything. */
  459. /* Flags for getsockopt */
  460. #define TCP_S_DATA_IN (1 << 2) /* Was data received? */
  461. #define TCP_S_DATA_OUT (1 << 3) /* Was data sent? */
  462. #define TCP_MSS_DEFAULT 536U /* IPv4 (RFC1122, RFC2581) */
  463. #define TCP_MSS_DESIRED 1220U /* IPv6 (tunneled), EDNS0 (RFC3226) */
  464. struct tcp_cookie_transactions
  465. {
  466. uint16_t tcpct_flags;
  467. uint8_t __tcpct_pad1;
  468. uint8_t tcpct_cookie_desired;
  469. uint16_t tcpct_s_data_desired;
  470. uint16_t tcpct_used;
  471. uint8_t tcpct_value[TCP_MSS_DEFAULT];
  472. };
  473. /* For use with TCP_REPAIR_WINDOW. */
  474. struct tcp_repair_window
  475. {
  476. uint32_t snd_wl1;
  477. uint32_t snd_wnd;
  478. uint32_t max_window;
  479. uint32_t rcv_wnd;
  480. uint32_t rcv_wup;
  481. };
  482. /* For use with TCP_ZEROCOPY_RECEIVE. */
  483. struct tcp_zerocopy_receive
  484. {
  485. uint64_t address; /* In: address of mapping. */
  486. uint32_t length; /* In/out: number of bytes to map/mapped. */
  487. uint32_t recv_skip_hint; /* Out: amount of bytes to skip. */
  488. uint32_t inq; /* Out: amount of bytes in read queue. */
  489. int32_t err; /* Out: socket error. */
  490. uint64_t copybuf_address; /* On: copybuf address (small reads). */
  491. int32_t copybuf_len; /* In/Out: copybuf bytes avail/used or error. */
  492. uint32_t flags; /* In: flags. */
  493. uint64_t msg_control; /* Ancillary data. */
  494. uint64_t msg_controllen;
  495. uint32_t msg_flags;
  496. uint32_t reserved; /* Set to 0 for now. */
  497. };
  498. #endif /* Misc. */
  499. #endif /* netinet/tcp.h */