bareudp: use ipv6_mod_enabled to check if IPv6 enabled
authorHangbin Liu <liuhangbin@gmail.com>
Tue, 15 Mar 2022 06:26:18 +0000 (14:26 +0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 17 Mar 2022 02:16:57 +0000 (19:16 -0700)
commite077ed58c243afc197bc2a2ba0e1ff61135e4ec2
tree30e3f263c01de30cdcdc4587abb10ac52aa15ff9
parenta0bfd73deba1bb3c51e2f208ec03465422af667c
bareudp: use ipv6_mod_enabled to check if IPv6 enabled

bareudp_create_sock() use AF_INET6 by default if IPv6 CONFIG enabled.
But if user start kernel with ipv6.disable=1, the bareudp sock will
created failed, which cause the interface open failed even with ethertype
ip. e.g.

 # ip link add bareudp1 type bareudp dstport 2 ethertype ip
 # ip link set bareudp1 up
 RTNETLINK answers: Address family not supported by protocol

Fix it by using ipv6_mod_enabled() to check if IPv6 enabled. There is
no need to check IS_ENABLED(CONFIG_IPV6) as ipv6_mod_enabled() will
return false when CONFIG_IPV6 no enabled in include/linux/ipv6.h.

Reported-by: Jianlin Shi <jishi@redhat.com>
Fixes: 571912c69f0e ("net: UDP tunnel encapsulation module for tunnelling different protocols like MPLS, IP, NSH etc.")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Link: https://lore.kernel.org/r/20220315062618.156230-1-liuhangbin@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/bareudp.c