Skip to content

Commit 1bd6406

Browse files
Wupeng Magregkh
authored andcommitted
VMCI: fix race between vmci_host_setup_notify and vmci_ctx_unset_notify
During our test, it is found that a warning can be trigger in try_grab_folio as follow: ------------[ cut here ]------------ WARNING: CPU: 0 PID: 1678 at mm/gup.c:147 try_grab_folio+0x106/0x130 Modules linked in: CPU: 0 UID: 0 PID: 1678 Comm: syz.3.31 Not tainted 6.15.0-rc5 Rust-for-Linux#163 PREEMPT(undef) RIP: 0010:try_grab_folio+0x106/0x130 Call Trace: <TASK> follow_huge_pmd+0x240/0x8e0 follow_pmd_mask.constprop.0.isra.0+0x40b/0x5c0 follow_pud_mask.constprop.0.isra.0+0x14a/0x170 follow_page_mask+0x1c2/0x1f0 __get_user_pages+0x176/0x950 __gup_longterm_locked+0x15b/0x1060 ? gup_fast+0x120/0x1f0 gup_fast_fallback+0x17e/0x230 get_user_pages_fast+0x5f/0x80 vmci_host_unlocked_ioctl+0x21c/0xf80 RIP: 0033:0x54d2cd ---[ end trace 0000000000000000 ]--- Digging into the source, context->notify_page may init by get_user_pages_fast and can be seen in vmci_ctx_unset_notify which will try to put_page. However get_user_pages_fast is not finished here and lead to following try_grab_folio warning. The race condition is shown as follow: cpu0 cpu1 vmci_host_do_set_notify vmci_host_setup_notify get_user_pages_fast(uva, 1, FOLL_WRITE, &context->notify_page); lockless_pages_from_mm gup_pgd_range gup_huge_pmd // update &context->notify_page vmci_host_do_set_notify vmci_ctx_unset_notify notify_page = context->notify_page; if (notify_page) put_page(notify_page); // page is freed __gup_longterm_locked __get_user_pages follow_trans_huge_pmd try_grab_folio // warn here To slove this, use local variable page to make notify_page can be seen after finish get_user_pages_fast. Fixes: a1d8843 ("VMCI: Fix two UVA mapping bugs") Cc: stable <[email protected]> Closes: https://lore.kernel.org/all/[email protected]/ Signed-off-by: Wupeng Ma <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 97ce0fe commit 1bd6406

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

drivers/misc/vmw_vmci/vmci_host.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ static int drv_cp_harray_to_user(void __user *user_buf_uva,
227227
static int vmci_host_setup_notify(struct vmci_ctx *context,
228228
unsigned long uva)
229229
{
230+
struct page *page;
230231
int retval;
231232

232233
if (context->notify_page) {
@@ -243,13 +244,11 @@ static int vmci_host_setup_notify(struct vmci_ctx *context,
243244
/*
244245
* Lock physical page backing a given user VA.
245246
*/
246-
retval = get_user_pages_fast(uva, 1, FOLL_WRITE, &context->notify_page);
247-
if (retval != 1) {
248-
context->notify_page = NULL;
247+
retval = get_user_pages_fast(uva, 1, FOLL_WRITE, &page);
248+
if (retval != 1)
249249
return VMCI_ERROR_GENERIC;
250-
}
251-
if (context->notify_page == NULL)
252-
return VMCI_ERROR_UNAVAILABLE;
250+
251+
context->notify_page = page;
253252

254253
/*
255254
* Map the locked page and set up notify pointer.

0 commit comments

Comments
 (0)