CVE-2022-49086
Published: Feb 26, 2025
Modified: May 11, 2026
Description
In the Linux kernel, the following vulnerability has been resolved: net: openvswitch: fix leak of nested actions While parsing user-provided actions, openvswitch module may dynamically allocate memory and store pointers in the internal copy of the actions. So this memory has to be freed while destroying the actions. Currently there are only two such actions: ct() and set(). However, there are many actions that can hold nested lists of actions and ovs_nla_free_flow_actions() just jumps over them leaking the memory. For example, removal of the flow with the following actions will lead to a leak of the memory allocated by nf_ct_tmpl_alloc(): actions:clone(ct(commit),0) Non-freed set() action may also leak the 'dst' structure for the tunnel info including device references. Under certain conditions with a high rate of flow rotation that may cause significant memory leak problem (2MB per second in reporter's case). The problem is also hard to mitigate, because the user doesn't have direct control over the datapath flows generated by OVS. Fix that by iterating over all the nested actions and freeing everything that needs to be freed recursively. New build time assertion should protect us from this problem if new actions will be added in the future. Unfortunately, openvswitch module doesn't use NLA_F_NESTED, so all attributes has to be explicitly checked. sample() and clone() actions are mixing extra attributes into the user-provided action list. That prevents some code generalization too.
| Vendor | Product | Versions |
|---|---|---|
Linux | Linux | affected 34ae932a40369be6bd6ea97d66b6686361b4370d - < 7438dc55c0709819b813f4778aec2c48b782990baffected 34ae932a40369be6bd6ea97d66b6686361b4370d - < ef6f9ce0a79aa23b10fc5f3b3cab3814a25aac40affected 34ae932a40369be6bd6ea97d66b6686361b4370d - < 5ae05b5eb58773cfec307ff88aff4cfd843c4cffaffected 34ae932a40369be6bd6ea97d66b6686361b4370d - < 837b96d8103938e35e7d92cd9db96af914ca4fffaffected 34ae932a40369be6bd6ea97d66b6686361b4370d - < 3554c214b83ec9a839ed574263a34218f372990c+2 more versions |
Linux | Linux | affected 4.3unaffected 0 - < 4.3unaffected 4.19.249 - <= 4.19.*unaffected 5.4.200 - <= 5.4.*unaffected 5.10.111 - <= 5.10.*+4 more versions |
References
Security Training
Train your team to recognize and prevent security threats with our comprehensive security awareness program.
Start TrainingVulnerability Scanning
Discover vulnerabilities in your applications and infrastructure before attackers do.
Scan Now