Blame view

net/dccp/ccid.h 8.58 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
2
3
4
5
6
7
8
9
10
  #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
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
11
12
13
   */
  
  #include <net/sock.h>
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
14
  #include <linux/compiler.h>
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
15
16
17
  #include <linux/dccp.h>
  #include <linux/list.h>
  #include <linux/module.h>
8ed030dd0   Gerrit Renker   dccp: fix bug in ...
18
19
20
  /* 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...
21

14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
22
  struct tcp_info;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
23
24
25
26
  /**
   *  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...
27
   *  @ccid_ccmps: the CCMPS including network/transport headers (0 when disabled)
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
28
   *  @ccid_name: alphabetical identifier string for @ccid_id
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
   *  @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...
43
  struct ccid_operations {
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
44
  	unsigned char		ccid_id;
6179983ad   Gerrit Renker   [DCCP]: Introduci...
45
  	__u32			ccid_ccmps;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
46
  	const char		*ccid_name;
9cb2345a8   Gerrit Renker   [DCCP]: Documenta...
47
48
  	struct kmem_cache	*ccid_hc_rx_slab,
  				*ccid_hc_tx_slab;
8ed030dd0   Gerrit Renker   dccp: fix bug in ...
49
50
  	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...
51
52
53
  	__u32			ccid_hc_rx_obj_size,
  				ccid_hc_tx_obj_size;
  	/* Interface Routines */
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
54
55
  	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...
56
57
  	void		(*ccid_hc_rx_exit)(struct sock *sk);
  	void		(*ccid_hc_tx_exit)(struct sock *sk);
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
58
59
  	void		(*ccid_hc_rx_packet_recv)(struct sock *sk,
  						  struct sk_buff *skb);
4874c131d   Gerrit Renker   dccp: Add packet ...
60
61
  	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...
62
  	int		(*ccid_hc_rx_insert_options)(struct sock *sk,
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
63
  						     struct sk_buff *skb);
7690af3ff   Arnaldo Carvalho de Melo   [DCCP]: Just refl...
64
65
  	void		(*ccid_hc_tx_packet_recv)(struct sock *sk,
  						  struct sk_buff *skb);
4874c131d   Gerrit Renker   dccp: Add packet ...
66
67
  	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...
68
  	int		(*ccid_hc_tx_send_packet)(struct sock *sk,
6b57c93dc   Gerrit Renker   [DCCP]: Use `unsi...
69
70
  						  struct sk_buff *skb);
  	void		(*ccid_hc_tx_packet_sent)(struct sock *sk,
baf9e782e   Gerrit Renker   dccp: remove unus...
71
  						  unsigned int len);
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
72
73
74
75
  	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...
76
77
78
79
80
81
82
83
  	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...
84
  };
ddebc973c   Gerrit Renker   dccp: Lockless in...
85
86
87
88
  extern struct ccid_operations ccid2_ops;
  #ifdef CONFIG_IP_DCCP_CCID3
  extern struct ccid_operations ccid3_ops;
  #endif
a402a5aa9   Joe Perches   net: dccp: Remove...
89
90
  int ccid_initialize_builtins(void);
  void ccid_cleanup_builtins(void);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
91

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

91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
97
  static inline void *ccid_priv(const struct ccid *ccid)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
98
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
99
  	return (void *)ccid->ccid_priv;
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
100
  }
a402a5aa9   Joe Perches   net: dccp: Remove...
101
102
103
104
  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...
105

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

71c262a3d   Gerrit Renker   dccp: API to quer...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  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...
125
126
  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...
127

fe84f4140   Gerrit Renker   dccp: Return-valu...
128
129
130
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
  /*
   * 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...
156
  static inline int ccid_hc_tx_send_packet(struct ccid *ccid, struct sock *sk,
6b57c93dc   Gerrit Renker   [DCCP]: Use `unsi...
157
  					 struct sk_buff *skb)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
158
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
159
  	if (ccid->ccid_ops->ccid_hc_tx_send_packet != NULL)
fe84f4140   Gerrit Renker   dccp: Return-valu...
160
161
  		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...
162
163
164
  }
  
  static inline void ccid_hc_tx_packet_sent(struct ccid *ccid, struct sock *sk,
baf9e782e   Gerrit Renker   dccp: remove unus...
165
  					  unsigned int len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
166
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
167
  	if (ccid->ccid_ops->ccid_hc_tx_packet_sent != NULL)
baf9e782e   Gerrit Renker   dccp: remove unus...
168
  		ccid->ccid_ops->ccid_hc_tx_packet_sent(sk, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
169
170
171
172
173
  }
  
  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...
174
175
  	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...
176
177
178
179
180
  }
  
  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...
181
182
  	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...
183
  }
4874c131d   Gerrit Renker   dccp: Add packet ...
184
185
186
187
188
189
190
  /**
   * 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...
191
  static inline int ccid_hc_tx_parse_options(struct ccid *ccid, struct sock *sk,
4874c131d   Gerrit Renker   dccp: Add packet ...
192
  					   u8 pkt, u8 opt, u8 *val, u8 len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
193
  {
9b1f19d81   Eric Dumazet   dccp: fool proof ...
194
  	if (!ccid || !ccid->ccid_ops->ccid_hc_tx_parse_options)
4874c131d   Gerrit Renker   dccp: Add packet ...
195
196
  		return 0;
  	return ccid->ccid_ops->ccid_hc_tx_parse_options(sk, pkt, opt, val, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
197
  }
4874c131d   Gerrit Renker   dccp: Add packet ...
198
199
200
201
  /**
   * 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...
202
  static inline int ccid_hc_rx_parse_options(struct ccid *ccid, struct sock *sk,
4874c131d   Gerrit Renker   dccp: Add packet ...
203
  					   u8 pkt, u8 opt, u8 *val, u8 len)
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
204
  {
9b1f19d81   Eric Dumazet   dccp: fool proof ...
205
  	if (!ccid || !ccid->ccid_ops->ccid_hc_rx_parse_options)
4874c131d   Gerrit Renker   dccp: Add packet ...
206
207
  		return 0;
  	return ccid->ccid_ops->ccid_hc_rx_parse_options(sk, pkt, opt, val, len);
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
208
  }
2d0817d11   Arnaldo Carvalho de Melo   [DCCP] options: M...
209
210
  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...
211
  {
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
212
  	if (ccid->ccid_ops->ccid_hc_rx_insert_options != NULL)
2d0817d11   Arnaldo Carvalho de Melo   [DCCP] options: M...
213
214
  		return ccid->ccid_ops->ccid_hc_rx_insert_options(sk, skb);
  	return 0;
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
215
  }
2babe1f6f   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
216
217
218
219
  
  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...
220
221
  	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...
222
223
224
225
226
  }
  
  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...
227
228
  	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...
229
  }
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
230
231
232
233
234
235
  
  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 ...
236
  	if (ccid != NULL && ccid->ccid_ops->ccid_hc_rx_getsockopt != NULL)
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
237
  		rc = ccid->ccid_ops->ccid_hc_rx_getsockopt(sk, optname, len,
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
238
239
240
241
242
243
244
245
246
  						 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 ...
247
  	if (ccid != NULL && ccid->ccid_ops->ccid_hc_tx_getsockopt != NULL)
91f0ebf7b   Arnaldo Carvalho de Melo   [DCCP] CCID: Impr...
248
  		rc = ccid->ccid_ops->ccid_hc_tx_getsockopt(sk, optname, len,
88f964db6   Arnaldo Carvalho de Melo   [DCCP]: Introduce...
249
250
251
  						 optval, optlen);
  	return rc;
  }
7c657876b   Arnaldo Carvalho de Melo   [DCCP]: Initial i...
252
  #endif /* _CCID_H */