CVE-2021-37639: Null pointer dereference and heap OOB read in TensorFlow
Impact When restoring tensors via raw APIs, if the tensor name is not provided, TensorFlow can be tricked into dereferencing a null pointer:
python import tensorflow as tf
tf.rawops.Restore( filepattern=['/tmp'], tensorname=[], defaultvalue=21, dt=tf.int, preferredshard=1) The same undefined behavior can be triggered by tf.rawops.RestoreSlice: python import tensorflow as tf
tf.rawops.RestoreSlice( filepattern=['/tmp'], tensorname=[], shapeandslice='2', dt=inp.array([tf.int]), preferredshard=1)
Alternatively, attackers can read memory outside the bounds of heap allocated data by providing some tensor names but not enough for a successful restoration:
python import tensorflow as tf
tf.rawops.Restore( filepattern=['/tmp'], tensorname=['x'], defaultvalue=21, dt=tf.int, preferredshard=42) The implementation retrieves the tensor list corresponding to the tensorname user controlled input and immediately retrieves the tensor at the restoration index (controlled via preferredshard argument). This occurs without validating that the provided list has enough values.
If the list is empty this results in dereferencing a null pointer (undefined behavior). If, however, the list has some elements, if the restoration index is outside the bounds this results in heap OOB read.
Patches We have patched the issue in GitHub commit 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622.
The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.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 members of the Aivul Team from Qihoo 360.
Other sources
TensorFlow is an end-to-end open source platform for machine learning. When restoring tensors via raw APIs, if the tensor name is not provided, TensorFlow can be tricked into dereferencing a null pointer. Alternatively, attackers can read memory outside the bounds of heap allocated data by providing some tensor names but not enough for a successful restoration. The implementation retrieves the tensor list corresponding to the tensorname user controlled input and immediately retrieves the tensor at the restoration index (controlled via preferredshard argument). This occurs without validating that the provided list has enough values. If the list is empty this results in dereferencing a null pointer (undefined behavior). If, however, the list has some elements, if the restoration index is outside the bounds this results in heap OOB read. We have patched the issue in GitHub commit 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622. The fix will be included in TensorFlow 2.6.0. We will also cherrypick this commit on TensorFlow 2.5.1, TensorFlow 2.4.3, and TensorFlow 2.3.4, as these are also affected and still in supported range.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/tensorflow-gputo a version that resolves this vulnerability.Fixed in 2.5.1 - Upgrade
Upgrade
pip/tensorflow-gputo a version that resolves this vulnerability.Fixed in 2.4.3 - Upgrade
Upgrade
pip/tensorflow-gputo a version that resolves this vulnerability.Fixed in 2.3.4 - Upgrade
Upgrade
pip/tensorflow-cputo a version that resolves this vulnerability.Fixed in 2.5.1 - Upgrade
Upgrade
pip/tensorflow-cputo a version that resolves this vulnerability.Fixed in 2.4.3 - Upgrade
Upgrade
pip/tensorflow-cputo a version that resolves this vulnerability.Fixed in 2.3.4 - Upgrade
Upgrade
pip/tensorflowto a version that resolves this vulnerability.Fixed in 2.5.1 - Upgrade
Upgrade
pip/tensorflowto a version that resolves this vulnerability.Fixed in 2.4.3 - Upgrade
Upgrade
pip/tensorflowto a version that resolves this vulnerability.Fixed in 2.3.4 - Upgrade
Upgrade
TensorFlowto a version that resolves this vulnerability.Fixed in 2.6.0Patch 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622 - Upgrade
Upgrade
TensorFlowto a version that resolves this vulnerability.Fixed in 2.5.1Patch 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622 - Upgrade
Upgrade
TensorFlowto a version that resolves this vulnerability.Fixed in 2.4.3Patch 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622 - Upgrade
Upgrade
TensorFlowto a version that resolves this vulnerability.Fixed in 2.3.4Patch 9e82dce6e6bd1f36a57e08fa85af213e2b2f2622
Event History
Frequently Asked Questions
What is the severity of CVE-2021-37639?
CVE-2021-37639 has a medium severity rating as it can lead to a denial of service due to a null pointer dereference.
What versions of TensorFlow are affected by CVE-2021-37639?
CVE-2021-37639 affects TensorFlow versions 2.3.0 to 2.3.4, 2.4.0 to 2.4.3, and specific release candidates of 2.6.0.
How do I fix CVE-2021-37639?
To fix CVE-2021-37639, upgrade TensorFlow to version 2.5.1 or later.
Can CVE-2021-37639 be exploited remotely?
Yes, CVE-2021-37639 can potentially be exploited remotely if untrusted inputs are processed.
What is the impact of CVE-2021-37639 on TensorFlow applications?
The impact of CVE-2021-37639 on TensorFlow applications can result in crashes or unexpected behavior due to the null pointer dereference.