forked from vmware-archive/goipmi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
120 lines (103 loc) · 2.92 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
/*
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
// 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{})
}