mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 21:30:33 +00:00
b771b17ec9
all: add openbsd support squash of the following commits: * openbsd: add mandatory bits * report: add OpenBSD support * executor: skip building kvm on OpenBSD * executor: add OpenBSD support Linking against libutil is necessary due to usage of openpty(3). * executor: fix typo in fail() message * fixup! report: add OpenBSD support * fixup! openbsd: add mandatory bits * fixup! openbsd: add mandatory bits * fixup! openbsd: add mandatory bits * fixup! report: add OpenBSD support * gometalinter: skip sys/openbsd
87 lines
2.7 KiB
Go
87 lines
2.7 KiB
Go
// 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/google/syzkaller/pkg/compiler"
|
|
)
|
|
|
|
type openbsd struct{}
|
|
|
|
func (*openbsd) prepare(sourcedir string, build bool, arches []string) error {
|
|
if sourcedir == "" {
|
|
return fmt.Errorf("provide path to kernel checkout via -sourcedir flag (or make extract SOURCEDIR)")
|
|
}
|
|
if !build {
|
|
return fmt.Errorf("openbsd requires -build flag")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (*openbsd) prepareArch(arch *Arch) error {
|
|
if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "arch", "amd64", "include"),
|
|
filepath.Join(arch.buildDir, "amd64")); err != nil {
|
|
return fmt.Errorf("failed to create link: %v", err)
|
|
}
|
|
if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "arch", "amd64", "include"),
|
|
filepath.Join(arch.buildDir, "machine")); err != nil {
|
|
return fmt.Errorf("failed to create link: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (*openbsd) processFile(arch *Arch, info *compiler.ConstInfo) (map[string]uint64, map[string]bool, error) {
|
|
args := []string{
|
|
"-fmessage-length=0",
|
|
"-nostdinc",
|
|
"-D_KERNEL",
|
|
"-D__BSD_VISIBLE=1",
|
|
"-I", filepath.Join(arch.sourceDir, "sys"),
|
|
"-I", filepath.Join(arch.sourceDir, "sys", "sys"),
|
|
"-I", filepath.Join(arch.sourceDir, "sys", "arch", "amd64"),
|
|
"-I", filepath.Join(arch.sourceDir, "common", "include"),
|
|
"-I", filepath.Join(arch.sourceDir, "sys", "compat", "linux", "common"),
|
|
"-I", arch.buildDir,
|
|
}
|
|
for _, incdir := range info.Incdirs {
|
|
args = append(args, "-I"+filepath.Join(arch.sourceDir, incdir))
|
|
}
|
|
// Syscall consts on openbsd have weird prefixes sometimes,
|
|
// try to extract consts with these prefixes as well.
|
|
compatNames := make(map[string][]string)
|
|
for _, val := range info.Consts {
|
|
const SYS = "SYS_"
|
|
if strings.HasPrefix(val, SYS) {
|
|
for _, prefix := range []string{"_", "__", "___"} {
|
|
for _, suffix := range []string{"30", "50"} {
|
|
compat := SYS + prefix + val[len(SYS):] + suffix
|
|
compatNames[val] = append(compatNames[val], compat)
|
|
info.Consts = append(info.Consts, compat)
|
|
}
|
|
}
|
|
} else {
|
|
compat := "LINUX_" + val
|
|
compatNames[val] = append(compatNames[val], compat)
|
|
info.Consts = append(info.Consts, compat)
|
|
}
|
|
}
|
|
res, undeclared, err := extract(info, "gcc", args, "#include <sys/syscall.h>", false)
|
|
for orig, compats := range compatNames {
|
|
for _, compat := range compats {
|
|
if undeclared[orig] && !undeclared[compat] {
|
|
res[orig] = res[compat]
|
|
delete(res, compat)
|
|
delete(undeclared, orig)
|
|
}
|
|
delete(undeclared, compat)
|
|
}
|
|
}
|
|
return res, undeclared, err
|
|
}
|