inet_connection_sock.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * NET Generic infrastructure for INET connection oriented protocols.
  3. *
  4. * Definitions for inet_connection_sock
  5. *
  6. * Authors: Many people, see the TCP sources
  7. *
  8. * From code originally in TCP
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #ifndef _INET_CONNECTION_SOCK_H
  16. #define _INET_CONNECTION_SOCK_H
  17. #include <linux/compiler.h>
  18. #include <linux/string.h>
  19. #include <linux/timer.h>
  20. #include <linux/poll.h>
  21. #include <net/inet_sock.h>
  22. #include <net/request_sock.h>
  23. #define INET_CSK_DEBUG 1
  24. /* Cancel timers, when they are not required. */
  25. #undef INET_CSK_CLEAR_TIMERS
  26. struct inet_bind_bucket;
  27. struct tcp_congestion_ops;
  28. /*
  29. * Pointers to address related TCP functions
  30. * (i.e. things that depend on the address family)
  31. */
  32. struct inet_connection_sock_af_ops {
  33. int (*queue_xmit)(struct sock *sk, struct sk_buff *skb, struct flowi *fl);
  34. void (*send_check)(struct sock *sk, struct sk_buff *skb);
  35. int (*rebuild_header)(struct sock *sk);
  36. void (*sk_rx_dst_set)(struct sock *sk, const struct sk_buff *skb);
  37. int (*conn_request)(struct sock *sk, struct sk_buff *skb);
  38. struct sock *(*syn_recv_sock)(const struct sock *sk, struct sk_buff *skb,
  39. struct request_sock *req,
  40. struct dst_entry *dst,
  41. struct request_sock *req_unhash,
  42. bool *own_req);
  43. u16 net_header_len;
  44. u16 net_frag_header_len;
  45. u16 sockaddr_len;
  46. int (*setsockopt)(struct sock *sk, int level, int optname,
  47. char __user *optval, unsigned int optlen);
  48. int (*getsockopt)(struct sock *sk, int level, int optname,
  49. char __user *optval, int __user *optlen);
  50. #ifdef CONFIG_COMPAT
  51. int (*compat_setsockopt)(struct sock *sk,
  52. int level, int optname,
  53. char __user *optval, unsigned int optlen);
  54. int (*compat_getsockopt)(struct sock *sk,
  55. int level, int optname,
  56. char __user *optval, int __user *optlen);
  57. #endif
  58. void (*addr2sockaddr)(struct sock *sk, struct sockaddr *);
  59. int (*bind_conflict)(const struct sock *sk,
  60. const struct inet_bind_bucket *tb, bool relax);
  61. void (*mtu_reduced)(struct sock *sk);
  62. };
  63. /** inet_connection_sock - INET connection oriented sock
  64. *
  65. * @icsk_accept_queue: FIFO of established children
  66. * @icsk_bind_hash: Bind node
  67. * @icsk_timeout: Timeout
  68. * @icsk_retransmit_timer: Resend (no ack)
  69. * @icsk_rto: Retransmit timeout
  70. * @icsk_pmtu_cookie Last pmtu seen by socket
  71. * @icsk_ca_ops Pluggable congestion control hook
  72. * @icsk_af_ops Operations which are AF_INET{4,6} specific
  73. * @icsk_ca_state: Congestion control state
  74. * @icsk_retransmits: Number of unrecovered [RTO] timeouts
  75. * @icsk_pending: Scheduled timer event
  76. * @icsk_backoff: Backoff
  77. * @icsk_syn_retries: Number of allowed SYN (or equivalent) retries
  78. * @icsk_probes_out: unanswered 0 window probes
  79. * @icsk_ext_hdr_len: Network protocol overhead (IP/IPv6 options)
  80. * @icsk_ack: Delayed ACK control data
  81. * @icsk_mtup; MTU probing control data
  82. */
  83. struct inet_connection_sock {
  84. /* inet_sock has to be the first member! */
  85. struct inet_sock icsk_inet;
  86. struct request_sock_queue icsk_accept_queue;
  87. struct inet_bind_bucket *icsk_bind_hash;
  88. unsigned long icsk_timeout;
  89. struct timer_list icsk_retransmit_timer;
  90. struct timer_list icsk_delack_timer;
  91. __u32 icsk_rto;
  92. __u32 icsk_pmtu_cookie;
  93. const struct tcp_congestion_ops *icsk_ca_ops;
  94. const struct inet_connection_sock_af_ops *icsk_af_ops;
  95. unsigned int (*icsk_sync_mss)(struct sock *sk, u32 pmtu);
  96. __u8 icsk_ca_state:6,
  97. icsk_ca_setsockopt:1,
  98. icsk_ca_dst_locked:1;
  99. __u8 icsk_retransmits;
  100. __u8 icsk_pending;
  101. __u8 icsk_backoff;
  102. __u8 icsk_syn_retries;
  103. __u8 icsk_probes_out;
  104. __u16 icsk_ext_hdr_len;
  105. struct {
  106. __u8 pending; /* ACK is pending */
  107. __u8 quick; /* Scheduled number of quick acks */
  108. __u8 pingpong; /* The session is interactive */
  109. __u8 blocked; /* Delayed ACK was blocked by socket lock */
  110. __u32 ato; /* Predicted tick of soft clock */
  111. unsigned long timeout; /* Currently scheduled timeout */
  112. __u32 lrcvtime; /* timestamp of last received data packet */
  113. __u16 last_seg_size; /* Size of last incoming segment */
  114. __u16 rcv_mss; /* MSS used for delayed ACK decisions */
  115. } icsk_ack;
  116. struct {
  117. int enabled;
  118. /* Range of MTUs to search */
  119. int search_high;
  120. int search_low;
  121. /* Information on the current probe. */
  122. int probe_size;
  123. u32 probe_timestamp;
  124. } icsk_mtup;
  125. u32 icsk_user_timeout;
  126. u64 icsk_ca_priv[64 / sizeof(u64)];
  127. #define ICSK_CA_PRIV_SIZE (8 * sizeof(u64))
  128. };
  129. #define ICSK_TIME_RETRANS 1 /* Retransmit timer */
  130. #define ICSK_TIME_DACK 2 /* Delayed ack timer */
  131. #define ICSK_TIME_PROBE0 3 /* Zero window probe timer */
  132. #define ICSK_TIME_EARLY_RETRANS 4 /* Early retransmit timer */
  133. #define ICSK_TIME_LOSS_PROBE 5 /* Tail loss probe timer */
  134. static inline struct inet_connection_sock *inet_csk(const struct sock *sk)
  135. {
  136. return (struct inet_connection_sock *)sk;
  137. }
  138. static inline void *inet_csk_ca(const struct sock *sk)
  139. {
  140. return (void *)inet_csk(sk)->icsk_ca_priv;
  141. }
  142. struct sock *inet_csk_clone_lock(const struct sock *sk,
  143. const struct request_sock *req,
  144. const gfp_t priority);
  145. enum inet_csk_ack_state_t {
  146. ICSK_ACK_SCHED = 1,
  147. ICSK_ACK_TIMER = 2,
  148. ICSK_ACK_PUSHED = 4,
  149. ICSK_ACK_PUSHED2 = 8
  150. };
  151. void inet_csk_init_xmit_timers(struct sock *sk,
  152. void (*retransmit_handler)(unsigned long),
  153. void (*delack_handler)(unsigned long),
  154. void (*keepalive_handler)(unsigned long));
  155. void inet_csk_clear_xmit_timers(struct sock *sk);
  156. static inline void inet_csk_schedule_ack(struct sock *sk)
  157. {
  158. inet_csk(sk)->icsk_ack.pending |= ICSK_ACK_SCHED;
  159. }
  160. static inline int inet_csk_ack_scheduled(const struct sock *sk)
  161. {
  162. return inet_csk(sk)->icsk_ack.pending & ICSK_ACK_SCHED;
  163. }
  164. static inline void inet_csk_delack_init(struct sock *sk)
  165. {
  166. memset(&inet_csk(sk)->icsk_ack, 0, sizeof(inet_csk(sk)->icsk_ack));
  167. }
  168. void inet_csk_delete_keepalive_timer(struct sock *sk);
  169. void inet_csk_reset_keepalive_timer(struct sock *sk, unsigned long timeout);
  170. #ifdef INET_CSK_DEBUG
  171. extern const char inet_csk_timer_bug_msg[];
  172. #endif
  173. static inline void inet_csk_clear_xmit_timer(struct sock *sk, const int what)
  174. {
  175. struct inet_connection_sock *icsk = inet_csk(sk);
  176. if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0) {
  177. icsk->icsk_pending = 0;
  178. #ifdef INET_CSK_CLEAR_TIMERS
  179. sk_stop_timer(sk, &icsk->icsk_retransmit_timer);
  180. #endif
  181. } else if (what == ICSK_TIME_DACK) {
  182. icsk->icsk_ack.blocked = icsk->icsk_ack.pending = 0;
  183. #ifdef INET_CSK_CLEAR_TIMERS
  184. sk_stop_timer(sk, &icsk->icsk_delack_timer);
  185. #endif
  186. }
  187. #ifdef INET_CSK_DEBUG
  188. else {
  189. pr_debug("%s", inet_csk_timer_bug_msg);
  190. }
  191. #endif
  192. }
  193. /*
  194. * Reset the retransmission timer
  195. */
  196. static inline void inet_csk_reset_xmit_timer(struct sock *sk, const int what,
  197. unsigned long when,
  198. const unsigned long max_when)
  199. {
  200. struct inet_connection_sock *icsk = inet_csk(sk);
  201. if (when > max_when) {
  202. #ifdef INET_CSK_DEBUG
  203. pr_debug("reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\n",
  204. sk, what, when, current_text_addr());
  205. #endif
  206. when = max_when;
  207. }
  208. if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0 ||
  209. what == ICSK_TIME_EARLY_RETRANS || what == ICSK_TIME_LOSS_PROBE) {
  210. icsk->icsk_pending = what;
  211. icsk->icsk_timeout = jiffies + when;
  212. sk_reset_timer(sk, &icsk->icsk_retransmit_timer, icsk->icsk_timeout);
  213. } else if (what == ICSK_TIME_DACK) {
  214. icsk->icsk_ack.pending |= ICSK_ACK_TIMER;
  215. icsk->icsk_ack.timeout = jiffies + when;
  216. sk_reset_timer(sk, &icsk->icsk_delack_timer, icsk->icsk_ack.timeout);
  217. }
  218. #ifdef INET_CSK_DEBUG
  219. else {
  220. pr_debug("%s", inet_csk_timer_bug_msg);
  221. }
  222. #endif
  223. }
  224. static inline unsigned long
  225. inet_csk_rto_backoff(const struct inet_connection_sock *icsk,
  226. unsigned long max_when)
  227. {
  228. u64 when = (u64)icsk->icsk_rto << icsk->icsk_backoff;
  229. return (unsigned long)min_t(u64, when, max_when);
  230. }
  231. struct sock *inet_csk_accept(struct sock *sk, int flags, int *err);
  232. int inet_csk_bind_conflict(const struct sock *sk,
  233. const struct inet_bind_bucket *tb, bool relax);
  234. int inet_csk_get_port(struct sock *sk, unsigned short snum);
  235. struct dst_entry *inet_csk_route_req(const struct sock *sk, struct flowi4 *fl4,
  236. const struct request_sock *req);
  237. struct dst_entry *inet_csk_route_child_sock(const struct sock *sk,
  238. struct sock *newsk,
  239. const struct request_sock *req);
  240. struct sock *inet_csk_reqsk_queue_add(struct sock *sk,
  241. struct request_sock *req,
  242. struct sock *child);
  243. void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req,
  244. unsigned long timeout);
  245. struct sock *inet_csk_complete_hashdance(struct sock *sk, struct sock *child,
  246. struct request_sock *req,
  247. bool own_req);
  248. static inline void inet_csk_reqsk_queue_added(struct sock *sk)
  249. {
  250. reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue);
  251. }
  252. static inline int inet_csk_reqsk_queue_len(const struct sock *sk)
  253. {
  254. return reqsk_queue_len(&inet_csk(sk)->icsk_accept_queue);
  255. }
  256. static inline int inet_csk_reqsk_queue_is_full(const struct sock *sk)
  257. {
  258. return inet_csk_reqsk_queue_len(sk) >= sk->sk_max_ack_backlog;
  259. }
  260. void inet_csk_reqsk_queue_drop(struct sock *sk, struct request_sock *req);
  261. void inet_csk_reqsk_queue_drop_and_put(struct sock *sk, struct request_sock *req);
  262. void inet_csk_destroy_sock(struct sock *sk);
  263. void inet_csk_prepare_forced_close(struct sock *sk);
  264. /*
  265. * LISTEN is a special case for poll..
  266. */
  267. static inline unsigned int inet_csk_listen_poll(const struct sock *sk)
  268. {
  269. return !reqsk_queue_empty(&inet_csk(sk)->icsk_accept_queue) ?
  270. (POLLIN | POLLRDNORM) : 0;
  271. }
  272. int inet_csk_listen_start(struct sock *sk, int backlog);
  273. void inet_csk_listen_stop(struct sock *sk);
  274. void inet_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr);
  275. int inet_csk_compat_getsockopt(struct sock *sk, int level, int optname,
  276. char __user *optval, int __user *optlen);
  277. int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname,
  278. char __user *optval, unsigned int optlen);
  279. struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu);
  280. #endif /* _INET_CONNECTION_SOCK_H */