blob: 97332788f4cc6b08919ea6c17c7ff8239c5c4014 [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/acl_list.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070017#include "vom/acl_list_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070018#include "vom/logger.hpp"
19
20namespace VOM {
21namespace ACL {
22template <>
23void
24l2_list::event_handler::handle_populate(const client_db::key_t& key)
25{
26 /* hack to get this function instantiated */
27 m_evh.order();
28
29 /*
Neale Ranns1d781552017-11-27 04:52:35 -080030 * dump VPP Bridge domains
31 */
32 std::shared_ptr<list_cmds::l2_dump_cmd> cmd =
33 std::make_shared<list_cmds::l2_dump_cmd>();
Neale Ranns812ed392017-10-16 04:20:13 -070034
35 HW::enqueue(cmd);
36 HW::write();
37
38 for (auto& record : *cmd) {
39 auto& payload = record.get_payload();
40
41 const handle_t hdl(payload.acl_index);
42 l2_list acl(hdl, std::string(reinterpret_cast<const char*>(payload.tag)));
43
44 for (unsigned int ii = 0; ii < payload.count; ii++) {
45 const route::prefix_t pfx(payload.r[ii].is_ipv6,
46 payload.r[ii].src_ip_addr,
47 payload.r[ii].src_ip_prefix_len);
48 l2_rule rule(ii, action_t::from_int(payload.r[ii].is_permit), pfx,
49 { payload.r[ii].src_mac }, { payload.r[ii].src_mac_mask });
50
51 acl.insert(rule);
52 }
53 VOM_LOG(log_level_t::DEBUG) << "dump: " << acl.to_string();
54
55 /*
Neale Ranns1d781552017-11-27 04:52:35 -080056 * Write each of the discovered ACLs into the OM,
57 * but disable the HW Command q whilst we do, so that no
58 * commands are sent to VPP
59 */
Neale Ranns812ed392017-10-16 04:20:13 -070060 OM::commit(key, acl);
61 }
62}
63
64template <>
65void
66l3_list::event_handler::handle_populate(const client_db::key_t& key)
67{
68 /* hack to get this function instantiated */
69 m_evh.order();
70
71 /*
Neale Ranns1d781552017-11-27 04:52:35 -080072 * dump L3 ACLs Bridge domains
73 */
74 std::shared_ptr<list_cmds::l3_dump_cmd> cmd =
75 std::make_shared<list_cmds::l3_dump_cmd>();
Neale Ranns812ed392017-10-16 04:20:13 -070076
77 HW::enqueue(cmd);
78 HW::write();
79
80 for (auto& record : *cmd) {
81 auto& payload = record.get_payload();
82
83 const handle_t hdl(payload.acl_index);
84 l3_list acl(hdl, std::string(reinterpret_cast<const char*>(payload.tag)));
85
86 for (unsigned int ii = 0; ii < payload.count; ii++) {
87 const route::prefix_t src(payload.r[ii].is_ipv6,
88 payload.r[ii].src_ip_addr,
89 payload.r[ii].src_ip_prefix_len);
90 const route::prefix_t dst(payload.r[ii].is_ipv6,
91 payload.r[ii].dst_ip_addr,
92 payload.r[ii].dst_ip_prefix_len);
93 l3_rule rule(ii, action_t::from_int(payload.r[ii].is_permit), src, dst);
94
95 acl.insert(rule);
96 }
97 VOM_LOG(log_level_t::DEBUG) << "dump: " << acl.to_string();
98
99 /*
Neale Ranns1d781552017-11-27 04:52:35 -0800100 * Write each of the discovered ACLs into the OM,
101 * but disable the HW Command q whilst we do, so that no
102 * commands are sent to VPP
103 */
Neale Ranns812ed392017-10-16 04:20:13 -0700104 OM::commit(key, acl);
105 }
106}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700107
108template <>
109void
110l3_list::update(const l3_list& obj)
111{
112 /*
113 * always update the instance with the latest rule set
114 */
115 if (!m_hdl || obj.m_rules != m_rules) {
116 HW::enqueue(new list_cmds::l3_update_cmd(m_hdl, m_key, m_rules));
117 }
118 /*
119 * We don't, can't, read the priority from VPP,
120 * so the is equals check above does not include the priorty.
121 * but we save it now.
122 */
123 m_rules = obj.m_rules;
124}
125template <>
126void
127l2_list::update(const l2_list& obj)
128{
129 /*
130 * always update the instance with the latest rule set
131 */
132 if (!m_hdl || obj.m_rules != m_rules) {
133 HW::enqueue(new list_cmds::l2_update_cmd(m_hdl, m_key, m_rules));
134 }
135 /*
136 * We don't, can't, read the priority from VPP,
137 * so the is equals check above does not include the priorty.
138 * but we save it now.
139 */
140 m_rules = obj.m_rules;
141}
142/**
143 * Sweep/reap the object if still stale
144 */
145template <>
146void
147l3_list::sweep(void)
148{
149 if (m_hdl) {
150 HW::enqueue(new list_cmds::l3_delete_cmd(m_hdl));
151 }
152 HW::write();
153}
154template <>
155void
156l2_list::sweep(void)
157{
158 if (m_hdl) {
159 HW::enqueue(new list_cmds::l2_delete_cmd(m_hdl));
160 }
161 HW::write();
162}
163
164/**
165 * Replay the objects state to HW
166 */
167template <>
168void
169l3_list::replay(void)
170{
171 if (m_hdl) {
172 HW::enqueue(new list_cmds::l3_update_cmd(m_hdl, m_key, m_rules));
173 }
174}
175template <>
176void
177l2_list::replay(void)
178{
179 if (m_hdl) {
180 HW::enqueue(new list_cmds::l2_update_cmd(m_hdl, m_key, m_rules));
181 }
182}
183
184}; // namespace ACL
185}; // namespace VOM
Neale Ranns812ed392017-10-16 04:20:13 -0700186
187/*
188 * fd.io coding-style-patch-verification: ON
189 *
190 * Local Variables:
191 * eval: (c-set-style "mozilla")
192 * End:
193 */