1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_MROUTE_H
3 #define __LINUX_MROUTE_H
7 #include <net/fib_rules.h>
8 #include <net/fib_notifier.h>
9 #include <uapi/linux/mroute.h>
10 #include <linux/mroute_base.h>
11 #include <linux/sockptr.h>
13 #ifdef CONFIG_IP_MROUTE
14 static inline int ip_mroute_opt(int opt
)
16 return opt
>= MRT_BASE
&& opt
<= MRT_MAX
;
19 int ip_mroute_setsockopt(struct sock
*, int, sockptr_t
, unsigned int);
20 int ip_mroute_getsockopt(struct sock
*, int, sockptr_t
, sockptr_t
);
21 int ipmr_ioctl(struct sock
*sk
, int cmd
, void *arg
);
22 int ipmr_compat_ioctl(struct sock
*sk
, unsigned int cmd
, void __user
*arg
);
24 bool ipmr_rule_default(const struct fib_rule
*rule
);
25 int ipmr_sk_ioctl(struct sock
*sk
, unsigned int cmd
, void __user
*arg
);
27 static inline int ip_mroute_setsockopt(struct sock
*sock
, int optname
,
28 sockptr_t optval
, unsigned int optlen
)
33 static inline int ip_mroute_getsockopt(struct sock
*sk
, int optname
,
34 sockptr_t optval
, sockptr_t optlen
)
39 static inline int ipmr_ioctl(struct sock
*sk
, int cmd
, void *arg
)
44 static inline int ip_mr_init(void)
49 static inline int ip_mroute_opt(int opt
)
54 static inline bool ipmr_rule_default(const struct fib_rule
*rule
)
59 static inline int ipmr_sk_ioctl(struct sock
*sk
, unsigned int cmd
,
66 #define VIFF_STATIC 0x8000
68 struct mfc_cache_cmp_arg
{
74 * struct mfc_cache - multicast routing entries
75 * @_c: Common multicast routing information; has to be first [for casting]
76 * @mfc_mcastgrp: destination multicast group address
77 * @mfc_origin: source address
78 * @cmparg: used for rhashtable comparisons
87 struct mfc_cache_cmp_arg cmparg
;
92 int ipmr_get_route(struct net
*net
, struct sk_buff
*skb
,
93 __be32 saddr
, __be32 daddr
,
94 struct rtmsg
*rtm
, u32 portid
);