Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | ************************************************************************** |
Murat Sezgin | a05befb | 2019-10-08 17:00:37 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2014-2015, 2018-2020 The Linux Foundation. All rights reserved. |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 4 | * 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 | |
| 17 | struct ecm_classifier_instance; |
| 18 | |
| 19 | /* |
| 20 | * Classifier types. |
| 21 | * MUST BE RECORDED IN ASCENDING ORDER OF PRIORITY |
| 22 | */ |
| 23 | enum ecm_classifier_types { |
| 24 | ECM_CLASSIFIER_TYPE_DEFAULT = 0, /* MUST BE FIRST, Default classifier */ |
Murat Sezgin | f4f7ab4 | 2018-10-12 17:01:46 -0700 | [diff] [blame] | 25 | #ifdef ECM_CLASSIFIER_MARK_ENABLE |
| 26 | ECM_CLASSIFIER_TYPE_MARK, /* Mark classifier */ |
| 27 | #endif |
Hai Shalom | 81f4e20 | 2014-06-04 09:30:27 -0700 | [diff] [blame] | 28 | #ifdef ECM_CLASSIFIER_HYFI_ENABLE |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 29 | ECM_CLASSIFIER_TYPE_HYFI, /* HyFi classifier */ |
Hai Shalom | 81f4e20 | 2014-06-04 09:30:27 -0700 | [diff] [blame] | 30 | #endif |
Murat Sezgin | b3731e8 | 2014-11-26 12:20:59 -0800 | [diff] [blame] | 31 | #ifdef ECM_CLASSIFIER_DSCP_ENABLE |
Gareth Williams | 8932a91 | 2014-06-11 18:06:25 -0700 | [diff] [blame] | 32 | ECM_CLASSIFIER_TYPE_DSCP, /* Provides DSCP and DSCP remarking support */ |
Murat Sezgin | b3731e8 | 2014-11-26 12:20:59 -0800 | [diff] [blame] | 33 | #endif |
| 34 | #ifdef ECM_CLASSIFIER_NL_ENABLE |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 35 | ECM_CLASSIFIER_TYPE_NL, /* Provides netlink interface */ |
Murat Sezgin | b3731e8 | 2014-11-26 12:20:59 -0800 | [diff] [blame] | 36 | #endif |
Murat Sezgin | a05befb | 2019-10-08 17:00:37 -0700 | [diff] [blame^] | 37 | #ifdef ECM_CLASSIFIER_OVS_ENABLE |
| 38 | ECM_CLASSIFIER_TYPE_OVS, /* OVS classifier */ |
| 39 | #endif |
Gareth Williams | dcda9b9 | 2015-05-13 10:08:15 +0100 | [diff] [blame] | 40 | #ifdef ECM_CLASSIFIER_PCC_ENABLE |
| 41 | ECM_CLASSIFIER_TYPE_PCC, /* Parental control subsystem support classifier */ |
| 42 | #endif |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 43 | ECM_CLASSIFIER_TYPES, /* MUST BE LAST */ |
| 44 | }; |
| 45 | typedef 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 | */ |
| 51 | enum 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 | }; |
| 56 | typedef 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 Sezgin | d701ac5 | 2014-08-20 14:02:30 -0700 | [diff] [blame] | 61 | * |
| 62 | * These are used by a classifier to indicate its desire to accelerate. |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 63 | */ |
| 64 | enum 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 | }; |
| 69 | typedef 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 Williams | 27c3db1 | 2014-06-11 17:37:56 -0700 | [diff] [blame] | 77 | #define ECM_CLASSIFIER_PROCESS_ACTION_DROP 0x00000001 /* Drop */ |
| 78 | #define ECM_CLASSIFIER_PROCESS_ACTION_QOS_TAG 0x00000002 /* Contains flow & return qos tags */ |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 79 | #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 Sezgin | 62c9283 | 2015-03-06 16:08:31 -0800 | [diff] [blame] | 81 | |
| 82 | #ifdef ECM_CLASSIFIER_DSCP_ENABLE |
Gareth Williams | bd03e23 | 2014-06-11 17:55:28 -0700 | [diff] [blame] | 83 | #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 Verma | ed49378 | 2019-05-27 12:56:02 +0530 | [diff] [blame] | 85 | |
| 86 | #define ECM_CLASSIFIER_PROCESS_ACTION_IGS_QOS_TAG 0x00000040 /* Contains flow & return ingress qos tags */ |
Murat Sezgin | 62c9283 | 2015-03-06 16:08:31 -0800 | [diff] [blame] | 87 | #endif |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * struct ecm_classifier_process_response |
| 91 | * Response structure returned by a process call |
| 92 | */ |
| 93 | struct 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 Williams | 27c3db1 | 2014-06-11 17:37:56 -0700 | [diff] [blame] | 103 | 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 Verma | ed49378 | 2019-05-27 12:56:02 +0530 | [diff] [blame] | 105 | 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 Sezgin | 62c9283 | 2015-03-06 16:08:31 -0800 | [diff] [blame] | 107 | #ifdef ECM_CLASSIFIER_DSCP_ENABLE |
Gareth Williams | bd03e23 | 2014-06-11 17:55:28 -0700 | [diff] [blame] | 108 | uint8_t flow_dscp; /* DSCP mark for flow */ |
| 109 | uint8_t return_dscp; /* DSCP mark for return */ |
Murat Sezgin | 62c9283 | 2015-03-06 16:08:31 -0800 | [diff] [blame] | 110 | #endif |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 111 | 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 Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 116 | * Sync rule structure. |
| 117 | * Acceleration engine's sync parameters will be stored |
| 118 | * in this data structure to update the classifiers. |
| 119 | */ |
| 120 | struct ecm_classifier_rule_sync { |
Murat Sezgin | a05befb | 2019-10-08 17:00:37 -0700 | [diff] [blame^] | 121 | /* |
| 122 | * TODO: Use directional arrays for flow/return. |
| 123 | */ |
Murat Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 124 | uint32_t flow_tx_packet_count; |
Murat Sezgin | a05befb | 2019-10-08 17:00:37 -0700 | [diff] [blame^] | 125 | uint32_t flow_tx_byte_count; |
| 126 | uint32_t flow_rx_packet_count; |
| 127 | uint32_t flow_rx_byte_count; |
Murat Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 128 | uint32_t return_tx_packet_count; |
Murat Sezgin | a05befb | 2019-10-08 17:00:37 -0700 | [diff] [blame^] | 129 | uint32_t return_tx_byte_count; |
| 130 | uint32_t return_rx_packet_count; |
| 131 | uint32_t return_rx_byte_count; |
Murat Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 132 | 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 | */ |
| 141 | struct ecm_classifier_rule_create { |
| 142 | |
| 143 | }; |
| 144 | |
| 145 | /* |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 146 | * To be implemented by all classifiers |
| 147 | */ |
| 148 | typedef void (*ecm_classifier_ref_method_t)(struct ecm_classifier_instance *ci); |
| 149 | typedef int (*ecm_classifier_deref_callback_t)(struct ecm_classifier_instance *ci); |
| 150 | typedef 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 Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 152 | typedef 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 */ |
| 154 | typedef 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 */ |
| 156 | typedef 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 */ |
| 158 | typedef 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 160 | typedef ecm_classifier_type_t (*ecm_classifier_type_get_callback_t)(struct ecm_classifier_instance *ci); |
| 161 | /* Get type of classifier this is */ |
| 162 | typedef bool (*ecm_classifier_reclassify_allowed_get_callback_t)(struct ecm_classifier_instance *ci); |
| 163 | /* Get whether reclassification is allowed */ |
| 164 | typedef void (*ecm_classifier_reclassify_callback_t)(struct ecm_classifier_instance *ci); |
| 165 | /* Reclassify */ |
| 166 | typedef 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 Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 168 | #ifdef ECM_STATE_OUTPUT_ENABLE |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 169 | typedef 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 Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 171 | #endif |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 172 | |
| 173 | /* |
Murat Sezgin | e34b017 | 2015-11-05 21:58:14 -0800 | [diff] [blame] | 174 | * Determines if a connection should be kept. |
| 175 | */ |
| 176 | typedef bool (*ecm_classifier_should_keep_connection_t) |
| 177 | (struct ecm_classifier_instance *ci, uint8_t *mac); |
| 178 | |
| 179 | /* |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 180 | * Base class for all types of classifiers |
| 181 | */ |
| 182 | struct 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 Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 188 | /* 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 190 | ecm_classifier_sync_from_v6_callback_t sync_from_v6; |
Murat Sezgin | b267606 | 2015-06-12 17:05:31 -0700 | [diff] [blame] | 191 | /* 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 193 | 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 Sezgin | e34b017 | 2015-11-05 21:58:14 -0800 | [diff] [blame] | 200 | ecm_classifier_should_keep_connection_t should_keep_connection; |
| 201 | /* Check if connection should be kept when FDB updates */ |
Gareth Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 202 | #ifdef ECM_STATE_OUTPUT_ENABLE |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 203 | ecm_classifier_state_get_callback_t state_get; |
| 204 | /* Return its state */ |
Gareth Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 205 | #endif |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 206 | ecm_classifier_ref_method_t ref; |
| 207 | ecm_classifier_deref_callback_t deref; |
| 208 | }; |
| 209 | |
Gareth Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 210 | #ifdef ECM_STATE_OUTPUT_ENABLE |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 211 | /* |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 212 | * ecm_classifier_process_response_state_get() |
| 213 | * Output detail for the process response |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 214 | * |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 215 | * Returns 0 on success. |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 216 | */ |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 217 | static inline int ecm_classifier_process_response_state_get(struct ecm_state_file_instance *sfi, struct ecm_classifier_process_response *pr) |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 218 | { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 219 | int result; |
| 220 | |
| 221 | if ((result = ecm_state_prefix_add(sfi, "pr"))) { |
| 222 | return result; |
| 223 | } |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 224 | |
| 225 | if (pr->relevance == ECM_CLASSIFIER_RELEVANCE_NO) { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 226 | return ecm_state_write(sfi, "relevant", "%s", "no"); |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | if (pr->process_actions & ECM_CLASSIFIER_PROCESS_ACTION_DROP) { |
| 230 | if (pr->drop) { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 231 | if ((result = ecm_state_write(sfi, "drop", "yes"))) { |
| 232 | return result; |
| 233 | } |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 234 | } else { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 235 | if ((result = ecm_state_write(sfi, "drop", "no"))) { |
| 236 | return result; |
| 237 | } |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
| 240 | |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 241 | if (pr->relevance == ECM_CLASSIFIER_RELEVANCE_MAYBE) { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 242 | 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 248 | } else { |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 249 | 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Manish Verma | ed49378 | 2019-05-27 12:56:02 +0530 | [diff] [blame] | 267 | #ifdef ECM_CLASSIFIER_DSCP_ENABLE |
Gareth Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 268 | 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 Verma | ed49378 | 2019-05-27 12:56:02 +0530 | [diff] [blame] | 276 | |
| 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 Williams | d5618a8 | 2015-05-20 11:13:32 +0100 | [diff] [blame] | 286 | 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 Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 302 | } |
Gareth Williams | f98d419 | 2015-03-11 16:55:41 +0000 | [diff] [blame] | 303 | #endif |
| 304 | |
Murat Sezgin | c725ad8 | 2016-04-13 17:12:50 -0700 | [diff] [blame] | 305 | extern struct ecm_classifier_instance *ecm_classifier_assign_classifier(struct ecm_db_connection_instance *ci, ecm_classifier_type_t type); |
| 306 | extern bool ecm_classifier_reclassify(struct ecm_db_connection_instance *ci, int assignment_count, struct ecm_classifier_instance *assignments[]); |
Ben Menchaca | 84f3663 | 2014-02-28 20:57:38 +0000 | [diff] [blame] | 307 | |