summaryrefslogtreecommitdiff
path: root/lib/dpif-netdev-avx512.c
diff options
context:
space:
mode:
authorHarry van Haaren <harry.van.haaren@intel.com>2022-04-22 13:45:29 +0000
committerIlya Maximets <i.maximets@ovn.org>2022-04-27 00:36:28 +0200
commit5db8aa39d9b7f6317f0d450e503de53865fa5593 (patch)
treee8f2dd2d38e7aadb422996f24a00fb7c0cc7b96c /lib/dpif-netdev-avx512.c
parent4e3966e64beded4480141e0970526f6ef466aded (diff)
downloadopenvswitch-5db8aa39d9b7f6317f0d450e503de53865fa5593.tar.gz
dpif-netdev-avx512: Fix ubsan shift error in bitmasks.
The code changes here are to handle (1 << i) shifts where 'i' is the packet index in the batch, and 1 << 31 is an overflow of the signed '1'. Fixed by adding UINT32_C() around the 1 character, ensuring compiler knows the 1 is unsigned (and 32-bits). Undefined Behaviour sanitizer is now happy with the bit-shifts at runtime. Suggested-by: Ilya Maximets <i.maximets@ovn.org> Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com> Acked-by: Eelco Chaudron <echaudro@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to 'lib/dpif-netdev-avx512.c')
-rw-r--r--lib/dpif-netdev-avx512.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/dpif-netdev-avx512.c b/lib/dpif-netdev-avx512.c
index b7131ba3f..151a945a9 100644
--- a/lib/dpif-netdev-avx512.c
+++ b/lib/dpif-netdev-avx512.c
@@ -159,7 +159,7 @@ dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd,
mf_mask = mfex_func(packets, keys, batch_size, in_port, pmd);
}
- uint32_t lookup_pkts_bitmask = (1ULL << batch_size) - 1;
+ uint32_t lookup_pkts_bitmask = (UINT32_C(1) << batch_size) - 1;
uint32_t iter = lookup_pkts_bitmask;
while (iter) {
uint32_t i = raw_ctz(iter);
@@ -183,7 +183,7 @@ dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd,
* classifed by vector mfex else do a scalar miniflow extract
* for that packet.
*/
- bool mfex_hit = !!(mf_mask & (1 << i));
+ bool mfex_hit = !!(mf_mask & (UINT32_C(1) << i));
/* Check for a partial hardware offload match. */
if (hwol_enabled) {
@@ -204,7 +204,7 @@ dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd,
pkt_meta[i].bytes = dp_packet_size(packet);
phwol_hits++;
- hwol_emc_smc_hitmask |= (1 << i);
+ hwol_emc_smc_hitmask |= (UINT32_C(1) << i);
continue;
}
}
@@ -227,7 +227,7 @@ dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd,
if (f) {
rules[i] = &f->cr;
emc_hits++;
- hwol_emc_smc_hitmask |= (1 << i);
+ hwol_emc_smc_hitmask |= (UINT32_C(1) << i);
continue;
}
}
@@ -237,7 +237,7 @@ dp_netdev_input_outer_avx512(struct dp_netdev_pmd_thread *pmd,
if (f) {
rules[i] = &f->cr;
smc_hits++;
- smc_hitmask |= (1 << i);
+ smc_hitmask |= (UINT32_C(1) << i);
continue;
}
}