]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
xen/privcmd: unregister xenstore notifier on module exit
authorGuoHan Zhao <zhaoguohan@kylinos.cn>
Wed, 25 Mar 2026 12:02:46 +0000 (20:02 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 18 Apr 2026 08:33:37 +0000 (10:33 +0200)
commit cd7e1fef5a1ca1c4fcd232211962ac2395601636 upstream.

Commit 453b8fb68f36 ("xen/privcmd: restrict usage in
unprivileged domU") added a xenstore notifier to defer setting the
restriction target until Xenstore is ready.

XEN_PRIVCMD can be built as a module, but privcmd_exit() leaves that
notifier behind. Balance the notifier lifecycle by unregistering it on
module exit.

This is harmless even if xenstore was already ready at registration
time and the notifier was never queued on the chain.

Fixes: 453b8fb68f3641fe ("xen/privcmd: restrict usage in unprivileged domU")
Signed-off-by: GuoHan Zhao <zhaoguohan@kylinos.cn>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Message-ID: <20260325120246.252899-1-zhaoguohan@kylinos.cn>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/xen/privcmd.c

index 8a44c1f878b8935fc632f20853236e45eef86a91..abcca5526111f05d142edc1b570bc7102cc11baa 100644 (file)
@@ -1068,6 +1068,9 @@ static int __init privcmd_init(void)
 
 static void __exit privcmd_exit(void)
 {
+       if (!xen_initial_domain())
+               unregister_xenstore_notifier(&xenstore_notifier);
+
        misc_deregister(&privcmd_dev);
        misc_deregister(&xen_privcmdbuf_dev);
 }