// Copyright 2015 syzkaller project authors. All rights reserved. // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. package main import ( "fmt" "html/template" "io" "io/ioutil" "log" "net" "net/http" _ "net/http/pprof" "os" "path/filepath" "runtime" "sort" "strconv" "strings" "time" "github.com/google/syzkaller/cover" "github.com/google/syzkaller/prog" "github.com/google/syzkaller/sys" ) const dateFormat = "Jan 02 2006 15:04:05 MST" func (mgr *Manager) initHttp() { http.HandleFunc("/", mgr.httpSummary) http.HandleFunc("/corpus", mgr.httpCorpus) http.HandleFunc("/crash", mgr.httpCrash) http.HandleFunc("/cover", mgr.httpCover) http.HandleFunc("/prio", mgr.httpPrio) http.HandleFunc("/file", mgr.httpFile) ln, err := net.Listen("tcp4", mgr.cfg.Http) if err != nil { fatalf("failed to listen on %v: %v", mgr.cfg.Http, err) } logf(0, "serving http on http://%v", ln.Addr()) go func() { err := http.Serve(ln, nil) log.Fatalf("failed to serve http: %v", err) }() } func (mgr *Manager) httpSummary(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() data := &UISummaryData{} data.Stats = append(data.Stats, UIStat{Name: "uptime", Value: fmt.Sprint(time.Since(mgr.startTime) / 1e9 * 1e9)}) data.Stats = append(data.Stats, UIStat{Name: "corpus", Value: fmt.Sprint(len(mgr.corpus))}) data.Stats = append(data.Stats, UIStat{Name: "triage queue", Value: fmt.Sprint(len(mgr.candidates))}) var err error if data.Crashes, err = mgr.collectCrashes(); err != nil { http.Error(w, fmt.Sprintf("failed to collect crashes: %v", err), http.StatusInternalServerError) return } type CallCov struct { count int cov cover.Cover } calls := make(map[string]*CallCov) for _, inp := range mgr.corpus { if calls[inp.Call] == nil { calls[inp.Call] = new(CallCov) } cc := calls[inp.Call] cc.count++ cc.cov = cover.Union(cc.cov, cover.Cover(inp.Cover)) } secs := uint64(1) if !mgr.firstConnect.IsZero() { secs = uint64(time.Since(mgr.firstConnect))/1e9 + 1 } var cov cover.Cover totalUnique := mgr.uniqueCover(true) for c, cc := range calls { cov = cover.Union(cov, cc.cov) unique := cover.Intersection(cc.cov, totalUnique) data.Calls = append(data.Calls, UICallType{ Name: c, Inputs: cc.count, Cover: len(cc.cov), UniqueCover: len(unique), }) } sort.Sort(UICallTypeArray(data.Calls)) data.Stats = append(data.Stats, UIStat{Name: "cover", Value: fmt.Sprint(len(cov)), Link: "/cover"}) var intStats []UIStat for k, v := range mgr.stats { val := fmt.Sprintf("%v", v) if x := v / secs; x >= 10 { val += fmt.Sprintf(" (%v/sec)", x) } else if x := v * 60 / secs; x >= 10 { val += fmt.Sprintf(" (%v/min)", x) } else { x := v * 60 * 60 / secs val += fmt.Sprintf(" (%v/hour)", x) } intStats = append(intStats, UIStat{Name: k, Value: val}) } sort.Sort(UIStatArray(intStats)) data.Stats = append(data.Stats, intStats...) if err := summaryTemplate.Execute(w, data); err != nil { http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError) return } } func (mgr *Manager) httpCrash(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() crashID := r.FormValue("id") crashes, err := mgr.collectCrashes() if err != nil { http.Error(w, fmt.Sprintf("failed to collect crashes: %v", err), http.StatusInternalServerError) return } var crash *UICrashType for _, c := range crashes { if c.ID == crashID { crash = &c break } } if crash == nil { http.Error(w, fmt.Sprintf("can't find crash %v", crashID), http.StatusInternalServerError) return } if err := crashTemplate.Execute(w, crash); err != nil { http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError) return } } func (mgr *Manager) httpCorpus(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() var data []UIInput call := r.FormValue("call") totalUnique := mgr.uniqueCover(false) for i, inp := range mgr.corpus { if call != inp.Call { continue } p, err := prog.Deserialize(inp.Prog) if err != nil { http.Error(w, fmt.Sprintf("failed to deserialize program: %v", err), http.StatusInternalServerError) return } unique := cover.Intersection(inp.Cover, totalUnique) data = append(data, UIInput{ Short: p.String(), Full: string(inp.Prog), Cover: len(inp.Cover), UniqueCover: len(unique), N: i, }) } sort.Sort(UIInputArray(data)) if err := corpusTemplate.Execute(w, data); err != nil { http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError) return } } func (mgr *Manager) httpCover(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() var cov cover.Cover call := r.FormValue("call") unique := r.FormValue("unique") != "" && call != "" perCall := false if n, err := strconv.Atoi(call); err == nil && n < len(mgr.corpus) { cov = mgr.corpus[n].Cover } else { perCall = true for _, inp := range mgr.corpus { if call == "" || call == inp.Call { cov = cover.Union(cov, cover.Cover(inp.Cover)) } } } if unique { cov = cover.Intersection(cov, mgr.uniqueCover(perCall)) } if err := generateCoverHtml(w, mgr.cfg.Vmlinux, cov); err != nil { http.Error(w, fmt.Sprintf("failed to generate coverage profile: %v", err), http.StatusInternalServerError) return } runtime.GC() } func (mgr *Manager) uniqueCover(perCall bool) cover.Cover { totalCover := make(map[uint32]int) callCover := make(map[string]map[uint32]bool) for _, inp := range mgr.corpus { if perCall && callCover[inp.Call] == nil { callCover[inp.Call] = make(map[uint32]bool) } for _, pc := range inp.Cover { if perCall { if callCover[inp.Call][pc] { continue } callCover[inp.Call][pc] = true } totalCover[pc]++ } } var cov cover.Cover for pc, count := range totalCover { if count == 1 { cov = append(cov, pc) } } cover.Canonicalize(cov) return cov } func (mgr *Manager) httpPrio(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() mgr.minimizeCorpus() call := r.FormValue("call") idx := -1 for i, c := range sys.Calls { if c.CallName == call { idx = i break } } if idx == -1 { http.Error(w, fmt.Sprintf("unknown call: %v", call), http.StatusInternalServerError) return } data := &UIPrioData{Call: call} for i, p := range mgr.prios[idx] { data.Prios = append(data.Prios, UIPrio{sys.Calls[i].Name, p}) } sort.Sort(UIPrioArray(data.Prios)) if err := prioTemplate.Execute(w, data); err != nil { http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError) return } } func (mgr *Manager) httpFile(w http.ResponseWriter, r *http.Request) { mgr.mu.Lock() defer mgr.mu.Unlock() file := filepath.Clean(r.FormValue("name")) if !strings.HasPrefix(file, "crashes/") && !strings.HasPrefix(file, "corpus/") { http.Error(w, "oh, oh, oh!", http.StatusInternalServerError) return } file = filepath.Join(mgr.cfg.Workdir, file) f, err := os.Open(file) if err != nil { http.Error(w, "failed to open the file", http.StatusInternalServerError) return } defer f.Close() w.Header().Set("Content-Type", "text/plain; charset=utf-8") io.Copy(w, f) } func (mgr *Manager) collectCrashes() ([]UICrashType, error) { dirs, err := ioutil.ReadDir(mgr.crashdir) if err != nil { return nil, err } var crashTypes []UICrashType for _, dir := range dirs { if !dir.IsDir() || len(dir.Name()) != 40 { continue } desc, err := ioutil.ReadFile(filepath.Join(mgr.crashdir, dir.Name(), "description")) if err != nil || len(desc) == 0 { continue } if desc[len(desc)-1] == '\n' { desc = desc[:len(desc)-1] } files, err := ioutil.ReadDir(filepath.Join(mgr.crashdir, dir.Name())) if err != nil { return nil, err } n := 0 var maxTime time.Time var crashes []UICrash for _, f := range files { if !strings.HasPrefix(f.Name(), "log") { continue } index, err := strconv.ParseUint(f.Name()[3:], 10, 64) if err != nil { continue } crash := UICrash{ Index: int(index), Time: f.ModTime().Format(dateFormat), Log: filepath.Join("crashes", dir.Name(), f.Name()), } reportFile := filepath.Join("crashes", dir.Name(), "report"+strconv.Itoa(int(index))) if _, err := os.Stat(filepath.Join(mgr.cfg.Workdir, reportFile)); err == nil { crash.Report = reportFile } crashes = append(crashes, crash) n++ if maxTime.Before(f.ModTime()) { maxTime = f.ModTime() } } sort.Sort(UICrashArray(crashes)) crashTypes = append(crashTypes, UICrashType{ Description: string(desc), LastTime: maxTime.Format(dateFormat), ID: dir.Name(), Count: n, Crashes: crashes, }) } sort.Sort(UICrashTypeArray(crashTypes)) return crashTypes, nil } type UISummaryData struct { Stats []UIStat Calls []UICallType Crashes []UICrashType } type UICrashType struct { Description string LastTime string ID string Count int Crashes []UICrash } type UICrash struct { Index int Time string Log string Report string } type UIStat struct { Name string Value string Link string } type UICallType struct { Name string Inputs int Cover int UniqueCover int } type UIInput struct { Short string Full string Calls int Cover int UniqueCover int N int } type UICallTypeArray []UICallType func (a UICallTypeArray) Len() int { return len(a) } func (a UICallTypeArray) Less(i, j int) bool { return a[i].Name < a[j].Name } func (a UICallTypeArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } type UIInputArray []UIInput func (a UIInputArray) Len() int { return len(a) } func (a UIInputArray) Less(i, j int) bool { return a[i].Cover > a[j].Cover } func (a UIInputArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } type UIStatArray []UIStat func (a UIStatArray) Len() int { return len(a) } func (a UIStatArray) Less(i, j int) bool { return a[i].Name < a[j].Name } func (a UIStatArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } type UICrashTypeArray []UICrashType func (a UICrashTypeArray) Len() int { return len(a) } func (a UICrashTypeArray) Less(i, j int) bool { return a[i].Description < a[j].Description } func (a UICrashTypeArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } type UICrashArray []UICrash func (a UICrashArray) Len() int { return len(a) } func (a UICrashArray) Less(i, j int) bool { return a[i].Index < a[j].Index } func (a UICrashArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } var summaryTemplate = template.Must(template.New("").Parse(addStyle(` syzkaller {{STYLE}} ŜɎΖҚΑĻĹӖЯ
{{range $s := $.Stats}} {{if $s.Link}} {{else}} {{end}} {{end}}
Stats:
{{$s.Name}}{{$s.Value}}{{$s.Value}}

{{range $c := $.Crashes}} {{end}}
Crashes:
Description Count Last Time
{{$c.Description}} {{$c.Count}} {{$c.LastTime}}

{{range $c := $.Calls}} {{$c.Name}} inputs:{{$c.Inputs}} cover:{{$c.Cover}} unique:{{$c.UniqueCover}} prio
{{end}} `))) var crashTemplate = template.Must(template.New("").Parse(addStyle(` {{.Description}} {{STYLE}} {{range $c := $.Crashes}} {{if $c.Report}} {{else}} {{end}} {{end}}
{{.Description}}
#{{$c.Index}} logreport
`))) var corpusTemplate = template.Must(template.New("").Parse(addStyle(` syzkaller corpus {{STYLE}} {{range $c := $}} {{$c.Short}} cover:{{$c.Cover}} unique:{{$c.UniqueCover}}
{{end}} `))) type UIPrioData struct { Call string Prios []UIPrio } type UIPrio struct { Call string Prio float32 } type UIPrioArray []UIPrio func (a UIPrioArray) Len() int { return len(a) } func (a UIPrioArray) Less(i, j int) bool { return a[i].Prio > a[j].Prio } func (a UIPrioArray) Swap(i, j int) { a[i], a[j] = a[j], a[i] } var prioTemplate = template.Must(template.New("").Parse(addStyle(` syzkaller priorities {{STYLE}} Priorities for {{$.Call}}

{{range $p := $.Prios}} {{printf "%.4f\t%s" $p.Prio $p.Call}}
{{end}} `))) func addStyle(html string) string { return strings.Replace(html, "{{STYLE}}", htmlStyle, -1) } const htmlStyle = ` `