Neale Ranns | d91c1db | 2017-07-31 02:30:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | #ifndef __POLICE_INLINES_H__ |
| 16 | #define __POLICE_INLINES_H__ |
| 17 | |
| 18 | #include <vnet/policer/police.h> |
| 19 | #include <vnet/vnet.h> |
| 20 | #include <vnet/ip/ip.h> |
| 21 | |
| 22 | #define IP4_NON_DSCP_BITS 0x03 |
| 23 | #define IP4_DSCP_SHIFT 2 |
| 24 | #define IP6_NON_DSCP_BITS 0xf03fffff |
| 25 | #define IP6_DSCP_SHIFT 22 |
| 26 | |
| 27 | static_always_inline void |
| 28 | vnet_policer_mark (vlib_buffer_t * b, u8 dscp) |
| 29 | { |
| 30 | ethernet_header_t *eh; |
| 31 | ip4_header_t *ip4h; |
| 32 | ip6_header_t *ip6h; |
| 33 | u16 type; |
| 34 | |
| 35 | eh = (ethernet_header_t *) b->data; |
| 36 | type = clib_net_to_host_u16 (eh->type); |
| 37 | |
| 38 | if (PREDICT_TRUE (type == ETHERNET_TYPE_IP4)) |
| 39 | { |
| 40 | ip4h = (ip4_header_t *) & (b->data[sizeof (ethernet_header_t)]);; |
| 41 | ip4h->tos &= IP4_NON_DSCP_BITS; |
| 42 | ip4h->tos |= dscp << IP4_DSCP_SHIFT; |
| 43 | ip4h->checksum = ip4_header_checksum (ip4h); |
| 44 | } |
| 45 | else |
| 46 | { |
| 47 | if (PREDICT_TRUE (type == ETHERNET_TYPE_IP6)) |
| 48 | { |
| 49 | ip6h = (ip6_header_t *) & (b->data[sizeof (ethernet_header_t)]); |
| 50 | ip6h->ip_version_traffic_class_and_flow_label &= |
| 51 | clib_host_to_net_u32 (IP6_NON_DSCP_BITS); |
| 52 | ip6h->ip_version_traffic_class_and_flow_label |= |
| 53 | clib_host_to_net_u32 (dscp << IP6_DSCP_SHIFT); |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | static_always_inline u8 |
| 59 | vnet_policer_police (vlib_main_t * vm, |
| 60 | vlib_buffer_t * b, |
| 61 | u32 policer_index, |
| 62 | u64 time_in_policer_periods, |
| 63 | policer_result_e packet_color) |
| 64 | { |
| 65 | u8 act; |
| 66 | u32 len; |
| 67 | u32 col; |
| 68 | policer_read_response_type_st *pol; |
| 69 | vnet_policer_main_t *pm = &vnet_policer_main; |
| 70 | |
| 71 | len = vlib_buffer_length_in_chain (vm, b); |
| 72 | pol = &pm->policers[policer_index]; |
| 73 | col = vnet_police_packet (pol, len, packet_color, time_in_policer_periods); |
| 74 | act = pol->action[col]; |
| 75 | if (PREDICT_TRUE (act == SSE2_QOS_ACTION_MARK_AND_TRANSMIT)) |
| 76 | vnet_policer_mark (b, pol->mark_dscp[col]); |
| 77 | |
| 78 | return act; |
| 79 | } |
| 80 | |
| 81 | #endif // __POLICE_INLINES_H__ |
| 82 | |
| 83 | /* |
| 84 | * fd.io coding-style-patch-verification: ON |
| 85 | * |
| 86 | * Local Variables: |
| 87 | * eval: (c-set-style "gnu") |
| 88 | * End: |
| 89 | */ |