L2 BD API to flush all IP-MAC entries in the specified BD
[vpp.git] / extras / vom / vom / route_cmds.cpp
1 /*
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 <sstream>
17
18 #include "vom/route_cmds.hpp"
19
20 namespace VOM {
21 namespace route {
22 namespace ip_route_cmds {
23
24 static void
25 to_vpp(const route::path& p, vapi_payload_ip_add_del_route& payload)
26 {
27   payload.is_drop = 0;
28   payload.is_unreach = 0;
29   payload.is_prohibit = 0;
30   payload.is_local = 0;
31   payload.is_classify = 0;
32   payload.is_multipath = 0;
33   payload.is_resolve_host = 0;
34   payload.is_resolve_attached = 0;
35
36   if (route::path::flags_t::DVR & p.flags()) {
37     payload.is_dvr = 1;
38   }
39
40   if (route::path::special_t::STANDARD == p.type()) {
41     uint8_t path_v6;
42     to_bytes(p.nh(), &path_v6, payload.next_hop_address);
43
44     if (p.rd()) {
45       payload.next_hop_table_id = p.rd()->table_id();
46     }
47     if (p.itf()) {
48       payload.next_hop_sw_if_index = p.itf()->handle().value();
49     }
50   } else if (route::path::special_t::DROP == p.type()) {
51     payload.is_drop = 1;
52   } else if (route::path::special_t::UNREACH == p.type()) {
53     payload.is_unreach = 1;
54   } else if (route::path::special_t::PROHIBIT == p.type()) {
55     payload.is_prohibit = 1;
56   } else if (route::path::special_t::LOCAL == p.type()) {
57     payload.is_local = 1;
58   }
59   payload.next_hop_weight = p.weight();
60   payload.next_hop_preference = p.preference();
61   payload.next_hop_via_label = 0;
62   payload.classify_table_index = 0;
63 }
64
65 update_cmd::update_cmd(HW::item<bool>& item,
66                        table_id_t id,
67                        const prefix_t& prefix,
68                        const path_list_t& paths)
69   : rpc_cmd(item)
70   , m_id(id)
71   , m_prefix(prefix)
72   , m_paths(paths)
73 {
74   // no multipath yet.
75   assert(paths.size() == 1);
76 }
77
78 bool
79 update_cmd::operator==(const update_cmd& other) const
80 {
81   return ((m_prefix == other.m_prefix) && (m_id == other.m_id));
82 }
83
84 rc_t
85 update_cmd::issue(connection& con)
86 {
87   msg_t req(con.ctx(), 0, std::ref(*this));
88
89   auto& payload = req.get_request().get_payload();
90
91   payload.table_id = m_id;
92   payload.is_add = 1;
93   payload.is_multipath = 0;
94
95   m_prefix.to_vpp(&payload.is_ipv6, payload.dst_address,
96                   &payload.dst_address_length);
97
98   for (auto& p : m_paths)
99     to_vpp(p, payload);
100
101   VAPI_CALL(req.execute());
102
103   return (wait());
104 }
105
106 std::string
107 update_cmd::to_string() const
108 {
109   std::ostringstream s;
110   s << "ip-route-create: " << m_hw_item.to_string() << " table-id:" << m_id
111     << " prefix:" << m_prefix.to_string() << " paths:" << m_paths;
112
113   return (s.str());
114 }
115
116 delete_cmd::delete_cmd(HW::item<bool>& item,
117                        table_id_t id,
118                        const prefix_t& prefix)
119   : rpc_cmd(item)
120   , m_id(id)
121   , m_prefix(prefix)
122 {
123 }
124
125 bool
126 delete_cmd::operator==(const delete_cmd& other) const
127 {
128   return ((m_prefix == other.m_prefix) && (m_id == other.m_id));
129 }
130
131 rc_t
132 delete_cmd::issue(connection& con)
133 {
134   msg_t req(con.ctx(), 0, std::ref(*this));
135
136   auto& payload = req.get_request().get_payload();
137   payload.table_id = m_id;
138   payload.is_add = 0;
139
140   m_prefix.to_vpp(&payload.is_ipv6, payload.dst_address,
141                   &payload.dst_address_length);
142
143   VAPI_CALL(req.execute());
144
145   wait();
146   m_hw_item.set(rc_t::NOOP);
147
148   return rc_t::OK;
149 }
150
151 std::string
152 delete_cmd::to_string() const
153 {
154   std::ostringstream s;
155   s << "ip-route-delete: " << m_hw_item.to_string() << " id:" << m_id
156     << " prefix:" << m_prefix.to_string();
157
158   return (s.str());
159 }
160
161 dump_v4_cmd::dump_v4_cmd()
162 {
163 }
164
165 bool
166 dump_v4_cmd::operator==(const dump_v4_cmd& other) const
167 {
168   return (true);
169 }
170
171 rc_t
172 dump_v4_cmd::issue(connection& con)
173 {
174   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
175
176   VAPI_CALL(m_dump->execute());
177
178   wait();
179
180   return rc_t::OK;
181 }
182
183 std::string
184 dump_v4_cmd::to_string() const
185 {
186   return ("ip-route-v4-dump");
187 }
188
189 dump_v6_cmd::dump_v6_cmd()
190 {
191 }
192
193 bool
194 dump_v6_cmd::operator==(const dump_v6_cmd& other) const
195 {
196   return (true);
197 }
198
199 rc_t
200 dump_v6_cmd::issue(connection& con)
201 {
202   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
203
204   VAPI_CALL(m_dump->execute());
205
206   wait();
207
208   return rc_t::OK;
209 }
210
211 std::string
212 dump_v6_cmd::to_string() const
213 {
214   return ("ip-route-v6-dump");
215 }
216 } // namespace ip_route_cmds
217 } // namespace route
218 } // namespace vom
219   /*
220    * fd.io coding-style-patch-verification: ON
221    *
222    * Local Variables:
223    * eval: (c-set-style "mozilla")
224    * End:
225    */