VYPR
Moderate severityNVD Advisory· Published Sep 16, 2022· Updated Apr 23, 2025

Int overflow in `RaggedRangeOp` in Tensoflow

CVE-2022-35940

Description

TensorFlow is an open source platform for machine learning. The RaggedRangOp function takes an argument limits that is eventually used to construct a TensorShape as an int64. If limits is a very large float, it can overflow when converted to an int64. This triggers an InvalidArgument but also throws an abort signal that crashes the program. We have patched the issue in GitHub commit 37cefa91bee4eace55715eeef43720b958a01192. The fix will be included in TensorFlow 2.10.0. We will also cherrypick this commit on TensorFlow 2.9.1, TensorFlow 2.8.1, and TensorFlow 2.7.2, as these are also affected and still in supported range. There are no known workarounds for this issue.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
tensorflowPyPI
< 2.7.22.7.2
tensorflowPyPI
>= 2.8.0, < 2.8.12.8.1
tensorflowPyPI
>= 2.9.0, < 2.9.12.9.1
tensorflow-cpuPyPI
< 2.7.22.7.2
tensorflow-cpuPyPI
>= 2.8.0, < 2.8.12.8.1
tensorflow-cpuPyPI
>= 2.9.0, < 2.9.12.9.1
tensorflow-gpuPyPI
< 2.7.22.7.2
tensorflow-gpuPyPI
>= 2.8.0, < 2.8.12.8.1
tensorflow-gpuPyPI
>= 2.9.0, < 2.9.12.9.1

Affected products

1

Patches

1
37cefa91bee4

[security] Fix int overflow in RaggedRangeOp.

3 files changed · +37 17
  • tensorflow/core/kernels/ragged_range_op.cc+20 15 modified
    @@ -12,6 +12,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
     ==============================================================================*/
    +#include <cstdint>
     #include <limits>
     #include <memory>
     #include <string>
    @@ -78,8 +79,25 @@ class RaggedRangeOp : public OpKernel {
           T limit = broadcast_limits ? limits(0) : limits(row);
           T delta = broadcast_deltas ? deltas(0) : deltas(row);
           OP_REQUIRES(context, delta != 0, InvalidArgument("Requires delta != 0"));
    -      rt_nested_splits(row + 1) =
    -          rt_nested_splits(row) + RangeSize(start, limit, delta);
    +      int64_t size;  // The number of elements in the specified range.
    +      if (((delta > 0) && (limit < start)) ||
    +          ((delta < 0) && (limit > start))) {
    +        size = 0;
    +      } else if (std::is_integral<T>::value) {
    +        // The following is copied from tensorflow::RangeOp::Compute().
    +        size = Eigen::divup(Eigen::numext::abs(limit - start),
    +                            Eigen::numext::abs(delta));
    +      } else {
    +        // The following is copied from tensorflow::RangeOp::Compute().
    +        auto size_auto =
    +            Eigen::numext::ceil(Eigen::numext::abs((limit - start) / delta));
    +        OP_REQUIRES(
    +            context, size_auto <= std::numeric_limits<int64_t>::max(),
    +            errors::InvalidArgument("Requires ((limit - start) / delta) <= ",
    +                                    std::numeric_limits<int64_t>::max()));
    +        size = static_cast<int64_t>(size_auto);
    +      }
    +      rt_nested_splits(row + 1) = rt_nested_splits(row) + size;
         }
         SPLITS_TYPE nvals = rt_nested_splits(nrows);
     
    @@ -99,19 +117,6 @@ class RaggedRangeOp : public OpKernel {
           }
         }
       }
    -
    - private:
    -  // Returns the number of elements in the specified range.
    -  SPLITS_TYPE RangeSize(T start, T limit, T delta) {
    -    if (((delta > 0) && (limit < start)) || ((delta < 0) && (limit > start))) {
    -      return 0;
    -    }
    -    // The following is copied from tensorflow::RangeOp::Compute().
    -    return (std::is_integral<T>::value
    -                ? ((std::abs(limit - start) + std::abs(delta) - 1) /
    -                   std::abs(delta))
    -                : std::ceil(std::abs((limit - start) / delta)));
    -  }
     };
     
     #define REGISTER_CPU_KERNEL(TYPE)                                  \
    
  • tensorflow/core/kernels/ragged_range_op_test.cc+12 0 modified
    @@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
     limitations under the License.
     ==============================================================================*/
     
    +#include <gtest/gtest.h>
     #include "tensorflow/core/framework/fake_input.h"
     #include "tensorflow/core/framework/node_def_builder.h"
     #include "tensorflow/core/framework/shape_inference.h"
    @@ -77,6 +78,17 @@ TEST_F(RaggedRangeOpTest, FloatValues) {
           test::AsTensor<float>({0, 2, 4, 6, 5, 6, 5, 4, 3, 2}), 0.1);
     }
     
    +TEST_F(RaggedRangeOpTest, RangeSizeOverflow) {
    +  BuildRaggedRangeGraph<float>();
    +  AddInputFromArray<float>(TensorShape({2}), {1.1, 0.1});    // starts
    +  AddInputFromArray<float>(TensorShape({2}), {10.0, 1e10});  // limits
    +  AddInputFromArray<float>(TensorShape({2}), {1, 1e-10});    // deltas
    +
    +  EXPECT_EQ(absl::StrCat("Requires ((limit - start) / delta) <= ",
    +                         std::numeric_limits<int64_t>::max()),
    +            RunOpKernel().error_message());
    +}
    +
     TEST_F(RaggedRangeOpTest, BroadcastDeltas) {
       BuildRaggedRangeGraph<int>();
       AddInputFromArray<int>(TensorShape({3}), {0, 5, 8});  // starts
    
  • tensorflow/python/ops/ragged/ragged_range_op_test.py+5 2 modified
    @@ -84,8 +84,7 @@ def testBroadcast(self):
              list(range(5, 15, 3))])
     
         # Broadcast all arguments.
    -    self.assertAllEqual(
    -        ragged_math_ops.range(0, 5, 1), [list(range(0, 5, 1))])
    +    self.assertAllEqual(ragged_math_ops.range(0, 5, 1), [list(range(0, 5, 1))])
     
       def testEmptyRanges(self):
         rt1 = ragged_math_ops.range([0, 5, 3], [0, 3, 5])
    @@ -108,6 +107,10 @@ def testKernelErrors(self):
                                     r'Requires delta != 0'):
           self.evaluate(ragged_math_ops.range(0, 0, 0))
     
    +    with self.assertRaisesRegex(errors.InvalidArgumentError,
    +                                r'Requires \(\(limit - start\) / delta\) <='):
    +      self.evaluate(ragged_math_ops.range(0.1, 1e10, 1e-10))
    +
       def testShape(self):
         self.assertAllEqual(
             ragged_math_ops.range(0, 0, 1).shape.as_list(), [1, None])
    

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

6

News mentions

0

No linked articles in our index yet.