Blame view

net/dccp/ccid.h 8.72 KB
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef _CCID_H
  #define _CCID_H
  /*
   *  net/dccp/ccid.h
   *
   *  An implementation of the DCCP protocol
   *  Arnaldo Carvalho de Melo <acme@conectiva.com.br>
   *
   *  CCID infrastructure
   *
   *	This program is free software; you can redistribute it and/or modify it
   *	under the terms of the GNU General Public License version 2 as
   *	published by the Free Software Foundation.
   */
  
  #include <net/sock.h>
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
17
  #include <linux/compiler.h>
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
18
19
20
  #include <linux/dccp.h>
  #include <linux/list.h>
  #include <linux/module.h>
8ed030dd0   Gerrit Renker   dccp: fix bug in ...
21
22
23
  /* maximum value for a CCID (RFC 4340, 19.5) */
  #define CCID_MAX		255
  #define CCID_SLAB_NAME_LENGTH	32
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
24

14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
25
  struct tcp_info;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
26
27
28
29
  /**
   *  struct ccid_operations  -  Interface to Congestion-Control Infrastructure
   *
   *  @ccid_id: numerical CCID ID (up to %CCID_MAX, cf. table 5 in RFC 4340, 10.)
6179983ad   Gerrit Renker   [DCCP]: Introduci...
30
   *  @ccid_ccmps: the CCMPS including network/transport headers (0 when disabled)
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
31
   *  @ccid_name: alphabetical identifier string for @ccid_id
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
   *  @ccid_hc_{r,t}x_slab: memory pool for the receiver/sender half-connection
   *  @ccid_hc_{r,t}x_obj_size: size of the receiver/sender half-connection socket
   *
   *  @ccid_hc_{r,t}x_init: CCID-specific initialisation routine (before startup)
   *  @ccid_hc_{r,t}x_exit: CCID-specific cleanup routine (before destruction)
   *  @ccid_hc_rx_packet_recv: implements the HC-receiver side
   *  @ccid_hc_{r,t}x_parse_options: parsing routine for CCID/HC-specific options
   *  @ccid_hc_{r,t}x_insert_options: insert routine for CCID/HC-specific options
   *  @ccid_hc_tx_packet_recv: implements feedback processing for the HC-sender
   *  @ccid_hc_tx_send_packet: implements the sending part of the HC-sender
   *  @ccid_hc_tx_packet_sent: does accounting for packets in flight by HC-sender
   *  @ccid_hc_{r,t}x_get_info: INET_DIAG information for HC-receiver/sender
   *  @ccid_hc_{r,t}x_getsockopt: socket options specific to HC-receiver/sender
   */
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
46
  struct ccid_operations {
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
47
  	unsigned char		ccid_id;
6179983ad   Gerrit Renker   [DCCP]: Introduci...
48
  	__u32			ccid_ccmps;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
49
  	const char		*ccid_name;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
50
51
  	struct kmem_cache	*ccid_hc_rx_slab,
  				*ccid_hc_tx_slab;
8ed030dd0   Gerrit Renker   dccp: fix bug in ...
52
53
  	char			ccid_hc_rx_slab_name[CCID_SLAB_NAME_LENGTH];
  	char			ccid_hc_tx_slab_name[CCID_SLAB_NAME_LENGTH];
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
54
55
56
  	__u32			ccid_hc_rx_obj_size,
  				ccid_hc_tx_obj_size;
  	/* Interface Routines */
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
57
58
  	int		(*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
  	int		(*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
59
60
  	void		(*ccid_hc_rx_exit)(struct sock *sk);
  	void		(*ccid_hc_tx_exit)(struct sock *sk);
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
61
62
  	void		(*ccid_hc_rx_packet_recv)(struct sock *sk,
  						  struct sk_buff *skb);
4874c131d   Gerrit Renker   dccp: Add packet ...
63
64
  	int		(*ccid_hc_rx_parse_options)(struct sock *sk, u8 pkt,
  						    u8 opt, u8 *val, u8 len);
2d0817d11   Arnaldo Carvalho de Melo   [DCCP] options: M...
65
  	int		(*ccid_hc_rx_insert_options)(struct sock *sk,
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
66
  						     struct sk_buff *skb);
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
67
68
  	void		(*ccid_hc_tx_packet_recv)(struct sock *sk,
  						  struct sk_buff *skb);
4874c131d   Gerrit Renker   dccp: Add packet ...
69
70
  	int		(*ccid_hc_tx_parse_options)(struct sock *sk, u8 pkt,
  						    u8 opt, u8 *val, u8 len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
71
  	int		(*ccid_hc_tx_send_packet)(struct sock *sk,
6b57c93dc   Gerrit Renker   [DCCP]: Use `unsi...
72
73
  						  struct sk_buff *skb);
  	void		(*ccid_hc_tx_packet_sent)(struct sock *sk,
baf9e782e   Gerrit Renker   dccp: remove unus...
74
  						  unsigned int len);
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
75
76
77
78
  	void		(*ccid_hc_rx_get_info)(struct sock *sk,
  					       struct tcp_info *info);
  	void		(*ccid_hc_tx_get_info)(struct sock *sk,
  					       struct tcp_info *info);
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
79
80
81
82
83
84
85
86
  	int		(*ccid_hc_rx_getsockopt)(struct sock *sk,
  						 const int optname, int len,
  						 u32 __user *optval,
  						 int __user *optlen);
  	int		(*ccid_hc_tx_getsockopt)(struct sock *sk,
  						 const int optname, int len,
  						 u32 __user *optval,
  						 int __user *optlen);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
87
  };
ddebc973c   Gerrit Renker   dccp: Lockless in...
88
89
90
91
  extern struct ccid_operations ccid2_ops;
  #ifdef CONFIG_IP_DCCP_CCID3
  extern struct ccid_operations ccid3_ops;
  #endif
a402a5aa9   Joe Perches   net: dccp: Remove...
92
93
  int ccid_initialize_builtins(void);
  void ccid_cleanup_builtins(void);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
94

91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
95
96
97
98
  struct ccid {
  	struct ccid_operations *ccid_ops;
  	char		       ccid_priv[0];
  };
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
99

91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
100
  static inline void *ccid_priv(const struct ccid *ccid)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
101
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
102
  	return (void *)ccid->ccid_priv;
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
103
  }
a402a5aa9   Joe Perches   net: dccp: Remove...
104
105
106
107
  bool ccid_support_check(u8 const *ccid_array, u8 array_len);
  int ccid_get_builtin_ccids(u8 **ccid_array, u8 *array_len);
  int ccid_getsockopt_builtin_ccids(struct sock *sk, int len,
  				  char __user *, int __user *);
d90ebcbfa   Gerrit Renker   dccp: Query suppo...
108

a402a5aa9   Joe Perches   net: dccp: Remove...
109
  struct ccid *ccid_new(const u8 id, struct sock *sk, bool rx);
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
110

71c262a3d   Gerrit Renker   dccp: API to quer...
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  static inline int ccid_get_current_rx_ccid(struct dccp_sock *dp)
  {
  	struct ccid *ccid = dp->dccps_hc_rx_ccid;
  
  	if (ccid == NULL || ccid->ccid_ops == NULL)
  		return -1;
  	return ccid->ccid_ops->ccid_id;
  }
  
  static inline int ccid_get_current_tx_ccid(struct dccp_sock *dp)
  {
  	struct ccid *ccid = dp->dccps_hc_tx_ccid;
  
  	if (ccid == NULL || ccid->ccid_ops == NULL)
  		return -1;
  	return ccid->ccid_ops->ccid_id;
  }
a402a5aa9   Joe Perches   net: dccp: Remove...
128
129
  void ccid_hc_rx_delete(struct ccid *ccid, struct sock *sk);
  void ccid_hc_tx_delete(struct ccid *ccid, struct sock *sk);
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
130

fe84f4140   Gerrit Renker   dccp: Return-valu...
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  /*
   * Congestion control of queued data packets via CCID decision.
   *
   * The TX CCID performs its congestion-control by indicating whether and when a
   * queued packet may be sent, using the return code of ccid_hc_tx_send_packet().
   * The following modes are supported via the symbolic constants below:
   * - timer-based pacing    (CCID returns a delay value in milliseconds);
   * - autonomous dequeueing (CCID internally schedules dccps_xmitlet).
   */
  
  enum ccid_dequeueing_decision {
  	CCID_PACKET_SEND_AT_ONCE =	 0x00000,  /* "green light": no delay */
  	CCID_PACKET_DELAY_MAX =		 0x0FFFF,  /* maximum delay in msecs  */
  	CCID_PACKET_DELAY =		 0x10000,  /* CCID msec-delay mode */
  	CCID_PACKET_WILL_DEQUEUE_LATER = 0x20000,  /* CCID autonomous mode */
  	CCID_PACKET_ERR =		 0xF0000,  /* error condition */
  };
  
  static inline int ccid_packet_dequeue_eval(const int return_code)
  {
  	if (return_code < 0)
  		return CCID_PACKET_ERR;
  	if (return_code == 0)
  		return CCID_PACKET_SEND_AT_ONCE;
  	if (return_code <= CCID_PACKET_DELAY_MAX)
  		return CCID_PACKET_DELAY;
  	return return_code;
  }
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
159
  static inline int ccid_hc_tx_send_packet(struct ccid *ccid, struct sock *sk,
6b57c93dc   Gerrit Renker   [DCCP]: Use `unsi...
160
  					 struct sk_buff *skb)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
161
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
162
  	if (ccid->ccid_ops->ccid_hc_tx_send_packet != NULL)
fe84f4140   Gerrit Renker   dccp: Return-valu...
163
164
  		return ccid->ccid_ops->ccid_hc_tx_send_packet(sk, skb);
  	return CCID_PACKET_SEND_AT_ONCE;
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
165
166
167
  }
  
  static inline void ccid_hc_tx_packet_sent(struct ccid *ccid, struct sock *sk,
baf9e782e   Gerrit Renker   dccp: remove unus...
168
  					  unsigned int len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
169
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
170
  	if (ccid->ccid_ops->ccid_hc_tx_packet_sent != NULL)
baf9e782e   Gerrit Renker   dccp: remove unus...
171
  		ccid->ccid_ops->ccid_hc_tx_packet_sent(sk, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
172
173
174
175
176
  }
  
  static inline void ccid_hc_rx_packet_recv(struct ccid *ccid, struct sock *sk,
  					  struct sk_buff *skb)
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
177
178
  	if (ccid->ccid_ops->ccid_hc_rx_packet_recv != NULL)
  		ccid->ccid_ops->ccid_hc_rx_packet_recv(sk, skb);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
179
180
181
182
183
  }
  
  static inline void ccid_hc_tx_packet_recv(struct ccid *ccid, struct sock *sk,
  					  struct sk_buff *skb)
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
184
185
  	if (ccid->ccid_ops->ccid_hc_tx_packet_recv != NULL)
  		ccid->ccid_ops->ccid_hc_tx_packet_recv(sk, skb);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
186
  }
4874c131d   Gerrit Renker   dccp: Add packet ...
187
188
189
190
191
192
193
  /**
   * ccid_hc_tx_parse_options  -  Parse CCID-specific options sent by the receiver
   * @pkt: type of packet that @opt appears on (RFC 4340, 5.1)
   * @opt: the CCID-specific option type (RFC 4340, 5.8 and 10.3)
   * @val: value of @opt
   * @len: length of @val in bytes
   */
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
194
  static inline int ccid_hc_tx_parse_options(struct ccid *ccid, struct sock *sk,
4874c131d   Gerrit Renker   dccp: Add packet ...
195
  					   u8 pkt, u8 opt, u8 *val, u8 len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
196
  {
4874c131d   Gerrit Renker   dccp: Add packet ...
197
198
199
  	if (ccid->ccid_ops->ccid_hc_tx_parse_options == NULL)
  		return 0;
  	return ccid->ccid_ops->ccid_hc_tx_parse_options(sk, pkt, opt, val, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
200
  }
4874c131d   Gerrit Renker   dccp: Add packet ...
201
202
203
204
  /**
   * ccid_hc_rx_parse_options  -  Parse CCID-specific options sent by the sender
   * Arguments are analogous to ccid_hc_tx_parse_options()
   */
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
205
  static inline int ccid_hc_rx_parse_options(struct ccid *ccid, struct sock *sk,
4874c131d   Gerrit Renker   dccp: Add packet ...
206
  					   u8 pkt, u8 opt, u8 *val, u8 len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
207
  {
4874c131d   Gerrit Renker   dccp: Add packet ...
208
209
210
  	if (ccid->ccid_ops->ccid_hc_rx_parse_options == NULL)
  		return 0;
  	return ccid->ccid_ops->ccid_hc_rx_parse_options(sk, pkt, opt, val, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
211
  }
2d0817d11   Arnaldo Carvalho de Melo   [DCCP] options: M...
212
213
  static inline int ccid_hc_rx_insert_options(struct ccid *ccid, struct sock *sk,
  					    struct sk_buff *skb)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
214
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
215
  	if (ccid->ccid_ops->ccid_hc_rx_insert_options != NULL)
2d0817d11   Arnaldo Carvalho de Melo   [DCCP] options: M...
216
217
  		return ccid->ccid_ops->ccid_hc_rx_insert_options(sk, skb);
  	return 0;
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
218
  }
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
219
220
221
222
  
  static inline void ccid_hc_rx_get_info(struct ccid *ccid, struct sock *sk,
  				       struct tcp_info *info)
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
223
224
  	if (ccid->ccid_ops->ccid_hc_rx_get_info != NULL)
  		ccid->ccid_ops->ccid_hc_rx_get_info(sk, info);
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
225
226
227
228
229
  }
  
  static inline void ccid_hc_tx_get_info(struct ccid *ccid, struct sock *sk,
  				       struct tcp_info *info)
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
230
231
  	if (ccid->ccid_ops->ccid_hc_tx_get_info != NULL)
  		ccid->ccid_ops->ccid_hc_tx_get_info(sk, info);
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
232
  }
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
233
234
235
236
237
238
  
  static inline int ccid_hc_rx_getsockopt(struct ccid *ccid, struct sock *sk,
  					const int optname, int len,
  					u32 __user *optval, int __user *optlen)
  {
  	int rc = -ENOPROTOOPT;
276bdb82d   Mathias Krause   dccp: check ccid ...
239
  	if (ccid != NULL && ccid->ccid_ops->ccid_hc_rx_getsockopt != NULL)
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
240
  		rc = ccid->ccid_ops->ccid_hc_rx_getsockopt(sk, optname, len,
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
241
242
243
244
245
246
247
248
249
  						 optval, optlen);
  	return rc;
  }
  
  static inline int ccid_hc_tx_getsockopt(struct ccid *ccid, struct sock *sk,
  					const int optname, int len,
  					u32 __user *optval, int __user *optlen)
  {
  	int rc = -ENOPROTOOPT;
276bdb82d   Mathias Krause   dccp: check ccid ...
250
  	if (ccid != NULL && ccid->ccid_ops->ccid_hc_tx_getsockopt != NULL)
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
251
  		rc = ccid->ccid_ops->ccid_hc_tx_getsockopt(sk, optname, len,
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
252
253
254
  						 optval, optlen);
  	return rc;
  }
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
255
  #endif /* _CCID_H */