GBP: add allowed ethertypes to contracts
[vpp.git] / extras / vom / vom / gbp_contract.cpp
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 "vom/gbp_contract.hpp"
17 #include "vom/api_types.hpp"
18 #include "vom/gbp_contract_cmds.hpp"
19 #include "vom/singular_db_funcs.hpp"
20
21 namespace VOM {
22
23 singular_db<gbp_contract::key_t, gbp_contract> gbp_contract::m_db;
24
25 gbp_contract::event_handler gbp_contract::m_evh;
26
27 gbp_contract::gbp_contract(epg_id_t src_epg_id,
28                            epg_id_t dst_epg_id,
29                            const ACL::l3_list& acl,
30                            const gbp_rules_t& rules,
31                            const ethertype_set_t& allowed_ethertypes)
32   : m_hw(false)
33   , m_src_epg_id(src_epg_id)
34   , m_dst_epg_id(dst_epg_id)
35   , m_acl(acl.singular())
36   , m_gbp_rules(rules)
37   , m_allowed_ethertypes(allowed_ethertypes)
38 {
39 }
40
41 gbp_contract::gbp_contract(const gbp_contract& gbpc)
42   : m_hw(gbpc.m_hw)
43   , m_src_epg_id(gbpc.m_src_epg_id)
44   , m_dst_epg_id(gbpc.m_dst_epg_id)
45   , m_acl(gbpc.m_acl)
46   , m_gbp_rules(gbpc.m_gbp_rules)
47   , m_allowed_ethertypes(gbpc.m_allowed_ethertypes)
48 {
49 }
50
51 gbp_contract::~gbp_contract()
52 {
53   sweep();
54
55   // not in the DB anymore.
56   m_db.release(key(), this);
57 }
58
59 const gbp_contract::key_t
60 gbp_contract::key() const
61 {
62   return (std::make_pair(m_src_epg_id, m_dst_epg_id));
63 }
64
65 bool
66 gbp_contract::operator==(const gbp_contract& gbpc) const
67 {
68   return ((key() == gbpc.key()) && (m_acl->handle() == gbpc.m_acl->handle()));
69 }
70
71 void
72 gbp_contract::sweep()
73 {
74   if (m_hw) {
75     HW::enqueue(
76       new gbp_contract_cmds::delete_cmd(m_hw, m_src_epg_id, m_dst_epg_id));
77   }
78   HW::write();
79 }
80
81 void
82 gbp_contract::replay()
83 {
84   if (m_hw) {
85     HW::enqueue(new gbp_contract_cmds::create_cmd(
86       m_hw, m_src_epg_id, m_dst_epg_id, m_acl->handle(), m_gbp_rules,
87       m_allowed_ethertypes));
88   }
89 }
90
91 std::string
92 gbp_contract::to_string() const
93 {
94   std::ostringstream s;
95   s << "gbp-contract:[{" << m_src_epg_id << ", " << m_dst_epg_id << "}, "
96     << m_acl->to_string();
97   if (m_gbp_rules.size()) {
98     auto it = m_gbp_rules.cbegin();
99     while (it != m_gbp_rules.cend()) {
100       s << it->to_string();
101       ++it;
102     }
103   }
104   s << "]";
105
106   return (s.str());
107 }
108
109 void
110 gbp_contract::update(const gbp_contract& r)
111 {
112   /*
113    * create the table if it is not yet created
114    */
115   if (rc_t::OK != m_hw.rc()) {
116     HW::enqueue(new gbp_contract_cmds::create_cmd(
117       m_hw, m_src_epg_id, m_dst_epg_id, m_acl->handle(), m_gbp_rules,
118       m_allowed_ethertypes));
119   }
120 }
121
122 std::shared_ptr<gbp_contract>
123 gbp_contract::find_or_add(const gbp_contract& temp)
124 {
125   return (m_db.find_or_add(temp.key(), temp));
126 }
127
128 std::shared_ptr<gbp_contract>
129 gbp_contract::find(const key_t& k)
130 {
131   return (m_db.find(k));
132 }
133
134 std::shared_ptr<gbp_contract>
135 gbp_contract::singular() const
136 {
137   return find_or_add(*this);
138 }
139
140 void
141 gbp_contract::dump(std::ostream& os)
142 {
143   db_dump(m_db, os);
144 }
145
146 gbp_contract::event_handler::event_handler()
147 {
148   OM::register_listener(this);
149   inspect::register_handler({ "gbp-contract" }, "GBP Contract", this);
150 }
151
152 void
153 gbp_contract::event_handler::handle_replay()
154 {
155   m_db.replay();
156 }
157
158 void
159 gbp_contract::event_handler::handle_populate(const client_db::key_t& key)
160 {
161   std::shared_ptr<gbp_contract_cmds::dump_cmd> cmd =
162     std::make_shared<gbp_contract_cmds::dump_cmd>();
163
164   HW::enqueue(cmd);
165   HW::write();
166
167   for (auto& record : *cmd) {
168     auto& payload = record.get_payload();
169
170     std::shared_ptr<ACL::l3_list> acl =
171       ACL::l3_list::find(payload.contract.acl_index);
172
173     if (acl) {
174       gbp_contract::gbp_rules_t rules;
175
176       for (uint8_t i = 0; i < payload.contract.n_rules; i++) {
177         const gbp_rule::action_t action =
178           gbp_rule::action_t::from_int(payload.contract.rules[i].action);
179         const gbp_rule::hash_mode_t hm = gbp_rule::hash_mode_t::from_int(
180           payload.contract.rules[i].nh_set.hash_mode);
181         gbp_rule::next_hops_t nhs;
182         for (u8 j = 0; j < payload.contract.rules[i].nh_set.n_nhs; j++) {
183           gbp_rule::next_hop_t nh(
184             from_api(payload.contract.rules[i].nh_set.nhs[j].ip),
185             from_api(payload.contract.rules[i].nh_set.nhs[j].mac),
186             payload.contract.rules[i].nh_set.nhs[j].bd_id,
187             payload.contract.rules[i].nh_set.nhs[j].rd_id);
188           nhs.insert(nh);
189         }
190         gbp_rule::next_hop_set_t next_hop_set(hm, nhs);
191         gbp_rule gr(i, next_hop_set, action);
192         rules.insert(gr);
193       }
194
195       ethertype_set_t allowed_ethertypes;
196       u8 *data, n_et;
197       u16* et;
198
199       data = (((u8*)&payload.contract.n_ether_types) +
200               (sizeof(payload.contract.rules[0]) * payload.contract.n_rules));
201       n_et = *data;
202       et = (u16*)(++data);
203
204       for (uint8_t i = 0; i < n_et; i++) {
205         allowed_ethertypes.insert(ethertype_t::from_numeric_val(et[i]));
206       }
207
208       gbp_contract gbpc(payload.contract.src_epg, payload.contract.dst_epg,
209                         *acl, rules, allowed_ethertypes);
210       OM::commit(key, gbpc);
211
212       VOM_LOG(log_level_t::DEBUG) << "read: " << gbpc.to_string();
213     }
214   }
215 }
216
217 dependency_t
218 gbp_contract::event_handler::order() const
219 {
220   return (dependency_t::ENTRY);
221 }
222
223 void
224 gbp_contract::event_handler::show(std::ostream& os)
225 {
226   db_dump(m_db, os);
227 }
228
229 std::ostream&
230 operator<<(std::ostream& os, const gbp_contract::key_t& key)
231 {
232   os << "{ " << key.first << "," << key.second << "}";
233
234   return (os);
235 }
236
237 } // namespace VOM
238
239 /*
240  * fd.io coding-style-patch-verification: ON
241  *
242  * Local Variables:
243  * eval: (c-set-style "mozilla")
244  * End:
245  */