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