-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathkubeClient.go
408 lines (352 loc) · 10.6 KB
/
kubeClient.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/***
Copyright 2016 Cisco Systems 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 k8splugin
import (
"bufio"
"crypto/tls"
"crypto/x509"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
"sync"
log "github.com/Sirupsen/logrus"
"github.com/contiv/netplugin/core"
"golang.org/x/net/context"
"golang.org/x/net/context/ctxhttp"
"strconv"
)
const (
nsURL = "/api/v1/namespaces/"
)
// APIClient defines information needed for the k8s api client
type APIClient struct {
apiServerPort uint16
baseURL string
watchBase string
client *http.Client
podCache podInfo
authToken string
}
// SvcWatchResp is the response to a service watch
type SvcWatchResp struct {
opcode string
errStr string
svcName string
svcSpec core.ServiceSpec
}
// EpWatchResp is the response to service endpoints watch
type EpWatchResp struct {
opcode string
errStr string
svcName string
providers []string
}
type watchSvcStatus struct {
// The type of watch update contained in the message
Type string `json:"type"`
// Pod details
Object Service `json:"object"`
}
type watchSvcEpStatus struct {
// The type of watch update contained in the message
Type string `json:"type"`
// Pod details
Object Endpoints `json:"object"`
}
type podInfo struct {
nameSpace string
name string
labels map[string]string
labelsMutex sync.Mutex
}
// NewAPIClient creates an instance of the k8s api client
func NewAPIClient(serverURL, caFile, keyFile, certFile, authToken string) *APIClient {
useClientCerts := true
c := APIClient{}
c.apiServerPort = 6443 // default
port := strings.Split(serverURL, ":")
if len(port) > 0 {
if v, err := strconv.ParseUint(port[len(port)-1], 10, 16); err == nil {
c.apiServerPort = uint16(v)
} else {
log.Warnf("parse failed: %s, use default api server port: %d", err, c.apiServerPort)
}
}
c.baseURL = serverURL + "/api/v1/namespaces/"
c.watchBase = serverURL + "/api/v1/watch/"
// Read CA cert
ca, err := ioutil.ReadFile(caFile)
if err != nil {
log.Fatal(err)
return nil
}
caPool := x509.NewCertPool()
caPool.AppendCertsFromPEM(ca)
// Read client cert
cert, err := tls.LoadX509KeyPair(certFile, keyFile)
// We need either the client certs or a non-empty authToken to proceed
if err != nil {
// We cannot use client certs now
useClientCerts = false
// Check for a non-empty token
if len(strings.TrimSpace(authToken)) == 0 {
log.Fatalf("Error %s loading the client certificates and missing auth token", err)
return nil
}
}
// Setup HTTPS client
tlsCfg := &tls.Config{
RootCAs: caPool,
}
// Setup client cert based authentication
if useClientCerts {
tlsCfg.Certificates = []tls.Certificate{cert}
tlsCfg.BuildNameToCertificate()
}
transport := &http.Transport{TLSClientConfig: tlsCfg}
c.client = &http.Client{Transport: transport}
c.authToken = authToken
p := &c.podCache
p.labels = make(map[string]string)
p.nameSpace = ""
p.name = ""
return &c
}
func (p *podInfo) setDefaults(ns, name string) {
p.nameSpace = ns
p.name = name
p.labels["io.contiv.tenant"] = "default"
p.labels["io.contiv.network"] = "default-net"
p.labels["io.contiv.net-group"] = ""
}
// fetchPodLabels retrieves the labels from the podspec metadata
func (c *APIClient) fetchPodLabels(ns, name string) error {
var data interface{}
// initiate a get request to the api server
podURL := c.baseURL + ns + "/pods/" + name
req, err := http.NewRequest("GET", podURL, nil)
if err != nil {
return err
}
if len(strings.TrimSpace(c.authToken)) > 0 {
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.authToken))
}
r, err := c.client.Do(req)
if err != nil {
return err
}
defer r.Body.Close()
switch {
case r.StatusCode == int(404):
return fmt.Errorf("page not found")
case r.StatusCode == int(403):
return fmt.Errorf("access denied")
case r.StatusCode != int(200):
log.Errorf("GET Status '%s' status code %d \n", r.Status, r.StatusCode)
return fmt.Errorf("%s", r.Status)
}
response, err := ioutil.ReadAll(r.Body)
if err != nil {
return err
}
err = json.Unmarshal(response, &data)
if err != nil {
return err
}
podSpec := data.(map[string]interface{})
m, ok := podSpec["metadata"]
// Treat missing metadata as a fatal error
if !ok {
return fmt.Errorf("metadata not found in podSpec")
}
p := &c.podCache
p.labelsMutex.Lock()
defer p.labelsMutex.Unlock()
p.setDefaults(ns, name)
meta := m.(map[string]interface{})
l, ok := meta["labels"]
if ok {
labels := l.(map[string]interface{})
for key, val := range labels {
switch valType := val.(type) {
case string:
p.labels[key] = val.(string)
default:
log.Infof("Label %s type %v in pod %s.%s ignored",
key, valType, ns, name)
}
}
} else {
log.Infof("labels not found in podSpec metadata, using defaults")
}
return nil
}
// GetPodLabel retrieves the specified label
func (c *APIClient) GetPodLabel(ns, name, label string) (string, error) {
// If cache does not match, fetch
if c.podCache.nameSpace != ns || c.podCache.name != name {
err := c.fetchPodLabels(ns, name)
if err != nil {
return "", err
}
}
c.podCache.labelsMutex.Lock()
defer c.podCache.labelsMutex.Unlock()
res, found := c.podCache.labels[label]
if found {
return res, nil
}
log.Infof("label %s not found in podSpec for %s.%s", label, ns, name)
return "", nil
}
// WatchServices watches the services object on the api server
func (c *APIClient) WatchServices(respCh chan SvcWatchResp) {
ctx, _ := context.WithCancel(context.Background())
go func() {
// Make request to Kubernetes API
getURL := c.watchBase + "services"
req, err := http.NewRequest("GET", getURL, nil)
if err != nil {
respCh <- SvcWatchResp{opcode: "FATAL", errStr: fmt.Sprintf("Req %v", err)}
return
}
if len(strings.TrimSpace(c.authToken)) > 0 {
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.authToken))
}
res, err := ctxhttp.Do(ctx, c.client, req)
if err != nil {
log.Errorf("Watch error: %v", err)
respCh <- SvcWatchResp{opcode: "FATAL", errStr: fmt.Sprintf("Do %v", err)}
return
}
defer res.Body.Close()
var wss watchSvcStatus
reader := bufio.NewReader(res.Body)
// bufio.Reader.ReadBytes is blocking, so we watch for
// context timeout or cancellation in a goroutine
// and close the response body when see see it. The
// response body is also closed via defer when the
// request is made, but closing twice is OK.
go func() {
<-ctx.Done()
res.Body.Close()
}()
for {
line, err := reader.ReadBytes('\n')
if ctx.Err() != nil {
respCh <- SvcWatchResp{opcode: "ERROR", errStr: fmt.Sprintf("ctx %v", err)}
return
}
if err != nil {
respCh <- SvcWatchResp{opcode: "ERROR", errStr: fmt.Sprintf("read %v", err)}
return
}
if err := json.Unmarshal(line, &wss); err != nil {
respCh <- SvcWatchResp{opcode: "WARN", errStr: fmt.Sprintf("unmarshal %v", err)}
continue
}
if wss.Object.ObjectMeta.Namespace == "kube-system" && (wss.Object.ObjectMeta.Name == "kube-scheduler" || wss.Object.ObjectMeta.Name == "kube-controller-manager") {
// Ignoring these frequent updates
continue
}
resp := SvcWatchResp{opcode: wss.Type}
resp.svcName = wss.Object.ObjectMeta.Name
sSpec := core.ServiceSpec{}
sSpec.Ports = make([]core.PortSpec, 0, 1)
sSpec.IPAddress = wss.Object.Spec.ClusterIP
sSpec.ExternalIPs = wss.Object.Spec.ExternalIPs
for _, port := range wss.Object.Spec.Ports {
ps := core.PortSpec{Protocol: string(port.Protocol),
SvcPort: uint16(port.Port),
NodePort: uint16(port.NodePort),
}
// handle 'kubernetes' service
// Use port from configuration till named ports are supported.
if resp.svcName == "kubernetes" && (len(wss.Object.ObjectMeta.Namespace) == 0 ||
wss.Object.ObjectMeta.Namespace == "default") {
ps.ProvPort = c.apiServerPort
} else {
ps.ProvPort = uint16(port.TargetPort)
}
sSpec.Ports = append(sSpec.Ports, ps)
}
resp.svcSpec = sSpec
log.Infof("resp: %+v", resp)
respCh <- resp
}
}()
}
// WatchSvcEps watches the service endpoints object
func (c *APIClient) WatchSvcEps(respCh chan EpWatchResp) {
ctx, _ := context.WithCancel(context.Background())
go func() {
// Make request to Kubernetes API
getURL := c.watchBase + "endpoints"
req, err := http.NewRequest("GET", getURL, nil)
if err != nil {
respCh <- EpWatchResp{opcode: "FATAL", errStr: fmt.Sprintf("Req %v", err)}
return
}
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", c.authToken))
res, err := ctxhttp.Do(ctx, c.client, req)
if err != nil {
log.Errorf("EP Watch error: %v", err)
respCh <- EpWatchResp{opcode: "FATAL", errStr: fmt.Sprintf("Do %v", err)}
return
}
defer res.Body.Close()
var weps watchSvcEpStatus
reader := bufio.NewReader(res.Body)
// bufio.Reader.ReadBytes is blocking, so we watch for
// context timeout or cancellation in a goroutine
// and close the response body when see see it. The
// response body is also closed via defer when the
// request is made, but closing twice is OK.
go func() {
<-ctx.Done()
res.Body.Close()
}()
for {
line, err := reader.ReadBytes('\n')
if ctx.Err() != nil {
respCh <- EpWatchResp{opcode: "ERROR", errStr: fmt.Sprintf("ctx %v", err)}
return
}
if err != nil {
respCh <- EpWatchResp{opcode: "ERROR", errStr: fmt.Sprintf("read %v", err)}
return
}
if err := json.Unmarshal(line, &weps); err != nil {
respCh <- EpWatchResp{opcode: "WARN", errStr: fmt.Sprintf("unmarshal %v", err)}
continue
}
if weps.Object.ObjectMeta.Namespace == "kube-system" && (weps.Object.ObjectMeta.Name == "kube-scheduler" || weps.Object.ObjectMeta.Name == "kube-controller-manager") {
// Ignoring these frequent updates
continue
}
resp := EpWatchResp{opcode: weps.Type}
resp.svcName = weps.Object.ObjectMeta.Name
resp.providers = make([]string, 0, 1)
for _, subset := range weps.Object.Subsets {
// TODO: handle partially ready providers
for _, addr := range subset.Addresses {
resp.providers = append(resp.providers, addr.IP)
}
}
log.Infof("kube ep watch: %v", resp)
respCh <- resp
}
}()
}