-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.go
397 lines (382 loc) · 14.1 KB
/
server.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
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2018-2023 SCANOSS.COM
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
// Package rest handles all the REST communication for the Scanning Service
// It takes care of starting and stopping the listener, etc.
package rest
import (
"context"
"crypto/tls"
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
"net/http"
"os"
"os/signal"
"strings"
"syscall"
"time"
"go.opentelemetry.io/otel/sdk/resource"
semconv "go.opentelemetry.io/otel/semconv/v1.17.0"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/propagation"
"github.com/gorilla/mux"
"github.com/jpillora/ipfilter"
zlog "github.com/scanoss/zap-logging-helper/pkg/logger"
"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux"
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc"
"go.opentelemetry.io/otel/exporters/otlp/otlptrace"
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc"
sdkmetric "go.opentelemetry.io/otel/sdk/metric"
sdktrace "go.opentelemetry.io/otel/sdk/trace"
myconfig "scanoss.com/go-api/pkg/config"
"scanoss.com/go-api/pkg/service"
)
// RunServer runs REST service to publish.
func RunServer(config *myconfig.ServerConfig, version string) error {
// Check if TLS should be enabled or not
startTLS, err := checkTLS(config)
if err != nil {
return err
}
allowedIPs, deniedIPs, err := loadFiltering(config)
if err != nil {
return err
}
if config.Telemetry.Enabled {
oltpShutdown, err := initProviders(config, version, config.Telemetry.ExtraMetrics)
if err != nil {
return err
}
defer oltpShutdown()
}
apiService := service.NewAPIService(config)
if err := apiService.TestEngine(); err != nil {
zlog.S.Warnf("Scanning engine test failed. Scan requests are likely to fail.")
zlog.S.Warnf("Please make sure that %v is accessible", config.Scanning.ScanBinary)
}
apiService.SetupKBDetailsCron()
// Set up the endpoint routing
router := mux.NewRouter().StrictSlash(true)
router.HandleFunc("/", service.WelcomeMsg).Methods(http.MethodGet)
router.HandleFunc("/", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/api/", service.WelcomeMsg).Methods(http.MethodGet)
router.HandleFunc("/api/", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/api/health", service.HealthCheck).Methods(http.MethodGet)
router.HandleFunc("/health", service.HealthCheck).Methods(http.MethodGet)
router.HandleFunc("/api/health", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/health", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/api/health-check", service.HealthCheck).Methods(http.MethodGet)
router.HandleFunc("/health-check", service.HealthCheck).Methods(http.MethodGet)
router.HandleFunc("/api/health-check", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/health-check", service.HeadResponse).Methods(http.MethodHead)
router.HandleFunc("/api/metrics/{type}", service.MetricsHandler).Methods(http.MethodGet)
router.HandleFunc("/metrics/{type}", service.MetricsHandler).Methods(http.MethodGet)
router.HandleFunc("/api/file_contents/{md5}", apiService.FileContents).Methods(http.MethodGet)
router.HandleFunc("/file_contents/{md5}", apiService.FileContents).Methods(http.MethodGet)
router.HandleFunc("/api/kb/details", apiService.KBDetails).Methods(http.MethodGet)
router.HandleFunc("/kb/details", apiService.KBDetails).Methods(http.MethodGet)
router.HandleFunc("/api/license/obligations/{license}", apiService.LicenseDetails).Methods(http.MethodGet)
router.HandleFunc("/license/obligations/{license}", apiService.LicenseDetails).Methods(http.MethodGet)
router.HandleFunc("/api/scan/direct", apiService.ScanDirect).Methods(http.MethodPost)
router.HandleFunc("/scan/direct", apiService.ScanDirect).Methods(http.MethodPost)
router.HandleFunc("/api/sbom/attribution", apiService.SbomAttribution).Methods(http.MethodPost)
router.HandleFunc("/sbom/attribution", apiService.SbomAttribution).Methods(http.MethodPost)
// Setup Open Telemetry (OTEL)
if config.Telemetry.Enabled {
router.Use(otelmux.Middleware("scanoss-api"))
}
srv := &http.Server{
Handler: router,
Addr: fmt.Sprintf("%s:%s", config.App.Addr, config.App.Port),
ReadHeaderTimeout: 5 * time.Second,
}
if len(allowedIPs) > 0 || len(deniedIPs) > 0 { // Configure the list of allowed/denied IPs to connect
zlog.S.Debugf("Filtering requests by allowed: %v, denied: %v, block-by-default: %v", allowedIPs, deniedIPs, config.Filtering.BlockByDefault)
handler := ipfilter.Wrap(router, ipfilter.Options{AllowedIPs: allowedIPs, BlockedIPs: deniedIPs,
BlockByDefault: config.Filtering.BlockByDefault, TrustProxy: config.Filtering.TrustProxy,
})
srv.Handler = handler // assign the filtered handler
}
// Open TCP port (in the background) and listen for requests
go func() {
var httpErr error
if startTLS {
zlog.S.Infof("starting REST server with TLS on %v ...", srv.Addr)
loadTLSConfig(config, srv)
httpErr = srv.ListenAndServeTLS("", "")
} else {
zlog.S.Infof("starting REST server on %v ...", srv.Addr)
httpErr = srv.ListenAndServe()
}
if httpErr != nil && fmt.Sprintf("%s", httpErr) != "http: Server closed" {
zlog.S.Panicf("issue encountered when starting service: %v", httpErr)
}
}()
// graceful shutdown
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
signal.Notify(c, syscall.SIGTERM)
<-c
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) // Set a deadline for gracefully shutting down
defer cancel()
if err := srv.Shutdown(ctx); err != nil {
zlog.S.Warnf("error shutting down server %s", err)
return fmt.Errorf("issue encountered while shutting down service")
} else {
zlog.S.Info("server gracefully stopped")
}
return nil
}
// loadTLSConfig loads the TLS config into memory (decrypting if required) and updates the Server config.
func loadTLSConfig(config *myconfig.ServerConfig, srv *http.Server) {
pemBlocks := loadCertFile(config)
pkey := loadPrivateKey(config)
var combinedPem []byte
for _, pemBlock := range pemBlocks {
combinedPem = append(combinedPem, pem.EncodeToMemory(pemBlock)...)
}
c, err := tls.X509KeyPair(combinedPem, pkey)
if err != nil {
zlog.S.Panicf("Failed to load TLS key pair (%v - %v): %v", config.TLS.KeyFile, config.TLS.CertFile, err)
}
cfg := &tls.Config{
MinVersion: tls.VersionTLS12,
CurvePreferences: []tls.CurveID{tls.CurveP521, tls.CurveP384, tls.CurveP256},
CipherSuites: []uint16{
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
},
Certificates: []tls.Certificate{c},
}
srv.TLSConfig = cfg
srv.TLSNextProto = make(map[string]func(*http.Server, *tls.Conn, http.Handler))
}
// loadCertFile load the certificate file into memory to use for hosting a TLS endpoint.
func loadCertFile(config *myconfig.ServerConfig) []*pem.Block {
b, err := os.ReadFile(config.TLS.CertFile)
if err != nil {
zlog.S.Panicf("Failed to load Cert file - %v: %v", config.TLS.CertFile, err)
}
var pemBlocks []*pem.Block
var v *pem.Block
for {
v, b = pem.Decode(b)
if v == nil {
break
}
if v.Type != "RSA PRIVATE KEY" && v.Type != "PRIVATE KEY" {
pemBlocks = append(pemBlocks, v)
} else {
zlog.S.Warnf("Unknown certificate type (%v): %v", config.TLS.CertFile, v.Type)
}
}
return pemBlocks
}
// loadPrivateKey loads the private key from file and attempt to decrypt it (if it's encrypted).
func loadPrivateKey(config *myconfig.ServerConfig) []byte {
var v *pem.Block
var pkey []byte
b, err := os.ReadFile(config.TLS.KeyFile)
if err != nil {
zlog.S.Panicf("Failed to load Key file - %v: %v", config.TLS.KeyFile, err)
}
for {
v, b = pem.Decode(b)
if v == nil {
break
}
if v.Type == "RSA PRIVATE KEY" || v.Type == "PRIVATE KEY" {
zlog.S.Debugf("Private Key: %v - %v", v.Type, v.Headers)
// pvt, err := openssl.LoadPrivateKeyFromPEMWithPassword(encryptedPEM, passPhrase)
//nolint:staticcheck
if x509.IsEncryptedPEMBlock(v) {
if len(config.TLS.Password) == 0 {
zlog.S.Panicf("Need to configure TLS Password to decrypt encrypted Key file: %v", config.TLS.KeyFile)
}
zlog.S.Infof("Decrypting key...")
//nolint:staticcheck
pkey, err = x509.DecryptPEMBlock(v, []byte(config.TLS.Password))
if err != nil {
zlog.S.Panicf("Failed to decrypt Key File (%v): %v", config.TLS.KeyFile, err)
}
pkey = pem.EncodeToMemory(&pem.Block{
Type: v.Type,
Bytes: pkey,
})
} else {
pkey = pem.EncodeToMemory(v)
}
} else {
zlog.S.Warnf("Unexpected certificate type (%v): %v", config.TLS.KeyFile, v.Type)
}
}
return pkey
}
// checkFile validates if the given file exists or not.
func checkFile(filename string) (bool, error) {
if len(filename) == 0 {
return false, fmt.Errorf("no file specified to check")
}
fileDetails, err := os.Stat(filename)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
return false, fmt.Errorf("file doest no exist")
}
return false, err
}
if fileDetails.IsDir() {
return false, fmt.Errorf("is a directory and not a file")
}
return true, nil
}
// checkTLS tests if TLS should be enabled or not.
func checkTLS(config *myconfig.ServerConfig) (bool, error) {
var startTLS = false
if len(config.TLS.CertFile) > 0 && len(config.TLS.KeyFile) > 0 {
cf, err := checkFile(config.TLS.CertFile)
if err != nil || !cf {
zlog.S.Errorf("Cert file is not accessible: %v", config.TLS.CertFile)
if err != nil {
return false, err
} else {
return false, fmt.Errorf("cert file not accesible: %v", config.TLS.CertFile)
}
}
kf, err := checkFile(config.TLS.KeyFile)
if err != nil || !kf {
zlog.S.Errorf("Key file is not accessible: %v", config.TLS.KeyFile)
if err != nil {
return false, err
} else {
return false, fmt.Errorf("key file not accesible: %v", config.TLS.KeyFile)
}
}
startTLS = true
}
return startTLS, nil
}
// loadFiltering loads the IP filtering options if available.
func loadFiltering(config *myconfig.ServerConfig) ([]string, []string, error) {
var allowedIPs []string
if len(config.Filtering.AllowListFile) > 0 {
cf, err := checkFile(config.Filtering.AllowListFile)
if err != nil || !cf {
zlog.S.Errorf("Allow List file is not accessible: %v", config.Filtering.AllowListFile)
if err != nil {
return nil, nil, err
} else {
return nil, nil, fmt.Errorf("allow list file not accesible: %v", config.Filtering.AllowListFile)
}
}
allowedIPs, err = myconfig.LoadFile(config.Filtering.AllowListFile)
if err != nil {
return nil, nil, err
}
}
var deniedIPs []string
if len(config.Filtering.DenyListFile) > 0 {
cf, err := checkFile(config.Filtering.DenyListFile)
if err != nil || !cf {
zlog.S.Errorf("Deny List file is not accessible: %v", config.Filtering.DenyListFile)
if err != nil {
return nil, nil, err
} else {
return nil, nil, fmt.Errorf("deny list file not accesible: %v", config.Filtering.DenyListFile)
}
}
deniedIPs, err = myconfig.LoadFile(config.Filtering.DenyListFile)
if err != nil {
return nil, nil, err
}
}
return allowedIPs, deniedIPs, nil
}
// initProviders sets up the OLTP Meter and Trace providers and the OLTP gRPC exporter.
func initProviders(config *myconfig.ServerConfig, version string, extraAttributes bool) (func(), error) {
zlog.L.Info("Setting up Open Telemetry providers.")
// Setup resource for the providers
ctx := context.Background()
var opts []resource.Option
// Extra service level attributes to report
if extraAttributes {
opts = append(opts, resource.WithFromEnv())
opts = append(opts, resource.WithProcess())
opts = append(opts, resource.WithTelemetrySDK())
}
opts = append(opts, resource.WithHost())
// the service name & version used to display traces in backends
opts = append(opts, resource.WithAttributes(
semconv.ServiceName(config.App.Name),
semconv.ServiceNamespace("scanoss-api"),
semconv.ServiceVersion(strings.TrimSpace(version)),
),
)
res, err := resource.New(ctx, opts...)
if err != nil {
zlog.S.Errorf("Failed to create oltp resource: %v", err)
return nil, err
}
// Setup meter provider & exporter
metricExp, err := otlpmetricgrpc.New(ctx,
otlpmetricgrpc.WithInsecure(),
otlpmetricgrpc.WithEndpoint(config.Telemetry.OltpExporter),
)
if err != nil {
zlog.S.Errorf("Failed to setup oltp metric grpc: %v", err)
return nil, err
}
meterProvider := sdkmetric.NewMeterProvider(
sdkmetric.WithResource(res),
sdkmetric.WithReader(
sdkmetric.NewPeriodicReader(
metricExp,
sdkmetric.WithInterval(2*time.Second),
),
),
)
otel.SetMeterProvider(meterProvider)
// Setup trace provider & exporter
traceClient := otlptracegrpc.NewClient(
otlptracegrpc.WithInsecure(),
otlptracegrpc.WithEndpoint(config.Telemetry.OltpExporter),
)
traceExp, err := otlptrace.New(ctx, traceClient)
if err != nil {
zlog.S.Errorf("Failed to create collector trace exporter: %v", err)
return nil, err
}
bsp := sdktrace.NewBatchSpanProcessor(traceExp)
tracerProvider := sdktrace.NewTracerProvider(
sdktrace.WithSampler(myconfig.GetTraceSampler(config)),
sdktrace.WithResource(res),
sdktrace.WithSpanProcessor(bsp),
)
// set global propagator to trace context (the default is no-op).
otel.SetTextMapPropagator(propagation.NewCompositeTextMapPropagator(propagation.TraceContext{}, propagation.Baggage{}))
otel.SetTracerProvider(tracerProvider)
// Return the function use to shut down the collector before exiting
return func() {
cxt, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
if err := traceExp.Shutdown(cxt); err != nil {
otel.Handle(err)
}
// pushes any last exports to the receiver
if err := meterProvider.Shutdown(cxt); err != nil {
otel.Handle(err)
}
}, nil
}