]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
umh: fix memory leak on execve failure
authorVincent Minet <v.minet@criteo.com>
Thu, 7 May 2020 22:14:22 +0000 (00:14 +0200)
committerJakub Kicinski <kuba@kernel.org>
Sat, 9 May 2020 02:06:55 +0000 (19:06 -0700)
If a UMH process created by fork_usermode_blob() fails to execute,
a pair of struct file allocated by umh_pipe_setup() will leak.

Under normal conditions, the caller (like bpfilter) needs to manage the
lifetime of the UMH and its two pipes. But when fork_usermode_blob()
fails, the caller doesn't really have a way to know what needs to be
done. It seems better to do the cleanup ourselves in this case.

Fixes: 449325b52b7a ("umh: introduce fork_usermode_blob() helper")
Signed-off-by: Vincent Minet <v.minet@criteo.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
kernel/umh.c

index 7f255b5a8845aef24b048dfabaf07462b04c9fca..20d51e0957e0d61701251c4e429bb54a40f78462 100644 (file)
@@ -475,6 +475,12 @@ static void umh_clean_and_save_pid(struct subprocess_info *info)
 {
        struct umh_info *umh_info = info->data;
 
+       /* cleanup if umh_pipe_setup() was successful but exec failed */
+       if (info->pid && info->retval) {
+               fput(umh_info->pipe_to_umh);
+               fput(umh_info->pipe_from_umh);
+       }
+
        argv_free(info->argv);
        umh_info->pid = info->pid;
 }