Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_IF_MACVLAN_H |
| 2 | #define _LINUX_IF_MACVLAN_H |
| 3 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 4 | #include <linux/if_link.h> |
| 5 | #include <linux/list.h> |
| 6 | #include <linux/netdevice.h> |
| 7 | #include <linux/netlink.h> |
| 8 | #include <net/netlink.h> |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 9 | #include <linux/u64_stats_sync.h> |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 10 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 11 | #if defined(CONFIG_MACVTAP) || defined(CONFIG_MACVTAP_MODULE) |
| 12 | struct socket *macvtap_get_socket(struct file *); |
| 13 | #else |
| 14 | #include <linux/err.h> |
| 15 | #include <linux/errno.h> |
| 16 | struct file; |
| 17 | struct socket; |
| 18 | static inline struct socket *macvtap_get_socket(struct file *f) |
| 19 | { |
| 20 | return ERR_PTR(-EINVAL); |
| 21 | } |
| 22 | #endif /* CONFIG_MACVTAP */ |
| 23 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 24 | struct macvlan_port; |
| 25 | struct macvtap_queue; |
| 26 | |
| 27 | /** |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 28 | * struct macvlan_pcpu_stats - MACVLAN percpu stats |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 29 | * @rx_packets: number of received packets |
| 30 | * @rx_bytes: number of received bytes |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 31 | * @rx_multicast: number of received multicast packets |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 32 | * @tx_packets: number of transmitted packets |
| 33 | * @tx_bytes: number of transmitted bytes |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 34 | * @syncp: synchronization point for 64bit counters |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 35 | * @rx_errors: number of rx errors |
| 36 | * @tx_dropped: number of tx dropped packets |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 37 | */ |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 38 | struct macvlan_pcpu_stats { |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 39 | u64 rx_packets; |
| 40 | u64 rx_bytes; |
| 41 | u64 rx_multicast; |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 42 | u64 tx_packets; |
| 43 | u64 tx_bytes; |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 44 | struct u64_stats_sync syncp; |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 45 | u32 rx_errors; |
| 46 | u32 tx_dropped; |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 47 | }; |
| 48 | |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 49 | /* |
| 50 | * Maximum times a macvtap device can be opened. This can be used to |
| 51 | * configure the number of receive queue, e.g. for multiqueue virtio. |
| 52 | */ |
| 53 | #define MAX_MACVTAP_QUEUES (NR_CPUS < 16 ? NR_CPUS : 16) |
| 54 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 55 | struct macvlan_dev { |
| 56 | struct net_device *dev; |
| 57 | struct list_head list; |
| 58 | struct hlist_node hlist; |
| 59 | struct macvlan_port *port; |
| 60 | struct net_device *lowerdev; |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 61 | struct macvlan_pcpu_stats __percpu *pcpu_stats; |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 62 | enum macvlan_mode mode; |
| 63 | int (*receive)(struct sk_buff *skb); |
| 64 | int (*forward)(struct net_device *dev, struct sk_buff *skb); |
Krishna Kumar | 1565c7c | 2010-08-04 06:15:59 +0000 | [diff] [blame] | 65 | struct macvtap_queue *taps[MAX_MACVTAP_QUEUES]; |
| 66 | int numvtaps; |
Eric W. Biederman | e09eff7 | 2011-10-20 04:29:24 +0000 | [diff] [blame] | 67 | int minor; |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | static inline void macvlan_count_rx(const struct macvlan_dev *vlan, |
| 71 | unsigned int len, bool success, |
| 72 | bool multicast) |
| 73 | { |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 74 | if (likely(success)) { |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 75 | struct macvlan_pcpu_stats *pcpu_stats; |
| 76 | |
| 77 | pcpu_stats = this_cpu_ptr(vlan->pcpu_stats); |
| 78 | u64_stats_update_begin(&pcpu_stats->syncp); |
| 79 | pcpu_stats->rx_packets++; |
| 80 | pcpu_stats->rx_bytes += len; |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 81 | if (multicast) |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 82 | pcpu_stats->rx_multicast++; |
| 83 | u64_stats_update_end(&pcpu_stats->syncp); |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 84 | } else { |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 85 | this_cpu_inc(vlan->pcpu_stats->rx_errors); |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 86 | } |
| 87 | } |
| 88 | |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 89 | extern void macvlan_common_setup(struct net_device *dev); |
| 90 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 91 | extern int macvlan_common_newlink(struct net *src_net, struct net_device *dev, |
| 92 | struct nlattr *tb[], struct nlattr *data[], |
| 93 | int (*receive)(struct sk_buff *skb), |
| 94 | int (*forward)(struct net_device *dev, |
| 95 | struct sk_buff *skb)); |
| 96 | |
| 97 | extern void macvlan_count_rx(const struct macvlan_dev *vlan, |
| 98 | unsigned int len, bool success, |
| 99 | bool multicast); |
| 100 | |
| 101 | extern void macvlan_dellink(struct net_device *dev, struct list_head *head); |
| 102 | |
| 103 | extern int macvlan_link_register(struct rtnl_link_ops *ops); |
| 104 | |
| 105 | extern netdev_tx_t macvlan_start_xmit(struct sk_buff *skb, |
| 106 | struct net_device *dev); |
| 107 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 108 | #endif /* _LINUX_IF_MACVLAN_H */ |