blob: 91888967d3e3fd59ee49a99837828bf9715e102b [file] [log] [blame]
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001/*
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
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -080018#include <linux/compiler.h>
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070019#include <linux/ip.h>
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -070020#include <linux/string.h>
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070021#include <linux/timer.h>
22#include <net/request_sock.h>
23
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -070024#define INET_CSK_DEBUG 1
25
26/* Cancel timers, when they are not required. */
27#undef INET_CSK_CLEAR_TIMERS
28
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070029struct inet_bind_bucket;
30struct inet_hashinfo;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030031struct tcp_congestion_ops;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070032
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -080033/*
34 * Pointers to address related TCP functions
35 * (i.e. things that depend on the address family)
36 */
37struct inet_connection_sock_af_ops {
38 int (*queue_xmit)(struct sk_buff *skb, int ipfragok);
39 void (*send_check)(struct sock *sk, int len,
40 struct sk_buff *skb);
41 int (*rebuild_header)(struct sock *sk);
42 int (*conn_request)(struct sock *sk, struct sk_buff *skb);
43 struct sock *(*syn_recv_sock)(struct sock *sk, struct sk_buff *skb,
44 struct request_sock *req,
45 struct dst_entry *dst);
46 int (*remember_stamp)(struct sock *sk);
47 __u16 net_header_len;
48 int (*setsockopt)(struct sock *sk, int level, int optname,
49 char __user *optval, int optlen);
50 int (*getsockopt)(struct sock *sk, int level, int optname,
51 char __user *optval, int __user *optlen);
52 void (*addr2sockaddr)(struct sock *sk, struct sockaddr *);
53 int sockaddr_len;
54};
55
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070056/** inet_connection_sock - INET connection oriented sock
57 *
58 * @icsk_accept_queue: FIFO of established children
59 * @icsk_bind_hash: Bind node
60 * @icsk_timeout: Timeout
61 * @icsk_retransmit_timer: Resend (no ack)
62 * @icsk_rto: Retransmit timeout
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -080063 * @icsk_pmtu_cookie Last pmtu seen by socket
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030064 * @icsk_ca_ops Pluggable congestion control hook
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -080065 * @icsk_af_ops Operations which are AF_INET{4,6} specific
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030066 * @icsk_ca_state: Congestion control state
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070067 * @icsk_retransmits: Number of unrecovered [RTO] timeouts
68 * @icsk_pending: Scheduled timer event
69 * @icsk_backoff: Backoff
70 * @icsk_syn_retries: Number of allowed SYN (or equivalent) retries
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030071 * @icsk_probes_out: unanswered 0 window probes
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -080072 * @icsk_ext_hdr_len: Network protocol overhead (IP/IPv6 options)
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070073 * @icsk_ack: Delayed ACK control data
74 */
75struct inet_connection_sock {
76 /* inet_sock has to be the first member! */
77 struct inet_sock icsk_inet;
78 struct request_sock_queue icsk_accept_queue;
79 struct inet_bind_bucket *icsk_bind_hash;
80 unsigned long icsk_timeout;
81 struct timer_list icsk_retransmit_timer;
82 struct timer_list icsk_delack_timer;
83 __u32 icsk_rto;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -080084 __u32 icsk_pmtu_cookie;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030085 struct tcp_congestion_ops *icsk_ca_ops;
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -080086 struct inet_connection_sock_af_ops *icsk_af_ops;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -080087 unsigned int (*icsk_sync_mss)(struct sock *sk, u32 pmtu);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030088 __u8 icsk_ca_state;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070089 __u8 icsk_retransmits;
90 __u8 icsk_pending;
91 __u8 icsk_backoff;
92 __u8 icsk_syn_retries;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -030093 __u8 icsk_probes_out;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -080094 __u16 icsk_ext_hdr_len;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070095 struct {
96 __u8 pending; /* ACK is pending */
97 __u8 quick; /* Scheduled number of quick acks */
98 __u8 pingpong; /* The session is interactive */
99 __u8 blocked; /* Delayed ACK was blocked by socket lock */
100 __u32 ato; /* Predicted tick of soft clock */
101 unsigned long timeout; /* Currently scheduled timeout */
102 __u32 lrcvtime; /* timestamp of last received data packet */
103 __u16 last_seg_size; /* Size of last incoming segment */
104 __u16 rcv_mss; /* MSS used for delayed ACK decisions */
105 } icsk_ack;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300106 u32 icsk_ca_priv[16];
107#define ICSK_CA_PRIV_SIZE (16 * sizeof(u32))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700108};
109
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700110#define ICSK_TIME_RETRANS 1 /* Retransmit timer */
111#define ICSK_TIME_DACK 2 /* Delayed ack timer */
112#define ICSK_TIME_PROBE0 3 /* Zero window probe timer */
113#define ICSK_TIME_KEEPOPEN 4 /* Keepalive timer */
114
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700115static inline struct inet_connection_sock *inet_csk(const struct sock *sk)
116{
117 return (struct inet_connection_sock *)sk;
118}
119
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300120static inline void *inet_csk_ca(const struct sock *sk)
121{
122 return (void *)inet_csk(sk)->icsk_ca_priv;
123}
124
Arnaldo Carvalho de Melo9f1d2602005-08-09 20:11:24 -0700125extern struct sock *inet_csk_clone(struct sock *sk,
126 const struct request_sock *req,
Al Virodd0fc662005-10-07 07:46:04 +0100127 const gfp_t priority);
Arnaldo Carvalho de Melo9f1d2602005-08-09 20:11:24 -0700128
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700129enum inet_csk_ack_state_t {
130 ICSK_ACK_SCHED = 1,
131 ICSK_ACK_TIMER = 2,
132 ICSK_ACK_PUSHED = 4
133};
134
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700135extern void inet_csk_init_xmit_timers(struct sock *sk,
136 void (*retransmit_handler)(unsigned long),
137 void (*delack_handler)(unsigned long),
138 void (*keepalive_handler)(unsigned long));
139extern void inet_csk_clear_xmit_timers(struct sock *sk);
140
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700141static inline void inet_csk_schedule_ack(struct sock *sk)
142{
143 inet_csk(sk)->icsk_ack.pending |= ICSK_ACK_SCHED;
144}
145
146static inline int inet_csk_ack_scheduled(const struct sock *sk)
147{
148 return inet_csk(sk)->icsk_ack.pending & ICSK_ACK_SCHED;
149}
150
151static inline void inet_csk_delack_init(struct sock *sk)
152{
153 memset(&inet_csk(sk)->icsk_ack, 0, sizeof(inet_csk(sk)->icsk_ack));
154}
155
156extern void inet_csk_delete_keepalive_timer(struct sock *sk);
157extern void inet_csk_reset_keepalive_timer(struct sock *sk, unsigned long timeout);
158
159#ifdef INET_CSK_DEBUG
160extern const char inet_csk_timer_bug_msg[];
161#endif
162
163static inline void inet_csk_clear_xmit_timer(struct sock *sk, const int what)
164{
165 struct inet_connection_sock *icsk = inet_csk(sk);
166
167 if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0) {
168 icsk->icsk_pending = 0;
169#ifdef INET_CSK_CLEAR_TIMERS
170 sk_stop_timer(sk, &icsk->icsk_retransmit_timer);
171#endif
172 } else if (what == ICSK_TIME_DACK) {
173 icsk->icsk_ack.blocked = icsk->icsk_ack.pending = 0;
174#ifdef INET_CSK_CLEAR_TIMERS
175 sk_stop_timer(sk, &icsk->icsk_delack_timer);
176#endif
177 }
178#ifdef INET_CSK_DEBUG
179 else {
Stephen Hemmingerd8971fc2005-08-29 22:51:28 -0700180 pr_debug("%s", inet_csk_timer_bug_msg);
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700181 }
182#endif
183}
184
185/*
186 * Reset the retransmission timer
187 */
188static inline void inet_csk_reset_xmit_timer(struct sock *sk, const int what,
189 unsigned long when,
190 const unsigned long max_when)
191{
192 struct inet_connection_sock *icsk = inet_csk(sk);
193
194 if (when > max_when) {
195#ifdef INET_CSK_DEBUG
196 pr_debug("reset_xmit_timer: sk=%p %d when=0x%lx, caller=%p\n",
197 sk, what, when, current_text_addr());
198#endif
199 when = max_when;
200 }
201
202 if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0) {
203 icsk->icsk_pending = what;
204 icsk->icsk_timeout = jiffies + when;
205 sk_reset_timer(sk, &icsk->icsk_retransmit_timer, icsk->icsk_timeout);
206 } else if (what == ICSK_TIME_DACK) {
207 icsk->icsk_ack.pending |= ICSK_ACK_TIMER;
208 icsk->icsk_ack.timeout = jiffies + when;
209 sk_reset_timer(sk, &icsk->icsk_delack_timer, icsk->icsk_ack.timeout);
210 }
211#ifdef INET_CSK_DEBUG
212 else {
Stephen Hemmingerd8971fc2005-08-29 22:51:28 -0700213 pr_debug("%s", inet_csk_timer_bug_msg);
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700214 }
215#endif
216}
217
218extern struct sock *inet_csk_accept(struct sock *sk, int flags, int *err);
219
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700220extern struct request_sock *inet_csk_search_req(const struct sock *sk,
221 struct request_sock ***prevp,
222 const __u16 rport,
223 const __u32 raddr,
224 const __u32 laddr);
Arnaldo Carvalho de Melo971af182005-12-13 23:14:47 -0800225extern int inet_csk_bind_conflict(const struct sock *sk,
226 const struct inet_bind_bucket *tb);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700227extern int inet_csk_get_port(struct inet_hashinfo *hashinfo,
Arnaldo Carvalho de Melo971af182005-12-13 23:14:47 -0800228 struct sock *sk, unsigned short snum,
229 int (*bind_conflict)(const struct sock *sk,
230 const struct inet_bind_bucket *tb));
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700231
232extern struct dst_entry* inet_csk_route_req(struct sock *sk,
233 const struct request_sock *req);
234
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700235static inline void inet_csk_reqsk_queue_add(struct sock *sk,
236 struct request_sock *req,
237 struct sock *child)
238{
239 reqsk_queue_add(&inet_csk(sk)->icsk_accept_queue, req, sk, child);
240}
241
242extern void inet_csk_reqsk_queue_hash_add(struct sock *sk,
243 struct request_sock *req,
Arnaldo Carvalho de Meloc2977c22005-12-13 23:15:12 -0800244 unsigned long timeout);
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -0700245
246static inline void inet_csk_reqsk_queue_removed(struct sock *sk,
247 struct request_sock *req)
248{
249 if (reqsk_queue_removed(&inet_csk(sk)->icsk_accept_queue, req) == 0)
250 inet_csk_delete_keepalive_timer(sk);
251}
252
253static inline void inet_csk_reqsk_queue_added(struct sock *sk,
254 const unsigned long timeout)
255{
256 if (reqsk_queue_added(&inet_csk(sk)->icsk_accept_queue) == 0)
257 inet_csk_reset_keepalive_timer(sk, timeout);
258}
259
260static inline int inet_csk_reqsk_queue_len(const struct sock *sk)
261{
262 return reqsk_queue_len(&inet_csk(sk)->icsk_accept_queue);
263}
264
265static inline int inet_csk_reqsk_queue_young(const struct sock *sk)
266{
267 return reqsk_queue_len_young(&inet_csk(sk)->icsk_accept_queue);
268}
269
270static inline int inet_csk_reqsk_queue_is_full(const struct sock *sk)
271{
272 return reqsk_queue_is_full(&inet_csk(sk)->icsk_accept_queue);
273}
274
275static inline void inet_csk_reqsk_queue_unlink(struct sock *sk,
276 struct request_sock *req,
277 struct request_sock **prev)
278{
279 reqsk_queue_unlink(&inet_csk(sk)->icsk_accept_queue, req, prev);
280}
281
282static inline void inet_csk_reqsk_queue_drop(struct sock *sk,
283 struct request_sock *req,
284 struct request_sock **prev)
285{
286 inet_csk_reqsk_queue_unlink(sk, req, prev);
287 inet_csk_reqsk_queue_removed(sk, req);
288 reqsk_free(req);
289}
290
Arnaldo Carvalho de Meloa019d6f2005-08-09 20:15:09 -0700291extern void inet_csk_reqsk_queue_prune(struct sock *parent,
292 const unsigned long interval,
293 const unsigned long timeout,
294 const unsigned long max_rto);
295
296extern void inet_csk_destroy_sock(struct sock *sk);
Arnaldo Carvalho de Melodc40c7b2005-08-23 21:52:58 -0700297
298/*
299 * LISTEN is a special case for poll..
300 */
301static inline unsigned int inet_csk_listen_poll(const struct sock *sk)
302{
303 return !reqsk_queue_empty(&inet_csk(sk)->icsk_accept_queue) ?
304 (POLLIN | POLLRDNORM) : 0;
305}
306
Arnaldo Carvalho de Meloa019d6f2005-08-09 20:15:09 -0700307extern int inet_csk_listen_start(struct sock *sk, const int nr_table_entries);
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -0700308extern void inet_csk_listen_stop(struct sock *sk);
309
Arnaldo Carvalho de Meloaf05dc92005-12-13 23:16:04 -0800310extern void inet_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr);
311
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700312#endif /* _INET_CONNECTION_SOCK_H */