Add process cap support to add process rpc

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-03-07 11:01:28 -08:00
parent a46c45d05d
commit 44d6a60e7e
4 changed files with 151 additions and 123 deletions

View file

@ -73,7 +73,7 @@ func (s *apiServer) AddProcess(ctx context.Context, r *types.AddProcessRequest)
Env: r.Env, Env: r.Env,
Cwd: r.Cwd, Cwd: r.Cwd,
} }
setPlatformRuntimeProcessSpecUserFields(r.User, process) setPlatformRuntimeProcessSpecUserFields(r, process)
if r.Id == "" { if r.Id == "" {
return nil, fmt.Errorf("container id cannot be empty") return nil, fmt.Errorf("container id cannot be empty")

View file

@ -248,12 +248,20 @@ func setUserFieldsInProcess(p *types.Process, oldProc specs.ProcessSpec) {
Gid: oldProc.User.GID, Gid: oldProc.User.GID,
AdditionalGids: oldProc.User.AdditionalGids, AdditionalGids: oldProc.User.AdditionalGids,
} }
p.Capabilities = oldProc.Capabilities
p.ApparmorProfile = oldProc.ApparmorProfile
p.SelinuxLabel = oldProc.SelinuxLabel
p.NoNewPrivileges = oldProc.NoNewPrivileges
} }
func setPlatformRuntimeProcessSpecUserFields(r *types.User, process *specs.ProcessSpec) { func setPlatformRuntimeProcessSpecUserFields(r *types.AddProcessRequest, process *specs.ProcessSpec) {
process.User = ocs.User{ process.User = ocs.User{
UID: r.Uid, UID: r.User.Uid,
GID: r.Gid, GID: r.User.Gid,
AdditionalGids: r.AdditionalGids, AdditionalGids: r.User.AdditionalGids,
} }
process.Capabilities = r.Capabilities
process.ApparmorProfile = r.ApparmorProfile
process.SelinuxLabel = r.SelinuxLabel
process.NoNewPrivileges = r.NoNewPrivileges
} }

View file

@ -136,16 +136,20 @@ func (*SignalResponse) ProtoMessage() {}
func (*SignalResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } func (*SignalResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
type AddProcessRequest struct { type AddProcessRequest struct {
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
Terminal bool `protobuf:"varint,2,opt,name=terminal" json:"terminal,omitempty"` Terminal bool `protobuf:"varint,2,opt,name=terminal" json:"terminal,omitempty"`
User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"` User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
Args []string `protobuf:"bytes,4,rep,name=args" json:"args,omitempty"` Args []string `protobuf:"bytes,4,rep,name=args" json:"args,omitempty"`
Env []string `protobuf:"bytes,5,rep,name=env" json:"env,omitempty"` Env []string `protobuf:"bytes,5,rep,name=env" json:"env,omitempty"`
Cwd string `protobuf:"bytes,6,opt,name=cwd" json:"cwd,omitempty"` Cwd string `protobuf:"bytes,6,opt,name=cwd" json:"cwd,omitempty"`
Pid string `protobuf:"bytes,7,opt,name=pid" json:"pid,omitempty"` Pid string `protobuf:"bytes,7,opt,name=pid" json:"pid,omitempty"`
Stdin string `protobuf:"bytes,8,opt,name=stdin" json:"stdin,omitempty"` Stdin string `protobuf:"bytes,8,opt,name=stdin" json:"stdin,omitempty"`
Stdout string `protobuf:"bytes,9,opt,name=stdout" json:"stdout,omitempty"` Stdout string `protobuf:"bytes,9,opt,name=stdout" json:"stdout,omitempty"`
Stderr string `protobuf:"bytes,10,opt,name=stderr" json:"stderr,omitempty"` Stderr string `protobuf:"bytes,10,opt,name=stderr" json:"stderr,omitempty"`
Capabilities []string `protobuf:"bytes,11,rep,name=capabilities" json:"capabilities,omitempty"`
ApparmorProfile string `protobuf:"bytes,12,opt,name=apparmorProfile" json:"apparmorProfile,omitempty"`
SelinuxLabel string `protobuf:"bytes,13,opt,name=selinuxLabel" json:"selinuxLabel,omitempty"`
NoNewPrivileges bool `protobuf:"varint,14,opt,name=noNewPrivileges" json:"noNewPrivileges,omitempty"`
} }
func (m *AddProcessRequest) Reset() { *m = AddProcessRequest{} } func (m *AddProcessRequest) Reset() { *m = AddProcessRequest{} }
@ -279,16 +283,20 @@ func (*ContainerState) ProtoMessage() {}
func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } func (*ContainerState) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
type Process struct { type Process struct {
Pid string `protobuf:"bytes,1,opt,name=pid" json:"pid,omitempty"` Pid string `protobuf:"bytes,1,opt,name=pid" json:"pid,omitempty"`
Terminal bool `protobuf:"varint,2,opt,name=terminal" json:"terminal,omitempty"` Terminal bool `protobuf:"varint,2,opt,name=terminal" json:"terminal,omitempty"`
User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"` User *User `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"`
Args []string `protobuf:"bytes,4,rep,name=args" json:"args,omitempty"` Args []string `protobuf:"bytes,4,rep,name=args" json:"args,omitempty"`
Env []string `protobuf:"bytes,5,rep,name=env" json:"env,omitempty"` Env []string `protobuf:"bytes,5,rep,name=env" json:"env,omitempty"`
Cwd string `protobuf:"bytes,6,opt,name=cwd" json:"cwd,omitempty"` Cwd string `protobuf:"bytes,6,opt,name=cwd" json:"cwd,omitempty"`
SystemPid uint32 `protobuf:"varint,7,opt,name=systemPid" json:"systemPid,omitempty"` SystemPid uint32 `protobuf:"varint,7,opt,name=systemPid" json:"systemPid,omitempty"`
Stdin string `protobuf:"bytes,8,opt,name=stdin" json:"stdin,omitempty"` Stdin string `protobuf:"bytes,8,opt,name=stdin" json:"stdin,omitempty"`
Stdout string `protobuf:"bytes,9,opt,name=stdout" json:"stdout,omitempty"` Stdout string `protobuf:"bytes,9,opt,name=stdout" json:"stdout,omitempty"`
Stderr string `protobuf:"bytes,10,opt,name=stderr" json:"stderr,omitempty"` Stderr string `protobuf:"bytes,10,opt,name=stderr" json:"stderr,omitempty"`
Capabilities []string `protobuf:"bytes,11,rep,name=capabilities" json:"capabilities,omitempty"`
ApparmorProfile string `protobuf:"bytes,12,opt,name=apparmorProfile" json:"apparmorProfile,omitempty"`
SelinuxLabel string `protobuf:"bytes,13,opt,name=selinuxLabel" json:"selinuxLabel,omitempty"`
NoNewPrivileges bool `protobuf:"varint,14,opt,name=noNewPrivileges" json:"noNewPrivileges,omitempty"`
} }
func (m *Process) Reset() { *m = Process{} } func (m *Process) Reset() { *m = Process{} }
@ -1097,102 +1105,106 @@ var _API_serviceDesc = grpc.ServiceDesc{
} }
var fileDescriptor0 = []byte{ var fileDescriptor0 = []byte{
// 1541 bytes of a gzipped FileDescriptorProto // 1605 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0xeb, 0x6e, 0x1b, 0x45, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x58, 0xeb, 0x6e, 0xdb, 0xc6,
0x14, 0x8e, 0x2f, 0xb1, 0xe3, 0xe3, 0x4b, 0x92, 0xcd, 0xcd, 0x71, 0x29, 0x0d, 0xdb, 0x42, 0x2b, 0x12, 0xb6, 0x2e, 0x96, 0xac, 0xd1, 0xc5, 0x36, 0x7d, 0x93, 0x95, 0x93, 0x13, 0x1f, 0x26, 0xe7,
0x54, 0x45, 0x25, 0xe5, 0x52, 0x8a, 0x84, 0x28, 0x69, 0x45, 0x41, 0x6d, 0x09, 0x4d, 0x82, 0xc4, 0x24, 0x38, 0x08, 0x8c, 0xd4, 0xe9, 0x25, 0x4d, 0x81, 0xa2, 0xa9, 0x13, 0x34, 0x2d, 0x9c, 0xd4,
0x2f, 0x6b, 0xbd, 0x3b, 0xd8, 0x43, 0xd6, 0xbb, 0xcb, 0xce, 0x6c, 0x2e, 0xaf, 0x00, 0xe2, 0x2f, 0x8d, 0xed, 0x02, 0xfd, 0x25, 0x50, 0xe4, 0x46, 0xda, 0x9a, 0x22, 0x59, 0xee, 0xd2, 0x97, 0x57,
0x6f, 0x81, 0xc4, 0x2f, 0x1e, 0x80, 0xc7, 0xe1, 0x29, 0x38, 0x73, 0x5b, 0xef, 0xae, 0x2f, 0x01, 0x68, 0xd0, 0xfe, 0xec, 0xa3, 0xf4, 0x01, 0xfa, 0x38, 0x7d, 0x8a, 0xce, 0xde, 0x28, 0x92, 0xba,
0x21, 0xfe, 0x58, 0x9a, 0x99, 0x73, 0xf9, 0xce, 0x77, 0x2e, 0x3b, 0x63, 0x68, 0x38, 0x11, 0xdd, 0xb8, 0x40, 0x51, 0xa0, 0x7f, 0x04, 0xec, 0xee, 0xcc, 0x37, 0xdf, 0x7e, 0x3b, 0x33, 0xdc, 0x15,
0x8f, 0xe2, 0x90, 0x87, 0xd6, 0x32, 0xbf, 0x8a, 0x08, 0xb3, 0x07, 0xb0, 0x79, 0x1a, 0x79, 0x0e, 0x34, 0x9c, 0x88, 0xee, 0x47, 0x71, 0xc8, 0x43, 0x6b, 0x99, 0x5f, 0x47, 0x84, 0xd9, 0x03, 0xd8,
0x27, 0x47, 0x71, 0xe8, 0x12, 0xc6, 0x5e, 0x93, 0x1f, 0x13, 0xc2, 0xb8, 0x05, 0x50, 0xa6, 0x5e, 0x3c, 0x8b, 0x3c, 0x87, 0x93, 0xe3, 0x38, 0x74, 0x09, 0x63, 0x6f, 0xc8, 0x0f, 0x09, 0x61, 0xdc,
0xb7, 0xb4, 0x57, 0xba, 0xd7, 0xb0, 0x9a, 0x50, 0x89, 0x70, 0x51, 0x96, 0x0b, 0x3c, 0x71, 0xfd, 0x02, 0x28, 0x53, 0xaf, 0x5b, 0xda, 0x2b, 0x3d, 0x68, 0x58, 0x4d, 0xa8, 0x44, 0x38, 0x28, 0xcb,
0x90, 0x91, 0x63, 0xee, 0xd1, 0xa0, 0x5b, 0xc1, 0xbd, 0x15, 0xab, 0x0d, 0xcb, 0x17, 0xd4, 0xe3, 0x01, 0xae, 0xb8, 0x7e, 0xc8, 0xc8, 0x09, 0xf7, 0x68, 0xd0, 0xad, 0xe0, 0xdc, 0x8a, 0xd5, 0x86,
0xa3, 0x6e, 0x15, 0x97, 0x6d, 0xab, 0x03, 0xb5, 0x11, 0xa1, 0xc3, 0x11, 0xef, 0x2e, 0x8b, 0xb5, 0xe5, 0x4b, 0xea, 0xf1, 0x51, 0xb7, 0x8a, 0xc3, 0xb6, 0xd5, 0x81, 0xda, 0x88, 0xd0, 0xe1, 0x88,
0xbd, 0x03, 0x5b, 0x05, 0x1f, 0x2c, 0x0a, 0x03, 0x46, 0xec, 0x9f, 0x4b, 0xb0, 0x7d, 0x18, 0x13, 0x77, 0x97, 0xc5, 0xd8, 0xde, 0x81, 0xad, 0x42, 0x0c, 0x16, 0x85, 0x01, 0x23, 0xf6, 0xbb, 0x12,
0x3c, 0x39, 0x0c, 0x03, 0xee, 0xd0, 0x80, 0xc4, 0xb3, 0xfc, 0xe3, 0x62, 0x90, 0x04, 0x9e, 0x4f, 0x6c, 0x1f, 0xc6, 0x04, 0x57, 0x0e, 0xc3, 0x80, 0x3b, 0x34, 0x20, 0xf1, 0xac, 0xf8, 0x38, 0x18,
0x8e, 0x1c, 0xf4, 0x31, 0x81, 0x31, 0x22, 0xee, 0x59, 0x14, 0xd2, 0x80, 0x4b, 0x18, 0x0d, 0x01, 0x24, 0x81, 0xe7, 0x93, 0x63, 0x07, 0x63, 0x4c, 0x68, 0x8c, 0x88, 0x7b, 0x1e, 0x85, 0x34, 0xe0,
0x83, 0x49, 0x54, 0x55, 0xb9, 0x44, 0x18, 0xb8, 0x0c, 0x13, 0x05, 0xc3, 0xac, 0x49, 0x1c, 0x77, 0x92, 0x46, 0x43, 0xd0, 0x60, 0x92, 0x55, 0x55, 0x0e, 0x91, 0x06, 0x0e, 0xc3, 0x44, 0xd1, 0x30,
0x6b, 0x66, 0xed, 0x3b, 0x03, 0xe2, 0xb3, 0x6e, 0x7d, 0xaf, 0x72, 0xaf, 0x61, 0x7f, 0x0a, 0x3b, 0x63, 0x12, 0xc7, 0xdd, 0x9a, 0x19, 0xfb, 0xce, 0x80, 0xf8, 0xac, 0x5b, 0xdf, 0xab, 0x3c, 0x68,
0x53, 0x60, 0x14, 0x50, 0xeb, 0x36, 0x34, 0x5c, 0xb3, 0x29, 0x41, 0x35, 0x0f, 0xd6, 0xf6, 0x25, 0xd8, 0x9f, 0xc2, 0xce, 0x14, 0x19, 0x45, 0xd4, 0xba, 0x0b, 0x0d, 0xd7, 0x4c, 0x4a, 0x52, 0xcd,
0x81, 0xfb, 0xa9, 0xb0, 0xfd, 0x08, 0xda, 0xc7, 0x74, 0x18, 0x38, 0xfe, 0xb5, 0x1c, 0x0a, 0x24, 0x83, 0xb5, 0x7d, 0x29, 0xe0, 0x7e, 0x6a, 0x6c, 0x3f, 0x81, 0xf6, 0x09, 0x1d, 0x06, 0x8e, 0x7f,
0x52, 0x52, 0x02, 0x6f, 0xdb, 0x6b, 0xd0, 0x31, 0x9a, 0x9a, 0x99, 0xdf, 0x4b, 0xb0, 0xfe, 0xc4, 0xa3, 0x86, 0x82, 0x89, 0xb4, 0x94, 0xc4, 0xdb, 0xf6, 0x1a, 0x74, 0x8c, 0xa7, 0x56, 0xe6, 0xe7,
0xf3, 0x16, 0x24, 0x65, 0x0d, 0x56, 0x38, 0x89, 0xc7, 0x54, 0x58, 0x29, 0xcb, 0x2c, 0xec, 0x42, 0x32, 0xac, 0x3f, 0xf3, 0xbc, 0x05, 0x87, 0xb2, 0x06, 0x2b, 0x9c, 0xc4, 0x63, 0x2a, 0x50, 0xca,
0x35, 0x61, 0x88, 0xaf, 0x22, 0xf1, 0x35, 0x35, 0xbe, 0x53, 0xdc, 0xb2, 0x5a, 0x50, 0x75, 0xe2, 0xf2, 0x14, 0x76, 0xa1, 0x9a, 0x30, 0xe4, 0x57, 0x91, 0xfc, 0x9a, 0x9a, 0xdf, 0x19, 0x4e, 0x59,
0x21, 0x43, 0x62, 0x2a, 0x0a, 0x0b, 0x09, 0xce, 0x91, 0x15, 0xbd, 0x70, 0x2f, 0x3c, 0x4d, 0x89, 0x2d, 0xa8, 0x3a, 0xf1, 0x90, 0xa1, 0x30, 0x15, 0xc5, 0x85, 0x04, 0x17, 0xa8, 0x8a, 0x1e, 0xb8,
0x46, 0x59, 0xcf, 0xd3, 0xb9, 0x52, 0xa0, 0xb3, 0x51, 0xa0, 0x13, 0xc4, 0x1a, 0xc3, 0xaf, 0x4a, 0x97, 0x9e, 0x96, 0x44, 0xb3, 0xac, 0xe7, 0xe5, 0x5c, 0x29, 0xc8, 0xd9, 0x28, 0xc8, 0x09, 0x72,
0x5f, 0x68, 0x23, 0xd1, 0x28, 0xdb, 0x62, 0x31, 0xd4, 0x61, 0xb7, 0xad, 0x6d, 0xe8, 0x38, 0x9e, 0xbc, 0x09, 0x2d, 0xd7, 0x89, 0x9c, 0x01, 0xf5, 0x29, 0xa7, 0x84, 0x75, 0x9b, 0x12, 0x7e, 0x07,
0x47, 0x39, 0x0d, 0x11, 0xf4, 0x17, 0xd4, 0x63, 0x08, 0xb5, 0x82, 0xe1, 0x6f, 0x82, 0x95, 0x8d, 0x56, 0x9d, 0x28, 0x72, 0xe2, 0x71, 0x18, 0xe3, 0x66, 0xde, 0x52, 0x9f, 0x74, 0x5b, 0xc6, 0x9c,
0x55, 0x53, 0xf0, 0x22, 0x4d, 0x47, 0x9a, 0xe7, 0x59, 0x3c, 0xbc, 0x9d, 0x2b, 0x84, 0xb2, 0x8c, 0x11, 0x9f, 0x06, 0xc9, 0xd5, 0x91, 0x38, 0x84, 0x6e, 0x5b, 0xce, 0xa2, 0x79, 0x10, 0xbe, 0x26,
0x7d, 0xdd, 0xe4, 0x26, 0x3d, 0xb0, 0x7b, 0xd0, 0x9d, 0xb6, 0xa6, 0x3d, 0x3d, 0x84, 0x9d, 0xa7, 0x97, 0xc7, 0x31, 0xbd, 0x40, 0xdb, 0x21, 0xe2, 0x74, 0xc4, 0xe6, 0x50, 0xdc, 0xaa, 0xdc, 0x09,
0xc4, 0x27, 0xd7, 0x79, 0x42, 0x12, 0x03, 0x67, 0x4c, 0x54, 0x0e, 0x85, 0xc1, 0x69, 0x25, 0x6d, 0x32, 0x4c, 0xb4, 0x06, 0x6d, 0x31, 0x18, 0x6a, 0x51, 0xdb, 0xd6, 0x36, 0x74, 0x1c, 0xcf, 0xc3,
0xf0, 0x36, 0x6c, 0xbd, 0xa0, 0x8c, 0x2f, 0x34, 0x67, 0x7f, 0x07, 0x30, 0x11, 0x48, 0x8d, 0xa7, 0xd8, 0x21, 0x4a, 0xf2, 0x05, 0xf5, 0x18, 0x0a, 0x51, 0x41, 0x71, 0x37, 0xc1, 0xca, 0x2a, 0xa9,
0xae, 0xc8, 0x25, 0xe5, 0x3a, 0xb1, 0x48, 0x22, 0x77, 0x23, 0xdd, 0x6b, 0x1b, 0xd0, 0x4c, 0x02, 0x05, 0x3e, 0x4a, 0x0f, 0x3b, 0xcd, 0xa2, 0x59, 0x2a, 0xff, 0x37, 0x97, 0x66, 0x65, 0xa9, 0xec,
0x7a, 0x79, 0x1c, 0xba, 0x67, 0x84, 0x33, 0x59, 0xea, 0xb2, 0x01, 0xd9, 0x88, 0xf8, 0xbe, 0xac, 0xba, 0x39, 0xf9, 0x74, 0xc1, 0xee, 0x41, 0x77, 0x1a, 0x4d, 0x47, 0x7a, 0x0c, 0x3b, 0xcf, 0x89,
0xf4, 0x15, 0xfb, 0x33, 0xd8, 0x2e, 0xfa, 0xd7, 0x85, 0xfc, 0x0e, 0x34, 0x27, 0x6c, 0x31, 0xf4, 0x4f, 0x6e, 0x8a, 0x84, 0x47, 0x14, 0x38, 0x63, 0xa2, 0x32, 0x44, 0x00, 0x4e, 0x3b, 0x69, 0xc0,
0x56, 0x99, 0x47, 0x57, 0xeb, 0x98, 0x23, 0x5b, 0xb3, 0x80, 0xef, 0x41, 0x27, 0x2d, 0x7a, 0x29, 0xbb, 0xb0, 0x75, 0x44, 0x19, 0x5f, 0x08, 0x67, 0x7f, 0x07, 0x30, 0x31, 0x48, 0xc1, 0xd3, 0x50,
0xa4, 0x4a, 0xc1, 0xe1, 0x09, 0xd3, 0x12, 0xbf, 0x95, 0xa0, 0xae, 0xd3, 0x69, 0x4a, 0xea, 0x7f, 0xe4, 0x8a, 0x72, 0x9d, 0x36, 0x28, 0x22, 0x77, 0x23, 0x5d, 0xc9, 0x1b, 0xd0, 0x4c, 0x02, 0x7a,
0x2c, 0xda, 0x75, 0x68, 0xb0, 0x2b, 0xc6, 0xc9, 0xf8, 0x48, 0x97, 0x6e, 0xfb, 0xdf, 0x96, 0xee, 0x75, 0x12, 0xba, 0xe7, 0x84, 0x33, 0x59, 0x48, 0xb2, 0xbc, 0xd9, 0x88, 0xf8, 0xbe, 0xac, 0xa3,
0x2f, 0x25, 0x68, 0xa4, 0x21, 0x5d, 0x3b, 0x7a, 0xde, 0x82, 0x46, 0xa4, 0x82, 0x23, 0xaa, 0x82, 0x15, 0xfb, 0x33, 0xd8, 0x2e, 0xc6, 0xd7, 0x65, 0xf2, 0x3f, 0x68, 0x4e, 0xd4, 0x62, 0x18, 0xad,
0x9b, 0x07, 0x1d, 0x8d, 0xdb, 0x04, 0x3d, 0x21, 0xa4, 0x5a, 0x18, 0x35, 0x0a, 0x3f, 0x86, 0x16, 0x32, 0x4f, 0xae, 0xd6, 0x09, 0x47, 0xb5, 0x66, 0x11, 0xdf, 0x83, 0x4e, 0x5a, 0x52, 0xd2, 0x48,
0x89, 0xfa, 0xaf, 0x89, 0xfa, 0xb7, 0x56, 0xa1, 0x1e, 0x27, 0x01, 0xa7, 0x98, 0x7e, 0xd9, 0x79, 0x25, 0x9a, 0xc3, 0x13, 0xa6, 0x2d, 0xde, 0x95, 0xa1, 0xae, 0x8f, 0xd3, 0x24, 0xec, 0xdf, 0x58,
0xf6, 0x5d, 0xa8, 0xbf, 0x74, 0xdc, 0x11, 0xa2, 0x11, 0x92, 0x6e, 0xa4, 0x89, 0x95, 0x93, 0x75, 0x12, 0xeb, 0xd0, 0x60, 0xd7, 0x8c, 0x93, 0xf1, 0xb1, 0x2e, 0x8c, 0xf6, 0x3f, 0xab, 0x30, 0x7e,
0x4c, 0xc6, 0x61, 0x7c, 0x25, 0xa1, 0x54, 0xed, 0x6f, 0x71, 0xe4, 0xa8, 0x34, 0xe9, 0xfc, 0xde, 0x2a, 0x41, 0x23, 0x15, 0xec, 0xc6, 0xb6, 0xf9, 0x1f, 0x68, 0x44, 0x4a, 0x3a, 0xa2, 0xea, 0xa3,
0xc1, 0x6e, 0x30, 0x81, 0x98, 0xf4, 0x4e, 0x4d, 0x2a, 0xeb, 0x16, 0xd4, 0xc7, 0xca, 0xbe, 0x6e, 0x79, 0xd0, 0xd1, 0xaa, 0x18, 0x49, 0x27, 0x72, 0x57, 0x0b, 0x6d, 0x52, 0xa9, 0x83, 0xc2, 0x45,
0x18, 0x83, 0x5f, 0x7b, 0xb5, 0x9f, 0xc0, 0xb6, 0x9a, 0xd8, 0x0b, 0xe7, 0xf2, 0xd4, 0x4c, 0x53, 0xa2, 0xba, 0x6a, 0xa2, 0xba, 0xac, 0x55, 0xa8, 0xc7, 0x49, 0xc0, 0x29, 0x26, 0x97, 0xec, 0x1a,
0x21, 0xcb, 0x61, 0x6c, 0xef, 0xc2, 0xce, 0x94, 0x09, 0xdd, 0x1e, 0x36, 0xb4, 0x9f, 0x9d, 0x13, 0xf6, 0x7d, 0xa8, 0xbf, 0x72, 0xdc, 0x11, 0xb2, 0x11, 0x96, 0x6e, 0xa4, 0x8f, 0x4d, 0x7e, 0x15,
0xac, 0x3f, 0x63, 0x14, 0x33, 0x28, 0xa2, 0x47, 0xfd, 0x71, 0x24, 0x6d, 0x57, 0xed, 0x6f, 0x60, 0xc6, 0x04, 0x77, 0x7b, 0x2d, 0xa9, 0x54, 0xed, 0x6f, 0xb1, 0x5d, 0xaa, 0x24, 0xd0, 0xd9, 0x73,
0x59, 0xca, 0x08, 0x02, 0x04, 0x36, 0xed, 0x52, 0xb9, 0x9f, 0xe5, 0xb1, 0x6d, 0xe0, 0x54, 0x4d, 0x0f, 0x6b, 0xcd, 0x6c, 0xc4, 0x24, 0xcf, 0x54, 0x97, 0xb5, 0xee, 0x40, 0x7d, 0xac, 0xf0, 0x75,
0x51, 0x4c, 0x4c, 0x2e, 0x4b, 0x93, 0x7f, 0x94, 0xa0, 0xf5, 0x8a, 0xf0, 0x8b, 0x30, 0x3e, 0x13, 0x39, 0x1a, 0xfe, 0x3a, 0xaa, 0xfd, 0x0c, 0xb6, 0xd5, 0xd7, 0x66, 0xe1, 0x37, 0x65, 0xaa, 0x1f,
0xa4, 0xb1, 0x42, 0xcf, 0x61, 0x6d, 0xc6, 0x97, 0xfd, 0xc1, 0x15, 0xc7, 0xac, 0x4a, 0x76, 0x45, 0xab, 0x2d, 0xcb, 0x0f, 0x89, 0xbd, 0x0b, 0x3b, 0x53, 0x10, 0xba, 0xf8, 0x6c, 0x68, 0xbf, 0xb8,
0xf2, 0x71, 0xe7, 0xc8, 0x51, 0x9d, 0x56, 0x91, 0x7b, 0x68, 0xf7, 0xf5, 0x65, 0x1f, 0x4b, 0x27, 0x20, 0x98, 0xdd, 0x06, 0x14, 0xf3, 0x43, 0xec, 0x1e, 0xfd, 0xc7, 0x91, 0xc4, 0xae, 0xda, 0xdf,
0x8c, 0x55, 0x72, 0xa5, 0x18, 0x6e, 0x79, 0x71, 0x18, 0x45, 0xc4, 0x53, 0xbe, 0x84, 0xb1, 0x13, 0xc0, 0xb2, 0xb4, 0x11, 0x02, 0x08, 0x6e, 0x3a, 0xa4, 0x0a, 0x3f, 0x2b, 0x62, 0xdb, 0xd0, 0xa9,
0x63, 0xac, 0x66, 0xa4, 0x70, 0x27, 0xd2, 0xc6, 0xea, 0xc6, 0xd8, 0x49, 0x6a, 0x6c, 0x25, 0x23, 0x9a, 0x94, 0x9b, 0x40, 0x2e, 0x4b, 0xc8, 0x5f, 0x4b, 0xd0, 0x7a, 0x4d, 0xf8, 0x65, 0x18, 0x9f,
0x66, 0x8c, 0x35, 0x24, 0xf0, 0x31, 0xac, 0x1c, 0x46, 0xc9, 0x29, 0x73, 0x86, 0x44, 0xb4, 0x3f, 0x0b, 0xd1, 0x58, 0xa1, 0xa2, 0x31, 0xf3, 0xe3, 0xab, 0xfe, 0xe0, 0x9a, 0xe3, 0xa9, 0x4a, 0x75,
0x0f, 0xb9, 0xe3, 0xf7, 0x13, 0xb1, 0x54, 0x64, 0x59, 0x9b, 0xd0, 0x8a, 0x48, 0x8c, 0x75, 0xa2, 0xc5, 0xe1, 0xe3, 0xcc, 0xb1, 0xa3, 0xea, 0xb8, 0x22, 0xe7, 0x10, 0xf7, 0xcd, 0x55, 0x1f, 0x13,
0x77, 0xcb, 0x98, 0xf7, 0xaa, 0x75, 0x03, 0x36, 0xe4, 0xb2, 0x4f, 0x83, 0xfe, 0x19, 0x89, 0x03, 0x33, 0x8c, 0xd5, 0xe1, 0x4a, 0x33, 0x9c, 0xf2, 0xe2, 0x30, 0x8a, 0x88, 0xa7, 0x62, 0x09, 0xb0,
0xe2, 0x8f, 0x43, 0x8f, 0xe8, 0x38, 0x76, 0x61, 0x3d, 0x3d, 0x14, 0x0d, 0x28, 0x8f, 0x64, 0x3c, 0x53, 0x03, 0x56, 0x33, 0x56, 0x38, 0x13, 0x69, 0xb0, 0xba, 0x01, 0x3b, 0x4d, 0xc1, 0x56, 0x32,
0xf6, 0x09, 0x74, 0x4e, 0x46, 0x78, 0x47, 0xe0, 0x3e, 0x0d, 0x86, 0x4f, 0x1d, 0xee, 0x88, 0x02, 0x66, 0x06, 0xac, 0x21, 0x89, 0x8f, 0x61, 0xe5, 0x30, 0x4a, 0xce, 0x98, 0x33, 0x24, 0xa2, 0xb9,
0x45, 0xfb, 0x34, 0xf4, 0x98, 0x76, 0x88, 0xda, 0x5c, 0x89, 0x10, 0xaf, 0x6f, 0x8e, 0x14, 0x69, 0xf0, 0x90, 0x3b, 0x7e, 0x3f, 0x11, 0x43, 0x25, 0x96, 0x48, 0xf7, 0x88, 0xc4, 0x98, 0x27, 0x7a,
0x38, 0xe4, 0x27, 0x47, 0xb2, 0xa6, 0xa5, 0x43, 0x9b, 0xcb, 0x20, 0x14, 0xf1, 0x36, 0x7e, 0x4e, 0xb6, 0x8c, 0xe7, 0x5e, 0xb5, 0x6e, 0xc1, 0x86, 0x1c, 0xf6, 0x69, 0xd0, 0x3f, 0x27, 0x71, 0x40,
0x53, 0xb0, 0xea, 0x73, 0xba, 0x6a, 0x8a, 0xd4, 0x04, 0xba, 0x0f, 0xab, 0x3c, 0x45, 0xd1, 0xc7, 0xfc, 0x71, 0xe8, 0x11, 0xbd, 0x8f, 0x5d, 0x58, 0x4f, 0x17, 0x45, 0x79, 0xcb, 0x25, 0xb9, 0x1f,
0x42, 0x72, 0x74, 0xad, 0x6e, 0x69, 0xc9, 0x02, 0x46, 0xe4, 0x40, 0x4d, 0x01, 0x6d, 0x56, 0x79, 0xfb, 0x14, 0x3a, 0xa7, 0x23, 0xbc, 0xdf, 0x70, 0x2c, 0xa0, 0xe1, 0x73, 0x87, 0x3b, 0x22, 0x41,
0x7d, 0x05, 0xf0, 0x52, 0x36, 0x8c, 0x94, 0xc1, 0xb1, 0x90, 0xa5, 0x0d, 0xe9, 0x1f, 0x3b, 0x97, 0x11, 0x9f, 0x86, 0x1e, 0xd3, 0x01, 0xd1, 0x9b, 0x2b, 0x13, 0xe2, 0xf5, 0xcd, 0x92, 0x12, 0x0d,
0x29, 0x67, 0x62, 0x0b, 0x23, 0xfd, 0xde, 0xa1, 0xbe, 0xab, 0xef, 0x14, 0x55, 0xa1, 0xe2, 0xd3, 0x3f, 0x21, 0x93, 0x25, 0x99, 0xd3, 0x32, 0xa0, 0xcd, 0xe5, 0x26, 0x94, 0xf0, 0x36, 0x5e, 0x05,
0x31, 0x8e, 0x62, 0xc5, 0xcd, 0x5f, 0x25, 0x68, 0x2a, 0x83, 0x2a, 0x12, 0x3c, 0x76, 0xb1, 0x67, 0x52, 0xb2, 0xea, 0x2a, 0xb0, 0x6a, 0x92, 0xd4, 0x6c, 0x74, 0x1f, 0x56, 0x79, 0xca, 0xa2, 0x8f,
0x8c, 0xc5, 0x3d, 0xe3, 0x20, 0xff, 0x1d, 0xca, 0x40, 0xc0, 0xcf, 0x15, 0xbb, 0x70, 0xa2, 0x0c, 0x89, 0xe4, 0xe8, 0x5c, 0xdd, 0xd2, 0x96, 0x05, 0x8e, 0xa2, 0xe4, 0x65, 0x8f, 0xd1, 0xb0, 0x2a,
0xc8, 0x99, 0x62, 0x77, 0xa1, 0xa5, 0x52, 0xa6, 0x05, 0xab, 0xf3, 0x04, 0xef, 0x8b, 0x49, 0x87, 0xea, 0x6b, 0x80, 0x57, 0xb2, 0x60, 0xa4, 0x0d, 0x36, 0x9d, 0xac, 0x6c, 0x28, 0xff, 0xd8, 0xb9,
0x48, 0xe4, 0x60, 0x69, 0x1e, 0xdc, 0xcc, 0x49, 0x48, 0x8c, 0xfb, 0xf2, 0xf7, 0x59, 0xc0, 0xe3, 0x4a, 0x35, 0x13, 0x53, 0xb8, 0xd3, 0xb7, 0x0e, 0xf5, 0x5d, 0x7d, 0x1f, 0xaa, 0x0a, 0x17, 0x9f,
0xab, 0xde, 0x7d, 0x80, 0xc9, 0x4a, 0x34, 0xcc, 0x19, 0xb9, 0xd2, 0xe5, 0x8f, 0x91, 0x9c, 0x3b, 0x8e, 0xb1, 0xd1, 0x2b, 0x6d, 0x7e, 0x2f, 0x41, 0x53, 0x01, 0xaa, 0x9d, 0xe0, 0xb2, 0x8b, 0x35,
0x7e, 0xa2, 0x89, 0x78, 0x5c, 0x7e, 0x54, 0xb2, 0xbf, 0x82, 0xd5, 0xcf, 0xfd, 0x33, 0x1a, 0x66, 0x63, 0x10, 0xf7, 0x4c, 0x80, 0xfc, 0x57, 0x2e, 0x43, 0x01, 0x3f, 0x86, 0xec, 0xd2, 0x89, 0x32,
0x54, 0x50, 0x6a, 0xec, 0xfc, 0x10, 0xc6, 0x3a, 0x5e, 0xb1, 0xa4, 0x01, 0x2e, 0x15, 0x7b, 0xd8, 0x24, 0x67, 0x9a, 0xdd, 0x87, 0x96, 0x3a, 0x32, 0x6d, 0x58, 0x9d, 0x67, 0xf8, 0x50, 0xf4, 0x51,
0x9d, 0x61, 0x34, 0xb9, 0x8c, 0x29, 0x7b, 0x8a, 0xb8, 0x3f, 0x2b, 0x00, 0x13, 0x63, 0xd6, 0x63, 0x64, 0x22, 0x1b, 0x4b, 0xf3, 0xe0, 0x76, 0xce, 0x42, 0x72, 0xdc, 0x97, 0xbf, 0x2f, 0x02, 0x1e,
0xe8, 0xd1, 0xb0, 0x8f, 0x75, 0x77, 0x4e, 0x5d, 0xa2, 0xfa, 0xa4, 0x1f, 0x13, 0x37, 0x89, 0x19, 0x5f, 0xf7, 0x1e, 0x02, 0x4c, 0x46, 0xa2, 0x60, 0xce, 0xc9, 0xb5, 0x4e, 0x7f, 0xdc, 0xc9, 0x85,
0x3d, 0x27, 0x7a, 0x6e, 0x6d, 0xeb, 0x58, 0x8a, 0x18, 0x3e, 0x80, 0xad, 0x89, 0xae, 0x97, 0x51, 0xe3, 0x27, 0x5a, 0x88, 0xa7, 0xe5, 0x27, 0x25, 0xfb, 0x2b, 0x58, 0xfd, 0xdc, 0x3f, 0xa7, 0x61,
0x2b, 0x2f, 0x54, 0x7b, 0x08, 0x1b, 0xa8, 0x86, 0x03, 0x27, 0xc9, 0x29, 0x55, 0x16, 0x2a, 0x7d, 0xc6, 0x05, 0xad, 0xc6, 0xce, 0xf7, 0x61, 0xac, 0xf7, 0x2b, 0x86, 0x34, 0xc0, 0xa1, 0x52, 0x0f,
0x0c, 0xbb, 0x19, 0x9c, 0xa2, 0x9c, 0x33, 0xaa, 0xd5, 0x85, 0xaa, 0x1f, 0xc2, 0x36, 0xaa, 0x5e, 0xab, 0x33, 0x8c, 0x26, 0x17, 0x49, 0x85, 0xa7, 0x84, 0xfb, 0xad, 0x02, 0x30, 0x01, 0xb3, 0x9e,
0x38, 0x94, 0x17, 0xf5, 0x96, 0xff, 0x01, 0xce, 0x31, 0x89, 0x87, 0x39, 0x9c, 0xb5, 0x85, 0x4a, 0x42, 0x8f, 0x86, 0x7d, 0xcc, 0xbb, 0x0b, 0xea, 0x12, 0x55, 0x27, 0xfd, 0x98, 0xb8, 0x49, 0xcc,
0xef, 0xc1, 0x3a, 0x2a, 0x15, 0xfc, 0xd4, 0xaf, 0x53, 0x61, 0xc4, 0xe5, 0x38, 0x7a, 0x32, 0x2a, 0xe8, 0x05, 0xd1, 0x7d, 0x6b, 0x5b, 0xef, 0xa5, 0xc8, 0xe1, 0x03, 0xd8, 0x9a, 0xf8, 0x7a, 0x19,
0x2b, 0x8b, 0x54, 0xec, 0x23, 0x68, 0x3d, 0x4f, 0x86, 0x84, 0xfb, 0x83, 0xb4, 0xfa, 0xff, 0x63, 0xb7, 0xf2, 0x42, 0xb7, 0xc7, 0xb0, 0x81, 0x6e, 0xd8, 0x70, 0x92, 0x9c, 0x53, 0x65, 0xa1, 0xd3,
0x3f, 0xfd, 0x54, 0x86, 0xe6, 0xe1, 0x30, 0x0e, 0x93, 0x28, 0x37, 0x19, 0x54, 0x49, 0x4f, 0x4d, 0xc7, 0xb0, 0x9b, 0xe1, 0x29, 0xd2, 0x39, 0xe3, 0x5a, 0x5d, 0xe8, 0xfa, 0x21, 0x6c, 0xa3, 0xeb,
0x06, 0x25, 0x73, 0x0f, 0x5a, 0xea, 0x23, 0xa8, 0xc5, 0x54, 0xaf, 0x59, 0xd3, 0x95, 0x2f, 0x6e, 0xa5, 0x43, 0x79, 0xd1, 0x6f, 0xf9, 0x4f, 0xf0, 0x1c, 0x93, 0x78, 0x98, 0xe3, 0x59, 0x5b, 0xe8,
0x3b, 0x03, 0x11, 0x82, 0x16, 0xcc, 0x77, 0x5b, 0xa6, 0x1a, 0x3f, 0x81, 0xf6, 0x48, 0xc5, 0xa5, 0xf4, 0x1e, 0xac, 0xa3, 0x53, 0x21, 0x4e, 0xfd, 0x26, 0x17, 0x46, 0x5c, 0x8e, 0xad, 0x27, 0xe3,
0x25, 0x55, 0x66, 0xef, 0x18, 0xcf, 0x13, 0x80, 0xfb, 0xd9, 0xf8, 0x55, 0x4f, 0x3d, 0x87, 0xf5, 0xb2, 0xb2, 0xc8, 0xc5, 0x3e, 0x86, 0xd6, 0xcb, 0x64, 0x48, 0xb8, 0x3f, 0x48, 0xb3, 0xff, 0x2f,
0xa9, 0xcd, 0x7c, 0x6b, 0xd9, 0xd9, 0xd6, 0x6a, 0x1e, 0x6c, 0x68, 0xb3, 0x59, 0x2d, 0xd9, 0x6f, 0xd6, 0xd3, 0x8f, 0x65, 0x68, 0x1e, 0x0e, 0xe3, 0x30, 0x89, 0x72, 0x9d, 0x41, 0xa5, 0xf4, 0x54,
0x97, 0xea, 0x6b, 0x9e, 0x5e, 0x81, 0xad, 0x77, 0xa1, 0x1d, 0xa8, 0x0f, 0x56, 0xca, 0x48, 0x25, 0x67, 0x50, 0x36, 0x0f, 0xa0, 0xa5, 0x3e, 0x82, 0xda, 0x4c, 0xd5, 0x9a, 0x35, 0x9d, 0xf9, 0xe2,
0x63, 0x20, 0xf7, 0x31, 0x43, 0x56, 0x5c, 0x89, 0x73, 0x26, 0x2b, 0x59, 0x8e, 0x73, 0x9f, 0x46, 0x2e, 0x35, 0x10, 0x5b, 0xd0, 0x86, 0xf9, 0x6a, 0xcb, 0x64, 0xe3, 0x27, 0xd0, 0x1e, 0xa9, 0x7d,
0x35, 0x26, 0xf5, 0x75, 0x6f, 0xd6, 0x43, 0xe3, 0xe0, 0xd7, 0x1a, 0x54, 0x9e, 0x1c, 0x7d, 0x69, 0x69, 0x4b, 0x75, 0xb2, 0xf7, 0x4c, 0xe4, 0x09, 0xc1, 0xfd, 0xec, 0xfe, 0x55, 0x4d, 0xbd, 0x84,
0xbd, 0x86, 0xd5, 0xc2, 0xf3, 0xc8, 0x32, 0xd3, 0x66, 0xf6, 0x1b, 0xae, 0xf7, 0xe6, 0xbc, 0x63, 0xf5, 0xa9, 0xc9, 0x7c, 0x69, 0xd9, 0xd9, 0xd2, 0x6a, 0x1e, 0x6c, 0x68, 0xd8, 0xac, 0x97, 0xac,
0x7d, 0x0f, 0x58, 0x12, 0x36, 0x0b, 0x97, 0x84, 0xd4, 0xe6, 0xec, 0xfb, 0x47, 0x6a, 0x73, 0xde, 0xb7, 0x2b, 0xf5, 0x35, 0x4f, 0x2f, 0xd8, 0xd6, 0xff, 0xa1, 0x1d, 0xa8, 0x0f, 0x56, 0xaa, 0x48,
0xdd, 0x62, 0xc9, 0xfa, 0x08, 0x6a, 0xea, 0x31, 0x65, 0x6d, 0x6a, 0xd9, 0xdc, 0xab, 0xac, 0xb7, 0x25, 0x03, 0x90, 0xfb, 0x98, 0xa1, 0x2a, 0xae, 0xe4, 0x39, 0x53, 0x95, 0xac, 0xc6, 0xb9, 0x4f,
0x55, 0xd8, 0x4d, 0x15, 0x5f, 0x40, 0x3b, 0xf7, 0x4c, 0xb5, 0x6e, 0xe4, 0x7c, 0xe5, 0xdf, 0x62, 0xa3, 0x6a, 0x93, 0xfa, 0x32, 0x39, 0xeb, 0x91, 0x74, 0xf0, 0x4b, 0x0d, 0x2a, 0xcf, 0x8e, 0xbf,
0xbd, 0x37, 0x66, 0x1f, 0xa6, 0xd6, 0x0e, 0x01, 0x26, 0x8f, 0x1a, 0xab, 0xab, 0xa5, 0xa7, 0xde, 0xb4, 0xde, 0xc0, 0x6a, 0xe1, 0x69, 0x67, 0x99, 0x6e, 0x33, 0xfb, 0xfd, 0xd9, 0xfb, 0xf7, 0xbc,
0x74, 0xbd, 0xdd, 0x19, 0x27, 0xa9, 0x91, 0x53, 0x58, 0x2b, 0xbe, 0x5a, 0xac, 0x02, 0xab, 0xc5, 0x65, 0x7d, 0x0f, 0x58, 0x12, 0x98, 0x85, 0x4b, 0x42, 0x8a, 0x39, 0xfb, 0xfe, 0x91, 0x62, 0xce,
0x37, 0x46, 0xef, 0xd6, 0xdc, 0xf3, 0xac, 0xd9, 0xe2, 0xdb, 0x25, 0x35, 0x3b, 0xe7, 0x25, 0x94, 0xbb, 0x5b, 0x2c, 0x59, 0x1f, 0x41, 0x4d, 0x3d, 0x04, 0xad, 0x4d, 0x6d, 0x9b, 0x7b, 0x51, 0xf6,
0x9a, 0x9d, 0xfb, 0xe8, 0x59, 0xb2, 0xbe, 0x86, 0x4e, 0xfe, 0xd9, 0x61, 0x19, 0x92, 0x66, 0xbe, 0xb6, 0x0a, 0xb3, 0xa9, 0xe3, 0x11, 0xb4, 0x73, 0x4f, 0x6c, 0xeb, 0x56, 0x2e, 0x56, 0xfe, 0x1d,
0x86, 0x7a, 0x37, 0xe7, 0x9c, 0xa6, 0x06, 0xdf, 0x87, 0x65, 0xf5, 0xc0, 0x30, 0x15, 0x9f, 0x7d, 0xd9, 0xfb, 0xd7, 0xec, 0xc5, 0x14, 0xed, 0x10, 0x60, 0xf2, 0x64, 0xb2, 0xba, 0xda, 0x7a, 0xea,
0x93, 0xf4, 0x36, 0xf3, 0x9b, 0xa9, 0xd6, 0x03, 0xa8, 0xa9, 0xeb, 0x65, 0x5a, 0x00, 0xb9, 0xdb, 0x3d, 0xda, 0xdb, 0x9d, 0xb1, 0x92, 0x82, 0x9c, 0xc1, 0x5a, 0xf1, 0x4d, 0x64, 0x15, 0x54, 0x2d,
0x66, 0xaf, 0x95, 0xdd, 0xb5, 0x97, 0x1e, 0x94, 0x8c, 0x1f, 0x96, 0xf3, 0xc3, 0x66, 0xf9, 0xc9, 0xbe, 0x60, 0x7a, 0x77, 0xe6, 0xae, 0x67, 0x61, 0x8b, 0x2f, 0xa3, 0x14, 0x76, 0xce, 0x3b, 0x2b,
0x24, 0x67, 0x50, 0x93, 0x7f, 0xa4, 0x3c, 0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x94, 0xe5, 0x85, 0x9d, 0xfb, 0xa4, 0x5a, 0xb2, 0xbe, 0x86, 0x4e, 0xfe, 0x51, 0x63, 0x19, 0x91, 0x66, 0xbe,
0x0c, 0x55, 0x11, 0x00, 0x00, 0xb5, 0x7a, 0xb7, 0xe7, 0xac, 0xa6, 0x80, 0xef, 0xc3, 0xb2, 0x7a, 0xbe, 0x98, 0x8c, 0xcf, 0xbe,
0x78, 0x7a, 0x9b, 0xf9, 0xc9, 0xd4, 0xeb, 0x11, 0xd4, 0xd4, 0xf5, 0x32, 0x4d, 0x80, 0xdc, 0x6d,
0xb3, 0xd7, 0xca, 0xce, 0xda, 0x4b, 0x8f, 0x4a, 0x26, 0x0e, 0xcb, 0xc5, 0x61, 0xb3, 0xe2, 0x64,
0x0e, 0x67, 0x50, 0x93, 0x7f, 0x02, 0x3d, 0xfe, 0x23, 0x00, 0x00, 0xff, 0xff, 0xfd, 0x2d, 0x77,
0x4b, 0x11, 0x12, 0x00, 0x00,
} }

View file

@ -61,6 +61,10 @@ message AddProcessRequest {
string stdin = 8; // path to the file where stdin will be read (optional) string stdin = 8; // path to the file where stdin will be read (optional)
string stdout = 9; // path to file where stdout will be written (optional) string stdout = 9; // path to file where stdout will be written (optional)
string stderr = 10; // path to file where stderr will be written (optional) string stderr = 10; // path to file where stderr will be written (optional)
repeated string capabilities = 11;
string apparmorProfile = 12;
string selinuxLabel = 13;
bool noNewPrivileges = 14;
} }
message User { message User {
@ -123,6 +127,10 @@ message Process {
string stdin = 8; // path to the file where stdin will be read (optional) string stdin = 8; // path to the file where stdin will be read (optional)
string stdout = 9; // path to file where stdout will be written (optional) string stdout = 9; // path to file where stdout will be written (optional)
string stderr = 10; // path to file where stderr will be written (optional) string stderr = 10; // path to file where stderr will be written (optional)
repeated string capabilities = 11;
string apparmorProfile = 12;
string selinuxLabel = 13;
bool noNewPrivileges = 14;
} }
message Container { message Container {