-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
613 lines (514 loc) · 15.1 KB
/
main.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
/*
* RESTful Clam by Sindre Lindstad
* sindrelindstad.com
*/
package main
import (
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"github.com/gorilla/mux"
)
// UploadResult contains payload to be returned by REST API on file upload
type UploadResult struct {
ID string `json:"id,omitempty"`
Error string `json:"error,omitempty"`
Checksum string `json:"sha256sum,omitempty"`
Output string `json:"output,omitempty"`
Scanned bool `json:"scanned"`
Infected bool `json:"infected"`
}
// ScanResult is the response given after an antivirus scan has finished
type ScanResult struct {
ID string `json:"id"`
Name string `json:"name,omitempty"`
Checksum string `json:"sha256sum,omitempty"`
Error string `json:"error,omitempty"`
Output string `json:"output,omitempty"`
Infected bool `json:"infected"`
}
// UploadBody is the body of a file upload POST request
type UploadBody struct {
Name string `json:"name,omitempty"`
Base64Str string `json:"base64"`
}
// ReturnRootMessage returns the message presented when accessing /
func ReturnRootMessage(w http.ResponseWriter, r *http.Request) {
str := "RESTful Clam!"
w.Header().Set("Content-Type", "text/plain")
json.NewEncoder(w).Encode(str)
return
}
// Log is a log handler
func Log(level int, message string) {
levelText := "DEBUG"
if level == 1 {
levelText = "ERROR"
}
if level == 2 {
levelText = "WARN"
}
if level == 3 {
levelText = "INFO"
}
if level == 4 {
levelText = "DEBUG"
}
log.Println(levelText + " " + message)
}
// ValidateBase64Str checks if a given string is a valid base64 encoded string
func ValidateBase64Str(str string) bool {
valid := true
content, err := base64.StdEncoding.DecodeString(str)
if err != nil {
Log(3, "Base64 string invalid: "+err.Error())
Log(4, "String: "+string(content))
valid = false
}
return valid
}
// DecodeBase64Str decodes a base64 encoded string
func DecodeBase64Str(str string) []byte {
content, err := base64.StdEncoding.DecodeString(str)
if err != nil {
return nil
}
return content
}
// GenerateUUID generates a unique identifier
func GenerateUUID() string {
b := make([]byte, 16)
_, err := rand.Read(b)
if err != nil {
Log(1, "Unable to generate random UUID string: "+err.Error())
}
uuid := fmt.Sprintf("%x-%x-%x-%x-%x",
b[0:4], b[4:6], b[6:8], b[8:10], b[10:])
return uuid
}
// GenerateChecksum generates a sha256sum from file
func GenerateChecksum(file string) string {
f, err := os.Open(file)
if err != nil {
Log(1, "Unable to open file: "+err.Error())
return ""
}
defer f.Close()
h := sha256.New()
if _, err := io.Copy(h, f); err != nil {
Log(1, "Unable to generate sha256 checksum: "+err.Error())
return ""
}
Log(3, "File checksum: "+hex.EncodeToString(h.Sum(nil)))
return hex.EncodeToString(h.Sum(nil))
}
// ScanPath scans a file path
func ScanPath(path string) (int, string) {
maxTimeout := "180"
Log(3, "Scanning path: "+path)
// Execute clamscan
cmd := exec.Command("timeout", "-t", maxTimeout, "clamdscan", path)
stdout, err := cmd.Output()
if err != nil {
if err.Error() == "exit status 1" { // File is infected
Log(3, "Found infected file(s)!")
return 1, string(stdout)
}
if err.Error() == "exit status 2" {
Log(4, "Unable to scan path: "+err.Error())
return 2, ""
}
if (err.Error() == "exit status 124") || (err.Error() == "exit status 127") {
Log(4, "Unable to scan path: "+err.Error())
return 3, ""
}
}
Log(3, "File(s) clean")
return 0, ""
}
// GetBaseDir fetches the current base directory path
func GetBaseDir() string {
baseDirPath := "/tmp" // Default
if baseDir := os.Getenv("DATA_DIR"); baseDir != "" {
baseDirPath = baseDir
}
return baseDirPath
}
// UploadFileBase64 handles incoming base64 encoded files
func UploadFileBase64(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
var output UploadResult
folder := GetBaseDir() + "/files"
folderMeta := GetBaseDir() + "/metadata"
Log(3, "Received base64 encoded file")
dec := json.NewDecoder(r.Body)
var uploadedFile UploadBody
for {
if err := dec.Decode(&uploadedFile); err == io.EOF {
break
} else if err != nil {
Log(1, "Unable to parse request body: "+err.Error())
}
}
decoded := DecodeBase64Str(string([]byte(uploadedFile.Base64Str)))
if !ValidateBase64Str(string([]byte(uploadedFile.Base64Str))) {
http.Error(w, "Base64 decoding failed", http.StatusBadRequest)
return
}
fileID := GenerateUUID()
path := folder + "/" + fileID + ".tmp"
pathMeta := folderMeta + "/" + fileID + ".tmp"
Log(3, "Saving file: "+path)
err := ioutil.WriteFile(path, decoded, 0644)
if err != nil {
Log(1, "Unable to save file: "+err.Error())
http.Error(w, "Unable to save file "+path, http.StatusBadRequest)
return
}
Log(4, "Saving metadata file: "+pathMeta)
err = ioutil.WriteFile(pathMeta, []byte(uploadedFile.Name), 0644)
if err != nil {
Log(1, "Unable to save metadata file: "+err.Error())
http.Error(w, "Unable to save metadata file "+pathMeta, http.StatusBadRequest)
return
}
checksum := GenerateChecksum(path)
if checksum == "" {
http.Error(w, "Unable to generate file checksum", http.StatusBadRequest)
return
}
output.ID = fileID
output.Checksum = checksum
output.Scanned = false
output.Infected = false
if params["scan"] == "true" {
output.Scanned = true
scanCode, scanOut := ScanPath(path)
if scanCode == 1 {
output.Infected = true
output.Output = scanOut
} else if scanCode > 1 {
http.Error(w, "Unable to scan file", http.StatusBadRequest)
return
}
os.Remove(path)
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(output)
return
}
// UploadFileForm handles incoming form posted files
func UploadFileForm(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
var output UploadResult
folder := GetBaseDir() + "/files"
folderMeta := GetBaseDir() + "/metadata"
Log(3, "Received multi-part/formdata file")
r.ParseMultipartForm(10 << 20)
file, handler, err := r.FormFile("file")
if err != nil {
Log(1, "Error retrieving file: "+err.Error())
return
}
defer file.Close()
fileID := GenerateUUID()
path := folder + "/" + fileID + ".tmp"
pathMeta := folderMeta + "/" + fileID + ".tmp"
fileContent, err := ioutil.ReadAll(file)
if err != nil {
Log(1, "Error reading file content: "+err.Error())
}
Log(3, "Saving file: "+path)
err = ioutil.WriteFile(path, fileContent, 0644)
if err != nil {
Log(1, "Unable to save file: "+err.Error())
http.Error(w, "Unable to save file "+path, http.StatusBadRequest)
return
}
Log(4, "Saving metadata file: "+pathMeta)
err = ioutil.WriteFile(pathMeta, []byte(handler.Filename), 0644)
if err != nil {
Log(1, "Unable to save metadata file: "+err.Error())
http.Error(w, "Unable to save metadata file "+pathMeta, http.StatusBadRequest)
return
}
checksum := GenerateChecksum(path)
if checksum == "" {
http.Error(w, "Unable to generate file checksum", http.StatusBadRequest)
return
}
output.ID = fileID
output.Checksum = checksum
output.Scanned = false
output.Infected = false
if params["scan"] == "true" {
output.Scanned = true
scanCode, scanOut := ScanPath(path)
if scanCode == 1 {
output.Infected = true
output.Output = scanOut
} else if scanCode > 1 {
http.Error(w, "Unable to scan file", http.StatusBadRequest)
return
}
os.Remove(path)
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(output)
return
}
// ScanFile scans a path and returns a result
func ScanFile(w http.ResponseWriter, r *http.Request) {
var output ScanResult
params := mux.Vars(r)
folder := GetBaseDir() + "/files"
folderMeta := GetBaseDir() + "/metadata"
path := folder + "/" + params["id"] + ".tmp"
pathMeta := folderMeta + "/" + params["id"] + ".tmp"
// Scan all files in folder
if params["id"] == "all" {
path = folder
}
checksum := ""
if params["id"] != "all" {
checksum = GenerateChecksum(path)
if checksum == "" {
http.Error(w, "Unable to generate file checksum - does the file still exist?", http.StatusBadRequest)
return
}
}
output.ID = params["id"]
output.Infected = false
output.Checksum = checksum
scanCode, scanOut := ScanPath(path)
if scanCode == 1 {
output.Infected = true
output.Output = scanOut
}
if scanCode == 2 {
http.Error(w, "The ClamAV daemon is not ready (yet) - please wait", http.StatusBadRequest)
return
}
if scanCode == 3 {
http.Error(w, "Clamscan execution failed", http.StatusBadRequest)
return
}
// Get filename from metadata
if params["id"] != "all" {
fileMetadata, err := os.Open(pathMeta)
if err != nil {
Log(2, "Unable to fetch metadata: "+err.Error())
}
defer fileMetadata.Close()
fileMetadataName, err := ioutil.ReadAll(fileMetadata)
output.Name = string(fileMetadataName)
}
// Remove file or empty folder
if params["id"] == "all" {
os.RemoveAll(folder)
os.MkdirAll(folder, 0755)
} else {
os.Remove(path)
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(output)
return
}
// UpdateDatabases updates the ClamAV virus database
func UpdateDatabases(w http.ResponseWriter, r *http.Request) {
maxTimeout := "600"
Log(3, "Virus database update requested - running freshclam")
// Execute freshclam
cmd := exec.Command("timeout", "-t", maxTimeout, "freshclam")
stdout, err := cmd.Output()
Log(3, string(stdout))
if err != nil {
if err.Error() == "exit status 1" {
Log(3, "Virus databases up-to-date")
w.WriteHeader(http.StatusOK)
return
}
Log(1, "Virus database update failed")
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
Log(3, "Virus database update finished")
w.WriteHeader(http.StatusOK)
return
}
// HealthCheckReadynessProbe checks if the ClamAV daemon is ready and working
func HealthCheckReadynessProbe(w http.ResponseWriter, r *http.Request) {
scanCode, scanOut := ScanPath("/tmp/eicar.txt")
if scanCode == 1 {
w.WriteHeader(http.StatusOK)
return
}
http.Error(w, "Not ready "+scanOut, http.StatusBadRequest)
return
}
// DeleteFile deletes a file
func DeleteFile(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
folder := GetBaseDir() + "/files"
path := folder + "/" + params["id"] + ".tmp"
err := os.Remove(path)
if err != nil {
Log(1, "File deletion failed")
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
Log(3, "File deleted")
w.WriteHeader(http.StatusOK)
return
}
// ServeSwaggerUI serves the static Swagger UI pages
func ServeSwaggerUI(router *mux.Router, pathPrefix string) {
router.PathPrefix(pathPrefix).Handler(http.StripPrefix(pathPrefix,
http.FileServer(http.Dir("/static/swaggerui/"))))
}
func main() {
Log(3, "Server started")
contextPath := ""
if apiContextPath := os.Getenv("API_CONTEXT_PATH"); apiContextPath != "" {
contextPath = apiContextPath
}
router := mux.NewRouter()
ServeSwaggerUI(router, "/swaggerui")
router.HandleFunc(contextPath+"/", ReturnRootMessage).Methods("GET")
router.HandleFunc(contextPath+"/api/v1", ReturnRootMessage).Methods("GET")
router.HandleFunc(contextPath+"/api/v1/file/base64", UploadFileBase64).Methods("POST").Queries("scan", "{scan:[a-z]+}")
router.HandleFunc(contextPath+"/api/v1/file/base64", UploadFileBase64).Methods("POST")
// swagger:operation POST /api/v1/file/base64 files uploadFileBase64
// ---
// summary: Uploads a base64 encoded file
// description: Uploads a base64 encoded file in a JSON formatted request body. Returns checksum and ID on successful file transfer.
// consumes:
// - application/json
// parameters:
// - in: body
// name: file
// description: The file to upload. Specifying a name is optional, but recommended.
// schema:
// type: object
// properties:
// base64:
// type: string
// name:
// type: string
// example:
// base64: WDVPIVAlQEFQWzRcUFpYNTQoUF4pN0NDKTd9JEVJQ0FSLVNUQU5EQVJELUFOVElWSVJVUy1URVNULUZJTEUhJEgrSCoK
// name: eicar.txt
// - in: query
// name: scan
// description: Scan instantly after upload
// type: boolean
// required: false
// example:
// scan: true
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/file/form", UploadFileForm).Methods("POST").Queries("scan", "{scan:[a-z]+}")
router.HandleFunc(contextPath+"/api/v1/file/form", UploadFileForm).Methods("POST")
// swagger:operation POST /api/v1/file/form files uploadFileForm
// ---
// summary: Uploads a file using form-data
// description: Uploads a file using multipart/form-data. Returns checksum and ID on successful file transfer.
// consumes:
// - multipart/form-data
// parameters:
// - in: formData
// name: file
// type: file
// description: The file to upload
// - in: query
// name: scan
// description: Scan instantly after upload
// type: boolean
// required: false
// example:
// scan: true
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/scan/{id}", ScanFile).Methods("GET")
// swagger:operation GET /api/v1/scan/{id} scanning scanFile
// ---
// summary: Scans a single file
// description: Scans a file, identified by ID. By default, the file will be deleted after being scanned.
// parameters:
// - name: id
// in: path
// description: File ID (UUID)
// type: string
// required: true
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/scan/all", ScanFile).Methods("GET")
// swagger:operation GET /api/v1/scan/all scanning scanAllFiles
// ---
// summary: Scans all files
// description: Scans all unscanned files. By default all files will be deleted after being scanned.
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/file/{id}", DeleteFile).Methods("DELETE")
// swagger:operation DELETE /api/v1/file/{id} files deleteFile
// ---
// summary: Deletes a file
// description: Deletes an unscanned file.
// parameters:
// - name: id
// in: path
// description: File ID (UUID)
// type: string
// required: true
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/database/update", UpdateDatabases).Methods("POST")
// swagger:operation POST /api/v1/database/update databases updateDatabases
// ---
// summary: Updates virus definition databases
// description: Updates virus databases using freshclam
// responses:
// "200":
// "OK"
// "400":
// "Something went wrong"
router.HandleFunc(contextPath+"/api/v1/health/ready", HealthCheckReadynessProbe).Methods("GET")
// swagger:operation GET /api/v1/health/ready health healthReady
// ---
// summary: Readyness probe
// description: Checks if the ClamAV daemon is ready and responding.
// responses:
// "200":
// "Ready"
// "400":
// "Not ready"
port := ":8080"
if apiPort := os.Getenv("API_PORT"); apiPort != "" {
port = ":" + apiPort
}
log.Fatal(http.ListenAndServe(port, router))
}