This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / mm / fremap.c~
1 /*
2  *   linux/mm/fremap.c
3  * 
4  * Explicit pagetable population and nonlinear (random) mappings support.
5  *
6  * started by Ingo Molnar, Copyright (C) 2002, 2003
7  */
8
9 #include <linux/mm.h>
10 #include <linux/swap.h>
11 #include <linux/file.h>
12 #include <linux/mman.h>
13 #include <linux/pagemap.h>
14 #include <linux/swapops.h>
15 #include <linux/rmap.h>
16 #include <linux/module.h>
17 #include <linux/syscalls.h>
18 #include <linux/vs_memory.h>
19
20 #include <asm/mmu_context.h>
21 #include <asm/cacheflush.h>
22 #include <asm/tlbflush.h>
23
24 static int zap_pte(struct mm_struct *mm, struct vm_area_struct *vma,
25                         unsigned long addr, pte_t *ptep)
26 {
27         pte_t pte = *ptep;
28         struct page *page = NULL;
29
30         if (pte_present(pte)) {
31                 flush_cache_page(vma, addr, pte_pfn(pte));
32                 pte = ptep_clear_flush(vma, addr, ptep);
33                 page = vm_normal_page(vma, addr, pte);
34                 if (page) {
35                         if (pte_dirty(pte))
36                                 set_page_dirty(page);
37                         page_remove_rmap(page);
38                         page_cache_release(page);
39                 }
40         } else {
41                 if (!pte_file(pte))
42                         free_swap_and_cache(pte_to_swp_entry(pte));
43                 pte_clear(mm, addr, ptep);
44         }
45         return !!page;
46 }
47
48 /*
49  * Install a file page to a given virtual memory address, release any
50  * previously existing mapping.
51  */
52 int install_page(struct mm_struct *mm, struct vm_area_struct *vma,
53                 unsigned long addr, struct page *page, pgprot_t prot)
54 {
55         struct inode *inode;
56         pgoff_t size;
57         int err = -ENOMEM;
58         pte_t *pte;
59         pte_t pte_val;
60         spinlock_t *ptl;
61
62         pte = get_locked_pte(mm, addr, &ptl);
63         if (!pte)
64                 goto out;
65
66         /*
67          * This page may have been truncated. Tell the
68          * caller about it.
69          */
70         err = -EINVAL;
71         if (vma->vm_file) {
72                 inode = vma->vm_file->f_mapping->host;
73                 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
74                 if (!page->mapping || page->index >= size)
75                         goto unlock;
76                 err = -ENOMEM;
77                 if (page_mapcount(page) > INT_MAX/2)
78                         goto unlock;
79         }
80
81         if (pte_none(*pte) || !zap_pte(mm, vma, addr, pte))
82                 inc_mm_counter(mm, file_rss);
83
84         flush_icache_page(vma, page);
85         set_pte_at(mm, addr, pte, mk_pte(page, prot));
86         page_add_file_rmap(page);
87         pte_val = *pte;
88         update_mmu_cache(vma, addr, pte_val);
89         err = 0;
90 unlock:
91         pte_unmap_unlock(pte, ptl);
92 out:
93         return err;
94 }
95 EXPORT_SYMBOL(install_page);
96
97 /*
98  * Install a file pte to a given virtual memory address, release any
99  * previously existing mapping.
100  */
101 int install_file_pte(struct mm_struct *mm, struct vm_area_struct *vma,
102                 unsigned long addr, unsigned long pgoff, pgprot_t prot)
103 {
104         int err = -ENOMEM;
105         pte_t *pte;
106         pte_t pte_val;
107         spinlock_t *ptl;
108
109         pte = get_locked_pte(mm, addr, &ptl);
110         if (!pte)
111                 goto out;
112
113         if (!pte_none(*pte) && zap_pte(mm, vma, addr, pte)) {
114                 update_hiwater_rss(mm);
115                 dec_mm_counter(mm, file_rss);
116         }
117
118         set_pte_at(mm, addr, pte, pgoff_to_pte(pgoff));
119         pte_val = *pte;
120         update_mmu_cache(vma, addr, pte_val);
121         pte_unmap_unlock(pte, ptl);
122         err = 0;
123 out:
124         return err;
125 }
126
127 /***
128  * sys_remap_file_pages - remap arbitrary pages of a shared backing store
129  *                        file within an existing vma.
130  * @start: start of the remapped virtual memory range
131  * @size: size of the remapped virtual memory range
132  * @prot: new protection bits of the range
133  * @pgoff: to be mapped page of the backing store file
134  * @flags: 0 or MAP_NONBLOCKED - the later will cause no IO.
135  *
136  * this syscall works purely via pagetables, so it's the most efficient
137  * way to map the same (large) file into a given virtual window. Unlike
138  * mmap()/mremap() it does not create any new vmas. The new mappings are
139  * also safe across swapout.
140  *
141  * NOTE: the 'prot' parameter right now is ignored, and the vma's default
142  * protection is used. Arbitrary protections might be implemented in the
143  * future.
144  */
145 asmlinkage long sys_remap_file_pages(unsigned long start, unsigned long size,
146         unsigned long __prot, unsigned long pgoff, unsigned long flags)
147 {
148         struct mm_struct *mm = current->mm;
149         struct address_space *mapping;
150         unsigned long end = start + size;
151         struct vm_area_struct *vma;
152         int err = -EINVAL;
153         int has_write_lock = 0;
154
155         if (__prot)
156                 return err;
157         /*
158          * Sanitize the syscall parameters:
159          */
160         start = start & PAGE_MASK;
161         size = size & PAGE_MASK;
162
163         /* Does the address range wrap, or is the span zero-sized? */
164         if (start + size <= start)
165                 return err;
166
167         /* Can we represent this offset inside this architecture's pte's? */
168 #if PTE_FILE_MAX_BITS < BITS_PER_LONG
169         if (pgoff + (size >> PAGE_SHIFT) >= (1UL << PTE_FILE_MAX_BITS))
170                 return err;
171 #endif
172
173         /* We need down_write() to change vma->vm_flags. */
174         down_read(&mm->mmap_sem);
175  retry:
176         vma = find_vma(mm, start);
177
178         /*
179          * Make sure the vma is shared, that it supports prefaulting,
180          * and that the remapped range is valid and fully within
181          * the single existing vma.  vm_private_data is used as a
182          * swapout cursor in a VM_NONLINEAR vma.
183          */
184         if (vma && (vma->vm_flags & VM_SHARED) &&
185                 (!vma->vm_private_data || (vma->vm_flags & VM_NONLINEAR)) &&
186                 vma->vm_ops && vma->vm_ops->populate &&
187                         end > start && start >= vma->vm_start &&
188                                 end <= vma->vm_end) {
189
190                 /* Must set VM_NONLINEAR before any pages are populated. */
191                 if (pgoff != linear_page_index(vma, start) &&
192                     !(vma->vm_flags & VM_NONLINEAR)) {
193                         if (!has_write_lock) {
194                                 up_read(&mm->mmap_sem);
195                                 down_write(&mm->mmap_sem);
196                                 has_write_lock = 1;
197                                 goto retry;
198                         }
199                         mapping = vma->vm_file->f_mapping;
200                         spin_lock(&mapping->i_mmap_lock);
201                         flush_dcache_mmap_lock(mapping);
202                         vma->vm_flags |= VM_NONLINEAR;
203                         vma_prio_tree_remove(vma, &mapping->i_mmap);
204                         vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
205                         flush_dcache_mmap_unlock(mapping);
206                         spin_unlock(&mapping->i_mmap_lock);
207                 }
208
209                 err = vma->vm_ops->populate(vma, start, size,
210                                             vma->vm_page_prot,
211                                             pgoff, flags & MAP_NONBLOCK);
212
213                 /*
214                  * We can't clear VM_NONLINEAR because we'd have to do
215                  * it after ->populate completes, and that would prevent
216                  * downgrading the lock.  (Locks can't be upgraded).
217                  */
218         }
219         if (likely(!has_write_lock))
220                 up_read(&mm->mmap_sem);
221         else
222                 up_write(&mm->mmap_sem);
223
224         return err;
225 }
226