Blame view

net/dccp/ackvec.h 4.52 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-only */
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
2
3
4
5
6
  #ifndef _ACKVEC_H
  #define _ACKVEC_H
  /*
   *  net/dccp/ackvec.h
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
7
8
   *  An implementation of Ack Vectors for the DCCP protocol
   *  Copyright (c) 2007 University of Aberdeen, Scotland, UK
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
9
   *  Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@mandriva.com>
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
10
   */
b20a9c24d   Gerrit Renker   dccp: Set per-con...
11
  #include <linux/dccp.h>
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
12
  #include <linux/compiler.h>
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
13
  #include <linux/list.h>
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
14
  #include <linux/types.h>
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
15
16
17
18
19
  /*
   * Ack Vector buffer space is static, in multiples of %DCCP_SINGLE_OPT_MAXLEN,
   * the maximum size of a single Ack Vector. Setting %DCCPAV_NUM_ACKVECS to 1
   * will be sufficient for most cases of low Ack Ratios, using a value of 2 gives
   * more headroom if Ack Ratio is higher or when the sender acknowledges slowly.
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
20
   * The maximum value is bounded by the u16 types for indices and functions.
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
21
22
23
   */
  #define DCCPAV_NUM_ACKVECS	2
  #define DCCPAV_MAX_ACKVEC_LEN	(DCCP_SINGLE_OPT_MAXLEN * DCCPAV_NUM_ACKVECS)
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
24

361a5c1dd   Gerrit Renker   dccp: Minimise he...
25
26
  /* Estimated minimum average Ack Vector length - used for updating MPS */
  #define DCCPAV_MIN_OPTLEN	16
380240864   Gerrit Renker   dccp ccid-2: Upda...
27
28
  /* Threshold for coping with large bursts of losses */
  #define DCCPAV_BURST_THRESH	(DCCPAV_MAX_ACKVEC_LEN / 8)
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
29
30
31
32
33
34
35
  enum dccp_ackvec_states {
  	DCCPAV_RECEIVED =	0x00,
  	DCCPAV_ECN_MARKED =	0x40,
  	DCCPAV_RESERVED =	0x80,
  	DCCPAV_NOT_RECEIVED =	0xC0
  };
  #define DCCPAV_MAX_RUNLEN	0x3F
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
36

f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
37
38
39
40
  static inline u8 dccp_ackvec_runlen(const u8 *cell)
  {
  	return *cell & DCCPAV_MAX_RUNLEN;
  }
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
41

f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
42
43
44
45
  static inline u8 dccp_ackvec_state(const u8 *cell)
  {
  	return *cell & ~DCCPAV_MAX_RUNLEN;
  }
2c53040f0   Ben Hutchings   net: Fix (nearly-...
46
47
  /**
   * struct dccp_ackvec - Ack Vector main data structure
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
48
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
49
50
   * This implements a fixed-size circular buffer within an array and is largely
   * based on Appendix A of RFC 4340.
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
51
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
52
53
54
55
   * @av_buf:	   circular buffer storage area
   * @av_buf_head:   head index; begin of live portion in @av_buf
   * @av_buf_tail:   tail index; first index _after_ the live portion in @av_buf
   * @av_buf_ackno:  highest seqno of acknowledgeable packet recorded in @av_buf
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
56
   * @av_tail_ackno: lowest  seqno of acknowledgeable packet recorded in @av_buf
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
57
58
   * @av_buf_nonce:  ECN nonce sums, each covering subsequent segments of up to
   *		   %DCCP_SINGLE_OPT_MAXLEN cells in the live portion of @av_buf
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
59
   * @av_overflow:   if 1 then buf_head == buf_tail indicates buffer wraparound
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
60
   * @av_records:	   list of %dccp_ackvec_record (Ack Vectors sent previously)
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
61
62
   */
  struct dccp_ackvec {
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
63
  	u8			av_buf[DCCPAV_MAX_ACKVEC_LEN];
a47c51044   Gerrit Renker   [ACKVEC]: Reduce ...
64
  	u16			av_buf_head;
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
65
66
  	u16			av_buf_tail;
  	u64			av_buf_ackno:48;
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
67
  	u64			av_tail_ackno:48;
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
68
  	bool			av_buf_nonce[DCCPAV_NUM_ACKVECS];
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
69
  	u8			av_overflow:1;
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
70
  	struct list_head	av_records;
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
71
  };
2c53040f0   Ben Hutchings   net: Fix (nearly-...
72
73
  /**
   * struct dccp_ackvec_record - Records information about sent Ack Vectors
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
74
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
75
76
   * These list entries define the additional information which the HC-Receiver
   * keeps about recently-sent Ack Vectors; again refer to RFC 4340, Appendix A.
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
77
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
78
79
80
81
82
83
   * @avr_node:	    the list node in @av_records
   * @avr_ack_seqno:  sequence number of the packet the Ack Vector was sent on
   * @avr_ack_ackno:  the Ack number that this record/Ack Vector refers to
   * @avr_ack_ptr:    pointer into @av_buf where this record starts
   * @avr_ack_runlen: run length of @avr_ack_ptr at the time of sending
   * @avr_ack_nonce:  the sum of @av_buf_nonce's at the time this record was sent
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
84
   *
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
85
   * The list as a whole is sorted in descending order by @avr_ack_seqno.
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
86
87
   */
  struct dccp_ackvec_record {
a47c51044   Gerrit Renker   [ACKVEC]: Reduce ...
88
  	struct list_head avr_node;
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
89
90
  	u64		 avr_ack_seqno:48;
  	u64		 avr_ack_ackno:48;
a47c51044   Gerrit Renker   [ACKVEC]: Reduce ...
91
  	u16		 avr_ack_ptr;
f17a37c9b   Gerrit Renker   dccp ccid-2: Ack ...
92
93
  	u8		 avr_ack_runlen;
  	u8		 avr_ack_nonce:1;
02bcf28c8   Andrea Bittau   [DCCP] ackvec: In...
94
  };
a402a5aa9   Joe Perches   net: dccp: Remove...
95
96
  int dccp_ackvec_init(void);
  void dccp_ackvec_exit(void);
9b07ef5dd   Arnaldo Carvalho de Melo   [DCCP] ackvec: In...
97

a402a5aa9   Joe Perches   net: dccp: Remove...
98
99
  struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority);
  void dccp_ackvec_free(struct dccp_ackvec *av);
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
100

a402a5aa9   Joe Perches   net: dccp: Remove...
101
102
103
104
  void dccp_ackvec_input(struct dccp_ackvec *av, struct sk_buff *skb);
  int dccp_ackvec_update_records(struct dccp_ackvec *av, u64 seq, u8 sum);
  void dccp_ackvec_clear_state(struct dccp_ackvec *av, const u64 ackno);
  u16 dccp_ackvec_buflen(const struct dccp_ackvec *av);
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
105

b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
106
  static inline bool dccp_ackvec_is_empty(const struct dccp_ackvec *av)
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
107
  {
b3d14bff1   Gerrit Renker   dccp ccid-2: Impl...
108
  	return av->av_overflow == 0 && av->av_buf_head == av->av_buf_tail;
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
109
  }
7e87fe843   Gerrit Renker   dccp ccid-2: Sepa...
110
111
112
113
114
115
116
  
  /**
   * struct dccp_ackvec_parsed  -  Record offsets of Ack Vectors in skb
   * @vec:	start of vector (offset into skb)
   * @len:	length of @vec
   * @nonce:	whether @vec had an ECN nonce of 0 or 1
   * @node:	FIFO - arranged in descending order of ack_ackno
2c53040f0   Ben Hutchings   net: Fix (nearly-...
117
   *
7e87fe843   Gerrit Renker   dccp ccid-2: Sepa...
118
119
120
121
122
123
124
125
   * This structure is used by CCIDs to access Ack Vectors in a received skb.
   */
  struct dccp_ackvec_parsed {
  	u8		 *vec,
  			 len,
  			 nonce:1;
  	struct list_head node;
  };
a402a5aa9   Joe Perches   net: dccp: Remove...
126
127
  int dccp_ackvec_parsed_add(struct list_head *head, u8 *vec, u8 len, u8 nonce);
  void dccp_ackvec_parsed_cleanup(struct list_head *parsed_chunks);
ae31c3399   Arnaldo Carvalho de Melo   [DCCP]: Move the ...
128
  #endif /* _ACKVEC_H */