This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
tool.go
168 lines (133 loc) · 3.23 KB
/
tool.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
166
167
168
/*
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"
"encoding/hex"
"fmt"
"os"
"os/exec"
"strconv"
"strings"
)
type tool struct {
*Connection
}
func newToolTransport(c *Connection) transport {
return &tool{Connection: c}
}
func (t *tool) open() error {
return nil
}
func (t *tool) close() error {
return nil
}
func (t *tool) send(req *Request, res Response) error {
// ipmitool ... raw .. .. ..
args := append([]string{"raw"}, requestToStrings(req)...)
output, err := t.run(args...)
if err != nil {
// TODO: parse CompletionCode from stderr
return err
}
return responseFromString(output, res)
}
func (t *tool) Console() error {
cmd := t.cmd("sol", "activate", "-e", "&")
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
}
func (t *tool) options() []string {
intf := t.Interface
if intf == "" {
intf = "lanplus"
}
options := []string{
"-H", t.Hostname,
"-U", t.Username,
"-P", t.Password,
"-I", intf,
}
if t.Port != 0 {
options = append(options, "-p", strconv.Itoa(t.Port))
}
return options
}
func (t *tool) cmd(args ...string) *exec.Cmd {
path := t.Path
opts := append(t.options(), args...)
if path == "" {
path = "ipmitool"
}
return exec.Command(path, opts...)
}
func (t *tool) run(args ...string) (string, error) {
cmd := t.cmd(args...)
var stdout bytes.Buffer
var stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Run()
if err != nil {
return "", fmt.Errorf("run %s %s: %s (%s)",
cmd.Path, strings.Join(cmd.Args, " "), stderr.String(), err)
}
return stdout.String(), err
}
func requestToBytes(r *Request) []byte {
data := messageDataToBytes(r.Data)
msg := make([]byte, 2+len(data))
msg[0] = uint8(r.NetworkFunction)
msg[1] = uint8(r.Command)
copy(msg[2:], data)
return msg
}
func requestToStrings(r *Request) []string {
msg := requestToBytes(r)
return rawEncode(msg)
}
func responseFromBytes(msg []byte, r Response) error {
buf := make([]byte, 1+len(msg))
buf[0] = uint8(CommandCompleted)
copy(buf[1:], msg)
return messageDataFromBytes(buf, r)
}
func responseFromString(s string, r Response) error {
msg := rawDecode(strings.TrimSpace(s))
return responseFromBytes(msg, r)
}
func rawDecode(data string) []byte {
var buf bytes.Buffer
for _, s := range strings.Split(data, " ") {
b, err := hex.DecodeString(s)
if err != nil {
panic(err)
}
_, err = buf.Write(b)
if err != nil {
panic(err)
}
}
return buf.Bytes()
}
func rawEncode(data []byte) []string {
n := len(data)
buf := make([]string, 0, n)
// ipmitool needs every byte to be a separate argument
for i := 0; i < n; i++ {
buf = append(buf, "0x"+hex.EncodeToString(data[i:i+1]))
}
return buf
}