vom: fix interface admin up/down
[vpp.git] / extras / vom / vom / interface_factory.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 <boost/algorithm/string.hpp>
17
18 #include "vom/bond_interface.hpp"
19 #include "vom/bond_member.hpp"
20 #include "vom/interface_factory.hpp"
21 #include "vom/sub_interface.hpp"
22 #include "vom/tap_interface.hpp"
23
24 namespace VOM {
25 std::shared_ptr<interface>
26 interface_factory::new_interface(const vapi_payload_sw_interface_details& vd)
27 {
28   std::shared_ptr<interface> sp;
29
30   /**
31    * Determine the interface type from the name and VLAN attributes
32    */
33   std::string name = reinterpret_cast<const char*>(vd.interface_name);
34   interface::type_t type = interface::type_t::from_string(name);
35   interface::admin_state_t state =
36     interface::admin_state_t::from_int(vd.admin_up_down);
37   handle_t hdl(vd.sw_if_index);
38   l2_address_t l2_address(vd.l2_address, vd.l2_address_length);
39   std::string tag = "";
40
41   if (interface::type_t::AFPACKET == type) {
42     /*
43      * need to strip VPP's "host-" prefix from the interface name
44      */
45     name = name.substr(5);
46   }
47   /**
48    * if the tag is set, then we wrote that to specify a name to make
49    * the interface type more specific
50    */
51   if (vd.tag[0] != 0) {
52     tag = std::string(reinterpret_cast<const char*>(vd.tag));
53   }
54
55   if (!tag.empty() && interface::type_t::LOOPBACK == type) {
56     name = tag;
57     type = interface::type_t::from_string(name);
58   }
59
60   /*
61    * pull out the other special cases
62    */
63   if (interface::type_t::TAP == type) {
64     /*
65      * TAP interface
66      */
67     sp = tap_interface(name, state, route::prefix_t()).singular();
68     if (sp && !tag.empty())
69       sp->set(tag);
70   } else if ((name.find(".") != std::string::npos) && (0 != vd.sub_id)) {
71     /*
72      * Sub-interface
73      *   split the name into the parent and VLAN
74      */
75     std::vector<std::string> parts;
76     boost::split(parts, name, boost::is_any_of("."));
77
78     interface parent(parts[0], type, state, tag);
79     sp = sub_interface(parent, state, vd.sub_id).singular();
80   } else if (interface::type_t::VXLAN == type) {
81     /*
82      * there's not enough information in a SW interface record to
83      * construct a VXLAN tunnel. so skip it. They have
84      * their own dump routines
85      */
86   } else if (interface::type_t::VHOST == type) {
87     /*
88      * vhost interface already exist in db, look for it using
89      * sw_if_index
90      */
91     sp = interface::find(hdl);
92     if (sp) {
93       sp->set(state);
94       sp->set(l2_address);
95       if (!tag.empty())
96         sp->set(tag);
97     }
98   } else if (interface::type_t::BOND == type) {
99     sp = bond_interface(name, state, l2_address,
100                         bond_interface::mode_t::UNSPECIFIED)
101            .singular();
102   } else {
103     sp = interface(name, type, state, tag).singular();
104     sp->set(l2_address);
105   }
106
107   /*
108    * set the handle on the intterface - N.B. this is the sigluar instance
109    * not a stack local.
110    */
111   if (sp)
112     sp->set(hdl);
113
114   return (sp);
115 }
116
117 std::shared_ptr<interface>
118 interface_factory::new_vhost_user_interface(
119   const vapi_payload_sw_interface_vhost_user_details& vd)
120 {
121   std::shared_ptr<interface> sp;
122   std::string name = reinterpret_cast<const char*>(vd.sock_filename);
123   interface::type_t type = interface::type_t::from_string(name);
124   handle_t hdl(vd.sw_if_index);
125
126   sp = interface(name, type, interface::admin_state_t::DOWN).singular();
127   sp->set(hdl);
128   return (sp);
129 }
130
131 std::shared_ptr<bond_interface>
132 interface_factory::new_bond_interface(
133   const vapi_payload_sw_interface_bond_details& vd)
134 {
135   std::shared_ptr<bond_interface> sp;
136   std::string name = reinterpret_cast<const char*>(vd.interface_name);
137   handle_t hdl(vd.sw_if_index);
138   bond_interface::mode_t mode =
139     bond_interface::mode_t::from_numeric_val(vd.mode);
140   bond_interface::lb_t lb = bond_interface::lb_t::from_numeric_val(vd.lb);
141   sp = bond_interface::find(hdl);
142   if (sp) {
143     sp->set(mode);
144     sp->set(lb);
145   }
146   return (sp);
147 }
148
149 bond_member
150 interface_factory::new_bond_member_interface(
151   const vapi_payload_sw_interface_slave_details& vd)
152 {
153   std::shared_ptr<bond_member> sp;
154   std::string name = reinterpret_cast<const char*>(vd.interface_name);
155   handle_t hdl(vd.sw_if_index);
156   bond_member::mode_t mode =
157     bond_member::mode_t::from_numeric_val(vd.is_passive);
158   bond_member::rate_t rate =
159     bond_member::rate_t::from_numeric_val(vd.is_long_timeout);
160   std::shared_ptr<interface> itf = interface::find(hdl);
161   bond_member bm(*itf, mode, rate);
162   return (bm);
163 }
164 }; // namespace VOM
165
166 /*
167  * fd.io coding-style-patch-verification: ON
168  *
169  * Local Variables:
170  * eval: (c-set-style "mozilla")
171  * End:
172  */