forked from vmware-archive/goipmi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclient.go
165 lines (141 loc) · 3.97 KB
/
client.go
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
Copyright (c) 2014 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package ipmi
import (
"bytes"
)
// Client provides common high level functionality around the underlying transport
type Client struct {
*Connection
transport
}
// NewClient creates a new Client with the given Connection properties
func NewClient(c *Connection) (*Client, error) {
t, err := newTransport(c)
if err != nil {
return nil, err
}
return &Client{
Connection: c,
transport: t,
}, nil
}
// Open a new IPMI session
func (c *Client) Open() error {
// TODO: auto-select transport based on BMC capabilities
return c.open()
}
// Close the IPMI session
func (c *Client) Close() error {
return c.close()
}
// Send a Request and unmarshal to given Response type
func (c *Client) Send(req *Request, res Response) error {
// TODO: handle retry, timeouts, etc.
return c.send(req, res)
}
// DeviceID get the Device ID of the BMC
func (c *Client) DeviceID() (*DeviceIDResponse, error) {
req := &Request{
NetworkFunctionApp,
CommandGetDeviceID,
&DeviceIDRequest{},
}
res := &DeviceIDResponse{}
return res, c.Send(req, res)
}
func (c *Client) setBootParam(param uint8, data ...uint8) error {
r := &Request{
NetworkFunctionChassis,
CommandSetSystemBootOptions,
&SetSystemBootOptionsRequest{
Param: param,
Data: data,
},
}
return c.Send(r, &SetSystemBootOptionsResponse{})
}
// SetBootDevice is a wrapper around SetSystemBootOptionsRequest to configure the BootDevice
// per section 28.12 - table 28
func (c *Client) SetBootDevice(dev BootDevice) error {
useProgress := true
// set set-in-progress flag
err := c.setBootParam(BootParamSetInProgress, 0x01)
if err != nil {
useProgress = false
}
err = c.setBootParam(BootParamInfoAck, 0x01, 0x01)
if err != nil {
if useProgress {
// set-in-progress = set-complete
_ = c.setBootParam(BootParamSetInProgress, 0x00)
}
return err
}
err = c.setBootParam(BootParamBootFlags, 0x80, uint8(dev), 0x00, 0x00, 0x00)
if err == nil {
if useProgress {
// set-in-progress = commit-write
_ = c.setBootParam(BootParamSetInProgress, 0x02)
}
}
if useProgress {
// set-in-progress = set-complete
_ = c.setBootParam(BootParamSetInProgress, 0x00)
}
return err
}
// Control sends a chassis power control command
func (c *Client) Control(ctl ChassisControl) error {
r := &Request{
NetworkFunctionChassis,
CommandChassisControl,
&ChassisControlRequest{ctl},
}
return c.Send(r, &ChassisControlResponse{})
}
func (c *Client) GetMcId() (*DcmiGetMcIdResponse, error) {
index := uint8(0)
lastChunkReceived := false
var dataBuffer bytes.Buffer
res := &DcmiGetMcIdResponse{}
// Read until the last chunk len is less than MAX_MC_ID_STRING_LEN
for lastChunkReceived != true {
r := &Request{
NetworkFunctionDcmi,
CommandGetMcIdString,
&DcmiGetMcIdRequest{DCMI_GROUP_EXTENSION_ID, index, MAX_MC_ID_STRING_LEN},
}
if err := c.Send(r, res); err != nil {
return res, err
}
// Accumulate the bytes received in the index until it
// is the same as the number of bytes expected
dataBuffer.WriteString(res.Data)
index += uint8(len(res.Data))
if res.NumBytes == index {
res.Data = dataBuffer.String()
lastChunkReceived = true
}
}
return res, nil
}
func (c *Client) SetMcId(mcId string) (*DcmiSetMcIdResponse, error) {
r := &Request{
NetworkFunctionDcmi,
CommandSetMcIdString,
&DcmiSetMcIdRequest{DCMI_GROUP_EXTENSION_ID, 0, uint8(len(mcId)), mcId},
}
res := &DcmiSetMcIdResponse{}
return res, c.Send(r, res)
}