-
Notifications
You must be signed in to change notification settings - Fork 1
/
coprocess_bundle.go
371 lines (306 loc) · 8.92 KB
/
coprocess_bundle.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
package main
import (
"github.com/Sirupsen/logrus"
"github.com/TykTechnologies/goverify"
"github.com/TykTechnologies/tyk/apidef"
"github.com/TykTechnologies/tyk/config"
"archive/zip"
"bytes"
"crypto/md5"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"os"
"path/filepath"
)
// Bundle is the basic bundle data structure, it holds the bundle name and the data.
type Bundle struct {
Name string
Data []byte
Path string
Spec *APISpec
Manifest apidef.BundleManifest
}
// Verify performs a signature verification on the bundle file.
func (b *Bundle) Verify() error {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Verifying bundle: ", b.Spec.CustomMiddlewareBundle)
var useSignature bool
var bundleVerifier goverify.Verifier
// Perform signature verification if a public key path is set:
if config.Global().PublicKeyPath != "" {
if b.Manifest.Signature == "" {
// Error: A public key is set, but the bundle isn't signed.
return errors.New("Bundle isn't signed")
}
if notificationVerifier == nil {
var err error
bundleVerifier, err = goverify.LoadPublicKeyFromFile(config.Global().PublicKeyPath)
if err != nil {
return err
}
}
useSignature = true
}
var bundleData bytes.Buffer
for _, f := range b.Manifest.FileList {
extractedPath := filepath.Join(b.Path, f)
f, err := os.Open(extractedPath)
if err != nil {
return err
}
_, err = io.Copy(&bundleData, f)
f.Close()
if err != nil {
return err
}
}
checksum := fmt.Sprintf("%x", md5.Sum(bundleData.Bytes()))
if checksum != b.Manifest.Checksum {
return errors.New("Invalid checksum")
}
if useSignature {
signed, err := base64.StdEncoding.DecodeString(b.Manifest.Signature)
if err != nil {
return err
}
if err := bundleVerifier.Verify(bundleData.Bytes(), signed); err != nil {
return err
}
}
return nil
}
// AddToSpec attaches the custom middleware settings to an API definition.
func (b *Bundle) AddToSpec() {
b.Spec.CustomMiddleware = b.Manifest.CustomMiddleware
// Call HandleMiddlewareCache only when using rich plugins:
if GlobalDispatcher != nil && b.Spec.CustomMiddleware.Driver != apidef.OttoDriver {
GlobalDispatcher.HandleMiddlewareCache(&b.Manifest, b.Path)
}
}
// BundleGetter is used for downloading bundle data, see HttpBundleGetter for reference.
type BundleGetter interface {
Get() ([]byte, error)
}
// HTTPBundleGetter is a simple HTTP BundleGetter.
type HTTPBundleGetter struct {
URL string
}
// Get performs an HTTP GET request.
func (g *HTTPBundleGetter) Get() ([]byte, error) {
resp, err := http.Get(g.URL)
if err != nil {
return nil, err
}
if resp.StatusCode != 200 {
httpError := fmt.Sprintf("HTTP Error, got status code %d", resp.StatusCode)
return nil, errors.New(httpError)
}
defer resp.Body.Close()
return ioutil.ReadAll(resp.Body)
}
// BundleSaver is an interface used by bundle saver structures.
type BundleSaver interface {
Save(*Bundle, string, *APISpec) error
}
// ZipBundleSaver is a BundleSaver for ZIP files.
type ZipBundleSaver struct{}
// Save implements the main method of the BundleSaver interface. It makes use of archive/zip.
func (ZipBundleSaver) Save(bundle *Bundle, bundlePath string, spec *APISpec) error {
buf := bytes.NewReader(bundle.Data)
reader, err := zip.NewReader(buf, int64(len(bundle.Data)))
if err != nil {
return err
}
for _, f := range reader.File {
destPath := filepath.Join(bundlePath, f.Name)
if f.FileHeader.Mode().IsDir() {
if err := os.Mkdir(destPath, 0700); err != nil {
return err
}
continue
}
rc, err := f.Open()
if err != nil {
return err
}
newFile, err := os.Create(destPath)
if err != nil {
return err
}
if _, err = io.Copy(newFile, rc); err != nil {
return err
}
rc.Close()
if err := newFile.Close(); err != nil {
return err
}
}
return nil
}
// fetchBundle will fetch a given bundle, using the right BundleGetter. The first argument is the bundle name, the base bundle URL will be used as prefix.
func fetchBundle(spec *APISpec) (bundle Bundle, err error) {
if !config.Global().EnableBundleDownloader {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Warning("Bundle downloader is disabled.")
err = errors.New("Bundle downloader is disabled")
return bundle, err
}
bundleURL := config.Global().BundleBaseURL + spec.CustomMiddlewareBundle
var getter BundleGetter
u, err := url.Parse(bundleURL)
if err != nil {
return bundle, err
}
switch u.Scheme {
case "http":
getter = &HTTPBundleGetter{
URL: bundleURL,
}
case "https":
getter = &HTTPBundleGetter{
URL: bundleURL,
}
default:
err = errors.New("Unknown URL scheme")
}
if err != nil {
return bundle, err
}
bundleData, err := getter.Get()
bundle.Name = spec.CustomMiddlewareBundle
bundle.Data = bundleData
bundle.Spec = spec
return bundle, err
}
// saveBundle will save a bundle to the disk, see ZipBundleSaver methods for reference.
func saveBundle(bundle *Bundle, destPath string, spec *APISpec) error {
bundleFormat := "zip"
var bundleSaver BundleSaver
// TODO: use enums?
switch bundleFormat {
case "zip":
bundleSaver = ZipBundleSaver{}
}
bundleSaver.Save(bundle, destPath, spec)
return nil
}
// loadBundleManifest will parse the manifest file and return the bundle parameters.
func loadBundleManifest(bundle *Bundle, spec *APISpec, skipVerification bool) error {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Loading bundle: ", spec.CustomMiddlewareBundle)
manifestPath := filepath.Join(bundle.Path, "manifest.json")
f, err := os.Open(manifestPath)
if err != nil {
return err
}
defer f.Close()
if err := json.NewDecoder(f).Decode(&bundle.Manifest); err != nil {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Couldn't unmarshal the manifest file for bundle: ", spec.CustomMiddlewareBundle)
return err
}
if skipVerification {
return nil
}
if err := bundle.Verify(); err != nil {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Bundle verification failed: ", spec.CustomMiddlewareBundle)
}
return nil
}
// loadBundle wraps the load and save steps, it will return if an error occurs at any point.
func loadBundle(spec *APISpec) error {
// Skip if no custom middleware bundle name is set.
if spec.CustomMiddlewareBundle == "" {
return nil
}
// Skip if no bundle base URL is set.
if config.Global().BundleBaseURL == "" {
return bundleError(spec, nil, "No bundle base URL set, skipping bundle")
}
tykBundlePath := filepath.Join(config.Global().MiddlewarePath, "bundles")
// Skip if the bundle destination path already exists.
bundleNameHash := md5.New()
io.WriteString(bundleNameHash, spec.CustomMiddlewareBundle)
bundlePath := fmt.Sprintf("%s_%x", spec.APIID, bundleNameHash.Sum(nil))
destPath := filepath.Join(tykBundlePath, bundlePath)
// The bundle exists, load and return:
if _, err := os.Stat(destPath); err == nil {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("Loading existing bundle: ", spec.CustomMiddlewareBundle)
bundle := Bundle{
Name: spec.CustomMiddlewareBundle,
Path: destPath,
Spec: spec,
}
err = loadBundleManifest(&bundle, spec, true)
if err != nil {
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Couldn't load bundle: ", spec.CustomMiddlewareBundle, " ", err)
}
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Using bundle: ", spec.CustomMiddlewareBundle)
bundle.AddToSpec()
return nil
}
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Fetching Bundle: ", spec.CustomMiddlewareBundle)
bundle, err := fetchBundle(spec)
if err != nil {
return bundleError(spec, err, "Couldn't fetch bundle")
}
if err := os.MkdirAll(destPath, 0700); err != nil {
return bundleError(spec, err, "Couldn't create bundle directory")
}
if err := saveBundle(&bundle, destPath, spec); err != nil {
return bundleError(spec, err, "Couldn't save bundle")
}
log.WithFields(logrus.Fields{
"prefix": "main",
}).Debug("----> Saving Bundle: ", spec.CustomMiddlewareBundle)
// Set the destination path:
bundle.Path = destPath
if err := loadBundleManifest(&bundle, spec, false); err != nil {
bundleError(spec, err, "Couldn't load bundle")
if err := os.RemoveAll(bundle.Path); err != nil {
bundleError(spec, err, "Couldn't remove bundle")
}
return nil
}
log.WithFields(logrus.Fields{
"prefix": "main",
}).Info("----> Bundle is valid, adding to spec: ", spec.CustomMiddlewareBundle)
bundle.AddToSpec()
return nil
}
// bundleError is a log helper.
func bundleError(spec *APISpec, err error, message string) error {
if err != nil {
message = fmt.Sprintf("%s: %s", message, err.Error())
}
log.WithFields(logrus.Fields{
"prefix": "main",
"user_ip": "-",
"server_name": spec.Proxy.TargetURL,
"user_id": "-",
"org_id": spec.OrgID,
"api_id": spec.APIID,
"path": "-",
}).Error(message)
return errors.New(message)
}