GBP Endpoint Updates
[vpp.git] / extras / vom / vom / gbp_subnet.cpp
1 /*
2  * Copyright (c) 2018 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_subnet.hpp"
17 #include "vom/api_types.hpp"
18 #include "vom/gbp_subnet_cmds.hpp"
19 #include "vom/singular_db_funcs.hpp"
20
21 namespace VOM {
22
23 gbp_subnet::type_t::type_t(int v, const std::string s)
24   : enum_base<gbp_subnet::type_t>(v, s)
25 {
26 }
27
28 const gbp_subnet::type_t gbp_subnet::type_t::INTERNAL(0, "internal");
29 const gbp_subnet::type_t gbp_subnet::type_t::EXTERNAL(1, "external");
30
31 singular_db<gbp_subnet::key_t, gbp_subnet> gbp_subnet::m_db;
32
33 gbp_subnet::event_handler gbp_subnet::m_evh;
34
35 gbp_subnet::gbp_subnet(const route_domain& rd, const route::prefix_t& prefix)
36   : m_hw(false)
37   , m_rd(rd.singular())
38   , m_prefix(prefix)
39   , m_type(type_t::INTERNAL)
40   , m_recirc(nullptr)
41   , m_epg(nullptr)
42 {
43 }
44
45 gbp_subnet::gbp_subnet(const route_domain& rd,
46                        const route::prefix_t& prefix,
47                        const gbp_recirc& recirc,
48                        const gbp_endpoint_group& epg)
49   : m_hw(false)
50   , m_rd(rd.singular())
51   , m_prefix(prefix)
52   , m_type(type_t::EXTERNAL)
53   , m_recirc(recirc.singular())
54   , m_epg(epg.singular())
55 {
56 }
57
58 gbp_subnet::gbp_subnet(const gbp_subnet& o)
59   : m_hw(o.m_hw)
60   , m_rd(o.m_rd)
61   , m_prefix(o.m_prefix)
62   , m_type(o.m_type)
63   , m_recirc(o.m_recirc)
64   , m_epg(o.m_epg)
65 {
66 }
67
68 gbp_subnet::~gbp_subnet()
69 {
70   sweep();
71   m_db.release(key(), this);
72 }
73
74 const gbp_subnet::key_t
75 gbp_subnet::key() const
76 {
77   return (std::make_pair(m_rd->key(), m_prefix));
78 }
79
80 bool
81 gbp_subnet::operator==(const gbp_subnet& gs) const
82 {
83   return ((key() == gs.key()) && (m_type == gs.m_type) &&
84           (m_recirc == gs.m_recirc) && (m_epg == gs.m_epg));
85 }
86
87 void
88 gbp_subnet::sweep()
89 {
90   if (m_hw) {
91     HW::enqueue(
92       new gbp_subnet_cmds::delete_cmd(m_hw, m_rd->table_id(), m_prefix));
93   }
94   HW::write();
95 }
96
97 void
98 gbp_subnet::replay()
99 {
100   if (m_hw) {
101     HW::enqueue(new gbp_subnet_cmds::create_cmd(
102       m_hw, m_rd->table_id(), m_prefix, (m_type == type_t::INTERNAL),
103       (m_recirc ? m_recirc->handle() : handle_t::INVALID),
104       (m_epg ? m_epg->id() : ~0)));
105   }
106 }
107
108 std::string
109 gbp_subnet::to_string() const
110 {
111   std::ostringstream s;
112   s << "gbp-subnet:[" << m_type.to_string() << ", " << m_rd->to_string() << ":"
113     << m_prefix.to_string();
114   if (m_recirc)
115     s << ", " << m_recirc->to_string();
116   if (m_epg)
117     s << ", " << m_epg->to_string();
118
119   s << "]";
120
121   return (s.str());
122 }
123
124 void
125 gbp_subnet::update(const gbp_subnet& r)
126 {
127   if (rc_t::OK != m_hw.rc()) {
128     HW::enqueue(new gbp_subnet_cmds::create_cmd(
129       m_hw, m_rd->table_id(), m_prefix, (m_type == type_t::INTERNAL),
130       (m_recirc ? m_recirc->handle() : handle_t::INVALID),
131       (m_epg ? m_epg->id() : ~0)));
132   } else {
133     if (m_type != r.m_type) {
134       m_epg = r.m_epg;
135       m_recirc = r.m_recirc;
136       m_type = r.m_type;
137
138       HW::enqueue(new gbp_subnet_cmds::create_cmd(
139         m_hw, m_rd->table_id(), m_prefix, (m_type == type_t::INTERNAL),
140         (m_recirc ? m_recirc->handle() : handle_t::INVALID),
141         (m_epg ? m_epg->id() : ~0)));
142     }
143   }
144 }
145
146 std::shared_ptr<gbp_subnet>
147 gbp_subnet::find_or_add(const gbp_subnet& temp)
148 {
149   return (m_db.find_or_add(temp.key(), temp));
150 }
151
152 std::shared_ptr<gbp_subnet>
153 gbp_subnet::find(const key_t& k)
154 {
155   return (m_db.find(k));
156 }
157
158 std::shared_ptr<gbp_subnet>
159 gbp_subnet::singular() const
160 {
161   return find_or_add(*this);
162 }
163
164 void
165 gbp_subnet::dump(std::ostream& os)
166 {
167   db_dump(m_db, os);
168 }
169
170 gbp_subnet::event_handler::event_handler()
171 {
172   OM::register_listener(this);
173   inspect::register_handler({ "gbp-subnet" }, "GBP Subnets", this);
174 }
175
176 void
177 gbp_subnet::event_handler::handle_replay()
178 {
179   m_db.replay();
180 }
181
182 void
183 gbp_subnet::event_handler::handle_populate(const client_db::key_t& key)
184 {
185   std::shared_ptr<gbp_subnet_cmds::dump_cmd> cmd =
186     std::make_shared<gbp_subnet_cmds::dump_cmd>();
187
188   HW::enqueue(cmd);
189   HW::write();
190
191   for (auto& record : *cmd) {
192     auto& payload = record.get_payload();
193
194     route::prefix_t pfx = from_api(payload.subnet.prefix);
195     std::shared_ptr<route_domain> rd =
196       route_domain::find(payload.subnet.table_id);
197
198     if (rd) {
199       if (payload.subnet.is_internal) {
200         gbp_subnet gs(*rd, pfx);
201         OM::commit(key, gs);
202         VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
203       } else {
204         std::shared_ptr<interface> itf =
205           interface::find(payload.subnet.sw_if_index);
206         std::shared_ptr<gbp_endpoint_group> epg =
207           gbp_endpoint_group::find(payload.subnet.epg_id);
208
209         if (itf && epg) {
210           std::shared_ptr<gbp_recirc> recirc = gbp_recirc::find(itf->key());
211
212           if (recirc) {
213             gbp_subnet gs(*rd, pfx, *recirc, *epg);
214             OM::commit(key, gs);
215             VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
216           }
217         }
218       }
219     }
220   }
221 }
222
223 dependency_t
224 gbp_subnet::event_handler::order() const
225 {
226   return (dependency_t::ENTRY);
227 }
228
229 void
230 gbp_subnet::event_handler::show(std::ostream& os)
231 {
232   db_dump(m_db, os);
233 }
234 } // namespace VOM
235
236 /*
237  * fd.io coding-style-patch-verification: ON
238  *
239  * Local Variables:
240  * eval: (c-set-style "mozilla")
241  * End:
242  */