VOM: GBP show allowed ethertypes in contracts
[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<bool>& item,
23                        epg_id_t src_epg_id,
24                        epg_id_t dst_epg_id,
25                        const handle_t& acl,
26                        const gbp_contract::gbp_rules_t& gbp_rules,
27                        const gbp_contract::ethertype_set_t& allowed_ethertypes)
28   : rpc_cmd(item)
29   , m_src_epg_id(src_epg_id)
30   , m_dst_epg_id(dst_epg_id)
31   , m_acl(acl)
32   , m_gbp_rules(gbp_rules)
33   , m_allowed_ethertypes(allowed_ethertypes)
34 {
35 }
36
37 bool
38 create_cmd::operator==(const create_cmd& other) const
39 {
40   return ((m_acl == other.m_acl) && (m_src_epg_id == other.m_src_epg_id) &&
41           (m_dst_epg_id == other.m_dst_epg_id) &&
42           (m_gbp_rules == other.m_gbp_rules) &&
43           (m_allowed_ethertypes == other.m_allowed_ethertypes));
44 }
45
46 rc_t
47 create_cmd::issue(connection& con)
48 {
49   size_t n_rules = m_gbp_rules.size();
50   size_t n_et_rules = 0;
51
52   msg_t req(con.ctx(), n_rules, n_et_rules, std::ref(*this));
53
54   auto& payload = req.get_request().get_payload();
55   payload.is_add = 1;
56   payload.contract.acl_index = m_acl.value();
57   payload.contract.src_epg = m_src_epg_id;
58   payload.contract.dst_epg = m_dst_epg_id;
59
60   uint32_t ii = 0;
61   payload.contract.n_rules = n_rules;
62
63   for (auto rule : m_gbp_rules) {
64     if (rule.action() == gbp_rule::action_t::REDIRECT)
65       payload.contract.rules[ii].action = GBP_API_RULE_REDIRECT;
66     else if (rule.action() == gbp_rule::action_t::PERMIT)
67       payload.contract.rules[ii].action = GBP_API_RULE_PERMIT;
68     else
69       payload.contract.rules[ii].action = GBP_API_RULE_DENY;
70
71     if (rule.nhs().hash_mode() == gbp_rule::hash_mode_t::SYMMETRIC)
72       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_SYMMETRIC;
73     else if (rule.nhs().hash_mode() == gbp_rule::hash_mode_t::SRC_IP)
74       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_SRC_IP;
75     else
76       payload.contract.rules[ii].nh_set.hash_mode = GBP_API_HASH_MODE_DST_IP;
77
78     const gbp_rule::next_hops_t& next_hops = rule.nhs().next_hops();
79     uint8_t jj = 0, nh_size = (next_hops.size() > 8) ? 8 : next_hops.size();
80
81     payload.contract.rules[ii].nh_set.n_nhs = nh_size;
82     for (auto nh : next_hops) {
83       to_api(nh.getIp(), payload.contract.rules[ii].nh_set.nhs[jj].ip);
84       to_api(nh.getMac(), payload.contract.rules[ii].nh_set.nhs[jj].mac);
85       payload.contract.rules[ii].nh_set.nhs[jj].bd_id = nh.getBdId();
86       payload.contract.rules[ii].nh_set.nhs[jj].rd_id = nh.getRdId();
87       jj++;
88     }
89     ++ii;
90   }
91
92   u8* data;
93   u16* et;
94
95   data = (((u8*)&payload.contract.n_ether_types) +
96           (sizeof(payload.contract.rules[0]) * payload.contract.n_rules));
97   *data = m_allowed_ethertypes.size();
98   et = (u16*)(++data);
99   ii = 0;
100   for (auto tt : m_allowed_ethertypes) {
101     et[ii] = tt.value();
102     ii++;
103   }
104
105   VAPI_CALL(req.execute());
106
107   return (wait());
108 }
109
110 std::string
111 create_cmd::to_string() const
112 {
113   std::ostringstream s;
114   s << "gbp-contract-create: " << m_hw_item.to_string()
115     << " src-epg-id:" << m_src_epg_id << " dst-epg-id:" << m_dst_epg_id
116     << " acl:" << m_acl;
117   s << "[ethertype:";
118   for (auto e : m_allowed_ethertypes)
119     s << " " << e;
120   s << "]";
121
122   return (s.str());
123 }
124
125 delete_cmd::delete_cmd(HW::item<bool>& item,
126                        epg_id_t src_epg_id,
127                        epg_id_t dst_epg_id)
128   : rpc_cmd(item)
129   , m_src_epg_id(src_epg_id)
130   , m_dst_epg_id(dst_epg_id)
131 {
132 }
133
134 bool
135 delete_cmd::operator==(const delete_cmd& other) const
136 {
137   return ((m_src_epg_id == other.m_src_epg_id) &&
138           (m_dst_epg_id == other.m_dst_epg_id));
139 }
140
141 rc_t
142 delete_cmd::issue(connection& con)
143 {
144   msg_t req(con.ctx(), 0, 0, std::ref(*this));
145
146   auto& payload = req.get_request().get_payload();
147   payload.is_add = 0;
148   payload.contract.acl_index = ~0;
149   payload.contract.src_epg = m_src_epg_id;
150   payload.contract.dst_epg = m_dst_epg_id;
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()
162     << " src-epg-id:" << m_src_epg_id << " dst-epg-id:" << m_dst_epg_id;
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  */