diff options
author | Zhipeng Lu <alexious@zju.edu.cn> | 2023-12-02 17:59:02 +0800 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2023-12-05 15:39:13 +0100 |
commit | 3c91c909f13f0c32b0d54d75c3f798479b1a84f5 (patch) | |
tree | 8167cbba53ccdb3d4543b06ef430d1919bbcb346 /mm/shuffle.c | |
parent | 37e4b8df27bc68340f3fc80dbb27e3549c7f881c (diff) | |
download | linux-3c91c909f13f0c32b0d54d75c3f798479b1a84f5.tar.gz linux-3c91c909f13f0c32b0d54d75c3f798479b1a84f5.tar.bz2 linux-3c91c909f13f0c32b0d54d75c3f798479b1a84f5.zip |
octeontx2-af: fix a use-after-free in rvu_npa_register_reporters
The rvu_dl will be freed in rvu_npa_health_reporters_destroy(rvu_dl)
after the create_workqueue fails, and after that free, the rvu_dl will
be translate back through rvu_npa_health_reporters_create,
rvu_health_reporters_create, and rvu_register_dl. Finally it goes to the
err_dl_health label, being freed again in
rvu_health_reporters_destroy(rvu) by rvu_npa_health_reporters_destroy.
In the second calls of rvu_npa_health_reporters_destroy, however,
it uses rvu_dl->rvu_npa_health_reporter, which is already freed at
the end of rvu_npa_health_reporters_destroy in the first call.
So this patch prevents the first destroy by instantly returning -ENONMEN
when create_workqueue fails. In addition, since the failure of
create_workqueue is the only entrence of label err, it has been
integrated into the error-handling path of create_workqueue.
Fixes: f1168d1e207c ("octeontx2-af: Add devlink health reporters for NPA")
Signed-off-by: Zhipeng Lu <alexious@zju.edu.cn>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Acked-by: Geethasowjanya Akula <gakula@marvell.com>
Link: https://lore.kernel.org/r/20231202095902.3264863-1-alexious@zju.edu.cn
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'mm/shuffle.c')
0 files changed, 0 insertions, 0 deletions