Prev: [PATCH 2/4] squashfs: fix warn_on when root inode is corrupted
Next: [PATCH 0/4] Squashfs: bug fixes for 2.6.34-rc6
From: Naoya Horiguchi on 22 Apr 2010 22:20 Currently page_address_in_vma() compares vma->anon_vma and page_anon_vma(page) for parameter check, but in 2.6.34 a vma can have multiple anon_vmas with anon_vma_chain, so current check does not work. (For anonymous page shared by multiple processes, some verified (page,vma) pairs return -EFAULT wrongly.) We can go to checking all anon_vmas in the "same_vma" chain, but it needs to meet lock requirement. Instead, we can remove anon_vma check safely because page_address_in_vma() assumes that page and vma are already checked to belong to the identical process. Signed-off-by: Naoya Horiguchi <n-horiguchi(a)ah.jp.nec.com> Cc: Andrew Morton <akpm(a)linux-foundation.org> Cc: Rik van Riel <riel(a)redhat.com> Cc: Andi Kleen <andi(a)firstfloor.org> --- mm/rmap.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git v2.6.34-rc5:mm/rmap.c v2.6.34-rc5:mm/rmap.c index 526704e..486fd0a 100644 --- v2.6.34-rc5:mm/rmap.c +++ v2.6.34-rc5:mm/rmap.c @@ -335,14 +335,13 @@ vma_address(struct page *page, struct vm_area_struct *vma) /* * At what user virtual address is page expected in vma? - * checking that the page matches the vma. + * Caller should check the page is actually part of the vma. */ unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma) { - if (PageAnon(page)) { - if (vma->anon_vma != page_anon_vma(page)) - return -EFAULT; - } else if (page->mapping && !(vma->vm_flags & VM_NONLINEAR)) { + if (PageAnon(page)) + ; + else if (page->mapping && !(vma->vm_flags & VM_NONLINEAR)) { if (!vma->vm_file || vma->vm_file->f_mapping != page->mapping) return -EFAULT; -- 1.7.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |