1## TFSA-2022-054: Stack overflow due to self-recursive function in `GraphDef` 2 3### CVE Number 4CVE-2022-23591 5 6### Impact 7The `GraphDef` format in TensorFlow does not allow self recursive functions. The runtime assumes that this invariant is satisfied. However, a `GraphDef` containing a fragment such as the following can be consumed when loading a `SavedModel`: 8 9``` 10 library { 11 function { 12 signature { 13 name: "SomeOp" 14 description: "Self recursive op" 15 } 16 node_def { 17 name: "1" 18 op: "SomeOp" 19 } 20 node_def { 21 name: "2" 22 op: "SomeOp" 23 } 24 } 25 } 26``` 27 28This would result in a stack overflow during execution as resolving each `NodeDef` means resolving the function itself and its nodes. 29 30### Patches 31We have patched the issue in GitHub commit [448a16182065bd08a202d9057dd8ca541e67996c](https://github.com/tensorflow/tensorflow/commit/448a16182065bd08a202d9057dd8ca541e67996c). 32 33The 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. 34 35### For more information 36Please 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. 37