gbp: add anonymous l3-out subnets
[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::STITCHED_INTERNAL(
29   0,
30   "stitched-internal");
31 const gbp_subnet::type_t gbp_subnet::type_t::STITCHED_EXTERNAL(
32   1,
33   "stitched-external");
34 const gbp_subnet::type_t gbp_subnet::type_t::TRANSPORT(2, "transport");
35 const gbp_subnet::type_t gbp_subnet::type_t::L3_OUT(3, "l3-out");
36 const gbp_subnet::type_t gbp_subnet::type_t::ANON_L3_OUT(4, "anon-l3-out");
37
38 singular_db<gbp_subnet::key_t, gbp_subnet> gbp_subnet::m_db;
39
40 gbp_subnet::event_handler gbp_subnet::m_evh;
41
42 gbp_subnet::gbp_subnet(const gbp_route_domain& rd,
43                        const route::prefix_t& prefix,
44                        const type_t& type)
45   : m_hw(false)
46   , m_rd(rd.singular())
47   , m_prefix(prefix)
48   , m_type(type)
49   , m_recirc(nullptr)
50   , m_epg(nullptr)
51   , m_sclass(~0)
52 {
53 }
54
55 gbp_subnet::gbp_subnet(const gbp_route_domain& rd,
56                        const route::prefix_t& prefix,
57                        const gbp_recirc& recirc,
58                        const gbp_endpoint_group& epg)
59   : m_hw(false)
60   , m_rd(rd.singular())
61   , m_prefix(prefix)
62   , m_type(type_t::STITCHED_EXTERNAL)
63   , m_recirc(recirc.singular())
64   , m_epg(epg.singular())
65   , m_sclass(~0)
66 {
67 }
68
69 gbp_subnet::gbp_subnet(const gbp_route_domain& rd,
70                        const route::prefix_t& prefix,
71                        sclass_t sclass,
72                        const type_t& type)
73   : m_hw(false)
74   , m_rd(rd.singular())
75   , m_prefix(prefix)
76   , m_type(type)
77   , m_recirc(nullptr)
78   , m_epg()
79   , m_sclass(sclass)
80 {
81 }
82
83 gbp_subnet::gbp_subnet(const gbp_subnet& o)
84   : m_hw(o.m_hw)
85   , m_rd(o.m_rd)
86   , m_prefix(o.m_prefix)
87   , m_type(o.m_type)
88   , m_recirc(o.m_recirc)
89   , m_epg(o.m_epg)
90   , m_sclass(o.m_sclass)
91 {
92 }
93
94 gbp_subnet::~gbp_subnet()
95 {
96   sweep();
97   m_db.release(key(), this);
98 }
99
100 const gbp_subnet::key_t
101 gbp_subnet::key() const
102 {
103   return (std::make_pair(m_rd->key(), m_prefix));
104 }
105
106 bool
107 gbp_subnet::operator==(const gbp_subnet& gs) const
108 {
109   return ((key() == gs.key()) && (m_type == gs.m_type) &&
110           (m_recirc == gs.m_recirc) && (m_epg == gs.m_epg) &&
111           (m_sclass == gs.m_sclass));
112 }
113
114 void
115 gbp_subnet::sweep()
116 {
117   if (m_hw) {
118     HW::enqueue(new gbp_subnet_cmds::delete_cmd(m_hw, m_rd->id(), m_prefix));
119   }
120   HW::write();
121 }
122
123 void
124 gbp_subnet::replay()
125 {
126   if (m_hw) {
127     HW::enqueue(new gbp_subnet_cmds::create_cmd(
128       m_hw, m_rd->id(), m_prefix, m_type,
129       (m_recirc ? m_recirc->handle() : handle_t::INVALID),
130       (m_epg ? m_epg->sclass() : m_sclass)));
131   }
132 }
133
134 std::string
135 gbp_subnet::to_string() const
136 {
137   std::ostringstream s;
138   s << "gbp-subnet:[" << m_type.to_string() << ", " << m_rd->to_string() << ":"
139     << m_prefix.to_string();
140   if (m_recirc)
141     s << ", " << m_recirc->to_string();
142   if (m_epg)
143     s << ", " << m_epg->to_string();
144
145   s << "]";
146
147   return (s.str());
148 }
149
150 void
151 gbp_subnet::update(const gbp_subnet& r)
152 {
153   if (rc_t::OK != m_hw.rc()) {
154     HW::enqueue(new gbp_subnet_cmds::create_cmd(
155       m_hw, m_rd->id(), m_prefix, m_type,
156       (m_recirc ? m_recirc->handle() : handle_t::INVALID),
157       (m_epg ? m_epg->sclass() : m_sclass)));
158   } else {
159     if (m_type != r.m_type) {
160       m_epg = r.m_epg;
161       m_recirc = r.m_recirc;
162       m_type = r.m_type;
163
164       HW::enqueue(new gbp_subnet_cmds::create_cmd(
165         m_hw, m_rd->id(), m_prefix, m_type,
166         (m_recirc ? m_recirc->handle() : handle_t::INVALID),
167         (m_epg ? m_epg->sclass() : m_sclass)));
168     }
169   }
170 }
171
172 std::shared_ptr<gbp_subnet>
173 gbp_subnet::find_or_add(const gbp_subnet& temp)
174 {
175   return (m_db.find_or_add(temp.key(), temp));
176 }
177
178 std::shared_ptr<gbp_subnet>
179 gbp_subnet::find(const key_t& k)
180 {
181   return (m_db.find(k));
182 }
183
184 std::shared_ptr<gbp_subnet>
185 gbp_subnet::singular() const
186 {
187   return find_or_add(*this);
188 }
189
190 void
191 gbp_subnet::dump(std::ostream& os)
192 {
193   db_dump(m_db, os);
194 }
195
196 gbp_subnet::event_handler::event_handler()
197 {
198   OM::register_listener(this);
199   inspect::register_handler({ "gbp-subnet" }, "GBP Subnets", this);
200 }
201
202 void
203 gbp_subnet::event_handler::handle_replay()
204 {
205   m_db.replay();
206 }
207
208 void
209 gbp_subnet::event_handler::handle_populate(const client_db::key_t& key)
210 {
211   std::shared_ptr<gbp_subnet_cmds::dump_cmd> cmd =
212     std::make_shared<gbp_subnet_cmds::dump_cmd>();
213
214   HW::enqueue(cmd);
215   HW::write();
216
217   for (auto& record : *cmd) {
218     auto& payload = record.get_payload();
219
220     route::prefix_t pfx = from_api(payload.subnet.prefix);
221     std::shared_ptr<gbp_route_domain> rd =
222       gbp_route_domain::find(payload.subnet.rd_id);
223
224     if (rd) {
225       switch (payload.subnet.type) {
226         case GBP_API_SUBNET_TRANSPORT: {
227           gbp_subnet gs(*rd, pfx, type_t::TRANSPORT);
228           OM::commit(key, gs);
229           VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
230           break;
231         }
232         case GBP_API_SUBNET_STITCHED_INTERNAL: {
233           gbp_subnet gs(*rd, pfx, type_t::STITCHED_INTERNAL);
234           OM::commit(key, gs);
235           VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
236           break;
237         }
238         case GBP_API_SUBNET_L3_OUT: {
239           gbp_subnet gs(*rd, pfx, payload.subnet.sclass);
240           OM::commit(key, gs);
241           VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
242           break;
243         }
244         case GBP_API_SUBNET_ANON_L3_OUT: {
245           gbp_subnet gs(*rd, pfx, payload.subnet.sclass, type_t::ANON_L3_OUT);
246           OM::commit(key, gs);
247           VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
248           break;
249         }
250         case GBP_API_SUBNET_STITCHED_EXTERNAL: {
251           std::shared_ptr<interface> itf =
252             interface::find(payload.subnet.sw_if_index);
253           std::shared_ptr<gbp_endpoint_group> epg =
254             gbp_endpoint_group::find(payload.subnet.sclass);
255
256           if (itf && epg) {
257             std::shared_ptr<gbp_recirc> recirc = gbp_recirc::find(itf->key());
258
259             if (recirc) {
260               gbp_subnet gs(*rd, pfx, *recirc, *epg);
261               OM::commit(key, gs);
262               VOM_LOG(log_level_t::DEBUG) << "read: " << gs.to_string();
263             }
264           }
265         }
266       }
267     }
268   }
269 }
270
271 dependency_t
272 gbp_subnet::event_handler::order() const
273 {
274   return (dependency_t::ENTRY);
275 }
276
277 void
278 gbp_subnet::event_handler::show(std::ostream& os)
279 {
280   db_dump(m_db, os);
281 }
282
283 std::ostream&
284 operator<<(std::ostream& os, const gbp_subnet::key_t& key)
285 {
286   os << "[" << key.first << ", " << key.second << "]";
287
288   return os;
289 }
290
291 } // namespace VOM
292
293 /*
294  * fd.io coding-style-patch-verification: ON
295  *
296  * Local Variables:
297  * eval: (c-set-style "mozilla")
298  * End:
299  */