From: Andrei Vagin Date: Mon, 5 Nov 2018 06:37:15 +0000 (-0800) Subject: sock_diag: fix autoloading of the raw_diag module X-Git-Tag: v4.19.87~91 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=811c8141d663e399f9413eba23eb046c98b16665;p=thirdparty%2Fkernel%2Fstable.git sock_diag: fix autoloading of the raw_diag module [ Upstream commit c34c1287778b080ed692c0a46a8e345206cc29e6 ] IPPROTO_RAW isn't registred as an inet protocol, so inet_protos[protocol] is always NULL for it. Cc: Cyrill Gorcunov Cc: Xin Long Fixes: bf2ae2e4bf93 ("sock_diag: request _diag module only when the family or proto has been registered") Signed-off-by: Andrei Vagin Reviewed-by: Cyrill Gorcunov Signed-off-by: David S. Miller Signed-off-by: Sasha Levin --- diff --git a/net/core/sock.c b/net/core/sock.c index 6c11078217769..ba4f843cdd1d1 100644 --- a/net/core/sock.c +++ b/net/core/sock.c @@ -3347,6 +3347,7 @@ int sock_load_diag_module(int family, int protocol) #ifdef CONFIG_INET if (family == AF_INET && + protocol != IPPROTO_RAW && !rcu_access_pointer(inet_protos[protocol])) return -ENOENT; #endif