batman-adv: update to version 2023.0
[feed/routing.git] / batman-adv / src / compat-hacks.h
index fec5e153f6d6eade4b8bc92871a381fabe53aa4c..646e179b0d0f825836ef847a2815ab97691d8e67 100644 (file)
 #include <linux/version.h>     /* LINUX_VERSION_CODE */
 #include <linux/types.h>
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
+#if LINUX_VERSION_IS_LESS(5, 14, 0)
 
-#include <linux/netdevice.h>
-
-#define netdev_master_upper_dev_link(dev, upper_dev, upper_priv, upper_info, extack) ({\
-       BUILD_BUG_ON(extack != NULL); \
-       netdev_master_upper_dev_link(dev, upper_dev, upper_priv, upper_info); \
-})
-
-#endif /* < KERNEL_VERSION(4, 15, 0) */
-
-
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0)
-
-#ifndef sizeof_field
-#define sizeof_field(TYPE, MEMBER) sizeof((((TYPE *)0)->MEMBER))
-#endif
-
-#endif /* < KERNEL_VERSION(4, 16, 0) */
-
-
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 1, 0)
-
-#include_next <linux/igmp.h>
-#include_next <net/addrconf.h>
-
-static inline int batadv_ipv6_mc_check_mld1(struct sk_buff *skb)
-{
-       return ipv6_mc_check_mld(skb, NULL);
-}
-
-static inline int batadv_ipv6_mc_check_mld2(struct sk_buff *skb,
-                                           struct sk_buff **skb_trimmed)
-{
-       return ipv6_mc_check_mld(skb, skb_trimmed);
-}
-
-#define ipv6_mc_check_mld_get(_1, _2, ipv6_mc_check_mld_name, ...) ipv6_mc_check_mld_name
-#define ipv6_mc_check_mld(...) \
-       ipv6_mc_check_mld_get(__VA_ARGS__, batadv_ipv6_mc_check_mld2, batadv_ipv6_mc_check_mld1)(__VA_ARGS__)
-
-static inline int batadv_ip_mc_check_igmp1(struct sk_buff *skb)
-{
-       return ip_mc_check_igmp(skb, NULL);
-}
+#include <linux/if_bridge.h>
+#include <net/addrconf.h>
 
-static inline int batadv_ip_mc_check_igmp2(struct sk_buff *skb,
-                                          struct sk_buff **skb_trimmed)
+#if IS_ENABLED(CONFIG_IPV6)
+static inline bool
+br_multicast_has_router_adjacent(struct net_device *dev, int proto)
 {
-       return ip_mc_check_igmp(skb, skb_trimmed);
-}
-
-#define ip_mc_check_igmp_get(_1, _2, ip_mc_check_igmp_name, ...) ip_mc_check_igmp_name
-#define ip_mc_check_igmp(...) \
-       ip_mc_check_igmp_get(__VA_ARGS__, batadv_ip_mc_check_igmp2, batadv_ip_mc_check_igmp1)(__VA_ARGS__)
-
-#endif /* < KERNEL_VERSION(5, 1, 0) */
+       struct list_head bridge_mcast_list = LIST_HEAD_INIT(bridge_mcast_list);
+       struct br_ip_list *br_ip_entry, *tmp;
+       int ret;
 
+       if (proto != ETH_P_IPV6)
+               return true;
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 15, 0)
+       ret = br_multicast_list_adjacent(dev, &bridge_mcast_list);
+       if (ret < 0)
+               return true;
 
-#define batadv_softif_slave_add(__dev, __slave_dev, __extack) \
-       batadv_softif_slave_add(__dev, __slave_dev)
+       ret = false;
 
-#endif /* < KERNEL_VERSION(4, 15, 0) */
+       list_for_each_entry_safe(br_ip_entry, tmp, &bridge_mcast_list, list) {
+               if (br_ip_entry->addr.proto == htons(ETH_P_IPV6) &&
+                   ipv6_addr_is_ll_all_routers(&br_ip_entry->addr.dst.ip6))
+                       ret = true;
 
+               list_del(&br_ip_entry->list);
+               kfree(br_ip_entry);
+       }
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 0, 0)
-
-static inline int batadv_access_ok(int type, const void __user *p,
-                                  unsigned long size)
+       return ret;
+}
+#else
+static inline bool
+br_multicast_has_router_adjacent(struct net_device *dev, int proto)
 {
-       return access_ok(type, p, size);
+       return true;
 }
-
-#ifdef access_ok
-#undef access_ok
 #endif
 
-#define access_ok_get(_1, _2, _3 , access_ok_name, ...) access_ok_name
-#define access_ok(...) \
-       access_ok_get(__VA_ARGS__, access_ok3, access_ok2)(__VA_ARGS__)
+#endif /* LINUX_VERSION_IS_LESS(5, 14, 0) */
 
-#define access_ok2(addr, size) batadv_access_ok(VERIFY_WRITE, (addr), (size))
-#define access_ok3(type, addr, size)   batadv_access_ok((type), (addr), (size))
+#if LINUX_VERSION_IS_LESS(6, 0, 0)
 
-#endif /* < KERNEL_VERSION(5, 0, 0) */
+#define __vstring(item, fmt, ap) __dynamic_array(char, item, 256)
+#define __assign_vstr(dst, fmt, va) \
+       WARN_ON_ONCE(vsnprintf(__get_dynamic_array(dst), 256, fmt, *va) >= 256)
 
-#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 0)
+#endif /* LINUX_VERSION_IS_LESS(6, 0, 0) */
 
-#ifndef fallthrough
-#if __GNUC__ > 7 && !defined(__CHECKER__)
-# define fallthrough                    __attribute__((__fallthrough__))
-#else
-# define fallthrough                    do {} while (0)  /* fallthrough */
-#endif
-#endif
+#if LINUX_VERSION_IS_LESS(6, 2, 0)
 
-#endif /* < KERNEL_VERSION(5, 4, 0) */
+#include <linux/random.h>
 
-#if LINUX_VERSION_IS_LESS(5, 10, 0)
-
-#include <linux/if_bridge.h>
+#define genl_split_ops genl_ops
 
-struct batadv_br_ip {
-       union {
-               __be32  ip4;
-#if IS_ENABLED(CONFIG_IPV6)
-               struct in6_addr ip6;
-#endif
-       } dst;
-       __be16          proto;
-       __u16           vid;
-};
-
-struct batadv_br_ip_list {
-       struct list_head list;
-       struct batadv_br_ip addr;
-};
-
-#if 0
-/* "static" dropped to force compiler to evaluate it as part of multicast.c
- * might need to be added again and then called in some kind of dummy
- * compat.c in case this header is included in multiple files.
- */
-inline void __batadv_br_ip_list_check(void)
+static inline u32 batadv_get_random_u32_below(u32 ep_ro)
 {
-       BUILD_BUG_ON(sizeof(struct batadv_br_ip_list) != sizeof(struct br_ip_list));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip_list, list) != offsetof(struct br_ip_list, list));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip_list, addr) != offsetof(struct br_ip_list, addr));
-
-       BUILD_BUG_ON(sizeof(struct batadv_br_ip) != sizeof(struct br_ip));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip, dst.ip4) != offsetof(struct br_ip, u.ip4));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip, dst.ip6) != offsetof(struct br_ip, u.ip6));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip, proto) != offsetof(struct br_ip, proto));
-       BUILD_BUG_ON(offsetof(struct batadv_br_ip, vid) != offsetof(struct br_ip, vid));
+       return prandom_u32_max(ep_ro);
 }
-#endif
 
-#define br_ip batadv_br_ip
-#define br_ip_list batadv_br_ip_list
+#define get_random_u32_below batadv_get_random_u32_below
 
-#endif /* LINUX_VERSION_IS_LESS(5, 10, 0) */
+#endif /* LINUX_VERSION_IS_LESS(6, 2, 0) */
 
 /* <DECLARE_EWMA> */