inet_connection_sock.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * NET Generic infrastructure for INET connection oriented protocols.
  4. *
  5. * Definitions for inet_connection_sock
  6. *
  7. * Authors: Many people, see the TCP sources
  8. *
  9. * From code originally in TCP
  10. */
  11. #ifndef _INET_CONNECTION_SOCK_H
  12. #define _INET_CONNECTION_SOCK_H
  13. #include <linux/compiler.h>
  14. #include <linux/string.h>
  15. #include <linux/timer.h>
  16. #include <linux/poll.h>
  17. #include <linux/kernel.h>
  18. #include <linux/sockptr.h>
  19. #include <net/inet_sock.h>
  20. #include <net/request_sock.h>
  21. /* Cancel timers, when they are not required. */
  22. #undef INET_CSK_CLEAR_TIMERS
  23. struct inet_bind_bucket;
  24. struct inet_bind2_bucket;
  25. struct tcp_congestion_ops;
  26. /*
  27. * Pointers to address related TCP functions
  28. * (i.e. things that depend on the address family)
  29. */
  30. struct inet_connection_sock_af_ops {
  31. int (*queue_xmit)(struct sock *sk, struct sk_buff *skb, struct flowi *fl);
  32. void (*send_check)(struct sock *sk, struct sk_buff *skb);
  33. int (*rebuild_header)(struct sock *sk);
  34. void (*sk_rx_dst_set)(struct sock *sk, const struct sk_buff *skb);
  35. int (*conn_request)(struct sock *sk, struct sk_buff *skb);
  36. struct sock *(*syn_recv_sock)(const struct sock *sk, struct sk_buff *skb,
  37. struct request_sock *req,
  38. struct dst_entry *dst,
  39. struct request_sock *req_unhash,
  40. bool *own_req,
  41. void (*opt_child_init)(struct sock *newsk,
  42. const struct sock *sk));
  43. u16 net_header_len;
  44. int (*setsockopt)(struct sock *sk, int level, int optname,
  45. sockptr_t optval, unsigned int optlen);
  46. int (*getsockopt)(struct sock *sk, int level, int optname,
  47. char __user *optval, int __user *optlen);
  48. void (*mtu_reduced)(struct sock *sk);
  49. };
  50. /** inet_connection_sock - INET connection oriented sock
  51. *
  52. * @icsk_accept_queue: FIFO of established children
  53. * @icsk_bind_hash: Bind node
  54. * @icsk_bind2_hash: Bind node in the bhash2 table
  55. * @icsk_delack_timer: Delayed ACK timer
  56. * @icsk_keepalive_timer: Keepalive timer
  57. * @mptcp_tout_timer: mptcp timer
  58. * @icsk_rto: Retransmit timeout
  59. * @icsk_pmtu_cookie Last pmtu seen by socket
  60. * @icsk_ca_ops Pluggable congestion control hook
  61. * @icsk_af_ops Operations which are AF_INET{4,6} specific
  62. * @icsk_ulp_ops Pluggable ULP control hook
  63. * @icsk_ulp_data ULP private data
  64. * @icsk_ca_state: Congestion control state
  65. * @icsk_retransmits: Number of unrecovered [RTO] timeouts
  66. * @icsk_pending: Scheduled timer event
  67. * @icsk_backoff: Backoff
  68. * @icsk_syn_retries: Number of allowed SYN (or equivalent) retries
  69. * @icsk_probes_out: unanswered 0 window probes
  70. * @icsk_ext_hdr_len: Network protocol overhead (IP/IPv6 options)
  71. * @icsk_ack: Delayed ACK control data
  72. * @icsk_mtup; MTU probing control data
  73. * @icsk_probes_tstamp: Probe timestamp (cleared by non-zero window ack)
  74. * @icsk_user_timeout: TCP_USER_TIMEOUT value
  75. */
  76. struct inet_connection_sock {
  77. /* inet_sock has to be the first member! */
  78. struct inet_sock icsk_inet;
  79. struct request_sock_queue icsk_accept_queue;
  80. struct inet_bind_bucket *icsk_bind_hash;
  81. struct inet_bind2_bucket *icsk_bind2_hash;
  82. struct timer_list icsk_delack_timer;
  83. union {
  84. struct timer_list icsk_keepalive_timer;
  85. struct timer_list mptcp_tout_timer;
  86. };
  87. __u32 icsk_rto;
  88. __u32 icsk_rto_min;
  89. u32 icsk_rto_max;
  90. __u32 icsk_delack_max;
  91. __u32 icsk_pmtu_cookie;
  92. const struct tcp_congestion_ops *icsk_ca_ops;
  93. const struct inet_connection_sock_af_ops *icsk_af_ops;
  94. const struct tcp_ulp_ops *icsk_ulp_ops;
  95. void __rcu *icsk_ulp_data;
  96. unsigned int (*icsk_sync_mss)(struct sock *sk, u32 pmtu);
  97. __u8 icsk_ca_state:5,
  98. icsk_ca_initialized:1,
  99. icsk_ca_setsockopt:1,
  100. icsk_ca_dst_locked:1;
  101. __u8 icsk_retransmits;
  102. __u8 icsk_pending;
  103. __u8 icsk_backoff;
  104. __u8 icsk_syn_retries;
  105. __u8 icsk_probes_out;
  106. __u16 icsk_ext_hdr_len;
  107. struct {
  108. __u8 pending; /* ACK is pending */
  109. __u8 quick; /* Scheduled number of quick acks */
  110. __u8 pingpong; /* The session is interactive */
  111. __u8 retry; /* Number of attempts */
  112. #define ATO_BITS 8
  113. __u32 ato:ATO_BITS, /* Predicted tick of soft clock */
  114. lrcv_flowlabel:20, /* last received ipv6 flowlabel */
  115. dst_quick_ack:1, /* cache dst RTAX_QUICKACK */
  116. unused:3;
  117. __u32 lrcvtime; /* timestamp of last received data packet */
  118. __u16 last_seg_size; /* Size of last incoming segment */
  119. __u16 rcv_mss; /* MSS used for delayed ACK decisions */
  120. } icsk_ack;
  121. struct {
  122. /* Range of MTUs to search */
  123. int search_high;
  124. int search_low;
  125. /* Information on the current probe. */
  126. u32 probe_size:31,
  127. /* Is the MTUP feature enabled for this connection? */
  128. enabled:1;
  129. u32 probe_timestamp;
  130. } icsk_mtup;
  131. u32 icsk_probes_tstamp;
  132. u32 icsk_user_timeout;
  133. u64 icsk_ca_priv[104 / sizeof(u64)];
  134. #define ICSK_CA_PRIV_SIZE sizeof_field(struct inet_connection_sock, icsk_ca_priv)
  135. };
  136. #define ICSK_TIME_RETRANS 1 /* Retransmit timer */
  137. #define ICSK_TIME_DACK 2 /* Delayed ack timer */
  138. #define ICSK_TIME_PROBE0 3 /* Zero window probe timer */
  139. #define ICSK_TIME_LOSS_PROBE 5 /* Tail loss probe timer */
  140. #define ICSK_TIME_REO_TIMEOUT 6 /* Reordering timer */
  141. #define inet_csk(ptr) container_of_const(ptr, struct inet_connection_sock, icsk_inet.sk)
  142. static inline void *inet_csk_ca(const struct sock *sk)
  143. {
  144. return (void *)inet_csk(sk)->icsk_ca_priv;
  145. }
  146. struct sock *inet_csk_clone_lock(const struct sock *sk,
  147. const struct request_sock *req,
  148. const gfp_t priority);
  149. enum inet_csk_ack_state_t {
  150. ICSK_ACK_SCHED = 1,
  151. ICSK_ACK_TIMER = 2,
  152. ICSK_ACK_PUSHED = 4,
  153. ICSK_ACK_PUSHED2 = 8,
  154. ICSK_ACK_NOW = 16, /* Send the next ACK immediately (once) */
  155. ICSK_ACK_NOMEM = 32,
  156. };
  157. void inet_csk_init_xmit_timers(struct sock *sk,
  158. void (*retransmit_handler)(struct timer_list *),
  159. void (*delack_handler)(struct timer_list *),
  160. void (*keepalive_handler)(struct timer_list *));
  161. void inet_csk_clear_xmit_timers(struct sock *sk);
  162. void inet_csk_clear_xmit_timers_sync(struct sock *sk);
  163. static inline void inet_csk_schedule_ack(struct sock *sk)
  164. {
  165. inet_csk(sk)->icsk_ack.pending |= ICSK_ACK_SCHED;
  166. }
  167. static inline int inet_csk_ack_scheduled(const struct sock *sk)
  168. {
  169. return inet_csk(sk)->icsk_ack.pending & ICSK_ACK_SCHED;
  170. }
  171. static inline void inet_csk_delack_init(struct sock *sk)
  172. {
  173. memset(&inet_csk(sk)->icsk_ack, 0, sizeof(inet_csk(sk)->icsk_ack));
  174. }
  175. static inline unsigned long tcp_timeout_expires(const struct sock *sk)
  176. {
  177. return READ_ONCE(sk->tcp_retransmit_timer.expires);
  178. }
  179. static inline unsigned long
  180. icsk_delack_timeout(const struct inet_connection_sock *icsk)
  181. {
  182. return READ_ONCE(icsk->icsk_delack_timer.expires);
  183. }
  184. static inline void inet_csk_clear_xmit_timer(struct sock *sk, const int what)
  185. {
  186. struct inet_connection_sock *icsk = inet_csk(sk);
  187. if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0) {
  188. smp_store_release(&icsk->icsk_pending, 0);
  189. #ifdef INET_CSK_CLEAR_TIMERS
  190. sk_stop_timer(sk, &sk->tcp_retransmit_timer);
  191. #endif
  192. } else if (what == ICSK_TIME_DACK) {
  193. smp_store_release(&icsk->icsk_ack.pending, 0);
  194. icsk->icsk_ack.retry = 0;
  195. #ifdef INET_CSK_CLEAR_TIMERS
  196. sk_stop_timer(sk, &icsk->icsk_delack_timer);
  197. #endif
  198. } else {
  199. pr_debug("inet_csk BUG: unknown timer value\n");
  200. }
  201. }
  202. /*
  203. * Reset the retransmission timer
  204. */
  205. static inline void inet_csk_reset_xmit_timer(struct sock *sk, const int what,
  206. unsigned long when,
  207. const unsigned long max_when)
  208. {
  209. struct inet_connection_sock *icsk = inet_csk(sk);
  210. if (when > max_when) {
  211. pr_debug("reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\n",
  212. sk, what, when, (void *)_THIS_IP_);
  213. when = max_when;
  214. }
  215. when += jiffies;
  216. if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0 ||
  217. what == ICSK_TIME_LOSS_PROBE || what == ICSK_TIME_REO_TIMEOUT) {
  218. smp_store_release(&icsk->icsk_pending, what);
  219. sk_reset_timer(sk, &sk->tcp_retransmit_timer, when);
  220. } else if (what == ICSK_TIME_DACK) {
  221. smp_store_release(&icsk->icsk_ack.pending,
  222. icsk->icsk_ack.pending | ICSK_ACK_TIMER);
  223. sk_reset_timer(sk, &icsk->icsk_delack_timer, when);
  224. } else {
  225. pr_debug("inet_csk BUG: unknown timer value\n");
  226. }
  227. }
  228. static inline unsigned long
  229. inet_csk_rto_backoff(const struct inet_connection_sock *icsk,
  230. unsigned long max_when)
  231. {
  232. u64 when = (u64)icsk->icsk_rto << icsk->icsk_backoff;
  233. return (unsigned long)min_t(u64, when, max_when);
  234. }
  235. struct sock *inet_csk_accept(struct sock *sk, struct proto_accept_arg *arg);
  236. int inet_csk_get_port(struct sock *sk, unsigned short snum);
  237. struct dst_entry *inet_csk_route_req(const struct sock *sk, struct flowi4 *fl4,
  238. const struct request_sock *req);
  239. struct dst_entry *inet_csk_route_child_sock(const struct sock *sk,
  240. struct sock *newsk,
  241. const struct request_sock *req);
  242. struct sock *inet_csk_reqsk_queue_add(struct sock *sk,
  243. struct request_sock *req,
  244. struct sock *child);
  245. bool inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req);
  246. struct sock *inet_csk_complete_hashdance(struct sock *sk, struct sock *child,
  247. struct request_sock *req,
  248. bool own_req);
  249. static inline void inet_csk_reqsk_queue_added(struct sock *sk)
  250. {
  251. reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue);
  252. }
  253. static inline int inet_csk_reqsk_queue_len(const struct sock *sk)
  254. {
  255. return reqsk_queue_len(&inet_csk(sk)->icsk_accept_queue);
  256. }
  257. static inline int inet_csk_reqsk_queue_is_full(const struct sock *sk)
  258. {
  259. return inet_csk_reqsk_queue_len(sk) > READ_ONCE(sk->sk_max_ack_backlog);
  260. }
  261. bool inet_csk_reqsk_queue_drop(struct sock *sk, struct request_sock *req);
  262. void inet_csk_reqsk_queue_drop_and_put(struct sock *sk, struct request_sock *req);
  263. void inet_csk_destroy_sock(struct sock *sk);
  264. void inet_csk_prepare_for_destroy_sock(struct sock *sk);
  265. void inet_csk_prepare_forced_close(struct sock *sk);
  266. /*
  267. * LISTEN is a special case for poll..
  268. */
  269. static inline __poll_t inet_csk_listen_poll(const struct sock *sk)
  270. {
  271. return !reqsk_queue_empty(&inet_csk(sk)->icsk_accept_queue) ?
  272. (EPOLLIN | EPOLLRDNORM) : 0;
  273. }
  274. int inet_csk_listen_start(struct sock *sk);
  275. void inet_csk_listen_stop(struct sock *sk);
  276. /* update the fast reuse flag when adding a socket */
  277. void inet_csk_update_fastreuse(const struct sock *sk,
  278. struct inet_bind_bucket *tb,
  279. struct inet_bind2_bucket *tb2);
  280. struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu);
  281. static inline void inet_csk_enter_pingpong_mode(struct sock *sk)
  282. {
  283. inet_csk(sk)->icsk_ack.pingpong =
  284. READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_pingpong_thresh);
  285. }
  286. static inline void inet_csk_exit_pingpong_mode(struct sock *sk)
  287. {
  288. inet_csk(sk)->icsk_ack.pingpong = 0;
  289. }
  290. static inline bool inet_csk_in_pingpong_mode(struct sock *sk)
  291. {
  292. return inet_csk(sk)->icsk_ack.pingpong >=
  293. READ_ONCE(sock_net(sk)->ipv4.sysctl_tcp_pingpong_thresh);
  294. }
  295. static inline void inet_csk_inc_pingpong_cnt(struct sock *sk)
  296. {
  297. struct inet_connection_sock *icsk = inet_csk(sk);
  298. if (icsk->icsk_ack.pingpong < U8_MAX)
  299. icsk->icsk_ack.pingpong++;
  300. }
  301. static inline bool inet_csk_has_ulp(const struct sock *sk)
  302. {
  303. return inet_test_bit(IS_ICSK, sk) && !!inet_csk(sk)->icsk_ulp_ops;
  304. }
  305. static inline void inet_init_csk_locks(struct sock *sk)
  306. {
  307. struct inet_connection_sock *icsk = inet_csk(sk);
  308. spin_lock_init(&icsk->icsk_accept_queue.rskq_lock);
  309. spin_lock_init(&icsk->icsk_accept_queue.fastopenq.lock);
  310. }
  311. #endif /* _INET_CONNECTION_SOCK_H */