mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Merge branch 'maint-0.4.0' into maint-0.4.1
This commit is contained in:
commit
cec42be570
4
changes/ticket31687_1
Normal file
4
changes/ticket31687_1
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (compilation):
|
||||||
|
- Suppress spurious float-conversion warnings from GCC when calling
|
||||||
|
floating-point classifier functions on FreeBSD. Fixes part of bug
|
||||||
|
31687; bugfix on 0.3.1.5-alpha.
|
5
changes/ticket31687_2
Normal file
5
changes/ticket31687_2
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes (FreeBSD, PF-based proxy, IPv6):
|
||||||
|
- When extracting an IPv6 address from a PF-based proxy, verify
|
||||||
|
that we are actually configured to receive an IPv6 address,
|
||||||
|
and log an internal error if not. Fixes part of bug 31687;
|
||||||
|
bugfix on 0.2.3.4-alpha.
|
@ -2560,8 +2560,11 @@ destination_from_pf(entry_connection_t *conn, socks_request_t *req)
|
|||||||
} else if (proxy_sa->sa_family == AF_INET6) {
|
} else if (proxy_sa->sa_family == AF_INET6) {
|
||||||
struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)proxy_sa;
|
struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)proxy_sa;
|
||||||
pnl.af = AF_INET6;
|
pnl.af = AF_INET6;
|
||||||
memcpy(&pnl.saddr.v6, tor_addr_to_in6(&ENTRY_TO_CONN(conn)->addr),
|
const struct in6_addr *dest_in6 =
|
||||||
sizeof(struct in6_addr));
|
tor_addr_to_in6(&ENTRY_TO_CONN(conn)->addr);
|
||||||
|
if (BUG(!dest_in6))
|
||||||
|
return -1;
|
||||||
|
memcpy(&pnl.saddr.v6, dest_in6, sizeof(struct in6_addr));
|
||||||
pnl.sport = htons(ENTRY_TO_CONN(conn)->port);
|
pnl.sport = htons(ENTRY_TO_CONN(conn)->port);
|
||||||
memcpy(&pnl.daddr.v6, &sin6->sin6_addr, sizeof(struct in6_addr));
|
memcpy(&pnl.daddr.v6, &sin6->sin6_addr, sizeof(struct in6_addr));
|
||||||
pnl.dport = sin6->sin6_port;
|
pnl.dport = sin6->sin6_port;
|
||||||
|
@ -62,12 +62,16 @@ clamp_double_to_int64(double number)
|
|||||||
{
|
{
|
||||||
int exponent;
|
int exponent;
|
||||||
|
|
||||||
#if defined(MINGW_ANY) && GCC_VERSION >= 409
|
#if (defined(MINGW_ANY)||defined(__FreeBSD__)) && GCC_VERSION >= 409
|
||||||
/*
|
/*
|
||||||
Mingw's math.h uses gcc's __builtin_choose_expr() facility to declare
|
Mingw's math.h uses gcc's __builtin_choose_expr() facility to declare
|
||||||
isnan, isfinite, and signbit. But as implemented in at least some
|
isnan, isfinite, and signbit. But as implemented in at least some
|
||||||
versions of gcc, __builtin_choose_expr() can generate type warnings
|
versions of gcc, __builtin_choose_expr() can generate type warnings
|
||||||
even from branches that are not taken. So, suppress those warnings.
|
even from branches that are not taken. So, suppress those warnings.
|
||||||
|
|
||||||
|
FreeBSD's math.h uses an __fp_type_select() macro, which dispatches
|
||||||
|
based on sizeof -- again, this can generate type warnings from
|
||||||
|
branches that are not taken.
|
||||||
*/
|
*/
|
||||||
#define PROBLEMATIC_FLOAT_CONVERSION_WARNING
|
#define PROBLEMATIC_FLOAT_CONVERSION_WARNING
|
||||||
DISABLE_GCC_WARNING(float-conversion)
|
DISABLE_GCC_WARNING(float-conversion)
|
||||||
@ -123,16 +127,12 @@ int
|
|||||||
tor_isinf(double x)
|
tor_isinf(double x)
|
||||||
{
|
{
|
||||||
/* Same as above, work around the "double promotion" warnings */
|
/* Same as above, work around the "double promotion" warnings */
|
||||||
#if defined(MINGW_ANY) && GCC_VERSION >= 409
|
#ifdef PROBLEMATIC_FLOAT_CONVERSION_WARNING
|
||||||
#define PROBLEMATIC_FLOAT_CONVERSION_WARNING
|
|
||||||
DISABLE_GCC_WARNING(float-conversion)
|
DISABLE_GCC_WARNING(float-conversion)
|
||||||
#endif /* defined(MINGW_ANY) && GCC_VERSION >= 409 */
|
#endif
|
||||||
#if defined(__clang__)
|
#ifdef PROBLEMATIC_DOUBLE_PROMOTION_WARNING
|
||||||
#if __has_warning("-Wdouble-promotion")
|
|
||||||
#define PROBLEMATIC_DOUBLE_PROMOTION_WARNING
|
|
||||||
DISABLE_GCC_WARNING(double-promotion)
|
DISABLE_GCC_WARNING(double-promotion)
|
||||||
#endif
|
#endif
|
||||||
#endif /* defined(__clang__) */
|
|
||||||
return isinf(x);
|
return isinf(x);
|
||||||
#ifdef PROBLEMATIC_DOUBLE_PROMOTION_WARNING
|
#ifdef PROBLEMATIC_DOUBLE_PROMOTION_WARNING
|
||||||
ENABLE_GCC_WARNING(double-promotion)
|
ENABLE_GCC_WARNING(double-promotion)
|
||||||
@ -141,4 +141,3 @@ ENABLE_GCC_WARNING(double-promotion)
|
|||||||
ENABLE_GCC_WARNING(float-conversion)
|
ENABLE_GCC_WARNING(float-conversion)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user