ipvlan.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/module.h>
  15. #include <linux/init.h>
  16. #include <linux/rculist.h>
  17. #include <linux/notifier.h>
  18. #include <linux/netdevice.h>
  19. #include <linux/etherdevice.h>
  20. #include <linux/if_arp.h>
  21. #include <linux/if_link.h>
  22. #include <linux/if_vlan.h>
  23. #include <linux/ip.h>
  24. #include <linux/inetdevice.h>
  25. #include <linux/netfilter.h>
  26. #include <net/ip.h>
  27. #include <net/ip6_route.h>
  28. #include <net/netns/generic.h>
  29. #include <net/rtnetlink.h>
  30. #include <net/route.h>
  31. #include <net/addrconf.h>
  32. #include <net/l3mdev.h>
  33. #define IPVLAN_DRV "ipvlan"
  34. #define IPV_DRV_VER "0.1"
  35. #define IPVLAN_HASH_SIZE (1 << BITS_PER_BYTE)
  36. #define IPVLAN_HASH_MASK (IPVLAN_HASH_SIZE - 1)
  37. #define IPVLAN_MAC_FILTER_BITS 8
  38. #define IPVLAN_MAC_FILTER_SIZE (1 << IPVLAN_MAC_FILTER_BITS)
  39. #define IPVLAN_MAC_FILTER_MASK (IPVLAN_MAC_FILTER_SIZE - 1)
  40. #define IPVLAN_QBACKLOG_LIMIT 1000
  41. typedef enum {
  42. IPVL_IPV6 = 0,
  43. IPVL_ICMPV6,
  44. IPVL_IPV4,
  45. IPVL_ARP,
  46. } ipvl_hdr_type;
  47. struct ipvl_pcpu_stats {
  48. u64 rx_pkts;
  49. u64 rx_bytes;
  50. u64 rx_mcast;
  51. u64 tx_pkts;
  52. u64 tx_bytes;
  53. struct u64_stats_sync syncp;
  54. u32 rx_errs;
  55. u32 tx_drps;
  56. };
  57. struct ipvl_port;
  58. struct ipvl_dev {
  59. struct net_device *dev;
  60. struct list_head pnode;
  61. struct ipvl_port *port;
  62. struct net_device *phy_dev;
  63. struct list_head addrs;
  64. struct ipvl_pcpu_stats __percpu *pcpu_stats;
  65. DECLARE_BITMAP(mac_filters, IPVLAN_MAC_FILTER_SIZE);
  66. netdev_features_t sfeatures;
  67. u32 msg_enable;
  68. spinlock_t addrs_lock;
  69. };
  70. struct ipvl_addr {
  71. struct ipvl_dev *master; /* Back pointer to master */
  72. union {
  73. struct in6_addr ip6; /* IPv6 address on logical interface */
  74. struct in_addr ip4; /* IPv4 address on logical interface */
  75. } ipu;
  76. #define ip6addr ipu.ip6
  77. #define ip4addr ipu.ip4
  78. struct hlist_node hlnode; /* Hash-table linkage */
  79. struct list_head anode; /* logical-interface linkage */
  80. ipvl_hdr_type atype;
  81. struct rcu_head rcu;
  82. };
  83. struct ipvl_port {
  84. struct net_device *dev;
  85. possible_net_t pnet;
  86. struct hlist_head hlhead[IPVLAN_HASH_SIZE];
  87. struct list_head ipvlans;
  88. u16 mode;
  89. u16 flags;
  90. u16 dev_id_start;
  91. struct work_struct wq;
  92. struct sk_buff_head backlog;
  93. int count;
  94. struct ida ida;
  95. };
  96. struct ipvl_skb_cb {
  97. bool tx_pkt;
  98. };
  99. #define IPVL_SKB_CB(_skb) ((struct ipvl_skb_cb *)&((_skb)->cb[0]))
  100. static inline struct ipvl_port *ipvlan_port_get_rcu(const struct net_device *d)
  101. {
  102. return rcu_dereference(d->rx_handler_data);
  103. }
  104. static inline struct ipvl_port *ipvlan_port_get_rcu_bh(const struct net_device *d)
  105. {
  106. return rcu_dereference_bh(d->rx_handler_data);
  107. }
  108. static inline struct ipvl_port *ipvlan_port_get_rtnl(const struct net_device *d)
  109. {
  110. return rtnl_dereference(d->rx_handler_data);
  111. }
  112. static inline bool ipvlan_is_private(const struct ipvl_port *port)
  113. {
  114. return !!(port->flags & IPVLAN_F_PRIVATE);
  115. }
  116. static inline void ipvlan_mark_private(struct ipvl_port *port)
  117. {
  118. port->flags |= IPVLAN_F_PRIVATE;
  119. }
  120. static inline void ipvlan_clear_private(struct ipvl_port *port)
  121. {
  122. port->flags &= ~IPVLAN_F_PRIVATE;
  123. }
  124. static inline bool ipvlan_is_vepa(const struct ipvl_port *port)
  125. {
  126. return !!(port->flags & IPVLAN_F_VEPA);
  127. }
  128. static inline void ipvlan_mark_vepa(struct ipvl_port *port)
  129. {
  130. port->flags |= IPVLAN_F_VEPA;
  131. }
  132. static inline void ipvlan_clear_vepa(struct ipvl_port *port)
  133. {
  134. port->flags &= ~IPVLAN_F_VEPA;
  135. }
  136. void ipvlan_init_secret(void);
  137. unsigned int ipvlan_mac_hash(const unsigned char *addr);
  138. rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb);
  139. void ipvlan_process_multicast(struct work_struct *work);
  140. int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev);
  141. void ipvlan_ht_addr_add(struct ipvl_dev *ipvlan, struct ipvl_addr *addr);
  142. struct ipvl_addr *ipvlan_find_addr(const struct ipvl_dev *ipvlan,
  143. const void *iaddr, bool is_v6);
  144. bool ipvlan_addr_busy(struct ipvl_port *port, void *iaddr, bool is_v6);
  145. void ipvlan_ht_addr_del(struct ipvl_addr *addr);
  146. struct sk_buff *ipvlan_l3_rcv(struct net_device *dev, struct sk_buff *skb,
  147. u16 proto);
  148. unsigned int ipvlan_nf_input(void *priv, struct sk_buff *skb,
  149. const struct nf_hook_state *state);
  150. void ipvlan_count_rx(const struct ipvl_dev *ipvlan,
  151. unsigned int len, bool success, bool mcast);
  152. int ipvlan_link_new(struct net *src_net, struct net_device *dev,
  153. struct nlattr *tb[], struct nlattr *data[],
  154. struct netlink_ext_ack *extack);
  155. void ipvlan_link_delete(struct net_device *dev, struct list_head *head);
  156. void ipvlan_link_setup(struct net_device *dev);
  157. int ipvlan_link_register(struct rtnl_link_ops *ops);
  158. static inline bool netif_is_ipvlan_port(const struct net_device *dev)
  159. {
  160. return rcu_access_pointer(dev->rx_handler) == ipvlan_handle_frame;
  161. }
  162. #endif /* __IPVLAN_H */