of: MSI: Simplify irqdomain lookup
[linux/fpc-iii.git] / include / net / l3mdev.h
blob5689a0c749f76cd7ce5810b6ac165e43ddb0b59d
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);
29 /* IPv4 ops */
30 struct rtable * (*l3mdev_get_rtable)(const struct net_device *dev,
31 const struct flowi4 *fl4);
32 int (*l3mdev_get_saddr)(struct net_device *dev,
33 struct flowi4 *fl4);
35 /* IPv6 ops */
36 struct dst_entry * (*l3mdev_get_rt6_dst)(const struct net_device *dev,
37 const struct flowi6 *fl6);
40 #ifdef CONFIG_NET_L3_MASTER_DEV
42 int l3mdev_master_ifindex_rcu(struct net_device *dev);
43 static inline int l3mdev_master_ifindex(struct net_device *dev)
45 int ifindex;
47 rcu_read_lock();
48 ifindex = l3mdev_master_ifindex_rcu(dev);
49 rcu_read_unlock();
51 return ifindex;
54 /* get index of an interface to use for FIB lookups. For devices
55 * enslaved to an L3 master device FIB lookups are based on the
56 * master index
58 static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
60 return l3mdev_master_ifindex_rcu(dev) ? : dev->ifindex;
63 static inline int l3mdev_fib_oif(struct net_device *dev)
65 int oif;
67 rcu_read_lock();
68 oif = l3mdev_fib_oif_rcu(dev);
69 rcu_read_unlock();
71 return oif;
74 u32 l3mdev_fib_table_rcu(const struct net_device *dev);
75 u32 l3mdev_fib_table_by_index(struct net *net, int ifindex);
76 static inline u32 l3mdev_fib_table(const struct net_device *dev)
78 u32 tb_id;
80 rcu_read_lock();
81 tb_id = l3mdev_fib_table_rcu(dev);
82 rcu_read_unlock();
84 return tb_id;
87 static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
88 const struct flowi4 *fl4)
90 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rtable)
91 return dev->l3mdev_ops->l3mdev_get_rtable(dev, fl4);
93 return NULL;
96 static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
98 struct net_device *dev;
99 bool rc = false;
101 if (ifindex == 0)
102 return false;
104 rcu_read_lock();
106 dev = dev_get_by_index_rcu(net, ifindex);
107 if (dev)
108 rc = netif_is_l3_master(dev);
110 rcu_read_unlock();
112 return rc;
115 static inline int l3mdev_get_saddr(struct net *net, int ifindex,
116 struct flowi4 *fl4)
118 struct net_device *dev;
119 int rc = 0;
121 if (ifindex) {
123 rcu_read_lock();
125 dev = dev_get_by_index_rcu(net, ifindex);
126 if (dev && netif_is_l3_master(dev) &&
127 dev->l3mdev_ops->l3mdev_get_saddr) {
128 rc = dev->l3mdev_ops->l3mdev_get_saddr(dev, fl4);
131 rcu_read_unlock();
134 return rc;
137 static inline struct dst_entry *l3mdev_get_rt6_dst(const struct net_device *dev,
138 const struct flowi6 *fl6)
140 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rt6_dst)
141 return dev->l3mdev_ops->l3mdev_get_rt6_dst(dev, fl6);
143 return NULL;
146 static inline
147 struct dst_entry *l3mdev_rt6_dst_by_oif(struct net *net,
148 const struct flowi6 *fl6)
150 struct dst_entry *dst = NULL;
151 struct net_device *dev;
153 dev = dev_get_by_index(net, fl6->flowi6_oif);
154 if (dev) {
155 dst = l3mdev_get_rt6_dst(dev, fl6);
156 dev_put(dev);
159 return dst;
162 #else
164 static inline int l3mdev_master_ifindex_rcu(struct net_device *dev)
166 return 0;
168 static inline int l3mdev_master_ifindex(struct net_device *dev)
170 return 0;
173 static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
175 return dev ? dev->ifindex : 0;
177 static inline int l3mdev_fib_oif(struct net_device *dev)
179 return dev ? dev->ifindex : 0;
182 static inline u32 l3mdev_fib_table_rcu(const struct net_device *dev)
184 return 0;
186 static inline u32 l3mdev_fib_table(const struct net_device *dev)
188 return 0;
190 static inline u32 l3mdev_fib_table_by_index(struct net *net, int ifindex)
192 return 0;
195 static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
196 const struct flowi4 *fl4)
198 return NULL;
201 static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
203 return false;
206 static inline int l3mdev_get_saddr(struct net *net, int ifindex,
207 struct flowi4 *fl4)
209 return 0;
212 static inline
213 struct dst_entry *l3mdev_get_rt6_dst(const struct net_device *dev,
214 const struct flowi6 *fl6)
216 return NULL;
218 static inline
219 struct dst_entry *l3mdev_rt6_dst_by_oif(struct net *net,
220 const struct flowi6 *fl6)
222 return NULL;
224 #endif
226 #endif /* _NET_L3MDEV_H_ */