GBP: add allowed ethertypes to contracts
[vpp.git] / extras / vom / vom / vxlan_gbp_tunnel_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 "vom/vxlan_gbp_tunnel_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 DEFINE_VAPI_MSG_IDS_VXLAN_GBP_API_JSON;
20
21 namespace VOM {
22 namespace vxlan_gbp_tunnel_cmds {
23
24 create_cmd::create_cmd(HW::item<handle_t>& item,
25                        const std::string& name,
26                        const vxlan_tunnel::endpoint_t& ep,
27                        handle_t mcast_itf)
28   : interface::create_cmd<vapi::Vxlan_gbp_tunnel_add_del>(item, name)
29   , m_ep(ep)
30   , m_mcast_itf(mcast_itf)
31 {
32 }
33
34 bool
35 create_cmd::operator==(const create_cmd& other) const
36 {
37   return (m_ep == other.m_ep);
38 }
39
40 rc_t
41 create_cmd::issue(connection& con)
42 {
43   msg_t req(con.ctx(), std::ref(*this));
44
45   auto& payload = req.get_request().get_payload();
46
47   payload.is_add = 1;
48
49   to_api(m_ep.src, payload.tunnel.src);
50   to_api(m_ep.dst, payload.tunnel.dst);
51   payload.tunnel.mcast_sw_if_index = m_mcast_itf.value();
52   payload.tunnel.encap_table_id = 0;
53   payload.tunnel.vni = m_ep.vni;
54   payload.tunnel.instance = ~0;
55
56   VAPI_CALL(req.execute());
57
58   wait();
59
60   if (rc_t::OK == m_hw_item.rc()) {
61     insert_interface();
62   }
63
64   return rc_t::OK;
65 }
66
67 std::string
68 create_cmd::to_string() const
69 {
70   std::ostringstream s;
71   s << "vxlan-gbp-tunnel-create: " << m_hw_item.to_string() << " "
72     << m_ep.to_string();
73
74   return (s.str());
75 }
76
77 delete_cmd::delete_cmd(HW::item<handle_t>& item,
78                        const vxlan_tunnel::endpoint_t& ep)
79   : interface::delete_cmd<vapi::Vxlan_gbp_tunnel_add_del>(item)
80   , m_ep(ep)
81 {
82 }
83
84 bool
85 delete_cmd::operator==(const delete_cmd& other) const
86 {
87   return (m_ep == other.m_ep);
88 }
89
90 rc_t
91 delete_cmd::issue(connection& con)
92 {
93   msg_t req(con.ctx(), std::ref(*this));
94
95   auto payload = req.get_request().get_payload();
96
97   payload.is_add = 0;
98
99   to_api(m_ep.src, payload.tunnel.src);
100   to_api(m_ep.dst, payload.tunnel.dst);
101   payload.tunnel.mcast_sw_if_index = ~0;
102   payload.tunnel.encap_table_id = 0;
103   payload.tunnel.vni = m_ep.vni;
104
105   VAPI_CALL(req.execute());
106
107   wait();
108   m_hw_item.set(rc_t::NOOP);
109
110   remove_interface();
111   return (rc_t::OK);
112 }
113
114 std::string
115 delete_cmd::to_string() const
116 {
117   std::ostringstream s;
118   s << "vxlan-gbp-tunnel-delete: " << m_hw_item.to_string() << m_ep.to_string();
119
120   return (s.str());
121 }
122
123 dump_cmd::dump_cmd()
124 {
125 }
126
127 bool
128 dump_cmd::operator==(const dump_cmd& other) const
129 {
130   return (true);
131 }
132
133 rc_t
134 dump_cmd::issue(connection& con)
135 {
136   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
137
138   auto& payload = m_dump->get_request().get_payload();
139   payload.sw_if_index = ~0;
140
141   VAPI_CALL(m_dump->execute());
142
143   wait();
144
145   return rc_t::OK;
146 }
147
148 std::string
149 dump_cmd::to_string() const
150 {
151   return ("vxlan-gbp-tunnel-dump");
152 }
153 } // namespace vxlan_tunnel_cmds
154 } // namespace VOM
155
156 /*
157  * fd.io coding-style-patch-verification: ON
158  *
159  * Local Variables:
160  * eval: (c-set-style "mozilla")
161  * End:
162  */