Add a boolean flag to the sbox proto to request the executable bit to be set after copying a file. This will be used for sandboxing tools when copying a file in from the source tree that would normally get its executable bit set during installation. Bug: 124313442 Test: sbox_test.go Change-Id: Ie2c197bb5183ffc1bf63fd6effd175143cd324d4
244 lines
8.6 KiB
Go
244 lines
8.6 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: sbox.proto
|
|
|
|
package sbox_proto
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
// A set of commands to run in a sandbox.
|
|
type Manifest struct {
|
|
// A list of commands to run in the sandbox.
|
|
Commands []*Command `protobuf:"bytes,1,rep,name=commands" json:"commands,omitempty"`
|
|
// If set, GCC-style dependency files from any command that references __SBOX_DEPFILE__ will be
|
|
// merged into the given output file relative to the $PWD when sbox was started.
|
|
OutputDepfile *string `protobuf:"bytes,2,opt,name=output_depfile,json=outputDepfile" json:"output_depfile,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Manifest) Reset() { *m = Manifest{} }
|
|
func (m *Manifest) String() string { return proto.CompactTextString(m) }
|
|
func (*Manifest) ProtoMessage() {}
|
|
func (*Manifest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_9d0425bf0de86ed1, []int{0}
|
|
}
|
|
|
|
func (m *Manifest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Manifest.Unmarshal(m, b)
|
|
}
|
|
func (m *Manifest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Manifest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Manifest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Manifest.Merge(m, src)
|
|
}
|
|
func (m *Manifest) XXX_Size() int {
|
|
return xxx_messageInfo_Manifest.Size(m)
|
|
}
|
|
func (m *Manifest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Manifest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Manifest proto.InternalMessageInfo
|
|
|
|
func (m *Manifest) GetCommands() []*Command {
|
|
if m != nil {
|
|
return m.Commands
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Manifest) GetOutputDepfile() string {
|
|
if m != nil && m.OutputDepfile != nil {
|
|
return *m.OutputDepfile
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// SandboxManifest describes a command to run in the sandbox.
|
|
type Command struct {
|
|
// A list of copy rules to run before the sandboxed command. The from field is relative to the
|
|
// $PWD when sbox was run, the to field is relative to the top of the temporary sandbox directory.
|
|
CopyBefore []*Copy `protobuf:"bytes,1,rep,name=copy_before,json=copyBefore" json:"copy_before,omitempty"`
|
|
// If true, change the working directory to the top of the temporary sandbox directory before
|
|
// running the command. If false, leave the working directory where it was when sbox was started.
|
|
Chdir *bool `protobuf:"varint,2,opt,name=chdir" json:"chdir,omitempty"`
|
|
// The command to run.
|
|
Command *string `protobuf:"bytes,3,req,name=command" json:"command,omitempty"`
|
|
// A list of copy rules to run after the sandboxed command. The from field is relative to the
|
|
// top of the temporary sandbox directory, the to field is relative to the $PWD when sbox was run.
|
|
CopyAfter []*Copy `protobuf:"bytes,4,rep,name=copy_after,json=copyAfter" json:"copy_after,omitempty"`
|
|
// An optional hash of the input files to ensure the textproto files and the sbox rule reruns
|
|
// when the lists of inputs changes, even if the inputs are not on the command line.
|
|
InputHash *string `protobuf:"bytes,5,opt,name=input_hash,json=inputHash" json:"input_hash,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Command) Reset() { *m = Command{} }
|
|
func (m *Command) String() string { return proto.CompactTextString(m) }
|
|
func (*Command) ProtoMessage() {}
|
|
func (*Command) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_9d0425bf0de86ed1, []int{1}
|
|
}
|
|
|
|
func (m *Command) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Command.Unmarshal(m, b)
|
|
}
|
|
func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Command.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Command) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Command.Merge(m, src)
|
|
}
|
|
func (m *Command) XXX_Size() int {
|
|
return xxx_messageInfo_Command.Size(m)
|
|
}
|
|
func (m *Command) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Command.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Command proto.InternalMessageInfo
|
|
|
|
func (m *Command) GetCopyBefore() []*Copy {
|
|
if m != nil {
|
|
return m.CopyBefore
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Command) GetChdir() bool {
|
|
if m != nil && m.Chdir != nil {
|
|
return *m.Chdir
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Command) GetCommand() string {
|
|
if m != nil && m.Command != nil {
|
|
return *m.Command
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Command) GetCopyAfter() []*Copy {
|
|
if m != nil {
|
|
return m.CopyAfter
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Command) GetInputHash() string {
|
|
if m != nil && m.InputHash != nil {
|
|
return *m.InputHash
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// Copy describes a from-to pair of files to copy. The paths may be relative, the root that they
|
|
// are relative to is specific to the context the Copy is used in and will be different for
|
|
// from and to.
|
|
type Copy struct {
|
|
From *string `protobuf:"bytes,1,req,name=from" json:"from,omitempty"`
|
|
To *string `protobuf:"bytes,2,req,name=to" json:"to,omitempty"`
|
|
// If true, make the file executable after copying it.
|
|
Executable *bool `protobuf:"varint,3,opt,name=executable" json:"executable,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Copy) Reset() { *m = Copy{} }
|
|
func (m *Copy) String() string { return proto.CompactTextString(m) }
|
|
func (*Copy) ProtoMessage() {}
|
|
func (*Copy) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_9d0425bf0de86ed1, []int{2}
|
|
}
|
|
|
|
func (m *Copy) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Copy.Unmarshal(m, b)
|
|
}
|
|
func (m *Copy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Copy.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Copy) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Copy.Merge(m, src)
|
|
}
|
|
func (m *Copy) XXX_Size() int {
|
|
return xxx_messageInfo_Copy.Size(m)
|
|
}
|
|
func (m *Copy) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Copy.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Copy proto.InternalMessageInfo
|
|
|
|
func (m *Copy) GetFrom() string {
|
|
if m != nil && m.From != nil {
|
|
return *m.From
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Copy) GetTo() string {
|
|
if m != nil && m.To != nil {
|
|
return *m.To
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Copy) GetExecutable() bool {
|
|
if m != nil && m.Executable != nil {
|
|
return *m.Executable
|
|
}
|
|
return false
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Manifest)(nil), "sbox.Manifest")
|
|
proto.RegisterType((*Command)(nil), "sbox.Command")
|
|
proto.RegisterType((*Copy)(nil), "sbox.Copy")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("sbox.proto", fileDescriptor_9d0425bf0de86ed1)
|
|
}
|
|
|
|
var fileDescriptor_9d0425bf0de86ed1 = []byte{
|
|
// 268 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0x4f, 0x4b, 0xc3, 0x40,
|
|
0x10, 0xc5, 0xc9, 0x9f, 0xd2, 0x64, 0x6a, 0x7b, 0x18, 0x3c, 0xec, 0x45, 0x09, 0x01, 0x21, 0x45,
|
|
0xe8, 0xc1, 0x6f, 0x60, 0xf5, 0x20, 0x82, 0x97, 0x1c, 0x45, 0x08, 0x9b, 0x64, 0x43, 0x02, 0x4d,
|
|
0x26, 0xec, 0x6e, 0xa0, 0xfd, 0x56, 0x7e, 0x44, 0xd9, 0x49, 0x2a, 0x82, 0xb7, 0x99, 0xdf, 0xe3,
|
|
0xcd, 0x7b, 0x0c, 0x80, 0x29, 0xe9, 0x7c, 0x18, 0x35, 0x59, 0xc2, 0xd0, 0xcd, 0xe9, 0x17, 0x44,
|
|
0x1f, 0x72, 0xe8, 0x1a, 0x65, 0x2c, 0xee, 0x21, 0xaa, 0xa8, 0xef, 0xe5, 0x50, 0x1b, 0xe1, 0x25,
|
|
0x41, 0xb6, 0x79, 0xda, 0x1e, 0xd8, 0xf0, 0x32, 0xd3, 0xfc, 0x57, 0xc6, 0x07, 0xd8, 0xd1, 0x64,
|
|
0xc7, 0xc9, 0x16, 0xb5, 0x1a, 0x9b, 0xee, 0xa4, 0x84, 0x9f, 0x78, 0x59, 0x9c, 0x6f, 0x67, 0xfa,
|
|
0x3a, 0xc3, 0xf4, 0xdb, 0x83, 0xf5, 0x62, 0xc6, 0x47, 0xd8, 0x54, 0x34, 0x5e, 0x8a, 0x52, 0x35,
|
|
0xa4, 0xd5, 0x12, 0x00, 0xd7, 0x80, 0xf1, 0x92, 0x83, 0x93, 0x8f, 0xac, 0xe2, 0x2d, 0xac, 0xaa,
|
|
0xb6, 0xee, 0x34, 0x9f, 0x8d, 0xf2, 0x79, 0x41, 0x01, 0xeb, 0xa5, 0x81, 0x08, 0x12, 0x3f, 0x8b,
|
|
0xf3, 0xeb, 0x8a, 0x7b, 0x60, 0x77, 0x21, 0x1b, 0xab, 0xb4, 0x08, 0xff, 0xdd, 0x8e, 0x9d, 0xfa,
|
|
0xec, 0x44, 0xbc, 0x03, 0xe8, 0x06, 0xd7, 0xbc, 0x95, 0xa6, 0x15, 0x2b, 0xae, 0x1d, 0x33, 0x79,
|
|
0x93, 0xa6, 0x4d, 0xdf, 0x21, 0x74, 0x0e, 0x44, 0x08, 0x1b, 0x4d, 0xbd, 0xf0, 0x38, 0x88, 0x67,
|
|
0xdc, 0x81, 0x6f, 0x49, 0xf8, 0x4c, 0x7c, 0x4b, 0x78, 0x0f, 0xa0, 0xce, 0xaa, 0x9a, 0xac, 0x2c,
|
|
0x4f, 0x4a, 0x04, 0x5c, 0xf5, 0x0f, 0x39, 0xde, 0x7c, 0xf2, 0xc3, 0x0b, 0x7e, 0xf8, 0x4f, 0x00,
|
|
0x00, 0x00, 0xff, 0xff, 0x78, 0x37, 0x3e, 0x6a, 0x7d, 0x01, 0x00, 0x00,
|
|
}
|