VYPR
Moderate severityNVD Advisory· Published Aug 12, 2021· Updated Aug 4, 2024

Crash caused by integer conversion to unsigned in TensorFlow

CVE-2021-37661

Description

TensorFlow is an end-to-end open source platform for machine learning. In affected versions an attacker can cause a denial of service in boosted_trees_create_quantile_stream_resource by using negative arguments. The implementation does not validate that num_streams only contains non-negative numbers. In turn, this results in using this value to allocate memory. However, reserve receives an unsigned integer so there is an implicit conversion from a negative value to a large positive unsigned. This results in a crash from the standard library. We have patched the issue in GitHub commit 8a84f7a2b5a2b27ecf88d25bad9ac777cd2f7992. 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 packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
tensorflowPyPI
< 2.3.42.3.4
tensorflowPyPI
>= 2.4.0, < 2.4.32.4.3
tensorflowPyPI
>= 2.5.0, < 2.5.12.5.1
tensorflow-cpuPyPI
< 2.3.42.3.4
tensorflow-cpuPyPI
>= 2.4.0, < 2.4.32.4.3
tensorflow-cpuPyPI
>= 2.5.0, < 2.5.12.5.1
tensorflow-gpuPyPI
< 2.3.42.3.4
tensorflow-gpuPyPI
>= 2.4.0, < 2.4.32.4.3
tensorflow-gpuPyPI
>= 2.5.0, < 2.5.12.5.1

Affected products

1

Patches

1
8a84f7a2b5a2

Ensure num_streams >= 0 in tf.raw_ops.BoostedTreesCreateQuantileStreamResource

https://github.com/tensorflow/tensorflowLaura PakJul 28, 2021via ghsa
1 file changed · +3 0
  • tensorflow/core/kernels/boosted_trees/quantile_ops.cc+3 0 modified
    @@ -116,6 +116,9 @@ class BoostedTreesCreateQuantileStreamResourceOp : public OpKernel {
         const Tensor* num_streams_t;
         OP_REQUIRES_OK(context, context->input(kNumStreamsName, &num_streams_t));
         int64_t num_streams = num_streams_t->scalar<int64>()();
    +    OP_REQUIRES(context, num_streams >= 0,
    +                errors::InvalidArgument(
    +                    "Num_streams input cannot be a negative integer"));
     
         auto result =
             new QuantileStreamResource(epsilon, max_elements_, num_streams);
    

Vulnerability mechanics

Synthesis attempt was rejected by the grounding validator. Re-run pending.

References

7

News mentions

0

No linked articles in our index yet.