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

FPE in convolutions with zero size filters

CVE-2021-41209

Description

TensorFlow is an open source platform for machine learning. In affected versions the implementations for convolution operators trigger a division by 0 if passed empty filter tensor arguments. The fix will be included in TensorFlow 2.7.0. We will also cherrypick this commit on TensorFlow 2.6.1, TensorFlow 2.5.2, and TensorFlow 2.4.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.6.0, < 2.6.12.6.1
tensorflowPyPI
>= 2.5.0, < 2.5.22.5.2
tensorflowPyPI
< 2.4.42.4.4
tensorflow-cpuPyPI
>= 2.6.0, < 2.6.12.6.1
tensorflow-cpuPyPI
>= 2.5.0, < 2.5.22.5.2
tensorflow-cpuPyPI
< 2.4.42.4.4
tensorflow-gpuPyPI
>= 2.6.0, < 2.6.12.6.1
tensorflow-gpuPyPI
>= 2.5.0, < 2.5.22.5.2
tensorflow-gpuPyPI
< 2.4.42.4.4

Affected products

1

Patches

1
f2c3931113ea

Adding more validation checks to _ParallelConcatUpdate to avoid NPE.

https://github.com/tensorflow/tensorflowRohan JainOct 12, 2021via ghsa
2 files changed · +26 0
  • tensorflow/core/kernels/inplace_ops.cc+9 0 modified
    @@ -71,6 +71,15 @@ class ParallelConcatUpdate : public OpKernel {
     
       void Compute(OpKernelContext* ctx) override {
         auto value = ctx->input(0);
    +    // Value should be at least rank 1. Also the 0th dimension should be
    +    // at least loc_.
    +    OP_REQUIRES(ctx, value.dims() >= 1,
    +                errors::InvalidArgument("value should be at least rank 1."));
    +    OP_REQUIRES(
    +        ctx, value.dim_size(0) > loc_,
    +        errors::InvalidArgument("0th dimension of value = ", value.dim_size(0),
    +                                " is less than loc_=", loc_));
    +
         auto update = ctx->input(1);
     
         OP_REQUIRES(
    
  • tensorflow/python/kernel_tests/array_ops/stack_op_test.py+17 0 modified
    @@ -16,12 +16,16 @@
     
     import numpy as np
     
    +from tensorflow.python import tf2
     from tensorflow.python.eager import context
    +from tensorflow.python.eager import def_function
     from tensorflow.python.framework import constant_op
     from tensorflow.python.framework import dtypes
    +from tensorflow.python.framework import errors
     from tensorflow.python.framework import ops
     from tensorflow.python.framework import test_util
     from tensorflow.python.ops import array_ops
    +from tensorflow.python.ops import gen_array_ops
     from tensorflow.python.ops import gradient_checker_v2
     from tensorflow.python.platform import test
     
    @@ -69,6 +73,19 @@ def testSimpleParallelCPU(self):
                 c = array_ops.parallel_stack(xs)
                 self.assertAllEqual(c, data)
     
    +  def testParallelConcatShapeZero(self):
    +    if not tf2.enabled():
    +      self.skipTest("only fails in TF2")
    +
    +    @def_function.function
    +    def f():
    +      y = gen_array_ops.parallel_concat(values=[["tf"]], shape=0)
    +      return y
    +
    +    with self.assertRaisesRegex(errors.InvalidArgumentError,
    +                                r"0th dimension of value .* is less than"):
    +      f()
    +
       def testSimpleParallelGPU(self):
         # tf.parallel_stack is only supported in graph mode.
         with ops.Graph().as_default():
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

7

News mentions

0

No linked articles in our index yet.