mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-30 14:50:36 +00:00
36db93ffb9
Appengine doesn't provide appengine tag anymore. Resort to use of syscall package for ExitStatus instead.
151 lines
3.9 KiB
Go
151 lines
3.9 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.
|
|
|
|
// +build freebsd netbsd openbsd linux darwin
|
|
|
|
package osutil
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"os/signal"
|
|
"path/filepath"
|
|
"strconv"
|
|
"syscall"
|
|
)
|
|
|
|
// ProcessTempDir creates a new temp dir in where and returns its path and an unique index.
|
|
// It also cleans up old, unused temp dirs after dead processes.
|
|
func ProcessTempDir(where string) (string, error) {
|
|
lk := filepath.Join(where, "instance-lock")
|
|
lkf, err := syscall.Open(lk, syscall.O_RDWR|syscall.O_CREAT, DefaultFilePerm)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer syscall.Close(lkf)
|
|
if err := syscall.Flock(lkf, syscall.LOCK_EX); err != nil {
|
|
return "", err
|
|
}
|
|
defer syscall.Flock(lkf, syscall.LOCK_UN)
|
|
|
|
for i := 0; i < 1e3; i++ {
|
|
path := filepath.Join(where, fmt.Sprintf("instance-%v", i))
|
|
pidfile := filepath.Join(path, ".pid")
|
|
err := os.Mkdir(path, DefaultDirPerm)
|
|
if os.IsExist(err) {
|
|
// Try to clean up.
|
|
if cleanupTempDir(path, pidfile) {
|
|
i--
|
|
}
|
|
continue
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if err := WriteFile(pidfile, []byte(strconv.Itoa(syscall.Getpid()))); err != nil {
|
|
return "", err
|
|
}
|
|
return path, nil
|
|
}
|
|
return "", fmt.Errorf("too many live instances")
|
|
}
|
|
|
|
func cleanupTempDir(path, pidfile string) bool {
|
|
data, err := ioutil.ReadFile(pidfile)
|
|
if err == nil && len(data) > 0 {
|
|
pid, err := strconv.Atoi(string(data))
|
|
if err == nil && pid > 1 {
|
|
if err := syscall.Kill(pid, 0); err == syscall.ESRCH {
|
|
if os.Remove(pidfile) == nil {
|
|
return os.RemoveAll(path) == nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// If err != nil, assume that the pid file is not created yet.
|
|
return false
|
|
}
|
|
|
|
// HandleInterrupts closes shutdown chan on first SIGINT
|
|
// (expecting that the program will gracefully shutdown and exit)
|
|
// and terminates the process on third SIGINT.
|
|
func HandleInterrupts(shutdown chan struct{}) {
|
|
go func() {
|
|
c := make(chan os.Signal, 3)
|
|
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
|
|
<-c
|
|
close(shutdown)
|
|
fmt.Fprint(os.Stderr, "SIGINT: shutting down...\n")
|
|
<-c
|
|
fmt.Fprint(os.Stderr, "SIGINT: shutting down harder...\n")
|
|
<-c
|
|
fmt.Fprint(os.Stderr, "SIGINT: terminating\n")
|
|
os.Exit(int(syscall.SIGINT))
|
|
}()
|
|
}
|
|
|
|
func LongPipe() (io.ReadCloser, io.WriteCloser, error) {
|
|
r, w, err := os.Pipe()
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("failed to create pipe: %v", err)
|
|
}
|
|
prolongPipe(r, w)
|
|
return r, w, err
|
|
}
|
|
|
|
// CreateMemMappedFile creates a temp file with the requested size and maps it into memory.
|
|
func CreateMemMappedFile(size int) (f *os.File, mem []byte, err error) {
|
|
f, err = ioutil.TempFile("./", "syzkaller-shm")
|
|
if err != nil {
|
|
err = fmt.Errorf("failed to create temp file: %v", err)
|
|
return
|
|
}
|
|
if err = f.Truncate(int64(size)); err != nil {
|
|
err = fmt.Errorf("failed to truncate shm file: %v", err)
|
|
f.Close()
|
|
os.Remove(f.Name())
|
|
return
|
|
}
|
|
f.Close()
|
|
fname := f.Name()
|
|
f, err = os.OpenFile(f.Name(), os.O_RDWR, DefaultFilePerm)
|
|
if err != nil {
|
|
err = fmt.Errorf("failed to open shm file: %v", err)
|
|
os.Remove(fname)
|
|
return
|
|
}
|
|
mem, err = syscall.Mmap(int(f.Fd()), 0, size, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_SHARED)
|
|
if err != nil {
|
|
err = fmt.Errorf("failed to mmap shm file: %v", err)
|
|
f.Close()
|
|
os.Remove(f.Name())
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
// CloseMemMappedFile destroys memory mapping created by CreateMemMappedFile.
|
|
func CloseMemMappedFile(f *os.File, mem []byte) error {
|
|
err1 := syscall.Munmap(mem)
|
|
err2 := f.Close()
|
|
err3 := os.Remove(f.Name())
|
|
switch {
|
|
case err1 != nil:
|
|
return err1
|
|
case err2 != nil:
|
|
return err2
|
|
case err3 != nil:
|
|
return err3
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ProcessExitStatus returns process exit status.
|
|
// This is here only because of fuchsia that does not implement WaitStatus.
|
|
func ProcessExitStatus(ps *os.ProcessState) int {
|
|
return ps.Sys().(syscall.WaitStatus).ExitStatus()
|
|
}
|