blob: 343d82d3ffad69af7c46c91457f8f93a7c9b58f8 [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
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"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070017#include "vom/bridge_domain_entry_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070018
19namespace VOM {
20singular_db<bridge_domain_entry::key_t, bridge_domain_entry>
21 bridge_domain_entry::m_db;
22
23bridge_domain_entry::event_handler bridge_domain_entry::m_evh;
24
25bridge_domain_entry::bridge_domain_entry(const bridge_domain& bd,
26 const mac_address_t& mac,
27 const interface& tx_itf)
28 : m_hw(false)
29 , m_mac(mac)
30 , m_bd(bd.singular())
31 , m_tx_itf(tx_itf.singular())
32{
33}
34
35bridge_domain_entry::bridge_domain_entry(const mac_address_t& mac,
36 const interface& tx_itf)
37 : m_hw(false)
38 , m_mac(mac)
39 , m_bd(nullptr)
40 , m_tx_itf(tx_itf.singular())
41{
42 /*
Neale Rannsf29e85f2017-11-01 03:29:13 -070043 * the entry goes in the default bridge-domain
44 */
Neale Ranns812ed392017-10-16 04:20:13 -070045 bridge_domain bd(bridge_domain::DEFAULT_TABLE);
46
47 m_bd = bd.singular();
48}
49
50bridge_domain_entry::bridge_domain_entry(const bridge_domain_entry& bde)
51 : m_hw(bde.m_hw)
52 , m_mac(bde.m_mac)
53 , m_bd(bde.m_bd)
54 , m_tx_itf(bde.m_tx_itf)
55{
56}
57
58bridge_domain_entry::~bridge_domain_entry()
59{
60 sweep();
61
62 // not in the DB anymore.
63 m_db.release(std::make_pair(m_bd->id(), m_mac), this);
64}
65
66void
67bridge_domain_entry::sweep()
68{
69 if (m_hw) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070070 HW::enqueue(
71 new bridge_domain_entry_cmds::delete_cmd(m_hw, m_mac, m_bd->id()));
Neale Ranns812ed392017-10-16 04:20:13 -070072 }
73 HW::write();
74}
75
76void
77bridge_domain_entry::replay()
78{
79 if (m_hw) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070080 HW::enqueue(new bridge_domain_entry_cmds::create_cmd(
81 m_hw, m_mac, m_bd->id(), m_tx_itf->handle()));
Neale Ranns812ed392017-10-16 04:20:13 -070082 }
83}
84std::string
85bridge_domain_entry::to_string() const
86{
87 std::ostringstream s;
88 s << "bridge-domain-entry:[" << m_bd->to_string() << ", " << m_mac.to_string()
89 << ", tx:" << m_tx_itf->name() << "]";
90
91 return (s.str());
92}
93
94void
95bridge_domain_entry::update(const bridge_domain_entry& r)
96{
97 /*
Neale Rannsf29e85f2017-11-01 03:29:13 -070098 * create the table if it is not yet created
99 */
Neale Ranns812ed392017-10-16 04:20:13 -0700100 if (rc_t::OK != m_hw.rc()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700101 HW::enqueue(new bridge_domain_entry_cmds::create_cmd(
102 m_hw, m_mac, m_bd->id(), m_tx_itf->handle()));
Neale Ranns812ed392017-10-16 04:20:13 -0700103 }
104}
105
106std::shared_ptr<bridge_domain_entry>
107bridge_domain_entry::find_or_add(const bridge_domain_entry& temp)
108{
109 return (m_db.find_or_add(std::make_pair(temp.m_bd->id(), temp.m_mac), temp));
110}
111
112std::shared_ptr<bridge_domain_entry>
113bridge_domain_entry::singular() const
114{
115 return find_or_add(*this);
116}
117
118void
119bridge_domain_entry::dump(std::ostream& os)
120{
121 m_db.dump(os);
122}
123
124bridge_domain_entry::event_handler::event_handler()
125{
126 OM::register_listener(this);
127 inspect::register_handler({ "bd-entry" },
128 "bridge domain entry configurations", this);
129}
130
131void
132bridge_domain_entry::event_handler::handle_replay()
133{
134 m_db.replay();
135}
136
137void
138bridge_domain_entry::event_handler::handle_populate(const client_db::key_t& key)
139{
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700140 std::shared_ptr<bridge_domain_entry_cmds::dump_cmd> cmd(
141 new bridge_domain_entry_cmds::dump_cmd());
Neale Ranns812ed392017-10-16 04:20:13 -0700142
143 HW::enqueue(cmd);
144 HW::write();
145
146 for (auto& record : *cmd) {
147 auto& payload = record.get_payload();
148
149 std::shared_ptr<interface> itf = interface::find(payload.sw_if_index);
150 std::shared_ptr<bridge_domain> bd = bridge_domain::find(payload.bd_id);
151 mac_address_t mac(payload.mac);
152 bridge_domain_entry bd_e(*bd, mac, *itf);
153
154 VOM_LOG(log_level_t::DEBUG) << "bd-entry-dump: " << bd->to_string()
155 << mac.to_string() << itf->to_string();
156
157 /*
Neale Rannsf29e85f2017-11-01 03:29:13 -0700158 * Write each of the discovered interfaces into the OM,
159 * but disable the HW Command q whilst we do, so that no
160 * commands are sent to VPP
161 */
Neale Ranns812ed392017-10-16 04:20:13 -0700162 OM::commit(key, bd_e);
163 }
164}
165
166dependency_t
167bridge_domain_entry::event_handler::order() const
168{
169 return (dependency_t::ENTRY);
170}
171
172void
173bridge_domain_entry::event_handler::show(std::ostream& os)
174{
175 m_db.dump(os);
176}
177
178std::ostream&
179operator<<(std::ostream& os, const bridge_domain_entry::key_t& key)
180{
181 os << "[" << key.first << ", " << key.second.to_string() << "]";
182
183 return (os);
184}
185}
186
187/*
188 * fd.io coding-style-patch-verification: ON
189 *
190 * Local Variables:
191 * eval: (c-set-style "mozilla")
192 * End:
193 */