xref: /aosp_15_r20/external/tensorflow/tensorflow/security/advisory/tfsa-2022-021.md (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1## TFSA-2022-021: FPE in `BiasAndClamp` in TFLite
2
3### CVE Number
4CVE-2022-23557
5
6### Impact
7An attacker can craft a TFLite model that would trigger a division by zero in [`BiasAndClamp` implementation](https://github.com/tensorflow/tensorflow/blob/5100e359aef5c8021f2e71c7b986420b85ce7b3d/tensorflow/lite/kernels/internal/common.h#L75):
8
9```cc
10inline void BiasAndClamp(float clamp_min, float clamp_max, int bias_size,
11                         const float* bias_data, int array_size,
12                         float* array_data) {
13  // ...
14  TFLITE_DCHECK_EQ((array_size % bias_size), 0);
15  // ...
16}
17```
18
19There is no check that the `bias_size` is non zero.
20
21### Patches
22We have patched the issue in GitHub commit [8c6f391a2282684a25cbfec7687bd5d35261a209](https://github.com/tensorflow/tensorflow/commit/8c6f391a2282684a25cbfec7687bd5d35261a209).
23
24The fix will be included in TensorFlow 2.8.0. We will also cherrypick this commit on TensorFlow 2.7.1, TensorFlow 2.6.3, and TensorFlow 2.5.3, as these are also affected and still in supported range.
25
26### For more information
27Please consult [our security guide](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md) for more information regarding the security model and how to contact us with issues and questions.
28
29### Attribution
30This vulnerability has been reported by Wang Xuan of Qihoo 360 AIVul Team.
31