blob: e5fb81376e92ff2e1feac6130f07e7af7d9ca003 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_MROUTE_H
2#define __LINUX_MROUTE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/in.h>
David S. Miller7c19a3d2008-08-29 14:37:23 -07005#include <linux/pim.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <net/sock.h>
David Howells607ca462012-10-13 10:46:48 +01007#include <uapi/linux/mroute.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Pavel Emelyanov6a9fb942007-11-05 21:32:31 -08009#ifdef CONFIG_IP_MROUTE
10static inline int ip_mroute_opt(int opt)
11{
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010012 return opt >= MRT_BASE && opt <= MRT_MAX;
Pavel Emelyanov6a9fb942007-11-05 21:32:31 -080013}
Pavel Emelyanov6a9fb942007-11-05 21:32:31 -080014
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010015int ip_mroute_setsockopt(struct sock *, int, char __user *, unsigned int);
16int ip_mroute_getsockopt(struct sock *, int, char __user *, int __user *);
17int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg);
18int ipmr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg);
19int ip_mr_init(void);
YOSHIFUJI Hideakie0835f82008-07-03 16:51:22 +090020#else
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010021static inline int ip_mroute_setsockopt(struct sock *sock, int optname,
22 char __user *optval, unsigned int optlen)
YOSHIFUJI Hideakie0835f82008-07-03 16:51:22 +090023{
24 return -ENOPROTOOPT;
25}
26
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010027static inline int ip_mroute_getsockopt(struct sock *sock, int optname,
28 char __user *optval, int __user *optlen)
YOSHIFUJI Hideakie0835f82008-07-03 16:51:22 +090029{
30 return -ENOPROTOOPT;
31}
32
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010033static inline int ipmr_ioctl(struct sock *sk, int cmd, void __user *arg)
YOSHIFUJI Hideakie0835f82008-07-03 16:51:22 +090034{
35 return -ENOIOCTLCMD;
36}
37
38static inline int ip_mr_init(void)
39{
40 return 0;
41}
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +010042
43static inline int ip_mroute_opt(int opt)
44{
45 return 0;
46}
YOSHIFUJI Hideakie0835f82008-07-03 16:51:22 +090047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080049struct vif_device {
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 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 */
Al Viro114c7842006-09-27 18:39:29 -070056 __be32 local,remote; /* Addresses(remote for tunnels)*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int link; /* Physical interface index */
58};
59
60#define VIFF_STATIC 0x8000
61
Nikolay Aleksandrov5ea1f132015-11-26 15:23:47 +010062#define VIF_EXISTS(_mrt, _idx) ((_mrt)->vif_table[_idx].dev != NULL)
63#define MFC_LINES 64
64
65struct mr_table {
66 struct list_head list;
67 possible_net_t net;
68 u32 id;
69 struct sock __rcu *mroute_sk;
70 struct timer_list ipmr_expire_timer;
71 struct list_head mfc_unres_queue;
72 struct list_head mfc_cache_array[MFC_LINES];
73 struct vif_device vif_table[MAXVIFS];
74 int maxvif;
75 atomic_t cache_resolve_queue_len;
76 bool mroute_do_assert;
77 bool mroute_do_pim;
78 int mroute_reg_vif_num;
79};
80
Nikolay Aleksandrov06bd6c02015-11-26 15:23:45 +010081/* mfc_flags:
82 * MFC_STATIC - the entry was added statically (not by a routing daemon)
83 */
84enum {
85 MFC_STATIC = BIT(0),
86};
87
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080088struct mfc_cache {
Patrick McHardy862465f2010-04-13 05:03:21 +000089 struct list_head list;
Al Viro114c7842006-09-27 18:39:29 -070090 __be32 mfc_mcastgrp; /* Group the entry belongs to */
91 __be32 mfc_origin; /* Source of packet */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 vifi_t mfc_parent; /* Source interface */
93 int mfc_flags; /* Flags on line */
94
95 union {
96 struct {
97 unsigned long expires;
98 struct sk_buff_head unresolved; /* Unresolved buffers */
99 } unres;
100 struct {
101 unsigned long last_assert;
102 int minvif;
103 int maxvif;
104 unsigned long bytes;
105 unsigned long pkt;
106 unsigned long wrong_if;
Nikolay Aleksandrov43b9e122016-07-14 19:28:27 +0300107 unsigned long lastuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned char ttls[MAXVIFS]; /* TTL thresholds */
109 } res;
110 } mfc_un;
Eric Dumazeta8c94862010-10-01 16:15:08 +0000111 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#ifdef __BIG_ENDIAN
Al Viro114c7842006-09-27 18:39:29 -0700115#define MFC_HASH(a,b) (((((__force u32)(__be32)a)>>24)^(((__force u32)(__be32)b)>>26))&(MFC_LINES-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#else
Al Viro114c7842006-09-27 18:39:29 -0700117#define MFC_HASH(a,b) ((((__force u32)(__be32)a)^(((__force u32)(__be32)b)>>2))&(MFC_LINES-1))
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +0100118#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120struct rtmsg;
Nikolay Aleksandrov520191b2015-11-26 15:23:46 +0100121int ipmr_get_route(struct net *net, struct sk_buff *skb,
122 __be32 saddr, __be32 daddr,
Nikolay Aleksandrov2cf75072016-09-25 23:08:31 +0200123 struct rtmsg *rtm, int nowait, u32 portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#endif