7c567a2679ceb740867f33b2a3a4003cc96d0b59
[cascardo/linux.git] / include / linux / mroute.h
1 #ifndef __LINUX_MROUTE_H
2 #define __LINUX_MROUTE_H
3
4 #include <linux/in.h>
5 #include <linux/pim.h>
6 #include <net/sock.h>
7 #include <uapi/linux/mroute.h>
8
9 #ifdef CONFIG_IP_MROUTE
10 static inline int ip_mroute_opt(int opt)
11 {
12         return opt >= MRT_BASE && opt <= MRT_MAX;
13 }
14
15 int ip_mroute_setsockopt(struct sock *, int, char __user *, unsigned int);
16 int ip_mroute_getsockopt(struct sock *, int, char __user *, int __user *);
17 int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg);
18 int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg);
19 int ip_mr_init(void);
20 #else
21 static inline int ip_mroute_setsockopt(struct sock *sock, int optname,
22                                        char __user *optval, unsigned int optlen)
23 {
24         return -ENOPROTOOPT;
25 }
26
27 static inline int ip_mroute_getsockopt(struct sock *sock, int optname,
28                                        char __user *optval, int __user *optlen)
29 {
30         return -ENOPROTOOPT;
31 }
32
33 static inline int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
34 {
35         return -ENOIOCTLCMD;
36 }
37
38 static inline int ip_mr_init(void)
39 {
40         return 0;
41 }
42
43 static inline int ip_mroute_opt(int opt)
44 {
45         return 0;
46 }
47 #endif
48
49 struct vif_device {
50         struct net_device       *dev;                   /* Device we are using */
51         unsigned long   bytes_in,bytes_out;
52         unsigned long   pkt_in,pkt_out;         /* Statistics                   */
53         unsigned long   rate_limit;             /* Traffic shaping (NI)         */
54         unsigned char   threshold;              /* TTL threshold                */
55         unsigned short  flags;                  /* Control flags                */
56         __be32          local,remote;           /* Addresses(remote for tunnels)*/
57         int             link;                   /* Physical interface index     */
58 };
59
60 #define VIFF_STATIC 0x8000
61
62 /* mfc_flags:
63  * MFC_STATIC - the entry was added statically (not by a routing daemon)
64  */
65 enum {
66         MFC_STATIC = BIT(0),
67 };
68
69 struct mfc_cache {
70         struct list_head list;
71         __be32 mfc_mcastgrp;                    /* Group the entry belongs to   */
72         __be32 mfc_origin;                      /* Source of packet             */
73         vifi_t mfc_parent;                      /* Source interface             */
74         int mfc_flags;                          /* Flags on line                */
75
76         union {
77                 struct {
78                         unsigned long expires;
79                         struct sk_buff_head unresolved; /* Unresolved buffers           */
80                 } unres;
81                 struct {
82                         unsigned long last_assert;
83                         int minvif;
84                         int maxvif;
85                         unsigned long bytes;
86                         unsigned long pkt;
87                         unsigned long wrong_if;
88                         unsigned char ttls[MAXVIFS];    /* TTL thresholds               */
89                 } res;
90         } mfc_un;
91         struct rcu_head rcu;
92 };
93
94 #define MFC_LINES 64
95
96 #ifdef __BIG_ENDIAN
97 #define MFC_HASH(a,b)   (((((__force u32)(__be32)a)>>24)^(((__force u32)(__be32)b)>>26))&(MFC_LINES-1))
98 #else
99 #define MFC_HASH(a,b)   ((((__force u32)(__be32)a)^(((__force u32)(__be32)b)>>2))&(MFC_LINES-1))
100 #endif
101
102 struct rtmsg;
103 int ipmr_get_route(struct net *net, struct sk_buff *skb,
104                    __be32 saddr, __be32 daddr,
105                    struct rtmsg *rtm, int nowait);
106 #endif