vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_contract_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/gbp_contract_cmds.hpp"
17 #include "vom/api_types.hpp"
18
19 namespace VOM {
20 namespace gbp_contract_cmds {
21
22 create_cmd::create_cmd(HW::item<uint32_t>& item,
23                        scope_t scope,
24                        sclass_t sclass,
25                        sclass_t dclass,
26                        const handle_t& acl,
27                        const gbp_contract::gbp_rules_t& gbp_rules,
28                        const gbp_contract::ethertype_set_t& allowed_ethertypes)
29   : rpc_cmd(item)
30   , m_scope(scope)
31   , m_sclass(sclass)
32   , m_dclass(dclass)
33   , m_acl(acl)
34   , m_gbp_rules(gbp_rules)
35   , m_allowed_ethertypes(allowed_ethertypes)
36 {
37 }
38
39 bool
40 create_cmd::operator==(const create_cmd& other) const
41 {
42   return ((m_acl == other.m_acl) && (m_sclass == other.m_sclass) &&
43           (m_scope == other.m_scope) && (m_dclass == other.m_dclass) &&
44           (m_gbp_rules == other.m_gbp_rules) &&
45           (m_allowed_ethertypes == other.m_allowed_ethertypes));
46 }
47
48 #define ARRAY_LEN(x) (sizeof(x) / sizeof(x[0]))
49
50 rc_t
51 create_cmd::issue(connection& con)
52 {
53   size_t n_rules = m_gbp_rules.size();
54   uint32_t ii = 0;
55
56   msg_t req(con.ctx(), n_rules, std::ref(*this));
57
58   auto& payload = req.get_request().get_payload();
59   payload.is_add = 1;
60   payload.contract.acl_index = m_acl.value();
61   payload.contract.scope = m_scope;
62   payload.contract.sclass = m_sclass;
63   payload.contract.dclass = m_dclass;
64   payload.contract.n_rules = n_rules;
65   payload.contract.n_ether_types = m_allowed_ethertypes.size();
66
67   for (auto tt : m_allowed_ethertypes) {
68     payload.contract.allowed_ethertypes[ii] = tt.value();
69     ii++;
70     if (ii == ARRAY_LEN(payload.contract.allowed_ethertypes))
71       break;
72   }
73
74   ii = 0;
75   for (auto rule : m_gbp_rules) {
76     if (rule.action() == gbp_rule::action_t::REDIRECT)
77       payload.contract.rules[ii].action = GBP_API_RULE_REDIRECT;
78     else if (rule.action() == gbp_rule::action_t::PERMIT)
79       payload.contract.rules[ii].action = GBP_API_RULE_PERMIT;
80     else
81       payload.contract.rules[ii].action = GBP_API_RULE_DENY;
82
83     if (rule.nhs().hash_mode() == gbp_rule::hash_mode_t::SYMMETRIC)
84       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_SYMMETRIC;
85     else if (rule.nhs().hash_mode() == gbp_rule::hash_mode_t::SRC_IP)
86       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_SRC_IP;
87     else
88       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_DST_IP;
89
90     const gbp_rule::next_hops_t& next_hops = rule.nhs().next_hops();
91     uint8_t jj = 0, nh_size = (next_hops.size() > 8) ? 8 : next_hops.size();
92
93     payload.contract.rules[ii].nh_set.n_nhs = nh_size;
94     for (auto nh : next_hops) {
95       to_api(nh.getIp(), payload.contract.rules[ii].nh_set.nhs[jj].ip);
96       to_api(nh.getMac(), payload.contract.rules[ii].nh_set.nhs[jj].mac);
97       payload.contract.rules[ii].nh_set.nhs[jj].bd_id = nh.getBdId();
98       payload.contract.rules[ii].nh_set.nhs[jj].rd_id = nh.getRdId();
99       jj++;
100     }
101     ++ii;
102   }
103
104   VAPI_CALL(req.execute());
105
106   return (wait());
107 }
108
109 std::string
110 create_cmd::to_string() const
111 {
112   std::ostringstream s;
113   s << "gbp-contract-create: " << m_hw_item.to_string()
114     << " sclass:" << m_sclass << " dclass:" << m_dclass << " acl:" << m_acl;
115   s << "[ethertype:";
116   for (auto e : m_allowed_ethertypes)
117     s << " " << e;
118   s << "]";
119
120   return (s.str());
121 }
122
123 delete_cmd::delete_cmd(HW::item<uint32_t>& item,
124                        scope_t scope,
125                        sclass_t sclass,
126                        sclass_t dclass)
127   : rpc_cmd(item)
128   , m_scope(scope)
129   , m_sclass(sclass)
130   , m_dclass(dclass)
131 {
132 }
133
134 bool
135 delete_cmd::operator==(const delete_cmd& other) const
136 {
137   return ((m_sclass == other.m_sclass) && (m_dclass == other.m_dclass));
138 }
139
140 rc_t
141 delete_cmd::issue(connection& con)
142 {
143   msg_t req(con.ctx(), 0, std::ref(*this));
144
145   auto& payload = req.get_request().get_payload();
146   payload.is_add = 0;
147   payload.contract.acl_index = ~0;
148   payload.contract.scope = m_scope;
149   payload.contract.sclass = m_sclass;
150   payload.contract.dclass = m_dclass;
151
152   VAPI_CALL(req.execute());
153
154   return (wait());
155 }
156
157 std::string
158 delete_cmd::to_string() const
159 {
160   std::ostringstream s;
161   s << "gbp-contract-delete: " << m_hw_item.to_string() << " scope: " << m_scope
162     << " sclass:" << m_sclass << " dclass:" << m_dclass;
163
164   return (s.str());
165 }
166
167 bool
168 dump_cmd::operator==(const dump_cmd& other) const
169 {
170   return (true);
171 }
172
173 rc_t
174 dump_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_cmd::to_string() const
187 {
188   return ("gbp-contract-dump");
189 }
190
191 }; // namespace gbp_contract_cmds
192 }; // namespace VOM
193
194 /*
195  * fd.io coding-style-patch-verification: ON
196  *
197  * Local Variables:
198  * eval: (c-set-style "mozilla")
199  * End:
200  */