blob: 9fd45f3571f9a7c8b0ba0a9431578a0a8b0b674f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Patrick McHardy22d1ba72008-07-08 03:23:57 -07007
8/**
9 * struct vlan_priority_tci_mapping - vlan egress priority mappings
10 * @priority: skb priority
11 * @vlan_qos: vlan priority: (skb->priority << 13) & 0xE000
12 * @next: pointer to next struct
13 */
14struct vlan_priority_tci_mapping {
15 u32 priority;
Patrick McHardy9bb85822008-07-08 03:24:44 -070016 u16 vlan_qos;
Patrick McHardy22d1ba72008-07-08 03:23:57 -070017 struct vlan_priority_tci_mapping *next;
18};
19
Eric Dumazet97932412009-11-17 04:53:09 +000020
21/**
Eric Dumazet4af429d2010-11-10 23:42:00 +000022 * struct vlan_pcpu_stats - VLAN percpu rx/tx stats
Eric Dumazet97932412009-11-17 04:53:09 +000023 * @rx_packets: number of received packets
24 * @rx_bytes: number of received bytes
Eric Dumazet9618e2f2010-06-24 00:55:06 +000025 * @rx_multicast: number of received multicast packets
Eric Dumazet4af429d2010-11-10 23:42:00 +000026 * @tx_packets: number of transmitted packets
27 * @tx_bytes: number of transmitted bytes
Eric Dumazet9618e2f2010-06-24 00:55:06 +000028 * @syncp: synchronization point for 64bit counters
Eric Dumazet4af429d2010-11-10 23:42:00 +000029 * @rx_errors: number of rx errors
30 * @tx_dropped: number of tx drops
Eric Dumazet97932412009-11-17 04:53:09 +000031 */
Eric Dumazet4af429d2010-11-10 23:42:00 +000032struct vlan_pcpu_stats {
Eric Dumazet9618e2f2010-06-24 00:55:06 +000033 u64 rx_packets;
34 u64 rx_bytes;
35 u64 rx_multicast;
Eric Dumazet4af429d2010-11-10 23:42:00 +000036 u64 tx_packets;
37 u64 tx_bytes;
Eric Dumazet9618e2f2010-06-24 00:55:06 +000038 struct u64_stats_sync syncp;
Eric Dumazet4af429d2010-11-10 23:42:00 +000039 u32 rx_errors;
40 u32 tx_dropped;
Eric Dumazet97932412009-11-17 04:53:09 +000041};
42
Patrick McHardy22d1ba72008-07-08 03:23:57 -070043/**
44 * struct vlan_dev_info - VLAN private device data
45 * @nr_ingress_mappings: number of ingress priority mappings
46 * @ingress_priority_map: ingress priority mappings
47 * @nr_egress_mappings: number of egress priority mappings
48 * @egress_priority_map: hash of egress priority mappings
49 * @vlan_id: VLAN identifier
50 * @flags: device flags
51 * @real_dev: underlying netdevice
52 * @real_dev_addr: address of underlying netdevice
53 * @dent: proc dir entry
Eric Dumazet4af429d2010-11-10 23:42:00 +000054 * @vlan_pcpu_stats: ptr to percpu rx stats
Patrick McHardy22d1ba72008-07-08 03:23:57 -070055 */
56struct vlan_dev_info {
57 unsigned int nr_ingress_mappings;
58 u32 ingress_priority_map[8];
59 unsigned int nr_egress_mappings;
60 struct vlan_priority_tci_mapping *egress_priority_map[16];
61
Patrick McHardy9bb85822008-07-08 03:24:44 -070062 u16 vlan_id;
63 u16 flags;
Patrick McHardy22d1ba72008-07-08 03:23:57 -070064
65 struct net_device *real_dev;
66 unsigned char real_dev_addr[ETH_ALEN];
67
68 struct proc_dir_entry *dent;
Eric Dumazet4af429d2010-11-10 23:42:00 +000069 struct vlan_pcpu_stats __percpu *vlan_pcpu_stats;
Patrick McHardy22d1ba72008-07-08 03:23:57 -070070};
71
72static inline struct vlan_dev_info *vlan_dev_info(const struct net_device *dev)
73{
74 return netdev_priv(dev);
75}
76
Jiri Pirko536d1d42011-07-20 04:54:49 +000077static inline struct net_device *vlan_group_get_device(struct vlan_group *vg,
78 u16 vlan_id)
79{
80 struct net_device **array;
81 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
82 return array ? array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] : NULL;
83}
84
85static inline void vlan_group_set_device(struct vlan_group *vg,
86 u16 vlan_id,
87 struct net_device *dev)
88{
89 struct net_device **array;
90 if (!vg)
91 return;
92 array = vg->vlan_devices_arrays[vlan_id / VLAN_GROUP_ARRAY_PART_LEN];
93 array[vlan_id % VLAN_GROUP_ARRAY_PART_LEN] = dev;
94}
95
David Lamparter69ecca82011-07-17 08:53:12 +000096/* Must be invoked with rcu_read_lock or with RTNL. */
97static inline struct net_device *vlan_find_dev(struct net_device *real_dev,
98 u16 vlan_id)
99{
100 struct vlan_group *grp = rcu_dereference_rtnl(real_dev->vlgrp);
101
102 if (grp)
103 return vlan_group_get_device(grp, vlan_id);
104
105 return NULL;
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* found in vlan_dev.c */
Patrick McHardyc17d8872007-06-13 12:05:22 -0700109void vlan_dev_set_ingress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700110 u32 skb_prio, u16 vlan_prio);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700111int vlan_dev_set_egress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700112 u32 skb_prio, u16 vlan_prio);
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700113int vlan_dev_change_flags(const struct net_device *dev, u32 flag, u32 mask);
Patrick McHardyc17d8872007-06-13 12:05:22 -0700114void vlan_dev_get_realdev_name(const struct net_device *dev, char *result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Patrick McHardy9bb85822008-07-08 03:24:44 -0700116int vlan_check_real_dev(struct net_device *real_dev, u16 vlan_id);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700117void vlan_setup(struct net_device *dev);
118int register_vlan_dev(struct net_device *dev);
Eric Dumazet23289a32009-10-27 07:06:36 +0000119void unregister_vlan_dev(struct net_device *dev, struct list_head *head);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700120
Patrick McHardy7750f402008-07-08 03:23:36 -0700121static inline u32 vlan_get_ingress_priority(struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700122 u16 vlan_tci)
Patrick McHardy7750f402008-07-08 03:23:36 -0700123{
124 struct vlan_dev_info *vip = vlan_dev_info(dev);
125
Eric Dumazet05423b22009-10-26 18:40:35 -0700126 return vip->ingress_priority_map[(vlan_tci >> VLAN_PRIO_SHIFT) & 0x7];
Patrick McHardy7750f402008-07-08 03:23:36 -0700127}
128
Patrick McHardy70c03b42008-07-05 21:26:57 -0700129#ifdef CONFIG_VLAN_8021Q_GVRP
130extern int vlan_gvrp_request_join(const struct net_device *dev);
131extern void vlan_gvrp_request_leave(const struct net_device *dev);
132extern int vlan_gvrp_init_applicant(struct net_device *dev);
133extern void vlan_gvrp_uninit_applicant(struct net_device *dev);
134extern int vlan_gvrp_init(void);
135extern void vlan_gvrp_uninit(void);
136#else
137static inline int vlan_gvrp_request_join(const struct net_device *dev) { return 0; }
138static inline void vlan_gvrp_request_leave(const struct net_device *dev) {}
139static inline int vlan_gvrp_init_applicant(struct net_device *dev) { return 0; }
140static inline void vlan_gvrp_uninit_applicant(struct net_device *dev) {}
141static inline int vlan_gvrp_init(void) { return 0; }
142static inline void vlan_gvrp_uninit(void) {}
143#endif
144
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700145extern const char vlan_fullname[];
146extern const char vlan_version[];
147extern int vlan_netlink_init(void);
148extern void vlan_netlink_fini(void);
Patrick McHardy07b5b172007-06-13 12:07:54 -0700149
150extern struct rtnl_link_ops vlan_link_ops;
151
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700152extern int vlan_net_id;
153
Pavel Emelyanova59a8c12008-04-16 00:51:51 -0700154struct proc_dir_entry;
155
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700156struct vlan_net {
Pavel Emelyanova59a8c12008-04-16 00:51:51 -0700157 /* /proc/net/vlan */
158 struct proc_dir_entry *proc_vlan_dir;
159 /* /proc/net/vlan/config */
160 struct proc_dir_entry *proc_vlan_conf;
Pavel Emelyanov7a17a2f2008-04-16 00:54:39 -0700161 /* Determines interface naming scheme. */
162 unsigned short name_type;
Pavel Emelyanovd9ed0f02008-04-16 00:49:09 -0700163};
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#endif /* !(__BEN_VLAN_802_1Q_INC__) */