Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 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 | |
| 16 | #include <sstream> |
| 17 | |
| 18 | #include "vom/acl_l3_rule.hpp" |
| 19 | |
| 20 | namespace VOM { |
| 21 | namespace ACL { |
| 22 | l3_rule::l3_rule(uint32_t priority, |
| 23 | const action_t& action, |
| 24 | const route::prefix_t& src, |
Mohsin Kazmi | 091871c | 2017-12-13 17:59:33 +0100 | [diff] [blame] | 25 | const route::prefix_t& dst, |
| 26 | uint8_t proto, |
| 27 | uint16_t srcport_or_icmptype_first, |
| 28 | uint16_t srcport_or_icmptype_last, |
| 29 | uint16_t dstport_or_icmpcode_first, |
| 30 | uint16_t dstport_or_icmpcode_last, |
| 31 | uint8_t tcp_flags_mask, |
| 32 | uint8_t tcp_flags_value) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 33 | : m_priority(priority) |
| 34 | , m_action(action) |
| 35 | , m_src(src) |
| 36 | , m_dst(dst) |
Mohsin Kazmi | 091871c | 2017-12-13 17:59:33 +0100 | [diff] [blame] | 37 | , m_proto(proto) |
| 38 | , m_srcport_or_icmptype_first(srcport_or_icmptype_first) |
| 39 | , m_srcport_or_icmptype_last(srcport_or_icmptype_last) |
| 40 | , m_dstport_or_icmpcode_first(dstport_or_icmpcode_first) |
| 41 | , m_dstport_or_icmpcode_last(dstport_or_icmpcode_last) |
| 42 | , m_tcp_flags_mask(tcp_flags_mask) |
| 43 | , m_tcp_flags_value(tcp_flags_value) |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 44 | { |
| 45 | } |
| 46 | |
| 47 | bool |
| 48 | l3_rule::operator<(const l3_rule& other) const |
| 49 | { |
| 50 | return (other.m_priority < m_priority); |
| 51 | } |
| 52 | |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 53 | bool |
| 54 | l3_rule::operator==(const l3_rule& rule) const |
| 55 | { |
| 56 | return ((m_action == rule.m_action) && (m_src == rule.m_src) && |
| 57 | (m_dst == rule.m_dst) && (m_proto == rule.m_proto) && |
| 58 | (m_srcport_or_icmptype_first == rule.m_srcport_or_icmptype_first) && |
| 59 | (m_srcport_or_icmptype_last == rule.m_srcport_or_icmptype_last) && |
| 60 | (m_dstport_or_icmpcode_first == rule.m_dstport_or_icmpcode_first) && |
| 61 | (m_dstport_or_icmpcode_last == rule.m_dstport_or_icmpcode_last) && |
| 62 | (m_tcp_flags_mask == rule.m_tcp_flags_mask) && |
| 63 | (m_tcp_flags_value == rule.m_tcp_flags_value)); |
| 64 | } |
| 65 | |
| 66 | std::string |
| 67 | l3_rule::to_string() const |
| 68 | { |
| 69 | std::ostringstream s; |
| 70 | |
| 71 | s << "L3-rule:[" |
| 72 | << "priority:" << m_priority << " action:" << m_action.to_string() |
| 73 | << " src:" << m_src.to_string() << " dst:" << m_dst.to_string() |
| 74 | << " proto:" << std::to_string(m_proto) |
| 75 | << " srcportfrom:" << m_srcport_or_icmptype_first |
| 76 | << " srcportto: " << m_srcport_or_icmptype_last |
| 77 | << " dstportfrom:" << m_dstport_or_icmpcode_first |
| 78 | << " dstportto:" << m_dstport_or_icmpcode_last |
Mohsin Kazmi | 0708515 | 2017-12-05 14:48:58 +0100 | [diff] [blame] | 79 | << " tcpflagmask:" << std::to_string(m_tcp_flags_mask) |
| 80 | << " tcpflagvalue:" << std::to_string(m_tcp_flags_value) << "]"; |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 81 | |
| 82 | return (s.str()); |
| 83 | } |
| 84 | |
| 85 | void |
| 86 | l3_rule::set_src_ip(route::prefix_t src) |
| 87 | { |
| 88 | m_src = src; |
| 89 | } |
| 90 | |
| 91 | void |
| 92 | l3_rule::set_dst_ip(route::prefix_t dst) |
| 93 | { |
| 94 | m_dst = dst; |
| 95 | } |
| 96 | |
| 97 | void |
| 98 | l3_rule::set_proto(uint8_t proto) |
| 99 | { |
| 100 | m_proto = proto; |
| 101 | } |
| 102 | void |
| 103 | l3_rule::set_src_from_port(uint16_t srcport_or_icmptype_first) |
| 104 | { |
| 105 | m_srcport_or_icmptype_first = srcport_or_icmptype_first; |
| 106 | } |
| 107 | |
| 108 | void |
| 109 | l3_rule::set_src_to_port(uint16_t srcport_or_icmptype_last) |
| 110 | { |
| 111 | m_srcport_or_icmptype_last = srcport_or_icmptype_last; |
| 112 | } |
| 113 | |
| 114 | void |
| 115 | l3_rule::set_dst_from_port(uint16_t dstport_or_icmpcode_first) |
| 116 | { |
| 117 | m_dstport_or_icmpcode_first = dstport_or_icmpcode_first; |
| 118 | } |
| 119 | |
| 120 | void |
| 121 | l3_rule::set_dst_to_port(uint16_t dstport_or_icmpcode_last) |
| 122 | { |
| 123 | m_dstport_or_icmpcode_last = dstport_or_icmpcode_last; |
| 124 | } |
| 125 | |
| 126 | void |
| 127 | l3_rule::set_tcp_flags_mask(uint8_t tcp_flags_mask) |
| 128 | { |
| 129 | m_tcp_flags_mask = tcp_flags_mask; |
| 130 | } |
| 131 | |
| 132 | void |
| 133 | l3_rule::set_tcp_flags_value(uint8_t tcp_flags_value) |
| 134 | { |
| 135 | m_tcp_flags_value = tcp_flags_value; |
| 136 | } |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 137 | |
| 138 | const route::prefix_t& |
| 139 | l3_rule::src() const |
| 140 | { |
| 141 | return m_src; |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 142 | } |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 143 | |
| 144 | uint32_t |
| 145 | l3_rule::priority() const |
| 146 | { |
| 147 | return m_priority; |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Neale Ranns | 9ef1c0a | 2017-11-03 04:39:05 -0700 | [diff] [blame] | 150 | action_t |
| 151 | l3_rule::action() const |
| 152 | { |
| 153 | return m_action; |
| 154 | } |
| 155 | |
| 156 | const route::prefix_t& |
| 157 | l3_rule::dst() const |
| 158 | { |
| 159 | return m_dst; |
| 160 | } |
| 161 | |
| 162 | uint8_t |
| 163 | l3_rule::proto() const |
| 164 | { |
| 165 | return m_proto; |
| 166 | } |
| 167 | |
| 168 | uint16_t |
| 169 | l3_rule::srcport_or_icmptype_first() const |
| 170 | { |
| 171 | return m_srcport_or_icmptype_first; |
| 172 | } |
| 173 | |
| 174 | uint16_t |
| 175 | l3_rule::srcport_or_icmptype_last() const |
| 176 | { |
| 177 | return m_srcport_or_icmptype_last; |
| 178 | } |
| 179 | |
| 180 | uint16_t |
| 181 | l3_rule::dstport_or_icmpcode_first() const |
| 182 | { |
| 183 | return m_dstport_or_icmpcode_first; |
| 184 | } |
| 185 | |
| 186 | uint16_t |
| 187 | l3_rule::dstport_or_icmpcode_last() const |
| 188 | { |
| 189 | return m_dstport_or_icmpcode_last; |
| 190 | } |
| 191 | |
| 192 | uint8_t |
| 193 | l3_rule::tcp_flags_mask() const |
| 194 | { |
| 195 | return m_tcp_flags_mask; |
| 196 | } |
| 197 | |
| 198 | uint8_t |
| 199 | l3_rule::tcp_flags_value() const |
| 200 | { |
| 201 | return m_tcp_flags_value; |
| 202 | } |
| 203 | |
| 204 | }; // namespace ACL |
| 205 | }; // namespace VOM |
| 206 | |
Neale Ranns | 812ed39 | 2017-10-16 04:20:13 -0700 | [diff] [blame] | 207 | /* |
| 208 | * fd.io coding-style-patch-verification: ON |
| 209 | * |
| 210 | * Local Variables: |
| 211 | * eval: (c-set-style "mozilla") |
| 212 | * End: |
| 213 | */ |