DVR: run L3 output features
[vpp.git] / src / vpp-api / 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   m_hw_item.set(wait());
104
105   return rc_t::OK;
106 }
107
108 std::string
109 update_cmd::to_string() const
110 {
111   std::ostringstream s;
112   s << "ip-route-create: " << m_hw_item.to_string() << " table-id:" << m_id
113     << " prefix:" << m_prefix.to_string() << " paths:" << m_paths;
114
115   return (s.str());
116 }
117
118 delete_cmd::delete_cmd(HW::item<bool>& item,
119                        table_id_t id,
120                        const prefix_t& prefix)
121   : rpc_cmd(item)
122   , m_id(id)
123   , m_prefix(prefix)
124 {
125 }
126
127 bool
128 delete_cmd::operator==(const delete_cmd& other) const
129 {
130   return ((m_prefix == other.m_prefix) && (m_id == other.m_id));
131 }
132
133 rc_t
134 delete_cmd::issue(connection& con)
135 {
136   msg_t req(con.ctx(), 0, std::ref(*this));
137
138   auto& payload = req.get_request().get_payload();
139   payload.table_id = m_id;
140   payload.is_add = 0;
141
142   m_prefix.to_vpp(&payload.is_ipv6, payload.dst_address,
143                   &payload.dst_address_length);
144
145   VAPI_CALL(req.execute());
146
147   wait();
148   m_hw_item.set(rc_t::NOOP);
149
150   return rc_t::OK;
151 }
152
153 std::string
154 delete_cmd::to_string() const
155 {
156   std::ostringstream s;
157   s << "ip-route-delete: " << m_hw_item.to_string() << " id:" << m_id
158     << " prefix:" << m_prefix.to_string();
159
160   return (s.str());
161 }
162
163 dump_v4_cmd::dump_v4_cmd()
164 {
165 }
166
167 bool
168 dump_v4_cmd::operator==(const dump_v4_cmd& other) const
169 {
170   return (true);
171 }
172
173 rc_t
174 dump_v4_cmd::issue(connection& con)
175 {
176   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
177
178   VAPI_CALL(m_dump->execute());
179
180   wait();
181
182   return rc_t::OK;
183 }
184
185 std::string
186 dump_v4_cmd::to_string() const
187 {
188   return ("ip-route-v4-dump");
189 }
190
191 dump_v6_cmd::dump_v6_cmd()
192 {
193 }
194
195 bool
196 dump_v6_cmd::operator==(const dump_v6_cmd& other) const
197 {
198   return (true);
199 }
200
201 rc_t
202 dump_v6_cmd::issue(connection& con)
203 {
204   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
205
206   VAPI_CALL(m_dump->execute());
207
208   wait();
209
210   return rc_t::OK;
211 }
212
213 std::string
214 dump_v6_cmd::to_string() const
215 {
216   return ("ip-route-v6-dump");
217 }
218 } // namespace ip_route_cmds
219 } // namespace route
220 } // namespace vom
221   /*
222    * fd.io coding-style-patch-verification: ON
223    *
224    * Local Variables:
225    * eval: (c-set-style "mozilla")
226    * End:
227    */