netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] sock_diag: fix autoloading of the raw_diag module
@ 2018-11-05  6:37 Andrei Vagin
  2018-11-05  7:12 ` Cyrill Gorcunov
  2018-11-06  1:10 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Andrei Vagin @ 2018-11-05  6:37 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Andrei Vagin, Cyrill Gorcunov, Xin Long

IPPROTO_TCP isn't registred as an inet protocol, so
inet_protos[protocol] is always NULL for it.

Cc: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: Xin Long <lucien.xin@gmail.com>
Fixes: bf2ae2e4bf93 ("sock_diag: request _diag module only when the family or proto has been registered")
Signed-off-by: Andrei Vagin <avagin@gmail.com>
---
 net/core/sock.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/core/sock.c b/net/core/sock.c
index 6fcc4bc07d19..080a880a1761 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -3279,6 +3279,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
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-11-06 10:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-05  6:37 [PATCH] sock_diag: fix autoloading of the raw_diag module Andrei Vagin
2018-11-05  7:12 ` Cyrill Gorcunov
2018-11-05 18:22   ` Cyrill Gorcunov
2018-11-06  1:10 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).