[Openvpn-devel,v2] mroute: Remove unused mask argument of mroute_get_in*
Commit Message
From: Frank Lichtenheld <frank@lichtenheld.com>
These are obsolete since the removal of pf feature.
Avoids spurious conversion warnings.
Change-Id: I501bf780957a9c685eed5994a15de09c28efc3f0
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1309
---
This change was reviewed on Gerrit and approved by at least one
developer. I request to merge it to master.
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1309
This mail reflects revision 2 of this Change.
Acked-by according to Gerrit (reflected above):
Gert Doering <gert@greenie.muc.de>
Comments
The "mask" bit is trivial (I have wondered a few times what it is for,
seems "for nothing" - out it goes!). The 0xff bit needed a bit more
thinking, but indeed, since we're only masking single-bytes at a time
here, and shift left, 0xffffff and 0xff is the same thing - and not
using an IPv4 constant for IPv6 seems like a proper thing to do!
Your patch has been applied to the master branch.
commit 2ae18239c30d96a4d16bc75a0204c4895e6cbce3
Author: Frank Lichtenheld
Date: Tue Oct 28 13:20:23 2025 +0100
mroute: Remove unused mask argument of mroute_get_in*
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1309
Message-Id: <20251028122028.24628-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg33939.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
@@ -103,17 +103,12 @@
return true;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wconversion"
-#endif
-
static inline void
-mroute_get_in_addr_t(struct mroute_addr *ma, const in_addr_t src, unsigned int mask)
+mroute_get_in_addr_t(struct mroute_addr *ma, const in_addr_t src)
{
if (ma)
{
- ma->type = MR_ADDR_IPV4 | mask;
+ ma->type = MR_ADDR_IPV4;
ma->netbits = 0;
ma->len = 4;
ma->v4.addr = src;
@@ -121,11 +116,11 @@
}
static inline void
-mroute_get_in6_addr(struct mroute_addr *ma, const struct in6_addr src, unsigned int mask)
+mroute_get_in6_addr(struct mroute_addr *ma, const struct in6_addr src)
{
if (ma)
{
- ma->type = MR_ADDR_IPV6 | mask;
+ ma->type = MR_ADDR_IPV6;
ma->netbits = 0;
ma->len = 16;
ma->v6.addr = src;
@@ -161,8 +156,8 @@
{
const struct openvpn_iphdr *ip = (const struct openvpn_iphdr *)BPTR(buf);
- mroute_get_in_addr_t(src, ip->saddr, 0);
- mroute_get_in_addr_t(dest, ip->daddr, 0);
+ mroute_get_in_addr_t(src, ip->saddr);
+ mroute_get_in_addr_t(dest, ip->daddr);
/* multicast packet? */
if (mroute_is_mcast(ip->daddr))
@@ -192,8 +187,8 @@
gc_free(&gc);
#endif
- mroute_get_in6_addr(src, ipv6->saddr, 0);
- mroute_get_in6_addr(dest, ipv6->daddr, 0);
+ mroute_get_in6_addr(src, ipv6->saddr);
+ mroute_get_in6_addr(dest, ipv6->daddr);
if (mroute_is_mcast_ipv6(ipv6->daddr))
{
@@ -342,7 +337,7 @@
}
else
{
- ma->v6.addr.s6_addr[byte--] &= (IPV4_NETMASK_HOST << bits_to_clear);
+ ma->v6.addr.s6_addr[byte--] &= (0xFF << bits_to_clear);
bits_to_clear = 0;
}
}
@@ -552,10 +547,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
void
mroute_helper_free(struct mroute_helper *mh)
{