Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | #include <vnet/classify/flow_classify.h> |
| 16 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 17 | flow_classify_main_t flow_classify_main; |
| 18 | |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 19 | static void |
| 20 | vnet_flow_classify_feature_enable (vlib_main_t * vnm, |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 21 | flow_classify_main_t * fcm, |
| 22 | u32 sw_if_index, |
| 23 | flow_classify_table_id_t tid, |
| 24 | int feature_enable) |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 25 | { |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 26 | vnet_feature_config_main_t *vfcm; |
| 27 | u8 arc; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 28 | |
| 29 | if (tid == FLOW_CLASSIFY_TABLE_IP4) |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 30 | { |
| 31 | vnet_feature_enable_disable ("ip4-unicast", "ip4-flow-classify", |
| 32 | sw_if_index, feature_enable, 0, 0); |
| 33 | arc = vnet_get_feature_arc_index ("ip4-unicast"); |
| 34 | } |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 35 | else |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 36 | { |
| 37 | vnet_feature_enable_disable ("ip6-unicast", "ip6-flow-classify", |
| 38 | sw_if_index, feature_enable, 0, 0); |
| 39 | arc = vnet_get_feature_arc_index ("ip6-unicast"); |
| 40 | } |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 41 | |
Damjan Marion | 8b3191e | 2016-11-09 19:54:20 +0100 | [diff] [blame] | 42 | vfcm = vnet_get_feature_arc_config_main (arc); |
| 43 | fcm->vnet_config_main[tid] = &vfcm->config_main; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 44 | } |
| 45 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 46 | int |
| 47 | vnet_set_flow_classify_intfc (vlib_main_t * vm, u32 sw_if_index, |
| 48 | u32 ip4_table_index, u32 ip6_table_index, |
| 49 | u32 is_add) |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 50 | { |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 51 | flow_classify_main_t *fcm = &flow_classify_main; |
| 52 | vnet_classify_main_t *vcm = fcm->vnet_classify_main; |
| 53 | u32 pct[FLOW_CLASSIFY_N_TABLES] = { ip4_table_index, ip6_table_index }; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 54 | u32 ti; |
| 55 | |
| 56 | /* Assume that we've validated sw_if_index in the API layer */ |
| 57 | |
| 58 | for (ti = 0; ti < FLOW_CLASSIFY_N_TABLES; ti++) |
| 59 | { |
| 60 | if (pct[ti] == ~0) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 61 | continue; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 62 | |
| 63 | if (pool_is_free_index (vcm->tables, pct[ti])) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 64 | return VNET_API_ERROR_NO_SUCH_TABLE; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 65 | |
| 66 | vec_validate_init_empty |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 67 | (fcm->classify_table_index_by_sw_if_index[ti], sw_if_index, ~0); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 68 | |
| 69 | /* Reject any DEL operation with wrong sw_if_index */ |
| 70 | if (!is_add && |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 71 | (pct[ti] != |
| 72 | fcm->classify_table_index_by_sw_if_index[ti][sw_if_index])) |
| 73 | { |
| 74 | clib_warning |
| 75 | ("Non-existent intf_idx=%d with table_index=%d for delete", |
| 76 | sw_if_index, pct[ti]); |
| 77 | return VNET_API_ERROR_NO_SUCH_TABLE; |
| 78 | } |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 79 | |
| 80 | /* Return ok on ADD operaton if feature is already enabled */ |
| 81 | if (is_add && |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 82 | fcm->classify_table_index_by_sw_if_index[ti][sw_if_index] != ~0) |
| 83 | return 0; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 84 | |
| 85 | vnet_flow_classify_feature_enable (vm, fcm, sw_if_index, ti, is_add); |
| 86 | |
| 87 | if (is_add) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 88 | fcm->classify_table_index_by_sw_if_index[ti][sw_if_index] = pct[ti]; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 89 | else |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 90 | fcm->classify_table_index_by_sw_if_index[ti][sw_if_index] = ~0; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
| 97 | static clib_error_t * |
| 98 | set_flow_classify_command_fn (vlib_main_t * vm, |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 99 | unformat_input_t * input, |
| 100 | vlib_cli_command_t * cmd) |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 101 | { |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 102 | vnet_main_t *vnm = vnet_get_main (); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 103 | u32 sw_if_index = ~0; |
| 104 | u32 ip4_table_index = ~0; |
| 105 | u32 ip6_table_index = ~0; |
| 106 | u32 is_add = 1; |
| 107 | u32 idx_cnt = 0; |
| 108 | int rv; |
| 109 | |
| 110 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 111 | { |
| 112 | if (unformat (input, "interface %U", unformat_vnet_sw_interface, |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 113 | vnm, &sw_if_index)) |
| 114 | ; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 115 | else if (unformat (input, "ip4-table %d", &ip4_table_index)) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 116 | idx_cnt++; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 117 | else if (unformat (input, "ip6-table %d", &ip6_table_index)) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 118 | idx_cnt++; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 119 | else if (unformat (input, "del")) |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 120 | is_add = 0; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 121 | else |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 122 | break; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | if (sw_if_index == ~0) |
| 126 | return clib_error_return (0, "Interface must be specified."); |
| 127 | |
| 128 | if (!idx_cnt) |
| 129 | return clib_error_return (0, "Table index should be specified."); |
| 130 | |
| 131 | if (idx_cnt > 1) |
| 132 | return clib_error_return (0, "Only one table index per API is allowed."); |
| 133 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 134 | rv = vnet_set_flow_classify_intfc (vm, sw_if_index, ip4_table_index, |
| 135 | ip6_table_index, is_add); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 136 | |
| 137 | switch (rv) |
| 138 | { |
| 139 | case 0: |
| 140 | break; |
| 141 | |
| 142 | case VNET_API_ERROR_NO_MATCHING_INTERFACE: |
| 143 | return clib_error_return (0, "No such interface"); |
| 144 | |
| 145 | case VNET_API_ERROR_NO_SUCH_ENTRY: |
| 146 | return clib_error_return (0, "No such classifier table"); |
| 147 | } |
| 148 | return 0; |
| 149 | } |
| 150 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 151 | /* *INDENT-OFF* */ |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 152 | VLIB_CLI_COMMAND (set_input_acl_command, static) = { |
| 153 | .path = "set flow classify", |
| 154 | .short_help = |
| 155 | "set flow classify interface <int> [ip4-table <index>]\n" |
| 156 | " [ip6-table <index>] [del]", |
| 157 | .function = set_flow_classify_command_fn, |
| 158 | }; |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 159 | /* *INDENT-ON* */ |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 160 | |
| 161 | static uword |
| 162 | unformat_table_type (unformat_input_t * input, va_list * va) |
| 163 | { |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 164 | u32 *r = va_arg (*va, u32 *); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 165 | u32 tid; |
| 166 | |
| 167 | if (unformat (input, "ip4")) |
| 168 | tid = FLOW_CLASSIFY_TABLE_IP4; |
| 169 | else if (unformat (input, "ip6")) |
| 170 | tid = FLOW_CLASSIFY_TABLE_IP6; |
| 171 | else |
| 172 | return 0; |
| 173 | |
| 174 | *r = tid; |
| 175 | return 1; |
| 176 | } |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 177 | |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 178 | static clib_error_t * |
| 179 | show_flow_classify_command_fn (vlib_main_t * vm, |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 180 | unformat_input_t * input, |
| 181 | vlib_cli_command_t * cmd) |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 182 | { |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 183 | flow_classify_main_t *fcm = &flow_classify_main; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 184 | u32 type = FLOW_CLASSIFY_N_TABLES; |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 185 | u32 *vec_tbl; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 186 | int i; |
| 187 | |
| 188 | if (unformat (input, "type %U", unformat_table_type, &type)) |
| 189 | ; |
| 190 | else |
| 191 | return clib_error_return (0, "Type must be specified.");; |
| 192 | |
| 193 | if (type == FLOW_CLASSIFY_N_TABLES) |
| 194 | return clib_error_return (0, "Invalid table type."); |
| 195 | |
| 196 | vec_tbl = fcm->classify_table_index_by_sw_if_index[type]; |
| 197 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 198 | if (vec_len (vec_tbl)) |
| 199 | vlib_cli_output (vm, "%10s%20s\t\t%s", "Intfc idx", "Classify table", |
| 200 | "Interface name"); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 201 | else |
| 202 | vlib_cli_output (vm, "No tables configured."); |
| 203 | |
| 204 | for (i = 0; i < vec_len (vec_tbl); i++) |
| 205 | { |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 206 | if (vec_elt (vec_tbl, i) == ~0) |
| 207 | continue; |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 208 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 209 | vlib_cli_output (vm, "%10d%20d\t\t%U", i, vec_elt (vec_tbl, i), |
| 210 | format_vnet_sw_if_index_name, fcm->vnet_main, i); |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 216 | /* *INDENT-OFF* */ |
Juraj Sloboda | 506b245 | 2016-08-07 23:45:24 -0700 | [diff] [blame] | 217 | VLIB_CLI_COMMAND (show_flow_classify_command, static) = { |
| 218 | .path = "show classify flow", |
| 219 | .short_help = "show classify flow type [ip4|ip6]", |
| 220 | .function = show_flow_classify_command_fn, |
| 221 | }; |
khemendra kumar | d7bfa0e | 2017-11-27 15:15:53 +0530 | [diff] [blame] | 222 | /* *INDENT-ON* */ |
| 223 | |
| 224 | /* |
| 225 | * fd.io coding-style-patch-verification: ON |
| 226 | * |
| 227 | * Local Variables: |
| 228 | * eval: (c-set-style "gnu") |
| 229 | * End: |
| 230 | */ |