blob: 786226f8e77be766c210c64a5577d3dad401d2e1 [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 Ahernccf3c8c2015-10-12 11:47:07 -070028
29 /* IPv4 ops */
David Ahern1b69c6d2015-09-29 20:07:11 -070030 struct rtable * (*l3mdev_get_rtable)(const struct net_device *dev,
31 const struct flowi4 *fl4);
David Ahern8cbb512c2015-10-05 08:51:26 -070032 void (*l3mdev_get_saddr)(struct net_device *dev,
33 struct flowi4 *fl4);
David Ahernccf3c8c2015-10-12 11:47:07 -070034
35 /* IPv6 ops */
36 struct dst_entry * (*l3mdev_get_rt6_dst)(const struct net_device *dev,
37 const struct flowi6 *fl6);
David Ahern1b69c6d2015-09-29 20:07:11 -070038};
39
40#ifdef CONFIG_NET_L3_MASTER_DEV
41
42int l3mdev_master_ifindex_rcu(struct net_device *dev);
43static inline int l3mdev_master_ifindex(struct net_device *dev)
44{
45 int ifindex;
46
47 rcu_read_lock();
48 ifindex = l3mdev_master_ifindex_rcu(dev);
49 rcu_read_unlock();
50
51 return ifindex;
52}
53
David Ahern1a852472015-12-16 13:20:43 -080054static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
55{
56 struct net_device *dev;
57 int rc = 0;
58
59 if (likely(ifindex)) {
60 rcu_read_lock();
61
62 dev = dev_get_by_index_rcu(net, ifindex);
63 if (dev)
64 rc = l3mdev_master_ifindex_rcu(dev);
65
66 rcu_read_unlock();
67 }
68
69 return rc;
70}
71
David Ahern1b69c6d2015-09-29 20:07:11 -070072/* get index of an interface to use for FIB lookups. For devices
73 * enslaved to an L3 master device FIB lookups are based on the
74 * master index
75 */
76static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
77{
78 return l3mdev_master_ifindex_rcu(dev) ? : dev->ifindex;
79}
80
81static inline int l3mdev_fib_oif(struct net_device *dev)
82{
83 int oif;
84
85 rcu_read_lock();
86 oif = l3mdev_fib_oif_rcu(dev);
87 rcu_read_unlock();
88
89 return oif;
90}
91
92u32 l3mdev_fib_table_rcu(const struct net_device *dev);
93u32 l3mdev_fib_table_by_index(struct net *net, int ifindex);
94static inline u32 l3mdev_fib_table(const struct net_device *dev)
95{
96 u32 tb_id;
97
98 rcu_read_lock();
99 tb_id = l3mdev_fib_table_rcu(dev);
100 rcu_read_unlock();
101
102 return tb_id;
103}
104
105static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
106 const struct flowi4 *fl4)
107{
108 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rtable)
109 return dev->l3mdev_ops->l3mdev_get_rtable(dev, fl4);
110
111 return NULL;
112}
113
David Ahern9478d122015-09-29 20:07:18 -0700114static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
115{
116 struct net_device *dev;
117 bool rc = false;
118
119 if (ifindex == 0)
120 return false;
121
122 rcu_read_lock();
123
124 dev = dev_get_by_index_rcu(net, ifindex);
125 if (dev)
126 rc = netif_is_l3_master(dev);
127
128 rcu_read_unlock();
129
130 return rc;
131}
132
David Ahern8cbb512c2015-10-05 08:51:26 -0700133static inline void l3mdev_get_saddr(struct net *net, int ifindex,
134 struct flowi4 *fl4)
135{
136 struct net_device *dev;
137
138 if (ifindex) {
139
140 rcu_read_lock();
141
142 dev = dev_get_by_index_rcu(net, ifindex);
143 if (dev && netif_is_l3_master(dev) &&
144 dev->l3mdev_ops->l3mdev_get_saddr) {
145 dev->l3mdev_ops->l3mdev_get_saddr(dev, fl4);
146 }
147
148 rcu_read_unlock();
149 }
150}
151
David Ahernccf3c8c2015-10-12 11:47:07 -0700152static inline struct dst_entry *l3mdev_get_rt6_dst(const struct net_device *dev,
153 const struct flowi6 *fl6)
154{
155 if (netif_is_l3_master(dev) && dev->l3mdev_ops->l3mdev_get_rt6_dst)
156 return dev->l3mdev_ops->l3mdev_get_rt6_dst(dev, fl6);
157
158 return NULL;
159}
160
161static inline
162struct dst_entry *l3mdev_rt6_dst_by_oif(struct net *net,
163 const struct flowi6 *fl6)
164{
165 struct dst_entry *dst = NULL;
166 struct net_device *dev;
167
168 dev = dev_get_by_index(net, fl6->flowi6_oif);
169 if (dev) {
170 dst = l3mdev_get_rt6_dst(dev, fl6);
171 dev_put(dev);
172 }
173
174 return dst;
175}
176
David Ahern1b69c6d2015-09-29 20:07:11 -0700177#else
178
179static inline int l3mdev_master_ifindex_rcu(struct net_device *dev)
180{
181 return 0;
182}
183static inline int l3mdev_master_ifindex(struct net_device *dev)
184{
185 return 0;
186}
187
David Ahern1a852472015-12-16 13:20:43 -0800188static inline int l3mdev_master_ifindex_by_index(struct net *net, int ifindex)
189{
190 return 0;
191}
192
David Ahern1b69c6d2015-09-29 20:07:11 -0700193static inline int l3mdev_fib_oif_rcu(struct net_device *dev)
194{
195 return dev ? dev->ifindex : 0;
196}
197static inline int l3mdev_fib_oif(struct net_device *dev)
198{
199 return dev ? dev->ifindex : 0;
200}
201
202static inline u32 l3mdev_fib_table_rcu(const struct net_device *dev)
203{
204 return 0;
205}
206static inline u32 l3mdev_fib_table(const struct net_device *dev)
207{
208 return 0;
209}
210static inline u32 l3mdev_fib_table_by_index(struct net *net, int ifindex)
211{
212 return 0;
213}
214
215static inline struct rtable *l3mdev_get_rtable(const struct net_device *dev,
216 const struct flowi4 *fl4)
217{
218 return NULL;
219}
220
David Ahern9478d122015-09-29 20:07:18 -0700221static inline bool netif_index_is_l3_master(struct net *net, int ifindex)
222{
223 return false;
224}
225
David Ahern8cbb512c2015-10-05 08:51:26 -0700226static inline void l3mdev_get_saddr(struct net *net, int ifindex,
227 struct flowi4 *fl4)
228{
229}
David Ahernccf3c8c2015-10-12 11:47:07 -0700230
231static inline
232struct dst_entry *l3mdev_get_rt6_dst(const struct net_device *dev,
233 const struct flowi6 *fl6)
234{
235 return NULL;
236}
237static inline
238struct dst_entry *l3mdev_rt6_dst_by_oif(struct net *net,
239 const struct flowi6 *fl6)
240{
241 return NULL;
242}
David Ahern1b69c6d2015-09-29 20:07:11 -0700243#endif
244
245#endif /* _NET_L3MDEV_H_ */