diff --git a/src/agent/protocols/protos/oci.proto b/src/agent/protocols/protos/oci.proto index 236230075d..5de9b7d19a 100644 --- a/src/agent/protocols/protos/oci.proto +++ b/src/agent/protocols/protos/oci.proto @@ -455,7 +455,9 @@ message LinuxSeccompArg { message LinuxSyscall { repeated string Names = 1; string Action = 2; - uint32 ErrnoRet = 3; + oneof ErrnoRet { + uint32 errnoret = 3; + } repeated LinuxSeccompArg Args = 4 [(gogoproto.nullable) = false]; } diff --git a/src/agent/rustjail/src/configs/mod.rs b/src/agent/rustjail/src/configs/mod.rs index 21cc8b7c4d..c7e680d1a9 100644 --- a/src/agent/rustjail/src/configs/mod.rs +++ b/src/agent/rustjail/src/configs/mod.rs @@ -54,6 +54,8 @@ pub struct Seccomp { #[serde(default)] architectures: Vec, #[serde(default)] + flags: Vec, + #[serde(default)] syscalls: Vec, } @@ -74,9 +76,11 @@ pub struct Arg { #[derive(Serialize, Deserialize, Debug)] pub struct Syscall { #[serde(default, skip_serializing_if = "String::is_empty")] - name: String, + names: String, #[serde(default)] action: Action, + #[serde(default, rename = "errnoRet")] + errno_ret: u32, #[serde(default, skip_serializing_if = "Vec::is_empty")] args: Vec, } diff --git a/src/agent/rustjail/src/lib.rs b/src/agent/rustjail/src/lib.rs index 0d4f508653..e1559d830f 100644 --- a/src/agent/rustjail/src/lib.rs +++ b/src/agent/rustjail/src/lib.rs @@ -367,6 +367,13 @@ fn seccomp_grpc_to_oci(sec: &grpc::LinuxSeccomp) -> oci::LinuxSeccomp { for sys in sec.Syscalls.iter() { let mut args = Vec::new(); + let errno_ret: u32; + + if sys.has_errnoret() { + errno_ret = sys.get_errnoret(); + } else { + errno_ret = libc::EPERM as u32; + } for arg in sys.Args.iter() { args.push(oci::LinuxSeccompArg { @@ -380,7 +387,7 @@ fn seccomp_grpc_to_oci(sec: &grpc::LinuxSeccomp) -> oci::LinuxSeccomp { r.push(oci::LinuxSyscall { names: sys.Names.clone().into_vec(), action: sys.Action.clone(), - errno_ret: sys.ErrnoRet, + errno_ret, args, }); } diff --git a/src/runtime/virtcontainers/pkg/agent/protocols/grpc/oci.pb.go b/src/runtime/virtcontainers/pkg/agent/protocols/grpc/oci.pb.go index f14e7d49ae..4a7cd2d00b 100644 --- a/src/runtime/virtcontainers/pkg/agent/protocols/grpc/oci.pb.go +++ b/src/runtime/virtcontainers/pkg/agent/protocols/grpc/oci.pb.go @@ -1305,7 +1305,8 @@ var xxx_messageInfo_LinuxInterfacePriority proto.InternalMessageInfo type LinuxSeccomp struct { DefaultAction string `protobuf:"bytes,1,opt,name=DefaultAction,proto3" json:"DefaultAction,omitempty"` Architectures []string `protobuf:"bytes,2,rep,name=Architectures,proto3" json:"Architectures,omitempty"` - Syscalls []LinuxSyscall `protobuf:"bytes,3,rep,name=Syscalls,proto3" json:"Syscalls"` + Flags []string `protobuf:"bytes,3,rep,name=Flags,proto3" json:"Flags,omitempty"` + Syscalls []LinuxSyscall `protobuf:"bytes,4,rep,name=Syscalls,proto3" json:"Syscalls"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1386,12 +1387,15 @@ func (m *LinuxSeccompArg) XXX_DiscardUnknown() { var xxx_messageInfo_LinuxSeccompArg proto.InternalMessageInfo type LinuxSyscall struct { - Names []string `protobuf:"bytes,1,rep,name=Names,proto3" json:"Names,omitempty"` - Action string `protobuf:"bytes,2,opt,name=Action,proto3" json:"Action,omitempty"` - Args []LinuxSeccompArg `protobuf:"bytes,3,rep,name=Args,proto3" json:"Args"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Names []string `protobuf:"bytes,1,rep,name=Names,proto3" json:"Names,omitempty"` + Action string `protobuf:"bytes,2,opt,name=Action,proto3" json:"Action,omitempty"` + // Types that are valid to be assigned to ErrnoRet: + // *LinuxSyscall_Errnoret + ErrnoRet isLinuxSyscall_ErrnoRet `protobuf_oneof:"ErrnoRet"` + Args []LinuxSeccompArg `protobuf:"bytes,4,rep,name=Args,proto3" json:"Args"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *LinuxSyscall) Reset() { *m = LinuxSyscall{} } @@ -1426,6 +1430,40 @@ func (m *LinuxSyscall) XXX_DiscardUnknown() { var xxx_messageInfo_LinuxSyscall proto.InternalMessageInfo +type isLinuxSyscall_ErrnoRet interface { + isLinuxSyscall_ErrnoRet() + Equal(interface{}) bool + MarshalTo([]byte) (int, error) + Size() int +} + +type LinuxSyscall_Errnoret struct { + Errnoret uint32 `protobuf:"varint,3,opt,name=errnoret,proto3,oneof" json:"errnoret,omitempty"` +} + +func (*LinuxSyscall_Errnoret) isLinuxSyscall_ErrnoRet() {} + +func (m *LinuxSyscall) GetErrnoRet() isLinuxSyscall_ErrnoRet { + if m != nil { + return m.ErrnoRet + } + return nil +} + +func (m *LinuxSyscall) GetErrnoret() uint32 { + if x, ok := m.GetErrnoRet().(*LinuxSyscall_Errnoret); ok { + return x.Errnoret + } + return 0 +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*LinuxSyscall) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*LinuxSyscall_Errnoret)(nil), + } +} + type LinuxIntelRdt struct { // The schema for L3 cache id and capacity bitmask (CBM) // Format: "L3:=;=;..." @@ -1508,138 +1546,140 @@ func init() { } var fileDescriptor_e42fef2823778fc8 = []byte{ - // 2081 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x18, 0x4b, 0x73, 0x1b, 0x49, - 0x79, 0x47, 0x23, 0xcb, 0x52, 0x2b, 0x76, 0x92, 0xde, 0xac, 0x77, 0x08, 0x5b, 0x5a, 0xef, 0x90, - 0x02, 0x03, 0xc1, 0x2e, 0x12, 0x1e, 0xcb, 0xf2, 0xa8, 0x92, 0xed, 0x24, 0x56, 0xad, 0x1d, 0x89, - 0x96, 0xbd, 0x86, 0x3d, 0x6c, 0x55, 0x7b, 0xd4, 0x96, 0x7a, 0x3d, 0x9a, 0x9e, 0xea, 0x69, 0xd9, - 0x31, 0x27, 0xb8, 0x71, 0xa4, 0x8a, 0x5f, 0xc0, 0x09, 0xf8, 0x07, 0x14, 0x27, 0x6e, 0xa4, 0x38, - 0x71, 0xa4, 0x8a, 0x2a, 0x20, 0xbe, 0x73, 0xe7, 0x48, 0x7d, 0xfd, 0x18, 0xb5, 0x24, 0x1b, 0x36, - 0x70, 0x52, 0x7f, 0xcf, 0xee, 0xef, 0xfd, 0x8d, 0x50, 0x77, 0xc8, 0xd5, 0x68, 0x72, 0xb2, 0x99, - 0x88, 0xf1, 0xd6, 0x19, 0x55, 0xf4, 0x6b, 0x89, 0xc8, 0x14, 0xe5, 0x19, 0x93, 0xc5, 0x02, 0x5c, - 0xc8, 0x64, 0x8b, 0x0e, 0x59, 0xa6, 0xb6, 0x72, 0x29, 0x94, 0x48, 0x44, 0x5a, 0x98, 0x53, 0xb1, - 0x25, 0x12, 0xbe, 0xa9, 0x8f, 0xb8, 0x3a, 0x94, 0x79, 0x72, 0x3f, 0x1e, 0x8a, 0xa1, 0x30, 0xc4, - 0x93, 0xc9, 0xe9, 0x16, 0x40, 0x1a, 0xd0, 0x27, 0xc3, 0x19, 0xff, 0x31, 0x44, 0xd5, 0x7e, 0xce, - 0x12, 0x1c, 0xa1, 0xe5, 0x8f, 0x98, 0x2c, 0xb8, 0xc8, 0xa2, 0x60, 0x3d, 0xd8, 0x68, 0x10, 0x07, - 0xe2, 0x2f, 0xa1, 0xe5, 0x9e, 0x14, 0x09, 0x2b, 0x8a, 0xa8, 0xb2, 0x1e, 0x6c, 0x34, 0x1f, 0xad, - 0x6c, 0x82, 0xfa, 0x4d, 0x8b, 0x24, 0x8e, 0x8a, 0x5b, 0xa8, 0x4a, 0x84, 0x50, 0x51, 0xa8, 0xb9, - 0x90, 0xe1, 0x02, 0x0c, 0xd1, 0x78, 0x7c, 0x1f, 0xd5, 0xf7, 0x44, 0xa1, 0x32, 0x3a, 0x66, 0x51, - 0x55, 0xdf, 0x51, 0xc2, 0xf8, 0xcb, 0xa8, 0x76, 0x20, 0x26, 0x99, 0x2a, 0xa2, 0xa5, 0xf5, 0x70, - 0xa3, 0xf9, 0xa8, 0x69, 0xa4, 0x35, 0x6e, 0xbb, 0xfa, 0xf2, 0x6f, 0xef, 0xbe, 0x41, 0x2c, 0x03, - 0x7e, 0x0f, 0x2d, 0xed, 0x09, 0x71, 0x56, 0x44, 0x35, 0x7d, 0x8f, 0xe5, 0xd4, 0x28, 0x62, 0x28, - 0xf8, 0xfb, 0xa8, 0xd9, 0xce, 0x32, 0xa1, 0xa8, 0xe2, 0x22, 0x2b, 0xa2, 0x65, 0xad, 0xf2, 0xf3, - 0x86, 0x11, 0xac, 0xdd, 0xf4, 0xa8, 0x4f, 0x32, 0x25, 0x2f, 0x89, 0xcf, 0x0f, 0x37, 0xec, 0xf3, - 0x6c, 0xf2, 0x22, 0xaa, 0xfb, 0x37, 0x68, 0x14, 0x31, 0x14, 0x70, 0x4a, 0x5f, 0xa4, 0x54, 0xf2, - 0x22, 0x6a, 0xf8, 0x4e, 0xb1, 0x48, 0xe2, 0xa8, 0xc0, 0x78, 0xcc, 0xb3, 0x81, 0xb8, 0x28, 0x22, - 0xe4, 0x33, 0x5a, 0x24, 0x71, 0xd4, 0xfb, 0x3f, 0x40, 0x77, 0xe6, 0x5f, 0x85, 0xef, 0xa0, 0xf0, - 0x8c, 0x5d, 0xda, 0x80, 0xc0, 0x11, 0xdf, 0x43, 0x4b, 0xe7, 0x34, 0x9d, 0x30, 0x1d, 0x8a, 0x06, - 0x31, 0xc0, 0x07, 0x95, 0xf7, 0x83, 0xf8, 0xf7, 0x61, 0x19, 0x27, 0xf0, 0xf4, 0x21, 0x93, 0x63, - 0x9e, 0xd1, 0x54, 0x0b, 0xd7, 0x49, 0x09, 0xe3, 0xaf, 0xa2, 0xe6, 0x8e, 0xc8, 0x0a, 0x91, 0xb2, - 0x3e, 0xff, 0x09, 0xb3, 0x21, 0x6d, 0x98, 0x47, 0x6d, 0x8b, 0x17, 0xc4, 0xa7, 0xe2, 0x07, 0xa8, - 0x7a, 0x54, 0x30, 0x39, 0x1b, 0x52, 0xc0, 0xd8, 0x98, 0x68, 0x2a, 0xc6, 0xa8, 0xda, 0x96, 0xc3, - 0x22, 0xaa, 0xae, 0x87, 0x1b, 0x0d, 0xa2, 0xcf, 0xf0, 0xf4, 0x27, 0xd9, 0xb9, 0x8e, 0x66, 0x83, - 0xc0, 0x11, 0x30, 0x3b, 0x17, 0x03, 0x1d, 0xb5, 0x06, 0x81, 0x23, 0xfe, 0x2e, 0xba, 0xb5, 0x43, - 0x73, 0x7a, 0xc2, 0x53, 0xae, 0x38, 0x83, 0x38, 0xc1, 0x2d, 0x6f, 0x7b, 0xee, 0xf6, 0xc9, 0x64, - 0x86, 0x19, 0x7f, 0x1d, 0x2d, 0x93, 0x94, 0x8f, 0xb9, 0x2a, 0xa2, 0xba, 0x8e, 0xef, 0x5d, 0x9b, - 0x96, 0xdd, 0x7e, 0xe7, 0x47, 0x86, 0x62, 0x1f, 0xe9, 0xf8, 0xf0, 0x06, 0xba, 0xfd, 0x5c, 0x3c, - 0x67, 0x17, 0x3d, 0xc9, 0xcf, 0x79, 0xca, 0x86, 0xcc, 0x04, 0xaf, 0x4e, 0xe6, 0xd1, 0xc0, 0xd9, - 0xce, 0x73, 0x2a, 0xc7, 0x42, 0xf6, 0xa4, 0x38, 0xe5, 0x29, 0xd3, 0xd1, 0x6b, 0x90, 0x79, 0x34, - 0x5e, 0x47, 0xcd, 0x6e, 0xf7, 0xa0, 0x9f, 0x08, 0xc9, 0xda, 0x83, 0x4f, 0xa3, 0xe6, 0x7a, 0xb0, - 0x11, 0x12, 0x1f, 0x85, 0x63, 0x74, 0xab, 0xcf, 0x52, 0xb0, 0x66, 0x9f, 0x9e, 0xb0, 0x34, 0xba, - 0xa5, 0x15, 0xcd, 0xe0, 0xe2, 0xc7, 0x28, 0xdc, 0x16, 0x2f, 0xf0, 0x1a, 0xaa, 0xed, 0x31, 0x3e, - 0x1c, 0x29, 0x1d, 0xb5, 0x15, 0x62, 0x21, 0x88, 0xfa, 0x31, 0x1f, 0xa8, 0x91, 0x8e, 0xd6, 0x0a, - 0x31, 0x40, 0x9c, 0x99, 0xe0, 0x80, 0x63, 0x8f, 0x3a, 0xbb, 0x56, 0x04, 0x8e, 0x80, 0x79, 0xd6, - 0xd9, 0xb5, 0xdc, 0x70, 0xc4, 0x5f, 0x44, 0xab, 0xed, 0xc1, 0x80, 0x43, 0x6e, 0xd1, 0xf4, 0x19, - 0x1f, 0x14, 0x51, 0xb8, 0x1e, 0x6e, 0xac, 0x90, 0x39, 0x2c, 0x64, 0x0e, 0xe8, 0xf4, 0x6b, 0xd4, - 0xc1, 0xf1, 0xaf, 0x03, 0x74, 0x77, 0x21, 0x2a, 0x20, 0xb1, 0x2d, 0x26, 0xd9, 0x80, 0x67, 0xc3, - 0x28, 0xd0, 0xd1, 0x2e, 0x61, 0xfc, 0x0e, 0x6a, 0x3c, 0x39, 0x3d, 0x65, 0x89, 0xe2, 0xe7, 0x90, - 0x69, 0x40, 0x9c, 0x22, 0xc0, 0x75, 0x9d, 0x6c, 0xc4, 0x24, 0x57, 0xf4, 0x24, 0x65, 0xfa, 0x41, - 0x0d, 0xe2, 0xa3, 0x40, 0xbe, 0x07, 0x79, 0xab, 0x14, 0x1b, 0xd8, 0xec, 0x9a, 0x22, 0xa0, 0x65, - 0xb5, 0xc7, 0x27, 0x9c, 0x65, 0xca, 0xa6, 0x99, 0x03, 0xe3, 0x0e, 0x6a, 0x7a, 0x69, 0x00, 0xf9, - 0x79, 0x78, 0x99, 0x33, 0x5b, 0x47, 0xfa, 0x0c, 0xb8, 0x3d, 0x2a, 0x07, 0xda, 0x47, 0x55, 0xa2, - 0xcf, 0x80, 0xeb, 0x8b, 0x53, 0xd3, 0xc0, 0xaa, 0x44, 0x9f, 0x63, 0x81, 0x96, 0x74, 0xdf, 0x81, - 0xd7, 0x0e, 0x58, 0xa1, 0x78, 0xa6, 0x0b, 0xd4, 0xea, 0xf2, 0x51, 0x10, 0xbd, 0x42, 0x4c, 0x64, - 0xe2, 0x8a, 0xd3, 0x42, 0xa0, 0x56, 0xc1, 0xf5, 0xa1, 0xb9, 0x1e, 0xce, 0xf0, 0x76, 0x91, 0x9b, - 0xee, 0x64, 0xec, 0x72, 0x60, 0xfc, 0x2d, 0xd3, 0x45, 0x41, 0xaa, 0x47, 0xd5, 0xc8, 0x3d, 0x1a, - 0xce, 0xe0, 0x6b, 0xc2, 0xe8, 0x40, 0x64, 0xe9, 0xa5, 0xbe, 0xa3, 0x4e, 0x4a, 0x38, 0xfe, 0x65, - 0x60, 0xfb, 0x22, 0x7e, 0x88, 0xea, 0x3d, 0xc9, 0x0a, 0x45, 0xa5, 0xd2, 0x11, 0x29, 0x0b, 0x17, - 0xc8, 0xb6, 0x26, 0x4a, 0x0e, 0xbc, 0x89, 0x1a, 0x3d, 0x51, 0x28, 0xc3, 0x5e, 0xb9, 0x81, 0x7d, - 0xca, 0xa2, 0xb5, 0x6b, 0x40, 0xe4, 0x3a, 0x64, 0xd7, 0x6b, 0xb7, 0x1c, 0xf1, 0xc7, 0xa8, 0x0a, - 0xf8, 0x6b, 0xad, 0x71, 0x6d, 0xa3, 0xb2, 0xd8, 0x36, 0xc2, 0x69, 0xdb, 0x88, 0xd0, 0xf2, 0x21, - 0x1f, 0x33, 0x31, 0x51, 0x3a, 0x21, 0x43, 0xe2, 0xc0, 0xf8, 0xb7, 0x4b, 0xb6, 0x4f, 0xe3, 0xef, - 0xa1, 0xe6, 0x51, 0x67, 0xf7, 0x80, 0xe6, 0x39, 0xcf, 0x86, 0x85, 0x35, 0xfa, 0x9e, 0xd7, 0x47, - 0x4a, 0xa2, 0x7d, 0xa0, 0xcf, 0x0e, 0xd2, 0xcf, 0x3c, 0xe9, 0xca, 0x7f, 0x97, 0xf6, 0xd8, 0xf1, - 0x16, 0xaa, 0xf5, 0x2f, 0x8b, 0x44, 0xa5, 0xd6, 0x1b, 0x7e, 0xfb, 0xda, 0x34, 0x14, 0x33, 0x62, - 0x2c, 0x1b, 0x7e, 0x84, 0x1a, 0x84, 0x99, 0xd4, 0x28, 0xb4, 0x49, 0xb3, 0x97, 0x95, 0x34, 0x32, - 0x65, 0x83, 0xe4, 0xdb, 0x19, 0x4a, 0x31, 0xc9, 0x0b, 0xed, 0xc5, 0x25, 0x93, 0x7c, 0x1e, 0x0a, - 0x7f, 0x80, 0xd0, 0x73, 0x3a, 0x66, 0x45, 0x4e, 0x41, 0x6d, 0x6d, 0xc1, 0x86, 0x92, 0x68, 0x6d, - 0xf0, 0xb8, 0xa1, 0x95, 0xee, 0xb2, 0x73, 0x9e, 0x30, 0x37, 0x2a, 0xef, 0x7a, 0x82, 0x86, 0xe2, - 0x5a, 0xa9, 0xe5, 0xc3, 0x0f, 0xd1, 0x72, 0x9f, 0x25, 0x89, 0x18, 0xe7, 0x76, 0x48, 0x62, 0x4f, - 0xc4, 0x52, 0x88, 0x63, 0xc1, 0x0f, 0xd1, 0x5d, 0xc8, 0xe9, 0xd3, 0xa2, 0x27, 0x45, 0x4e, 0x87, - 0xa6, 0x82, 0x1a, 0xda, 0x88, 0x45, 0x02, 0x18, 0x7b, 0x40, 0x8b, 0x33, 0x36, 0x00, 0xc3, 0x60, - 0x6c, 0xea, 0xbe, 0xe0, 0xa1, 0xf0, 0x03, 0xb4, 0xe2, 0xf2, 0xde, 0xf0, 0x34, 0x35, 0xcf, 0x2c, - 0x12, 0xb7, 0x10, 0xd2, 0xa5, 0xeb, 0xb7, 0x5d, 0x0f, 0x83, 0xb7, 0x50, 0xbd, 0x93, 0x29, 0x96, - 0x92, 0x81, 0x8a, 0x56, 0xb4, 0x11, 0x6f, 0xfa, 0x41, 0xb7, 0x24, 0x52, 0x32, 0xdd, 0xff, 0x0e, - 0x6a, 0x7a, 0x01, 0x7d, 0xad, 0xe9, 0xfc, 0x6e, 0xb9, 0x06, 0x00, 0xd3, 0x60, 0x32, 0x1e, 0x3b, - 0x41, 0x03, 0x00, 0x83, 0x5b, 0x19, 0xae, 0x67, 0xf8, 0x04, 0xad, 0xce, 0x26, 0xa3, 0x9e, 0x16, - 0xa2, 0x50, 0x65, 0xeb, 0xb7, 0x90, 0x4e, 0x16, 0xb7, 0x30, 0x96, 0x53, 0xc0, 0x47, 0xe9, 0x46, - 0x07, 0xc3, 0x3f, 0xd4, 0x24, 0x7d, 0x8e, 0xdf, 0xb7, 0xfa, 0xcb, 0xbc, 0xb8, 0xa9, 0x6d, 0xea, - 0x0c, 0xac, 0x4c, 0xeb, 0x38, 0xfe, 0x55, 0x80, 0x9a, 0x5e, 0xaa, 0xdc, 0x54, 0xeb, 0x5a, 0x57, - 0xc5, 0xd3, 0x75, 0x0f, 0x2d, 0x1d, 0xd0, 0x4f, 0x85, 0xd9, 0x2e, 0x42, 0x62, 0x00, 0x8d, 0xe5, - 0x99, 0x90, 0xb6, 0xda, 0x0d, 0x00, 0x9d, 0xef, 0x29, 0x4f, 0xd9, 0x81, 0x18, 0x30, 0x9d, 0xfd, - 0x2b, 0xa4, 0x84, 0xdd, 0xfc, 0xab, 0x2d, 0xcc, 0xbf, 0xe5, 0x72, 0xfe, 0xc5, 0x7f, 0xaf, 0x58, - 0xf3, 0xa6, 0x35, 0xf5, 0xed, 0x69, 0xd6, 0x07, 0x0b, 0x95, 0x6b, 0x28, 0xa6, 0xc0, 0xe6, 0x73, - 0x1f, 0x76, 0x55, 0x36, 0x16, 0xf2, 0xd2, 0x2e, 0x4f, 0x7e, 0xb5, 0x18, 0x02, 0xb1, 0x0c, 0x78, - 0x1d, 0x85, 0x3b, 0xbd, 0x23, 0xbb, 0x3e, 0xad, 0xfa, 0x8b, 0x4d, 0xef, 0x88, 0x00, 0x09, 0x7f, - 0x01, 0x55, 0x7b, 0x30, 0x8e, 0x4d, 0x23, 0xb8, 0xed, 0xb1, 0x00, 0x9a, 0x68, 0x22, 0x54, 0xdb, - 0x76, 0x2a, 0x92, 0xb3, 0x4e, 0x57, 0x1b, 0x3f, 0x5b, 0x6d, 0x96, 0x42, 0x1c, 0x0b, 0x7e, 0x8a, - 0x56, 0xf7, 0x26, 0x43, 0x96, 0xd3, 0x21, 0xdb, 0x37, 0x0b, 0x92, 0x69, 0x07, 0x91, 0x27, 0x34, - 0xc3, 0x60, 0x0d, 0x9c, 0x93, 0x82, 0x5b, 0x9f, 0x33, 0x75, 0x21, 0xe4, 0x99, 0xdd, 0xcc, 0xfc, - 0x5b, 0x2d, 0x85, 0x38, 0x96, 0xf8, 0xaf, 0x2e, 0x0b, 0xac, 0xe9, 0xf7, 0xa0, 0x39, 0x8f, 0xb9, - 0x59, 0x65, 0x42, 0x62, 0x00, 0xc8, 0x4d, 0xc2, 0x0a, 0x26, 0xcf, 0x4d, 0x0f, 0xa8, 0x98, 0x75, - 0xc9, 0x43, 0xe9, 0xdc, 0xbc, 0xa0, 0xb9, 0x4d, 0x0a, 0x7d, 0x86, 0x4c, 0xff, 0x90, 0xc9, 0x8c, - 0xa5, 0x36, 0x29, 0x2c, 0x04, 0xfb, 0x81, 0x39, 0x1d, 0xee, 0xf4, 0xb4, 0x67, 0x42, 0x32, 0x45, - 0x40, 0xfd, 0x83, 0x74, 0xce, 0x33, 0xf8, 0x76, 0xa9, 0xe9, 0xa1, 0xee, 0x61, 0xf0, 0x57, 0xd0, - 0x9d, 0x5d, 0x5e, 0xc0, 0xa2, 0xd1, 0xed, 0x1e, 0x7c, 0xc8, 0xd3, 0x94, 0x49, 0x6d, 0x68, 0x9d, - 0x2c, 0xe0, 0xe3, 0x3f, 0x05, 0xa8, 0xee, 0x02, 0x07, 0xcf, 0xe9, 0x8f, 0xa8, 0xd4, 0x89, 0x03, - 0x4a, 0x2d, 0x04, 0x26, 0xff, 0x70, 0x22, 0x14, 0xb5, 0x66, 0x19, 0x00, 0xb8, 0x7b, 0x4c, 0x72, - 0x31, 0xb0, 0x7b, 0x85, 0x85, 0x60, 0xc7, 0x24, 0x8c, 0xa6, 0x8a, 0x8f, 0x19, 0x99, 0x64, 0xf0, - 0x63, 0xad, 0x9b, 0x47, 0xc3, 0xf2, 0xe6, 0x50, 0x56, 0xd3, 0x92, 0xd6, 0x34, 0x87, 0x05, 0xd7, - 0xed, 0xe4, 0x93, 0xc2, 0xae, 0xd8, 0xfa, 0x0c, 0xb8, 0x03, 0x36, 0x36, 0xbb, 0x75, 0x83, 0xe8, - 0x73, 0x7c, 0x61, 0xf7, 0xb8, 0x63, 0xbd, 0x5d, 0xda, 0xaa, 0x2d, 0xab, 0x31, 0xb8, 0xb6, 0x1a, - 0x2b, 0x7e, 0x35, 0xae, 0xa1, 0x9a, 0x91, 0xb5, 0x1d, 0xc4, 0x42, 0xe0, 0xf1, 0x7d, 0x46, 0x4f, - 0x2d, 0xad, 0xaa, 0x69, 0x1e, 0x26, 0x3e, 0x42, 0x6f, 0xea, 0x8b, 0x0f, 0x47, 0x52, 0x28, 0x95, - 0xb2, 0xff, 0xe1, 0x6a, 0x8c, 0xaa, 0x84, 0x2a, 0xe6, 0x76, 0x34, 0x38, 0xc7, 0xff, 0x0c, 0xd1, - 0x2d, 0xbf, 0x14, 0xbc, 0xf7, 0x05, 0xff, 0xe1, 0x7d, 0x95, 0xf9, 0xf7, 0xe1, 0x36, 0xba, 0xe5, - 0xfb, 0xe4, 0x9a, 0x89, 0xee, 0x93, 0x6d, 0xd9, 0xcc, 0x88, 0xe0, 0x23, 0xf4, 0x96, 0xb3, 0x0e, - 0xa6, 0xd1, 0x76, 0x5e, 0x58, 0x5d, 0x55, 0xad, 0xeb, 0x73, 0x9e, 0xae, 0x59, 0x2f, 0x58, 0x6d, - 0xd7, 0x4b, 0xe3, 0x63, 0xb4, 0xe6, 0x08, 0xc7, 0x92, 0x2b, 0x36, 0xd5, 0xbb, 0xf4, 0xd9, 0xf4, - 0xde, 0x20, 0xee, 0x2b, 0x86, 0x1b, 0x3b, 0xdd, 0x5e, 0xdf, 0x2a, 0xae, 0xbd, 0xa6, 0xe2, 0x59, - 0x71, 0xfc, 0x63, 0xf4, 0xf6, 0xcc, 0x95, 0x9e, 0xe6, 0xe5, 0xcf, 0xa6, 0xf9, 0x26, 0xf9, 0xf8, - 0x3d, 0xd4, 0x28, 0x3b, 0xe4, 0xf5, 0x7d, 0x26, 0xfe, 0x99, 0xfb, 0x56, 0xf1, 0x1b, 0x39, 0xf0, - 0xb6, 0xd3, 0x54, 0x5c, 0xd8, 0x8f, 0x62, 0x03, 0xfc, 0xdf, 0xb3, 0x69, 0x0d, 0xd5, 0xda, 0x89, - 0xfe, 0x7f, 0xc4, 0xec, 0x65, 0x16, 0x8a, 0x53, 0x9b, 0x95, 0xb6, 0x43, 0xc2, 0x26, 0xbb, 0x93, - 0xd2, 0xa2, 0x28, 0x07, 0xb6, 0x03, 0xf1, 0x36, 0x42, 0x3d, 0xc9, 0x85, 0x34, 0x9f, 0xc1, 0x66, - 0x01, 0x7d, 0x67, 0x6e, 0x17, 0x91, 0xa7, 0x34, 0x61, 0x96, 0xeb, 0xd2, 0x2d, 0x71, 0x53, 0xa9, - 0xf8, 0x29, 0xc2, 0x8b, 0x9d, 0x1d, 0xe6, 0x66, 0x8f, 0x0e, 0x59, 0x01, 0xd3, 0xde, 0xcc, 0xe3, - 0x12, 0x9e, 0x7a, 0xce, 0x7c, 0x03, 0x59, 0xcf, 0xed, 0xa1, 0xb5, 0xeb, 0xef, 0x04, 0x3f, 0xc1, - 0x72, 0xe0, 0xe6, 0x3a, 0x9c, 0xb5, 0x7e, 0x4b, 0xb7, 0xf5, 0x54, 0xc2, 0xf1, 0x2f, 0x02, 0xeb, - 0x00, 0xb7, 0x06, 0x3e, 0x40, 0x2b, 0xbb, 0xec, 0x94, 0x4e, 0x52, 0xd5, 0x4e, 0xbc, 0x8f, 0xa8, - 0x59, 0x24, 0x70, 0xb5, 0x65, 0x32, 0xe2, 0x8a, 0x25, 0x6a, 0x22, 0x99, 0xfb, 0x3e, 0x98, 0x45, - 0xe2, 0x6f, 0xa0, 0x3a, 0xec, 0x62, 0x34, 0x4d, 0x0b, 0x5b, 0xa6, 0x33, 0x1b, 0xa8, 0x21, 0xb9, - 0xcf, 0x11, 0xc7, 0x19, 0x73, 0x74, 0xdb, 0x7f, 0x51, 0x5b, 0x0e, 0xc1, 0x0b, 0x9d, 0x6c, 0xc0, - 0x5e, 0xd8, 0x5e, 0x6e, 0x00, 0xc0, 0x7e, 0x54, 0x6e, 0x72, 0x55, 0x62, 0x00, 0xb0, 0x56, 0x1f, - 0x0e, 0x2f, 0x84, 0x6d, 0x40, 0x25, 0x8c, 0x57, 0x51, 0xa5, 0x9b, 0xdb, 0x6f, 0xe6, 0x4a, 0x37, - 0x8f, 0xc7, 0xce, 0x78, 0x73, 0x37, 0x68, 0xd4, 0xab, 0x95, 0xfd, 0x48, 0x36, 0x80, 0xc9, 0x9d, - 0x72, 0x14, 0xea, 0xdc, 0xd1, 0x4e, 0xd8, 0xb2, 0xdf, 0x46, 0xc6, 0xb4, 0xb7, 0x16, 0x97, 0xeb, - 0xb6, 0x74, 0x5f, 0x23, 0x9a, 0x31, 0xfe, 0x26, 0x5a, 0x99, 0x59, 0x5b, 0xc1, 0x8d, 0xfb, 0x8f, - 0x77, 0x68, 0x32, 0x62, 0xfd, 0x64, 0xc4, 0xc6, 0xd4, 0x39, 0x7b, 0x06, 0xb9, 0xfd, 0xf3, 0xe0, - 0xe5, 0xab, 0xd6, 0x1b, 0x7f, 0x79, 0xd5, 0x7a, 0xe3, 0x5f, 0xaf, 0x5a, 0xc1, 0x4f, 0xaf, 0x5a, - 0xc1, 0x6f, 0xae, 0x5a, 0xc1, 0xef, 0xae, 0x5a, 0xc1, 0x1f, 0xae, 0x5a, 0xc1, 0xcb, 0xab, 0x56, - 0xf0, 0xe7, 0xab, 0x56, 0xf0, 0x8f, 0xab, 0x56, 0xf0, 0xf1, 0x27, 0xaf, 0xf9, 0x2f, 0xa5, 0x34, - 0xd3, 0x6b, 0xeb, 0x9c, 0x4b, 0xe5, 0x91, 0xf2, 0xb3, 0xe1, 0xc2, 0x1f, 0x98, 0x60, 0xdd, 0x49, - 0x4d, 0xc3, 0x8f, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xc0, 0xbe, 0x25, 0xf5, 0x0e, 0x15, 0x00, - 0x00, + // 2118 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0xcb, 0x73, 0x5b, 0x49, + 0xd5, 0xcf, 0x95, 0x64, 0x59, 0x6a, 0xc5, 0x79, 0xf4, 0x64, 0x32, 0xf7, 0xcb, 0x97, 0xd2, 0x78, + 0x2e, 0x29, 0x30, 0x10, 0xec, 0x22, 0xe1, 0x31, 0x0c, 0x8f, 0x2a, 0xd9, 0x4e, 0x62, 0xd5, 0xc4, + 0x91, 0x68, 0xd9, 0x13, 0x98, 0xc5, 0x54, 0xb5, 0xaf, 0xda, 0x52, 0x8f, 0xaf, 0x6e, 0xdf, 0xea, + 0xdb, 0xb2, 0x63, 0x56, 0xb0, 0x63, 0xcf, 0x82, 0x35, 0x1b, 0x1e, 0xff, 0x01, 0xc5, 0x8a, 0x1d, + 0x29, 0x56, 0x2c, 0xa9, 0xa2, 0x0a, 0x88, 0xf7, 0xec, 0x59, 0x52, 0xa7, 0xfb, 0xdc, 0xab, 0x96, + 0xe4, 0xc0, 0x04, 0x56, 0xea, 0xf3, 0x3b, 0x8f, 0x7e, 0x9c, 0xe7, 0x15, 0xe9, 0x8d, 0xa4, 0x19, + 0x4f, 0x8f, 0x36, 0x63, 0x35, 0xd9, 0x3a, 0xe1, 0x86, 0x7f, 0x25, 0x56, 0xa9, 0xe1, 0x32, 0x15, + 0x3a, 0x5f, 0xa2, 0x73, 0x1d, 0x6f, 0xf1, 0x91, 0x48, 0xcd, 0x56, 0xa6, 0x95, 0x51, 0xb1, 0x4a, + 0x72, 0xb7, 0xca, 0xb7, 0x54, 0x2c, 0x37, 0xed, 0x92, 0xd6, 0x46, 0x3a, 0x8b, 0xef, 0x44, 0x23, + 0x35, 0x52, 0x8e, 0x79, 0x34, 0x3d, 0xde, 0x02, 0xca, 0x12, 0x76, 0xe5, 0x24, 0xa3, 0x3f, 0x54, + 0x49, 0x6d, 0x90, 0x89, 0x98, 0x86, 0x64, 0xf5, 0x23, 0xa1, 0x73, 0xa9, 0xd2, 0x30, 0x58, 0x0f, + 0x36, 0x9a, 0xac, 0x20, 0xe9, 0x17, 0xc8, 0x6a, 0x5f, 0xab, 0x58, 0xe4, 0x79, 0x58, 0x59, 0x0f, + 0x36, 0x5a, 0x0f, 0xd6, 0x36, 0xc1, 0xfc, 0x26, 0x82, 0xac, 0xe0, 0xd2, 0x36, 0xa9, 0x31, 0xa5, + 0x4c, 0x58, 0xb5, 0x52, 0xc4, 0x49, 0x01, 0xc2, 0x2c, 0x4e, 0xef, 0x90, 0xc6, 0x9e, 0xca, 0x4d, + 0xca, 0x27, 0x22, 0xac, 0xd9, 0x3d, 0x4a, 0x9a, 0x7e, 0x91, 0xd4, 0xf7, 0xd5, 0x34, 0x35, 0x79, + 0xb8, 0xb2, 0x5e, 0xdd, 0x68, 0x3d, 0x68, 0x39, 0x6d, 0x8b, 0x6d, 0xd7, 0x5e, 0xfe, 0xf5, 0xdd, + 0x2b, 0x0c, 0x05, 0xe8, 0x7b, 0x64, 0x65, 0x4f, 0xa9, 0x93, 0x3c, 0xac, 0xdb, 0x7d, 0x50, 0xd2, + 0x42, 0xcc, 0x71, 0xe8, 0x77, 0x49, 0xab, 0x93, 0xa6, 0xca, 0x70, 0x23, 0x55, 0x9a, 0x87, 0xab, + 0xd6, 0xe4, 0xff, 0x3b, 0x41, 0xb8, 0xed, 0xa6, 0xc7, 0x7d, 0x94, 0x1a, 0x7d, 0xce, 0x7c, 0x79, + 0xd8, 0xe1, 0xa9, 0x4c, 0xa7, 0x2f, 0xc2, 0x86, 0xbf, 0x83, 0x85, 0x98, 0xe3, 0xc0, 0xa3, 0x0c, + 0x54, 0xc2, 0xb5, 0xcc, 0xc3, 0xa6, 0xff, 0x28, 0x08, 0xb2, 0x82, 0x0b, 0x82, 0xcf, 0x65, 0x3a, + 0x54, 0x67, 0x79, 0x48, 0x7c, 0x41, 0x04, 0x59, 0xc1, 0xbd, 0xf3, 0x3d, 0x72, 0x63, 0xf1, 0x54, + 0xf4, 0x06, 0xa9, 0x9e, 0x88, 0x73, 0x74, 0x08, 0x2c, 0xe9, 0x2d, 0xb2, 0x72, 0xca, 0x93, 0xa9, + 0xb0, 0xae, 0x68, 0x32, 0x47, 0x7c, 0x50, 0x79, 0x3f, 0x88, 0x7e, 0x57, 0x2d, 0xfd, 0x04, 0x2f, + 0x7d, 0x20, 0xf4, 0x44, 0xa6, 0x3c, 0xb1, 0xca, 0x0d, 0x56, 0xd2, 0xf4, 0xcb, 0xa4, 0xb5, 0xa3, + 0xd2, 0x5c, 0x25, 0x62, 0x20, 0x7f, 0x24, 0xd0, 0xa5, 0x4d, 0x77, 0xa8, 0x6d, 0xf5, 0x82, 0xf9, + 0x5c, 0x7a, 0x8f, 0xd4, 0x0e, 0x73, 0xa1, 0xe7, 0x5d, 0x0a, 0x08, 0xfa, 0xc4, 0x72, 0x29, 0x25, + 0xb5, 0x8e, 0x1e, 0xe5, 0x61, 0x6d, 0xbd, 0xba, 0xd1, 0x64, 0x76, 0x0d, 0x47, 0x7f, 0x94, 0x9e, + 0x5a, 0x6f, 0x36, 0x19, 0x2c, 0x01, 0xd9, 0x39, 0x1b, 0x5a, 0xaf, 0x35, 0x19, 0x2c, 0xe9, 0xb7, + 0xc9, 0xd5, 0x1d, 0x9e, 0xf1, 0x23, 0x99, 0x48, 0x23, 0x05, 0xf8, 0x09, 0x76, 0x79, 0xc7, 0x7b, + 0x6e, 0x9f, 0xcd, 0xe6, 0x84, 0xe9, 0x57, 0xc9, 0x2a, 0x4b, 0xe4, 0x44, 0x9a, 0x3c, 0x6c, 0x58, + 0xff, 0xde, 0xc4, 0xb0, 0xec, 0x0d, 0xba, 0x3f, 0x70, 0x1c, 0x3c, 0x64, 0x21, 0x47, 0x37, 0xc8, + 0xf5, 0x67, 0xea, 0x99, 0x38, 0xeb, 0x6b, 0x79, 0x2a, 0x13, 0x31, 0x12, 0xce, 0x79, 0x0d, 0xb6, + 0x08, 0x83, 0x64, 0x27, 0xcb, 0xb8, 0x9e, 0x28, 0xdd, 0xd7, 0xea, 0x58, 0x26, 0xc2, 0x7a, 0xaf, + 0xc9, 0x16, 0x61, 0xba, 0x4e, 0x5a, 0xbd, 0xde, 0xfe, 0x20, 0x56, 0x5a, 0x74, 0x86, 0x9f, 0x86, + 0xad, 0xf5, 0x60, 0xa3, 0xca, 0x7c, 0x88, 0x46, 0xe4, 0xea, 0x40, 0x24, 0x70, 0x9b, 0xa7, 0xfc, + 0x48, 0x24, 0xe1, 0x55, 0x6b, 0x68, 0x0e, 0x8b, 0x1e, 0x92, 0xea, 0xb6, 0x7a, 0x41, 0x6f, 0x93, + 0xfa, 0x9e, 0x90, 0xa3, 0xb1, 0xb1, 0x5e, 0x5b, 0x63, 0x48, 0x81, 0xd7, 0x9f, 0xcb, 0xa1, 0x19, + 0x5b, 0x6f, 0xad, 0x31, 0x47, 0x44, 0xa9, 0x73, 0x0e, 0x3c, 0xec, 0x61, 0x77, 0x17, 0x55, 0x60, + 0x09, 0xc8, 0x93, 0xee, 0x2e, 0x4a, 0xc3, 0x92, 0x7e, 0x9e, 0x5c, 0xeb, 0x0c, 0x87, 0x12, 0x62, + 0x8b, 0x27, 0x4f, 0xe4, 0x30, 0x0f, 0xab, 0xeb, 0xd5, 0x8d, 0x35, 0xb6, 0x80, 0x42, 0xe4, 0x80, + 0x4d, 0x3f, 0x47, 0x0b, 0x3a, 0xfa, 0x55, 0x40, 0x6e, 0x2e, 0x79, 0x05, 0x34, 0xb6, 0xd5, 0x34, + 0x1d, 0xca, 0x74, 0x14, 0x06, 0xd6, 0xdb, 0x25, 0x4d, 0xef, 0x92, 0xe6, 0xa3, 0xe3, 0x63, 0x11, + 0x1b, 0x79, 0x0a, 0x91, 0x06, 0xcc, 0x19, 0x00, 0x4f, 0xd7, 0x4d, 0xc7, 0x42, 0x4b, 0xc3, 0x8f, + 0x12, 0x61, 0x0f, 0xd4, 0x64, 0x3e, 0x04, 0xfa, 0x7d, 0x88, 0x5b, 0x63, 0xc4, 0x10, 0xa3, 0x6b, + 0x06, 0x40, 0xc9, 0xea, 0x4c, 0x8e, 0xa4, 0x48, 0x0d, 0x86, 0x59, 0x41, 0x46, 0x5d, 0xd2, 0xf2, + 0xc2, 0x00, 0xe2, 0xf3, 0xe0, 0x3c, 0x13, 0x98, 0x47, 0x76, 0x0d, 0xd8, 0x1e, 0xd7, 0x43, 0xfb, + 0x46, 0x35, 0x66, 0xd7, 0x80, 0x0d, 0xd4, 0xb1, 0x2b, 0x60, 0x35, 0x66, 0xd7, 0x91, 0x22, 0x2b, + 0xb6, 0xee, 0xc0, 0x69, 0x87, 0x22, 0x37, 0x32, 0xb5, 0x09, 0x8a, 0xb6, 0x7c, 0x08, 0xbc, 0x97, + 0xab, 0xa9, 0x8e, 0x8b, 0xe4, 0x44, 0x0a, 0xcc, 0x1a, 0xd8, 0xbe, 0xea, 0xb6, 0x87, 0x35, 0x9c, + 0x5d, 0x65, 0xae, 0x3a, 0xb9, 0x7b, 0x15, 0x64, 0xf4, 0x0d, 0x57, 0x45, 0x41, 0xab, 0xcf, 0xcd, + 0xb8, 0x38, 0x34, 0xac, 0xe1, 0xad, 0x99, 0xe0, 0x43, 0x95, 0x26, 0xe7, 0x76, 0x8f, 0x06, 0x2b, + 0xe9, 0xe8, 0x67, 0x01, 0xd6, 0x45, 0x7a, 0x9f, 0x34, 0xfa, 0x5a, 0xe4, 0x86, 0x6b, 0x63, 0x3d, + 0x52, 0x26, 0x2e, 0xb0, 0x31, 0x27, 0x4a, 0x09, 0xba, 0x49, 0x9a, 0x7d, 0x95, 0x1b, 0x27, 0x5e, + 0x79, 0x8d, 0xf8, 0x4c, 0xc4, 0x5a, 0xb7, 0x84, 0xca, 0xac, 0xcb, 0x2e, 0xb7, 0x8e, 0x12, 0xd1, + 0xc7, 0xa4, 0x06, 0xf8, 0xa5, 0xb7, 0x29, 0xca, 0x46, 0x65, 0xb9, 0x6c, 0x54, 0x67, 0x65, 0x23, + 0x24, 0xab, 0x07, 0x72, 0x22, 0xd4, 0xd4, 0xd8, 0x80, 0xac, 0xb2, 0x82, 0x8c, 0x7e, 0xb3, 0x82, + 0x75, 0x9a, 0x7e, 0x87, 0xb4, 0x0e, 0xbb, 0xbb, 0xfb, 0x3c, 0xcb, 0x64, 0x3a, 0xca, 0xf1, 0xd2, + 0xb7, 0xbc, 0x3a, 0x52, 0x32, 0xf1, 0x80, 0xbe, 0x38, 0x68, 0x3f, 0xf1, 0xb4, 0x2b, 0xff, 0x59, + 0xdb, 0x13, 0xa7, 0x5b, 0xa4, 0x3e, 0x38, 0xcf, 0x63, 0x93, 0xe0, 0x6b, 0xf8, 0xe5, 0x6b, 0xd3, + 0x71, 0x5c, 0x8b, 0x41, 0x31, 0xfa, 0x80, 0x34, 0x99, 0x70, 0xa1, 0x91, 0xdb, 0x2b, 0xcd, 0x6f, + 0x56, 0xf2, 0xd8, 0x4c, 0x0c, 0x82, 0x6f, 0x67, 0xa4, 0xd5, 0x34, 0xcb, 0xed, 0x2b, 0xae, 0xb8, + 0xe0, 0xf3, 0x20, 0xfa, 0x01, 0x21, 0xcf, 0xf8, 0x44, 0xe4, 0x19, 0x07, 0xb3, 0xf5, 0xa5, 0x3b, + 0x94, 0x4c, 0xbc, 0x83, 0x27, 0x0d, 0xa5, 0x74, 0x57, 0x9c, 0xca, 0x58, 0x14, 0xad, 0xf2, 0xa6, + 0xa7, 0xe8, 0x38, 0x45, 0x29, 0x45, 0x39, 0x7a, 0x9f, 0xac, 0x0e, 0x44, 0x1c, 0xab, 0x49, 0x86, + 0x4d, 0x92, 0x7a, 0x2a, 0xc8, 0x61, 0x85, 0x08, 0xbd, 0x4f, 0x6e, 0x42, 0x4c, 0x1f, 0xe7, 0x7d, + 0xad, 0x32, 0x3e, 0x72, 0x19, 0xd4, 0xb4, 0x97, 0x58, 0x66, 0xc0, 0x65, 0xf7, 0x79, 0x7e, 0x22, + 0x86, 0x70, 0x31, 0x68, 0x9b, 0xb6, 0x2e, 0x78, 0x10, 0xbd, 0x47, 0xd6, 0x8a, 0xb8, 0x77, 0x32, + 0x2d, 0x2b, 0x33, 0x0f, 0xd2, 0x36, 0x21, 0x36, 0x75, 0xfd, 0xb2, 0xeb, 0x21, 0x74, 0x8b, 0x34, + 0xba, 0xa9, 0x11, 0x09, 0x1b, 0x9a, 0x70, 0xcd, 0x5e, 0xe2, 0x2d, 0xdf, 0xe9, 0xc8, 0x62, 0xa5, + 0xd0, 0x9d, 0x6f, 0x91, 0x96, 0xe7, 0xd0, 0x37, 0xea, 0xce, 0xef, 0x96, 0x63, 0x00, 0x08, 0x0d, + 0xa7, 0x93, 0x49, 0xa1, 0xe8, 0x08, 0x10, 0x28, 0x46, 0x86, 0xcb, 0x05, 0x3e, 0x21, 0xd7, 0xe6, + 0x83, 0xd1, 0x76, 0x0b, 0x95, 0x9b, 0xb2, 0xf4, 0x23, 0x65, 0x83, 0xa5, 0x18, 0x18, 0xcb, 0x2e, + 0xe0, 0x43, 0xb6, 0xd0, 0x41, 0xf3, 0xaf, 0x5a, 0x96, 0x5d, 0x47, 0xef, 0xa3, 0xfd, 0x32, 0x2e, + 0x5e, 0x57, 0x36, 0x6d, 0x04, 0x56, 0x66, 0x79, 0x1c, 0xfd, 0x22, 0x20, 0x2d, 0x2f, 0x54, 0x5e, + 0x97, 0xeb, 0xd6, 0x56, 0xc5, 0xb3, 0x75, 0x8b, 0xac, 0xec, 0xf3, 0x4f, 0x95, 0x9b, 0x2e, 0xaa, + 0xcc, 0x11, 0x16, 0x95, 0xa9, 0xd2, 0x98, 0xed, 0x8e, 0x80, 0xca, 0xf7, 0x58, 0x26, 0x62, 0x5f, + 0x0d, 0x85, 0x8d, 0xfe, 0x35, 0x56, 0xd2, 0x45, 0xff, 0xab, 0x2f, 0xf5, 0xbf, 0xd5, 0xb2, 0xff, + 0x45, 0x7f, 0xab, 0xe0, 0xf5, 0x66, 0x39, 0xf5, 0xcd, 0x59, 0xd4, 0x07, 0x4b, 0x99, 0xeb, 0x38, + 0x2e, 0xc1, 0x16, 0x63, 0x1f, 0x66, 0x55, 0x31, 0x51, 0xfa, 0x1c, 0x87, 0x27, 0x3f, 0x5b, 0x1c, + 0x83, 0xa1, 0x00, 0x5d, 0x27, 0xd5, 0x9d, 0xfe, 0x21, 0x8e, 0x4f, 0xd7, 0xfc, 0xc1, 0xa6, 0x7f, + 0xc8, 0x80, 0x45, 0x3f, 0x47, 0x6a, 0x7d, 0x68, 0xc7, 0xae, 0x10, 0x5c, 0xf7, 0x44, 0x00, 0x66, + 0x96, 0x09, 0xd9, 0xb6, 0x9d, 0xa8, 0xf8, 0xa4, 0xdb, 0xb3, 0x97, 0x9f, 0xcf, 0x36, 0xe4, 0xb0, + 0x42, 0x84, 0x3e, 0x26, 0xd7, 0xf6, 0xa6, 0x23, 0x91, 0xf1, 0x91, 0x78, 0xea, 0x06, 0x24, 0x57, + 0x0e, 0x42, 0x4f, 0x69, 0x4e, 0x00, 0x2f, 0xb8, 0xa0, 0x05, 0xbb, 0x3e, 0x13, 0xe6, 0x4c, 0xe9, + 0x13, 0x9c, 0xcc, 0xfc, 0x5d, 0x91, 0xc3, 0x0a, 0x91, 0xe8, 0x2f, 0x45, 0x14, 0xe0, 0xd5, 0x6f, + 0x41, 0x71, 0x9e, 0x48, 0x37, 0xca, 0x54, 0x99, 0x23, 0x20, 0x36, 0x99, 0xc8, 0x85, 0x3e, 0x75, + 0x35, 0xa0, 0xe2, 0xc6, 0x25, 0x0f, 0xb2, 0xb1, 0x79, 0xc6, 0x33, 0x0c, 0x0a, 0xbb, 0x86, 0x48, + 0xff, 0x50, 0xe8, 0x54, 0x24, 0x18, 0x14, 0x48, 0xc1, 0x7c, 0xe0, 0x56, 0x07, 0x3b, 0x7d, 0xfb, + 0x32, 0x55, 0x36, 0x03, 0x20, 0xff, 0x41, 0x3b, 0x93, 0x29, 0x7c, 0xbb, 0xd4, 0x6d, 0x53, 0xf7, + 0x10, 0xfa, 0x25, 0x72, 0x63, 0x57, 0xe6, 0x30, 0x68, 0xf4, 0x7a, 0xfb, 0x1f, 0xca, 0x24, 0x11, + 0xda, 0x5e, 0xb4, 0xc1, 0x96, 0xf0, 0xe8, 0x8f, 0x01, 0x69, 0x14, 0x8e, 0x83, 0xe3, 0x0c, 0xc6, + 0x5c, 0xdb, 0xc0, 0x01, 0xa3, 0x48, 0xc1, 0x95, 0xbf, 0x3f, 0x55, 0x86, 0xe3, 0xb5, 0x1c, 0x01, + 0xd2, 0x7d, 0xa1, 0xa5, 0x1a, 0xe2, 0x5c, 0x81, 0x14, 0xcc, 0x98, 0x4c, 0xf0, 0xc4, 0xc8, 0x89, + 0x60, 0xd3, 0x14, 0x7e, 0xf0, 0x76, 0x8b, 0x30, 0x0c, 0x6f, 0x05, 0x84, 0x96, 0x56, 0xac, 0xa5, + 0x05, 0x14, 0x9e, 0x6e, 0x27, 0x9b, 0xe6, 0x38, 0x62, 0xdb, 0x35, 0x60, 0xfb, 0x62, 0xe2, 0x66, + 0xeb, 0x26, 0xb3, 0xeb, 0xe8, 0x0c, 0xe7, 0xb8, 0xe7, 0x76, 0xba, 0xc4, 0xac, 0x2d, 0xb3, 0x31, + 0xb8, 0x34, 0x1b, 0x2b, 0x7e, 0x36, 0xde, 0x26, 0x75, 0xa7, 0x8b, 0x15, 0x04, 0x29, 0x78, 0xf1, + 0xa7, 0x82, 0x1f, 0x23, 0xaf, 0x66, 0x79, 0x1e, 0x12, 0x1d, 0x92, 0xb7, 0xec, 0xc6, 0x07, 0x63, + 0xad, 0x8c, 0x49, 0xc4, 0x7f, 0xb1, 0x35, 0x25, 0x35, 0xc6, 0x8d, 0x28, 0x66, 0x34, 0x58, 0x47, + 0xff, 0xa8, 0x92, 0xab, 0x7e, 0x2a, 0x78, 0xe7, 0x0b, 0xfe, 0xcd, 0xf9, 0x2a, 0x8b, 0xe7, 0xa3, + 0x1d, 0x72, 0xd5, 0x7f, 0x93, 0x4b, 0x3a, 0xba, 0xcf, 0xc6, 0xb4, 0x99, 0x53, 0xa1, 0x87, 0xe4, + 0xed, 0xe2, 0x76, 0xd0, 0x8d, 0xb6, 0xb3, 0x1c, 0x6d, 0xd5, 0xac, 0xad, 0xff, 0xf3, 0x6c, 0xcd, + 0xbf, 0x02, 0x5a, 0xbb, 0x5c, 0x9b, 0x3e, 0x27, 0xb7, 0x0b, 0xc6, 0x73, 0x2d, 0x8d, 0x98, 0xd9, + 0x5d, 0xf9, 0x6c, 0x76, 0x5f, 0xa3, 0xee, 0x1b, 0x86, 0x1d, 0xbb, 0xbd, 0xfe, 0x00, 0x0d, 0xd7, + 0xdf, 0xd0, 0xf0, 0xbc, 0x3a, 0xfd, 0x21, 0x79, 0x67, 0x6e, 0x4b, 0xcf, 0xf2, 0xea, 0x67, 0xb3, + 0xfc, 0x3a, 0xfd, 0xe8, 0x3d, 0xd2, 0x2c, 0x2b, 0xe4, 0xe5, 0x75, 0x26, 0xfa, 0x49, 0xf1, 0xad, + 0xe2, 0x17, 0x72, 0x90, 0xed, 0x24, 0x89, 0x3a, 0xc3, 0x8f, 0x62, 0x47, 0xfc, 0xcf, 0xbd, 0xe9, + 0x36, 0xa9, 0x77, 0x62, 0xfb, 0xff, 0x88, 0x9b, 0xcb, 0x90, 0x8a, 0x12, 0x8c, 0x4a, 0xac, 0x90, + 0x30, 0xc9, 0xee, 0x24, 0x3c, 0xcf, 0xcb, 0x86, 0x5d, 0x90, 0x74, 0x9b, 0x90, 0xbe, 0x96, 0x4a, + 0xbb, 0xcf, 0x60, 0x37, 0x80, 0xde, 0x5d, 0x98, 0x45, 0xf4, 0x31, 0x8f, 0x05, 0x4a, 0x9d, 0x17, + 0x43, 0xdc, 0x4c, 0x2b, 0x7a, 0x4c, 0xe8, 0x72, 0x65, 0x87, 0xbe, 0xd9, 0xe7, 0x23, 0x91, 0x43, + 0xb7, 0x77, 0xfd, 0xb8, 0xa4, 0x67, 0x2f, 0xe7, 0xbe, 0x81, 0xf0, 0xe5, 0xf6, 0xc8, 0xed, 0xcb, + 0xf7, 0x84, 0x77, 0x82, 0xe1, 0xa0, 0xe8, 0xeb, 0xb0, 0xb6, 0xf6, 0x91, 0x8f, 0xf9, 0x54, 0xd2, + 0xd1, 0x2f, 0x03, 0x7c, 0x80, 0x62, 0x0c, 0xbc, 0x47, 0xd6, 0x76, 0xc5, 0x31, 0x9f, 0x26, 0xa6, + 0x13, 0x7b, 0x1f, 0x51, 0xf3, 0x20, 0x48, 0x75, 0x74, 0x3c, 0x96, 0x46, 0xc4, 0x66, 0xaa, 0x45, + 0xf1, 0x7d, 0x30, 0x0f, 0xc2, 0xe1, 0x1f, 0x27, 0x7c, 0x94, 0xe3, 0xa7, 0x82, 0x23, 0xe8, 0xd7, + 0x48, 0x03, 0x26, 0x34, 0x9e, 0x24, 0x39, 0x26, 0xdc, 0xdc, 0x5c, 0xea, 0x58, 0xc5, 0x47, 0x4a, + 0x21, 0x19, 0x49, 0x72, 0xdd, 0x3f, 0x67, 0x47, 0x8f, 0xc0, 0x7c, 0x37, 0x1d, 0x8a, 0x17, 0x58, + 0xe1, 0x1d, 0x01, 0xe8, 0x47, 0xe5, 0x7c, 0x57, 0x63, 0x8e, 0x80, 0x37, 0xb0, 0x8b, 0x83, 0x33, + 0x85, 0x65, 0xa9, 0xa4, 0xe9, 0x35, 0x52, 0xe9, 0x65, 0xf8, 0x25, 0x5d, 0xe9, 0x65, 0xd1, 0xcf, + 0xcb, 0x37, 0x71, 0x9b, 0x83, 0x49, 0x3b, 0x71, 0xe1, 0xb7, 0xb3, 0x23, 0x5c, 0x48, 0x95, 0x1d, + 0xd2, 0x86, 0x94, 0x7d, 0x9b, 0xbb, 0xa4, 0x21, 0xb4, 0x4e, 0x95, 0x16, 0x58, 0x7a, 0xf7, 0xae, + 0xb0, 0x12, 0xa1, 0x5b, 0xde, 0xff, 0x30, 0xad, 0x07, 0x6f, 0x2f, 0x4f, 0xe4, 0x1d, 0x5d, 0x7c, + 0xc2, 0x58, 0xc1, 0x6d, 0x42, 0x1a, 0x8f, 0x40, 0x99, 0x09, 0x13, 0x7d, 0x9d, 0xac, 0xcd, 0xcd, + 0xbd, 0xe0, 0x87, 0xa7, 0x0f, 0x77, 0x78, 0x3c, 0x16, 0x83, 0x78, 0x2c, 0x26, 0xbc, 0xf0, 0xd6, + 0x1c, 0xb8, 0xfd, 0xd3, 0xe0, 0xe5, 0xab, 0xf6, 0x95, 0x3f, 0xbf, 0x6a, 0x5f, 0xf9, 0xe7, 0xab, + 0x76, 0xf0, 0xe3, 0x8b, 0x76, 0xf0, 0xeb, 0x8b, 0x76, 0xf0, 0xdb, 0x8b, 0x76, 0xf0, 0xfb, 0x8b, + 0x76, 0xf0, 0xf2, 0xa2, 0x1d, 0xfc, 0xe9, 0xa2, 0x1d, 0xfc, 0xfd, 0xa2, 0x1d, 0x7c, 0xfc, 0xc9, + 0x1b, 0xfe, 0xcd, 0xa9, 0x5d, 0xfb, 0xdb, 0x3a, 0x95, 0xda, 0x78, 0xac, 0xec, 0x64, 0xb4, 0xf4, + 0x0f, 0x28, 0xdc, 0xf4, 0xa8, 0x6e, 0xe9, 0x87, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x3e, + 0xc9, 0x10, 0x4f, 0x15, 0x00, 0x00, } func (this *Spec) Equal(that interface{}) bool { @@ -2849,6 +2889,14 @@ func (this *LinuxSeccomp) Equal(that interface{}) bool { return false } } + if len(this.Flags) != len(that1.Flags) { + return false + } + for i := range this.Flags { + if this.Flags[i] != that1.Flags[i] { + return false + } + } if len(this.Syscalls) != len(that1.Syscalls) { return false } @@ -2928,6 +2976,15 @@ func (this *LinuxSyscall) Equal(that interface{}) bool { if this.Action != that1.Action { return false } + if that1.ErrnoRet == nil { + if this.ErrnoRet != nil { + return false + } + } else if this.ErrnoRet == nil { + return false + } else if !this.ErrnoRet.Equal(that1.ErrnoRet) { + return false + } if len(this.Args) != len(that1.Args) { return false } @@ -2941,6 +2998,30 @@ func (this *LinuxSyscall) Equal(that interface{}) bool { } return true } +func (this *LinuxSyscall_Errnoret) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*LinuxSyscall_Errnoret) + if !ok { + that2, ok := that.(LinuxSyscall_Errnoret) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.Errnoret != that1.Errnoret { + return false + } + return true +} func (this *LinuxIntelRdt) Equal(that interface{}) bool { if that == nil { return this == nil @@ -4785,6 +4866,15 @@ func (m *LinuxSeccomp) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintOci(dAtA, i, uint64(size)) } i-- + dAtA[i] = 0x22 + } + } + if len(m.Flags) > 0 { + for iNdEx := len(m.Flags) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Flags[iNdEx]) + copy(dAtA[i:], m.Flags[iNdEx]) + i = encodeVarintOci(dAtA, i, uint64(len(m.Flags[iNdEx]))) + i-- dAtA[i] = 0x1a } } @@ -4891,7 +4981,16 @@ func (m *LinuxSyscall) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintOci(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0x1a + dAtA[i] = 0x22 + } + } + if m.ErrnoRet != nil { + { + size := m.ErrnoRet.Size() + i -= size + if _, err := m.ErrnoRet.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } } } if len(m.Action) > 0 { @@ -4913,6 +5012,18 @@ func (m *LinuxSyscall) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *LinuxSyscall_Errnoret) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *LinuxSyscall_Errnoret) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + i = encodeVarintOci(dAtA, i, uint64(m.Errnoret)) + i-- + dAtA[i] = 0x18 + return len(dAtA) - i, nil +} func (m *LinuxIntelRdt) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5575,16 +5686,21 @@ func NewPopulatedLinuxSeccomp(r randyOci, easy bool) *LinuxSeccomp { for i := 0; i < v51; i++ { this.Architectures[i] = string(randStringOci(r)) } + v52 := r.Intn(10) + this.Flags = make([]string, v52) + for i := 0; i < v52; i++ { + this.Flags[i] = string(randStringOci(r)) + } if r.Intn(5) != 0 { - v52 := r.Intn(5) - this.Syscalls = make([]LinuxSyscall, v52) - for i := 0; i < v52; i++ { - v53 := NewPopulatedLinuxSyscall(r, easy) - this.Syscalls[i] = *v53 + v53 := r.Intn(5) + this.Syscalls = make([]LinuxSyscall, v53) + for i := 0; i < v53; i++ { + v54 := NewPopulatedLinuxSyscall(r, easy) + this.Syscalls[i] = *v54 } } if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedOci(r, 4) + this.XXX_unrecognized = randUnrecognizedOci(r, 5) } return this } @@ -5603,26 +5719,36 @@ func NewPopulatedLinuxSeccompArg(r randyOci, easy bool) *LinuxSeccompArg { func NewPopulatedLinuxSyscall(r randyOci, easy bool) *LinuxSyscall { this := &LinuxSyscall{} - v54 := r.Intn(10) - this.Names = make([]string, v54) - for i := 0; i < v54; i++ { + v55 := r.Intn(10) + this.Names = make([]string, v55) + for i := 0; i < v55; i++ { this.Names[i] = string(randStringOci(r)) } this.Action = string(randStringOci(r)) + oneofNumber_ErrnoRet := []int32{3}[r.Intn(1)] + switch oneofNumber_ErrnoRet { + case 3: + this.ErrnoRet = NewPopulatedLinuxSyscall_Errnoret(r, easy) + } if r.Intn(5) != 0 { - v55 := r.Intn(5) - this.Args = make([]LinuxSeccompArg, v55) - for i := 0; i < v55; i++ { - v56 := NewPopulatedLinuxSeccompArg(r, easy) - this.Args[i] = *v56 + v56 := r.Intn(5) + this.Args = make([]LinuxSeccompArg, v56) + for i := 0; i < v56; i++ { + v57 := NewPopulatedLinuxSeccompArg(r, easy) + this.Args[i] = *v57 } } if !easy && r.Intn(10) != 0 { - this.XXX_unrecognized = randUnrecognizedOci(r, 4) + this.XXX_unrecognized = randUnrecognizedOci(r, 5) } return this } +func NewPopulatedLinuxSyscall_Errnoret(r randyOci, easy bool) *LinuxSyscall_Errnoret { + this := &LinuxSyscall_Errnoret{} + this.Errnoret = uint32(r.Uint32()) + return this +} func NewPopulatedLinuxIntelRdt(r randyOci, easy bool) *LinuxIntelRdt { this := &LinuxIntelRdt{} this.L3CacheSchema = string(randStringOci(r)) @@ -5651,9 +5777,9 @@ func randUTF8RuneOci(r randyOci) rune { return rune(ru + 61) } func randStringOci(r randyOci) string { - v57 := r.Intn(100) - tmps := make([]rune, v57) - for i := 0; i < v57; i++ { + v58 := r.Intn(100) + tmps := make([]rune, v58) + for i := 0; i < v58; i++ { tmps[i] = randUTF8RuneOci(r) } return string(tmps) @@ -5675,11 +5801,11 @@ func randFieldOci(dAtA []byte, r randyOci, fieldNumber int, wire int) []byte { switch wire { case 0: dAtA = encodeVarintPopulateOci(dAtA, uint64(key)) - v58 := r.Int63() + v59 := r.Int63() if r.Intn(2) == 0 { - v58 *= -1 + v59 *= -1 } - dAtA = encodeVarintPopulateOci(dAtA, uint64(v58)) + dAtA = encodeVarintPopulateOci(dAtA, uint64(v59)) case 1: dAtA = encodeVarintPopulateOci(dAtA, uint64(key)) dAtA = append(dAtA, byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256)), byte(r.Intn(256))) @@ -6556,6 +6682,12 @@ func (m *LinuxSeccomp) Size() (n int) { n += 1 + l + sovOci(uint64(l)) } } + if len(m.Flags) > 0 { + for _, s := range m.Flags { + l = len(s) + n += 1 + l + sovOci(uint64(l)) + } + } if len(m.Syscalls) > 0 { for _, e := range m.Syscalls { l = e.Size() @@ -6609,6 +6741,9 @@ func (m *LinuxSyscall) Size() (n int) { if l > 0 { n += 1 + l + sovOci(uint64(l)) } + if m.ErrnoRet != nil { + n += m.ErrnoRet.Size() + } if len(m.Args) > 0 { for _, e := range m.Args { l = e.Size() @@ -6621,6 +6756,15 @@ func (m *LinuxSyscall) Size() (n int) { return n } +func (m *LinuxSyscall_Errnoret) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + n += 1 + sovOci(uint64(m.Errnoret)) + return n +} func (m *LinuxIntelRdt) Size() (n int) { if m == nil { return 0 @@ -7153,6 +7297,7 @@ func (this *LinuxSeccomp) String() string { s := strings.Join([]string{`&LinuxSeccomp{`, `DefaultAction:` + fmt.Sprintf("%v", this.DefaultAction) + `,`, `Architectures:` + fmt.Sprintf("%v", this.Architectures) + `,`, + `Flags:` + fmt.Sprintf("%v", this.Flags) + `,`, `Syscalls:` + repeatedStringForSyscalls + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, @@ -7185,12 +7330,23 @@ func (this *LinuxSyscall) String() string { s := strings.Join([]string{`&LinuxSyscall{`, `Names:` + fmt.Sprintf("%v", this.Names) + `,`, `Action:` + fmt.Sprintf("%v", this.Action) + `,`, + `ErrnoRet:` + fmt.Sprintf("%v", this.ErrnoRet) + `,`, `Args:` + repeatedStringForArgs + `,`, `XXX_unrecognized:` + fmt.Sprintf("%v", this.XXX_unrecognized) + `,`, `}`, }, "") return s } +func (this *LinuxSyscall_Errnoret) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&LinuxSyscall_Errnoret{`, + `Errnoret:` + fmt.Sprintf("%v", this.Errnoret) + `,`, + `}`, + }, "") + return s +} func (this *LinuxIntelRdt) String() string { if this == nil { return "nil" @@ -7564,6 +7720,9 @@ func (m *Spec) Unmarshal(dAtA []byte) error { if skippy < 0 { return ErrInvalidLengthOci } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOci + } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } @@ -9576,6 +9735,9 @@ func (m *Linux) Unmarshal(dAtA []byte) error { if skippy < 0 { return ErrInvalidLengthOci } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthOci + } if (iNdEx + skippy) > postIndex { return io.ErrUnexpectedEOF } @@ -12425,6 +12587,38 @@ func (m *LinuxSeccomp) Unmarshal(dAtA []byte) error { m.Architectures = append(m.Architectures, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Flags", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthOci + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthOci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Flags = append(m.Flags, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Syscalls", wireType) } @@ -12720,6 +12914,26 @@ func (m *LinuxSyscall) Unmarshal(dAtA []byte) error { m.Action = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Errnoret", wireType) + } + var v uint32 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.ErrnoRet = &LinuxSyscall_Errnoret{v} + case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Args", wireType) }