Files
releases/cmd/oracle.go
kevinstyra 94a953150a cmd: allow branding
This change allows users that build their own executable or "spin" of
OPA to give it a name, and have it reference itself properly in help
texts.

It's a vanity thing, but I think some people would appreciate it, hat
tip to the international association of pedants.

Signed-off-by: Stephan Renatus <stephan@styra.com>
Co-authored-by: kevinstyra <83973046+kevinstyra@users.noreply.github.com>
2025-07-24 11:33:23 +02:00

210 lines
5.4 KiB
Go

// Copyright 2020 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package cmd
import (
"errors"
"fmt"
"io"
"os"
"strconv"
"strings"
"github.com/spf13/cobra"
"github.com/open-policy-agent/opa/cmd/internal/env"
"github.com/open-policy-agent/opa/internal/presentation"
"github.com/open-policy-agent/opa/v1/ast"
"github.com/open-policy-agent/opa/v1/ast/oracle"
"github.com/open-policy-agent/opa/v1/bundle"
"github.com/open-policy-agent/opa/v1/loader"
)
type findDefinitionParams struct {
stdinBuffer bool
bundlePaths repeatedStringFlag
v0Compatible bool
v1Compatible bool
}
func (p *findDefinitionParams) regoVersion() ast.RegoVersion {
// v0 takes precedence over v1
if p.v0Compatible {
return ast.RegoV0
}
if p.v1Compatible {
return ast.RegoV1
}
return ast.DefaultRegoVersion
}
func initOracle(root *cobra.Command, brand string) {
var findDefinitionParams findDefinitionParams
var oracleCommand = &cobra.Command{
Use: "oracle",
Short: "Answer questions about Rego",
Long: "Answer questions about Rego.",
Hidden: true,
}
var findDefinitionCommand = &cobra.Command{
Use: "find-definition",
Short: "Find the location of a definition",
Long: `Find the location of a definition.
The 'find-definition' command outputs the location of the definition of the symbol
or value referred to by the location passed as a positional argument. The location
should be of the form:
<filename>:<offset>
The offset can be specified as a decimal or hexadecimal number. The output format
specifies the file, row, and column of the definition:
{
"result": {
"file": "/path/to/some/policy.rego",
"row": 18,
"col": 1
}
}
If the 'find-definition' command cannot find a location it will print an error
reason. The exit status will be zero in this case:
{
"error": "no match found"
}
If an unexpected error occurs (e.g., a file read error) the subcommand will print
the error reason to stderr and exit with a non-zero status code.
If the --stdin-buffer flag is supplied the 'find-definition' subcommand will
consume stdin and treat the bytes read as the content of the file referenced
by the input location.`,
PreRunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 1 {
return errors.New("expected exactly one position <filename>:<offset>")
}
if _, _, err := parseFilenameOffset(args[0]); err != nil {
return err
}
return env.CmdFlags.CheckEnvironmentVariables(cmd)
},
RunE: func(cmd *cobra.Command, args []string) error {
cmd.SilenceErrors = true
cmd.SilenceUsage = true
if err := dofindDefinition(findDefinitionParams, os.Stdin, os.Stdout, args); err != nil {
fmt.Fprintln(os.Stderr, "error:", err)
return err
}
return nil
},
}
findDefinitionCommand.Flags().BoolVarP(&findDefinitionParams.stdinBuffer, "stdin-buffer", "", false, "read buffer from stdin")
addBundleFlag(findDefinitionCommand.Flags(), &findDefinitionParams.bundlePaths)
oracleCommand.AddCommand(findDefinitionCommand)
addV0CompatibleFlag(oracleCommand.Flags(), &findDefinitionParams.v0Compatible, false)
addV1CompatibleFlag(oracleCommand.Flags(), &findDefinitionParams.v1Compatible, false)
root.AddCommand(oracleCommand)
}
func dofindDefinition(params findDefinitionParams, stdin io.Reader, stdout io.Writer, args []string) error {
filename, offset, err := parseFilenameOffset(args[0])
if err != nil {
return err
}
var b *bundle.Bundle
if len(params.bundlePaths.v) != 0 {
if len(params.bundlePaths.v) > 1 {
return errors.New("not implemented: multiple bundle paths")
}
b, err = loader.NewFileLoader().
WithBundleLazyLoadingMode(bundle.HasExtension()).
WithSkipBundleVerification(true).
WithFilter(func(_ string, info os.FileInfo, _ int) bool {
// While directories may contain other things of interest for OPA (json, yaml..),
// only .rego will work reliably for the purpose of finding definitions
return strings.HasPrefix(info.Name(), ".rego")
}).
WithRegoVersion(params.regoVersion()).
AsBundle(params.bundlePaths.v[0])
if err != nil {
return err
}
}
modules := map[string]*ast.Module{}
if b != nil {
for _, mf := range b.Modules {
modules[mf.Path] = mf.Parsed
}
}
var bs []byte
if params.stdinBuffer {
stat, err := os.Stdin.Stat()
if err != nil {
return err
}
// Only read from stdin when there is something actually there
if (stat.Mode() & os.ModeCharDevice) == 0 {
bs, err = io.ReadAll(stdin)
if err != nil {
return err
}
}
}
// FindDefinition() will instantiate a new compiler, but we don't need to set the
// default rego-version because the passed modules already have the rego-version from parsing.
result, err := oracle.New().FindDefinition(oracle.DefinitionQuery{
Buffer: bs,
Filename: filename,
Pos: offset,
Modules: modules,
})
if err != nil {
return presentation.JSON(stdout, map[string]any{
"error": err,
})
}
return presentation.JSON(stdout, result)
}
func parseFilenameOffset(s string) (string, int, error) {
s = strings.TrimPrefix(s, "file://")
parts := strings.Split(s, ":")
if len(parts) != 2 {
return "", 0, errors.New("expected <filename>:<offset> argument")
}
base := 10
str := parts[1]
if strings.HasPrefix(parts[1], "0x") {
base = 16
str = parts[1][2:]
}
offset, err := strconv.ParseInt(str, base, 32)
if err != nil {
return "", 0, err
}
return parts[0], int(offset), nil
}