blob: 953a97492fabf46eda9986ad713e4cc9ec4275dd [file] [log] [blame]
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -08001/*
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 Bandewar265de6d2014-11-26 21:13:45 -080026#include <net/ip.h>
27#include <net/ip6_route.h>
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080028#include <net/rtnetlink.h>
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080029#include <net/route.h>
30#include <net/addrconf.h>
31
32#define IPVLAN_DRV "ipvlan"
33#define IPV_DRV_VER "0.1"
34
35#define IPVLAN_HASH_SIZE (1 << BITS_PER_BYTE)
36#define IPVLAN_HASH_MASK (IPVLAN_HASH_SIZE - 1)
37
38#define IPVLAN_MAC_FILTER_BITS 8
39#define IPVLAN_MAC_FILTER_SIZE (1 << IPVLAN_MAC_FILTER_BITS)
40#define IPVLAN_MAC_FILTER_MASK (IPVLAN_MAC_FILTER_SIZE - 1)
41
Mahesh Bandewarba35f852015-05-04 17:06:03 -070042#define IPVLAN_QBACKLOG_LIMIT 1000
43
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080044typedef enum {
45 IPVL_IPV6 = 0,
46 IPVL_ICMPV6,
47 IPVL_IPV4,
48 IPVL_ARP,
49} ipvl_hdr_type;
50
51struct ipvl_pcpu_stats {
52 u64 rx_pkts;
53 u64 rx_bytes;
54 u64 rx_mcast;
55 u64 tx_pkts;
56 u64 tx_bytes;
57 struct u64_stats_sync syncp;
58 u32 rx_errs;
59 u32 tx_drps;
60};
61
62struct ipvl_port;
63
64struct ipvl_dev {
65 struct net_device *dev;
66 struct list_head pnode;
67 struct ipvl_port *port;
68 struct net_device *phy_dev;
69 struct list_head addrs;
70 int ipv4cnt;
71 int ipv6cnt;
Eric Dumazet6aa63952015-02-11 19:51:46 -080072 struct ipvl_pcpu_stats __percpu *pcpu_stats;
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080073 DECLARE_BITMAP(mac_filters, IPVLAN_MAC_FILTER_SIZE);
74 netdev_features_t sfeatures;
75 u32 msg_enable;
76 u16 mtu_adj;
77};
78
79struct ipvl_addr {
80 struct ipvl_dev *master; /* Back pointer to master */
81 union {
82 struct in6_addr ip6; /* IPv6 address on logical interface */
83 struct in_addr ip4; /* IPv4 address on logical interface */
84 } ipu;
85#define ip6addr ipu.ip6
86#define ip4addr ipu.ip4
87 struct hlist_node hlnode; /* Hash-table linkage */
88 struct list_head anode; /* logical-interface linkage */
89 struct rcu_head rcu;
90 ipvl_hdr_type atype;
91};
92
93struct ipvl_port {
94 struct net_device *dev;
95 struct hlist_head hlhead[IPVLAN_HASH_SIZE];
96 struct list_head ipvlans;
97 struct rcu_head rcu;
Mahesh Bandewarba35f852015-05-04 17:06:03 -070098 struct work_struct wq;
99 struct sk_buff_head backlog;
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800100 int count;
101 u16 mode;
102};
103
104static inline struct ipvl_port *ipvlan_port_get_rcu(const struct net_device *d)
105{
106 return rcu_dereference(d->rx_handler_data);
107}
108
109static inline struct ipvl_port *ipvlan_port_get_rtnl(const struct net_device *d)
110{
111 return rtnl_dereference(d->rx_handler_data);
112}
113
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800114void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev);
115void ipvlan_set_port_mode(struct ipvl_port *port, u32 nval);
116void ipvlan_init_secret(void);
117unsigned int ipvlan_mac_hash(const unsigned char *addr);
118rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb);
Mahesh Bandewarba35f852015-05-04 17:06:03 -0700119void ipvlan_process_multicast(struct work_struct *work);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800120int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev);
121void ipvlan_ht_addr_add(struct ipvl_dev *ipvlan, struct ipvl_addr *addr);
Jiri Bence9997c22015-03-28 19:13:25 +0100122struct ipvl_addr *ipvlan_find_addr(const struct ipvl_dev *ipvlan,
123 const void *iaddr, bool is_v6);
124bool ipvlan_addr_busy(struct ipvl_port *port, void *iaddr, bool is_v6);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800125struct ipvl_addr *ipvlan_ht_addr_lookup(const struct ipvl_port *port,
126 const void *iaddr, bool is_v6);
127void ipvlan_ht_addr_del(struct ipvl_addr *addr, bool sync);
128#endif /* __IPVLAN_H */