aboutsummaryrefslogtreecommitdiffstats
path: root/mm/msync.c
diff options
context:
space:
mode:
authorHugh Dickins <hugh@veritas.com>2005-10-29 21:16:27 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-30 00:40:40 -0400
commit705e87c0c3c38424f7f30556c85bc20e808d2f59 (patch)
tree7a237e6266f4801385e1226cc497b47e3a2458bd /mm/msync.c
parent8f4e2101fd7df9031a754eedb82e2060b51f8c45 (diff)
[PATCH] mm: pte_offset_map_lock loops
Convert those common loops using page_table_lock on the outside and pte_offset_map within to use just pte_offset_map_lock within instead. These all hold mmap_sem (some exclusively, some not), so at no level can a page table be whipped away from beneath them. But whereas pte_alloc loops tested with the "atomic" pmd_present, these loops are testing with pmd_none, which on i386 PAE tests both lower and upper halves. That's now unsafe, so add a cast into pmd_none to test only the vital lower half: we lose a little sensitivity to a corrupt middle directory, but not enough to worry about. It appears that i386 and UML were the only architectures vulnerable in this way, and pgd and pud no problem. Signed-off-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/msync.c')
-rw-r--r--mm/msync.c21
1 files changed, 6 insertions, 15 deletions
diff --git a/mm/msync.c b/mm/msync.c
index 860395486060..0e040e9c39d8 100644
--- a/mm/msync.c
+++ b/mm/msync.c
@@ -17,28 +17,22 @@
17#include <asm/pgtable.h> 17#include <asm/pgtable.h>
18#include <asm/tlbflush.h> 18#include <asm/tlbflush.h>
19 19
20/*
21 * Called with mm->page_table_lock held to protect against other
22 * threads/the swapper from ripping pte's out from under us.
23 */
24
25static void msync_pte_range(struct vm_area_struct *vma, pmd_t *pmd, 20static void msync_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
26 unsigned long addr, unsigned long end) 21 unsigned long addr, unsigned long end)
27{ 22{
28 struct mm_struct *mm = vma->vm_mm;
29 pte_t *pte; 23 pte_t *pte;
24 spinlock_t *ptl;
30 int progress = 0; 25 int progress = 0;
31 26
32again: 27again:
33 pte = pte_offset_map(pmd, addr); 28 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
34 do { 29 do {
35 unsigned long pfn; 30 unsigned long pfn;
36 struct page *page; 31 struct page *page;
37 32
38 if (progress >= 64) { 33 if (progress >= 64) {
39 progress = 0; 34 progress = 0;
40 if (need_resched() || 35 if (need_resched() || need_lockbreak(ptl))
41 need_lockbreak(&mm->page_table_lock))
42 break; 36 break;
43 } 37 }
44 progress++; 38 progress++;
@@ -58,8 +52,8 @@ again:
58 set_page_dirty(page); 52 set_page_dirty(page);
59 progress += 3; 53 progress += 3;
60 } while (pte++, addr += PAGE_SIZE, addr != end); 54 } while (pte++, addr += PAGE_SIZE, addr != end);
61 pte_unmap(pte - 1); 55 pte_unmap_unlock(pte - 1, ptl);
62 cond_resched_lock(&mm->page_table_lock); 56 cond_resched();
63 if (addr != end) 57 if (addr != end)
64 goto again; 58 goto again;
65} 59}
@@ -97,7 +91,6 @@ static inline void msync_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
97static void msync_page_range(struct vm_area_struct *vma, 91static void msync_page_range(struct vm_area_struct *vma,
98 unsigned long addr, unsigned long end) 92 unsigned long addr, unsigned long end)
99{ 93{
100 struct mm_struct *mm = vma->vm_mm;
101 pgd_t *pgd; 94 pgd_t *pgd;
102 unsigned long next; 95 unsigned long next;
103 96
@@ -110,16 +103,14 @@ static void msync_page_range(struct vm_area_struct *vma,
110 return; 103 return;
111 104
112 BUG_ON(addr >= end); 105 BUG_ON(addr >= end);
113 pgd = pgd_offset(mm, addr); 106 pgd = pgd_offset(vma->vm_mm, addr);
114 flush_cache_range(vma, addr, end); 107 flush_cache_range(vma, addr, end);
115 spin_lock(&mm->page_table_lock);
116 do { 108 do {
117 next = pgd_addr_end(addr, end); 109 next = pgd_addr_end(addr, end);
118 if (pgd_none_or_clear_bad(pgd)) 110 if (pgd_none_or_clear_bad(pgd))
119 continue; 111 continue;
120 msync_pud_range(vma, pgd, addr, next); 112 msync_pud_range(vma, pgd, addr, next);
121 } while (pgd++, addr = next, addr != end); 113 } while (pgd++, addr = next, addr != end);
122 spin_unlock(&mm->page_table_lock);
123} 114}
124 115
125/* 116/*