blob: a4886d94c40c453cf0032cc24a207dacb438c054 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __BEN_VLAN_802_1Q_INC__
2#define __BEN_VLAN_802_1Q_INC__
3
4#include <linux/if_vlan.h>
Eric Dumazet9618e2f2010-06-24 00:55:06 +00005#include <linux/u64_stats_sync.h>
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +00006#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Patrick McHardy22d1ba72008-07-08 03:23:57 -07008
9/**
10 * struct vlan_priority_tci_mapping - vlan egress priority mappings
11 * @priority: skb priority
12 * @vlan_qos: vlan priority: (skb->priority << 13) & 0xE000
13 * @next: pointer to next struct
14 */
15struct vlan_priority_tci_mapping {
16 u32 priority;
Patrick McHardy9bb85822008-07-08 03:24:44 -070017 u16 vlan_qos;
Patrick McHardy22d1ba72008-07-08 03:23:57 -070018 struct vlan_priority_tci_mapping *next;
19};
20
Eric Dumazet97932412009-11-17 04:53:09 +000021
22/**
Eric Dumazet4af429d2010-11-10 23:42:00 +000023 * struct vlan_pcpu_stats - VLAN percpu rx/tx stats
Eric Dumazet97932412009-11-17 04:53:09 +000024 * @rx_packets: number of received packets
25 * @rx_bytes: number of received bytes
Eric Dumazet9618e2f2010-06-24 00:55:06 +000026 * @rx_multicast: number of received multicast packets
Eric Dumazet4af429d2010-11-10 23:42:00 +000027 * @tx_packets: number of transmitted packets
28 * @tx_bytes: number of transmitted bytes
Eric Dumazet9618e2f2010-06-24 00:55:06 +000029 * @syncp: synchronization point for 64bit counters
Eric Dumazet4af429d2010-11-10 23:42:00 +000030 * @rx_errors: number of rx errors
31 * @tx_dropped: number of tx drops
Eric Dumazet97932412009-11-17 04:53:09 +000032 */
Eric Dumazet4af429d2010-11-10 23:42:00 +000033struct vlan_pcpu_stats {
Eric Dumazet9618e2f2010-06-24 00:55:06 +000034 u64 rx_packets;
35 u64 rx_bytes;
36 u64 rx_multicast;
Eric Dumazet4af429d2010-11-10 23:42:00 +000037 u64 tx_packets;
38 u64 tx_bytes;
Eric Dumazet9618e2f2010-06-24 00:55:06 +000039 struct u64_stats_sync syncp;
Eric Dumazet4af429d2010-11-10 23:42:00 +000040 u32 rx_errors;
41 u32 tx_dropped;
Eric Dumazet97932412009-11-17 04:53:09 +000042};
43
Benjamin LaHaise6d4cdf42011-12-08 06:20:49 +000044struct netpoll;
45
Patrick McHardy22d1ba72008-07-08 03:23:57 -070046/**
Jiri Pirko7da82c02011-12-08 04:11:15 +000047 * struct vlan_dev_priv - VLAN private device data
Patrick McHardy22d1ba72008-07-08 03:23:57 -070048 * @nr_ingress_mappings: number of ingress priority mappings
49 * @ingress_priority_map: ingress priority mappings
50 * @nr_egress_mappings: number of egress priority mappings
51 * @egress_priority_map: hash of egress priority mappings
52 * @vlan_id: VLAN identifier
53 * @flags: device flags
54 * @real_dev: underlying netdevice
55 * @real_dev_addr: address of underlying netdevice
56 * @dent: proc dir entry
Eric Dumazet4af429d2010-11-10 23:42:00 +000057 * @vlan_pcpu_stats: ptr to percpu rx stats
Patrick McHardy22d1ba72008-07-08 03:23:57 -070058 */
Jiri Pirko7da82c02011-12-08 04:11:15 +000059struct vlan_dev_priv {
Patrick McHardy22d1ba72008-07-08 03:23:57 -070060 unsigned int nr_ingress_mappings;
61 u32 ingress_priority_map[8];
62 unsigned int nr_egress_mappings;
63 struct vlan_priority_tci_mapping *egress_priority_map[16];
64
Patrick McHardy9bb85822008-07-08 03:24:44 -070065 u16 vlan_id;
66 u16 flags;
Patrick McHardy22d1ba72008-07-08 03:23:57 -070067
68 struct net_device *real_dev;
69 unsigned char real_dev_addr[ETH_ALEN];
70
71 struct proc_dir_entry *dent;
Eric Dumazet4af429d2010-11-10 23:42:00 +000072 struct vlan_pcpu_stats __percpu *vlan_pcpu_stats;
Benjamin LaHaise6d4cdf42011-12-08 06:20:49 +000073#ifdef CONFIG_NET_POLL_CONTROLLER
74 struct netpoll *netpoll;
75#endif
Patrick McHardy22d1ba72008-07-08 03:23:57 -070076};
77
Jiri Pirko7da82c02011-12-08 04:11:15 +000078static inline struct vlan_dev_priv *vlan_dev_priv(const struct net_device *dev)
Patrick McHardy22d1ba72008-07-08 03:23:57 -070079{
80 return netdev_priv(dev);
81}
82
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +000083/* if this changes, algorithm will have to be reworked because this
84 * depends on completely exhausting the VLAN identifier space. Thus
85 * it gives constant time look-up, but in many cases it wastes memory.
86 */
87#define VLAN_GROUP_ARRAY_SPLIT_PARTS 8
88#define VLAN_GROUP_ARRAY_PART_LEN (VLAN_N_VID/VLAN_GROUP_ARRAY_SPLIT_PARTS)
89
90struct vlan_group {
91 unsigned int nr_vlan_devs;
92 struct hlist_node hlist; /* linked list */
93 struct net_device **vlan_devices_arrays[VLAN_GROUP_ARRAY_SPLIT_PARTS];
94};
95
96struct vlan_info {
97 struct net_device *real_dev; /* The ethernet(like) device
98 * the vlan is attached to.
99 */
100 struct vlan_group grp;
101 struct list_head vid_list;
102 unsigned int nr_vids;
103 struct rcu_head rcu;
104};
105
Jiri Pirko536d1d42011-07-20 04:54:49 +0000106static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
107 u16 vlan_id)
108{
109 struct net_device **array;
110 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
111 return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
112}
113
114static inline void vlan_group_set_device(struct vlan_group *vg,
115 u16 vlan_id,
116 struct net_device *dev)
117{
118 struct net_device **array;
119 if (!vg)
120 return;
121 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
122 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
123}
124
David Lamparter69ecca82011-07-17 08:53:12 +0000125/* Must be invoked with rcu_read_lock or with RTNL. */
126static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
127 u16 vlan_id)
128{
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000129 struct vlan_info *vlan_info = rcu_dereference_rtnl(real_dev->vlan_info);
David Lamparter69ecca82011-07-17 08:53:12 +0000130
Jiri Pirko5b9ea6e2011-12-08 04:11:18 +0000131 if (vlan_info)
132 return vlan_group_get_device(&vlan_info->grp, vlan_id);
David Lamparter69ecca82011-07-17 08:53:12 +0000133
134 return NULL;
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* found in vlan_dev.c */
Patrick McHardyc17d8872007-06-13 12:05:22 -0700138void vlan_dev_set_ingress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700139 u32 skb_prio, u16 vlan_prio);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700140int vlan_dev_set_egress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700141 u32 skb_prio, u16 vlan_prio);
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700142int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700143void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Patrick McHardy9bb85822008-07-08 03:24:44 -0700145int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700146void vlan_setup(struct net_device *dev);
147int register_vlan_dev(struct net_device *dev);
Eric Dumazet23289a32009-10-27 07:06:36 +0000148void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700149
Patrick McHardy7750f402008-07-08 03:23:36 -0700150static inline u32 vlan_get_ingress_priority(struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700151 u16 vlan_tci)
Patrick McHardy7750f402008-07-08 03:23:36 -0700152{
Jiri Pirko7da82c02011-12-08 04:11:15 +0000153 struct vlan_dev_priv *vip = vlan_dev_priv(dev);
Patrick McHardy7750f402008-07-08 03:23:36 -0700154
Eric Dumazet05423b22009-10-26 18:40:35 -0700155 return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
Patrick McHardy7750f402008-07-08 03:23:36 -0700156}
157
Patrick McHardy70c03b42008-07-05 21:26:57 -0700158#ifdef CONFIG_VLAN_8021Q_GVRP
159extern int vlan_gvrp_request_join(const struct net_device *dev);
160extern void vlan_gvrp_request_leave(const struct net_device *dev);
161extern int vlan_gvrp_init_applicant(struct net_device *dev);
162extern void vlan_gvrp_uninit_applicant(struct net_device *dev);
163extern int vlan_gvrp_init(void);
164extern void vlan_gvrp_uninit(void);
165#else
166static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
167static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
168static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
169static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
170static inline int vlan_gvrp_init(void) { return 0; }
171static inline void vlan_gvrp_uninit(void) {}
172#endif
173
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700174extern const char vlan_fullname[];
175extern const char vlan_version[];
176extern int vlan_netlink_init(void);
177extern void vlan_netlink_fini(void);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700178
179extern struct rtnl_link_ops vlan_link_ops;
180
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700181extern int vlan_net_id;
182
Pavel Emelyanova59a8c12008-04-16 00:51:51 -0700183struct proc_dir_entry;
184
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700185struct vlan_net {
Pavel Emelyanova59a8c12008-04-16 00:51:51 -0700186 /* /proc/net/vlan */
187 struct proc_dir_entry *proc_vlan_dir;
188 /* /proc/net/vlan/config */
189 struct proc_dir_entry *proc_vlan_conf;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700190 /* Determines interface naming scheme. */
191 unsigned short name_type;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#endif /* !(__BEN_VLAN_802_1Q_INC__) */