]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/mroute6.h
ACPI: fix acpi_find_child_device() invocation in acpi_preset_companion()
[mirror_ubuntu-bionic-kernel.git] / include / linux / mroute6.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
7bc570c8
YH
2#ifndef __LINUX_MROUTE6_H
3#define __LINUX_MROUTE6_H
4
7bc570c8 5
7c19a3d2 6#include <linux/pim.h>
7bc570c8 7#include <linux/skbuff.h> /* for struct sk_buff_head */
bd91b8bf 8#include <net/net_namespace.h>
607ca46e 9#include <uapi/linux/mroute6.h>
7bc570c8 10
7bc570c8
YH
11#ifdef CONFIG_IPV6_MROUTE
12static inline int ip6_mroute_opt(int opt)
13{
bbb923a4 14 return (opt >= MRT6_BASE) && (opt <= MRT6_MAX);
7bc570c8
YH
15}
16#else
17static inline int ip6_mroute_opt(int opt)
18{
19 return 0;
20}
21#endif
22
23struct sock;
24
e0835f8f 25#ifdef CONFIG_IPV6_MROUTE
b7058842 26extern int ip6_mroute_setsockopt(struct sock *, int, char __user *, unsigned int);
7bc570c8
YH
27extern int ip6_mroute_getsockopt(struct sock *, int, char __user *, int __user *);
28extern int ip6_mr_input(struct sk_buff *skb);
29extern int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg);
e2d57766 30extern int ip6mr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg);
623d1a1a
WC
31extern int ip6_mr_init(void);
32extern void ip6_mr_cleanup(void);
e0835f8f
YH
33#else
34static inline
35int ip6_mroute_setsockopt(struct sock *sock,
b7058842 36 int optname, char __user *optval, unsigned int optlen)
e0835f8f
YH
37{
38 return -ENOPROTOOPT;
39}
40
41static inline
42int ip6_mroute_getsockopt(struct sock *sock,
43 int optname, char __user *optval, int __user *optlen)
44{
45 return -ENOPROTOOPT;
46}
47
48static inline
49int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg)
50{
51 return -ENOIOCTLCMD;
52}
53
54static inline int ip6_mr_init(void)
55{
56 return 0;
57}
58
59static inline void ip6_mr_cleanup(void)
60{
61 return;
62}
63#endif
7bc570c8 64
d94d9fee 65struct mif_device {
7bc570c8
YH
66 struct net_device *dev; /* Device we are using */
67 unsigned long bytes_in,bytes_out;
68 unsigned long pkt_in,pkt_out; /* Statistics */
69 unsigned long rate_limit; /* Traffic shaping (NI) */
70 unsigned char threshold; /* TTL threshold */
71 unsigned short flags; /* Control flags */
72 int link; /* Physical interface index */
73};
74
75#define VIFF_STATIC 0x8000
76
d94d9fee 77struct mfc6_cache {
f30a7784 78 struct list_head list;
7bc570c8
YH
79 struct in6_addr mf6c_mcastgrp; /* Group the entry belongs to */
80 struct in6_addr mf6c_origin; /* Source of packet */
81 mifi_t mf6c_parent; /* Source interface */
82 int mfc_flags; /* Flags on line */
83
84 union {
85 struct {
86 unsigned long expires;
87 struct sk_buff_head unresolved; /* Unresolved buffers */
88 } unres;
89 struct {
90 unsigned long last_assert;
91 int minvif;
92 int maxvif;
93 unsigned long bytes;
94 unsigned long pkt;
95 unsigned long wrong_if;
43b9e127 96 unsigned long lastuse;
7bc570c8
YH
97 unsigned char ttls[MAXMIFS]; /* TTL thresholds */
98 } res;
99 } mfc_un;
100};
101
102#define MFC_STATIC 1
103#define MFC_NOTIFY 2
104
105#define MFC6_LINES 64
106
107#define MFC6_HASH(a, g) (((__force u32)(a)->s6_addr32[0] ^ \
108 (__force u32)(a)->s6_addr32[1] ^ \
109 (__force u32)(a)->s6_addr32[2] ^ \
110 (__force u32)(a)->s6_addr32[3] ^ \
111 (__force u32)(g)->s6_addr32[0] ^ \
112 (__force u32)(g)->s6_addr32[1] ^ \
113 (__force u32)(g)->s6_addr32[2] ^ \
114 (__force u32)(g)->s6_addr32[3]) % MFC6_LINES)
115
116#define MFC_ASSERT_THRESH (3*HZ) /* Maximal freq. of asserts */
117
7bc570c8 118struct rtmsg;
8229efda 119extern int ip6mr_get_route(struct net *net, struct sk_buff *skb,
fd61c6ba 120 struct rtmsg *rtm, u32 portid);
7bc570c8
YH
121
122#ifdef CONFIG_IPV6_MROUTE
d1db275d 123extern struct sock *mroute6_socket(struct net *net, struct sk_buff *skb);
7bc570c8
YH
124extern int ip6mr_sk_done(struct sock *sk);
125#else
d1db275d
PM
126static inline struct sock *mroute6_socket(struct net *net, struct sk_buff *skb)
127{
128 return NULL;
129}
130static inline int ip6mr_sk_done(struct sock *sk)
131{
132 return 0;
133}
7bc570c8
YH
134#endif
135#endif