CVE-2021-29546: Division by 0 in `QuantizedBiasAdd`

Published May 14, 2021
·
Updated

Impact An attacker can trigger an integer division by zero undefined behavior in tf.rawops.QuantizedBiasAdd:

python import tensorflow as tf

inputtensor = tf.constant([], shape=[0, 0, 0, 0], dtype=tf.quint8) bias = tf.constant([], shape=[0], dtype=tf.quint8) mininput = tf.constant(-10.0, dtype=tf.float32) maxinput = tf.constant(-10.0, dtype=tf.float32) minbias = tf.constant(-10.0, dtype=tf.float32) maxbias = tf.constant(-10.0, dtype=tf.float32)

tf.rawops.QuantizedBiasAdd(input=inputtensor, bias=bias, mininput=mininput, maxinput=maxinput, minbias=minbias, maxbias=maxbias, outtype=tf.qint32)

This is because the implementation of the Eigen kernel does a division by the number of elements of the smaller input (based on shape) without checking that this is not zero:

cc template <typename T1, typename T2, typename T3> void QuantizedAddUsingEigen(const Eigen::ThreadPoolDevice& device, const Tensor& input, float inputmin, float inputmax, const Tensor& smallerinput, float smallerinputmin, float smallerinputmax, Tensor output, float outputmin, float outputmax) { ... const int64 inputelementcount = input.NumElements(); const int64 smallerinputelementcount = smallerinput.NumElements(); ... bcast[0] = inputelementcount / smallerinputelementcount; ... }

This integral division by 0 is undefined behavior.

Patches We have patched the issue in GitHub commit 67784700869470d65d5f2ef20aeb5e97c31673cb.

The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range.

For more information Please consult our security guide for more information regarding the security model and how to contact us with issues and questions.

Attribution This vulnerability has been reported by Yakun Zhang and Ying Wang of Baidu X-Team.

Other sources

TensorFlow is an end-to-end open source platform for machine learning. An attacker can trigger an integer division by zero undefined behavior in tf.rawops.QuantizedBiasAdd. This is because the implementation of the Eigen kernel(https://github.com/tensorflow/tensorflow/blob/61bca8bd5ba8a68b2d97435ddfafcdf2b85672cd/tensorflow/core/kernels/quantizationutils.h#L812-L849) does a division by the number of elements of the smaller input (based on shape) without checking that this is not zero. The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range.

Affected Software

16 affected componentsFixes available
pip/tensorflow-gpu>=2.4.0<2.4.2
2.4.2
pip/tensorflow-gpu>=2.3.0<2.3.3
2.3.3
pip/tensorflow-gpu>=2.2.0<2.2.3
2.2.3
pip/tensorflow-gpu<2.1.4
2.1.4
pip/tensorflow-cpu>=2.4.0<2.4.2
2.4.2
pip/tensorflow-cpu>=2.3.0<2.3.3
2.3.3
pip/tensorflow-cpu>=2.2.0<2.2.3
2.2.3
pip/tensorflow-cpu<2.1.4
2.1.4
pip/tensorflow>=2.4.0<2.4.2
2.4.2
pip/tensorflow>=2.3.0<2.3.3
2.3.3
pip/tensorflow>=2.2.0<2.2.3
2.2.3
pip/tensorflow<2.1.4
2.1.4
Google TensorFlow<2.1.4
Google TensorFlow>=2.2.0<2.2.3
Google TensorFlow>=2.3.0<2.3.3
Google TensorFlow>=2.4.0<2.4.2

Event History

May 14, 2021
CVE Published
via MITRE·07:10 PM
Data Sourced
via MITRE·07:10 PM
DescriptionSeverityWeakness
May 21, 2021
Advisory Published
via GitHub·02:23 PM

Frequently Asked Questions

1

What is the severity of CVE-2021-29546?

The severity of CVE-2021-29546 is classified as high due to the potential for integer division by zero leading to undefined behavior.

2

How do I fix CVE-2021-29546?

To fix CVE-2021-29546, upgrade TensorFlow to versions 2.1.4, 2.2.3, 2.3.3, or 2.4.2.

3

Which versions of TensorFlow are affected by CVE-2021-29546?

CVE-2021-29546 affects TensorFlow versions prior to 2.1.4 and between 2.2.0 and 2.4.2.

4

Can CVE-2021-29546 be exploited by a remote attacker?

Yes, CVE-2021-29546 can potentially be exploited remotely if an attacker can manipulate the input to `tf.raw_ops.QuantizedBiasAdd`.

5

What are the symptoms of an application affected by CVE-2021-29546?

Applications affected by CVE-2021-29546 may experience crashes or unexpected behavior when processing certain tensors.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203