runtimev1: add image-path and work-path for c/r
add ImagePath and WorkPath for checkpoint process, add CriuImagePath and CriuWorkPath for create process in runtime v1 protobuf Signed-off-by: Ace-Tang <aceapril@126.com>
This commit is contained in:
		| @@ -112,6 +112,20 @@ file { | |||||||
|       type: TYPE_UINT32 |       type: TYPE_UINT32 | ||||||
|       json_name: "ioGid" |       json_name: "ioGid" | ||||||
|     } |     } | ||||||
|  |     field { | ||||||
|  |       name: "criu_work_path" | ||||||
|  |       number: 12 | ||||||
|  |       label: LABEL_OPTIONAL | ||||||
|  |       type: TYPE_STRING | ||||||
|  |       json_name: "criuWorkPath" | ||||||
|  |     } | ||||||
|  |     field { | ||||||
|  |       name: "criu_image_path" | ||||||
|  |       number: 13 | ||||||
|  |       label: LABEL_OPTIONAL | ||||||
|  |       type: TYPE_STRING | ||||||
|  |       json_name: "criuImagePath" | ||||||
|  |     } | ||||||
|   } |   } | ||||||
|   message_type { |   message_type { | ||||||
|     name: "CheckpointOptions" |     name: "CheckpointOptions" | ||||||
| @@ -164,6 +178,20 @@ file { | |||||||
|       type: TYPE_STRING |       type: TYPE_STRING | ||||||
|       json_name: "cgroupsMode" |       json_name: "cgroupsMode" | ||||||
|     } |     } | ||||||
|  |     field { | ||||||
|  |       name: "work_path" | ||||||
|  |       number: 8 | ||||||
|  |       label: LABEL_OPTIONAL | ||||||
|  |       type: TYPE_STRING | ||||||
|  |       json_name: "workPath" | ||||||
|  |     } | ||||||
|  |     field { | ||||||
|  |       name: "image_path" | ||||||
|  |       number: 9 | ||||||
|  |       label: LABEL_OPTIONAL | ||||||
|  |       type: TYPE_STRING | ||||||
|  |       json_name: "imagePath" | ||||||
|  |     } | ||||||
|   } |   } | ||||||
|   message_type { |   message_type { | ||||||
|     name: "ProcessDetails" |     name: "ProcessDetails" | ||||||
|   | |||||||
| @@ -60,6 +60,8 @@ type CreateOptions struct { | |||||||
| 	ShimCgroup          string   `protobuf:"bytes,9,opt,name=shim_cgroup,json=shimCgroup,proto3" json:"shim_cgroup,omitempty"` | 	ShimCgroup          string   `protobuf:"bytes,9,opt,name=shim_cgroup,json=shimCgroup,proto3" json:"shim_cgroup,omitempty"` | ||||||
| 	IoUid               uint32   `protobuf:"varint,10,opt,name=io_uid,json=ioUid,proto3" json:"io_uid,omitempty"` | 	IoUid               uint32   `protobuf:"varint,10,opt,name=io_uid,json=ioUid,proto3" json:"io_uid,omitempty"` | ||||||
| 	IoGid               uint32   `protobuf:"varint,11,opt,name=io_gid,json=ioGid,proto3" json:"io_gid,omitempty"` | 	IoGid               uint32   `protobuf:"varint,11,opt,name=io_gid,json=ioGid,proto3" json:"io_gid,omitempty"` | ||||||
|  | 	CriuWorkPath        string   `protobuf:"bytes,12,opt,name=criu_work_path,json=criuWorkPath,proto3" json:"criu_work_path,omitempty"` | ||||||
|  | 	CriuImagePath       string   `protobuf:"bytes,13,opt,name=criu_image_path,json=criuImagePath,proto3" json:"criu_image_path,omitempty"` | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *CreateOptions) Reset()                    { *m = CreateOptions{} } | func (m *CreateOptions) Reset()                    { *m = CreateOptions{} } | ||||||
| @@ -74,6 +76,8 @@ type CheckpointOptions struct { | |||||||
| 	FileLocks           bool     `protobuf:"varint,5,opt,name=file_locks,json=fileLocks,proto3" json:"file_locks,omitempty"` | 	FileLocks           bool     `protobuf:"varint,5,opt,name=file_locks,json=fileLocks,proto3" json:"file_locks,omitempty"` | ||||||
| 	EmptyNamespaces     []string `protobuf:"bytes,6,rep,name=empty_namespaces,json=emptyNamespaces" json:"empty_namespaces,omitempty"` | 	EmptyNamespaces     []string `protobuf:"bytes,6,rep,name=empty_namespaces,json=emptyNamespaces" json:"empty_namespaces,omitempty"` | ||||||
| 	CgroupsMode         string   `protobuf:"bytes,7,opt,name=cgroups_mode,json=cgroupsMode,proto3" json:"cgroups_mode,omitempty"` | 	CgroupsMode         string   `protobuf:"bytes,7,opt,name=cgroups_mode,json=cgroupsMode,proto3" json:"cgroups_mode,omitempty"` | ||||||
|  | 	WorkPath            string   `protobuf:"bytes,8,opt,name=work_path,json=workPath,proto3" json:"work_path,omitempty"` | ||||||
|  | 	ImagePath           string   `protobuf:"bytes,9,opt,name=image_path,json=imagePath,proto3" json:"image_path,omitempty"` | ||||||
| } | } | ||||||
|  |  | ||||||
| func (m *CheckpointOptions) Reset()                    { *m = CheckpointOptions{} } | func (m *CheckpointOptions) Reset()                    { *m = CheckpointOptions{} } | ||||||
| @@ -252,6 +256,18 @@ func (m *CreateOptions) MarshalTo(dAtA []byte) (int, error) { | |||||||
| 		i++ | 		i++ | ||||||
| 		i = encodeVarintRunc(dAtA, i, uint64(m.IoGid)) | 		i = encodeVarintRunc(dAtA, i, uint64(m.IoGid)) | ||||||
| 	} | 	} | ||||||
|  | 	if len(m.CriuWorkPath) > 0 { | ||||||
|  | 		dAtA[i] = 0x62 | ||||||
|  | 		i++ | ||||||
|  | 		i = encodeVarintRunc(dAtA, i, uint64(len(m.CriuWorkPath))) | ||||||
|  | 		i += copy(dAtA[i:], m.CriuWorkPath) | ||||||
|  | 	} | ||||||
|  | 	if len(m.CriuImagePath) > 0 { | ||||||
|  | 		dAtA[i] = 0x6a | ||||||
|  | 		i++ | ||||||
|  | 		i = encodeVarintRunc(dAtA, i, uint64(len(m.CriuImagePath))) | ||||||
|  | 		i += copy(dAtA[i:], m.CriuImagePath) | ||||||
|  | 	} | ||||||
| 	return i, nil | 	return i, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -341,6 +357,18 @@ func (m *CheckpointOptions) MarshalTo(dAtA []byte) (int, error) { | |||||||
| 		i = encodeVarintRunc(dAtA, i, uint64(len(m.CgroupsMode))) | 		i = encodeVarintRunc(dAtA, i, uint64(len(m.CgroupsMode))) | ||||||
| 		i += copy(dAtA[i:], m.CgroupsMode) | 		i += copy(dAtA[i:], m.CgroupsMode) | ||||||
| 	} | 	} | ||||||
|  | 	if len(m.WorkPath) > 0 { | ||||||
|  | 		dAtA[i] = 0x42 | ||||||
|  | 		i++ | ||||||
|  | 		i = encodeVarintRunc(dAtA, i, uint64(len(m.WorkPath))) | ||||||
|  | 		i += copy(dAtA[i:], m.WorkPath) | ||||||
|  | 	} | ||||||
|  | 	if len(m.ImagePath) > 0 { | ||||||
|  | 		dAtA[i] = 0x4a | ||||||
|  | 		i++ | ||||||
|  | 		i = encodeVarintRunc(dAtA, i, uint64(len(m.ImagePath))) | ||||||
|  | 		i += copy(dAtA[i:], m.ImagePath) | ||||||
|  | 	} | ||||||
| 	return i, nil | 	return i, nil | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -439,6 +467,14 @@ func (m *CreateOptions) Size() (n int) { | |||||||
| 	if m.IoGid != 0 { | 	if m.IoGid != 0 { | ||||||
| 		n += 1 + sovRunc(uint64(m.IoGid)) | 		n += 1 + sovRunc(uint64(m.IoGid)) | ||||||
| 	} | 	} | ||||||
|  | 	l = len(m.CriuWorkPath) | ||||||
|  | 	if l > 0 { | ||||||
|  | 		n += 1 + l + sovRunc(uint64(l)) | ||||||
|  | 	} | ||||||
|  | 	l = len(m.CriuImagePath) | ||||||
|  | 	if l > 0 { | ||||||
|  | 		n += 1 + l + sovRunc(uint64(l)) | ||||||
|  | 	} | ||||||
| 	return n | 	return n | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -470,6 +506,14 @@ func (m *CheckpointOptions) Size() (n int) { | |||||||
| 	if l > 0 { | 	if l > 0 { | ||||||
| 		n += 1 + l + sovRunc(uint64(l)) | 		n += 1 + l + sovRunc(uint64(l)) | ||||||
| 	} | 	} | ||||||
|  | 	l = len(m.WorkPath) | ||||||
|  | 	if l > 0 { | ||||||
|  | 		n += 1 + l + sovRunc(uint64(l)) | ||||||
|  | 	} | ||||||
|  | 	l = len(m.ImagePath) | ||||||
|  | 	if l > 0 { | ||||||
|  | 		n += 1 + l + sovRunc(uint64(l)) | ||||||
|  | 	} | ||||||
| 	return n | 	return n | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -525,6 +569,8 @@ func (this *CreateOptions) String() string { | |||||||
| 		`ShimCgroup:` + fmt.Sprintf("%v", this.ShimCgroup) + `,`, | 		`ShimCgroup:` + fmt.Sprintf("%v", this.ShimCgroup) + `,`, | ||||||
| 		`IoUid:` + fmt.Sprintf("%v", this.IoUid) + `,`, | 		`IoUid:` + fmt.Sprintf("%v", this.IoUid) + `,`, | ||||||
| 		`IoGid:` + fmt.Sprintf("%v", this.IoGid) + `,`, | 		`IoGid:` + fmt.Sprintf("%v", this.IoGid) + `,`, | ||||||
|  | 		`CriuWorkPath:` + fmt.Sprintf("%v", this.CriuWorkPath) + `,`, | ||||||
|  | 		`CriuImagePath:` + fmt.Sprintf("%v", this.CriuImagePath) + `,`, | ||||||
| 		`}`, | 		`}`, | ||||||
| 	}, "") | 	}, "") | ||||||
| 	return s | 	return s | ||||||
| @@ -541,6 +587,8 @@ func (this *CheckpointOptions) String() string { | |||||||
| 		`FileLocks:` + fmt.Sprintf("%v", this.FileLocks) + `,`, | 		`FileLocks:` + fmt.Sprintf("%v", this.FileLocks) + `,`, | ||||||
| 		`EmptyNamespaces:` + fmt.Sprintf("%v", this.EmptyNamespaces) + `,`, | 		`EmptyNamespaces:` + fmt.Sprintf("%v", this.EmptyNamespaces) + `,`, | ||||||
| 		`CgroupsMode:` + fmt.Sprintf("%v", this.CgroupsMode) + `,`, | 		`CgroupsMode:` + fmt.Sprintf("%v", this.CgroupsMode) + `,`, | ||||||
|  | 		`WorkPath:` + fmt.Sprintf("%v", this.WorkPath) + `,`, | ||||||
|  | 		`ImagePath:` + fmt.Sprintf("%v", this.ImagePath) + `,`, | ||||||
| 		`}`, | 		`}`, | ||||||
| 	}, "") | 	}, "") | ||||||
| 	return s | 	return s | ||||||
| @@ -994,6 +1042,64 @@ func (m *CreateOptions) Unmarshal(dAtA []byte) error { | |||||||
| 					break | 					break | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
|  | 		case 12: | ||||||
|  | 			if wireType != 2 { | ||||||
|  | 				return fmt.Errorf("proto: wrong wireType = %d for field CriuWorkPath", wireType) | ||||||
|  | 			} | ||||||
|  | 			var stringLen uint64 | ||||||
|  | 			for shift := uint(0); ; shift += 7 { | ||||||
|  | 				if shift >= 64 { | ||||||
|  | 					return ErrIntOverflowRunc | ||||||
|  | 				} | ||||||
|  | 				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 ErrInvalidLengthRunc | ||||||
|  | 			} | ||||||
|  | 			postIndex := iNdEx + intStringLen | ||||||
|  | 			if postIndex > l { | ||||||
|  | 				return io.ErrUnexpectedEOF | ||||||
|  | 			} | ||||||
|  | 			m.CriuWorkPath = string(dAtA[iNdEx:postIndex]) | ||||||
|  | 			iNdEx = postIndex | ||||||
|  | 		case 13: | ||||||
|  | 			if wireType != 2 { | ||||||
|  | 				return fmt.Errorf("proto: wrong wireType = %d for field CriuImagePath", wireType) | ||||||
|  | 			} | ||||||
|  | 			var stringLen uint64 | ||||||
|  | 			for shift := uint(0); ; shift += 7 { | ||||||
|  | 				if shift >= 64 { | ||||||
|  | 					return ErrIntOverflowRunc | ||||||
|  | 				} | ||||||
|  | 				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 ErrInvalidLengthRunc | ||||||
|  | 			} | ||||||
|  | 			postIndex := iNdEx + intStringLen | ||||||
|  | 			if postIndex > l { | ||||||
|  | 				return io.ErrUnexpectedEOF | ||||||
|  | 			} | ||||||
|  | 			m.CriuImagePath = string(dAtA[iNdEx:postIndex]) | ||||||
|  | 			iNdEx = postIndex | ||||||
| 		default: | 		default: | ||||||
| 			iNdEx = preIndex | 			iNdEx = preIndex | ||||||
| 			skippy, err := skipRunc(dAtA[iNdEx:]) | 			skippy, err := skipRunc(dAtA[iNdEx:]) | ||||||
| @@ -1202,6 +1308,64 @@ func (m *CheckpointOptions) Unmarshal(dAtA []byte) error { | |||||||
| 			} | 			} | ||||||
| 			m.CgroupsMode = string(dAtA[iNdEx:postIndex]) | 			m.CgroupsMode = string(dAtA[iNdEx:postIndex]) | ||||||
| 			iNdEx = postIndex | 			iNdEx = postIndex | ||||||
|  | 		case 8: | ||||||
|  | 			if wireType != 2 { | ||||||
|  | 				return fmt.Errorf("proto: wrong wireType = %d for field WorkPath", wireType) | ||||||
|  | 			} | ||||||
|  | 			var stringLen uint64 | ||||||
|  | 			for shift := uint(0); ; shift += 7 { | ||||||
|  | 				if shift >= 64 { | ||||||
|  | 					return ErrIntOverflowRunc | ||||||
|  | 				} | ||||||
|  | 				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 ErrInvalidLengthRunc | ||||||
|  | 			} | ||||||
|  | 			postIndex := iNdEx + intStringLen | ||||||
|  | 			if postIndex > l { | ||||||
|  | 				return io.ErrUnexpectedEOF | ||||||
|  | 			} | ||||||
|  | 			m.WorkPath = string(dAtA[iNdEx:postIndex]) | ||||||
|  | 			iNdEx = postIndex | ||||||
|  | 		case 9: | ||||||
|  | 			if wireType != 2 { | ||||||
|  | 				return fmt.Errorf("proto: wrong wireType = %d for field ImagePath", wireType) | ||||||
|  | 			} | ||||||
|  | 			var stringLen uint64 | ||||||
|  | 			for shift := uint(0); ; shift += 7 { | ||||||
|  | 				if shift >= 64 { | ||||||
|  | 					return ErrIntOverflowRunc | ||||||
|  | 				} | ||||||
|  | 				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 ErrInvalidLengthRunc | ||||||
|  | 			} | ||||||
|  | 			postIndex := iNdEx + intStringLen | ||||||
|  | 			if postIndex > l { | ||||||
|  | 				return io.ErrUnexpectedEOF | ||||||
|  | 			} | ||||||
|  | 			m.ImagePath = string(dAtA[iNdEx:postIndex]) | ||||||
|  | 			iNdEx = postIndex | ||||||
| 		default: | 		default: | ||||||
| 			iNdEx = preIndex | 			iNdEx = preIndex | ||||||
| 			skippy, err := skipRunc(dAtA[iNdEx:]) | 			skippy, err := skipRunc(dAtA[iNdEx:]) | ||||||
| @@ -1412,39 +1576,43 @@ func init() { | |||||||
| } | } | ||||||
|  |  | ||||||
| var fileDescriptorRunc = []byte{ | var fileDescriptorRunc = []byte{ | ||||||
| 	// 541 bytes of a gzipped FileDescriptorProto | 	// 604 bytes of a gzipped FileDescriptorProto | ||||||
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x93, 0xc1, 0x6e, 0xd3, 0x40, | 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x94, 0xcf, 0x6e, 0xd3, 0x40, | ||||||
| 	0x10, 0x86, 0x6b, 0xda, 0x26, 0xce, 0xa4, 0x29, 0xb0, 0x50, 0xc9, 0x14, 0x91, 0x86, 0x00, 0x52, | 	0x10, 0xc6, 0xeb, 0xfe, 0x49, 0x9c, 0x49, 0xd2, 0xc2, 0x42, 0x25, 0xd3, 0xaa, 0x69, 0x08, 0x7f, | ||||||
| 	0xb8, 0xa4, 0x12, 0x88, 0x13, 0xb7, 0xa6, 0x08, 0x55, 0x40, 0xa9, 0x0c, 0x95, 0x10, 0x42, 0x5a, | 	0x14, 0x2e, 0xa9, 0x04, 0xe2, 0xc4, 0xad, 0x29, 0x42, 0x15, 0x50, 0x2a, 0x43, 0x05, 0x42, 0x48, | ||||||
| 	0xb9, 0xeb, 0x21, 0x59, 0xc5, 0xde, 0x59, 0x79, 0xd7, 0xd4, 0xb9, 0xf5, 0x09, 0x78, 0xae, 0x1e, | 	0x2b, 0x77, 0x3d, 0x24, 0xab, 0xc4, 0x3b, 0x96, 0x77, 0x4d, 0x92, 0x1b, 0x4f, 0xc0, 0x0b, 0xf1, | ||||||
| 	0x39, 0x72, 0x42, 0x34, 0x2f, 0x02, 0xf2, 0xda, 0x0e, 0x9c, 0x39, 0x72, 0xfb, 0xe7, 0xfb, 0xc7, | 	0x02, 0x3d, 0x21, 0x8e, 0x9c, 0x10, 0xcd, 0x93, 0xa0, 0x5d, 0xc7, 0x69, 0xcf, 0x1c, 0xb9, 0xcd, | ||||||
| 	0x9e, 0xd1, 0xbf, 0x1a, 0x98, 0x4c, 0xa5, 0x9d, 0xe5, 0x67, 0x63, 0x41, 0xe9, 0xbe, 0x20, 0x65, | 	0xfc, 0xe6, 0xb3, 0x67, 0xf4, 0x7d, 0xb2, 0xa1, 0x3f, 0x90, 0x66, 0x98, 0x9f, 0xf7, 0x04, 0x25, | ||||||
| 	0x23, 0xa9, 0x30, 0x8b, 0xff, 0x96, 0x59, 0xae, 0xac, 0x4c, 0x71, 0x3f, 0x91, 0x2a, 0x2f, 0xca, | 	0x07, 0x82, 0x94, 0x89, 0xa4, 0xc2, 0x2c, 0xbe, 0x5e, 0x66, 0xb9, 0x32, 0x32, 0xc1, 0x83, 0xb1, | ||||||
| 	0x4a, 0xd8, 0x85, 0x46, 0xe3, 0xd4, 0x58, 0x67, 0x64, 0x89, 0xed, 0xfc, 0x69, 0x1f, 0xbb, 0xb6, | 	0x54, 0xf9, 0xd4, 0x76, 0xc2, 0xcc, 0x52, 0xd4, 0xae, 0xea, 0xa5, 0x19, 0x19, 0x62, 0xdb, 0x57, | ||||||
| 	0x71, 0x69, 0xee, 0xde, 0x9e, 0xd2, 0x94, 0x5c, 0xc7, 0x7e, 0xa9, 0xaa, 0xe6, 0xe1, 0x57, 0x0f, | 	0xf2, 0x9e, 0x93, 0xf5, 0xec, 0x70, 0xe7, 0xf6, 0x80, 0x06, 0xe4, 0x14, 0x07, 0xb6, 0x2a, 0xc4, | ||||||
| 	0xba, 0x61, 0xae, 0xc4, 0x5b, 0x6d, 0x25, 0x29, 0xc3, 0x02, 0x68, 0xd7, 0x23, 0x02, 0x6f, 0xe0, | 	0x9d, 0x6f, 0x1e, 0xd4, 0xc3, 0x5c, 0x89, 0x37, 0xa9, 0x91, 0xa4, 0x34, 0x0b, 0xa0, 0xba, 0x58, | ||||||
| 	0x8d, 0x3a, 0x61, 0x53, 0xb2, 0xfb, 0xb0, 0x55, 0x4b, 0x9e, 0x11, 0xd9, 0xe0, 0x9a, 0xb3, 0xbb, | 	0x11, 0x78, 0x6d, 0xaf, 0x5b, 0x0b, 0xcb, 0x96, 0xdd, 0x85, 0xc6, 0xa2, 0xe4, 0x19, 0x91, 0x09, | ||||||
| 	0x35, 0x0b, 0x89, 0x2c, 0xbb, 0x0b, 0x1d, 0x91, 0xc9, 0x9c, 0xeb, 0xc8, 0xce, 0x82, 0x75, 0xe7, | 	0x56, 0xdd, 0xb8, 0xbe, 0x60, 0x21, 0x91, 0x61, 0xbb, 0x50, 0x13, 0x99, 0xcc, 0x79, 0x1a, 0x99, | ||||||
| 	0xfb, 0x25, 0x38, 0x89, 0xec, 0x8c, 0x3d, 0x82, 0x6d, 0xb3, 0x30, 0x16, 0xd3, 0x98, 0x8b, 0x69, | 	0x61, 0xb0, 0xe6, 0xe6, 0xbe, 0x05, 0xa7, 0x91, 0x19, 0xb2, 0x07, 0xb0, 0xa9, 0x67, 0xda, 0x60, | ||||||
| 	0x46, 0xb9, 0x0e, 0x36, 0x06, 0xde, 0xc8, 0x0f, 0x7b, 0x35, 0x9d, 0x38, 0x38, 0xbc, 0x58, 0x87, | 	0x12, 0x73, 0x31, 0xc8, 0x28, 0x4f, 0x83, 0xf5, 0xb6, 0xd7, 0xf5, 0xc3, 0xe6, 0x82, 0xf6, 0x1d, | ||||||
| 	0xde, 0x24, 0xc3, 0xc8, 0x62, 0xb3, 0xd2, 0x10, 0x7a, 0x8a, 0xb8, 0x96, 0x5f, 0xc8, 0x56, 0x93, | 	0xec, 0xfc, 0x58, 0x83, 0x66, 0x3f, 0xc3, 0xc8, 0x60, 0x79, 0x52, 0x07, 0x9a, 0x8a, 0x78, 0x2a, | ||||||
| 	0x3d, 0xf7, 0x5d, 0x57, 0xd1, 0x49, 0xc9, 0xdc, 0xe4, 0x3b, 0xe0, 0x93, 0x46, 0xc5, 0xad, 0xd0, | 	0xbf, 0x90, 0x29, 0x36, 0x7b, 0xee, 0xb9, 0xba, 0xa2, 0x53, 0xcb, 0xdc, 0xe6, 0x3b, 0xe0, 0x53, | ||||||
| 	0x6e, 0x31, 0x3f, 0x6c, 0x97, 0xf5, 0x7b, 0xa1, 0xd9, 0x13, 0xd8, 0xc1, 0xc2, 0x62, 0xa6, 0xa2, | 	0x8a, 0x8a, 0x1b, 0x91, 0xba, 0xc3, 0xfc, 0xb0, 0x6a, 0xfb, 0x77, 0x22, 0x65, 0x8f, 0x61, 0x1b, | ||||||
| 	0x84, 0xe7, 0x4a, 0x16, 0xdc, 0x90, 0x98, 0xa3, 0x35, 0x6e, 0x41, 0x3f, 0xbc, 0xd5, 0x98, 0xa7, | 	0xa7, 0x06, 0x33, 0x15, 0x8d, 0x79, 0xae, 0xe4, 0x94, 0x6b, 0x12, 0x23, 0x34, 0xda, 0x1d, 0xe8, | ||||||
| 	0x4a, 0x16, 0xef, 0x2a, 0x8b, 0xed, 0x82, 0x6f, 0x31, 0x4b, 0xa5, 0x8a, 0x92, 0x7a, 0xcb, 0x55, | 	0x87, 0xb7, 0xca, 0xe1, 0x99, 0x92, 0xd3, 0xb7, 0xc5, 0x88, 0xed, 0x80, 0x6f, 0x30, 0x4b, 0xa4, | ||||||
| 	0xcd, 0xee, 0x01, 0x7c, 0x96, 0x09, 0xf2, 0x84, 0xc4, 0xdc, 0x04, 0x9b, 0xce, 0xed, 0x94, 0xe4, | 	0x8a, 0xc6, 0x8b, 0x2b, 0x97, 0x3d, 0xdb, 0x03, 0xf8, 0x2c, 0xc7, 0xc8, 0xc7, 0x24, 0x46, 0x3a, | ||||||
| 	0x75, 0x09, 0xd8, 0x63, 0xb8, 0x81, 0xa9, 0xb6, 0x0b, 0xae, 0xa2, 0x14, 0x8d, 0x8e, 0x04, 0x9a, | 	0xd8, 0x70, 0xd3, 0x9a, 0x25, 0xaf, 0x2c, 0x60, 0x8f, 0xe0, 0x06, 0x26, 0xa9, 0x99, 0x71, 0x15, | ||||||
| 	0xa0, 0x35, 0x58, 0x1f, 0x75, 0xc2, 0xeb, 0x8e, 0x1f, 0xaf, 0x70, 0x99, 0x68, 0x95, 0x84, 0xe1, | 	0x25, 0xa8, 0xd3, 0x48, 0xa0, 0x0e, 0x2a, 0xed, 0xb5, 0x6e, 0x2d, 0xdc, 0x72, 0xfc, 0x64, 0x89, | ||||||
| 	0x29, 0xc5, 0x18, 0xb4, 0xab, 0x44, 0x6b, 0xf6, 0x86, 0x62, 0x64, 0x0f, 0x61, 0x5b, 0x11, 0x57, | 	0xad, 0xa3, 0x85, 0x13, 0x9a, 0x27, 0x14, 0x63, 0x50, 0x2d, 0x1c, 0x5d, 0xb0, 0xd7, 0x14, 0x23, | ||||||
| 	0x78, 0xce, 0xe7, 0xb8, 0xc8, 0xa4, 0x9a, 0x06, 0xbe, 0x1b, 0xb8, 0xa5, 0xe8, 0x18, 0xcf, 0x5f, | 	0xbb, 0x0f, 0x9b, 0x8a, 0xb8, 0xc2, 0x09, 0x1f, 0xe1, 0x2c, 0x93, 0x6a, 0x10, 0xf8, 0x6e, 0x61, | ||||||
| 	0x55, 0x8c, 0xed, 0x41, 0xd7, 0xcc, 0x64, 0xda, 0xe4, 0xda, 0x71, 0xff, 0x81, 0x12, 0x55, 0xa1, | 	0x43, 0xd1, 0x09, 0x4e, 0x5e, 0x16, 0x8c, 0xed, 0x43, 0x5d, 0x0f, 0x65, 0x52, 0xfa, 0x5a, 0x73, | ||||||
| 	0xb2, 0x1d, 0x68, 0x49, 0xe2, 0xb9, 0x8c, 0x03, 0x18, 0x78, 0xa3, 0x5e, 0xb8, 0x29, 0xe9, 0x54, | 	0xef, 0x01, 0x8b, 0x0a, 0x53, 0xd9, 0x36, 0x54, 0x24, 0xf1, 0x5c, 0xc6, 0x01, 0xb4, 0xbd, 0x6e, | ||||||
| 	0xc6, 0x35, 0x9e, 0xca, 0x38, 0xe8, 0x36, 0xf8, 0xa5, 0x8c, 0x87, 0xbf, 0x3c, 0xb8, 0x39, 0x99, | 	0x33, 0xdc, 0x90, 0x74, 0x26, 0xe3, 0x05, 0x1e, 0xc8, 0x38, 0xa8, 0x97, 0xf8, 0x85, 0x8c, 0xed, | ||||||
| 	0xa1, 0x98, 0x6b, 0x92, 0xca, 0x36, 0xcf, 0xc0, 0x60, 0x03, 0x0b, 0xd9, 0xa4, 0xef, 0xf4, 0xff, | 	0x52, 0x17, 0xe3, 0x84, 0xb2, 0x51, 0x91, 0x65, 0xc3, 0xbd, 0xb1, 0x61, 0xe9, 0x7b, 0xca, 0x46, | ||||||
| 	0x1a, 0xfb, 0xf0, 0x19, 0x6c, 0x9f, 0x64, 0x24, 0xd0, 0x98, 0x43, 0xb4, 0x91, 0x4c, 0x0c, 0x7b, | 	0x2e, 0xcf, 0x87, 0xb0, 0xe5, 0x54, 0x32, 0x89, 0x06, 0x58, 0xc8, 0x9a, 0x4e, 0xd6, 0xb4, 0xf8, | ||||||
| 	0x00, 0x6d, 0x2c, 0x50, 0x70, 0x19, 0x57, 0x77, 0x71, 0x00, 0xcb, 0x1f, 0x7b, 0xad, 0x17, 0x05, | 	0xd8, 0x52, 0xab, 0xeb, 0x7c, 0x5f, 0x85, 0x9b, 0xfd, 0x21, 0x8a, 0x51, 0x4a, 0x52, 0x99, 0x32, | ||||||
| 	0x8a, 0xa3, 0xc3, 0xb0, 0x55, 0x5a, 0x47, 0xf1, 0xc1, 0xa7, 0xcb, 0xab, 0xfe, 0xda, 0xf7, 0xab, | 	0x54, 0x06, 0xeb, 0x38, 0x95, 0x65, 0x96, 0xae, 0xfe, 0x6f, 0x43, 0xdc, 0x85, 0xda, 0x95, 0x95, | ||||||
| 	0xfe, 0xda, 0xc5, 0xb2, 0xef, 0x5d, 0x2e, 0xfb, 0xde, 0xb7, 0x65, 0xdf, 0xfb, 0xb9, 0xec, 0x7b, | 	0x7e, 0xf1, 0x59, 0x4c, 0x4a, 0x1b, 0xf7, 0x00, 0xae, 0x39, 0x58, 0x44, 0x57, 0x93, 0x4b, 0xf7, | ||||||
| 	0x1f, 0x0f, 0xfe, 0xf5, 0xb0, 0x9f, 0xaf, 0xd4, 0x87, 0xb5, 0xb3, 0x96, 0xbb, 0xd9, 0xa7, 0xbf, | 	0x9e, 0xc2, 0xe6, 0x69, 0x46, 0x02, 0xb5, 0x3e, 0x42, 0x13, 0xc9, 0xb1, 0x66, 0xf7, 0xa0, 0x8a, | ||||||
| 	0x03, 0x00, 0x00, 0xff, 0xff, 0x18, 0xa1, 0x4b, 0x5b, 0x27, 0x04, 0x00, 0x00, | 	0x53, 0x14, 0x5c, 0xc6, 0xc5, 0x17, 0x7a, 0x08, 0xf3, 0xdf, 0xfb, 0x95, 0xe7, 0x53, 0x14, 0xc7, | ||||||
|  | 	0x47, 0x61, 0xc5, 0x8e, 0x8e, 0xe3, 0xc3, 0x4f, 0x17, 0x97, 0xad, 0x95, 0x5f, 0x97, 0xad, 0x95, | ||||||
|  | 	0xaf, 0xf3, 0x96, 0x77, 0x31, 0x6f, 0x79, 0x3f, 0xe7, 0x2d, 0xef, 0xcf, 0xbc, 0xe5, 0x7d, 0x3c, | ||||||
|  | 	0xfc, 0xd7, 0x5f, 0xcc, 0xb3, 0x65, 0xf5, 0x61, 0xe5, 0xbc, 0xe2, 0xfe, 0x1e, 0x4f, 0xfe, 0x06, | ||||||
|  | 	0x00, 0x00, 0xff, 0xff, 0x7f, 0x24, 0x6f, 0x2e, 0xb1, 0x04, 0x00, 0x00, | ||||||
| } | } | ||||||
|   | |||||||
| @@ -25,6 +25,8 @@ message CreateOptions { | |||||||
| 	string shim_cgroup = 9; | 	string shim_cgroup = 9; | ||||||
| 	uint32 io_uid = 10; | 	uint32 io_uid = 10; | ||||||
| 	uint32 io_gid = 11; | 	uint32 io_gid = 11; | ||||||
|  | 	string criu_work_path = 12; | ||||||
|  | 	string criu_image_path = 13; | ||||||
| } | } | ||||||
|  |  | ||||||
| message CheckpointOptions { | message CheckpointOptions { | ||||||
| @@ -35,6 +37,8 @@ message CheckpointOptions { | |||||||
| 	bool file_locks = 5; | 	bool file_locks = 5; | ||||||
| 	repeated string empty_namespaces = 6; | 	repeated string empty_namespaces = 6; | ||||||
| 	string cgroups_mode = 7; | 	string cgroups_mode = 7; | ||||||
|  | 	string work_path = 8; | ||||||
|  | 	string image_path = 9; | ||||||
| } | } | ||||||
|  |  | ||||||
| message ProcessDetails { | message ProcessDetails { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Ace-Tang
					Ace-Tang