blob: f24fd708009aa1842a5343847c266ac53a48bd9a [file] [log] [blame]
Ben Menchaca84f36632014-02-28 20:57:38 +00001/*
2 **************************************************************************
Murat Sezgina05befb2019-10-08 17:00:37 -07003 * Copyright (c) 2014-2015, 2018-2020 The Linux Foundation. All rights reserved.
Ben Menchaca84f36632014-02-28 20:57:38 +00004 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all copies.
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
13 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 **************************************************************************
15 */
16
17struct ecm_classifier_instance;
18
19/*
20 * Classifier types.
21 * MUST BE RECORDED IN ASCENDING ORDER OF PRIORITY
22 */
23enum ecm_classifier_types {
24 ECM_CLASSIFIER_TYPE_DEFAULT = 0, /* MUST BE FIRST, Default classifier */
Murat Sezginf4f7ab42018-10-12 17:01:46 -070025#ifdef ECM_CLASSIFIER_MARK_ENABLE
26 ECM_CLASSIFIER_TYPE_MARK, /* Mark classifier */
27#endif
Hai Shalom81f4e202014-06-04 09:30:27 -070028#ifdef ECM_CLASSIFIER_HYFI_ENABLE
Ben Menchaca84f36632014-02-28 20:57:38 +000029 ECM_CLASSIFIER_TYPE_HYFI, /* HyFi classifier */
Hai Shalom81f4e202014-06-04 09:30:27 -070030#endif
Murat Sezginb3731e82014-11-26 12:20:59 -080031#ifdef ECM_CLASSIFIER_DSCP_ENABLE
Gareth Williams8932a912014-06-11 18:06:25 -070032 ECM_CLASSIFIER_TYPE_DSCP, /* Provides DSCP and DSCP remarking support */
Murat Sezginb3731e82014-11-26 12:20:59 -080033#endif
34#ifdef ECM_CLASSIFIER_NL_ENABLE
Ben Menchaca84f36632014-02-28 20:57:38 +000035 ECM_CLASSIFIER_TYPE_NL, /* Provides netlink interface */
Murat Sezginb3731e82014-11-26 12:20:59 -080036#endif
Murat Sezgina05befb2019-10-08 17:00:37 -070037#ifdef ECM_CLASSIFIER_OVS_ENABLE
38 ECM_CLASSIFIER_TYPE_OVS, /* OVS classifier */
39#endif
Gareth Williamsdcda9b92015-05-13 10:08:15 +010040#ifdef ECM_CLASSIFIER_PCC_ENABLE
41 ECM_CLASSIFIER_TYPE_PCC, /* Parental control subsystem support classifier */
42#endif
Ben Menchaca84f36632014-02-28 20:57:38 +000043 ECM_CLASSIFIER_TYPES, /* MUST BE LAST */
44};
45typedef enum ecm_classifier_types ecm_classifier_type_t;
46
47/*
48 * enum ecm_classifier_relevances
49 * Whether a classifier is relevant to a connection
50 */
51enum ecm_classifier_relevances {
52 ECM_CLASSIFIER_RELEVANCE_MAYBE = 0, /* Classifier has not yet determined relevance */
53 ECM_CLASSIFIER_RELEVANCE_NO, /* Classifier is not relevant to a connection (classifier will be unassigned from the connection after returning this from a process() call) */
54 ECM_CLASSIFIER_RELEVANCE_YES, /* Classifier is relevant to the connection, process actions will be inspected by the front end when returning this from a process() call */
55};
56typedef enum ecm_classifier_relevances ecm_classifier_relevence_t;
57
58/*
59 * enum ecm_classifier_acceleration_modes
60 * Modes in which a connection may be accelerated
Murat Sezgind701ac52014-08-20 14:02:30 -070061 *
62 * These are used by a classifier to indicate its desire to accelerate.
Ben Menchaca84f36632014-02-28 20:57:38 +000063 */
64enum ecm_classifier_acceleration_modes {
65 ECM_CLASSIFIER_ACCELERATION_MODE_DONT_CARE = 0, /* Classifier does not care if the connection is accelerated */
66 ECM_CLASSIFIER_ACCELERATION_MODE_NO, /* Connection must not be accelerated */
67 ECM_CLASSIFIER_ACCELERATION_MODE_ACCEL, /* Connection can be accelerated whenever */
68};
69typedef enum ecm_classifier_acceleration_modes ecm_classifier_acceleration_mode_t;
70
71/*
72 * Process actions
73 * A process result, that is relevant, may contain zero or more actions for the front end.
74 * Due to the parallel processing nature of classifiers, *usually* the action(s) of the highest priority
75 * classifier will override any lower priority actions. This is up to front end discretion, of course.
76 */
Gareth Williams27c3db12014-06-11 17:37:56 -070077#define ECM_CLASSIFIER_PROCESS_ACTION_DROP 0x00000001 /* Drop */
78#define ECM_CLASSIFIER_PROCESS_ACTION_QOS_TAG 0x00000002 /* Contains flow & return qos tags */
Ben Menchaca84f36632014-02-28 20:57:38 +000079#define ECM_CLASSIFIER_PROCESS_ACTION_ACCEL_MODE 0x00000004 /* Contains an accel mode */
80#define ECM_CLASSIFIER_PROCESS_ACTION_TIMER_GROUP 0x00000008 /* Contains a timer group change */
Murat Sezgin62c92832015-03-06 16:08:31 -080081
82#ifdef ECM_CLASSIFIER_DSCP_ENABLE
Gareth Williamsbd03e232014-06-11 17:55:28 -070083#define ECM_CLASSIFIER_PROCESS_ACTION_DSCP 0x00000010 /* Contains DSCP marking information */
84#define ECM_CLASSIFIER_PROCESS_ACTION_DSCP_DENY 0x00000020 /* Denies any DSCP changes */
Manish Vermaed493782019-05-27 12:56:02 +053085
86#define ECM_CLASSIFIER_PROCESS_ACTION_IGS_QOS_TAG 0x00000040 /* Contains flow & return ingress qos tags */
Murat Sezgin62c92832015-03-06 16:08:31 -080087#endif
Ben Menchaca84f36632014-02-28 20:57:38 +000088
89/*
90 * struct ecm_classifier_process_response
91 * Response structure returned by a process call
92 */
93struct ecm_classifier_process_response {
94 ecm_classifier_relevence_t relevance; /* Is this classifier relevant to the connection? */
95 uint32_t became_relevant; /* DB time the classifier became relevant or not relevant, if relevance is maybe this field is not relevant! */
96
97 uint32_t process_actions; /* Actions this process response contains */
98
99 /*
100 * The following fields are only to be inspected if this response is relevant AND the process_actions indicates so
101 */
102 bool drop; /* Drop packet at hand */
Gareth Williams27c3db12014-06-11 17:37:56 -0700103 uint32_t flow_qos_tag; /* QoS tag to use for the packet */
104 uint32_t return_qos_tag; /* QoS tag to use for the packet */
Manish Vermaed493782019-05-27 12:56:02 +0530105 uint16_t igs_flow_qos_tag; /* Ingress QoS tag to use for the packet */
106 uint16_t igs_return_qos_tag; /* Ingress QoS tag to use for the return packet */
Murat Sezgin62c92832015-03-06 16:08:31 -0800107#ifdef ECM_CLASSIFIER_DSCP_ENABLE
Gareth Williamsbd03e232014-06-11 17:55:28 -0700108 uint8_t flow_dscp; /* DSCP mark for flow */
109 uint8_t return_dscp; /* DSCP mark for return */
Murat Sezgin62c92832015-03-06 16:08:31 -0800110#endif
Ben Menchaca84f36632014-02-28 20:57:38 +0000111 ecm_classifier_acceleration_mode_t accel_mode; /* Acceleration needed for this connection */
112 ecm_db_timer_group_t timer_group; /* Timer group the connection should be in */
113};
114
115/*
Murat Sezginb2676062015-06-12 17:05:31 -0700116 * Sync rule structure.
117 * Acceleration engine's sync parameters will be stored
118 * in this data structure to update the classifiers.
119 */
120struct ecm_classifier_rule_sync {
Murat Sezgina05befb2019-10-08 17:00:37 -0700121 /*
122 * TODO: Use directional arrays for flow/return.
123 */
Murat Sezginb2676062015-06-12 17:05:31 -0700124 uint32_t flow_tx_packet_count;
Murat Sezgina05befb2019-10-08 17:00:37 -0700125 uint32_t flow_tx_byte_count;
126 uint32_t flow_rx_packet_count;
127 uint32_t flow_rx_byte_count;
Murat Sezginb2676062015-06-12 17:05:31 -0700128 uint32_t return_tx_packet_count;
Murat Sezgina05befb2019-10-08 17:00:37 -0700129 uint32_t return_tx_byte_count;
130 uint32_t return_rx_packet_count;
131 uint32_t return_rx_byte_count;
Murat Sezginb2676062015-06-12 17:05:31 -0700132 uint32_t reason;
133};
134
135/*
136 * Create rule structure.
137 * Additional create rule parameters from the classifiers
138 * will be copied to this data structure before pushing them to
139 * the underlying accelaration engine.
140 */
141struct ecm_classifier_rule_create {
142
143};
144
145/*
Ben Menchaca84f36632014-02-28 20:57:38 +0000146 * To be implemented by all classifiers
147 */
148typedef void (*ecm_classifier_ref_method_t)(struct ecm_classifier_instance *ci);
149typedef int (*ecm_classifier_deref_callback_t)(struct ecm_classifier_instance *ci);
150typedef void (*ecm_classifier_process_callback_t)(struct ecm_classifier_instance *ci, ecm_tracker_sender_type_t sender, struct ecm_tracker_ip_header *ip_hdr, struct sk_buff *skb, struct ecm_classifier_process_response *process_response);
151 /* Process new data for connection, process_response is populated with the response of processing */
Murat Sezginb2676062015-06-12 17:05:31 -0700152typedef void (*ecm_classifier_sync_from_v4_callback_t)(struct ecm_classifier_instance *ci, struct ecm_classifier_rule_create *ecrc);
153 /* Sync the accel engine state with state from the classifier */
154typedef void (*ecm_classifier_sync_to_v4_callback_t)(struct ecm_classifier_instance *ci, struct ecm_classifier_rule_sync *sync);
155 /* Sync the classifier state with current accel engine state */
156typedef void (*ecm_classifier_sync_from_v6_callback_t)(struct ecm_classifier_instance *ci, struct ecm_classifier_rule_create *ecrc);
157 /* Sync the accel engine state with state from the classifier */
158typedef void (*ecm_classifier_sync_to_v6_callback_t)(struct ecm_classifier_instance *ci, struct ecm_classifier_rule_sync *sync);
159 /* Sync the classifier state with current accel engine state */
Ben Menchaca84f36632014-02-28 20:57:38 +0000160typedef ecm_classifier_type_t (*ecm_classifier_type_get_callback_t)(struct ecm_classifier_instance *ci);
161 /* Get type of classifier this is */
162typedef bool (*ecm_classifier_reclassify_allowed_get_callback_t)(struct ecm_classifier_instance *ci);
163 /* Get whether reclassification is allowed */
164typedef void (*ecm_classifier_reclassify_callback_t)(struct ecm_classifier_instance *ci);
165 /* Reclassify */
166typedef void (*ecm_classifier_last_process_response_get_callback_t)(struct ecm_classifier_instance *ci, struct ecm_classifier_process_response *process_response);
167 /* Get last process response */
Gareth Williamsf98d4192015-03-11 16:55:41 +0000168#ifdef ECM_STATE_OUTPUT_ENABLE
Gareth Williamsd5618a82015-05-20 11:13:32 +0100169typedef int (*ecm_classifier_state_get_callback_t)(struct ecm_classifier_instance *ci, struct ecm_state_file_instance *sfi);
170 /* Get state output. Returns 0 upon success. */
Gareth Williamsf98d4192015-03-11 16:55:41 +0000171#endif
Ben Menchaca84f36632014-02-28 20:57:38 +0000172
173/*
Murat Sezgine34b0172015-11-05 21:58:14 -0800174 * Determines if a connection should be kept.
175 */
176typedef bool (*ecm_classifier_should_keep_connection_t)
177 (struct ecm_classifier_instance *ci, uint8_t *mac);
178
179/*
Ben Menchaca84f36632014-02-28 20:57:38 +0000180 * Base class for all types of classifiers
181 */
182struct ecm_classifier_instance {
183 struct ecm_classifier_instance *ca_next; /* DB use only: Connection assignment next pointer */
184 struct ecm_classifier_instance *ca_prev; /* DB use only: Connection assignment prev pointer */
185
186 ecm_classifier_process_callback_t process; /* Process new skb */
187 ecm_classifier_sync_from_v4_callback_t sync_from_v4;
Murat Sezginb2676062015-06-12 17:05:31 -0700188 /* Sync the accel engine with state from the classifier */
189 ecm_classifier_sync_to_v4_callback_t sync_to_v4;/* Sync the classifier with state from the accel engine */
Ben Menchaca84f36632014-02-28 20:57:38 +0000190 ecm_classifier_sync_from_v6_callback_t sync_from_v6;
Murat Sezginb2676062015-06-12 17:05:31 -0700191 /* Sync the accel engine with state from the classifier */
192 ecm_classifier_sync_to_v6_callback_t sync_to_v6;/* Sync the classifier with state from the accel engine */
Ben Menchaca84f36632014-02-28 20:57:38 +0000193 ecm_classifier_type_get_callback_t type_get; /* Get type of classifier */
194 ecm_classifier_reclassify_allowed_get_callback_t reclassify_allowed;
195 /* Get whether reclassification is allowed */
196 ecm_classifier_reclassify_callback_t reclassify;
197 /* Reclassify */
198 ecm_classifier_last_process_response_get_callback_t last_process_response_get;
199 /* Return last process response */
Murat Sezgine34b0172015-11-05 21:58:14 -0800200 ecm_classifier_should_keep_connection_t should_keep_connection;
201 /* Check if connection should be kept when FDB updates */
Gareth Williamsf98d4192015-03-11 16:55:41 +0000202#ifdef ECM_STATE_OUTPUT_ENABLE
Gareth Williamsd5618a82015-05-20 11:13:32 +0100203 ecm_classifier_state_get_callback_t state_get;
204 /* Return its state */
Gareth Williamsf98d4192015-03-11 16:55:41 +0000205#endif
Ben Menchaca84f36632014-02-28 20:57:38 +0000206 ecm_classifier_ref_method_t ref;
207 ecm_classifier_deref_callback_t deref;
208};
209
Gareth Williamsf98d4192015-03-11 16:55:41 +0000210#ifdef ECM_STATE_OUTPUT_ENABLE
Ben Menchaca84f36632014-02-28 20:57:38 +0000211/*
Gareth Williamsd5618a82015-05-20 11:13:32 +0100212 * ecm_classifier_process_response_state_get()
213 * Output detail for the process response
Ben Menchaca84f36632014-02-28 20:57:38 +0000214 *
Gareth Williamsd5618a82015-05-20 11:13:32 +0100215 * Returns 0 on success.
Ben Menchaca84f36632014-02-28 20:57:38 +0000216 */
Gareth Williamsd5618a82015-05-20 11:13:32 +0100217static inline int ecm_classifier_process_response_state_get(struct ecm_state_file_instance *sfi, struct ecm_classifier_process_response *pr)
Ben Menchaca84f36632014-02-28 20:57:38 +0000218{
Gareth Williamsd5618a82015-05-20 11:13:32 +0100219 int result;
220
221 if ((result = ecm_state_prefix_add(sfi, "pr"))) {
222 return result;
223 }
Ben Menchaca84f36632014-02-28 20:57:38 +0000224
225 if (pr->relevance == ECM_CLASSIFIER_RELEVANCE_NO) {
Gareth Williamsd5618a82015-05-20 11:13:32 +0100226 return ecm_state_write(sfi, "relevant", "%s", "no");
Ben Menchaca84f36632014-02-28 20:57:38 +0000227 }
228
229 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_DROP) {
230 if (pr->drop) {
Gareth Williamsd5618a82015-05-20 11:13:32 +0100231 if ((result = ecm_state_write(sfi, "drop", "yes"))) {
232 return result;
233 }
Ben Menchaca84f36632014-02-28 20:57:38 +0000234 } else {
Gareth Williamsd5618a82015-05-20 11:13:32 +0100235 if ((result = ecm_state_write(sfi, "drop", "no"))) {
236 return result;
237 }
Ben Menchaca84f36632014-02-28 20:57:38 +0000238 }
239 }
240
Ben Menchaca84f36632014-02-28 20:57:38 +0000241 if (pr->relevance == ECM_CLASSIFIER_RELEVANCE_MAYBE) {
Gareth Williamsd5618a82015-05-20 11:13:32 +0100242 if ((result = ecm_state_write(sfi, "accel", "denied"))) {
243 return result;
244 }
245 if ((result = ecm_state_write(sfi, "relevant", "maybe"))) {
246 return result;
247 }
Ben Menchaca84f36632014-02-28 20:57:38 +0000248 } else {
Gareth Williamsd5618a82015-05-20 11:13:32 +0100249 if ((result = ecm_state_write(sfi, "relevant", "yes"))) {
250 return result;
251 }
252 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_ACCEL_MODE) {
253 if (pr->accel_mode == ECM_CLASSIFIER_ACCELERATION_MODE_ACCEL) {
254 if ((result = ecm_state_write(sfi, "accel", "wanted"))) {
255 return result;
256 }
257 }
258 else if (pr->accel_mode == ECM_CLASSIFIER_ACCELERATION_MODE_NO) {
259 if ((result = ecm_state_write(sfi, "accel", "denied"))) {
260 return result;
261 }
262 }
263 /* Else don't care */
264 }
Ben Menchaca84f36632014-02-28 20:57:38 +0000265 }
266
Manish Vermaed493782019-05-27 12:56:02 +0530267#ifdef ECM_CLASSIFIER_DSCP_ENABLE
Gareth Williamsd5618a82015-05-20 11:13:32 +0100268 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_QOS_TAG) {
269 if ((result = ecm_state_write(sfi, "flow_qos_tag", "%u", pr->flow_qos_tag))) {
270 return result;
271 }
272 if ((result = ecm_state_write(sfi, "return_qos_tag", "%u", pr->return_qos_tag))) {
273 return result;
274 }
275 }
Manish Vermaed493782019-05-27 12:56:02 +0530276
277 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_IGS_QOS_TAG) {
278 if ((result = ecm_state_write(sfi, "igs_flow_qos_tag", "%u", pr->igs_flow_qos_tag))) {
279 return result;
280 }
281 if ((result = ecm_state_write(sfi, "igs_return_qos_tag", "%u", pr->igs_return_qos_tag))) {
282 return result;
283 }
284 }
285
Gareth Williamsd5618a82015-05-20 11:13:32 +0100286 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_DSCP) {
287 if ((result = ecm_state_write(sfi, "flow_dscp", "%u", pr->flow_dscp))) {
288 return result;
289 }
290 if ((result = ecm_state_write(sfi, "return_dscp", "%u", pr->return_dscp))) {
291 return result;
292 }
293 }
294#endif
295 if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_TIMER_GROUP) {
296 if ((result = ecm_state_write(sfi, "timer_group", "%d", pr->timer_group))) {
297 return result;
298 }
299 }
300
301 return ecm_state_prefix_remove(sfi);
Ben Menchaca84f36632014-02-28 20:57:38 +0000302}
Gareth Williamsf98d4192015-03-11 16:55:41 +0000303#endif
304
Murat Sezginc725ad82016-04-13 17:12:50 -0700305extern struct ecm_classifier_instance *ecm_classifier_assign_classifier(struct ecm_db_connection_instance *ci, ecm_classifier_type_t type);
306extern bool ecm_classifier_reclassify(struct ecm_db_connection_instance *ci, int assignment_count, struct ecm_classifier_instance *assignments[]);
Ben Menchaca84f36632014-02-28 20:57:38 +0000307