From 54e36636a1909c1b0efdf11d80e168afdc045d9d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 14 Jun 2017 10:18:10 +0200 Subject: syz-dash: move patch parsing to pkg/kernel Patch parsing is not dashboard-specific and can be reused by other programs. --- pkg/kernel/patch.go | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 pkg/kernel/patch.go (limited to 'pkg/kernel/patch.go') diff --git a/pkg/kernel/patch.go b/pkg/kernel/patch.go new file mode 100644 index 000000000..b8e30dbec --- /dev/null +++ b/pkg/kernel/patch.go @@ -0,0 +1,69 @@ +// Copyright 2017 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 kernel + +import ( + "bufio" + "fmt" + "strings" +) + +func ParsePatch(text string) (title string, diff string, err error) { + s := bufio.NewScanner(strings.NewReader(text)) + parsingDiff := false + diffStarted := false + lastLine := "" + for s.Scan() { + ln := s.Text() + if strings.HasPrefix(ln, "--- a/") || strings.HasPrefix(ln, "--- /dev/null") { + parsingDiff = true + if title == "" { + title = lastLine + } + } + if parsingDiff { + if ln == "--" || ln == "-- " { + break + } + diff += ln + "\n" + continue + } + if strings.HasPrefix(ln, "diff --git") { + diffStarted = true + continue + } + if strings.HasPrefix(ln, "Subject: ") { + title = ln[len("Subject: "):] + continue + } + if ln == "" || title != "" || diffStarted { + continue + } + lastLine = ln + if strings.HasPrefix(ln, " ") { + title = ln[4:] + } + } + if err = s.Err(); err != nil { + return + } + if strings.Contains(strings.ToLower(title), "[patch") { + pos := strings.IndexByte(title, ']') + if pos == -1 { + err = fmt.Errorf("title contains '[patch' but not ']'") + return + } + title = title[pos+1:] + } + title = strings.TrimSpace(title) + if title == "" { + err = fmt.Errorf("failed to extract title") + return + } + if diff == "" { + err = fmt.Errorf("failed to extract diff") + return + } + return +} -- cgit mrf-deployment