blob: 8a88e5007167e61c1abf18564c24e76e05986c85 [file] [log] [blame]
// Copyright 2018 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"
"time"
"github.com/google/syzkaller/pkg/ast"
"github.com/google/syzkaller/pkg/compiler"
"github.com/google/syzkaller/pkg/osutil"
"github.com/google/syzkaller/sys/targets"
)
var layerToLibs = map[string][]string{
"zircon": {
"fuchsia-mem",
"fuchsia-cobalt",
"fuchsia-ldsvc",
"fuchsia-process",
"fuchsia-io",
"fuchsia-net",
"fuchsia-net-stack",
"fuchsia-hardware-ethernet",
},
"garnet": {
"fuchsia.devicesettings",
"fuchsia.timezone",
"fuchsia.power",
"fuchsia.scpi",
},
}
func main() {
targetArch := os.Getenv("TARGETARCH")
target := targets.Get("fuchsia", targetArch)
if target == nil {
failf("unknown TARGETARCH %s", targetArch)
}
arch := target.KernelHeaderArch
sourceDir := os.Getenv("SOURCEDIR")
if !osutil.IsExist(sourceDir) {
failf("cannot find SOURCEDIR %s", sourceDir)
}
fidlgenPath := filepath.Join(
sourceDir,
"out",
arch,
"host_x64",
"fidlgen",
)
if !osutil.IsExist(fidlgenPath) {
failf("cannot find fidlgen %s", fidlgenPath)
}
var newFiles []string
for layer := range layerToLibs {
var jsonPathBase string
if layer == "garnet" {
jsonPathBase = filepath.Join(
sourceDir,
"out",
arch,
"fidling/gen/sdk/fidl",
)
} else {
jsonPathBase = filepath.Join(
sourceDir,
"out",
arch,
"fidling/gen",
layer,
"public/fidl",
)
}
for _, lib := range layerToLibs[layer] {
jsonPath := filepath.Join(
jsonPathBase,
lib,
fmt.Sprintf("%s.fidl.json", lib),
)
txtPathBase := lib
txtPathBase = strings.Replace(txtPathBase, "fuchsia.", "fidl_", 1)
txtPathBase = strings.Replace(txtPathBase, "fuchsia-", "fidl_", 1)
txtPath := fidlgen(
fidlgenPath,
jsonPath,
txtPathBase,
)
newFiles = append(newFiles, txtPath)
}
}
var errorPos ast.Pos
var errorMsg string
desc := ast.ParseGlob("*.txt", func(pos ast.Pos, msg string) {
errorPos = pos
errorMsg = msg
})
if desc == nil {
failf("parsing failed at %v: %v", errorPos, errorMsg)
}
unused := make(map[ast.Node]bool)
nodes, err := compiler.CollectUnused(desc, target, nil)
if err != nil {
failf("collect unused nodes failed: %v", err)
}
for _, n := range nodes {
unused[n] = true
}
pruned := desc.Filter(func(n ast.Node) bool {
_, ok := unused[n]
return !ok
})
for _, file := range newFiles {
desc := ast.Format(pruned.Filter(func(n ast.Node) bool {
pos, _, _ := n.Info()
return pos.File == file
}))
if err := osutil.WriteFile(file, desc); err != nil {
failf("%v", err)
}
}
}
func fidlgen(fidlgenPath string, jsonPath string, txtPathBase string) string {
if !osutil.IsExist(jsonPath) {
failf("cannot find %s", jsonPath)
}
_, err := osutil.RunCmd(time.Minute, "",
fidlgenPath,
"-generators", "syzkaller",
"-json", jsonPath,
"-output-base", txtPathBase,
"-include-base", txtPathBase,
)
if err != nil {
failf("fidlgen failed: %v", err)
}
return fmt.Sprintf("%s.txt", txtPathBase)
}
func failf(msg string, args ...interface{}) {
fmt.Fprintf(os.Stderr, msg+"\n", args...)
os.Exit(1)
}