Commit 110509df authored by Daniel Borkmann's avatar Daniel Borkmann

Merge branch 'bpf-selftest-endianess-fixes'

Ilya Leoshkevich says:

====================
Patch 1 is a preparatory commit, which introduces 64-bit endianness
conversion functions.

Patch 2 fixes reading the wrong byte of an int.

Patch 3 improves error reporting.

Patch 4 uses the new conversion functions to fix wrong endianness of
immediates.

v1->v2: Use bpf_ntohl and bpf_be64_to_cpu, drop __bpf_le64_to_cpu.
v2->v3: Split bpf_be64_to_cpu introduction into a separate patch.
        Use the new functions in test_lwt_seg6local.c and
	test_seg6_loop.c.
v3->v4: Improved commit message, split fixes that are not related to
        each other into separate patches.
====================
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parents 504792e0 3ec2a0ed
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
# define __bpf_htonl(x) __builtin_bswap32(x) # define __bpf_htonl(x) __builtin_bswap32(x)
# define __bpf_constant_ntohl(x) ___constant_swab32(x) # define __bpf_constant_ntohl(x) ___constant_swab32(x)
# define __bpf_constant_htonl(x) ___constant_swab32(x) # define __bpf_constant_htonl(x) ___constant_swab32(x)
# define __bpf_be64_to_cpu(x) __builtin_bswap64(x)
# define __bpf_cpu_to_be64(x) __builtin_bswap64(x)
# define __bpf_constant_be64_to_cpu(x) ___constant_swab64(x)
# define __bpf_constant_cpu_to_be64(x) ___constant_swab64(x)
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
# define __bpf_ntohs(x) (x) # define __bpf_ntohs(x) (x)
# define __bpf_htons(x) (x) # define __bpf_htons(x) (x)
...@@ -38,6 +42,10 @@ ...@@ -38,6 +42,10 @@
# define __bpf_htonl(x) (x) # define __bpf_htonl(x) (x)
# define __bpf_constant_ntohl(x) (x) # define __bpf_constant_ntohl(x) (x)
# define __bpf_constant_htonl(x) (x) # define __bpf_constant_htonl(x) (x)
# define __bpf_be64_to_cpu(x) (x)
# define __bpf_cpu_to_be64(x) (x)
# define __bpf_constant_be64_to_cpu(x) (x)
# define __bpf_constant_cpu_to_be64(x) (x)
#else #else
# error "Fix your compiler's __BYTE_ORDER__?!" # error "Fix your compiler's __BYTE_ORDER__?!"
#endif #endif
...@@ -54,5 +62,11 @@ ...@@ -54,5 +62,11 @@
#define bpf_ntohl(x) \ #define bpf_ntohl(x) \
(__builtin_constant_p(x) ? \ (__builtin_constant_p(x) ? \
__bpf_constant_ntohl(x) : __bpf_ntohl(x)) __bpf_constant_ntohl(x) : __bpf_ntohl(x))
#define bpf_cpu_to_be64(x) \
(__builtin_constant_p(x) ? \
__bpf_constant_cpu_to_be64(x) : __bpf_cpu_to_be64(x))
#define bpf_be64_to_cpu(x) \
(__builtin_constant_p(x) ? \
__bpf_constant_be64_to_cpu(x) : __bpf_be64_to_cpu(x))
#endif /* __BPF_ENDIAN__ */ #endif /* __BPF_ENDIAN__ */
...@@ -12,10 +12,6 @@ ...@@ -12,10 +12,6 @@
#define SR6_FLAG_ALERT (1 << 4) #define SR6_FLAG_ALERT (1 << 4)
#define htonll(x) ((bpf_htonl(1)) == 1 ? (x) : ((uint64_t)bpf_htonl((x) & \
0xFFFFFFFF) << 32) | bpf_htonl((x) >> 32))
#define ntohll(x) ((bpf_ntohl(1)) == 1 ? (x) : ((uint64_t)bpf_ntohl((x) & \
0xFFFFFFFF) << 32) | bpf_ntohl((x) >> 32))
#define BPF_PACKET_HEADER __attribute__((packed)) #define BPF_PACKET_HEADER __attribute__((packed))
struct ip6_t { struct ip6_t {
...@@ -276,8 +272,8 @@ int has_egr_tlv(struct __sk_buff *skb, struct ip6_srh_t *srh) ...@@ -276,8 +272,8 @@ int has_egr_tlv(struct __sk_buff *skb, struct ip6_srh_t *srh)
return 0; return 0;
// check if egress TLV value is correct // check if egress TLV value is correct
if (ntohll(egr_addr.hi) == 0xfd00000000000000 && if (bpf_be64_to_cpu(egr_addr.hi) == 0xfd00000000000000 &&
ntohll(egr_addr.lo) == 0x4) bpf_be64_to_cpu(egr_addr.lo) == 0x4)
return 1; return 1;
} }
...@@ -308,8 +304,8 @@ int __encap_srh(struct __sk_buff *skb) ...@@ -308,8 +304,8 @@ int __encap_srh(struct __sk_buff *skb)
#pragma clang loop unroll(full) #pragma clang loop unroll(full)
for (unsigned long long lo = 0; lo < 4; lo++) { for (unsigned long long lo = 0; lo < 4; lo++) {
seg->lo = htonll(4 - lo); seg->lo = bpf_cpu_to_be64(4 - lo);
seg->hi = htonll(hi); seg->hi = bpf_cpu_to_be64(hi);
seg = (struct ip6_addr_t *)((char *)seg + sizeof(*seg)); seg = (struct ip6_addr_t *)((char *)seg + sizeof(*seg));
} }
...@@ -349,8 +345,8 @@ int __add_egr_x(struct __sk_buff *skb) ...@@ -349,8 +345,8 @@ int __add_egr_x(struct __sk_buff *skb)
if (err) if (err)
return BPF_DROP; return BPF_DROP;
addr.lo = htonll(lo); addr.lo = bpf_cpu_to_be64(lo);
addr.hi = htonll(hi); addr.hi = bpf_cpu_to_be64(hi);
err = bpf_lwt_seg6_action(skb, SEG6_LOCAL_ACTION_END_X, err = bpf_lwt_seg6_action(skb, SEG6_LOCAL_ACTION_END_X,
(void *)&addr, sizeof(addr)); (void *)&addr, sizeof(addr));
if (err) if (err)
......
...@@ -12,10 +12,6 @@ ...@@ -12,10 +12,6 @@
#define SR6_FLAG_ALERT (1 << 4) #define SR6_FLAG_ALERT (1 << 4)
#define htonll(x) ((bpf_htonl(1)) == 1 ? (x) : ((uint64_t)bpf_htonl((x) & \
0xFFFFFFFF) << 32) | bpf_htonl((x) >> 32))
#define ntohll(x) ((bpf_ntohl(1)) == 1 ? (x) : ((uint64_t)bpf_ntohl((x) & \
0xFFFFFFFF) << 32) | bpf_ntohl((x) >> 32))
#define BPF_PACKET_HEADER __attribute__((packed)) #define BPF_PACKET_HEADER __attribute__((packed))
struct ip6_t { struct ip6_t {
...@@ -251,8 +247,8 @@ int __add_egr_x(struct __sk_buff *skb) ...@@ -251,8 +247,8 @@ int __add_egr_x(struct __sk_buff *skb)
if (err) if (err)
return BPF_DROP; return BPF_DROP;
addr.lo = htonll(lo); addr.lo = bpf_cpu_to_be64(lo);
addr.hi = htonll(hi); addr.hi = bpf_cpu_to_be64(hi);
err = bpf_lwt_seg6_action(skb, SEG6_LOCAL_ACTION_END_X, err = bpf_lwt_seg6_action(skb, SEG6_LOCAL_ACTION_END_X,
(void *)&addr, sizeof(addr)); (void *)&addr, sizeof(addr));
if (err) if (err)
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment