blob: bfd4ee59cb88d7ce10162bfcf3209701bdbc3bce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/swapfile.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 * Swap reorganised 29.12.95, Stephen Tweedie
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
9#include <linux/hugetlb.h>
10#include <linux/mman.h>
11#include <linux/slab.h>
12#include <linux/kernel_stat.h>
13#include <linux/swap.h>
14#include <linux/vmalloc.h>
15#include <linux/pagemap.h>
16#include <linux/namei.h>
17#include <linux/shm.h>
18#include <linux/blkdev.h>
19#include <linux/writeback.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
22#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/rmap.h>
25#include <linux/security.h>
26#include <linux/backing-dev.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -080027#include <linux/mutex.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080028#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/syscalls.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080030#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/pgtable.h>
33#include <asm/tlbflush.h>
34#include <linux/swapops.h>
35
Adrian Bunk7c363b82008-07-25 19:46:24 -070036static DEFINE_SPINLOCK(swap_lock);
37static unsigned int nr_swapfiles;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038long total_swap_pages;
39static int swap_overflow;
Hugh Dickins78ecba02008-07-23 21:28:23 -070040static int least_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static const char Bad_file[] = "Bad swap file entry ";
43static const char Unused_file[] = "Unused swap file entry ";
44static const char Bad_offset[] = "Bad swap offset entry ";
45static const char Unused_offset[] = "Unused swap offset entry ";
46
Adrian Bunk7c363b82008-07-25 19:46:24 -070047static struct swap_list_t swap_list = {-1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Rafael J. Wysockif577eb32006-03-23 02:59:59 -080049static struct swap_info_struct swap_info[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Ingo Molnarfc0abb12006-01-18 17:42:33 -080051static DEFINE_MUTEX(swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * We need this because the bdev->unplug_fn can sleep and we cannot
Hugh Dickins5d337b92005-09-03 15:54:41 -070055 * hold swap_lock while calling the unplug_fn. And swap_lock
Ingo Molnarfc0abb12006-01-18 17:42:33 -080056 * cannot be turned into a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
58static DECLARE_RWSEM(swap_unplug_sem);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
61{
62 swp_entry_t entry;
63
64 down_read(&swap_unplug_sem);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -070065 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (PageSwapCache(page)) {
67 struct block_device *bdev = swap_info[swp_type(entry)].bdev;
68 struct backing_dev_info *bdi;
69
70 /*
71 * If the page is removed from swapcache from under us (with a
72 * racy try_to_unuse/swapoff) we need an additional reference
Hugh Dickins4c21e2f2005-10-29 18:16:40 -070073 * count to avoid reading garbage from page_private(page) above.
74 * If the WARN_ON triggers during a swapoff it maybe the race
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * condition and it's harmless. However if it triggers without
76 * swapoff it signals a problem.
77 */
78 WARN_ON(page_count(page) <= 1);
79
80 bdi = bdev->bd_inode->i_mapping->backing_dev_info;
McMullan, Jasonba323112005-05-16 21:53:40 -070081 blk_run_backing_dev(bdi, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
83 up_read(&swap_unplug_sem);
84}
85
Hugh Dickins048c27f2005-09-03 15:54:40 -070086#define SWAPFILE_CLUSTER 256
87#define LATENCY_LIMIT 256
88
Hugh Dickins6eb396d2005-09-03 15:54:35 -070089static inline unsigned long scan_swap_map(struct swap_info_struct *si)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Hugh Dickins7dfad412005-09-03 15:54:38 -070091 unsigned long offset, last_in_cluster;
Hugh Dickins048c27f2005-09-03 15:54:40 -070092 int latency_ration = LATENCY_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Hugh Dickins7dfad412005-09-03 15:54:38 -070094 /*
95 * We try to cluster swap pages by allocating them sequentially
96 * in swap. Once we've allocated SWAPFILE_CLUSTER pages this
97 * way, however, we resort to first-free allocation, starting
98 * a new cluster. This prevents us from scattering swap pages
99 * all over the entire swap partition, so that we reduce
100 * overall disk seek times between swap pages. -- sct
101 * But we do now try to find an empty cluster. -Andrea
102 */
103
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700104 si->flags += SWP_SCANNING;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700105 if (unlikely(!si->cluster_nr)) {
106 si->cluster_nr = SWAPFILE_CLUSTER - 1;
107 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER)
108 goto lowest;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700109 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700110
111 offset = si->lowest_bit;
112 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
113
114 /* Locate the first empty (unaligned) cluster */
115 for (; last_in_cluster <= si->highest_bit; offset++) {
116 if (si->swap_map[offset])
117 last_in_cluster = offset + SWAPFILE_CLUSTER;
118 else if (offset == last_in_cluster) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700119 spin_lock(&swap_lock);
Akinobu Mita9b65ef52006-03-22 00:09:09 -0800120 si->cluster_next = offset-SWAPFILE_CLUSTER+1;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700121 goto cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700123 if (unlikely(--latency_ration < 0)) {
124 cond_resched();
125 latency_ration = LATENCY_LIMIT;
126 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700127 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700128 spin_lock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700129 goto lowest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700131
132 si->cluster_nr--;
133cluster:
134 offset = si->cluster_next;
135 if (offset > si->highest_bit)
136lowest: offset = si->lowest_bit;
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700137checks: if (!(si->flags & SWP_WRITEOK))
138 goto no_page;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700139 if (!si->highest_bit)
140 goto no_page;
141 if (!si->swap_map[offset]) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700142 if (offset == si->lowest_bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 si->lowest_bit++;
144 if (offset == si->highest_bit)
145 si->highest_bit--;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700146 si->inuse_pages++;
147 if (si->inuse_pages == si->pages) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 si->lowest_bit = si->max;
149 si->highest_bit = 0;
150 }
151 si->swap_map[offset] = 1;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700152 si->cluster_next = offset + 1;
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700153 si->flags -= SWP_SCANNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return offset;
155 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700156
Hugh Dickins5d337b92005-09-03 15:54:41 -0700157 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700158 while (++offset <= si->highest_bit) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700159 if (!si->swap_map[offset]) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700160 spin_lock(&swap_lock);
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700161 goto checks;
162 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700163 if (unlikely(--latency_ration < 0)) {
164 cond_resched();
165 latency_ration = LATENCY_LIMIT;
166 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700167 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700168 spin_lock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700169 goto lowest;
170
171no_page:
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700172 si->flags -= SWP_SCANNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 0;
174}
175
176swp_entry_t get_swap_page(void)
177{
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700178 struct swap_info_struct *si;
179 pgoff_t offset;
180 int type, next;
181 int wrapped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Hugh Dickins5d337b92005-09-03 15:54:41 -0700183 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (nr_swap_pages <= 0)
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700185 goto noswap;
186 nr_swap_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700188 for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
189 si = swap_info + type;
190 next = si->next;
191 if (next < 0 ||
192 (!wrapped && si->prio != swap_info[next].prio)) {
193 next = swap_list.head;
194 wrapped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700196
197 if (!si->highest_bit)
198 continue;
199 if (!(si->flags & SWP_WRITEOK))
200 continue;
201
202 swap_list.next = next;
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700203 offset = scan_swap_map(si);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700204 if (offset) {
205 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700206 return swp_entry(type, offset);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700207 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700208 next = swap_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700210
211 nr_swap_pages++;
212noswap:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700213 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700214 return (swp_entry_t) {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Rafael J. Wysocki3a291a22006-01-06 00:16:37 -0800217swp_entry_t get_swap_page_of_type(int type)
218{
219 struct swap_info_struct *si;
220 pgoff_t offset;
221
222 spin_lock(&swap_lock);
223 si = swap_info + type;
224 if (si->flags & SWP_WRITEOK) {
225 nr_swap_pages--;
226 offset = scan_swap_map(si);
227 if (offset) {
228 spin_unlock(&swap_lock);
229 return swp_entry(type, offset);
230 }
231 nr_swap_pages++;
232 }
233 spin_unlock(&swap_lock);
234 return (swp_entry_t) {0};
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237static struct swap_info_struct * swap_info_get(swp_entry_t entry)
238{
239 struct swap_info_struct * p;
240 unsigned long offset, type;
241
242 if (!entry.val)
243 goto out;
244 type = swp_type(entry);
245 if (type >= nr_swapfiles)
246 goto bad_nofile;
247 p = & swap_info[type];
248 if (!(p->flags & SWP_USED))
249 goto bad_device;
250 offset = swp_offset(entry);
251 if (offset >= p->max)
252 goto bad_offset;
253 if (!p->swap_map[offset])
254 goto bad_free;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700255 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return p;
257
258bad_free:
259 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
260 goto out;
261bad_offset:
262 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
263 goto out;
264bad_device:
265 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
266 goto out;
267bad_nofile:
268 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
269out:
270 return NULL;
271}
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static int swap_entry_free(struct swap_info_struct *p, unsigned long offset)
274{
275 int count = p->swap_map[offset];
276
277 if (count < SWAP_MAP_MAX) {
278 count--;
279 p->swap_map[offset] = count;
280 if (!count) {
281 if (offset < p->lowest_bit)
282 p->lowest_bit = offset;
283 if (offset > p->highest_bit)
284 p->highest_bit = offset;
Hugh Dickins89d09a22005-09-03 15:54:36 -0700285 if (p->prio > swap_info[swap_list.next].prio)
286 swap_list.next = p - swap_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 nr_swap_pages++;
288 p->inuse_pages--;
289 }
290 }
291 return count;
292}
293
294/*
295 * Caller has made sure that the swapdevice corresponding to entry
296 * is still around or has not been recycled.
297 */
298void swap_free(swp_entry_t entry)
299{
300 struct swap_info_struct * p;
301
302 p = swap_info_get(entry);
303 if (p) {
304 swap_entry_free(p, swp_offset(entry));
Hugh Dickins5d337b92005-09-03 15:54:41 -0700305 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307}
308
309/*
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700310 * How many references to page are currently swapped out?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700312static inline int page_swapcount(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700314 int count = 0;
315 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 swp_entry_t entry;
317
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700318 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 p = swap_info_get(entry);
320 if (p) {
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700321 /* Subtract the 1 for the swap cache itself */
322 count = p->swap_map[swp_offset(entry)] - 1;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700323 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700325 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/*
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800329 * We can write to an anon page without COW if there are no other references
330 * to it. And as a side-effect, free up its swap: because the old content
331 * on disk will never be read, and seeking back there to write new content
332 * later would only waste time away from clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800334int reuse_swap_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700336 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Hugh Dickins51726b12009-01-06 14:39:25 -0800338 VM_BUG_ON(!PageLocked(page));
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700339 count = page_mapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800340 if (count <= 1 && PageSwapCache(page)) {
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700341 count += page_swapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800342 if (count == 1 && !PageWriteback(page)) {
343 delete_from_swap_cache(page);
344 SetPageDirty(page);
345 }
346 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700347 return count == 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/*
351 * Work out if there are any other processes sharing this
352 * swap cache page. Free it if you can. Return success.
353 */
Rik van Riel68a223942008-10-18 20:26:23 -0700354static int remove_exclusive_swap_page_count(struct page *page, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 int retval;
357 struct swap_info_struct * p;
358 swp_entry_t entry;
359
Hugh Dickins51726b12009-01-06 14:39:25 -0800360 VM_BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (!PageSwapCache(page))
363 return 0;
364 if (PageWriteback(page))
365 return 0;
Rik van Riel68a223942008-10-18 20:26:23 -0700366 if (page_count(page) != count) /* us + cache + ptes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700369 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 p = swap_info_get(entry);
371 if (!p)
372 return 0;
373
374 /* Is the only swap cache user the cache itself? */
375 retval = 0;
376 if (p->swap_map[swp_offset(entry)] == 1) {
377 /* Recheck the page count with the swapcache lock held.. */
Nick Piggin19fd6232008-07-25 19:45:32 -0700378 spin_lock_irq(&swapper_space.tree_lock);
Rik van Riel68a223942008-10-18 20:26:23 -0700379 if ((page_count(page) == count) && !PageWriteback(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 __delete_from_swap_cache(page);
381 SetPageDirty(page);
382 retval = 1;
383 }
Nick Piggin19fd6232008-07-25 19:45:32 -0700384 spin_unlock_irq(&swapper_space.tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700386 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (retval) {
389 swap_free(entry);
390 page_cache_release(page);
391 }
392
393 return retval;
394}
395
396/*
Rik van Riel68a223942008-10-18 20:26:23 -0700397 * Most of the time the page should have two references: one for the
398 * process and one for the swap cache.
399 */
400int remove_exclusive_swap_page(struct page *page)
401{
402 return remove_exclusive_swap_page_count(page, 2);
403}
404
405/*
406 * The pageout code holds an extra reference to the page. That raises
407 * the reference count to test for to 2 for a page that is only in the
408 * swap cache plus 1 for each process that maps the page.
409 */
410int remove_exclusive_swap_page_ref(struct page *page)
411{
412 return remove_exclusive_swap_page_count(page, 2 + page_mapcount(page));
413}
414
415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * Free the swap entry like above, but also try to
417 * free the page cache entry if it is the last user.
418 */
419void free_swap_and_cache(swp_entry_t entry)
420{
421 struct swap_info_struct * p;
422 struct page *page = NULL;
423
Christoph Lameter06972122006-06-23 02:03:35 -0700424 if (is_migration_entry(entry))
425 return;
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 p = swap_info_get(entry);
428 if (p) {
Nick Piggin93fac702006-03-31 02:29:56 -0800429 if (swap_entry_free(p, swp_offset(entry)) == 1) {
430 page = find_get_page(&swapper_space, entry.val);
Nick Piggin8413ac92008-10-18 20:26:59 -0700431 if (page && !trylock_page(page)) {
Nick Piggin93fac702006-03-31 02:29:56 -0800432 page_cache_release(page);
433 page = NULL;
434 }
435 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700436 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438 if (page) {
439 int one_user;
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 one_user = (page_count(page) == 2);
442 /* Only cache user (+us), or swap space full? Free it! */
Nick Piggin93fac702006-03-31 02:29:56 -0800443 /* Also recheck PageSwapCache after page is locked (above) */
444 if (PageSwapCache(page) && !PageWriteback(page) &&
445 (one_user || vm_swap_full())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 delete_from_swap_cache(page);
447 SetPageDirty(page);
448 }
449 unlock_page(page);
450 page_cache_release(page);
451 }
452}
453
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200454#ifdef CONFIG_HIBERNATION
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800455/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800456 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800457 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800458 * @offset - number of the PAGE_SIZE-sized block of the device, starting
459 * from 0, in which the swap header is expected to be located.
460 *
461 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800462 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800463int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800464{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800465 struct block_device *bdev = NULL;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800466 int i;
467
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800468 if (device)
469 bdev = bdget(device);
470
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800471 spin_lock(&swap_lock);
472 for (i = 0; i < nr_swapfiles; i++) {
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800473 struct swap_info_struct *sis = swap_info + i;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800474
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800475 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800476 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -0700477
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800478 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800479 if (bdev_p)
480 *bdev_p = sis->bdev;
481
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800482 spin_unlock(&swap_lock);
483 return i;
484 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800485 if (bdev == sis->bdev) {
486 struct swap_extent *se;
487
488 se = list_entry(sis->extent_list.next,
489 struct swap_extent, list);
490 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800491 if (bdev_p)
492 *bdev_p = sis->bdev;
493
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800494 spin_unlock(&swap_lock);
495 bdput(bdev);
496 return i;
497 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800498 }
499 }
500 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800501 if (bdev)
502 bdput(bdev);
503
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800504 return -ENODEV;
505}
506
507/*
508 * Return either the total number of swap pages of given type, or the number
509 * of free pages of that type (depending on @free)
510 *
511 * This is needed for software suspend
512 */
513unsigned int count_swap_pages(int type, int free)
514{
515 unsigned int n = 0;
516
517 if (type < nr_swapfiles) {
518 spin_lock(&swap_lock);
519 if (swap_info[type].flags & SWP_WRITEOK) {
520 n = swap_info[type].pages;
521 if (free)
522 n -= swap_info[type].inuse_pages;
523 }
524 spin_unlock(&swap_lock);
525 }
526 return n;
527}
528#endif
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/*
Hugh Dickins72866f62005-10-29 18:15:55 -0700531 * No need to decide whether this PTE shares the swap entry with others,
532 * just let do_wp_page work it out if a write is requested later - to
533 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Hugh Dickins044d66c2008-02-07 00:14:04 -0800535static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned long addr, swp_entry_t entry, struct page *page)
537{
Hugh Dickins044d66c2008-02-07 00:14:04 -0800538 spinlock_t *ptl;
539 pte_t *pte;
540 int ret = 1;
541
Balbir Singhe1a1cd52008-02-07 00:14:02 -0800542 if (mem_cgroup_charge(page, vma->vm_mm, GFP_KERNEL))
Hugh Dickins044d66c2008-02-07 00:14:04 -0800543 ret = -ENOMEM;
544
545 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
546 if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
547 if (ret > 0)
548 mem_cgroup_uncharge_page(page);
549 ret = 0;
550 goto out;
551 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800552
Hugh Dickins42946212005-10-29 18:16:05 -0700553 inc_mm_counter(vma->vm_mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 get_page(page);
555 set_pte_at(vma->vm_mm, addr, pte,
556 pte_mkold(mk_pte(page, vma->vm_page_prot)));
557 page_add_anon_rmap(page, vma, addr);
558 swap_free(entry);
559 /*
560 * Move the page to the active list so it is not
561 * immediately swapped out again after swapon.
562 */
563 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800564out:
565 pte_unmap_unlock(pte, ptl);
566 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
570 unsigned long addr, unsigned long end,
571 swp_entry_t entry, struct page *page)
572{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700574 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800575 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Hugh Dickins044d66c2008-02-07 00:14:04 -0800577 /*
578 * We don't actually need pte lock while scanning for swp_pte: since
579 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
580 * page table while we're scanning; though it could get zapped, and on
581 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
582 * of unmatched parts which look like swp_pte, so unuse_pte must
583 * recheck under pte lock. Scanning without pte lock lets it be
584 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
585 */
586 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 do {
588 /*
589 * swapoff spends a _lot_ of time in this loop!
590 * Test inline before going to call unuse_pte.
591 */
592 if (unlikely(pte_same(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800593 pte_unmap(pte);
594 ret = unuse_pte(vma, pmd, addr, entry, page);
595 if (ret)
596 goto out;
597 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800600 pte_unmap(pte - 1);
601out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800602 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
606 unsigned long addr, unsigned long end,
607 swp_entry_t entry, struct page *page)
608{
609 pmd_t *pmd;
610 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800611 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 pmd = pmd_offset(pud, addr);
614 do {
615 next = pmd_addr_end(addr, end);
616 if (pmd_none_or_clear_bad(pmd))
617 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800618 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
619 if (ret)
620 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 } while (pmd++, addr = next, addr != end);
622 return 0;
623}
624
625static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
626 unsigned long addr, unsigned long end,
627 swp_entry_t entry, struct page *page)
628{
629 pud_t *pud;
630 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800631 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 pud = pud_offset(pgd, addr);
634 do {
635 next = pud_addr_end(addr, end);
636 if (pud_none_or_clear_bad(pud))
637 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800638 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
639 if (ret)
640 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 } while (pud++, addr = next, addr != end);
642 return 0;
643}
644
645static int unuse_vma(struct vm_area_struct *vma,
646 swp_entry_t entry, struct page *page)
647{
648 pgd_t *pgd;
649 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800650 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 if (page->mapping) {
653 addr = page_address_in_vma(page, vma);
654 if (addr == -EFAULT)
655 return 0;
656 else
657 end = addr + PAGE_SIZE;
658 } else {
659 addr = vma->vm_start;
660 end = vma->vm_end;
661 }
662
663 pgd = pgd_offset(vma->vm_mm, addr);
664 do {
665 next = pgd_addr_end(addr, end);
666 if (pgd_none_or_clear_bad(pgd))
667 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800668 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
669 if (ret)
670 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 } while (pgd++, addr = next, addr != end);
672 return 0;
673}
674
675static int unuse_mm(struct mm_struct *mm,
676 swp_entry_t entry, struct page *page)
677{
678 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800679 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if (!down_read_trylock(&mm->mmap_sem)) {
682 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -0700683 * Activate page so shrink_inactive_list is unlikely to unmap
684 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700686 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unlock_page(page);
688 down_read(&mm->mmap_sem);
689 lock_page(page);
690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800692 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 break;
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800696 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699/*
700 * Scan swap_map from current position to next entry still in use.
701 * Recycle to start on reaching the end, returning 0 when empty.
702 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700703static unsigned int find_next_to_unuse(struct swap_info_struct *si,
704 unsigned int prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700706 unsigned int max = si->max;
707 unsigned int i = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 int count;
709
710 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -0700711 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 * for whether an entry is in use, not modifying it; false
713 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -0700714 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 */
716 for (;;) {
717 if (++i >= max) {
718 if (!prev) {
719 i = 0;
720 break;
721 }
722 /*
723 * No entries in use at top of swap_map,
724 * loop back to start and recheck there.
725 */
726 max = prev + 1;
727 prev = 0;
728 i = 1;
729 }
730 count = si->swap_map[i];
731 if (count && count != SWAP_MAP_BAD)
732 break;
733 }
734 return i;
735}
736
737/*
738 * We completely avoid races by reading each swap page in advance,
739 * and then search for the process using it. All the necessary
740 * page table adjustments can then be made atomically.
741 */
742static int try_to_unuse(unsigned int type)
743{
744 struct swap_info_struct * si = &swap_info[type];
745 struct mm_struct *start_mm;
746 unsigned short *swap_map;
747 unsigned short swcount;
748 struct page *page;
749 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700750 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 int retval = 0;
752 int reset_overflow = 0;
753 int shmem;
754
755 /*
756 * When searching mms for an entry, a good strategy is to
757 * start at the first mm we freed the previous entry from
758 * (though actually we don't notice whether we or coincidence
759 * freed the entry). Initialize this start_mm with a hold.
760 *
761 * A simpler strategy would be to start at the last mm we
762 * freed the previous entry from; but that would take less
763 * advantage of mmlist ordering, which clusters forked mms
764 * together, child after parent. If we race with dup_mmap(), we
765 * prefer to resolve parent before child, lest we miss entries
766 * duplicated after we scanned child: using last mm would invert
767 * that. Though it's only a serious concern when an overflowed
768 * swap count is reset from SWAP_MAP_MAX, preventing a rescan.
769 */
770 start_mm = &init_mm;
771 atomic_inc(&init_mm.mm_users);
772
773 /*
774 * Keep on scanning until all entries have gone. Usually,
775 * one pass through swap_map is enough, but not necessarily:
776 * there are races when an instance of an entry might be missed.
777 */
778 while ((i = find_next_to_unuse(si, i)) != 0) {
779 if (signal_pending(current)) {
780 retval = -EINTR;
781 break;
782 }
783
784 /*
785 * Get a page for the entry, using the existing swap
786 * cache page if there is one. Otherwise, get a clean
787 * page and read the swap into it.
788 */
789 swap_map = &si->swap_map[i];
790 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -0800791 page = read_swap_cache_async(entry,
792 GFP_HIGHUSER_MOVABLE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (!page) {
794 /*
795 * Either swap_duplicate() failed because entry
796 * has been freed independently, and will not be
797 * reused since sys_swapoff() already disabled
798 * allocation from here, or alloc_page() failed.
799 */
800 if (!*swap_map)
801 continue;
802 retval = -ENOMEM;
803 break;
804 }
805
806 /*
807 * Don't hold on to start_mm if it looks like exiting.
808 */
809 if (atomic_read(&start_mm->mm_users) == 1) {
810 mmput(start_mm);
811 start_mm = &init_mm;
812 atomic_inc(&init_mm.mm_users);
813 }
814
815 /*
816 * Wait for and lock page. When do_swap_page races with
817 * try_to_unuse, do_swap_page can handle the fault much
818 * faster than try_to_unuse can locate the entry. This
819 * apparently redundant "wait_on_page_locked" lets try_to_unuse
820 * defer to do_swap_page in such a case - in some tests,
821 * do_swap_page and try_to_unuse repeatedly compete.
822 */
823 wait_on_page_locked(page);
824 wait_on_page_writeback(page);
825 lock_page(page);
826 wait_on_page_writeback(page);
827
828 /*
829 * Remove all references to entry.
830 * Whenever we reach init_mm, there's no address space
831 * to search, but use it as a reminder to search shmem.
832 */
833 shmem = 0;
834 swcount = *swap_map;
835 if (swcount > 1) {
836 if (start_mm == &init_mm)
837 shmem = shmem_unuse(entry, page);
838 else
839 retval = unuse_mm(start_mm, entry, page);
840 }
841 if (*swap_map > 1) {
842 int set_start_mm = (*swap_map >= swcount);
843 struct list_head *p = &start_mm->mmlist;
844 struct mm_struct *new_start_mm = start_mm;
845 struct mm_struct *prev_mm = start_mm;
846 struct mm_struct *mm;
847
848 atomic_inc(&new_start_mm->mm_users);
849 atomic_inc(&prev_mm->mm_users);
850 spin_lock(&mmlist_lock);
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800851 while (*swap_map > 1 && !retval && !shmem &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 (p = p->next) != &start_mm->mmlist) {
853 mm = list_entry(p, struct mm_struct, mmlist);
Hugh Dickins70af7c52006-06-23 02:03:44 -0700854 if (!atomic_inc_not_zero(&mm->mm_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 spin_unlock(&mmlist_lock);
857 mmput(prev_mm);
858 prev_mm = mm;
859
860 cond_resched();
861
862 swcount = *swap_map;
863 if (swcount <= 1)
864 ;
865 else if (mm == &init_mm) {
866 set_start_mm = 1;
867 shmem = shmem_unuse(entry, page);
868 } else
869 retval = unuse_mm(mm, entry, page);
870 if (set_start_mm && *swap_map < swcount) {
871 mmput(new_start_mm);
872 atomic_inc(&mm->mm_users);
873 new_start_mm = mm;
874 set_start_mm = 0;
875 }
876 spin_lock(&mmlist_lock);
877 }
878 spin_unlock(&mmlist_lock);
879 mmput(prev_mm);
880 mmput(start_mm);
881 start_mm = new_start_mm;
882 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800883 if (shmem) {
884 /* page has already been unlocked and released */
885 if (shmem > 0)
886 continue;
887 retval = shmem;
888 break;
889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (retval) {
891 unlock_page(page);
892 page_cache_release(page);
893 break;
894 }
895
896 /*
897 * How could swap count reach 0x7fff when the maximum
898 * pid is 0x7fff, and there's no way to repeat a swap
899 * page within an mm (except in shmem, where it's the
900 * shared object which takes the reference count)?
901 * We believe SWAP_MAP_MAX cannot occur in Linux 2.4.
902 *
903 * If that's wrong, then we should worry more about
904 * exit_mmap() and do_munmap() cases described above:
905 * we might be resetting SWAP_MAP_MAX too early here.
906 * We know "Undead"s can happen, they're okay, so don't
907 * report them; but do report if we reset SWAP_MAP_MAX.
908 */
909 if (*swap_map == SWAP_MAP_MAX) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700910 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 *swap_map = 1;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700912 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 reset_overflow = 1;
914 }
915
916 /*
917 * If a reference remains (rare), we would like to leave
918 * the page in the swap cache; but try_to_unmap could
919 * then re-duplicate the entry once we drop page lock,
920 * so we might loop indefinitely; also, that page could
921 * not be swapped out to other storage meanwhile. So:
922 * delete from cache even if there's another reference,
923 * after ensuring that the data has been saved to disk -
924 * since if the reference remains (rarer), it will be
925 * read from disk into another page. Splitting into two
926 * pages would be incorrect if swap supported "shared
927 * private" pages, but they are handled by tmpfs files.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 */
929 if ((*swap_map > 1) && PageDirty(page) && PageSwapCache(page)) {
930 struct writeback_control wbc = {
931 .sync_mode = WB_SYNC_NONE,
932 };
933
934 swap_writepage(page, &wbc);
935 lock_page(page);
936 wait_on_page_writeback(page);
937 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -0800938 if (PageSwapCache(page))
939 delete_from_swap_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /*
942 * So we could skip searching mms once swap count went
943 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -0700944 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 */
946 SetPageDirty(page);
947 unlock_page(page);
948 page_cache_release(page);
949
950 /*
951 * Make sure that we aren't completely killing
952 * interactive performance.
953 */
954 cond_resched();
955 }
956
957 mmput(start_mm);
958 if (reset_overflow) {
959 printk(KERN_WARNING "swapoff: cleared swap entry overflow\n");
960 swap_overflow = 0;
961 }
962 return retval;
963}
964
965/*
Hugh Dickins5d337b92005-09-03 15:54:41 -0700966 * After a successful try_to_unuse, if no swap is now in use, we know
967 * we can empty the mmlist. swap_lock must be held on entry and exit.
968 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 * added to the mmlist just after page_duplicate - before would be racy.
970 */
971static void drain_mmlist(void)
972{
973 struct list_head *p, *next;
974 unsigned int i;
975
976 for (i = 0; i < nr_swapfiles; i++)
977 if (swap_info[i].inuse_pages)
978 return;
979 spin_lock(&mmlist_lock);
980 list_for_each_safe(p, next, &init_mm.mmlist)
981 list_del_init(p);
982 spin_unlock(&mmlist_lock);
983}
984
985/*
986 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
987 * corresponds to page offset `offset'.
988 */
989sector_t map_swap_page(struct swap_info_struct *sis, pgoff_t offset)
990{
991 struct swap_extent *se = sis->curr_swap_extent;
992 struct swap_extent *start_se = se;
993
994 for ( ; ; ) {
995 struct list_head *lh;
996
997 if (se->start_page <= offset &&
998 offset < (se->start_page + se->nr_pages)) {
999 return se->start_block + (offset - se->start_page);
1000 }
Hugh Dickins11d31882005-09-03 15:54:34 -07001001 lh = se->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (lh == &sis->extent_list)
Hugh Dickins11d31882005-09-03 15:54:34 -07001003 lh = lh->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 se = list_entry(lh, struct swap_extent, list);
1005 sis->curr_swap_extent = se;
1006 BUG_ON(se == start_se); /* It *must* be present */
1007 }
1008}
1009
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001010#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001011/*
1012 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
1013 * corresponding to given index in swap_info (swap type).
1014 */
1015sector_t swapdev_block(int swap_type, pgoff_t offset)
1016{
1017 struct swap_info_struct *sis;
1018
1019 if (swap_type >= nr_swapfiles)
1020 return 0;
1021
1022 sis = swap_info + swap_type;
1023 return (sis->flags & SWP_WRITEOK) ? map_swap_page(sis, offset) : 0;
1024}
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001025#endif /* CONFIG_HIBERNATION */
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/*
1028 * Free all of a swapdev's extent information
1029 */
1030static void destroy_swap_extents(struct swap_info_struct *sis)
1031{
1032 while (!list_empty(&sis->extent_list)) {
1033 struct swap_extent *se;
1034
1035 se = list_entry(sis->extent_list.next,
1036 struct swap_extent, list);
1037 list_del(&se->list);
1038 kfree(se);
1039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042/*
1043 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07001044 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 *
Hugh Dickins11d31882005-09-03 15:54:34 -07001046 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
1048static int
1049add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1050 unsigned long nr_pages, sector_t start_block)
1051{
1052 struct swap_extent *se;
1053 struct swap_extent *new_se;
1054 struct list_head *lh;
1055
Hugh Dickins11d31882005-09-03 15:54:34 -07001056 lh = sis->extent_list.prev; /* The highest page extent */
1057 if (lh != &sis->extent_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07001059 BUG_ON(se->start_page + se->nr_pages != start_page);
1060 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 /* Merge it */
1062 se->nr_pages += nr_pages;
1063 return 0;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
1067 /*
1068 * No merge. Insert a new extent, preserving ordering.
1069 */
1070 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1071 if (new_se == NULL)
1072 return -ENOMEM;
1073 new_se->start_page = start_page;
1074 new_se->nr_pages = nr_pages;
1075 new_se->start_block = start_block;
1076
Hugh Dickins11d31882005-09-03 15:54:34 -07001077 list_add_tail(&new_se->list, &sis->extent_list);
Hugh Dickins53092a72005-09-03 15:54:34 -07001078 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
1081/*
1082 * A `swap extent' is a simple thing which maps a contiguous range of pages
1083 * onto a contiguous range of disk blocks. An ordered list of swap extents
1084 * is built at swapon time and is then used at swap_writepage/swap_readpage
1085 * time for locating where on disk a page belongs.
1086 *
1087 * If the swapfile is an S_ISBLK block device, a single extent is installed.
1088 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1089 * swap files identically.
1090 *
1091 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1092 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
1093 * swapfiles are handled *identically* after swapon time.
1094 *
1095 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1096 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
1097 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1098 * requirements, they are simply tossed out - we will never use those blocks
1099 * for swapping.
1100 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07001101 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1103 * which will scribble on the fs.
1104 *
1105 * The amount of disk space which a single swap extent represents varies.
1106 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
1107 * extents in the list. To avoid much list walking, we cache the previous
1108 * search location in `curr_swap_extent', and start new searches from there.
1109 * This is extremely effective. The average number of iterations in
1110 * map_swap_page() has been measured at about 0.3 per page. - akpm.
1111 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001112static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 struct inode *inode;
1115 unsigned blocks_per_page;
1116 unsigned long page_no;
1117 unsigned blkbits;
1118 sector_t probe_block;
1119 sector_t last_block;
Hugh Dickins53092a72005-09-03 15:54:34 -07001120 sector_t lowest_block = -1;
1121 sector_t highest_block = 0;
1122 int nr_extents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 int ret;
1124
1125 inode = sis->swap_file->f_mapping->host;
1126 if (S_ISBLK(inode->i_mode)) {
1127 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07001128 *span = sis->pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 goto done;
1130 }
1131
1132 blkbits = inode->i_blkbits;
1133 blocks_per_page = PAGE_SIZE >> blkbits;
1134
1135 /*
1136 * Map all the blocks into the extent list. This code doesn't try
1137 * to be very smart.
1138 */
1139 probe_block = 0;
1140 page_no = 0;
1141 last_block = i_size_read(inode) >> blkbits;
1142 while ((probe_block + blocks_per_page) <= last_block &&
1143 page_no < sis->max) {
1144 unsigned block_in_page;
1145 sector_t first_block;
1146
1147 first_block = bmap(inode, probe_block);
1148 if (first_block == 0)
1149 goto bad_bmap;
1150
1151 /*
1152 * It must be PAGE_SIZE aligned on-disk
1153 */
1154 if (first_block & (blocks_per_page - 1)) {
1155 probe_block++;
1156 goto reprobe;
1157 }
1158
1159 for (block_in_page = 1; block_in_page < blocks_per_page;
1160 block_in_page++) {
1161 sector_t block;
1162
1163 block = bmap(inode, probe_block + block_in_page);
1164 if (block == 0)
1165 goto bad_bmap;
1166 if (block != first_block + block_in_page) {
1167 /* Discontiguity */
1168 probe_block++;
1169 goto reprobe;
1170 }
1171 }
1172
Hugh Dickins53092a72005-09-03 15:54:34 -07001173 first_block >>= (PAGE_SHIFT - blkbits);
1174 if (page_no) { /* exclude the header page */
1175 if (first_block < lowest_block)
1176 lowest_block = first_block;
1177 if (first_block > highest_block)
1178 highest_block = first_block;
1179 }
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /*
1182 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1183 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001184 ret = add_swap_extent(sis, page_no, 1, first_block);
1185 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 goto out;
Hugh Dickins53092a72005-09-03 15:54:34 -07001187 nr_extents += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 page_no++;
1189 probe_block += blocks_per_page;
1190reprobe:
1191 continue;
1192 }
Hugh Dickins53092a72005-09-03 15:54:34 -07001193 ret = nr_extents;
1194 *span = 1 + highest_block - lowest_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (page_no == 0)
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001196 page_no = 1; /* force Empty message */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 sis->max = page_no;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001198 sis->pages = page_no - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 sis->highest_bit = page_no - 1;
1200done:
1201 sis->curr_swap_extent = list_entry(sis->extent_list.prev,
1202 struct swap_extent, list);
1203 goto out;
1204bad_bmap:
1205 printk(KERN_ERR "swapon: swapfile has holes\n");
1206 ret = -EINVAL;
1207out:
1208 return ret;
1209}
1210
1211#if 0 /* We don't need this yet */
1212#include <linux/backing-dev.h>
1213int page_queue_congested(struct page *page)
1214{
1215 struct backing_dev_info *bdi;
1216
Hugh Dickins51726b12009-01-06 14:39:25 -08001217 VM_BUG_ON(!PageLocked(page)); /* It pins the swap_info_struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 if (PageSwapCache(page)) {
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001220 swp_entry_t entry = { .val = page_private(page) };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct swap_info_struct *sis;
1222
1223 sis = get_swap_info_struct(swp_type(entry));
1224 bdi = sis->bdev->bd_inode->i_mapping->backing_dev_info;
1225 } else
1226 bdi = page->mapping->backing_dev_info;
1227 return bdi_write_congested(bdi);
1228}
1229#endif
1230
1231asmlinkage long sys_swapoff(const char __user * specialfile)
1232{
1233 struct swap_info_struct * p = NULL;
1234 unsigned short *swap_map;
1235 struct file *swap_file, *victim;
1236 struct address_space *mapping;
1237 struct inode *inode;
1238 char * pathname;
1239 int i, type, prev;
1240 int err;
1241
1242 if (!capable(CAP_SYS_ADMIN))
1243 return -EPERM;
1244
1245 pathname = getname(specialfile);
1246 err = PTR_ERR(pathname);
1247 if (IS_ERR(pathname))
1248 goto out;
1249
1250 victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1251 putname(pathname);
1252 err = PTR_ERR(victim);
1253 if (IS_ERR(victim))
1254 goto out;
1255
1256 mapping = victim->f_mapping;
1257 prev = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001258 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 for (type = swap_list.head; type >= 0; type = swap_info[type].next) {
1260 p = swap_info + type;
1261 if ((p->flags & SWP_ACTIVE) == SWP_ACTIVE) {
1262 if (p->swap_file->f_mapping == mapping)
1263 break;
1264 }
1265 prev = type;
1266 }
1267 if (type < 0) {
1268 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001269 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 goto out_dput;
1271 }
1272 if (!security_vm_enough_memory(p->pages))
1273 vm_unacct_memory(p->pages);
1274 else {
1275 err = -ENOMEM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001276 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 goto out_dput;
1278 }
1279 if (prev < 0) {
1280 swap_list.head = p->next;
1281 } else {
1282 swap_info[prev].next = p->next;
1283 }
1284 if (type == swap_list.next) {
1285 /* just pick something that's safe... */
1286 swap_list.next = swap_list.head;
1287 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07001288 if (p->prio < 0) {
1289 for (i = p->next; i >= 0; i = swap_info[i].next)
1290 swap_info[i].prio = p->prio--;
1291 least_priority++;
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 nr_swap_pages -= p->pages;
1294 total_swap_pages -= p->pages;
1295 p->flags &= ~SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001296 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 current->flags |= PF_SWAPOFF;
1299 err = try_to_unuse(type);
1300 current->flags &= ~PF_SWAPOFF;
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (err) {
1303 /* re-insert swap space back into swap_list */
Hugh Dickins5d337b92005-09-03 15:54:41 -07001304 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001305 if (p->prio < 0)
1306 p->prio = --least_priority;
1307 prev = -1;
1308 for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 if (p->prio >= swap_info[i].prio)
1310 break;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001311 prev = i;
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 p->next = i;
1314 if (prev < 0)
1315 swap_list.head = swap_list.next = p - swap_info;
1316 else
1317 swap_info[prev].next = p - swap_info;
1318 nr_swap_pages += p->pages;
1319 total_swap_pages += p->pages;
1320 p->flags |= SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001321 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 goto out_dput;
1323 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001324
1325 /* wait for any unplug function to finish */
1326 down_write(&swap_unplug_sem);
1327 up_write(&swap_unplug_sem);
1328
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001329 destroy_swap_extents(p);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001330 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001331 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07001333
1334 /* wait for anyone still in scan_swap_map */
1335 p->highest_bit = 0; /* cuts scans short */
1336 while (p->flags >= SWP_SCANNING) {
1337 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07001338 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001339 spin_lock(&swap_lock);
1340 }
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 swap_file = p->swap_file;
1343 p->swap_file = NULL;
1344 p->max = 0;
1345 swap_map = p->swap_map;
1346 p->swap_map = NULL;
1347 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001348 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001349 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 vfree(swap_map);
1351 inode = mapping->host;
1352 if (S_ISBLK(inode->i_mode)) {
1353 struct block_device *bdev = I_BDEV(inode);
1354 set_blocksize(bdev, p->old_block_size);
1355 bd_release(bdev);
1356 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001357 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 inode->i_flags &= ~S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001359 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361 filp_close(swap_file, NULL);
1362 err = 0;
1363
1364out_dput:
1365 filp_close(victim, NULL);
1366out:
1367 return err;
1368}
1369
1370#ifdef CONFIG_PROC_FS
1371/* iterator */
1372static void *swap_start(struct seq_file *swap, loff_t *pos)
1373{
1374 struct swap_info_struct *ptr = swap_info;
1375 int i;
1376 loff_t l = *pos;
1377
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001378 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001380 if (!l)
1381 return SEQ_START_TOKEN;
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 for (i = 0; i < nr_swapfiles; i++, ptr++) {
1384 if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
1385 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001386 if (!--l)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return ptr;
1388 }
1389
1390 return NULL;
1391}
1392
1393static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1394{
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001395 struct swap_info_struct *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 struct swap_info_struct *endptr = swap_info + nr_swapfiles;
1397
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001398 if (v == SEQ_START_TOKEN)
1399 ptr = swap_info;
1400 else {
1401 ptr = v;
1402 ptr++;
1403 }
1404
1405 for (; ptr < endptr; ptr++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (!(ptr->flags & SWP_USED) || !ptr->swap_map)
1407 continue;
1408 ++*pos;
1409 return ptr;
1410 }
1411
1412 return NULL;
1413}
1414
1415static void swap_stop(struct seq_file *swap, void *v)
1416{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001417 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
1420static int swap_show(struct seq_file *swap, void *v)
1421{
1422 struct swap_info_struct *ptr = v;
1423 struct file *file;
1424 int len;
1425
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001426 if (ptr == SEQ_START_TOKEN) {
1427 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1428 return 0;
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 file = ptr->swap_file;
Jan Blunckc32c2f62008-02-14 19:38:43 -08001432 len = seq_path(swap, &file->f_path, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001433 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 len < 40 ? 40 - len : 1, " ",
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08001435 S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 "partition" : "file\t",
1437 ptr->pages << (PAGE_SHIFT - 10),
1438 ptr->inuse_pages << (PAGE_SHIFT - 10),
1439 ptr->prio);
1440 return 0;
1441}
1442
Helge Deller15ad7cd2006-12-06 20:40:36 -08001443static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 .start = swap_start,
1445 .next = swap_next,
1446 .stop = swap_stop,
1447 .show = swap_show
1448};
1449
1450static int swaps_open(struct inode *inode, struct file *file)
1451{
1452 return seq_open(file, &swaps_op);
1453}
1454
Helge Deller15ad7cd2006-12-06 20:40:36 -08001455static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 .open = swaps_open,
1457 .read = seq_read,
1458 .llseek = seq_lseek,
1459 .release = seq_release,
1460};
1461
1462static int __init procswaps_init(void)
1463{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07001464 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return 0;
1466}
1467__initcall(procswaps_init);
1468#endif /* CONFIG_PROC_FS */
1469
Jan Beulich17963162008-12-16 11:35:24 +00001470#ifdef MAX_SWAPFILES_CHECK
1471static int __init max_swapfiles_check(void)
1472{
1473 MAX_SWAPFILES_CHECK();
1474 return 0;
1475}
1476late_initcall(max_swapfiles_check);
1477#endif
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479/*
1480 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1481 *
1482 * The swapon system call
1483 */
1484asmlinkage long sys_swapon(const char __user * specialfile, int swap_flags)
1485{
1486 struct swap_info_struct * p;
1487 char *name = NULL;
1488 struct block_device *bdev = NULL;
1489 struct file *swap_file = NULL;
1490 struct address_space *mapping;
1491 unsigned int type;
1492 int i, prev;
1493 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 union swap_header *swap_header = NULL;
1495 int swap_header_version;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001496 unsigned int nr_good_pages = 0;
1497 int nr_extents = 0;
Hugh Dickins53092a72005-09-03 15:54:34 -07001498 sector_t span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 unsigned long maxpages = 1;
1500 int swapfilesize;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001501 unsigned short *swap_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 struct page *page = NULL;
1503 struct inode *inode = NULL;
1504 int did_down = 0;
1505
1506 if (!capable(CAP_SYS_ADMIN))
1507 return -EPERM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001508 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 p = swap_info;
1510 for (type = 0 ; type < nr_swapfiles ; type++,p++)
1511 if (!(p->flags & SWP_USED))
1512 break;
1513 error = -EPERM;
Christoph Lameter06972122006-06-23 02:03:35 -07001514 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001515 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto out;
1517 }
1518 if (type >= nr_swapfiles)
1519 nr_swapfiles = type+1;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001520 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 INIT_LIST_HEAD(&p->extent_list);
1522 p->flags = SWP_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 p->next = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001524 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 name = getname(specialfile);
1526 error = PTR_ERR(name);
1527 if (IS_ERR(name)) {
1528 name = NULL;
1529 goto bad_swap_2;
1530 }
1531 swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1532 error = PTR_ERR(swap_file);
1533 if (IS_ERR(swap_file)) {
1534 swap_file = NULL;
1535 goto bad_swap_2;
1536 }
1537
1538 p->swap_file = swap_file;
1539 mapping = swap_file->f_mapping;
1540 inode = mapping->host;
1541
1542 error = -EBUSY;
1543 for (i = 0; i < nr_swapfiles; i++) {
1544 struct swap_info_struct *q = &swap_info[i];
1545
1546 if (i == type || !q->swap_file)
1547 continue;
1548 if (mapping == q->swap_file->f_mapping)
1549 goto bad_swap;
1550 }
1551
1552 error = -EINVAL;
1553 if (S_ISBLK(inode->i_mode)) {
1554 bdev = I_BDEV(inode);
1555 error = bd_claim(bdev, sys_swapon);
1556 if (error < 0) {
1557 bdev = NULL;
Rob Landleyf7b3a432005-09-22 21:44:27 -07001558 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 goto bad_swap;
1560 }
1561 p->old_block_size = block_size(bdev);
1562 error = set_blocksize(bdev, PAGE_SIZE);
1563 if (error < 0)
1564 goto bad_swap;
1565 p->bdev = bdev;
1566 } else if (S_ISREG(inode->i_mode)) {
1567 p->bdev = inode->i_sb->s_bdev;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001568 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 did_down = 1;
1570 if (IS_SWAPFILE(inode)) {
1571 error = -EBUSY;
1572 goto bad_swap;
1573 }
1574 } else {
1575 goto bad_swap;
1576 }
1577
1578 swapfilesize = i_size_read(inode) >> PAGE_SHIFT;
1579
1580 /*
1581 * Read the swap header.
1582 */
1583 if (!mapping->a_ops->readpage) {
1584 error = -EINVAL;
1585 goto bad_swap;
1586 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07001587 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 if (IS_ERR(page)) {
1589 error = PTR_ERR(page);
1590 goto bad_swap;
1591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 kmap(page);
1593 swap_header = page_address(page);
1594
1595 if (!memcmp("SWAP-SPACE",swap_header->magic.magic,10))
1596 swap_header_version = 1;
1597 else if (!memcmp("SWAPSPACE2",swap_header->magic.magic,10))
1598 swap_header_version = 2;
1599 else {
Jesper Juhle97a3112006-01-11 01:50:28 +01001600 printk(KERN_ERR "Unable to find swap-space signature\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 error = -EINVAL;
1602 goto bad_swap;
1603 }
1604
1605 switch (swap_header_version) {
1606 case 1:
1607 printk(KERN_ERR "version 0 swap is no longer supported. "
1608 "Use mkswap -v1 %s\n", name);
1609 error = -EINVAL;
1610 goto bad_swap;
1611 case 2:
Chris Dearman797df572008-04-28 02:12:19 -07001612 /* swap partition endianess hack... */
1613 if (swab32(swap_header->info.version) == 1) {
1614 swab32s(&swap_header->info.version);
1615 swab32s(&swap_header->info.last_page);
1616 swab32s(&swap_header->info.nr_badpages);
1617 for (i = 0; i < swap_header->info.nr_badpages; i++)
1618 swab32s(&swap_header->info.badpages[i]);
1619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 /* Check the swap header's sub-version and the size of
1621 the swap file and bad block lists */
1622 if (swap_header->info.version != 1) {
1623 printk(KERN_WARNING
1624 "Unable to handle swap header version %d\n",
1625 swap_header->info.version);
1626 error = -EINVAL;
1627 goto bad_swap;
1628 }
1629
1630 p->lowest_bit = 1;
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001631 p->cluster_next = 1;
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 /*
1634 * Find out how many pages are allowed for a single swap
1635 * device. There are two limiting factors: 1) the number of
1636 * bits for the swap offset in the swp_entry_t type and
1637 * 2) the number of bits in the a swap pte as defined by
1638 * the different architectures. In order to find the
1639 * largest possible bit mask a swap entry with swap type 0
1640 * and swap offset ~0UL is created, encoded to a swap pte,
1641 * decoded to a swp_entry_t again and finally the swap
1642 * offset is extracted. This will mask all the bits from
1643 * the initial ~0UL mask that can't be encoded in either
1644 * the swp_entry_t or the architecture definition of a
1645 * swap pte.
1646 */
1647 maxpages = swp_offset(pte_to_swp_entry(swp_entry_to_pte(swp_entry(0,~0UL)))) - 1;
1648 if (maxpages > swap_header->info.last_page)
1649 maxpages = swap_header->info.last_page;
1650 p->highest_bit = maxpages - 1;
1651
1652 error = -EINVAL;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001653 if (!maxpages)
1654 goto bad_swap;
Eric Sandeen5d1854e2006-12-06 20:33:06 -08001655 if (swapfilesize && maxpages > swapfilesize) {
1656 printk(KERN_WARNING
1657 "Swap area shorter than signature indicates\n");
1658 goto bad_swap;
1659 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001660 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
1661 goto bad_swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
1663 goto bad_swap;
Tobias Klausercd105df2006-01-08 01:00:59 -08001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 /* OK, set up the swap map and apply the bad block list */
Hugh Dickins78ecba02008-07-23 21:28:23 -07001666 swap_map = vmalloc(maxpages * sizeof(short));
1667 if (!swap_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 error = -ENOMEM;
1669 goto bad_swap;
1670 }
1671
1672 error = 0;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001673 memset(swap_map, 0, maxpages * sizeof(short));
Tobias Klausercd105df2006-01-08 01:00:59 -08001674 for (i = 0; i < swap_header->info.nr_badpages; i++) {
1675 int page_nr = swap_header->info.badpages[i];
1676 if (page_nr <= 0 || page_nr >= swap_header->info.last_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 error = -EINVAL;
1678 else
Hugh Dickins78ecba02008-07-23 21:28:23 -07001679 swap_map[page_nr] = SWAP_MAP_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681 nr_good_pages = swap_header->info.last_page -
1682 swap_header->info.nr_badpages -
1683 1 /* header page */;
Tobias Klausercd105df2006-01-08 01:00:59 -08001684 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 goto bad_swap;
1686 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001687
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001688 if (nr_good_pages) {
Hugh Dickins78ecba02008-07-23 21:28:23 -07001689 swap_map[0] = SWAP_MAP_BAD;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001690 p->max = maxpages;
1691 p->pages = nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07001692 nr_extents = setup_swap_extents(p, &span);
1693 if (nr_extents < 0) {
1694 error = nr_extents;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001695 goto bad_swap;
Hugh Dickins53092a72005-09-03 15:54:34 -07001696 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001697 nr_good_pages = p->pages;
1698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (!nr_good_pages) {
1700 printk(KERN_WARNING "Empty swap-file\n");
1701 error = -EINVAL;
1702 goto bad_swap;
1703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001705 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001706 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001707 if (swap_flags & SWAP_FLAG_PREFER)
1708 p->prio =
1709 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
1710 else
1711 p->prio = --least_priority;
1712 p->swap_map = swap_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 p->flags = SWP_ACTIVE;
1714 nr_swap_pages += nr_good_pages;
1715 total_swap_pages += nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07001716
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001717 printk(KERN_INFO "Adding %uk swap on %s. "
Hugh Dickins53092a72005-09-03 15:54:34 -07001718 "Priority:%d extents:%d across:%lluk\n",
1719 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
1720 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722 /* insert swap space into swap_list: */
1723 prev = -1;
1724 for (i = swap_list.head; i >= 0; i = swap_info[i].next) {
1725 if (p->prio >= swap_info[i].prio) {
1726 break;
1727 }
1728 prev = i;
1729 }
1730 p->next = i;
1731 if (prev < 0) {
1732 swap_list.head = swap_list.next = p - swap_info;
1733 } else {
1734 swap_info[prev].next = p - swap_info;
1735 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001736 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001737 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 error = 0;
1739 goto out;
1740bad_swap:
1741 if (bdev) {
1742 set_blocksize(bdev, p->old_block_size);
1743 bd_release(bdev);
1744 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001745 destroy_swap_extents(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746bad_swap_2:
Hugh Dickins5d337b92005-09-03 15:54:41 -07001747 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001750 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 vfree(swap_map);
1752 if (swap_file)
1753 filp_close(swap_file, NULL);
1754out:
1755 if (page && !IS_ERR(page)) {
1756 kunmap(page);
1757 page_cache_release(page);
1758 }
1759 if (name)
1760 putname(name);
1761 if (did_down) {
1762 if (!error)
1763 inode->i_flags |= S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001764 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766 return error;
1767}
1768
1769void si_swapinfo(struct sysinfo *val)
1770{
1771 unsigned int i;
1772 unsigned long nr_to_be_unused = 0;
1773
Hugh Dickins5d337b92005-09-03 15:54:41 -07001774 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 for (i = 0; i < nr_swapfiles; i++) {
1776 if (!(swap_info[i].flags & SWP_USED) ||
1777 (swap_info[i].flags & SWP_WRITEOK))
1778 continue;
1779 nr_to_be_unused += swap_info[i].inuse_pages;
1780 }
1781 val->freeswap = nr_swap_pages + nr_to_be_unused;
1782 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001783 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
1785
1786/*
1787 * Verify that a swap entry is valid and increment its swap map count.
1788 *
1789 * Note: if swap_map[] reaches SWAP_MAP_MAX the entries are treated as
1790 * "permanent", but will be reclaimed by the next swapoff.
1791 */
1792int swap_duplicate(swp_entry_t entry)
1793{
1794 struct swap_info_struct * p;
1795 unsigned long offset, type;
1796 int result = 0;
1797
Christoph Lameter06972122006-06-23 02:03:35 -07001798 if (is_migration_entry(entry))
1799 return 1;
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 type = swp_type(entry);
1802 if (type >= nr_swapfiles)
1803 goto bad_file;
1804 p = type + swap_info;
1805 offset = swp_offset(entry);
1806
Hugh Dickins5d337b92005-09-03 15:54:41 -07001807 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (offset < p->max && p->swap_map[offset]) {
1809 if (p->swap_map[offset] < SWAP_MAP_MAX - 1) {
1810 p->swap_map[offset]++;
1811 result = 1;
1812 } else if (p->swap_map[offset] <= SWAP_MAP_MAX) {
1813 if (swap_overflow++ < 5)
1814 printk(KERN_WARNING "swap_dup: swap entry overflow\n");
1815 p->swap_map[offset] = SWAP_MAP_MAX;
1816 result = 1;
1817 }
1818 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001819 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820out:
1821 return result;
1822
1823bad_file:
1824 printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
1825 goto out;
1826}
1827
1828struct swap_info_struct *
1829get_swap_info_struct(unsigned type)
1830{
1831 return &swap_info[type];
1832}
1833
1834/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001835 * swap_lock prevents swap_map being freed. Don't grab an extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 * reference on the swaphandle, it doesn't matter if it becomes unused.
1837 */
1838int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
1839{
Hugh Dickins89528982008-02-04 22:28:45 -08001840 struct swap_info_struct *si;
Hugh Dickins3f9e7942006-09-29 02:01:26 -07001841 int our_page_cluster = page_cluster;
Hugh Dickins89528982008-02-04 22:28:45 -08001842 pgoff_t target, toff;
1843 pgoff_t base, end;
1844 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Hugh Dickins3f9e7942006-09-29 02:01:26 -07001846 if (!our_page_cluster) /* no readahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return 0;
Hugh Dickins89528982008-02-04 22:28:45 -08001848
1849 si = &swap_info[swp_type(entry)];
1850 target = swp_offset(entry);
1851 base = (target >> our_page_cluster) << our_page_cluster;
1852 end = base + (1 << our_page_cluster);
1853 if (!base) /* first page is swap header */
1854 base++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Hugh Dickins5d337b92005-09-03 15:54:41 -07001856 spin_lock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08001857 if (end > si->max) /* don't go beyond end of map */
1858 end = si->max;
1859
1860 /* Count contiguous allocated slots above our target */
1861 for (toff = target; ++toff < end; nr_pages++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 /* Don't read in free or bad pages */
Hugh Dickins89528982008-02-04 22:28:45 -08001863 if (!si->swap_map[toff])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 break;
Hugh Dickins89528982008-02-04 22:28:45 -08001865 if (si->swap_map[toff] == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 break;
Hugh Dickins89528982008-02-04 22:28:45 -08001867 }
1868 /* Count contiguous allocated slots below our target */
1869 for (toff = target; --toff >= base; nr_pages++) {
1870 /* Don't read in free or bad pages */
1871 if (!si->swap_map[toff])
1872 break;
1873 if (si->swap_map[toff] == SWAP_MAP_BAD)
1874 break;
1875 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07001876 spin_unlock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08001877
1878 /*
1879 * Indicate starting offset, and return number of pages to get:
1880 * if only 1, say 0, since there's then no readahead to be done.
1881 */
1882 *offset = ++toff;
1883 return nr_pages? ++nr_pages: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}