forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.go
252 lines (230 loc) · 7.68 KB
/
node.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
package node
import (
"archive/tar"
"archive/zip"
"bytes"
"compress/gzip"
"encoding/base64"
"fmt"
"io"
"strconv"
"strings"
"github.com/mitchellh/mapstructure"
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/api/handler"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
"github.com/rancher/norman/types/values"
"github.com/rancher/rancher/pkg/encryptedstore"
"github.com/rancher/types/apis/management.cattle.io/v3"
managementschema "github.com/rancher/types/apis/management.cattle.io/v3/schema"
"github.com/rancher/types/client/management/v3"
)
var toIgnoreErrs = []string{"--ignore-daemonsets", "--delete-local-data", "--force", "did not complete within"}
var allowedStates = map[string]bool{"active": true, "cordoned": true, "draining": true, "drained": true}
// Formatter for Node
func Formatter(apiContext *types.APIContext, resource *types.RawResource) {
etcd := convert.ToBool(resource.Values[client.NodeFieldEtcd])
cp := convert.ToBool(resource.Values[client.NodeFieldControlPlane])
worker := convert.ToBool(resource.Values[client.NodeFieldWorker])
if !etcd && !cp && !worker {
resource.Values[client.NodeFieldWorker] = true
}
// add nodeConfig link
if err := apiContext.AccessControl.CanDo(v3.NodeGroupVersionKind.Group, v3.NodeResource.Name, "update", apiContext, resource.Values, apiContext.Schema); err == nil {
resource.Links["nodeConfig"] = apiContext.URLBuilder.Link("nodeConfig", resource)
}
// remove link
nodeTemplateID := resource.Values["nodeTemplateId"]
customConfig := resource.Values["customConfig"]
if nodeTemplateID == nil {
delete(resource.Links, "nodeConfig")
}
if nodeTemplateID == nil && customConfig == nil {
delete(resource.Links, "remove")
}
if resource.Values[client.NodeFieldWorker] != true {
return
}
state := convert.ToString(resource.Values["state"])
if _, ok := allowedStates[state]; !ok {
return
}
if state == "draining" {
override := false
for _, cond := range convert.ToMapSlice(resource.Values["conditions"]) {
if cond["type"] == "Drained" && cond["status"] == "False" {
if ignoreErr(convert.ToString(cond["message"])) {
override = true
resource.Values["state"] = "cordoned"
break
}
}
}
if !override {
resource.AddAction(apiContext, "stopDrain")
return
}
}
if state != "drained" {
resource.AddAction(apiContext, "drain")
}
if convert.ToBool(resource.Values["unschedulable"]) {
resource.AddAction(apiContext, "uncordon")
} else {
resource.AddAction(apiContext, "cordon")
}
}
type ActionWrapper struct{}
func (a ActionWrapper) ActionHandler(actionName string, action *types.Action, apiContext *types.APIContext) error {
switch actionName {
case "cordon":
return cordonUncordonNode(actionName, apiContext, true)
case "uncordon":
return cordonUncordonNode(actionName, apiContext, false)
case "drain":
return drainNode(actionName, apiContext, false)
case "stopDrain":
return drainNode(actionName, apiContext, true)
}
return nil
}
func cordonUncordonNode(actionName string, apiContext *types.APIContext, cordon bool) error {
node, schema, err := getNodeAndSchema(apiContext)
if err != nil {
return err
}
unschedulable := convert.ToBool(values.GetValueN(node, "unschedulable"))
if cordon == unschedulable {
return httperror.NewAPIError(httperror.InvalidAction, fmt.Sprintf("Node %s already %sed", apiContext.ID, actionName))
}
values.PutValue(node, convert.ToString(!unschedulable), "desiredNodeUnschedulable")
return updateNode(apiContext, node, schema, actionName)
}
func drainNode(actionName string, apiContext *types.APIContext, stop bool) error {
node, schema, err := getNodeAndSchema(apiContext)
if err != nil {
return err
}
if !stop {
drainInput, err := validate(apiContext)
if err != nil {
return err
}
values.PutValue(node, drainInput, "nodeDrainInput")
}
values.PutValue(node, actionName, "desiredNodeUnschedulable")
return updateNode(apiContext, node, schema, actionName)
}
func validate(apiContext *types.APIContext) (*v3.NodeDrainInput, error) {
input, err := handler.ParseAndValidateActionBody(apiContext, apiContext.Schemas.Schema(&managementschema.Version,
client.NodeDrainInputType))
if err != nil {
return nil, httperror.NewAPIError(httperror.InvalidBodyContent,
fmt.Sprintf("Failed to parse action body: %v", err))
}
drainInput := &v3.NodeDrainInput{}
if err := mapstructure.Decode(input, drainInput); err != nil {
return nil, httperror.NewAPIError(httperror.InvalidBodyContent,
fmt.Sprintf("Failed to parse body: %v", err))
}
return drainInput, nil
}
func getNodeAndSchema(apiContext *types.APIContext) (map[string]interface{}, *types.Schema, error) {
var node map[string]interface{}
if err := access.ByID(apiContext, apiContext.Version, apiContext.Type, apiContext.ID, &node); err != nil {
return nil, nil, httperror.NewAPIError(httperror.InvalidReference, "Error accessing node")
}
schema := apiContext.Schemas.Schema(&managementschema.Version, client.NodeType)
return node, schema, nil
}
type Handler struct {
SecretStore *encryptedstore.GenericEncryptedStore
}
func (h Handler) LinkHandler(apiContext *types.APIContext, next types.RequestHandler) error {
var node map[string]interface{}
if err := access.ByID(apiContext, apiContext.Version, apiContext.Type, apiContext.ID, &node); err != nil {
return err
}
if err := apiContext.AccessControl.CanDo(v3.NodeGroupVersionKind.Group, v3.NodeResource.Name, "update", apiContext, node, apiContext.Schema); err != nil {
return err
}
nID, _ := node["id"].(string)
nodeID := strings.Split(nID, ":")[1]
secret, err := h.SecretStore.Get(nodeID)
if err != nil {
return err
}
data, err := base64.StdEncoding.DecodeString(secret[configKey])
if err != nil {
return err
}
gzipReader, err := gzip.NewReader(bytes.NewReader(data))
if err != nil {
return err
}
tarReader := tar.NewReader(gzipReader)
buf := new(bytes.Buffer)
w := zip.NewWriter(buf)
for {
header, err := tarReader.Next()
if err != nil {
if err == io.EOF {
break
}
return fmt.Errorf("error reinitializing config (tarRead.Next): %v", err)
}
parts := strings.Split(header.Name, "/")
if len(parts) != 4 {
continue
}
if parts[3] == "config.json" {
continue
}
fh := &zip.FileHeader{}
fh.Name = fmt.Sprintf("%s/%s", parts[2], parts[3])
fh.SetMode(0400)
file, err := w.CreateHeader(fh)
if err != nil {
return err
}
buf := &bytes.Buffer{}
_, err = io.Copy(buf, tarReader)
if err != nil {
return err
}
_, err = file.Write(buf.Bytes())
if err != nil {
return err
}
}
if err := w.Close(); err != nil {
return err
}
apiContext.Response.Header().Set("Content-Length", strconv.Itoa(len(buf.Bytes())))
apiContext.Response.Header().Set("Content-Type", "application/octet-stream")
apiContext.Response.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s.zip", node[client.NodeSpecFieldRequestedHostname]))
apiContext.Response.Header().Set("Cache-Control", "private")
apiContext.Response.Header().Set("Pragma", "private")
apiContext.Response.Header().Set("Expires", "Wed 24 Feb 1982 18:42:00 GMT")
_, err = apiContext.Response.Write(buf.Bytes())
if err != nil {
return err
}
return nil
}
func updateNode(apiContext *types.APIContext, node map[string]interface{}, schema *types.Schema, actionName string) error {
if _, err := schema.Store.Update(apiContext, schema, node, apiContext.ID); err != nil {
return httperror.NewAPIError(httperror.ServerError, fmt.Sprintf("Error updating node %s by %s : %s", apiContext.ID, actionName, err.Error()))
}
return nil
}
func ignoreErr(msg string) bool {
for _, val := range toIgnoreErrs {
if strings.Contains(msg, val) {
return true
}
}
return false
}