forked from openbmc/phosphor-host-ipmid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransporthandler.hpp
92 lines (81 loc) · 2.43 KB
/
transporthandler.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#pragma once
#include "types.hpp"
#include <string>
// IPMI commands for Transport net functions.
enum ipmi_netfn_storage_cmds
{
// Get capability bits
IPMI_CMD_SET_LAN = 0x01,
IPMI_CMD_GET_LAN = 0x02,
};
// Command specific completion codes
enum ipmi_transport_return_codes
{
IPMI_CC_PARM_NOT_SUPPORTED = 0x80,
};
// Parameters
enum class LanParam : uint8_t
{
INPROGRESS = 0,
AUTHSUPPORT = 1,
AUTHENABLES = 2,
IP = 3,
IPSRC = 4,
MAC = 5,
SUBNET = 6,
GATEWAY = 12,
VLAN = 20,
CIPHER_SUITE_COUNT = 22,
CIPHER_SUITE_ENTRIES = 23,
};
constexpr uint8_t SET_COMPLETE = 0;
constexpr uint8_t SET_IN_PROGRESS = 1;
constexpr uint8_t SET_COMMIT_WRITE = 2; // Optional
constexpr uint8_t SET_IN_PROGRESS_RESERVED = 3; // Reserved
const int CHANNEL_MASK = 0x0f;
const int NUM_CHANNELS = 0x0f;
struct ChannelConfig_t
{
std::string ipaddr;
ipmi::network::IPOrigin ipsrc = ipmi::network::IPOrigin::UNSPECIFIED;
std::string netmask;
std::string gateway;
std::string macAddress;
// IPMI stores the vlan info in 16 bits,32 bits is to aligned
// with phosphor-dbus interfaces.
// vlan id is in 12 bits and the 16th bit is for enable mask.
uint32_t vlanID = ipmi::network::VLAN_ID_MASK;
uint8_t lan_set_in_progress = SET_COMPLETE;
bool flush = false;
void clear()
{
ipaddr.clear();
netmask.clear();
gateway.clear();
macAddress.clear();
vlanID = ipmi::network::VLAN_ID_MASK;
ipsrc = ipmi::network::IPOrigin::UNSPECIFIED;
lan_set_in_progress = SET_COMPLETE;
flush = false;
}
};
// Given a channel, get the corresponding configuration,
// or allocate it first.
//
// @param[in] channel the channel
// @return the ChannelConfig_t pointer.
struct ChannelConfig_t* getChannelConfig(int channel);
/** @brief Iterate over all the channelconfig and if
* user has given the data for a channel then
* apply the network changes for that channel.
*/
void commitNetworkChanges();
/* @brief Apply the network changes which is there in the
* network cache for a given channel which gets filled
* through setLan command. If some of the network
* parameter was not given by the setLan then this function
* gets the value of that parameter which is already
* configured on the system.
* @param[in] channel: channel number.
*/
void applyChanges(int channel);