blob: 81e175e80537214e5d2ac74fec8fca1bd49ef95d [file] [log] [blame]
David Ahern1b69c6d2015-09-29 20:07:11 -07001/*
2 * include/net/l3mdev.h - L3 master device API
3 * Copyright (c) 2015 Cumulus Networks
4 * Copyright (c) 2015 David Ahern <dsa@cumulusnetworks.com>
5 *
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.
10 */
11#ifndef _NET_L3MDEV_H_
12#define _NET_L3MDEV_H_
13
David Ahern96c63fa2016-06-08 10:55:39 -070014#include <net/fib_rules.h>
15
David Ahern1b69c6d2015-09-29 20:07:11 -070016/**
17 * struct l3mdev_ops - l3mdev operations
18 *
19 * @l3mdev_fib_table: Get FIB table id to use for lookups
20 *
21 * @l3mdev_get_rtable: Get cached IPv4 rtable (dst_entry) for device
David Ahern8cbb512c2015-10-05 08:51:26 -070022 *
23 * @l3mdev_get_saddr: Get source address for a flow
David Ahernccf3c8c2015-10-12 11:47:07 -070024 *
25 * @l3mdev_get_rt6_dst: Get cached IPv6 rt6_info (dst_entry) for device
David Ahern1b69c6d2015-09-29 20:07:11 -070026 */
27
28struct l3mdev_ops {
29 u32 (*l3mdev_fib_table)(const struct net_device *dev);
David Ahern74b20582016-05-10 11:19:50 -070030 struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *dev,
31 struct sk_buff *skb, u16 proto);
David Ahernccf3c8c2015-10-12 11:47:07 -070032
33 /* IPv4 ops */
David Ahern1b69c6d2015-09-29 20:07:11 -070034 struct rtable * (*l3mdev_get_rtable)(const struct net_device *dev,
35 const struct flowi4 *fl4);
David Ahernb5bdacf2016-01-04 09:09:27 -080036 int (*l3mdev_get_saddr)(struct net_device *dev,
David Ahern8cbb512c2015-10-05 08:51:26 -070037 struct flowi4 *fl4);
David Ahernccf3c8c2015-10-12 11:47:07 -070038
39 /* IPv6 ops */
40 struct dst_entry * (*l3mdev_get_rt6_dst)(const struct net_device *dev,
David Aherncd2a9e62016-06-13 13:44:17 -070041 struct flowi6 *fl6);
David Ahern0d240e72016-06-16 16:24:25 -070042 int (*l3mdev_get_saddr6)(struct net_device *dev,
43 const struct sock *sk,
44 struct flowi6 *fl6);
David Ahern1b69c6d2015-09-29 20:07:11 -070045};
46
47#ifdef CONFIG_NET_L3_MASTER_DEV
48
David Ahern96c63fa2016-06-08 10:55:39 -070049int l3mdev_fib_rule_match(struct net *net, struct flowi *fl,
50 struct fib_lookup_arg *arg);
51
David Ahern9ee00342016-09-10 12:09:52 -070052void l3mdev_update_flow(struct net *net, struct flowi *fl);
53
David Ahern3f2fb9a2016-02-24 11:47:02 -080054int l3mdev_master_ifindex_rcu(const struct net_device *dev);
David Ahern1b69c6d2015-09-29 20:07:11 -070055static inline int l3mdev_master_ifindex(struct net_device *dev)
56{
57 int ifindex;
58
59 rcu_read_lock();
60 ifindex = l3mdev_master_ifindex_rcu(dev);
61 rcu_read_unlock();
62
63 return ifindex;
64}
65
David Ahern1a852472015-12-16 13:20:43 -080066static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
67{
68 struct net_device *dev;
69 int rc = 0;
70
71 if (likely(ifindex)) {
72 rcu_read_lock();
73
74 dev = dev_get_by_index_rcu(net, ifindex);
75 if (dev)
76 rc = l3mdev_master_ifindex_rcu(dev);
77
78 rcu_read_unlock();
79 }
80
81 return rc;
82}
83
David Ahernafbac6012016-06-16 16:24:26 -070084static inline
85const struct net_device *l3mdev_master_dev_rcu(const struct net_device *_dev)
86{
87 /* netdev_master_upper_dev_get_rcu calls
88 * list_first_or_null_rcu to walk the upper dev list.
89 * list_first_or_null_rcu does not handle a const arg. We aren't
90 * making changes, just want the master device from that list so
91 * typecast to remove the const
92 */
93 struct net_device *dev = (struct net_device *)_dev;
94 const struct net_device *master;
95
96 if (!dev)
97 return NULL;
98
99 if (netif_is_l3_master(dev))
100 master = dev;
101 else if (netif_is_l3_slave(dev))
102 master = netdev_master_upper_dev_get_rcu(dev);
103 else
104 master = NULL;
105
106 return master;
107}
108
David Ahern1b69c6d2015-09-29 20:07:11 -0700109/* get index of an interface to use for FIB lookups. For devices
110 * enslaved to an L3 master device FIB lookups are based on the
111 * master index
112 */
113static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
114{
115 return l3mdev_master_ifindex_rcu(dev) ? : dev->ifindex;
116}
117
118static inline int l3mdev_fib_oif(struct net_device *dev)
119{
120 int oif;
121
122 rcu_read_lock();
123 oif = l3mdev_fib_oif_rcu(dev);
124 rcu_read_unlock();
125
126 return oif;
127}
128
129u32 l3mdev_fib_table_rcu(const struct net_device *dev);
130u32 l3mdev_fib_table_by_index(struct net *net, int ifindex);
131static inline u32 l3mdev_fib_table(const struct net_device *dev)
132{
133 u32 tb_id;
134
135 rcu_read_lock();
136 tb_id = l3mdev_fib_table_rcu(dev);
137 rcu_read_unlock();
138
139 return tb_id;
140}
141
142static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
143 const struct flowi4 *fl4)
144{
145 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rtable)
146 return dev->l3mdev_ops->l3mdev_get_rtable(dev, fl4);
147
148 return NULL;
149}
150
David Ahern9478d122015-09-29 20:07:18 -0700151static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
152{
153 struct net_device *dev;
154 bool rc = false;
155
156 if (ifindex == 0)
157 return false;
158
159 rcu_read_lock();
160
161 dev = dev_get_by_index_rcu(net, ifindex);
162 if (dev)
163 rc = netif_is_l3_master(dev);
164
165 rcu_read_unlock();
166
167 return rc;
168}
169
David Ahern4a658962016-05-07 16:48:59 -0700170int l3mdev_get_saddr(struct net *net, int ifindex, struct flowi4 *fl4);
David Ahern8cbb512c2015-10-05 08:51:26 -0700171
David Aherncd2a9e62016-06-13 13:44:17 -0700172struct dst_entry *l3mdev_get_rt6_dst(struct net *net, struct flowi6 *fl6);
David Ahern0d240e72016-06-16 16:24:25 -0700173int l3mdev_get_saddr6(struct net *net, const struct sock *sk,
174 struct flowi6 *fl6);
David Ahernccf3c8c2015-10-12 11:47:07 -0700175
David Ahern74b20582016-05-10 11:19:50 -0700176static inline
177struct sk_buff *l3mdev_l3_rcv(struct sk_buff *skb, u16 proto)
178{
179 struct net_device *master = NULL;
180
181 if (netif_is_l3_slave(skb->dev))
182 master = netdev_master_upper_dev_get_rcu(skb->dev);
183 else if (netif_is_l3_master(skb->dev))
184 master = skb->dev;
185
186 if (master && master->l3mdev_ops->l3mdev_l3_rcv)
187 skb = master->l3mdev_ops->l3mdev_l3_rcv(master, skb, proto);
188
189 return skb;
190}
191
192static inline
193struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
194{
195 return l3mdev_l3_rcv(skb, AF_INET);
196}
197
198static inline
199struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
200{
201 return l3mdev_l3_rcv(skb, AF_INET6);
202}
203
David Ahern1b69c6d2015-09-29 20:07:11 -0700204#else
205
David Ahern3f2fb9a2016-02-24 11:47:02 -0800206static inline int l3mdev_master_ifindex_rcu(const struct net_device *dev)
David Ahern1b69c6d2015-09-29 20:07:11 -0700207{
208 return 0;
209}
210static inline int l3mdev_master_ifindex(struct net_device *dev)
211{
212 return 0;
213}
214
David Ahern1a852472015-12-16 13:20:43 -0800215static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
216{
217 return 0;
218}
219
David Ahernafbac6012016-06-16 16:24:26 -0700220static inline
221const struct net_device *l3mdev_master_dev_rcu(const struct net_device *dev)
222{
223 return NULL;
224}
225
David Ahern1b69c6d2015-09-29 20:07:11 -0700226static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
227{
228 return dev ? dev->ifindex : 0;
229}
230static inline int l3mdev_fib_oif(struct net_device *dev)
231{
232 return dev ? dev->ifindex : 0;
233}
234
235static inline u32 l3mdev_fib_table_rcu(const struct net_device *dev)
236{
237 return 0;
238}
239static inline u32 l3mdev_fib_table(const struct net_device *dev)
240{
241 return 0;
242}
243static inline u32 l3mdev_fib_table_by_index(struct net *net, int ifindex)
244{
245 return 0;
246}
247
248static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
249 const struct flowi4 *fl4)
250{
251 return NULL;
252}
253
David Ahern9478d122015-09-29 20:07:18 -0700254static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
255{
256 return false;
257}
258
David Ahernb5bdacf2016-01-04 09:09:27 -0800259static inline int l3mdev_get_saddr(struct net *net, int ifindex,
260 struct flowi4 *fl4)
David Ahern8cbb512c2015-10-05 08:51:26 -0700261{
David Ahernb5bdacf2016-01-04 09:09:27 -0800262 return 0;
David Ahern8cbb512c2015-10-05 08:51:26 -0700263}
David Ahernccf3c8c2015-10-12 11:47:07 -0700264
265static inline
David Aherncd2a9e62016-06-13 13:44:17 -0700266struct dst_entry *l3mdev_get_rt6_dst(struct net *net, struct flowi6 *fl6)
David Ahernccf3c8c2015-10-12 11:47:07 -0700267{
268 return NULL;
269}
David Ahern74b20582016-05-10 11:19:50 -0700270
David Ahern0d240e72016-06-16 16:24:25 -0700271static inline int l3mdev_get_saddr6(struct net *net, const struct sock *sk,
272 struct flowi6 *fl6)
273{
274 return 0;
275}
276
David Ahern74b20582016-05-10 11:19:50 -0700277static inline
278struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
279{
280 return skb;
281}
282
283static inline
284struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
285{
286 return skb;
287}
David Ahern96c63fa2016-06-08 10:55:39 -0700288
289static inline
290int l3mdev_fib_rule_match(struct net *net, struct flowi *fl,
291 struct fib_lookup_arg *arg)
292{
293 return 1;
294}
David Ahern9ee00342016-09-10 12:09:52 -0700295static inline
296void l3mdev_update_flow(struct net *net, struct flowi *fl)
297{
298}
David Ahern1b69c6d2015-09-29 20:07:11 -0700299#endif
300
301#endif /* _NET_L3MDEV_H_ */