gbp: Add bd flags
[vpp.git] / extras / vom / vom / gbp_bridge_domain_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_bridge_domain_cmds.hpp"
17
18 namespace VOM {
19 namespace gbp_bridge_domain_cmds {
20
21 create_cmd::create_cmd(HW::item<uint32_t>& item,
22                        const handle_t bvi,
23                        const handle_t uu_fwd,
24                        const handle_t bm_flood,
25                        const gbp_bridge_domain::flags_t& flags)
26   : rpc_cmd(item)
27   , m_bvi(bvi)
28   , m_uu_fwd(uu_fwd)
29   , m_bm_flood(bm_flood)
30   , m_flags(flags)
31 {
32 }
33
34 bool
35 create_cmd::operator==(const create_cmd& other) const
36 {
37   return ((m_hw_item.data() == other.m_hw_item.data()) &&
38           (m_bvi == other.m_bvi) && (m_uu_fwd == other.m_uu_fwd) &&
39           (m_bm_flood == other.m_bm_flood) && (m_flags == other.m_flags));
40 }
41
42 rc_t
43 create_cmd::issue(connection& con)
44 {
45   msg_t req(con.ctx(), std::ref(*this));
46
47   auto& payload = req.get_request().get_payload();
48
49   payload.bd.bd_id = m_hw_item.data();
50   payload.bd.bvi_sw_if_index = m_bvi.value();
51   payload.bd.uu_fwd_sw_if_index = m_uu_fwd.value();
52   payload.bd.bm_flood_sw_if_index = m_bm_flood.value();
53
54   vapi_enum_gbp_bridge_domain_flags flags = GBP_BD_API_FLAG_NONE;
55   if (gbp_bridge_domain::flags_t::DO_NOT_LEARN & m_flags)
56     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
57       flags | GBP_BD_API_FLAG_DO_NOT_LEARN);
58   if (gbp_bridge_domain::flags_t::UU_FWD_DROP & m_flags)
59     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
60       flags | GBP_BD_API_FLAG_UU_FWD_DROP);
61   if (gbp_bridge_domain::flags_t::MCAST_DROP & m_flags)
62     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
63       flags | GBP_BD_API_FLAG_MCAST_DROP);
64   if (gbp_bridge_domain::flags_t::UCAST_ARP & m_flags)
65     flags = static_cast<vapi_enum_gbp_bridge_domain_flags>(
66       flags | GBP_BD_API_FLAG_UCAST_ARP);
67
68   payload.bd.flags = flags;
69   VAPI_CALL(req.execute());
70
71   return (wait());
72 }
73
74 std::string
75 create_cmd::to_string() const
76 {
77   std::ostringstream s;
78   s << "gbp-bridge-domain: " << m_hw_item.to_string()
79     << " flags:" << m_flags.to_string() << " bvi:" << m_bvi.to_string()
80     << " uu-fwd:" << m_uu_fwd.to_string();
81
82   return (s.str());
83 }
84
85 delete_cmd::delete_cmd(HW::item<uint32_t>& item)
86   : rpc_cmd(item)
87 {
88 }
89
90 bool
91 delete_cmd::operator==(const delete_cmd& other) const
92 {
93   return (m_hw_item.data() == other.m_hw_item.data());
94 }
95
96 rc_t
97 delete_cmd::issue(connection& con)
98 {
99   msg_t req(con.ctx(), std::ref(*this));
100
101   auto& payload = req.get_request().get_payload();
102
103   payload.bd_id = m_hw_item.data();
104
105   VAPI_CALL(req.execute());
106
107   wait();
108   m_hw_item.set(rc_t::NOOP);
109
110   return rc_t::OK;
111 }
112
113 std::string
114 delete_cmd::to_string() const
115 {
116   std::ostringstream s;
117   s << "gbp-bridge-domain: " << m_hw_item.to_string();
118
119   return (s.str());
120 }
121
122 bool
123 dump_cmd::operator==(const dump_cmd& other) const
124 {
125   return (true);
126 }
127
128 rc_t
129 dump_cmd::issue(connection& con)
130 {
131   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
132
133   VAPI_CALL(m_dump->execute());
134
135   wait();
136
137   return rc_t::OK;
138 }
139
140 std::string
141 dump_cmd::to_string() const
142 {
143   return ("gbp-bridge-domain-dump");
144 }
145
146 }; // namespace gbp_bridge_domain_cmds
147 }; // namespace VOM
148
149 /*
150  * fd.io coding-style-patch-verification: ON
151  *
152  * Local Variables:
153  * eval: (c-set-style "mozilla")
154  * End:
155  */