Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014 Mahesh Bandewar <maheshb@google.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License as |
| 6 | * published by the Free Software Foundation; either version 2 of |
| 7 | * the License, or (at your option) any later version. |
| 8 | * |
| 9 | */ |
| 10 | #ifndef __IPVLAN_H |
| 11 | #define __IPVLAN_H |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/rculist.h> |
| 18 | #include <linux/notifier.h> |
| 19 | #include <linux/netdevice.h> |
| 20 | #include <linux/etherdevice.h> |
| 21 | #include <linux/if_arp.h> |
| 22 | #include <linux/if_link.h> |
| 23 | #include <linux/if_vlan.h> |
| 24 | #include <linux/ip.h> |
| 25 | #include <linux/inetdevice.h> |
Mahesh Bandewar | 4fbae7d | 2016-09-16 12:59:19 -0700 | [diff] [blame] | 26 | #include <linux/netfilter.h> |
Mahesh Bandewar | 265de6d | 2014-11-26 21:13:45 -0800 | [diff] [blame] | 27 | #include <net/ip.h> |
| 28 | #include <net/ip6_route.h> |
Florian Westphal | 3133822 | 2017-04-20 18:08:15 +0200 | [diff] [blame] | 29 | #include <net/netns/generic.h> |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 30 | #include <net/rtnetlink.h> |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 31 | #include <net/route.h> |
| 32 | #include <net/addrconf.h> |
Mahesh Bandewar | 4fbae7d | 2016-09-16 12:59:19 -0700 | [diff] [blame] | 33 | #include <net/l3mdev.h> |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 34 | |
| 35 | #define IPVLAN_DRV "ipvlan" |
| 36 | #define IPV_DRV_VER "0.1" |
| 37 | |
| 38 | #define IPVLAN_HASH_SIZE (1 << BITS_PER_BYTE) |
| 39 | #define IPVLAN_HASH_MASK (IPVLAN_HASH_SIZE - 1) |
| 40 | |
| 41 | #define IPVLAN_MAC_FILTER_BITS 8 |
| 42 | #define IPVLAN_MAC_FILTER_SIZE (1 << IPVLAN_MAC_FILTER_BITS) |
| 43 | #define IPVLAN_MAC_FILTER_MASK (IPVLAN_MAC_FILTER_SIZE - 1) |
| 44 | |
Mahesh Bandewar | ba35f85 | 2015-05-04 17:06:03 -0700 | [diff] [blame] | 45 | #define IPVLAN_QBACKLOG_LIMIT 1000 |
| 46 | |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 47 | typedef enum { |
| 48 | IPVL_IPV6 = 0, |
| 49 | IPVL_ICMPV6, |
| 50 | IPVL_IPV4, |
| 51 | IPVL_ARP, |
| 52 | } ipvl_hdr_type; |
| 53 | |
| 54 | struct ipvl_pcpu_stats { |
| 55 | u64 rx_pkts; |
| 56 | u64 rx_bytes; |
| 57 | u64 rx_mcast; |
| 58 | u64 tx_pkts; |
| 59 | u64 tx_bytes; |
| 60 | struct u64_stats_sync syncp; |
| 61 | u32 rx_errs; |
| 62 | u32 tx_drps; |
| 63 | }; |
| 64 | |
| 65 | struct ipvl_port; |
| 66 | |
| 67 | struct ipvl_dev { |
| 68 | struct net_device *dev; |
| 69 | struct list_head pnode; |
| 70 | struct ipvl_port *port; |
| 71 | struct net_device *phy_dev; |
| 72 | struct list_head addrs; |
Eric Dumazet | 6aa6395 | 2015-02-11 19:51:46 -0800 | [diff] [blame] | 73 | struct ipvl_pcpu_stats __percpu *pcpu_stats; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 74 | DECLARE_BITMAP(mac_filters, IPVLAN_MAC_FILTER_SIZE); |
| 75 | netdev_features_t sfeatures; |
| 76 | u32 msg_enable; |
Paolo Abeni | 8230819 | 2018-02-28 10:59:27 +0100 | [diff] [blame] | 77 | spinlock_t addrs_lock; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | struct ipvl_addr { |
| 81 | struct ipvl_dev *master; /* Back pointer to master */ |
| 82 | union { |
| 83 | struct in6_addr ip6; /* IPv6 address on logical interface */ |
| 84 | struct in_addr ip4; /* IPv4 address on logical interface */ |
| 85 | } ipu; |
| 86 | #define ip6addr ipu.ip6 |
| 87 | #define ip4addr ipu.ip4 |
| 88 | struct hlist_node hlnode; /* Hash-table linkage */ |
| 89 | struct list_head anode; /* logical-interface linkage */ |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 90 | ipvl_hdr_type atype; |
Mahesh Bandewar | ab5b701 | 2016-02-20 19:31:41 -0800 | [diff] [blame] | 91 | struct rcu_head rcu; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | struct ipvl_port { |
| 95 | struct net_device *dev; |
Florian Westphal | 3133822 | 2017-04-20 18:08:15 +0200 | [diff] [blame] | 96 | possible_net_t pnet; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 97 | struct hlist_head hlhead[IPVLAN_HASH_SIZE]; |
| 98 | struct list_head ipvlans; |
Mahesh Bandewar | ab5b701 | 2016-02-20 19:31:41 -0800 | [diff] [blame] | 99 | u16 mode; |
Mahesh Bandewar | a190d04 | 2017-10-26 15:09:21 -0700 | [diff] [blame] | 100 | u16 flags; |
Mahesh Bandewar | da36e13 | 2017-01-09 15:05:54 -0800 | [diff] [blame] | 101 | u16 dev_id_start; |
Mahesh Bandewar | ba35f85 | 2015-05-04 17:06:03 -0700 | [diff] [blame] | 102 | struct work_struct wq; |
| 103 | struct sk_buff_head backlog; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 104 | int count; |
Mahesh Bandewar | 009146d | 2017-01-03 12:47:16 -0800 | [diff] [blame] | 105 | struct ida ida; |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 106 | }; |
| 107 | |
Mahesh Bandewar | e252536 | 2016-12-21 17:30:16 -0800 | [diff] [blame] | 108 | struct ipvl_skb_cb { |
| 109 | bool tx_pkt; |
| 110 | }; |
| 111 | #define IPVL_SKB_CB(_skb) ((struct ipvl_skb_cb *)&((_skb)->cb[0])) |
| 112 | |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 113 | static inline struct ipvl_port *ipvlan_port_get_rcu(const struct net_device *d) |
| 114 | { |
| 115 | return rcu_dereference(d->rx_handler_data); |
| 116 | } |
| 117 | |
WANG Cong | 0fba37a | 2015-07-14 16:35:54 +0300 | [diff] [blame] | 118 | static inline struct ipvl_port *ipvlan_port_get_rcu_bh(const struct net_device *d) |
| 119 | { |
| 120 | return rcu_dereference_bh(d->rx_handler_data); |
| 121 | } |
| 122 | |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 123 | static inline struct ipvl_port *ipvlan_port_get_rtnl(const struct net_device *d) |
| 124 | { |
| 125 | return rtnl_dereference(d->rx_handler_data); |
| 126 | } |
| 127 | |
Mahesh Bandewar | a190d04 | 2017-10-26 15:09:21 -0700 | [diff] [blame] | 128 | static inline bool ipvlan_is_private(const struct ipvl_port *port) |
| 129 | { |
| 130 | return !!(port->flags & IPVLAN_F_PRIVATE); |
| 131 | } |
| 132 | |
| 133 | static inline void ipvlan_mark_private(struct ipvl_port *port) |
| 134 | { |
| 135 | port->flags |= IPVLAN_F_PRIVATE; |
| 136 | } |
| 137 | |
| 138 | static inline void ipvlan_clear_private(struct ipvl_port *port) |
| 139 | { |
| 140 | port->flags &= ~IPVLAN_F_PRIVATE; |
| 141 | } |
| 142 | |
Mahesh Bandewar | fe89aa6 | 2017-10-26 15:09:25 -0700 | [diff] [blame] | 143 | static inline bool ipvlan_is_vepa(const struct ipvl_port *port) |
| 144 | { |
| 145 | return !!(port->flags & IPVLAN_F_VEPA); |
| 146 | } |
| 147 | |
| 148 | static inline void ipvlan_mark_vepa(struct ipvl_port *port) |
| 149 | { |
| 150 | port->flags |= IPVLAN_F_VEPA; |
| 151 | } |
| 152 | |
| 153 | static inline void ipvlan_clear_vepa(struct ipvl_port *port) |
| 154 | { |
| 155 | port->flags &= ~IPVLAN_F_VEPA; |
| 156 | } |
| 157 | |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 158 | void ipvlan_init_secret(void); |
| 159 | unsigned int ipvlan_mac_hash(const unsigned char *addr); |
| 160 | rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb); |
Mahesh Bandewar | ba35f85 | 2015-05-04 17:06:03 -0700 | [diff] [blame] | 161 | void ipvlan_process_multicast(struct work_struct *work); |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 162 | int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev); |
| 163 | void ipvlan_ht_addr_add(struct ipvl_dev *ipvlan, struct ipvl_addr *addr); |
Jiri Benc | e9997c2 | 2015-03-28 19:13:25 +0100 | [diff] [blame] | 164 | struct ipvl_addr *ipvlan_find_addr(const struct ipvl_dev *ipvlan, |
| 165 | const void *iaddr, bool is_v6); |
| 166 | bool ipvlan_addr_busy(struct ipvl_port *port, void *iaddr, bool is_v6); |
Konstantin Khlebnikov | 6640e67 | 2015-07-14 16:35:53 +0300 | [diff] [blame] | 167 | void ipvlan_ht_addr_del(struct ipvl_addr *addr); |
Mahesh Bandewar | 4fbae7d | 2016-09-16 12:59:19 -0700 | [diff] [blame] | 168 | struct sk_buff *ipvlan_l3_rcv(struct net_device *dev, struct sk_buff *skb, |
| 169 | u16 proto); |
| 170 | unsigned int ipvlan_nf_input(void *priv, struct sk_buff *skb, |
| 171 | const struct nf_hook_state *state); |
Sainath Grandhi | 235a9d8 | 2017-02-10 16:03:52 -0800 | [diff] [blame] | 172 | void ipvlan_count_rx(const struct ipvl_dev *ipvlan, |
| 173 | unsigned int len, bool success, bool mcast); |
| 174 | int ipvlan_link_new(struct net *src_net, struct net_device *dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 175 | struct nlattr *tb[], struct nlattr *data[], |
| 176 | struct netlink_ext_ack *extack); |
Sainath Grandhi | 235a9d8 | 2017-02-10 16:03:52 -0800 | [diff] [blame] | 177 | void ipvlan_link_delete(struct net_device *dev, struct list_head *head); |
| 178 | void ipvlan_link_setup(struct net_device *dev); |
| 179 | int ipvlan_link_register(struct rtnl_link_ops *ops); |
Paolo Abeni | 1ec54cb | 2018-03-06 10:56:31 +0100 | [diff] [blame] | 180 | |
| 181 | static inline bool netif_is_ipvlan_port(const struct net_device *dev) |
| 182 | { |
Paolo Abeni | ae5799d | 2018-03-08 10:29:30 +0100 | [diff] [blame^] | 183 | return rcu_access_pointer(dev->rx_handler) == ipvlan_handle_frame; |
Paolo Abeni | 1ec54cb | 2018-03-06 10:56:31 +0100 | [diff] [blame] | 184 | } |
| 185 | |
Mahesh Bandewar | 2ad7bf3 | 2014-11-23 23:07:46 -0800 | [diff] [blame] | 186 | #endif /* __IPVLAN_H */ |