GBP: add allowed ethertypes to contracts
[vpp.git] / extras / vom / vom / bridge_domain_entry.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/bridge_domain_entry.hpp"
17 #include "vom/bridge_domain_entry_cmds.hpp"
18 #include "vom/singular_db_funcs.hpp"
19
20 namespace VOM {
21 singular_db<bridge_domain_entry::key_t, bridge_domain_entry>
22   bridge_domain_entry::m_db;
23
24 bridge_domain_entry::event_handler bridge_domain_entry::m_evh;
25
26 bridge_domain_entry::bridge_domain_entry(const bridge_domain& bd,
27                                          const mac_address_t& mac,
28                                          const interface& tx_itf)
29   : m_hw(false)
30   , m_mac(mac)
31   , m_bd(bd.singular())
32   , m_tx_itf(tx_itf.singular())
33 {
34 }
35
36 bridge_domain_entry::bridge_domain_entry(const mac_address_t& mac,
37                                          const interface& tx_itf)
38   : m_hw(false)
39   , m_mac(mac)
40   , m_bd(nullptr)
41   , m_tx_itf(tx_itf.singular())
42 {
43   /*
44    * the entry goes in the default bridge-domain
45    */
46   bridge_domain bd(bridge_domain::DEFAULT_TABLE);
47
48   m_bd = bd.singular();
49 }
50
51 bridge_domain_entry::bridge_domain_entry(const bridge_domain_entry& bde)
52   : m_hw(bde.m_hw)
53   , m_mac(bde.m_mac)
54   , m_bd(bde.m_bd)
55   , m_tx_itf(bde.m_tx_itf)
56 {
57 }
58
59 const bridge_domain_entry::key_t
60 bridge_domain_entry::key() const
61 {
62   return (std::make_pair(m_bd->key(), m_mac));
63 }
64
65 bool
66 bridge_domain_entry::operator==(const bridge_domain_entry& bde) const
67 {
68   return ((key() == bde.key()) && (m_tx_itf == bde.m_tx_itf));
69 }
70
71 bridge_domain_entry::~bridge_domain_entry()
72 {
73   sweep();
74
75   // not in the DB anymore.
76   m_db.release(key(), this);
77 }
78
79 void
80 bridge_domain_entry::sweep()
81 {
82   if (m_hw) {
83     HW::enqueue(new bridge_domain_entry_cmds::delete_cmd(
84       m_hw, m_mac, m_bd->id(), interface::type_t::BVI == m_tx_itf->type()));
85   }
86   HW::write();
87 }
88
89 void
90 bridge_domain_entry::replay()
91 {
92   if (m_hw) {
93     HW::enqueue(new bridge_domain_entry_cmds::create_cmd(
94       m_hw, m_mac, m_bd->id(), m_tx_itf->handle(),
95       interface::type_t::BVI == m_tx_itf->type()));
96   }
97 }
98 std::string
99 bridge_domain_entry::to_string() const
100 {
101   std::ostringstream s;
102   s << "bridge-domain-entry:[" << m_bd->to_string() << ", " << m_mac.to_string()
103     << ", tx:" << m_tx_itf->name() << "]";
104
105   return (s.str());
106 }
107
108 void
109 bridge_domain_entry::update(const bridge_domain_entry& r)
110 {
111   /*
112    * create the table if it is not yet created
113    */
114   if (rc_t::OK != m_hw.rc()) {
115     HW::enqueue(new bridge_domain_entry_cmds::create_cmd(
116       m_hw, m_mac, m_bd->id(), m_tx_itf->handle(),
117       interface::type_t::BVI == m_tx_itf->type()));
118   }
119 }
120
121 std::shared_ptr<bridge_domain_entry>
122 bridge_domain_entry::find_or_add(const bridge_domain_entry& temp)
123 {
124   return (m_db.find_or_add(temp.key(), temp));
125 }
126
127 std::shared_ptr<bridge_domain_entry>
128 bridge_domain_entry::find(const key_t& k)
129 {
130   return (m_db.find(k));
131 }
132
133 std::shared_ptr<bridge_domain_entry>
134 bridge_domain_entry::singular() const
135 {
136   return find_or_add(*this);
137 }
138
139 void
140 bridge_domain_entry::dump(std::ostream& os)
141 {
142   db_dump(m_db, os);
143 }
144
145 bridge_domain_entry::event_handler::event_handler()
146 {
147   OM::register_listener(this);
148   inspect::register_handler({ "bd-entry" },
149                             "bridge domain entry configurations", this);
150 }
151
152 void
153 bridge_domain_entry::event_handler::handle_replay()
154 {
155   m_db.replay();
156 }
157
158 void
159 bridge_domain_entry::event_handler::handle_populate(const client_db::key_t& key)
160 {
161   std::shared_ptr<bridge_domain_entry_cmds::dump_cmd> cmd =
162     std::make_shared<bridge_domain_entry_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<interface> itf = interface::find(payload.sw_if_index);
171     std::shared_ptr<bridge_domain> bd = bridge_domain::find(payload.bd_id);
172
173     if (!bd || !itf) {
174       VOM_LOG(log_level_t::ERROR) << "bridge-domain-entry dump:"
175                                   << " itf:" << payload.sw_if_index
176                                   << " bd:" << payload.bd_id;
177       continue;
178     }
179
180     mac_address_t mac(payload.mac);
181     bridge_domain_entry bd_e(*bd, mac, *itf);
182
183     VOM_LOG(log_level_t::DEBUG) << "bridge-domain-entry dump:"
184                                 << " " << bd->to_string() << " "
185                                 << itf->to_string() << " mac:["
186                                 << mac.to_string() << "]";
187
188     /*
189      * Write each of the discovered interfaces into the OM,
190      * but disable the HW Command q whilst we do, so that no
191      * commands are sent to VPP
192      */
193     OM::commit(key, bd_e);
194   }
195 }
196
197 dependency_t
198 bridge_domain_entry::event_handler::order() const
199 {
200   return (dependency_t::ENTRY);
201 }
202
203 void
204 bridge_domain_entry::event_handler::show(std::ostream& os)
205 {
206   db_dump(m_db, os);
207 }
208
209 std::ostream&
210 operator<<(std::ostream& os, const bridge_domain_entry::key_t& key)
211 {
212   os << "[" << key.first << ", " << key.second.to_string() << "]";
213
214   return (os);
215 }
216 }
217
218 /*
219  * fd.io coding-style-patch-verification: ON
220  *
221  * Local Variables:
222  * eval: (c-set-style "mozilla")
223  * End:
224  */