iio: temperature: add support for Maxim thermocouple chips
[linux/fpc-iii.git] / include / net / l3mdev.h
blob374388dc01c8d64a4ea4220bd877aa88e3203160
1 /*
2 * include/net/l3mdev.h - L3 master device API
3 * Copyright (c) 2015 Cumulus Networks
4 * Copyright (c) 2015 David Ahern <dsa@cumulusnetworks.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 #ifndef _NET_L3MDEV_H_
12 #define _NET_L3MDEV_H_
14 /**
15 * struct l3mdev_ops - l3mdev operations
17 * @l3mdev_fib_table: Get FIB table id to use for lookups
19 * @l3mdev_get_rtable: Get cached IPv4 rtable (dst_entry) for device
21 * @l3mdev_get_saddr: Get source address for a flow
23 * @l3mdev_get_rt6_dst: Get cached IPv6 rt6_info (dst_entry) for device
26 struct l3mdev_ops {
27 u32 (*l3mdev_fib_table)(const struct net_device *dev);
28 struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *dev,
29 struct sk_buff *skb, u16 proto);
31 /* IPv4 ops */
32 struct rtable * (*l3mdev_get_rtable)(const struct net_device *dev,
33 const struct flowi4 *fl4);
34 int (*l3mdev_get_saddr)(struct net_device *dev,
35 struct flowi4 *fl4);
37 /* IPv6 ops */
38 struct dst_entry * (*l3mdev_get_rt6_dst)(const struct net_device *dev,
39 const struct flowi6 *fl6);
42 #ifdef CONFIG_NET_L3_MASTER_DEV
44 int l3mdev_master_ifindex_rcu(const struct net_device *dev);
45 static inline int l3mdev_master_ifindex(struct net_device *dev)
47 int ifindex;
49 rcu_read_lock();
50 ifindex = l3mdev_master_ifindex_rcu(dev);
51 rcu_read_unlock();
53 return ifindex;
56 static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
58 struct net_device *dev;
59 int rc = 0;
61 if (likely(ifindex)) {
62 rcu_read_lock();
64 dev = dev_get_by_index_rcu(net, ifindex);
65 if (dev)
66 rc = l3mdev_master_ifindex_rcu(dev);
68 rcu_read_unlock();
71 return rc;
74 /* get index of an interface to use for FIB lookups. For devices
75 * enslaved to an L3 master device FIB lookups are based on the
76 * master index
78 static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
80 return l3mdev_master_ifindex_rcu(dev) ? : dev->ifindex;
83 static inline int l3mdev_fib_oif(struct net_device *dev)
85 int oif;
87 rcu_read_lock();
88 oif = l3mdev_fib_oif_rcu(dev);
89 rcu_read_unlock();
91 return oif;
94 u32 l3mdev_fib_table_rcu(const struct net_device *dev);
95 u32 l3mdev_fib_table_by_index(struct net *net, int ifindex);
96 static inline u32 l3mdev_fib_table(const struct net_device *dev)
98 u32 tb_id;
100 rcu_read_lock();
101 tb_id = l3mdev_fib_table_rcu(dev);
102 rcu_read_unlock();
104 return tb_id;
107 static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
108 const struct flowi4 *fl4)
110 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rtable)
111 return dev->l3mdev_ops->l3mdev_get_rtable(dev, fl4);
113 return NULL;
116 static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
118 struct net_device *dev;
119 bool rc = false;
121 if (ifindex == 0)
122 return false;
124 rcu_read_lock();
126 dev = dev_get_by_index_rcu(net, ifindex);
127 if (dev)
128 rc = netif_is_l3_master(dev);
130 rcu_read_unlock();
132 return rc;
135 int l3mdev_get_saddr(struct net *net, int ifindex, struct flowi4 *fl4);
137 struct dst_entry *l3mdev_get_rt6_dst(struct net *net, const struct flowi6 *fl6);
139 static inline
140 struct sk_buff *l3mdev_l3_rcv(struct sk_buff *skb, u16 proto)
142 struct net_device *master = NULL;
144 if (netif_is_l3_slave(skb->dev))
145 master = netdev_master_upper_dev_get_rcu(skb->dev);
146 else if (netif_is_l3_master(skb->dev))
147 master = skb->dev;
149 if (master && master->l3mdev_ops->l3mdev_l3_rcv)
150 skb = master->l3mdev_ops->l3mdev_l3_rcv(master, skb, proto);
152 return skb;
155 static inline
156 struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
158 return l3mdev_l3_rcv(skb, AF_INET);
161 static inline
162 struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
164 return l3mdev_l3_rcv(skb, AF_INET6);
167 #else
169 static inline int l3mdev_master_ifindex_rcu(const struct net_device *dev)
171 return 0;
173 static inline int l3mdev_master_ifindex(struct net_device *dev)
175 return 0;
178 static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
180 return 0;
183 static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
185 return dev ? dev->ifindex : 0;
187 static inline int l3mdev_fib_oif(struct net_device *dev)
189 return dev ? dev->ifindex : 0;
192 static inline u32 l3mdev_fib_table_rcu(const struct net_device *dev)
194 return 0;
196 static inline u32 l3mdev_fib_table(const struct net_device *dev)
198 return 0;
200 static inline u32 l3mdev_fib_table_by_index(struct net *net, int ifindex)
202 return 0;
205 static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
206 const struct flowi4 *fl4)
208 return NULL;
211 static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
213 return false;
216 static inline int l3mdev_get_saddr(struct net *net, int ifindex,
217 struct flowi4 *fl4)
219 return 0;
222 static inline
223 struct dst_entry *l3mdev_get_rt6_dst(struct net *net, const struct flowi6 *fl6)
225 return NULL;
228 static inline
229 struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
231 return skb;
234 static inline
235 struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
237 return skb;
239 #endif
241 #endif /* _NET_L3MDEV_H_ */