[CRIU] [PATCH 06/10] inet: raw -- Add raw sockets into can_dump_inet_sk

Cyrill Gorcunov gorcunov at gmail.com
Thu Mar 22 01:10:58 MSK 2018


So they would pass this check.

Note because we didn't allow raw socks in can_dump_ipproto
this routine won't be reached and it's safe to modify it this
way without breaking existing tests.

Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>
---
 criu/sk-inet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/criu/sk-inet.c b/criu/sk-inet.c
index 7dd0c879ad7e..e0aecee96921 100644
--- a/criu/sk-inet.c
+++ b/criu/sk-inet.c
@@ -148,9 +148,9 @@ static int can_dump_inet_sk(const struct inet_sk_desc *sk)
 		return 1;
 	}
 
-	if (sk->type != SOCK_STREAM) {
+	if (sk->type != SOCK_STREAM && sk->type != SOCK_RAW) {
 		pr_err("Can't dump %d inet socket %x. "
-				"Only stream and dgram are supported.\n",
+				"Only stream, dgram and raw are supported.\n",
 				sk->type, sk->sd.ino);
 		return 0;
 	}
-- 
2.14.3



More information about the CRIU mailing list