[CRIU] [PATCH v6 02/13] protobuf: add SysctlEntry for ipv4/ipv6 sysctl confs or some others

Pavel Tikhomirov ptikhomirov at virtuozzo.com
Mon Apr 25 07:56:43 PDT 2016


int32 with boolean value in protobuf has the same size with bool,
many sysctls are boolean but we don't lose anything by storing them
in int32, so add only int32 and string fields

will need string field for stable_secret ipv6 sysctl

also such fromat allows us to easily handle non-present int sysctls
we can check if we have it using has_*arg

v3: rebase images/Makefile to criu-dev branch
v4: use enum for type

https://jira.sw.ru/browse/PSBM-30942

Signed-off-by: Pavel Tikhomirov <ptikhomirov at virtuozzo.com>
---
 images/Makefile     |  1 +
 images/netdev.proto |  6 ++++++
 images/sysctl.proto | 11 +++++++++++
 3 files changed, 18 insertions(+)
 create mode 100644 images/sysctl.proto

diff --git a/images/Makefile b/images/Makefile
index 52f516e..b5a2804 100644
--- a/images/Makefile
+++ b/images/Makefile
@@ -59,6 +59,7 @@ proto-obj-y	+= seccomp.o
 proto-obj-y	+= binfmt-misc.o
 proto-obj-y	+= time.o
 proto-obj-y	+= autofs.o
+proto-obj-y	+= sysctl.o
 
 CFLAGS		+= -iquote $(obj)/
 
diff --git a/images/netdev.proto b/images/netdev.proto
index dafa2bd..ce0daeb 100644
--- a/images/netdev.proto
+++ b/images/netdev.proto
@@ -1,5 +1,6 @@
 import "opts.proto";
 import "tun.proto";
+import "sysctl.proto";
 
 enum nd_type {
 	LOOPBACK	= 1;
@@ -31,9 +32,14 @@ message net_device_entry {
 	optional bytes address		= 7;
 
 	repeated int32 conf		= 8;
+
+	repeated sysctl_entry conf4	= 9;
 }
 
 message netns_entry {
 	repeated int32 def_conf		= 1;
 	repeated int32 all_conf		= 2;
+
+	repeated sysctl_entry def_conf4	= 3;
+	repeated sysctl_entry all_conf4	= 4;
 }
diff --git a/images/sysctl.proto b/images/sysctl.proto
new file mode 100644
index 0000000..c64789a
--- /dev/null
+++ b/images/sysctl.proto
@@ -0,0 +1,11 @@
+enum SysctlType {
+	__CTL_STR	= 5;
+	CTL_32		= 6;
+}
+
+message sysctl_entry {
+	required SysctlType type	= 1;
+
+	optional int32 iarg		= 2;
+	optional string sarg		= 3;
+}
-- 
1.9.3



More information about the CRIU mailing list