blob: a90b0bcfac94d1fdafc074272043f4695573112e [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/nat_static.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070017#include "vom/nat_static_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070018
19namespace VOM {
20singular_db<nat_static::key_t, nat_static> nat_static::m_db;
21nat_static::event_handler nat_static::m_evh;
22
23nat_static::nat_static(const boost::asio::ip::address& inside,
24 const boost::asio::ip::address_v4& outside)
25 : m_hw(false)
26 , m_rd(route_domain::get_default())
27 , m_inside(inside)
28 , m_outside(outside)
29{
30}
31
32nat_static::nat_static(const route_domain& rd,
33 const boost::asio::ip::address& inside,
34 const boost::asio::ip::address_v4& outside)
35 : m_hw(false)
36 , m_rd(rd.singular())
37 , m_inside(inside)
38 , m_outside(outside)
39{
40}
41
42nat_static::nat_static(const nat_static& ns)
43 : m_hw(ns.m_hw)
44 , m_rd(ns.m_rd)
45 , m_inside(ns.m_inside)
46 , m_outside(ns.m_outside)
47{
48}
49
50nat_static::~nat_static()
51{
52 sweep();
53
54 // not in the DB anymore.
Neale Ranns041fa502017-12-20 08:49:51 -080055 m_db.release(key(), this);
56}
57
58const nat_static::key_t
59nat_static::key() const
60{
61 return (std::make_pair(m_rd->key(), m_outside));
62}
63
64bool
65nat_static::operator==(const nat_static& n) const
66{
67 return ((key() == n.key()) && (m_inside == n.m_inside));
Neale Ranns812ed392017-10-16 04:20:13 -070068}
69
70void
71nat_static::sweep()
72{
73 if (m_hw) {
74 if (m_inside.is_v4()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070075 HW::enqueue(new nat_static_cmds::delete_44_cmd(
76 m_hw, m_rd->table_id(), m_inside.to_v4(), m_outside));
Neale Ranns812ed392017-10-16 04:20:13 -070077 }
78 }
79 HW::write();
80}
81
82void
83nat_static::replay()
84{
85 if (m_hw) {
86 if (m_inside.is_v4()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070087 HW::enqueue(new nat_static_cmds::create_44_cmd(
88 m_hw, m_rd->table_id(), m_inside.to_v4(), m_outside));
Neale Ranns812ed392017-10-16 04:20:13 -070089 }
90 }
91}
92
93void
94nat_static::update(const nat_static& r)
95{
96 /*
97 * create the table if it is not yet created
98 */
99 if (rc_t::OK != m_hw.rc()) {
100 if (m_inside.is_v4()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700101 HW::enqueue(new nat_static_cmds::create_44_cmd(
102 m_hw, m_rd->table_id(), m_inside.to_v4(), m_outside));
Neale Ranns812ed392017-10-16 04:20:13 -0700103 }
104 }
105}
106
107std::string
108nat_static::to_string() const
109{
110 std::ostringstream s;
111 s << "nat-static:["
Neale Ranns041fa502017-12-20 08:49:51 -0800112 << "table:" << m_rd->to_string() << " inside:" << m_inside.to_string()
113 << " outside:" << m_outside.to_string() << "]";
Neale Ranns812ed392017-10-16 04:20:13 -0700114
115 return (s.str());
116}
117
118std::shared_ptr<nat_static>
119nat_static::find_or_add(const nat_static& temp)
120{
Neale Ranns041fa502017-12-20 08:49:51 -0800121 return (m_db.find_or_add(temp.key(), temp));
122}
123
124std::shared_ptr<nat_static>
125nat_static::find(const key_t& key)
126{
127 return (m_db.find(key));
Neale Ranns812ed392017-10-16 04:20:13 -0700128}
129
130std::shared_ptr<nat_static>
131nat_static::singular() const
132{
133 return find_or_add(*this);
134}
135
136void
137nat_static::dump(std::ostream& os)
138{
139 m_db.dump(os);
140}
141
142std::ostream&
143operator<<(std::ostream& os, const nat_static::key_t& key)
144{
145 os << "[" << key.first << ", " << key.second << "]";
146
147 return (os);
148}
149
150nat_static::event_handler::event_handler()
151{
152 OM::register_listener(this);
153 inspect::register_handler({ "nat-static" }, "NAT Statics", this);
154}
155
156void
157nat_static::event_handler::handle_replay()
158{
159 m_db.replay();
160}
161
Neale Ranns812ed392017-10-16 04:20:13 -0700162void
163nat_static::event_handler::handle_populate(const client_db::key_t& key)
164{
Neale Ranns041fa502017-12-20 08:49:51 -0800165 /*
166 * dump VPP current states
167 */
168 std::shared_ptr<nat_static_cmds::dump_44_cmd> cmd =
169 std::make_shared<nat_static_cmds::dump_44_cmd>();
Neale Ranns812ed392017-10-16 04:20:13 -0700170
Neale Ranns041fa502017-12-20 08:49:51 -0800171 HW::enqueue(cmd);
172 HW::write();
Neale Ranns812ed392017-10-16 04:20:13 -0700173
Neale Ranns041fa502017-12-20 08:49:51 -0800174 for (auto& record : *cmd) {
175
176 auto& payload = record.get_payload();
177
178 boost::asio::ip::address inside = from_bytes(0, payload.local_ip_address);
179 boost::asio::ip::address outside =
180 from_bytes(0, payload.external_ip_address);
181 nat_static n(route_domain(payload.vrf_id), inside, outside.to_v4());
182
183 /*
184 * Write each of the discovered mappings into the OM,
185 * but disable the HW Command q whilst we do, so that no
186 * commands are sent to VPP
187 */
188 OM::commit(key, n);
189 }
Neale Ranns812ed392017-10-16 04:20:13 -0700190}
191
192dependency_t
193nat_static::event_handler::order() const
194{
195 return (dependency_t::ENTRY);
196}
197
198void
199nat_static::event_handler::show(std::ostream& os)
200{
201 m_db.dump(os);
202}
203}
204
205/*
206 * fd.io coding-style-patch-verification: ON
207 *
208 * Local Variables:
209 * eval: (c-set-style "mozilla")
210 * End:
211 */