blob: b920e1bdcf588063f5e17b080f46cd308208d87f [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Roopa Prabhu404eb772018-05-22 14:03:27 -07002#include <linux/netlink.h>
3#include <linux/rtnetlink.h>
4#include <linux/types.h>
5#include <net/net_namespace.h>
6#include <net/netlink.h>
Hangbin Liu5e1a99e2019-02-27 16:15:29 +08007#include <linux/in6.h>
Roopa Prabhu404eb772018-05-22 14:03:27 -07008#include <net/ip.h>
9
Hangbin Liu5e1a99e2019-02-27 16:15:29 +080010int rtm_getroute_parse_ip_proto(struct nlattr *attr, u8 *ip_proto, u8 family,
Roopa Prabhu404eb772018-05-22 14:03:27 -070011 struct netlink_ext_ack *extack)
12{
13 *ip_proto = nla_get_u8(attr);
14
15 switch (*ip_proto) {
16 case IPPROTO_TCP:
17 case IPPROTO_UDP:
Roopa Prabhu404eb772018-05-22 14:03:27 -070018 return 0;
Hangbin Liu5e1a99e2019-02-27 16:15:29 +080019 case IPPROTO_ICMP:
20 if (family != AF_INET)
21 break;
22 return 0;
23#if IS_ENABLED(CONFIG_IPV6)
24 case IPPROTO_ICMPV6:
25 if (family != AF_INET6)
26 break;
27 return 0;
28#endif
Roopa Prabhu404eb772018-05-22 14:03:27 -070029 }
Hangbin Liu5e1a99e2019-02-27 16:15:29 +080030 NL_SET_ERR_MSG(extack, "Unsupported ip proto");
31 return -EOPNOTSUPP;
Roopa Prabhu404eb772018-05-22 14:03:27 -070032}
33EXPORT_SYMBOL_GPL(rtm_getroute_parse_ip_proto);