VYPR
Low severityNVD Advisory· Published May 14, 2021· Updated Aug 3, 2024

Reference binding to null pointer in `MatrixDiag*` ops

CVE-2021-29515

Description

TensorFlow is an end-to-end open source platform for machine learning. The implementation of MatrixDiag* operations(https://github.com/tensorflow/tensorflow/blob/4c4f420e68f1cfaf8f4b6e8e3eb857e9e4c3ff33/tensorflow/core/kernels/linalg/matrix_diag_op.cc#L195-L197) does not validate that the tensor arguments are non-empty. 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 packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
tensorflowPyPI
< 2.1.42.1.4
tensorflowPyPI
>= 2.2.0, < 2.2.32.2.3
tensorflowPyPI
>= 2.3.0, < 2.3.32.3.3
tensorflowPyPI
>= 2.4.0, < 2.4.22.4.2
tensorflow-cpuPyPI
< 2.1.42.1.4
tensorflow-cpuPyPI
>= 2.2.0, < 2.2.32.2.3
tensorflow-cpuPyPI
>= 2.3.0, < 2.3.32.3.3
tensorflow-cpuPyPI
>= 2.4.0, < 2.4.22.4.2
tensorflow-gpuPyPI
< 2.1.42.1.4
tensorflow-gpuPyPI
>= 2.2.0, < 2.2.32.2.3
tensorflow-gpuPyPI
>= 2.3.0, < 2.3.32.3.3
tensorflow-gpuPyPI
>= 2.4.0, < 2.4.22.4.2

Affected products

1

Patches

1
a7116dd3913c

Validate `MatrixDiagV{2,3}` arguments to prevent breakage.

https://github.com/tensorflow/tensorflowMihai MaruseacApr 18, 2021via ghsa
1 file changed · +16 3
  • tensorflow/core/kernels/linalg/matrix_diag_op.cc+16 3 modified
    @@ -192,9 +192,22 @@ class MatrixDiagOp : public OpKernel {
               upper_diag_index = diag_index.flat<int32>()(1);
             }
           }
    -      num_rows = context->input(2).flat<int32>()(0);
    -      num_cols = context->input(3).flat<int32>()(0);
    -      padding_value = context->input(4).flat<T>()(0);
    +
    +      auto& num_rows_tensor = context->input(2);
    +      OP_REQUIRES(context, TensorShapeUtils::IsScalar(num_rows_tensor.shape()),
    +                  errors::InvalidArgument("num_rows must be a scalar"));
    +      num_rows = num_rows_tensor.flat<int32>()(0);
    +
    +      auto& num_cols_tensor = context->input(3);
    +      OP_REQUIRES(context, TensorShapeUtils::IsScalar(num_cols_tensor.shape()),
    +                  errors::InvalidArgument("num_cols must be a scalar"));
    +      num_cols = num_cols_tensor.flat<int32>()(0);
    +
    +      auto& padding_value_tensor = context->input(4);
    +      OP_REQUIRES(context,
    +                  TensorShapeUtils::IsScalar(padding_value_tensor.shape()),
    +                  errors::InvalidArgument("padding_value must be a scalar"));
    +      padding_value = padding_value_tensor.flat<T>()(0);
         }
     
         // Size validations.
    

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.