VOM: support for pipes
[vpp.git] / extras / vom / vom / acl_ethertype_cmds.cpp
1 /*
2  * Copyright (c) 2018 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/acl_ethertype_cmds.hpp"
17
18 namespace VOM {
19 namespace ACL {
20 namespace acl_ethertype_cmds {
21
22 bind_cmd::bind_cmd(HW::item<bool>& item,
23                    const handle_t& itf,
24                    const acl_ethertype::ethertype_rules_t& le)
25   : rpc_cmd(item)
26   , m_itf(itf)
27   , m_le(le)
28 {
29 }
30
31 bool
32 bind_cmd::operator==(const bind_cmd& other) const
33 {
34   return (m_itf == other.m_itf && m_le == other.m_le);
35 }
36
37 rc_t
38 bind_cmd::issue(connection& con)
39 {
40   msg_t req(con.ctx(), m_le.size(), std::ref(*this));
41   uint32_t i = 0;
42   uint8_t n_input = 0;
43
44   auto& payload = req.get_request().get_payload();
45   payload.sw_if_index = m_itf.value();
46   payload.count = m_le.size();
47
48   auto it = m_le.cbegin();
49   while (it != m_le.cend()) {
50     payload.whitelist[i] = it->getEthertype();
51     if (it->getDirection() == direction_t::INPUT)
52       n_input++;
53     ++it;
54     ++i;
55   }
56
57   payload.n_input = n_input;
58
59   VAPI_CALL(req.execute());
60
61   return (wait());
62 }
63
64 std::string
65 bind_cmd::to_string() const
66 {
67   std::ostringstream s;
68   s << "ACL-Ethertype: " << m_hw_item.to_string()
69     << " itf:" << m_itf.to_string() << " ethertype-rules:";
70   auto it = m_le.cbegin();
71   while (it != m_le.cend()) {
72     s << it->to_string();
73     ++it;
74   }
75
76   s << " rules-size:" << m_le.size();
77
78   return (s.str());
79 }
80
81 unbind_cmd::unbind_cmd(HW::item<bool>& item, const handle_t& itf)
82   : rpc_cmd(item)
83   , m_itf(itf)
84 {
85 }
86
87 bool
88 unbind_cmd::operator==(const unbind_cmd& other) const
89 {
90   return (m_itf == other.m_itf);
91 }
92
93 rc_t
94 unbind_cmd::issue(connection& con)
95 {
96   msg_t req(con.ctx(), 0, std::ref(*this));
97
98   auto& payload = req.get_request().get_payload();
99   payload.sw_if_index = m_itf.value();
100   payload.count = 0;
101
102   payload.n_input = 0;
103
104   VAPI_CALL(req.execute());
105
106   wait();
107   m_hw_item.set(rc_t::NOOP);
108
109   return rc_t::OK;
110 }
111
112 std::string
113 unbind_cmd::to_string() const
114 {
115   std::ostringstream s;
116   s << "ACL-Ethertype-Unbind: " << m_hw_item.to_string()
117     << " itf:" << m_itf.to_string();
118   return (s.str());
119 }
120
121 dump_cmd::dump_cmd(const handle_t& hdl)
122   : m_itf(hdl)
123 {
124 }
125
126 dump_cmd::dump_cmd(const dump_cmd& d)
127   : m_itf(d.m_itf)
128 {
129 }
130
131 bool
132 dump_cmd::operator==(const dump_cmd& other) const
133 {
134   return (true);
135 }
136
137 rc_t
138 dump_cmd::issue(connection& con)
139 {
140   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
141
142   auto& payload = m_dump->get_request().get_payload();
143   payload.sw_if_index = m_itf.value();
144
145   VAPI_CALL(m_dump->execute());
146
147   wait();
148
149   return rc_t::OK;
150 }
151
152 std::string
153 dump_cmd::to_string() const
154 {
155   return ("acl-ethertype-dump");
156 }
157 }; // namespace acl_ethertype_cmds
158 }; // namespace ACL
159 }; // namespace VOM
160
161 /*
162  * fd.io coding-style-patch-verification: ON
163  *
164  * Local Variables:
165  * eval: (c-set-style "mozilla")
166  * End:
167  */