blob: 374388dc01c8d64a4ea4220bd877aa88e3203160 [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
14/**
15 * struct l3mdev_ops - l3mdev operations
16 *
17 * @l3mdev_fib_table: Get FIB table id to use for lookups
18 *
19 * @l3mdev_get_rtable: Get cached IPv4 rtable (dst_entry) for device
David Ahern8cbb512c2015-10-05 08:51:26 -070020 *
21 * @l3mdev_get_saddr: Get source address for a flow
David Ahernccf3c8c2015-10-12 11:47:07 -070022 *
23 * @l3mdev_get_rt6_dst: Get cached IPv6 rt6_info (dst_entry) for device
David Ahern1b69c6d2015-09-29 20:07:11 -070024 */
25
26struct l3mdev_ops {
27 u32 (*l3mdev_fib_table)(const struct net_device *dev);
David Ahern74b20582016-05-10 11:19:50 -070028 struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *dev,
29 struct sk_buff *skb, u16 proto);
David Ahernccf3c8c2015-10-12 11:47:07 -070030
31 /* IPv4 ops */
David Ahern1b69c6d2015-09-29 20:07:11 -070032 struct rtable * (*l3mdev_get_rtable)(const struct net_device *dev,
33 const struct flowi4 *fl4);
David Ahernb5bdacf2016-01-04 09:09:27 -080034 int (*l3mdev_get_saddr)(struct net_device *dev,
David Ahern8cbb512c2015-10-05 08:51:26 -070035 struct flowi4 *fl4);
David Ahernccf3c8c2015-10-12 11:47:07 -070036
37 /* IPv6 ops */
38 struct dst_entry * (*l3mdev_get_rt6_dst)(const struct net_device *dev,
39 const struct flowi6 *fl6);
David Ahern1b69c6d2015-09-29 20:07:11 -070040};
41
42#ifdef CONFIG_NET_L3_MASTER_DEV
43
David Ahern3f2fb9a2016-02-24 11:47:02 -080044int l3mdev_master_ifindex_rcu(const struct net_device *dev);
David Ahern1b69c6d2015-09-29 20:07:11 -070045static inline int l3mdev_master_ifindex(struct net_device *dev)
46{
47 int ifindex;
48
49 rcu_read_lock();
50 ifindex = l3mdev_master_ifindex_rcu(dev);
51 rcu_read_unlock();
52
53 return ifindex;
54}
55
David Ahern1a852472015-12-16 13:20:43 -080056static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
57{
58 struct net_device *dev;
59 int rc = 0;
60
61 if (likely(ifindex)) {
62 rcu_read_lock();
63
64 dev = dev_get_by_index_rcu(net, ifindex);
65 if (dev)
66 rc = l3mdev_master_ifindex_rcu(dev);
67
68 rcu_read_unlock();
69 }
70
71 return rc;
72}
73
David Ahern1b69c6d2015-09-29 20:07:11 -070074/* 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
77 */
78static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
79{
80 return l3mdev_master_ifindex_rcu(dev) ? : dev->ifindex;
81}
82
83static inline int l3mdev_fib_oif(struct net_device *dev)
84{
85 int oif;
86
87 rcu_read_lock();
88 oif = l3mdev_fib_oif_rcu(dev);
89 rcu_read_unlock();
90
91 return oif;
92}
93
94u32 l3mdev_fib_table_rcu(const struct net_device *dev);
95u32 l3mdev_fib_table_by_index(struct net *net, int ifindex);
96static inline u32 l3mdev_fib_table(const struct net_device *dev)
97{
98 u32 tb_id;
99
100 rcu_read_lock();
101 tb_id = l3mdev_fib_table_rcu(dev);
102 rcu_read_unlock();
103
104 return tb_id;
105}
106
107static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
108 const struct flowi4 *fl4)
109{
110 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rtable)
111 return dev->l3mdev_ops->l3mdev_get_rtable(dev, fl4);
112
113 return NULL;
114}
115
David Ahern9478d122015-09-29 20:07:18 -0700116static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
117{
118 struct net_device *dev;
119 bool rc = false;
120
121 if (ifindex == 0)
122 return false;
123
124 rcu_read_lock();
125
126 dev = dev_get_by_index_rcu(net, ifindex);
127 if (dev)
128 rc = netif_is_l3_master(dev);
129
130 rcu_read_unlock();
131
132 return rc;
133}
134
David Ahern4a658962016-05-07 16:48:59 -0700135int l3mdev_get_saddr(struct net *net, int ifindex, struct flowi4 *fl4);
David Ahern8cbb512c2015-10-05 08:51:26 -0700136
David Ahern4a658962016-05-07 16:48:59 -0700137struct dst_entry *l3mdev_get_rt6_dst(struct net *net, const struct flowi6 *fl6);
David Ahernccf3c8c2015-10-12 11:47:07 -0700138
David Ahern74b20582016-05-10 11:19:50 -0700139static inline
140struct sk_buff *l3mdev_l3_rcv(struct sk_buff *skb, u16 proto)
141{
142 struct net_device *master = NULL;
143
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;
148
149 if (master && master->l3mdev_ops->l3mdev_l3_rcv)
150 skb = master->l3mdev_ops->l3mdev_l3_rcv(master, skb, proto);
151
152 return skb;
153}
154
155static inline
156struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
157{
158 return l3mdev_l3_rcv(skb, AF_INET);
159}
160
161static inline
162struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
163{
164 return l3mdev_l3_rcv(skb, AF_INET6);
165}
166
David Ahern1b69c6d2015-09-29 20:07:11 -0700167#else
168
David Ahern3f2fb9a2016-02-24 11:47:02 -0800169static inline int l3mdev_master_ifindex_rcu(const struct net_device *dev)
David Ahern1b69c6d2015-09-29 20:07:11 -0700170{
171 return 0;
172}
173static inline int l3mdev_master_ifindex(struct net_device *dev)
174{
175 return 0;
176}
177
David Ahern1a852472015-12-16 13:20:43 -0800178static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
179{
180 return 0;
181}
182
David Ahern1b69c6d2015-09-29 20:07:11 -0700183static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
184{
185 return dev ? dev->ifindex : 0;
186}
187static inline int l3mdev_fib_oif(struct net_device *dev)
188{
189 return dev ? dev->ifindex : 0;
190}
191
192static inline u32 l3mdev_fib_table_rcu(const struct net_device *dev)
193{
194 return 0;
195}
196static inline u32 l3mdev_fib_table(const struct net_device *dev)
197{
198 return 0;
199}
200static inline u32 l3mdev_fib_table_by_index(struct net *net, int ifindex)
201{
202 return 0;
203}
204
205static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
206 const struct flowi4 *fl4)
207{
208 return NULL;
209}
210
David Ahern9478d122015-09-29 20:07:18 -0700211static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
212{
213 return false;
214}
215
David Ahernb5bdacf2016-01-04 09:09:27 -0800216static inline int l3mdev_get_saddr(struct net *net, int ifindex,
217 struct flowi4 *fl4)
David Ahern8cbb512c2015-10-05 08:51:26 -0700218{
David Ahernb5bdacf2016-01-04 09:09:27 -0800219 return 0;
David Ahern8cbb512c2015-10-05 08:51:26 -0700220}
David Ahernccf3c8c2015-10-12 11:47:07 -0700221
222static inline
David Ahern4a658962016-05-07 16:48:59 -0700223struct dst_entry *l3mdev_get_rt6_dst(struct net *net, const struct flowi6 *fl6)
David Ahernccf3c8c2015-10-12 11:47:07 -0700224{
225 return NULL;
226}
David Ahern74b20582016-05-10 11:19:50 -0700227
228static inline
229struct sk_buff *l3mdev_ip_rcv(struct sk_buff *skb)
230{
231 return skb;
232}
233
234static inline
235struct sk_buff *l3mdev_ip6_rcv(struct sk_buff *skb)
236{
237 return skb;
238}
David Ahern1b69c6d2015-09-29 20:07:11 -0700239#endif
240
241#endif /* _NET_L3MDEV_H_ */