blob: f1ed8bcc149b7b55251eb0b6c5616d76ec17203d [file] [log] [blame]
Ratan Guptab8e99552017-07-27 07:07:48 +05301#pragma once
2
Ratan Gupta533d03b2017-07-30 10:39:22 +05303#include "types.hpp"
Patrick Venture0b02be92018-08-31 11:55:55 -07004
Ratan Guptab8e99552017-07-27 07:07:48 +05305#include <string>
Adriana Kobylak5d6481f2015-10-29 21:44:55 -05006// IPMI commands for Transport net functions.
7enum ipmi_netfn_storage_cmds
8{
9 // Get capability bits
10 IPMI_CMD_SET_LAN = 0x01,
11 IPMI_CMD_GET_LAN = 0x02,
12};
13
14// Command specific completion codes
15enum ipmi_transport_return_codes
16{
17 IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
18};
19
Adriana Kobylake08fbc62016-02-09 16:17:23 -060020// Parameters
William A. Kennington IIIaab20232018-11-19 18:20:39 -080021enum class LanParam : uint8_t
William A. Kennington III7a3479e2018-11-19 17:41:20 -080022{
William A. Kennington IIIaab20232018-11-19 18:20:39 -080023 INPROGRESS = 0,
Patrick Venturefc711152019-01-30 08:59:21 -080024 AUTHSUPPORT = 1, // Read-only
William A. Kennington IIIaab20232018-11-19 18:20:39 -080025 AUTHENABLES = 2,
26 IP = 3,
27 IPSRC = 4,
28 MAC = 5,
29 SUBNET = 6,
Patrick Venturefc711152019-01-30 08:59:21 -080030 IPHEADER_PARAMS = 7,
31 RMCP_PORT = 8,
32 RMCP_SECONDARY_PORT = 9,
33 BMC_GENERATED_ARP_CTRL = 10,
34 GRATUITOUS_ARP_INTERVAL = 11,
William A. Kennington IIIaab20232018-11-19 18:20:39 -080035 GATEWAY = 12,
Patrick Venturefc711152019-01-30 08:59:21 -080036 GATEWAY_MAC = 13,
37 GATEWAY_BACKUP = 14,
38 GATEWAY_BACKUP_MAC = 15,
39 COMMUNITY_STRING = 16,
40 LAN_ALERT_DESTINATION_COUNT = 17, // Read-only
41 LAN_ALERT_DESTINATION_TYPE = 18, // Type per destination
42 LAN_ALERT_DESTINATIONS = 19,
William A. Kennington IIIaab20232018-11-19 18:20:39 -080043 VLAN = 20,
Patrick Venturefc711152019-01-30 08:59:21 -080044 VLAN_PRIORITY = 21,
45 CIPHER_SUITE_COUNT = 22, // Read-only
46 CIPHER_SUITE_ENTRIES = 23, // Read-only
47 CIPHER_SUITE_PRIVILEGE_LEVELS = 24,
48 DESTINATION_ADDR_VLAN_TAGS = 25,
49 BAD_PASSWORD_THRESHOLD = 26,
50 IPV6_AND_IPV4_SUPPORTED = 50, // Read-only
51 IPV6_AND_IPV4_ENABLES = 51,
52 IPV6_HEADER_STATIC_TRAFFIC_CLASS = 52,
53 IPV6_HEADER_STATIC_HOP_LIMIT = 53,
54 IPV6_HEADER_FLOW_LABEL = 54,
55 IPV6_STATUS = 55, // Read-only
56 IPV6_STATIC_ADDRESSES = 56,
57 IPV6_DHCPV6_STATIC_DUID_STORAGE_LENGTH = 57, // Read-only
58 IPV6_DHCPV6_STATIC_DUIDS = 58,
59 IPV6_DYNAMIC_ADDRESSES = 59, // Read-only
60 IPV6_DHCPV6_DYNAMIC_DUID_STOR_LEN = 60, // Read-only
61 IPV6_DHCPV6_DYNAMIC_DUIDS = 61,
62 IPV6_DHCPV6_TIMING_CONF_SUPPORT = 62, // Read-only
63 IPV6_DHCPV6_TIMING_CONFIGURATION = 63,
64 IPV6_ROUTER_ADDRESS_CONF_CTRL = 64,
65 IPV6_STATIC_ROUTER_1_IP_ADDR = 65,
66 IPV6_STATIC_ROUTER_1_MAC_ADDR = 66,
67 IPV6_STATIC_ROUTER_1_PREFIX_LEN = 67,
68 IPV6_STATIC_ROUTER_1_PREFIX_VAL = 68,
69 IPV6_STATIC_ROUTER_2_IP_ADDR = 69,
70 IPV6_STATIC_ROUTER_2_MAC_ADDR = 70,
71 IPV6_STATIC_ROUTER_2_PREFIX_LEN = 71,
72 IPV6_STATIC_ROUTER_2_PREFIX_VAL = 72,
73 DYNAMIC_ROUTER_INFO_SET_COUNT = 73, // Read-only
74 IPV6_DYNAMIC_ROUTER_INFO_IP_ADDR = 74, // Read-only
75 IPV6_DYNAMIC_ROUTER_INFO_MAC = 75, // Read-only
76 IPV6_DYNAMIC_ROUTER_INFO_PREFIX_LEN = 76, // Read-only
77 IPV6_DYNAMIC_ROUTER_INFO_PREFIX_VAL = 77, // Read-only
78 IPV6_DYNAMIC_ROUTER_RECV_HOP_LIMIT = 78,
79 IPV6_NEIGHBOR_TIMING_CONF_SUPPORT = 79, // Read-only
80 IPV6_NEIGHBOR_TIMING_CONFIGURATION = 80,
William A. Kennington III7a3479e2018-11-19 17:41:20 -080081};
Adriana Kobylake08fbc62016-02-09 16:17:23 -060082
Patrick Venture585a1e92017-11-17 07:36:15 -080083constexpr uint8_t SET_COMPLETE = 0;
84constexpr uint8_t SET_IN_PROGRESS = 1;
Patrick Venture0b02be92018-08-31 11:55:55 -070085constexpr uint8_t SET_COMMIT_WRITE = 2; // Optional
86constexpr uint8_t SET_IN_PROGRESS_RESERVED = 3; // Reserved
Patrick Venture585a1e92017-11-17 07:36:15 -080087
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080088const int CHANNEL_MASK = 0x0f;
89const int NUM_CHANNELS = 0x0f;
90
Ratan Guptab8e99552017-07-27 07:07:48 +053091struct ChannelConfig_t
92{
93 std::string ipaddr;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053094 ipmi::network::IPOrigin ipsrc = ipmi::network::IPOrigin::UNSPECIFIED;
Ratan Guptab8e99552017-07-27 07:07:48 +053095 std::string netmask;
96 std::string gateway;
97 std::string macAddress;
Ratan Gupta533d03b2017-07-30 10:39:22 +053098 // IPMI stores the vlan info in 16 bits,32 bits is to aligned
99 // with phosphor-dbus interfaces.
100 // vlan id is in 12 bits and the 16th bit is for enable mask.
101 uint32_t vlanID = ipmi::network::VLAN_ID_MASK;
Patrick Venture585a1e92017-11-17 07:36:15 -0800102 uint8_t lan_set_in_progress = SET_COMPLETE;
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530103 bool flush = false;
Ratan Gupta533d03b2017-07-30 10:39:22 +0530104
Ratan Guptab8e99552017-07-27 07:07:48 +0530105 void clear()
106 {
107 ipaddr.clear();
108 netmask.clear();
109 gateway.clear();
110 macAddress.clear();
Ratan Gupta533d03b2017-07-30 10:39:22 +0530111 vlanID = ipmi::network::VLAN_ID_MASK;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530112 ipsrc = ipmi::network::IPOrigin::UNSPECIFIED;
Patrick Venture585a1e92017-11-17 07:36:15 -0800113 lan_set_in_progress = SET_COMPLETE;
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530114 flush = false;
Ratan Guptab8e99552017-07-27 07:07:48 +0530115 }
Nan Li3d0df912016-10-18 19:51:41 +0800116};
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800117
118// Given a channel, get the corresponding configuration,
119// or allocate it first.
120//
121// @param[in] channel the channel
122// @return the ChannelConfig_t pointer.
123struct ChannelConfig_t* getChannelConfig(int channel);
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530124
125/** @brief Iterate over all the channelconfig and if
126 * user has given the data for a channel then
127 * apply the network changes for that channel.
128 */
129void commitNetworkChanges();
130
131/* @brief Apply the network changes which is there in the
132 * network cache for a given channel which gets filled
133 * through setLan command. If some of the network
134 * parameter was not given by the setLan then this function
135 * gets the value of that parameter which is already
136 * configured on the system.
137 * @param[in] channel: channel number.
138 */
139void applyChanges(int channel);