blob: 225b1cc6ef0b1f9c985b5bed52494ebbb120f4c3 [file] [log] [blame]
Tom Josephbe703f72017-03-09 12:34:35 +05301#include "utils.hpp"
2
Ratan Guptab8e99552017-07-27 07:07:48 +05303#include <arpa/inet.h>
4#include <dirent.h>
5#include <net/if.h>
6
Patrick Venture0b02be92018-08-31 11:55:55 -07007#include <phosphor-logging/elog-errors.hpp>
8#include <phosphor-logging/log.hpp>
9#include <xyz/openbmc_project/Common/error.hpp>
10
Tom Josephbe703f72017-03-09 12:34:35 +053011namespace ipmi
12{
13
Ratan Guptacc8feb42017-07-25 21:52:10 +053014using namespace phosphor::logging;
15using namespace sdbusplus::xyz::openbmc_project::Common::Error;
16
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -050017namespace network
18{
19
20/** @brief checks if the given ip is Link Local Ip or not.
Patrick Venture0b02be92018-08-31 11:55:55 -070021 * @param[in] ipaddress - IPAddress.
22 */
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -050023bool isLinkLocalIP(const std::string& ipaddress);
24
Patrick Venture0b02be92018-08-31 11:55:55 -070025} // namespace network
Ratan Guptacc8feb42017-07-25 21:52:10 +053026
Patrick Venture0b02be92018-08-31 11:55:55 -070027// TODO There may be cases where an interface is implemented by multiple
Ratan Guptacc8feb42017-07-25 21:52:10 +053028// objects,to handle such cases we are interested on that object
29// which are on interested busname.
30// Currently mapper doesn't give the readable busname(gives busid) so we can't
31// use busname to find the object,will do later once the support is there.
32
Ratan Gupta01d4bd12017-08-07 15:53:25 +053033DbusObjectInfo getDbusObject(sdbusplus::bus::bus& bus,
34 const std::string& interface,
Ratan Guptacc8feb42017-07-25 21:52:10 +053035 const std::string& serviceRoot,
36 const std::string& match)
37{
38 std::vector<DbusInterface> interfaces;
39 interfaces.emplace_back(interface);
40
Ratan Guptacc8feb42017-07-25 21:52:10 +053041 auto depth = 0;
42
Patrick Venture0b02be92018-08-31 11:55:55 -070043 auto mapperCall = bus.new_method_call(MAPPER_BUS_NAME, MAPPER_OBJ,
44 MAPPER_INTF, "GetSubTree");
Ratan Guptacc8feb42017-07-25 21:52:10 +053045
46 mapperCall.append(serviceRoot, depth, interfaces);
47
48 auto mapperReply = bus.call(mapperCall);
49 if (mapperReply.is_method_error())
50 {
51 log<level::ERR>("Error in mapper call");
52 elog<InternalFailure>();
53 }
54
55 ObjectTree objectTree;
56 mapperReply.read(objectTree);
57
58 if (objectTree.empty())
59 {
Patrick Venturef0c48782017-09-21 18:48:51 -070060 log<level::ERR>("No Object has implemented the interface",
Ratan Guptacc8feb42017-07-25 21:52:10 +053061 entry("INTERFACE=%s", interface.c_str()));
62 elog<InternalFailure>();
63 }
64
65 DbusObjectInfo objectInfo;
66
67 // if match is empty then return the first object
Patrick Venture0b02be92018-08-31 11:55:55 -070068 if (match == "")
Ratan Guptacc8feb42017-07-25 21:52:10 +053069 {
Patrick Venture0b02be92018-08-31 11:55:55 -070070 objectInfo = std::make_pair(
71 objectTree.begin()->first,
Ratan Guptacc8feb42017-07-25 21:52:10 +053072 std::move(objectTree.begin()->second.begin()->first));
73 return objectInfo;
74 }
75
76 // else search the match string in the object path
77 auto objectFound = false;
78 for (auto& object : objectTree)
79 {
Patrick Venture0b02be92018-08-31 11:55:55 -070080 if (object.first.find(match) != std::string::npos)
Ratan Guptacc8feb42017-07-25 21:52:10 +053081 {
82 objectFound = true;
83 objectInfo = make_pair(object.first,
Patrick Venture0b02be92018-08-31 11:55:55 -070084 std::move(object.second.begin()->first));
Ratan Guptacc8feb42017-07-25 21:52:10 +053085 break;
86 }
87 }
88
Patrick Venture0b02be92018-08-31 11:55:55 -070089 if (!objectFound)
Ratan Guptacc8feb42017-07-25 21:52:10 +053090 {
91 log<level::ERR>("Failed to find object which matches",
92 entry("MATCH=%s", match.c_str()));
93 elog<InternalFailure>();
94 }
95 return objectInfo;
Ratan Guptacc8feb42017-07-25 21:52:10 +053096}
97
Ratan Guptadd646202017-11-21 17:46:59 +053098DbusObjectInfo getIPObject(sdbusplus::bus::bus& bus,
99 const std::string& interface,
100 const std::string& serviceRoot,
101 const std::string& match)
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500102{
103 auto objectTree = getAllDbusObjects(bus, serviceRoot, interface, match);
104
105 if (objectTree.empty())
106 {
107 log<level::ERR>("No Object has implemented the IP interface",
108 entry("INTERFACE=%s", interface.c_str()));
109 elog<InternalFailure>();
110 }
111
Ratan Guptadd646202017-11-21 17:46:59 +0530112 DbusObjectInfo objectInfo;
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500113
114 for (auto& object : objectTree)
115 {
116 auto variant = ipmi::getDbusProperty(
Patrick Venture0b02be92018-08-31 11:55:55 -0700117 bus, object.second.begin()->first, object.first,
118 ipmi::network::IP_INTERFACE, "Address");
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500119
Patrick Venture0b02be92018-08-31 11:55:55 -0700120 objectInfo = std::make_pair(object.first, object.second.begin()->first);
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500121
122 // if LinkLocalIP found look for Non-LinkLocalIP
Ratan Guptadd646202017-11-21 17:46:59 +0530123 if (ipmi::network::isLinkLocalIP(variant.get<std::string>()))
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500124 {
125 continue;
126 }
127 else
128 {
129 break;
130 }
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500131 }
Ratan Guptadd646202017-11-21 17:46:59 +0530132 return objectInfo;
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500133}
134
Patrick Venture0b02be92018-08-31 11:55:55 -0700135Value getDbusProperty(sdbusplus::bus::bus& bus, const std::string& service,
136 const std::string& objPath, const std::string& interface,
Ratan Guptacc8feb42017-07-25 21:52:10 +0530137 const std::string& property)
138{
139
140 Value value;
141
Patrick Venture0b02be92018-08-31 11:55:55 -0700142 auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
143 PROP_INTF, METHOD_GET);
Ratan Guptacc8feb42017-07-25 21:52:10 +0530144
145 method.append(interface, property);
146
147 auto reply = bus.call(method);
148
149 if (reply.is_method_error())
150 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700151 log<level::ERR>("Failed to get property",
152 entry("PROPERTY=%s", property.c_str()),
153 entry("PATH=%s", objPath.c_str()),
154 entry("INTERFACE=%s", interface.c_str()));
Ratan Guptacc8feb42017-07-25 21:52:10 +0530155 elog<InternalFailure>();
156 }
157
158 reply.read(value);
159
160 return value;
161}
162
Ratan Gupta01d4bd12017-08-07 15:53:25 +0530163PropertyMap getAllDbusProperties(sdbusplus::bus::bus& bus,
164 const std::string& service,
Ratan Guptacc8feb42017-07-25 21:52:10 +0530165 const std::string& objPath,
166 const std::string& interface)
167{
168 PropertyMap properties;
Ratan Guptacc8feb42017-07-25 21:52:10 +0530169
Patrick Venture0b02be92018-08-31 11:55:55 -0700170 auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
171 PROP_INTF, METHOD_GET_ALL);
Ratan Guptacc8feb42017-07-25 21:52:10 +0530172
173 method.append(interface);
174
175 auto reply = bus.call(method);
176
177 if (reply.is_method_error())
178 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700179 log<level::ERR>("Failed to get all properties",
180 entry("PATH=%s", objPath.c_str()),
181 entry("INTERFACE=%s", interface.c_str()));
182 elog<InternalFailure>();
Ratan Guptacc8feb42017-07-25 21:52:10 +0530183 }
184
185 reply.read(properties);
186 return properties;
187}
188
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600189ObjectValueTree getManagedObjects(sdbusplus::bus::bus& bus,
Patrick Venture0b02be92018-08-31 11:55:55 -0700190 const std::string& service,
191 const std::string& objPath)
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600192{
193 ipmi::ObjectValueTree interfaces;
194
Patrick Venture0b02be92018-08-31 11:55:55 -0700195 auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
196 "org.freedesktop.DBus.ObjectManager",
197 "GetManagedObjects");
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600198
199 auto reply = bus.call(method);
200
201 if (reply.is_method_error())
202 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700203 log<level::ERR>("Failed to get managed objects",
204 entry("PATH=%s", objPath.c_str()));
205 elog<InternalFailure>();
Dhruvaraj Subhashchandran5c0beec2018-01-23 04:47:06 -0600206 }
207
208 reply.read(interfaces);
209 return interfaces;
210}
211
Patrick Venture0b02be92018-08-31 11:55:55 -0700212void setDbusProperty(sdbusplus::bus::bus& bus, const std::string& service,
213 const std::string& objPath, const std::string& interface,
214 const std::string& property, const Value& value)
Ratan Guptacc8feb42017-07-25 21:52:10 +0530215{
Patrick Venture0b02be92018-08-31 11:55:55 -0700216 auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
217 PROP_INTF, METHOD_SET);
Ratan Guptacc8feb42017-07-25 21:52:10 +0530218
219 method.append(interface, property, value);
220
221 if (!bus.call(method))
222 {
223 log<level::ERR>("Failed to set property",
224 entry("PROPERTY=%s", property.c_str()),
Patrick Venture0b02be92018-08-31 11:55:55 -0700225 entry("PATH=%s", objPath.c_str()),
226 entry("INTERFACE=%s", interface.c_str()));
Ratan Guptacc8feb42017-07-25 21:52:10 +0530227 elog<InternalFailure>();
228 }
Ratan Guptacc8feb42017-07-25 21:52:10 +0530229}
230
Patrick Venture0b02be92018-08-31 11:55:55 -0700231ServiceCache::ServiceCache(const std::string& intf, const std::string& path) :
232 intf(intf), path(path), cachedService(std::experimental::nullopt),
233 cachedBusName(std::experimental::nullopt)
William A. Kennington IIIe47fdfb2018-03-15 17:09:28 -0700234{
235}
236
Patrick Venture0b02be92018-08-31 11:55:55 -0700237ServiceCache::ServiceCache(std::string&& intf, std::string&& path) :
238 intf(std::move(intf)), path(std::move(path)),
239 cachedService(std::experimental::nullopt),
240 cachedBusName(std::experimental::nullopt)
William A. Kennington IIIe47fdfb2018-03-15 17:09:28 -0700241{
242}
243
244const std::string& ServiceCache::getService(sdbusplus::bus::bus& bus)
245{
246 if (!isValid(bus))
247 {
248 cachedBusName = bus.get_unique_name();
249 cachedService = ::ipmi::getService(bus, intf, path);
250 }
251 return cachedService.value();
252}
253
254void ServiceCache::invalidate()
255{
256 cachedBusName = std::experimental::nullopt;
257 cachedService = std::experimental::nullopt;
258}
259
Patrick Venture0b02be92018-08-31 11:55:55 -0700260sdbusplus::message::message
261 ServiceCache::newMethodCall(sdbusplus::bus::bus& bus, const char* intf,
262 const char* method)
William A. Kennington IIIe47fdfb2018-03-15 17:09:28 -0700263{
Patrick Venture0b02be92018-08-31 11:55:55 -0700264 return bus.new_method_call(getService(bus).c_str(), path.c_str(), intf,
265 method);
William A. Kennington IIIe47fdfb2018-03-15 17:09:28 -0700266}
267
268bool ServiceCache::isValid(sdbusplus::bus::bus& bus) const
269{
270 return cachedService && cachedBusName == bus.get_unique_name();
271}
272
Patrick Venture0b02be92018-08-31 11:55:55 -0700273std::string getService(sdbusplus::bus::bus& bus, const std::string& intf,
Tom Josephbe703f72017-03-09 12:34:35 +0530274 const std::string& path)
275{
Patrick Venture0b02be92018-08-31 11:55:55 -0700276 auto mapperCall =
277 bus.new_method_call("xyz.openbmc_project.ObjectMapper",
278 "/xyz/openbmc_project/object_mapper",
279 "xyz.openbmc_project.ObjectMapper", "GetObject");
Tom Josephbe703f72017-03-09 12:34:35 +0530280
281 mapperCall.append(path);
282 mapperCall.append(std::vector<std::string>({intf}));
283
284 auto mapperResponseMsg = bus.call(mapperCall);
285
286 if (mapperResponseMsg.is_method_error())
287 {
288 throw std::runtime_error("ERROR in mapper call");
289 }
290
291 std::map<std::string, std::vector<std::string>> mapperResponse;
292 mapperResponseMsg.read(mapperResponse);
293
294 if (mapperResponse.begin() == mapperResponse.end())
295 {
296 throw std::runtime_error("ERROR in reading the mapper response");
297 }
298
299 return mapperResponse.begin()->first;
300}
301
Ratan Guptab8e99552017-07-27 07:07:48 +0530302ipmi::ObjectTree getAllDbusObjects(sdbusplus::bus::bus& bus,
303 const std::string& serviceRoot,
304 const std::string& interface,
305 const std::string& match)
306{
307 std::vector<std::string> interfaces;
308 interfaces.emplace_back(interface);
Ratan Guptacc8feb42017-07-25 21:52:10 +0530309
Ratan Guptab8e99552017-07-27 07:07:48 +0530310 auto depth = 0;
311
Patrick Venture0b02be92018-08-31 11:55:55 -0700312 auto mapperCall = bus.new_method_call(MAPPER_BUS_NAME, MAPPER_OBJ,
313 MAPPER_INTF, "GetSubTree");
Ratan Guptab8e99552017-07-27 07:07:48 +0530314
315 mapperCall.append(serviceRoot, depth, interfaces);
316
317 auto mapperReply = bus.call(mapperCall);
318 if (mapperReply.is_method_error())
319 {
320 log<level::ERR>("Error in mapper call",
Patrick Venture0b02be92018-08-31 11:55:55 -0700321 entry("SERVICEROOT=%s", serviceRoot.c_str()),
Ratan Guptab8e99552017-07-27 07:07:48 +0530322 entry("INTERFACE=%s", interface.c_str()));
323
324 elog<InternalFailure>();
325 }
326
327 ObjectTree objectTree;
328 mapperReply.read(objectTree);
329
330 for (auto it = objectTree.begin(); it != objectTree.end();)
331 {
332 if (it->first.find(match) == std::string::npos)
333 {
334 it = objectTree.erase(it);
335 }
336 else
337 {
338 ++it;
339 }
340 }
341
342 return objectTree;
343}
344
345void deleteAllDbusObjects(sdbusplus::bus::bus& bus,
346 const std::string& serviceRoot,
347 const std::string& interface,
348 const std::string& match)
349{
350 try
351 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700352 auto objectTree = getAllDbusObjects(bus, serviceRoot, interface, match);
Ratan Guptab8e99552017-07-27 07:07:48 +0530353
354 for (auto& object : objectTree)
355 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700356 method_no_args::callDbusMethod(bus, object.second.begin()->first,
357 object.first, DELETE_INTERFACE,
358 "Delete");
Ratan Guptab8e99552017-07-27 07:07:48 +0530359 }
360 }
361 catch (InternalFailure& e)
362 {
363 log<level::INFO>("Unable to delete the objects having",
364 entry("INTERFACE=%s", interface.c_str()),
365 entry("SERVICE=%s", serviceRoot.c_str()));
366 }
367}
368
Patrick Venture0b02be92018-08-31 11:55:55 -0700369ObjectTree getAllAncestors(sdbusplus::bus::bus& bus, const std::string& path,
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530370 InterfaceList&& interfaces)
371{
Patrick Venture0b02be92018-08-31 11:55:55 -0700372 auto convertToString = [](InterfaceList& interfaces) -> std::string {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530373 std::string intfStr;
374 for (const auto& intf : interfaces)
375 {
376 intfStr += "," + intf;
377 }
378 return intfStr;
379 };
380
Patrick Venture0b02be92018-08-31 11:55:55 -0700381 auto mapperCall = bus.new_method_call(MAPPER_BUS_NAME, MAPPER_OBJ,
382 MAPPER_INTF, "GetAncestors");
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530383 mapperCall.append(path, interfaces);
384
385 auto mapperReply = bus.call(mapperCall);
386 if (mapperReply.is_method_error())
387 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700388 log<level::ERR>(
389 "Error in mapper call", entry("PATH=%s", path.c_str()),
390 entry("INTERFACES=%s", convertToString(interfaces).c_str()));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530391
392 elog<InternalFailure>();
393 }
394
395 ObjectTree objectTree;
396 mapperReply.read(objectTree);
397
398 if (objectTree.empty())
399 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700400 log<level::ERR>(
401 "No Object has implemented the interface",
402 entry("PATH=%s", path.c_str()),
403 entry("INTERFACES=%s", convertToString(interfaces).c_str()));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530404 elog<InternalFailure>();
405 }
406
407 return objectTree;
408}
Ratan Guptab8e99552017-07-27 07:07:48 +0530409
410namespace method_no_args
411{
412
Patrick Venture0b02be92018-08-31 11:55:55 -0700413void callDbusMethod(sdbusplus::bus::bus& bus, const std::string& service,
414 const std::string& objPath, const std::string& interface,
Ratan Guptab8e99552017-07-27 07:07:48 +0530415 const std::string& method)
416
417{
Patrick Venture0b02be92018-08-31 11:55:55 -0700418 auto busMethod = bus.new_method_call(service.c_str(), objPath.c_str(),
419 interface.c_str(), method.c_str());
Ratan Guptab8e99552017-07-27 07:07:48 +0530420
421 auto reply = bus.call(busMethod);
422
423 if (reply.is_method_error())
424 {
425 log<level::ERR>("Failed to execute method",
426 entry("METHOD=%s", method.c_str()),
427 entry("PATH=%s", objPath.c_str()),
428 entry("INTERFACE=%s", interface.c_str()));
429 elog<InternalFailure>();
430 }
431}
432
Patrick Venture0b02be92018-08-31 11:55:55 -0700433} // namespace method_no_args
Ratan Guptab8e99552017-07-27 07:07:48 +0530434
435namespace network
436{
437
Nagaraju Goruganti1fe5c832017-09-21 07:44:17 -0500438bool isLinkLocalIP(const std::string& address)
439{
440 return address.find(IPV4_PREFIX) == 0 || address.find(IPV6_PREFIX) == 0;
441}
442
Patrick Venture0b02be92018-08-31 11:55:55 -0700443void createIP(sdbusplus::bus::bus& bus, const std::string& service,
444 const std::string& objPath, const std::string& protocolType,
445 const std::string& ipaddress, uint8_t prefix)
Ratan Guptab8e99552017-07-27 07:07:48 +0530446{
447 std::string gateway = "";
448
Patrick Venture0b02be92018-08-31 11:55:55 -0700449 auto busMethod = bus.new_method_call(service.c_str(), objPath.c_str(),
450 IP_CREATE_INTERFACE, "IP");
Ratan Guptab8e99552017-07-27 07:07:48 +0530451
452 busMethod.append(protocolType, ipaddress, prefix, gateway);
453
454 auto reply = bus.call(busMethod);
455
456 if (reply.is_method_error())
457 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700458 log<level::ERR>("Failed to execute method", entry("METHOD=%s", "IP"),
Ratan Guptab8e99552017-07-27 07:07:48 +0530459 entry("PATH=%s", objPath.c_str()));
460 elog<InternalFailure>();
461 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530462}
463
Patrick Venture0b02be92018-08-31 11:55:55 -0700464void createVLAN(sdbusplus::bus::bus& bus, const std::string& service,
465 const std::string& objPath, const std::string& interfaceName,
Ratan Gupta533d03b2017-07-30 10:39:22 +0530466 uint32_t vlanID)
467{
Patrick Venture0b02be92018-08-31 11:55:55 -0700468 auto busMethod = bus.new_method_call(service.c_str(), objPath.c_str(),
469 VLAN_CREATE_INTERFACE, "VLAN");
Ratan Gupta533d03b2017-07-30 10:39:22 +0530470
471 busMethod.append(interfaceName, vlanID);
472
473 auto reply = bus.call(busMethod);
474
475 if (reply.is_method_error())
476 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700477 log<level::ERR>("Failed to execute method", entry("METHOD=%s", "VLAN"),
Ratan Gupta533d03b2017-07-30 10:39:22 +0530478 entry("PATH=%s", objPath.c_str()));
479 elog<InternalFailure>();
480 }
Ratan Gupta533d03b2017-07-30 10:39:22 +0530481}
482
Ratan Guptab8e99552017-07-27 07:07:48 +0530483uint8_t toPrefix(int addressFamily, const std::string& subnetMask)
484{
485 if (addressFamily == AF_INET6)
486 {
487 return 0;
488 }
489
Patrick Venture0b02be92018-08-31 11:55:55 -0700490 uint32_t buff{};
Ratan Guptab8e99552017-07-27 07:07:48 +0530491
492 auto rc = inet_pton(addressFamily, subnetMask.c_str(), &buff);
493 if (rc <= 0)
494 {
495 log<level::ERR>("inet_pton failed:",
Joseph Reynolds510eb9c2018-05-30 11:51:28 -0500496 entry("SUBNETMASK=%s", subnetMask.c_str()));
Ratan Guptab8e99552017-07-27 07:07:48 +0530497 return 0;
498 }
499
500 buff = be32toh(buff);
501 // total no of bits - total no of leading zero == total no of ones
Patrick Venture0b02be92018-08-31 11:55:55 -0700502 if (((sizeof(buff) * 8) - (__builtin_ctz(buff))) ==
503 __builtin_popcount(buff))
Ratan Guptab8e99552017-07-27 07:07:48 +0530504 {
505 return __builtin_popcount(buff);
506 }
507 else
508 {
509 log<level::ERR>("Invalid Mask",
Joseph Reynolds510eb9c2018-05-30 11:51:28 -0500510 entry("SUBNETMASK=%s", subnetMask.c_str()));
Ratan Guptab8e99552017-07-27 07:07:48 +0530511 return 0;
512 }
513}
514
Ratan Gupta533d03b2017-07-30 10:39:22 +0530515uint32_t getVLAN(const std::string& path)
516{
517 // Path would be look like
518 // /xyz/openbmc_project/network/eth0_443/ipv4
519
520 uint32_t vlanID = 0;
521 try
522 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700523 auto intfObjectPath = path.substr(0, path.find(IP_TYPE) - 1);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530524
525 auto intfName = intfObjectPath.substr(intfObjectPath.rfind("/") + 1);
526
527 auto index = intfName.find("_");
528 if (index != std::string::npos)
529 {
530 auto str = intfName.substr(index + 1);
531 vlanID = std::stoul(str);
532 }
533 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700534 catch (std::exception& e)
Ratan Gupta533d03b2017-07-30 10:39:22 +0530535 {
Gunnar Mills8991dd62017-10-25 17:11:29 -0500536 log<level::ERR>("Exception occurred during getVLAN",
Patrick Venture0b02be92018-08-31 11:55:55 -0700537 entry("PATH=%s", path.c_str()),
Gunnar Mills5b801e42017-10-19 17:11:42 -0500538 entry("EXCEPTION=%s", e.what()));
Ratan Gupta533d03b2017-07-30 10:39:22 +0530539 }
540 return vlanID;
541}
542
Ratan Guptab8e99552017-07-27 07:07:48 +0530543} // namespace network
Tom Josephbe703f72017-03-09 12:34:35 +0530544} // namespace ipmi