2019-08-13 23:33:52 +00:00
|
|
|
// Copyright 2019 Mikhail Klementev. All rights reserved.
|
|
|
|
// Use of this source code is governed by a AGPLv3 license
|
|
|
|
// (or later) that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"code.dumpstack.io/tools/out-of-tree/config"
|
|
|
|
"gopkg.in/logrusorgru/aurora.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
func logLogEntry(l logEntry) {
|
|
|
|
distroInfo := fmt.Sprintf("%s-%s {%s}", l.DistroType,
|
|
|
|
l.DistroRelease, l.KernelRelease)
|
|
|
|
|
|
|
|
artifactInfo := fmt.Sprintf("{[%s] %s}", l.Type, l.Name)
|
|
|
|
|
|
|
|
colored := ""
|
|
|
|
if l.Type == config.KernelExploit {
|
2019-08-16 18:30:46 +00:00
|
|
|
colored = aurora.Sprintf("[%4d %4s] [%s] %40s %40s: %s %s",
|
|
|
|
l.ID, l.Tag, l.Timestamp, artifactInfo, distroInfo,
|
2019-08-13 23:33:52 +00:00
|
|
|
genOkFail("BUILD", l.Build.Ok),
|
|
|
|
genOkFail("LPE", l.Test.Ok))
|
|
|
|
} else {
|
2019-08-16 18:30:46 +00:00
|
|
|
colored = aurora.Sprintf("[%4d %4s] [%s] %40s %40s: %s %s %s",
|
|
|
|
l.ID, l.Tag, l.Timestamp, artifactInfo, distroInfo,
|
2019-08-13 23:33:52 +00:00
|
|
|
genOkFail("BUILD", l.Build.Ok),
|
|
|
|
genOkFail("INSMOD", l.Run.Ok),
|
|
|
|
genOkFail("TEST", l.Test.Ok))
|
|
|
|
}
|
|
|
|
|
|
|
|
additional := ""
|
|
|
|
if l.KernelPanic {
|
|
|
|
additional = "(panic)"
|
|
|
|
} else if l.KilledByTimeout {
|
|
|
|
additional = "(timeout)"
|
|
|
|
}
|
|
|
|
|
|
|
|
if additional != "" {
|
|
|
|
fmt.Println(colored, additional)
|
|
|
|
} else {
|
|
|
|
fmt.Println(colored)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 18:30:46 +00:00
|
|
|
func logHandler(db *sql.DB, path, tag string, num int, rate bool) (err error) {
|
2019-08-13 23:33:52 +00:00
|
|
|
var les []logEntry
|
|
|
|
|
|
|
|
ka, kaErr := config.ReadArtifactConfig(path + "/.out-of-tree.toml")
|
|
|
|
if kaErr == nil {
|
2019-08-16 18:30:46 +00:00
|
|
|
les, err = getAllArtifactLogs(db, tag, num, ka)
|
2019-08-13 23:33:52 +00:00
|
|
|
} else {
|
2019-08-16 18:30:46 +00:00
|
|
|
les, err = getAllLogs(db, tag, num)
|
2019-08-13 23:33:52 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s := "\nS"
|
|
|
|
if rate {
|
|
|
|
if kaErr != nil {
|
|
|
|
err = kaErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s = fmt.Sprintf("{[%s] %s} Overall s", ka.Type, ka.Name)
|
|
|
|
|
2019-08-16 18:30:46 +00:00
|
|
|
les, err = getAllArtifactLogs(db, tag, math.MaxInt64, ka)
|
2019-08-13 23:33:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for _, l := range les {
|
|
|
|
logLogEntry(l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
success := 0
|
|
|
|
for _, l := range les {
|
|
|
|
if l.Test.Ok {
|
|
|
|
success += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
overall := float64(success) / float64(len(les))
|
|
|
|
fmt.Printf("%success rate: %.04f (~%.0f%%)\n",
|
|
|
|
s, overall, overall*100)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2019-08-13 23:54:45 +00:00
|
|
|
|
|
|
|
func logDumpHandler(db *sql.DB, id int) (err error) {
|
|
|
|
l, err := getLogByID(db, id)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("ID:", l.ID)
|
|
|
|
fmt.Println("Date:", l.Timestamp)
|
2019-08-16 18:30:46 +00:00
|
|
|
fmt.Println("Tag:", l.Tag)
|
2019-08-13 23:54:45 +00:00
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
fmt.Println("Type:", l.Type.String())
|
|
|
|
fmt.Println("Name:", l.Name)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
fmt.Println("Distro:", l.DistroType.String(), l.DistroRelease)
|
|
|
|
fmt.Println("Kernel:", l.KernelRelease)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
fmt.Println("Build ok:", l.Build.Ok)
|
|
|
|
if l.Type == config.KernelModule {
|
|
|
|
fmt.Println("Insmod ok:", l.Run.Ok)
|
|
|
|
}
|
|
|
|
fmt.Println("Test ok:", l.Test.Ok)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
fmt.Printf("Build output:\n%s\n", l.Build.Output)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
if l.Type == config.KernelModule {
|
|
|
|
fmt.Printf("Insmod output:\n%s\n", l.Run.Output)
|
|
|
|
fmt.Println()
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Test output:\n%s\n", l.Test.Output)
|
|
|
|
fmt.Println()
|
|
|
|
|
2019-08-14 22:59:34 +00:00
|
|
|
fmt.Printf("Qemu stdout:\n%s\n", l.Stdout)
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
fmt.Printf("Qemu stderr:\n%s\n", l.Stderr)
|
|
|
|
fmt.Println()
|
|
|
|
|
2019-08-13 23:54:45 +00:00
|
|
|
return
|
|
|
|
}
|