GBP: use sclass in the DP for policy
[vpp.git] / extras / vom / vom / gbp_endpoint_group.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_endpoint_group.hpp"
17 #include "vom/gbp_endpoint_group_cmds.hpp"
18 #include "vom/singular_db_funcs.hpp"
19
20 namespace VOM {
21
22 singular_db<gbp_endpoint_group::key_t, gbp_endpoint_group>
23   gbp_endpoint_group::m_db;
24
25 gbp_endpoint_group::event_handler gbp_endpoint_group::m_evh;
26
27 gbp_endpoint_group::retention_t::retention_t()
28   : remote_ep_timeout(0xffffffff)
29 {
30 }
31 gbp_endpoint_group::retention_t::retention_t(uint32_t remote_ep_timeout_)
32   : remote_ep_timeout(remote_ep_timeout_)
33 {
34 }
35
36 bool
37 gbp_endpoint_group::retention_t::operator==(const retention_t& o) const
38 {
39   return (remote_ep_timeout == o.remote_ep_timeout);
40 }
41
42 std::string
43 gbp_endpoint_group::retention_t::to_string() const
44 {
45   return std::to_string(remote_ep_timeout);
46 }
47
48 gbp_endpoint_group::gbp_endpoint_group(vnid_t vnid,
49                                        sclass_t sclass,
50                                        const interface& itf,
51                                        const gbp_route_domain& rd,
52                                        const gbp_bridge_domain& bd)
53   : m_hw(false)
54   , m_vnid(vnid)
55   , m_sclass(sclass)
56   , m_itf(itf.singular())
57   , m_rd(rd.singular())
58   , m_bd(bd.singular())
59   , m_retention()
60 {
61 }
62
63 gbp_endpoint_group::gbp_endpoint_group(vnid_t vnid,
64                                        sclass_t sclass,
65                                        const gbp_route_domain& rd,
66                                        const gbp_bridge_domain& bd)
67   : m_hw(false)
68   , m_vnid(vnid)
69   , m_sclass(sclass)
70   , m_itf()
71   , m_rd(rd.singular())
72   , m_bd(bd.singular())
73   , m_retention()
74 {
75 }
76
77 gbp_endpoint_group::gbp_endpoint_group(sclass_t sclass,
78                                        const gbp_route_domain& rd,
79                                        const gbp_bridge_domain& bd)
80   : m_hw(false)
81   , m_vnid(~0)
82   , m_sclass(sclass)
83   , m_itf()
84   , m_rd(rd.singular())
85   , m_bd(bd.singular())
86   , m_retention()
87 {
88 }
89
90 gbp_endpoint_group::gbp_endpoint_group(const gbp_endpoint_group& epg)
91   : m_hw(epg.m_hw)
92   , m_vnid(epg.m_vnid)
93   , m_sclass(epg.m_sclass)
94   , m_itf(epg.m_itf)
95   , m_rd(epg.m_rd)
96   , m_bd(epg.m_bd)
97   , m_retention(epg.m_retention)
98 {
99 }
100
101 gbp_endpoint_group::~gbp_endpoint_group()
102 {
103   sweep();
104   m_db.release(key(), this);
105 }
106
107 const gbp_endpoint_group::key_t
108 gbp_endpoint_group::key() const
109 {
110   return (m_sclass);
111 }
112
113 vnid_t
114 gbp_endpoint_group::vnid() const
115 {
116   return (m_vnid);
117 }
118
119 void
120 gbp_endpoint_group::set(const retention_t& retention)
121 {
122   m_retention = retention;
123 }
124
125 sclass_t
126 gbp_endpoint_group::sclass() const
127 {
128   return (m_sclass);
129 }
130
131 bool
132 gbp_endpoint_group::operator==(const gbp_endpoint_group& gg) const
133 {
134   return (key() == gg.key() && (m_vnid == gg.m_vnid) &&
135           (m_retention == gg.m_retention) && (m_itf == gg.m_itf) &&
136           (m_rd == gg.m_rd) && (m_bd == gg.m_bd));
137 }
138
139 void
140 gbp_endpoint_group::sweep()
141 {
142   if (m_hw) {
143     HW::enqueue(new gbp_endpoint_group_cmds::delete_cmd(m_hw, m_vnid));
144   }
145   HW::write();
146 }
147
148 void
149 gbp_endpoint_group::replay()
150 {
151   if (m_hw) {
152     HW::enqueue(new gbp_endpoint_group_cmds::create_cmd(
153       m_hw, m_vnid, m_sclass, m_bd->id(), m_rd->id(), m_retention,
154       (m_itf ? m_itf->handle() : handle_t::INVALID)));
155   }
156 }
157
158 std::string
159 gbp_endpoint_group::to_string() const
160 {
161   std::ostringstream s;
162   s << "gbp-endpoint-group:["
163     << "vnid:" << m_vnid << ", sclass:" << m_sclass << ", "
164     << "retention:[" << m_retention.to_string() << "], "
165     << (m_itf ? m_itf->to_string() : "NULL") << ", " << m_bd->to_string()
166     << ", " << m_rd->to_string() << "]";
167
168   return (s.str());
169 }
170
171 void
172 gbp_endpoint_group::update(const gbp_endpoint_group& r)
173 {
174   if (rc_t::OK != m_hw.rc()) {
175     HW::enqueue(new gbp_endpoint_group_cmds::create_cmd(
176       m_hw, m_vnid, m_sclass, m_bd->id(), m_rd->id(), m_retention,
177       (m_itf ? m_itf->handle() : handle_t::INVALID)));
178   }
179 }
180
181 std::shared_ptr<gbp_endpoint_group>
182 gbp_endpoint_group::find_or_add(const gbp_endpoint_group& temp)
183 {
184   return (m_db.find_or_add(temp.key(), temp));
185 }
186
187 std::shared_ptr<gbp_endpoint_group>
188 gbp_endpoint_group::find(const key_t& k)
189 {
190   return (m_db.find(k));
191 }
192
193 std::shared_ptr<gbp_endpoint_group>
194 gbp_endpoint_group::singular() const
195 {
196   return find_or_add(*this);
197 }
198
199 void
200 gbp_endpoint_group::dump(std::ostream& os)
201 {
202   db_dump(m_db, os);
203 }
204
205 const std::shared_ptr<gbp_route_domain>
206 gbp_endpoint_group::get_route_domain() const
207 {
208   return m_rd;
209 }
210
211 const std::shared_ptr<gbp_bridge_domain>
212 gbp_endpoint_group::get_bridge_domain() const
213 {
214   return m_bd;
215 }
216
217 gbp_endpoint_group::event_handler::event_handler()
218 {
219   OM::register_listener(this);
220   inspect::register_handler({ "gbp-endpoint-group" }, "GBP Endpoint_Groups",
221                             this);
222 }
223
224 void
225 gbp_endpoint_group::event_handler::handle_replay()
226 {
227   m_db.replay();
228 }
229
230 void
231 gbp_endpoint_group::event_handler::handle_populate(const client_db::key_t& key)
232 {
233   std::shared_ptr<gbp_endpoint_group_cmds::dump_cmd> cmd =
234     std::make_shared<gbp_endpoint_group_cmds::dump_cmd>();
235
236   HW::enqueue(cmd);
237   HW::write();
238
239   for (auto& record : *cmd) {
240     auto& payload = record.get_payload();
241
242     std::shared_ptr<interface> itf =
243       interface::find(payload.epg.uplink_sw_if_index);
244     std::shared_ptr<gbp_route_domain> rd =
245       gbp_route_domain::find(payload.epg.rd_id);
246     std::shared_ptr<gbp_bridge_domain> bd =
247       gbp_bridge_domain::find(payload.epg.bd_id);
248
249     VOM_LOG(log_level_t::DEBUG) << "data: [" << payload.epg.uplink_sw_if_index
250                                 << ", " << payload.epg.rd_id << ", "
251                                 << payload.epg.bd_id << "]";
252
253     if (itf && bd && rd) {
254       gbp_endpoint_group gbpe(payload.epg.vnid, payload.epg.sclass, *itf, *rd,
255                               *bd);
256       OM::commit(key, gbpe);
257
258       VOM_LOG(log_level_t::DEBUG) << "read: " << gbpe.to_string();
259     } else if (bd && rd) {
260       gbp_endpoint_group gbpe(payload.epg.sclass, *rd, *bd);
261       OM::commit(key, gbpe);
262
263       VOM_LOG(log_level_t::DEBUG) << "read: " << gbpe.to_string();
264     } else {
265       VOM_LOG(log_level_t::ERROR) << "no itf:" << payload.epg.uplink_sw_if_index
266                                   << " or BD:" << payload.epg.bd_id
267                                   << " or RD:" << payload.epg.rd_id;
268     }
269   }
270 }
271
272 dependency_t
273 gbp_endpoint_group::event_handler::order() const
274 {
275   return (dependency_t::ACL);
276 }
277
278 void
279 gbp_endpoint_group::event_handler::show(std::ostream& os)
280 {
281   db_dump(m_db, os);
282 }
283 } // namespace VOM
284
285 /*
286  * fd.io coding-style-patch-verification: ON
287  *
288  * Local Variables:
289  * eval: (c-set-style "mozilla")
290  * End:
291  */